From d298f7dedbb4c52bd36fdedaee6cba6347363dcf Mon Sep 17 00:00:00 2001 From: Carlos Felix Date: Tue, 3 Dec 2024 16:11:56 -0500 Subject: [PATCH 01/28] Removed unused files --- .../data_pipeline/score/score_a.py | 19 - .../data_pipeline/score/score_b.py | 21 - .../data_pipeline/score/score_c.py | 102 -- .../data_pipeline/score/score_d.py | 34 - .../data_pipeline/score/score_f.py | 97 -- .../data_pipeline/score/score_g.py | 34 - .../data_pipeline/score/score_h.py | 32 - .../data_pipeline/score/score_i.py | 33 - .../data_pipeline/score/score_k.py | 33 - .../data_pipeline/score/score_l.py | 690 -------------- .../data_pipeline/score/score_m.py | 888 ------------------ 11 files changed, 1983 deletions(-) delete mode 100644 data/data-pipeline/data_pipeline/score/score_a.py delete mode 100644 data/data-pipeline/data_pipeline/score/score_b.py delete mode 100644 data/data-pipeline/data_pipeline/score/score_c.py delete mode 100644 data/data-pipeline/data_pipeline/score/score_d.py delete mode 100644 data/data-pipeline/data_pipeline/score/score_f.py delete mode 100644 data/data-pipeline/data_pipeline/score/score_g.py delete mode 100644 data/data-pipeline/data_pipeline/score/score_h.py delete mode 100644 data/data-pipeline/data_pipeline/score/score_i.py delete mode 100644 data/data-pipeline/data_pipeline/score/score_k.py delete mode 100644 data/data-pipeline/data_pipeline/score/score_l.py delete mode 100644 data/data-pipeline/data_pipeline/score/score_m.py diff --git a/data/data-pipeline/data_pipeline/score/score_a.py b/data/data-pipeline/data_pipeline/score/score_a.py deleted file mode 100644 index 0788f094..00000000 --- a/data/data-pipeline/data_pipeline/score/score_a.py +++ /dev/null @@ -1,19 +0,0 @@ -import data_pipeline.score.field_names as field_names -import pandas as pd -from data_pipeline.score.score import Score -from data_pipeline.utils import get_module_logger - -logger = get_module_logger(__name__) - - -class ScoreA(Score): - def add_columns(self) -> pd.DataFrame: - logger.debug("Adding Score A") - self.df[field_names.SCORE_A] = self.df[ - [ - field_names.POVERTY_FIELD + field_names.PERCENTILE_FIELD_SUFFIX, - field_names.HIGH_SCHOOL_ED_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX, - ] - ].mean(axis=1) - return self.df diff --git a/data/data-pipeline/data_pipeline/score/score_b.py b/data/data-pipeline/data_pipeline/score/score_b.py deleted file mode 100644 index 2e980b3d..00000000 --- a/data/data-pipeline/data_pipeline/score/score_b.py +++ /dev/null @@ -1,21 +0,0 @@ -import data_pipeline.score.field_names as field_names -import pandas as pd -from data_pipeline.score.score import Score -from data_pipeline.utils import get_module_logger - -logger = get_module_logger(__name__) - - -class ScoreB(Score): - def add_columns(self) -> pd.DataFrame: - logger.debug("Adding Score B") - self.df[field_names.SCORE_B] = ( - self.df[ - field_names.POVERTY_FIELD + field_names.PERCENTILE_FIELD_SUFFIX - ] - * self.df[ - field_names.HIGH_SCHOOL_ED_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - ) - return self.df diff --git a/data/data-pipeline/data_pipeline/score/score_c.py b/data/data-pipeline/data_pipeline/score/score_c.py deleted file mode 100644 index b91b7417..00000000 --- a/data/data-pipeline/data_pipeline/score/score_c.py +++ /dev/null @@ -1,102 +0,0 @@ -from collections import namedtuple - -import data_pipeline.score.field_names as field_names -import pandas as pd -from data_pipeline.score.score import Score -from data_pipeline.utils import get_module_logger - -logger = get_module_logger(__name__) - - -class ScoreC(Score): - def __init__(self, df: pd.DataFrame) -> None: - Bucket = namedtuple(typename="Bucket", field_names=["name", "fields"]) - - # Note: we use percentiles for every field below. - # To do so, we add the percentile suffix to all the field names. - self.BUCKET_SOCIOECONOMIC = Bucket( - field_names.C_SOCIOECONOMIC, - [ - field_names.HOUSEHOLDS_LINGUISTIC_ISO_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX, - field_names.POVERTY_FIELD + field_names.PERCENTILE_FIELD_SUFFIX, - field_names.HIGH_SCHOOL_ED_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX, - field_names.UNEMPLOYMENT_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX, - field_names.HOUSING_BURDEN_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX, - ], - ) - self.BUCKET_SENSITIVE = Bucket( - field_names.C_SENSITIVE, - [ - field_names.UNDER_5_FIELD + field_names.PERCENTILE_FIELD_SUFFIX, - field_names.OVER_64_FIELD + field_names.PERCENTILE_FIELD_SUFFIX, - field_names.LINGUISTIC_ISO_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX, - ], - ) - self.BUCKET_ENVIRONMENTAL = Bucket( - field_names.C_ENVIRONMENTAL, - [ - field_names.RMP_FIELD + field_names.PERCENTILE_FIELD_SUFFIX, - field_names.TSDF_FIELD + field_names.PERCENTILE_FIELD_SUFFIX, - field_names.NPL_FIELD + field_names.PERCENTILE_FIELD_SUFFIX, - field_names.WASTEWATER_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX, - field_names.LEAD_PAINT_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX, - ], - ) - self.BUCKET_EXPOSURES = Bucket( - field_names.C_EXPOSURES, - [ - field_names.AIR_TOXICS_CANCER_RISK_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX, - field_names.RESPIRATORY_HAZARD_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX, - field_names.DIESEL_FIELD + field_names.PERCENTILE_FIELD_SUFFIX, - field_names.PM25_FIELD + field_names.PERCENTILE_FIELD_SUFFIX, - field_names.OZONE_FIELD + field_names.PERCENTILE_FIELD_SUFFIX, - field_names.TRAFFIC_FIELD + field_names.PERCENTILE_FIELD_SUFFIX, - ], - ) - self.BUCKETS = [ - self.BUCKET_SOCIOECONOMIC, - self.BUCKET_SENSITIVE, - self.BUCKET_ENVIRONMENTAL, - self.BUCKET_EXPOSURES, - ] - super().__init__(df) - - # "CalEnviroScreen for the US" score - def add_columns(self) -> pd.DataFrame: - logger.debug("Adding Score C") - # Average all the percentile values in each bucket into a single score for each of the four buckets. - for bucket in self.BUCKETS: - self.df[bucket.name] = self.df[bucket.fields].mean(axis=1) - - # Combine the score from the two Exposures and Environmental Effects buckets - # into a single score called "Pollution Burden". - # The math for this score is: - # (1.0 * Exposures Score + 0.5 * Environment Effects score) / 1.5. - self.df[field_names.AGGREGATION_POLLUTION_FIELD] = ( - 1.0 * self.df[self.BUCKET_EXPOSURES.name] - + 0.5 * self.df[self.BUCKET_ENVIRONMENTAL.name] - ) / 1.5 - - # Average the score from the two Sensitive populations and - # Socioeconomic factors buckets into a single score called - # "Population Characteristics". - self.df[field_names.AGGREGATION_POPULATION_FIELD] = self.df[ - [self.BUCKET_SENSITIVE.name, self.BUCKET_SOCIOECONOMIC.name] - ].mean(axis=1) - - # Multiply the "Pollution Burden" score and the "Population Characteristics" - # together to produce the cumulative impact score. - self.df[field_names.SCORE_C] = ( - self.df[field_names.AGGREGATION_POLLUTION_FIELD] - * self.df[field_names.AGGREGATION_POPULATION_FIELD] - ) - return self.df diff --git a/data/data-pipeline/data_pipeline/score/score_d.py b/data/data-pipeline/data_pipeline/score/score_d.py deleted file mode 100644 index 08e55f01..00000000 --- a/data/data-pipeline/data_pipeline/score/score_d.py +++ /dev/null @@ -1,34 +0,0 @@ -import data_pipeline.score.field_names as field_names -import pandas as pd -from data_pipeline.score.score import Score -from data_pipeline.utils import get_module_logger - -logger = get_module_logger(__name__) - - -class ScoreD(Score): - def add_columns(self) -> pd.DataFrame: - logger.debug("Adding Scores D and E") - fields_to_use_in_score = [ - field_names.UNEMPLOYMENT_FIELD, - field_names.LINGUISTIC_ISO_FIELD, - field_names.HOUSING_BURDEN_FIELD, - field_names.POVERTY_FIELD, - field_names.HIGH_SCHOOL_ED_FIELD, - ] - - fields_min_max = [ - f"{field}{field_names.MIN_MAX_FIELD_SUFFIX}" - for field in fields_to_use_in_score - ] - fields_percentile = [ - f"{field}{field_names.PERCENTILE_FIELD_SUFFIX}" - for field in fields_to_use_in_score - ] - - # Calculate "Score D", which uses min-max normalization - # and calculate "Score E", which uses percentile normalization for the same fields - self.df[field_names.SCORE_D] = self.df[fields_min_max].mean(axis=1) - self.df[field_names.SCORE_E] = self.df[fields_percentile].mean(axis=1) - - return self.df diff --git a/data/data-pipeline/data_pipeline/score/score_f.py b/data/data-pipeline/data_pipeline/score/score_f.py deleted file mode 100644 index be38e514..00000000 --- a/data/data-pipeline/data_pipeline/score/score_f.py +++ /dev/null @@ -1,97 +0,0 @@ -import data_pipeline.score.field_names as field_names -import pandas as pd -from data_pipeline.score.score import Score -from data_pipeline.utils import get_module_logger - -logger = get_module_logger(__name__) - - -class ScoreF(Score): - # TODO Make variables and constants clearer (meaning and type) - - def add_columns(self) -> pd.DataFrame: - logger.debug("Adding Score F") - ami_and_high_school_field = "Low AMI, Low HS graduation" - meets_socio_field = "Meets socioeconomic criteria" - meets_burden_field = "Meets burden criteria" - - self.df[ami_and_high_school_field] = ( - self.df[field_names.MEDIAN_INCOME_AS_PERCENT_OF_STATE_FIELD] < 0.80 - ) & (self.df[field_names.HIGH_SCHOOL_ED_FIELD] > 0.2) - - self.df[meets_socio_field] = ( - self.df[ami_and_high_school_field] - | (self.df[field_names.POVERTY_FIELD] > 0.40) - | (self.df[field_names.LINGUISTIC_ISO_FIELD] > 0.10) - | (self.df[field_names.HIGH_SCHOOL_ED_FIELD] > 0.4) - ) - - self.df[meets_burden_field] = ( - ( - self.df[ - field_names.PM25_FIELD + field_names.PERCENTILE_FIELD_SUFFIX - ] - > 0.9 - ) - | ( - self.df[ - field_names.RESPIRATORY_HAZARD_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - > 0.9 - ) - | ( - self.df[ - field_names.TRAFFIC_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - > 0.9 - ) - | ( - self.df[ - field_names.LEAD_PAINT_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - > 0.9 - ) - | ( - self.df[ - field_names.RMP_FIELD + field_names.PERCENTILE_FIELD_SUFFIX - ] - > 0.9 - ) - | ( - self.df[ - field_names.ASTHMA_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - > 0.9 - ) - | ( - self.df[ - field_names.HEART_DISEASE_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - > 0.9 - ) - | ( - self.df[ - field_names.CANCER_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - > 0.9 - ) - | ( - self.df[ - field_names.DIABETES_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - > 0.9 - ) - ) - - self.df[field_names.SCORE_F_COMMUNITIES] = ( - self.df[meets_socio_field] & self.df[meets_burden_field] - ) - - return self.df diff --git a/data/data-pipeline/data_pipeline/score/score_g.py b/data/data-pipeline/data_pipeline/score/score_g.py deleted file mode 100644 index d4e10726..00000000 --- a/data/data-pipeline/data_pipeline/score/score_g.py +++ /dev/null @@ -1,34 +0,0 @@ -import data_pipeline.score.field_names as field_names -import pandas as pd -from data_pipeline.score.score import Score -from data_pipeline.utils import get_module_logger - -logger = get_module_logger(__name__) - - -class ScoreG(Score): - def add_columns(self) -> pd.DataFrame: - logger.debug("Adding Score G") - - high_school_cutoff_threshold = 0.05 - - # Score G is now modified NMTC - self.df[field_names.SCORE_G_COMMUNITIES] = ( - (self.df[field_names.MEDIAN_INCOME_AS_PERCENT_OF_AMI_FIELD] < 0.8) - & ( - self.df[field_names.HIGH_SCHOOL_ED_FIELD] - > high_school_cutoff_threshold - ) - ) | ( - (self.df[field_names.POVERTY_LESS_THAN_100_FPL_FIELD] > 0.20) - & ( - self.df[field_names.HIGH_SCHOOL_ED_FIELD] - > high_school_cutoff_threshold - ) - ) - self.df[field_names.SCORE_G] = self.df[ - field_names.SCORE_G_COMMUNITIES - ].astype(int) - self.df["Score G (percentile)"] = self.df[field_names.SCORE_G] - - return self.df diff --git a/data/data-pipeline/data_pipeline/score/score_h.py b/data/data-pipeline/data_pipeline/score/score_h.py deleted file mode 100644 index 56168c53..00000000 --- a/data/data-pipeline/data_pipeline/score/score_h.py +++ /dev/null @@ -1,32 +0,0 @@ -import data_pipeline.score.field_names as field_names -import pandas as pd -from data_pipeline.score.score import Score -from data_pipeline.utils import get_module_logger - -logger = get_module_logger(__name__) - - -class ScoreH(Score): - def add_columns(self) -> pd.DataFrame: - logger.debug("Adding Score H") - - high_school_cutoff_threshold = 0.06 - - self.df[field_names.SCORE_H_COMMUNITIES] = ( - (self.df[field_names.MEDIAN_INCOME_AS_PERCENT_OF_AMI_FIELD] < 0.8) - & ( - self.df[field_names.HIGH_SCHOOL_ED_FIELD] - > high_school_cutoff_threshold - ) - ) | ( - (self.df[field_names.POVERTY_LESS_THAN_200_FPL_FIELD] > 0.40) - & ( - self.df[field_names.HIGH_SCHOOL_ED_FIELD] - > high_school_cutoff_threshold - ) - ) - self.df[field_names.SCORE_H] = self.df[ - field_names.SCORE_H_COMMUNITIES - ].astype(int) - - return self.df diff --git a/data/data-pipeline/data_pipeline/score/score_i.py b/data/data-pipeline/data_pipeline/score/score_i.py deleted file mode 100644 index 25f2c098..00000000 --- a/data/data-pipeline/data_pipeline/score/score_i.py +++ /dev/null @@ -1,33 +0,0 @@ -import data_pipeline.score.field_names as field_names -import pandas as pd -from data_pipeline.score.score import Score -from data_pipeline.utils import get_module_logger - -logger = get_module_logger(__name__) - - -class ScoreI(Score): - def add_columns(self) -> pd.DataFrame: - logger.debug("Adding Score I") - - high_school_cutoff_threshold = 0.05 - - self.df[field_names.SCORE_I_COMMUNITIES] = ( - (self.df[field_names.MEDIAN_INCOME_AS_PERCENT_OF_AMI_FIELD] < 0.7) - & ( - self.df[field_names.HIGH_SCHOOL_ED_FIELD] - > high_school_cutoff_threshold - ) - ) | ( - (self.df[field_names.POVERTY_LESS_THAN_200_FPL_FIELD] > 0.50) - & ( - self.df[field_names.HIGH_SCHOOL_ED_FIELD] - > high_school_cutoff_threshold - ) - ) - self.df[field_names.SCORE_I] = self.df[ - field_names.SCORE_I_COMMUNITIES - ].astype(int) - self.df["Score I (percentile)"] = self.df[field_names.SCORE_I] - - return self.df diff --git a/data/data-pipeline/data_pipeline/score/score_k.py b/data/data-pipeline/data_pipeline/score/score_k.py deleted file mode 100644 index db05344c..00000000 --- a/data/data-pipeline/data_pipeline/score/score_k.py +++ /dev/null @@ -1,33 +0,0 @@ -import data_pipeline.score.field_names as field_names -import pandas as pd -from data_pipeline.score.score import Score -from data_pipeline.utils import get_module_logger - -logger = get_module_logger(__name__) - - -class ScoreK(Score): - def add_columns(self) -> pd.DataFrame: - logger.debug("Adding Score K") - - high_school_cutoff_threshold = 0.06 - - self.df[field_names.SCORE_K] = ( - (self.df[field_names.MEDIAN_INCOME_AS_PERCENT_OF_AMI_FIELD] < 0.8) - ) | (self.df[field_names.POVERTY_LESS_THAN_100_FPL_FIELD] > 0.20) - - self.df[field_names.SCORE_K_COMMUNITIES] = ( - (self.df[field_names.MEDIAN_INCOME_AS_PERCENT_OF_AMI_FIELD] < 0.8) - & ( - self.df[field_names.HIGH_SCHOOL_ED_FIELD] - > high_school_cutoff_threshold - ) - ) | ( - (self.df[field_names.POVERTY_LESS_THAN_100_FPL_FIELD] > 0.20) - & ( - self.df[field_names.HIGH_SCHOOL_ED_FIELD] - > high_school_cutoff_threshold - ) - ) - - return self.df diff --git a/data/data-pipeline/data_pipeline/score/score_l.py b/data/data-pipeline/data_pipeline/score/score_l.py deleted file mode 100644 index 322b9129..00000000 --- a/data/data-pipeline/data_pipeline/score/score_l.py +++ /dev/null @@ -1,690 +0,0 @@ -import data_pipeline.score.field_names as field_names -import numpy as np -import pandas as pd -from data_pipeline.score.score import Score -from data_pipeline.utils import get_module_logger - -logger = get_module_logger(__name__) - - -class ScoreL(Score): - def __init__(self, df: pd.DataFrame) -> None: - self.LOW_INCOME_THRESHOLD: float = 0.65 - self.ENVIRONMENTAL_BURDEN_THRESHOLD: float = 0.90 - self.MEDIAN_HOUSE_VALUE_THRESHOLD: float = 0.90 - self.LACK_OF_HIGH_SCHOOL_MINIMUM_THRESHOLD: float = 0.10 - - super().__init__(df) - - def _combine_island_areas_with_states_and_set_thresholds( - self, - df: pd.DataFrame, - column_from_island_areas: str, - column_from_decennial_census: str, - combined_column_name: str, - threshold_cutoff_for_island_areas: float, - ) -> (pd.DataFrame, str): - """Steps to set thresholds for island areas. - - This function is fairly logically complicated. It takes the following steps: - - 1. Combine the two different fields into a single field. - 2. Calculate the 90th percentile cutoff raw value for the combined field. - 3. Create a boolean series that is true for any census tract in the island - areas (and only the island areas) that exceeds this cutoff. - - For step one, it combines data that is either the island area's Decennial Census - value in 2009 or the state's value in 5-year ACS ending in 2010. - - This will be used to generate the percentile cutoff for the 90th percentile. - - The stateside decennial census stopped asking economic comparisons, - so this is as close to apples-to-apples as we get. We use 5-year ACS for data - robustness over 1-year ACS. - """ - # Create the combined field. - # TODO: move this combined field percentile calculation to `etl_score`, - # since most other percentile logic is there. - # There should only be one entry in either 2009 or 2019 fields, not one in both. - # But just to be safe, we take the mean and ignore null values so if there - # *were* entries in both, this result would make sense. - df[combined_column_name] = df[ - [column_from_island_areas, column_from_decennial_census] - ].mean(axis=1, skipna=True) - - logger.debug( - f"Combined field `{combined_column_name}` has " - f"{df[combined_column_name].isnull().sum()} " - f"({df[combined_column_name].isnull().sum() * 100 / len(df):.2f}%) " - f"missing values for census tracts. " - ) - - # Calculate the percentile threshold raw value. - raw_threshold = np.nanquantile( - a=df[combined_column_name], q=threshold_cutoff_for_island_areas - ) - - logger.debug( - f"For combined field `{combined_column_name}`, " - f"the {threshold_cutoff_for_island_areas*100:.0f} percentile cutoff is a " - f"raw value of {raw_threshold:.3f}." - ) - - threshold_column_name = ( - f"{column_from_island_areas} exceeds " - f"{threshold_cutoff_for_island_areas*100:.0f}th percentile" - ) - - df[threshold_column_name] = ( - df[column_from_island_areas] >= raw_threshold - ) - - percent_of_tracts_highlighted = ( - 100 - * df[threshold_column_name].sum() - / df[column_from_island_areas].notnull().sum() - ) - - logger.info( - f"For `{threshold_column_name}`, " - f"{df[threshold_column_name].sum()} (" - f"{percent_of_tracts_highlighted:.2f}% of tracts that have non-null data " - f"in the column) have a value of TRUE." - ) - - return df, threshold_column_name - - def _create_low_income_threshold(self, df: pd.DataFrame) -> pd.Series: - """ - Returns a pandas series (really a numpy array) - of booleans based on the condition of the FPL at 200% - is at or more than some established threshold - """ - return ( - df[ - field_names.POVERTY_LESS_THAN_200_FPL_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.LOW_INCOME_THRESHOLD - ) - - def _increment_total_eligibility_exceeded( - self, columns_for_subset: list - ) -> None: - """ - Increments the total eligible factors for a given tract - """ - - self.df[field_names.THRESHOLD_COUNT] += self.df[columns_for_subset].sum( - axis=1, skipna=True - ) - - def _climate_factor(self) -> bool: - # In Xth percentile or above for FEMA’s Risk Index (Source: FEMA - # AND - # Low income: In Nth percentile or above for percent of block group population - # of households where household income is less than or equal to twice the federal - # poverty level. Source: Census's American Community Survey] - - climate_eligibility_columns = [ - field_names.EXPECTED_POPULATION_LOSS_RATE_LOW_INCOME_FIELD, - field_names.EXPECTED_AGRICULTURE_LOSS_RATE_LOW_INCOME_FIELD, - field_names.EXPECTED_BUILDING_LOSS_RATE_LOW_INCOME_FIELD, - ] - - expected_population_loss_threshold = ( - self.df[ - field_names.EXPECTED_POPULATION_LOSS_RATE_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - expected_agriculture_loss_threshold = ( - self.df[ - field_names.EXPECTED_AGRICULTURE_LOSS_RATE_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - expected_building_loss_threshold = ( - self.df[ - field_names.EXPECTED_BUILDING_LOSS_RATE_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[field_names.EXPECTED_POPULATION_LOSS_RATE_LOW_INCOME_FIELD] = ( - expected_population_loss_threshold - & self.df[field_names.FPL_200_SERIES] - ) - - self.df[field_names.EXPECTED_AGRICULTURE_LOSS_RATE_LOW_INCOME_FIELD] = ( - expected_agriculture_loss_threshold - & self.df[field_names.FPL_200_SERIES] - ) - - self.df[field_names.EXPECTED_BUILDING_LOSS_RATE_LOW_INCOME_FIELD] = ( - expected_building_loss_threshold - & self.df[field_names.FPL_200_SERIES] - ) - - self._increment_total_eligibility_exceeded(climate_eligibility_columns) - - return self.df[climate_eligibility_columns].any(axis="columns") - - def _energy_factor(self) -> bool: - # In Xth percentile or above for DOE’s energy cost burden score (Source: LEAD Score) - # AND - # Low income: In Nth percentile or above for percent of block group population - # of households where household income is less than or equal to twice the federal - # poverty level. Source: Census's American Community Survey] - - energy_eligibility_columns = [ - field_names.PM25_EXPOSURE_LOW_INCOME_FIELD, - field_names.ENERGY_BURDEN_LOW_INCOME_FIELD, - ] - - energy_burden_threshold = ( - self.df[ - field_names.ENERGY_BURDEN_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - pm25_threshold = ( - self.df[ - field_names.PM25_FIELD + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[field_names.PM25_EXPOSURE_LOW_INCOME_FIELD] = ( - pm25_threshold & self.df[field_names.FPL_200_SERIES] - ) - - self.df[field_names.ENERGY_BURDEN_LOW_INCOME_FIELD] = ( - energy_burden_threshold & self.df[field_names.FPL_200_SERIES] - ) - - self._increment_total_eligibility_exceeded(energy_eligibility_columns) - - return self.df[energy_eligibility_columns].any(axis="columns") - - def _transportation_factor(self) -> bool: - # In Xth percentile or above for diesel particulate matter (Source: EPA National Air Toxics Assessment (NATA) - # or - # In Xth percentile or above for PM 2.5 (Source: EPA, Office of Air and Radiation (OAR) fusion of model and monitor data)] - # or - # In Xth percentile or above traffic proximity and volume (Source: 2017 U.S. Department of Transportation (DOT) traffic data - # AND - # Low income: In Nth percentile or above for percent of block group population - # of households where household income is less than or equal to twice the federal - # poverty level. Source: Census's American Community Survey] - - transportion_eligibility_columns = [ - field_names.DIESEL_PARTICULATE_MATTER_LOW_INCOME_FIELD, - field_names.TRAFFIC_PROXIMITY_LOW_INCOME_FIELD, - ] - - diesel_threshold = ( - self.df[ - field_names.DIESEL_FIELD + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - traffic_threshold = ( - self.df[ - field_names.TRAFFIC_FIELD + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[field_names.DIESEL_PARTICULATE_MATTER_LOW_INCOME_FIELD] = ( - diesel_threshold & self.df[field_names.FPL_200_SERIES] - ) - - self.df[field_names.TRAFFIC_PROXIMITY_LOW_INCOME_FIELD] = ( - traffic_threshold & self.df[field_names.FPL_200_SERIES] - ) - - self._increment_total_eligibility_exceeded( - transportion_eligibility_columns - ) - - return self.df[transportion_eligibility_columns].any(axis="columns") - - def _housing_factor(self) -> bool: - # ( - # In Xth percentile or above for lead paint (Source: Census's American Community Survey’s - # percent of housing units built pre-1960, used as an indicator of potential lead paint exposure in homes) - # AND - # In Yth percentile or below for Median House Value (Source: Census's American Community Survey) - # ) - # or - # In Xth percentile or above for housing cost burden (Source: HUD's Comprehensive Housing Affordability Strategy dataset - # AND - # Low income: In Nth percentile or above for percent of block group population - # of households where household income is less than or equal to twice the federal - # poverty level. Source: Census's American Community Survey] - - housing_eligibility_columns = [ - field_names.LEAD_PAINT_MEDIAN_HOUSE_VALUE_LOW_INCOME_FIELD, - field_names.HOUSING_BURDEN_LOW_INCOME_FIELD, - ] - - lead_paint_median_home_value_threshold = ( - self.df[ - field_names.LEAD_PAINT_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) & ( - self.df[ - field_names.MEDIAN_HOUSE_VALUE_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - <= self.MEDIAN_HOUSE_VALUE_THRESHOLD - ) - - housing_burden_threshold = ( - self.df[ - field_names.HOUSING_BURDEN_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - # series by series indicators - self.df[field_names.LEAD_PAINT_MEDIAN_HOUSE_VALUE_LOW_INCOME_FIELD] = ( - lead_paint_median_home_value_threshold - & self.df[field_names.FPL_200_SERIES] - ) - - self.df[field_names.HOUSING_BURDEN_LOW_INCOME_FIELD] = ( - housing_burden_threshold & self.df[field_names.FPL_200_SERIES] - ) - - self._increment_total_eligibility_exceeded(housing_eligibility_columns) - - return self.df[housing_eligibility_columns].any(axis="columns") - - def _pollution_factor(self) -> bool: - # Proximity to Risk Management Plan sites is > X - # AND - # Low income: In Nth percentile or above for percent of block group population - # of households where household income is less than or equal to twice the federal - # poverty level. Source: Census's American Community Survey] - - pollution_eligibility_columns = [ - field_names.RMP_LOW_INCOME_FIELD, - field_names.SUPERFUND_LOW_INCOME_FIELD, - field_names.HAZARDOUS_WASTE_LOW_INCOME_FIELD, - ] - - rmp_sites_threshold = ( - self.df[field_names.RMP_FIELD + field_names.PERCENTILE_FIELD_SUFFIX] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - npl_sites_threshold = ( - self.df[field_names.NPL_FIELD + field_names.PERCENTILE_FIELD_SUFFIX] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - tsdf_sites_threshold = ( - self.df[ - field_names.TSDF_FIELD + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - # individual series-by-series - self.df[field_names.RMP_LOW_INCOME_FIELD] = ( - rmp_sites_threshold & self.df[field_names.FPL_200_SERIES] - ) - self.df[field_names.SUPERFUND_LOW_INCOME_FIELD] = ( - npl_sites_threshold & self.df[field_names.FPL_200_SERIES] - ) - self.df[field_names.HAZARDOUS_WASTE_LOW_INCOME_FIELD] = ( - tsdf_sites_threshold & self.df[field_names.FPL_200_SERIES] - ) - - self._increment_total_eligibility_exceeded( - pollution_eligibility_columns - ) - - return self.df[pollution_eligibility_columns].any(axis="columns") - - def _water_factor(self) -> bool: - # In Xth percentile or above for wastewater discharge (Source: EPA Risk-Screening Environmental Indicators (RSEI) Model) - # AND - # Low income: In Nth percentile or above for percent of block group population - # of households where household income is less than or equal to twice the federal - # poverty level. Source: Census's American Community Survey] - - wastewater_threshold = ( - self.df[ - field_names.WASTEWATER_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[field_names.WASTEWATER_DISCHARGE_LOW_INCOME_FIELD] = ( - wastewater_threshold & self.df[field_names.FPL_200_SERIES] - ) - - self._increment_total_eligibility_exceeded( - [field_names.WASTEWATER_DISCHARGE_LOW_INCOME_FIELD] - ) - - return self.df[field_names.WASTEWATER_DISCHARGE_LOW_INCOME_FIELD] - - def _health_factor(self) -> bool: - # In Xth percentile or above for diabetes (Source: CDC Places) - # or - # In Xth percentile or above for asthma (Source: CDC Places) - # or - # In Xth percentile or above for heart disease - # or - # In Xth percentile or above for low life expectancy (Source: CDC Places) - # AND - # Low income: In Nth percentile or above for percent of block group population - # of households where household income is less than or equal to twice the federal - # poverty level. Source: Census's American Community Survey] - - health_eligibility_columns = [ - field_names.DIABETES_LOW_INCOME_FIELD, - field_names.ASTHMA_LOW_INCOME_FIELD, - field_names.HEART_DISEASE_LOW_INCOME_FIELD, - field_names.LOW_LIFE_EXPECTANCY_LOW_INCOME_FIELD, - ] - - diabetes_threshold = ( - self.df[ - field_names.DIABETES_FIELD + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - asthma_threshold = ( - self.df[ - field_names.ASTHMA_FIELD + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - heart_disease_threshold = ( - self.df[ - field_names.HEART_DISEASE_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - low_life_expectancy_threshold = ( - self.df[ - field_names.LOW_LIFE_EXPECTANCY_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[field_names.DIABETES_LOW_INCOME_FIELD] = ( - diabetes_threshold & self.df[field_names.FPL_200_SERIES] - ) - self.df[field_names.ASTHMA_LOW_INCOME_FIELD] = ( - asthma_threshold & self.df[field_names.FPL_200_SERIES] - ) - self.df[field_names.HEART_DISEASE_LOW_INCOME_FIELD] = ( - heart_disease_threshold & self.df[field_names.FPL_200_SERIES] - ) - self.df[field_names.LOW_LIFE_EXPECTANCY_LOW_INCOME_FIELD] = ( - low_life_expectancy_threshold & self.df[field_names.FPL_200_SERIES] - ) - - self._increment_total_eligibility_exceeded(health_eligibility_columns) - - return self.df[health_eligibility_columns].any(axis="columns") - - def _workforce_factor(self) -> bool: - # Where unemployment is above Xth percentile - # or - # Where median income as a percent of area median income is above Xth percentile - # or - # Where the percent of households at or below 100% of the federal poverty level - # is above Xth percentile - # or - # Where linguistic isolation is above Xth percentile - # AND - # Where the high school degree achievement rates for adults 25 years and older - # is less than Y% - # (necessary to screen out university tracts) - - # Workforce criteria for states fields. - workforce_eligibility_columns = [ - field_names.UNEMPLOYMENT_LOW_HS_EDUCATION_FIELD, - field_names.POVERTY_LOW_HS_EDUCATION_FIELD, - field_names.LINGUISTIC_ISOLATION_LOW_HS_EDUCATION_FIELD, - field_names.LOW_MEDIAN_INCOME_LOW_HS_EDUCATION_FIELD, - ] - - self.df[field_names.LOW_HS_EDUCATION_FIELD] = ( - self.df[field_names.HIGH_SCHOOL_ED_FIELD] - >= self.LACK_OF_HIGH_SCHOOL_MINIMUM_THRESHOLD - ) - - unemployment_threshold = ( - self.df[ - field_names.UNEMPLOYMENT_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - low_median_income_threshold = ( - self.df[ - field_names.LOW_MEDIAN_INCOME_AS_PERCENT_OF_AMI_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - linguistic_isolation_threshold = ( - self.df[ - field_names.LINGUISTIC_ISO_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - poverty_threshold = ( - self.df[ - field_names.POVERTY_LESS_THAN_100_FPL_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[field_names.LINGUISTIC_ISOLATION_LOW_HS_EDUCATION_FIELD] = ( - linguistic_isolation_threshold - & self.df[field_names.LOW_HS_EDUCATION_FIELD] - ) - - self.df[field_names.POVERTY_LOW_HS_EDUCATION_FIELD] = ( - poverty_threshold & self.df[field_names.LOW_HS_EDUCATION_FIELD] - ) - - self.df[field_names.LOW_MEDIAN_INCOME_LOW_HS_EDUCATION_FIELD] = ( - low_median_income_threshold - & self.df[field_names.LOW_HS_EDUCATION_FIELD] - ) - - self.df[field_names.UNEMPLOYMENT_LOW_HS_EDUCATION_FIELD] = ( - unemployment_threshold & self.df[field_names.LOW_HS_EDUCATION_FIELD] - ) - - workforce_combined_criteria_for_states = self.df[ - workforce_eligibility_columns - ].any(axis="columns") - - self._increment_total_eligibility_exceeded( - workforce_eligibility_columns - ) - - # Now, calculate workforce criteria for island territories. - island_areas_workforce_eligibility_columns = [ - field_names.ISLAND_AREAS_UNEMPLOYMENT_LOW_HS_EDUCATION_FIELD, - field_names.ISLAND_AREAS_POVERTY_LOW_HS_EDUCATION_FIELD, - field_names.ISLAND_AREAS_LOW_MEDIAN_INCOME_LOW_HS_EDUCATION_FIELD, - ] - - # First, combine unemployment. - ( - self.df, - island_areas_unemployment_criteria_field_name, - ) = self._combine_island_areas_with_states_and_set_thresholds( - df=self.df, - column_from_island_areas=field_names.CENSUS_DECENNIAL_UNEMPLOYMENT_FIELD_2009, - column_from_decennial_census=field_names.CENSUS_UNEMPLOYMENT_FIELD_2010, - combined_column_name=field_names.COMBINED_UNEMPLOYMENT_2010, - threshold_cutoff_for_island_areas=self.ENVIRONMENTAL_BURDEN_THRESHOLD, - ) - - # Next, combine poverty. - ( - self.df, - island_areas_poverty_criteria_field_name, - ) = self._combine_island_areas_with_states_and_set_thresholds( - df=self.df, - column_from_island_areas=field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_100_FPL_FIELD_2009, - column_from_decennial_census=field_names.CENSUS_POVERTY_LESS_THAN_100_FPL_FIELD_2010, - combined_column_name=field_names.COMBINED_POVERTY_LESS_THAN_100_FPL_FIELD_2010, - threshold_cutoff_for_island_areas=self.ENVIRONMENTAL_BURDEN_THRESHOLD, - ) - - # Also check whether low area median income is 90th percentile or higher - # within the islands. - island_areas_low_median_income_as_a_percent_of_ami_criteria_field_name = ( - f"{field_names.LOW_CENSUS_DECENNIAL_AREA_MEDIAN_INCOME_PERCENT_FIELD_2009} exceeds " - f"{field_names.PERCENTILE}th percentile" - ) - self.df[ - island_areas_low_median_income_as_a_percent_of_ami_criteria_field_name - ] = ( - self.df[ - field_names.LOW_CENSUS_DECENNIAL_AREA_MEDIAN_INCOME_PERCENT_FIELD_2009 - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[field_names.ISLAND_AREAS_LOW_HS_EDUCATION_FIELD] = ( - self.df[field_names.CENSUS_DECENNIAL_HIGH_SCHOOL_ED_FIELD_2009] - >= self.LACK_OF_HIGH_SCHOOL_MINIMUM_THRESHOLD - ) - - self.df[ - field_names.ISLAND_AREAS_UNEMPLOYMENT_LOW_HS_EDUCATION_FIELD - ] = ( - self.df[island_areas_unemployment_criteria_field_name] - & self.df[field_names.ISLAND_AREAS_LOW_HS_EDUCATION_FIELD] - ) - - self.df[field_names.ISLAND_AREAS_POVERTY_LOW_HS_EDUCATION_FIELD] = ( - self.df[island_areas_poverty_criteria_field_name] - & self.df[field_names.ISLAND_AREAS_LOW_HS_EDUCATION_FIELD] - ) - - self.df[ - field_names.ISLAND_AREAS_LOW_MEDIAN_INCOME_LOW_HS_EDUCATION_FIELD - ] = ( - self.df[ - island_areas_low_median_income_as_a_percent_of_ami_criteria_field_name - ] - & self.df[field_names.ISLAND_AREAS_LOW_HS_EDUCATION_FIELD] - ) - - workforce_combined_criteria_for_island_areas = self.df[ - island_areas_workforce_eligibility_columns - ].any(axis="columns") - - self._increment_total_eligibility_exceeded( - island_areas_workforce_eligibility_columns - ) - - percent_of_island_tracts_highlighted = ( - 100 - * workforce_combined_criteria_for_island_areas.sum() - # Choosing a random column from island areas to calculate the denominator. - / self.df[field_names.CENSUS_DECENNIAL_UNEMPLOYMENT_FIELD_2009] - .notnull() - .sum() - ) - - logger.debug( - f"For workforce criteria in island areas, " - f"{workforce_combined_criteria_for_island_areas.sum()} (" - f"{percent_of_island_tracts_highlighted:.2f}% of tracts that have non-null data " - f"in the column) have a value of TRUE." - ) - - # A tract is included if it meets either the states tract criteria or the - # island areas tract criteria. - return ( - workforce_combined_criteria_for_states - | workforce_combined_criteria_for_island_areas - ) - - def add_columns(self) -> pd.DataFrame: - logger.debug("Adding Score L") - - self.df[field_names.THRESHOLD_COUNT] = 0 - self.df[field_names.FPL_200_SERIES] = self._create_low_income_threshold( - self.df - ) - self.df[field_names.L_CLIMATE] = self._climate_factor() - self.df[field_names.L_ENERGY] = self._energy_factor() - self.df[field_names.L_TRANSPORTATION] = self._transportation_factor() - self.df[field_names.L_HOUSING] = self._housing_factor() - self.df[field_names.L_POLLUTION] = self._pollution_factor() - self.df[field_names.L_WATER] = self._water_factor() - self.df[field_names.L_HEALTH] = self._health_factor() - self.df[field_names.L_WORKFORCE] = self._workforce_factor() - - factors = [ - field_names.L_CLIMATE, - field_names.L_ENERGY, - field_names.L_TRANSPORTATION, - field_names.L_HOUSING, - field_names.L_POLLUTION, - field_names.L_WATER, - field_names.L_HEALTH, - field_names.L_WORKFORCE, - ] - self.df[field_names.SCORE_L_COMMUNITIES] = self.df[factors].any(axis=1) - - # Note: this is purely used for comparison tool analysis, and can be removed at a later date. - LMB. - non_workforce_factors = [ - field_names.L_CLIMATE, - field_names.L_ENERGY, - field_names.L_TRANSPORTATION, - field_names.L_HOUSING, - field_names.L_POLLUTION, - field_names.L_WATER, - field_names.L_HEALTH, - ] - self.df[field_names.L_NON_WORKFORCE] = self.df[ - non_workforce_factors - ].any(axis=1) - - self.df[ - field_names.SCORE_L + field_names.PERCENTILE_FIELD_SUFFIX - ] = self.df[field_names.SCORE_L_COMMUNITIES].astype(int) - - return self.df diff --git a/data/data-pipeline/data_pipeline/score/score_m.py b/data/data-pipeline/data_pipeline/score/score_m.py deleted file mode 100644 index a8751c2a..00000000 --- a/data/data-pipeline/data_pipeline/score/score_m.py +++ /dev/null @@ -1,888 +0,0 @@ -from typing import Tuple - -import data_pipeline.etl.score.constants as constants -import data_pipeline.score.field_names as field_names -import numpy as np -import pandas as pd -from data_pipeline.score.score import Score -from data_pipeline.utils import get_module_logger - -logger = get_module_logger(__name__) - - -class ScoreM(Score): - """Very similar to Score L, with a few minor modifications.""" - - def __init__(self, df: pd.DataFrame) -> None: - self.LOW_INCOME_THRESHOLD: float = 0.65 - self.MAX_COLLEGE_ATTENDANCE_THRESHOLD: float = 0.20 - self.ENVIRONMENTAL_BURDEN_THRESHOLD: float = 0.90 - self.MEDIAN_HOUSE_VALUE_THRESHOLD: float = 0.90 - self.LACK_OF_HIGH_SCHOOL_MINIMUM_THRESHOLD: float = 0.10 - - super().__init__(df) - - def _combine_island_areas_with_states_and_set_thresholds( - self, - df: pd.DataFrame, - column_from_island_areas: str, - column_from_decennial_census: str, - combined_column_name: str, - threshold_cutoff_for_island_areas: float, - ) -> Tuple[pd.DataFrame, str]: - """Steps to set thresholds for island areas. - - This function is fairly logically complicated. It takes the following steps: - - 1. Combine the two different fields into a single field. - 2. Calculate the 90th percentile for the combined field. - 3. Create a boolean series that is true for any census tract in the island - areas (and only the island areas) that exceeds this percentile. - - For step one, it combines data that is either the island area's Decennial Census - value in 2009 or the state's value in 5-year ACS ending in 2010. - - This will be used to generate the percentile cutoff for the 90th percentile. - - The stateside decennial census stopped asking economic comparisons, - so this is as close to apples-to-apples as we get. We use 5-year ACS for data - robustness over 1-year ACS. - """ - # Create the combined field. - # TODO: move this combined field percentile calculation to `etl_score`, - # since most other percentile logic is there. - # There should only be one entry in either 2009 or 2019 fields, not one in both. - # But just to be safe, we take the mean and ignore null values so if there - # *were* entries in both, this result would make sense. - df[combined_column_name] = df[ - [column_from_island_areas, column_from_decennial_census] - ].mean(axis=1, skipna=True) - - # Create a percentile field for use in the Islands / PR visualization - # TODO: move this code - # In the code below, percentiles are constructed based on the combined column - # of census and island data, but only reported for the island areas (where there - # is no other comprehensive percentile information) - return_series_name = ( - column_from_island_areas - + field_names.ISLAND_AREAS_PERCENTILE_ADJUSTMENT_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ) - df[return_series_name] = np.where( - df[column_from_decennial_census].isna(), - df[combined_column_name].rank(pct=True), - np.nan, - ) - - threshold_column_name = ( - f"{column_from_island_areas} exceeds " - f"{threshold_cutoff_for_island_areas*100:.0f}th percentile" - ) - - df[threshold_column_name] = ( - df[return_series_name] >= threshold_cutoff_for_island_areas - ) - - return df, threshold_column_name - - def _create_low_income_and_low_college_attendance_threshold( - self, df: pd.DataFrame - ) -> pd.Series: - """ - Returns a pandas series (really a numpy array) - of booleans based on the condition of the FPL at 200% - is at or more than some established threshold - """ - - return (df[field_names.LOW_INCOME_THRESHOLD]) & ( - df[field_names.COLLEGE_ATTENDANCE_LESS_THAN_20_FIELD] - | ( - # If college attendance data is null for this tract, just rely on the - # poverty data - df[field_names.COLLEGE_ATTENDANCE_FIELD].isna() - ) - ) - - def _increment_total_eligibility_exceeded( - self, columns_for_subset: list, skip_fips: tuple = () - ) -> None: - """ - Increments the total eligible factors for a given tract - - The new skip_fips argument specifies which (if any) fips codes to - skip over for incrementing. - This allows us to essentially skip data we think is of limited veracity, - without overriding any values in the data. - THIS IS A TEMPORARY FIX. - """ - if skip_fips: - self.df[field_names.THRESHOLD_COUNT] += np.where( - self.df[field_names.GEOID_TRACT_FIELD].str.startswith( - skip_fips - ), - 0, - self.df[columns_for_subset].sum(axis=1, skipna=True), - ) - else: - self.df[field_names.THRESHOLD_COUNT] += self.df[ - columns_for_subset - ].sum(axis=1, skipna=True) - - def _climate_factor(self) -> bool: - # In Xth percentile or above for FEMA’s Risk Index (Source: FEMA - # AND - # Low income: In Nth percentile or above for percent of block group population - # of households where household income is less than or equal to twice the federal - # poverty level and there is low higher ed attendance - # Source: Census's American Community Survey - - climate_eligibility_columns = [ - field_names.EXPECTED_POPULATION_LOSS_RATE_LOW_INCOME_LOW_HIGHER_ED_FIELD, - field_names.EXPECTED_AGRICULTURE_LOSS_RATE_LOW_INCOME_LOW_HIGHER_ED_FIELD, - field_names.EXPECTED_BUILDING_LOSS_RATE_LOW_INCOME_LOW_HIGHER_ED_FIELD, - ] - - self.df[ - field_names.EXPECTED_POPULATION_LOSS_EXCEEDS_PCTILE_THRESHOLD - ] = ( - self.df[ - field_names.EXPECTED_POPULATION_LOSS_RATE_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[ - field_names.EXPECTED_AGRICULTURAL_LOSS_EXCEEDS_PCTILE_THRESHOLD - ] = ( - self.df[ - field_names.EXPECTED_AGRICULTURE_LOSS_RATE_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[field_names.EXPECTED_BUILDING_LOSS_EXCEEDS_PCTILE_THRESHOLD] = ( - self.df[ - field_names.EXPECTED_BUILDING_LOSS_RATE_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[field_names.CLIMATE_THRESHOLD_EXCEEDED] = ( - self.df[ - field_names.EXPECTED_POPULATION_LOSS_EXCEEDS_PCTILE_THRESHOLD - ] - | self.df[ - field_names.EXPECTED_AGRICULTURAL_LOSS_EXCEEDS_PCTILE_THRESHOLD - ] - | self.df[ - field_names.EXPECTED_BUILDING_LOSS_EXCEEDS_PCTILE_THRESHOLD - ] - ) - - self.df[ - field_names.EXPECTED_POPULATION_LOSS_RATE_LOW_INCOME_LOW_HIGHER_ED_FIELD - ] = ( - self.df[ - field_names.EXPECTED_POPULATION_LOSS_EXCEEDS_PCTILE_THRESHOLD - ] - & self.df[field_names.FPL_200_AND_COLLEGE_ATTENDANCE_SERIES] - ) - - self.df[ - field_names.EXPECTED_AGRICULTURE_LOSS_RATE_LOW_INCOME_LOW_HIGHER_ED_FIELD - ] = ( - self.df[ - field_names.EXPECTED_AGRICULTURAL_LOSS_EXCEEDS_PCTILE_THRESHOLD - ] - & self.df[field_names.FPL_200_AND_COLLEGE_ATTENDANCE_SERIES] - ) - - self.df[ - field_names.EXPECTED_BUILDING_LOSS_RATE_LOW_INCOME_LOW_HIGHER_ED_FIELD - ] = ( - self.df[field_names.EXPECTED_BUILDING_LOSS_EXCEEDS_PCTILE_THRESHOLD] - & self.df[field_names.FPL_200_AND_COLLEGE_ATTENDANCE_SERIES] - ) - - self._increment_total_eligibility_exceeded( - climate_eligibility_columns, - skip_fips=constants.DROP_FIPS_FROM_NON_WTD_THRESHOLDS, - ) - - return self.df[climate_eligibility_columns].any(axis="columns") - - def _energy_factor(self) -> bool: - # In Xth percentile or above for DOE’s energy cost burden score (Source: LEAD Score) - # AND - # Low income: In Nth percentile or above for percent of block group population - # of households where household income is less than or equal to twice the federal - # poverty level and has low higher ed attendance. - # Source: Census's American Community Survey - - energy_eligibility_columns = [ - field_names.PM25_EXPOSURE_LOW_INCOME_LOW_HIGHER_ED_FIELD, - field_names.ENERGY_BURDEN_LOW_INCOME_LOW_HIGHER_ED_FIELD, - ] - - self.df[field_names.ENERGY_BURDEN_EXCEEDS_PCTILE_THRESHOLD] = ( - self.df[ - field_names.ENERGY_BURDEN_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[field_names.PM25_EXCEEDS_PCTILE_THRESHOLD] = ( - self.df[ - field_names.PM25_FIELD + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[field_names.ENERGY_THRESHOLD_EXCEEDED] = ( - self.df[field_names.ENERGY_BURDEN_EXCEEDS_PCTILE_THRESHOLD] - | self.df[field_names.PM25_EXCEEDS_PCTILE_THRESHOLD] - ) - - self.df[field_names.PM25_EXPOSURE_LOW_INCOME_LOW_HIGHER_ED_FIELD] = ( - self.df[field_names.PM25_EXCEEDS_PCTILE_THRESHOLD] - & self.df[field_names.FPL_200_AND_COLLEGE_ATTENDANCE_SERIES] - ) - - self.df[field_names.ENERGY_BURDEN_LOW_INCOME_LOW_HIGHER_ED_FIELD] = ( - self.df[field_names.ENERGY_BURDEN_EXCEEDS_PCTILE_THRESHOLD] - & self.df[field_names.FPL_200_AND_COLLEGE_ATTENDANCE_SERIES] - ) - - self._increment_total_eligibility_exceeded( - energy_eligibility_columns, - skip_fips=constants.DROP_FIPS_FROM_NON_WTD_THRESHOLDS, - ) - - return self.df[energy_eligibility_columns].any(axis="columns") - - def _transportation_factor(self) -> bool: - # In Xth percentile or above for diesel particulate matter (Source: EPA National Air Toxics Assessment (NATA) - # or - # In Xth percentile or above for PM 2.5 (Source: EPA, Office of Air and Radiation (OAR) fusion of model and monitor data)] - # or - # In Xth percentile or above traffic proximity and volume (Source: 2017 U.S. Department of Transportation (DOT) traffic data - # AND - # Low income: In Nth percentile or above for percent of block group population - # of households where household income is less than or equal to twice the federal - # poverty level and has a low percent of higher ed students. - # Source: Census's American Community Survey - - transportion_eligibility_columns = [ - field_names.DIESEL_PARTICULATE_MATTER_LOW_INCOME_LOW_HIGHER_ED_FIELD, - field_names.TRAFFIC_PROXIMITY_LOW_INCOME_LOW_HIGHER_ED_FIELD, - ] - - self.df[field_names.DIESEL_EXCEEDS_PCTILE_THRESHOLD] = ( - self.df[ - field_names.DIESEL_FIELD + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[field_names.TRAFFIC_PROXIMITY_PCTILE_THRESHOLD] = ( - self.df[ - field_names.TRAFFIC_FIELD + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[field_names.TRAFFIC_THRESHOLD_EXCEEDED] = ( - self.df[field_names.TRAFFIC_PROXIMITY_PCTILE_THRESHOLD] - | self.df[field_names.DIESEL_EXCEEDS_PCTILE_THRESHOLD] - ) - - self.df[ - field_names.DIESEL_PARTICULATE_MATTER_LOW_INCOME_LOW_HIGHER_ED_FIELD - ] = ( - self.df[field_names.DIESEL_EXCEEDS_PCTILE_THRESHOLD] - & self.df[field_names.FPL_200_AND_COLLEGE_ATTENDANCE_SERIES] - ) - - self.df[ - field_names.TRAFFIC_PROXIMITY_LOW_INCOME_LOW_HIGHER_ED_FIELD - ] = ( - self.df[field_names.TRAFFIC_PROXIMITY_PCTILE_THRESHOLD] - & self.df[field_names.FPL_200_AND_COLLEGE_ATTENDANCE_SERIES] - ) - - self._increment_total_eligibility_exceeded( - transportion_eligibility_columns, - skip_fips=constants.DROP_FIPS_FROM_NON_WTD_THRESHOLDS, - ) - - return self.df[transportion_eligibility_columns].any(axis="columns") - - def _housing_factor(self) -> bool: - # ( - # In Xth percentile or above for lead paint (Source: Census's American Community Survey’s - # percent of housing units built pre-1960, used as an indicator of potential lead paint exposure in homes) - # AND - # In Yth percentile or below for Median House Value (Source: Census's American Community Survey) - # ) - # or - # In Xth percentile or above for housing cost burden (Source: HUD's Comprehensive Housing Affordability Strategy dataset - # AND - # Low income: In Nth percentile or above for percent of block group population - # of households where household income is less than or equal to twice the federal - # poverty level and has a low percent of higher ed students. - # Source: Census's American Community Survey - - housing_eligibility_columns = [ - field_names.LEAD_PAINT_MEDIAN_HOUSE_VALUE_LOW_INCOME_LOW_HIGHER_ED_FIELD, - field_names.HOUSING_BURDEN_LOW_INCOME_LOW_HIGHER_ED_FIELD, - ] - - self.df[field_names.LEAD_PAINT_PROXY_PCTILE_THRESHOLD] = ( - self.df[ - field_names.LEAD_PAINT_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) & ( - self.df[ - field_names.MEDIAN_HOUSE_VALUE_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - <= self.MEDIAN_HOUSE_VALUE_THRESHOLD - ) - - self.df[field_names.HOUSING_BURDEN_PCTILE_THRESHOLD] = ( - self.df[ - field_names.HOUSING_BURDEN_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[field_names.HOUSING_THREHSOLD_EXCEEDED] = ( - self.df[field_names.LEAD_PAINT_PROXY_PCTILE_THRESHOLD] - | self.df[field_names.HOUSING_BURDEN_PCTILE_THRESHOLD] - ) - - # series by series indicators - self.df[ - field_names.LEAD_PAINT_MEDIAN_HOUSE_VALUE_LOW_INCOME_LOW_HIGHER_ED_FIELD - ] = ( - self.df[field_names.LEAD_PAINT_PROXY_PCTILE_THRESHOLD] - & self.df[field_names.FPL_200_AND_COLLEGE_ATTENDANCE_SERIES] - ) - - self.df[field_names.HOUSING_BURDEN_LOW_INCOME_LOW_HIGHER_ED_FIELD] = ( - self.df[field_names.HOUSING_BURDEN_PCTILE_THRESHOLD] - & self.df[field_names.FPL_200_AND_COLLEGE_ATTENDANCE_SERIES] - ) - - self._increment_total_eligibility_exceeded( - housing_eligibility_columns, - skip_fips=constants.DROP_FIPS_FROM_NON_WTD_THRESHOLDS, - ) - - return self.df[housing_eligibility_columns].any(axis="columns") - - def _pollution_factor(self) -> bool: - # Proximity to Risk Management Plan sites is > X - # AND - # Low income: In Nth percentile or above for percent of block group population - # of households where household income is less than or equal to twice the federal - # poverty level and has a low percent of higher ed students. - # Source: Census's American Community Survey - - pollution_eligibility_columns = [ - field_names.RMP_LOW_INCOME_LOW_HIGHER_ED_FIELD, - field_names.SUPERFUND_LOW_INCOME_LOW_HIGHER_ED_FIELD, - field_names.HAZARDOUS_WASTE_LOW_INCOME_LOW_HIGHER_ED_FIELD, - ] - - self.df[field_names.RMP_PCTILE_THRESHOLD] = ( - self.df[field_names.RMP_FIELD + field_names.PERCENTILE_FIELD_SUFFIX] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[field_names.NPL_PCTILE_THRESHOLD] = ( - self.df[field_names.NPL_FIELD + field_names.PERCENTILE_FIELD_SUFFIX] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[field_names.TSDF_PCTILE_THRESHOLD] = ( - self.df[ - field_names.TSDF_FIELD + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[field_names.POLLUTION_THRESHOLD_EXCEEDED] = ( - self.df[field_names.RMP_PCTILE_THRESHOLD] - | self.df[field_names.NPL_PCTILE_THRESHOLD] - ) | self.df[field_names.TSDF_PCTILE_THRESHOLD] - - # individual series-by-series - self.df[field_names.RMP_LOW_INCOME_LOW_HIGHER_ED_FIELD] = ( - self.df[field_names.RMP_PCTILE_THRESHOLD] - & self.df[field_names.FPL_200_AND_COLLEGE_ATTENDANCE_SERIES] - ) - self.df[field_names.SUPERFUND_LOW_INCOME_LOW_HIGHER_ED_FIELD] = ( - self.df[field_names.NPL_PCTILE_THRESHOLD] - & self.df[field_names.FPL_200_AND_COLLEGE_ATTENDANCE_SERIES] - ) - self.df[field_names.HAZARDOUS_WASTE_LOW_INCOME_LOW_HIGHER_ED_FIELD] = ( - self.df[field_names.TSDF_PCTILE_THRESHOLD] - & self.df[field_names.FPL_200_AND_COLLEGE_ATTENDANCE_SERIES] - ) - - self._increment_total_eligibility_exceeded( - pollution_eligibility_columns, - skip_fips=constants.DROP_FIPS_FROM_NON_WTD_THRESHOLDS, - ) - - return self.df[pollution_eligibility_columns].any(axis="columns") - - def _water_factor(self) -> bool: - # In Xth percentile or above for wastewater discharge (Source: EPA Risk-Screening Environmental Indicators (RSEI) Model) - # AND - # Low income: In Nth percentile or above for percent of block group population - # of households where household income is less than or equal to twice the federal - # poverty level and has a low percent of higher ed students - # Source: Census's American Community Survey - - self.df[field_names.WASTEWATER_PCTILE_THRESHOLD] = ( - self.df[ - field_names.WASTEWATER_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - # Straight copy here in case we add additional water fields. - self.df[field_names.WATER_THRESHOLD_EXCEEDED] = self.df[ - field_names.WASTEWATER_PCTILE_THRESHOLD - ].copy() - - self.df[ - field_names.WASTEWATER_DISCHARGE_LOW_INCOME_LOW_HIGHER_ED_FIELD - ] = ( - self.df[field_names.WASTEWATER_PCTILE_THRESHOLD] - & self.df[field_names.FPL_200_AND_COLLEGE_ATTENDANCE_SERIES] - ) - - self._increment_total_eligibility_exceeded( - [field_names.WASTEWATER_DISCHARGE_LOW_INCOME_LOW_HIGHER_ED_FIELD], - skip_fips=constants.DROP_FIPS_FROM_NON_WTD_THRESHOLDS, - ) - - return self.df[ - field_names.WASTEWATER_DISCHARGE_LOW_INCOME_LOW_HIGHER_ED_FIELD - ] - - def _health_factor(self) -> bool: - # In Xth percentile or above for diabetes (Source: CDC Places) - # or - # In Xth percentile or above for asthma (Source: CDC Places) - # or - # In Xth percentile or above for heart disease - # or - # In Xth percentile or above for low life expectancy (Source: CDC Places) - # AND - # Low income: In Nth percentile or above for percent of block group population - # of households where household income is less than or equal to twice the federal - # poverty level and has a low percent of higher ed students - # Source: Census's American Community Survey - - health_eligibility_columns = [ - field_names.DIABETES_LOW_INCOME_LOW_HIGHER_ED_FIELD, - field_names.ASTHMA_LOW_INCOME_LOW_HIGHER_ED_FIELD, - field_names.HEART_DISEASE_LOW_INCOME_LOW_HIGHER_ED_FIELD, - field_names.LOW_LIFE_EXPECTANCY_LOW_INCOME_LOW_HIGHER_ED_FIELD, - ] - - self.df[field_names.DIABETES_PCTILE_THRESHOLD] = ( - self.df[ - field_names.DIABETES_FIELD + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[field_names.ASTHMA_PCTILE_THRESHOLD] = ( - self.df[ - field_names.ASTHMA_FIELD + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[field_names.HEART_DISEASE_PCTILE_THRESHOLD] = ( - self.df[ - field_names.HEART_DISEASE_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[field_names.LOW_LIFE_EXPECTANCY_PCTILE_THRESHOLD] = ( - self.df[ - field_names.LOW_LIFE_EXPECTANCY_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[field_names.HEALTH_THRESHOLD_EXCEEDED] = ( - ( - self.df[field_names.DIABETES_PCTILE_THRESHOLD] - | self.df[field_names.ASTHMA_PCTILE_THRESHOLD] - ) - | self.df[field_names.HEART_DISEASE_PCTILE_THRESHOLD] - ) | self.df[field_names.LOW_LIFE_EXPECTANCY_PCTILE_THRESHOLD] - - self.df[field_names.DIABETES_LOW_INCOME_LOW_HIGHER_ED_FIELD] = ( - self.df[field_names.DIABETES_PCTILE_THRESHOLD] - & self.df[field_names.FPL_200_AND_COLLEGE_ATTENDANCE_SERIES] - ) - self.df[field_names.ASTHMA_LOW_INCOME_LOW_HIGHER_ED_FIELD] = ( - self.df[field_names.ASTHMA_PCTILE_THRESHOLD] - & self.df[field_names.FPL_200_AND_COLLEGE_ATTENDANCE_SERIES] - ) - self.df[field_names.HEART_DISEASE_LOW_INCOME_LOW_HIGHER_ED_FIELD] = ( - self.df[field_names.HEART_DISEASE_PCTILE_THRESHOLD] - & self.df[field_names.FPL_200_AND_COLLEGE_ATTENDANCE_SERIES] - ) - self.df[ - field_names.LOW_LIFE_EXPECTANCY_LOW_INCOME_LOW_HIGHER_ED_FIELD - ] = ( - self.df[field_names.LOW_LIFE_EXPECTANCY_PCTILE_THRESHOLD] - & self.df[field_names.FPL_200_AND_COLLEGE_ATTENDANCE_SERIES] - ) - - self._increment_total_eligibility_exceeded( - health_eligibility_columns, - skip_fips=constants.DROP_FIPS_FROM_NON_WTD_THRESHOLDS, - ) - - return self.df[health_eligibility_columns].any(axis="columns") - - def _workforce_factor(self) -> bool: - # Where unemployment is above Xth percentile - # or - # Where median income as a percent of area median income is above Xth percentile - # or - # Where the percent of households at or below 100% of the federal poverty level - # is above Xth percentile - # or - # Where linguistic isolation is above Xth percentile - # AND - # Where the high school degree achievement rates for adults 25 years and older - # is less than Y% - # AND the higher ed attendance rates are under Z% - # (necessary to screen out university tracts) - - # Workforce criteria for states fields. - workforce_eligibility_columns = [ - field_names.UNEMPLOYMENT_LOW_HS_LOW_HIGHER_ED_FIELD, - field_names.POVERTY_LOW_HS_LOW_HIGHER_ED_FIELD, - field_names.LINGUISTIC_ISOLATION_LOW_HS_LOW_HIGHER_ED_FIELD, - field_names.LOW_MEDIAN_INCOME_LOW_HS_LOW_HIGHER_ED_FIELD, - ] - - self.df[field_names.LOW_HS_EDUCATION_LOW_HIGHER_ED_FIELD] = ( - self.df[field_names.HIGH_SCHOOL_ED_FIELD] - >= self.LACK_OF_HIGH_SCHOOL_MINIMUM_THRESHOLD - ) & ( - ( - self.df[field_names.COLLEGE_ATTENDANCE_FIELD] - <= self.MAX_COLLEGE_ATTENDANCE_THRESHOLD - ) - | ( - # If college attendance data is null for this tract, just rely on the - # poverty/AMI data - self.df[field_names.COLLEGE_ATTENDANCE_FIELD].isna() - ) - ) - - self.df[field_names.UNEMPLOYMENT_PCTILE_THRESHOLD] = ( - self.df[ - field_names.UNEMPLOYMENT_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[field_names.LOW_MEDIAN_INCOME_PCTILE_THRESHOLD] = ( - self.df[ - field_names.LOW_MEDIAN_INCOME_AS_PERCENT_OF_AMI_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[field_names.LINGUISTIC_ISOLATION_PCTILE_THRESHOLD] = ( - self.df[ - field_names.LINGUISTIC_ISO_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[field_names.POVERTY_PCTILE_THRESHOLD] = ( - self.df[ - field_names.POVERTY_LESS_THAN_100_FPL_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[field_names.LINGUISTIC_ISOLATION_LOW_HS_LOW_HIGHER_ED_FIELD] = ( - self.df[field_names.LINGUISTIC_ISOLATION_PCTILE_THRESHOLD] - & self.df[field_names.LOW_HS_EDUCATION_LOW_HIGHER_ED_FIELD] - ) - - self.df[field_names.POVERTY_LOW_HS_LOW_HIGHER_ED_FIELD] = ( - self.df[field_names.POVERTY_PCTILE_THRESHOLD] - & self.df[field_names.LOW_HS_EDUCATION_LOW_HIGHER_ED_FIELD] - ) - - self.df[field_names.LOW_MEDIAN_INCOME_LOW_HS_LOW_HIGHER_ED_FIELD] = ( - self.df[field_names.LOW_MEDIAN_INCOME_PCTILE_THRESHOLD] - & self.df[field_names.LOW_HS_EDUCATION_LOW_HIGHER_ED_FIELD] - ) - - self.df[field_names.UNEMPLOYMENT_LOW_HS_LOW_HIGHER_ED_FIELD] = ( - self.df[field_names.UNEMPLOYMENT_PCTILE_THRESHOLD] - & self.df[field_names.LOW_HS_EDUCATION_LOW_HIGHER_ED_FIELD] - ) - - workforce_combined_criteria_for_states = self.df[ - workforce_eligibility_columns - ].any(axis="columns") - - self._increment_total_eligibility_exceeded( - workforce_eligibility_columns - ) - - # Now, calculate workforce criteria for island territories. - island_areas_workforce_eligibility_columns = [ - field_names.ISLAND_AREAS_UNEMPLOYMENT_LOW_HS_EDUCATION_FIELD, - field_names.ISLAND_AREAS_POVERTY_LOW_HS_EDUCATION_FIELD, - field_names.ISLAND_AREAS_LOW_MEDIAN_INCOME_LOW_HS_EDUCATION_FIELD, - ] - - # First, combine unemployment. - # This will include an adjusted percentile column for the island areas - # to be used by the front end. - ( - self.df, - island_areas_unemployment_criteria_field_name, - ) = self._combine_island_areas_with_states_and_set_thresholds( - df=self.df, - column_from_island_areas=field_names.CENSUS_DECENNIAL_UNEMPLOYMENT_FIELD_2009, - column_from_decennial_census=field_names.CENSUS_UNEMPLOYMENT_FIELD_2010, - combined_column_name=field_names.COMBINED_UNEMPLOYMENT_2010, - threshold_cutoff_for_island_areas=self.ENVIRONMENTAL_BURDEN_THRESHOLD, - ) - - # TODO: Remove this, it's for checking only - assert ( - island_areas_unemployment_criteria_field_name - == field_names.ISLAND_UNEMPLOYMENT_PCTILE_THRESHOLD - ), "Error combining island columns" - - # Next, combine poverty. - # This will include an adjusted percentile column for the island areas - # to be used by the front end. - ( - self.df, - island_areas_poverty_criteria_field_name, - ) = self._combine_island_areas_with_states_and_set_thresholds( - df=self.df, - column_from_island_areas=field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_100_FPL_FIELD_2009, - column_from_decennial_census=field_names.CENSUS_POVERTY_LESS_THAN_100_FPL_FIELD_2010, - combined_column_name=field_names.COMBINED_POVERTY_LESS_THAN_100_FPL_FIELD_2010, - threshold_cutoff_for_island_areas=self.ENVIRONMENTAL_BURDEN_THRESHOLD, - ) - - # TODO: Remove this, it's for checking only - assert ( - island_areas_poverty_criteria_field_name - == field_names.ISLAND_POVERTY_PCTILE_THRESHOLD - ), "Error combining island columns" - - # Also check whether low area median income is 90th percentile or higher - # within the islands. - - # Note that because the field for low median does not have to be combined, - # unlike the other fields, we do not need to create a new percentile - # column. This code should probably be refactored when (TODO) we do the big - # refactor. - self.df[field_names.ISLAND_LOW_MEDIAN_INCOME_PCTILE_THRESHOLD] = ( - self.df[ - field_names.LOW_CENSUS_DECENNIAL_AREA_MEDIAN_INCOME_PERCENT_FIELD_2009 - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.ENVIRONMENTAL_BURDEN_THRESHOLD - ) - - self.df[field_names.ISLAND_AREAS_LOW_HS_EDUCATION_FIELD] = ( - self.df[field_names.CENSUS_DECENNIAL_HIGH_SCHOOL_ED_FIELD_2009] - >= self.LACK_OF_HIGH_SCHOOL_MINIMUM_THRESHOLD - ) - - self.df[ - field_names.ISLAND_AREAS_UNEMPLOYMENT_LOW_HS_EDUCATION_FIELD - ] = ( - self.df[island_areas_unemployment_criteria_field_name] - & self.df[field_names.ISLAND_AREAS_LOW_HS_EDUCATION_FIELD] - ) - - self.df[field_names.ISLAND_AREAS_POVERTY_LOW_HS_EDUCATION_FIELD] = ( - self.df[island_areas_poverty_criteria_field_name] - & self.df[field_names.ISLAND_AREAS_LOW_HS_EDUCATION_FIELD] - ) - - self.df[ - field_names.ISLAND_AREAS_LOW_MEDIAN_INCOME_LOW_HS_EDUCATION_FIELD - ] = ( - self.df[field_names.ISLAND_LOW_MEDIAN_INCOME_PCTILE_THRESHOLD] - & self.df[field_names.ISLAND_AREAS_LOW_HS_EDUCATION_FIELD] - ) - - workforce_combined_criteria_for_island_areas = self.df[ - island_areas_workforce_eligibility_columns - ].any(axis="columns") - - self._increment_total_eligibility_exceeded( - island_areas_workforce_eligibility_columns - ) - - percent_of_island_tracts_highlighted = ( - 100 - * workforce_combined_criteria_for_island_areas.sum() - # Choosing a random column from island areas to calculate the denominator. - / self.df[field_names.CENSUS_DECENNIAL_UNEMPLOYMENT_FIELD_2009] - .notnull() - .sum() - ) - - logger.debug( - f"For workforce criteria in island areas, " - f"{workforce_combined_criteria_for_island_areas.sum()} (" - f"{percent_of_island_tracts_highlighted:.2f}% of tracts that have non-null data " - f"in the column) have a value of TRUE." - ) - - # Because these criteria are calculated differently for the islands, we also calculate the - # thresholds to pass to the FE slightly differently - - self.df[field_names.WORKFORCE_THRESHOLD_EXCEEDED] = ( - ## First we calculate for the non-island areas - ( - ( - self.df[field_names.POVERTY_PCTILE_THRESHOLD] - | self.df[field_names.LINGUISTIC_ISOLATION_PCTILE_THRESHOLD] - ) - | self.df[field_names.LOW_MEDIAN_INCOME_PCTILE_THRESHOLD] - ) - | self.df[field_names.UNEMPLOYMENT_PCTILE_THRESHOLD] - ) | ( - ## then we calculate just for the island areas - ( - self.df[field_names.ISLAND_UNEMPLOYMENT_PCTILE_THRESHOLD] - | self.df[field_names.ISLAND_POVERTY_PCTILE_THRESHOLD] - ) - | self.df[field_names.ISLAND_LOW_MEDIAN_INCOME_PCTILE_THRESHOLD] - ) - - # Because of the island complications, we also have to separately calculate the threshold for - # socioeconomic thresholds - self.df[field_names.WORKFORCE_SOCIO_INDICATORS_EXCEEDED] = ( - self.df[field_names.ISLAND_AREAS_LOW_HS_EDUCATION_FIELD] - | self.df[field_names.LOW_HS_EDUCATION_LOW_HIGHER_ED_FIELD] - ) - - # A tract is included if it meets either the states tract criteria or the - # island areas tract criteria. - return ( - workforce_combined_criteria_for_states - | workforce_combined_criteria_for_island_areas - ) - - def add_columns(self) -> pd.DataFrame: - logger.debug("Adding Score M") - - self.df[field_names.THRESHOLD_COUNT] = 0 - - # TODO: move this inside of - # `_create_low_income_and_low_college_attendance_threshold` - # and change the return signature of that method. - # Create a standalone field that captures the college attendance boolean - # threshold. - self.df[field_names.LOW_INCOME_THRESHOLD] = ( - self.df[ - field_names.POVERTY_LESS_THAN_200_FPL_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.LOW_INCOME_THRESHOLD - ) - - # Because we are moving this variable to be in the same direction as all - # other variables, we change this to be < rather than <=. This translates - # to "80% or more of residents are not college students", rather than - # "Strictly greater than 80% of residents are not college students." - # There are two tracts that are impacted by this (that is, they have exactly) - # 20% college students -- neither of these has been a DAC under any score. - self.df[field_names.COLLEGE_ATTENDANCE_LESS_THAN_20_FIELD] = ( - self.df[field_names.COLLEGE_ATTENDANCE_FIELD] - < self.MAX_COLLEGE_ATTENDANCE_THRESHOLD - ) - - self.df[ - field_names.FPL_200_AND_COLLEGE_ATTENDANCE_SERIES - ] = self._create_low_income_and_low_college_attendance_threshold( - self.df - ) - self.df[field_names.M_CLIMATE] = self._climate_factor() - self.df[field_names.M_ENERGY] = self._energy_factor() - self.df[field_names.M_TRANSPORTATION] = self._transportation_factor() - self.df[field_names.M_HOUSING] = self._housing_factor() - self.df[field_names.M_POLLUTION] = self._pollution_factor() - self.df[field_names.M_WATER] = self._water_factor() - self.df[field_names.M_HEALTH] = self._health_factor() - self.df[field_names.M_WORKFORCE] = self._workforce_factor() - - factors = [ - field_names.M_CLIMATE, - field_names.M_ENERGY, - field_names.M_TRANSPORTATION, - field_names.M_HOUSING, - field_names.M_POLLUTION, - field_names.M_WATER, - field_names.M_HEALTH, - field_names.M_WORKFORCE, - ] - self.df[field_names.CATEGORY_COUNT] = self.df[factors].sum(axis=1) - self.df[field_names.SCORE_M_COMMUNITIES] = self.df[factors].any(axis=1) - - # Note: this is purely used for comparison tool analysis, and can be removed at a later date. - LMB. - non_workforce_factors = [ - field_names.M_CLIMATE, - field_names.M_ENERGY, - field_names.M_TRANSPORTATION, - field_names.M_HOUSING, - field_names.M_POLLUTION, - field_names.M_WATER, - field_names.M_HEALTH, - ] - self.df[field_names.M_NON_WORKFORCE] = self.df[ - non_workforce_factors - ].any(axis=1) - - self.df[ - field_names.SCORE_M + field_names.PERCENTILE_FIELD_SUFFIX - ] = self.df[field_names.SCORE_M_COMMUNITIES].astype(int) - - return self.df From ff9e7b9aa2c79ee27503df94dd650db89dc36e89 Mon Sep 17 00:00:00 2001 From: Carlos Felix <63804190+carlosfelix2@users.noreply.github.com> Date: Tue, 5 Nov 2024 11:31:54 -0500 Subject: [PATCH 02/28] Changes to allow local runs --- .github/CODEOWNERS | 1 - .github/workflows/codeql-analysis.yml | 6 +- .github/workflows/data-checks.yml | 2 +- data/data-pipeline/data_pipeline/constants.py | 7 + .../data_pipeline/etl/datasource.py | 5 +- .../data_pipeline/etl/downloader.py | 5 +- .../data_pipeline/etl/sources/census/etl.py | 1 + data/data-pipeline/data_pipeline/utils.py | 3 +- data/data-pipeline/poetry.lock | 5049 +++++++++++------ data/data-pipeline/pyproject.toml | 13 +- data/data-pipeline/tox.ini | 6 +- 11 files changed, 3231 insertions(+), 1867 deletions(-) create mode 100644 data/data-pipeline/data_pipeline/constants.py diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index eadc67c7..e69de29b 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +0,0 @@ -* @vim-usds @travis-newby @sampowers-usds @mattbowen-usds diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index d7d800b3..31f44ad3 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -45,7 +45,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v1 + uses: github/codeql-action/init@v2 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -56,7 +56,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v1 + uses: github/codeql-action/autobuild@v2 # ℹ️ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl @@ -70,4 +70,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1 + uses: github/codeql-action/analyze@v2 diff --git a/.github/workflows/data-checks.yml b/.github/workflows/data-checks.yml index 280a6e2a..ccfd4bd9 100644 --- a/.github/workflows/data-checks.yml +++ b/.github/workflows/data-checks.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: # checks all of the versions allowed in pyproject.toml - python-version: [3.8, 3.9] + python-version: [3.10.15] steps: # installs Python # one execution of the tests per version listed above diff --git a/data/data-pipeline/data_pipeline/constants.py b/data/data-pipeline/data_pipeline/constants.py new file mode 100644 index 00000000..8d4b422f --- /dev/null +++ b/data/data-pipeline/data_pipeline/constants.py @@ -0,0 +1,7 @@ +import logging + +LOG_LEVEL = logging.DEBUG +"""Log level for all loggers.""" + +NO_SSL_VERIFY = True +"""Set to true to skip SSL verification when downloading files. Useful for local development.""" diff --git a/data/data-pipeline/data_pipeline/etl/datasource.py b/data/data-pipeline/data_pipeline/etl/datasource.py index 3d299207..f77656c1 100644 --- a/data/data-pipeline/data_pipeline/etl/datasource.py +++ b/data/data-pipeline/data_pipeline/etl/datasource.py @@ -22,6 +22,7 @@ from pathlib import Path from typing import List from dataclasses import dataclass from abc import ABC, abstractmethod +from data_pipeline.constants import NO_SSL_VERIFY from data_pipeline.etl.downloader import Downloader from data_pipeline.etl.sources.census_acs.etl_utils import ( @@ -65,7 +66,7 @@ class FileDataSource(DataSource): Downloader.download_file_from_url( file_url=self.source, download_file_name=self.destination, - verify=True, + verify=not NO_SSL_VERIFY, ) def __str__(self): @@ -85,7 +86,7 @@ class ZIPDataSource(DataSource): Downloader.download_zip_file_from_url( file_url=self.source, unzipped_file_path=self.destination, - verify=True, + verify=not NO_SSL_VERIFY, ) def __str__(self): diff --git a/data/data-pipeline/data_pipeline/etl/downloader.py b/data/data-pipeline/data_pipeline/etl/downloader.py index 53ea2a38..55a97f1b 100644 --- a/data/data-pipeline/data_pipeline/etl/downloader.py +++ b/data/data-pipeline/data_pipeline/etl/downloader.py @@ -6,7 +6,9 @@ import shutil from pathlib import Path from data_pipeline.config import settings +from data_pipeline.utils import get_module_logger +logger = get_module_logger(__name__) class Downloader: """A simple class to encapsulate the download capabilities of the application""" @@ -34,12 +36,13 @@ class Downloader: urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) download_file_name.parent.mkdir(parents=True, exist_ok=True) - + logger.debug(f"Downloading {file_url}") response = requests.get( file_url, verify=verify, timeout=settings.REQUESTS_DEFAULT_TIMOUT ) if response.status_code == 200: file_contents = response.content + logger.debug("Downloaded.") else: raise Exception( f"HTTP response {response.status_code} from url {file_url}. Info: {response.content}" diff --git a/data/data-pipeline/data_pipeline/etl/sources/census/etl.py b/data/data-pipeline/data_pipeline/etl/sources/census/etl.py index 1f4b260a..e0ad704a 100644 --- a/data/data-pipeline/data_pipeline/etl/sources/census/etl.py +++ b/data/data-pipeline/data_pipeline/etl/sources/census/etl.py @@ -215,6 +215,7 @@ class CensusETL(ExtractTransformLoad): state_gdf = gpd.read_file(file_name) usa_df = usa_df.append(state_gdf) + logger.debug("Converting to CRS") usa_df = usa_df.to_crs( "+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs" ) diff --git a/data/data-pipeline/data_pipeline/utils.py b/data/data-pipeline/data_pipeline/utils.py index 31b52880..fd5ff5d7 100644 --- a/data/data-pipeline/data_pipeline/utils.py +++ b/data/data-pipeline/data_pipeline/utils.py @@ -13,6 +13,7 @@ import requests import urllib3 import yaml from data_pipeline.config import settings +from data_pipeline.constants import LOG_LEVEL from data_pipeline.content.schemas.download_schemas import CodebookConfig from data_pipeline.content.schemas.download_schemas import CSVConfig from data_pipeline.content.schemas.download_schemas import ExcelConfig @@ -48,7 +49,7 @@ def get_module_logger(module_name: str) -> logging.Logger: ) handler.setFormatter(formatter) logger.addHandler(handler) - logger.setLevel(logging.INFO) + logger.setLevel(LOG_LEVEL) logger.propagate = False # don't send log messages to the parent logger (to avoid duplicate log messages) return logger diff --git a/data/data-pipeline/poetry.lock b/data/data-pipeline/poetry.lock index 79c7f6a5..f0b51d2b 100644 --- a/data/data-pipeline/poetry.lock +++ b/data/data-pipeline/poetry.lock @@ -1,78 +1,249 @@ -# This file is automatically @generated by Poetry and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.4 and should not be changed by hand. [[package]] -name = "ansiwrap" -version = "0.8.4" -description = "textwrap, but savvy to ANSI colors and styles" -category = "dev" +name = "aiofiles" +version = "22.1.0" +description = "File support for asyncio." optional = false -python-versions = "*" +python-versions = ">=3.7,<4.0" files = [ - {file = "ansiwrap-0.8.4-py2.py3-none-any.whl", hash = "sha256:7b053567c88e1ad9eed030d3ac41b722125e4c1271c8a99ade797faff1f49fb1"}, - {file = "ansiwrap-0.8.4.zip", hash = "sha256:ca0c740734cde59bf919f8ff2c386f74f9a369818cdc60efe94893d01ea8d9b7"}, + {file = "aiofiles-22.1.0-py3-none-any.whl", hash = "sha256:1142fa8e80dbae46bb6339573ad4c8c0841358f79c6eb50a493dceca14621bad"}, + {file = "aiofiles-22.1.0.tar.gz", hash = "sha256:9107f1ca0b2a5553987a94a3c9959fe5b491fdf731389aa5b7b1bd0733e32de6"}, +] + +[[package]] +name = "aiohappyeyeballs" +version = "2.4.3" +description = "Happy Eyeballs for asyncio" +optional = false +python-versions = ">=3.8" +files = [ + {file = "aiohappyeyeballs-2.4.3-py3-none-any.whl", hash = "sha256:8a7a83727b2756f394ab2895ea0765a0a8c475e3c71e98d43d76f22b4b435572"}, + {file = "aiohappyeyeballs-2.4.3.tar.gz", hash = "sha256:75cf88a15106a5002a8eb1dab212525c00d1f4c0fa96e551c9fbe6f09a621586"}, +] + +[[package]] +name = "aiohttp" +version = "3.10.10" +description = "Async http client/server framework (asyncio)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "aiohttp-3.10.10-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:be7443669ae9c016b71f402e43208e13ddf00912f47f623ee5994e12fc7d4b3f"}, + {file = "aiohttp-3.10.10-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7b06b7843929e41a94ea09eb1ce3927865387e3e23ebe108e0d0d09b08d25be9"}, + {file = "aiohttp-3.10.10-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:333cf6cf8e65f6a1e06e9eb3e643a0c515bb850d470902274239fea02033e9a8"}, + {file = "aiohttp-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:274cfa632350225ce3fdeb318c23b4a10ec25c0e2c880eff951a3842cf358ac1"}, + {file = "aiohttp-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d9e5e4a85bdb56d224f412d9c98ae4cbd032cc4f3161818f692cd81766eee65a"}, + {file = "aiohttp-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2b606353da03edcc71130b52388d25f9a30a126e04caef1fd637e31683033abd"}, + {file = "aiohttp-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ab5a5a0c7a7991d90446a198689c0535be89bbd6b410a1f9a66688f0880ec026"}, + {file = "aiohttp-3.10.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:578a4b875af3e0daaf1ac6fa983d93e0bbfec3ead753b6d6f33d467100cdc67b"}, + {file = "aiohttp-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:8105fd8a890df77b76dd3054cddf01a879fc13e8af576805d667e0fa0224c35d"}, + {file = "aiohttp-3.10.10-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3bcd391d083f636c06a68715e69467963d1f9600f85ef556ea82e9ef25f043f7"}, + {file = "aiohttp-3.10.10-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:fbc6264158392bad9df19537e872d476f7c57adf718944cc1e4495cbabf38e2a"}, + {file = "aiohttp-3.10.10-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:e48d5021a84d341bcaf95c8460b152cfbad770d28e5fe14a768988c461b821bc"}, + {file = "aiohttp-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:2609e9ab08474702cc67b7702dbb8a80e392c54613ebe80db7e8dbdb79837c68"}, + {file = "aiohttp-3.10.10-cp310-cp310-win32.whl", hash = "sha256:84afcdea18eda514c25bc68b9af2a2b1adea7c08899175a51fe7c4fb6d551257"}, + {file = "aiohttp-3.10.10-cp310-cp310-win_amd64.whl", hash = "sha256:9c72109213eb9d3874f7ac8c0c5fa90e072d678e117d9061c06e30c85b4cf0e6"}, + {file = "aiohttp-3.10.10-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c30a0eafc89d28e7f959281b58198a9fa5e99405f716c0289b7892ca345fe45f"}, + {file = "aiohttp-3.10.10-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:258c5dd01afc10015866114e210fb7365f0d02d9d059c3c3415382ab633fcbcb"}, + {file = "aiohttp-3.10.10-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:15ecd889a709b0080f02721255b3f80bb261c2293d3c748151274dfea93ac871"}, + {file = "aiohttp-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f3935f82f6f4a3820270842e90456ebad3af15810cf65932bd24da4463bc0a4c"}, + {file = "aiohttp-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:413251f6fcf552a33c981c4709a6bba37b12710982fec8e558ae944bfb2abd38"}, + {file = "aiohttp-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d1720b4f14c78a3089562b8875b53e36b51c97c51adc53325a69b79b4b48ebcb"}, + {file = "aiohttp-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:679abe5d3858b33c2cf74faec299fda60ea9de62916e8b67e625d65bf069a3b7"}, + {file = "aiohttp-3.10.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:79019094f87c9fb44f8d769e41dbb664d6e8fcfd62f665ccce36762deaa0e911"}, + {file = "aiohttp-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:fe2fb38c2ed905a2582948e2de560675e9dfbee94c6d5ccdb1301c6d0a5bf092"}, + {file = "aiohttp-3.10.10-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:a3f00003de6eba42d6e94fabb4125600d6e484846dbf90ea8e48a800430cc142"}, + {file = "aiohttp-3.10.10-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:1bbb122c557a16fafc10354b9d99ebf2f2808a660d78202f10ba9d50786384b9"}, + {file = "aiohttp-3.10.10-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:30ca7c3b94708a9d7ae76ff281b2f47d8eaf2579cd05971b5dc681db8caac6e1"}, + {file = "aiohttp-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:df9270660711670e68803107d55c2b5949c2e0f2e4896da176e1ecfc068b974a"}, + {file = "aiohttp-3.10.10-cp311-cp311-win32.whl", hash = "sha256:aafc8ee9b742ce75044ae9a4d3e60e3d918d15a4c2e08a6c3c3e38fa59b92d94"}, + {file = "aiohttp-3.10.10-cp311-cp311-win_amd64.whl", hash = "sha256:362f641f9071e5f3ee6f8e7d37d5ed0d95aae656adf4ef578313ee585b585959"}, + {file = "aiohttp-3.10.10-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:9294bbb581f92770e6ed5c19559e1e99255e4ca604a22c5c6397b2f9dd3ee42c"}, + {file = "aiohttp-3.10.10-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:a8fa23fe62c436ccf23ff930149c047f060c7126eae3ccea005f0483f27b2e28"}, + {file = "aiohttp-3.10.10-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5c6a5b8c7926ba5d8545c7dd22961a107526562da31a7a32fa2456baf040939f"}, + {file = "aiohttp-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:007ec22fbc573e5eb2fb7dec4198ef8f6bf2fe4ce20020798b2eb5d0abda6138"}, + {file = "aiohttp-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9627cc1a10c8c409b5822a92d57a77f383b554463d1884008e051c32ab1b3742"}, + {file = "aiohttp-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:50edbcad60d8f0e3eccc68da67f37268b5144ecc34d59f27a02f9611c1d4eec7"}, + {file = "aiohttp-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a45d85cf20b5e0d0aa5a8dca27cce8eddef3292bc29d72dcad1641f4ed50aa16"}, + {file = "aiohttp-3.10.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0b00807e2605f16e1e198f33a53ce3c4523114059b0c09c337209ae55e3823a8"}, + {file = "aiohttp-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f2d4324a98062be0525d16f768a03e0bbb3b9fe301ceee99611dc9a7953124e6"}, + {file = "aiohttp-3.10.10-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:438cd072f75bb6612f2aca29f8bd7cdf6e35e8f160bc312e49fbecab77c99e3a"}, + {file = "aiohttp-3.10.10-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:baa42524a82f75303f714108fea528ccacf0386af429b69fff141ffef1c534f9"}, + {file = "aiohttp-3.10.10-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:a7d8d14fe962153fc681f6366bdec33d4356f98a3e3567782aac1b6e0e40109a"}, + {file = "aiohttp-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c1277cd707c465cd09572a774559a3cc7c7a28802eb3a2a9472588f062097205"}, + {file = "aiohttp-3.10.10-cp312-cp312-win32.whl", hash = "sha256:59bb3c54aa420521dc4ce3cc2c3fe2ad82adf7b09403fa1f48ae45c0cbde6628"}, + {file = "aiohttp-3.10.10-cp312-cp312-win_amd64.whl", hash = "sha256:0e1b370d8007c4ae31ee6db7f9a2fe801a42b146cec80a86766e7ad5c4a259cf"}, + {file = "aiohttp-3.10.10-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ad7593bb24b2ab09e65e8a1d385606f0f47c65b5a2ae6c551db67d6653e78c28"}, + {file = "aiohttp-3.10.10-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:1eb89d3d29adaf533588f209768a9c02e44e4baf832b08118749c5fad191781d"}, + {file = "aiohttp-3.10.10-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3fe407bf93533a6fa82dece0e74dbcaaf5d684e5a51862887f9eaebe6372cd79"}, + {file = "aiohttp-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50aed5155f819873d23520919e16703fc8925e509abbb1a1491b0087d1cd969e"}, + {file = "aiohttp-3.10.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4f05e9727ce409358baa615dbeb9b969db94324a79b5a5cea45d39bdb01d82e6"}, + {file = "aiohttp-3.10.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3dffb610a30d643983aeb185ce134f97f290f8935f0abccdd32c77bed9388b42"}, + {file = "aiohttp-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa6658732517ddabe22c9036479eabce6036655ba87a0224c612e1ae6af2087e"}, + {file = "aiohttp-3.10.10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:741a46d58677d8c733175d7e5aa618d277cd9d880301a380fd296975a9cdd7bc"}, + {file = "aiohttp-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e00e3505cd80440f6c98c6d69269dcc2a119f86ad0a9fd70bccc59504bebd68a"}, + {file = "aiohttp-3.10.10-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ffe595f10566f8276b76dc3a11ae4bb7eba1aac8ddd75811736a15b0d5311414"}, + {file = "aiohttp-3.10.10-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:bdfcf6443637c148c4e1a20c48c566aa694fa5e288d34b20fcdc58507882fed3"}, + {file = "aiohttp-3.10.10-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:d183cf9c797a5291e8301790ed6d053480ed94070637bfaad914dd38b0981f67"}, + {file = "aiohttp-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:77abf6665ae54000b98b3c742bc6ea1d1fb31c394bcabf8b5d2c1ac3ebfe7f3b"}, + {file = "aiohttp-3.10.10-cp313-cp313-win32.whl", hash = "sha256:4470c73c12cd9109db8277287d11f9dd98f77fc54155fc71a7738a83ffcc8ea8"}, + {file = "aiohttp-3.10.10-cp313-cp313-win_amd64.whl", hash = "sha256:486f7aabfa292719a2753c016cc3a8f8172965cabb3ea2e7f7436c7f5a22a151"}, + {file = "aiohttp-3.10.10-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:1b66ccafef7336a1e1f0e389901f60c1d920102315a56df85e49552308fc0486"}, + {file = "aiohttp-3.10.10-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:acd48d5b80ee80f9432a165c0ac8cbf9253eaddb6113269a5e18699b33958dbb"}, + {file = "aiohttp-3.10.10-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3455522392fb15ff549d92fbf4b73b559d5e43dc522588f7eb3e54c3f38beee7"}, + {file = "aiohttp-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45c3b868724137f713a38376fef8120c166d1eadd50da1855c112fe97954aed8"}, + {file = "aiohttp-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:da1dee8948d2137bb51fbb8a53cce6b1bcc86003c6b42565f008438b806cccd8"}, + {file = "aiohttp-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c5ce2ce7c997e1971b7184ee37deb6ea9922ef5163c6ee5aa3c274b05f9e12fa"}, + {file = "aiohttp-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28529e08fde6f12eba8677f5a8608500ed33c086f974de68cc65ab218713a59d"}, + {file = "aiohttp-3.10.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f7db54c7914cc99d901d93a34704833568d86c20925b2762f9fa779f9cd2e70f"}, + {file = "aiohttp-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:03a42ac7895406220124c88911ebee31ba8b2d24c98507f4a8bf826b2937c7f2"}, + {file = "aiohttp-3.10.10-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:7e338c0523d024fad378b376a79faff37fafb3c001872a618cde1d322400a572"}, + {file = "aiohttp-3.10.10-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:038f514fe39e235e9fef6717fbf944057bfa24f9b3db9ee551a7ecf584b5b480"}, + {file = "aiohttp-3.10.10-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:64f6c17757251e2b8d885d728b6433d9d970573586a78b78ba8929b0f41d045a"}, + {file = "aiohttp-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:93429602396f3383a797a2a70e5f1de5df8e35535d7806c9f91df06f297e109b"}, + {file = "aiohttp-3.10.10-cp38-cp38-win32.whl", hash = "sha256:c823bc3971c44ab93e611ab1a46b1eafeae474c0c844aff4b7474287b75fe49c"}, + {file = "aiohttp-3.10.10-cp38-cp38-win_amd64.whl", hash = "sha256:54ca74df1be3c7ca1cf7f4c971c79c2daf48d9aa65dea1a662ae18926f5bc8ce"}, + {file = "aiohttp-3.10.10-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:01948b1d570f83ee7bbf5a60ea2375a89dfb09fd419170e7f5af029510033d24"}, + {file = "aiohttp-3.10.10-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9fc1500fd2a952c5c8e3b29aaf7e3cc6e27e9cfc0a8819b3bce48cc1b849e4cc"}, + {file = "aiohttp-3.10.10-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f614ab0c76397661b90b6851a030004dac502e48260ea10f2441abd2207fbcc7"}, + {file = "aiohttp-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:00819de9e45d42584bed046314c40ea7e9aea95411b38971082cad449392b08c"}, + {file = "aiohttp-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:05646ebe6b94cc93407b3bf34b9eb26c20722384d068eb7339de802154d61bc5"}, + {file = "aiohttp-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:998f3bd3cfc95e9424a6acd7840cbdd39e45bc09ef87533c006f94ac47296090"}, + {file = "aiohttp-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9010c31cd6fa59438da4e58a7f19e4753f7f264300cd152e7f90d4602449762"}, + {file = "aiohttp-3.10.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7ea7ffc6d6d6f8a11e6f40091a1040995cdff02cfc9ba4c2f30a516cb2633554"}, + {file = "aiohttp-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:ef9c33cc5cbca35808f6c74be11eb7f5f6b14d2311be84a15b594bd3e58b5527"}, + {file = "aiohttp-3.10.10-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ce0cdc074d540265bfeb31336e678b4e37316849d13b308607efa527e981f5c2"}, + {file = "aiohttp-3.10.10-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:597a079284b7ee65ee102bc3a6ea226a37d2b96d0418cc9047490f231dc09fe8"}, + {file = "aiohttp-3.10.10-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:7789050d9e5d0c309c706953e5e8876e38662d57d45f936902e176d19f1c58ab"}, + {file = "aiohttp-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:e7f8b04d83483577fd9200461b057c9f14ced334dcb053090cea1da9c8321a91"}, + {file = "aiohttp-3.10.10-cp39-cp39-win32.whl", hash = "sha256:c02a30b904282777d872266b87b20ed8cc0d1501855e27f831320f471d54d983"}, + {file = "aiohttp-3.10.10-cp39-cp39-win_amd64.whl", hash = "sha256:edfe3341033a6b53a5c522c802deb2079eee5cbfbb0af032a55064bd65c73a23"}, + {file = "aiohttp-3.10.10.tar.gz", hash = "sha256:0631dd7c9f0822cc61c88586ca76d5b5ada26538097d0f1df510b082bad3411a"}, ] [package.dependencies] -textwrap3 = ">=0.9.2" +aiohappyeyeballs = ">=2.3.0" +aiosignal = ">=1.1.2" +attrs = ">=17.3.0" +frozenlist = ">=1.1.1" +multidict = ">=4.5,<7.0" +yarl = ">=1.12.0,<2.0" + +[package.extras] +speedups = ["Brotli", "aiodns (>=3.2.0)", "brotlicffi"] + +[[package]] +name = "aiosignal" +version = "1.3.1" +description = "aiosignal: a list of registered asynchronous callbacks" +optional = false +python-versions = ">=3.7" +files = [ + {file = "aiosignal-1.3.1-py3-none-any.whl", hash = "sha256:f8376fb07dd1e86a584e4fcdec80b36b7f81aac666ebc724e2c090300dd83b17"}, + {file = "aiosignal-1.3.1.tar.gz", hash = "sha256:54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc"}, +] + +[package.dependencies] +frozenlist = ">=1.1.0" + +[[package]] +name = "aiosqlite" +version = "0.20.0" +description = "asyncio bridge to the standard sqlite3 module" +optional = false +python-versions = ">=3.8" +files = [ + {file = "aiosqlite-0.20.0-py3-none-any.whl", hash = "sha256:36a1deaca0cac40ebe32aac9977a6e2bbc7f5189f23f4a54d5908986729e5bd6"}, + {file = "aiosqlite-0.20.0.tar.gz", hash = "sha256:6d35c8c256637f4672f843c31021464090805bf925385ac39473fb16eaaca3d7"}, +] + +[package.dependencies] +typing_extensions = ">=4.0" + +[package.extras] +dev = ["attribution (==1.7.0)", "black (==24.2.0)", "coverage[toml] (==7.4.1)", "flake8 (==7.0.0)", "flake8-bugbear (==24.2.6)", "flit (==3.9.0)", "mypy (==1.8.0)", "ufmt (==2.3.0)", "usort (==1.0.8.post1)"] +docs = ["sphinx (==7.2.6)", "sphinx-mdinclude (==0.5.3)"] + +[[package]] +name = "ansicolors" +version = "1.1.8" +description = "ANSI colors for Python" +optional = false +python-versions = "*" +files = [ + {file = "ansicolors-1.1.8-py2.py3-none-any.whl", hash = "sha256:00d2dde5a675579325902536738dd27e4fac1fd68f773fe36c21044eb559e187"}, + {file = "ansicolors-1.1.8.zip", hash = "sha256:99f94f5e3348a0bcd43c82e5fc4414013ccc19d70bd939ad71e0133ce9c372e0"}, +] [[package]] name = "anyio" -version = "3.6.1" +version = "4.6.2.post1" description = "High level compatibility layer for multiple asynchronous event loop implementations" -category = "dev" optional = false -python-versions = ">=3.6.2" +python-versions = ">=3.9" files = [ - {file = "anyio-3.6.1-py3-none-any.whl", hash = "sha256:cb29b9c70620506a9a8f87a309591713446953302d7d995344d0d7c6c0c9a7be"}, - {file = "anyio-3.6.1.tar.gz", hash = "sha256:413adf95f93886e442aea925f3ee43baa5a765a64a0f52c6081894f9992fdd0b"}, + {file = "anyio-4.6.2.post1-py3-none-any.whl", hash = "sha256:6d170c36fba3bdd840c73d3868c1e777e33676a69c3a72cf0a0d5d6d8009b61d"}, + {file = "anyio-4.6.2.post1.tar.gz", hash = "sha256:4c8bc31ccdb51c7f7bd251f51c609e038d63e34219b44aa86e47576389880b4c"}, ] [package.dependencies] +exceptiongroup = {version = ">=1.0.2", markers = "python_version < \"3.11\""} idna = ">=2.8" sniffio = ">=1.1" +typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] -doc = ["packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["contextlib2", "coverage[toml] (>=4.5)", "hypothesis (>=4.0)", "mock (>=4)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (<0.15)", "uvloop (>=0.15)"] -trio = ["trio (>=0.16)"] +doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] +trio = ["trio (>=0.26.1)"] [[package]] -name = "appnope" -version = "0.1.3" -description = "Disable App Nap on macOS >= 10.9" -category = "main" +name = "appdirs" +version = "1.4.4" +description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." optional = false python-versions = "*" files = [ - {file = "appnope-0.1.3-py2.py3-none-any.whl", hash = "sha256:265a455292d0bd8a72453494fa24df5a11eb18373a60c7c0430889f22548605e"}, - {file = "appnope-0.1.3.tar.gz", hash = "sha256:02bd91c4de869fbb1e1c50aafc4098827a7a54ab2f39d9dcba6c9547ed920e24"}, + {file = "appdirs-1.4.4-py2.py3-none-any.whl", hash = "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128"}, + {file = "appdirs-1.4.4.tar.gz", hash = "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41"}, +] + +[[package]] +name = "appnope" +version = "0.1.4" +description = "Disable App Nap on macOS >= 10.9" +optional = false +python-versions = ">=3.6" +files = [ + {file = "appnope-0.1.4-py2.py3-none-any.whl", hash = "sha256:502575ee11cd7a28c0205f379b525beefebab9d161b7c964670864014ed7213c"}, + {file = "appnope-0.1.4.tar.gz", hash = "sha256:1de3860566df9caf38f01f86f65e0e13e379af54f9e4bee1e66b48f2efffd1ee"}, ] [[package]] name = "argon2-cffi" -version = "21.3.0" -description = "The secure Argon2 password hashing algorithm." -category = "main" +version = "23.1.0" +description = "Argon2 for Python" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" files = [ - {file = "argon2-cffi-21.3.0.tar.gz", hash = "sha256:d384164d944190a7dd7ef22c6aa3ff197da12962bd04b17f64d4e93d934dba5b"}, - {file = "argon2_cffi-21.3.0-py3-none-any.whl", hash = "sha256:8c976986f2c5c0e5000919e6de187906cfd81fb1c72bf9d88c01177e77da7f80"}, + {file = "argon2_cffi-23.1.0-py3-none-any.whl", hash = "sha256:c670642b78ba29641818ab2e68bd4e6a78ba53b7eff7b4c3815ae16abf91c7ea"}, + {file = "argon2_cffi-23.1.0.tar.gz", hash = "sha256:879c3e79a2729ce768ebb7d36d4609e3a78a4ca2ec3a9f12286ca057e3d0db08"}, ] [package.dependencies] argon2-cffi-bindings = "*" [package.extras] -dev = ["cogapp", "coverage[toml] (>=5.0.2)", "furo", "hypothesis", "pre-commit", "pytest", "sphinx", "sphinx-notfound-page", "tomli"] -docs = ["furo", "sphinx", "sphinx-notfound-page"] -tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pytest"] +dev = ["argon2-cffi[tests,typing]", "tox (>4)"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-copybutton", "sphinx-notfound-page"] +tests = ["hypothesis", "pytest"] +typing = ["mypy"] [[package]] name = "argon2-cffi-bindings" version = "21.2.0" description = "Low-level CFFI bindings for Argon2" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -107,46 +278,65 @@ dev = ["cogapp", "pre-commit", "pytest", "wheel"] tests = ["pytest"] [[package]] -name = "astroid" -version = "2.11.7" -description = "An abstract syntax tree for Python with inference support." -category = "main" +name = "arrow" +version = "1.3.0" +description = "Better dates & times for Python" optional = false -python-versions = ">=3.6.2" +python-versions = ">=3.8" files = [ - {file = "astroid-2.11.7-py3-none-any.whl", hash = "sha256:86b0a340a512c65abf4368b80252754cda17c02cdbbd3f587dddf98112233e7b"}, - {file = "astroid-2.11.7.tar.gz", hash = "sha256:bb24615c77f4837c707669d16907331374ae8a964650a66999da3f5ca68dc946"}, + {file = "arrow-1.3.0-py3-none-any.whl", hash = "sha256:c728b120ebc00eb84e01882a6f5e7927a53960aa990ce7dd2b10f39005a67f80"}, + {file = "arrow-1.3.0.tar.gz", hash = "sha256:d4540617648cb5f895730f1ad8c82a65f2dad0166f57b75f3ca54759c4d67a85"}, +] + +[package.dependencies] +python-dateutil = ">=2.7.0" +types-python-dateutil = ">=2.8.10" + +[package.extras] +doc = ["doc8", "sphinx (>=7.0.0)", "sphinx-autobuild", "sphinx-autodoc-typehints", "sphinx_rtd_theme (>=1.3.0)"] +test = ["dateparser (==1.*)", "pre-commit", "pytest", "pytest-cov", "pytest-mock", "pytz (==2021.1)", "simplejson (==3.*)"] + +[[package]] +name = "astroid" +version = "2.15.8" +description = "An abstract syntax tree for Python with inference support." +optional = false +python-versions = ">=3.7.2" +files = [ + {file = "astroid-2.15.8-py3-none-any.whl", hash = "sha256:1aa149fc5c6589e3d0ece885b4491acd80af4f087baafa3fb5203b113e68cd3c"}, + {file = "astroid-2.15.8.tar.gz", hash = "sha256:6c107453dffee9055899705de3c9ead36e74119cee151e5a9aaf7f0b0e020a6a"}, ] [package.dependencies] lazy-object-proxy = ">=1.4.0" -setuptools = ">=20.0" -typing-extensions = {version = ">=3.10", markers = "python_version < \"3.10\""} -wrapt = ">=1.11,<2" +typing-extensions = {version = ">=4.0.0", markers = "python_version < \"3.11\""} +wrapt = [ + {version = ">=1.11,<2", markers = "python_version < \"3.11\""}, + {version = ">=1.14,<2", markers = "python_version >= \"3.11\""}, +] [[package]] name = "asttokens" -version = "2.2.1" +version = "2.4.1" description = "Annotate AST trees with source code positions" -category = "main" optional = false python-versions = "*" files = [ - {file = "asttokens-2.2.1-py2.py3-none-any.whl", hash = "sha256:6b0ac9e93fb0335014d382b8fa9b3afa7df546984258005da0b9e7095b3deb1c"}, - {file = "asttokens-2.2.1.tar.gz", hash = "sha256:4622110b2a6f30b77e1473affaa97e711bc2f07d3f10848420ff1898edbe94f3"}, + {file = "asttokens-2.4.1-py2.py3-none-any.whl", hash = "sha256:051ed49c3dcae8913ea7cd08e46a606dba30b79993209636c4875bc1d637bc24"}, + {file = "asttokens-2.4.1.tar.gz", hash = "sha256:b03869718ba9a6eb027e134bfdf69f38a236d681c83c160d510768af11254ba0"}, ] [package.dependencies] -six = "*" +six = ">=1.12.0" [package.extras] -test = ["astroid", "pytest"] +astroid = ["astroid (>=1,<2)", "astroid (>=2,<4)"] +test = ["astroid (>=1,<2)", "astroid (>=2,<4)", "pytest"] [[package]] name = "atomicwrites" version = "1.4.1" description = "Atomic file writes." -category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -155,123 +345,104 @@ files = [ [[package]] name = "attrs" -version = "22.1.0" +version = "24.2.0" description = "Classes Without Boilerplate" -category = "main" optional = false -python-versions = ">=3.5" +python-versions = ">=3.7" files = [ - {file = "attrs-22.1.0-py2.py3-none-any.whl", hash = "sha256:86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c"}, - {file = "attrs-22.1.0.tar.gz", hash = "sha256:29adc2665447e5191d0e7c568fde78b21f9672d344281d0c6e1ab085429b22b6"}, + {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, + {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, ] [package.extras] -dev = ["cloudpickle", "coverage[toml] (>=5.0.2)", "furo", "hypothesis", "mypy (>=0.900,!=0.940)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "sphinx", "sphinx-notfound-page", "zope.interface"] -docs = ["furo", "sphinx", "sphinx-notfound-page", "zope.interface"] -tests = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy (>=0.900,!=0.940)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "zope.interface"] -tests-no-zope = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy (>=0.900,!=0.940)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins"] +benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] [[package]] name = "babel" -version = "2.10.3" +version = "2.16.0" description = "Internationalization utilities" -category = "dev" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "Babel-2.10.3-py3-none-any.whl", hash = "sha256:ff56f4892c1c4bf0d814575ea23471c230d544203c7748e8c68f0089478d48eb"}, - {file = "Babel-2.10.3.tar.gz", hash = "sha256:7614553711ee97490f732126dc077f8d0ae084ebc6a96e23db1482afabdb2c51"}, + {file = "babel-2.16.0-py3-none-any.whl", hash = "sha256:368b5b98b37c06b7daf6696391c3240c938b37767d4584413e8438c5c435fa8b"}, + {file = "babel-2.16.0.tar.gz", hash = "sha256:d1f3554ca26605fe173f3de0c65f750f5a42f924499bf134de6423582298e316"}, ] -[package.dependencies] -pytz = ">=2015.7" - -[[package]] -name = "backcall" -version = "0.2.0" -description = "Specifications for callback functions passed in to an API" -category = "main" -optional = false -python-versions = "*" -files = [ - {file = "backcall-0.2.0-py2.py3-none-any.whl", hash = "sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255"}, - {file = "backcall-0.2.0.tar.gz", hash = "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e"}, -] +[package.extras] +dev = ["freezegun (>=1.0,<2.0)", "pytest (>=6.0)", "pytest-cov"] [[package]] name = "beautifulsoup4" -version = "4.11.1" +version = "4.12.3" description = "Screen-scraping library" -category = "main" optional = false python-versions = ">=3.6.0" files = [ - {file = "beautifulsoup4-4.11.1-py3-none-any.whl", hash = "sha256:58d5c3d29f5a36ffeb94f02f0d786cd53014cf9b3b3951d42e0080d8a9498d30"}, - {file = "beautifulsoup4-4.11.1.tar.gz", hash = "sha256:ad9aa55b65ef2808eb405f46cf74df7fcb7044d5cbc26487f96eb2ef2e436693"}, + {file = "beautifulsoup4-4.12.3-py3-none-any.whl", hash = "sha256:b80878c9f40111313e55da8ba20bdba06d8fa3969fc68304167741bbf9e082ed"}, + {file = "beautifulsoup4-4.12.3.tar.gz", hash = "sha256:74e3d1928edc070d21748185c46e3fb33490f22f52a3addee9aee0f4f7781051"}, ] [package.dependencies] soupsieve = ">1.2" [package.extras] +cchardet = ["cchardet"] +chardet = ["chardet"] +charset-normalizer = ["charset-normalizer"] html5lib = ["html5lib"] lxml = ["lxml"] [[package]] name = "black" -version = "21.12b0" +version = "21.6b0" description = "The uncompromising code formatter." -category = "dev" optional = false python-versions = ">=3.6.2" files = [ - {file = "black-21.12b0-py3-none-any.whl", hash = "sha256:a615e69ae185e08fdd73e4715e260e2479c861b5740057fde6e8b4e3b7dd589f"}, - {file = "black-21.12b0.tar.gz", hash = "sha256:77b80f693a569e2e527958459634f18df9b0ba2625ba4e0c2d5da5be42e6f2b3"}, + {file = "black-21.6b0-py3-none-any.whl", hash = "sha256:dfb8c5a069012b2ab1e972e7b908f5fb42b6bbabcba0a788b86dc05067c7d9c7"}, + {file = "black-21.6b0.tar.gz", hash = "sha256:dc132348a88d103016726fe360cb9ede02cecf99b76e3660ce6c596be132ce04"}, ] [package.dependencies] +appdirs = "*" click = ">=7.1.2" mypy-extensions = ">=0.4.3" -pathspec = ">=0.9.0,<1" -platformdirs = ">=2" -tomli = ">=0.2.6,<2.0.0" -typing-extensions = [ - {version = ">=3.10.0.0", markers = "python_version < \"3.10\""}, - {version = ">=3.10.0.0,<3.10.0.1 || >3.10.0.1", markers = "python_version >= \"3.10\""}, -] +pathspec = ">=0.8.1,<1" +regex = ">=2020.1.8" +toml = ">=0.10.1" [package.extras] colorama = ["colorama (>=0.4.3)"] -d = ["aiohttp (>=3.7.4)"] -jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] -python2 = ["typed-ast (>=1.4.3)"] +d = ["aiohttp (>=3.6.0)", "aiohttp-cors (>=0.4.0)"] +python2 = ["typed-ast (>=1.4.2)"] uvloop = ["uvloop (>=0.15.2)"] [[package]] name = "bleach" -version = "5.0.1" +version = "6.2.0" description = "An easy safelist-based HTML-sanitizing tool." -category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.9" files = [ - {file = "bleach-5.0.1-py3-none-any.whl", hash = "sha256:085f7f33c15bd408dd9b17a4ad77c577db66d76203e5984b1bd59baeee948b2a"}, - {file = "bleach-5.0.1.tar.gz", hash = "sha256:0d03255c47eb9bd2f26aa9bb7f2107732e7e8fe195ca2f64709fcf3b0a4a085c"}, + {file = "bleach-6.2.0-py3-none-any.whl", hash = "sha256:117d9c6097a7c3d22fd578fcd8d35ff1e125df6736f554da4e432fdd63f31e5e"}, + {file = "bleach-6.2.0.tar.gz", hash = "sha256:123e894118b8a599fd80d3ec1a6d4cc7ce4e5882b1317a7e1ba69b56e95f991f"}, ] [package.dependencies] -six = ">=1.9.0" webencodings = "*" [package.extras] -css = ["tinycss2 (>=1.1.0,<1.2)"] -dev = ["Sphinx (==4.3.2)", "black (==22.3.0)", "build (==0.8.0)", "flake8 (==4.0.1)", "hashin (==0.17.0)", "mypy (==0.961)", "pip-tools (==6.6.2)", "pytest (==7.1.2)", "tox (==3.25.0)", "twine (==4.0.1)", "wheel (==0.37.1)"] +css = ["tinycss2 (>=1.1.0,<1.5)"] [[package]] name = "censusdata" version = "1.15.post1" description = "Download data from U.S. Census API" -category = "main" optional = false python-versions = ">=2.7" files = [ @@ -284,88 +455,89 @@ requests = "*" [[package]] name = "certifi" -version = "2022.12.7" +version = "2024.8.30" description = "Python package for providing Mozilla's CA Bundle." -category = "main" optional = false python-versions = ">=3.6" files = [ - {file = "certifi-2022.12.7-py3-none-any.whl", hash = "sha256:4ad3232f5e926d6718ec31cfc1fcadfde020920e278684144551c91769c7bc18"}, - {file = "certifi-2022.12.7.tar.gz", hash = "sha256:35824b4c3a97115964b408844d64aa14db1cc518f6562e8d7261699d1350a9e3"}, + {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, + {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, ] [[package]] name = "cffi" -version = "1.15.1" +version = "1.17.1" description = "Foreign Function Interface for Python calling C code." -category = "main" optional = false -python-versions = "*" +python-versions = ">=3.8" files = [ - {file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"}, - {file = "cffi-1.15.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2"}, - {file = "cffi-1.15.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914"}, - {file = "cffi-1.15.1-cp27-cp27m-win32.whl", hash = "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3"}, - {file = "cffi-1.15.1-cp27-cp27m-win_amd64.whl", hash = "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e"}, - {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162"}, - {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b"}, - {file = "cffi-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21"}, - {file = "cffi-1.15.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4"}, - {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01"}, - {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e"}, - {file = "cffi-1.15.1-cp310-cp310-win32.whl", hash = "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2"}, - {file = "cffi-1.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d"}, - {file = "cffi-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac"}, - {file = "cffi-1.15.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c"}, - {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef"}, - {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8"}, - {file = "cffi-1.15.1-cp311-cp311-win32.whl", hash = "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d"}, - {file = "cffi-1.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104"}, - {file = "cffi-1.15.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e"}, - {file = "cffi-1.15.1-cp36-cp36m-win32.whl", hash = "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf"}, - {file = "cffi-1.15.1-cp36-cp36m-win_amd64.whl", hash = "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497"}, - {file = "cffi-1.15.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426"}, - {file = "cffi-1.15.1-cp37-cp37m-win32.whl", hash = "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9"}, - {file = "cffi-1.15.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045"}, - {file = "cffi-1.15.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192"}, - {file = "cffi-1.15.1-cp38-cp38-win32.whl", hash = "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314"}, - {file = "cffi-1.15.1-cp38-cp38-win_amd64.whl", hash = "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5"}, - {file = "cffi-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585"}, - {file = "cffi-1.15.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27"}, - {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76"}, - {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3"}, - {file = "cffi-1.15.1-cp39-cp39-win32.whl", hash = "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee"}, - {file = "cffi-1.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c"}, - {file = "cffi-1.15.1.tar.gz", hash = "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9"}, + {file = "cffi-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df8b1c11f177bc2313ec4b2d46baec87a5f3e71fc8b45dab2ee7cae86d9aba14"}, + {file = "cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f2cdc858323644ab277e9bb925ad72ae0e67f69e804f4898c070998d50b1a67"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:edae79245293e15384b51f88b00613ba9f7198016a5948b5dddf4917d4d26382"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45398b671ac6d70e67da8e4224a065cec6a93541bb7aebe1b198a61b58c7b702"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ad9413ccdeda48c5afdae7e4fa2192157e991ff761e7ab8fdd8926f40b160cc3"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5da5719280082ac6bd9aa7becb3938dc9f9cbd57fac7d2871717b1feb0902ab6"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bb1a08b8008b281856e5971307cc386a8e9c5b625ac297e853d36da6efe9c17"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:045d61c734659cc045141be4bae381a41d89b741f795af1dd018bfb532fd0df8"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6883e737d7d9e4899a8a695e00ec36bd4e5e4f18fabe0aca0efe0a4b44cdb13e"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6b8b4a92e1c65048ff98cfe1f735ef8f1ceb72e3d5f0c25fdb12087a23da22be"}, + {file = "cffi-1.17.1-cp310-cp310-win32.whl", hash = "sha256:c9c3d058ebabb74db66e431095118094d06abf53284d9c81f27300d0e0d8bc7c"}, + {file = "cffi-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:0f048dcf80db46f0098ccac01132761580d28e28bc0f78ae0d58048063317e15"}, + {file = "cffi-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a45e3c6913c5b87b3ff120dcdc03f6131fa0065027d0ed7ee6190736a74cd401"}, + {file = "cffi-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30c5e0cb5ae493c04c8b42916e52ca38079f1b235c2f8ae5f4527b963c401caf"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f75c7ab1f9e4aca5414ed4d8e5c0e303a34f4421f8a0d47a4d019ceff0ab6af4"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1ed2dd2972641495a3ec98445e09766f077aee98a1c896dcb4ad0d303628e41"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46bf43160c1a35f7ec506d254e5c890f3c03648a4dbac12d624e4490a7046cd1"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a24ed04c8ffd54b0729c07cee15a81d964e6fee0e3d4d342a27b020d22959dc6"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:610faea79c43e44c71e1ec53a554553fa22321b65fae24889706c0a84d4ad86d"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a9b15d491f3ad5d692e11f6b71f7857e7835eb677955c00cc0aefcd0669adaf6"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:de2ea4b5833625383e464549fec1bc395c1bdeeb5f25c4a3a82b5a8c756ec22f"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fc48c783f9c87e60831201f2cce7f3b2e4846bf4d8728eabe54d60700b318a0b"}, + {file = "cffi-1.17.1-cp311-cp311-win32.whl", hash = "sha256:85a950a4ac9c359340d5963966e3e0a94a676bd6245a4b55bc43949eee26a655"}, + {file = "cffi-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:caaf0640ef5f5517f49bc275eca1406b0ffa6aa184892812030f04c2abf589a0"}, + {file = "cffi-1.17.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:805b4371bf7197c329fcb3ead37e710d1bca9da5d583f5073b799d5c5bd1eee4"}, + {file = "cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:733e99bc2df47476e3848417c5a4540522f234dfd4ef3ab7fafdf555b082ec0c"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1257bdabf294dceb59f5e70c64a3e2f462c30c7ad68092d01bbbfb1c16b1ba36"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da95af8214998d77a98cc14e3a3bd00aa191526343078b530ceb0bd710fb48a5"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d63afe322132c194cf832bfec0dc69a99fb9bb6bbd550f161a49e9e855cc78ff"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f79fc4fc25f1c8698ff97788206bb3c2598949bfe0fef03d299eb1b5356ada99"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b62ce867176a75d03a665bad002af8e6d54644fad99a3c70905c543130e39d93"}, + {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:386c8bf53c502fff58903061338ce4f4950cbdcb23e2902d86c0f722b786bbe3"}, + {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ceb10419a9adf4460ea14cfd6bc43d08701f0835e979bf821052f1805850fe8"}, + {file = "cffi-1.17.1-cp312-cp312-win32.whl", hash = "sha256:a08d7e755f8ed21095a310a693525137cfe756ce62d066e53f502a83dc550f65"}, + {file = "cffi-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:51392eae71afec0d0c8fb1a53b204dbb3bcabcb3c9b807eedf3e1e6ccf2de903"}, + {file = "cffi-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f3a2b4222ce6b60e2e8b337bb9596923045681d71e5a082783484d845390938e"}, + {file = "cffi-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0984a4925a435b1da406122d4d7968dd861c1385afe3b45ba82b750f229811e2"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d01b12eeeb4427d3110de311e1774046ad344f5b1a7403101878976ecd7a10f3"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:706510fe141c86a69c8ddc029c7910003a17353970cff3b904ff0686a5927683"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de55b766c7aa2e2a3092c51e0483d700341182f08e67c63630d5b6f200bb28e5"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c59d6e989d07460165cc5ad3c61f9fd8f1b4796eacbd81cee78957842b834af4"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd398dbc6773384a17fe0d3e7eeb8d1a21c2200473ee6806bb5e6a8e62bb73dd"}, + {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:3edc8d958eb099c634dace3c7e16560ae474aa3803a5df240542b305d14e14ed"}, + {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:72e72408cad3d5419375fc87d289076ee319835bdfa2caad331e377589aebba9"}, + {file = "cffi-1.17.1-cp313-cp313-win32.whl", hash = "sha256:e03eab0a8677fa80d646b5ddece1cbeaf556c313dcfac435ba11f107ba117b5d"}, + {file = "cffi-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:f6a16c31041f09ead72d69f583767292f750d24913dadacf5756b966aacb3f1a"}, + {file = "cffi-1.17.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:636062ea65bd0195bc012fea9321aca499c0504409f413dc88af450b57ffd03b"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c7eac2ef9b63c79431bc4b25f1cd649d7f061a28808cbc6c47b534bd789ef964"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e221cf152cff04059d011ee126477f0d9588303eb57e88923578ace7baad17f9"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:31000ec67d4221a71bd3f67df918b1f88f676f1c3b535a7eb473255fdc0b83fc"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6f17be4345073b0a7b8ea599688f692ac3ef23ce28e5df79c04de519dbc4912c"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2b1fac190ae3ebfe37b979cc1ce69c81f4e4fe5746bb401dca63a9062cdaf1"}, + {file = "cffi-1.17.1-cp38-cp38-win32.whl", hash = "sha256:7596d6620d3fa590f677e9ee430df2958d2d6d6de2feeae5b20e82c00b76fbf8"}, + {file = "cffi-1.17.1-cp38-cp38-win_amd64.whl", hash = "sha256:78122be759c3f8a014ce010908ae03364d00a1f81ab5c7f4a7a5120607ea56e1"}, + {file = "cffi-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b2ab587605f4ba0bf81dc0cb08a41bd1c0a5906bd59243d56bad7668a6fc6c16"}, + {file = "cffi-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:28b16024becceed8c6dfbc75629e27788d8a3f9030691a1dbf9821a128b22c36"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d599671f396c4723d016dbddb72fe8e0397082b0a77a4fab8028923bec050e8"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca74b8dbe6e8e8263c0ffd60277de77dcee6c837a3d0881d8c1ead7268c9e576"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f7f5baafcc48261359e14bcd6d9bff6d4b28d9103847c9e136694cb0501aef87"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98e3969bcff97cae1b2def8ba499ea3d6f31ddfdb7635374834cf89a1a08ecf0"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdf5ce3acdfd1661132f2a9c19cac174758dc2352bfe37d98aa7512c6b7178b3"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9755e4345d1ec879e3849e62222a18c7174d65a6a92d5b346b1863912168b595"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f1e22e8c4419538cb197e4dd60acc919d7696e5ef98ee4da4e01d3f8cfa4cc5a"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c03e868a0b3bc35839ba98e74211ed2b05d2119be4e8a0f224fba9384f1fe02e"}, + {file = "cffi-1.17.1-cp39-cp39-win32.whl", hash = "sha256:e31ae45bc2e29f6b2abd0de1cc3b9d5205aa847cafaecb8af1476a609a2f6eb7"}, + {file = "cffi-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:d016c76bdd850f3c626af19b0542c9677ba156e4ee4fccfdd7848803533ef662"}, + {file = "cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824"}, ] [package.dependencies] @@ -373,24 +545,122 @@ pycparser = "*" [[package]] name = "charset-normalizer" -version = "2.1.0" +version = "3.4.0" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -category = "main" optional = false -python-versions = ">=3.6.0" +python-versions = ">=3.7.0" files = [ - {file = "charset-normalizer-2.1.0.tar.gz", hash = "sha256:575e708016ff3a5e3681541cb9d79312c416835686d054a23accb873b254f413"}, - {file = "charset_normalizer-2.1.0-py3-none-any.whl", hash = "sha256:5189b6f22b01957427f35b6a08d9a0bc45b46d3788ef5a92e978433c7a35f8a5"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win32.whl", hash = "sha256:9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win32.whl", hash = "sha256:7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca"}, + {file = "charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079"}, + {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, ] -[package.extras] -unicode-backport = ["unicodedata2"] - [[package]] name = "click" version = "8.0.4" description = "Composable command line interface toolkit" -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -405,7 +675,6 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} name = "click-plugins" version = "1.1.1" description = "An extension module for click to enable registering CLI commands via setuptools entry-points." -category = "main" optional = false python-versions = "*" files = [ @@ -423,7 +692,6 @@ dev = ["coveralls", "pytest (>=3.6)", "pytest-cov", "wheel"] name = "cligj" version = "0.7.2" description = "Click params for commmand line interfaces to GeoJSON" -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4" files = [ @@ -439,77 +707,185 @@ test = ["pytest-cov"] [[package]] name = "colorama" -version = "0.4.5" +version = "0.4.6" description = "Cross-platform colored terminal text." -category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" files = [ - {file = "colorama-0.4.5-py2.py3-none-any.whl", hash = "sha256:854bf444933e37f5824ae7bfc1e98d5bce2ebe4160d46b5edf346a89358e99da"}, - {file = "colorama-0.4.5.tar.gz", hash = "sha256:e6c6b4334fc50988a639d9b98aa429a0b57da6e17b9a44f0451f930b6967b7a4"}, + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, ] +[[package]] +name = "comm" +version = "0.2.2" +description = "Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc." +optional = false +python-versions = ">=3.8" +files = [ + {file = "comm-0.2.2-py3-none-any.whl", hash = "sha256:e6fb86cb70ff661ee8c9c14e7d36d6de3b4066f1441be4063df9c5009f0a64d3"}, + {file = "comm-0.2.2.tar.gz", hash = "sha256:3fd7a84065306e07bea1773df6eb8282de51ba82f77c72f9c85716ab11fe980e"}, +] + +[package.dependencies] +traitlets = ">=4" + +[package.extras] +test = ["pytest"] + [[package]] name = "configparser" -version = "5.2.0" -description = "Updated configparser from Python 3.8 for Python 2.6+." -category = "dev" +version = "7.1.0" +description = "Updated configparser from stdlib for earlier Pythons." optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "configparser-5.2.0-py3-none-any.whl", hash = "sha256:e8b39238fb6f0153a069aa253d349467c3c4737934f253ef6abac5fe0eca1e5d"}, - {file = "configparser-5.2.0.tar.gz", hash = "sha256:1b35798fdf1713f1c3139016cfcbc461f09edbf099d1fb658d4b7479fcaa3daa"}, + {file = "configparser-7.1.0-py3-none-any.whl", hash = "sha256:98e374573c4e10e92399651e3ba1c47a438526d633c44ee96143dec26dad4299"}, + {file = "configparser-7.1.0.tar.gz", hash = "sha256:eb82646c892dbdf773dae19c633044d163c3129971ae09b49410a303b8e0a5f7"}, ] [package.extras] -docs = ["jaraco.packaging (>=8.2)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx"] -testing = ["pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.0.1)", "pytest-flake8", "pytest-mypy", "types-backports"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +test = ["pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-ruff (>=0.2.1)", "types-backports"] + +[[package]] +name = "contourpy" +version = "1.3.0" +description = "Python library for calculating contours of 2D quadrilateral grids" +optional = false +python-versions = ">=3.9" +files = [ + {file = "contourpy-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:880ea32e5c774634f9fcd46504bf9f080a41ad855f4fef54f5380f5133d343c7"}, + {file = "contourpy-1.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:76c905ef940a4474a6289c71d53122a4f77766eef23c03cd57016ce19d0f7b42"}, + {file = "contourpy-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:92f8557cbb07415a4d6fa191f20fd9d2d9eb9c0b61d1b2f52a8926e43c6e9af7"}, + {file = "contourpy-1.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:36f965570cff02b874773c49bfe85562b47030805d7d8360748f3eca570f4cab"}, + {file = "contourpy-1.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cacd81e2d4b6f89c9f8a5b69b86490152ff39afc58a95af002a398273e5ce589"}, + {file = "contourpy-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:69375194457ad0fad3a839b9e29aa0b0ed53bb54db1bfb6c3ae43d111c31ce41"}, + {file = "contourpy-1.3.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:7a52040312b1a858b5e31ef28c2e865376a386c60c0e248370bbea2d3f3b760d"}, + {file = "contourpy-1.3.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3faeb2998e4fcb256542e8a926d08da08977f7f5e62cf733f3c211c2a5586223"}, + {file = "contourpy-1.3.0-cp310-cp310-win32.whl", hash = "sha256:36e0cff201bcb17a0a8ecc7f454fe078437fa6bda730e695a92f2d9932bd507f"}, + {file = "contourpy-1.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:87ddffef1dbe5e669b5c2440b643d3fdd8622a348fe1983fad7a0f0ccb1cd67b"}, + {file = "contourpy-1.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0fa4c02abe6c446ba70d96ece336e621efa4aecae43eaa9b030ae5fb92b309ad"}, + {file = "contourpy-1.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:834e0cfe17ba12f79963861e0f908556b2cedd52e1f75e6578801febcc6a9f49"}, + {file = "contourpy-1.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dbc4c3217eee163fa3984fd1567632b48d6dfd29216da3ded3d7b844a8014a66"}, + {file = "contourpy-1.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4865cd1d419e0c7a7bf6de1777b185eebdc51470800a9f42b9e9decf17762081"}, + {file = "contourpy-1.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:303c252947ab4b14c08afeb52375b26781ccd6a5ccd81abcdfc1fafd14cf93c1"}, + {file = "contourpy-1.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:637f674226be46f6ba372fd29d9523dd977a291f66ab2a74fbeb5530bb3f445d"}, + {file = "contourpy-1.3.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:76a896b2f195b57db25d6b44e7e03f221d32fe318d03ede41f8b4d9ba1bff53c"}, + {file = "contourpy-1.3.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e1fd23e9d01591bab45546c089ae89d926917a66dceb3abcf01f6105d927e2cb"}, + {file = "contourpy-1.3.0-cp311-cp311-win32.whl", hash = "sha256:d402880b84df3bec6eab53cd0cf802cae6a2ef9537e70cf75e91618a3801c20c"}, + {file = "contourpy-1.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:6cb6cc968059db9c62cb35fbf70248f40994dfcd7aa10444bbf8b3faeb7c2d67"}, + {file = "contourpy-1.3.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:570ef7cf892f0afbe5b2ee410c507ce12e15a5fa91017a0009f79f7d93a1268f"}, + {file = "contourpy-1.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:da84c537cb8b97d153e9fb208c221c45605f73147bd4cadd23bdae915042aad6"}, + {file = "contourpy-1.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0be4d8425bfa755e0fd76ee1e019636ccc7c29f77a7c86b4328a9eb6a26d0639"}, + {file = "contourpy-1.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9c0da700bf58f6e0b65312d0a5e695179a71d0163957fa381bb3c1f72972537c"}, + {file = "contourpy-1.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:eb8b141bb00fa977d9122636b16aa67d37fd40a3d8b52dd837e536d64b9a4d06"}, + {file = "contourpy-1.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3634b5385c6716c258d0419c46d05c8aa7dc8cb70326c9a4fb66b69ad2b52e09"}, + {file = "contourpy-1.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:0dce35502151b6bd35027ac39ba6e5a44be13a68f55735c3612c568cac3805fd"}, + {file = "contourpy-1.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:aea348f053c645100612b333adc5983d87be69acdc6d77d3169c090d3b01dc35"}, + {file = "contourpy-1.3.0-cp312-cp312-win32.whl", hash = "sha256:90f73a5116ad1ba7174341ef3ea5c3150ddf20b024b98fb0c3b29034752c8aeb"}, + {file = "contourpy-1.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:b11b39aea6be6764f84360fce6c82211a9db32a7c7de8fa6dd5397cf1d079c3b"}, + {file = "contourpy-1.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:3e1c7fa44aaae40a2247e2e8e0627f4bea3dd257014764aa644f319a5f8600e3"}, + {file = "contourpy-1.3.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:364174c2a76057feef647c802652f00953b575723062560498dc7930fc9b1cb7"}, + {file = "contourpy-1.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:32b238b3b3b649e09ce9aaf51f0c261d38644bdfa35cbaf7b263457850957a84"}, + {file = "contourpy-1.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d51fca85f9f7ad0b65b4b9fe800406d0d77017d7270d31ec3fb1cc07358fdea0"}, + {file = "contourpy-1.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:732896af21716b29ab3e988d4ce14bc5133733b85956316fb0c56355f398099b"}, + {file = "contourpy-1.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d73f659398a0904e125280836ae6f88ba9b178b2fed6884f3b1f95b989d2c8da"}, + {file = "contourpy-1.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c6c7c2408b7048082932cf4e641fa3b8ca848259212f51c8c59c45aa7ac18f14"}, + {file = "contourpy-1.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f317576606de89da6b7e0861cf6061f6146ead3528acabff9236458a6ba467f8"}, + {file = "contourpy-1.3.0-cp313-cp313-win32.whl", hash = "sha256:31cd3a85dbdf1fc002280c65caa7e2b5f65e4a973fcdf70dd2fdcb9868069294"}, + {file = "contourpy-1.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:4553c421929ec95fb07b3aaca0fae668b2eb5a5203d1217ca7c34c063c53d087"}, + {file = "contourpy-1.3.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:345af746d7766821d05d72cb8f3845dfd08dd137101a2cb9b24de277d716def8"}, + {file = "contourpy-1.3.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3bb3808858a9dc68f6f03d319acd5f1b8a337e6cdda197f02f4b8ff67ad2057b"}, + {file = "contourpy-1.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:420d39daa61aab1221567b42eecb01112908b2cab7f1b4106a52caaec8d36973"}, + {file = "contourpy-1.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4d63ee447261e963af02642ffcb864e5a2ee4cbfd78080657a9880b8b1868e18"}, + {file = "contourpy-1.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:167d6c890815e1dac9536dca00828b445d5d0df4d6a8c6adb4a7ec3166812fa8"}, + {file = "contourpy-1.3.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:710a26b3dc80c0e4febf04555de66f5fd17e9cf7170a7b08000601a10570bda6"}, + {file = "contourpy-1.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:75ee7cb1a14c617f34a51d11fa7524173e56551646828353c4af859c56b766e2"}, + {file = "contourpy-1.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:33c92cdae89ec5135d036e7218e69b0bb2851206077251f04a6c4e0e21f03927"}, + {file = "contourpy-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a11077e395f67ffc2c44ec2418cfebed032cd6da3022a94fc227b6faf8e2acb8"}, + {file = "contourpy-1.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e8134301d7e204c88ed7ab50028ba06c683000040ede1d617298611f9dc6240c"}, + {file = "contourpy-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e12968fdfd5bb45ffdf6192a590bd8ddd3ba9e58360b29683c6bb71a7b41edca"}, + {file = "contourpy-1.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fd2a0fc506eccaaa7595b7e1418951f213cf8255be2600f1ea1b61e46a60c55f"}, + {file = "contourpy-1.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4cfb5c62ce023dfc410d6059c936dcf96442ba40814aefbfa575425a3a7f19dc"}, + {file = "contourpy-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68a32389b06b82c2fdd68276148d7b9275b5f5cf13e5417e4252f6d1a34f72a2"}, + {file = "contourpy-1.3.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:94e848a6b83da10898cbf1311a815f770acc9b6a3f2d646f330d57eb4e87592e"}, + {file = "contourpy-1.3.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:d78ab28a03c854a873787a0a42254a0ccb3cb133c672f645c9f9c8f3ae9d0800"}, + {file = "contourpy-1.3.0-cp39-cp39-win32.whl", hash = "sha256:81cb5ed4952aae6014bc9d0421dec7c5835c9c8c31cdf51910b708f548cf58e5"}, + {file = "contourpy-1.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:14e262f67bd7e6eb6880bc564dcda30b15e351a594657e55b7eec94b6ef72843"}, + {file = "contourpy-1.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:fe41b41505a5a33aeaed2a613dccaeaa74e0e3ead6dd6fd3a118fb471644fd6c"}, + {file = "contourpy-1.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eca7e17a65f72a5133bdbec9ecf22401c62bcf4821361ef7811faee695799779"}, + {file = "contourpy-1.3.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:1ec4dc6bf570f5b22ed0d7efba0dfa9c5b9e0431aeea7581aa217542d9e809a4"}, + {file = "contourpy-1.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:00ccd0dbaad6d804ab259820fa7cb0b8036bda0686ef844d24125d8287178ce0"}, + {file = "contourpy-1.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8ca947601224119117f7c19c9cdf6b3ab54c5726ef1d906aa4a69dfb6dd58102"}, + {file = "contourpy-1.3.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:c6ec93afeb848a0845a18989da3beca3eec2c0f852322efe21af1931147d12cb"}, + {file = "contourpy-1.3.0.tar.gz", hash = "sha256:7ffa0db17717a8ffb127efd0c95a4362d996b892c2904db72428d5b52e1938a4"}, +] + +[package.dependencies] +numpy = ">=1.23" + +[package.extras] +bokeh = ["bokeh", "selenium"] +docs = ["furo", "sphinx (>=7.2)", "sphinx-copybutton"] +mypy = ["contourpy[bokeh,docs]", "docutils-stubs", "mypy (==1.11.1)", "types-Pillow"] +test = ["Pillow", "contourpy[test-no-images]", "matplotlib"] +test-no-images = ["pytest", "pytest-cov", "pytest-rerunfailures", "pytest-xdist", "wurlitzer"] [[package]] name = "cycler" -version = "0.11.0" +version = "0.12.1" description = "Composable style cycles" -category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "cycler-0.11.0-py3-none-any.whl", hash = "sha256:3a27e95f763a428a739d2add979fa7494c912a32c17c4c38c4d5f082cad165a3"}, - {file = "cycler-0.11.0.tar.gz", hash = "sha256:9c87405839a19696e837b3b818fed3f5f69f16f1eec1a1ad77e043dcea9c772f"}, + {file = "cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30"}, + {file = "cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c"}, ] +[package.extras] +docs = ["ipython", "matplotlib", "numpydoc", "sphinx"] +tests = ["pytest", "pytest-cov", "pytest-xdist"] + [[package]] name = "debugpy" -version = "1.6.3" +version = "1.8.7" description = "An implementation of the Debug Adapter Protocol for Python" -category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "debugpy-1.6.3-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:c4b2bd5c245eeb49824bf7e539f95fb17f9a756186e51c3e513e32999d8846f3"}, - {file = "debugpy-1.6.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b8deaeb779699350deeed835322730a3efec170b88927debc9ba07a1a38e2585"}, - {file = "debugpy-1.6.3-cp310-cp310-win32.whl", hash = "sha256:fc233a0160f3b117b20216f1169e7211b83235e3cd6749bcdd8dbb72177030c7"}, - {file = "debugpy-1.6.3-cp310-cp310-win_amd64.whl", hash = "sha256:dda8652520eae3945833e061cbe2993ad94a0b545aebd62e4e6b80ee616c76b2"}, - {file = "debugpy-1.6.3-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:d5c814596a170a0a58fa6fad74947e30bfd7e192a5d2d7bd6a12156c2899e13a"}, - {file = "debugpy-1.6.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:c4cd6f37e3c168080d61d698390dfe2cd9e74ebf80b448069822a15dadcda57d"}, - {file = "debugpy-1.6.3-cp37-cp37m-win32.whl", hash = "sha256:3c9f985944a30cfc9ae4306ac6a27b9c31dba72ca943214dad4a0ab3840f6161"}, - {file = "debugpy-1.6.3-cp37-cp37m-win_amd64.whl", hash = "sha256:5ad571a36cec137ae6ed951d0ff75b5e092e9af6683da084753231150cbc5b25"}, - {file = "debugpy-1.6.3-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:adcfea5ea06d55d505375995e150c06445e2b20cd12885bcae566148c076636b"}, - {file = "debugpy-1.6.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:daadab4403427abd090eccb38d8901afd8b393e01fd243048fab3f1d7132abb4"}, - {file = "debugpy-1.6.3-cp38-cp38-win32.whl", hash = "sha256:6efc30325b68e451118b795eff6fe8488253ca3958251d5158106d9c87581bc6"}, - {file = "debugpy-1.6.3-cp38-cp38-win_amd64.whl", hash = "sha256:86d784b72c5411c833af1cd45b83d80c252b77c3bfdb43db17c441d772f4c734"}, - {file = "debugpy-1.6.3-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:4e255982552b0edfe3a6264438dbd62d404baa6556a81a88f9420d3ed79b06ae"}, - {file = "debugpy-1.6.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cca23cb6161ac89698d629d892520327dd1be9321c0960e610bbcb807232b45d"}, - {file = "debugpy-1.6.3-cp39-cp39-win32.whl", hash = "sha256:7c302095a81be0d5c19f6529b600bac971440db3e226dce85347cc27e6a61908"}, - {file = "debugpy-1.6.3-cp39-cp39-win_amd64.whl", hash = "sha256:34d2cdd3a7c87302ba5322b86e79c32c2115be396f3f09ca13306d8a04fe0f16"}, - {file = "debugpy-1.6.3-py2.py3-none-any.whl", hash = "sha256:84c39940a0cac410bf6aa4db00ba174f973eef521fbe9dd058e26bcabad89c4f"}, - {file = "debugpy-1.6.3.zip", hash = "sha256:e8922090514a890eec99cfb991bab872dd2e353ebb793164d5f01c362b9a40bf"}, + {file = "debugpy-1.8.7-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:95fe04a573b8b22896c404365e03f4eda0ce0ba135b7667a1e57bd079793b96b"}, + {file = "debugpy-1.8.7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:628a11f4b295ffb4141d8242a9bb52b77ad4a63a2ad19217a93be0f77f2c28c9"}, + {file = "debugpy-1.8.7-cp310-cp310-win32.whl", hash = "sha256:85ce9c1d0eebf622f86cc68618ad64bf66c4fc3197d88f74bb695a416837dd55"}, + {file = "debugpy-1.8.7-cp310-cp310-win_amd64.whl", hash = "sha256:29e1571c276d643757ea126d014abda081eb5ea4c851628b33de0c2b6245b037"}, + {file = "debugpy-1.8.7-cp311-cp311-macosx_14_0_universal2.whl", hash = "sha256:caf528ff9e7308b74a1749c183d6808ffbedbb9fb6af78b033c28974d9b8831f"}, + {file = "debugpy-1.8.7-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cba1d078cf2e1e0b8402e6bda528bf8fda7ccd158c3dba6c012b7897747c41a0"}, + {file = "debugpy-1.8.7-cp311-cp311-win32.whl", hash = "sha256:171899588bcd412151e593bd40d9907133a7622cd6ecdbdb75f89d1551df13c2"}, + {file = "debugpy-1.8.7-cp311-cp311-win_amd64.whl", hash = "sha256:6e1c4ffb0c79f66e89dfd97944f335880f0d50ad29525dc792785384923e2211"}, + {file = "debugpy-1.8.7-cp312-cp312-macosx_14_0_universal2.whl", hash = "sha256:4d27d842311353ede0ad572600c62e4bcd74f458ee01ab0dd3a1a4457e7e3706"}, + {file = "debugpy-1.8.7-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:703c1fd62ae0356e194f3e7b7a92acd931f71fe81c4b3be2c17a7b8a4b546ec2"}, + {file = "debugpy-1.8.7-cp312-cp312-win32.whl", hash = "sha256:2f729228430ef191c1e4df72a75ac94e9bf77413ce5f3f900018712c9da0aaca"}, + {file = "debugpy-1.8.7-cp312-cp312-win_amd64.whl", hash = "sha256:45c30aaefb3e1975e8a0258f5bbd26cd40cde9bfe71e9e5a7ac82e79bad64e39"}, + {file = "debugpy-1.8.7-cp313-cp313-macosx_14_0_universal2.whl", hash = "sha256:d050a1ec7e925f514f0f6594a1e522580317da31fbda1af71d1530d6ea1f2b40"}, + {file = "debugpy-1.8.7-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2f4349a28e3228a42958f8ddaa6333d6f8282d5edaea456070e48609c5983b7"}, + {file = "debugpy-1.8.7-cp313-cp313-win32.whl", hash = "sha256:11ad72eb9ddb436afb8337891a986302e14944f0f755fd94e90d0d71e9100bba"}, + {file = "debugpy-1.8.7-cp313-cp313-win_amd64.whl", hash = "sha256:2efb84d6789352d7950b03d7f866e6d180284bc02c7e12cb37b489b7083d81aa"}, + {file = "debugpy-1.8.7-cp38-cp38-macosx_14_0_x86_64.whl", hash = "sha256:4b908291a1d051ef3331484de8e959ef3e66f12b5e610c203b5b75d2725613a7"}, + {file = "debugpy-1.8.7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da8df5b89a41f1fd31503b179d0a84a5fdb752dddd5b5388dbd1ae23cda31ce9"}, + {file = "debugpy-1.8.7-cp38-cp38-win32.whl", hash = "sha256:b12515e04720e9e5c2216cc7086d0edadf25d7ab7e3564ec8b4521cf111b4f8c"}, + {file = "debugpy-1.8.7-cp38-cp38-win_amd64.whl", hash = "sha256:93176e7672551cb5281577cdb62c63aadc87ec036f0c6a486f0ded337c504596"}, + {file = "debugpy-1.8.7-cp39-cp39-macosx_14_0_x86_64.whl", hash = "sha256:90d93e4f2db442f8222dec5ec55ccfc8005821028982f1968ebf551d32b28907"}, + {file = "debugpy-1.8.7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b6db2a370e2700557a976eaadb16243ec9c91bd46f1b3bb15376d7aaa7632c81"}, + {file = "debugpy-1.8.7-cp39-cp39-win32.whl", hash = "sha256:a6cf2510740e0c0b4a40330640e4b454f928c7b99b0c9dbf48b11efba08a8cda"}, + {file = "debugpy-1.8.7-cp39-cp39-win_amd64.whl", hash = "sha256:6a9d9d6d31846d8e34f52987ee0f1a904c7baa4912bf4843ab39dadf9b8f3e0d"}, + {file = "debugpy-1.8.7-py2.py3-none-any.whl", hash = "sha256:57b00de1c8d2c84a61b90880f7e5b6deaf4c312ecbde3a0e8912f2a56c4ac9ae"}, + {file = "debugpy-1.8.7.zip", hash = "sha256:18b8f731ed3e2e1df8e9cdaa23fb1fc9c24e570cd0081625308ec51c82efe42e"}, ] [[package]] name = "decorator" version = "5.1.1" description = "Decorators for Humans" -category = "main" optional = false python-versions = ">=3.5" files = [ @@ -521,7 +897,6 @@ files = [ name = "defusedxml" version = "0.7.1" description = "XML bomb protection for Python stdlib modules" -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -531,61 +906,58 @@ files = [ [[package]] name = "dill" -version = "0.3.5.1" -description = "serialize all of python" -category = "main" +version = "0.3.9" +description = "serialize all of Python" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*" +python-versions = ">=3.8" files = [ - {file = "dill-0.3.5.1-py2.py3-none-any.whl", hash = "sha256:33501d03270bbe410c72639b350e941882a8b0fd55357580fbc873fba0c59302"}, - {file = "dill-0.3.5.1.tar.gz", hash = "sha256:d75e41f3eff1eee599d738e76ba8f4ad98ea229db8b085318aa2b3333a208c86"}, + {file = "dill-0.3.9-py3-none-any.whl", hash = "sha256:468dff3b89520b474c0397703366b7b95eebe6303f108adf9b19da1f702be87a"}, + {file = "dill-0.3.9.tar.gz", hash = "sha256:81aa267dddf68cbfe8029c42ca9ec6a4ab3b22371d1c450abc54422577b4512c"}, ] [package.extras] graph = ["objgraph (>=1.7.2)"] +profile = ["gprof2dot (>=2022.7.29)"] [[package]] name = "distlib" -version = "0.3.5" +version = "0.3.9" description = "Distribution utilities" -category = "dev" optional = false python-versions = "*" files = [ - {file = "distlib-0.3.5-py2.py3-none-any.whl", hash = "sha256:b710088c59f06338ca514800ad795a132da19fda270e3ce4affc74abf955a26c"}, - {file = "distlib-0.3.5.tar.gz", hash = "sha256:a7f75737c70be3b25e2bee06288cec4e4c221de18455b2dd037fe2a795cab2fe"}, + {file = "distlib-0.3.9-py2.py3-none-any.whl", hash = "sha256:47f8c22fd27c27e25a65601af709b38e4f0a45ea4fc2e710f65755fa8caaaf87"}, + {file = "distlib-0.3.9.tar.gz", hash = "sha256:a60f20dea646b8a33f3e7772f74dc0b2d0772d2837ee1342a00645c81edf9403"}, ] [[package]] name = "dparse" -version = "0.6.2" +version = "0.6.3" description = "A parser for Python dependency files" -category = "dev" optional = false -python-versions = ">=3.5" +python-versions = ">=3.6" files = [ - {file = "dparse-0.6.2-py3-none-any.whl", hash = "sha256:8097076f1dd26c377f30d4745e6ec18fef42f3bf493933b842ac5bafad8c345f"}, - {file = "dparse-0.6.2.tar.gz", hash = "sha256:d45255bda21f998bc7ddf2afd5e62505ba6134756ba2d42a84c56b0826614dfe"}, + {file = "dparse-0.6.3-py3-none-any.whl", hash = "sha256:0d8fe18714056ca632d98b24fbfc4e9791d4e47065285ab486182288813a5318"}, + {file = "dparse-0.6.3.tar.gz", hash = "sha256:27bb8b4bcaefec3997697ba3f6e06b2447200ba273c0b085c3d012a04571b528"}, ] [package.dependencies] packaging = "*" -toml = "*" +tomli = {version = "*", markers = "python_version < \"3.11\""} [package.extras] conda = ["pyyaml"] -pipenv = ["pipenv"] +pipenv = ["pipenv (<=2022.12.19)"] [[package]] name = "dynaconf" -version = "3.1.11" +version = "3.2.6" description = "The dynamic configurator for your Python Project" -category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "dynaconf-3.1.11-py2.py3-none-any.whl", hash = "sha256:87e0b3b12b5db9e8fb465e1f8c7fdb926cd2ec5b6d88aa7f821f316df93fb165"}, - {file = "dynaconf-3.1.11.tar.gz", hash = "sha256:d9cfb50fd4a71a543fd23845d4f585b620b6ff6d9d3cc1825c614f7b2097cb39"}, + {file = "dynaconf-3.2.6-py2.py3-none-any.whl", hash = "sha256:3911c740d717df4576ed55f616c7cbad6e06bc8ef23ffca444b6e2a12fb1c34c"}, + {file = "dynaconf-3.2.6.tar.gz", hash = "sha256:74cc1897396380bb957730eb341cc0976ee9c38bbcb53d3307c50caed0aedfb8"}, ] [package.extras] @@ -593,7 +965,7 @@ all = ["configobj", "hvac", "redis", "ruamel.yaml"] configobj = ["configobj"] ini = ["configobj"] redis = ["redis"] -test = ["codecov", "configobj", "django", "flake8", "flake8-debugger", "flake8-print", "flake8-todo", "flask (>=0.12)", "hvac", "pep8-naming", "pytest", "pytest-cov", "pytest-mock", "pytest-xdist", "python-dotenv", "radon", "redis", "toml"] +test = ["configobj", "django", "flask (>=0.12)", "hvac (>=1.1.0)", "pytest", "pytest-cov", "pytest-mock", "pytest-xdist", "python-dotenv", "radon", "redis", "toml"] toml = ["toml"] vault = ["hvac"] yaml = ["ruamel.yaml"] @@ -602,7 +974,6 @@ yaml = ["ruamel.yaml"] name = "entrypoints" version = "0.4" description = "Discover and load entry points from installed packages." -category = "main" optional = false python-versions = ">=3.6" files = [ @@ -612,41 +983,52 @@ files = [ [[package]] name = "et-xmlfile" -version = "1.1.0" +version = "2.0.0" description = "An implementation of lxml.xmlfile for the standard library" -category = "dev" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "et_xmlfile-1.1.0-py3-none-any.whl", hash = "sha256:a2ba85d1d6a74ef63837eed693bcb89c3f752169b0e3e7ae5b16ca5e1b3deada"}, - {file = "et_xmlfile-1.1.0.tar.gz", hash = "sha256:8eb9e2bc2f8c97e37a2dc85a09ecdcdec9d8a396530a6d5a33b30b9a92da0c5c"}, + {file = "et_xmlfile-2.0.0-py3-none-any.whl", hash = "sha256:7a91720bc756843502c3b7504c77b8fe44217c85c537d85037f0f536151b2caa"}, + {file = "et_xmlfile-2.0.0.tar.gz", hash = "sha256:dab3f4764309081ce75662649be815c4c9081e88f0837825f90fd28317d4da54"}, ] [[package]] -name = "executing" -version = "1.2.0" -description = "Get the currently executing AST node of a frame, and other information" -category = "main" +name = "exceptiongroup" +version = "1.2.2" +description = "Backport of PEP 654 (exception groups)" optional = false -python-versions = "*" +python-versions = ">=3.7" files = [ - {file = "executing-1.2.0-py2.py3-none-any.whl", hash = "sha256:0314a69e37426e3608aada02473b4161d4caf5a4b244d1d0c48072b8fee7bacc"}, - {file = "executing-1.2.0.tar.gz", hash = "sha256:19da64c18d2d851112f09c287f8d3dbbdf725ab0e569077efb6cdcbd3497c107"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] -tests = ["asttokens", "littleutils", "pytest", "rich"] +test = ["pytest (>=6)"] + +[[package]] +name = "executing" +version = "2.1.0" +description = "Get the currently executing AST node of a frame, and other information" +optional = false +python-versions = ">=3.8" +files = [ + {file = "executing-2.1.0-py2.py3-none-any.whl", hash = "sha256:8d63781349375b5ebccc3142f4b30350c0cd9c79f921cde38be2be4637e98eaf"}, + {file = "executing-2.1.0.tar.gz", hash = "sha256:8ea27ddd260da8150fa5a708269c4a10e76161e2496ec3e587da9e3c0fe4b9ab"}, +] + +[package.extras] +tests = ["asttokens (>=2.1.0)", "coverage", "coverage-enable-subprocess", "ipython", "littleutils", "pytest", "rich"] [[package]] name = "fastjsonschema" -version = "2.16.1" +version = "2.20.0" description = "Fastest Python implementation of JSON schema" -category = "main" optional = false python-versions = "*" files = [ - {file = "fastjsonschema-2.16.1-py3-none-any.whl", hash = "sha256:2f7158c4de792555753d6c2277d6a2af2d406dfd97aeca21d17173561ede4fe6"}, - {file = "fastjsonschema-2.16.1.tar.gz", hash = "sha256:d6fa3ffbe719768d70e298b9fb847484e2bdfdb7241ed052b8d57a9294a8c334"}, + {file = "fastjsonschema-2.20.0-py3-none-any.whl", hash = "sha256:5875f0b0fa7a0043a91e93a9b8f793bcbbba9691e7fd83dca95c28ba26d21f0a"}, + {file = "fastjsonschema-2.20.0.tar.gz", hash = "sha256:3d48fc5300ee96f5d116f10fe6f28d938e6008f59a6a025c2649475b87f76a23"}, ] [package.extras] @@ -654,39 +1036,46 @@ devel = ["colorama", "json-spec", "jsonschema", "pylint", "pytest", "pytest-benc [[package]] name = "filelock" -version = "3.8.0" +version = "3.16.1" description = "A platform independent file lock." -category = "dev" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "filelock-3.8.0-py3-none-any.whl", hash = "sha256:617eb4e5eedc82fc5f47b6d61e4d11cb837c56cb4544e39081099fa17ad109d4"}, - {file = "filelock-3.8.0.tar.gz", hash = "sha256:55447caa666f2198c5b6b13a26d2084d26fa5b115c00d065664b2124680c4edc"}, + {file = "filelock-3.16.1-py3-none-any.whl", hash = "sha256:2082e5703d51fbf98ea75855d9d5527e33d8ff23099bec374a134febee6946b0"}, + {file = "filelock-3.16.1.tar.gz", hash = "sha256:c249fbfcd5db47e5e2d6d62198e565475ee65e4831e2561c8e313fa7eb961435"}, ] [package.extras] -docs = ["furo (>=2022.6.21)", "sphinx (>=5.1.1)", "sphinx-autodoc-typehints (>=1.19.1)"] -testing = ["covdefaults (>=2.2)", "coverage (>=6.4.2)", "pytest (>=7.1.2)", "pytest-cov (>=3)", "pytest-timeout (>=2.1)"] +docs = ["furo (>=2024.8.6)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4.1)"] +testing = ["covdefaults (>=2.3)", "coverage (>=7.6.1)", "diff-cover (>=9.2)", "pytest (>=8.3.3)", "pytest-asyncio (>=0.24)", "pytest-cov (>=5)", "pytest-mock (>=3.14)", "pytest-timeout (>=2.3.1)", "virtualenv (>=20.26.4)"] +typing = ["typing-extensions (>=4.12.2)"] [[package]] name = "fiona" -version = "1.8.21" +version = "1.8.22" description = "Fiona reads and writes spatial data files" -category = "main" optional = false python-versions = "*" files = [ - {file = "Fiona-1.8.21-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:39c656421e25b4d0d73d0b6acdcbf9848e71f3d9b74f44c27d2d516d463409ae"}, - {file = "Fiona-1.8.21-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:43b1d2e45506e56cf3a9f59ba5d6f7981f3f75f4725d1e6cb9a33ba856371ebd"}, - {file = "Fiona-1.8.21-cp36-cp36m-macosx_10_10_x86_64.whl", hash = "sha256:315e186cb880a8128e110312eb92f5956bbc54d7152af999d3483b463758d6f9"}, - {file = "Fiona-1.8.21-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9fb2407623c4f44732a33b3f056f8c58c54152b51f0324bf8f10945e711eb549"}, - {file = "Fiona-1.8.21-cp37-cp37m-macosx_10_10_x86_64.whl", hash = "sha256:b69054ed810eb7339d7effa88589afca48003206d7627d0b0b149715fc3fde41"}, - {file = "Fiona-1.8.21-cp37-cp37m-manylinux2014_x86_64.whl", hash = "sha256:11532ccfda1073d3f5f558e4bb78d45b268e8680fd6e14993a394c564ddbd069"}, - {file = "Fiona-1.8.21-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:3789523c811809a6e2e170cf9c437631f959f4c7a868f024081612d30afab468"}, - {file = "Fiona-1.8.21-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:085f18d943097ac3396f3f9664ac1ae04ad0ff272f54829f03442187f01b6116"}, - {file = "Fiona-1.8.21-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:388acc9fa07ba7858d508dfe826d4b04d813818bced16c4049de19cc7ca322ef"}, - {file = "Fiona-1.8.21-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40b4eaf5b88407421d6c9e707520abd2ff16d7cd43efb59cd398aa41d2de332c"}, - {file = "Fiona-1.8.21.tar.gz", hash = "sha256:3a0edca2a7a070db405d71187214a43d2333a57b4097544a3fcc282066a58bfc"}, + {file = "Fiona-1.8.22-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:59a3800bc09ebee3516d64d02a8a6818d07ab1573c6096f3ef3468bf9f8f95f8"}, + {file = "Fiona-1.8.22-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:904793b17aee70ca9c3d582dbf01623eccfdeacd00c5e1a8e421be41f2e43d67"}, + {file = "Fiona-1.8.22-cp310-cp310-win_amd64.whl", hash = "sha256:df34c980cd7396adfbc89bbb363bdd6e358c76f91969fc98c9dfc076dd11638d"}, + {file = "Fiona-1.8.22-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:75924f69c51db6e258c91308780546278028c509db12aa33a47692a0266c9667"}, + {file = "Fiona-1.8.22-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e33860aaf70bbd2726cff12fd3857bd832b6dc2ad3ce4b27e7563bd68abdc26f"}, + {file = "Fiona-1.8.22-cp311-cp311-win_amd64.whl", hash = "sha256:18649326a7724611b16b648e14fd094089d517413b95ac91d0cdb0adc5fcb8de"}, + {file = "Fiona-1.8.22-cp36-cp36m-macosx_10_10_x86_64.whl", hash = "sha256:c4aafdd565b3a30bdd78cafae35d4945f6741eef31401c1bb1e166b6262d7539"}, + {file = "Fiona-1.8.22-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3f26c8b6ea9bc92cbd52a4dd83ffd44472450bf92f4e3d4ef2341adc2f35a54d"}, + {file = "Fiona-1.8.22-cp36-cp36m-win_amd64.whl", hash = "sha256:c28d9ffa5d230a1d9eaf571529fa9eb7573d39613354c090ad077ad153a37ee1"}, + {file = "Fiona-1.8.22-cp37-cp37m-macosx_10_10_x86_64.whl", hash = "sha256:d47777890aa1d715025abc7a6d6b2a6bb8d2a37cc94c44ce95940b80eda21444"}, + {file = "Fiona-1.8.22-cp37-cp37m-manylinux2014_x86_64.whl", hash = "sha256:e3ed1c0c1c60f710a612aaeb294de54214d228c4ef40e0c1dc159e46f86a9446"}, + {file = "Fiona-1.8.22-cp37-cp37m-win_amd64.whl", hash = "sha256:ce9a22c9883cc5d11c05ba3fb9db5082044a07c6b299753ea5bb8e178b8ba53b"}, + {file = "Fiona-1.8.22-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:6ba2294bc6adcbc36229862667aac6b98e6c306e1958caf53b8bfcf9a3b8c77a"}, + {file = "Fiona-1.8.22-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b5cad3424b7473eb0e19f17ee45abec92133a694a4b452a278f02e3b8d0f810f"}, + {file = "Fiona-1.8.22-cp38-cp38-win_amd64.whl", hash = "sha256:b88e2e6548a41c1dfa3f96c8275ff472a3edca729e14a641c0fa5b2e146a8ab5"}, + {file = "Fiona-1.8.22-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:ed75dd29c89e0e455e3a322f28cd92f192bcb8fced16e2bfb6422a7f95ffe5e9"}, + {file = "Fiona-1.8.22-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89cfcc3bdb4aba7bba1eb552b3866b851334693ab694529803122b21f5927960"}, + {file = "Fiona-1.8.22-cp39-cp39-win_amd64.whl", hash = "sha256:d0df3e105ad7f0cca5f16b441c232fd693ef6c4adf2c1b6271aaaa1cdc06164d"}, + {file = "Fiona-1.8.22.tar.gz", hash = "sha256:a82a99ce9b3e7825740157c45c9fb2259d4e92f0a886aaac25f0db40ffe1eea3"}, ] [package.dependencies] @@ -709,7 +1098,6 @@ test = ["boto3 (>=1.2.4)", "mock", "pytest (>=3)", "pytest-cov"] name = "flake8" version = "3.9.2" description = "the modular source code checker: pep8 pyflakes and co" -category = "dev" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" files = [ @@ -724,35 +1112,191 @@ pyflakes = ">=2.3.0,<2.4.0" [[package]] name = "fonttools" -version = "4.35.0" +version = "4.54.1" description = "Tools to manipulate font files" -category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "fonttools-4.35.0-py3-none-any.whl", hash = "sha256:0292e391c1b46f2308bda20ea2a2dd5253725e7e2d3a1928b631338eb318eb22"}, - {file = "fonttools-4.35.0.zip", hash = "sha256:1cfb335c0abdeb6231191dc4f9d7ce1173e2ac94b335c617e045b96f9c974aea"}, + {file = "fonttools-4.54.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7ed7ee041ff7b34cc62f07545e55e1468808691dddfd315d51dd82a6b37ddef2"}, + {file = "fonttools-4.54.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:41bb0b250c8132b2fcac148e2e9198e62ff06f3cc472065dff839327945c5882"}, + {file = "fonttools-4.54.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7965af9b67dd546e52afcf2e38641b5be956d68c425bef2158e95af11d229f10"}, + {file = "fonttools-4.54.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:278913a168f90d53378c20c23b80f4e599dca62fbffae4cc620c8eed476b723e"}, + {file = "fonttools-4.54.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:0e88e3018ac809b9662615072dcd6b84dca4c2d991c6d66e1970a112503bba7e"}, + {file = "fonttools-4.54.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:4aa4817f0031206e637d1e685251ac61be64d1adef111060df84fdcbc6ab6c44"}, + {file = "fonttools-4.54.1-cp310-cp310-win32.whl", hash = "sha256:7e3b7d44e18c085fd8c16dcc6f1ad6c61b71ff463636fcb13df7b1b818bd0c02"}, + {file = "fonttools-4.54.1-cp310-cp310-win_amd64.whl", hash = "sha256:dd9cc95b8d6e27d01e1e1f1fae8559ef3c02c76317da650a19047f249acd519d"}, + {file = "fonttools-4.54.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:5419771b64248484299fa77689d4f3aeed643ea6630b2ea750eeab219588ba20"}, + {file = "fonttools-4.54.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:301540e89cf4ce89d462eb23a89464fef50915255ece765d10eee8b2bf9d75b2"}, + {file = "fonttools-4.54.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ae5091547e74e7efecc3cbf8e75200bc92daaeb88e5433c5e3e95ea8ce5aa7"}, + {file = "fonttools-4.54.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:82834962b3d7c5ca98cb56001c33cf20eb110ecf442725dc5fdf36d16ed1ab07"}, + {file = "fonttools-4.54.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d26732ae002cc3d2ecab04897bb02ae3f11f06dd7575d1df46acd2f7c012a8d8"}, + {file = "fonttools-4.54.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:58974b4987b2a71ee08ade1e7f47f410c367cdfc5a94fabd599c88165f56213a"}, + {file = "fonttools-4.54.1-cp311-cp311-win32.whl", hash = "sha256:ab774fa225238986218a463f3fe151e04d8c25d7de09df7f0f5fce27b1243dbc"}, + {file = "fonttools-4.54.1-cp311-cp311-win_amd64.whl", hash = "sha256:07e005dc454eee1cc60105d6a29593459a06321c21897f769a281ff2d08939f6"}, + {file = "fonttools-4.54.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:54471032f7cb5fca694b5f1a0aaeba4af6e10ae989df408e0216f7fd6cdc405d"}, + {file = "fonttools-4.54.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8fa92cb248e573daab8d032919623cc309c005086d743afb014c836636166f08"}, + {file = "fonttools-4.54.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a911591200114969befa7f2cb74ac148bce5a91df5645443371aba6d222e263"}, + {file = "fonttools-4.54.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:93d458c8a6a354dc8b48fc78d66d2a8a90b941f7fec30e94c7ad9982b1fa6bab"}, + {file = "fonttools-4.54.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:5eb2474a7c5be8a5331146758debb2669bf5635c021aee00fd7c353558fc659d"}, + {file = "fonttools-4.54.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c9c563351ddc230725c4bdf7d9e1e92cbe6ae8553942bd1fb2b2ff0884e8b714"}, + {file = "fonttools-4.54.1-cp312-cp312-win32.whl", hash = "sha256:fdb062893fd6d47b527d39346e0c5578b7957dcea6d6a3b6794569370013d9ac"}, + {file = "fonttools-4.54.1-cp312-cp312-win_amd64.whl", hash = "sha256:e4564cf40cebcb53f3dc825e85910bf54835e8a8b6880d59e5159f0f325e637e"}, + {file = "fonttools-4.54.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:6e37561751b017cf5c40fce0d90fd9e8274716de327ec4ffb0df957160be3bff"}, + {file = "fonttools-4.54.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:357cacb988a18aace66e5e55fe1247f2ee706e01debc4b1a20d77400354cddeb"}, + {file = "fonttools-4.54.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8e953cc0bddc2beaf3a3c3b5dd9ab7554677da72dfaf46951e193c9653e515a"}, + {file = "fonttools-4.54.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:58d29b9a294573d8319f16f2f79e42428ba9b6480442fa1836e4eb89c4d9d61c"}, + {file = "fonttools-4.54.1-cp313-cp313-win32.whl", hash = "sha256:9ef1b167e22709b46bf8168368b7b5d3efeaaa746c6d39661c1b4405b6352e58"}, + {file = "fonttools-4.54.1-cp313-cp313-win_amd64.whl", hash = "sha256:262705b1663f18c04250bd1242b0515d3bbae177bee7752be67c979b7d47f43d"}, + {file = "fonttools-4.54.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:ed2f80ca07025551636c555dec2b755dd005e2ea8fbeb99fc5cdff319b70b23b"}, + {file = "fonttools-4.54.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9dc080e5a1c3b2656caff2ac2633d009b3a9ff7b5e93d0452f40cd76d3da3b3c"}, + {file = "fonttools-4.54.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1d152d1be65652fc65e695e5619e0aa0982295a95a9b29b52b85775243c06556"}, + {file = "fonttools-4.54.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8583e563df41fdecef31b793b4dd3af8a9caa03397be648945ad32717a92885b"}, + {file = "fonttools-4.54.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:0d1d353ef198c422515a3e974a1e8d5b304cd54a4c2eebcae708e37cd9eeffb1"}, + {file = "fonttools-4.54.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:fda582236fee135d4daeca056c8c88ec5f6f6d88a004a79b84a02547c8f57386"}, + {file = "fonttools-4.54.1-cp38-cp38-win32.whl", hash = "sha256:e7d82b9e56716ed32574ee106cabca80992e6bbdcf25a88d97d21f73a0aae664"}, + {file = "fonttools-4.54.1-cp38-cp38-win_amd64.whl", hash = "sha256:ada215fd079e23e060157aab12eba0d66704316547f334eee9ff26f8c0d7b8ab"}, + {file = "fonttools-4.54.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:f5b8a096e649768c2f4233f947cf9737f8dbf8728b90e2771e2497c6e3d21d13"}, + {file = "fonttools-4.54.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4e10d2e0a12e18f4e2dd031e1bf7c3d7017be5c8dbe524d07706179f355c5dac"}, + {file = "fonttools-4.54.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:31c32d7d4b0958600eac75eaf524b7b7cb68d3a8c196635252b7a2c30d80e986"}, + {file = "fonttools-4.54.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c39287f5c8f4a0c5a55daf9eaf9ccd223ea59eed3f6d467133cc727d7b943a55"}, + {file = "fonttools-4.54.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:a7a310c6e0471602fe3bf8efaf193d396ea561486aeaa7adc1f132e02d30c4b9"}, + {file = "fonttools-4.54.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:d3b659d1029946f4ff9b6183984578041b520ce0f8fb7078bb37ec7445806b33"}, + {file = "fonttools-4.54.1-cp39-cp39-win32.whl", hash = "sha256:e96bc94c8cda58f577277d4a71f51c8e2129b8b36fd05adece6320dd3d57de8a"}, + {file = "fonttools-4.54.1-cp39-cp39-win_amd64.whl", hash = "sha256:e8a4b261c1ef91e7188a30571be6ad98d1c6d9fa2427244c545e2fa0a2494dd7"}, + {file = "fonttools-4.54.1-py3-none-any.whl", hash = "sha256:37cddd62d83dc4f72f7c3f3c2bcf2697e89a30efb152079896544a93907733bd"}, + {file = "fonttools-4.54.1.tar.gz", hash = "sha256:957f669d4922f92c171ba01bef7f29410668db09f6c02111e22b2bce446f3285"}, ] [package.extras] -all = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "fs (>=2.2.0,<3)", "lxml (>=4.0,<5)", "lz4 (>=1.7.4.2)", "matplotlib", "munkres", "scipy", "skia-pathops (>=0.5.0)", "sympy", "uharfbuzz (>=0.23.0)", "unicodedata2 (>=14.0.0)", "xattr", "zopfli (>=0.1.4)"] +all = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "fs (>=2.2.0,<3)", "lxml (>=4.0)", "lz4 (>=1.7.4.2)", "matplotlib", "munkres", "pycairo", "scipy", "skia-pathops (>=0.5.0)", "sympy", "uharfbuzz (>=0.23.0)", "unicodedata2 (>=15.1.0)", "xattr", "zopfli (>=0.1.4)"] graphite = ["lz4 (>=1.7.4.2)"] -interpolatable = ["munkres", "scipy"] -lxml = ["lxml (>=4.0,<5)"] +interpolatable = ["munkres", "pycairo", "scipy"] +lxml = ["lxml (>=4.0)"] pathops = ["skia-pathops (>=0.5.0)"] plot = ["matplotlib"] repacker = ["uharfbuzz (>=0.23.0)"] symfont = ["sympy"] type1 = ["xattr"] ufo = ["fs (>=2.2.0,<3)"] -unicode = ["unicodedata2 (>=14.0.0)"] +unicode = ["unicodedata2 (>=15.1.0)"] woff = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "zopfli (>=0.1.4)"] +[[package]] +name = "fqdn" +version = "1.5.1" +description = "Validates fully-qualified domain names against RFC 1123, so that they are acceptable to modern bowsers" +optional = false +python-versions = ">=2.7, !=3.0, !=3.1, !=3.2, !=3.3, !=3.4, <4" +files = [ + {file = "fqdn-1.5.1-py3-none-any.whl", hash = "sha256:3a179af3761e4df6eb2e026ff9e1a3033d3587bf980a0b1b2e1e5d08d7358014"}, + {file = "fqdn-1.5.1.tar.gz", hash = "sha256:105ed3677e767fb5ca086a0c1f4bb66ebc3c100be518f0e0d755d9eae164d89f"}, +] + +[[package]] +name = "frozenlist" +version = "1.5.0" +description = "A list-like structure which implements collections.abc.MutableSequence" +optional = false +python-versions = ">=3.8" +files = [ + {file = "frozenlist-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5b6a66c18b5b9dd261ca98dffcb826a525334b2f29e7caa54e182255c5f6a65a"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d1b3eb7b05ea246510b43a7e53ed1653e55c2121019a97e60cad7efb881a97bb"}, + {file = "frozenlist-1.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:15538c0cbf0e4fa11d1e3a71f823524b0c46299aed6e10ebb4c2089abd8c3bec"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e79225373c317ff1e35f210dd5f1344ff31066ba8067c307ab60254cd3a78ad5"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9272fa73ca71266702c4c3e2d4a28553ea03418e591e377a03b8e3659d94fa76"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:498524025a5b8ba81695761d78c8dd7382ac0b052f34e66939c42df860b8ff17"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:92b5278ed9d50fe610185ecd23c55d8b307d75ca18e94c0e7de328089ac5dcba"}, + {file = "frozenlist-1.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f3c8c1dacd037df16e85227bac13cca58c30da836c6f936ba1df0c05d046d8d"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f2ac49a9bedb996086057b75bf93538240538c6d9b38e57c82d51f75a73409d2"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e66cc454f97053b79c2ab09c17fbe3c825ea6b4de20baf1be28919460dd7877f"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:5a3ba5f9a0dfed20337d3e966dc359784c9f96503674c2faf015f7fe8e96798c"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:6321899477db90bdeb9299ac3627a6a53c7399c8cd58d25da094007402b039ab"}, + {file = "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:76e4753701248476e6286f2ef492af900ea67d9706a0155335a40ea21bf3b2f5"}, + {file = "frozenlist-1.5.0-cp310-cp310-win32.whl", hash = "sha256:977701c081c0241d0955c9586ffdd9ce44f7a7795df39b9151cd9a6fd0ce4cfb"}, + {file = "frozenlist-1.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:189f03b53e64144f90990d29a27ec4f7997d91ed3d01b51fa39d2dbe77540fd4"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:fd74520371c3c4175142d02a976aee0b4cb4a7cc912a60586ffd8d5929979b30"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2f3f7a0fbc219fb4455264cae4d9f01ad41ae6ee8524500f381de64ffaa077d5"}, + {file = "frozenlist-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f47c9c9028f55a04ac254346e92977bf0f166c483c74b4232bee19a6697e4778"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0996c66760924da6e88922756d99b47512a71cfd45215f3570bf1e0b694c206a"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a2fe128eb4edeabe11896cb6af88fca5346059f6c8d807e3b910069f39157869"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1a8ea951bbb6cacd492e3948b8da8c502a3f814f5d20935aae74b5df2b19cf3d"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:de537c11e4aa01d37db0d403b57bd6f0546e71a82347a97c6a9f0dcc532b3a45"}, + {file = "frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c2623347b933fcb9095841f1cc5d4ff0b278addd743e0e966cb3d460278840d"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:cee6798eaf8b1416ef6909b06f7dc04b60755206bddc599f52232606e18179d3"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:f5f9da7f5dbc00a604fe74aa02ae7c98bcede8a3b8b9666f9f86fc13993bc71a"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:90646abbc7a5d5c7c19461d2e3eeb76eb0b204919e6ece342feb6032c9325ae9"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:bdac3c7d9b705d253b2ce370fde941836a5f8b3c5c2b8fd70940a3ea3af7f4f2"}, + {file = "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:03d33c2ddbc1816237a67f66336616416e2bbb6beb306e5f890f2eb22b959cdf"}, + {file = "frozenlist-1.5.0-cp311-cp311-win32.whl", hash = "sha256:237f6b23ee0f44066219dae14c70ae38a63f0440ce6750f868ee08775073f942"}, + {file = "frozenlist-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:0cc974cc93d32c42e7b0f6cf242a6bd941c57c61b618e78b6c0a96cb72788c1d"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:31115ba75889723431aa9a4e77d5f398f5cf976eea3bdf61749731f62d4a4a21"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7437601c4d89d070eac8323f121fcf25f88674627505334654fd027b091db09d"}, + {file = "frozenlist-1.5.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7948140d9f8ece1745be806f2bfdf390127cf1a763b925c4a805c603df5e697e"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:feeb64bc9bcc6b45c6311c9e9b99406660a9c05ca8a5b30d14a78555088b0b3a"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:683173d371daad49cffb8309779e886e59c2f369430ad28fe715f66d08d4ab1a"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7d57d8f702221405a9d9b40f9da8ac2e4a1a8b5285aac6100f3393675f0a85ee"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:30c72000fbcc35b129cb09956836c7d7abf78ab5416595e4857d1cae8d6251a6"}, + {file = "frozenlist-1.5.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:000a77d6034fbad9b6bb880f7ec073027908f1b40254b5d6f26210d2dab1240e"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:5d7f5a50342475962eb18b740f3beecc685a15b52c91f7d975257e13e029eca9"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:87f724d055eb4785d9be84e9ebf0f24e392ddfad00b3fe036e43f489fafc9039"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:6e9080bb2fb195a046e5177f10d9d82b8a204c0736a97a153c2466127de87784"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:9b93d7aaa36c966fa42efcaf716e6b3900438632a626fb09c049f6a2f09fc631"}, + {file = "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:52ef692a4bc60a6dd57f507429636c2af8b6046db8b31b18dac02cbc8f507f7f"}, + {file = "frozenlist-1.5.0-cp312-cp312-win32.whl", hash = "sha256:29d94c256679247b33a3dc96cce0f93cbc69c23bf75ff715919332fdbb6a32b8"}, + {file = "frozenlist-1.5.0-cp312-cp312-win_amd64.whl", hash = "sha256:8969190d709e7c48ea386db202d708eb94bdb29207a1f269bab1196ce0dcca1f"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:7a1a048f9215c90973402e26c01d1cff8a209e1f1b53f72b95c13db61b00f953"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:dd47a5181ce5fcb463b5d9e17ecfdb02b678cca31280639255ce9d0e5aa67af0"}, + {file = "frozenlist-1.5.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1431d60b36d15cda188ea222033eec8e0eab488f39a272461f2e6d9e1a8e63c2"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6482a5851f5d72767fbd0e507e80737f9c8646ae7fd303def99bfe813f76cf7f"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44c49271a937625619e862baacbd037a7ef86dd1ee215afc298a417ff3270608"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:12f78f98c2f1c2429d42e6a485f433722b0061d5c0b0139efa64f396efb5886b"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ce3aa154c452d2467487765e3adc730a8c153af77ad84096bc19ce19a2400840"}, + {file = "frozenlist-1.5.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9b7dc0c4338e6b8b091e8faf0db3168a37101943e687f373dce00959583f7439"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:45e0896250900b5aa25180f9aec243e84e92ac84bd4a74d9ad4138ef3f5c97de"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:561eb1c9579d495fddb6da8959fd2a1fca2c6d060d4113f5844b433fc02f2641"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:df6e2f325bfee1f49f81aaac97d2aa757c7646534a06f8f577ce184afe2f0a9e"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:140228863501b44b809fb39ec56b5d4071f4d0aa6d216c19cbb08b8c5a7eadb9"}, + {file = "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7707a25d6a77f5d27ea7dc7d1fc608aa0a478193823f88511ef5e6b8a48f9d03"}, + {file = "frozenlist-1.5.0-cp313-cp313-win32.whl", hash = "sha256:31a9ac2b38ab9b5a8933b693db4939764ad3f299fcaa931a3e605bc3460e693c"}, + {file = "frozenlist-1.5.0-cp313-cp313-win_amd64.whl", hash = "sha256:11aabdd62b8b9c4b84081a3c246506d1cddd2dd93ff0ad53ede5defec7886b28"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:dd94994fc91a6177bfaafd7d9fd951bc8689b0a98168aa26b5f543868548d3ca"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2d0da8bbec082bf6bf18345b180958775363588678f64998c2b7609e34719b10"}, + {file = "frozenlist-1.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:73f2e31ea8dd7df61a359b731716018c2be196e5bb3b74ddba107f694fbd7604"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:828afae9f17e6de596825cf4228ff28fbdf6065974e5ac1410cecc22f699d2b3"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f1577515d35ed5649d52ab4319db757bb881ce3b2b796d7283e6634d99ace307"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2150cc6305a2c2ab33299453e2968611dacb970d2283a14955923062c8d00b10"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a72b7a6e3cd2725eff67cd64c8f13335ee18fc3c7befc05aed043d24c7b9ccb9"}, + {file = "frozenlist-1.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c16d2fa63e0800723139137d667e1056bee1a1cf7965153d2d104b62855e9b99"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:17dcc32fc7bda7ce5875435003220a457bcfa34ab7924a49a1c19f55b6ee185c"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:97160e245ea33d8609cd2b8fd997c850b56db147a304a262abc2b3be021a9171"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:f1e6540b7fa044eee0bb5111ada694cf3dc15f2b0347ca125ee9ca984d5e9e6e"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:91d6c171862df0a6c61479d9724f22efb6109111017c87567cfeb7b5d1449fdf"}, + {file = "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c1fac3e2ace2eb1052e9f7c7db480818371134410e1f5c55d65e8f3ac6d1407e"}, + {file = "frozenlist-1.5.0-cp38-cp38-win32.whl", hash = "sha256:b97f7b575ab4a8af9b7bc1d2ef7f29d3afee2226bd03ca3875c16451ad5a7723"}, + {file = "frozenlist-1.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:374ca2dabdccad8e2a76d40b1d037f5bd16824933bf7bcea3e59c891fd4a0923"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:9bbcdfaf4af7ce002694a4e10a0159d5a8d20056a12b05b45cea944a4953f972"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1893f948bf6681733aaccf36c5232c231e3b5166d607c5fa77773611df6dc336"}, + {file = "frozenlist-1.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2b5e23253bb709ef57a8e95e6ae48daa9ac5f265637529e4ce6b003a37b2621f"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0f253985bb515ecd89629db13cb58d702035ecd8cfbca7d7a7e29a0e6d39af5f"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:04a5c6babd5e8fb7d3c871dc8b321166b80e41b637c31a995ed844a6139942b6"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9fe0f1c29ba24ba6ff6abf688cb0b7cf1efab6b6aa6adc55441773c252f7411"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:226d72559fa19babe2ccd920273e767c96a49b9d3d38badd7c91a0fdeda8ea08"}, + {file = "frozenlist-1.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15b731db116ab3aedec558573c1a5eec78822b32292fe4f2f0345b7f697745c2"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:366d8f93e3edfe5a918c874702f78faac300209a4d5bf38352b2c1bdc07a766d"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:1b96af8c582b94d381a1c1f51ffaedeb77c821c690ea5f01da3d70a487dd0a9b"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:c03eff4a41bd4e38415cbed054bbaff4a075b093e2394b6915dca34a40d1e38b"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:50cf5e7ee9b98f22bdecbabf3800ae78ddcc26e4a435515fc72d97903e8488e0"}, + {file = "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1e76bfbc72353269c44e0bc2cfe171900fbf7f722ad74c9a7b638052afe6a00c"}, + {file = "frozenlist-1.5.0-cp39-cp39-win32.whl", hash = "sha256:666534d15ba8f0fda3f53969117383d5dc021266b3c1a42c9ec4855e4b58b9d3"}, + {file = "frozenlist-1.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:5c28f4b5dbef8a0d8aad0d4de24d1e9e981728628afaf4ea0792f5d0939372f0"}, + {file = "frozenlist-1.5.0-py3-none-any.whl", hash = "sha256:d994863bba198a4a518b467bb971c56e1db3f180a25c6cf7bb1949c267f748c3"}, + {file = "frozenlist-1.5.0.tar.gz", hash = "sha256:81d5af29e61b9c8348e876d442253723928dce6433e0e76cd925cd83f1b4b817"}, +] + [[package]] name = "geopandas" version = "0.11.1" description = "Geographic pandas extensions" -category = "main" optional = false python-versions = ">=3.8" files = [ @@ -769,156 +1313,120 @@ shapely = ">=1.7,<2" [[package]] name = "idna" -version = "3.3" +version = "3.10" description = "Internationalized Domain Names in Applications (IDNA)" -category = "main" optional = false -python-versions = ">=3.5" +python-versions = ">=3.6" files = [ - {file = "idna-3.3-py3-none-any.whl", hash = "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff"}, - {file = "idna-3.3.tar.gz", hash = "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d"}, + {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, + {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, ] -[[package]] -name = "importlib-metadata" -version = "4.12.0" -description = "Read metadata from Python packages" -category = "main" -optional = false -python-versions = ">=3.7" -files = [ - {file = "importlib_metadata-4.12.0-py3-none-any.whl", hash = "sha256:7401a975809ea1fdc658c3aa4f78cc2195a0e019c5cbc4c06122884e9ae80c23"}, - {file = "importlib_metadata-4.12.0.tar.gz", hash = "sha256:637245b8bab2b6502fcbc752cc4b7a6f6243bb02b31c5c26156ad103d3d45670"}, -] - -[package.dependencies] -zipp = ">=0.5" - [package.extras] -docs = ["jaraco.packaging (>=9)", "rst.linker (>=1.9)", "sphinx"] -perf = ["ipython"] -testing = ["flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)", "pytest-perf (>=0.9.2)"] - -[[package]] -name = "importlib-resources" -version = "5.9.0" -description = "Read resources from Python packages" -category = "main" -optional = false -python-versions = ">=3.7" -files = [ - {file = "importlib_resources-5.9.0-py3-none-any.whl", hash = "sha256:f78a8df21a79bcc30cfd400bdc38f314333de7c0fb619763f6b9dabab8268bb7"}, - {file = "importlib_resources-5.9.0.tar.gz", hash = "sha256:5481e97fb45af8dcf2f798952625591c58fe599d0735d86b10f54de086a61681"}, -] - -[package.dependencies] -zipp = {version = ">=3.1.0", markers = "python_version < \"3.10\""} - -[package.extras] -docs = ["jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx"] -testing = ["pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)"] +all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] [[package]] name = "iniconfig" -version = "1.1.1" -description = "iniconfig: brain-dead simple config-ini parsing" -category = "dev" +version = "2.0.0" +description = "brain-dead simple config-ini parsing" optional = false -python-versions = "*" +python-versions = ">=3.7" files = [ - {file = "iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3"}, - {file = "iniconfig-1.1.1.tar.gz", hash = "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32"}, + {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, + {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, ] [[package]] name = "ipdb" -version = "0.13.9" +version = "0.13.13" description = "IPython-enabled pdb" -category = "main" optional = false -python-versions = ">=2.7" +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ - {file = "ipdb-0.13.9.tar.gz", hash = "sha256:951bd9a64731c444fd907a5ce268543020086a697f6be08f7cc2c9a752a278c5"}, + {file = "ipdb-0.13.13-py3-none-any.whl", hash = "sha256:45529994741c4ab6d2388bfa5d7b725c2cf7fe9deffabdb8a6113aa5ed449ed4"}, + {file = "ipdb-0.13.13.tar.gz", hash = "sha256:e3ac6018ef05126d442af680aad863006ec19d02290561ac88b8b1c0b0cfc726"}, ] [package.dependencies] decorator = {version = "*", markers = "python_version > \"3.6\""} -ipython = {version = ">=7.17.0", markers = "python_version > \"3.6\""} -setuptools = "*" -toml = {version = ">=0.10.2", markers = "python_version > \"3.6\""} +ipython = {version = ">=7.31.1", markers = "python_version > \"3.6\""} +tomli = {version = "*", markers = "python_version > \"3.6\" and python_version < \"3.11\""} [[package]] name = "ipykernel" -version = "6.15.1" +version = "6.29.5" description = "IPython Kernel for Jupyter" -category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "ipykernel-6.15.1-py3-none-any.whl", hash = "sha256:d8969c5b23b0e453a23166da5a669c954db399789293fcb03fec5cb25367e43c"}, - {file = "ipykernel-6.15.1.tar.gz", hash = "sha256:37acc3254caa8a0dafcddddc8dc863a60ad1b46487b68aee361d9a15bda98112"}, + {file = "ipykernel-6.29.5-py3-none-any.whl", hash = "sha256:afdb66ba5aa354b09b91379bac28ae4afebbb30e8b39510c9690afb7a10421b5"}, + {file = "ipykernel-6.29.5.tar.gz", hash = "sha256:f093a22c4a40f8828f8e330a9c297cb93dcab13bd9678ded6de8e5cf81c56215"}, ] [package.dependencies] appnope = {version = "*", markers = "platform_system == \"Darwin\""} -debugpy = ">=1.0" +comm = ">=0.1.1" +debugpy = ">=1.6.5" ipython = ">=7.23.1" jupyter-client = ">=6.1.12" +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" matplotlib-inline = ">=0.1" nest-asyncio = "*" packaging = "*" psutil = "*" -pyzmq = ">=17" +pyzmq = ">=24" tornado = ">=6.1" -traitlets = ">=5.1.0" +traitlets = ">=5.4.0" [package.extras] -test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=6.0)", "pytest-cov", "pytest-timeout"] +cov = ["coverage[toml]", "curio", "matplotlib", "pytest-cov", "trio"] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "trio"] +pyqt5 = ["pyqt5"] +pyside6 = ["pyside6"] +test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=7.0)", "pytest-asyncio (>=0.23.5)", "pytest-cov", "pytest-timeout"] [[package]] name = "ipython" -version = "8.11.0" +version = "8.29.0" description = "IPython: Productive Interactive Computing" -category = "main" optional = false -python-versions = ">=3.8" +python-versions = ">=3.10" files = [ - {file = "ipython-8.11.0-py3-none-any.whl", hash = "sha256:5b54478e459155a326bf5f42ee4f29df76258c0279c36f21d71ddb560f88b156"}, - {file = "ipython-8.11.0.tar.gz", hash = "sha256:735cede4099dbc903ee540307b9171fbfef4aa75cfcacc5a273b2cda2f02be04"}, + {file = "ipython-8.29.0-py3-none-any.whl", hash = "sha256:0188a1bd83267192123ccea7f4a8ed0a78910535dbaa3f37671dca76ebd429c8"}, + {file = "ipython-8.29.0.tar.gz", hash = "sha256:40b60e15b22591450eef73e40a027cf77bd652e757523eebc5bd7c7c498290eb"}, ] [package.dependencies] -appnope = {version = "*", markers = "sys_platform == \"darwin\""} -backcall = "*" colorama = {version = "*", markers = "sys_platform == \"win32\""} decorator = "*" +exceptiongroup = {version = "*", markers = "python_version < \"3.11\""} jedi = ">=0.16" matplotlib-inline = "*" -pexpect = {version = ">4.3", markers = "sys_platform != \"win32\""} -pickleshare = "*" -prompt-toolkit = ">=3.0.30,<3.0.37 || >3.0.37,<3.1.0" +pexpect = {version = ">4.3", markers = "sys_platform != \"win32\" and sys_platform != \"emscripten\""} +prompt-toolkit = ">=3.0.41,<3.1.0" pygments = ">=2.4.0" stack-data = "*" -traitlets = ">=5" +traitlets = ">=5.13.0" +typing-extensions = {version = ">=4.6", markers = "python_version < \"3.12\""} [package.extras] -all = ["black", "curio", "docrepr", "ipykernel", "ipyparallel", "ipywidgets", "matplotlib", "matplotlib (!=3.2.0)", "nbconvert", "nbformat", "notebook", "numpy (>=1.21)", "pandas", "pytest (<7)", "pytest (<7.1)", "pytest-asyncio", "qtconsole", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "stack-data", "testpath", "trio", "typing-extensions"] +all = ["ipython[black,doc,kernel,matplotlib,nbconvert,nbformat,notebook,parallel,qtconsole]", "ipython[test,test-extra]"] black = ["black"] -doc = ["docrepr", "ipykernel", "matplotlib", "pytest (<7)", "pytest (<7.1)", "pytest-asyncio", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "stack-data", "testpath", "typing-extensions"] +doc = ["docrepr", "exceptiongroup", "intersphinx-registry", "ipykernel", "ipython[test]", "matplotlib", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "sphinxcontrib-jquery", "tomli", "typing-extensions"] kernel = ["ipykernel"] +matplotlib = ["matplotlib"] nbconvert = ["nbconvert"] nbformat = ["nbformat"] notebook = ["ipywidgets", "notebook"] parallel = ["ipyparallel"] qtconsole = ["qtconsole"] -test = ["pytest (<7.1)", "pytest-asyncio", "testpath"] -test-extra = ["curio", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.21)", "pandas", "pytest (<7.1)", "pytest-asyncio", "testpath", "trio"] +test = ["packaging", "pickleshare", "pytest", "pytest-asyncio (<0.22)", "testpath"] +test-extra = ["curio", "ipython[test]", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.23)", "pandas", "trio"] [[package]] name = "ipython-genutils" version = "0.2.0" description = "Vestigial utilities from IPython" -category = "main" optional = false python-versions = "*" files = [ @@ -928,68 +1436,76 @@ files = [ [[package]] name = "ipywidgets" -version = "8.0.2" +version = "8.1.5" description = "Jupyter interactive widgets" -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "ipywidgets-8.0.2-py3-none-any.whl", hash = "sha256:1dc3dd4ee19ded045ea7c86eb273033d238d8e43f9e7872c52d092683f263891"}, - {file = "ipywidgets-8.0.2.tar.gz", hash = "sha256:08cb75c6e0a96836147cbfdc55580ae04d13e05d26ffbc377b4e1c68baa28b1f"}, + {file = "ipywidgets-8.1.5-py3-none-any.whl", hash = "sha256:3290f526f87ae6e77655555baba4f36681c555b8bdbbff430b70e52c34c86245"}, + {file = "ipywidgets-8.1.5.tar.gz", hash = "sha256:870e43b1a35656a80c18c9503bbf2d16802db1cb487eec6fab27d683381dde17"}, ] [package.dependencies] -ipykernel = ">=4.5.1" +comm = ">=0.1.3" ipython = ">=6.1.0" -jupyterlab-widgets = ">=3.0,<4.0" +jupyterlab-widgets = ">=3.0.12,<3.1.0" traitlets = ">=4.3.1" -widgetsnbextension = ">=4.0,<5.0" +widgetsnbextension = ">=4.0.12,<4.1.0" [package.extras] -test = ["jsonschema", "pytest (>=3.6.0)", "pytest-cov", "pytz"] +test = ["ipykernel", "jsonschema", "pytest (>=3.6.0)", "pytest-cov", "pytz"] + +[[package]] +name = "isoduration" +version = "20.11.0" +description = "Operations with ISO 8601 durations" +optional = false +python-versions = ">=3.7" +files = [ + {file = "isoduration-20.11.0-py3-none-any.whl", hash = "sha256:b2904c2a4228c3d44f409c8ae8e2370eb21a26f7ac2ec5446df141dde3452042"}, + {file = "isoduration-20.11.0.tar.gz", hash = "sha256:ac2f9015137935279eac671f94f89eb00584f940f5dc49462a0c4ee692ba1bd9"}, +] + +[package.dependencies] +arrow = ">=0.15.0" [[package]] name = "isort" -version = "5.10.1" +version = "5.13.2" description = "A Python utility / library to sort Python imports." -category = "main" optional = false -python-versions = ">=3.6.1,<4.0" +python-versions = ">=3.8.0" files = [ - {file = "isort-5.10.1-py3-none-any.whl", hash = "sha256:6f62d78e2f89b4500b080fe3a81690850cd254227f27f75c3a0c491a1f351ba7"}, - {file = "isort-5.10.1.tar.gz", hash = "sha256:e8443a5e7a020e9d7f97f1d7d9cd17c88bcb3bc7e218bf9cf5095fe550be2951"}, + {file = "isort-5.13.2-py3-none-any.whl", hash = "sha256:8ca5e72a8d85860d5a3fa69b8745237f2939afe12dbf656afbcb47fe72d947a6"}, + {file = "isort-5.13.2.tar.gz", hash = "sha256:48fdfcb9face5d58a4f6dde2e72a1fb8dcaf8ab26f95ab49fab84c2ddefb0109"}, ] [package.extras] -colors = ["colorama (>=0.4.3,<0.5.0)"] -pipfile-deprecated-finder = ["pipreqs", "requirementslib"] -plugins = ["setuptools"] -requirements-deprecated-finder = ["pip-api", "pipreqs"] +colors = ["colorama (>=0.4.6)"] [[package]] name = "jedi" -version = "0.18.1" +version = "0.19.1" description = "An autocompletion tool for Python that can be used for text editors." -category = "main" optional = false python-versions = ">=3.6" files = [ - {file = "jedi-0.18.1-py2.py3-none-any.whl", hash = "sha256:637c9635fcf47945ceb91cd7f320234a7be540ded6f3e99a50cb6febdfd1ba8d"}, - {file = "jedi-0.18.1.tar.gz", hash = "sha256:74137626a64a99c8eb6ae5832d99b3bdd7d29a3850fe2aa80a4126b2a7d949ab"}, + {file = "jedi-0.19.1-py2.py3-none-any.whl", hash = "sha256:e983c654fe5c02867aef4cdfce5a2fbb4a50adc0af145f70504238f18ef5e7e0"}, + {file = "jedi-0.19.1.tar.gz", hash = "sha256:cf0496f3651bc65d7174ac1b7d043eff454892c708a87d1b683e57b569927ffd"}, ] [package.dependencies] -parso = ">=0.8.0,<0.9.0" +parso = ">=0.8.3,<0.9.0" [package.extras] -qa = ["flake8 (==3.8.3)", "mypy (==0.782)"] -testing = ["Django (<3.1)", "colorama", "docopt", "pytest (<7.0.0)"] +docs = ["Jinja2 (==2.11.3)", "MarkupSafe (==1.1.1)", "Pygments (==2.8.1)", "alabaster (==0.7.12)", "babel (==2.9.1)", "chardet (==4.0.0)", "commonmark (==0.8.1)", "docutils (==0.17.1)", "future (==0.18.2)", "idna (==2.10)", "imagesize (==1.2.0)", "mock (==1.0.1)", "packaging (==20.9)", "pyparsing (==2.4.7)", "pytz (==2021.1)", "readthedocs-sphinx-ext (==2.1.4)", "recommonmark (==0.5.0)", "requests (==2.25.1)", "six (==1.15.0)", "snowballstemmer (==2.1.0)", "sphinx (==1.8.5)", "sphinx-rtd-theme (==0.4.3)", "sphinxcontrib-serializinghtml (==1.1.4)", "sphinxcontrib-websupport (==1.2.4)", "urllib3 (==1.26.4)"] +qa = ["flake8 (==5.0.4)", "mypy (==0.971)", "types-setuptools (==67.2.0.1)"] +testing = ["Django", "attrs", "colorama", "docopt", "pytest (<7.0.0)"] [[package]] name = "jellyfish" version = "0.6.1" description = "a library for doing approximate and phonetic matching of strings." -category = "main" optional = false python-versions = "*" files = [ @@ -998,14 +1514,13 @@ files = [ [[package]] name = "jinja2" -version = "3.1.2" +version = "3.1.4" description = "A very fast and expressive template engine." -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, - {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, + {file = "jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d"}, + {file = "jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"}, ] [package.dependencies] @@ -1016,72 +1531,97 @@ i18n = ["Babel (>=2.7)"] [[package]] name = "json5" -version = "0.9.9" +version = "0.9.25" description = "A Python implementation of the JSON5 data format." -category = "dev" optional = false -python-versions = "*" +python-versions = ">=3.8" files = [ - {file = "json5-0.9.9-py2.py3-none-any.whl", hash = "sha256:1ff8351ee2ae80fd89d64210d9522db7e157516a7b12c72089ded6964527283f"}, - {file = "json5-0.9.9.tar.gz", hash = "sha256:2ace77117c068c5f1f23f97e530a0d49bc09a46039521b6daa74aa39524e02a2"}, + {file = "json5-0.9.25-py3-none-any.whl", hash = "sha256:34ed7d834b1341a86987ed52f3f76cd8ee184394906b6e22a1e0deb9ab294e8f"}, + {file = "json5-0.9.25.tar.gz", hash = "sha256:548e41b9be043f9426776f05df8635a00fe06104ea51ed24b67f908856e151ae"}, ] -[package.extras] -dev = ["hypothesis"] - [[package]] -name = "jsonschema" -version = "4.10.0" -description = "An implementation of JSON Schema validation for Python" -category = "main" +name = "jsonpointer" +version = "3.0.0" +description = "Identify specific nodes in a JSON document (RFC 6901)" optional = false python-versions = ">=3.7" files = [ - {file = "jsonschema-4.10.0-py3-none-any.whl", hash = "sha256:92128509e5b700bf0f1fd08a7d018252b16a1454465dfa6b899558eeae584241"}, - {file = "jsonschema-4.10.0.tar.gz", hash = "sha256:8ff7b44c6a99c6bfd55ca9ac45261c649cefd40aaba1124c29aaef1bcb378d84"}, + {file = "jsonpointer-3.0.0-py2.py3-none-any.whl", hash = "sha256:13e088adc14fca8b6aa8177c044e12701e6ad4b28ff10e65f2267a90109c9942"}, + {file = "jsonpointer-3.0.0.tar.gz", hash = "sha256:2b2d729f2091522d61c3b31f82e11870f60b68f43fbc705cb76bf4b832af59ef"}, +] + +[[package]] +name = "jsonschema" +version = "4.23.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.23.0-py3-none-any.whl", hash = "sha256:fbadb6f8b144a8f8cf9f0b89ba94501d143e50411a1278633f56a7acf7fd5566"}, + {file = "jsonschema-4.23.0.tar.gz", hash = "sha256:d71497fef26351a33265337fa77ffeb82423f3ea21283cd9467bb03999266bc4"}, ] [package.dependencies] -attrs = ">=17.4.0" -importlib-resources = {version = ">=1.4.0", markers = "python_version < \"3.9\""} -pkgutil-resolve-name = {version = ">=1.3.10", markers = "python_version < \"3.9\""} -pyrsistent = ">=0.14.0,<0.17.0 || >0.17.0,<0.17.1 || >0.17.1,<0.17.2 || >0.17.2" +attrs = ">=22.2.0" +fqdn = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} +idna = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} +isoduration = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} +jsonpointer = {version = ">1.13", optional = true, markers = "extra == \"format-nongpl\""} +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rfc3339-validator = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} +rfc3986-validator = {version = ">0.1.0", optional = true, markers = "extra == \"format-nongpl\""} +rpds-py = ">=0.7.1" +uri-template = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} +webcolors = {version = ">=24.6.0", optional = true, markers = "extra == \"format-nongpl\""} [package.extras] format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] -format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=24.6.0)"] + +[[package]] +name = "jsonschema-specifications" +version = "2024.10.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.9" +files = [ + {file = "jsonschema_specifications-2024.10.1-py3-none-any.whl", hash = "sha256:a09a0680616357d9a0ecf05c12ad234479f549239d0f5b55f3deea67475da9bf"}, + {file = "jsonschema_specifications-2024.10.1.tar.gz", hash = "sha256:0f38b83639958ce1152d02a7f062902c41c8fd20d558b0c34344292d417ae272"}, +] + +[package.dependencies] +referencing = ">=0.31.0" [[package]] name = "jupyter" -version = "1.0.0" +version = "1.1.1" description = "Jupyter metapackage. Install all the Jupyter components in one go." -category = "main" optional = false python-versions = "*" files = [ - {file = "jupyter-1.0.0-py2.py3-none-any.whl", hash = "sha256:5b290f93b98ffbc21c0c7e749f054b3267782166d72fa5e3ed1ed4eaf34a2b78"}, - {file = "jupyter-1.0.0.tar.gz", hash = "sha256:d9dc4b3318f310e34c82951ea5d6683f67bed7def4b259fafbfe4f1beb1d8e5f"}, - {file = "jupyter-1.0.0.zip", hash = "sha256:3e1f86076bbb7c8c207829390305a2b1fe836d471ed54be66a3b8c41e7f46cc7"}, + {file = "jupyter-1.1.1-py2.py3-none-any.whl", hash = "sha256:7a59533c22af65439b24bbe60373a4e95af8f16ac65a6c00820ad378e3f7cc83"}, + {file = "jupyter-1.1.1.tar.gz", hash = "sha256:d55467bceabdea49d7e3624af7e33d59c37fff53ed3a350e1ac957bed731de7a"}, ] [package.dependencies] ipykernel = "*" ipywidgets = "*" jupyter-console = "*" +jupyterlab = "*" nbconvert = "*" notebook = "*" -qtconsole = "*" [[package]] name = "jupyter-client" -version = "7.3.4" +version = "7.4.9" description = "Jupyter protocol implementation and client libraries" -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "jupyter_client-7.3.4-py3-none-any.whl", hash = "sha256:17d74b0d0a7b24f1c8c527b24fcf4607c56bee542ffe8e3418e50b21e514b621"}, - {file = "jupyter_client-7.3.4.tar.gz", hash = "sha256:aa9a6c32054b290374f95f73bb0cae91455c58dfb84f65c8591912b8f65e6d56"}, + {file = "jupyter_client-7.4.9-py3-none-any.whl", hash = "sha256:214668aaea208195f4c13d28eb272ba79f945fc0cf3f11c7092c20b2ca1980e7"}, + {file = "jupyter_client-7.4.9.tar.gz", hash = "sha256:52be28e04171f07aed8f20e1616a5a552ab9fee9cbbe6c1896ae170c3880d392"}, ] [package.dependencies] @@ -1090,49 +1630,49 @@ jupyter-core = ">=4.9.2" nest-asyncio = ">=1.5.4" python-dateutil = ">=2.8.2" pyzmq = ">=23.0" -tornado = ">=6.0" +tornado = ">=6.2" traitlets = "*" [package.extras] doc = ["ipykernel", "myst-parser", "sphinx (>=1.3.6)", "sphinx-rtd-theme", "sphinxcontrib-github-alt"] -test = ["codecov", "coverage", "ipykernel (>=6.5)", "ipython", "mypy", "pre-commit", "pytest", "pytest-asyncio (>=0.18)", "pytest-cov", "pytest-timeout"] +test = ["codecov", "coverage", "ipykernel (>=6.12)", "ipython", "mypy", "pre-commit", "pytest", "pytest-asyncio (>=0.18)", "pytest-cov", "pytest-timeout"] [[package]] name = "jupyter-console" -version = "6.4.4" +version = "6.6.3" description = "Jupyter terminal console" -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "jupyter_console-6.4.4-py3-none-any.whl", hash = "sha256:756df7f4f60c986e7bc0172e4493d3830a7e6e75c08750bbe59c0a5403ad6dee"}, - {file = "jupyter_console-6.4.4.tar.gz", hash = "sha256:172f5335e31d600df61613a97b7f0352f2c8250bbd1092ef2d658f77249f89fb"}, + {file = "jupyter_console-6.6.3-py3-none-any.whl", hash = "sha256:309d33409fcc92ffdad25f0bcdf9a4a9daa61b6f341177570fdac03de5352485"}, + {file = "jupyter_console-6.6.3.tar.gz", hash = "sha256:566a4bf31c87adbfadf22cdf846e3069b59a71ed5da71d6ba4d8aaad14a53539"}, ] [package.dependencies] -ipykernel = "*" +ipykernel = ">=6.14" ipython = "*" jupyter-client = ">=7.0.0" -prompt-toolkit = ">=2.0.0,<3.0.0 || >3.0.0,<3.0.1 || >3.0.1,<3.1.0" +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" +prompt-toolkit = ">=3.0.30" pygments = "*" +pyzmq = ">=17" +traitlets = ">=5.4" [package.extras] -test = ["pexpect"] +test = ["flaky", "pexpect", "pytest"] [[package]] name = "jupyter-contrib-core" -version = "0.4.0" +version = "0.4.2" description = "Common utilities for jupyter-contrib projects." -category = "main" optional = false python-versions = "*" files = [ - {file = "jupyter_contrib_core-0.4.0-py2.py3-none-any.whl", hash = "sha256:5e77cdff5c73f5ff76b3713c459f928c0dff45eee53ee8c2fe3f26490f4d4270"}, - {file = "jupyter_contrib_core-0.4.0.tar.gz", hash = "sha256:ad995f5754188ab41ea5f94d69c9a1f96ba50543274d798d9001f937f730d326"}, + {file = "jupyter_contrib_core-0.4.2.tar.gz", hash = "sha256:1887212f3ca9d4487d624c0705c20dfdf03d5a0b9ea2557d3aaeeb4c38bdcabb"}, ] [package.dependencies] -jupyter-core = "*" +jupyter_core = "*" notebook = ">=4.0" setuptools = "*" tornado = "*" @@ -1145,7 +1685,6 @@ testing-utils = ["mock", "nose"] name = "jupyter-contrib-nbextensions" version = "0.5.1" description = "A collection of Jupyter nbextensions." -category = "main" optional = false python-versions = "*" files = [ @@ -1172,30 +1711,53 @@ test = ["mock", "nbformat", "nose", "pip", "requests"] [[package]] name = "jupyter-core" -version = "5.2.0" +version = "5.7.2" description = "Jupyter core package. A base package on which Jupyter projects rely." -category = "main" optional = false python-versions = ">=3.8" files = [ - {file = "jupyter_core-5.2.0-py3-none-any.whl", hash = "sha256:4bdc2928c37f6917130c667d8b8708f20aee539d8283c6be72aabd2a4b4c83b0"}, - {file = "jupyter_core-5.2.0.tar.gz", hash = "sha256:1407cdb4c79ee467696c04b76633fc1884015fa109323365a6372c8e890cc83f"}, + {file = "jupyter_core-5.7.2-py3-none-any.whl", hash = "sha256:4f7315d2f6b4bcf2e3e7cb6e46772eba760ae459cd1f59d29eb57b0a01bd7409"}, + {file = "jupyter_core-5.7.2.tar.gz", hash = "sha256:aa5f8d32bbf6b431ac830496da7392035d6f61b4f54872f15c4bd2a9c3f536d9"}, ] [package.dependencies] platformdirs = ">=2.5" -pywin32 = {version = ">=1.0", markers = "sys_platform == \"win32\" and platform_python_implementation != \"PyPy\""} +pywin32 = {version = ">=300", markers = "sys_platform == \"win32\" and platform_python_implementation != \"PyPy\""} traitlets = ">=5.3" [package.extras] -docs = ["myst-parser", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "traitlets"] -test = ["ipykernel", "pre-commit", "pytest", "pytest-cov", "pytest-timeout"] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "traitlets"] +test = ["ipykernel", "pre-commit", "pytest (<8)", "pytest-cov", "pytest-timeout"] + +[[package]] +name = "jupyter-events" +version = "0.10.0" +description = "Jupyter Event System library" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyter_events-0.10.0-py3-none-any.whl", hash = "sha256:4b72130875e59d57716d327ea70d3ebc3af1944d3717e5a498b8a06c6c159960"}, + {file = "jupyter_events-0.10.0.tar.gz", hash = "sha256:670b8229d3cc882ec782144ed22e0d29e1c2d639263f92ca8383e66682845e22"}, +] + +[package.dependencies] +jsonschema = {version = ">=4.18.0", extras = ["format-nongpl"]} +python-json-logger = ">=2.0.4" +pyyaml = ">=5.3" +referencing = "*" +rfc3339-validator = "*" +rfc3986-validator = ">=0.1.1" +traitlets = ">=5.3" + +[package.extras] +cli = ["click", "rich"] +docs = ["jupyterlite-sphinx", "myst-parser", "pydata-sphinx-theme", "sphinxcontrib-spelling"] +test = ["click", "pre-commit", "pytest (>=7.0)", "pytest-asyncio (>=0.19.0)", "pytest-console-scripts", "rich"] [[package]] name = "jupyter-highlight-selected-word" version = "0.2.0" description = "Jupyter notebook extension that enables highlighting every instance of the current word in the notebook." -category = "main" optional = false python-versions = "*" files = [ @@ -1207,7 +1769,6 @@ files = [ name = "jupyter-latex-envs" version = "1.4.6" description = "Jupyter notebook extension which supports (some) LaTeX environments within markdown cells. Also provides support for labels and crossreferences, document wide numbering, bibliography, and more..." -category = "main" optional = false python-versions = "*" files = [ @@ -1223,19 +1784,18 @@ traitlets = ">=4.1" [[package]] name = "jupyter-nbextensions-configurator" -version = "0.5.0" +version = "0.6.4" description = "jupyter serverextension providing configuration interfaces for nbextensions." -category = "main" optional = false python-versions = "*" files = [ - {file = "jupyter_nbextensions_configurator-0.5.0-py2.py3-none-any.whl", hash = "sha256:0be87b9d828673f691120a026327e0ff4fa7f1602dc94b00b3b9e48d52391e84"}, - {file = "jupyter_nbextensions_configurator-0.5.0.tar.gz", hash = "sha256:bdc312c6baed70f6f35b464fa0bca850a266062c486af3e0ff601079e3238ceb"}, + {file = "jupyter_nbextensions_configurator-0.6.4-py2.py3-none-any.whl", hash = "sha256:fe7a7b0805b5926449692fb077e0e659bab8b27563bc68cba26854532fdf99c7"}, ] [package.dependencies] jupyter-contrib-core = ">=0.3.3" jupyter-core = "*" +jupyter-server = "*" notebook = ">=6.0" pyyaml = "*" tornado = "*" @@ -1246,244 +1806,364 @@ test = ["jupyter-contrib-core[testing-utils]", "mock", "nose", "requests", "sele [[package]] name = "jupyter-server" -version = "1.18.1" +version = "2.14.2" description = "The backend—i.e. core services, APIs, and REST endpoints—to Jupyter web applications." -category = "dev" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "jupyter_server-1.18.1-py3-none-any.whl", hash = "sha256:022759b09c96a4e2feb95de59ce4283e04e17782efe197b91d23a47521609b77"}, - {file = "jupyter_server-1.18.1.tar.gz", hash = "sha256:2b72fc595bccae292260aad8157a0ead8da2c703ec6ae1bb7b36dbad0e267ea7"}, + {file = "jupyter_server-2.14.2-py3-none-any.whl", hash = "sha256:47ff506127c2f7851a17bf4713434208fc490955d0e8632e95014a9a9afbeefd"}, + {file = "jupyter_server-2.14.2.tar.gz", hash = "sha256:66095021aa9638ced276c248b1d81862e4c50f292d575920bbe960de1c56b12b"}, ] [package.dependencies] -anyio = ">=3.1.0,<4" -argon2-cffi = "*" -jinja2 = "*" -jupyter-client = ">=6.1.12" -jupyter-core = ">=4.7.0" +anyio = ">=3.1.0" +argon2-cffi = ">=21.1" +jinja2 = ">=3.0.3" +jupyter-client = ">=7.4.4" +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" +jupyter-events = ">=0.9.0" +jupyter-server-terminals = ">=0.4.4" nbconvert = ">=6.4.4" -nbformat = ">=5.2.0" -packaging = "*" -prometheus-client = "*" -pywinpty = {version = "*", markers = "os_name == \"nt\""} -pyzmq = ">=17" -Send2Trash = "*" +nbformat = ">=5.3.0" +overrides = ">=5.0" +packaging = ">=22.0" +prometheus-client = ">=0.9" +pywinpty = {version = ">=2.0.1", markers = "os_name == \"nt\""} +pyzmq = ">=24" +send2trash = ">=1.8.2" terminado = ">=0.8.3" -tornado = ">=6.1.0" -traitlets = ">=5.1" -websocket-client = "*" +tornado = ">=6.2.0" +traitlets = ">=5.6.0" +websocket-client = ">=1.7" [package.extras] -test = ["coverage", "ipykernel", "pre-commit", "pytest (>=6.0)", "pytest-console-scripts", "pytest-cov", "pytest-mock", "pytest-timeout", "pytest-tornasync", "requests"] +docs = ["ipykernel", "jinja2", "jupyter-client", "myst-parser", "nbformat", "prometheus-client", "pydata-sphinx-theme", "send2trash", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-openapi (>=0.8.0)", "sphinxcontrib-spelling", "sphinxemoji", "tornado", "typing-extensions"] +test = ["flaky", "ipykernel", "pre-commit", "pytest (>=7.0,<9)", "pytest-console-scripts", "pytest-jupyter[server] (>=0.7)", "pytest-timeout", "requests"] [[package]] -name = "jupyterlab" -version = "3.4.4" -description = "JupyterLab computational environment" -category = "dev" +name = "jupyter-server-fileid" +version = "0.9.3" +description = "Jupyter Server extension providing an implementation of the File ID service." optional = false python-versions = ">=3.7" files = [ - {file = "jupyterlab-3.4.4-py3-none-any.whl", hash = "sha256:2c12a0c995bf5d49b0a17e833aaf6417c6d6a4721dfd4742a5f22f4e48661146"}, - {file = "jupyterlab-3.4.4.tar.gz", hash = "sha256:5a2a0fdd22bd8628ad45b618e3520387c32a4818e3af112dbad1f649304dfc20"}, + {file = "jupyter_server_fileid-0.9.3-py3-none-any.whl", hash = "sha256:f73c01c19f90005d3fff93607b91b4955ba4e1dccdde9bfe8026646f94053791"}, + {file = "jupyter_server_fileid-0.9.3.tar.gz", hash = "sha256:521608bb87f606a8637fcbdce2f3d24a8b3cc89d2eef61751cb40e468d4e54be"}, +] + +[package.dependencies] +jupyter-events = ">=0.5.0" +jupyter-server = ">=1.15,<3" + +[package.extras] +cli = ["click"] +test = ["jupyter-server[test] (>=1.15,<3)", "pytest", "pytest-cov", "pytest-jupyter"] + +[[package]] +name = "jupyter-server-terminals" +version = "0.5.3" +description = "A Jupyter Server Extension Providing Terminals." +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyter_server_terminals-0.5.3-py3-none-any.whl", hash = "sha256:41ee0d7dc0ebf2809c668e0fc726dfaf258fcd3e769568996ca731b6194ae9aa"}, + {file = "jupyter_server_terminals-0.5.3.tar.gz", hash = "sha256:5ae0295167220e9ace0edcfdb212afd2b01ee8d179fe6f23c899590e9b8a5269"}, +] + +[package.dependencies] +pywinpty = {version = ">=2.0.3", markers = "os_name == \"nt\""} +terminado = ">=0.8.3" + +[package.extras] +docs = ["jinja2", "jupyter-server", "mistune (<4.0)", "myst-parser", "nbformat", "packaging", "pydata-sphinx-theme", "sphinxcontrib-github-alt", "sphinxcontrib-openapi", "sphinxcontrib-spelling", "sphinxemoji", "tornado"] +test = ["jupyter-server (>=2.0.0)", "pytest (>=7.0)", "pytest-jupyter[server] (>=0.5.3)", "pytest-timeout"] + +[[package]] +name = "jupyter-server-ydoc" +version = "0.8.0" +description = "A Jupyter Server Extension Providing Y Documents." +optional = false +python-versions = ">=3.7" +files = [ + {file = "jupyter_server_ydoc-0.8.0-py3-none-any.whl", hash = "sha256:969a3a1a77ed4e99487d60a74048dc9fa7d3b0dcd32e60885d835bbf7ba7be11"}, + {file = "jupyter_server_ydoc-0.8.0.tar.gz", hash = "sha256:a6fe125091792d16c962cc3720c950c2b87fcc8c3ecf0c54c84e9a20b814526c"}, +] + +[package.dependencies] +jupyter-server-fileid = ">=0.6.0,<1" +jupyter-ydoc = ">=0.2.0,<0.4.0" +ypy-websocket = ">=0.8.2,<0.9.0" + +[package.extras] +test = ["coverage", "jupyter-server[test] (>=2.0.0a0)", "pytest (>=7.0)", "pytest-cov", "pytest-timeout", "pytest-tornasync"] + +[[package]] +name = "jupyter-ydoc" +version = "0.2.5" +description = "Document structures for collaborative editing using Ypy" +optional = false +python-versions = ">=3.7" +files = [ + {file = "jupyter_ydoc-0.2.5-py3-none-any.whl", hash = "sha256:5759170f112c70320a84217dd98d287699076ae65a7f88d458d57940a9f2b882"}, + {file = "jupyter_ydoc-0.2.5.tar.gz", hash = "sha256:5a02ca7449f0d875f73e8cb8efdf695dddef15a8e71378b1f4eda6b7c90f5382"}, +] + +[package.dependencies] +y-py = ">=0.6.0,<0.7.0" + +[package.extras] +dev = ["click", "jupyter-releaser"] +test = ["pre-commit", "pytest", "pytest-asyncio", "websockets (>=10.0)", "ypy-websocket (>=0.8.4,<0.9.0)"] + +[[package]] +name = "jupyterlab" +version = "3.6.8" +description = "JupyterLab computational environment" +optional = false +python-versions = ">=3.7" +files = [ + {file = "jupyterlab-3.6.8-py3-none-any.whl", hash = "sha256:891284e75158998e23eb7a23ecc4caaf27b365e41adca374109b1305b9f769db"}, + {file = "jupyterlab-3.6.8.tar.gz", hash = "sha256:a2477383e23f20009188bd9dac7e6e38dbc54307bc36d716bea6ced450647c97"}, ] [package.dependencies] ipython = "*" jinja2 = ">=2.1" jupyter-core = "*" -jupyter-server = ">=1.16,<2.0" -jupyterlab-server = ">=2.10,<3.0" +jupyter-server = ">=1.16.0,<3" +jupyter-server-ydoc = ">=0.8.0,<0.9.0" +jupyter-ydoc = ">=0.2.4,<0.3.0" +jupyterlab-server = ">=2.19,<3.0" nbclassic = "*" notebook = "<7" packaging = "*" +tomli = {version = "*", markers = "python_version < \"3.11\""} tornado = ">=6.1.0" [package.extras] -test = ["check-manifest", "coverage", "jupyterlab-server[test]", "pre-commit", "pytest (>=6.0)", "pytest-check-links (>=0.5)", "pytest-console-scripts", "pytest-cov", "requests", "requests-cache", "virtualenv"] -ui-tests = ["build"] +docs = ["jsx-lexer", "myst-parser", "pytest", "pytest-check-links", "pytest-tornasync", "sphinx (>=1.8)", "sphinx-copybutton", "sphinx-rtd-theme"] +test = ["check-manifest", "coverage", "jupyterlab-server[test]", "pre-commit", "pytest (>=6.0)", "pytest-check-links (>=0.5)", "pytest-console-scripts", "pytest-cov", "pytest-jupyter (>=0.5.3)", "requests", "requests-cache", "virtualenv"] [[package]] name = "jupyterlab-pygments" -version = "0.2.2" +version = "0.3.0" description = "Pygments theme using JupyterLab CSS variables" -category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "jupyterlab_pygments-0.2.2-py2.py3-none-any.whl", hash = "sha256:2405800db07c9f770863bcf8049a529c3dd4d3e28536638bd7c1c01d2748309f"}, - {file = "jupyterlab_pygments-0.2.2.tar.gz", hash = "sha256:7405d7fde60819d905a9fa8ce89e4cd830e318cdad22a0030f7a901da705585d"}, + {file = "jupyterlab_pygments-0.3.0-py3-none-any.whl", hash = "sha256:841a89020971da1d8693f1a99997aefc5dc424bb1b251fd6322462a1b8842780"}, + {file = "jupyterlab_pygments-0.3.0.tar.gz", hash = "sha256:721aca4d9029252b11cfa9d185e5b5af4d54772bb8072f9b7036f4170054d35d"}, ] [[package]] name = "jupyterlab-server" -version = "2.15.0" +version = "2.27.3" description = "A set of server components for JupyterLab and JupyterLab like applications." -category = "dev" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "jupyterlab_server-2.15.0-py3-none-any.whl", hash = "sha256:0e327d7a346874fd8e94c1bcbd69906d18a8558df8f13115c5afd183c3107756"}, - {file = "jupyterlab_server-2.15.0.tar.gz", hash = "sha256:a91c515e0e7971a8f7c3c9834b748857f7dac502f93604bf283987991fd987ef"}, + {file = "jupyterlab_server-2.27.3-py3-none-any.whl", hash = "sha256:e697488f66c3db49df675158a77b3b017520d772c6e1548c7d9bcc5df7944ee4"}, + {file = "jupyterlab_server-2.27.3.tar.gz", hash = "sha256:eb36caca59e74471988f0ae25c77945610b887f777255aa21f8065def9e51ed4"}, ] [package.dependencies] -babel = "*" -importlib-metadata = {version = ">=3.6", markers = "python_version < \"3.10\""} +babel = ">=2.10" jinja2 = ">=3.0.3" -json5 = "*" -jsonschema = ">=3.0.1" -jupyter-server = ">=1.8,<2" -packaging = "*" -requests = "*" +json5 = ">=0.9.0" +jsonschema = ">=4.18.0" +jupyter-server = ">=1.21,<3" +packaging = ">=21.3" +requests = ">=2.31" [package.extras] -openapi = ["openapi-core (>=0.14.2)", "ruamel-yaml"] -test = ["codecov", "ipykernel", "jupyter-server[test]", "openapi-core (>=0.14.2)", "openapi-spec-validator (<0.5)", "pytest (>=5.3.2)", "pytest-console-scripts", "pytest-cov", "ruamel-yaml", "strict-rfc3339"] +docs = ["autodoc-traits", "jinja2 (<3.2.0)", "mistune (<4)", "myst-parser", "pydata-sphinx-theme", "sphinx", "sphinx-copybutton", "sphinxcontrib-openapi (>0.8)"] +openapi = ["openapi-core (>=0.18.0,<0.19.0)", "ruamel-yaml"] +test = ["hatch", "ipykernel", "openapi-core (>=0.18.0,<0.19.0)", "openapi-spec-validator (>=0.6.0,<0.8.0)", "pytest (>=7.0,<8)", "pytest-console-scripts", "pytest-cov", "pytest-jupyter[server] (>=0.6.2)", "pytest-timeout", "requests-mock", "ruamel-yaml", "sphinxcontrib-spelling", "strict-rfc3339", "werkzeug"] [[package]] name = "jupyterlab-widgets" -version = "3.0.2" +version = "3.0.13" description = "Jupyter interactive widgets for JupyterLab" -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "jupyterlab_widgets-3.0.2-py3-none-any.whl", hash = "sha256:98303a281f4004670cdcea2ef4aecba19c580adc297664c593f967025625c8c5"}, - {file = "jupyterlab_widgets-3.0.2.tar.gz", hash = "sha256:47ab54cd165aa0cb3bcef1232d77471580cd2c36bbe2153fc5ba31e26ad87320"}, + {file = "jupyterlab_widgets-3.0.13-py3-none-any.whl", hash = "sha256:e3cda2c233ce144192f1e29914ad522b2f4c40e77214b0cc97377ca3d323db54"}, + {file = "jupyterlab_widgets-3.0.13.tar.gz", hash = "sha256:a2966d385328c1942b683a8cd96b89b8dd82c8b8f81dda902bb2bc06d46f5bed"}, ] [[package]] name = "kiwisolver" -version = "1.4.4" +version = "1.4.7" description = "A fast implementation of the Cassowary constraint solver" -category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "kiwisolver-1.4.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2f5e60fabb7343a836360c4f0919b8cd0d6dbf08ad2ca6b9cf90bf0c76a3c4f6"}, - {file = "kiwisolver-1.4.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:10ee06759482c78bdb864f4109886dff7b8a56529bc1609d4f1112b93fe6423c"}, - {file = "kiwisolver-1.4.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c79ebe8f3676a4c6630fd3f777f3cfecf9289666c84e775a67d1d358578dc2e3"}, - {file = "kiwisolver-1.4.4-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:abbe9fa13da955feb8202e215c4018f4bb57469b1b78c7a4c5c7b93001699938"}, - {file = "kiwisolver-1.4.4-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:7577c1987baa3adc4b3c62c33bd1118c3ef5c8ddef36f0f2c950ae0b199e100d"}, - {file = "kiwisolver-1.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f8ad8285b01b0d4695102546b342b493b3ccc6781fc28c8c6a1bb63e95d22f09"}, - {file = "kiwisolver-1.4.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8ed58b8acf29798b036d347791141767ccf65eee7f26bde03a71c944449e53de"}, - {file = "kiwisolver-1.4.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a68b62a02953b9841730db7797422f983935aeefceb1679f0fc85cbfbd311c32"}, - {file = "kiwisolver-1.4.4-cp310-cp310-win32.whl", hash = "sha256:e92a513161077b53447160b9bd8f522edfbed4bd9759e4c18ab05d7ef7e49408"}, - {file = "kiwisolver-1.4.4-cp310-cp310-win_amd64.whl", hash = "sha256:3fe20f63c9ecee44560d0e7f116b3a747a5d7203376abeea292ab3152334d004"}, - {file = "kiwisolver-1.4.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:e0ea21f66820452a3f5d1655f8704a60d66ba1191359b96541eaf457710a5fc6"}, - {file = "kiwisolver-1.4.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:bc9db8a3efb3e403e4ecc6cd9489ea2bac94244f80c78e27c31dcc00d2790ac2"}, - {file = "kiwisolver-1.4.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d5b61785a9ce44e5a4b880272baa7cf6c8f48a5180c3e81c59553ba0cb0821ca"}, - {file = "kiwisolver-1.4.4-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c2dbb44c3f7e6c4d3487b31037b1bdbf424d97687c1747ce4ff2895795c9bf69"}, - {file = "kiwisolver-1.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6295ecd49304dcf3bfbfa45d9a081c96509e95f4b9d0eb7ee4ec0530c4a96514"}, - {file = "kiwisolver-1.4.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4bd472dbe5e136f96a4b18f295d159d7f26fd399136f5b17b08c4e5f498cd494"}, - {file = "kiwisolver-1.4.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bf7d9fce9bcc4752ca4a1b80aabd38f6d19009ea5cbda0e0856983cf6d0023f5"}, - {file = "kiwisolver-1.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78d6601aed50c74e0ef02f4204da1816147a6d3fbdc8b3872d263338a9052c51"}, - {file = "kiwisolver-1.4.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:877272cf6b4b7e94c9614f9b10140e198d2186363728ed0f701c6eee1baec1da"}, - {file = "kiwisolver-1.4.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:db608a6757adabb32f1cfe6066e39b3706d8c3aa69bbc353a5b61edad36a5cb4"}, - {file = "kiwisolver-1.4.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:5853eb494c71e267912275e5586fe281444eb5e722de4e131cddf9d442615626"}, - {file = "kiwisolver-1.4.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:f0a1dbdb5ecbef0d34eb77e56fcb3e95bbd7e50835d9782a45df81cc46949750"}, - {file = "kiwisolver-1.4.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:283dffbf061a4ec60391d51e6155e372a1f7a4f5b15d59c8505339454f8989e4"}, - {file = "kiwisolver-1.4.4-cp311-cp311-win32.whl", hash = "sha256:d06adcfa62a4431d404c31216f0f8ac97397d799cd53800e9d3efc2fbb3cf14e"}, - {file = "kiwisolver-1.4.4-cp311-cp311-win_amd64.whl", hash = "sha256:e7da3fec7408813a7cebc9e4ec55afed2d0fd65c4754bc376bf03498d4e92686"}, - {file = "kiwisolver-1.4.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:62ac9cc684da4cf1778d07a89bf5f81b35834cb96ca523d3a7fb32509380cbf6"}, - {file = "kiwisolver-1.4.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41dae968a94b1ef1897cb322b39360a0812661dba7c682aa45098eb8e193dbdf"}, - {file = "kiwisolver-1.4.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:02f79693ec433cb4b5f51694e8477ae83b3205768a6fb48ffba60549080e295b"}, - {file = "kiwisolver-1.4.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d0611a0a2a518464c05ddd5a3a1a0e856ccc10e67079bb17f265ad19ab3c7597"}, - {file = "kiwisolver-1.4.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:db5283d90da4174865d520e7366801a93777201e91e79bacbac6e6927cbceede"}, - {file = "kiwisolver-1.4.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:1041feb4cda8708ce73bb4dcb9ce1ccf49d553bf87c3954bdfa46f0c3f77252c"}, - {file = "kiwisolver-1.4.4-cp37-cp37m-win32.whl", hash = "sha256:a553dadda40fef6bfa1456dc4be49b113aa92c2a9a9e8711e955618cd69622e3"}, - {file = "kiwisolver-1.4.4-cp37-cp37m-win_amd64.whl", hash = "sha256:03baab2d6b4a54ddbb43bba1a3a2d1627e82d205c5cf8f4c924dc49284b87166"}, - {file = "kiwisolver-1.4.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:841293b17ad704d70c578f1f0013c890e219952169ce8a24ebc063eecf775454"}, - {file = "kiwisolver-1.4.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f4f270de01dd3e129a72efad823da90cc4d6aafb64c410c9033aba70db9f1ff0"}, - {file = "kiwisolver-1.4.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f9f39e2f049db33a908319cf46624a569b36983c7c78318e9726a4cb8923b26c"}, - {file = "kiwisolver-1.4.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c97528e64cb9ebeff9701e7938653a9951922f2a38bd847787d4a8e498cc83ae"}, - {file = "kiwisolver-1.4.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d1573129aa0fd901076e2bfb4275a35f5b7aa60fbfb984499d661ec950320b0"}, - {file = "kiwisolver-1.4.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ad881edc7ccb9d65b0224f4e4d05a1e85cf62d73aab798943df6d48ab0cd79a1"}, - {file = "kiwisolver-1.4.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b428ef021242344340460fa4c9185d0b1f66fbdbfecc6c63eff4b7c29fad429d"}, - {file = "kiwisolver-1.4.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:2e407cb4bd5a13984a6c2c0fe1845e4e41e96f183e5e5cd4d77a857d9693494c"}, - {file = "kiwisolver-1.4.4-cp38-cp38-win32.whl", hash = "sha256:75facbe9606748f43428fc91a43edb46c7ff68889b91fa31f53b58894503a191"}, - {file = "kiwisolver-1.4.4-cp38-cp38-win_amd64.whl", hash = "sha256:5bce61af018b0cb2055e0e72e7d65290d822d3feee430b7b8203d8a855e78766"}, - {file = "kiwisolver-1.4.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8c808594c88a025d4e322d5bb549282c93c8e1ba71b790f539567932722d7bd8"}, - {file = "kiwisolver-1.4.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f0a71d85ecdd570ded8ac3d1c0f480842f49a40beb423bb8014539a9f32a5897"}, - {file = "kiwisolver-1.4.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b533558eae785e33e8c148a8d9921692a9fe5aa516efbdff8606e7d87b9d5824"}, - {file = "kiwisolver-1.4.4-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:efda5fc8cc1c61e4f639b8067d118e742b812c930f708e6667a5ce0d13499e29"}, - {file = "kiwisolver-1.4.4-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:7c43e1e1206cd421cd92e6b3280d4385d41d7166b3ed577ac20444b6995a445f"}, - {file = "kiwisolver-1.4.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bc8d3bd6c72b2dd9decf16ce70e20abcb3274ba01b4e1c96031e0c4067d1e7cd"}, - {file = "kiwisolver-1.4.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4ea39b0ccc4f5d803e3337dd46bcce60b702be4d86fd0b3d7531ef10fd99a1ac"}, - {file = "kiwisolver-1.4.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:968f44fdbf6dd757d12920d63b566eeb4d5b395fd2d00d29d7ef00a00582aac9"}, - {file = "kiwisolver-1.4.4-cp39-cp39-win32.whl", hash = "sha256:da7e547706e69e45d95e116e6939488d62174e033b763ab1496b4c29b76fabea"}, - {file = "kiwisolver-1.4.4-cp39-cp39-win_amd64.whl", hash = "sha256:ba59c92039ec0a66103b1d5fe588fa546373587a7d68f5c96f743c3396afc04b"}, - {file = "kiwisolver-1.4.4-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:91672bacaa030f92fc2f43b620d7b337fd9a5af28b0d6ed3f77afc43c4a64b5a"}, - {file = "kiwisolver-1.4.4-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:787518a6789009c159453da4d6b683f468ef7a65bbde796bcea803ccf191058d"}, - {file = "kiwisolver-1.4.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da152d8cdcab0e56e4f45eb08b9aea6455845ec83172092f09b0e077ece2cf7a"}, - {file = "kiwisolver-1.4.4-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:ecb1fa0db7bf4cff9dac752abb19505a233c7f16684c5826d1f11ebd9472b871"}, - {file = "kiwisolver-1.4.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:28bc5b299f48150b5f822ce68624e445040595a4ac3d59251703779836eceff9"}, - {file = "kiwisolver-1.4.4-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:81e38381b782cc7e1e46c4e14cd997ee6040768101aefc8fa3c24a4cc58e98f8"}, - {file = "kiwisolver-1.4.4-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:2a66fdfb34e05b705620dd567f5a03f239a088d5a3f321e7b6ac3239d22aa286"}, - {file = "kiwisolver-1.4.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:872b8ca05c40d309ed13eb2e582cab0c5a05e81e987ab9c521bf05ad1d5cf5cb"}, - {file = "kiwisolver-1.4.4-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:70e7c2e7b750585569564e2e5ca9845acfaa5da56ac46df68414f29fea97be9f"}, - {file = "kiwisolver-1.4.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:9f85003f5dfa867e86d53fac6f7e6f30c045673fa27b603c397753bebadc3008"}, - {file = "kiwisolver-1.4.4-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e307eb9bd99801f82789b44bb45e9f541961831c7311521b13a6c85afc09767"}, - {file = "kiwisolver-1.4.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1792d939ec70abe76f5054d3f36ed5656021dcad1322d1cc996d4e54165cef9"}, - {file = "kiwisolver-1.4.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6cb459eea32a4e2cf18ba5fcece2dbdf496384413bc1bae15583f19e567f3b2"}, - {file = "kiwisolver-1.4.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:36dafec3d6d6088d34e2de6b85f9d8e2324eb734162fba59d2ba9ed7a2043d5b"}, - {file = "kiwisolver-1.4.4.tar.gz", hash = "sha256:d41997519fcba4a1e46eb4a2fe31bc12f0ff957b2b81bac28db24744f333e955"}, + {file = "kiwisolver-1.4.7-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8a9c83f75223d5e48b0bc9cb1bf2776cf01563e00ade8775ffe13b0b6e1af3a6"}, + {file = "kiwisolver-1.4.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:58370b1ffbd35407444d57057b57da5d6549d2d854fa30249771775c63b5fe17"}, + {file = "kiwisolver-1.4.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:aa0abdf853e09aff551db11fce173e2177d00786c688203f52c87ad7fcd91ef9"}, + {file = "kiwisolver-1.4.7-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8d53103597a252fb3ab8b5845af04c7a26d5e7ea8122303dd7a021176a87e8b9"}, + {file = "kiwisolver-1.4.7-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:88f17c5ffa8e9462fb79f62746428dd57b46eb931698e42e990ad63103f35e6c"}, + {file = "kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88a9ca9c710d598fd75ee5de59d5bda2684d9db36a9f50b6125eaea3969c2599"}, + {file = "kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f4d742cb7af1c28303a51b7a27aaee540e71bb8e24f68c736f6f2ffc82f2bf05"}, + {file = "kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e28c7fea2196bf4c2f8d46a0415c77a1c480cc0724722f23d7410ffe9842c407"}, + {file = "kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e968b84db54f9d42046cf154e02911e39c0435c9801681e3fc9ce8a3c4130278"}, + {file = "kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0c18ec74c0472de033e1bebb2911c3c310eef5649133dd0bedf2a169a1b269e5"}, + {file = "kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8f0ea6da6d393d8b2e187e6a5e3fb81f5862010a40c3945e2c6d12ae45cfb2ad"}, + {file = "kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:f106407dda69ae456dd1227966bf445b157ccc80ba0dff3802bb63f30b74e895"}, + {file = "kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:84ec80df401cfee1457063732d90022f93951944b5b58975d34ab56bb150dfb3"}, + {file = "kiwisolver-1.4.7-cp310-cp310-win32.whl", hash = "sha256:71bb308552200fb2c195e35ef05de12f0c878c07fc91c270eb3d6e41698c3bcc"}, + {file = "kiwisolver-1.4.7-cp310-cp310-win_amd64.whl", hash = "sha256:44756f9fd339de0fb6ee4f8c1696cfd19b2422e0d70b4cefc1cc7f1f64045a8c"}, + {file = "kiwisolver-1.4.7-cp310-cp310-win_arm64.whl", hash = "sha256:78a42513018c41c2ffd262eb676442315cbfe3c44eed82385c2ed043bc63210a"}, + {file = "kiwisolver-1.4.7-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d2b0e12a42fb4e72d509fc994713d099cbb15ebf1103545e8a45f14da2dfca54"}, + {file = "kiwisolver-1.4.7-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2a8781ac3edc42ea4b90bc23e7d37b665d89423818e26eb6df90698aa2287c95"}, + {file = "kiwisolver-1.4.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:46707a10836894b559e04b0fd143e343945c97fd170d69a2d26d640b4e297935"}, + {file = "kiwisolver-1.4.7-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef97b8df011141c9b0f6caf23b29379f87dd13183c978a30a3c546d2c47314cb"}, + {file = "kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ab58c12a2cd0fc769089e6d38466c46d7f76aced0a1f54c77652446733d2d02"}, + {file = "kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:803b8e1459341c1bb56d1c5c010406d5edec8a0713a0945851290a7930679b51"}, + {file = "kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f9a9e8a507420fe35992ee9ecb302dab68550dedc0da9e2880dd88071c5fb052"}, + {file = "kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18077b53dc3bb490e330669a99920c5e6a496889ae8c63b58fbc57c3d7f33a18"}, + {file = "kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6af936f79086a89b3680a280c47ea90b4df7047b5bdf3aa5c524bbedddb9e545"}, + {file = "kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:3abc5b19d24af4b77d1598a585b8a719beb8569a71568b66f4ebe1fb0449460b"}, + {file = "kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:933d4de052939d90afbe6e9d5273ae05fb836cc86c15b686edd4b3560cc0ee36"}, + {file = "kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:65e720d2ab2b53f1f72fb5da5fb477455905ce2c88aaa671ff0a447c2c80e8e3"}, + {file = "kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3bf1ed55088f214ba6427484c59553123fdd9b218a42bbc8c6496d6754b1e523"}, + {file = "kiwisolver-1.4.7-cp311-cp311-win32.whl", hash = "sha256:4c00336b9dd5ad96d0a558fd18a8b6f711b7449acce4c157e7343ba92dd0cf3d"}, + {file = "kiwisolver-1.4.7-cp311-cp311-win_amd64.whl", hash = "sha256:929e294c1ac1e9f615c62a4e4313ca1823ba37326c164ec720a803287c4c499b"}, + {file = "kiwisolver-1.4.7-cp311-cp311-win_arm64.whl", hash = "sha256:e33e8fbd440c917106b237ef1a2f1449dfbb9b6f6e1ce17c94cd6a1e0d438376"}, + {file = "kiwisolver-1.4.7-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:5360cc32706dab3931f738d3079652d20982511f7c0ac5711483e6eab08efff2"}, + {file = "kiwisolver-1.4.7-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:942216596dc64ddb25adb215c3c783215b23626f8d84e8eff8d6d45c3f29f75a"}, + {file = "kiwisolver-1.4.7-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:48b571ecd8bae15702e4f22d3ff6a0f13e54d3d00cd25216d5e7f658242065ee"}, + {file = "kiwisolver-1.4.7-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ad42ba922c67c5f219097b28fae965e10045ddf145d2928bfac2eb2e17673640"}, + {file = "kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:612a10bdae23404a72941a0fc8fa2660c6ea1217c4ce0dbcab8a8f6543ea9e7f"}, + {file = "kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9e838bba3a3bac0fe06d849d29772eb1afb9745a59710762e4ba3f4cb8424483"}, + {file = "kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:22f499f6157236c19f4bbbd472fa55b063db77a16cd74d49afe28992dff8c258"}, + {file = "kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:693902d433cf585133699972b6d7c42a8b9f8f826ebcaf0132ff55200afc599e"}, + {file = "kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4e77f2126c3e0b0d055f44513ed349038ac180371ed9b52fe96a32aa071a5107"}, + {file = "kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:657a05857bda581c3656bfc3b20e353c232e9193eb167766ad2dc58b56504948"}, + {file = "kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4bfa75a048c056a411f9705856abfc872558e33c055d80af6a380e3658766038"}, + {file = "kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:34ea1de54beef1c104422d210c47c7d2a4999bdecf42c7b5718fbe59a4cac383"}, + {file = "kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:90da3b5f694b85231cf93586dad5e90e2d71b9428f9aad96952c99055582f520"}, + {file = "kiwisolver-1.4.7-cp312-cp312-win32.whl", hash = "sha256:18e0cca3e008e17fe9b164b55735a325140a5a35faad8de92dd80265cd5eb80b"}, + {file = "kiwisolver-1.4.7-cp312-cp312-win_amd64.whl", hash = "sha256:58cb20602b18f86f83a5c87d3ee1c766a79c0d452f8def86d925e6c60fbf7bfb"}, + {file = "kiwisolver-1.4.7-cp312-cp312-win_arm64.whl", hash = "sha256:f5a8b53bdc0b3961f8b6125e198617c40aeed638b387913bf1ce78afb1b0be2a"}, + {file = "kiwisolver-1.4.7-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:2e6039dcbe79a8e0f044f1c39db1986a1b8071051efba3ee4d74f5b365f5226e"}, + {file = "kiwisolver-1.4.7-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a1ecf0ac1c518487d9d23b1cd7139a6a65bc460cd101ab01f1be82ecf09794b6"}, + {file = "kiwisolver-1.4.7-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7ab9ccab2b5bd5702ab0803676a580fffa2aa178c2badc5557a84cc943fcf750"}, + {file = "kiwisolver-1.4.7-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f816dd2277f8d63d79f9c8473a79fe54047bc0467754962840782c575522224d"}, + {file = "kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf8bcc23ceb5a1b624572a1623b9f79d2c3b337c8c455405ef231933a10da379"}, + {file = "kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dea0bf229319828467d7fca8c7c189780aa9ff679c94539eed7532ebe33ed37c"}, + {file = "kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c06a4c7cf15ec739ce0e5971b26c93638730090add60e183530d70848ebdd34"}, + {file = "kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:913983ad2deb14e66d83c28b632fd35ba2b825031f2fa4ca29675e665dfecbe1"}, + {file = "kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5337ec7809bcd0f424c6b705ecf97941c46279cf5ed92311782c7c9c2026f07f"}, + {file = "kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c26ed10c4f6fa6ddb329a5120ba3b6db349ca192ae211e882970bfc9d91420b"}, + {file = "kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c619b101e6de2222c1fcb0531e1b17bbffbe54294bfba43ea0d411d428618c27"}, + {file = "kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:073a36c8273647592ea332e816e75ef8da5c303236ec0167196793eb1e34657a"}, + {file = "kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:3ce6b2b0231bda412463e152fc18335ba32faf4e8c23a754ad50ffa70e4091ee"}, + {file = "kiwisolver-1.4.7-cp313-cp313-win32.whl", hash = "sha256:f4c9aee212bc89d4e13f58be11a56cc8036cabad119259d12ace14b34476fd07"}, + {file = "kiwisolver-1.4.7-cp313-cp313-win_amd64.whl", hash = "sha256:8a3ec5aa8e38fc4c8af308917ce12c536f1c88452ce554027e55b22cbbfbff76"}, + {file = "kiwisolver-1.4.7-cp313-cp313-win_arm64.whl", hash = "sha256:76c8094ac20ec259471ac53e774623eb62e6e1f56cd8690c67ce6ce4fcb05650"}, + {file = "kiwisolver-1.4.7-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5d5abf8f8ec1f4e22882273c423e16cae834c36856cac348cfbfa68e01c40f3a"}, + {file = "kiwisolver-1.4.7-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:aeb3531b196ef6f11776c21674dba836aeea9d5bd1cf630f869e3d90b16cfade"}, + {file = "kiwisolver-1.4.7-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b7d755065e4e866a8086c9bdada157133ff466476a2ad7861828e17b6026e22c"}, + {file = "kiwisolver-1.4.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:08471d4d86cbaec61f86b217dd938a83d85e03785f51121e791a6e6689a3be95"}, + {file = "kiwisolver-1.4.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7bbfcb7165ce3d54a3dfbe731e470f65739c4c1f85bb1018ee912bae139e263b"}, + {file = "kiwisolver-1.4.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5d34eb8494bea691a1a450141ebb5385e4b69d38bb8403b5146ad279f4b30fa3"}, + {file = "kiwisolver-1.4.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9242795d174daa40105c1d86aba618e8eab7bf96ba8c3ee614da8302a9f95503"}, + {file = "kiwisolver-1.4.7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:a0f64a48bb81af7450e641e3fe0b0394d7381e342805479178b3d335d60ca7cf"}, + {file = "kiwisolver-1.4.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:8e045731a5416357638d1700927529e2b8ab304811671f665b225f8bf8d8f933"}, + {file = "kiwisolver-1.4.7-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:4322872d5772cae7369f8351da1edf255a604ea7087fe295411397d0cfd9655e"}, + {file = "kiwisolver-1.4.7-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:e1631290ee9271dffe3062d2634c3ecac02c83890ada077d225e081aca8aab89"}, + {file = "kiwisolver-1.4.7-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:edcfc407e4eb17e037bca59be0e85a2031a2ac87e4fed26d3e9df88b4165f92d"}, + {file = "kiwisolver-1.4.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:4d05d81ecb47d11e7f8932bd8b61b720bf0b41199358f3f5e36d38e28f0532c5"}, + {file = "kiwisolver-1.4.7-cp38-cp38-win32.whl", hash = "sha256:b38ac83d5f04b15e515fd86f312479d950d05ce2368d5413d46c088dda7de90a"}, + {file = "kiwisolver-1.4.7-cp38-cp38-win_amd64.whl", hash = "sha256:d83db7cde68459fc803052a55ace60bea2bae361fc3b7a6d5da07e11954e4b09"}, + {file = "kiwisolver-1.4.7-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:3f9362ecfca44c863569d3d3c033dbe8ba452ff8eed6f6b5806382741a1334bd"}, + {file = "kiwisolver-1.4.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e8df2eb9b2bac43ef8b082e06f750350fbbaf2887534a5be97f6cf07b19d9583"}, + {file = "kiwisolver-1.4.7-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f32d6edbc638cde7652bd690c3e728b25332acbadd7cad670cc4a02558d9c417"}, + {file = "kiwisolver-1.4.7-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:e2e6c39bd7b9372b0be21456caab138e8e69cc0fc1190a9dfa92bd45a1e6e904"}, + {file = "kiwisolver-1.4.7-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:dda56c24d869b1193fcc763f1284b9126550eaf84b88bbc7256e15028f19188a"}, + {file = "kiwisolver-1.4.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:79849239c39b5e1fd906556c474d9b0439ea6792b637511f3fe3a41158d89ca8"}, + {file = "kiwisolver-1.4.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5e3bc157fed2a4c02ec468de4ecd12a6e22818d4f09cde2c31ee3226ffbefab2"}, + {file = "kiwisolver-1.4.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3da53da805b71e41053dc670f9a820d1157aae77b6b944e08024d17bcd51ef88"}, + {file = "kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8705f17dfeb43139a692298cb6637ee2e59c0194538153e83e9ee0c75c2eddde"}, + {file = "kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:82a5c2f4b87c26bb1a0ef3d16b5c4753434633b83d365cc0ddf2770c93829e3c"}, + {file = "kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ce8be0466f4c0d585cdb6c1e2ed07232221df101a4c6f28821d2aa754ca2d9e2"}, + {file = "kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:409afdfe1e2e90e6ee7fc896f3df9a7fec8e793e58bfa0d052c8a82f99c37abb"}, + {file = "kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5b9c3f4ee0b9a439d2415012bd1b1cc2df59e4d6a9939f4d669241d30b414327"}, + {file = "kiwisolver-1.4.7-cp39-cp39-win32.whl", hash = "sha256:a79ae34384df2b615eefca647a2873842ac3b596418032bef9a7283675962644"}, + {file = "kiwisolver-1.4.7-cp39-cp39-win_amd64.whl", hash = "sha256:cf0438b42121a66a3a667de17e779330fc0f20b0d97d59d2f2121e182b0505e4"}, + {file = "kiwisolver-1.4.7-cp39-cp39-win_arm64.whl", hash = "sha256:764202cc7e70f767dab49e8df52c7455e8de0df5d858fa801a11aa0d882ccf3f"}, + {file = "kiwisolver-1.4.7-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:94252291e3fe68001b1dd747b4c0b3be12582839b95ad4d1b641924d68fd4643"}, + {file = "kiwisolver-1.4.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:5b7dfa3b546da08a9f622bb6becdb14b3e24aaa30adba66749d38f3cc7ea9706"}, + {file = "kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bd3de6481f4ed8b734da5df134cd5a6a64fe32124fe83dde1e5b5f29fe30b1e6"}, + {file = "kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a91b5f9f1205845d488c928e8570dcb62b893372f63b8b6e98b863ebd2368ff2"}, + {file = "kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40fa14dbd66b8b8f470d5fc79c089a66185619d31645f9b0773b88b19f7223c4"}, + {file = "kiwisolver-1.4.7-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:eb542fe7933aa09d8d8f9d9097ef37532a7df6497819d16efe4359890a2f417a"}, + {file = "kiwisolver-1.4.7-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:bfa1acfa0c54932d5607e19a2c24646fb4c1ae2694437789129cf099789a3b00"}, + {file = "kiwisolver-1.4.7-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:eee3ea935c3d227d49b4eb85660ff631556841f6e567f0f7bda972df6c2c9935"}, + {file = "kiwisolver-1.4.7-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f3160309af4396e0ed04db259c3ccbfdc3621b5559b5453075e5de555e1f3a1b"}, + {file = "kiwisolver-1.4.7-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:a17f6a29cf8935e587cc8a4dbfc8368c55edc645283db0ce9801016f83526c2d"}, + {file = "kiwisolver-1.4.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:10849fb2c1ecbfae45a693c070e0320a91b35dd4bcf58172c023b994283a124d"}, + {file = "kiwisolver-1.4.7-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:ac542bf38a8a4be2dc6b15248d36315ccc65f0743f7b1a76688ffb6b5129a5c2"}, + {file = "kiwisolver-1.4.7-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:8b01aac285f91ca889c800042c35ad3b239e704b150cfd3382adfc9dcc780e39"}, + {file = "kiwisolver-1.4.7-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:48be928f59a1f5c8207154f935334d374e79f2b5d212826307d072595ad76a2e"}, + {file = "kiwisolver-1.4.7-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f37cfe618a117e50d8c240555331160d73d0411422b59b5ee217843d7b693608"}, + {file = "kiwisolver-1.4.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:599b5c873c63a1f6ed7eead644a8a380cfbdf5db91dcb6f85707aaab213b1674"}, + {file = "kiwisolver-1.4.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:801fa7802e5cfabe3ab0c81a34c323a319b097dfb5004be950482d882f3d7225"}, + {file = "kiwisolver-1.4.7-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:0c6c43471bc764fad4bc99c5c2d6d16a676b1abf844ca7c8702bdae92df01ee0"}, + {file = "kiwisolver-1.4.7.tar.gz", hash = "sha256:9893ff81bd7107f7b685d3017cc6583daadb4fc26e4a888350df530e41980a60"}, ] [[package]] name = "lazy-object-proxy" -version = "1.7.1" +version = "1.10.0" description = "A fast and thorough lazy object proxy." -category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "lazy-object-proxy-1.7.1.tar.gz", hash = "sha256:d609c75b986def706743cdebe5e47553f4a5a1da9c5ff66d76013ef396b5a8a4"}, - {file = "lazy_object_proxy-1.7.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bb8c5fd1684d60a9902c60ebe276da1f2281a318ca16c1d0a96db28f62e9166b"}, - {file = "lazy_object_proxy-1.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a57d51ed2997e97f3b8e3500c984db50a554bb5db56c50b5dab1b41339b37e36"}, - {file = "lazy_object_proxy-1.7.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd45683c3caddf83abbb1249b653a266e7069a09f486daa8863fb0e7496a9fdb"}, - {file = "lazy_object_proxy-1.7.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:8561da8b3dd22d696244d6d0d5330618c993a215070f473b699e00cf1f3f6443"}, - {file = "lazy_object_proxy-1.7.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fccdf7c2c5821a8cbd0a9440a456f5050492f2270bd54e94360cac663398739b"}, - {file = "lazy_object_proxy-1.7.1-cp310-cp310-win32.whl", hash = "sha256:898322f8d078f2654d275124a8dd19b079080ae977033b713f677afcfc88e2b9"}, - {file = "lazy_object_proxy-1.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:85b232e791f2229a4f55840ed54706110c80c0a210d076eee093f2b2e33e1bfd"}, - {file = "lazy_object_proxy-1.7.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:46ff647e76f106bb444b4533bb4153c7370cdf52efc62ccfc1a28bdb3cc95442"}, - {file = "lazy_object_proxy-1.7.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:12f3bb77efe1367b2515f8cb4790a11cffae889148ad33adad07b9b55e0ab22c"}, - {file = "lazy_object_proxy-1.7.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c19814163728941bb871240d45c4c30d33b8a2e85972c44d4e63dd7107faba44"}, - {file = "lazy_object_proxy-1.7.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:e40f2013d96d30217a51eeb1db28c9ac41e9d0ee915ef9d00da639c5b63f01a1"}, - {file = "lazy_object_proxy-1.7.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:2052837718516a94940867e16b1bb10edb069ab475c3ad84fd1e1a6dd2c0fcfc"}, - {file = "lazy_object_proxy-1.7.1-cp36-cp36m-win32.whl", hash = "sha256:6a24357267aa976abab660b1d47a34aaf07259a0c3859a34e536f1ee6e76b5bb"}, - {file = "lazy_object_proxy-1.7.1-cp36-cp36m-win_amd64.whl", hash = "sha256:6aff3fe5de0831867092e017cf67e2750c6a1c7d88d84d2481bd84a2e019ec35"}, - {file = "lazy_object_proxy-1.7.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:6a6e94c7b02641d1311228a102607ecd576f70734dc3d5e22610111aeacba8a0"}, - {file = "lazy_object_proxy-1.7.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4ce15276a1a14549d7e81c243b887293904ad2d94ad767f42df91e75fd7b5b6"}, - {file = "lazy_object_proxy-1.7.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e368b7f7eac182a59ff1f81d5f3802161932a41dc1b1cc45c1f757dc876b5d2c"}, - {file = "lazy_object_proxy-1.7.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:6ecbb350991d6434e1388bee761ece3260e5228952b1f0c46ffc800eb313ff42"}, - {file = "lazy_object_proxy-1.7.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:553b0f0d8dbf21890dd66edd771f9b1b5f51bd912fa5f26de4449bfc5af5e029"}, - {file = "lazy_object_proxy-1.7.1-cp37-cp37m-win32.whl", hash = "sha256:c7a683c37a8a24f6428c28c561c80d5f4fd316ddcf0c7cab999b15ab3f5c5c69"}, - {file = "lazy_object_proxy-1.7.1-cp37-cp37m-win_amd64.whl", hash = "sha256:df2631f9d67259dc9620d831384ed7732a198eb434eadf69aea95ad18c587a28"}, - {file = "lazy_object_proxy-1.7.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:07fa44286cda977bd4803b656ffc1c9b7e3bc7dff7d34263446aec8f8c96f88a"}, - {file = "lazy_object_proxy-1.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4dca6244e4121c74cc20542c2ca39e5c4a5027c81d112bfb893cf0790f96f57e"}, - {file = "lazy_object_proxy-1.7.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:91ba172fc5b03978764d1df5144b4ba4ab13290d7bab7a50f12d8117f8630c38"}, - {file = "lazy_object_proxy-1.7.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:043651b6cb706eee4f91854da4a089816a6606c1428fd391573ef8cb642ae4f7"}, - {file = "lazy_object_proxy-1.7.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b9e89b87c707dd769c4ea91f7a31538888aad05c116a59820f28d59b3ebfe25a"}, - {file = "lazy_object_proxy-1.7.1-cp38-cp38-win32.whl", hash = "sha256:9d166602b525bf54ac994cf833c385bfcc341b364e3ee71e3bf5a1336e677b55"}, - {file = "lazy_object_proxy-1.7.1-cp38-cp38-win_amd64.whl", hash = "sha256:8f3953eb575b45480db6568306893f0bd9d8dfeeebd46812aa09ca9579595148"}, - {file = "lazy_object_proxy-1.7.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:dd7ed7429dbb6c494aa9bc4e09d94b778a3579be699f9d67da7e6804c422d3de"}, - {file = "lazy_object_proxy-1.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:70ed0c2b380eb6248abdef3cd425fc52f0abd92d2b07ce26359fcbc399f636ad"}, - {file = "lazy_object_proxy-1.7.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7096a5e0c1115ec82641afbdd70451a144558ea5cf564a896294e346eb611be1"}, - {file = "lazy_object_proxy-1.7.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f769457a639403073968d118bc70110e7dce294688009f5c24ab78800ae56dc8"}, - {file = "lazy_object_proxy-1.7.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:39b0e26725c5023757fc1ab2a89ef9d7ab23b84f9251e28f9cc114d5b59c1b09"}, - {file = "lazy_object_proxy-1.7.1-cp39-cp39-win32.whl", hash = "sha256:2130db8ed69a48a3440103d4a520b89d8a9405f1b06e2cc81640509e8bf6548f"}, - {file = "lazy_object_proxy-1.7.1-cp39-cp39-win_amd64.whl", hash = "sha256:677ea950bef409b47e51e733283544ac3d660b709cfce7b187f5ace137960d61"}, - {file = "lazy_object_proxy-1.7.1-pp37.pp38-none-any.whl", hash = "sha256:d66906d5785da8e0be7360912e99c9188b70f52c422f9fc18223347235691a84"}, + {file = "lazy-object-proxy-1.10.0.tar.gz", hash = "sha256:78247b6d45f43a52ef35c25b5581459e85117225408a4128a3daf8bf9648ac69"}, + {file = "lazy_object_proxy-1.10.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:855e068b0358ab916454464a884779c7ffa312b8925c6f7401e952dcf3b89977"}, + {file = "lazy_object_proxy-1.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ab7004cf2e59f7c2e4345604a3e6ea0d92ac44e1c2375527d56492014e690c3"}, + {file = "lazy_object_proxy-1.10.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dc0d2fc424e54c70c4bc06787e4072c4f3b1aa2f897dfdc34ce1013cf3ceef05"}, + {file = "lazy_object_proxy-1.10.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e2adb09778797da09d2b5ebdbceebf7dd32e2c96f79da9052b2e87b6ea495895"}, + {file = "lazy_object_proxy-1.10.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b1f711e2c6dcd4edd372cf5dec5c5a30d23bba06ee012093267b3376c079ec83"}, + {file = "lazy_object_proxy-1.10.0-cp310-cp310-win32.whl", hash = "sha256:76a095cfe6045c7d0ca77db9934e8f7b71b14645f0094ffcd842349ada5c5fb9"}, + {file = "lazy_object_proxy-1.10.0-cp310-cp310-win_amd64.whl", hash = "sha256:b4f87d4ed9064b2628da63830986c3d2dca7501e6018347798313fcf028e2fd4"}, + {file = "lazy_object_proxy-1.10.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fec03caabbc6b59ea4a638bee5fce7117be8e99a4103d9d5ad77f15d6f81020c"}, + {file = "lazy_object_proxy-1.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:02c83f957782cbbe8136bee26416686a6ae998c7b6191711a04da776dc9e47d4"}, + {file = "lazy_object_proxy-1.10.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:009e6bb1f1935a62889ddc8541514b6a9e1fcf302667dcb049a0be5c8f613e56"}, + {file = "lazy_object_proxy-1.10.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:75fc59fc450050b1b3c203c35020bc41bd2695ed692a392924c6ce180c6f1dc9"}, + {file = "lazy_object_proxy-1.10.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:782e2c9b2aab1708ffb07d4bf377d12901d7a1d99e5e410d648d892f8967ab1f"}, + {file = "lazy_object_proxy-1.10.0-cp311-cp311-win32.whl", hash = "sha256:edb45bb8278574710e68a6b021599a10ce730d156e5b254941754a9cc0b17d03"}, + {file = "lazy_object_proxy-1.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:e271058822765ad5e3bca7f05f2ace0de58a3f4e62045a8c90a0dfd2f8ad8cc6"}, + {file = "lazy_object_proxy-1.10.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:e98c8af98d5707dcdecc9ab0863c0ea6e88545d42ca7c3feffb6b4d1e370c7ba"}, + {file = "lazy_object_proxy-1.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:952c81d415b9b80ea261d2372d2a4a2332a3890c2b83e0535f263ddfe43f0d43"}, + {file = "lazy_object_proxy-1.10.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80b39d3a151309efc8cc48675918891b865bdf742a8616a337cb0090791a0de9"}, + {file = "lazy_object_proxy-1.10.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:e221060b701e2aa2ea991542900dd13907a5c90fa80e199dbf5a03359019e7a3"}, + {file = "lazy_object_proxy-1.10.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:92f09ff65ecff3108e56526f9e2481b8116c0b9e1425325e13245abfd79bdb1b"}, + {file = "lazy_object_proxy-1.10.0-cp312-cp312-win32.whl", hash = "sha256:3ad54b9ddbe20ae9f7c1b29e52f123120772b06dbb18ec6be9101369d63a4074"}, + {file = "lazy_object_proxy-1.10.0-cp312-cp312-win_amd64.whl", hash = "sha256:127a789c75151db6af398b8972178afe6bda7d6f68730c057fbbc2e96b08d282"}, + {file = "lazy_object_proxy-1.10.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9e4ed0518a14dd26092614412936920ad081a424bdcb54cc13349a8e2c6d106a"}, + {file = "lazy_object_proxy-1.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5ad9e6ed739285919aa9661a5bbed0aaf410aa60231373c5579c6b4801bd883c"}, + {file = "lazy_object_proxy-1.10.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2fc0a92c02fa1ca1e84fc60fa258458e5bf89d90a1ddaeb8ed9cc3147f417255"}, + {file = "lazy_object_proxy-1.10.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:0aefc7591920bbd360d57ea03c995cebc204b424524a5bd78406f6e1b8b2a5d8"}, + {file = "lazy_object_proxy-1.10.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:5faf03a7d8942bb4476e3b62fd0f4cf94eaf4618e304a19865abf89a35c0bbee"}, + {file = "lazy_object_proxy-1.10.0-cp38-cp38-win32.whl", hash = "sha256:e333e2324307a7b5d86adfa835bb500ee70bfcd1447384a822e96495796b0ca4"}, + {file = "lazy_object_proxy-1.10.0-cp38-cp38-win_amd64.whl", hash = "sha256:cb73507defd385b7705c599a94474b1d5222a508e502553ef94114a143ec6696"}, + {file = "lazy_object_proxy-1.10.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:366c32fe5355ef5fc8a232c5436f4cc66e9d3e8967c01fb2e6302fd6627e3d94"}, + {file = "lazy_object_proxy-1.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2297f08f08a2bb0d32a4265e98a006643cd7233fb7983032bd61ac7a02956b3b"}, + {file = "lazy_object_proxy-1.10.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18dd842b49456aaa9a7cf535b04ca4571a302ff72ed8740d06b5adcd41fe0757"}, + {file = "lazy_object_proxy-1.10.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:217138197c170a2a74ca0e05bddcd5f1796c735c37d0eee33e43259b192aa424"}, + {file = "lazy_object_proxy-1.10.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:9a3a87cf1e133e5b1994144c12ca4aa3d9698517fe1e2ca82977781b16955658"}, + {file = "lazy_object_proxy-1.10.0-cp39-cp39-win32.whl", hash = "sha256:30b339b2a743c5288405aa79a69e706a06e02958eab31859f7f3c04980853b70"}, + {file = "lazy_object_proxy-1.10.0-cp39-cp39-win_amd64.whl", hash = "sha256:a899b10e17743683b293a729d3a11f2f399e8a90c73b089e29f5d0fe3509f0dd"}, + {file = "lazy_object_proxy-1.10.0-pp310.pp311.pp312.pp38.pp39-none-any.whl", hash = "sha256:80fa48bd89c8f2f456fc0765c11c23bf5af827febacd2f523ca5bc1893fcc09d"}, ] [[package]] name = "liccheck" version = "0.6.5" description = "Check python packages from requirement.txt and report issues" -category = "dev" optional = false python-versions = ">=2.7" files = [ @@ -1498,190 +2178,274 @@ toml = "*" [[package]] name = "lxml" -version = "4.9.1" +version = "5.3.0" description = "Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API." -category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, != 3.4.*" +python-versions = ">=3.6" files = [ - {file = "lxml-4.9.1-cp27-cp27m-macosx_10_15_x86_64.whl", hash = "sha256:98cafc618614d72b02185ac583c6f7796202062c41d2eeecdf07820bad3295ed"}, - {file = "lxml-4.9.1-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c62e8dd9754b7debda0c5ba59d34509c4688f853588d75b53c3791983faa96fc"}, - {file = "lxml-4.9.1-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:21fb3d24ab430fc538a96e9fbb9b150029914805d551deeac7d7822f64631dfc"}, - {file = "lxml-4.9.1-cp27-cp27m-win32.whl", hash = "sha256:86e92728ef3fc842c50a5cb1d5ba2bc66db7da08a7af53fb3da79e202d1b2cd3"}, - {file = "lxml-4.9.1-cp27-cp27m-win_amd64.whl", hash = "sha256:4cfbe42c686f33944e12f45a27d25a492cc0e43e1dc1da5d6a87cbcaf2e95627"}, - {file = "lxml-4.9.1-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:dad7b164905d3e534883281c050180afcf1e230c3d4a54e8038aa5cfcf312b84"}, - {file = "lxml-4.9.1-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:a614e4afed58c14254e67862456d212c4dcceebab2eaa44d627c2ca04bf86837"}, - {file = "lxml-4.9.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:f9ced82717c7ec65a67667bb05865ffe38af0e835cdd78728f1209c8fffe0cad"}, - {file = "lxml-4.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:d9fc0bf3ff86c17348dfc5d322f627d78273eba545db865c3cd14b3f19e57fa5"}, - {file = "lxml-4.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:e5f66bdf0976ec667fc4594d2812a00b07ed14d1b44259d19a41ae3fff99f2b8"}, - {file = "lxml-4.9.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:fe17d10b97fdf58155f858606bddb4e037b805a60ae023c009f760d8361a4eb8"}, - {file = "lxml-4.9.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8caf4d16b31961e964c62194ea3e26a0e9561cdf72eecb1781458b67ec83423d"}, - {file = "lxml-4.9.1-cp310-cp310-win32.whl", hash = "sha256:4780677767dd52b99f0af1f123bc2c22873d30b474aa0e2fc3fe5e02217687c7"}, - {file = "lxml-4.9.1-cp310-cp310-win_amd64.whl", hash = "sha256:b122a188cd292c4d2fcd78d04f863b789ef43aa129b233d7c9004de08693728b"}, - {file = "lxml-4.9.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:be9eb06489bc975c38706902cbc6888f39e946b81383abc2838d186f0e8b6a9d"}, - {file = "lxml-4.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:f1be258c4d3dc609e654a1dc59d37b17d7fef05df912c01fc2e15eb43a9735f3"}, - {file = "lxml-4.9.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:927a9dd016d6033bc12e0bf5dee1dde140235fc8d0d51099353c76081c03dc29"}, - {file = "lxml-4.9.1-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9232b09f5efee6a495a99ae6824881940d6447debe272ea400c02e3b68aad85d"}, - {file = "lxml-4.9.1-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:04da965dfebb5dac2619cb90fcf93efdb35b3c6994fea58a157a834f2f94b318"}, - {file = "lxml-4.9.1-cp35-cp35m-win32.whl", hash = "sha256:4d5bae0a37af799207140652a700f21a85946f107a199bcb06720b13a4f1f0b7"}, - {file = "lxml-4.9.1-cp35-cp35m-win_amd64.whl", hash = "sha256:4878e667ebabe9b65e785ac8da4d48886fe81193a84bbe49f12acff8f7a383a4"}, - {file = "lxml-4.9.1-cp36-cp36m-macosx_10_15_x86_64.whl", hash = "sha256:1355755b62c28950f9ce123c7a41460ed9743c699905cbe664a5bcc5c9c7c7fb"}, - {file = "lxml-4.9.1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:bcaa1c495ce623966d9fc8a187da80082334236a2a1c7e141763ffaf7a405067"}, - {file = "lxml-4.9.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6eafc048ea3f1b3c136c71a86db393be36b5b3d9c87b1c25204e7d397cee9536"}, - {file = "lxml-4.9.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:13c90064b224e10c14dcdf8086688d3f0e612db53766e7478d7754703295c7c8"}, - {file = "lxml-4.9.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:206a51077773c6c5d2ce1991327cda719063a47adc02bd703c56a662cdb6c58b"}, - {file = "lxml-4.9.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:e8f0c9d65da595cfe91713bc1222af9ecabd37971762cb830dea2fc3b3bb2acf"}, - {file = "lxml-4.9.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:8f0a4d179c9a941eb80c3a63cdb495e539e064f8054230844dcf2fcb812b71d3"}, - {file = "lxml-4.9.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:830c88747dce8a3e7525defa68afd742b4580df6aa2fdd6f0855481e3994d391"}, - {file = "lxml-4.9.1-cp36-cp36m-win32.whl", hash = "sha256:1e1cf47774373777936c5aabad489fef7b1c087dcd1f426b621fda9dcc12994e"}, - {file = "lxml-4.9.1-cp36-cp36m-win_amd64.whl", hash = "sha256:5974895115737a74a00b321e339b9c3f45c20275d226398ae79ac008d908bff7"}, - {file = "lxml-4.9.1-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:1423631e3d51008871299525b541413c9b6c6423593e89f9c4cfbe8460afc0a2"}, - {file = "lxml-4.9.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:2aaf6a0a6465d39b5ca69688fce82d20088c1838534982996ec46633dc7ad6cc"}, - {file = "lxml-4.9.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:9f36de4cd0c262dd9927886cc2305aa3f2210db437aa4fed3fb4940b8bf4592c"}, - {file = "lxml-4.9.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:ae06c1e4bc60ee076292e582a7512f304abdf6c70db59b56745cca1684f875a4"}, - {file = "lxml-4.9.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:57e4d637258703d14171b54203fd6822fda218c6c2658a7d30816b10995f29f3"}, - {file = "lxml-4.9.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6d279033bf614953c3fc4a0aa9ac33a21e8044ca72d4fa8b9273fe75359d5cca"}, - {file = "lxml-4.9.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:a60f90bba4c37962cbf210f0188ecca87daafdf60271f4c6948606e4dabf8785"}, - {file = "lxml-4.9.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:6ca2264f341dd81e41f3fffecec6e446aa2121e0b8d026fb5130e02de1402785"}, - {file = "lxml-4.9.1-cp37-cp37m-win32.whl", hash = "sha256:27e590352c76156f50f538dbcebd1925317a0f70540f7dc8c97d2931c595783a"}, - {file = "lxml-4.9.1-cp37-cp37m-win_amd64.whl", hash = "sha256:eea5d6443b093e1545ad0210e6cf27f920482bfcf5c77cdc8596aec73523bb7e"}, - {file = "lxml-4.9.1-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:f05251bbc2145349b8d0b77c0d4e5f3b228418807b1ee27cefb11f69ed3d233b"}, - {file = "lxml-4.9.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:487c8e61d7acc50b8be82bda8c8d21d20e133c3cbf41bd8ad7eb1aaeb3f07c97"}, - {file = "lxml-4.9.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:8d1a92d8e90b286d491e5626af53afef2ba04da33e82e30744795c71880eaa21"}, - {file = "lxml-4.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:b570da8cd0012f4af9fa76a5635cd31f707473e65a5a335b186069d5c7121ff2"}, - {file = "lxml-4.9.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5ef87fca280fb15342726bd5f980f6faf8b84a5287fcc2d4962ea8af88b35130"}, - {file = "lxml-4.9.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:93e414e3206779ef41e5ff2448067213febf260ba747fc65389a3ddaa3fb8715"}, - {file = "lxml-4.9.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6653071f4f9bac46fbc30f3c7838b0e9063ee335908c5d61fb7a4a86c8fd2036"}, - {file = "lxml-4.9.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:32a73c53783becdb7eaf75a2a1525ea8e49379fb7248c3eeefb9412123536387"}, - {file = "lxml-4.9.1-cp38-cp38-win32.whl", hash = "sha256:1a7c59c6ffd6ef5db362b798f350e24ab2cfa5700d53ac6681918f314a4d3b94"}, - {file = "lxml-4.9.1-cp38-cp38-win_amd64.whl", hash = "sha256:1436cf0063bba7888e43f1ba8d58824f085410ea2025befe81150aceb123e345"}, - {file = "lxml-4.9.1-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:4beea0f31491bc086991b97517b9683e5cfb369205dac0148ef685ac12a20a67"}, - {file = "lxml-4.9.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:41fb58868b816c202e8881fd0f179a4644ce6e7cbbb248ef0283a34b73ec73bb"}, - {file = "lxml-4.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:bd34f6d1810d9354dc7e35158aa6cc33456be7706df4420819af6ed966e85448"}, - {file = "lxml-4.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:edffbe3c510d8f4bf8640e02ca019e48a9b72357318383ca60e3330c23aaffc7"}, - {file = "lxml-4.9.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6d949f53ad4fc7cf02c44d6678e7ff05ec5f5552b235b9e136bd52e9bf730b91"}, - {file = "lxml-4.9.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:079b68f197c796e42aa80b1f739f058dcee796dc725cc9a1be0cdb08fc45b000"}, - {file = "lxml-4.9.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9c3a88d20e4fe4a2a4a84bf439a5ac9c9aba400b85244c63a1ab7088f85d9d25"}, - {file = "lxml-4.9.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:4e285b5f2bf321fc0857b491b5028c5f276ec0c873b985d58d7748ece1d770dd"}, - {file = "lxml-4.9.1-cp39-cp39-win32.whl", hash = "sha256:ef72013e20dd5ba86a8ae1aed7f56f31d3374189aa8b433e7b12ad182c0d2dfb"}, - {file = "lxml-4.9.1-cp39-cp39-win_amd64.whl", hash = "sha256:10d2017f9150248563bb579cd0d07c61c58da85c922b780060dcc9a3aa9f432d"}, - {file = "lxml-4.9.1-pp37-pypy37_pp73-macosx_10_15_x86_64.whl", hash = "sha256:0538747a9d7827ce3e16a8fdd201a99e661c7dee3c96c885d8ecba3c35d1032c"}, - {file = "lxml-4.9.1-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:0645e934e940107e2fdbe7c5b6fb8ec6232444260752598bc4d09511bd056c0b"}, - {file = "lxml-4.9.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:6daa662aba22ef3258934105be2dd9afa5bb45748f4f702a3b39a5bf53a1f4dc"}, - {file = "lxml-4.9.1-pp38-pypy38_pp73-macosx_10_15_x86_64.whl", hash = "sha256:603a464c2e67d8a546ddaa206d98e3246e5db05594b97db844c2f0a1af37cf5b"}, - {file = "lxml-4.9.1-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:c4b2e0559b68455c085fb0f6178e9752c4be3bba104d6e881eb5573b399d1eb2"}, - {file = "lxml-4.9.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:0f3f0059891d3254c7b5fb935330d6db38d6519ecd238ca4fce93c234b4a0f73"}, - {file = "lxml-4.9.1-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:c852b1530083a620cb0de5f3cd6826f19862bafeaf77586f1aef326e49d95f0c"}, - {file = "lxml-4.9.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:287605bede6bd36e930577c5925fcea17cb30453d96a7b4c63c14a257118dbb9"}, - {file = "lxml-4.9.1.tar.gz", hash = "sha256:fe749b052bb7233fe5d072fcb549221a8cb1a16725c47c37e42b0b9cb3ff2c3f"}, + {file = "lxml-5.3.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:dd36439be765e2dde7660212b5275641edbc813e7b24668831a5c8ac91180656"}, + {file = "lxml-5.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ae5fe5c4b525aa82b8076c1a59d642c17b6e8739ecf852522c6321852178119d"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:501d0d7e26b4d261fca8132854d845e4988097611ba2531408ec91cf3fd9d20a"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb66442c2546446944437df74379e9cf9e9db353e61301d1a0e26482f43f0dd8"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9e41506fec7a7f9405b14aa2d5c8abbb4dbbd09d88f9496958b6d00cb4d45330"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f7d4a670107d75dfe5ad080bed6c341d18c4442f9378c9f58e5851e86eb79965"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:41ce1f1e2c7755abfc7e759dc34d7d05fd221723ff822947132dc934d122fe22"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:44264ecae91b30e5633013fb66f6ddd05c006d3e0e884f75ce0b4755b3e3847b"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_28_ppc64le.whl", hash = "sha256:3c174dc350d3ec52deb77f2faf05c439331d6ed5e702fc247ccb4e6b62d884b7"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_28_s390x.whl", hash = "sha256:2dfab5fa6a28a0b60a20638dc48e6343c02ea9933e3279ccb132f555a62323d8"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:b1c8c20847b9f34e98080da785bb2336ea982e7f913eed5809e5a3c872900f32"}, + {file = "lxml-5.3.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:2c86bf781b12ba417f64f3422cfc302523ac9cd1d8ae8c0f92a1c66e56ef2e86"}, + {file = "lxml-5.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:c162b216070f280fa7da844531169be0baf9ccb17263cf5a8bf876fcd3117fa5"}, + {file = "lxml-5.3.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:36aef61a1678cb778097b4a6eeae96a69875d51d1e8f4d4b491ab3cfb54b5a03"}, + {file = "lxml-5.3.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f65e5120863c2b266dbcc927b306c5b78e502c71edf3295dfcb9501ec96e5fc7"}, + {file = "lxml-5.3.0-cp310-cp310-win32.whl", hash = "sha256:ef0c1fe22171dd7c7c27147f2e9c3e86f8bdf473fed75f16b0c2e84a5030ce80"}, + {file = "lxml-5.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:052d99051e77a4f3e8482c65014cf6372e61b0a6f4fe9edb98503bb5364cfee3"}, + {file = "lxml-5.3.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:74bcb423462233bc5d6066e4e98b0264e7c1bed7541fff2f4e34fe6b21563c8b"}, + {file = "lxml-5.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a3d819eb6f9b8677f57f9664265d0a10dd6551d227afb4af2b9cd7bdc2ccbf18"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5b8f5db71b28b8c404956ddf79575ea77aa8b1538e8b2ef9ec877945b3f46442"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c3406b63232fc7e9b8783ab0b765d7c59e7c59ff96759d8ef9632fca27c7ee4"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2ecdd78ab768f844c7a1d4a03595038c166b609f6395e25af9b0f3f26ae1230f"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:168f2dfcfdedf611eb285efac1516c8454c8c99caf271dccda8943576b67552e"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa617107a410245b8660028a7483b68e7914304a6d4882b5ff3d2d3eb5948d8c"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:69959bd3167b993e6e710b99051265654133a98f20cec1d9b493b931942e9c16"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_28_ppc64le.whl", hash = "sha256:bd96517ef76c8654446fc3db9242d019a1bb5fe8b751ba414765d59f99210b79"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_28_s390x.whl", hash = "sha256:ab6dd83b970dc97c2d10bc71aa925b84788c7c05de30241b9e96f9b6d9ea3080"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:eec1bb8cdbba2925bedc887bc0609a80e599c75b12d87ae42ac23fd199445654"}, + {file = "lxml-5.3.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6a7095eeec6f89111d03dabfe5883a1fd54da319c94e0fb104ee8f23616b572d"}, + {file = "lxml-5.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:6f651ebd0b21ec65dfca93aa629610a0dbc13dbc13554f19b0113da2e61a4763"}, + {file = "lxml-5.3.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:f422a209d2455c56849442ae42f25dbaaba1c6c3f501d58761c619c7836642ec"}, + {file = "lxml-5.3.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:62f7fdb0d1ed2065451f086519865b4c90aa19aed51081979ecd05a21eb4d1be"}, + {file = "lxml-5.3.0-cp311-cp311-win32.whl", hash = "sha256:c6379f35350b655fd817cd0d6cbeef7f265f3ae5fedb1caae2eb442bbeae9ab9"}, + {file = "lxml-5.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:9c52100e2c2dbb0649b90467935c4b0de5528833c76a35ea1a2691ec9f1ee7a1"}, + {file = "lxml-5.3.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:e99f5507401436fdcc85036a2e7dc2e28d962550afe1cbfc07c40e454256a859"}, + {file = "lxml-5.3.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:384aacddf2e5813a36495233b64cb96b1949da72bef933918ba5c84e06af8f0e"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:874a216bf6afaf97c263b56371434e47e2c652d215788396f60477540298218f"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:65ab5685d56914b9a2a34d67dd5488b83213d680b0c5d10b47f81da5a16b0b0e"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aac0bbd3e8dd2d9c45ceb82249e8bdd3ac99131a32b4d35c8af3cc9db1657179"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b369d3db3c22ed14c75ccd5af429086f166a19627e84a8fdade3f8f31426e52a"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c24037349665434f375645fa9d1f5304800cec574d0310f618490c871fd902b3"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:62d172f358f33a26d6b41b28c170c63886742f5b6772a42b59b4f0fa10526cb1"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_28_ppc64le.whl", hash = "sha256:c1f794c02903c2824fccce5b20c339a1a14b114e83b306ff11b597c5f71a1c8d"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_28_s390x.whl", hash = "sha256:5d6a6972b93c426ace71e0be9a6f4b2cfae9b1baed2eed2006076a746692288c"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:3879cc6ce938ff4eb4900d901ed63555c778731a96365e53fadb36437a131a99"}, + {file = "lxml-5.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:74068c601baff6ff021c70f0935b0c7bc528baa8ea210c202e03757c68c5a4ff"}, + {file = "lxml-5.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:ecd4ad8453ac17bc7ba3868371bffb46f628161ad0eefbd0a855d2c8c32dd81a"}, + {file = "lxml-5.3.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:7e2f58095acc211eb9d8b5771bf04df9ff37d6b87618d1cbf85f92399c98dae8"}, + {file = "lxml-5.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e63601ad5cd8f860aa99d109889b5ac34de571c7ee902d6812d5d9ddcc77fa7d"}, + {file = "lxml-5.3.0-cp312-cp312-win32.whl", hash = "sha256:17e8d968d04a37c50ad9c456a286b525d78c4a1c15dd53aa46c1d8e06bf6fa30"}, + {file = "lxml-5.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:c1a69e58a6bb2de65902051d57fde951febad631a20a64572677a1052690482f"}, + {file = "lxml-5.3.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8c72e9563347c7395910de6a3100a4840a75a6f60e05af5e58566868d5eb2d6a"}, + {file = "lxml-5.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e92ce66cd919d18d14b3856906a61d3f6b6a8500e0794142338da644260595cd"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d04f064bebdfef9240478f7a779e8c5dc32b8b7b0b2fc6a62e39b928d428e51"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c2fb570d7823c2bbaf8b419ba6e5662137f8166e364a8b2b91051a1fb40ab8b"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0c120f43553ec759f8de1fee2f4794452b0946773299d44c36bfe18e83caf002"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:562e7494778a69086f0312ec9689f6b6ac1c6b65670ed7d0267e49f57ffa08c4"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:423b121f7e6fa514ba0c7918e56955a1d4470ed35faa03e3d9f0e3baa4c7e492"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:c00f323cc00576df6165cc9d21a4c21285fa6b9989c5c39830c3903dc4303ef3"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_28_ppc64le.whl", hash = "sha256:1fdc9fae8dd4c763e8a31e7630afef517eab9f5d5d31a278df087f307bf601f4"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_28_s390x.whl", hash = "sha256:658f2aa69d31e09699705949b5fc4719cbecbd4a97f9656a232e7d6c7be1a367"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:1473427aff3d66a3fa2199004c3e601e6c4500ab86696edffdbc84954c72d832"}, + {file = "lxml-5.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a87de7dd873bf9a792bf1e58b1c3887b9264036629a5bf2d2e6579fe8e73edff"}, + {file = "lxml-5.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:0d7b36afa46c97875303a94e8f3ad932bf78bace9e18e603f2085b652422edcd"}, + {file = "lxml-5.3.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:cf120cce539453ae086eacc0130a324e7026113510efa83ab42ef3fcfccac7fb"}, + {file = "lxml-5.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:df5c7333167b9674aa8ae1d4008fa4bc17a313cc490b2cca27838bbdcc6bb15b"}, + {file = "lxml-5.3.0-cp313-cp313-win32.whl", hash = "sha256:c802e1c2ed9f0c06a65bc4ed0189d000ada8049312cfeab6ca635e39c9608957"}, + {file = "lxml-5.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:406246b96d552e0503e17a1006fd27edac678b3fcc9f1be71a2f94b4ff61528d"}, + {file = "lxml-5.3.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:8f0de2d390af441fe8b2c12626d103540b5d850d585b18fcada58d972b74a74e"}, + {file = "lxml-5.3.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1afe0a8c353746e610bd9031a630a95bcfb1a720684c3f2b36c4710a0a96528f"}, + {file = "lxml-5.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:56b9861a71575f5795bde89256e7467ece3d339c9b43141dbdd54544566b3b94"}, + {file = "lxml-5.3.0-cp36-cp36m-manylinux_2_28_x86_64.whl", hash = "sha256:9fb81d2824dff4f2e297a276297e9031f46d2682cafc484f49de182aa5e5df99"}, + {file = "lxml-5.3.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:2c226a06ecb8cdef28845ae976da407917542c5e6e75dcac7cc33eb04aaeb237"}, + {file = "lxml-5.3.0-cp36-cp36m-musllinux_1_2_x86_64.whl", hash = "sha256:7d3d1ca42870cdb6d0d29939630dbe48fa511c203724820fc0fd507b2fb46577"}, + {file = "lxml-5.3.0-cp36-cp36m-win32.whl", hash = "sha256:094cb601ba9f55296774c2d57ad68730daa0b13dc260e1f941b4d13678239e70"}, + {file = "lxml-5.3.0-cp36-cp36m-win_amd64.whl", hash = "sha256:eafa2c8658f4e560b098fe9fc54539f86528651f61849b22111a9b107d18910c"}, + {file = "lxml-5.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:cb83f8a875b3d9b458cada4f880fa498646874ba4011dc974e071a0a84a1b033"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:25f1b69d41656b05885aa185f5fdf822cb01a586d1b32739633679699f220391"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23e0553b8055600b3bf4a00b255ec5c92e1e4aebf8c2c09334f8368e8bd174d6"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ada35dd21dc6c039259596b358caab6b13f4db4d4a7f8665764d616daf9cc1d"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:81b4e48da4c69313192d8c8d4311e5d818b8be1afe68ee20f6385d0e96fc9512"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:2bc9fd5ca4729af796f9f59cd8ff160fe06a474da40aca03fcc79655ddee1a8b"}, + {file = "lxml-5.3.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:07da23d7ee08577760f0a71d67a861019103e4812c87e2fab26b039054594cc5"}, + {file = "lxml-5.3.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:ea2e2f6f801696ad7de8aec061044d6c8c0dd4037608c7cab38a9a4d316bfb11"}, + {file = "lxml-5.3.0-cp37-cp37m-win32.whl", hash = "sha256:5c54afdcbb0182d06836cc3d1be921e540be3ebdf8b8a51ee3ef987537455f84"}, + {file = "lxml-5.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:f2901429da1e645ce548bf9171784c0f74f0718c3f6150ce166be39e4dd66c3e"}, + {file = "lxml-5.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c56a1d43b2f9ee4786e4658c7903f05da35b923fb53c11025712562d5cc02753"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ee8c39582d2652dcd516d1b879451500f8db3fe3607ce45d7c5957ab2596040"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0fdf3a3059611f7585a78ee10399a15566356116a4288380921a4b598d807a22"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:146173654d79eb1fc97498b4280c1d3e1e5d58c398fa530905c9ea50ea849b22"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:0a7056921edbdd7560746f4221dca89bb7a3fe457d3d74267995253f46343f15"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:9e4b47ac0f5e749cfc618efdf4726269441014ae1d5583e047b452a32e221920"}, + {file = "lxml-5.3.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:f914c03e6a31deb632e2daa881fe198461f4d06e57ac3d0e05bbcab8eae01945"}, + {file = "lxml-5.3.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:213261f168c5e1d9b7535a67e68b1f59f92398dd17a56d934550837143f79c42"}, + {file = "lxml-5.3.0-cp38-cp38-win32.whl", hash = "sha256:218c1b2e17a710e363855594230f44060e2025b05c80d1f0661258142b2add2e"}, + {file = "lxml-5.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:315f9542011b2c4e1d280e4a20ddcca1761993dda3afc7a73b01235f8641e903"}, + {file = "lxml-5.3.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:1ffc23010330c2ab67fac02781df60998ca8fe759e8efde6f8b756a20599c5de"}, + {file = "lxml-5.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2b3778cb38212f52fac9fe913017deea2fdf4eb1a4f8e4cfc6b009a13a6d3fcc"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b0c7a688944891086ba192e21c5229dea54382f4836a209ff8d0a660fac06be"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:747a3d3e98e24597981ca0be0fd922aebd471fa99d0043a3842d00cdcad7ad6a"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:86a6b24b19eaebc448dc56b87c4865527855145d851f9fc3891673ff97950540"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b11a5d918a6216e521c715b02749240fb07ae5a1fefd4b7bf12f833bc8b4fe70"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68b87753c784d6acb8a25b05cb526c3406913c9d988d51f80adecc2b0775d6aa"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:109fa6fede314cc50eed29e6e56c540075e63d922455346f11e4d7a036d2b8cf"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_28_ppc64le.whl", hash = "sha256:02ced472497b8362c8e902ade23e3300479f4f43e45f4105c85ef43b8db85229"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_28_s390x.whl", hash = "sha256:6b038cc86b285e4f9fea2ba5ee76e89f21ed1ea898e287dc277a25884f3a7dfe"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:7437237c6a66b7ca341e868cda48be24b8701862757426852c9b3186de1da8a2"}, + {file = "lxml-5.3.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7f41026c1d64043a36fda21d64c5026762d53a77043e73e94b71f0521939cc71"}, + {file = "lxml-5.3.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:482c2f67761868f0108b1743098640fbb2a28a8e15bf3f47ada9fa59d9fe08c3"}, + {file = "lxml-5.3.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:1483fd3358963cc5c1c9b122c80606a3a79ee0875bcac0204149fa09d6ff2727"}, + {file = "lxml-5.3.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2dec2d1130a9cda5b904696cec33b2cfb451304ba9081eeda7f90f724097300a"}, + {file = "lxml-5.3.0-cp39-cp39-win32.whl", hash = "sha256:a0eabd0a81625049c5df745209dc7fcef6e2aea7793e5f003ba363610aa0a3ff"}, + {file = "lxml-5.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:89e043f1d9d341c52bf2af6d02e6adde62e0a46e6755d5eb60dc6e4f0b8aeca2"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7b1cd427cb0d5f7393c31b7496419da594fe600e6fdc4b105a54f82405e6626c"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:51806cfe0279e06ed8500ce19479d757db42a30fd509940b1701be9c86a5ff9a"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee70d08fd60c9565ba8190f41a46a54096afa0eeb8f76bd66f2c25d3b1b83005"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:8dc2c0395bea8254d8daebc76dcf8eb3a95ec2a46fa6fae5eaccee366bfe02ce"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:6ba0d3dcac281aad8a0e5b14c7ed6f9fa89c8612b47939fc94f80b16e2e9bc83"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:6e91cf736959057f7aac7adfc83481e03615a8e8dd5758aa1d95ea69e8931dba"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:94d6c3782907b5e40e21cadf94b13b0842ac421192f26b84c45f13f3c9d5dc27"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c300306673aa0f3ed5ed9372b21867690a17dba38c68c44b287437c362ce486b"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78d9b952e07aed35fe2e1a7ad26e929595412db48535921c5013edc8aa4a35ce"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:01220dca0d066d1349bd6a1726856a78f7929f3878f7e2ee83c296c69495309e"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:2d9b8d9177afaef80c53c0a9e30fa252ff3036fb1c6494d427c066a4ce6a282f"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:20094fc3f21ea0a8669dc4c61ed7fa8263bd37d97d93b90f28fc613371e7a875"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:ace2c2326a319a0bb8a8b0e5b570c764962e95818de9f259ce814ee666603f19"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:92e67a0be1639c251d21e35fe74df6bcc40cba445c2cda7c4a967656733249e2"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd5350b55f9fecddc51385463a4f67a5da829bc741e38cf689f38ec9023f54ab"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:4c1fefd7e3d00921c44dc9ca80a775af49698bbfd92ea84498e56acffd4c5469"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:71a8dd38fbd2f2319136d4ae855a7078c69c9a38ae06e0c17c73fd70fc6caad8"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:97acf1e1fd66ab53dacd2c35b319d7e548380c2e9e8c54525c6e76d21b1ae3b1"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:68934b242c51eb02907c5b81d138cb977b2129a0a75a8f8b60b01cb8586c7b21"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b710bc2b8292966b23a6a0121f7a6c51d45d2347edcc75f016ac123b8054d3f2"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18feb4b93302091b1541221196a2155aa296c363fd233814fa11e181adebc52f"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:3eb44520c4724c2e1a57c0af33a379eee41792595023f367ba3952a2d96c2aab"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:609251a0ca4770e5a8768ff902aa02bf636339c5a93f9349b48eb1f606f7f3e9"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:516f491c834eb320d6c843156440fe7fc0d50b33e44387fcec5b02f0bc118a4c"}, + {file = "lxml-5.3.0.tar.gz", hash = "sha256:4e109ca30d1edec1ac60cdbe341905dc3b8f55b16855e03a54aaf59e51ec8c6f"}, ] [package.extras] cssselect = ["cssselect (>=0.7)"] +html-clean = ["lxml-html-clean"] html5 = ["html5lib"] htmlsoup = ["BeautifulSoup4"] -source = ["Cython (>=0.29.7)"] +source = ["Cython (>=3.0.11)"] [[package]] name = "markupsafe" -version = "2.1.1" +version = "3.0.2" description = "Safely add untrusted strings to HTML/XML markup." -category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.9" files = [ - {file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:86b1f75c4e7c2ac2ccdaec2b9022845dbb81880ca318bb7a0a01fbf7813e3812"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f121a1420d4e173a5d96e47e9a0c0dcff965afdf1626d28de1460815f7c4ee7a"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a49907dd8420c5685cfa064a1335b6754b74541bbb3706c259c02ed65b644b3e"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10c1bfff05d95783da83491be968e8fe789263689c02724e0c691933c52994f5"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b7bd98b796e2b6553da7225aeb61f447f80a1ca64f41d83612e6139ca5213aa4"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b09bf97215625a311f669476f44b8b318b075847b49316d3e28c08e41a7a573f"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:694deca8d702d5db21ec83983ce0bb4b26a578e71fbdbd4fdcd387daa90e4d5e"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:efc1913fd2ca4f334418481c7e595c00aad186563bbc1ec76067848c7ca0a933"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-win32.whl", hash = "sha256:4a33dea2b688b3190ee12bd7cfa29d39c9ed176bda40bfa11099a3ce5d3a7ac6"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:dda30ba7e87fbbb7eab1ec9f58678558fd9a6b8b853530e176eabd064da81417"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:671cd1187ed5e62818414afe79ed29da836dde67166a9fac6d435873c44fdd02"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3799351e2336dc91ea70b034983ee71cf2f9533cdff7c14c90ea126bfd95d65a"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591e9ecd94d7feb70c1cbd7be7b3ebea3f548870aa91e2732960fa4d57a37"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6fbf47b5d3728c6aea2abb0589b5d30459e369baa772e0f37a0320185e87c980"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d5ee4f386140395a2c818d149221149c54849dfcfcb9f1debfe07a8b8bd63f9a"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:bcb3ed405ed3222f9904899563d6fc492ff75cce56cba05e32eff40e6acbeaa3"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e1c0b87e09fa55a220f058d1d49d3fb8df88fbfab58558f1198e08c1e1de842a"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-win32.whl", hash = "sha256:8dc1c72a69aa7e082593c4a203dcf94ddb74bb5c8a731e4e1eb68d031e8498ff"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-win_amd64.whl", hash = "sha256:97a68e6ada378df82bc9f16b800ab77cbf4b2fada0081794318520138c088e4a"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e8c843bbcda3a2f1e3c2ab25913c80a3c5376cd00c6e8c4a86a89a28c8dc5452"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0212a68688482dc52b2d45013df70d169f542b7394fc744c02a57374a4207003"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e576a51ad59e4bfaac456023a78f6b5e6e7651dcd383bcc3e18d06f9b55d6d1"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b9fe39a2ccc108a4accc2676e77da025ce383c108593d65cc909add5c3bd601"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:96e37a3dc86e80bf81758c152fe66dbf60ed5eca3d26305edf01892257049925"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6d0072fea50feec76a4c418096652f2c3238eaa014b2f94aeb1d56a66b41403f"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:089cf3dbf0cd6c100f02945abeb18484bd1ee57a079aefd52cffd17fba910b88"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6a074d34ee7a5ce3effbc526b7083ec9731bb3cbf921bbe1d3005d4d2bdb3a63"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-win32.whl", hash = "sha256:421be9fbf0ffe9ffd7a378aafebbf6f4602d564d34be190fc19a193232fd12b1"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:fc7b548b17d238737688817ab67deebb30e8073c95749d55538ed473130ec0c7"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e04e26803c9c3851c931eac40c695602c6295b8d432cbe78609649ad9bd2da8a"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b87db4360013327109564f0e591bd2a3b318547bcef31b468a92ee504d07ae4f"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99a2a507ed3ac881b975a2976d59f38c19386d128e7a9a18b7df6fff1fd4c1d6"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:56442863ed2b06d19c37f94d999035e15ee982988920e12a5b4ba29b62ad1f77"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ce11ee3f23f79dbd06fb3d63e2f6af7b12db1d46932fe7bd8afa259a5996603"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:33b74d289bd2f5e527beadcaa3f401e0df0a89927c1559c8566c066fa4248ab7"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:43093fb83d8343aac0b1baa75516da6092f58f41200907ef92448ecab8825135"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8e3dcf21f367459434c18e71b2a9532d96547aef8a871872a5bd69a715c15f96"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-win32.whl", hash = "sha256:d4306c36ca495956b6d568d276ac11fdd9c30a36f1b6eb928070dc5360b22e1c"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:46d00d6cfecdde84d40e572d63735ef81423ad31184100411e6e3388d405e247"}, - {file = "MarkupSafe-2.1.1.tar.gz", hash = "sha256:7f91197cc9e48f989d12e4e6fbc46495c446636dfc81b9ccf50bb0ec74b91d4b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"}, + {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"}, + {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"}, + {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"}, + {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"}, + {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"}, + {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"}, + {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"}, ] [[package]] name = "marshmallow" -version = "3.17.0" +version = "3.23.1" description = "A lightweight library for converting complex datatypes to and from native Python datatypes." -category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.9" files = [ - {file = "marshmallow-3.17.0-py3-none-any.whl", hash = "sha256:00040ab5ea0c608e8787137627a8efae97fabd60552a05dc889c888f814e75eb"}, - {file = "marshmallow-3.17.0.tar.gz", hash = "sha256:635fb65a3285a31a30f276f30e958070f5214c7196202caa5c7ecf28f5274bc7"}, + {file = "marshmallow-3.23.1-py3-none-any.whl", hash = "sha256:fece2eb2c941180ea1b7fcbd4a83c51bfdd50093fdd3ad2585ee5e1df2508491"}, + {file = "marshmallow-3.23.1.tar.gz", hash = "sha256:3a8dfda6edd8dcdbf216c0ede1d1e78d230a6dc9c5a088f58c4083b974a0d468"}, ] [package.dependencies] packaging = ">=17.0" [package.extras] -dev = ["flake8 (==4.0.1)", "flake8-bugbear (==22.6.22)", "mypy (==0.961)", "pre-commit (>=2.4,<3.0)", "pytest", "pytz", "simplejson", "tox"] -docs = ["alabaster (==0.7.12)", "autodocsumm (==0.2.8)", "sphinx (==4.5.0)", "sphinx-issues (==3.0.1)", "sphinx-version-warning (==1.1.2)"] -lint = ["flake8 (==4.0.1)", "flake8-bugbear (==22.6.22)", "mypy (==0.961)", "pre-commit (>=2.4,<3.0)"] -tests = ["pytest", "pytz", "simplejson"] +dev = ["marshmallow[tests]", "pre-commit (>=3.5,<5.0)", "tox"] +docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.14)", "sphinx (==8.1.3)", "sphinx-issues (==5.0.0)", "sphinx-version-warning (==1.1.2)"] +tests = ["pytest", "simplejson"] [[package]] name = "marshmallow-dataclass" -version = "8.5.8" +version = "8.7.1" description = "Python library to convert dataclasses into marshmallow schemas." -category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "marshmallow_dataclass-8.5.8-py3-none-any.whl", hash = "sha256:9558cad84f65908df269d762deda903a8b42e25621c8a6be2a8d9b19cd55b9f5"}, - {file = "marshmallow_dataclass-8.5.8.tar.gz", hash = "sha256:b12dc2ca9492d0d8f98577e185dee3189d8bb02f4909e475f56ed4bf7b7d5a83"}, + {file = "marshmallow_dataclass-8.7.1-py3-none-any.whl", hash = "sha256:405cbaaad9cea56b3de2f85eff32a9880e3bf849f652e7f6de7395e4b1ddc072"}, + {file = "marshmallow_dataclass-8.7.1.tar.gz", hash = "sha256:4fb80e1bf7b31ce1b192aa87ffadee2cedb3f6f37bb0042f8500b07e6fad59c4"}, ] [package.dependencies] -marshmallow = ">=3.13.0,<4.0" -typing-inspect = ">=0.7.1" +marshmallow = ">=3.18.0" +typeguard = ">=4.0,<5" +typing-extensions = {version = ">=4.2.0", markers = "python_version < \"3.11\""} +typing-inspect = ">=0.9.0" [package.extras] -dev = ["marshmallow-enum", "pre-commit (>=2.17,<3.0)", "pytest (>=5.4)", "pytest-mypy-plugins (>=1.2.0)", "sphinx", "typeguard", "typing-extensions (>=3.7.2)"] +dev = ["pre-commit (>=2.17,<3.0)", "pytest (>=5.4)", "pytest-mypy-plugins (>=1.2.0)", "sphinx"] docs = ["sphinx"] -enum = ["marshmallow-enum"] lint = ["pre-commit (>=2.17,<3.0)"] -tests = ["pytest (>=5.4)", "pytest-mypy-plugins (>=1.2.0)", "typing-extensions (>=3.7.2)"] -union = ["typeguard"] +tests = ["pytest (>=5.4)", "pytest-mypy-plugins (>=1.2.0)"] [[package]] name = "marshmallow-enum" version = "1.5.1" description = "Enum field for Marshmallow" -category = "main" optional = false python-versions = "*" files = [ @@ -1694,69 +2458,76 @@ marshmallow = ">=2.0.0" [[package]] name = "matplotlib" -version = "3.5.3" +version = "3.9.2" description = "Python plotting package" -category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.9" files = [ - {file = "matplotlib-3.5.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a206a1b762b39398efea838f528b3a6d60cdb26fe9d58b48265787e29cd1d693"}, - {file = "matplotlib-3.5.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:cd45a6f3e93a780185f70f05cf2a383daed13c3489233faad83e81720f7ede24"}, - {file = "matplotlib-3.5.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d62880e1f60e5a30a2a8484432bcb3a5056969dc97258d7326ad465feb7ae069"}, - {file = "matplotlib-3.5.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9ab29589cef03bc88acfa3a1490359000c18186fc30374d8aa77d33cc4a51a4a"}, - {file = "matplotlib-3.5.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2886cc009f40e2984c083687251821f305d811d38e3df8ded414265e4583f0c5"}, - {file = "matplotlib-3.5.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c995f7d9568f18b5db131ab124c64e51b6820a92d10246d4f2b3f3a66698a15b"}, - {file = "matplotlib-3.5.3-cp310-cp310-win32.whl", hash = "sha256:6bb93a0492d68461bd458eba878f52fdc8ac7bdb6c4acdfe43dba684787838c2"}, - {file = "matplotlib-3.5.3-cp310-cp310-win_amd64.whl", hash = "sha256:2e6d184ebe291b9e8f7e78bbab7987d269c38ea3e062eace1fe7d898042ef804"}, - {file = "matplotlib-3.5.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:6ea6aef5c4338e58d8d376068e28f80a24f54e69f09479d1c90b7172bad9f25b"}, - {file = "matplotlib-3.5.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:839d47b8ead7ad9669aaacdbc03f29656dc21f0d41a6fea2d473d856c39c8b1c"}, - {file = "matplotlib-3.5.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3b4fa56159dc3c7f9250df88f653f085068bcd32dcd38e479bba58909254af7f"}, - {file = "matplotlib-3.5.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:94ff86af56a3869a4ae26a9637a849effd7643858a1a04dd5ee50e9ab75069a7"}, - {file = "matplotlib-3.5.3-cp37-cp37m-win32.whl", hash = "sha256:35a8ad4dddebd51f94c5d24bec689ec0ec66173bf614374a1244c6241c1595e0"}, - {file = "matplotlib-3.5.3-cp37-cp37m-win_amd64.whl", hash = "sha256:43e9d3fa077bf0cc95ded13d331d2156f9973dce17c6f0c8b49ccd57af94dbd9"}, - {file = "matplotlib-3.5.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:22227c976ad4dc8c5a5057540421f0d8708c6560744ad2ad638d48e2984e1dbc"}, - {file = "matplotlib-3.5.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:bf618a825deb6205f015df6dfe6167a5d9b351203b03fab82043ae1d30f16511"}, - {file = "matplotlib-3.5.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9befa5954cdbc085e37d974ff6053da269474177921dd61facdad8023c4aeb51"}, - {file = "matplotlib-3.5.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f3840c280ebc87a48488a46f760ea1c0c0c83fcf7abbe2e6baf99d033fd35fd8"}, - {file = "matplotlib-3.5.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:dacddf5bfcec60e3f26ec5c0ae3d0274853a258b6c3fc5ef2f06a8eb23e042be"}, - {file = "matplotlib-3.5.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:b428076a55fb1c084c76cb93e68006f27d247169f056412607c5c88828d08f88"}, - {file = "matplotlib-3.5.3-cp38-cp38-win32.whl", hash = "sha256:874df7505ba820e0400e7091199decf3ff1fde0583652120c50cd60d5820ca9a"}, - {file = "matplotlib-3.5.3-cp38-cp38-win_amd64.whl", hash = "sha256:b28de401d928890187c589036857a270a032961411934bdac4cf12dde3d43094"}, - {file = "matplotlib-3.5.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:3211ba82b9f1518d346f6309df137b50c3dc4421b4ed4815d1d7eadc617f45a1"}, - {file = "matplotlib-3.5.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6fe807e8a22620b4cd95cfbc795ba310dc80151d43b037257250faf0bfcd82bc"}, - {file = "matplotlib-3.5.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5c096363b206a3caf43773abebdbb5a23ea13faef71d701b21a9c27fdcef72f4"}, - {file = "matplotlib-3.5.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bcdfcb0f976e1bac6721d7d457c17be23cf7501f977b6a38f9d38a3762841f7"}, - {file = "matplotlib-3.5.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1e64ac9be9da6bfff0a732e62116484b93b02a0b4d4b19934fb4f8e7ad26ad6a"}, - {file = "matplotlib-3.5.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:73dd93dc35c85dece610cca8358003bf0760d7986f70b223e2306b4ea6d1406b"}, - {file = "matplotlib-3.5.3-cp39-cp39-win32.whl", hash = "sha256:879c7e5fce4939c6aa04581dfe08d57eb6102a71f2e202e3314d5fbc072fd5a0"}, - {file = "matplotlib-3.5.3-cp39-cp39-win_amd64.whl", hash = "sha256:ab8d26f07fe64f6f6736d635cce7bfd7f625320490ed5bfc347f2cdb4fae0e56"}, - {file = "matplotlib-3.5.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:99482b83ebf4eb6d5fc6813d7aacdefdd480f0d9c0b52dcf9f1cc3b2c4b3361a"}, - {file = "matplotlib-3.5.3-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f814504e459c68118bf2246a530ed953ebd18213dc20e3da524174d84ed010b2"}, - {file = "matplotlib-3.5.3-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:57f1b4e69f438a99bb64d7f2c340db1b096b41ebaa515cf61ea72624279220ce"}, - {file = "matplotlib-3.5.3-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:d2484b350bf3d32cae43f85dcfc89b3ed7bd2bcd781ef351f93eb6fb2cc483f9"}, - {file = "matplotlib-3.5.3.tar.gz", hash = "sha256:339cac48b80ddbc8bfd05daae0a3a73414651a8596904c2a881cfd1edb65f26c"}, + {file = "matplotlib-3.9.2-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:9d78bbc0cbc891ad55b4f39a48c22182e9bdaea7fc0e5dbd364f49f729ca1bbb"}, + {file = "matplotlib-3.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c375cc72229614632c87355366bdf2570c2dac01ac66b8ad048d2dabadf2d0d4"}, + {file = "matplotlib-3.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1d94ff717eb2bd0b58fe66380bd8b14ac35f48a98e7c6765117fe67fb7684e64"}, + {file = "matplotlib-3.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ab68d50c06938ef28681073327795c5db99bb4666214d2d5f880ed11aeaded66"}, + {file = "matplotlib-3.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:65aacf95b62272d568044531e41de26285d54aec8cb859031f511f84bd8b495a"}, + {file = "matplotlib-3.9.2-cp310-cp310-win_amd64.whl", hash = "sha256:3fd595f34aa8a55b7fc8bf9ebea8aa665a84c82d275190a61118d33fbc82ccae"}, + {file = "matplotlib-3.9.2-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d8dd059447824eec055e829258ab092b56bb0579fc3164fa09c64f3acd478772"}, + {file = "matplotlib-3.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c797dac8bb9c7a3fd3382b16fe8f215b4cf0f22adccea36f1545a6d7be310b41"}, + {file = "matplotlib-3.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d719465db13267bcef19ea8954a971db03b9f48b4647e3860e4bc8e6ed86610f"}, + {file = "matplotlib-3.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8912ef7c2362f7193b5819d17dae8629b34a95c58603d781329712ada83f9447"}, + {file = "matplotlib-3.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:7741f26a58a240f43bee74965c4882b6c93df3e7eb3de160126d8c8f53a6ae6e"}, + {file = "matplotlib-3.9.2-cp311-cp311-win_amd64.whl", hash = "sha256:ae82a14dab96fbfad7965403c643cafe6515e386de723e498cf3eeb1e0b70cc7"}, + {file = "matplotlib-3.9.2-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:ac43031375a65c3196bee99f6001e7fa5bdfb00ddf43379d3c0609bdca042df9"}, + {file = "matplotlib-3.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:be0fc24a5e4531ae4d8e858a1a548c1fe33b176bb13eff7f9d0d38ce5112a27d"}, + {file = "matplotlib-3.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf81de2926c2db243c9b2cbc3917619a0fc85796c6ba4e58f541df814bbf83c7"}, + {file = "matplotlib-3.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6ee45bc4245533111ced13f1f2cace1e7f89d1c793390392a80c139d6cf0e6c"}, + {file = "matplotlib-3.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:306c8dfc73239f0e72ac50e5a9cf19cc4e8e331dd0c54f5e69ca8758550f1e1e"}, + {file = "matplotlib-3.9.2-cp312-cp312-win_amd64.whl", hash = "sha256:5413401594cfaff0052f9d8b1aafc6d305b4bd7c4331dccd18f561ff7e1d3bd3"}, + {file = "matplotlib-3.9.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:18128cc08f0d3cfff10b76baa2f296fc28c4607368a8402de61bb3f2eb33c7d9"}, + {file = "matplotlib-3.9.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4876d7d40219e8ae8bb70f9263bcbe5714415acfdf781086601211335e24f8aa"}, + {file = "matplotlib-3.9.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6d9f07a80deab4bb0b82858a9e9ad53d1382fd122be8cde11080f4e7dfedb38b"}, + {file = "matplotlib-3.9.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f7c0410f181a531ec4e93bbc27692f2c71a15c2da16766f5ba9761e7ae518413"}, + {file = "matplotlib-3.9.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:909645cce2dc28b735674ce0931a4ac94e12f5b13f6bb0b5a5e65e7cea2c192b"}, + {file = "matplotlib-3.9.2-cp313-cp313-win_amd64.whl", hash = "sha256:f32c7410c7f246838a77d6d1eff0c0f87f3cb0e7c4247aebea71a6d5a68cab49"}, + {file = "matplotlib-3.9.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:37e51dd1c2db16ede9cfd7b5cabdfc818b2c6397c83f8b10e0e797501c963a03"}, + {file = "matplotlib-3.9.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:b82c5045cebcecd8496a4d694d43f9cc84aeeb49fe2133e036b207abe73f4d30"}, + {file = "matplotlib-3.9.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f053c40f94bc51bc03832a41b4f153d83f2062d88c72b5e79997072594e97e51"}, + {file = "matplotlib-3.9.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dbe196377a8248972f5cede786d4c5508ed5f5ca4a1e09b44bda889958b33f8c"}, + {file = "matplotlib-3.9.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:5816b1e1fe8c192cbc013f8f3e3368ac56fbecf02fb41b8f8559303f24c5015e"}, + {file = "matplotlib-3.9.2-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:cef2a73d06601437be399908cf13aee74e86932a5ccc6ccdf173408ebc5f6bb2"}, + {file = "matplotlib-3.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e0830e188029c14e891fadd99702fd90d317df294c3298aad682739c5533721a"}, + {file = "matplotlib-3.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:03ba9c1299c920964e8d3857ba27173b4dbb51ca4bab47ffc2c2ba0eb5e2cbc5"}, + {file = "matplotlib-3.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1cd93b91ab47a3616b4d3c42b52f8363b88ca021e340804c6ab2536344fad9ca"}, + {file = "matplotlib-3.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:6d1ce5ed2aefcdce11904fc5bbea7d9c21fff3d5f543841edf3dea84451a09ea"}, + {file = "matplotlib-3.9.2-cp39-cp39-win_amd64.whl", hash = "sha256:b2696efdc08648536efd4e1601b5fd491fd47f4db97a5fbfd175549a7365c1b2"}, + {file = "matplotlib-3.9.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:d52a3b618cb1cbb769ce2ee1dcdb333c3ab6e823944e9a2d36e37253815f9556"}, + {file = "matplotlib-3.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:039082812cacd6c6bec8e17a9c1e6baca230d4116d522e81e1f63a74d01d2e21"}, + {file = "matplotlib-3.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6758baae2ed64f2331d4fd19be38b7b4eae3ecec210049a26b6a4f3ae1c85dcc"}, + {file = "matplotlib-3.9.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:050598c2b29e0b9832cde72bcf97627bf00262adbc4a54e2b856426bb2ef0697"}, + {file = "matplotlib-3.9.2.tar.gz", hash = "sha256:96ab43906269ca64a6366934106fa01534454a69e471b7bf3d79083981aaab92"}, ] [package.dependencies] +contourpy = ">=1.0.1" cycler = ">=0.10" fonttools = ">=4.22.0" -kiwisolver = ">=1.0.1" -numpy = ">=1.17" +kiwisolver = ">=1.3.1" +numpy = ">=1.23" packaging = ">=20.0" -pillow = ">=6.2.0" -pyparsing = ">=2.2.1" +pillow = ">=8" +pyparsing = ">=2.3.1" python-dateutil = ">=2.7" +[package.extras] +dev = ["meson-python (>=0.13.1)", "numpy (>=1.25)", "pybind11 (>=2.6)", "setuptools (>=64)", "setuptools_scm (>=7)"] + [[package]] name = "matplotlib-inline" -version = "0.1.3" +version = "0.1.7" description = "Inline Matplotlib backend for Jupyter" -category = "main" optional = false -python-versions = ">=3.5" +python-versions = ">=3.8" files = [ - {file = "matplotlib-inline-0.1.3.tar.gz", hash = "sha256:a04bfba22e0d1395479f866853ec1ee28eea1485c1d69a6faf00dc3e24ff34ee"}, - {file = "matplotlib_inline-0.1.3-py3-none-any.whl", hash = "sha256:aed605ba3b72462d64d475a21a9296f400a19c4f74a31b59103d2a99ffd5aa5c"}, + {file = "matplotlib_inline-0.1.7-py3-none-any.whl", hash = "sha256:df192d39a4ff8f21b1895d72e6a13f5fcc5099f00fa84384e0ea28c2cc0653ca"}, + {file = "matplotlib_inline-0.1.7.tar.gz", hash = "sha256:8423b23ec666be3d16e16b60bdd8ac4e86e840ebd1dd11a30b9f117f2fa0ab90"}, ] [package.dependencies] @@ -1766,7 +2537,6 @@ traitlets = "*" name = "mccabe" version = "0.6.1" description = "McCabe checker, plugin for flake8" -category = "main" optional = false python-versions = "*" files = [ @@ -1776,40 +2546,135 @@ files = [ [[package]] name = "mistune" -version = "2.0.4" -description = "A sane Markdown parser with useful plugins and renderers" -category = "main" +version = "3.0.2" +description = "A sane and fast Markdown parser with useful plugins and renderers" optional = false -python-versions = "*" +python-versions = ">=3.7" files = [ - {file = "mistune-2.0.4-py2.py3-none-any.whl", hash = "sha256:182cc5ee6f8ed1b807de6b7bb50155df7b66495412836b9a74c8fbdfc75fe36d"}, - {file = "mistune-2.0.4.tar.gz", hash = "sha256:9ee0a66053e2267aba772c71e06891fa8f1af6d4b01d5e84e267b4570d4d9808"}, + {file = "mistune-3.0.2-py3-none-any.whl", hash = "sha256:71481854c30fdbc938963d3605b72501f5c10a9320ecd412c121c163a1c7d205"}, + {file = "mistune-3.0.2.tar.gz", hash = "sha256:fc7f93ded930c92394ef2cb6f04a8aabab4117a91449e72dcc8dfa646a508be8"}, +] + +[[package]] +name = "multidict" +version = "6.1.0" +description = "multidict implementation" +optional = false +python-versions = ">=3.8" +files = [ + {file = "multidict-6.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3380252550e372e8511d49481bd836264c009adb826b23fefcc5dd3c69692f60"}, + {file = "multidict-6.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:99f826cbf970077383d7de805c0681799491cb939c25450b9b5b3ced03ca99f1"}, + {file = "multidict-6.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a114d03b938376557927ab23f1e950827c3b893ccb94b62fd95d430fd0e5cf53"}, + {file = "multidict-6.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1c416351ee6271b2f49b56ad7f308072f6f44b37118d69c2cad94f3fa8a40d5"}, + {file = "multidict-6.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6b5d83030255983181005e6cfbac1617ce9746b219bc2aad52201ad121226581"}, + {file = "multidict-6.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3e97b5e938051226dc025ec80980c285b053ffb1e25a3db2a3aa3bc046bf7f56"}, + {file = "multidict-6.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d618649d4e70ac6efcbba75be98b26ef5078faad23592f9b51ca492953012429"}, + {file = "multidict-6.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:10524ebd769727ac77ef2278390fb0068d83f3acb7773792a5080f2b0abf7748"}, + {file = "multidict-6.1.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ff3827aef427c89a25cc96ded1759271a93603aba9fb977a6d264648ebf989db"}, + {file = "multidict-6.1.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:06809f4f0f7ab7ea2cabf9caca7d79c22c0758b58a71f9d32943ae13c7ace056"}, + {file = "multidict-6.1.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:f179dee3b863ab1c59580ff60f9d99f632f34ccb38bf67a33ec6b3ecadd0fd76"}, + {file = "multidict-6.1.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:aaed8b0562be4a0876ee3b6946f6869b7bcdb571a5d1496683505944e268b160"}, + {file = "multidict-6.1.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3c8b88a2ccf5493b6c8da9076fb151ba106960a2df90c2633f342f120751a9e7"}, + {file = "multidict-6.1.0-cp310-cp310-win32.whl", hash = "sha256:4a9cb68166a34117d6646c0023c7b759bf197bee5ad4272f420a0141d7eb03a0"}, + {file = "multidict-6.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:20b9b5fbe0b88d0bdef2012ef7dee867f874b72528cf1d08f1d59b0e3850129d"}, + {file = "multidict-6.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3efe2c2cb5763f2f1b275ad2bf7a287d3f7ebbef35648a9726e3b69284a4f3d6"}, + {file = "multidict-6.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c7053d3b0353a8b9de430a4f4b4268ac9a4fb3481af37dfe49825bf45ca24156"}, + {file = "multidict-6.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:27e5fc84ccef8dfaabb09d82b7d179c7cf1a3fbc8a966f8274fcb4ab2eb4cadb"}, + {file = "multidict-6.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e2b90b43e696f25c62656389d32236e049568b39320e2735d51f08fd362761b"}, + {file = "multidict-6.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d83a047959d38a7ff552ff94be767b7fd79b831ad1cd9920662db05fec24fe72"}, + {file = "multidict-6.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d1a9dd711d0877a1ece3d2e4fea11a8e75741ca21954c919406b44e7cf971304"}, + {file = "multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec2abea24d98246b94913b76a125e855eb5c434f7c46546046372fe60f666351"}, + {file = "multidict-6.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4867cafcbc6585e4b678876c489b9273b13e9fff9f6d6d66add5e15d11d926cb"}, + {file = "multidict-6.1.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:5b48204e8d955c47c55b72779802b219a39acc3ee3d0116d5080c388970b76e3"}, + {file = "multidict-6.1.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:d8fff389528cad1618fb4b26b95550327495462cd745d879a8c7c2115248e399"}, + {file = "multidict-6.1.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:a7a9541cd308eed5e30318430a9c74d2132e9a8cb46b901326272d780bf2d423"}, + {file = "multidict-6.1.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:da1758c76f50c39a2efd5e9859ce7d776317eb1dd34317c8152ac9251fc574a3"}, + {file = "multidict-6.1.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:c943a53e9186688b45b323602298ab727d8865d8c9ee0b17f8d62d14b56f0753"}, + {file = "multidict-6.1.0-cp311-cp311-win32.whl", hash = "sha256:90f8717cb649eea3504091e640a1b8568faad18bd4b9fcd692853a04475a4b80"}, + {file = "multidict-6.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:82176036e65644a6cc5bd619f65f6f19781e8ec2e5330f51aa9ada7504cc1926"}, + {file = "multidict-6.1.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:b04772ed465fa3cc947db808fa306d79b43e896beb677a56fb2347ca1a49c1fa"}, + {file = "multidict-6.1.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:6180c0ae073bddeb5a97a38c03f30c233e0a4d39cd86166251617d1bbd0af436"}, + {file = "multidict-6.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:071120490b47aa997cca00666923a83f02c7fbb44f71cf7f136df753f7fa8761"}, + {file = "multidict-6.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50b3a2710631848991d0bf7de077502e8994c804bb805aeb2925a981de58ec2e"}, + {file = "multidict-6.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b58c621844d55e71c1b7f7c498ce5aa6985d743a1a59034c57a905b3f153c1ef"}, + {file = "multidict-6.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:55b6d90641869892caa9ca42ff913f7ff1c5ece06474fbd32fb2cf6834726c95"}, + {file = "multidict-6.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b820514bfc0b98a30e3d85462084779900347e4d49267f747ff54060cc33925"}, + {file = "multidict-6.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:10a9b09aba0c5b48c53761b7c720aaaf7cf236d5fe394cd399c7ba662d5f9966"}, + {file = "multidict-6.1.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1e16bf3e5fc9f44632affb159d30a437bfe286ce9e02754759be5536b169b305"}, + {file = "multidict-6.1.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:76f364861c3bfc98cbbcbd402d83454ed9e01a5224bb3a28bf70002a230f73e2"}, + {file = "multidict-6.1.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:820c661588bd01a0aa62a1283f20d2be4281b086f80dad9e955e690c75fb54a2"}, + {file = "multidict-6.1.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:0e5f362e895bc5b9e67fe6e4ded2492d8124bdf817827f33c5b46c2fe3ffaca6"}, + {file = "multidict-6.1.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3ec660d19bbc671e3a6443325f07263be452c453ac9e512f5eb935e7d4ac28b3"}, + {file = "multidict-6.1.0-cp312-cp312-win32.whl", hash = "sha256:58130ecf8f7b8112cdb841486404f1282b9c86ccb30d3519faf301b2e5659133"}, + {file = "multidict-6.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:188215fc0aafb8e03341995e7c4797860181562380f81ed0a87ff455b70bf1f1"}, + {file = "multidict-6.1.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:d569388c381b24671589335a3be6e1d45546c2988c2ebe30fdcada8457a31008"}, + {file = "multidict-6.1.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:052e10d2d37810b99cc170b785945421141bf7bb7d2f8799d431e7db229c385f"}, + {file = "multidict-6.1.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f90c822a402cb865e396a504f9fc8173ef34212a342d92e362ca498cad308e28"}, + {file = "multidict-6.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b225d95519a5bf73860323e633a664b0d85ad3d5bede6d30d95b35d4dfe8805b"}, + {file = "multidict-6.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:23bfd518810af7de1116313ebd9092cb9aa629beb12f6ed631ad53356ed6b86c"}, + {file = "multidict-6.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c09fcfdccdd0b57867577b719c69e347a436b86cd83747f179dbf0cc0d4c1f3"}, + {file = "multidict-6.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf6bea52ec97e95560af5ae576bdac3aa3aae0b6758c6efa115236d9e07dae44"}, + {file = "multidict-6.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57feec87371dbb3520da6192213c7d6fc892d5589a93db548331954de8248fd2"}, + {file = "multidict-6.1.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0c3f390dc53279cbc8ba976e5f8035eab997829066756d811616b652b00a23a3"}, + {file = "multidict-6.1.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:59bfeae4b25ec05b34f1956eaa1cb38032282cd4dfabc5056d0a1ec4d696d3aa"}, + {file = "multidict-6.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:b2f59caeaf7632cc633b5cf6fc449372b83bbdf0da4ae04d5be36118e46cc0aa"}, + {file = "multidict-6.1.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:37bb93b2178e02b7b618893990941900fd25b6b9ac0fa49931a40aecdf083fe4"}, + {file = "multidict-6.1.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4e9f48f58c2c523d5a06faea47866cd35b32655c46b443f163d08c6d0ddb17d6"}, + {file = "multidict-6.1.0-cp313-cp313-win32.whl", hash = "sha256:3a37ffb35399029b45c6cc33640a92bef403c9fd388acce75cdc88f58bd19a81"}, + {file = "multidict-6.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:e9aa71e15d9d9beaad2c6b9319edcdc0a49a43ef5c0a4c8265ca9ee7d6c67774"}, + {file = "multidict-6.1.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:db7457bac39421addd0c8449933ac32d8042aae84a14911a757ae6ca3eef1392"}, + {file = "multidict-6.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d094ddec350a2fb899fec68d8353c78233debde9b7d8b4beeafa70825f1c281a"}, + {file = "multidict-6.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:5845c1fd4866bb5dd3125d89b90e57ed3138241540897de748cdf19de8a2fca2"}, + {file = "multidict-6.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9079dfc6a70abe341f521f78405b8949f96db48da98aeb43f9907f342f627cdc"}, + {file = "multidict-6.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3914f5aaa0f36d5d60e8ece6a308ee1c9784cd75ec8151062614657a114c4478"}, + {file = "multidict-6.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c08be4f460903e5a9d0f76818db3250f12e9c344e79314d1d570fc69d7f4eae4"}, + {file = "multidict-6.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d093be959277cb7dee84b801eb1af388b6ad3ca6a6b6bf1ed7585895789d027d"}, + {file = "multidict-6.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3702ea6872c5a2a4eeefa6ffd36b042e9773f05b1f37ae3ef7264b1163c2dcf6"}, + {file = "multidict-6.1.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:2090f6a85cafc5b2db085124d752757c9d251548cedabe9bd31afe6363e0aff2"}, + {file = "multidict-6.1.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:f67f217af4b1ff66c68a87318012de788dd95fcfeb24cc889011f4e1c7454dfd"}, + {file = "multidict-6.1.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:189f652a87e876098bbc67b4da1049afb5f5dfbaa310dd67c594b01c10388db6"}, + {file = "multidict-6.1.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:6bb5992037f7a9eff7991ebe4273ea7f51f1c1c511e6a2ce511d0e7bdb754492"}, + {file = "multidict-6.1.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:ac10f4c2b9e770c4e393876e35a7046879d195cd123b4f116d299d442b335bcd"}, + {file = "multidict-6.1.0-cp38-cp38-win32.whl", hash = "sha256:e27bbb6d14416713a8bd7aaa1313c0fc8d44ee48d74497a0ff4c3a1b6ccb5167"}, + {file = "multidict-6.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:22f3105d4fb15c8f57ff3959a58fcab6ce36814486500cd7485651230ad4d4ef"}, + {file = "multidict-6.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:4e18b656c5e844539d506a0a06432274d7bd52a7487e6828c63a63d69185626c"}, + {file = "multidict-6.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a185f876e69897a6f3325c3f19f26a297fa058c5e456bfcff8015e9a27e83ae1"}, + {file = "multidict-6.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ab7c4ceb38d91570a650dba194e1ca87c2b543488fe9309b4212694174fd539c"}, + {file = "multidict-6.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e617fb6b0b6953fffd762669610c1c4ffd05632c138d61ac7e14ad187870669c"}, + {file = "multidict-6.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:16e5f4bf4e603eb1fdd5d8180f1a25f30056f22e55ce51fb3d6ad4ab29f7d96f"}, + {file = "multidict-6.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f4c035da3f544b1882bac24115f3e2e8760f10a0107614fc9839fd232200b875"}, + {file = "multidict-6.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:957cf8e4b6e123a9eea554fa7ebc85674674b713551de587eb318a2df3e00255"}, + {file = "multidict-6.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:483a6aea59cb89904e1ceabd2b47368b5600fb7de78a6e4a2c2987b2d256cf30"}, + {file = "multidict-6.1.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:87701f25a2352e5bf7454caa64757642734da9f6b11384c1f9d1a8e699758057"}, + {file = "multidict-6.1.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:682b987361e5fd7a139ed565e30d81fd81e9629acc7d925a205366877d8c8657"}, + {file = "multidict-6.1.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ce2186a7df133a9c895dea3331ddc5ddad42cdd0d1ea2f0a51e5d161e4762f28"}, + {file = "multidict-6.1.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:9f636b730f7e8cb19feb87094949ba54ee5357440b9658b2a32a5ce4bce53972"}, + {file = "multidict-6.1.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:73eae06aa53af2ea5270cc066dcaf02cc60d2994bbb2c4ef5764949257d10f43"}, + {file = "multidict-6.1.0-cp39-cp39-win32.whl", hash = "sha256:1ca0083e80e791cffc6efce7660ad24af66c8d4079d2a750b29001b53ff59ada"}, + {file = "multidict-6.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:aa466da5b15ccea564bdab9c89175c762bc12825f4659c11227f515cee76fa4a"}, + {file = "multidict-6.1.0-py3-none-any.whl", hash = "sha256:48e171e52d1c4d33888e529b999e5900356b9ae588c2f09a52dcefb158b27506"}, + {file = "multidict-6.1.0.tar.gz", hash = "sha256:22ae2ebf9b0c69d206c003e2f6a914ea33f0a932d4aa16f236afc049d9958f4a"}, ] [[package]] name = "munch" -version = "2.5.0" +version = "4.0.0" description = "A dot-accessible dictionary (a la JavaScript objects)" -category = "main" optional = false -python-versions = "*" +python-versions = ">=3.6" files = [ - {file = "munch-2.5.0-py2.py3-none-any.whl", hash = "sha256:6f44af89a2ce4ed04ff8de41f70b226b984db10a91dcc7b9ac2efc1c77022fdd"}, - {file = "munch-2.5.0.tar.gz", hash = "sha256:2d735f6f24d4dba3417fa448cae40c6e896ec1fdab6cdb5e6510999758a4dbd2"}, + {file = "munch-4.0.0-py2.py3-none-any.whl", hash = "sha256:71033c45db9fb677a0b7eb517a4ce70ae09258490e419b0e7f00d1e386ecb1b4"}, + {file = "munch-4.0.0.tar.gz", hash = "sha256:542cb151461263216a4e37c3fd9afc425feeaf38aaa3025cd2a981fadb422235"}, ] -[package.dependencies] -six = "*" - [package.extras] -testing = ["astroid (>=1.5.3,<1.6.0)", "astroid (>=2.0)", "coverage", "pylint (>=1.7.2,<1.8.0)", "pylint (>=2.3.1,<2.4.0)", "pytest"] +testing = ["astroid (>=2.0)", "coverage", "pylint (>=2.3.1,<2.4.0)", "pytest"] yaml = ["PyYAML (>=5.1.0)"] [[package]] name = "mypy" version = "0.910" description = "Optional static typing for Python" -category = "dev" optional = false python-versions = ">=3.5" files = [ @@ -1849,157 +2714,136 @@ python2 = ["typed-ast (>=1.4.0,<1.5.0)"] [[package]] name = "mypy-extensions" -version = "0.4.3" +version = "0.4.4" description = "Experimental type system extensions for programs checked with the mypy typechecker." -category = "main" optional = false -python-versions = "*" +python-versions = ">=2.7" files = [ - {file = "mypy_extensions-0.4.3-py2.py3-none-any.whl", hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"}, - {file = "mypy_extensions-0.4.3.tar.gz", hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"}, + {file = "mypy_extensions-0.4.4.tar.gz", hash = "sha256:c8b707883a96efe9b4bb3aaf0dcc07e7e217d7d8368eec4db4049ee9e142f4fd"}, ] [[package]] name = "nbclassic" -version = "0.4.3" -description = "A web-based notebook environment for interactive computing" -category = "dev" +version = "1.1.0" +description = "Jupyter Notebook as a Jupyter Server extension." optional = false python-versions = ">=3.7" files = [ - {file = "nbclassic-0.4.3-py3-none-any.whl", hash = "sha256:4b01076effdac53e775cd1b6a4e891663568b32621468e205b502a23b2921899"}, - {file = "nbclassic-0.4.3.tar.gz", hash = "sha256:f03111b2cebaa69b88370a7b23b19b2b37c9bb71767f1828cdfd7a047eae8edd"}, + {file = "nbclassic-1.1.0-py3-none-any.whl", hash = "sha256:8c0fd6e36e320a18657ff44ed96c3a400f17a903a3744fc322303a515778f2ba"}, + {file = "nbclassic-1.1.0.tar.gz", hash = "sha256:77b77ba85f9e988f9bad85df345b514e9e64c7f0e822992ab1df4a78ac64fc1e"}, ] [package.dependencies] -argon2-cffi = "*" ipykernel = "*" ipython-genutils = "*" -jinja2 = "*" -jupyter-client = ">=6.1.1" -jupyter-core = ">=4.6.1" -jupyter-server = ">=1.8" -nbconvert = ">=5" -nbformat = "*" nest-asyncio = ">=1.5" -notebook-shim = ">=0.1.0" -prometheus-client = "*" -pyzmq = ">=17" -Send2Trash = ">=1.8.0" -terminado = ">=0.8.3" -tornado = ">=6.1" -traitlets = ">=4.2.1" +notebook-shim = ">=0.2.3" [package.extras] docs = ["myst-parser", "nbsphinx", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-github-alt"] json-logging = ["json-logging"] -test = ["coverage", "nbval", "pytest", "pytest-cov", "pytest-tornasync", "requests", "requests-unixsocket", "selenium (==4.1.5)", "testpath"] +test = ["coverage", "nbval", "pytest", "pytest-cov", "pytest-jupyter", "pytest-playwright", "pytest-tornasync", "requests", "requests-unixsocket", "testpath"] [[package]] name = "nbclient" -version = "0.6.6" +version = "0.10.0" description = "A client library for executing notebooks. Formerly nbconvert's ExecutePreprocessor." -category = "main" optional = false -python-versions = ">=3.7.0" +python-versions = ">=3.8.0" files = [ - {file = "nbclient-0.6.6-py3-none-any.whl", hash = "sha256:09bae4ea2df79fa6bc50aeb8278d8b79d2036792824337fa6eee834afae17312"}, - {file = "nbclient-0.6.6.tar.gz", hash = "sha256:0df76a7961d99a681b4796c74a1f2553b9f998851acc01896dce064ad19a9027"}, + {file = "nbclient-0.10.0-py3-none-any.whl", hash = "sha256:f13e3529332a1f1f81d82a53210322476a168bb7090a0289c795fe9cc11c9d3f"}, + {file = "nbclient-0.10.0.tar.gz", hash = "sha256:4b3f1b7dba531e498449c4db4f53da339c91d449dc11e9af3a43b4eb5c5abb09"}, ] [package.dependencies] -jupyter-client = ">=6.1.5" -nbformat = ">=5.0" -nest-asyncio = "*" -traitlets = ">=5.2.2" +jupyter-client = ">=6.1.12" +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" +nbformat = ">=5.1" +traitlets = ">=5.4" [package.extras] -sphinx = ["Sphinx (>=1.7)", "autodoc-traits", "mock", "moto", "myst-parser", "sphinx-book-theme"] -test = ["black", "check-manifest", "flake8", "ipykernel", "ipython (<8.0.0)", "ipywidgets (<8.0.0)", "mypy", "pip (>=18.1)", "pre-commit", "pytest (>=4.1)", "pytest-asyncio", "pytest-cov (>=2.6.1)", "setuptools (>=60.0)", "testpath", "twine (>=1.11.0)", "xmltodict"] +dev = ["pre-commit"] +docs = ["autodoc-traits", "mock", "moto", "myst-parser", "nbclient[test]", "sphinx (>=1.7)", "sphinx-book-theme", "sphinxcontrib-spelling"] +test = ["flaky", "ipykernel (>=6.19.3)", "ipython", "ipywidgets", "nbconvert (>=7.0.0)", "pytest (>=7.0,<8)", "pytest-asyncio", "pytest-cov (>=4.0)", "testpath", "xmltodict"] [[package]] name = "nbconvert" -version = "7.0.0" -description = "Converting Jupyter Notebooks" -category = "main" +version = "7.16.4" +description = "Converting Jupyter Notebooks (.ipynb files) to other formats. Output formats include asciidoc, html, latex, markdown, pdf, py, rst, script. nbconvert can be used both as a Python library (`import nbconvert`) or as a command line tool (invoked as `jupyter nbconvert ...`)." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "nbconvert-7.0.0-py3-none-any.whl", hash = "sha256:26843ae233167e8aae31c20e3e1d91f431f04c9f34363bbe2dd0d247f772641c"}, - {file = "nbconvert-7.0.0.tar.gz", hash = "sha256:fd1e361da30e30e4c5a5ae89f7cae95ca2a4d4407389672473312249a7ba0060"}, + {file = "nbconvert-7.16.4-py3-none-any.whl", hash = "sha256:05873c620fe520b6322bf8a5ad562692343fe3452abda5765c7a34b7d1aa3eb3"}, + {file = "nbconvert-7.16.4.tar.gz", hash = "sha256:86ca91ba266b0a448dc96fa6c5b9d98affabde2867b363258703536807f9f7f4"}, ] [package.dependencies] beautifulsoup4 = "*" -bleach = "*" +bleach = "!=5.0.0" defusedxml = "*" -importlib-metadata = {version = ">=3.6", markers = "python_version < \"3.10\""} jinja2 = ">=3.0" jupyter-core = ">=4.7" jupyterlab-pygments = "*" -lxml = "*" markupsafe = ">=2.0" -mistune = ">=2.0.3,<3" +mistune = ">=2.0.3,<4" nbclient = ">=0.5.0" -nbformat = ">=5.1" +nbformat = ">=5.7" packaging = "*" pandocfilters = ">=1.4.1" pygments = ">=2.4.1" tinycss2 = "*" -traitlets = ">=5.0" - -[package.extras] -all = ["ipykernel", "ipython", "ipywidgets (>=7)", "nbsphinx (>=0.2.12)", "pre-commit", "pyppeteer (>=1,<1.1)", "pyqtwebengine (>=5.15)", "pytest", "pytest-cov", "pytest-dependency", "sphinx (==5.0.2)", "sphinx-rtd-theme", "tornado (>=6.1)"] -docs = ["ipython", "nbsphinx (>=0.2.12)", "sphinx (==5.0.2)", "sphinx-rtd-theme"] -qtpdf = ["pyqtwebengine (>=5.15)"] -qtpng = ["pyqtwebengine (>=5.15)"] -serve = ["tornado (>=6.1)"] -test = ["ipykernel", "ipywidgets (>=7)", "pre-commit", "pyppeteer (>=1,<1.1)", "pytest", "pytest-cov", "pytest-dependency"] -webpdf = ["pyppeteer (>=1,<1.1)"] - -[[package]] -name = "nbformat" -version = "5.4.0" -description = "The Jupyter Notebook format" -category = "main" -optional = false -python-versions = ">=3.7" -files = [ - {file = "nbformat-5.4.0-py3-none-any.whl", hash = "sha256:0d6072aaec95dddc39735c144ee8bbc6589c383fb462e4058abc855348152dad"}, - {file = "nbformat-5.4.0.tar.gz", hash = "sha256:44ba5ca6acb80c5d5a500f1e5b83ede8cbe364d5a495c4c8cf60aaf1ba656501"}, -] - -[package.dependencies] -fastjsonschema = "*" -jsonschema = ">=2.6" -jupyter-core = "*" traitlets = ">=5.1" [package.extras] -test = ["check-manifest", "pre-commit", "pytest", "testpath"] +all = ["flaky", "ipykernel", "ipython", "ipywidgets (>=7.5)", "myst-parser", "nbsphinx (>=0.2.12)", "playwright", "pydata-sphinx-theme", "pyqtwebengine (>=5.15)", "pytest (>=7)", "sphinx (==5.0.2)", "sphinxcontrib-spelling", "tornado (>=6.1)"] +docs = ["ipykernel", "ipython", "myst-parser", "nbsphinx (>=0.2.12)", "pydata-sphinx-theme", "sphinx (==5.0.2)", "sphinxcontrib-spelling"] +qtpdf = ["pyqtwebengine (>=5.15)"] +qtpng = ["pyqtwebengine (>=5.15)"] +serve = ["tornado (>=6.1)"] +test = ["flaky", "ipykernel", "ipywidgets (>=7.5)", "pytest (>=7)"] +webpdf = ["playwright"] + +[[package]] +name = "nbformat" +version = "5.10.4" +description = "The Jupyter Notebook format" +optional = false +python-versions = ">=3.8" +files = [ + {file = "nbformat-5.10.4-py3-none-any.whl", hash = "sha256:3b48d6c8fbca4b299bf3982ea7db1af21580e4fec269ad087b9e81588891200b"}, + {file = "nbformat-5.10.4.tar.gz", hash = "sha256:322168b14f937a5d11362988ecac2a4952d3d8e3a2cbeb2319584631226d5b3a"}, +] + +[package.dependencies] +fastjsonschema = ">=2.15" +jsonschema = ">=2.6" +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" +traitlets = ">=5.1" + +[package.extras] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx", "sphinxcontrib-github-alt", "sphinxcontrib-spelling"] +test = ["pep440", "pre-commit", "pytest", "testpath"] [[package]] name = "nest-asyncio" -version = "1.5.5" +version = "1.6.0" description = "Patch asyncio to allow nested event loops" -category = "main" optional = false python-versions = ">=3.5" files = [ - {file = "nest_asyncio-1.5.5-py3-none-any.whl", hash = "sha256:b98e3ec1b246135e4642eceffa5a6c23a3ab12c82ff816a92c612d68205813b2"}, - {file = "nest_asyncio-1.5.5.tar.gz", hash = "sha256:e442291cd942698be619823a17a86a5759eabe1f8613084790de189fe9e16d65"}, + {file = "nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c"}, + {file = "nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe"}, ] [[package]] name = "notebook" -version = "6.4.12" +version = "6.5.7" description = "A web-based notebook environment for interactive computing" -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "notebook-6.4.12-py3-none-any.whl", hash = "sha256:8c07a3bb7640e371f8a609bdbb2366a1976c6a2589da8ef917f761a61e3ad8b1"}, - {file = "notebook-6.4.12.tar.gz", hash = "sha256:6268c9ec9048cff7a45405c990c29ac9ca40b0bc3ec29263d218c5e01f2b4e86"}, + {file = "notebook-6.5.7-py3-none-any.whl", hash = "sha256:a6afa9a4ff4d149a0771ff8b8c881a7a73b3835f9add0606696d6e9d98ac1cd0"}, + {file = "notebook-6.5.7.tar.gz", hash = "sha256:04eb9011dfac634fbd4442adaf0a8c27cd26beef831fe1d19faf930c327768e4"}, ] [package.dependencies] @@ -2007,8 +2851,9 @@ argon2-cffi = "*" ipykernel = "*" ipython-genutils = "*" jinja2 = "*" -jupyter-client = ">=5.3.4" +jupyter-client = ">=5.3.4,<8" jupyter-core = ">=4.6.1" +nbclassic = ">=0.4.7" nbconvert = ">=5" nbformat = "*" nest-asyncio = ">=1.5" @@ -2022,132 +2867,138 @@ traitlets = ">=4.2.1" [package.extras] docs = ["myst-parser", "nbsphinx", "sphinx", "sphinx-rtd-theme", "sphinxcontrib-github-alt"] json-logging = ["json-logging"] -test = ["coverage", "nbval", "pytest", "pytest-cov", "requests", "requests-unixsocket", "selenium", "testpath"] +test = ["coverage", "nbval", "pytest", "pytest-cov", "requests", "requests-unixsocket", "selenium (==4.1.5)", "testpath"] [[package]] name = "notebook-shim" -version = "0.1.0" +version = "0.2.4" description = "A shim layer for notebook traits and config" -category = "dev" optional = false python-versions = ">=3.7" files = [ - {file = "notebook_shim-0.1.0-py3-none-any.whl", hash = "sha256:02432d55a01139ac16e2100888aa2b56c614720cec73a27e71f40a5387e45324"}, - {file = "notebook_shim-0.1.0.tar.gz", hash = "sha256:7897e47a36d92248925a2143e3596f19c60597708f7bef50d81fcd31d7263e85"}, + {file = "notebook_shim-0.2.4-py3-none-any.whl", hash = "sha256:411a5be4e9dc882a074ccbcae671eda64cceb068767e9a3419096986560e1cef"}, + {file = "notebook_shim-0.2.4.tar.gz", hash = "sha256:b4b2cfa1b65d98307ca24361f5b30fe785b53c3fd07b7a47e89acb5e6ac638cb"}, ] [package.dependencies] -jupyter-server = ">=1.8,<2.0" +jupyter-server = ">=1.8,<3" [package.extras] -test = ["pytest", "pytest-console-scripts", "pytest-tornasync"] +test = ["pytest", "pytest-console-scripts", "pytest-jupyter", "pytest-tornasync"] [[package]] name = "numpy" -version = "1.23.2" -description = "NumPy is the fundamental package for array computing with Python." -category = "main" +version = "1.26.4" +description = "Fundamental package for array computing in Python" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "numpy-1.23.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e603ca1fb47b913942f3e660a15e55a9ebca906857edfea476ae5f0fe9b457d5"}, - {file = "numpy-1.23.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:633679a472934b1c20a12ed0c9a6c9eb167fbb4cb89031939bfd03dd9dbc62b8"}, - {file = "numpy-1.23.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17e5226674f6ea79e14e3b91bfbc153fdf3ac13f5cc54ee7bc8fdbe820a32da0"}, - {file = "numpy-1.23.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bdc02c0235b261925102b1bd586579b7158e9d0d07ecb61148a1799214a4afd5"}, - {file = "numpy-1.23.2-cp310-cp310-win32.whl", hash = "sha256:df28dda02c9328e122661f399f7655cdcbcf22ea42daa3650a26bce08a187450"}, - {file = "numpy-1.23.2-cp310-cp310-win_amd64.whl", hash = "sha256:8ebf7e194b89bc66b78475bd3624d92980fca4e5bb86dda08d677d786fefc414"}, - {file = "numpy-1.23.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:dc76bca1ca98f4b122114435f83f1fcf3c0fe48e4e6f660e07996abf2f53903c"}, - {file = "numpy-1.23.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ecfdd68d334a6b97472ed032b5b37a30d8217c097acfff15e8452c710e775524"}, - {file = "numpy-1.23.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5593f67e66dea4e237f5af998d31a43e447786b2154ba1ad833676c788f37cde"}, - {file = "numpy-1.23.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac987b35df8c2a2eab495ee206658117e9ce867acf3ccb376a19e83070e69418"}, - {file = "numpy-1.23.2-cp311-cp311-win32.whl", hash = "sha256:d98addfd3c8728ee8b2c49126f3c44c703e2b005d4a95998e2167af176a9e722"}, - {file = "numpy-1.23.2-cp311-cp311-win_amd64.whl", hash = "sha256:8ecb818231afe5f0f568c81f12ce50f2b828ff2b27487520d85eb44c71313b9e"}, - {file = "numpy-1.23.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:909c56c4d4341ec8315291a105169d8aae732cfb4c250fbc375a1efb7a844f8f"}, - {file = "numpy-1.23.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:8247f01c4721479e482cc2f9f7d973f3f47810cbc8c65e38fd1bbd3141cc9842"}, - {file = "numpy-1.23.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b8b97a8a87cadcd3f94659b4ef6ec056261fa1e1c3317f4193ac231d4df70215"}, - {file = "numpy-1.23.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bd5b7ccae24e3d8501ee5563e82febc1771e73bd268eef82a1e8d2b4d556ae66"}, - {file = "numpy-1.23.2-cp38-cp38-win32.whl", hash = "sha256:9b83d48e464f393d46e8dd8171687394d39bc5abfe2978896b77dc2604e8635d"}, - {file = "numpy-1.23.2-cp38-cp38-win_amd64.whl", hash = "sha256:dec198619b7dbd6db58603cd256e092bcadef22a796f778bf87f8592b468441d"}, - {file = "numpy-1.23.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4f41f5bf20d9a521f8cab3a34557cd77b6f205ab2116651f12959714494268b0"}, - {file = "numpy-1.23.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:806cc25d5c43e240db709875e947076b2826f47c2c340a5a2f36da5bb10c58d6"}, - {file = "numpy-1.23.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f9d84a24889ebb4c641a9b99e54adb8cab50972f0166a3abc14c3b93163f074"}, - {file = "numpy-1.23.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c403c81bb8ffb1c993d0165a11493fd4bf1353d258f6997b3ee288b0a48fce77"}, - {file = "numpy-1.23.2-cp39-cp39-win32.whl", hash = "sha256:cf8c6aed12a935abf2e290860af8e77b26a042eb7f2582ff83dc7ed5f963340c"}, - {file = "numpy-1.23.2-cp39-cp39-win_amd64.whl", hash = "sha256:5e28cd64624dc2354a349152599e55308eb6ca95a13ce6a7d5679ebff2962913"}, - {file = "numpy-1.23.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:806970e69106556d1dd200e26647e9bee5e2b3f1814f9da104a943e8d548ca38"}, - {file = "numpy-1.23.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bd879d3ca4b6f39b7770829f73278b7c5e248c91d538aab1e506c628353e47f"}, - {file = "numpy-1.23.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:be6b350dfbc7f708d9d853663772a9310783ea58f6035eec649fb9c4371b5389"}, - {file = "numpy-1.23.2.tar.gz", hash = "sha256:b78d00e48261fbbd04aa0d7427cf78d18401ee0abd89c7559bbf422e5b1c7d01"}, + {file = "numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0"}, + {file = "numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a"}, + {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4"}, + {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f"}, + {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a"}, + {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2"}, + {file = "numpy-1.26.4-cp310-cp310-win32.whl", hash = "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07"}, + {file = "numpy-1.26.4-cp310-cp310-win_amd64.whl", hash = "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5"}, + {file = "numpy-1.26.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71"}, + {file = "numpy-1.26.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef"}, + {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e"}, + {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5"}, + {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a"}, + {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a"}, + {file = "numpy-1.26.4-cp311-cp311-win32.whl", hash = "sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20"}, + {file = "numpy-1.26.4-cp311-cp311-win_amd64.whl", hash = "sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2"}, + {file = "numpy-1.26.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b3ce300f3644fb06443ee2222c2201dd3a89ea6040541412b8fa189341847218"}, + {file = "numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:03a8c78d01d9781b28a6989f6fa1bb2c4f2d51201cf99d3dd875df6fbd96b23b"}, + {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9fad7dcb1aac3c7f0584a5a8133e3a43eeb2fe127f47e3632d43d677c66c102b"}, + {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:675d61ffbfa78604709862923189bad94014bef562cc35cf61d3a07bba02a7ed"}, + {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab47dbe5cc8210f55aa58e4805fe224dac469cde56b9f731a4c098b91917159a"}, + {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0"}, + {file = "numpy-1.26.4-cp312-cp312-win32.whl", hash = "sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110"}, + {file = "numpy-1.26.4-cp312-cp312-win_amd64.whl", hash = "sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818"}, + {file = "numpy-1.26.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7349ab0fa0c429c82442a27a9673fc802ffdb7c7775fad780226cb234965e53c"}, + {file = "numpy-1.26.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:52b8b60467cd7dd1e9ed082188b4e6bb35aa5cdd01777621a1658910745b90be"}, + {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d5241e0a80d808d70546c697135da2c613f30e28251ff8307eb72ba696945764"}, + {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f870204a840a60da0b12273ef34f7051e98c3b5961b61b0c2c1be6dfd64fbcd3"}, + {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:679b0076f67ecc0138fd2ede3a8fd196dddc2ad3254069bcb9faf9a79b1cebcd"}, + {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:47711010ad8555514b434df65f7d7b076bb8261df1ca9bb78f53d3b2db02e95c"}, + {file = "numpy-1.26.4-cp39-cp39-win32.whl", hash = "sha256:a354325ee03388678242a4d7ebcd08b5c727033fcff3b2f536aea978e15ee9e6"}, + {file = "numpy-1.26.4-cp39-cp39-win_amd64.whl", hash = "sha256:3373d5d70a5fe74a2c1bb6d2cfd9609ecf686d47a2d7b1d37a8f3b6bf6003aea"}, + {file = "numpy-1.26.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:afedb719a9dcfc7eaf2287b839d8198e06dcd4cb5d276a3df279231138e83d30"}, + {file = "numpy-1.26.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95a7476c59002f2f6c590b9b7b998306fba6a5aa646b1e22ddfeaf8f78c3a29c"}, + {file = "numpy-1.26.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7e50d0a0cc3189f9cb0aeb3a6a6af18c16f59f004b866cd2be1c14b36134a4a0"}, + {file = "numpy-1.26.4.tar.gz", hash = "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010"}, ] [[package]] name = "openpyxl" -version = "3.0.10" +version = "3.1.5" description = "A Python library to read/write Excel 2010 xlsx/xlsm files" -category = "dev" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "openpyxl-3.0.10-py2.py3-none-any.whl", hash = "sha256:0ab6d25d01799f97a9464630abacbb34aafecdcaa0ef3cba6d6b3499867d0355"}, - {file = "openpyxl-3.0.10.tar.gz", hash = "sha256:e47805627aebcf860edb4edf7987b1309c1b3632f3750538ed962bbcc3bd7449"}, + {file = "openpyxl-3.1.5-py2.py3-none-any.whl", hash = "sha256:5282c12b107bffeef825f4617dc029afaf41d0ea60823bbb665ef3079dc79de2"}, + {file = "openpyxl-3.1.5.tar.gz", hash = "sha256:cf0e3cf56142039133628b5acffe8ef0c12bc902d2aadd3e0fe5878dc08d1050"}, ] [package.dependencies] et-xmlfile = "*" [[package]] -name = "packaging" -version = "21.3" -description = "Core utilities for Python packages" -category = "main" +name = "overrides" +version = "7.7.0" +description = "A decorator to automatically detect mismatch when overriding a method." optional = false python-versions = ">=3.6" files = [ - {file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"}, - {file = "packaging-21.3.tar.gz", hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"}, + {file = "overrides-7.7.0-py3-none-any.whl", hash = "sha256:c7ed9d062f78b8e4c1a7b70bd8796b35ead4d9f510227ef9c5dc7626c60d7e49"}, + {file = "overrides-7.7.0.tar.gz", hash = "sha256:55158fa3d93b98cc75299b1e67078ad9003ca27945c76162c1c0766d6f91820a"}, ] -[package.dependencies] -pyparsing = ">=2.0.2,<3.0.5 || >3.0.5" - [[package]] -name = "pandas" -version = "1.4.3" -description = "Powerful data structures for data analysis, time series, and statistics" -category = "main" +name = "packaging" +version = "24.1" +description = "Core utilities for Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "pandas-1.4.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d51674ed8e2551ef7773820ef5dab9322be0828629f2cbf8d1fc31a0c4fed640"}, - {file = "pandas-1.4.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:16ad23db55efcc93fa878f7837267973b61ea85d244fc5ff0ccbcfa5638706c5"}, - {file = "pandas-1.4.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:958a0588149190c22cdebbc0797e01972950c927a11a900fe6c2296f207b1d6f"}, - {file = "pandas-1.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e48fbb64165cda451c06a0f9e4c7a16b534fcabd32546d531b3c240ce2844112"}, - {file = "pandas-1.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f803320c9da732cc79210d7e8cc5c8019aad512589c910c66529eb1b1818230"}, - {file = "pandas-1.4.3-cp310-cp310-win_amd64.whl", hash = "sha256:2893e923472a5e090c2d5e8db83e8f907364ec048572084c7d10ef93546be6d1"}, - {file = "pandas-1.4.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:24ea75f47bbd5574675dae21d51779a4948715416413b30614c1e8b480909f81"}, - {file = "pandas-1.4.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d5ebc990bd34f4ac3c73a2724c2dcc9ee7bf1ce6cf08e87bb25c6ad33507e318"}, - {file = "pandas-1.4.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d6c0106415ff1a10c326c49bc5dd9ea8b9897a6ca0c8688eb9c30ddec49535ef"}, - {file = "pandas-1.4.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:78b00429161ccb0da252229bcda8010b445c4bf924e721265bec5a6e96a92e92"}, - {file = "pandas-1.4.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6dfbf16b1ea4f4d0ee11084d9c026340514d1d30270eaa82a9f1297b6c8ecbf0"}, - {file = "pandas-1.4.3-cp38-cp38-win32.whl", hash = "sha256:48350592665ea3cbcd07efc8c12ff12d89be09cd47231c7925e3b8afada9d50d"}, - {file = "pandas-1.4.3-cp38-cp38-win_amd64.whl", hash = "sha256:605d572126eb4ab2eadf5c59d5d69f0608df2bf7bcad5c5880a47a20a0699e3e"}, - {file = "pandas-1.4.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a3924692160e3d847e18702bb048dc38e0e13411d2b503fecb1adf0fcf950ba4"}, - {file = "pandas-1.4.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:07238a58d7cbc8a004855ade7b75bbd22c0db4b0ffccc721556bab8a095515f6"}, - {file = "pandas-1.4.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:755679c49460bd0d2f837ab99f0a26948e68fa0718b7e42afbabd074d945bf84"}, - {file = "pandas-1.4.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41fc406e374590a3d492325b889a2686b31e7a7780bec83db2512988550dadbf"}, - {file = "pandas-1.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d9382f72a4f0e93909feece6fef5500e838ce1c355a581b3d8f259839f2ea76"}, - {file = "pandas-1.4.3-cp39-cp39-win32.whl", hash = "sha256:0daf876dba6c622154b2e6741f29e87161f844e64f84801554f879d27ba63c0d"}, - {file = "pandas-1.4.3-cp39-cp39-win_amd64.whl", hash = "sha256:721a3dd2f06ef942f83a819c0f3f6a648b2830b191a72bbe9451bcd49c3bd42e"}, - {file = "pandas-1.4.3.tar.gz", hash = "sha256:2ff7788468e75917574f080cd4681b27e1a7bf36461fe968b49a87b5a54d007c"}, + {file = "packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124"}, + {file = "packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002"}, +] + +[[package]] +name = "pandas" +version = "1.4.4" +description = "Powerful data structures for data analysis, time series, and statistics" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pandas-1.4.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:799e6a25932df7e6b1f8dabf63de064e2205dc309abb75956126a0453fd88e97"}, + {file = "pandas-1.4.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7cd1d69a387f7d5e1a5a06a87574d9ef2433847c0e78113ab51c84d3a8bcaeaa"}, + {file = "pandas-1.4.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:94f2ed1fd51e545ebf71da1e942fe1822ee01e10d3dd2a7276d01351333b7c6b"}, + {file = "pandas-1.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4591cadd06fbbbd16fafc2de6e840c1aaefeae3d5864b688004777ef1bbdede3"}, + {file = "pandas-1.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d0022fe6a313df1c4869b5edc012d734c6519a6fffa3cf70930f32e6a1078e49"}, + {file = "pandas-1.4.4-cp310-cp310-win_amd64.whl", hash = "sha256:785e878a6e6d8ddcdb8c181e600855402750052497d7fc6d6b508894f6b8830b"}, + {file = "pandas-1.4.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:c4bb8b0ab9f94207d07e401d24baebfc63057246b1a5e0cd9ee50df85a656871"}, + {file = "pandas-1.4.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:51c424ca134fdaeac9a4acd719d1ab48046afc60943a489028f0413fdbe9ef1c"}, + {file = "pandas-1.4.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ce35f947202b0b99c660221d82beb91d2e6d553d55a40b30128204e3e2c63848"}, + {file = "pandas-1.4.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee6f1848148ed3204235967613b0a32be2d77f214e9623f554511047705c1e04"}, + {file = "pandas-1.4.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e7cc960959be28d064faefc0cb2aef854d46b827c004ebea7e79b5497ed83e7d"}, + {file = "pandas-1.4.4-cp38-cp38-win32.whl", hash = "sha256:9d805bce209714b1c1fa29bfb1e42ad87e4c0a825e4b390c56a3e71593b7e8d8"}, + {file = "pandas-1.4.4-cp38-cp38-win_amd64.whl", hash = "sha256:afbddad78a98ec4d2ce08b384b81730de1ccc975b99eb663e6dac43703f36d98"}, + {file = "pandas-1.4.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a08ceb59db499864c58a9bf85ab6219d527d91f14c0240cc25fa2c261032b2a7"}, + {file = "pandas-1.4.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0959c41004e3d2d16f39c828d6da66ebee329836a7ecee49fb777ac9ad8a7501"}, + {file = "pandas-1.4.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:87b4194f344dcd14c0f885cecb22005329b38bda10f1aaf7b9596a00ec8a4768"}, + {file = "pandas-1.4.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9d2a7a3c1fea668d56bd91edbd5f2732e0af8feb9d2bf8d9bfacb2dea5fa9536"}, + {file = "pandas-1.4.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a981cfabf51c318a562deb4ae7deec594c07aee7cf18b4594a92c23718ec8275"}, + {file = "pandas-1.4.4-cp39-cp39-win32.whl", hash = "sha256:050aada67a5ec6699a7879e769825b510018a95fb9ac462bb1867483d0974a97"}, + {file = "pandas-1.4.4-cp39-cp39-win_amd64.whl", hash = "sha256:8d4d2fe2863ecddb0ba1979bdda26c8bc2ea138f5a979abe3ba80c0fa4015c91"}, + {file = "pandas-1.4.4.tar.gz", hash = "sha256:ab6c0d738617b675183e5f28db32b5148b694ad9bba0a40c3ea26d96b431db67"}, ] [package.dependencies] -numpy = [ - {version = ">=1.18.5", markers = "platform_machine != \"aarch64\" and platform_machine != \"arm64\" and python_version < \"3.10\""}, - {version = ">=1.19.2", markers = "platform_machine == \"aarch64\" and python_version < \"3.10\""}, - {version = ">=1.20.0", markers = "platform_machine == \"arm64\" and python_version < \"3.10\""}, - {version = ">=1.21.0", markers = "python_version >= \"3.10\""}, -] +numpy = {version = ">=1.21.0", markers = "python_version >= \"3.10\""} python-dateutil = ">=2.8.1" pytz = ">=2020.1" @@ -2158,7 +3009,6 @@ test = ["hypothesis (>=5.5.3)", "pytest (>=6.0)", "pytest-xdist (>=1.31)"] name = "pandas-vet" version = "0.2.3" description = "A flake8 plugin to lint pandas in an opinionated way" -category = "dev" optional = false python-versions = "*" files = [ @@ -2172,110 +3022,94 @@ flake8 = ">3.0.0" [[package]] name = "pandocfilters" -version = "1.5.0" +version = "1.5.1" description = "Utilities for writing pandoc filters in python" -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ - {file = "pandocfilters-1.5.0-py2.py3-none-any.whl", hash = "sha256:33aae3f25fd1a026079f5d27bdd52496f0e0803b3469282162bafdcbdf6ef14f"}, - {file = "pandocfilters-1.5.0.tar.gz", hash = "sha256:0b679503337d233b4339a817bfc8c50064e2eff681314376a47cb582305a7a38"}, + {file = "pandocfilters-1.5.1-py2.py3-none-any.whl", hash = "sha256:93be382804a9cdb0a7267585f157e5d1731bbe5545a85b268d6f5fe6232de2bc"}, + {file = "pandocfilters-1.5.1.tar.gz", hash = "sha256:002b4a555ee4ebc03f8b66307e287fa492e4a77b4ea14d3f934328297bb4939e"}, ] [[package]] name = "papermill" -version = "2.4.0" -description = "Parametrize and run Jupyter and nteract Notebooks" -category = "dev" +version = "2.6.0" +description = "Parameterize and run Jupyter and nteract Notebooks" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "papermill-2.4.0-py3-none-any.whl", hash = "sha256:baa76f0441257d9a25b3ad7c895e761341b94f9a70ca98cf419247fc728932d9"}, - {file = "papermill-2.4.0.tar.gz", hash = "sha256:6f8f8a9b06b39677f207c09100c8d386bcf592f0cbbdda9f0f50e81445697627"}, + {file = "papermill-2.6.0-py3-none-any.whl", hash = "sha256:0f09da6ef709f3f14dde77cb1af052d05b14019189869affff374c9e612f2dd5"}, + {file = "papermill-2.6.0.tar.gz", hash = "sha256:9fe2a91912fd578f391b4cc8d6d105e73124dcd0cde2a43c3c4a1c77ac88ea24"}, ] [package.dependencies] -ansiwrap = "*" +aiohttp = {version = ">=3.9.0", markers = "python_version == \"3.12\""} +ansicolors = "*" click = "*" entrypoints = "*" nbclient = ">=0.2.0" -nbformat = ">=5.1.2" +nbformat = ">=5.2.0" pyyaml = "*" requests = "*" -tenacity = "*" +tenacity = ">=5.0.2" tqdm = ">=4.32.2" [package.extras] -all = ["azure-datalake-store (>=0.0.30)", "azure-storage-blob (>=12.1.0)", "black (>=19.3b0)", "boto3", "gcsfs (>=0.2.0)", "pyarrow (>=2.0)", "requests (>=2.21.0)"] -azure = ["azure-datalake-store (>=0.0.30)", "azure-storage-blob (>=12.1.0)", "requests (>=2.21.0)"] +all = ["PyGithub (>=1.55)", "azure-datalake-store (>=0.0.30)", "azure-identity (>=1.3.1)", "azure-storage-blob (>=12.1.0)", "black (>=19.3b0)", "boto3", "gcsfs (>=0.2.0)", "pyarrow (>=2.0)", "requests (>=2.21.0)"] +azure = ["azure-datalake-store (>=0.0.30)", "azure-identity (>=1.3.1)", "azure-storage-blob (>=12.1.0)", "requests (>=2.21.0)"] black = ["black (>=19.3b0)"] -dev = ["attrs (>=17.4.0)", "azure-datalake-store (>=0.0.30)", "azure-storage-blob (>=12.1.0)", "black (>=19.3b0)", "boto3", "botocore", "bumpversion", "check-manifest", "codecov", "coverage", "flake8", "gcsfs (>=0.2.0)", "google-compute-engine", "ipython (>=5.0)", "ipywidgets", "moto", "notebook", "pip (>=18.1)", "pre-commit", "pyarrow (>=2.0)", "pytest (>=4.1)", "pytest-cov (>=2.6.1)", "pytest-env (>=0.6.2)", "pytest-mock (>=1.10)", "recommonmark", "requests (>=2.21.0)", "setuptools (>=38.6.0)", "tox", "twine (>=1.11.0)", "wheel (>=0.31.0)"] +dev = ["attrs (>=17.4.0)", "azure-datalake-store (>=0.0.30)", "azure-identity (>=1.3.1)", "azure-storage-blob (>=12.1.0)", "black (>=19.3b0)", "boto3", "botocore", "bumpversion", "check-manifest", "codecov", "coverage", "gcsfs (>=0.2.0)", "google-compute-engine", "ipython (>=5.0)", "ipywidgets", "moto (>=5.0.0,<5.1.0)", "notebook", "pip (>=18.1)", "pre-commit", "pytest (>=4.1)", "pytest-cov (>=2.6.1)", "pytest-env (>=0.6.2)", "pytest-mock (>=1.10)", "recommonmark", "requests (>=2.21.0)", "setuptools (>=38.6.0)", "tox", "twine (>=1.11.0)", "wheel (>=0.31.0)"] +docs = ["PyGithub (>=1.55)", "Sphinx (>=7.2.6)", "azure-datalake-store (>=0.0.30)", "azure-identity (>=1.3.1)", "azure-storage-blob (>=12.1.0)", "black (>=19.3b0)", "boto3", "entrypoints", "furo (>=2023.9.10)", "gcsfs (>=0.2.0)", "moto (>=4.2.8)", "myst-parser (>=2.0.0)", "nbformat", "pyarrow (>=2.0)", "requests (>=2.21.0)", "sphinx-copybutton (>=0.5.2)"] gcs = ["gcsfs (>=0.2.0)"] github = ["PyGithub (>=1.55)"] hdfs = ["pyarrow (>=2.0)"] s3 = ["boto3"] -test = ["attrs (>=17.4.0)", "azure-datalake-store (>=0.0.30)", "azure-storage-blob (>=12.1.0)", "black (>=19.3b0)", "boto3", "botocore", "bumpversion", "check-manifest", "codecov", "coverage", "flake8", "gcsfs (>=0.2.0)", "google-compute-engine", "ipython (>=5.0)", "ipywidgets", "moto", "notebook", "pip (>=18.1)", "pre-commit", "pyarrow (>=2.0)", "pytest (>=4.1)", "pytest-cov (>=2.6.1)", "pytest-env (>=0.6.2)", "pytest-mock (>=1.10)", "recommonmark", "requests (>=2.21.0)", "setuptools (>=38.6.0)", "tox", "twine (>=1.11.0)", "wheel (>=0.31.0)"] +test = ["attrs (>=17.4.0)", "azure-datalake-store (>=0.0.30)", "azure-identity (>=1.3.1)", "azure-storage-blob (>=12.1.0)", "black (>=19.3b0)", "boto3", "botocore", "bumpversion", "check-manifest", "codecov", "coverage", "gcsfs (>=0.2.0)", "google-compute-engine", "ipython (>=5.0)", "ipywidgets", "moto (>=5.0.0,<5.1.0)", "notebook", "pip (>=18.1)", "pre-commit", "pytest (>=4.1)", "pytest-cov (>=2.6.1)", "pytest-env (>=0.6.2)", "pytest-mock (>=1.10)", "recommonmark", "requests (>=2.21.0)", "setuptools (>=38.6.0)", "tox", "twine (>=1.11.0)", "wheel (>=0.31.0)"] [[package]] name = "parso" -version = "0.8.3" +version = "0.8.4" description = "A Python Parser" -category = "main" optional = false python-versions = ">=3.6" files = [ - {file = "parso-0.8.3-py2.py3-none-any.whl", hash = "sha256:c001d4636cd3aecdaf33cbb40aebb59b094be2a74c556778ef5576c175e19e75"}, - {file = "parso-0.8.3.tar.gz", hash = "sha256:8c07be290bb59f03588915921e29e8a50002acaf2cdc5fa0e0114f91709fafa0"}, + {file = "parso-0.8.4-py2.py3-none-any.whl", hash = "sha256:a418670a20291dacd2dddc80c377c5c3791378ee1e8d12bffc35420643d43f18"}, + {file = "parso-0.8.4.tar.gz", hash = "sha256:eb3a7b58240fb99099a345571deecc0f9540ea5f4dd2fe14c2a99d6b281ab92d"}, ] [package.extras] -qa = ["flake8 (==3.8.3)", "mypy (==0.782)"] -testing = ["docopt", "pytest (<6.0.0)"] +qa = ["flake8 (==5.0.4)", "mypy (==0.971)", "types-setuptools (==67.2.0.1)"] +testing = ["docopt", "pytest"] [[package]] name = "pathspec" -version = "0.9.0" +version = "0.12.1" description = "Utility library for gitignore style pattern matching of file paths." -category = "dev" optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" +python-versions = ">=3.8" files = [ - {file = "pathspec-0.9.0-py2.py3-none-any.whl", hash = "sha256:7d15c4ddb0b5c802d161efc417ec1a2558ea2653c2e8ad9c19098201dc1c993a"}, - {file = "pathspec-0.9.0.tar.gz", hash = "sha256:e564499435a2673d586f6b2130bb5b95f04a3ba06f81b8f895b651a3c76aabb1"}, + {file = "pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08"}, + {file = "pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712"}, ] [[package]] name = "pexpect" -version = "4.8.0" +version = "4.9.0" description = "Pexpect allows easy control of interactive console applications." -category = "main" optional = false python-versions = "*" files = [ - {file = "pexpect-4.8.0-py2.py3-none-any.whl", hash = "sha256:0b48a55dcb3c05f3329815901ea4fc1537514d6ba867a152b581d69ae3710937"}, - {file = "pexpect-4.8.0.tar.gz", hash = "sha256:fc65a43959d153d0114afe13997d439c22823a27cefceb5ff35c2178c6784c0c"}, + {file = "pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523"}, + {file = "pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f"}, ] [package.dependencies] ptyprocess = ">=0.5" -[[package]] -name = "pickleshare" -version = "0.7.5" -description = "Tiny 'shelve'-like database with concurrency support" -category = "main" -optional = false -python-versions = "*" -files = [ - {file = "pickleshare-0.7.5-py2.py3-none-any.whl", hash = "sha256:9649af414d74d4df115d5d718f82acb59c9d418196b7b4290ed47a12ce62df56"}, - {file = "pickleshare-0.7.5.tar.gz", hash = "sha256:87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca"}, -] - [[package]] name = "pillow" version = "9.3.0" description = "Python Imaging Library (Fork)" -category = "main" optional = false python-versions = ">=3.7" files = [ @@ -2346,44 +3180,31 @@ files = [ docs = ["furo", "olefile", "sphinx (>=2.4)", "sphinx-copybutton", "sphinx-issues (>=3.0.1)", "sphinx-removed-in", "sphinxext-opengraph"] tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"] -[[package]] -name = "pkgutil-resolve-name" -version = "1.3.10" -description = "Resolve a name to an object." -category = "main" -optional = false -python-versions = ">=3.6" -files = [ - {file = "pkgutil_resolve_name-1.3.10-py3-none-any.whl", hash = "sha256:ca27cc078d25c5ad71a9de0a7a330146c4e014c2462d9af19c6b828280649c5e"}, - {file = "pkgutil_resolve_name-1.3.10.tar.gz", hash = "sha256:357d6c9e6a755653cfd78893817c0853af365dd51ec97f3d358a819373bbd174"}, -] - [[package]] name = "platformdirs" -version = "2.5.2" -description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." -category = "main" +version = "4.3.6" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "platformdirs-2.5.2-py3-none-any.whl", hash = "sha256:027d8e83a2d7de06bbac4e5ef7e023c02b863d7ea5d079477e722bb41ab25788"}, - {file = "platformdirs-2.5.2.tar.gz", hash = "sha256:58c8abb07dcb441e6ee4b11d8df0ac856038f944ab98b7be6b27b2a3c7feef19"}, + {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, + {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, ] [package.extras] -docs = ["furo (>=2021.7.5b38)", "proselint (>=0.10.2)", "sphinx (>=4)", "sphinx-autodoc-typehints (>=1.12)"] -test = ["appdirs (==1.4.4)", "pytest (>=6)", "pytest-cov (>=2.7)", "pytest-mock (>=3.6)"] +docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] +type = ["mypy (>=1.11.2)"] [[package]] name = "pluggy" -version = "1.0.0" +version = "1.5.0" description = "plugin and hook calling mechanisms for python" -category = "dev" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"}, - {file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"}, + {file = "pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669"}, + {file = "pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1"}, ] [package.extras] @@ -2392,14 +3213,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "prometheus-client" -version = "0.14.1" +version = "0.21.0" description = "Python client for the Prometheus monitoring system." -category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "prometheus_client-0.14.1-py3-none-any.whl", hash = "sha256:522fded625282822a89e2773452f42df14b5a8e84a86433e3f8a189c1d54dc01"}, - {file = "prometheus_client-0.14.1.tar.gz", hash = "sha256:5459c427624961076277fdc6dc50540e2bacb98eebde99886e59ec55ed92093a"}, + {file = "prometheus_client-0.21.0-py3-none-any.whl", hash = "sha256:4fa6b4dd0ac16d58bb587c04b1caae65b8c5043e85f778f42f5f632f6af2e166"}, + {file = "prometheus_client-0.21.0.tar.gz", hash = "sha256:96c83c606b71ff2b0a433c98889d275f51ffec6c5e267de37c7a2b5c9aa9233e"}, ] [package.extras] @@ -2407,69 +3227,159 @@ twisted = ["twisted"] [[package]] name = "prompt-toolkit" -version = "3.0.30" +version = "3.0.48" description = "Library for building powerful interactive command lines in Python" -category = "main" optional = false -python-versions = ">=3.6.2" +python-versions = ">=3.7.0" files = [ - {file = "prompt_toolkit-3.0.30-py3-none-any.whl", hash = "sha256:d8916d3f62a7b67ab353a952ce4ced6a1d2587dfe9ef8ebc30dd7c386751f289"}, - {file = "prompt_toolkit-3.0.30.tar.gz", hash = "sha256:859b283c50bde45f5f97829f77a4674d1c1fcd88539364f1b28a37805cfd89c0"}, + {file = "prompt_toolkit-3.0.48-py3-none-any.whl", hash = "sha256:f49a827f90062e411f1ce1f854f2aedb3c23353244f8108b89283587397ac10e"}, + {file = "prompt_toolkit-3.0.48.tar.gz", hash = "sha256:d6623ab0477a80df74e646bdbc93621143f5caf104206aa29294d53de1a03d90"}, ] [package.dependencies] wcwidth = "*" [[package]] -name = "psutil" -version = "5.9.1" -description = "Cross-platform lib for process and system monitoring in Python." -category = "main" +name = "propcache" +version = "0.2.0" +description = "Accelerated property cache" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +python-versions = ">=3.8" files = [ - {file = "psutil-5.9.1-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:799759d809c31aab5fe4579e50addf84565e71c1dc9f1c31258f159ff70d3f87"}, - {file = "psutil-5.9.1-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:9272167b5f5fbfe16945be3db475b3ce8d792386907e673a209da686176552af"}, - {file = "psutil-5.9.1-cp27-cp27m-win32.whl", hash = "sha256:0904727e0b0a038830b019551cf3204dd48ef5c6868adc776e06e93d615fc5fc"}, - {file = "psutil-5.9.1-cp27-cp27m-win_amd64.whl", hash = "sha256:e7e10454cb1ab62cc6ce776e1c135a64045a11ec4c6d254d3f7689c16eb3efd2"}, - {file = "psutil-5.9.1-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:56960b9e8edcca1456f8c86a196f0c3d8e3e361320071c93378d41445ffd28b0"}, - {file = "psutil-5.9.1-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:44d1826150d49ffd62035785a9e2c56afcea66e55b43b8b630d7706276e87f22"}, - {file = "psutil-5.9.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c7be9d7f5b0d206f0bbc3794b8e16fb7dbc53ec9e40bbe8787c6f2d38efcf6c9"}, - {file = "psutil-5.9.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abd9246e4cdd5b554a2ddd97c157e292ac11ef3e7af25ac56b08b455c829dca8"}, - {file = "psutil-5.9.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:29a442e25fab1f4d05e2655bb1b8ab6887981838d22effa2396d584b740194de"}, - {file = "psutil-5.9.1-cp310-cp310-win32.whl", hash = "sha256:20b27771b077dcaa0de1de3ad52d22538fe101f9946d6dc7869e6f694f079329"}, - {file = "psutil-5.9.1-cp310-cp310-win_amd64.whl", hash = "sha256:58678bbadae12e0db55186dc58f2888839228ac9f41cc7848853539b70490021"}, - {file = "psutil-5.9.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:3a76ad658641172d9c6e593de6fe248ddde825b5866464c3b2ee26c35da9d237"}, - {file = "psutil-5.9.1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a6a11e48cb93a5fa606306493f439b4aa7c56cb03fc9ace7f6bfa21aaf07c453"}, - {file = "psutil-5.9.1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:068935df39055bf27a29824b95c801c7a5130f118b806eee663cad28dca97685"}, - {file = "psutil-5.9.1-cp36-cp36m-win32.whl", hash = "sha256:0f15a19a05f39a09327345bc279c1ba4a8cfb0172cc0d3c7f7d16c813b2e7d36"}, - {file = "psutil-5.9.1-cp36-cp36m-win_amd64.whl", hash = "sha256:db417f0865f90bdc07fa30e1aadc69b6f4cad7f86324b02aa842034efe8d8c4d"}, - {file = "psutil-5.9.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:91c7ff2a40c373d0cc9121d54bc5f31c4fa09c346528e6a08d1845bce5771ffc"}, - {file = "psutil-5.9.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fea896b54f3a4ae6f790ac1d017101252c93f6fe075d0e7571543510f11d2676"}, - {file = "psutil-5.9.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3054e923204b8e9c23a55b23b6df73a8089ae1d075cb0bf711d3e9da1724ded4"}, - {file = "psutil-5.9.1-cp37-cp37m-win32.whl", hash = "sha256:d2d006286fbcb60f0b391741f520862e9b69f4019b4d738a2a45728c7e952f1b"}, - {file = "psutil-5.9.1-cp37-cp37m-win_amd64.whl", hash = "sha256:b14ee12da9338f5e5b3a3ef7ca58b3cba30f5b66f7662159762932e6d0b8f680"}, - {file = "psutil-5.9.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:19f36c16012ba9cfc742604df189f2f28d2720e23ff7d1e81602dbe066be9fd1"}, - {file = "psutil-5.9.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:944c4b4b82dc4a1b805329c980f270f170fdc9945464223f2ec8e57563139cf4"}, - {file = "psutil-5.9.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b6750a73a9c4a4e689490ccb862d53c7b976a2a35c4e1846d049dcc3f17d83b"}, - {file = "psutil-5.9.1-cp38-cp38-win32.whl", hash = "sha256:a8746bfe4e8f659528c5c7e9af5090c5a7d252f32b2e859c584ef7d8efb1e689"}, - {file = "psutil-5.9.1-cp38-cp38-win_amd64.whl", hash = "sha256:79c9108d9aa7fa6fba6e668b61b82facc067a6b81517cab34d07a84aa89f3df0"}, - {file = "psutil-5.9.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:28976df6c64ddd6320d281128817f32c29b539a52bdae5e192537bc338a9ec81"}, - {file = "psutil-5.9.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b88f75005586131276634027f4219d06e0561292be8bd6bc7f2f00bdabd63c4e"}, - {file = "psutil-5.9.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:645bd4f7bb5b8633803e0b6746ff1628724668681a434482546887d22c7a9537"}, - {file = "psutil-5.9.1-cp39-cp39-win32.whl", hash = "sha256:32c52611756096ae91f5d1499fe6c53b86f4a9ada147ee42db4991ba1520e574"}, - {file = "psutil-5.9.1-cp39-cp39-win_amd64.whl", hash = "sha256:f65f9a46d984b8cd9b3750c2bdb419b2996895b005aefa6cbaba9a143b1ce2c5"}, - {file = "psutil-5.9.1.tar.gz", hash = "sha256:57f1819b5d9e95cdfb0c881a8a5b7d542ed0b7c522d575706a80bedc848c8954"}, + {file = "propcache-0.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:c5869b8fd70b81835a6f187c5fdbe67917a04d7e52b6e7cc4e5fe39d55c39d58"}, + {file = "propcache-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:952e0d9d07609d9c5be361f33b0d6d650cd2bae393aabb11d9b719364521984b"}, + {file = "propcache-0.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:33ac8f098df0585c0b53009f039dfd913b38c1d2edafed0cedcc0c32a05aa110"}, + {file = "propcache-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:97e48e8875e6c13909c800fa344cd54cc4b2b0db1d5f911f840458a500fde2c2"}, + {file = "propcache-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:388f3217649d6d59292b722d940d4d2e1e6a7003259eb835724092a1cca0203a"}, + {file = "propcache-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f571aea50ba5623c308aa146eb650eebf7dbe0fd8c5d946e28343cb3b5aad577"}, + {file = "propcache-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3dfafb44f7bb35c0c06eda6b2ab4bfd58f02729e7c4045e179f9a861b07c9850"}, + {file = "propcache-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a3ebe9a75be7ab0b7da2464a77bb27febcb4fab46a34f9288f39d74833db7f61"}, + {file = "propcache-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d2f0d0f976985f85dfb5f3d685697ef769faa6b71993b46b295cdbbd6be8cc37"}, + {file = "propcache-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:a3dc1a4b165283bd865e8f8cb5f0c64c05001e0718ed06250d8cac9bec115b48"}, + {file = "propcache-0.2.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:9e0f07b42d2a50c7dd2d8675d50f7343d998c64008f1da5fef888396b7f84630"}, + {file = "propcache-0.2.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:e63e3e1e0271f374ed489ff5ee73d4b6e7c60710e1f76af5f0e1a6117cd26394"}, + {file = "propcache-0.2.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:56bb5c98f058a41bb58eead194b4db8c05b088c93d94d5161728515bd52b052b"}, + {file = "propcache-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7665f04d0c7f26ff8bb534e1c65068409bf4687aa2534faf7104d7182debb336"}, + {file = "propcache-0.2.0-cp310-cp310-win32.whl", hash = "sha256:7cf18abf9764746b9c8704774d8b06714bcb0a63641518a3a89c7f85cc02c2ad"}, + {file = "propcache-0.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:cfac69017ef97db2438efb854edf24f5a29fd09a536ff3a992b75990720cdc99"}, + {file = "propcache-0.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:63f13bf09cc3336eb04a837490b8f332e0db41da66995c9fd1ba04552e516354"}, + {file = "propcache-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:608cce1da6f2672a56b24a015b42db4ac612ee709f3d29f27a00c943d9e851de"}, + {file = "propcache-0.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:466c219deee4536fbc83c08d09115249db301550625c7fef1c5563a584c9bc87"}, + {file = "propcache-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fc2db02409338bf36590aa985a461b2c96fce91f8e7e0f14c50c5fcc4f229016"}, + {file = "propcache-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a6ed8db0a556343d566a5c124ee483ae113acc9a557a807d439bcecc44e7dfbb"}, + {file = "propcache-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:91997d9cb4a325b60d4e3f20967f8eb08dfcb32b22554d5ef78e6fd1dda743a2"}, + {file = "propcache-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c7dde9e533c0a49d802b4f3f218fa9ad0a1ce21f2c2eb80d5216565202acab4"}, + {file = "propcache-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffcad6c564fe6b9b8916c1aefbb37a362deebf9394bd2974e9d84232e3e08504"}, + {file = "propcache-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:97a58a28bcf63284e8b4d7b460cbee1edaab24634e82059c7b8c09e65284f178"}, + {file = "propcache-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:945db8ee295d3af9dbdbb698cce9bbc5c59b5c3fe328bbc4387f59a8a35f998d"}, + {file = "propcache-0.2.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:39e104da444a34830751715f45ef9fc537475ba21b7f1f5b0f4d71a3b60d7fe2"}, + {file = "propcache-0.2.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:c5ecca8f9bab618340c8e848d340baf68bcd8ad90a8ecd7a4524a81c1764b3db"}, + {file = "propcache-0.2.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:c436130cc779806bdf5d5fae0d848713105472b8566b75ff70048c47d3961c5b"}, + {file = "propcache-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:191db28dc6dcd29d1a3e063c3be0b40688ed76434622c53a284e5427565bbd9b"}, + {file = "propcache-0.2.0-cp311-cp311-win32.whl", hash = "sha256:5f2564ec89058ee7c7989a7b719115bdfe2a2fb8e7a4543b8d1c0cc4cf6478c1"}, + {file = "propcache-0.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:6e2e54267980349b723cff366d1e29b138b9a60fa376664a157a342689553f71"}, + {file = "propcache-0.2.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:2ee7606193fb267be4b2e3b32714f2d58cad27217638db98a60f9efb5efeccc2"}, + {file = "propcache-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:91ee8fc02ca52e24bcb77b234f22afc03288e1dafbb1f88fe24db308910c4ac7"}, + {file = "propcache-0.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2e900bad2a8456d00a113cad8c13343f3b1f327534e3589acc2219729237a2e8"}, + {file = "propcache-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f52a68c21363c45297aca15561812d542f8fc683c85201df0bebe209e349f793"}, + {file = "propcache-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e41d67757ff4fbc8ef2af99b338bfb955010444b92929e9e55a6d4dcc3c4f09"}, + {file = "propcache-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a64e32f8bd94c105cc27f42d3b658902b5bcc947ece3c8fe7bc1b05982f60e89"}, + {file = "propcache-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:55346705687dbd7ef0d77883ab4f6fabc48232f587925bdaf95219bae072491e"}, + {file = "propcache-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:00181262b17e517df2cd85656fcd6b4e70946fe62cd625b9d74ac9977b64d8d9"}, + {file = "propcache-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6994984550eaf25dd7fc7bd1b700ff45c894149341725bb4edc67f0ffa94efa4"}, + {file = "propcache-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:56295eb1e5f3aecd516d91b00cfd8bf3a13991de5a479df9e27dd569ea23959c"}, + {file = "propcache-0.2.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:439e76255daa0f8151d3cb325f6dd4a3e93043e6403e6491813bcaaaa8733887"}, + {file = "propcache-0.2.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:f6475a1b2ecb310c98c28d271a30df74f9dd436ee46d09236a6b750a7599ce57"}, + {file = "propcache-0.2.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:3444cdba6628accf384e349014084b1cacd866fbb88433cd9d279d90a54e0b23"}, + {file = "propcache-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:4a9d9b4d0a9b38d1c391bb4ad24aa65f306c6f01b512e10a8a34a2dc5675d348"}, + {file = "propcache-0.2.0-cp312-cp312-win32.whl", hash = "sha256:69d3a98eebae99a420d4b28756c8ce6ea5a29291baf2dc9ff9414b42676f61d5"}, + {file = "propcache-0.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:ad9c9b99b05f163109466638bd30ada1722abb01bbb85c739c50b6dc11f92dc3"}, + {file = "propcache-0.2.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ecddc221a077a8132cf7c747d5352a15ed763b674c0448d811f408bf803d9ad7"}, + {file = "propcache-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0e53cb83fdd61cbd67202735e6a6687a7b491c8742dfc39c9e01e80354956763"}, + {file = "propcache-0.2.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92fe151145a990c22cbccf9ae15cae8ae9eddabfc949a219c9f667877e40853d"}, + {file = "propcache-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d6a21ef516d36909931a2967621eecb256018aeb11fc48656e3257e73e2e247a"}, + {file = "propcache-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f88a4095e913f98988f5b338c1d4d5d07dbb0b6bad19892fd447484e483ba6b"}, + {file = "propcache-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a5b3bb545ead161be780ee85a2b54fdf7092815995661947812dde94a40f6fb"}, + {file = "propcache-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:67aeb72e0f482709991aa91345a831d0b707d16b0257e8ef88a2ad246a7280bf"}, + {file = "propcache-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3c997f8c44ec9b9b0bcbf2d422cc00a1d9b9c681f56efa6ca149a941e5560da2"}, + {file = "propcache-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:2a66df3d4992bc1d725b9aa803e8c5a66c010c65c741ad901e260ece77f58d2f"}, + {file = "propcache-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:3ebbcf2a07621f29638799828b8d8668c421bfb94c6cb04269130d8de4fb7136"}, + {file = "propcache-0.2.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:1235c01ddaa80da8235741e80815ce381c5267f96cc49b1477fdcf8c047ef325"}, + {file = "propcache-0.2.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:3947483a381259c06921612550867b37d22e1df6d6d7e8361264b6d037595f44"}, + {file = "propcache-0.2.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:d5bed7f9805cc29c780f3aee05de3262ee7ce1f47083cfe9f77471e9d6777e83"}, + {file = "propcache-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e4a91d44379f45f5e540971d41e4626dacd7f01004826a18cb048e7da7e96544"}, + {file = "propcache-0.2.0-cp313-cp313-win32.whl", hash = "sha256:f902804113e032e2cdf8c71015651c97af6418363bea8d78dc0911d56c335032"}, + {file = "propcache-0.2.0-cp313-cp313-win_amd64.whl", hash = "sha256:8f188cfcc64fb1266f4684206c9de0e80f54622c3f22a910cbd200478aeae61e"}, + {file = "propcache-0.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:53d1bd3f979ed529f0805dd35ddaca330f80a9a6d90bc0121d2ff398f8ed8861"}, + {file = "propcache-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:83928404adf8fb3d26793665633ea79b7361efa0287dfbd372a7e74311d51ee6"}, + {file = "propcache-0.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:77a86c261679ea5f3896ec060be9dc8e365788248cc1e049632a1be682442063"}, + {file = "propcache-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:218db2a3c297a3768c11a34812e63b3ac1c3234c3a086def9c0fee50d35add1f"}, + {file = "propcache-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7735e82e3498c27bcb2d17cb65d62c14f1100b71723b68362872bca7d0913d90"}, + {file = "propcache-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:20a617c776f520c3875cf4511e0d1db847a076d720714ae35ffe0df3e440be68"}, + {file = "propcache-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:67b69535c870670c9f9b14a75d28baa32221d06f6b6fa6f77a0a13c5a7b0a5b9"}, + {file = "propcache-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4569158070180c3855e9c0791c56be3ceeb192defa2cdf6a3f39e54319e56b89"}, + {file = "propcache-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:db47514ffdbd91ccdc7e6f8407aac4ee94cc871b15b577c1c324236b013ddd04"}, + {file = "propcache-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl", hash = "sha256:2a60ad3e2553a74168d275a0ef35e8c0a965448ffbc3b300ab3a5bb9956c2162"}, + {file = "propcache-0.2.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:662dd62358bdeaca0aee5761de8727cfd6861432e3bb828dc2a693aa0471a563"}, + {file = "propcache-0.2.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:25a1f88b471b3bc911d18b935ecb7115dff3a192b6fef46f0bfaf71ff4f12418"}, + {file = "propcache-0.2.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:f60f0ac7005b9f5a6091009b09a419ace1610e163fa5deaba5ce3484341840e7"}, + {file = "propcache-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:74acd6e291f885678631b7ebc85d2d4aec458dd849b8c841b57ef04047833bed"}, + {file = "propcache-0.2.0-cp38-cp38-win32.whl", hash = "sha256:d9b6ddac6408194e934002a69bcaadbc88c10b5f38fb9307779d1c629181815d"}, + {file = "propcache-0.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:676135dcf3262c9c5081cc8f19ad55c8a64e3f7282a21266d05544450bffc3a5"}, + {file = "propcache-0.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:25c8d773a62ce0451b020c7b29a35cfbc05de8b291163a7a0f3b7904f27253e6"}, + {file = "propcache-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:375a12d7556d462dc64d70475a9ee5982465fbb3d2b364f16b86ba9135793638"}, + {file = "propcache-0.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1ec43d76b9677637a89d6ab86e1fef70d739217fefa208c65352ecf0282be957"}, + {file = "propcache-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f45eec587dafd4b2d41ac189c2156461ebd0c1082d2fe7013571598abb8505d1"}, + {file = "propcache-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bc092ba439d91df90aea38168e11f75c655880c12782facf5cf9c00f3d42b562"}, + {file = "propcache-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fa1076244f54bb76e65e22cb6910365779d5c3d71d1f18b275f1dfc7b0d71b4d"}, + {file = "propcache-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:682a7c79a2fbf40f5dbb1eb6bfe2cd865376deeac65acf9beb607505dced9e12"}, + {file = "propcache-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8e40876731f99b6f3c897b66b803c9e1c07a989b366c6b5b475fafd1f7ba3fb8"}, + {file = "propcache-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:363ea8cd3c5cb6679f1c2f5f1f9669587361c062e4899fce56758efa928728f8"}, + {file = "propcache-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:140fbf08ab3588b3468932974a9331aff43c0ab8a2ec2c608b6d7d1756dbb6cb"}, + {file = "propcache-0.2.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e70fac33e8b4ac63dfc4c956fd7d85a0b1139adcfc0d964ce288b7c527537fea"}, + {file = "propcache-0.2.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:b33d7a286c0dc1a15f5fc864cc48ae92a846df287ceac2dd499926c3801054a6"}, + {file = "propcache-0.2.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:f6d5749fdd33d90e34c2efb174c7e236829147a2713334d708746e94c4bde40d"}, + {file = "propcache-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:22aa8f2272d81d9317ff5756bb108021a056805ce63dd3630e27d042c8092798"}, + {file = "propcache-0.2.0-cp39-cp39-win32.whl", hash = "sha256:73e4b40ea0eda421b115248d7e79b59214411109a5bc47d0d48e4c73e3b8fcf9"}, + {file = "propcache-0.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:9517d5e9e0731957468c29dbfd0f976736a0e55afaea843726e887f36fe017df"}, + {file = "propcache-0.2.0-py3-none-any.whl", hash = "sha256:2ccc28197af5313706511fab3a8b66dcd6da067a1331372c82ea1cb74285e036"}, + {file = "propcache-0.2.0.tar.gz", hash = "sha256:df81779732feb9d01e5d513fad0122efb3d53bbc75f61b2a4f29a020bc985e70"}, +] + +[[package]] +name = "psutil" +version = "6.1.0" +description = "Cross-platform lib for process and system monitoring in Python." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ + {file = "psutil-6.1.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:ff34df86226c0227c52f38b919213157588a678d049688eded74c76c8ba4a5d0"}, + {file = "psutil-6.1.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:c0e0c00aa18ca2d3b2b991643b799a15fc8f0563d2ebb6040f64ce8dc027b942"}, + {file = "psutil-6.1.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:000d1d1ebd634b4efb383f4034437384e44a6d455260aaee2eca1e9c1b55f047"}, + {file = "psutil-6.1.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:5cd2bcdc75b452ba2e10f0e8ecc0b57b827dd5d7aaffbc6821b2a9a242823a76"}, + {file = "psutil-6.1.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:045f00a43c737f960d273a83973b2511430d61f283a44c96bf13a6e829ba8fdc"}, + {file = "psutil-6.1.0-cp27-none-win32.whl", hash = "sha256:9118f27452b70bb1d9ab3198c1f626c2499384935aaf55388211ad982611407e"}, + {file = "psutil-6.1.0-cp27-none-win_amd64.whl", hash = "sha256:a8506f6119cff7015678e2bce904a4da21025cc70ad283a53b099e7620061d85"}, + {file = "psutil-6.1.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:6e2dcd475ce8b80522e51d923d10c7871e45f20918e027ab682f94f1c6351688"}, + {file = "psutil-6.1.0-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:0895b8414afafc526712c498bd9de2b063deaac4021a3b3c34566283464aff8e"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9dcbfce5d89f1d1f2546a2090f4fcf87c7f669d1d90aacb7d7582addece9fb38"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:498c6979f9c6637ebc3a73b3f87f9eb1ec24e1ce53a7c5173b8508981614a90b"}, + {file = "psutil-6.1.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d905186d647b16755a800e7263d43df08b790d709d575105d419f8b6ef65423a"}, + {file = "psutil-6.1.0-cp36-cp36m-win32.whl", hash = "sha256:6d3fbbc8d23fcdcb500d2c9f94e07b1342df8ed71b948a2649b5cb060a7c94ca"}, + {file = "psutil-6.1.0-cp36-cp36m-win_amd64.whl", hash = "sha256:1209036fbd0421afde505a4879dee3b2fd7b1e14fee81c0069807adcbbcca747"}, + {file = "psutil-6.1.0-cp37-abi3-win32.whl", hash = "sha256:1ad45a1f5d0b608253b11508f80940985d1d0c8f6111b5cb637533a0e6ddc13e"}, + {file = "psutil-6.1.0-cp37-abi3-win_amd64.whl", hash = "sha256:a8fb3752b491d246034fa4d279ff076501588ce8cbcdbb62c32fd7a377d996be"}, + {file = "psutil-6.1.0.tar.gz", hash = "sha256:353815f59a7f64cdaca1c0307ee13558a0512f6db064e92fe833784f08539c7a"}, ] [package.extras] -test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"] +dev = ["black", "check-manifest", "coverage", "packaging", "pylint", "pyperf", "pypinfo", "pytest-cov", "requests", "rstcheck", "ruff", "sphinx", "sphinx_rtd_theme", "toml-sort", "twine", "virtualenv", "wheel"] +test = ["pytest", "pytest-xdist", "setuptools"] [[package]] name = "ptyprocess" version = "0.7.0" description = "Run a subprocess in a pseudo terminal" -category = "main" optional = false python-versions = "*" files = [ @@ -2479,14 +3389,13 @@ files = [ [[package]] name = "pure-eval" -version = "0.2.2" +version = "0.2.3" description = "Safely evaluate AST nodes without side effects" -category = "main" optional = false python-versions = "*" files = [ - {file = "pure_eval-0.2.2-py3-none-any.whl", hash = "sha256:01eaab343580944bc56080ebe0a674b39ec44a945e6d09ba7db3cb8cec289350"}, - {file = "pure_eval-0.2.2.tar.gz", hash = "sha256:2b45320af6dfaa1750f543d714b6d1c520a1688dec6fd24d339063ce0aaa9ac3"}, + {file = "pure_eval-0.2.3-py3-none-any.whl", hash = "sha256:1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0"}, + {file = "pure_eval-0.2.3.tar.gz", hash = "sha256:5f4e983f40564c576c7c8635ae88db5956bb2229d7e9237d03b3c0b0190eaf42"}, ] [package.extras] @@ -2496,7 +3405,6 @@ tests = ["pytest"] name = "py" version = "1.11.0" description = "library with cross-python path, ini-parsing, io, code, log facilities" -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ @@ -2508,7 +3416,6 @@ files = [ name = "pycodestyle" version = "2.7.0" description = "Python style guide checker" -category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -2518,64 +3425,69 @@ files = [ [[package]] name = "pycparser" -version = "2.21" +version = "2.22" description = "C parser in Python" -category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +python-versions = ">=3.8" files = [ - {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, - {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, + {file = "pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc"}, + {file = "pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6"}, ] [[package]] name = "pydantic" -version = "1.10.2" +version = "1.10.18" description = "Data validation and settings management using python type hints" -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "pydantic-1.10.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bb6ad4489af1bac6955d38ebcb95079a836af31e4c4f74aba1ca05bb9f6027bd"}, - {file = "pydantic-1.10.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a1f5a63a6dfe19d719b1b6e6106561869d2efaca6167f84f5ab9347887d78b98"}, - {file = "pydantic-1.10.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:352aedb1d71b8b0736c6d56ad2bd34c6982720644b0624462059ab29bd6e5912"}, - {file = "pydantic-1.10.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:19b3b9ccf97af2b7519c42032441a891a5e05c68368f40865a90eb88833c2559"}, - {file = "pydantic-1.10.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e9069e1b01525a96e6ff49e25876d90d5a563bc31c658289a8772ae186552236"}, - {file = "pydantic-1.10.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:355639d9afc76bcb9b0c3000ddcd08472ae75318a6eb67a15866b87e2efa168c"}, - {file = "pydantic-1.10.2-cp310-cp310-win_amd64.whl", hash = "sha256:ae544c47bec47a86bc7d350f965d8b15540e27e5aa4f55170ac6a75e5f73b644"}, - {file = "pydantic-1.10.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a4c805731c33a8db4b6ace45ce440c4ef5336e712508b4d9e1aafa617dc9907f"}, - {file = "pydantic-1.10.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d49f3db871575e0426b12e2f32fdb25e579dea16486a26e5a0474af87cb1ab0a"}, - {file = "pydantic-1.10.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:37c90345ec7dd2f1bcef82ce49b6235b40f282b94d3eec47e801baf864d15525"}, - {file = "pydantic-1.10.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7b5ba54d026c2bd2cb769d3468885f23f43710f651688e91f5fb1edcf0ee9283"}, - {file = "pydantic-1.10.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:05e00dbebbe810b33c7a7362f231893183bcc4251f3f2ff991c31d5c08240c42"}, - {file = "pydantic-1.10.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2d0567e60eb01bccda3a4df01df677adf6b437958d35c12a3ac3e0f078b0ee52"}, - {file = "pydantic-1.10.2-cp311-cp311-win_amd64.whl", hash = "sha256:c6f981882aea41e021f72779ce2a4e87267458cc4d39ea990729e21ef18f0f8c"}, - {file = "pydantic-1.10.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c4aac8e7103bf598373208f6299fa9a5cfd1fc571f2d40bf1dd1955a63d6eeb5"}, - {file = "pydantic-1.10.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:81a7b66c3f499108b448f3f004801fcd7d7165fb4200acb03f1c2402da73ce4c"}, - {file = "pydantic-1.10.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bedf309630209e78582ffacda64a21f96f3ed2e51fbf3962d4d488e503420254"}, - {file = "pydantic-1.10.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:9300fcbebf85f6339a02c6994b2eb3ff1b9c8c14f502058b5bf349d42447dcf5"}, - {file = "pydantic-1.10.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:216f3bcbf19c726b1cc22b099dd409aa371f55c08800bcea4c44c8f74b73478d"}, - {file = "pydantic-1.10.2-cp37-cp37m-win_amd64.whl", hash = "sha256:dd3f9a40c16daf323cf913593083698caee97df2804aa36c4b3175d5ac1b92a2"}, - {file = "pydantic-1.10.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b97890e56a694486f772d36efd2ba31612739bc6f3caeee50e9e7e3ebd2fdd13"}, - {file = "pydantic-1.10.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9cabf4a7f05a776e7793e72793cd92cc865ea0e83a819f9ae4ecccb1b8aa6116"}, - {file = "pydantic-1.10.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:06094d18dd5e6f2bbf93efa54991c3240964bb663b87729ac340eb5014310624"}, - {file = "pydantic-1.10.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cc78cc83110d2f275ec1970e7a831f4e371ee92405332ebfe9860a715f8336e1"}, - {file = "pydantic-1.10.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1ee433e274268a4b0c8fde7ad9d58ecba12b069a033ecc4645bb6303c062d2e9"}, - {file = "pydantic-1.10.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:7c2abc4393dea97a4ccbb4ec7d8658d4e22c4765b7b9b9445588f16c71ad9965"}, - {file = "pydantic-1.10.2-cp38-cp38-win_amd64.whl", hash = "sha256:0b959f4d8211fc964772b595ebb25f7652da3f22322c007b6fed26846a40685e"}, - {file = "pydantic-1.10.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c33602f93bfb67779f9c507e4d69451664524389546bacfe1bee13cae6dc7488"}, - {file = "pydantic-1.10.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5760e164b807a48a8f25f8aa1a6d857e6ce62e7ec83ea5d5c5a802eac81bad41"}, - {file = "pydantic-1.10.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6eb843dcc411b6a2237a694f5e1d649fc66c6064d02b204a7e9d194dff81eb4b"}, - {file = "pydantic-1.10.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b8795290deaae348c4eba0cebb196e1c6b98bdbe7f50b2d0d9a4a99716342fe"}, - {file = "pydantic-1.10.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:e0bedafe4bc165ad0a56ac0bd7695df25c50f76961da29c050712596cf092d6d"}, - {file = "pydantic-1.10.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:2e05aed07fa02231dbf03d0adb1be1d79cabb09025dd45aa094aa8b4e7b9dcda"}, - {file = "pydantic-1.10.2-cp39-cp39-win_amd64.whl", hash = "sha256:c1ba1afb396148bbc70e9eaa8c06c1716fdddabaf86e7027c5988bae2a829ab6"}, - {file = "pydantic-1.10.2-py3-none-any.whl", hash = "sha256:1b6ee725bd6e83ec78b1aa32c5b1fa67a3a65badddde3976bca5fe4568f27709"}, - {file = "pydantic-1.10.2.tar.gz", hash = "sha256:91b8e218852ef6007c2b98cd861601c6a09f1aa32bbbb74fab5b1c33d4a1e410"}, + {file = "pydantic-1.10.18-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e405ffcc1254d76bb0e760db101ee8916b620893e6edfbfee563b3c6f7a67c02"}, + {file = "pydantic-1.10.18-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e306e280ebebc65040034bff1a0a81fd86b2f4f05daac0131f29541cafd80b80"}, + {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11d9d9b87b50338b1b7de4ebf34fd29fdb0d219dc07ade29effc74d3d2609c62"}, + {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b661ce52c7b5e5f600c0c3c5839e71918346af2ef20062705ae76b5c16914cab"}, + {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:c20f682defc9ef81cd7eaa485879ab29a86a0ba58acf669a78ed868e72bb89e0"}, + {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c5ae6b7c8483b1e0bf59e5f1843e4fd8fd405e11df7de217ee65b98eb5462861"}, + {file = "pydantic-1.10.18-cp310-cp310-win_amd64.whl", hash = "sha256:74fe19dda960b193b0eb82c1f4d2c8e5e26918d9cda858cbf3f41dd28549cb70"}, + {file = "pydantic-1.10.18-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:72fa46abace0a7743cc697dbb830a41ee84c9db8456e8d77a46d79b537efd7ec"}, + {file = "pydantic-1.10.18-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ef0fe7ad7cbdb5f372463d42e6ed4ca9c443a52ce544472d8842a0576d830da5"}, + {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a00e63104346145389b8e8f500bc6a241e729feaf0559b88b8aa513dd2065481"}, + {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae6fa2008e1443c46b7b3a5eb03800121868d5ab6bc7cda20b5df3e133cde8b3"}, + {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:9f463abafdc92635da4b38807f5b9972276be7c8c5121989768549fceb8d2588"}, + {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3445426da503c7e40baccefb2b2989a0c5ce6b163679dd75f55493b460f05a8f"}, + {file = "pydantic-1.10.18-cp311-cp311-win_amd64.whl", hash = "sha256:467a14ee2183bc9c902579bb2f04c3d3dac00eff52e252850509a562255b2a33"}, + {file = "pydantic-1.10.18-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:efbc8a7f9cb5fe26122acba1852d8dcd1e125e723727c59dcd244da7bdaa54f2"}, + {file = "pydantic-1.10.18-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:24a4a159d0f7a8e26bf6463b0d3d60871d6a52eac5bb6a07a7df85c806f4c048"}, + {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b74be007703547dc52e3c37344d130a7bfacca7df112a9e5ceeb840a9ce195c7"}, + {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fcb20d4cb355195c75000a49bb4a31d75e4295200df620f454bbc6bdf60ca890"}, + {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:46f379b8cb8a3585e3f61bf9ae7d606c70d133943f339d38b76e041ec234953f"}, + {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:cbfbca662ed3729204090c4d09ee4beeecc1a7ecba5a159a94b5a4eb24e3759a"}, + {file = "pydantic-1.10.18-cp312-cp312-win_amd64.whl", hash = "sha256:c6d0a9f9eccaf7f438671a64acf654ef0d045466e63f9f68a579e2383b63f357"}, + {file = "pydantic-1.10.18-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3d5492dbf953d7d849751917e3b2433fb26010d977aa7a0765c37425a4026ff1"}, + {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe734914977eed33033b70bfc097e1baaffb589517863955430bf2e0846ac30f"}, + {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15fdbe568beaca9aacfccd5ceadfb5f1a235087a127e8af5e48df9d8a45ae85c"}, + {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c3e742f62198c9eb9201781fbebe64533a3bbf6a76a91b8d438d62b813079dbc"}, + {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:19a3bd00b9dafc2cd7250d94d5b578edf7a0bd7daf102617153ff9a8fa37871c"}, + {file = "pydantic-1.10.18-cp37-cp37m-win_amd64.whl", hash = "sha256:2ce3fcf75b2bae99aa31bd4968de0474ebe8c8258a0110903478bd83dfee4e3b"}, + {file = "pydantic-1.10.18-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:335a32d72c51a313b33fa3a9b0fe283503272ef6467910338e123f90925f0f03"}, + {file = "pydantic-1.10.18-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:34a3613c7edb8c6fa578e58e9abe3c0f5e7430e0fc34a65a415a1683b9c32d9a"}, + {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9ee4e6ca1d9616797fa2e9c0bfb8815912c7d67aca96f77428e316741082a1b"}, + {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23e8ec1ce4e57b4f441fc91e3c12adba023fedd06868445a5b5f1d48f0ab3682"}, + {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:44ae8a3e35a54d2e8fa88ed65e1b08967a9ef8c320819a969bfa09ce5528fafe"}, + {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5389eb3b48a72da28c6e061a247ab224381435256eb541e175798483368fdd3"}, + {file = "pydantic-1.10.18-cp38-cp38-win_amd64.whl", hash = "sha256:069b9c9fc645474d5ea3653788b544a9e0ccd3dca3ad8c900c4c6eac844b4620"}, + {file = "pydantic-1.10.18-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:80b982d42515632eb51f60fa1d217dfe0729f008e81a82d1544cc392e0a50ddf"}, + {file = "pydantic-1.10.18-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:aad8771ec8dbf9139b01b56f66386537c6fe4e76c8f7a47c10261b69ad25c2c9"}, + {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941a2eb0a1509bd7f31e355912eb33b698eb0051730b2eaf9e70e2e1589cae1d"}, + {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65f7361a09b07915a98efd17fdec23103307a54db2000bb92095457ca758d485"}, + {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6951f3f47cb5ca4da536ab161ac0163cab31417d20c54c6de5ddcab8bc813c3f"}, + {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7a4c5eec138a9b52c67f664c7d51d4c7234c5ad65dd8aacd919fb47445a62c86"}, + {file = "pydantic-1.10.18-cp39-cp39-win_amd64.whl", hash = "sha256:49e26c51ca854286bffc22b69787a8d4063a62bf7d83dc21d44d2ff426108518"}, + {file = "pydantic-1.10.18-py3-none-any.whl", hash = "sha256:06a189b81ffc52746ec9c8c007f16e5167c8b0a696e1a726369327e3db7b2a82"}, + {file = "pydantic-1.10.18.tar.gz", hash = "sha256:baebdff1907d1d96a139c25136a9bb7d17e118f133a76a2ef3b845e831e3403a"}, ] [package.dependencies] -typing-extensions = ">=4.1.0" +typing-extensions = ">=4.2.0" [package.extras] dotenv = ["python-dotenv (>=0.10.4)"] @@ -2585,7 +3497,6 @@ email = ["email-validator (>=1.0.3)"] name = "pyflakes" version = "2.3.1" description = "passive checker of Python programs" -category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" files = [ @@ -2595,41 +3506,41 @@ files = [ [[package]] name = "pygments" -version = "2.13.0" +version = "2.18.0" description = "Pygments is a syntax highlighting package written in Python." -category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "Pygments-2.13.0-py3-none-any.whl", hash = "sha256:f643f331ab57ba3c9d89212ee4a2dabc6e94f117cf4eefde99a0574720d14c42"}, - {file = "Pygments-2.13.0.tar.gz", hash = "sha256:56a8508ae95f98e2b9bdf93a6be5ae3f7d8af858b43e02c5a2ff083726be40c1"}, + {file = "pygments-2.18.0-py3-none-any.whl", hash = "sha256:b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a"}, + {file = "pygments-2.18.0.tar.gz", hash = "sha256:786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199"}, ] [package.extras] -plugins = ["importlib-metadata"] +windows-terminal = ["colorama (>=0.4.6)"] [[package]] name = "pylint" -version = "2.14.5" +version = "2.17.7" description = "python code static checker" -category = "main" optional = false python-versions = ">=3.7.2" files = [ - {file = "pylint-2.14.5-py3-none-any.whl", hash = "sha256:fabe30000de7d07636d2e82c9a518ad5ad7908590fe135ace169b44839c15f90"}, - {file = "pylint-2.14.5.tar.gz", hash = "sha256:487ce2192eee48211269a0e976421f334cf94de1806ca9d0a99449adcdf0285e"}, + {file = "pylint-2.17.7-py3-none-any.whl", hash = "sha256:27a8d4c7ddc8c2f8c18aa0050148f89ffc09838142193fdbe98f172781a3ff87"}, + {file = "pylint-2.17.7.tar.gz", hash = "sha256:f4fcac7ae74cfe36bc8451e931d8438e4a476c20314b1101c458ad0f05191fad"}, ] [package.dependencies] -astroid = ">=2.11.6,<=2.12.0-dev0" +astroid = ">=2.15.8,<=2.17.0-dev0" colorama = {version = ">=0.4.5", markers = "sys_platform == \"win32\""} -dill = ">=0.2" +dill = [ + {version = ">=0.2", markers = "python_version < \"3.11\""}, + {version = ">=0.3.6", markers = "python_version >= \"3.11\""}, +] isort = ">=4.2.5,<6" mccabe = ">=0.6,<0.8" platformdirs = ">=2.2.0" tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} tomlkit = ">=0.10.1" -typing-extensions = {version = ">=3.10.0", markers = "python_version < \"3.10\""} [package.extras] spelling = ["pyenchant (>=3.2,<4.0)"] @@ -2637,26 +3548,24 @@ testutils = ["gitpython (>3)"] [[package]] name = "pypandoc" -version = "1.8.1" +version = "1.14" description = "Thin wrapper for pandoc." -category = "main" optional = false python-versions = ">=3.6" files = [ - {file = "pypandoc-1.8.1-py3-none-any.whl", hash = "sha256:3d7eda399f9169f16106362c55a8f12f30ab0575cfd2cdc6e1856b214cc4c38c"}, - {file = "pypandoc-1.8.1.tar.gz", hash = "sha256:8c1b651d338e8441843b991835f59d561a8473cfe63f0126d330fdb3cb518809"}, + {file = "pypandoc-1.14-py3-none-any.whl", hash = "sha256:1315c7ad7fac7236dacf69a05b521ed2c3f1d0177f70e9b92bfffce6c023df22"}, + {file = "pypandoc-1.14.tar.gz", hash = "sha256:6b4c45f5f1b9fb5bb562079164806bdbbc3e837b5402bcf3f1139edc5730a197"}, ] [[package]] name = "pyparsing" -version = "3.0.9" +version = "3.2.0" description = "pyparsing module - Classes and methods to define and execute parsing grammars" -category = "main" optional = false -python-versions = ">=3.6.8" +python-versions = ">=3.9" files = [ - {file = "pyparsing-3.0.9-py3-none-any.whl", hash = "sha256:5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc"}, - {file = "pyparsing-3.0.9.tar.gz", hash = "sha256:2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb"}, + {file = "pyparsing-3.2.0-py3-none-any.whl", hash = "sha256:93d9577b88da0bbea8cc8334ee8b918ed014968fd2ec383e868fb8afb1ccef84"}, + {file = "pyparsing-3.2.0.tar.gz", hash = "sha256:cbf74e27246d595d9a74b186b810f6fbb86726dbf3b9532efb343f6d7294fe9c"}, ] [package.extras] @@ -2664,78 +3573,45 @@ diagrams = ["jinja2", "railroad-diagrams"] [[package]] name = "pyproj" -version = "3.3.1" +version = "3.7.0" description = "Python interface to PROJ (cartographic projections and coordinate transformations library)" -category = "main" optional = false -python-versions = ">=3.8" +python-versions = ">=3.10" files = [ - {file = "pyproj-3.3.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:473961faef7a9fd723c5d432f65220ea6ab3854e606bf84b4d409a75a4261c78"}, - {file = "pyproj-3.3.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:07c9d8d7ec009bbac09e233cfc725601586fe06880e5538a3a44eaf560ba3a62"}, - {file = "pyproj-3.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2fef9c1e339f25c57f6ae0558b5ab1bbdf7994529a30d8d7504fc6302ea51c03"}, - {file = "pyproj-3.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:140fa649fedd04f680a39f8ad339799a55cb1c49f6a84e1b32b97e49646647aa"}, - {file = "pyproj-3.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b59c08aea13ee428cf8a919212d55c036cc94784805ed77c8f31a4d1f541058c"}, - {file = "pyproj-3.3.1-cp310-cp310-win32.whl", hash = "sha256:1adc9ccd1bf04998493b6a2e87e60656c75ab790653b36cfe351e9ef214828ed"}, - {file = "pyproj-3.3.1-cp310-cp310-win_amd64.whl", hash = "sha256:42eea10afc750fccd1c5c4ba56de29ab791ab4d83c1f7db72705566282ac5396"}, - {file = "pyproj-3.3.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:531ea36519fa7b581466d4b6ab32f66ae4dadd9499d726352f71ee5e19c3d1c5"}, - {file = "pyproj-3.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67025e37598a6bbed2c9c6c9e4c911f6dd39315d3e1148ead935a5c4d64309d5"}, - {file = "pyproj-3.3.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:aed1a3c0cd4182425f91b48d5db39f459bc2fe0d88017ead6425a1bc85faee33"}, - {file = "pyproj-3.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3cc4771403db54494e1e55bca8e6d33cde322f8cf0ed39f1557ff109c66d2cd1"}, - {file = "pyproj-3.3.1-cp38-cp38-win32.whl", hash = "sha256:c99f7b5757a28040a2dd4a28c9805fdf13eef79a796f4a566ab5cb362d10630d"}, - {file = "pyproj-3.3.1-cp38-cp38-win_amd64.whl", hash = "sha256:5dac03d4338a4c8bd0f69144c527474f517b4cbd7d2d8c532cd8937799723248"}, - {file = "pyproj-3.3.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:56b0f9ee2c5b2520b18db30a393a7b86130cf527ddbb8c96e7f3c837474a9d79"}, - {file = "pyproj-3.3.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f1032e5dfb50eae06382bcc7b9011b994f7104d932fe91bd83a722275e30e8ce"}, - {file = "pyproj-3.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5f92d8f6514516124abb714dce912b20867831162cfff9fae2678ef07b6fcf0f"}, - {file = "pyproj-3.3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1ef1bfbe2dcc558c7a98e2f1836abdcd630390f3160724a6f4f5c818b2be0ad5"}, - {file = "pyproj-3.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ca5f32b56210429b367ca4f9a57ffe67975c487af82e179a24370879a3daf68"}, - {file = "pyproj-3.3.1-cp39-cp39-win32.whl", hash = "sha256:aba199704c824fb84ab64927e7bc9ef71e603e483130ec0f7e09e97259b8f61f"}, - {file = "pyproj-3.3.1-cp39-cp39-win_amd64.whl", hash = "sha256:120d45ed73144c65e9677dc73ba8a531c495d179dd9f9f0471ac5acc02d7ac4b"}, - {file = "pyproj-3.3.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:52efb681647dfac185cc655a709bc0caaf910031a0390f816f5fc8ce150cbedc"}, - {file = "pyproj-3.3.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5ab0d6e38fda7c13726afacaf62e9f9dd858089d67910471758afd9cb24e0ecd"}, - {file = "pyproj-3.3.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45487942c19c5a8b09c91964ea3201f4e094518e34743cae373889a36e3d9260"}, - {file = "pyproj-3.3.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:797ad5655d484feac14b0fbb4a4efeaac0cf780a223046e2465494c767fd1c3b"}, - {file = "pyproj-3.3.1.tar.gz", hash = "sha256:b3d8e14d91cc95fb3dbc03a9d0588ac58326803eefa5bbb0978d109de3304fbe"}, + {file = "pyproj-3.7.0-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:d5c7e7d24b967e328a5efd013f466804a1f226d1106ac7efc47dcc99360dbc8f"}, + {file = "pyproj-3.7.0-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:448958c46bd3fe2da91c89ba551ac5835e63073ca861422c6eb1af89979dfab1"}, + {file = "pyproj-3.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f673ca345bb92afc93d4235938ca0c9a76237aa7addf42a95965c8dc8cad9b49"}, + {file = "pyproj-3.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee60895f60cbd1a9c903ab2bc22adea63004296a1c28b8775a11cf50905cf085"}, + {file = "pyproj-3.7.0-cp310-cp310-win32.whl", hash = "sha256:0dd31b0740ee010934234f848d2d092c66146cb8d0ba009a64e41d192caa7686"}, + {file = "pyproj-3.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:7943d85ba39e89c51b920339ff63162d63bf89da161f0acb6206b0d39b11661e"}, + {file = "pyproj-3.7.0-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:e66d8d42dbdf232e121546c5a1dec097caf0454e4885c09a8e03cdcee0753c03"}, + {file = "pyproj-3.7.0-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:7764b64a0aefe40134a2828b3a40be88f6c8b7832c45d8a9f2bd592ace4b2a3b"}, + {file = "pyproj-3.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:53c442c5081dc95346996f5c4323fde2caafc69c6e60b4707aa46e88244f1e04"}, + {file = "pyproj-3.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc5b305d4d5d7697885681d9b660623e328227612823d5c660e0a9566cb48838"}, + {file = "pyproj-3.7.0-cp311-cp311-win32.whl", hash = "sha256:de2b47d748dc41cccb6b3b713d4d7dc9aa1046a82141c8665026908726426abc"}, + {file = "pyproj-3.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:38cba7c4c5679e40242dd959133e95b908d3b912dd66291094fd13510e8517ff"}, + {file = "pyproj-3.7.0-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:8cbec92bdd6e9933ca08795c12717d1384e9b51cf4b1acf0d753db255a75c51e"}, + {file = "pyproj-3.7.0-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:8c4a8e4d3ba76c3adac3c087544cf92f7f9a19ea34946904a13fca48cc1c0106"}, + {file = "pyproj-3.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82624fb42aa31f6b1a860fbc0316babd07fd712642bc31022df4e9b4056bf463"}, + {file = "pyproj-3.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:34e1bbb3f89c68d4a6835c40b2da8b27680eec60e8cc7cdb08c09bcc725b2b62"}, + {file = "pyproj-3.7.0-cp312-cp312-win32.whl", hash = "sha256:952515d5592167ad4436b355485f82acebed2a49b46722159e4584b75a763dd3"}, + {file = "pyproj-3.7.0-cp312-cp312-win_amd64.whl", hash = "sha256:0692f806224e8ed82fe4acfa57268ff444fdaf9f330689f24c0d96e59480cce1"}, + {file = "pyproj-3.7.0-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:94e8b903a9e83448fd2379c49dec3e8cd83c9ed36f54354e68b601cef56d5426"}, + {file = "pyproj-3.7.0-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:64cb5c17d6f6305a8b978a40f95560c87c5b363fcac40632337955664437875a"}, + {file = "pyproj-3.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c54e9bdda7ab9c4a5af50f9d6e6ee7704e05fafd504896b96ed1208c7aea098"}, + {file = "pyproj-3.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24fa4e9e0abba875f9524808410cc520067eaf38fd5549ed0ef7c43ac39923c9"}, + {file = "pyproj-3.7.0-cp313-cp313-win32.whl", hash = "sha256:b9e8353fc3c79dc14d1f5ac758a1a6e4eee04102c3c0b138670f121f5ac52eb4"}, + {file = "pyproj-3.7.0-cp313-cp313-win_amd64.whl", hash = "sha256:10a8dc6ec61af97c89ff032647d743f8dc023645773da42ef43f7ae1125b3509"}, + {file = "pyproj-3.7.0.tar.gz", hash = "sha256:bf658f4aaf815d9d03c8121650b6f0b8067265c36e31bc6660b98ef144d81813"}, ] [package.dependencies] certifi = "*" -[[package]] -name = "pyrsistent" -version = "0.18.1" -description = "Persistent/Functional/Immutable data structures" -category = "main" -optional = false -python-versions = ">=3.7" -files = [ - {file = "pyrsistent-0.18.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:df46c854f490f81210870e509818b729db4488e1f30f2a1ce1698b2295a878d1"}, - {file = "pyrsistent-0.18.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d45866ececf4a5fff8742c25722da6d4c9e180daa7b405dc0a2a2790d668c26"}, - {file = "pyrsistent-0.18.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4ed6784ceac462a7d6fcb7e9b663e93b9a6fb373b7f43594f9ff68875788e01e"}, - {file = "pyrsistent-0.18.1-cp310-cp310-win32.whl", hash = "sha256:e4f3149fd5eb9b285d6bfb54d2e5173f6a116fe19172686797c056672689daf6"}, - {file = "pyrsistent-0.18.1-cp310-cp310-win_amd64.whl", hash = "sha256:636ce2dc235046ccd3d8c56a7ad54e99d5c1cd0ef07d9ae847306c91d11b5fec"}, - {file = "pyrsistent-0.18.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:e92a52c166426efbe0d1ec1332ee9119b6d32fc1f0bbfd55d5c1088070e7fc1b"}, - {file = "pyrsistent-0.18.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d7a096646eab884bf8bed965bad63ea327e0d0c38989fc83c5ea7b8a87037bfc"}, - {file = "pyrsistent-0.18.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cdfd2c361b8a8e5d9499b9082b501c452ade8bbf42aef97ea04854f4a3f43b22"}, - {file = "pyrsistent-0.18.1-cp37-cp37m-win32.whl", hash = "sha256:7ec335fc998faa4febe75cc5268a9eac0478b3f681602c1f27befaf2a1abe1d8"}, - {file = "pyrsistent-0.18.1-cp37-cp37m-win_amd64.whl", hash = "sha256:6455fc599df93d1f60e1c5c4fe471499f08d190d57eca040c0ea182301321286"}, - {file = "pyrsistent-0.18.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:fd8da6d0124efa2f67d86fa70c851022f87c98e205f0594e1fae044e7119a5a6"}, - {file = "pyrsistent-0.18.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7bfe2388663fd18bd8ce7db2c91c7400bf3e1a9e8bd7d63bf7e77d39051b85ec"}, - {file = "pyrsistent-0.18.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0e3e1fcc45199df76053026a51cc59ab2ea3fc7c094c6627e93b7b44cdae2c8c"}, - {file = "pyrsistent-0.18.1-cp38-cp38-win32.whl", hash = "sha256:b568f35ad53a7b07ed9b1b2bae09eb15cdd671a5ba5d2c66caee40dbf91c68ca"}, - {file = "pyrsistent-0.18.1-cp38-cp38-win_amd64.whl", hash = "sha256:d1b96547410f76078eaf66d282ddca2e4baae8964364abb4f4dcdde855cd123a"}, - {file = "pyrsistent-0.18.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:f87cc2863ef33c709e237d4b5f4502a62a00fab450c9e020892e8e2ede5847f5"}, - {file = "pyrsistent-0.18.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6bc66318fb7ee012071b2792024564973ecc80e9522842eb4e17743604b5e045"}, - {file = "pyrsistent-0.18.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:914474c9f1d93080338ace89cb2acee74f4f666fb0424896fcfb8d86058bf17c"}, - {file = "pyrsistent-0.18.1-cp39-cp39-win32.whl", hash = "sha256:1b34eedd6812bf4d33814fca1b66005805d3640ce53140ab8bbb1e2651b0d9bc"}, - {file = "pyrsistent-0.18.1-cp39-cp39-win_amd64.whl", hash = "sha256:e24a828f57e0c337c8d8bb9f6b12f09dfdf0273da25fda9e314f0b684b415a07"}, - {file = "pyrsistent-0.18.1.tar.gz", hash = "sha256:d4d61f8b993a7255ba714df3aca52700f8125289f84f704cf80916517c46eb96"}, -] - [[package]] name = "pytest" version = "6.2.5" description = "pytest: simple powerful testing with Python" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -2758,18 +3634,17 @@ testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xm [[package]] name = "pytest-mock" -version = "3.8.2" +version = "3.14.0" description = "Thin-wrapper around the mock package for easier use with pytest" -category = "dev" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "pytest-mock-3.8.2.tar.gz", hash = "sha256:77f03f4554392558700295e05aed0b1096a20d4a60a4f3ddcde58b0c31c8fca2"}, - {file = "pytest_mock-3.8.2-py3-none-any.whl", hash = "sha256:8a9e226d6c0ef09fcf20c94eb3405c388af438a90f3e39687f84166da82d5948"}, + {file = "pytest-mock-3.14.0.tar.gz", hash = "sha256:2719255a1efeceadbc056d6bf3df3d1c5015530fb40cf347c0f9afac88410bd0"}, + {file = "pytest_mock-3.14.0-py3-none-any.whl", hash = "sha256:0b72c38033392a5f4621342fe11e9219ac11ec9d375f8e2a0c164539e0d70f6f"}, ] [package.dependencies] -pytest = ">=5.0" +pytest = ">=6.2.5" [package.extras] dev = ["pre-commit", "pytest-asyncio", "tox"] @@ -2778,7 +3653,6 @@ dev = ["pre-commit", "pytest-asyncio", "tox"] name = "pytest-snapshot" version = "0.8.1" description = "A plugin for snapshot testing with pytest." -category = "dev" optional = false python-versions = ">=3.5" files = [ @@ -2791,387 +3665,637 @@ pytest = ">=3.0.0" [[package]] name = "python-dateutil" -version = "2.8.2" +version = "2.9.0.post0" description = "Extensions to the standard Python datetime module" -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" files = [ - {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, - {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, + {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"}, + {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"}, ] [package.dependencies] six = ">=1.5" +[[package]] +name = "python-json-logger" +version = "2.0.7" +description = "A python library adding a json log formatter" +optional = false +python-versions = ">=3.6" +files = [ + {file = "python-json-logger-2.0.7.tar.gz", hash = "sha256:23e7ec02d34237c5aa1e29a070193a4ea87583bb4e7f8fd06d3de8264c4b2e1c"}, + {file = "python_json_logger-2.0.7-py3-none-any.whl", hash = "sha256:f380b826a991ebbe3de4d897aeec42760035ac760345e57b812938dc8b35e2bd"}, +] + [[package]] name = "pytz" -version = "2022.2.1" +version = "2024.2" description = "World timezone definitions, modern and historical" -category = "main" optional = false python-versions = "*" files = [ - {file = "pytz-2022.2.1-py2.py3-none-any.whl", hash = "sha256:220f481bdafa09c3955dfbdddb7b57780e9a94f5127e35456a48589b9e0c0197"}, - {file = "pytz-2022.2.1.tar.gz", hash = "sha256:cea221417204f2d1a2aa03ddae3e867921971d0d76f14d87abb4414415bbdcf5"}, + {file = "pytz-2024.2-py2.py3-none-any.whl", hash = "sha256:31c7c1817eb7fae7ca4b8c7ee50c72f93aa2dd863de768e1ef4245d426aa0725"}, + {file = "pytz-2024.2.tar.gz", hash = "sha256:2aa355083c50a0f93fa581709deac0c9ad65cca8a9e9beac660adcbd493c798a"}, ] [[package]] name = "pywin32" -version = "304" +version = "308" description = "Python for Window Extensions" -category = "main" optional = false python-versions = "*" files = [ - {file = "pywin32-304-cp310-cp310-win32.whl", hash = "sha256:3c7bacf5e24298c86314f03fa20e16558a4e4138fc34615d7de4070c23e65af3"}, - {file = "pywin32-304-cp310-cp310-win_amd64.whl", hash = "sha256:4f32145913a2447736dad62495199a8e280a77a0ca662daa2332acf849f0be48"}, - {file = "pywin32-304-cp310-cp310-win_arm64.whl", hash = "sha256:d3ee45adff48e0551d1aa60d2ec066fec006083b791f5c3527c40cd8aefac71f"}, - {file = "pywin32-304-cp311-cp311-win32.whl", hash = "sha256:30c53d6ce44c12a316a06c153ea74152d3b1342610f1b99d40ba2795e5af0269"}, - {file = "pywin32-304-cp311-cp311-win_amd64.whl", hash = "sha256:7ffa0c0fa4ae4077e8b8aa73800540ef8c24530057768c3ac57c609f99a14fd4"}, - {file = "pywin32-304-cp311-cp311-win_arm64.whl", hash = "sha256:cbbe34dad39bdbaa2889a424d28752f1b4971939b14b1bb48cbf0182a3bcfc43"}, - {file = "pywin32-304-cp36-cp36m-win32.whl", hash = "sha256:be253e7b14bc601718f014d2832e4c18a5b023cbe72db826da63df76b77507a1"}, - {file = "pywin32-304-cp36-cp36m-win_amd64.whl", hash = "sha256:de9827c23321dcf43d2f288f09f3b6d772fee11e809015bdae9e69fe13213988"}, - {file = "pywin32-304-cp37-cp37m-win32.whl", hash = "sha256:f64c0377cf01b61bd5e76c25e1480ca8ab3b73f0c4add50538d332afdf8f69c5"}, - {file = "pywin32-304-cp37-cp37m-win_amd64.whl", hash = "sha256:bb2ea2aa81e96eee6a6b79d87e1d1648d3f8b87f9a64499e0b92b30d141e76df"}, - {file = "pywin32-304-cp38-cp38-win32.whl", hash = "sha256:94037b5259701988954931333aafd39cf897e990852115656b014ce72e052e96"}, - {file = "pywin32-304-cp38-cp38-win_amd64.whl", hash = "sha256:ead865a2e179b30fb717831f73cf4373401fc62fbc3455a0889a7ddac848f83e"}, - {file = "pywin32-304-cp39-cp39-win32.whl", hash = "sha256:25746d841201fd9f96b648a248f731c1dec851c9a08b8e33da8b56148e4c65cc"}, - {file = "pywin32-304-cp39-cp39-win_amd64.whl", hash = "sha256:d24a3382f013b21aa24a5cfbfad5a2cd9926610c0affde3e8ab5b3d7dbcf4ac9"}, + {file = "pywin32-308-cp310-cp310-win32.whl", hash = "sha256:796ff4426437896550d2981b9c2ac0ffd75238ad9ea2d3bfa67a1abd546d262e"}, + {file = "pywin32-308-cp310-cp310-win_amd64.whl", hash = "sha256:4fc888c59b3c0bef905ce7eb7e2106a07712015ea1c8234b703a088d46110e8e"}, + {file = "pywin32-308-cp310-cp310-win_arm64.whl", hash = "sha256:a5ab5381813b40f264fa3495b98af850098f814a25a63589a8e9eb12560f450c"}, + {file = "pywin32-308-cp311-cp311-win32.whl", hash = "sha256:5d8c8015b24a7d6855b1550d8e660d8daa09983c80e5daf89a273e5c6fb5095a"}, + {file = "pywin32-308-cp311-cp311-win_amd64.whl", hash = "sha256:575621b90f0dc2695fec346b2d6302faebd4f0f45c05ea29404cefe35d89442b"}, + {file = "pywin32-308-cp311-cp311-win_arm64.whl", hash = "sha256:100a5442b7332070983c4cd03f2e906a5648a5104b8a7f50175f7906efd16bb6"}, + {file = "pywin32-308-cp312-cp312-win32.whl", hash = "sha256:587f3e19696f4bf96fde9d8a57cec74a57021ad5f204c9e627e15c33ff568897"}, + {file = "pywin32-308-cp312-cp312-win_amd64.whl", hash = "sha256:00b3e11ef09ede56c6a43c71f2d31857cf7c54b0ab6e78ac659497abd2834f47"}, + {file = "pywin32-308-cp312-cp312-win_arm64.whl", hash = "sha256:9b4de86c8d909aed15b7011182c8cab38c8850de36e6afb1f0db22b8959e3091"}, + {file = "pywin32-308-cp313-cp313-win32.whl", hash = "sha256:1c44539a37a5b7b21d02ab34e6a4d314e0788f1690d65b48e9b0b89f31abbbed"}, + {file = "pywin32-308-cp313-cp313-win_amd64.whl", hash = "sha256:fd380990e792eaf6827fcb7e187b2b4b1cede0585e3d0c9e84201ec27b9905e4"}, + {file = "pywin32-308-cp313-cp313-win_arm64.whl", hash = "sha256:ef313c46d4c18dfb82a2431e3051ac8f112ccee1a34f29c263c583c568db63cd"}, + {file = "pywin32-308-cp37-cp37m-win32.whl", hash = "sha256:1f696ab352a2ddd63bd07430080dd598e6369152ea13a25ebcdd2f503a38f1ff"}, + {file = "pywin32-308-cp37-cp37m-win_amd64.whl", hash = "sha256:13dcb914ed4347019fbec6697a01a0aec61019c1046c2b905410d197856326a6"}, + {file = "pywin32-308-cp38-cp38-win32.whl", hash = "sha256:5794e764ebcabf4ff08c555b31bd348c9025929371763b2183172ff4708152f0"}, + {file = "pywin32-308-cp38-cp38-win_amd64.whl", hash = "sha256:3b92622e29d651c6b783e368ba7d6722b1634b8e70bd376fd7610fe1992e19de"}, + {file = "pywin32-308-cp39-cp39-win32.whl", hash = "sha256:7873ca4dc60ab3287919881a7d4f88baee4a6e639aa6962de25a98ba6b193341"}, + {file = "pywin32-308-cp39-cp39-win_amd64.whl", hash = "sha256:71b3322d949b4cc20776436a9c9ba0eeedcbc9c650daa536df63f0ff111bb920"}, ] [[package]] name = "pywinpty" -version = "2.0.7" +version = "2.0.14" description = "Pseudo terminal support for Windows from Python." -category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "pywinpty-2.0.7-cp310-none-win_amd64.whl", hash = "sha256:d56361ed2bd3395347882a7a4e6246359e745a233e89c91786ab3d9421323c17"}, - {file = "pywinpty-2.0.7-cp37-none-win_amd64.whl", hash = "sha256:2d62ede3ed10feb0901b3b4667201766a741b6a2c69f27be623ba9fe9348447b"}, - {file = "pywinpty-2.0.7-cp38-none-win_amd64.whl", hash = "sha256:c3b7e6a2f0e5f86e0dc5cb5e4fec7de19adacc6900232e4a48a2ecf04bae447f"}, - {file = "pywinpty-2.0.7-cp39-none-win_amd64.whl", hash = "sha256:80a6713a586401c2a19efd2969ffd019eb85f18442611a3880e3d618887d2f84"}, - {file = "pywinpty-2.0.7.tar.gz", hash = "sha256:f52b2e51c46dac40708ede1d42577f3ddb9d7cf8acaa36c8e27b3d3b975f4c95"}, + {file = "pywinpty-2.0.14-cp310-none-win_amd64.whl", hash = "sha256:0b149c2918c7974f575ba79f5a4aad58bd859a52fa9eb1296cc22aa412aa411f"}, + {file = "pywinpty-2.0.14-cp311-none-win_amd64.whl", hash = "sha256:cf2a43ac7065b3e0dc8510f8c1f13a75fb8fde805efa3b8cff7599a1ef497bc7"}, + {file = "pywinpty-2.0.14-cp312-none-win_amd64.whl", hash = "sha256:55dad362ef3e9408ade68fd173e4f9032b3ce08f68cfe7eacb2c263ea1179737"}, + {file = "pywinpty-2.0.14-cp313-none-win_amd64.whl", hash = "sha256:074fb988a56ec79ca90ed03a896d40707131897cefb8f76f926e3834227f2819"}, + {file = "pywinpty-2.0.14-cp39-none-win_amd64.whl", hash = "sha256:5725fd56f73c0531ec218663bd8c8ff5acc43c78962fab28564871b5fce053fd"}, + {file = "pywinpty-2.0.14.tar.gz", hash = "sha256:18bd9529e4a5daf2d9719aa17788ba6013e594ae94c5a0c27e83df3278b0660e"}, ] [[package]] name = "pyyaml" -version = "6.0" +version = "6.0.2" description = "YAML parser and emitter for Python" -category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, - {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, - {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"}, - {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"}, - {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, - {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, - {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, - {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, - {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, - {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, - {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, - {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, - {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, - {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, - {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, - {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, - {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, - {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"}, - {file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"}, - {file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"}, - {file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"}, - {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"}, - {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"}, - {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"}, - {file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"}, - {file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"}, - {file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"}, - {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"}, - {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"}, - {file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"}, - {file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"}, - {file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"}, - {file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"}, - {file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"}, - {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"}, - {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"}, - {file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"}, - {file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"}, - {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"}, - {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, + {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, + {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, + {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, + {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, + {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, + {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, + {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, + {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, + {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, + {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, + {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, + {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, + {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, + {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, + {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, + {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, + {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, + {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, + {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, + {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, + {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, + {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, + {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, + {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, + {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, + {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, + {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, + {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, + {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, + {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, + {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, + {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, + {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, + {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, + {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, ] [[package]] name = "pyzmq" -version = "23.2.1" +version = "26.2.0" description = "Python bindings for 0MQ" -category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" files = [ - {file = "pyzmq-23.2.1-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:a3fd44b5046d247e7f0f1660bcafe7b5fb0db55d0934c05dd57dda9e1f823ce7"}, - {file = "pyzmq-23.2.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2141e6798d5981be04c08996d27962086a1aa3ea536fe9cf7e89817fd4523f86"}, - {file = "pyzmq-23.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9a39ddb0431a68954bd318b923230fa5b649c9c62b0e8340388820c5f1b15bd2"}, - {file = "pyzmq-23.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e06747014a5ad1b28cebf5bc1ddcdaccfb44e9b441d35e6feb1286c8a72e54be"}, - {file = "pyzmq-23.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e0113d70b095339e99bb522fe7294f5ae6a7f3b2b8f52f659469a74b5cc7661"}, - {file = "pyzmq-23.2.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:71b32a1e827bdcbf73750e60370d3b07685816ff3d8695f450f0f8c3226503f8"}, - {file = "pyzmq-23.2.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:55568a020ad2cae9ae36da6058e7ca332a56df968f601cbdb7cf6efb2a77579a"}, - {file = "pyzmq-23.2.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8c02a0cd39dc01659b3d6cb70bb3a41aebd9885fd78239acdd8d9c91351c4568"}, - {file = "pyzmq-23.2.1-cp310-cp310-win32.whl", hash = "sha256:e1fe30bcd5aea5948c42685fad910cd285eacb2518ea4dc6c170d6b535bee95d"}, - {file = "pyzmq-23.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:650389bbfca73955b262b2230423d89992f38ec48033307ae80e700eaa2fbb63"}, - {file = "pyzmq-23.2.1-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:e753eee6d3b93c5354e8ba0a1d62956ee49355f0a36e00570823ef64e66183f5"}, - {file = "pyzmq-23.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f07016e3cf088dbfc6e7c5a7b3f540db5c23b0190d539e4fd3e2b5e6beffa4b5"}, - {file = "pyzmq-23.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4805af9614b0b41b7e57d17673459facf85604dac502a5a9244f6e8c9a4de658"}, - {file = "pyzmq-23.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:39dd252b683816935702825e5bf775df16090619ced9bb4ba68c2d0b6f0c9b18"}, - {file = "pyzmq-23.2.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:84678153432241bcdca2210cf4ff83560b200556867aea913ffbb960f5d5f340"}, - {file = "pyzmq-23.2.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:90d88f9d9a2ae6cfb1dc4ea2d1710cdf6456bc1b9a06dd1bb485c5d298f2517e"}, - {file = "pyzmq-23.2.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:794871988c34727c7f79bdfe2546e6854ae1fa2e1feb382784f23a9c6c63ecb3"}, - {file = "pyzmq-23.2.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c56b1a62a1fb87565343c57b6743fd5da6e138b8c6562361d7d9b5ce4acf399a"}, - {file = "pyzmq-23.2.1-cp311-cp311-win32.whl", hash = "sha256:c3ebf1668664d20c8f7d468955f18379b7d1f7bc8946b13243d050fa3888c7ff"}, - {file = "pyzmq-23.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:ec9803aca9491fd6f0d853d2a6147f19f8deaaa23b1b713d05c5d09e56ea7142"}, - {file = "pyzmq-23.2.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:385609812eafd9970c3752c51f2f6c4f224807e3e441bcfd8c8273877d00c8a8"}, - {file = "pyzmq-23.2.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b861db65f6b8906c8d6db51dde2448f266f0c66bf28db2c37aea50f58a849859"}, - {file = "pyzmq-23.2.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6b1e79bba24f6df1712e3188d5c32c480d8eda03e8ecff44dc8ecb0805fa62f3"}, - {file = "pyzmq-23.2.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:8dc66f109a245653b19df0f44a5af7a3f14cb8ad6c780ead506158a057bd36ce"}, - {file = "pyzmq-23.2.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:b815991c7d024bf461f358ad871f2be1135576274caed5749c4828859e40354e"}, - {file = "pyzmq-23.2.1-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:29b74774a0bfd3c4d98ac853f0bdca55bd9ec89d5b0def5486407cca54472ef8"}, - {file = "pyzmq-23.2.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:4bb798bef181648827019001f6be43e1c48b34b477763b37a8d27d8c06d197b8"}, - {file = "pyzmq-23.2.1-cp36-cp36m-win32.whl", hash = "sha256:565bd5ab81f6964fc4067ccf2e00877ad0fa917308975694bbb54378389215f8"}, - {file = "pyzmq-23.2.1-cp36-cp36m-win_amd64.whl", hash = "sha256:1f368a82b29f80071781b20663c0fc0c8f6b13273f9f5abe1526af939534f90f"}, - {file = "pyzmq-23.2.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c9cfaf530e6a7ff65f0afe275e99f983f68b54dfb23ea401f0bc297a632766b6"}, - {file = "pyzmq-23.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c558b50402fca1acc94329c5d8f12aa429738904a5cfb32b9ed3c61235221bb"}, - {file = "pyzmq-23.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:20bafc4095eab00f41a510579363a3f5e1f5c69d7ee10f1d88895c4df0259183"}, - {file = "pyzmq-23.2.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:f619fd38fc2641abfb53cca719c165182500600b82c695cc548a0f05f764be05"}, - {file = "pyzmq-23.2.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:044447ae4b2016a6b8697571fd633f799f860b19b76c4a2fd9b1140d52ee6745"}, - {file = "pyzmq-23.2.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:49d30ba7074f469e8167917abf9eb854c6503ae10153034a6d4df33618f1db5f"}, - {file = "pyzmq-23.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:48400b96788cdaca647021bf19a9cd668384f46e4d9c55cf045bdd17f65299c8"}, - {file = "pyzmq-23.2.1-cp37-cp37m-win32.whl", hash = "sha256:8a68f57b7a3f7b6b52ada79876be1efb97c8c0952423436e84d70cc139f16f0d"}, - {file = "pyzmq-23.2.1-cp37-cp37m-win_amd64.whl", hash = "sha256:9e5bf6e7239fc9687239de7a283aa8b801ab85371116045b33ae20132a1325d6"}, - {file = "pyzmq-23.2.1-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:0ff6294e001129a9f22dcbfba186165c7e6f573c46de2704d76f873c94c65416"}, - {file = "pyzmq-23.2.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ffc6b1623d0f9affb351db4ca61f432dca3628a5ee015f9bf2bfbe9c6836881c"}, - {file = "pyzmq-23.2.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:4d6f110c56f7d5b4d64dde3a382ae61b6d48174e30742859d8e971b18b6c9e5c"}, - {file = "pyzmq-23.2.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:9269fbfe3a4eb2009199120861c4571ef1655fdf6951c3e7f233567c94e8c602"}, - {file = "pyzmq-23.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:12e62ff0d5223ec09b597ab6d73858b9f64a51221399f3cb08aa495e1dff7935"}, - {file = "pyzmq-23.2.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6fd5d0d50cbcf4bc376861529a907bed026a4cbe8c22a500ff8243231ef02433"}, - {file = "pyzmq-23.2.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:9d0ab2936085c85a1fc6f9fd8f89d5235ae99b051e90ec5baa5e73ad44346e1f"}, - {file = "pyzmq-23.2.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:022cf5ea7bcaa8a06a03c2706e0ae66904b6138b2155577cd34c64bc7cc637ab"}, - {file = "pyzmq-23.2.1-cp38-cp38-win32.whl", hash = "sha256:28dbdb90b2f6b131f8f10e6081012e4e25234213433420e67e0c1162de537113"}, - {file = "pyzmq-23.2.1-cp38-cp38-win_amd64.whl", hash = "sha256:10d1910ec381b851aeb024a042a13db178cb1edf125e76a4e9d2548ad103aadb"}, - {file = "pyzmq-23.2.1-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:99a5a77a10863493a1ee8dece02578c6b32025fb3afff91b40476bc489e81648"}, - {file = "pyzmq-23.2.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:aecd6ceaccc4b594e0092d6513ef3f1c0fa678dd89f86bb8ff1a47014b8fca35"}, - {file = "pyzmq-23.2.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:415ff62ac525d9add1e3550430a09b9928d2d24a20cc4ce809e67caac41219ab"}, - {file = "pyzmq-23.2.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:67975a9e1237b9ccc78f457bef17691bbdd2055a9d26e81ee914ba376846d0ce"}, - {file = "pyzmq-23.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38e106b64bad744fe469dc3dd864f2764d66399178c1bf39d45294cc7980f14f"}, - {file = "pyzmq-23.2.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:8c842109d31a9281d678f668629241c405928afbebd913c48a5a8e7aee61f63d"}, - {file = "pyzmq-23.2.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:fefdf9b685fda4141b95ebec975946076a5e0723ff70b037032b2085c5317684"}, - {file = "pyzmq-23.2.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:79a87831b47a9f6161ad23fa5e89d5469dc585abc49f90b9b07fea8905ae1234"}, - {file = "pyzmq-23.2.1-cp39-cp39-win32.whl", hash = "sha256:342ca3077f47ec2ee41b9825142b614e03e026347167cbc72a59b618c4f6106c"}, - {file = "pyzmq-23.2.1-cp39-cp39-win_amd64.whl", hash = "sha256:5e05492be125dce279721d6b54fd1b956546ecc4bcdfcf8e7b4c413bc0874c10"}, - {file = "pyzmq-23.2.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:07ed8aaf7ffe150af873269690cc654ffeca7491f62aae0f3821baa181f8d5fe"}, - {file = "pyzmq-23.2.1-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:ad28ddb40db8e450d7d4bf8a1d765d3f87b63b10e7e9a825a3c130c6371a8c03"}, - {file = "pyzmq-23.2.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:2f67b63f53c6994d601404fd1a329e6d940ac3dd1d92946a93b2b9c70df67b9f"}, - {file = "pyzmq-23.2.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c890309296f53f9aa32ffcfc51d805705e1982bffd27c9692a8f1e1b8de279f4"}, - {file = "pyzmq-23.2.1-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:624fd38071a817644acdae075b92a23ea0bdd126a58148288e8284d23ec361ce"}, - {file = "pyzmq-23.2.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a114992a193577cb62233abf8cb2832970f9975805a64740e325d2f895e7f85a"}, - {file = "pyzmq-23.2.1-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:c780acddd2934c6831ff832ecbf78a45a7b62d4eb216480f863854a8b7d54fa7"}, - {file = "pyzmq-23.2.1-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:d904f6595acfaaf99a1a61881fea068500c40374d263e5e073aa4005e5f9c28a"}, - {file = "pyzmq-23.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:929d548b74c0f82f7f95b54e4a43f9e4ce2523cfb8a54d3f7141e45652304b2a"}, - {file = "pyzmq-23.2.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:f392cbea531b7142d1958c0d4a0c9c8d760dc451e5848d8dd3387804d3e3e62c"}, - {file = "pyzmq-23.2.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a0f09d85c45f58aa8e715b42f8b26beba68b3b63a8f7049113478aca26efbc30"}, - {file = "pyzmq-23.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23e708fbfdf4ee3107422b69ca65da1b9f056b431fc0888096a8c1d6cd908e8f"}, - {file = "pyzmq-23.2.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:35e635343ff367f697d00fa1484262bb68e36bc74c9b80737eac5a1e04c4e1b1"}, - {file = "pyzmq-23.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efb9e38b2a590282704269585de7eb33bf43dc294cad092e1b172e23d4c217e5"}, - {file = "pyzmq-23.2.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:407f909c4e8fde62fbdad9ebd448319792258cc0550c2815567a4d9d8d9e6d18"}, - {file = "pyzmq-23.2.1.tar.gz", hash = "sha256:2b381aa867ece7d0a82f30a0c7f3d4387b7cf2e0697e33efaa5bed6c5784abcd"}, + {file = "pyzmq-26.2.0-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:ddf33d97d2f52d89f6e6e7ae66ee35a4d9ca6f36eda89c24591b0c40205a3629"}, + {file = "pyzmq-26.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dacd995031a01d16eec825bf30802fceb2c3791ef24bcce48fa98ce40918c27b"}, + {file = "pyzmq-26.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:89289a5ee32ef6c439086184529ae060c741334b8970a6855ec0b6ad3ff28764"}, + {file = "pyzmq-26.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5506f06d7dc6ecf1efacb4a013b1f05071bb24b76350832c96449f4a2d95091c"}, + {file = "pyzmq-26.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8ea039387c10202ce304af74def5021e9adc6297067f3441d348d2b633e8166a"}, + {file = "pyzmq-26.2.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a2224fa4a4c2ee872886ed00a571f5e967c85e078e8e8c2530a2fb01b3309b88"}, + {file = "pyzmq-26.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:28ad5233e9c3b52d76196c696e362508959741e1a005fb8fa03b51aea156088f"}, + {file = "pyzmq-26.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:1c17211bc037c7d88e85ed8b7d8f7e52db6dc8eca5590d162717c654550f7282"}, + {file = "pyzmq-26.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b8f86dd868d41bea9a5f873ee13bf5551c94cf6bc51baebc6f85075971fe6eea"}, + {file = "pyzmq-26.2.0-cp310-cp310-win32.whl", hash = "sha256:46a446c212e58456b23af260f3d9fb785054f3e3653dbf7279d8f2b5546b21c2"}, + {file = "pyzmq-26.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:49d34ab71db5a9c292a7644ce74190b1dd5a3475612eefb1f8be1d6961441971"}, + {file = "pyzmq-26.2.0-cp310-cp310-win_arm64.whl", hash = "sha256:bfa832bfa540e5b5c27dcf5de5d82ebc431b82c453a43d141afb1e5d2de025fa"}, + {file = "pyzmq-26.2.0-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:8f7e66c7113c684c2b3f1c83cdd3376103ee0ce4c49ff80a648643e57fb22218"}, + {file = "pyzmq-26.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3a495b30fc91db2db25120df5847d9833af237546fd59170701acd816ccc01c4"}, + {file = "pyzmq-26.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77eb0968da535cba0470a5165468b2cac7772cfb569977cff92e240f57e31bef"}, + {file = "pyzmq-26.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ace4f71f1900a548f48407fc9be59c6ba9d9aaf658c2eea6cf2779e72f9f317"}, + {file = "pyzmq-26.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:92a78853d7280bffb93df0a4a6a2498cba10ee793cc8076ef797ef2f74d107cf"}, + {file = "pyzmq-26.2.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:689c5d781014956a4a6de61d74ba97b23547e431e9e7d64f27d4922ba96e9d6e"}, + {file = "pyzmq-26.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0aca98bc423eb7d153214b2df397c6421ba6373d3397b26c057af3c904452e37"}, + {file = "pyzmq-26.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:1f3496d76b89d9429a656293744ceca4d2ac2a10ae59b84c1da9b5165f429ad3"}, + {file = "pyzmq-26.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5c2b3bfd4b9689919db068ac6c9911f3fcb231c39f7dd30e3138be94896d18e6"}, + {file = "pyzmq-26.2.0-cp311-cp311-win32.whl", hash = "sha256:eac5174677da084abf378739dbf4ad245661635f1600edd1221f150b165343f4"}, + {file = "pyzmq-26.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:5a509df7d0a83a4b178d0f937ef14286659225ef4e8812e05580776c70e155d5"}, + {file = "pyzmq-26.2.0-cp311-cp311-win_arm64.whl", hash = "sha256:c0e6091b157d48cbe37bd67233318dbb53e1e6327d6fc3bb284afd585d141003"}, + {file = "pyzmq-26.2.0-cp312-cp312-macosx_10_15_universal2.whl", hash = "sha256:ded0fc7d90fe93ae0b18059930086c51e640cdd3baebdc783a695c77f123dcd9"}, + {file = "pyzmq-26.2.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:17bf5a931c7f6618023cdacc7081f3f266aecb68ca692adac015c383a134ca52"}, + {file = "pyzmq-26.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:55cf66647e49d4621a7e20c8d13511ef1fe1efbbccf670811864452487007e08"}, + {file = "pyzmq-26.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4661c88db4a9e0f958c8abc2b97472e23061f0bc737f6f6179d7a27024e1faa5"}, + {file = "pyzmq-26.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea7f69de383cb47522c9c208aec6dd17697db7875a4674c4af3f8cfdac0bdeae"}, + {file = "pyzmq-26.2.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:7f98f6dfa8b8ccaf39163ce872bddacca38f6a67289116c8937a02e30bbe9711"}, + {file = "pyzmq-26.2.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:e3e0210287329272539eea617830a6a28161fbbd8a3271bf4150ae3e58c5d0e6"}, + {file = "pyzmq-26.2.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:6b274e0762c33c7471f1a7471d1a2085b1a35eba5cdc48d2ae319f28b6fc4de3"}, + {file = "pyzmq-26.2.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:29c6a4635eef69d68a00321e12a7d2559fe2dfccfa8efae3ffb8e91cd0b36a8b"}, + {file = "pyzmq-26.2.0-cp312-cp312-win32.whl", hash = "sha256:989d842dc06dc59feea09e58c74ca3e1678c812a4a8a2a419046d711031f69c7"}, + {file = "pyzmq-26.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:2a50625acdc7801bc6f74698c5c583a491c61d73c6b7ea4dee3901bb99adb27a"}, + {file = "pyzmq-26.2.0-cp312-cp312-win_arm64.whl", hash = "sha256:4d29ab8592b6ad12ebbf92ac2ed2bedcfd1cec192d8e559e2e099f648570e19b"}, + {file = "pyzmq-26.2.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:9dd8cd1aeb00775f527ec60022004d030ddc51d783d056e3e23e74e623e33726"}, + {file = "pyzmq-26.2.0-cp313-cp313-macosx_10_15_universal2.whl", hash = "sha256:28c812d9757fe8acecc910c9ac9dafd2ce968c00f9e619db09e9f8f54c3a68a3"}, + {file = "pyzmq-26.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d80b1dd99c1942f74ed608ddb38b181b87476c6a966a88a950c7dee118fdf50"}, + {file = "pyzmq-26.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8c997098cc65e3208eca09303630e84d42718620e83b733d0fd69543a9cab9cb"}, + {file = "pyzmq-26.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ad1bc8d1b7a18497dda9600b12dc193c577beb391beae5cd2349184db40f187"}, + {file = "pyzmq-26.2.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:bea2acdd8ea4275e1278350ced63da0b166421928276c7c8e3f9729d7402a57b"}, + {file = "pyzmq-26.2.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:23f4aad749d13698f3f7b64aad34f5fc02d6f20f05999eebc96b89b01262fb18"}, + {file = "pyzmq-26.2.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:a4f96f0d88accc3dbe4a9025f785ba830f968e21e3e2c6321ccdfc9aef755115"}, + {file = "pyzmq-26.2.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ced65e5a985398827cc9276b93ef6dfabe0273c23de8c7931339d7e141c2818e"}, + {file = "pyzmq-26.2.0-cp313-cp313-win32.whl", hash = "sha256:31507f7b47cc1ead1f6e86927f8ebb196a0bab043f6345ce070f412a59bf87b5"}, + {file = "pyzmq-26.2.0-cp313-cp313-win_amd64.whl", hash = "sha256:70fc7fcf0410d16ebdda9b26cbd8bf8d803d220a7f3522e060a69a9c87bf7bad"}, + {file = "pyzmq-26.2.0-cp313-cp313-win_arm64.whl", hash = "sha256:c3789bd5768ab5618ebf09cef6ec2b35fed88709b104351748a63045f0ff9797"}, + {file = "pyzmq-26.2.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:034da5fc55d9f8da09015d368f519478a52675e558c989bfcb5cf6d4e16a7d2a"}, + {file = "pyzmq-26.2.0-cp313-cp313t-macosx_10_15_universal2.whl", hash = "sha256:c92d73464b886931308ccc45b2744e5968cbaade0b1d6aeb40d8ab537765f5bc"}, + {file = "pyzmq-26.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:794a4562dcb374f7dbbfb3f51d28fb40123b5a2abadee7b4091f93054909add5"}, + {file = "pyzmq-26.2.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:aee22939bb6075e7afededabad1a56a905da0b3c4e3e0c45e75810ebe3a52672"}, + {file = "pyzmq-26.2.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2ae90ff9dad33a1cfe947d2c40cb9cb5e600d759ac4f0fd22616ce6540f72797"}, + {file = "pyzmq-26.2.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:43a47408ac52647dfabbc66a25b05b6a61700b5165807e3fbd40063fcaf46386"}, + {file = "pyzmq-26.2.0-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:25bf2374a2a8433633c65ccb9553350d5e17e60c8eb4de4d92cc6bd60f01d306"}, + {file = "pyzmq-26.2.0-cp313-cp313t-musllinux_1_1_i686.whl", hash = "sha256:007137c9ac9ad5ea21e6ad97d3489af654381324d5d3ba614c323f60dab8fae6"}, + {file = "pyzmq-26.2.0-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:470d4a4f6d48fb34e92d768b4e8a5cc3780db0d69107abf1cd7ff734b9766eb0"}, + {file = "pyzmq-26.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3b55a4229ce5da9497dd0452b914556ae58e96a4381bb6f59f1305dfd7e53fc8"}, + {file = "pyzmq-26.2.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:9cb3a6460cdea8fe8194a76de8895707e61ded10ad0be97188cc8463ffa7e3a8"}, + {file = "pyzmq-26.2.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:8ab5cad923cc95c87bffee098a27856c859bd5d0af31bd346035aa816b081fe1"}, + {file = "pyzmq-26.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9ed69074a610fad1c2fda66180e7b2edd4d31c53f2d1872bc2d1211563904cd9"}, + {file = "pyzmq-26.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:cccba051221b916a4f5e538997c45d7d136a5646442b1231b916d0164067ea27"}, + {file = "pyzmq-26.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:0eaa83fc4c1e271c24eaf8fb083cbccef8fde77ec8cd45f3c35a9a123e6da097"}, + {file = "pyzmq-26.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:9edda2df81daa129b25a39b86cb57dfdfe16f7ec15b42b19bfac503360d27a93"}, + {file = "pyzmq-26.2.0-cp37-cp37m-win32.whl", hash = "sha256:ea0eb6af8a17fa272f7b98d7bebfab7836a0d62738e16ba380f440fceca2d951"}, + {file = "pyzmq-26.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:4ff9dc6bc1664bb9eec25cd17506ef6672d506115095411e237d571e92a58231"}, + {file = "pyzmq-26.2.0-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:2eb7735ee73ca1b0d71e0e67c3739c689067f055c764f73aac4cc8ecf958ee3f"}, + {file = "pyzmq-26.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a534f43bc738181aa7cbbaf48e3eca62c76453a40a746ab95d4b27b1111a7d2"}, + {file = "pyzmq-26.2.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:aedd5dd8692635813368e558a05266b995d3d020b23e49581ddd5bbe197a8ab6"}, + {file = "pyzmq-26.2.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:8be4700cd8bb02cc454f630dcdf7cfa99de96788b80c51b60fe2fe1dac480289"}, + {file = "pyzmq-26.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fcc03fa4997c447dce58264e93b5aa2d57714fbe0f06c07b7785ae131512732"}, + {file = "pyzmq-26.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:402b190912935d3db15b03e8f7485812db350d271b284ded2b80d2e5704be780"}, + {file = "pyzmq-26.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:8685fa9c25ff00f550c1fec650430c4b71e4e48e8d852f7ddcf2e48308038640"}, + {file = "pyzmq-26.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:76589c020680778f06b7e0b193f4b6dd66d470234a16e1df90329f5e14a171cd"}, + {file = "pyzmq-26.2.0-cp38-cp38-win32.whl", hash = "sha256:8423c1877d72c041f2c263b1ec6e34360448decfb323fa8b94e85883043ef988"}, + {file = "pyzmq-26.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:76589f2cd6b77b5bdea4fca5992dc1c23389d68b18ccc26a53680ba2dc80ff2f"}, + {file = "pyzmq-26.2.0-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:b1d464cb8d72bfc1a3adc53305a63a8e0cac6bc8c5a07e8ca190ab8d3faa43c2"}, + {file = "pyzmq-26.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4da04c48873a6abdd71811c5e163bd656ee1b957971db7f35140a2d573f6949c"}, + {file = "pyzmq-26.2.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:d049df610ac811dcffdc147153b414147428567fbbc8be43bb8885f04db39d98"}, + {file = "pyzmq-26.2.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:05590cdbc6b902101d0e65d6a4780af14dc22914cc6ab995d99b85af45362cc9"}, + {file = "pyzmq-26.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c811cfcd6a9bf680236c40c6f617187515269ab2912f3d7e8c0174898e2519db"}, + {file = "pyzmq-26.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:6835dd60355593de10350394242b5757fbbd88b25287314316f266e24c61d073"}, + {file = "pyzmq-26.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc6bee759a6bddea5db78d7dcd609397449cb2d2d6587f48f3ca613b19410cfc"}, + {file = "pyzmq-26.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c530e1eecd036ecc83c3407f77bb86feb79916d4a33d11394b8234f3bd35b940"}, + {file = "pyzmq-26.2.0-cp39-cp39-win32.whl", hash = "sha256:367b4f689786fca726ef7a6c5ba606958b145b9340a5e4808132cc65759abd44"}, + {file = "pyzmq-26.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:e6fa2e3e683f34aea77de8112f6483803c96a44fd726d7358b9888ae5bb394ec"}, + {file = "pyzmq-26.2.0-cp39-cp39-win_arm64.whl", hash = "sha256:7445be39143a8aa4faec43b076e06944b8f9d0701b669df4af200531b21e40bb"}, + {file = "pyzmq-26.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:706e794564bec25819d21a41c31d4df2d48e1cc4b061e8d345d7fb4dd3e94072"}, + {file = "pyzmq-26.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b435f2753621cd36e7c1762156815e21c985c72b19135dac43a7f4f31d28dd1"}, + {file = "pyzmq-26.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:160c7e0a5eb178011e72892f99f918c04a131f36056d10d9c1afb223fc952c2d"}, + {file = "pyzmq-26.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c4a71d5d6e7b28a47a394c0471b7e77a0661e2d651e7ae91e0cab0a587859ca"}, + {file = "pyzmq-26.2.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:90412f2db8c02a3864cbfc67db0e3dcdbda336acf1c469526d3e869394fe001c"}, + {file = "pyzmq-26.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:2ea4ad4e6a12e454de05f2949d4beddb52460f3de7c8b9d5c46fbb7d7222e02c"}, + {file = "pyzmq-26.2.0-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:fc4f7a173a5609631bb0c42c23d12c49df3966f89f496a51d3eb0ec81f4519d6"}, + {file = "pyzmq-26.2.0-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:878206a45202247781472a2d99df12a176fef806ca175799e1c6ad263510d57c"}, + {file = "pyzmq-26.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17c412bad2eb9468e876f556eb4ee910e62d721d2c7a53c7fa31e643d35352e6"}, + {file = "pyzmq-26.2.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:0d987a3ae5a71c6226b203cfd298720e0086c7fe7c74f35fa8edddfbd6597eed"}, + {file = "pyzmq-26.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:39887ac397ff35b7b775db7201095fc6310a35fdbae85bac4523f7eb3b840e20"}, + {file = "pyzmq-26.2.0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:fdb5b3e311d4d4b0eb8b3e8b4d1b0a512713ad7e6a68791d0923d1aec433d919"}, + {file = "pyzmq-26.2.0-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:226af7dcb51fdb0109f0016449b357e182ea0ceb6b47dfb5999d569e5db161d5"}, + {file = "pyzmq-26.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bed0e799e6120b9c32756203fb9dfe8ca2fb8467fed830c34c877e25638c3fc"}, + {file = "pyzmq-26.2.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:29c7947c594e105cb9e6c466bace8532dc1ca02d498684128b339799f5248277"}, + {file = "pyzmq-26.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:cdeabcff45d1c219636ee2e54d852262e5c2e085d6cb476d938aee8d921356b3"}, + {file = "pyzmq-26.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:35cffef589bcdc587d06f9149f8d5e9e8859920a071df5a2671de2213bef592a"}, + {file = "pyzmq-26.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:18c8dc3b7468d8b4bdf60ce9d7141897da103c7a4690157b32b60acb45e333e6"}, + {file = "pyzmq-26.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7133d0a1677aec369d67dd78520d3fa96dd7f3dcec99d66c1762870e5ea1a50a"}, + {file = "pyzmq-26.2.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:6a96179a24b14fa6428cbfc08641c779a53f8fcec43644030328f44034c7f1f4"}, + {file = "pyzmq-26.2.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:4f78c88905461a9203eac9faac157a2a0dbba84a0fd09fd29315db27be40af9f"}, + {file = "pyzmq-26.2.0.tar.gz", hash = "sha256:070672c258581c8e4f640b5159297580a9974b026043bd4ab0470be9ed324f1f"}, ] [package.dependencies] cffi = {version = "*", markers = "implementation_name == \"pypy\""} -py = {version = "*", markers = "implementation_name == \"pypy\""} [[package]] -name = "qtconsole" -version = "5.3.1" -description = "Jupyter Qt console" -category = "main" +name = "referencing" +version = "0.35.1" +description = "JSON Referencing + Python" optional = false -python-versions = ">= 3.7" +python-versions = ">=3.8" files = [ - {file = "qtconsole-5.3.1-py3-none-any.whl", hash = "sha256:d364592d7ede3257f1e17fcdbfd339c26e2cc638ca4fa4ee56a724e26ea13c81"}, - {file = "qtconsole-5.3.1.tar.gz", hash = "sha256:b73723fac43938b684dcb237a88510dc7721c43a726cea8ade179a2927c0a2f3"}, + {file = "referencing-0.35.1-py3-none-any.whl", hash = "sha256:eda6d3234d62814d1c64e305c1331c9a3a6132da475ab6382eaa997b21ee75de"}, + {file = "referencing-0.35.1.tar.gz", hash = "sha256:25b42124a6c8b632a425174f24087783efb348a6f1e0008e63cd4466fedf703c"}, ] [package.dependencies] -ipykernel = ">=4.1" -ipython-genutils = "*" -jupyter-client = ">=4.1" -jupyter-core = "*" -pygments = "*" -pyzmq = ">=17.1" -qtpy = ">=2.0.1" -traitlets = "<5.2.1 || >5.2.1,<5.2.2 || >5.2.2" - -[package.extras] -doc = ["Sphinx (>=1.3)"] -test = ["flaky", "pytest", "pytest-qt"] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" [[package]] -name = "qtpy" -version = "2.2.0" -description = "Provides an abstraction layer on top of the various Qt bindings (PyQt5/6 and PySide2/6)." -category = "main" +name = "regex" +version = "2024.9.11" +description = "Alternative regular expression module, to replace re." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "QtPy-2.2.0-py3-none-any.whl", hash = "sha256:d283cfba378b0dbe36a55b68aea8ee2f86cd6ccf06c023af25bbe705ffbb29e5"}, - {file = "QtPy-2.2.0.tar.gz", hash = "sha256:d85f1b121f24a41ad26c55c446e66abdb7c528839f8c4f11f156ec4541903914"}, + {file = "regex-2024.9.11-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:1494fa8725c285a81d01dc8c06b55287a1ee5e0e382d8413adc0a9197aac6408"}, + {file = "regex-2024.9.11-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0e12c481ad92d129c78f13a2a3662317e46ee7ef96c94fd332e1c29131875b7d"}, + {file = "regex-2024.9.11-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:16e13a7929791ac1216afde26f712802e3df7bf0360b32e4914dca3ab8baeea5"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:46989629904bad940bbec2106528140a218b4a36bb3042d8406980be1941429c"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a906ed5e47a0ce5f04b2c981af1c9acf9e8696066900bf03b9d7879a6f679fc8"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e9a091b0550b3b0207784a7d6d0f1a00d1d1c8a11699c1a4d93db3fbefc3ad35"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ddcd9a179c0a6fa8add279a4444015acddcd7f232a49071ae57fa6e278f1f71"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6b41e1adc61fa347662b09398e31ad446afadff932a24807d3ceb955ed865cc8"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ced479f601cd2f8ca1fd7b23925a7e0ad512a56d6e9476f79b8f381d9d37090a"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:635a1d96665f84b292e401c3d62775851aedc31d4f8784117b3c68c4fcd4118d"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:c0256beda696edcf7d97ef16b2a33a8e5a875affd6fa6567b54f7c577b30a137"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:3ce4f1185db3fbde8ed8aa223fc9620f276c58de8b0d4f8cc86fd1360829edb6"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:09d77559e80dcc9d24570da3745ab859a9cf91953062e4ab126ba9d5993688ca"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7a22ccefd4db3f12b526eccb129390942fe874a3a9fdbdd24cf55773a1faab1a"}, + {file = "regex-2024.9.11-cp310-cp310-win32.whl", hash = "sha256:f745ec09bc1b0bd15cfc73df6fa4f726dcc26bb16c23a03f9e3367d357eeedd0"}, + {file = "regex-2024.9.11-cp310-cp310-win_amd64.whl", hash = "sha256:01c2acb51f8a7d6494c8c5eafe3d8e06d76563d8a8a4643b37e9b2dd8a2ff623"}, + {file = "regex-2024.9.11-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2cce2449e5927a0bf084d346da6cd5eb016b2beca10d0013ab50e3c226ffc0df"}, + {file = "regex-2024.9.11-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3b37fa423beefa44919e009745ccbf353d8c981516e807995b2bd11c2c77d268"}, + {file = "regex-2024.9.11-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:64ce2799bd75039b480cc0360907c4fb2f50022f030bf9e7a8705b636e408fad"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a4cc92bb6db56ab0c1cbd17294e14f5e9224f0cc6521167ef388332604e92679"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d05ac6fa06959c4172eccd99a222e1fbf17b5670c4d596cb1e5cde99600674c4"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:040562757795eeea356394a7fb13076ad4f99d3c62ab0f8bdfb21f99a1f85664"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6113c008a7780792efc80f9dfe10ba0cd043cbf8dc9a76ef757850f51b4edc50"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8e5fb5f77c8745a60105403a774fe2c1759b71d3e7b4ca237a5e67ad066c7199"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:54d9ff35d4515debf14bc27f1e3b38bfc453eff3220f5bce159642fa762fe5d4"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:df5cbb1fbc74a8305b6065d4ade43b993be03dbe0f8b30032cced0d7740994bd"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:7fb89ee5d106e4a7a51bce305ac4efb981536301895f7bdcf93ec92ae0d91c7f"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:a738b937d512b30bf75995c0159c0ddf9eec0775c9d72ac0202076c72f24aa96"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e28f9faeb14b6f23ac55bfbbfd3643f5c7c18ede093977f1df249f73fd22c7b1"}, + {file = "regex-2024.9.11-cp311-cp311-win32.whl", hash = "sha256:18e707ce6c92d7282dfce370cd205098384b8ee21544e7cb29b8aab955b66fa9"}, + {file = "regex-2024.9.11-cp311-cp311-win_amd64.whl", hash = "sha256:313ea15e5ff2a8cbbad96ccef6be638393041b0a7863183c2d31e0c6116688cf"}, + {file = "regex-2024.9.11-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:b0d0a6c64fcc4ef9c69bd5b3b3626cc3776520a1637d8abaa62b9edc147a58f7"}, + {file = "regex-2024.9.11-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:49b0e06786ea663f933f3710a51e9385ce0cba0ea56b67107fd841a55d56a231"}, + {file = "regex-2024.9.11-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5b513b6997a0b2f10e4fd3a1313568e373926e8c252bd76c960f96fd039cd28d"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee439691d8c23e76f9802c42a95cfeebf9d47cf4ffd06f18489122dbb0a7ad64"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a8f877c89719d759e52783f7fe6e1c67121076b87b40542966c02de5503ace42"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23b30c62d0f16827f2ae9f2bb87619bc4fba2044911e2e6c2eb1af0161cdb766"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85ab7824093d8f10d44330fe1e6493f756f252d145323dd17ab6b48733ff6c0a"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8dee5b4810a89447151999428fe096977346cf2f29f4d5e29609d2e19e0199c9"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:98eeee2f2e63edae2181c886d7911ce502e1292794f4c5ee71e60e23e8d26b5d"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:57fdd2e0b2694ce6fc2e5ccf189789c3e2962916fb38779d3e3521ff8fe7a822"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:d552c78411f60b1fdaafd117a1fca2f02e562e309223b9d44b7de8be451ec5e0"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:a0b2b80321c2ed3fcf0385ec9e51a12253c50f146fddb2abbb10f033fe3d049a"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:18406efb2f5a0e57e3a5881cd9354c1512d3bb4f5c45d96d110a66114d84d23a"}, + {file = "regex-2024.9.11-cp312-cp312-win32.whl", hash = "sha256:e464b467f1588e2c42d26814231edecbcfe77f5ac414d92cbf4e7b55b2c2a776"}, + {file = "regex-2024.9.11-cp312-cp312-win_amd64.whl", hash = "sha256:9e8719792ca63c6b8340380352c24dcb8cd7ec49dae36e963742a275dfae6009"}, + {file = "regex-2024.9.11-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:c157bb447303070f256e084668b702073db99bbb61d44f85d811025fcf38f784"}, + {file = "regex-2024.9.11-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:4db21ece84dfeefc5d8a3863f101995de646c6cb0536952c321a2650aa202c36"}, + {file = "regex-2024.9.11-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:220e92a30b426daf23bb67a7962900ed4613589bab80382be09b48896d211e92"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eb1ae19e64c14c7ec1995f40bd932448713d3c73509e82d8cd7744dc00e29e86"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f47cd43a5bfa48f86925fe26fbdd0a488ff15b62468abb5d2a1e092a4fb10e85"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9d4a76b96f398697fe01117093613166e6aa8195d63f1b4ec3f21ab637632963"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ea51dcc0835eea2ea31d66456210a4e01a076d820e9039b04ae8d17ac11dee6"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b7aaa315101c6567a9a45d2839322c51c8d6e81f67683d529512f5bcfb99c802"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c57d08ad67aba97af57a7263c2d9006d5c404d721c5f7542f077f109ec2a4a29"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:f8404bf61298bb6f8224bb9176c1424548ee1181130818fcd2cbffddc768bed8"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:dd4490a33eb909ef5078ab20f5f000087afa2a4daa27b4c072ccb3cb3050ad84"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:eee9130eaad130649fd73e5cd92f60e55708952260ede70da64de420cdcad554"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a2644a93da36c784e546de579ec1806bfd2763ef47babc1b03d765fe560c9f8"}, + {file = "regex-2024.9.11-cp313-cp313-win32.whl", hash = "sha256:e997fd30430c57138adc06bba4c7c2968fb13d101e57dd5bb9355bf8ce3fa7e8"}, + {file = "regex-2024.9.11-cp313-cp313-win_amd64.whl", hash = "sha256:042c55879cfeb21a8adacc84ea347721d3d83a159da6acdf1116859e2427c43f"}, + {file = "regex-2024.9.11-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:35f4a6f96aa6cb3f2f7247027b07b15a374f0d5b912c0001418d1d55024d5cb4"}, + {file = "regex-2024.9.11-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:55b96e7ce3a69a8449a66984c268062fbaa0d8ae437b285428e12797baefce7e"}, + {file = "regex-2024.9.11-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cb130fccd1a37ed894824b8c046321540263013da72745d755f2d35114b81a60"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:323c1f04be6b2968944d730e5c2091c8c89767903ecaa135203eec4565ed2b2b"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:be1c8ed48c4c4065ecb19d882a0ce1afe0745dfad8ce48c49586b90a55f02366"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5b029322e6e7b94fff16cd120ab35a253236a5f99a79fb04fda7ae71ca20ae8"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6fff13ef6b5f29221d6904aa816c34701462956aa72a77f1f151a8ec4f56aeb"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:587d4af3979376652010e400accc30404e6c16b7df574048ab1f581af82065e4"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:079400a8269544b955ffa9e31f186f01d96829110a3bf79dc338e9910f794fca"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:f9268774428ec173654985ce55fc6caf4c6d11ade0f6f914d48ef4719eb05ebb"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:23f9985c8784e544d53fc2930fc1ac1a7319f5d5332d228437acc9f418f2f168"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:ae2941333154baff9838e88aa71c1d84f4438189ecc6021a12c7573728b5838e"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:e93f1c331ca8e86fe877a48ad64e77882c0c4da0097f2212873a69bbfea95d0c"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:846bc79ee753acf93aef4184c040d709940c9d001029ceb7b7a52747b80ed2dd"}, + {file = "regex-2024.9.11-cp38-cp38-win32.whl", hash = "sha256:c94bb0a9f1db10a1d16c00880bdebd5f9faf267273b8f5bd1878126e0fbde771"}, + {file = "regex-2024.9.11-cp38-cp38-win_amd64.whl", hash = "sha256:2b08fce89fbd45664d3df6ad93e554b6c16933ffa9d55cb7e01182baaf971508"}, + {file = "regex-2024.9.11-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:07f45f287469039ffc2c53caf6803cd506eb5f5f637f1d4acb37a738f71dd066"}, + {file = "regex-2024.9.11-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4838e24ee015101d9f901988001038f7f0d90dc0c3b115541a1365fb439add62"}, + {file = "regex-2024.9.11-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6edd623bae6a737f10ce853ea076f56f507fd7726bee96a41ee3d68d347e4d16"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c69ada171c2d0e97a4b5aa78fbb835e0ffbb6b13fc5da968c09811346564f0d3"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:02087ea0a03b4af1ed6ebab2c54d7118127fee8d71b26398e8e4b05b78963199"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:69dee6a020693d12a3cf892aba4808fe168d2a4cef368eb9bf74f5398bfd4ee8"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:297f54910247508e6e5cae669f2bc308985c60540a4edd1c77203ef19bfa63ca"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ecea58b43a67b1b79805f1a0255730edaf5191ecef84dbc4cc85eb30bc8b63b9"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:eab4bb380f15e189d1313195b062a6aa908f5bd687a0ceccd47c8211e9cf0d4a"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:0cbff728659ce4bbf4c30b2a1be040faafaa9eca6ecde40aaff86f7889f4ab39"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:54c4a097b8bc5bb0dfc83ae498061d53ad7b5762e00f4adaa23bee22b012e6ba"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:73d6d2f64f4d894c96626a75578b0bf7d9e56dcda8c3d037a2118fdfe9b1c664"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:e53b5fbab5d675aec9f0c501274c467c0f9a5d23696cfc94247e1fb56501ed89"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0ffbcf9221e04502fc35e54d1ce9567541979c3fdfb93d2c554f0ca583a19b35"}, + {file = "regex-2024.9.11-cp39-cp39-win32.whl", hash = "sha256:e4c22e1ac1f1ec1e09f72e6c44d8f2244173db7eb9629cc3a346a8d7ccc31142"}, + {file = "regex-2024.9.11-cp39-cp39-win_amd64.whl", hash = "sha256:faa3c142464efec496967359ca99696c896c591c56c53506bac1ad465f66e919"}, + {file = "regex-2024.9.11.tar.gz", hash = "sha256:6c188c307e8433bcb63dc1915022deb553b4203a70722fc542c363bf120a01fd"}, ] -[package.dependencies] -packaging = "*" - -[package.extras] -test = ["pytest (>=6,!=7.0.0,!=7.0.1)", "pytest-cov (>=3.0.0)", "pytest-qt"] - [[package]] name = "requests" -version = "2.28.1" +version = "2.32.3" description = "Python HTTP for Humans." -category = "main" optional = false -python-versions = ">=3.7, <4" +python-versions = ">=3.8" files = [ - {file = "requests-2.28.1-py3-none-any.whl", hash = "sha256:8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349"}, - {file = "requests-2.28.1.tar.gz", hash = "sha256:7c5599b102feddaa661c826c56ab4fee28bfd17f5abca1ebbe3e7f19d7c97983"}, + {file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"}, + {file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"}, ] [package.dependencies] certifi = ">=2017.4.17" -charset-normalizer = ">=2,<3" +charset-normalizer = ">=2,<4" idna = ">=2.5,<4" -urllib3 = ">=1.21.1,<1.27" +urllib3 = ">=1.21.1,<3" [package.extras] socks = ["PySocks (>=1.5.6,!=1.5.7)"] use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] [[package]] -name = "rtree" -version = "1.0.0" -description = "R-Tree spatial index for Python GIS" -category = "main" +name = "rfc3339-validator" +version = "0.1.4" +description = "A pure python RFC3339 validator" optional = false -python-versions = ">=3.7" +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" files = [ - {file = "Rtree-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:757bbf9ca38c241e34812a646f16ffda2cabd535bcd815041b83fe091df7a85c"}, - {file = "Rtree-1.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fe3954a51d691d3938cbac42ac97f4acacbea8ea622a375df901318a5c4ab0e9"}, - {file = "Rtree-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:24185f39b277aaca0566284858de02edc80dc7b120233be38fcf3b4c7d2e72dc"}, - {file = "Rtree-1.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b2110fb8675bf809bba431a1876ba76ca5dde829a4de40aa7851941452a01278"}, - {file = "Rtree-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b0256ed9c27037892bcb7167e7f5c469ee7c5de38c5a895145e33c320584babe"}, - {file = "Rtree-1.0.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:7f2c0bd3e7d4b68cc27ab605b18487440427d5febba5f4b747b694f9de601c6f"}, - {file = "Rtree-1.0.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:c2b14f7603576b73a5e0fd2e35394db08c5ca3cfa41e4c8530128d91e5e43dd3"}, - {file = "Rtree-1.0.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:973ce22ee8bafa44b3df24c6bf78012e534e1f36103e0bbfbb193ec48e9be22a"}, - {file = "Rtree-1.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:55b771e62b1e391a44776ef9f906944796213cc3cb48ffd6b22493684c68a859"}, - {file = "Rtree-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0475b2e7fe813c427ceb21e57c22f8b4b7fee6e5966db8a200688163d4853f14"}, - {file = "Rtree-1.0.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e436d8da7527655fd0512dd6a5218f604a3806849f3981ec0ca64930dc19b7f2"}, - {file = "Rtree-1.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d18efe4e69f6b7daee9aaced21e0218786209d55235c909c78dbc5c12368790"}, - {file = "Rtree-1.0.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:728cf9b774ed6f120f2ed072082431c14af8243d477656b5b7dc1ff855fe7786"}, - {file = "Rtree-1.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:3e28303d84f8b5509e26db7c2aa533692a6112a430cc955a7a7e6d899c9d5996"}, - {file = "Rtree-1.0.0-cp37-cp37m-win_amd64.whl", hash = "sha256:062439d3a33d95281445960af76b6189b987cda0803fdc1818e31b68bce989d1"}, - {file = "Rtree-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0ab0dccff665389329f8d2e623131a1af3ab82b6de570f8c494a429c129f3e65"}, - {file = "Rtree-1.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:44df5adc12841b94adcbc4e5aaada248e98a4dc2017c8c7060f9a782ef63e050"}, - {file = "Rtree-1.0.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:29a1a4452e334eaf3299c8b95f137a2ccafbccfd856041f612ec933eeafb2cf5"}, - {file = "Rtree-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efdaf7137303af7a85ddd224bacdb27f9f7ece99e0dec627c900e12f22cdefd0"}, - {file = "Rtree-1.0.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:264e3b255a1fc6aaa2ddbcedfc15ac40578433f6b35a0c7aaba026215d91d8c3"}, - {file = "Rtree-1.0.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:26b2275ebc738cb6a0473c15d80fdfe820ef319015009f8f0789e586552cf411"}, - {file = "Rtree-1.0.0-cp38-cp38-win_amd64.whl", hash = "sha256:825c1f74a84e9857657c04503c4c50b9f170114183fa2db9211a5d8650cf1ffa"}, - {file = "Rtree-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a91d7b514210ae93029c2a7ed83b2595ca73de5e08a9d87fcdf3a784a7b3ef54"}, - {file = "Rtree-1.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0ffaa03d1f7e8291de7cd8a11f92e10579f145dc3a08cd46a9eea65cc7b42173"}, - {file = "Rtree-1.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4f2f93c997de551a1a0fa4065e713270ad9a509aeeb143c5b46f332c0759f314"}, - {file = "Rtree-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a48f46dbb6ab0cb135a43d90529e1fa09a6dd80149a34844f2adf8414b4ab71a"}, - {file = "Rtree-1.0.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:171aa361b3542bf1e47bdee54c611644bb33d35502e2ceea57ac89cf35330554"}, - {file = "Rtree-1.0.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:bc18d4df3edb3b889b177ba39238770afdb5787fb803677c3aadea42a6931485"}, - {file = "Rtree-1.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:bc6e7384684a260eb2f04fcac64ca5ffe28876132a11d1a883db2a5db8becb64"}, - {file = "Rtree-1.0.0.tar.gz", hash = "sha256:d0483482121346b093b9a42518d40f921adf445915b7aea307eb26768c839682"}, -] - -[[package]] -name = "ruamel.yaml" -version = "0.17.21" -description = "ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order" -category = "dev" -optional = false -python-versions = ">=3" -files = [ - {file = "ruamel.yaml-0.17.21-py3-none-any.whl", hash = "sha256:742b35d3d665023981bd6d16b3d24248ce5df75fdb4e2924e93a05c1f8b61ca7"}, - {file = "ruamel.yaml-0.17.21.tar.gz", hash = "sha256:8b7ce697a2f212752a35c1ac414471dc16c424c9573be4926b56ff3f5d23b7af"}, + {file = "rfc3339_validator-0.1.4-py2.py3-none-any.whl", hash = "sha256:24f6ec1eda14ef823da9e36ec7113124b39c04d50a4d3d3a3c2859577e7791fa"}, + {file = "rfc3339_validator-0.1.4.tar.gz", hash = "sha256:138a2abdf93304ad60530167e51d2dfb9549521a836871b88d7f4695d0022f6b"}, ] [package.dependencies] -"ruamel.yaml.clib" = {version = ">=0.2.6", markers = "platform_python_implementation == \"CPython\" and python_version < \"3.11\""} +six = "*" + +[[package]] +name = "rfc3986-validator" +version = "0.1.1" +description = "Pure python rfc3986 validator" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "rfc3986_validator-0.1.1-py2.py3-none-any.whl", hash = "sha256:2f235c432ef459970b4306369336b9d5dbdda31b510ca1e327636e01f528bfa9"}, + {file = "rfc3986_validator-0.1.1.tar.gz", hash = "sha256:3d44bde7921b3b9ec3ae4e3adca370438eccebc676456449b145d533b240d055"}, +] + +[[package]] +name = "rpds-py" +version = "0.20.1" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.20.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:a649dfd735fff086e8a9d0503a9f0c7d01b7912a333c7ae77e1515c08c146dad"}, + {file = "rpds_py-0.20.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f16bc1334853e91ddaaa1217045dd7be166170beec337576818461268a3de67f"}, + {file = "rpds_py-0.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:14511a539afee6f9ab492b543060c7491c99924314977a55c98bfa2ee29ce78c"}, + {file = "rpds_py-0.20.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3ccb8ac2d3c71cda472b75af42818981bdacf48d2e21c36331b50b4f16930163"}, + {file = "rpds_py-0.20.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c142b88039b92e7e0cb2552e8967077e3179b22359e945574f5e2764c3953dcf"}, + {file = "rpds_py-0.20.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f19169781dddae7478a32301b499b2858bc52fc45a112955e798ee307e294977"}, + {file = "rpds_py-0.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13c56de6518e14b9bf6edde23c4c39dac5b48dcf04160ea7bce8fca8397cdf86"}, + {file = "rpds_py-0.20.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:925d176a549f4832c6f69fa6026071294ab5910e82a0fe6c6228fce17b0706bd"}, + {file = "rpds_py-0.20.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:78f0b6877bfce7a3d1ff150391354a410c55d3cdce386f862926a4958ad5ab7e"}, + {file = "rpds_py-0.20.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3dd645e2b0dcb0fd05bf58e2e54c13875847687d0b71941ad2e757e5d89d4356"}, + {file = "rpds_py-0.20.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:4f676e21db2f8c72ff0936f895271e7a700aa1f8d31b40e4e43442ba94973899"}, + {file = "rpds_py-0.20.1-cp310-none-win32.whl", hash = "sha256:648386ddd1e19b4a6abab69139b002bc49ebf065b596119f8f37c38e9ecee8ff"}, + {file = "rpds_py-0.20.1-cp310-none-win_amd64.whl", hash = "sha256:d9ecb51120de61e4604650666d1f2b68444d46ae18fd492245a08f53ad2b7711"}, + {file = "rpds_py-0.20.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:762703bdd2b30983c1d9e62b4c88664df4a8a4d5ec0e9253b0231171f18f6d75"}, + {file = "rpds_py-0.20.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0b581f47257a9fce535c4567782a8976002d6b8afa2c39ff616edf87cbeff712"}, + {file = "rpds_py-0.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:842c19a6ce894493563c3bd00d81d5100e8e57d70209e84d5491940fdb8b9e3a"}, + {file = "rpds_py-0.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:42cbde7789f5c0bcd6816cb29808e36c01b960fb5d29f11e052215aa85497c93"}, + {file = "rpds_py-0.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6c8e9340ce5a52f95fa7d3b552b35c7e8f3874d74a03a8a69279fd5fca5dc751"}, + {file = "rpds_py-0.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ba6f89cac95c0900d932c9efb7f0fb6ca47f6687feec41abcb1bd5e2bd45535"}, + {file = "rpds_py-0.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4a916087371afd9648e1962e67403c53f9c49ca47b9680adbeef79da3a7811b0"}, + {file = "rpds_py-0.20.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:200a23239781f46149e6a415f1e870c5ef1e712939fe8fa63035cd053ac2638e"}, + {file = "rpds_py-0.20.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:58b1d5dd591973d426cbb2da5e27ba0339209832b2f3315928c9790e13f159e8"}, + {file = "rpds_py-0.20.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:6b73c67850ca7cae0f6c56f71e356d7e9fa25958d3e18a64927c2d930859b8e4"}, + {file = "rpds_py-0.20.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d8761c3c891cc51e90bc9926d6d2f59b27beaf86c74622c8979380a29cc23ac3"}, + {file = "rpds_py-0.20.1-cp311-none-win32.whl", hash = "sha256:cd945871335a639275eee904caef90041568ce3b42f402c6959b460d25ae8732"}, + {file = "rpds_py-0.20.1-cp311-none-win_amd64.whl", hash = "sha256:7e21b7031e17c6b0e445f42ccc77f79a97e2687023c5746bfb7a9e45e0921b84"}, + {file = "rpds_py-0.20.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:36785be22066966a27348444b40389f8444671630063edfb1a2eb04318721e17"}, + {file = "rpds_py-0.20.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:142c0a5124d9bd0e2976089484af5c74f47bd3298f2ed651ef54ea728d2ea42c"}, + {file = "rpds_py-0.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dbddc10776ca7ebf2a299c41a4dde8ea0d8e3547bfd731cb87af2e8f5bf8962d"}, + {file = "rpds_py-0.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:15a842bb369e00295392e7ce192de9dcbf136954614124a667f9f9f17d6a216f"}, + {file = "rpds_py-0.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:be5ef2f1fc586a7372bfc355986226484e06d1dc4f9402539872c8bb99e34b01"}, + {file = "rpds_py-0.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbcf360c9e3399b056a238523146ea77eeb2a596ce263b8814c900263e46031a"}, + {file = "rpds_py-0.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ecd27a66740ffd621d20b9a2f2b5ee4129a56e27bfb9458a3bcc2e45794c96cb"}, + {file = "rpds_py-0.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d0b937b2a1988f184a3e9e577adaa8aede21ec0b38320d6009e02bd026db04fa"}, + {file = "rpds_py-0.20.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6889469bfdc1eddf489729b471303739bf04555bb151fe8875931f8564309afc"}, + {file = "rpds_py-0.20.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:19b73643c802f4eaf13d97f7855d0fb527fbc92ab7013c4ad0e13a6ae0ed23bd"}, + {file = "rpds_py-0.20.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3c6afcf2338e7f374e8edc765c79fbcb4061d02b15dd5f8f314a4af2bdc7feb5"}, + {file = "rpds_py-0.20.1-cp312-none-win32.whl", hash = "sha256:dc73505153798c6f74854aba69cc75953888cf9866465196889c7cdd351e720c"}, + {file = "rpds_py-0.20.1-cp312-none-win_amd64.whl", hash = "sha256:8bbe951244a838a51289ee53a6bae3a07f26d4e179b96fc7ddd3301caf0518eb"}, + {file = "rpds_py-0.20.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:6ca91093a4a8da4afae7fe6a222c3b53ee4eef433ebfee4d54978a103435159e"}, + {file = "rpds_py-0.20.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:b9c2fe36d1f758b28121bef29ed1dee9b7a2453e997528e7d1ac99b94892527c"}, + {file = "rpds_py-0.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f009c69bc8c53db5dfab72ac760895dc1f2bc1b62ab7408b253c8d1ec52459fc"}, + {file = "rpds_py-0.20.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6740a3e8d43a32629bb9b009017ea5b9e713b7210ba48ac8d4cb6d99d86c8ee8"}, + {file = "rpds_py-0.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:32b922e13d4c0080d03e7b62991ad7f5007d9cd74e239c4b16bc85ae8b70252d"}, + {file = "rpds_py-0.20.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe00a9057d100e69b4ae4a094203a708d65b0f345ed546fdef86498bf5390982"}, + {file = "rpds_py-0.20.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:49fe9b04b6fa685bd39237d45fad89ba19e9163a1ccaa16611a812e682913496"}, + {file = "rpds_py-0.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:aa7ac11e294304e615b43f8c441fee5d40094275ed7311f3420d805fde9b07b4"}, + {file = "rpds_py-0.20.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6aa97af1558a9bef4025f8f5d8c60d712e0a3b13a2fe875511defc6ee77a1ab7"}, + {file = "rpds_py-0.20.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:483b29f6f7ffa6af845107d4efe2e3fa8fb2693de8657bc1849f674296ff6a5a"}, + {file = "rpds_py-0.20.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:37fe0f12aebb6a0e3e17bb4cd356b1286d2d18d2e93b2d39fe647138458b4bcb"}, + {file = "rpds_py-0.20.1-cp313-none-win32.whl", hash = "sha256:a624cc00ef2158e04188df5e3016385b9353638139a06fb77057b3498f794782"}, + {file = "rpds_py-0.20.1-cp313-none-win_amd64.whl", hash = "sha256:b71b8666eeea69d6363248822078c075bac6ed135faa9216aa85f295ff009b1e"}, + {file = "rpds_py-0.20.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:5b48e790e0355865197ad0aca8cde3d8ede347831e1959e158369eb3493d2191"}, + {file = "rpds_py-0.20.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3e310838a5801795207c66c73ea903deda321e6146d6f282e85fa7e3e4854804"}, + {file = "rpds_py-0.20.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2249280b870e6a42c0d972339e9cc22ee98730a99cd7f2f727549af80dd5a963"}, + {file = "rpds_py-0.20.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e79059d67bea28b53d255c1437b25391653263f0e69cd7dec170d778fdbca95e"}, + {file = "rpds_py-0.20.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2b431c777c9653e569986ecf69ff4a5dba281cded16043d348bf9ba505486f36"}, + {file = "rpds_py-0.20.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:da584ff96ec95e97925174eb8237e32f626e7a1a97888cdd27ee2f1f24dd0ad8"}, + {file = "rpds_py-0.20.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:02a0629ec053fc013808a85178524e3cb63a61dbc35b22499870194a63578fb9"}, + {file = "rpds_py-0.20.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fbf15aff64a163db29a91ed0868af181d6f68ec1a3a7d5afcfe4501252840bad"}, + {file = "rpds_py-0.20.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:07924c1b938798797d60c6308fa8ad3b3f0201802f82e4a2c41bb3fafb44cc28"}, + {file = "rpds_py-0.20.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:4a5a844f68776a7715ecb30843b453f07ac89bad393431efbf7accca3ef599c1"}, + {file = "rpds_py-0.20.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:518d2ca43c358929bf08f9079b617f1c2ca6e8848f83c1225c88caeac46e6cbc"}, + {file = "rpds_py-0.20.1-cp38-none-win32.whl", hash = "sha256:3aea7eed3e55119635a74bbeb80b35e776bafccb70d97e8ff838816c124539f1"}, + {file = "rpds_py-0.20.1-cp38-none-win_amd64.whl", hash = "sha256:7dca7081e9a0c3b6490a145593f6fe3173a94197f2cb9891183ef75e9d64c425"}, + {file = "rpds_py-0.20.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:b41b6321805c472f66990c2849e152aff7bc359eb92f781e3f606609eac877ad"}, + {file = "rpds_py-0.20.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0a90c373ea2975519b58dece25853dbcb9779b05cc46b4819cb1917e3b3215b6"}, + {file = "rpds_py-0.20.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:16d4477bcb9fbbd7b5b0e4a5d9b493e42026c0bf1f06f723a9353f5153e75d30"}, + {file = "rpds_py-0.20.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:84b8382a90539910b53a6307f7c35697bc7e6ffb25d9c1d4e998a13e842a5e83"}, + {file = "rpds_py-0.20.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4888e117dd41b9d34194d9e31631af70d3d526efc363085e3089ab1a62c32ed1"}, + {file = "rpds_py-0.20.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5265505b3d61a0f56618c9b941dc54dc334dc6e660f1592d112cd103d914a6db"}, + {file = "rpds_py-0.20.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e75ba609dba23f2c95b776efb9dd3f0b78a76a151e96f96cc5b6b1b0004de66f"}, + {file = "rpds_py-0.20.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1791ff70bc975b098fe6ecf04356a10e9e2bd7dc21fa7351c1742fdeb9b4966f"}, + {file = "rpds_py-0.20.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d126b52e4a473d40232ec2052a8b232270ed1f8c9571aaf33f73a14cc298c24f"}, + {file = "rpds_py-0.20.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:c14937af98c4cc362a1d4374806204dd51b1e12dded1ae30645c298e5a5c4cb1"}, + {file = "rpds_py-0.20.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:3d089d0b88996df627693639d123c8158cff41c0651f646cd8fd292c7da90eaf"}, + {file = "rpds_py-0.20.1-cp39-none-win32.whl", hash = "sha256:653647b8838cf83b2e7e6a0364f49af96deec64d2a6578324db58380cff82aca"}, + {file = "rpds_py-0.20.1-cp39-none-win_amd64.whl", hash = "sha256:fa41a64ac5b08b292906e248549ab48b69c5428f3987b09689ab2441f267d04d"}, + {file = "rpds_py-0.20.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:7a07ced2b22f0cf0b55a6a510078174c31b6d8544f3bc00c2bcee52b3d613f74"}, + {file = "rpds_py-0.20.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:68cb0a499f2c4a088fd2f521453e22ed3527154136a855c62e148b7883b99f9a"}, + {file = "rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fa3060d885657abc549b2a0f8e1b79699290e5d83845141717c6c90c2df38311"}, + {file = "rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:95f3b65d2392e1c5cec27cff08fdc0080270d5a1a4b2ea1d51d5f4a2620ff08d"}, + {file = "rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2cc3712a4b0b76a1d45a9302dd2f53ff339614b1c29603a911318f2357b04dd2"}, + {file = "rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5d4eea0761e37485c9b81400437adb11c40e13ef513375bbd6973e34100aeb06"}, + {file = "rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f5179583d7a6cdb981151dd349786cbc318bab54963a192692d945dd3f6435d"}, + {file = "rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2fbb0ffc754490aff6dabbf28064be47f0f9ca0b9755976f945214965b3ace7e"}, + {file = "rpds_py-0.20.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:a94e52537a0e0a85429eda9e49f272ada715506d3b2431f64b8a3e34eb5f3e75"}, + {file = "rpds_py-0.20.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:92b68b79c0da2a980b1c4197e56ac3dd0c8a149b4603747c4378914a68706979"}, + {file = "rpds_py-0.20.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:93da1d3db08a827eda74356f9f58884adb254e59b6664f64cc04cdff2cc19b0d"}, + {file = "rpds_py-0.20.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:754bbed1a4ca48479e9d4182a561d001bbf81543876cdded6f695ec3d465846b"}, + {file = "rpds_py-0.20.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:ca449520e7484534a2a44faf629362cae62b660601432d04c482283c47eaebab"}, + {file = "rpds_py-0.20.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:9c4cb04a16b0f199a8c9bf807269b2f63b7b5b11425e4a6bd44bd6961d28282c"}, + {file = "rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb63804105143c7e24cee7db89e37cb3f3941f8e80c4379a0b355c52a52b6780"}, + {file = "rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:55cd1fa4ecfa6d9f14fbd97ac24803e6f73e897c738f771a9fe038f2f11ff07c"}, + {file = "rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0f8f741b6292c86059ed175d80eefa80997125b7c478fb8769fd9ac8943a16c0"}, + {file = "rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0fc212779bf8411667234b3cdd34d53de6c2b8b8b958e1e12cb473a5f367c338"}, + {file = "rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ad56edabcdb428c2e33bbf24f255fe2b43253b7d13a2cdbf05de955217313e6"}, + {file = "rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0a3a1e9ee9728b2c1734f65d6a1d376c6f2f6fdcc13bb007a08cc4b1ff576dc5"}, + {file = "rpds_py-0.20.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:e13de156137b7095442b288e72f33503a469aa1980ed856b43c353ac86390519"}, + {file = "rpds_py-0.20.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:07f59760ef99f31422c49038964b31c4dfcfeb5d2384ebfc71058a7c9adae2d2"}, + {file = "rpds_py-0.20.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:59240685e7da61fb78f65a9f07f8108e36a83317c53f7b276b4175dc44151684"}, + {file = "rpds_py-0.20.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:83cba698cfb3c2c5a7c3c6bac12fe6c6a51aae69513726be6411076185a8b24a"}, + {file = "rpds_py-0.20.1.tar.gz", hash = "sha256:e1791c4aabd117653530dccd24108fa03cc6baf21f58b950d0a73c3b3b29a350"}, +] + +[[package]] +name = "rtree" +version = "1.3.0" +description = "R-Tree spatial index for Python GIS" +optional = false +python-versions = ">=3.8" +files = [ + {file = "Rtree-1.3.0-py3-none-macosx_10_9_x86_64.whl", hash = "sha256:80879d9db282a2273ca3a0d896c84583940e9777477727a277624ebfd424c517"}, + {file = "Rtree-1.3.0-py3-none-macosx_11_0_arm64.whl", hash = "sha256:4328e9e421797c347e6eb08efbbade962fe3664ebd60c1dffe82c40911b1e125"}, + {file = "Rtree-1.3.0-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:037130d3ce1fc029de81941ec416ba5546f66228380ba19bb41f2ea1294e8423"}, + {file = "Rtree-1.3.0-py3-none-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:864a05d0c3b7ce6c5e34378b7ab630057603b79179368bc50624258bdf2ff631"}, + {file = "Rtree-1.3.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ec2ed6d1635753dab966e68f592a9c4896f3f4ec6ad2b09b776d592eacd883a9"}, + {file = "Rtree-1.3.0-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:b4485fb3e5c5e85b94a95f0a930a3848e040d2699cfb012940ba5b0130f1e09a"}, + {file = "Rtree-1.3.0-py3-none-musllinux_1_2_i686.whl", hash = "sha256:7e2e9211f4fb404c06a08fd2cbebb03234214f73c51913bb371c3d9954e99cc9"}, + {file = "Rtree-1.3.0-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:c021f4772b25cc24915da8073e553ded6fa8d0b317caa4202255ed26b2344c1c"}, + {file = "Rtree-1.3.0-py3-none-win_amd64.whl", hash = "sha256:97f835801d24c10bbf02381abe5e327345c8296ec711dde7658792376abafc66"}, + {file = "rtree-1.3.0.tar.gz", hash = "sha256:b36e9dd2dc60ffe3d02e367242d2c26f7281b00e1aaf0c39590442edaaadd916"}, +] + +[[package]] +name = "ruamel-yaml" +version = "0.18.6" +description = "ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order" +optional = false +python-versions = ">=3.7" +files = [ + {file = "ruamel.yaml-0.18.6-py3-none-any.whl", hash = "sha256:57b53ba33def16c4f3d807c0ccbc00f8a6081827e81ba2491691b76882d0c636"}, + {file = "ruamel.yaml-0.18.6.tar.gz", hash = "sha256:8b27e6a217e786c6fbe5634d8f3f11bc63e0f80f6a5890f28863d9c45aac311b"}, +] + +[package.dependencies] +"ruamel.yaml.clib" = {version = ">=0.2.7", markers = "platform_python_implementation == \"CPython\" and python_version < \"3.13\""} [package.extras] -docs = ["ryd"] +docs = ["mercurial (>5.7)", "ryd"] jinja2 = ["ruamel.yaml.jinja2 (>=0.2)"] [[package]] -name = "ruamel.yaml.clib" -version = "0.2.7" +name = "ruamel-yaml-clib" +version = "0.2.12" description = "C version of reader, parser and emitter for ruamel.yaml derived from libyaml" -category = "dev" optional = false -python-versions = ">=3.5" +python-versions = ">=3.9" files = [ - {file = "ruamel.yaml.clib-0.2.7-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d5859983f26d8cd7bb5c287ef452e8aacc86501487634573d260968f753e1d71"}, - {file = "ruamel.yaml.clib-0.2.7-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:debc87a9516b237d0466a711b18b6ebeb17ba9f391eb7f91c649c5c4ec5006c7"}, - {file = "ruamel.yaml.clib-0.2.7-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:df5828871e6648db72d1c19b4bd24819b80a755c4541d3409f0f7acd0f335c80"}, - {file = "ruamel.yaml.clib-0.2.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:efa08d63ef03d079dcae1dfe334f6c8847ba8b645d08df286358b1f5293d24ab"}, - {file = "ruamel.yaml.clib-0.2.7-cp310-cp310-win32.whl", hash = "sha256:763d65baa3b952479c4e972669f679fe490eee058d5aa85da483ebae2009d231"}, - {file = "ruamel.yaml.clib-0.2.7-cp310-cp310-win_amd64.whl", hash = "sha256:d000f258cf42fec2b1bbf2863c61d7b8918d31ffee905da62dede869254d3b8a"}, - {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:045e0626baf1c52e5527bd5db361bc83180faaba2ff586e763d3d5982a876a9e"}, - {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-macosx_12_6_arm64.whl", hash = "sha256:721bc4ba4525f53f6a611ec0967bdcee61b31df5a56801281027a3a6d1c2daf5"}, - {file = "ruamel.yaml.clib-0.2.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:41d0f1fa4c6830176eef5b276af04c89320ea616655d01327d5ce65e50575c94"}, - {file = "ruamel.yaml.clib-0.2.7-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:4b3a93bb9bc662fc1f99c5c3ea8e623d8b23ad22f861eb6fce9377ac07ad6072"}, - {file = "ruamel.yaml.clib-0.2.7-cp36-cp36m-macosx_12_0_arm64.whl", hash = "sha256:a234a20ae07e8469da311e182e70ef6b199d0fbeb6c6cc2901204dd87fb867e8"}, - {file = "ruamel.yaml.clib-0.2.7-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:15910ef4f3e537eea7fe45f8a5d19997479940d9196f357152a09031c5be59f3"}, - {file = "ruamel.yaml.clib-0.2.7-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:370445fd795706fd291ab00c9df38a0caed0f17a6fb46b0f607668ecb16ce763"}, - {file = "ruamel.yaml.clib-0.2.7-cp36-cp36m-win32.whl", hash = "sha256:ecdf1a604009bd35c674b9225a8fa609e0282d9b896c03dd441a91e5f53b534e"}, - {file = "ruamel.yaml.clib-0.2.7-cp36-cp36m-win_amd64.whl", hash = "sha256:f34019dced51047d6f70cb9383b2ae2853b7fc4dce65129a5acd49f4f9256646"}, - {file = "ruamel.yaml.clib-0.2.7-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:2aa261c29a5545adfef9296b7e33941f46aa5bbd21164228e833412af4c9c75f"}, - {file = "ruamel.yaml.clib-0.2.7-cp37-cp37m-macosx_12_0_arm64.whl", hash = "sha256:f01da5790e95815eb5a8a138508c01c758e5f5bc0ce4286c4f7028b8dd7ac3d0"}, - {file = "ruamel.yaml.clib-0.2.7-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:40d030e2329ce5286d6b231b8726959ebbe0404c92f0a578c0e2482182e38282"}, - {file = "ruamel.yaml.clib-0.2.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:c3ca1fbba4ae962521e5eb66d72998b51f0f4d0f608d3c0347a48e1af262efa7"}, - {file = "ruamel.yaml.clib-0.2.7-cp37-cp37m-win32.whl", hash = "sha256:7bdb4c06b063f6fd55e472e201317a3bb6cdeeee5d5a38512ea5c01e1acbdd93"}, - {file = "ruamel.yaml.clib-0.2.7-cp37-cp37m-win_amd64.whl", hash = "sha256:be2a7ad8fd8f7442b24323d24ba0b56c51219513cfa45b9ada3b87b76c374d4b"}, - {file = "ruamel.yaml.clib-0.2.7-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:91a789b4aa0097b78c93e3dc4b40040ba55bef518f84a40d4442f713b4094acb"}, - {file = "ruamel.yaml.clib-0.2.7-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:99e77daab5d13a48a4054803d052ff40780278240a902b880dd37a51ba01a307"}, - {file = "ruamel.yaml.clib-0.2.7-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:3243f48ecd450eddadc2d11b5feb08aca941b5cd98c9b1db14b2fd128be8c697"}, - {file = "ruamel.yaml.clib-0.2.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:8831a2cedcd0f0927f788c5bdf6567d9dc9cc235646a434986a852af1cb54b4b"}, - {file = "ruamel.yaml.clib-0.2.7-cp38-cp38-win32.whl", hash = "sha256:3110a99e0f94a4a3470ff67fc20d3f96c25b13d24c6980ff841e82bafe827cac"}, - {file = "ruamel.yaml.clib-0.2.7-cp38-cp38-win_amd64.whl", hash = "sha256:92460ce908546ab69770b2e576e4f99fbb4ce6ab4b245345a3869a0a0410488f"}, - {file = "ruamel.yaml.clib-0.2.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5bc0667c1eb8f83a3752b71b9c4ba55ef7c7058ae57022dd9b29065186a113d9"}, - {file = "ruamel.yaml.clib-0.2.7-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:4a4d8d417868d68b979076a9be6a38c676eca060785abaa6709c7b31593c35d1"}, - {file = "ruamel.yaml.clib-0.2.7-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:bf9a6bc4a0221538b1a7de3ed7bca4c93c02346853f44e1cd764be0023cd3640"}, - {file = "ruamel.yaml.clib-0.2.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:a7b301ff08055d73223058b5c46c55638917f04d21577c95e00e0c4d79201a6b"}, - {file = "ruamel.yaml.clib-0.2.7-cp39-cp39-win32.whl", hash = "sha256:d5e51e2901ec2366b79f16c2299a03e74ba4531ddcfacc1416639c557aef0ad8"}, - {file = "ruamel.yaml.clib-0.2.7-cp39-cp39-win_amd64.whl", hash = "sha256:184faeaec61dbaa3cace407cffc5819f7b977e75360e8d5ca19461cd851a5fc5"}, - {file = "ruamel.yaml.clib-0.2.7.tar.gz", hash = "sha256:1f08fd5a2bea9c4180db71678e850b995d2a5f4537be0e94557668cf0f5f9497"}, + {file = "ruamel.yaml.clib-0.2.12-cp310-cp310-macosx_13_0_arm64.whl", hash = "sha256:11f891336688faf5156a36293a9c362bdc7c88f03a8a027c2c1d8e0bcde998e5"}, + {file = "ruamel.yaml.clib-0.2.12-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:a606ef75a60ecf3d924613892cc603b154178ee25abb3055db5062da811fd969"}, + {file = "ruamel.yaml.clib-0.2.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd5415dded15c3822597455bc02bcd66e81ef8b7a48cb71a33628fc9fdde39df"}, + {file = "ruamel.yaml.clib-0.2.12-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f66efbc1caa63c088dead1c4170d148eabc9b80d95fb75b6c92ac0aad2437d76"}, + {file = "ruamel.yaml.clib-0.2.12-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:22353049ba4181685023b25b5b51a574bce33e7f51c759371a7422dcae5402a6"}, + {file = "ruamel.yaml.clib-0.2.12-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:932205970b9f9991b34f55136be327501903f7c66830e9760a8ffb15b07f05cd"}, + {file = "ruamel.yaml.clib-0.2.12-cp310-cp310-win32.whl", hash = "sha256:3eac5a91891ceb88138c113f9db04f3cebdae277f5d44eaa3651a4f573e6a5da"}, + {file = "ruamel.yaml.clib-0.2.12-cp310-cp310-win_amd64.whl", hash = "sha256:ab007f2f5a87bd08ab1499bdf96f3d5c6ad4dcfa364884cb4549aa0154b13a28"}, + {file = "ruamel.yaml.clib-0.2.12-cp311-cp311-macosx_13_0_arm64.whl", hash = "sha256:4a6679521a58256a90b0d89e03992c15144c5f3858f40d7c18886023d7943db6"}, + {file = "ruamel.yaml.clib-0.2.12-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:d84318609196d6bd6da0edfa25cedfbabd8dbde5140a0a23af29ad4b8f91fb1e"}, + {file = "ruamel.yaml.clib-0.2.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb43a269eb827806502c7c8efb7ae7e9e9d0573257a46e8e952f4d4caba4f31e"}, + {file = "ruamel.yaml.clib-0.2.12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:811ea1594b8a0fb466172c384267a4e5e367298af6b228931f273b111f17ef52"}, + {file = "ruamel.yaml.clib-0.2.12-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:cf12567a7b565cbf65d438dec6cfbe2917d3c1bdddfce84a9930b7d35ea59642"}, + {file = "ruamel.yaml.clib-0.2.12-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:7dd5adc8b930b12c8fc5b99e2d535a09889941aa0d0bd06f4749e9a9397c71d2"}, + {file = "ruamel.yaml.clib-0.2.12-cp311-cp311-win32.whl", hash = "sha256:bd0a08f0bab19093c54e18a14a10b4322e1eacc5217056f3c063bd2f59853ce4"}, + {file = "ruamel.yaml.clib-0.2.12-cp311-cp311-win_amd64.whl", hash = "sha256:a274fb2cb086c7a3dea4322ec27f4cb5cc4b6298adb583ab0e211a4682f241eb"}, + {file = "ruamel.yaml.clib-0.2.12-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:20b0f8dc160ba83b6dcc0e256846e1a02d044e13f7ea74a3d1d56ede4e48c632"}, + {file = "ruamel.yaml.clib-0.2.12-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:943f32bc9dedb3abff9879edc134901df92cfce2c3d5c9348f172f62eb2d771d"}, + {file = "ruamel.yaml.clib-0.2.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95c3829bb364fdb8e0332c9931ecf57d9be3519241323c5274bd82f709cebc0c"}, + {file = "ruamel.yaml.clib-0.2.12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:749c16fcc4a2b09f28843cda5a193e0283e47454b63ec4b81eaa2242f50e4ccd"}, + {file = "ruamel.yaml.clib-0.2.12-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bf165fef1f223beae7333275156ab2022cffe255dcc51c27f066b4370da81e31"}, + {file = "ruamel.yaml.clib-0.2.12-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:32621c177bbf782ca5a18ba4d7af0f1082a3f6e517ac2a18b3974d4edf349680"}, + {file = "ruamel.yaml.clib-0.2.12-cp312-cp312-win32.whl", hash = "sha256:e8c4ebfcfd57177b572e2040777b8abc537cdef58a2120e830124946aa9b42c5"}, + {file = "ruamel.yaml.clib-0.2.12-cp312-cp312-win_amd64.whl", hash = "sha256:0467c5965282c62203273b838ae77c0d29d7638c8a4e3a1c8bdd3602c10904e4"}, + {file = "ruamel.yaml.clib-0.2.12-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:4c8c5d82f50bb53986a5e02d1b3092b03622c02c2eb78e29bec33fd9593bae1a"}, + {file = "ruamel.yaml.clib-0.2.12-cp313-cp313-manylinux2014_aarch64.whl", hash = "sha256:e7e3736715fbf53e9be2a79eb4db68e4ed857017344d697e8b9749444ae57475"}, + {file = "ruamel.yaml.clib-0.2.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b7e75b4965e1d4690e93021adfcecccbca7d61c7bddd8e22406ef2ff20d74ef"}, + {file = "ruamel.yaml.clib-0.2.12-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:96777d473c05ee3e5e3c3e999f5d23c6f4ec5b0c38c098b3a5229085f74236c6"}, + {file = "ruamel.yaml.clib-0.2.12-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:3bc2a80e6420ca8b7d3590791e2dfc709c88ab9152c00eeb511c9875ce5778bf"}, + {file = "ruamel.yaml.clib-0.2.12-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:e188d2699864c11c36cdfdada94d781fd5d6b0071cd9c427bceb08ad3d7c70e1"}, + {file = "ruamel.yaml.clib-0.2.12-cp313-cp313-win32.whl", hash = "sha256:6442cb36270b3afb1b4951f060eccca1ce49f3d087ca1ca4563a6eb479cb3de6"}, + {file = "ruamel.yaml.clib-0.2.12-cp313-cp313-win_amd64.whl", hash = "sha256:e5b8daf27af0b90da7bb903a876477a9e6d7270be6146906b276605997c7e9a3"}, + {file = "ruamel.yaml.clib-0.2.12-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:fc4b630cd3fa2cf7fce38afa91d7cfe844a9f75d7f0f36393fa98815e911d987"}, + {file = "ruamel.yaml.clib-0.2.12-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:bc5f1e1c28e966d61d2519f2a3d451ba989f9ea0f2307de7bc45baa526de9e45"}, + {file = "ruamel.yaml.clib-0.2.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5a0e060aace4c24dcaf71023bbd7d42674e3b230f7e7b97317baf1e953e5b519"}, + {file = "ruamel.yaml.clib-0.2.12-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e2f1c3765db32be59d18ab3953f43ab62a761327aafc1594a2a1fbe038b8b8a7"}, + {file = "ruamel.yaml.clib-0.2.12-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:d85252669dc32f98ebcd5d36768f5d4faeaeaa2d655ac0473be490ecdae3c285"}, + {file = "ruamel.yaml.clib-0.2.12-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e143ada795c341b56de9418c58d028989093ee611aa27ffb9b7f609c00d813ed"}, + {file = "ruamel.yaml.clib-0.2.12-cp39-cp39-win32.whl", hash = "sha256:beffaed67936fbbeffd10966a4eb53c402fafd3d6833770516bf7314bc6ffa12"}, + {file = "ruamel.yaml.clib-0.2.12-cp39-cp39-win_amd64.whl", hash = "sha256:040ae85536960525ea62868b642bdb0c2cc6021c9f9d507810c0c604e66f5a7b"}, + {file = "ruamel.yaml.clib-0.2.12.tar.gz", hash = "sha256:6c8fbb13ec503f99a91901ab46e0b07ae7941cd527393187039aec586fdfd36f"}, ] [[package]] name = "safety" -version = "2.3.1" +version = "2.3.4" description = "Checks installed dependencies for known vulnerabilities and licenses." -category = "dev" optional = false python-versions = "*" files = [ - {file = "safety-2.3.1-py3-none-any.whl", hash = "sha256:8f098d12b607db2756886280e85c28ece8db1bba4f45fc5f981f4663217bd619"}, - {file = "safety-2.3.1.tar.gz", hash = "sha256:6e6fcb7d4e8321098cf289f59b65051cafd3467f089c6e57c9f894ae32c23b71"}, + {file = "safety-2.3.4-py3-none-any.whl", hash = "sha256:6224dcd9b20986a2b2c5e7acfdfba6bca42bb11b2783b24ed04f32317e5167ea"}, + {file = "safety-2.3.4.tar.gz", hash = "sha256:b9e74e794e82f54d11f4091c5d820c4d2d81de9f953bf0b4f33ac8bc402ae72c"}, ] [package.dependencies] @@ -3188,41 +4312,58 @@ gitlab = ["python-gitlab (>=1.3.0)"] [[package]] name = "scipy" -version = "1.6.1" -description = "SciPy: Scientific Library for Python" -category = "dev" +version = "1.14.1" +description = "Fundamental algorithms for scientific computing in Python" optional = false -python-versions = ">=3.7" +python-versions = ">=3.10" files = [ - {file = "scipy-1.6.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a15a1f3fc0abff33e792d6049161b7795909b40b97c6cc2934ed54384017ab76"}, - {file = "scipy-1.6.1-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:e79570979ccdc3d165456dd62041d9556fb9733b86b4b6d818af7a0afc15f092"}, - {file = "scipy-1.6.1-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:a423533c55fec61456dedee7b6ee7dce0bb6bfa395424ea374d25afa262be261"}, - {file = "scipy-1.6.1-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:33d6b7df40d197bdd3049d64e8e680227151673465e5d85723b3b8f6b15a6ced"}, - {file = "scipy-1.6.1-cp37-cp37m-win32.whl", hash = "sha256:6725e3fbb47da428794f243864f2297462e9ee448297c93ed1dcbc44335feb78"}, - {file = "scipy-1.6.1-cp37-cp37m-win_amd64.whl", hash = "sha256:5fa9c6530b1661f1370bcd332a1e62ca7881785cc0f80c0d559b636567fab63c"}, - {file = "scipy-1.6.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:bd50daf727f7c195e26f27467c85ce653d41df4358a25b32434a50d8870fc519"}, - {file = "scipy-1.6.1-cp38-cp38-manylinux1_i686.whl", hash = "sha256:f46dd15335e8a320b0fb4685f58b7471702234cba8bb3442b69a3e1dc329c345"}, - {file = "scipy-1.6.1-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:0e5b0ccf63155d90da576edd2768b66fb276446c371b73841e3503be1d63fb5d"}, - {file = "scipy-1.6.1-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:2481efbb3740977e3c831edfd0bd9867be26387cacf24eb5e366a6a374d3d00d"}, - {file = "scipy-1.6.1-cp38-cp38-win32.whl", hash = "sha256:68cb4c424112cd4be886b4d979c5497fba190714085f46b8ae67a5e4416c32b4"}, - {file = "scipy-1.6.1-cp38-cp38-win_amd64.whl", hash = "sha256:5f331eeed0297232d2e6eea51b54e8278ed8bb10b099f69c44e2558c090d06bf"}, - {file = "scipy-1.6.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0c8a51d33556bf70367452d4d601d1742c0e806cd0194785914daf19775f0e67"}, - {file = "scipy-1.6.1-cp39-cp39-manylinux1_i686.whl", hash = "sha256:83bf7c16245c15bc58ee76c5418e46ea1811edcc2e2b03041b804e46084ab627"}, - {file = "scipy-1.6.1-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:794e768cc5f779736593046c9714e0f3a5940bc6dcc1dba885ad64cbfb28e9f0"}, - {file = "scipy-1.6.1-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:5da5471aed911fe7e52b86bf9ea32fb55ae93e2f0fac66c32e58897cfb02fa07"}, - {file = "scipy-1.6.1-cp39-cp39-win32.whl", hash = "sha256:8e403a337749ed40af60e537cc4d4c03febddcc56cd26e774c9b1b600a70d3e4"}, - {file = "scipy-1.6.1-cp39-cp39-win_amd64.whl", hash = "sha256:a5193a098ae9f29af283dcf0041f762601faf2e595c0db1da929875b7570353f"}, - {file = "scipy-1.6.1.tar.gz", hash = "sha256:c4fceb864890b6168e79b0e714c585dbe2fd4222768ee90bc1aa0f8218691b11"}, + {file = "scipy-1.14.1-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:b28d2ca4add7ac16ae8bb6632a3c86e4b9e4d52d3e34267f6e1b0c1f8d87e389"}, + {file = "scipy-1.14.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:d0d2821003174de06b69e58cef2316a6622b60ee613121199cb2852a873f8cf3"}, + {file = "scipy-1.14.1-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:8bddf15838ba768bb5f5083c1ea012d64c9a444e16192762bd858f1e126196d0"}, + {file = "scipy-1.14.1-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:97c5dddd5932bd2a1a31c927ba5e1463a53b87ca96b5c9bdf5dfd6096e27efc3"}, + {file = "scipy-1.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ff0a7e01e422c15739ecd64432743cf7aae2b03f3084288f399affcefe5222d"}, + {file = "scipy-1.14.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8e32dced201274bf96899e6491d9ba3e9a5f6b336708656466ad0522d8528f69"}, + {file = "scipy-1.14.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8426251ad1e4ad903a4514712d2fa8fdd5382c978010d1c6f5f37ef286a713ad"}, + {file = "scipy-1.14.1-cp310-cp310-win_amd64.whl", hash = "sha256:a49f6ed96f83966f576b33a44257d869756df6cf1ef4934f59dd58b25e0327e5"}, + {file = "scipy-1.14.1-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:2da0469a4ef0ecd3693761acbdc20f2fdeafb69e6819cc081308cc978153c675"}, + {file = "scipy-1.14.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:c0ee987efa6737242745f347835da2cc5bb9f1b42996a4d97d5c7ff7928cb6f2"}, + {file = "scipy-1.14.1-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:3a1b111fac6baec1c1d92f27e76511c9e7218f1695d61b59e05e0fe04dc59617"}, + {file = "scipy-1.14.1-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:8475230e55549ab3f207bff11ebfc91c805dc3463ef62eda3ccf593254524ce8"}, + {file = "scipy-1.14.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:278266012eb69f4a720827bdd2dc54b2271c97d84255b2faaa8f161a158c3b37"}, + {file = "scipy-1.14.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fef8c87f8abfb884dac04e97824b61299880c43f4ce675dd2cbeadd3c9b466d2"}, + {file = "scipy-1.14.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b05d43735bb2f07d689f56f7b474788a13ed8adc484a85aa65c0fd931cf9ccd2"}, + {file = "scipy-1.14.1-cp311-cp311-win_amd64.whl", hash = "sha256:716e389b694c4bb564b4fc0c51bc84d381735e0d39d3f26ec1af2556ec6aad94"}, + {file = "scipy-1.14.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:631f07b3734d34aced009aaf6fedfd0eb3498a97e581c3b1e5f14a04164a456d"}, + {file = "scipy-1.14.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:af29a935803cc707ab2ed7791c44288a682f9c8107bc00f0eccc4f92c08d6e07"}, + {file = "scipy-1.14.1-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:2843f2d527d9eebec9a43e6b406fb7266f3af25a751aa91d62ff416f54170bc5"}, + {file = "scipy-1.14.1-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:eb58ca0abd96911932f688528977858681a59d61a7ce908ffd355957f7025cfc"}, + {file = "scipy-1.14.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:30ac8812c1d2aab7131a79ba62933a2a76f582d5dbbc695192453dae67ad6310"}, + {file = "scipy-1.14.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f9ea80f2e65bdaa0b7627fb00cbeb2daf163caa015e59b7516395fe3bd1e066"}, + {file = "scipy-1.14.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:edaf02b82cd7639db00dbff629995ef185c8df4c3ffa71a5562a595765a06ce1"}, + {file = "scipy-1.14.1-cp312-cp312-win_amd64.whl", hash = "sha256:2ff38e22128e6c03ff73b6bb0f85f897d2362f8c052e3b8ad00532198fbdae3f"}, + {file = "scipy-1.14.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:1729560c906963fc8389f6aac023739ff3983e727b1a4d87696b7bf108316a79"}, + {file = "scipy-1.14.1-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:4079b90df244709e675cdc8b93bfd8a395d59af40b72e339c2287c91860deb8e"}, + {file = "scipy-1.14.1-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:e0cf28db0f24a38b2a0ca33a85a54852586e43cf6fd876365c86e0657cfe7d73"}, + {file = "scipy-1.14.1-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:0c2f95de3b04e26f5f3ad5bb05e74ba7f68b837133a4492414b3afd79dfe540e"}, + {file = "scipy-1.14.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b99722ea48b7ea25e8e015e8341ae74624f72e5f21fc2abd45f3a93266de4c5d"}, + {file = "scipy-1.14.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5149e3fd2d686e42144a093b206aef01932a0059c2a33ddfa67f5f035bdfe13e"}, + {file = "scipy-1.14.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e4f5a7c49323533f9103d4dacf4e4f07078f360743dec7f7596949149efeec06"}, + {file = "scipy-1.14.1-cp313-cp313-win_amd64.whl", hash = "sha256:baff393942b550823bfce952bb62270ee17504d02a1801d7fd0719534dfb9c84"}, + {file = "scipy-1.14.1.tar.gz", hash = "sha256:5a275584e726026a5699459aa72f828a610821006228e841b94275c4a7c08417"}, ] [package.dependencies] -numpy = ">=1.16.5" +numpy = ">=1.23.5,<2.3" + +[package.extras] +dev = ["cython-lint (>=0.12.2)", "doit (>=0.36.0)", "mypy (==1.10.0)", "pycodestyle", "pydevtool", "rich-click", "ruff (>=0.0.292)", "types-psutil", "typing_extensions"] +doc = ["jupyterlite-pyodide-kernel", "jupyterlite-sphinx (>=0.13.1)", "jupytext", "matplotlib (>=3.5)", "myst-nb", "numpydoc", "pooch", "pydata-sphinx-theme (>=0.15.2)", "sphinx (>=5.0.0,<=7.3.7)", "sphinx-design (>=0.4.0)"] +test = ["Cython", "array-api-strict (>=2.0)", "asv", "gmpy2", "hypothesis (>=6.30)", "meson", "mpmath", "ninja", "pooch", "pytest", "pytest-cov", "pytest-timeout", "pytest-xdist", "scikit-umfpack", "threadpoolctl"] [[package]] name = "seaborn" version = "0.11.2" description = "seaborn: statistical data visualization" -category = "dev" optional = false python-versions = ">=3.6" files = [ @@ -3240,7 +4381,6 @@ scipy = ">=1.0" name = "semantic-version" version = "2.10.0" description = "A library implementing the 'SemVer' scheme." -category = "dev" optional = false python-versions = ">=2.7" files = [ @@ -3254,14 +4394,13 @@ doc = ["Sphinx", "sphinx-rtd-theme"] [[package]] name = "send2trash" -version = "1.8.0" -description = "Send file to trash natively under Mac OS X, Windows and Linux." -category = "main" +version = "1.8.3" +description = "Send file to trash natively under Mac OS X, Windows and Linux" optional = false -python-versions = "*" +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ - {file = "Send2Trash-1.8.0-py3-none-any.whl", hash = "sha256:f20eaadfdb517eaca5ce077640cb261c7d2698385a6a0f072a4a5447fd49fa08"}, - {file = "Send2Trash-1.8.0.tar.gz", hash = "sha256:d2c24762fd3759860a0aff155e45871447ea58d2be6bdd39b5c8f966a0c99c2d"}, + {file = "Send2Trash-1.8.3-py3-none-any.whl", hash = "sha256:0c31227e0bd08961c7665474a3d1ef7193929fedda4233843689baa056be46c9"}, + {file = "Send2Trash-1.8.3.tar.gz", hash = "sha256:b18e7a3966d99871aefeb00cfbcfdced55ce4871194810fc71f4aa484b953abf"}, ] [package.extras] @@ -3271,63 +4410,73 @@ win32 = ["pywin32"] [[package]] name = "setuptools" -version = "67.1.0" +version = "75.3.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" -category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "setuptools-67.1.0-py3-none-any.whl", hash = "sha256:a7687c12b444eaac951ea87a9627c4f904ac757e7abdc5aac32833234af90378"}, - {file = "setuptools-67.1.0.tar.gz", hash = "sha256:e261cdf010c11a41cb5cb5f1bf3338a7433832029f559a6a7614bd42a967c300"}, + {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, + {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, ] [package.extras] -docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"] -testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8 (<5)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pip-run (>=8.8)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] -testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +cover = ["pytest-cov"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +enabler = ["pytest-enabler (>=2.2)"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] [[package]] name = "shapely" -version = "1.8.2" +version = "1.8.5.post1" description = "Geometric objects, predicates, and operations" -category = "main" optional = false python-versions = ">=3.6" files = [ - {file = "Shapely-1.8.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7c9e3400b716c51ba43eea1678c28272580114e009b6c78cdd00c44df3e325fa"}, - {file = "Shapely-1.8.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ce0b5c5f7acbccf98b3460eecaa40e9b18272b2a734f74fcddf1d7696e047e95"}, - {file = "Shapely-1.8.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3a40bf497b57a6625b83996aed10ce2233bca0e5471b8af771b186d681433ac5"}, - {file = "Shapely-1.8.2-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6bdc7728f1e5df430d8c588661f79f1eed4a2728c8b689e12707cfec217f68f8"}, - {file = "Shapely-1.8.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a60861b5ca2c488ebcdc706eca94d325c26d1567921c74acc83df5e6913590c7"}, - {file = "Shapely-1.8.2-cp310-cp310-win32.whl", hash = "sha256:840be3f27a1152851c54b968f2e12d718c9f13b7acd51c482e58a70f60f29e31"}, - {file = "Shapely-1.8.2-cp310-cp310-win_amd64.whl", hash = "sha256:c60f3758212ec480675b820b13035dda8af8f7cc560d2cc67999b2717fb8faef"}, - {file = "Shapely-1.8.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:56413f7d32c70b63f239eb0865b24c0c61029e38757de456cc4ab3c416559a0b"}, - {file = "Shapely-1.8.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:256bdf8080bb7bb504d47b2c76919ecebab9708cc1b26266b3ec32b42448f642"}, - {file = "Shapely-1.8.2-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:c0a0d7752b145343838bd36ed09382d85f5befe426832d7384c5b051c147acbd"}, - {file = "Shapely-1.8.2-cp36-cp36m-win32.whl", hash = "sha256:62056e64b12b6d483d79f8e34bf058d2fe734d51c9227c1713705399434eff3b"}, - {file = "Shapely-1.8.2-cp36-cp36m-win_amd64.whl", hash = "sha256:8e3ed52a081da58eb4a885c157c594876633dbd4eb283f13ba5bf39c82322d76"}, - {file = "Shapely-1.8.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:7c8eda45085ccdd7f9805ea4a93fdd5eb0b6039a61d5f0cefb960487e6dc17a1"}, - {file = "Shapely-1.8.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:beee3949ddf381735049cfa6532fb234d5d20a5be910c4f2fb7c7295fd7960e3"}, - {file = "Shapely-1.8.2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:e07b0bd2a0e61a8afd4d1c1bd23f3550b711f01274ffb53de99358fd781eefd8"}, - {file = "Shapely-1.8.2-cp37-cp37m-win32.whl", hash = "sha256:78966332a89813b237de357a03f612fd451a871fe6e26c12b6b71645fe8eee39"}, - {file = "Shapely-1.8.2-cp37-cp37m-win_amd64.whl", hash = "sha256:8fe641f1f61b3d43dd61b5a85d2ef023e6e19bf8f204a5160a1cb1ec645cbc09"}, - {file = "Shapely-1.8.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:cec89a5617c0137f4678282e983c3d63bf838fb00cdf318cc555b4d8409f7130"}, - {file = "Shapely-1.8.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:68c8e18dc9dc8a198c3addc8c9596f64137101f566f04b96ecfca0b214cb8b12"}, - {file = "Shapely-1.8.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f12695662c3ad1e6031b3de98f191963d0f09de6d1a4988acd907405644032ba"}, - {file = "Shapely-1.8.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:15a856fbb588ad5d042784e00918c662902776452008c771ecba2ff615cd197a"}, - {file = "Shapely-1.8.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:d74de394684d66e25e780b0359fda85be7766af85940fa2dfad728b1a815c71f"}, - {file = "Shapely-1.8.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d3f3fac625690f01f35af665649e993f15f924e740b5c0ac0376900655815521"}, - {file = "Shapely-1.8.2-cp38-cp38-win32.whl", hash = "sha256:1d95842cc6bbbeab673061b63e70b07be9a375c15a60f4098f8fbd29f43af1b4"}, - {file = "Shapely-1.8.2-cp38-cp38-win_amd64.whl", hash = "sha256:a58e1f362f2091743e5e13212f5d5d16251a4bb63dd0ed587c652d3be9620d3a"}, - {file = "Shapely-1.8.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5254240eefc44139ab0d128faf671635d8bdd9c23955ee063d4d6b8f20073ae0"}, - {file = "Shapely-1.8.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:75042e8039c79dd01f102bb288beace9dc2f49fc44a2dea875f9b697aa8cd30d"}, - {file = "Shapely-1.8.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0c0fd457ce477b1dced507a72f1e2084c9191bfcb8a1e09886990ebd02acf024"}, - {file = "Shapely-1.8.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:6fcb28836ae93809de1dde73c03c9c24bab0ba2b2bf419ddb2aeb72c96d110e9"}, - {file = "Shapely-1.8.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:44d2832c1b706bf43101fda92831a083467cc4b4923a7ed17319ab599c1025d8"}, - {file = "Shapely-1.8.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:137f1369630408024a62ff79a437a5657e6c5b76b9cd352dde704b425acdb298"}, - {file = "Shapely-1.8.2-cp39-cp39-win32.whl", hash = "sha256:2e02da2e988e74d61f15c720f9f613fab51942aae2dfeacdcb78eadece00e1f3"}, - {file = "Shapely-1.8.2-cp39-cp39-win_amd64.whl", hash = "sha256:3423299254deec075e79fb7dc7909d702104e4167149de7f45510c3a6342eeea"}, - {file = "Shapely-1.8.2.tar.gz", hash = "sha256:572af9d5006fd5e3213e37ee548912b0341fb26724d6dc8a4e3950c10197ebb6"}, + {file = "Shapely-1.8.5.post1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d048f93e42ba578b82758c15d8ae037d08e69d91d9872bca5a1895b118f4e2b0"}, + {file = "Shapely-1.8.5.post1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:99ab0ddc05e44acabdbe657c599fdb9b2d82e86c5493bdae216c0c4018a82dee"}, + {file = "Shapely-1.8.5.post1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:99a2f0da0109e81e0c101a2b4cd8412f73f5f299e7b5b2deaf64cd2a100ac118"}, + {file = "Shapely-1.8.5.post1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:6fe855e7d45685926b6ba00aaeb5eba5862611f7465775dacd527e081a8ced6d"}, + {file = "Shapely-1.8.5.post1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ec14ceca36f67cb48b34d02d7f65a9acae15cd72b48e303531893ba4a960f3ea"}, + {file = "Shapely-1.8.5.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8a2b2a65fa7f97115c1cd989fe9d6f39281ca2a8a014f1d4904c1a6e34d7f25"}, + {file = "Shapely-1.8.5.post1-cp310-cp310-win32.whl", hash = "sha256:21776184516a16bf82a0c3d6d6a312b3cd15a4cabafc61ee01cf2714a82e8396"}, + {file = "Shapely-1.8.5.post1-cp310-cp310-win_amd64.whl", hash = "sha256:a354199219c8d836f280b88f2c5102c81bb044ccea45bd361dc38a79f3873714"}, + {file = "Shapely-1.8.5.post1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:783bad5f48e2708a0e2f695a34ed382e4162c795cb2f0368b39528ac1d6db7ed"}, + {file = "Shapely-1.8.5.post1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a23ef3882d6aa203dd3623a3d55d698f59bfbd9f8a3bfed52c2da05a7f0f8640"}, + {file = "Shapely-1.8.5.post1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ab38f7b5196ace05725e407cb8cab9ff66edb8e6f7bb36a398e8f73f52a7aaa2"}, + {file = "Shapely-1.8.5.post1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8d086591f744be483b34628b391d741e46f2645fe37594319e0a673cc2c26bcf"}, + {file = "Shapely-1.8.5.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4728666fff8cccc65a07448cae72c75a8773fea061c3f4f139c44adc429b18c3"}, + {file = "Shapely-1.8.5.post1-cp311-cp311-win32.whl", hash = "sha256:84010db15eb364a52b74ea8804ef92a6a930dfc1981d17a369444b6ddec66efd"}, + {file = "Shapely-1.8.5.post1-cp311-cp311-win_amd64.whl", hash = "sha256:48dcfffb9e225c0481120f4bdf622131c8c95f342b00b158cdbe220edbbe20b6"}, + {file = "Shapely-1.8.5.post1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:2fd15397638df291c427a53d641d3e6fd60458128029c8c4f487190473a69a91"}, + {file = "Shapely-1.8.5.post1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:a74631e511153366c6dbe3229fa93f877e3c87ea8369cd00f1d38c76b0ed9ace"}, + {file = "Shapely-1.8.5.post1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:66bdac74fbd1d3458fa787191a90fa0ae610f09e2a5ec398c36f968cc0ed743f"}, + {file = "Shapely-1.8.5.post1-cp36-cp36m-win32.whl", hash = "sha256:6d388c0c1bd878ed1af4583695690aa52234b02ed35f93a1c8486ff52a555838"}, + {file = "Shapely-1.8.5.post1-cp36-cp36m-win_amd64.whl", hash = "sha256:be9423d5a3577ac2e92c7e758bd8a2b205f5e51a012177a590bc46fc51eb4834"}, + {file = "Shapely-1.8.5.post1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:5d7f85c2d35d39ff53c9216bc76b7641c52326f7e09aaad1789a3611a0f812f2"}, + {file = "Shapely-1.8.5.post1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:adcf8a11b98af9375e32bff91de184f33a68dc48b9cb9becad4f132fa25cfa3c"}, + {file = "Shapely-1.8.5.post1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:753ed0e21ab108bd4282405b9b659f2e985e8502b1a72b978eaa51d3496dee19"}, + {file = "Shapely-1.8.5.post1-cp37-cp37m-win32.whl", hash = "sha256:65b21243d8f6bcd421210daf1fabb9de84de2c04353c5b026173b88d17c1a581"}, + {file = "Shapely-1.8.5.post1-cp37-cp37m-win_amd64.whl", hash = "sha256:370b574c78dc5af3a198a6da5d9b3d7c04654bd2ef7e80e80a3a0992dfb2d9cd"}, + {file = "Shapely-1.8.5.post1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:532a55ee2a6c52d23d6f7d1567c8f0473635f3b270262c44e1b0c88096827e22"}, + {file = "Shapely-1.8.5.post1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3480657460e939f45a7d359ef0e172a081f249312557fe9aa78c4fd3a362d993"}, + {file = "Shapely-1.8.5.post1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b65f5d530ba91e49ffc7c589255e878d2506a8b96ffce69d3b7c4500a9a9eaf8"}, + {file = "Shapely-1.8.5.post1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:147066da0be41b147a61f8eb805dea3b13709dbc873a431ccd7306e24d712bc0"}, + {file = "Shapely-1.8.5.post1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:c2822111ddc5bcfb116e6c663e403579d0fe3f147d2a97426011a191c43a7458"}, + {file = "Shapely-1.8.5.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4b47bb6f9369e8bf3e6dbd33e6a25a47ee02b2874792a529fe04a49bf8bc0df6"}, + {file = "Shapely-1.8.5.post1-cp38-cp38-win32.whl", hash = "sha256:2e0a8c2e55f1be1312b51c92b06462ea89e6bb703fab4b114e7a846d941cfc40"}, + {file = "Shapely-1.8.5.post1-cp38-cp38-win_amd64.whl", hash = "sha256:0d885cb0cf670c1c834df3f371de8726efdf711f18e2a75da5cfa82843a7ab65"}, + {file = "Shapely-1.8.5.post1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0b4ee3132ee90f07d63db3aea316c4c065ed7a26231458dda0874414a09d6ba3"}, + {file = "Shapely-1.8.5.post1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:02dd5d7dc6e46515d88874134dc8fcdc65826bca93c3eecee59d1910c42c1b17"}, + {file = "Shapely-1.8.5.post1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c6a9a4a31cd6e86d0fbe8473ceed83d4fe760b19d949fb557ef668defafea0f6"}, + {file = "Shapely-1.8.5.post1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:38f0fbbcb8ca20c16451c966c1f527cc43968e121c8a048af19ed3e339a921cd"}, + {file = "Shapely-1.8.5.post1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:78fb9d929b8ee15cfd424b6c10879ce1907f24e05fb83310fc47d2cd27088e40"}, + {file = "Shapely-1.8.5.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:89164e7a9776a19e29f01369a98529321994e2e4d852b92b7e01d4d9804c55bf"}, + {file = "Shapely-1.8.5.post1-cp39-cp39-win32.whl", hash = "sha256:8e59817b0fe63d34baedaabba8c393c0090f061917d18fc0bcc2f621937a8f73"}, + {file = "Shapely-1.8.5.post1-cp39-cp39-win_amd64.whl", hash = "sha256:e9c30b311de2513555ab02464ebb76115d242842b29c412f5a9aa0cac57be9f6"}, + {file = "Shapely-1.8.5.post1.tar.gz", hash = "sha256:ef3be705c3eac282a28058e6c6e5503419b250f482320df2172abcbea642c831"}, ] [package.extras] @@ -3339,7 +4488,6 @@ vectorized = ["numpy"] name = "six" version = "1.16.0" description = "Python 2 and 3 compatibility utilities" -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" files = [ @@ -3349,38 +4497,35 @@ files = [ [[package]] name = "sniffio" -version = "1.2.0" +version = "1.3.1" description = "Sniff out which async library your code is running under" -category = "dev" optional = false -python-versions = ">=3.5" +python-versions = ">=3.7" files = [ - {file = "sniffio-1.2.0-py3-none-any.whl", hash = "sha256:471b71698eac1c2112a40ce2752bb2f4a4814c22a54a3eed3676bc0f5ca9f663"}, - {file = "sniffio-1.2.0.tar.gz", hash = "sha256:c4666eecec1d3f50960c6bdf61ab7bc350648da6c126e3cf6898d8cd4ddcd3de"}, + {file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"}, + {file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"}, ] [[package]] name = "soupsieve" -version = "2.3.2.post1" +version = "2.6" description = "A modern CSS selector implementation for Beautiful Soup." -category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "soupsieve-2.3.2.post1-py3-none-any.whl", hash = "sha256:3b2503d3c7084a42b1ebd08116e5f81aadfaea95863628c80a3b774a11b7c759"}, - {file = "soupsieve-2.3.2.post1.tar.gz", hash = "sha256:fc53893b3da2c33de295667a0e19f078c14bf86544af307354de5fcf12a3f30d"}, + {file = "soupsieve-2.6-py3-none-any.whl", hash = "sha256:e72c4ff06e4fb6e4b5a9f0f55fe6e81514581fca1515028625d0f299c602ccc9"}, + {file = "soupsieve-2.6.tar.gz", hash = "sha256:e2e68417777af359ec65daac1057404a3c8a5455bb8abc36f1a9866ab1a51abb"}, ] [[package]] name = "stack-data" -version = "0.6.2" +version = "0.6.3" description = "Extract data from python stack frames and tracebacks for informative displays" -category = "main" optional = false python-versions = "*" files = [ - {file = "stack_data-0.6.2-py3-none-any.whl", hash = "sha256:cbb2a53eb64e5785878201a97ed7c7b94883f48b87bfb0bbe8b623c74679e4a8"}, - {file = "stack_data-0.6.2.tar.gz", hash = "sha256:32d2dd0376772d01b6cb9fc996f3c8b57a357089dec328ed4b6553d037eaf815"}, + {file = "stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695"}, + {file = "stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9"}, ] [package.dependencies] @@ -3393,29 +4538,28 @@ tests = ["cython", "littleutils", "pygments", "pytest", "typeguard"] [[package]] name = "tenacity" -version = "8.0.1" +version = "9.0.0" description = "Retry code until it succeeds" -category = "dev" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "tenacity-8.0.1-py3-none-any.whl", hash = "sha256:f78f4ea81b0fabc06728c11dc2a8c01277bfc5181b321a4770471902e3eb844a"}, - {file = "tenacity-8.0.1.tar.gz", hash = "sha256:43242a20e3e73291a28bcbcacfd6e000b02d3857a9a9fff56b297a27afdc932f"}, + {file = "tenacity-9.0.0-py3-none-any.whl", hash = "sha256:93de0c98785b27fcf659856aa9f54bfbd399e29969b0621bc7f762bd441b4539"}, + {file = "tenacity-9.0.0.tar.gz", hash = "sha256:807f37ca97d62aa361264d497b0e31e92b8027044942bfa756160d908320d73b"}, ] [package.extras] -doc = ["reno", "sphinx", "tornado (>=4.5)"] +doc = ["reno", "sphinx"] +test = ["pytest", "tornado (>=4.5)", "typeguard"] [[package]] name = "terminado" -version = "0.15.0" +version = "0.18.1" description = "Tornado websocket backend for the Xterm.js Javascript terminal emulator library." -category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "terminado-0.15.0-py3-none-any.whl", hash = "sha256:0d5f126fbfdb5887b25ae7d9d07b0d716b1cc0ccaacc71c1f3c14d228e065197"}, - {file = "terminado-0.15.0.tar.gz", hash = "sha256:ab4eeedccfcc1e6134bfee86106af90852c69d602884ea3a1e8ca6d4486e9bfe"}, + {file = "terminado-0.18.1-py3-none-any.whl", hash = "sha256:a4468e1b37bb318f8a86514f65814e1afc977cf29b3992a4500d9dd305dcceb0"}, + {file = "terminado-0.18.1.tar.gz", hash = "sha256:de09f2c4b85de4765f7714688fff57d3e75bad1f909b589fde880460c753fd2e"}, ] [package.dependencies] @@ -3424,30 +4568,19 @@ pywinpty = {version = ">=1.1.0", markers = "os_name == \"nt\""} tornado = ">=6.1.0" [package.extras] -test = ["pre-commit", "pytest (>=6.0)", "pytest-timeout"] - -[[package]] -name = "textwrap3" -version = "0.9.2" -description = "textwrap from Python 3.6 backport (plus a few tweaks)" -category = "dev" -optional = false -python-versions = "*" -files = [ - {file = "textwrap3-0.9.2-py2.py3-none-any.whl", hash = "sha256:bf5f4c40faf2a9ff00a9e0791fed5da7415481054cef45bb4a3cfb1f69044ae0"}, - {file = "textwrap3-0.9.2.zip", hash = "sha256:5008eeebdb236f6303dcd68f18b856d355f6197511d952ba74bc75e40e0c3414"}, -] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx"] +test = ["pre-commit", "pytest (>=7.0)", "pytest-timeout"] +typing = ["mypy (>=1.6,<2.0)", "traitlets (>=5.11.1)"] [[package]] name = "tinycss2" -version = "1.1.1" +version = "1.4.0" description = "A tiny CSS parser" -category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "tinycss2-1.1.1-py3-none-any.whl", hash = "sha256:fe794ceaadfe3cf3e686b22155d0da5780dd0e273471a51846d0a02bc204fec8"}, - {file = "tinycss2-1.1.1.tar.gz", hash = "sha256:b2e44dd8883c360c35dd0d1b5aad0b610e5156c2cb3b33434634e539ead9d8bf"}, + {file = "tinycss2-1.4.0-py3-none-any.whl", hash = "sha256:3a49cf47b7675da0b15d0c6e1df8df4ebd96e9394bb905a5775adb0d884c5289"}, + {file = "tinycss2-1.4.0.tar.gz", hash = "sha256:10c0972f6fc0fbee87c3edb76549357415e94548c1ae10ebccdea16fb404a9b7"}, ] [package.dependencies] @@ -3455,13 +4588,12 @@ webencodings = ">=0.4" [package.extras] doc = ["sphinx", "sphinx_rtd_theme"] -test = ["coverage[toml]", "pytest", "pytest-cov", "pytest-flake8", "pytest-isort"] +test = ["pytest", "ruff"] [[package]] name = "toml" version = "0.10.2" description = "Python Library for Tom's Obvious, Minimal Language" -category = "main" optional = false python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" files = [ @@ -3471,59 +4603,55 @@ files = [ [[package]] name = "tomli" -version = "1.2.3" +version = "2.0.2" description = "A lil' TOML parser" -category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "tomli-1.2.3-py3-none-any.whl", hash = "sha256:e3069e4be3ead9668e21cb9b074cd948f7b3113fd9c8bba083f48247aab8b11c"}, - {file = "tomli-1.2.3.tar.gz", hash = "sha256:05b6166bff487dc068d322585c7ea4ef78deed501cc124060e0f238e89a9231f"}, + {file = "tomli-2.0.2-py3-none-any.whl", hash = "sha256:2ebe24485c53d303f690b0ec092806a085f07af5a5aa1464f3931eec36caaa38"}, + {file = "tomli-2.0.2.tar.gz", hash = "sha256:d46d457a85337051c36524bc5349dd91b1877838e2979ac5ced3e710ed8a60ed"}, ] [[package]] name = "tomlkit" -version = "0.11.4" +version = "0.13.2" description = "Style preserving TOML library" -category = "main" optional = false -python-versions = ">=3.6,<4.0" +python-versions = ">=3.8" files = [ - {file = "tomlkit-0.11.4-py3-none-any.whl", hash = "sha256:25d4e2e446c453be6360c67ddfb88838cfc42026322770ba13d1fbd403a93a5c"}, - {file = "tomlkit-0.11.4.tar.gz", hash = "sha256:3235a9010fae54323e727c3ac06fb720752fe6635b3426e379daec60fbd44a83"}, + {file = "tomlkit-0.13.2-py3-none-any.whl", hash = "sha256:7a974427f6e119197f670fbbbeae7bef749a6c14e793db934baefc1b5f03efde"}, + {file = "tomlkit-0.13.2.tar.gz", hash = "sha256:fff5fe59a87295b278abd31bec92c15d9bc4a06885ab12bcea52c71119392e79"}, ] [[package]] name = "tornado" -version = "6.2" +version = "6.4.1" description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." -category = "main" optional = false -python-versions = ">= 3.7" +python-versions = ">=3.8" files = [ - {file = "tornado-6.2-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:20f638fd8cc85f3cbae3c732326e96addff0a15e22d80f049e00121651e82e72"}, - {file = "tornado-6.2-cp37-abi3-macosx_10_9_x86_64.whl", hash = "sha256:87dcafae3e884462f90c90ecc200defe5e580a7fbbb4365eda7c7c1eb809ebc9"}, - {file = "tornado-6.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ba09ef14ca9893954244fd872798b4ccb2367c165946ce2dd7376aebdde8e3ac"}, - {file = "tornado-6.2-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b8150f721c101abdef99073bf66d3903e292d851bee51910839831caba341a75"}, - {file = "tornado-6.2-cp37-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3a2f5999215a3a06a4fc218026cd84c61b8b2b40ac5296a6db1f1451ef04c1e"}, - {file = "tornado-6.2-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:5f8c52d219d4995388119af7ccaa0bcec289535747620116a58d830e7c25d8a8"}, - {file = "tornado-6.2-cp37-abi3-musllinux_1_1_i686.whl", hash = "sha256:6fdfabffd8dfcb6cf887428849d30cf19a3ea34c2c248461e1f7d718ad30b66b"}, - {file = "tornado-6.2-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:1d54d13ab8414ed44de07efecb97d4ef7c39f7438cf5e976ccd356bebb1b5fca"}, - {file = "tornado-6.2-cp37-abi3-win32.whl", hash = "sha256:5c87076709343557ef8032934ce5f637dbb552efa7b21d08e89ae7619ed0eb23"}, - {file = "tornado-6.2-cp37-abi3-win_amd64.whl", hash = "sha256:e5f923aa6a47e133d1cf87d60700889d7eae68988704e20c75fb2d65677a8e4b"}, - {file = "tornado-6.2.tar.gz", hash = "sha256:9b630419bde84ec666bfd7ea0a4cb2a8a651c2d5cccdbdd1972a0c859dfc3c13"}, + {file = "tornado-6.4.1-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:163b0aafc8e23d8cdc3c9dfb24c5368af84a81e3364745ccb4427669bf84aec8"}, + {file = "tornado-6.4.1-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:6d5ce3437e18a2b66fbadb183c1d3364fb03f2be71299e7d10dbeeb69f4b2a14"}, + {file = "tornado-6.4.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2e20b9113cd7293f164dc46fffb13535266e713cdb87bd2d15ddb336e96cfc4"}, + {file = "tornado-6.4.1-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8ae50a504a740365267b2a8d1a90c9fbc86b780a39170feca9bcc1787ff80842"}, + {file = "tornado-6.4.1-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:613bf4ddf5c7a95509218b149b555621497a6cc0d46ac341b30bd9ec19eac7f3"}, + {file = "tornado-6.4.1-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:25486eb223babe3eed4b8aecbac33b37e3dd6d776bc730ca14e1bf93888b979f"}, + {file = "tornado-6.4.1-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:454db8a7ecfcf2ff6042dde58404164d969b6f5d58b926da15e6b23817950fc4"}, + {file = "tornado-6.4.1-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:a02a08cc7a9314b006f653ce40483b9b3c12cda222d6a46d4ac63bb6c9057698"}, + {file = "tornado-6.4.1-cp38-abi3-win32.whl", hash = "sha256:d9a566c40b89757c9aa8e6f032bcdb8ca8795d7c1a9762910c722b1635c9de4d"}, + {file = "tornado-6.4.1-cp38-abi3-win_amd64.whl", hash = "sha256:b24b8982ed444378d7f21d563f4180a2de31ced9d8d84443907a0a64da2072e7"}, + {file = "tornado-6.4.1.tar.gz", hash = "sha256:92d3ab53183d8c50f8204a51e6f91d18a15d5ef261e84d452800d4ff6fc504e9"}, ] [[package]] name = "tox" -version = "3.25.1" +version = "3.28.0" description = "tox is a generic virtualenv management and test command line tool" -category = "dev" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" files = [ - {file = "tox-3.25.1-py2.py3-none-any.whl", hash = "sha256:c38e15f4733683a9cc0129fba078633e07eb0961f550a010ada879e95fb32632"}, - {file = "tox-3.25.1.tar.gz", hash = "sha256:c138327815f53bc6da4fe56baec5f25f00622ae69ef3fe4e1e385720e22486f9"}, + {file = "tox-3.28.0-py2.py3-none-any.whl", hash = "sha256:57b5ab7e8bb3074edc3c0c0b4b192a4f3799d3723b2c5b76f1fa9f2d40316eea"}, + {file = "tox-3.28.0.tar.gz", hash = "sha256:d0d28f3fe6d6d7195c27f8b054c3e99d5451952b54abdae673b71609a581f640"}, ] [package.dependencies] @@ -3533,7 +4661,7 @@ packaging = ">=14" pluggy = ">=0.12.0" py = ">=1.4.17" six = ">=1.14.0" -toml = ">=0.9.4" +tomli = {version = ">=2.0.1", markers = "python_version >= \"3.7\" and python_version < \"3.11\""} virtualenv = ">=16.0.0,<20.0.0 || >20.0.0,<20.0.1 || >20.0.1,<20.0.2 || >20.0.2,<20.0.3 || >20.0.3,<20.0.4 || >20.0.4,<20.0.5 || >20.0.5,<20.0.6 || >20.0.6,<20.0.7 || >20.0.7" [package.extras] @@ -3544,7 +4672,6 @@ testing = ["flaky (>=3.4.0)", "freezegun (>=0.3.11)", "pathlib2 (>=2.3.3)", "psu name = "tox-poetry" version = "0.4.1" description = "Tox poetry plugin" -category = "dev" optional = false python-versions = "*" files = [ @@ -3562,89 +4689,102 @@ test = ["coverage", "pycodestyle", "pylint", "pytest"] [[package]] name = "tqdm" -version = "4.62.0" +version = "4.66.6" description = "Fast, Extensible Progress Meter" -category = "main" optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7" +python-versions = ">=3.7" files = [ - {file = "tqdm-4.62.0-py2.py3-none-any.whl", hash = "sha256:706dea48ee05ba16e936ee91cb3791cd2ea6da348a0e50b46863ff4363ff4340"}, - {file = "tqdm-4.62.0.tar.gz", hash = "sha256:3642d483b558eec80d3c831e23953582c34d7e4540db86d9e5ed9dad238dabc6"}, + {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, + {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, ] [package.dependencies] colorama = {version = "*", markers = "platform_system == \"Windows\""} [package.extras] -dev = ["py-make (>=0.1.0)", "twine", "wheel"] +dev = ["pytest (>=6)", "pytest-cov", "pytest-timeout", "pytest-xdist"] notebook = ["ipywidgets (>=6)"] +slack = ["slack-sdk"] telegram = ["requests"] [[package]] name = "traitlets" -version = "5.3.0" -description = "" -category = "main" +version = "5.14.3" +description = "Traitlets Python configuration system" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "traitlets-5.3.0-py3-none-any.whl", hash = "sha256:65fa18961659635933100db8ca120ef6220555286949774b9cfc106f941d1c7a"}, - {file = "traitlets-5.3.0.tar.gz", hash = "sha256:0bb9f1f9f017aa8ec187d8b1b2a7a6626a2a1d877116baba52a129bfa124f8e2"}, + {file = "traitlets-5.14.3-py3-none-any.whl", hash = "sha256:b74e89e397b1ed28cc831db7aea759ba6640cb3de13090ca145426688ff1ac4f"}, + {file = "traitlets-5.14.3.tar.gz", hash = "sha256:9ed0579d3502c94b4b3732ac120375cda96f923114522847de4b3bb98b96b6b7"}, ] [package.extras] -test = ["pre-commit", "pytest"] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx"] +test = ["argcomplete (>=3.0.3)", "mypy (>=1.7.0)", "pre-commit", "pytest (>=7.0,<8.2)", "pytest-mock", "pytest-mypy-testing"] [[package]] -name = "types-requests" -version = "2.28.8" -description = "Typing stubs for requests" -category = "main" +name = "typeguard" +version = "4.4.1" +description = "Run-time type checker for Python" optional = false -python-versions = "*" +python-versions = ">=3.9" files = [ - {file = "types-requests-2.28.8.tar.gz", hash = "sha256:7a9f7b152d594a1c18dd4932cdd2596b8efbeedfd73caa4e4abb3755805b4685"}, - {file = "types_requests-2.28.8-py3-none-any.whl", hash = "sha256:b0421f9f2d0dd0f8df2c75f974686517ca67473f05b466232d4c6384d765ad7a"}, + {file = "typeguard-4.4.1-py3-none-any.whl", hash = "sha256:9324ec07a27ec67fc54a9c063020ca4c0ae6abad5e9f0f9804ca59aee68c6e21"}, + {file = "typeguard-4.4.1.tar.gz", hash = "sha256:0d22a89d00b453b47c49875f42b6601b961757541a2e1e0ef517b6e24213c21b"}, ] [package.dependencies] -types-urllib3 = "<1.27" +typing-extensions = ">=4.10.0" + +[package.extras] +doc = ["Sphinx (>=7)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme (>=1.3.0)"] +test = ["coverage[toml] (>=7)", "mypy (>=1.2.0)", "pytest (>=7)"] [[package]] -name = "types-urllib3" -version = "1.26.22" -description = "Typing stubs for urllib3" -category = "main" +name = "types-python-dateutil" +version = "2.9.0.20241003" +description = "Typing stubs for python-dateutil" optional = false -python-versions = "*" +python-versions = ">=3.8" files = [ - {file = "types-urllib3-1.26.22.tar.gz", hash = "sha256:b05af90e73889e688094008a97ca95788db8bf3736e2776fd43fb6b171485d94"}, - {file = "types_urllib3-1.26.22-py3-none-any.whl", hash = "sha256:09a8783e1002472e8d1e1f3792d4c5cca1fffebb9b48ee1512aae6d16fe186bc"}, + {file = "types-python-dateutil-2.9.0.20241003.tar.gz", hash = "sha256:58cb85449b2a56d6684e41aeefb4c4280631246a0da1a719bdbe6f3fb0317446"}, + {file = "types_python_dateutil-2.9.0.20241003-py3-none-any.whl", hash = "sha256:250e1d8e80e7bbc3a6c99b907762711d1a1cdd00e978ad39cb5940f6f0a87f3d"}, ] [[package]] -name = "typing-extensions" -version = "4.3.0" -description = "Backported and Experimental Type Hints for Python 3.7+" -category = "main" +name = "types-requests" +version = "2.32.0.20241016" +description = "Typing stubs for requests" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "typing_extensions-4.3.0-py3-none-any.whl", hash = "sha256:25642c956049920a5aa49edcdd6ab1e06d7e5d467fc00e0506c44ac86fbfca02"}, - {file = "typing_extensions-4.3.0.tar.gz", hash = "sha256:e6d2677a32f47fc7eb2795db1dd15c1f34eff616bcaf2cfb5e997f854fa1c4a6"}, + {file = "types-requests-2.32.0.20241016.tar.gz", hash = "sha256:0d9cad2f27515d0e3e3da7134a1b6f28fb97129d86b867f24d9c726452634d95"}, + {file = "types_requests-2.32.0.20241016-py3-none-any.whl", hash = "sha256:4195d62d6d3e043a4eaaf08ff8a62184584d2e8684e9d2aa178c7915a7da3747"}, +] + +[package.dependencies] +urllib3 = ">=2" + +[[package]] +name = "typing-extensions" +version = "4.12.2" +description = "Backported and Experimental Type Hints for Python 3.8+" +optional = false +python-versions = ">=3.8" +files = [ + {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, + {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, ] [[package]] name = "typing-inspect" -version = "0.7.1" +version = "0.9.0" description = "Runtime inspection utilities for typing module." -category = "main" optional = false python-versions = "*" files = [ - {file = "typing_inspect-0.7.1-py2-none-any.whl", hash = "sha256:b1f56c0783ef0f25fb064a01be6e5407e54cf4a4bf4f3ba3fe51e0bd6dcea9e5"}, - {file = "typing_inspect-0.7.1-py3-none-any.whl", hash = "sha256:3cd7d4563e997719a710a3bfe7ffb544c6b72069b6812a02e9b414a8fa3aaa6b"}, - {file = "typing_inspect-0.7.1.tar.gz", hash = "sha256:047d4097d9b17f46531bf6f014356111a1b6fb821a24fe7ac909853ca2a782aa"}, + {file = "typing_inspect-0.9.0-py3-none-any.whl", hash = "sha256:9ee6fc59062311ef8547596ab6b955e1b8aa46242d854bfc78f4f6b0eff35f9f"}, + {file = "typing_inspect-0.9.0.tar.gz", hash = "sha256:b23fc42ff6f6ef6954e4852c1fb512cdd18dbea03134f91f856a95ccc9461f78"}, ] [package.dependencies] @@ -3652,27 +4792,40 @@ mypy-extensions = ">=0.3.0" typing-extensions = ">=3.7.4" [[package]] -name = "urllib3" -version = "1.26.11" -description = "HTTP library with thread-safe connection pooling, file post, and more." -category = "main" +name = "uri-template" +version = "1.3.0" +description = "RFC 6570 URI Template Processor" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4" +python-versions = ">=3.7" files = [ - {file = "urllib3-1.26.11-py2.py3-none-any.whl", hash = "sha256:c33ccba33c819596124764c23a97d25f32b28433ba0dedeb77d873a38722c9bc"}, - {file = "urllib3-1.26.11.tar.gz", hash = "sha256:ea6e8fb210b19d950fab93b60c9009226c63a28808bc8386e05301e25883ac0a"}, + {file = "uri-template-1.3.0.tar.gz", hash = "sha256:0e00f8eb65e18c7de20d595a14336e9f337ead580c70934141624b6d1ffdacc7"}, + {file = "uri_template-1.3.0-py3-none-any.whl", hash = "sha256:a44a133ea12d44a0c0f06d7d42a52d71282e77e2f937d8abd5655b8d56fc1363"}, ] [package.extras] -brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] -secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)"] -socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] +dev = ["flake8", "flake8-annotations", "flake8-bandit", "flake8-bugbear", "flake8-commas", "flake8-comprehensions", "flake8-continuation", "flake8-datetimez", "flake8-docstrings", "flake8-import-order", "flake8-literal", "flake8-modern-annotations", "flake8-noqa", "flake8-pyproject", "flake8-requirements", "flake8-typechecking-import", "flake8-use-fstring", "mypy", "pep8-naming", "types-PyYAML"] + +[[package]] +name = "urllib3" +version = "2.2.3" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.8" +files = [ + {file = "urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac"}, + {file = "urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +h2 = ["h2 (>=4,<5)"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] [[package]] name = "us" version = "2.0.2" description = "US state meta information and other fun stuff" -category = "main" optional = false python-versions = "*" files = [ @@ -3684,42 +4837,54 @@ jellyfish = "0.6.1" [[package]] name = "virtualenv" -version = "20.16.3" +version = "20.27.1" description = "Virtual Python Environment builder" -category = "dev" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "virtualenv-20.16.3-py2.py3-none-any.whl", hash = "sha256:4193b7bc8a6cd23e4eb251ac64f29b4398ab2c233531e66e40b19a6b7b0d30c1"}, - {file = "virtualenv-20.16.3.tar.gz", hash = "sha256:d86ea0bb50e06252d79e6c241507cb904fcd66090c3271381372d6221a3970f9"}, + {file = "virtualenv-20.27.1-py3-none-any.whl", hash = "sha256:f11f1b8a29525562925f745563bfd48b189450f61fb34c4f9cc79dd5aa32a1f4"}, + {file = "virtualenv-20.27.1.tar.gz", hash = "sha256:142c6be10212543b32c6c45d3d3893dff89112cc588b7d0879ae5a1ec03a47ba"}, ] [package.dependencies] -distlib = ">=0.3.5,<1" -filelock = ">=3.4.1,<4" -platformdirs = ">=2.4,<3" +distlib = ">=0.3.7,<1" +filelock = ">=3.12.2,<4" +platformdirs = ">=3.9.1,<5" [package.extras] -docs = ["proselint (>=0.13)", "sphinx (>=5.1.1)", "sphinx-argparse (>=0.3.1)", "sphinx-rtd-theme (>=1)", "towncrier (>=21.9)"] -testing = ["coverage (>=6.2)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=21.3)", "pytest (>=7.0.1)", "pytest-env (>=0.6.2)", "pytest-freezegun (>=0.4.2)", "pytest-mock (>=3.6.1)", "pytest-randomly (>=3.10.3)", "pytest-timeout (>=2.1)"] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.2,!=7.3)", "sphinx-argparse (>=0.4)", "sphinxcontrib-towncrier (>=0.2.1a0)", "towncrier (>=23.6)"] +test = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=23.1)", "pytest (>=7.4)", "pytest-env (>=0.8.2)", "pytest-freezer (>=0.4.8)", "pytest-mock (>=3.11.1)", "pytest-randomly (>=3.12)", "pytest-timeout (>=2.1)", "setuptools (>=68)", "time-machine (>=2.10)"] [[package]] name = "wcwidth" -version = "0.2.5" +version = "0.2.13" description = "Measures the displayed width of unicode strings in a terminal" -category = "main" optional = false python-versions = "*" files = [ - {file = "wcwidth-0.2.5-py2.py3-none-any.whl", hash = "sha256:beb4802a9cebb9144e99086eff703a642a13d6a0052920003a230f3294bbe784"}, - {file = "wcwidth-0.2.5.tar.gz", hash = "sha256:c4d647b99872929fdb7bdcaa4fbe7f01413ed3d98077df798530e5b04f116c83"}, + {file = "wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859"}, + {file = "wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5"}, ] +[[package]] +name = "webcolors" +version = "24.8.0" +description = "A library for working with the color formats defined by HTML and CSS." +optional = false +python-versions = ">=3.8" +files = [ + {file = "webcolors-24.8.0-py3-none-any.whl", hash = "sha256:fc4c3b59358ada164552084a8ebee637c221e4059267d0f8325b3b560f6c7f0a"}, + {file = "webcolors-24.8.0.tar.gz", hash = "sha256:08b07af286a01bcd30d583a7acadf629583d1f79bfef27dd2c2c5c263817277d"}, +] + +[package.extras] +docs = ["furo", "sphinx", "sphinx-copybutton", "sphinx-inline-tabs", "sphinx-notfound-page", "sphinxext-opengraph"] +tests = ["coverage[toml]"] + [[package]] name = "webencodings" version = "0.5.1" description = "Character encoding aliases for legacy web content" -category = "main" optional = false python-versions = "*" files = [ @@ -3729,112 +4894,114 @@ files = [ [[package]] name = "websocket-client" -version = "1.3.3" +version = "1.8.0" description = "WebSocket client for Python with low level API options" -category = "dev" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "websocket-client-1.3.3.tar.gz", hash = "sha256:d58c5f284d6a9bf8379dab423259fe8f85b70d5fa5d2916d5791a84594b122b1"}, - {file = "websocket_client-1.3.3-py3-none-any.whl", hash = "sha256:5d55652dc1d0b3c734f044337d929aaf83f4f9138816ec680c1aefefb4dc4877"}, + {file = "websocket_client-1.8.0-py3-none-any.whl", hash = "sha256:17b44cc997f5c498e809b22cdf2d9c7a9e71c02c8cc2b6c56e7c2d1239bfa526"}, + {file = "websocket_client-1.8.0.tar.gz", hash = "sha256:3239df9f44da632f96012472805d40a23281a991027ce11d2f45a6f24ac4c3da"}, ] [package.extras] -docs = ["Sphinx (>=3.4)", "sphinx-rtd-theme (>=0.5)"] +docs = ["Sphinx (>=6.0)", "myst-parser (>=2.0.0)", "sphinx-rtd-theme (>=1.1.0)"] optional = ["python-socks", "wsaccel"] test = ["websockets"] [[package]] name = "widgetsnbextension" -version = "4.0.2" +version = "4.0.13" description = "Jupyter interactive widgets for Jupyter Notebook" -category = "main" optional = false python-versions = ">=3.7" files = [ - {file = "widgetsnbextension-4.0.2-py3-none-any.whl", hash = "sha256:966bd61443926b6adcc0abef9f499c48bdeda181c333b0f49842d7385d440579"}, - {file = "widgetsnbextension-4.0.2.tar.gz", hash = "sha256:07f0e8582f920b24316cef16490f1aeb498f2c875d48980540e5c5dbf0ff5e2d"}, + {file = "widgetsnbextension-4.0.13-py3-none-any.whl", hash = "sha256:74b2692e8500525cc38c2b877236ba51d34541e6385eeed5aec15a70f88a6c71"}, + {file = "widgetsnbextension-4.0.13.tar.gz", hash = "sha256:ffcb67bc9febd10234a362795f643927f4e0c05d9342c727b65d2384f8feacb6"}, ] [[package]] name = "wrapt" -version = "1.14.1" +version = "1.16.0" description = "Module for decorators, wrappers and monkey patching." -category = "main" optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" +python-versions = ">=3.6" files = [ - {file = "wrapt-1.14.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:1b376b3f4896e7930f1f772ac4b064ac12598d1c38d04907e696cc4d794b43d3"}, - {file = "wrapt-1.14.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:903500616422a40a98a5a3c4ff4ed9d0066f3b4c951fa286018ecdf0750194ef"}, - {file = "wrapt-1.14.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:5a9a0d155deafd9448baff28c08e150d9b24ff010e899311ddd63c45c2445e28"}, - {file = "wrapt-1.14.1-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:ddaea91abf8b0d13443f6dac52e89051a5063c7d014710dcb4d4abb2ff811a59"}, - {file = "wrapt-1.14.1-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:36f582d0c6bc99d5f39cd3ac2a9062e57f3cf606ade29a0a0d6b323462f4dd87"}, - {file = "wrapt-1.14.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:7ef58fb89674095bfc57c4069e95d7a31cfdc0939e2a579882ac7d55aadfd2a1"}, - {file = "wrapt-1.14.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:e2f83e18fe2f4c9e7db597e988f72712c0c3676d337d8b101f6758107c42425b"}, - {file = "wrapt-1.14.1-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:ee2b1b1769f6707a8a445162ea16dddf74285c3964f605877a20e38545c3c462"}, - {file = "wrapt-1.14.1-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:833b58d5d0b7e5b9832869f039203389ac7cbf01765639c7309fd50ef619e0b1"}, - {file = "wrapt-1.14.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:80bb5c256f1415f747011dc3604b59bc1f91c6e7150bd7db03b19170ee06b320"}, - {file = "wrapt-1.14.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:07f7a7d0f388028b2df1d916e94bbb40624c59b48ecc6cbc232546706fac74c2"}, - {file = "wrapt-1.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:02b41b633c6261feff8ddd8d11c711df6842aba629fdd3da10249a53211a72c4"}, - {file = "wrapt-1.14.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2fe803deacd09a233e4762a1adcea5db5d31e6be577a43352936179d14d90069"}, - {file = "wrapt-1.14.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:257fd78c513e0fb5cdbe058c27a0624c9884e735bbd131935fd49e9fe719d310"}, - {file = "wrapt-1.14.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:4fcc4649dc762cddacd193e6b55bc02edca674067f5f98166d7713b193932b7f"}, - {file = "wrapt-1.14.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:11871514607b15cfeb87c547a49bca19fde402f32e2b1c24a632506c0a756656"}, - {file = "wrapt-1.14.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8ad85f7f4e20964db4daadcab70b47ab05c7c1cf2a7c1e51087bfaa83831854c"}, - {file = "wrapt-1.14.1-cp310-cp310-win32.whl", hash = "sha256:a9a52172be0b5aae932bef82a79ec0a0ce87288c7d132946d645eba03f0ad8a8"}, - {file = "wrapt-1.14.1-cp310-cp310-win_amd64.whl", hash = "sha256:6d323e1554b3d22cfc03cd3243b5bb815a51f5249fdcbb86fda4bf62bab9e164"}, - {file = "wrapt-1.14.1-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:43ca3bbbe97af00f49efb06e352eae40434ca9d915906f77def219b88e85d907"}, - {file = "wrapt-1.14.1-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:6b1a564e6cb69922c7fe3a678b9f9a3c54e72b469875aa8018f18b4d1dd1adf3"}, - {file = "wrapt-1.14.1-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:00b6d4ea20a906c0ca56d84f93065b398ab74b927a7a3dbd470f6fc503f95dc3"}, - {file = "wrapt-1.14.1-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:a85d2b46be66a71bedde836d9e41859879cc54a2a04fad1191eb50c2066f6e9d"}, - {file = "wrapt-1.14.1-cp35-cp35m-win32.whl", hash = "sha256:dbcda74c67263139358f4d188ae5faae95c30929281bc6866d00573783c422b7"}, - {file = "wrapt-1.14.1-cp35-cp35m-win_amd64.whl", hash = "sha256:b21bb4c09ffabfa0e85e3a6b623e19b80e7acd709b9f91452b8297ace2a8ab00"}, - {file = "wrapt-1.14.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:9e0fd32e0148dd5dea6af5fee42beb949098564cc23211a88d799e434255a1f4"}, - {file = "wrapt-1.14.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9736af4641846491aedb3c3f56b9bc5568d92b0692303b5a305301a95dfd38b1"}, - {file = "wrapt-1.14.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5b02d65b9ccf0ef6c34cba6cf5bf2aab1bb2f49c6090bafeecc9cd81ad4ea1c1"}, - {file = "wrapt-1.14.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21ac0156c4b089b330b7666db40feee30a5d52634cc4560e1905d6529a3897ff"}, - {file = "wrapt-1.14.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:9f3e6f9e05148ff90002b884fbc2a86bd303ae847e472f44ecc06c2cd2fcdb2d"}, - {file = "wrapt-1.14.1-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:6e743de5e9c3d1b7185870f480587b75b1cb604832e380d64f9504a0535912d1"}, - {file = "wrapt-1.14.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:d79d7d5dc8a32b7093e81e97dad755127ff77bcc899e845f41bf71747af0c569"}, - {file = "wrapt-1.14.1-cp36-cp36m-win32.whl", hash = "sha256:81b19725065dcb43df02b37e03278c011a09e49757287dca60c5aecdd5a0b8ed"}, - {file = "wrapt-1.14.1-cp36-cp36m-win_amd64.whl", hash = "sha256:b014c23646a467558be7da3d6b9fa409b2c567d2110599b7cf9a0c5992b3b471"}, - {file = "wrapt-1.14.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:88bd7b6bd70a5b6803c1abf6bca012f7ed963e58c68d76ee20b9d751c74a3248"}, - {file = "wrapt-1.14.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5901a312f4d14c59918c221323068fad0540e34324925c8475263841dbdfe68"}, - {file = "wrapt-1.14.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d77c85fedff92cf788face9bfa3ebaa364448ebb1d765302e9af11bf449ca36d"}, - {file = "wrapt-1.14.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d649d616e5c6a678b26d15ece345354f7c2286acd6db868e65fcc5ff7c24a77"}, - {file = "wrapt-1.14.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7d2872609603cb35ca513d7404a94d6d608fc13211563571117046c9d2bcc3d7"}, - {file = "wrapt-1.14.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:ee6acae74a2b91865910eef5e7de37dc6895ad96fa23603d1d27ea69df545015"}, - {file = "wrapt-1.14.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:2b39d38039a1fdad98c87279b48bc5dce2c0ca0d73483b12cb72aa9609278e8a"}, - {file = "wrapt-1.14.1-cp37-cp37m-win32.whl", hash = "sha256:60db23fa423575eeb65ea430cee741acb7c26a1365d103f7b0f6ec412b893853"}, - {file = "wrapt-1.14.1-cp37-cp37m-win_amd64.whl", hash = "sha256:709fe01086a55cf79d20f741f39325018f4df051ef39fe921b1ebe780a66184c"}, - {file = "wrapt-1.14.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8c0ce1e99116d5ab21355d8ebe53d9460366704ea38ae4d9f6933188f327b456"}, - {file = "wrapt-1.14.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e3fb1677c720409d5f671e39bac6c9e0e422584e5f518bfd50aa4cbbea02433f"}, - {file = "wrapt-1.14.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:642c2e7a804fcf18c222e1060df25fc210b9c58db7c91416fb055897fc27e8cc"}, - {file = "wrapt-1.14.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7b7c050ae976e286906dd3f26009e117eb000fb2cf3533398c5ad9ccc86867b1"}, - {file = "wrapt-1.14.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ef3f72c9666bba2bab70d2a8b79f2c6d2c1a42a7f7e2b0ec83bb2f9e383950af"}, - {file = "wrapt-1.14.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:01c205616a89d09827986bc4e859bcabd64f5a0662a7fe95e0d359424e0e071b"}, - {file = "wrapt-1.14.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5a0f54ce2c092aaf439813735584b9537cad479575a09892b8352fea5e988dc0"}, - {file = "wrapt-1.14.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2cf71233a0ed05ccdabe209c606fe0bac7379fdcf687f39b944420d2a09fdb57"}, - {file = "wrapt-1.14.1-cp38-cp38-win32.whl", hash = "sha256:aa31fdcc33fef9eb2552cbcbfee7773d5a6792c137b359e82879c101e98584c5"}, - {file = "wrapt-1.14.1-cp38-cp38-win_amd64.whl", hash = "sha256:d1967f46ea8f2db647c786e78d8cc7e4313dbd1b0aca360592d8027b8508e24d"}, - {file = "wrapt-1.14.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3232822c7d98d23895ccc443bbdf57c7412c5a65996c30442ebe6ed3df335383"}, - {file = "wrapt-1.14.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:988635d122aaf2bdcef9e795435662bcd65b02f4f4c1ae37fbee7401c440b3a7"}, - {file = "wrapt-1.14.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cca3c2cdadb362116235fdbd411735de4328c61425b0aa9f872fd76d02c4e86"}, - {file = "wrapt-1.14.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d52a25136894c63de15a35bc0bdc5adb4b0e173b9c0d07a2be9d3ca64a332735"}, - {file = "wrapt-1.14.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40e7bc81c9e2b2734ea4bc1aceb8a8f0ceaac7c5299bc5d69e37c44d9081d43b"}, - {file = "wrapt-1.14.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b9b7a708dd92306328117d8c4b62e2194d00c365f18eff11a9b53c6f923b01e3"}, - {file = "wrapt-1.14.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6a9a25751acb379b466ff6be78a315e2b439d4c94c1e99cb7266d40a537995d3"}, - {file = "wrapt-1.14.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:34aa51c45f28ba7f12accd624225e2b1e5a3a45206aa191f6f9aac931d9d56fe"}, - {file = "wrapt-1.14.1-cp39-cp39-win32.whl", hash = "sha256:dee0ce50c6a2dd9056c20db781e9c1cfd33e77d2d569f5d1d9321c641bb903d5"}, - {file = "wrapt-1.14.1-cp39-cp39-win_amd64.whl", hash = "sha256:dee60e1de1898bde3b238f18340eec6148986da0455d8ba7848d50470a7a32fb"}, - {file = "wrapt-1.14.1.tar.gz", hash = "sha256:380a85cf89e0e69b7cfbe2ea9f765f004ff419f34194018a6827ac0e3edfed4d"}, + {file = "wrapt-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4"}, + {file = "wrapt-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020"}, + {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb2dee3874a500de01c93d5c71415fcaef1d858370d405824783e7a8ef5db440"}, + {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2a88e6010048489cda82b1326889ec075a8c856c2e6a256072b28eaee3ccf487"}, + {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac83a914ebaf589b69f7d0a1277602ff494e21f4c2f743313414378f8f50a4cf"}, + {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:73aa7d98215d39b8455f103de64391cb79dfcad601701a3aa0dddacf74911d72"}, + {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:807cc8543a477ab7422f1120a217054f958a66ef7314f76dd9e77d3f02cdccd0"}, + {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bf5703fdeb350e36885f2875d853ce13172ae281c56e509f4e6eca049bdfb136"}, + {file = "wrapt-1.16.0-cp310-cp310-win32.whl", hash = "sha256:f6b2d0c6703c988d334f297aa5df18c45e97b0af3679bb75059e0e0bd8b1069d"}, + {file = "wrapt-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:decbfa2f618fa8ed81c95ee18a387ff973143c656ef800c9f24fb7e9c16054e2"}, + {file = "wrapt-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1a5db485fe2de4403f13fafdc231b0dbae5eca4359232d2efc79025527375b09"}, + {file = "wrapt-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:75ea7d0ee2a15733684badb16de6794894ed9c55aa5e9903260922f0482e687d"}, + {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a452f9ca3e3267cd4d0fcf2edd0d035b1934ac2bd7e0e57ac91ad6b95c0c6389"}, + {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43aa59eadec7890d9958748db829df269f0368521ba6dc68cc172d5d03ed8060"}, + {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72554a23c78a8e7aa02abbd699d129eead8b147a23c56e08d08dfc29cfdddca1"}, + {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d2efee35b4b0a347e0d99d28e884dfd82797852d62fcd7ebdeee26f3ceb72cf3"}, + {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6dcfcffe73710be01d90cae08c3e548d90932d37b39ef83969ae135d36ef3956"}, + {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:eb6e651000a19c96f452c85132811d25e9264d836951022d6e81df2fff38337d"}, + {file = "wrapt-1.16.0-cp311-cp311-win32.whl", hash = "sha256:66027d667efe95cc4fa945af59f92c5a02c6f5bb6012bff9e60542c74c75c362"}, + {file = "wrapt-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:aefbc4cb0a54f91af643660a0a150ce2c090d3652cf4052a5397fb2de549cd89"}, + {file = "wrapt-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5eb404d89131ec9b4f748fa5cfb5346802e5ee8836f57d516576e61f304f3b7b"}, + {file = "wrapt-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9090c9e676d5236a6948330e83cb89969f433b1943a558968f659ead07cb3b36"}, + {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94265b00870aa407bd0cbcfd536f17ecde43b94fb8d228560a1e9d3041462d73"}, + {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2058f813d4f2b5e3a9eb2eb3faf8f1d99b81c3e51aeda4b168406443e8ba809"}, + {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98b5e1f498a8ca1858a1cdbffb023bfd954da4e3fa2c0cb5853d40014557248b"}, + {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:14d7dc606219cdd7405133c713f2c218d4252f2a469003f8c46bb92d5d095d81"}, + {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:49aac49dc4782cb04f58986e81ea0b4768e4ff197b57324dcbd7699c5dfb40b9"}, + {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:418abb18146475c310d7a6dc71143d6f7adec5b004ac9ce08dc7a34e2babdc5c"}, + {file = "wrapt-1.16.0-cp312-cp312-win32.whl", hash = "sha256:685f568fa5e627e93f3b52fda002c7ed2fa1800b50ce51f6ed1d572d8ab3e7fc"}, + {file = "wrapt-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:dcdba5c86e368442528f7060039eda390cc4091bfd1dca41e8046af7c910dda8"}, + {file = "wrapt-1.16.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d462f28826f4657968ae51d2181a074dfe03c200d6131690b7d65d55b0f360f8"}, + {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a33a747400b94b6d6b8a165e4480264a64a78c8a4c734b62136062e9a248dd39"}, + {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b3646eefa23daeba62643a58aac816945cadc0afaf21800a1421eeba5f6cfb9c"}, + {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ebf019be5c09d400cf7b024aa52b1f3aeebeff51550d007e92c3c1c4afc2a40"}, + {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:0d2691979e93d06a95a26257adb7bfd0c93818e89b1406f5a28f36e0d8c1e1fc"}, + {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:1acd723ee2a8826f3d53910255643e33673e1d11db84ce5880675954183ec47e"}, + {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:bc57efac2da352a51cc4658878a68d2b1b67dbe9d33c36cb826ca449d80a8465"}, + {file = "wrapt-1.16.0-cp36-cp36m-win32.whl", hash = "sha256:da4813f751142436b075ed7aa012a8778aa43a99f7b36afe9b742d3ed8bdc95e"}, + {file = "wrapt-1.16.0-cp36-cp36m-win_amd64.whl", hash = "sha256:6f6eac2360f2d543cc875a0e5efd413b6cbd483cb3ad7ebf888884a6e0d2e966"}, + {file = "wrapt-1.16.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a0ea261ce52b5952bf669684a251a66df239ec6d441ccb59ec7afa882265d593"}, + {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bd2d7ff69a2cac767fbf7a2b206add2e9a210e57947dd7ce03e25d03d2de292"}, + {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9159485323798c8dc530a224bd3ffcf76659319ccc7bbd52e01e73bd0241a0c5"}, + {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a86373cf37cd7764f2201b76496aba58a52e76dedfaa698ef9e9688bfd9e41cf"}, + {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:73870c364c11f03ed072dda68ff7aea6d2a3a5c3fe250d917a429c7432e15228"}, + {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b935ae30c6e7400022b50f8d359c03ed233d45b725cfdd299462f41ee5ffba6f"}, + {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:db98ad84a55eb09b3c32a96c576476777e87c520a34e2519d3e59c44710c002c"}, + {file = "wrapt-1.16.0-cp37-cp37m-win32.whl", hash = "sha256:9153ed35fc5e4fa3b2fe97bddaa7cbec0ed22412b85bcdaf54aeba92ea37428c"}, + {file = "wrapt-1.16.0-cp37-cp37m-win_amd64.whl", hash = "sha256:66dfbaa7cfa3eb707bbfcd46dab2bc6207b005cbc9caa2199bcbc81d95071a00"}, + {file = "wrapt-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1dd50a2696ff89f57bd8847647a1c363b687d3d796dc30d4dd4a9d1689a706f0"}, + {file = "wrapt-1.16.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:44a2754372e32ab315734c6c73b24351d06e77ffff6ae27d2ecf14cf3d229202"}, + {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e9723528b9f787dc59168369e42ae1c3b0d3fadb2f1a71de14531d321ee05b0"}, + {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbed418ba5c3dce92619656802cc5355cb679e58d0d89b50f116e4a9d5a9603e"}, + {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941988b89b4fd6b41c3f0bfb20e92bd23746579736b7343283297c4c8cbae68f"}, + {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6a42cd0cfa8ffc1915aef79cb4284f6383d8a3e9dcca70c445dcfdd639d51267"}, + {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1ca9b6085e4f866bd584fb135a041bfc32cab916e69f714a7d1d397f8c4891ca"}, + {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5e49454f19ef621089e204f862388d29e6e8d8b162efce05208913dde5b9ad6"}, + {file = "wrapt-1.16.0-cp38-cp38-win32.whl", hash = "sha256:c31f72b1b6624c9d863fc095da460802f43a7c6868c5dda140f51da24fd47d7b"}, + {file = "wrapt-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:490b0ee15c1a55be9c1bd8609b8cecd60e325f0575fc98f50058eae366e01f41"}, + {file = "wrapt-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9b201ae332c3637a42f02d1045e1d0cccfdc41f1f2f801dafbaa7e9b4797bfc2"}, + {file = "wrapt-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2076fad65c6736184e77d7d4729b63a6d1ae0b70da4868adeec40989858eb3fb"}, + {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5cd603b575ebceca7da5a3a251e69561bec509e0b46e4993e1cac402b7247b8"}, + {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b47cfad9e9bbbed2339081f4e346c93ecd7ab504299403320bf85f7f85c7d46c"}, + {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8212564d49c50eb4565e502814f694e240c55551a5f1bc841d4fcaabb0a9b8a"}, + {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5f15814a33e42b04e3de432e573aa557f9f0f56458745c2074952f564c50e664"}, + {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db2e408d983b0e61e238cf579c09ef7020560441906ca990fe8412153e3b291f"}, + {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:edfad1d29c73f9b863ebe7082ae9321374ccb10879eeabc84ba3b69f2579d537"}, + {file = "wrapt-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed867c42c268f876097248e05b6117a65bcd1e63b779e916fe2e33cd6fd0d3c3"}, + {file = "wrapt-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:eb1b046be06b0fce7249f1d025cd359b4b80fc1c3e24ad9eca33e0dcdb2e4a35"}, + {file = "wrapt-1.16.0-py3-none-any.whl", hash = "sha256:6906c4100a8fcbf2fa735f6059214bb13b97f75b1a61777fcf6432121ef12ef1"}, + {file = "wrapt-1.16.0.tar.gz", hash = "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d"}, ] [[package]] name = "xlsxwriter" version = "2.0.0" description = "A Python module for creating Excel XLSX files." -category = "main" optional = false python-versions = "*" files = [ @@ -3843,22 +5010,204 @@ files = [ ] [[package]] -name = "zipp" -version = "3.8.1" -description = "Backport of pathlib-compatible object wrapper for zip files" -category = "main" +name = "y-py" +version = "0.6.2" +description = "Python bindings for the Y-CRDT built from yrs (Rust)" +optional = false +python-versions = "*" +files = [ + {file = "y_py-0.6.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:c26bada6cd109095139237a46f50fc4308f861f0d304bc9e70acbc6c4503d158"}, + {file = "y_py-0.6.2-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:bae1b1ad8d2b8cf938a60313f8f7461de609621c5dcae491b6e54975f76f83c5"}, + {file = "y_py-0.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e794e44fa260300b8850246c6371d94014753c73528f97f6ccb42f5e7ce698ae"}, + {file = "y_py-0.6.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b2686d7d8ca31531458a48e08b0344a8eec6c402405446ce7d838e2a7e43355a"}, + {file = "y_py-0.6.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d917f5bc27b85611ceee4eb85f0e4088b0a03b4eed22c472409933a94ee953cf"}, + {file = "y_py-0.6.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8f6071328aad06fdcc0a4acc2dc4839396d645f5916de07584af807eb7c08407"}, + {file = "y_py-0.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:266ec46ab9f9cb40fbb5e649f55c329fc4620fa0b1a8117bdeefe91595e182dc"}, + {file = "y_py-0.6.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ce15a842c2a0bf46180ae136743b561fa276300dd7fa61fe76daf00ec7dc0c2d"}, + {file = "y_py-0.6.2-cp310-none-win32.whl", hash = "sha256:1d5b544e79ace93fdbd0b36ed329c86e346898153ac7ba2ec62bc9b4c6b745c9"}, + {file = "y_py-0.6.2-cp310-none-win_amd64.whl", hash = "sha256:80a827e173372682959a57e6b8cc4f6468b1a4495b4bc7a775ef6ca05ae3e8e8"}, + {file = "y_py-0.6.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:a21148b8ea09a631b752d975f9410ee2a31c0e16796fdc113422a6d244be10e5"}, + {file = "y_py-0.6.2-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:898fede446ca1926b8406bdd711617c2aebba8227ee8ec1f0c2f8568047116f7"}, + {file = "y_py-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce7c20b9395696d3b5425dccf2706d374e61ccf8f3656bff9423093a6df488f5"}, + {file = "y_py-0.6.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a3932f53418b408fa03bd002e6dc573a74075c2c092926dde80657c39aa2e054"}, + {file = "y_py-0.6.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:df35ea436592eb7e30e59c5403ec08ec3a5e7759e270cf226df73c47b3e739f5"}, + {file = "y_py-0.6.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:26cb1307c3ca9e21a3e307ab2c2099677e071ae9c26ec10ddffb3faceddd76b3"}, + {file = "y_py-0.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:863e175ce5585f9ff3eba2aa16626928387e2a576157f02c8eb247a218ecdeae"}, + {file = "y_py-0.6.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:35fcb9def6ce137540fdc0e91b08729677548b9c393c0151a6359fd199da3bd7"}, + {file = "y_py-0.6.2-cp311-none-win32.whl", hash = "sha256:86422c6090f34906c062fd3e4fdfdccf3934f2922021e979573ae315050b4288"}, + {file = "y_py-0.6.2-cp311-none-win_amd64.whl", hash = "sha256:6c2f2831c5733b404d2f2da4bfd02bb4612ae18d0822e14ae79b0b92436b816d"}, + {file = "y_py-0.6.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:7cbefd4f1060f05768227ddf83be126397b1d430b026c64e0eb25d3cf50c5734"}, + {file = "y_py-0.6.2-cp312-cp312-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:032365dfe932bfab8e80937ad6093b4c22e67d63ad880096b5fa8768f8d829ba"}, + {file = "y_py-0.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a70aee572da3994238c974694767365f237fc5949a550bee78a650fe16f83184"}, + {file = "y_py-0.6.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ae80d505aee7b3172cdcc2620ca6e2f85586337371138bb2b71aa377d2c31e9a"}, + {file = "y_py-0.6.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2a497ebe617bec6a420fc47378856caae40ab0652e756f3ed40c5f1fe2a12220"}, + {file = "y_py-0.6.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e8638355ae2f996356f7f281e03a3e3ce31f1259510f9d551465356532e0302c"}, + {file = "y_py-0.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8448da4092265142662bbd3fc46cb8b0796b1e259189c020bc8f738899abd0b5"}, + {file = "y_py-0.6.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:69cfbcbe0a05f43e780e6a198080ba28034bf2bb4804d7d28f71a0379bfd1b19"}, + {file = "y_py-0.6.2-cp37-cp37m-macosx_10_7_x86_64.whl", hash = "sha256:1f798165158b76365a463a4f8aa2e3c2a12eb89b1fc092e7020e93713f2ad4dc"}, + {file = "y_py-0.6.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e92878cc05e844c8da937204bc34c2e6caf66709ce5936802fbfb35f04132892"}, + {file = "y_py-0.6.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9b8822a5c0fd9a8cffcabfcc0cd7326bad537ee614fc3654e413a03137b6da1a"}, + {file = "y_py-0.6.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e13cba03c7af8c8a846c4495875a09d64362cc4caeed495ada5390644411bbe7"}, + {file = "y_py-0.6.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:82f2e5b31678065e7a7fa089ed974af5a4f076673cf4f414219bdadfc3246a21"}, + {file = "y_py-0.6.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1935d12e503780b859d343161a80df65205d23cad7b4f6c3df6e50321e188a3"}, + {file = "y_py-0.6.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bd302c6d46a3be57664571a5f0d4224646804be9890a01d73a0b294f2d3bbff1"}, + {file = "y_py-0.6.2-cp37-none-win32.whl", hash = "sha256:5415083f7f10eac25e1c434c87f07cb9bfa58909a6cad6649166fdad21119fc5"}, + {file = "y_py-0.6.2-cp37-none-win_amd64.whl", hash = "sha256:376c5cc0c177f03267340f36aec23e5eaf19520d41428d87605ca2ca3235d845"}, + {file = "y_py-0.6.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:3c011303eb2b360695d2bd4bd7ca85f42373ae89fcea48e7fa5b8dc6fc254a98"}, + {file = "y_py-0.6.2-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:c08311db17647a47d4898fc6f8d9c1f0e58b927752c894877ff0c38b3db0d6e1"}, + {file = "y_py-0.6.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9b7cafbe946b4cafc1e5709957e6dd5c6259d241d48ed75713ded42a5e8a4663"}, + {file = "y_py-0.6.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3ba99d0bdbd9cabd65f914cd07b4fb2e939ce199b54ae5ace1639ce1edf8e0a2"}, + {file = "y_py-0.6.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dab84c52f64e10adc79011a08673eb80286c159b14e8fb455524bf2994f0cb38"}, + {file = "y_py-0.6.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:72875641a907523d37f4619eb4b303611d17e0a76f2ffc423b62dd1ca67eef41"}, + {file = "y_py-0.6.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c31240e30d5636ded02a54b7280aa129344fe8e964fd63885e85d9a8a83db206"}, + {file = "y_py-0.6.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4c28d977f516d4928f6bc0cd44561f6d0fdd661d76bac7cdc4b73e3c209441d9"}, + {file = "y_py-0.6.2-cp38-none-win32.whl", hash = "sha256:c011997f62d0c3b40a617e61b7faaaf6078e4eeff2e95ce4c45838db537816eb"}, + {file = "y_py-0.6.2-cp38-none-win_amd64.whl", hash = "sha256:ce0ae49879d10610cf3c40f4f376bb3cc425b18d939966ac63a2a9c73eb6f32a"}, + {file = "y_py-0.6.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:47fcc19158150dc4a6ae9a970c5bc12f40b0298a2b7d0c573a510a7b6bead3f3"}, + {file = "y_py-0.6.2-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:2d2b054a1a5f4004967532a4b82c6d1a45421ef2a5b41d35b6a8d41c7142aabe"}, + {file = "y_py-0.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0787e85645bb4986c27e271715bc5ce21bba428a17964e5ec527368ed64669bc"}, + {file = "y_py-0.6.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:17bce637a89f6e75f0013be68becac3e38dc082e7aefaf38935e89215f0aa64a"}, + {file = "y_py-0.6.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:beea5ad9bd9e56aa77a6583b6f4e347d66f1fe7b1a2cb196fff53b7634f9dc84"}, + {file = "y_py-0.6.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d1dca48687f41efd862355e58b0aa31150586219324901dbea2989a506e291d4"}, + {file = "y_py-0.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17edd21eef863d230ea00004ebc6d582cc91d325e7132deb93f0a90eb368c855"}, + {file = "y_py-0.6.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:de9cfafe97c75cd3ea052a24cd4aabf9fb0cfc3c0f9f810f00121cdf123db9e4"}, + {file = "y_py-0.6.2-cp39-none-win32.whl", hash = "sha256:82f5ca62bedbf35aaf5a75d1f53b4457a1d9b6ff033497ca346e2a0cedf13d14"}, + {file = "y_py-0.6.2-cp39-none-win_amd64.whl", hash = "sha256:7227f232f2daf130ba786f6834548f2cfcfa45b7ec4f0d449e72560ac298186c"}, + {file = "y_py-0.6.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0649a41cd3c98e290c16592c082dbe42c7ffec747b596172eebcafb7fd8767b0"}, + {file = "y_py-0.6.2-pp38-pypy38_pp73-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:bf6020560584671e76375b7a0539e0d5388fc70fa183c99dc769895f7ef90233"}, + {file = "y_py-0.6.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cf817a72ffec4295def5c5be615dd8f1e954cdf449d72ebac579ff427951328"}, + {file = "y_py-0.6.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7c7302619fc962e53093ba4a94559281491c045c925e5c4defec5dac358e0568"}, + {file = "y_py-0.6.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0cd6213c3cf2b9eee6f2c9867f198c39124c557f4b3b77d04a73f30fd1277a59"}, + {file = "y_py-0.6.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2b4fac4ea2ce27b86d173ae45765ced7f159120687d4410bb6d0846cbdb170a3"}, + {file = "y_py-0.6.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:932abb560fe739416b50716a72ba6c6c20b219edded4389d1fc93266f3505d4b"}, + {file = "y_py-0.6.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e42258f66ad9f16d9b62e9c9642742982acb1f30b90f5061522048c1cb99814f"}, + {file = "y_py-0.6.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:cfc8381df1f0f873da8969729974f90111cfb61a725ef0a2e0e6215408fe1217"}, + {file = "y_py-0.6.2-pp39-pypy39_pp73-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:613f83713714972886e81d71685403098a83ffdacf616f12344b52bc73705107"}, + {file = "y_py-0.6.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:316e5e1c40259d482883d1926fd33fa558dc87b2bd2ca53ce237a6fe8a34e473"}, + {file = "y_py-0.6.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:015f7f6c1ce8a83d57955d1dc7ddd57cb633ae00576741a4fc9a0f72ed70007d"}, + {file = "y_py-0.6.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ff32548e45e45bf3280ac1d28b3148337a5c6714c28db23aeb0693e33eba257e"}, + {file = "y_py-0.6.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0f2d881f0f8bf5674f8fe4774a438c545501e40fa27320c73be4f22463af4b05"}, + {file = "y_py-0.6.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3bbe2f925cc587545c8d01587b4523177408edd252a32ce6d61b97113fe234d"}, + {file = "y_py-0.6.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8f5c14d25611b263b876e9ada1701415a13c3e9f02ea397224fbe4ca9703992b"}, + {file = "y_py-0.6.2.tar.gz", hash = "sha256:4757a82a50406a0b3a333aa0122019a331bd6f16e49fed67dca423f928b3fd4d"}, +] + +[[package]] +name = "yarl" +version = "1.17.1" +description = "Yet another URL library" +optional = false +python-versions = ">=3.9" +files = [ + {file = "yarl-1.17.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b1794853124e2f663f0ea54efb0340b457f08d40a1cef78edfa086576179c91"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:fbea1751729afe607d84acfd01efd95e3b31db148a181a441984ce9b3d3469da"}, + {file = "yarl-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8ee427208c675f1b6e344a1f89376a9613fc30b52646a04ac0c1f6587c7e46ec"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b74ff4767d3ef47ffe0cd1d89379dc4d828d4873e5528976ced3b44fe5b0a21"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:62a91aefff3d11bf60e5956d340eb507a983a7ec802b19072bb989ce120cd948"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:846dd2e1243407133d3195d2d7e4ceefcaa5f5bf7278f0a9bda00967e6326b04"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3e844be8d536afa129366d9af76ed7cb8dfefec99f5f1c9e4f8ae542279a6dc3"}, + {file = "yarl-1.17.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cc7c92c1baa629cb03ecb0c3d12564f172218fb1739f54bf5f3881844daadc6d"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ae3476e934b9d714aa8000d2e4c01eb2590eee10b9d8cd03e7983ad65dfbfcba"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:c7e177c619342e407415d4f35dec63d2d134d951e24b5166afcdfd1362828e17"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:64cc6e97f14cf8a275d79c5002281f3040c12e2e4220623b5759ea7f9868d6a5"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:84c063af19ef5130084db70ada40ce63a84f6c1ef4d3dbc34e5e8c4febb20822"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:482c122b72e3c5ec98f11457aeb436ae4aecca75de19b3d1de7cf88bc40db82f"}, + {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:380e6c38ef692b8fd5a0f6d1fa8774d81ebc08cfbd624b1bca62a4d4af2f9931"}, + {file = "yarl-1.17.1-cp310-cp310-win32.whl", hash = "sha256:16bca6678a83657dd48df84b51bd56a6c6bd401853aef6d09dc2506a78484c7b"}, + {file = "yarl-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:561c87fea99545ef7d692403c110b2f99dced6dff93056d6e04384ad3bc46243"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:cbad927ea8ed814622305d842c93412cb47bd39a496ed0f96bfd42b922b4a217"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fca4b4307ebe9c3ec77a084da3a9d1999d164693d16492ca2b64594340999988"}, + {file = "yarl-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ff5c6771c7e3511a06555afa317879b7db8d640137ba55d6ab0d0c50425cab75"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5b29beab10211a746f9846baa39275e80034e065460d99eb51e45c9a9495bcca"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a52a1ffdd824fb1835272e125385c32fd8b17fbdefeedcb4d543cc23b332d74"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:58c8e9620eb82a189c6c40cb6b59b4e35b2ee68b1f2afa6597732a2b467d7e8f"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d216e5d9b8749563c7f2c6f7a0831057ec844c68b4c11cb10fc62d4fd373c26d"}, + {file = "yarl-1.17.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:881764d610e3269964fc4bb3c19bb6fce55422828e152b885609ec176b41cf11"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8c79e9d7e3d8a32d4824250a9c6401194fb4c2ad9a0cec8f6a96e09a582c2cc0"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:299f11b44d8d3a588234adbe01112126010bd96d9139c3ba7b3badd9829261c3"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:cc7d768260f4ba4ea01741c1b5fe3d3a6c70eb91c87f4c8761bbcce5181beafe"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:de599af166970d6a61accde358ec9ded821234cbbc8c6413acfec06056b8e860"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:2b24ec55fad43e476905eceaf14f41f6478780b870eda5d08b4d6de9a60b65b4"}, + {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9fb815155aac6bfa8d86184079652c9715c812d506b22cfa369196ef4e99d1b4"}, + {file = "yarl-1.17.1-cp311-cp311-win32.whl", hash = "sha256:7615058aabad54416ddac99ade09a5510cf77039a3b903e94e8922f25ed203d7"}, + {file = "yarl-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:14bc88baa44e1f84164a392827b5defb4fa8e56b93fecac3d15315e7c8e5d8b3"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:327828786da2006085a4d1feb2594de6f6d26f8af48b81eb1ae950c788d97f61"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:cc353841428d56b683a123a813e6a686e07026d6b1c5757970a877195f880c2d"}, + {file = "yarl-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c73df5b6e8fabe2ddb74876fb82d9dd44cbace0ca12e8861ce9155ad3c886139"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bdff5e0995522706c53078f531fb586f56de9c4c81c243865dd5c66c132c3b5"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:06157fb3c58f2736a5e47c8fcbe1afc8b5de6fb28b14d25574af9e62150fcaac"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1654ec814b18be1af2c857aa9000de7a601400bd4c9ca24629b18486c2e35463"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f6595c852ca544aaeeb32d357e62c9c780eac69dcd34e40cae7b55bc4fb1147"}, + {file = "yarl-1.17.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:459e81c2fb920b5f5df744262d1498ec2c8081acdcfe18181da44c50f51312f7"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7e48cdb8226644e2fbd0bdb0a0f87906a3db07087f4de77a1b1b1ccfd9e93685"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:d9b6b28a57feb51605d6ae5e61a9044a31742db557a3b851a74c13bc61de5172"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e594b22688d5747b06e957f1ef822060cb5cb35b493066e33ceac0cf882188b7"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5f236cb5999ccd23a0ab1bd219cfe0ee3e1c1b65aaf6dd3320e972f7ec3a39da"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:a2a64e62c7a0edd07c1c917b0586655f3362d2c2d37d474db1a509efb96fea1c"}, + {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d0eea830b591dbc68e030c86a9569826145df485b2b4554874b07fea1275a199"}, + {file = "yarl-1.17.1-cp312-cp312-win32.whl", hash = "sha256:46ddf6e0b975cd680eb83318aa1d321cb2bf8d288d50f1754526230fcf59ba96"}, + {file = "yarl-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:117ed8b3732528a1e41af3aa6d4e08483c2f0f2e3d3d7dca7cf538b3516d93df"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:5d1d42556b063d579cae59e37a38c61f4402b47d70c29f0ef15cee1acaa64488"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c0167540094838ee9093ef6cc2c69d0074bbf84a432b4995835e8e5a0d984374"}, + {file = "yarl-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2f0a6423295a0d282d00e8701fe763eeefba8037e984ad5de44aa349002562ac"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5b078134f48552c4d9527db2f7da0b5359abd49393cdf9794017baec7506170"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d401f07261dc5aa36c2e4efc308548f6ae943bfff20fcadb0a07517a26b196d8"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5f1ac7359e17efe0b6e5fec21de34145caef22b260e978336f325d5c84e6938"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f63d176a81555984e91f2c84c2a574a61cab7111cc907e176f0f01538e9ff6e"}, + {file = "yarl-1.17.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9e275792097c9f7e80741c36de3b61917aebecc08a67ae62899b074566ff8556"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:81713b70bea5c1386dc2f32a8f0dab4148a2928c7495c808c541ee0aae614d67"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:aa46dce75078fceaf7cecac5817422febb4355fbdda440db55206e3bd288cfb8"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:1ce36ded585f45b1e9bb36d0ae94765c6608b43bd2e7f5f88079f7a85c61a4d3"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:2d374d70fdc36f5863b84e54775452f68639bc862918602d028f89310a034ab0"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:2d9f0606baaec5dd54cb99667fcf85183a7477f3766fbddbe3f385e7fc253299"}, + {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b0341e6d9a0c0e3cdc65857ef518bb05b410dbd70d749a0d33ac0f39e81a4258"}, + {file = "yarl-1.17.1-cp313-cp313-win32.whl", hash = "sha256:2e7ba4c9377e48fb7b20dedbd473cbcbc13e72e1826917c185157a137dac9df2"}, + {file = "yarl-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:949681f68e0e3c25377462be4b658500e85ca24323d9619fdc41f68d46a1ffda"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8994b29c462de9a8fce2d591028b986dbbe1b32f3ad600b2d3e1c482c93abad6"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f9cbfbc5faca235fbdf531b93aa0f9f005ec7d267d9d738761a4d42b744ea159"}, + {file = "yarl-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b40d1bf6e6f74f7c0a567a9e5e778bbd4699d1d3d2c0fe46f4b717eef9e96b95"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5efe0661b9fcd6246f27957f6ae1c0eb29bc60552820f01e970b4996e016004"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b5c4804e4039f487e942c13381e6c27b4b4e66066d94ef1fae3f6ba8b953f383"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5d6a6c9602fd4598fa07e0389e19fe199ae96449008d8304bf5d47cb745462e"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f4c9156c4d1eb490fe374fb294deeb7bc7eaccda50e23775b2354b6a6739934"}, + {file = "yarl-1.17.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6324274b4e0e2fa1b3eccb25997b1c9ed134ff61d296448ab8269f5ac068c4c"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d8a8b74d843c2638f3864a17d97a4acda58e40d3e44b6303b8cc3d3c44ae2d29"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:7fac95714b09da9278a0b52e492466f773cfe37651cf467a83a1b659be24bf71"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:c180ac742a083e109c1a18151f4dd8675f32679985a1c750d2ff806796165b55"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:578d00c9b7fccfa1745a44f4eddfdc99d723d157dad26764538fbdda37209857"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:1a3b91c44efa29e6c8ef8a9a2b583347998e2ba52c5d8280dbd5919c02dfc3b5"}, + {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a7ac5b4984c468ce4f4a553df281450df0a34aefae02e58d77a0847be8d1e11f"}, + {file = "yarl-1.17.1-cp39-cp39-win32.whl", hash = "sha256:7294e38f9aa2e9f05f765b28ffdc5d81378508ce6dadbe93f6d464a8c9594473"}, + {file = "yarl-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:eb6dce402734575e1a8cc0bb1509afca508a400a57ce13d306ea2c663bad1138"}, + {file = "yarl-1.17.1-py3-none-any.whl", hash = "sha256:f1790a4b1e8e8e028c391175433b9c8122c39b46e1663228158e61e6f915bf06"}, + {file = "yarl-1.17.1.tar.gz", hash = "sha256:067a63fcfda82da6b198fa73079b1ca40b7c9b7994995b6ee38acda728b64d47"}, +] + +[package.dependencies] +idna = ">=2.0" +multidict = ">=4.0" +propcache = ">=0.2.0" + +[[package]] +name = "ypy-websocket" +version = "0.8.4" +description = "WebSocket connector for Ypy" optional = false python-versions = ">=3.7" files = [ - {file = "zipp-3.8.1-py3-none-any.whl", hash = "sha256:47c40d7fe183a6f21403a199b3e4192cca5774656965b0a4988ad2f8feb5f009"}, - {file = "zipp-3.8.1.tar.gz", hash = "sha256:05b45f1ee8f807d0cc928485ca40a07cb491cf092ff587c0df9cb1fd154848d2"}, + {file = "ypy_websocket-0.8.4-py3-none-any.whl", hash = "sha256:b1ba0dfcc9762f0ca168d2378062d3ca1299d39076b0f145d961359121042be5"}, + {file = "ypy_websocket-0.8.4.tar.gz", hash = "sha256:43a001473f5c8abcf182f603049cf305cbc855ad8deaa9dfa0f3b5a7cea9d0ff"}, ] +[package.dependencies] +aiofiles = ">=22.1.0,<23" +aiosqlite = ">=0.17.0,<1" +y-py = ">=0.6.0,<0.7.0" + [package.extras] -docs = ["jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx"] -testing = ["func-timeout", "jaraco.itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-flake8", "pytest-mypy (>=0.9.1)"] +test = ["mypy", "pre-commit", "pytest", "pytest-asyncio", "websockets (>=10.0)"] [metadata] lock-version = "2.0" -python-versions = "^3.8" -content-hash = "00d03bea53e8909beacb8235f35a9c464cc1413e359ace11d05c2a8cffd3976b" +python-versions = "^3.10" +content-hash = "40f680ca4ffebd8562d01cc7d7b0015724428f551959f305771e23d1adb43ede" diff --git a/data/data-pipeline/pyproject.toml b/data/data-pipeline/pyproject.toml index 8ea77ef3..bbb9adc1 100644 --- a/data/data-pipeline/pyproject.toml +++ b/data/data-pipeline/pyproject.toml @@ -17,7 +17,7 @@ packages = [ [tool.poetry.dependencies] CensusData = "^1.13" -certifi = "^2022.12.07" # explicit callout due to https://pyup.io/v/52365/f17/ +certifi = ">= 2024.07.04" # Due to https://data.safetycli.com/v/72083/f17 click = "8.0.4" # pinning for now per https://github.com/psf/black/issues/2964 dynaconf = "^3.1.4" geopandas = "^0.11.0" @@ -29,19 +29,20 @@ marshmallow-dataclass = "^8.5.3" marshmallow-enum = "^1.5.1" matplotlib = "^3.4.2" numpy = "^1.22.1" -pandas = "^1.2.5" +pandas = "~1.4.3" pylint = "^2.11.1" -pillow = "9.3.0" -python = "^3.8" +pillow = "9.3.0" # Newer versions break tile generation +python = "^3.10" pypandoc = "^1.6.3" PyYAML = "^6.0" requests = "^2.25.1" -tqdm = "4.62.0" +tqdm = "^4.66.3" types-requests = "^2.25.0" us = "^2.0.2" xlsxwriter = "^2.0.0" pydantic = "^1.9.0" Rtree = "^1.0.0" +fiona = "~1.8.21" [tool.poetry.dev-dependencies] black = {version = "^21.6b0", allow-prereleases = true} @@ -59,7 +60,7 @@ pandas-vet = "^0.2.2" pytest-snapshot = "^0.8.1" seaborn = "^0.11.2" papermill = "^2.3.4" -jupyterlab = "3.4.4" +jupyterlab = "^3.6.7" [build-system] build-backend = "poetry.core.masonry.api" diff --git a/data/data-pipeline/tox.ini b/data/data-pipeline/tox.ini index 558b5769..ebf462eb 100644 --- a/data/data-pipeline/tox.ini +++ b/data/data-pipeline/tox.ini @@ -1,7 +1,7 @@ [tox] # required because we use pyproject.toml isolated_build = true -envlist = py38, py39, lint, checkdeps, pytest +envlist = py310, lint, checkdeps, pytest # only checks python versions installed locally skip_missing_interpreters = true @@ -16,7 +16,9 @@ commands = black data_pipeline # checks the dependencies for security vulnerabilities and open source licenses allowlist_externals = bash commands = pip install -U wheel - safety check --ignore 51457 --ignore 44715 # known issue: https://github.com/pyupio/safety/issues/364 + # known issue: https://github.com/pyupio/safety/issues/364 + # jinja2 false positive for our use: https://data.safetycli.com/v/70612/f17 + safety check --ignore 51457 --ignore 44715 --ignore 70612 bash scripts/run-liccheck.sh [testenv:pytest] From 0da80c90d8e752eb2ab7302d285844f1ac78c098 Mon Sep 17 00:00:00 2001 From: Carlos Felix <63804190+carlosfelix2@users.noreply.github.com> Date: Wed, 13 Nov 2024 15:58:47 -0500 Subject: [PATCH 03/28] Territories in the 65th percentile of low income are added is disadvantaged --- .../data_pipeline/application.py | 171 +++++++----------- .../data_pipeline/etl/score/etl_score.py | 1 + .../data_pipeline/score/field_names.py | 7 + .../data_pipeline/score/score_narwhal.py | 51 +++++- .../tests/score/test_score_narwhal_methods.py | 53 +++++- .../data/test_mark_poverty_flag.csv | 8 + .../data/test_mark_territory_dacs.csv | 9 + data/data-pipeline/pyproject.toml | 2 +- 8 files changed, 177 insertions(+), 125 deletions(-) create mode 100644 data/data-pipeline/data_pipeline/tests/score/test_utils/data/test_mark_poverty_flag.csv create mode 100644 data/data-pipeline/data_pipeline/tests/score/test_utils/data/test_mark_territory_dacs.csv diff --git a/data/data-pipeline/data_pipeline/application.py b/data/data-pipeline/data_pipeline/application.py index cde48ae1..88c2505b 100644 --- a/data/data-pipeline/data_pipeline/application.py +++ b/data/data-pipeline/data_pipeline/application.py @@ -33,6 +33,30 @@ dataset_cli_help = "Grab the data from either 'local' for local access or 'aws' LOG_LINE_WIDTH = 60 +use_cache_option = click.option( + "-u", + "--use-cache", + is_flag=True, + default=False, + help="Check if data source has been downloaded already, and if it has, use the cached version of the data source.", +) + +dataset_option = click.option( + "-d", + "--dataset", + required=False, + type=str, + help=dataset_cli_help, +) + +data_source_option = click.option( + "-s", + "--data-source", + default="local", + required=False, + type=str, + help=dataset_cli_help, +) @click.group() def cli(): @@ -51,7 +75,6 @@ def census_cleanup(): census_reset(data_path) log_goodbye() - sys.exit() @cli.command(help="Clean up all data folders") @@ -70,7 +93,6 @@ def data_cleanup(): geo_score_folder_cleanup() log_goodbye() - sys.exit() @cli.command( @@ -82,13 +104,7 @@ def data_cleanup(): is_flag=True, help="Upload to AWS S3 a zipped archive of the census data.", ) -@click.option( - "-u", - "--use-cache", - is_flag=True, - default=False, - help="Check if data source has been downloaded already, and if it has, use the cached version of the data source.", -) +@use_cache_option def census_data_download(zip_compress, use_cache): """CLI command to download all census shape files from the Census FTP and extract the geojson to generate national and by state Census Block Group CSVs""" @@ -105,18 +121,10 @@ def census_data_download(zip_compress, use_cache): zip_census_data() log_goodbye() - sys.exit() @cli.command(help="Retrieve census data from source") -@click.option( - "-s", - "--data-source", - default="local", - required=False, - type=str, - help=dataset_cli_help, -) +@data_source_option def pull_census_data(data_source: str): log_title("Pull Census Data") @@ -126,26 +134,13 @@ def pull_census_data(data_source: str): check_census_data_source(data_path, data_source) log_goodbye() - sys.exit() @cli.command( help="Run all ETL processes or a specific one", ) -@click.option( - "-d", - "--dataset", - required=False, - type=str, - help=dataset_cli_help, -) -@click.option( - "-u", - "--use-cache", - is_flag=True, - default=False, - help="Check if data source has been downloaded already, and if it has, use the cached version of the data source.", -) +@dataset_option +@use_cache_option def etl_run(dataset: str, use_cache: bool): """Run a specific or all ETL processes @@ -161,7 +156,6 @@ def etl_run(dataset: str, use_cache: bool): etl_runner(dataset, use_cache) log_goodbye() - sys.exit() @cli.command( @@ -178,19 +172,12 @@ def score_run(): score_generate() log_goodbye() - sys.exit() @cli.command( help="Run ETL + Score Generation", ) -@click.option( - "-u", - "--use-cache", - is_flag=True, - default=False, - help="Check if data source has been downloaded already, and if it has, use the cached version of the data source.", -) +@use_cache_option def score_full_run(use_cache: bool): """CLI command to run ETL and generate the score in one command""" log_title("Score Full Run", "Run ETL and Generate Score (no tiles)") @@ -207,20 +194,12 @@ def score_full_run(use_cache: bool): score_generate() log_goodbye() - sys.exit() @cli.command( help="Run etl_score_post to create score csv, tile csv, and downloadable zip" ) -@click.option( - "-s", - "--data-source", - default="local", - required=False, - type=str, - help=dataset_cli_help, -) +@data_source_option def generate_score_post(data_source: str): """CLI command to generate score, tile, and downloadable files @@ -244,18 +223,10 @@ def generate_score_post(data_source: str): score_post(data_source) log_goodbye() - sys.exit() @cli.command(help="Generate GeoJSON files with scores baked in") -@click.option( - "-s", - "--data-source", - default="local", - required=False, - type=str, - help=dataset_cli_help, -) +@data_source_option def geo_score(data_source: str): """CLI command to combine score with GeoJSON data and generate low and high files @@ -280,7 +251,6 @@ def geo_score(data_source: str): score_geo(data_source=data_source) log_goodbye() - sys.exit() @cli.command( @@ -304,7 +274,6 @@ def generate_map_tiles(generate_tribal_layer): generate_tiles(data_path, generate_tribal_layer) log_goodbye() - sys.exit() @cli.command( @@ -316,21 +285,8 @@ def generate_map_tiles(generate_tribal_layer): is_flag=True, help="Check if data run has been run before, and don't run it if so.", ) -@click.option( - "-s", - "--data-source", - default="local", - required=False, - type=str, - help=dataset_cli_help, -) -@click.option( - "-u", - "--use-cache", - is_flag=True, - default=False, - help="Check if data source has been downloaded already, and if it has, use the cached version of the data source.", -) +@data_source_option +@use_cache_option def data_full_run(check: bool, data_source: str, use_cache: bool): """CLI command to run ETL, score, JSON combine and generate tiles in one command @@ -388,19 +344,12 @@ def data_full_run(check: bool, data_source: str, use_cache: bool): call(cmd, shell=True) log_goodbye() - sys.exit() @cli.command( help="Print data sources for all ETL processes (or a specific one)", ) -@click.option( - "-d", - "--dataset", - required=False, - type=str, - help=dataset_cli_help, -) +@dataset_option def print_data_sources(dataset: str): """Print data sources for all ETL processes (or a specific one) @@ -421,26 +370,13 @@ def print_data_sources(dataset: str): log_info(s) log_goodbye() - sys.exit() @cli.command( help="Fetch data sources for all ETL processes (or a specific one)", ) -@click.option( - "-d", - "--dataset", - required=False, - type=str, - help=dataset_cli_help, -) -@click.option( - "-u", - "--use-cache", - is_flag=True, - default=False, - help="Check if data source has been downloaded already, and if it has, use the cached version of the data source.", -) +@dataset_option +@use_cache_option def extract_data_sources(dataset: str, use_cache: bool): """Extract and cache data source(s) for all ETL processes (or a specific one) @@ -457,19 +393,12 @@ def extract_data_sources(dataset: str, use_cache: bool): extract_ds(dataset, use_cache) log_goodbye() - sys.exit() @cli.command( help="Clear data source cache for all ETL processes (or a specific one)", ) -@click.option( - "-d", - "--dataset", - required=False, - type=str, - help=dataset_cli_help, -) +@dataset_option def clear_data_source_cache(dataset: str): """Clear data source(s) cache for all ETL processes (or a specific one) @@ -485,8 +414,32 @@ def clear_data_source_cache(dataset: str): clear_ds_cache(dataset) log_goodbye() - sys.exit() +@cli.command( + help="Generate scoring and tiles", +) +@click.pass_context +def full_post_etl(ctx): + """Generate scoring and tiles""" + ctx.invoke(score_run) + ctx.invoke(generate_score_post, data_source=None) + ctx.invoke(geo_score, data_source=None) + ctx.invoke(generate_map_tiles, generate_tribal_layer=False) + + +@cli.command( + help="Run all downloads, extracts, and generate scores and tiles", +) +@use_cache_option +@click.pass_context +def full_run(ctx, use_cache): + """Run all downloads, ETLs, and generate scores and tiles""" + if not use_cache: + ctx.invoke(data_cleanup) + ctx.invoke(census_data_download, zip_compress=False, use_cache=use_cache) + ctx.invoke(extract_data_sources, dataset=None, use_cache=use_cache) + ctx.invoke(etl_run, dataset=None, use_cache=use_cache) + ctx.invoke(full_post_etl) def log_title(title: str, subtitle: str = None): """Logs a title in our fancy title format""" diff --git a/data/data-pipeline/data_pipeline/etl/score/etl_score.py b/data/data-pipeline/data_pipeline/etl/score/etl_score.py index 0314512b..887d6189 100644 --- a/data/data-pipeline/data_pipeline/etl/score/etl_score.py +++ b/data/data-pipeline/data_pipeline/etl/score/etl_score.py @@ -472,6 +472,7 @@ class ScoreETL(ExtractTransformLoad): field_names.EXPECTED_POPULATION_LOSS_RATE_FIELD, field_names.CENSUS_DECENNIAL_HIGH_SCHOOL_ED_FIELD_2009, field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_100_FPL_FIELD_2009, + field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_200_FPL_FIELD_2009, field_names.CENSUS_DECENNIAL_UNEMPLOYMENT_FIELD_2009, field_names.CENSUS_UNEMPLOYMENT_FIELD_2010, field_names.CENSUS_POVERTY_LESS_THAN_100_FPL_FIELD_2010, diff --git a/data/data-pipeline/data_pipeline/score/field_names.py b/data/data-pipeline/data_pipeline/score/field_names.py index aed44c48..773a88aa 100644 --- a/data/data-pipeline/data_pipeline/score/field_names.py +++ b/data/data-pipeline/data_pipeline/score/field_names.py @@ -187,6 +187,9 @@ CENSUS_DECENNIAL_MEDIAN_INCOME_2009 = "Median household income in 2009 ($)" CENSUS_DECENNIAL_POVERTY_LESS_THAN_100_FPL_FIELD_2009 = ( "Percentage households below 100% of federal poverty line in 2009" ) +CENSUS_DECENNIAL_POVERTY_LESS_THAN_200_FPL_FIELD_2009 = ( + "Percentage households below 200% of federal poverty line in 2009" +) CENSUS_DECENNIAL_HIGH_SCHOOL_ED_FIELD_2009 = "Percent individuals age 25 or over with less than high school degree in 2009" CENSUS_DECENNIAL_UNEMPLOYMENT_FIELD_2009 = "Unemployment (percent) in 2009" CENSUS_DECENNIAL_TOTAL_POPULATION_FIELD_2009 = "Total population in 2009" @@ -226,6 +229,10 @@ COMBINED_POVERTY_LESS_THAN_100_FPL_FIELD_2010 = ( "Percentage households below 100% of federal poverty line in 2009 (island areas) " "and 2010 (states and PR)" ) +COMBINED_POVERTY_LESS_THAN_200_FPL_FIELD_2010 = ( + "Percentage households below 200% of federal poverty line in 2009 (island areas) " + "and 2010 (states and PR)" +) # Urban Rural Map URBAN_HEURISTIC_FIELD = "Urban Heuristic Flag" diff --git a/data/data-pipeline/data_pipeline/score/score_narwhal.py b/data/data-pipeline/data_pipeline/score/score_narwhal.py index 88473ca5..cfdab639 100644 --- a/data/data-pipeline/data_pipeline/score/score_narwhal.py +++ b/data/data-pipeline/data_pipeline/score/score_narwhal.py @@ -1013,6 +1013,47 @@ class ScoreNarwhal(Score): self.df[field_names.SCORE_N_COMMUNITIES], ) + def _mark_territory_dacs(self) -> None: + """Territory tracts that are flagged as low income are Score N communities. + """ + self.df[field_names.SCORE_N_COMMUNITIES] = np.where( + self.df[field_names.GEOID_TRACT_FIELD] + .str.startswith(tuple(constants.TILES_ISLAND_AREA_FIPS_CODES)) & + self.df[field_names.FPL_200_SERIES_IMPUTED_AND_ADJUSTED], + True, + self.df[field_names.SCORE_N_COMMUNITIES], + ) + + def _mark_poverty_flag(self) -> None: + """Combine poverty less than 200% for territories and update the income flag.""" + # First we set the low income flag for non-territories by themselves, this + # way we don't change the original outcome if we include territories. + self.df[field_names.FPL_200_SERIES_IMPUTED_AND_ADJUSTED] = ( + self.df[ + # UPDATE: Pull the imputed poverty statistic + field_names.POVERTY_LESS_THAN_200_FPL_IMPUTED_FIELD + + field_names.PERCENTILE_FIELD_SUFFIX + ] + >= self.LOW_INCOME_THRESHOLD + ) + + # Now we set the low income flag only for territories, but we need to rank them + # with all other tracts. + ( + self.df, + island_areas_poverty_200_criteria_field_name, + ) = self._combine_island_areas_with_states_and_set_thresholds( + df=self.df, + column_from_island_areas=field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_200_FPL_FIELD_2009, + column_from_decennial_census=field_names.POVERTY_LESS_THAN_200_FPL_IMPUTED_FIELD, + combined_column_name=field_names.COMBINED_POVERTY_LESS_THAN_200_FPL_FIELD_2010, + threshold_cutoff_for_island_areas=self.LOW_INCOME_THRESHOLD, + ) + self.df.loc[self.df[field_names.GEOID_TRACT_FIELD].str.startswith(tuple(constants.TILES_ISLAND_AREA_FIPS_CODES)), + field_names.FPL_200_SERIES_IMPUTED_AND_ADJUSTED] = ( + self.df[island_areas_poverty_200_criteria_field_name] >= self.LOW_INCOME_THRESHOLD + ) + def _get_percent_of_tract_that_is_dac(self) -> float: """Per the October 7th compromise (#1988), tracts can be partially DACs if some portion of the tract is tribal land. @@ -1034,14 +1075,7 @@ class ScoreNarwhal(Score): logger.debug("Adding Score Narhwal") self.df[field_names.THRESHOLD_COUNT] = 0 - self.df[field_names.FPL_200_SERIES_IMPUTED_AND_ADJUSTED] = ( - self.df[ - # UPDATE: Pull the imputed poverty statistic - field_names.POVERTY_LESS_THAN_200_FPL_IMPUTED_FIELD - + field_names.PERCENTILE_FIELD_SUFFIX - ] - >= self.LOW_INCOME_THRESHOLD - ) + self._mark_poverty_flag() self.df[field_names.N_CLIMATE] = self._climate_factor() self.df[field_names.N_ENERGY] = self._energy_factor() @@ -1065,6 +1099,7 @@ class ScoreNarwhal(Score): self.df[field_names.CATEGORY_COUNT] = self.df[factors].sum(axis=1) self.df[field_names.SCORE_N_COMMUNITIES] = self.df[factors].any(axis=1) self._mark_tribal_dacs() + self._mark_territory_dacs() self.df[ field_names.SCORE_N_COMMUNITIES + field_names.PERCENTILE_FIELD_SUFFIX diff --git a/data/data-pipeline/data_pipeline/tests/score/test_score_narwhal_methods.py b/data/data-pipeline/data_pipeline/tests/score/test_score_narwhal_methods.py index 3132c51a..a559e46c 100644 --- a/data/data-pipeline/data_pipeline/tests/score/test_score_narwhal_methods.py +++ b/data/data-pipeline/data_pipeline/tests/score/test_score_narwhal_methods.py @@ -2,22 +2,20 @@ import pandas as pd import pytest from data_pipeline.config import settings +from data_pipeline.etl.score import constants from data_pipeline.etl.score.etl_score import ScoreETL from data_pipeline.score import field_names +from data_pipeline.score.score_narwhal import ScoreNarwhal from data_pipeline.utils import get_module_logger + logger = get_module_logger(__name__) +TEST_DATA_FOLDER = settings.APP_ROOT / "tests" / "score" / "test_utils" / "data" @pytest.fixture def toy_score_df(scope="module"): - return pd.read_csv( - settings.APP_ROOT - / "tests" - / "score" - / "test_utils" - / "data" - / "test_drop_tracts_from_percentile.csv", + return pd.read_csv(TEST_DATA_FOLDER / "test_drop_tracts_from_percentile.csv", dtype={field_names.GEOID_TRACT_FIELD: str}, ) @@ -83,3 +81,44 @@ def test_drop_all_tracts(toy_score_df): toy_score_df, drop_tracts=toy_score_df[field_names.GEOID_TRACT_FIELD].to_list(), ), "Percentile in score fails when we drop all tracts" + + +def test_mark_territory_dacs(): + test_data = pd.read_csv(TEST_DATA_FOLDER / "test_mark_territory_dacs.csv", + dtype={field_names.GEOID_TRACT_FIELD: str}, + ) + # Sanity check on the input data + assert not test_data[field_names.SCORE_N_COMMUNITIES].all() + + scorer = ScoreNarwhal(test_data) + scorer._mark_territory_dacs() + territory_filter = test_data[field_names.GEOID_TRACT_FIELD].str.startswith(tuple(constants.TILES_ISLAND_AREA_FIPS_CODES)) + # Check territories are set to true + expected_new_dacs_filter = ( + test_data[field_names.GEOID_TRACT_FIELD].isin(['60050951100', '66010951100', '69110001101', '78010990000']) + ) + assert test_data.loc[expected_new_dacs_filter, field_names.SCORE_N_COMMUNITIES].all() + # Non-territories are still false + assert not test_data.loc[~expected_new_dacs_filter, field_names.SCORE_N_COMMUNITIES].all() + + +def test_mark_poverty_flag(): + test_data = pd.read_csv(TEST_DATA_FOLDER / "test_mark_poverty_flag.csv", + dtype={field_names.GEOID_TRACT_FIELD: str}, + ) + # Sanity check on the input data + assert not test_data[field_names.FPL_200_SERIES_IMPUTED_AND_ADJUSTED].all() + + scorer = ScoreNarwhal(test_data) + scorer._mark_poverty_flag() + expected_low_income_filter = ( + test_data[field_names.GEOID_TRACT_FIELD].isin(['36087011302', '66010951100', '78010990000']) + ) + # Three tracts are set to true + assert ( + test_data[expected_low_income_filter][field_names.FPL_200_SERIES_IMPUTED_AND_ADJUSTED].all() + ) + # Everything else is false + assert ( + not test_data[~expected_low_income_filter][field_names.FPL_200_SERIES_IMPUTED_AND_ADJUSTED].all() + ) diff --git a/data/data-pipeline/data_pipeline/tests/score/test_utils/data/test_mark_poverty_flag.csv b/data/data-pipeline/data_pipeline/tests/score/test_utils/data/test_mark_poverty_flag.csv new file mode 100644 index 00000000..00ca70fd --- /dev/null +++ b/data/data-pipeline/data_pipeline/tests/score/test_utils/data/test_mark_poverty_flag.csv @@ -0,0 +1,8 @@ +GEOID10_TRACT,Percentage households below 200% of federal poverty line in 2009,"Percent of individuals below 200% Federal Poverty Line, imputed and adjusted","Percent of individuals below 200% Federal Poverty Line, imputed and adjusted (percentile)",Is low income (imputed and adjusted)? +01071950300,,0.1,0.1,False +36087011302,,0.7,0.7,False +72119130701,,0.5,0.5,False +60050951100,0.1,,,False +66010951100,0.7,,,False +69110001100,0.5,,,False +78010990000,0.9,,,False \ No newline at end of file diff --git a/data/data-pipeline/data_pipeline/tests/score/test_utils/data/test_mark_territory_dacs.csv b/data/data-pipeline/data_pipeline/tests/score/test_utils/data/test_mark_territory_dacs.csv new file mode 100644 index 00000000..84992e2a --- /dev/null +++ b/data/data-pipeline/data_pipeline/tests/score/test_utils/data/test_mark_territory_dacs.csv @@ -0,0 +1,9 @@ +GEOID10_TRACT,Is low income (imputed and adjusted)?,Definition N (communities) +01071950300,True,False +36087011302,False,False +72119130701,True,False +60050951100,True,False +66010951100,True,False +69110001100,False,False +69110001101,True,False +78010990000,True,False \ No newline at end of file diff --git a/data/data-pipeline/pyproject.toml b/data/data-pipeline/pyproject.toml index bbb9adc1..45403257 100644 --- a/data/data-pipeline/pyproject.toml +++ b/data/data-pipeline/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "justice40-data-pipeline" -version = "0.1.0" +version = "1.0.1" description = "ETL, Score and Map Generation of Justice 40 Tool" authors = ["Justice40 Engineering "] keywords = ["justice40", "environmental_justice", "python", "etl"] From 3e087a37a4db4910f7953ca13c28f7c9212b1e8c Mon Sep 17 00:00:00 2001 From: Carlos Felix <63804190+carlosfelix2@users.noreply.github.com> Date: Tue, 19 Nov 2024 15:01:27 -0500 Subject: [PATCH 04/28] Fix linter and dependency issues --- .../data_pipeline/application.py | 3 + .../data_pipeline/etl/downloader.py | 2 + .../etl/sources/census_acs/etl_imputations.py | 1 + .../data_pipeline/score/score_narwhal.py | 21 +- .../tests/score/test_score_narwhal_methods.py | 40 +- data/data-pipeline/poetry.lock | 1273 ++++++++--------- data/data-pipeline/pyproject.toml | 9 +- 7 files changed, 619 insertions(+), 730 deletions(-) diff --git a/data/data-pipeline/data_pipeline/application.py b/data/data-pipeline/data_pipeline/application.py index 88c2505b..66323542 100644 --- a/data/data-pipeline/data_pipeline/application.py +++ b/data/data-pipeline/data_pipeline/application.py @@ -58,6 +58,7 @@ data_source_option = click.option( help=dataset_cli_help, ) + @click.group() def cli(): """Defines a click group for the commands below""" @@ -415,6 +416,7 @@ def clear_data_source_cache(dataset: str): log_goodbye() + @cli.command( help="Generate scoring and tiles", ) @@ -441,6 +443,7 @@ def full_run(ctx, use_cache): ctx.invoke(etl_run, dataset=None, use_cache=use_cache) ctx.invoke(full_post_etl) + def log_title(title: str, subtitle: str = None): """Logs a title in our fancy title format""" logger.info("-" * LOG_LINE_WIDTH) diff --git a/data/data-pipeline/data_pipeline/etl/downloader.py b/data/data-pipeline/data_pipeline/etl/downloader.py index 55a97f1b..fd0fec50 100644 --- a/data/data-pipeline/data_pipeline/etl/downloader.py +++ b/data/data-pipeline/data_pipeline/etl/downloader.py @@ -10,6 +10,7 @@ from data_pipeline.utils import get_module_logger logger = get_module_logger(__name__) + class Downloader: """A simple class to encapsulate the download capabilities of the application""" @@ -44,6 +45,7 @@ class Downloader: file_contents = response.content logger.debug("Downloaded.") else: + # pylint: disable-next=broad-exception-raised raise Exception( f"HTTP response {response.status_code} from url {file_url}. Info: {response.content}" ) diff --git a/data/data-pipeline/data_pipeline/etl/sources/census_acs/etl_imputations.py b/data/data-pipeline/data_pipeline/etl/sources/census_acs/etl_imputations.py index ad0514ff..4fcf0d9f 100644 --- a/data/data-pipeline/data_pipeline/etl/sources/census_acs/etl_imputations.py +++ b/data/data-pipeline/data_pipeline/etl/sources/census_acs/etl_imputations.py @@ -39,6 +39,7 @@ def _choose_best_mask( for mask in masks_in_priority_order: if any(geo_df[mask][column_to_impute].notna()): return mask + # pylint: disable-next=broad-exception-raised raise Exception("No mask found") diff --git a/data/data-pipeline/data_pipeline/score/score_narwhal.py b/data/data-pipeline/data_pipeline/score/score_narwhal.py index cfdab639..18ff8676 100644 --- a/data/data-pipeline/data_pipeline/score/score_narwhal.py +++ b/data/data-pipeline/data_pipeline/score/score_narwhal.py @@ -1014,12 +1014,12 @@ class ScoreNarwhal(Score): ) def _mark_territory_dacs(self) -> None: - """Territory tracts that are flagged as low income are Score N communities. - """ + """Territory tracts that are flagged as low income are Score N communities.""" self.df[field_names.SCORE_N_COMMUNITIES] = np.where( - self.df[field_names.GEOID_TRACT_FIELD] - .str.startswith(tuple(constants.TILES_ISLAND_AREA_FIPS_CODES)) & - self.df[field_names.FPL_200_SERIES_IMPUTED_AND_ADJUSTED], + self.df[field_names.GEOID_TRACT_FIELD].str.startswith( + tuple(constants.TILES_ISLAND_AREA_FIPS_CODES) + ) + & self.df[field_names.FPL_200_SERIES_IMPUTED_AND_ADJUSTED], True, self.df[field_names.SCORE_N_COMMUNITIES], ) @@ -1049,9 +1049,14 @@ class ScoreNarwhal(Score): combined_column_name=field_names.COMBINED_POVERTY_LESS_THAN_200_FPL_FIELD_2010, threshold_cutoff_for_island_areas=self.LOW_INCOME_THRESHOLD, ) - self.df.loc[self.df[field_names.GEOID_TRACT_FIELD].str.startswith(tuple(constants.TILES_ISLAND_AREA_FIPS_CODES)), - field_names.FPL_200_SERIES_IMPUTED_AND_ADJUSTED] = ( - self.df[island_areas_poverty_200_criteria_field_name] >= self.LOW_INCOME_THRESHOLD + self.df.loc[ + self.df[field_names.GEOID_TRACT_FIELD].str.startswith( + tuple(constants.TILES_ISLAND_AREA_FIPS_CODES) + ), + field_names.FPL_200_SERIES_IMPUTED_AND_ADJUSTED, + ] = ( + self.df[island_areas_poverty_200_criteria_field_name] + >= self.LOW_INCOME_THRESHOLD ) def _get_percent_of_tract_that_is_dac(self) -> float: diff --git a/data/data-pipeline/data_pipeline/tests/score/test_score_narwhal_methods.py b/data/data-pipeline/data_pipeline/tests/score/test_score_narwhal_methods.py index a559e46c..4b8fe471 100644 --- a/data/data-pipeline/data_pipeline/tests/score/test_score_narwhal_methods.py +++ b/data/data-pipeline/data_pipeline/tests/score/test_score_narwhal_methods.py @@ -2,7 +2,6 @@ import pandas as pd import pytest from data_pipeline.config import settings -from data_pipeline.etl.score import constants from data_pipeline.etl.score.etl_score import ScoreETL from data_pipeline.score import field_names from data_pipeline.score.score_narwhal import ScoreNarwhal @@ -13,9 +12,11 @@ logger = get_module_logger(__name__) TEST_DATA_FOLDER = settings.APP_ROOT / "tests" / "score" / "test_utils" / "data" + @pytest.fixture def toy_score_df(scope="module"): - return pd.read_csv(TEST_DATA_FOLDER / "test_drop_tracts_from_percentile.csv", + return pd.read_csv( + TEST_DATA_FOLDER / "test_drop_tracts_from_percentile.csv", dtype={field_names.GEOID_TRACT_FIELD: str}, ) @@ -84,7 +85,8 @@ def test_drop_all_tracts(toy_score_df): def test_mark_territory_dacs(): - test_data = pd.read_csv(TEST_DATA_FOLDER / "test_mark_territory_dacs.csv", + test_data = pd.read_csv( + TEST_DATA_FOLDER / "test_mark_territory_dacs.csv", dtype={field_names.GEOID_TRACT_FIELD: str}, ) # Sanity check on the input data @@ -92,18 +94,22 @@ def test_mark_territory_dacs(): scorer = ScoreNarwhal(test_data) scorer._mark_territory_dacs() - territory_filter = test_data[field_names.GEOID_TRACT_FIELD].str.startswith(tuple(constants.TILES_ISLAND_AREA_FIPS_CODES)) # Check territories are set to true - expected_new_dacs_filter = ( - test_data[field_names.GEOID_TRACT_FIELD].isin(['60050951100', '66010951100', '69110001101', '78010990000']) + expected_new_dacs_filter = test_data[field_names.GEOID_TRACT_FIELD].isin( + ["60050951100", "66010951100", "69110001101", "78010990000"] ) - assert test_data.loc[expected_new_dacs_filter, field_names.SCORE_N_COMMUNITIES].all() + assert test_data.loc[ + expected_new_dacs_filter, field_names.SCORE_N_COMMUNITIES + ].all() # Non-territories are still false - assert not test_data.loc[~expected_new_dacs_filter, field_names.SCORE_N_COMMUNITIES].all() + assert not test_data.loc[ + ~expected_new_dacs_filter, field_names.SCORE_N_COMMUNITIES + ].all() def test_mark_poverty_flag(): - test_data = pd.read_csv(TEST_DATA_FOLDER / "test_mark_poverty_flag.csv", + test_data = pd.read_csv( + TEST_DATA_FOLDER / "test_mark_poverty_flag.csv", dtype={field_names.GEOID_TRACT_FIELD: str}, ) # Sanity check on the input data @@ -111,14 +117,14 @@ def test_mark_poverty_flag(): scorer = ScoreNarwhal(test_data) scorer._mark_poverty_flag() - expected_low_income_filter = ( - test_data[field_names.GEOID_TRACT_FIELD].isin(['36087011302', '66010951100', '78010990000']) + expected_low_income_filter = test_data[field_names.GEOID_TRACT_FIELD].isin( + ["36087011302", "66010951100", "78010990000"] ) # Three tracts are set to true - assert ( - test_data[expected_low_income_filter][field_names.FPL_200_SERIES_IMPUTED_AND_ADJUSTED].all() - ) + assert test_data[expected_low_income_filter][ + field_names.FPL_200_SERIES_IMPUTED_AND_ADJUSTED + ].all() # Everything else is false - assert ( - not test_data[~expected_low_income_filter][field_names.FPL_200_SERIES_IMPUTED_AND_ADJUSTED].all() - ) + assert not test_data[~expected_low_income_filter][ + field_names.FPL_200_SERIES_IMPUTED_AND_ADJUSTED + ].all() diff --git a/data/data-pipeline/poetry.lock b/data/data-pipeline/poetry.lock index f0b51d2b..5df8dbec 100644 --- a/data/data-pipeline/poetry.lock +++ b/data/data-pipeline/poetry.lock @@ -24,102 +24,87 @@ files = [ [[package]] name = "aiohttp" -version = "3.10.10" +version = "3.11.2" description = "Async http client/server framework (asyncio)" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "aiohttp-3.10.10-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:be7443669ae9c016b71f402e43208e13ddf00912f47f623ee5994e12fc7d4b3f"}, - {file = "aiohttp-3.10.10-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7b06b7843929e41a94ea09eb1ce3927865387e3e23ebe108e0d0d09b08d25be9"}, - {file = "aiohttp-3.10.10-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:333cf6cf8e65f6a1e06e9eb3e643a0c515bb850d470902274239fea02033e9a8"}, - {file = "aiohttp-3.10.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:274cfa632350225ce3fdeb318c23b4a10ec25c0e2c880eff951a3842cf358ac1"}, - {file = "aiohttp-3.10.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d9e5e4a85bdb56d224f412d9c98ae4cbd032cc4f3161818f692cd81766eee65a"}, - {file = "aiohttp-3.10.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2b606353da03edcc71130b52388d25f9a30a126e04caef1fd637e31683033abd"}, - {file = "aiohttp-3.10.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ab5a5a0c7a7991d90446a198689c0535be89bbd6b410a1f9a66688f0880ec026"}, - {file = "aiohttp-3.10.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:578a4b875af3e0daaf1ac6fa983d93e0bbfec3ead753b6d6f33d467100cdc67b"}, - {file = "aiohttp-3.10.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:8105fd8a890df77b76dd3054cddf01a879fc13e8af576805d667e0fa0224c35d"}, - {file = "aiohttp-3.10.10-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3bcd391d083f636c06a68715e69467963d1f9600f85ef556ea82e9ef25f043f7"}, - {file = "aiohttp-3.10.10-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:fbc6264158392bad9df19537e872d476f7c57adf718944cc1e4495cbabf38e2a"}, - {file = "aiohttp-3.10.10-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:e48d5021a84d341bcaf95c8460b152cfbad770d28e5fe14a768988c461b821bc"}, - {file = "aiohttp-3.10.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:2609e9ab08474702cc67b7702dbb8a80e392c54613ebe80db7e8dbdb79837c68"}, - {file = "aiohttp-3.10.10-cp310-cp310-win32.whl", hash = "sha256:84afcdea18eda514c25bc68b9af2a2b1adea7c08899175a51fe7c4fb6d551257"}, - {file = "aiohttp-3.10.10-cp310-cp310-win_amd64.whl", hash = "sha256:9c72109213eb9d3874f7ac8c0c5fa90e072d678e117d9061c06e30c85b4cf0e6"}, - {file = "aiohttp-3.10.10-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c30a0eafc89d28e7f959281b58198a9fa5e99405f716c0289b7892ca345fe45f"}, - {file = "aiohttp-3.10.10-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:258c5dd01afc10015866114e210fb7365f0d02d9d059c3c3415382ab633fcbcb"}, - {file = "aiohttp-3.10.10-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:15ecd889a709b0080f02721255b3f80bb261c2293d3c748151274dfea93ac871"}, - {file = "aiohttp-3.10.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f3935f82f6f4a3820270842e90456ebad3af15810cf65932bd24da4463bc0a4c"}, - {file = "aiohttp-3.10.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:413251f6fcf552a33c981c4709a6bba37b12710982fec8e558ae944bfb2abd38"}, - {file = "aiohttp-3.10.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d1720b4f14c78a3089562b8875b53e36b51c97c51adc53325a69b79b4b48ebcb"}, - {file = "aiohttp-3.10.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:679abe5d3858b33c2cf74faec299fda60ea9de62916e8b67e625d65bf069a3b7"}, - {file = "aiohttp-3.10.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:79019094f87c9fb44f8d769e41dbb664d6e8fcfd62f665ccce36762deaa0e911"}, - {file = "aiohttp-3.10.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:fe2fb38c2ed905a2582948e2de560675e9dfbee94c6d5ccdb1301c6d0a5bf092"}, - {file = "aiohttp-3.10.10-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:a3f00003de6eba42d6e94fabb4125600d6e484846dbf90ea8e48a800430cc142"}, - {file = "aiohttp-3.10.10-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:1bbb122c557a16fafc10354b9d99ebf2f2808a660d78202f10ba9d50786384b9"}, - {file = "aiohttp-3.10.10-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:30ca7c3b94708a9d7ae76ff281b2f47d8eaf2579cd05971b5dc681db8caac6e1"}, - {file = "aiohttp-3.10.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:df9270660711670e68803107d55c2b5949c2e0f2e4896da176e1ecfc068b974a"}, - {file = "aiohttp-3.10.10-cp311-cp311-win32.whl", hash = "sha256:aafc8ee9b742ce75044ae9a4d3e60e3d918d15a4c2e08a6c3c3e38fa59b92d94"}, - {file = "aiohttp-3.10.10-cp311-cp311-win_amd64.whl", hash = "sha256:362f641f9071e5f3ee6f8e7d37d5ed0d95aae656adf4ef578313ee585b585959"}, - {file = "aiohttp-3.10.10-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:9294bbb581f92770e6ed5c19559e1e99255e4ca604a22c5c6397b2f9dd3ee42c"}, - {file = "aiohttp-3.10.10-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:a8fa23fe62c436ccf23ff930149c047f060c7126eae3ccea005f0483f27b2e28"}, - {file = "aiohttp-3.10.10-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5c6a5b8c7926ba5d8545c7dd22961a107526562da31a7a32fa2456baf040939f"}, - {file = "aiohttp-3.10.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:007ec22fbc573e5eb2fb7dec4198ef8f6bf2fe4ce20020798b2eb5d0abda6138"}, - {file = "aiohttp-3.10.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9627cc1a10c8c409b5822a92d57a77f383b554463d1884008e051c32ab1b3742"}, - {file = "aiohttp-3.10.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:50edbcad60d8f0e3eccc68da67f37268b5144ecc34d59f27a02f9611c1d4eec7"}, - {file = "aiohttp-3.10.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a45d85cf20b5e0d0aa5a8dca27cce8eddef3292bc29d72dcad1641f4ed50aa16"}, - {file = "aiohttp-3.10.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0b00807e2605f16e1e198f33a53ce3c4523114059b0c09c337209ae55e3823a8"}, - {file = "aiohttp-3.10.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f2d4324a98062be0525d16f768a03e0bbb3b9fe301ceee99611dc9a7953124e6"}, - {file = "aiohttp-3.10.10-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:438cd072f75bb6612f2aca29f8bd7cdf6e35e8f160bc312e49fbecab77c99e3a"}, - {file = "aiohttp-3.10.10-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:baa42524a82f75303f714108fea528ccacf0386af429b69fff141ffef1c534f9"}, - {file = "aiohttp-3.10.10-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:a7d8d14fe962153fc681f6366bdec33d4356f98a3e3567782aac1b6e0e40109a"}, - {file = "aiohttp-3.10.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c1277cd707c465cd09572a774559a3cc7c7a28802eb3a2a9472588f062097205"}, - {file = "aiohttp-3.10.10-cp312-cp312-win32.whl", hash = "sha256:59bb3c54aa420521dc4ce3cc2c3fe2ad82adf7b09403fa1f48ae45c0cbde6628"}, - {file = "aiohttp-3.10.10-cp312-cp312-win_amd64.whl", hash = "sha256:0e1b370d8007c4ae31ee6db7f9a2fe801a42b146cec80a86766e7ad5c4a259cf"}, - {file = "aiohttp-3.10.10-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ad7593bb24b2ab09e65e8a1d385606f0f47c65b5a2ae6c551db67d6653e78c28"}, - {file = "aiohttp-3.10.10-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:1eb89d3d29adaf533588f209768a9c02e44e4baf832b08118749c5fad191781d"}, - {file = "aiohttp-3.10.10-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3fe407bf93533a6fa82dece0e74dbcaaf5d684e5a51862887f9eaebe6372cd79"}, - {file = "aiohttp-3.10.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50aed5155f819873d23520919e16703fc8925e509abbb1a1491b0087d1cd969e"}, - {file = "aiohttp-3.10.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4f05e9727ce409358baa615dbeb9b969db94324a79b5a5cea45d39bdb01d82e6"}, - {file = "aiohttp-3.10.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3dffb610a30d643983aeb185ce134f97f290f8935f0abccdd32c77bed9388b42"}, - {file = "aiohttp-3.10.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa6658732517ddabe22c9036479eabce6036655ba87a0224c612e1ae6af2087e"}, - {file = "aiohttp-3.10.10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:741a46d58677d8c733175d7e5aa618d277cd9d880301a380fd296975a9cdd7bc"}, - {file = "aiohttp-3.10.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e00e3505cd80440f6c98c6d69269dcc2a119f86ad0a9fd70bccc59504bebd68a"}, - {file = "aiohttp-3.10.10-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ffe595f10566f8276b76dc3a11ae4bb7eba1aac8ddd75811736a15b0d5311414"}, - {file = "aiohttp-3.10.10-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:bdfcf6443637c148c4e1a20c48c566aa694fa5e288d34b20fcdc58507882fed3"}, - {file = "aiohttp-3.10.10-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:d183cf9c797a5291e8301790ed6d053480ed94070637bfaad914dd38b0981f67"}, - {file = "aiohttp-3.10.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:77abf6665ae54000b98b3c742bc6ea1d1fb31c394bcabf8b5d2c1ac3ebfe7f3b"}, - {file = "aiohttp-3.10.10-cp313-cp313-win32.whl", hash = "sha256:4470c73c12cd9109db8277287d11f9dd98f77fc54155fc71a7738a83ffcc8ea8"}, - {file = "aiohttp-3.10.10-cp313-cp313-win_amd64.whl", hash = "sha256:486f7aabfa292719a2753c016cc3a8f8172965cabb3ea2e7f7436c7f5a22a151"}, - {file = "aiohttp-3.10.10-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:1b66ccafef7336a1e1f0e389901f60c1d920102315a56df85e49552308fc0486"}, - {file = "aiohttp-3.10.10-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:acd48d5b80ee80f9432a165c0ac8cbf9253eaddb6113269a5e18699b33958dbb"}, - {file = "aiohttp-3.10.10-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3455522392fb15ff549d92fbf4b73b559d5e43dc522588f7eb3e54c3f38beee7"}, - {file = "aiohttp-3.10.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45c3b868724137f713a38376fef8120c166d1eadd50da1855c112fe97954aed8"}, - {file = "aiohttp-3.10.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:da1dee8948d2137bb51fbb8a53cce6b1bcc86003c6b42565f008438b806cccd8"}, - {file = "aiohttp-3.10.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c5ce2ce7c997e1971b7184ee37deb6ea9922ef5163c6ee5aa3c274b05f9e12fa"}, - {file = "aiohttp-3.10.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28529e08fde6f12eba8677f5a8608500ed33c086f974de68cc65ab218713a59d"}, - {file = "aiohttp-3.10.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f7db54c7914cc99d901d93a34704833568d86c20925b2762f9fa779f9cd2e70f"}, - {file = "aiohttp-3.10.10-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:03a42ac7895406220124c88911ebee31ba8b2d24c98507f4a8bf826b2937c7f2"}, - {file = "aiohttp-3.10.10-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:7e338c0523d024fad378b376a79faff37fafb3c001872a618cde1d322400a572"}, - {file = "aiohttp-3.10.10-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:038f514fe39e235e9fef6717fbf944057bfa24f9b3db9ee551a7ecf584b5b480"}, - {file = "aiohttp-3.10.10-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:64f6c17757251e2b8d885d728b6433d9d970573586a78b78ba8929b0f41d045a"}, - {file = "aiohttp-3.10.10-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:93429602396f3383a797a2a70e5f1de5df8e35535d7806c9f91df06f297e109b"}, - {file = "aiohttp-3.10.10-cp38-cp38-win32.whl", hash = "sha256:c823bc3971c44ab93e611ab1a46b1eafeae474c0c844aff4b7474287b75fe49c"}, - {file = "aiohttp-3.10.10-cp38-cp38-win_amd64.whl", hash = "sha256:54ca74df1be3c7ca1cf7f4c971c79c2daf48d9aa65dea1a662ae18926f5bc8ce"}, - {file = "aiohttp-3.10.10-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:01948b1d570f83ee7bbf5a60ea2375a89dfb09fd419170e7f5af029510033d24"}, - {file = "aiohttp-3.10.10-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9fc1500fd2a952c5c8e3b29aaf7e3cc6e27e9cfc0a8819b3bce48cc1b849e4cc"}, - {file = "aiohttp-3.10.10-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f614ab0c76397661b90b6851a030004dac502e48260ea10f2441abd2207fbcc7"}, - {file = "aiohttp-3.10.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:00819de9e45d42584bed046314c40ea7e9aea95411b38971082cad449392b08c"}, - {file = "aiohttp-3.10.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:05646ebe6b94cc93407b3bf34b9eb26c20722384d068eb7339de802154d61bc5"}, - {file = "aiohttp-3.10.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:998f3bd3cfc95e9424a6acd7840cbdd39e45bc09ef87533c006f94ac47296090"}, - {file = "aiohttp-3.10.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9010c31cd6fa59438da4e58a7f19e4753f7f264300cd152e7f90d4602449762"}, - {file = "aiohttp-3.10.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7ea7ffc6d6d6f8a11e6f40091a1040995cdff02cfc9ba4c2f30a516cb2633554"}, - {file = "aiohttp-3.10.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:ef9c33cc5cbca35808f6c74be11eb7f5f6b14d2311be84a15b594bd3e58b5527"}, - {file = "aiohttp-3.10.10-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ce0cdc074d540265bfeb31336e678b4e37316849d13b308607efa527e981f5c2"}, - {file = "aiohttp-3.10.10-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:597a079284b7ee65ee102bc3a6ea226a37d2b96d0418cc9047490f231dc09fe8"}, - {file = "aiohttp-3.10.10-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:7789050d9e5d0c309c706953e5e8876e38662d57d45f936902e176d19f1c58ab"}, - {file = "aiohttp-3.10.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:e7f8b04d83483577fd9200461b057c9f14ced334dcb053090cea1da9c8321a91"}, - {file = "aiohttp-3.10.10-cp39-cp39-win32.whl", hash = "sha256:c02a30b904282777d872266b87b20ed8cc0d1501855e27f831320f471d54d983"}, - {file = "aiohttp-3.10.10-cp39-cp39-win_amd64.whl", hash = "sha256:edfe3341033a6b53a5c522c802deb2079eee5cbfbb0af032a55064bd65c73a23"}, - {file = "aiohttp-3.10.10.tar.gz", hash = "sha256:0631dd7c9f0822cc61c88586ca76d5b5ada26538097d0f1df510b082bad3411a"}, + {file = "aiohttp-3.11.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:783741f534c14957fbe657d62a34b947ec06db23d45a2fd4a8aeb73d9c84d7e6"}, + {file = "aiohttp-3.11.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:435f7a08d8aa42371a94e7c141205a9cb092ba551084b5e0c57492e6673601a3"}, + {file = "aiohttp-3.11.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c681f34e2814bc6e1eef49752b338061b94a42c92734d0be9513447d3f83718c"}, + {file = "aiohttp-3.11.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:73a664478ae1ea011b5a710fb100b115ca8b2146864fa0ce4143ff944df714b8"}, + {file = "aiohttp-3.11.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f1d06c8fd8b453c3e553c956bd3b8395100401060430572174bb7876dd95ad49"}, + {file = "aiohttp-3.11.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b1f4844909321ef2c1cee50ddeccbd6018cd8c8d1ddddda3f553e94a5859497"}, + {file = "aiohttp-3.11.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdc6f8dce09281ae534eaf08a54f0d38612398375f28dad733a8885f3bf9b978"}, + {file = "aiohttp-3.11.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d2d942421cf3a1d1eceae8fa192f1fbfb74eb9d3e207d35ad2696bd2ce2c987c"}, + {file = "aiohttp-3.11.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:08ebe7a1d6c1e5ca766d68407280d69658f5f98821c2ba6c41c63cabfed159af"}, + {file = "aiohttp-3.11.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:2793d3297f3e49015140e6d3ea26142c967e07998e2fb00b6ee8d041138fbc4e"}, + {file = "aiohttp-3.11.2-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:4a23475d8d5c56e447b7752a1e2ac267c1f723f765e406c81feddcd16cdc97bc"}, + {file = "aiohttp-3.11.2-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:556564d89e2f4a6e8fe000894c03e4e84cf0b6cfa5674e425db122633ee244d1"}, + {file = "aiohttp-3.11.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:57993f406ce3f114b2a6756d7809be3ffd0cc40f33e8f8b9a4aa1b027fd4e3eb"}, + {file = "aiohttp-3.11.2-cp310-cp310-win32.whl", hash = "sha256:177b000efaf8d2f7012c649e8aee5b0bf488677b1162be5e7511aa4f9d567607"}, + {file = "aiohttp-3.11.2-cp310-cp310-win_amd64.whl", hash = "sha256:ff5d22eece44528023254b595c670dfcf9733ac6af74c4b6cb4f6a784dc3870c"}, + {file = "aiohttp-3.11.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:50e0aee4adc9abcd2109c618a8d1b2c93b85ac277b24a003ab147d91e068b06d"}, + {file = "aiohttp-3.11.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9aa4e68f1e4f303971ec42976fb170204fb5092de199034b57199a1747e78a2d"}, + {file = "aiohttp-3.11.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d84930b4145991214602372edd7305fc76b700220db79ac0dd57d3afd0f0a1ca"}, + {file = "aiohttp-3.11.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4ec8afd362356b8798c8caa806e91deb3f0602d8ffae8e91d2d3ced2a90c35e"}, + {file = "aiohttp-3.11.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fb0544a0e8294a5a5e20d3cacdaaa9a911d7c0a9150f5264aef36e7d8fdfa07e"}, + {file = "aiohttp-3.11.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7b0a1618060e3f5aa73d3526ca2108a16a1b6bf86612cd0bb2ddcbef9879d06"}, + {file = "aiohttp-3.11.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d878a0186023ac391861958035174d0486f3259cabf8fd94e591985468da3ea"}, + {file = "aiohttp-3.11.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e33a7eddcd07545ccf5c3ab230f60314a17dc33e285475e8405e26e21f02660"}, + {file = "aiohttp-3.11.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:4d7fad8c456d180a6d2f44c41cfab4b80e2e81451815825097db48b8293f59d5"}, + {file = "aiohttp-3.11.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8d954ba0eae7f33884d27dc00629ca4389d249eb8d26ca07c30911257cae8c96"}, + {file = "aiohttp-3.11.2-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:afa55e863224e664a782effa62245df73fdfc55aee539bed6efacf35f6d4e4b7"}, + {file = "aiohttp-3.11.2-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:10a5f91c319d9d4afba812f72984816b5fcd20742232ff7ecc1610ffbf3fc64d"}, + {file = "aiohttp-3.11.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6e8e19a80ba194db5c06915a9df23c0c06e0e9ca9a4db9386a6056cca555a027"}, + {file = "aiohttp-3.11.2-cp311-cp311-win32.whl", hash = "sha256:9c8d1db4f65bbc9d75b7b271d68fb996f1c8c81a525263862477d93611856c2d"}, + {file = "aiohttp-3.11.2-cp311-cp311-win_amd64.whl", hash = "sha256:2adb967454e10e69478ba4a8d8afbba48a7c7a8619216b7c807f8481cc66ddfb"}, + {file = "aiohttp-3.11.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:f833a80d9de9307d736b6af58c235b17ef7f90ebea7b9c49cd274dec7a66a2f1"}, + {file = "aiohttp-3.11.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:382f853516664d2ebfc75dc01da4a10fdef5edcb335fe7b45cf471ce758ecb18"}, + {file = "aiohttp-3.11.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d3a2bcf6c81639a165da93469e1e0aff67c956721f3fa9c0560f07dd1e505116"}, + {file = "aiohttp-3.11.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de3b4d5fb5d69749104b880a157f38baeea7765c93d9cd3837cedd5b84729e10"}, + {file = "aiohttp-3.11.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0a90a0dc4b054b5af299a900bf950fe8f9e3e54322bc405005f30aa5cacc5c98"}, + {file = "aiohttp-3.11.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:32334f35824811dd20a12cc90825d000e6b50faaeaa71408d42269151a66140d"}, + {file = "aiohttp-3.11.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0cba0b8d25aa2d450762f3dd6df85498f5e7c3ad0ddeb516ef2b03510f0eea32"}, + {file = "aiohttp-3.11.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bbb2dbc2701ab7e9307ca3a8fa4999c5b28246968e0a0202a5afabf48a42e22"}, + {file = "aiohttp-3.11.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:97fba98fc5d9ccd3d33909e898d00f2494d6a9eec7cbda3d030632e2c8bb4d00"}, + {file = "aiohttp-3.11.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0ebdf5087e2ce903d8220cc45dcece90c2199ae4395fd83ca616fcc81010db2c"}, + {file = "aiohttp-3.11.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:122768e3ae9ce74f981b46edefea9c6e5a40aea38aba3ac50168e6370459bf20"}, + {file = "aiohttp-3.11.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:5587da333b7d280a312715b843d43e734652aa382cba824a84a67c81f75b338b"}, + {file = "aiohttp-3.11.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:85de9904bc360fd29a98885d2bfcbd4e02ab33c53353cb70607f2bea2cb92468"}, + {file = "aiohttp-3.11.2-cp312-cp312-win32.whl", hash = "sha256:b470de64d17156c37e91effc109d3b032b39867000e2c126732fe01d034441f9"}, + {file = "aiohttp-3.11.2-cp312-cp312-win_amd64.whl", hash = "sha256:3f617a48b70f4843d54f52440ea1e58da6bdab07b391a3a6aed8d3b311a4cc04"}, + {file = "aiohttp-3.11.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:5d90b5a3b0f32a5fecf5dd83d828713986c019585f5cddf40d288ff77f366615"}, + {file = "aiohttp-3.11.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:d23854e5867650d40cba54d49956aad8081452aa80b2cf0d8c310633f4f48510"}, + {file = "aiohttp-3.11.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:486273d3b5af75a80c31c311988931bdd2a4b96a74d5c7f422bad948f99988ef"}, + {file = "aiohttp-3.11.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9075313f8e41b481e4cb10af405054564b0247dc335db5398ed05f8ec38787e2"}, + {file = "aiohttp-3.11.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44b69c69c194ffacbc50165911cf023a4b1b06422d1e1199d3aea82eac17004e"}, + {file = "aiohttp-3.11.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b339d91ac9060bd6ecdc595a82dc151045e5d74f566e0864ef3f2ba0887fec42"}, + {file = "aiohttp-3.11.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:64e8f5178958a9954043bc8cd10a5ae97352c3f2fc99aa01f2aebb0026010910"}, + {file = "aiohttp-3.11.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3129151378f858cdc4a0a4df355c9a0d060ab49e2eea7e62e9f085bac100551b"}, + {file = "aiohttp-3.11.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:14eb6c628432720e41b4fab1ada879d56cfe7034159849e083eb536b4c2afa99"}, + {file = "aiohttp-3.11.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:e57a10aacedcf24666f4c90d03e599f71d172d1c5e00dcf48205c445806745b0"}, + {file = "aiohttp-3.11.2-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:66e58a2e8c7609a3545c4b38fb8b01a6b8346c4862e529534f7674c5265a97b8"}, + {file = "aiohttp-3.11.2-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:9b6d15adc9768ff167614ca853f7eeb6ee5f1d55d5660e3af85ce6744fed2b82"}, + {file = "aiohttp-3.11.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:2914061f5ca573f990ec14191e6998752fa8fe50d518e3405410353c3f44aa5d"}, + {file = "aiohttp-3.11.2-cp313-cp313-win32.whl", hash = "sha256:1c2496182e577042e0e07a328d91c949da9e77a2047c7291071e734cd7a6e780"}, + {file = "aiohttp-3.11.2-cp313-cp313-win_amd64.whl", hash = "sha256:cccb2937bece1310c5c0163d0406aba170a2e5fb1f0444d7b0e7fdc9bd6bb713"}, + {file = "aiohttp-3.11.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:994cb893936dd2e1803655ae8667a45066bfd53360b148e22b4e3325cc5ea7a3"}, + {file = "aiohttp-3.11.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3666c750b73ce463a413692e3a57c60f7089e2d9116a2aa5a0f0eaf2ae325148"}, + {file = "aiohttp-3.11.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6ad9a7d2a3a0f235184426425f80bd3b26c66b24fd5fddecde66be30c01ebe6e"}, + {file = "aiohttp-3.11.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4c979fc92aba66730b66099cd5becb42d869a26c0011119bc1c2478408a8bf7a"}, + {file = "aiohttp-3.11.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:766d0ebf8703d28f854f945982aa09224d5a27a29594c70d921c43c3930fe7ac"}, + {file = "aiohttp-3.11.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:79efd1ee3827b2f16797e14b1e45021206c3271249b4d0025014466d416d7413"}, + {file = "aiohttp-3.11.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d6e069b882c1fdcbe5577dc4be372eda705180197140577a4cddb648c29d22e"}, + {file = "aiohttp-3.11.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5e9a766c346b2ed7e88937919d84ed64b4ef489dad1d8939f806ee52901dc142"}, + {file = "aiohttp-3.11.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:2b02a68b9445c70d7f5c8b578c5f5e5866b1d67ca23eb9e8bc8658ae9e3e2c74"}, + {file = "aiohttp-3.11.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:374baefcb1b6275f350da605951f5f02487a9bc84a574a7d5b696439fabd49a3"}, + {file = "aiohttp-3.11.2-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:d2f991c18132f3e505c108147925372ffe4549173b7c258cf227df1c5977a635"}, + {file = "aiohttp-3.11.2-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:34f37c59b12bc3afc52bab6fcd9cd3be82ff01c4598a84cbea934ccb3a9c54a0"}, + {file = "aiohttp-3.11.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:33af11eca7bb0f5c6ffaf5e7d9d2336c2448f9c6279b93abdd6f3c35f9ee321f"}, + {file = "aiohttp-3.11.2-cp39-cp39-win32.whl", hash = "sha256:83a70e22e0f6222effe7f29fdeba6c6023f9595e59a0479edacfbd7de4b77bb7"}, + {file = "aiohttp-3.11.2-cp39-cp39-win_amd64.whl", hash = "sha256:c28c1677ea33ccb8b14330560094cc44d3ff4fad617a544fd18beb90403fe0f1"}, + {file = "aiohttp-3.11.2.tar.gz", hash = "sha256:68d1f46f9387db3785508f5225d3acbc5825ca13d9c29f2b5cce203d5863eb79"}, ] [package.dependencies] @@ -128,7 +113,8 @@ aiosignal = ">=1.1.2" attrs = ">=17.3.0" frozenlist = ">=1.1.1" multidict = ">=4.5,<7.0" -yarl = ">=1.12.0,<2.0" +propcache = ">=0.2.0" +yarl = ">=1.17.0,<2.0" [package.extras] speedups = ["Brotli", "aiodns (>=3.2.0)", "brotlicffi"] @@ -198,17 +184,6 @@ doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21.0b1)"] trio = ["trio (>=0.26.1)"] -[[package]] -name = "appdirs" -version = "1.4.4" -description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." -optional = false -python-versions = "*" -files = [ - {file = "appdirs-1.4.4-py2.py3-none-any.whl", hash = "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128"}, - {file = "appdirs-1.4.4.tar.gz", hash = "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41"}, -] - [[package]] name = "appnope" version = "0.1.4" @@ -399,27 +374,28 @@ lxml = ["lxml"] [[package]] name = "black" -version = "21.6b0" +version = "21.12b0" description = "The uncompromising code formatter." optional = false python-versions = ">=3.6.2" files = [ - {file = "black-21.6b0-py3-none-any.whl", hash = "sha256:dfb8c5a069012b2ab1e972e7b908f5fb42b6bbabcba0a788b86dc05067c7d9c7"}, - {file = "black-21.6b0.tar.gz", hash = "sha256:dc132348a88d103016726fe360cb9ede02cecf99b76e3660ce6c596be132ce04"}, + {file = "black-21.12b0-py3-none-any.whl", hash = "sha256:a615e69ae185e08fdd73e4715e260e2479c861b5740057fde6e8b4e3b7dd589f"}, + {file = "black-21.12b0.tar.gz", hash = "sha256:77b80f693a569e2e527958459634f18df9b0ba2625ba4e0c2d5da5be42e6f2b3"}, ] [package.dependencies] -appdirs = "*" click = ">=7.1.2" mypy-extensions = ">=0.4.3" -pathspec = ">=0.8.1,<1" -regex = ">=2020.1.8" -toml = ">=0.10.1" +pathspec = ">=0.9.0,<1" +platformdirs = ">=2" +tomli = ">=0.2.6,<2.0.0" +typing-extensions = {version = ">=3.10.0.0,<3.10.0.1 || >3.10.0.1", markers = "python_version >= \"3.10\""} [package.extras] colorama = ["colorama (>=0.4.3)"] -d = ["aiohttp (>=3.6.0)", "aiohttp-cors (>=0.4.0)"] -python2 = ["typed-ast (>=1.4.2)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +python2 = ["typed-ast (>=1.4.3)"] uvloop = ["uvloop (>=0.15.2)"] [[package]] @@ -750,76 +726,65 @@ test = ["pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytes [[package]] name = "contourpy" -version = "1.3.0" +version = "1.3.1" description = "Python library for calculating contours of 2D quadrilateral grids" optional = false -python-versions = ">=3.9" +python-versions = ">=3.10" files = [ - {file = "contourpy-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:880ea32e5c774634f9fcd46504bf9f080a41ad855f4fef54f5380f5133d343c7"}, - {file = "contourpy-1.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:76c905ef940a4474a6289c71d53122a4f77766eef23c03cd57016ce19d0f7b42"}, - {file = "contourpy-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:92f8557cbb07415a4d6fa191f20fd9d2d9eb9c0b61d1b2f52a8926e43c6e9af7"}, - {file = "contourpy-1.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:36f965570cff02b874773c49bfe85562b47030805d7d8360748f3eca570f4cab"}, - {file = "contourpy-1.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cacd81e2d4b6f89c9f8a5b69b86490152ff39afc58a95af002a398273e5ce589"}, - {file = "contourpy-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:69375194457ad0fad3a839b9e29aa0b0ed53bb54db1bfb6c3ae43d111c31ce41"}, - {file = "contourpy-1.3.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:7a52040312b1a858b5e31ef28c2e865376a386c60c0e248370bbea2d3f3b760d"}, - {file = "contourpy-1.3.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3faeb2998e4fcb256542e8a926d08da08977f7f5e62cf733f3c211c2a5586223"}, - {file = "contourpy-1.3.0-cp310-cp310-win32.whl", hash = "sha256:36e0cff201bcb17a0a8ecc7f454fe078437fa6bda730e695a92f2d9932bd507f"}, - {file = "contourpy-1.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:87ddffef1dbe5e669b5c2440b643d3fdd8622a348fe1983fad7a0f0ccb1cd67b"}, - {file = "contourpy-1.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0fa4c02abe6c446ba70d96ece336e621efa4aecae43eaa9b030ae5fb92b309ad"}, - {file = "contourpy-1.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:834e0cfe17ba12f79963861e0f908556b2cedd52e1f75e6578801febcc6a9f49"}, - {file = "contourpy-1.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dbc4c3217eee163fa3984fd1567632b48d6dfd29216da3ded3d7b844a8014a66"}, - {file = "contourpy-1.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4865cd1d419e0c7a7bf6de1777b185eebdc51470800a9f42b9e9decf17762081"}, - {file = "contourpy-1.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:303c252947ab4b14c08afeb52375b26781ccd6a5ccd81abcdfc1fafd14cf93c1"}, - {file = "contourpy-1.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:637f674226be46f6ba372fd29d9523dd977a291f66ab2a74fbeb5530bb3f445d"}, - {file = "contourpy-1.3.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:76a896b2f195b57db25d6b44e7e03f221d32fe318d03ede41f8b4d9ba1bff53c"}, - {file = "contourpy-1.3.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e1fd23e9d01591bab45546c089ae89d926917a66dceb3abcf01f6105d927e2cb"}, - {file = "contourpy-1.3.0-cp311-cp311-win32.whl", hash = "sha256:d402880b84df3bec6eab53cd0cf802cae6a2ef9537e70cf75e91618a3801c20c"}, - {file = "contourpy-1.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:6cb6cc968059db9c62cb35fbf70248f40994dfcd7aa10444bbf8b3faeb7c2d67"}, - {file = "contourpy-1.3.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:570ef7cf892f0afbe5b2ee410c507ce12e15a5fa91017a0009f79f7d93a1268f"}, - {file = "contourpy-1.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:da84c537cb8b97d153e9fb208c221c45605f73147bd4cadd23bdae915042aad6"}, - {file = "contourpy-1.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0be4d8425bfa755e0fd76ee1e019636ccc7c29f77a7c86b4328a9eb6a26d0639"}, - {file = "contourpy-1.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9c0da700bf58f6e0b65312d0a5e695179a71d0163957fa381bb3c1f72972537c"}, - {file = "contourpy-1.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:eb8b141bb00fa977d9122636b16aa67d37fd40a3d8b52dd837e536d64b9a4d06"}, - {file = "contourpy-1.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3634b5385c6716c258d0419c46d05c8aa7dc8cb70326c9a4fb66b69ad2b52e09"}, - {file = "contourpy-1.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:0dce35502151b6bd35027ac39ba6e5a44be13a68f55735c3612c568cac3805fd"}, - {file = "contourpy-1.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:aea348f053c645100612b333adc5983d87be69acdc6d77d3169c090d3b01dc35"}, - {file = "contourpy-1.3.0-cp312-cp312-win32.whl", hash = "sha256:90f73a5116ad1ba7174341ef3ea5c3150ddf20b024b98fb0c3b29034752c8aeb"}, - {file = "contourpy-1.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:b11b39aea6be6764f84360fce6c82211a9db32a7c7de8fa6dd5397cf1d079c3b"}, - {file = "contourpy-1.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:3e1c7fa44aaae40a2247e2e8e0627f4bea3dd257014764aa644f319a5f8600e3"}, - {file = "contourpy-1.3.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:364174c2a76057feef647c802652f00953b575723062560498dc7930fc9b1cb7"}, - {file = "contourpy-1.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:32b238b3b3b649e09ce9aaf51f0c261d38644bdfa35cbaf7b263457850957a84"}, - {file = "contourpy-1.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d51fca85f9f7ad0b65b4b9fe800406d0d77017d7270d31ec3fb1cc07358fdea0"}, - {file = "contourpy-1.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:732896af21716b29ab3e988d4ce14bc5133733b85956316fb0c56355f398099b"}, - {file = "contourpy-1.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d73f659398a0904e125280836ae6f88ba9b178b2fed6884f3b1f95b989d2c8da"}, - {file = "contourpy-1.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c6c7c2408b7048082932cf4e641fa3b8ca848259212f51c8c59c45aa7ac18f14"}, - {file = "contourpy-1.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f317576606de89da6b7e0861cf6061f6146ead3528acabff9236458a6ba467f8"}, - {file = "contourpy-1.3.0-cp313-cp313-win32.whl", hash = "sha256:31cd3a85dbdf1fc002280c65caa7e2b5f65e4a973fcdf70dd2fdcb9868069294"}, - {file = "contourpy-1.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:4553c421929ec95fb07b3aaca0fae668b2eb5a5203d1217ca7c34c063c53d087"}, - {file = "contourpy-1.3.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:345af746d7766821d05d72cb8f3845dfd08dd137101a2cb9b24de277d716def8"}, - {file = "contourpy-1.3.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3bb3808858a9dc68f6f03d319acd5f1b8a337e6cdda197f02f4b8ff67ad2057b"}, - {file = "contourpy-1.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:420d39daa61aab1221567b42eecb01112908b2cab7f1b4106a52caaec8d36973"}, - {file = "contourpy-1.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4d63ee447261e963af02642ffcb864e5a2ee4cbfd78080657a9880b8b1868e18"}, - {file = "contourpy-1.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:167d6c890815e1dac9536dca00828b445d5d0df4d6a8c6adb4a7ec3166812fa8"}, - {file = "contourpy-1.3.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:710a26b3dc80c0e4febf04555de66f5fd17e9cf7170a7b08000601a10570bda6"}, - {file = "contourpy-1.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:75ee7cb1a14c617f34a51d11fa7524173e56551646828353c4af859c56b766e2"}, - {file = "contourpy-1.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:33c92cdae89ec5135d036e7218e69b0bb2851206077251f04a6c4e0e21f03927"}, - {file = "contourpy-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a11077e395f67ffc2c44ec2418cfebed032cd6da3022a94fc227b6faf8e2acb8"}, - {file = "contourpy-1.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e8134301d7e204c88ed7ab50028ba06c683000040ede1d617298611f9dc6240c"}, - {file = "contourpy-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e12968fdfd5bb45ffdf6192a590bd8ddd3ba9e58360b29683c6bb71a7b41edca"}, - {file = "contourpy-1.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fd2a0fc506eccaaa7595b7e1418951f213cf8255be2600f1ea1b61e46a60c55f"}, - {file = "contourpy-1.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4cfb5c62ce023dfc410d6059c936dcf96442ba40814aefbfa575425a3a7f19dc"}, - {file = "contourpy-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68a32389b06b82c2fdd68276148d7b9275b5f5cf13e5417e4252f6d1a34f72a2"}, - {file = "contourpy-1.3.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:94e848a6b83da10898cbf1311a815f770acc9b6a3f2d646f330d57eb4e87592e"}, - {file = "contourpy-1.3.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:d78ab28a03c854a873787a0a42254a0ccb3cb133c672f645c9f9c8f3ae9d0800"}, - {file = "contourpy-1.3.0-cp39-cp39-win32.whl", hash = "sha256:81cb5ed4952aae6014bc9d0421dec7c5835c9c8c31cdf51910b708f548cf58e5"}, - {file = "contourpy-1.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:14e262f67bd7e6eb6880bc564dcda30b15e351a594657e55b7eec94b6ef72843"}, - {file = "contourpy-1.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:fe41b41505a5a33aeaed2a613dccaeaa74e0e3ead6dd6fd3a118fb471644fd6c"}, - {file = "contourpy-1.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eca7e17a65f72a5133bdbec9ecf22401c62bcf4821361ef7811faee695799779"}, - {file = "contourpy-1.3.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:1ec4dc6bf570f5b22ed0d7efba0dfa9c5b9e0431aeea7581aa217542d9e809a4"}, - {file = "contourpy-1.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:00ccd0dbaad6d804ab259820fa7cb0b8036bda0686ef844d24125d8287178ce0"}, - {file = "contourpy-1.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8ca947601224119117f7c19c9cdf6b3ab54c5726ef1d906aa4a69dfb6dd58102"}, - {file = "contourpy-1.3.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:c6ec93afeb848a0845a18989da3beca3eec2c0f852322efe21af1931147d12cb"}, - {file = "contourpy-1.3.0.tar.gz", hash = "sha256:7ffa0db17717a8ffb127efd0c95a4362d996b892c2904db72428d5b52e1938a4"}, + {file = "contourpy-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a045f341a77b77e1c5de31e74e966537bba9f3c4099b35bf4c2e3939dd54cdab"}, + {file = "contourpy-1.3.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:500360b77259914f7805af7462e41f9cb7ca92ad38e9f94d6c8641b089338124"}, + {file = "contourpy-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b2f926efda994cdf3c8d3fdb40b9962f86edbc4457e739277b961eced3d0b4c1"}, + {file = "contourpy-1.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:adce39d67c0edf383647a3a007de0a45fd1b08dedaa5318404f1a73059c2512b"}, + {file = "contourpy-1.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:abbb49fb7dac584e5abc6636b7b2a7227111c4f771005853e7d25176daaf8453"}, + {file = "contourpy-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0cffcbede75c059f535725c1680dfb17b6ba8753f0c74b14e6a9c68c29d7ea3"}, + {file = "contourpy-1.3.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ab29962927945d89d9b293eabd0d59aea28d887d4f3be6c22deaefbb938a7277"}, + {file = "contourpy-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:974d8145f8ca354498005b5b981165b74a195abfae9a8129df3e56771961d595"}, + {file = "contourpy-1.3.1-cp310-cp310-win32.whl", hash = "sha256:ac4578ac281983f63b400f7fe6c101bedc10651650eef012be1ccffcbacf3697"}, + {file = "contourpy-1.3.1-cp310-cp310-win_amd64.whl", hash = "sha256:174e758c66bbc1c8576992cec9599ce8b6672b741b5d336b5c74e35ac382b18e"}, + {file = "contourpy-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3e8b974d8db2c5610fb4e76307e265de0edb655ae8169e8b21f41807ccbeec4b"}, + {file = "contourpy-1.3.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:20914c8c973f41456337652a6eeca26d2148aa96dd7ac323b74516988bea89fc"}, + {file = "contourpy-1.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:19d40d37c1c3a4961b4619dd9d77b12124a453cc3d02bb31a07d58ef684d3d86"}, + {file = "contourpy-1.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:113231fe3825ebf6f15eaa8bc1f5b0ddc19d42b733345eae0934cb291beb88b6"}, + {file = "contourpy-1.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4dbbc03a40f916a8420e420d63e96a1258d3d1b58cbdfd8d1f07b49fcbd38e85"}, + {file = "contourpy-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a04ecd68acbd77fa2d39723ceca4c3197cb2969633836ced1bea14e219d077c"}, + {file = "contourpy-1.3.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c414fc1ed8ee1dbd5da626cf3710c6013d3d27456651d156711fa24f24bd1291"}, + {file = "contourpy-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:31c1b55c1f34f80557d3830d3dd93ba722ce7e33a0b472cba0ec3b6535684d8f"}, + {file = "contourpy-1.3.1-cp311-cp311-win32.whl", hash = "sha256:f611e628ef06670df83fce17805c344710ca5cde01edfdc72751311da8585375"}, + {file = "contourpy-1.3.1-cp311-cp311-win_amd64.whl", hash = "sha256:b2bdca22a27e35f16794cf585832e542123296b4687f9fd96822db6bae17bfc9"}, + {file = "contourpy-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:0ffa84be8e0bd33410b17189f7164c3589c229ce5db85798076a3fa136d0e509"}, + {file = "contourpy-1.3.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:805617228ba7e2cbbfb6c503858e626ab528ac2a32a04a2fe88ffaf6b02c32bc"}, + {file = "contourpy-1.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ade08d343436a94e633db932e7e8407fe7de8083967962b46bdfc1b0ced39454"}, + {file = "contourpy-1.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:47734d7073fb4590b4a40122b35917cd77be5722d80683b249dac1de266aac80"}, + {file = "contourpy-1.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2ba94a401342fc0f8b948e57d977557fbf4d515f03c67682dd5c6191cb2d16ec"}, + {file = "contourpy-1.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efa874e87e4a647fd2e4f514d5e91c7d493697127beb95e77d2f7561f6905bd9"}, + {file = "contourpy-1.3.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1bf98051f1045b15c87868dbaea84f92408337d4f81d0e449ee41920ea121d3b"}, + {file = "contourpy-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:61332c87493b00091423e747ea78200659dc09bdf7fd69edd5e98cef5d3e9a8d"}, + {file = "contourpy-1.3.1-cp312-cp312-win32.whl", hash = "sha256:e914a8cb05ce5c809dd0fe350cfbb4e881bde5e2a38dc04e3afe1b3e58bd158e"}, + {file = "contourpy-1.3.1-cp312-cp312-win_amd64.whl", hash = "sha256:08d9d449a61cf53033612cb368f3a1b26cd7835d9b8cd326647efe43bca7568d"}, + {file = "contourpy-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a761d9ccfc5e2ecd1bf05534eda382aa14c3e4f9205ba5b1684ecfe400716ef2"}, + {file = "contourpy-1.3.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:523a8ee12edfa36f6d2a49407f705a6ef4c5098de4f498619787e272de93f2d5"}, + {file = "contourpy-1.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ece6df05e2c41bd46776fbc712e0996f7c94e0d0543af1656956d150c4ca7c81"}, + {file = "contourpy-1.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:573abb30e0e05bf31ed067d2f82500ecfdaec15627a59d63ea2d95714790f5c2"}, + {file = "contourpy-1.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9fa36448e6a3a1a9a2ba23c02012c43ed88905ec80163f2ffe2421c7192a5d7"}, + {file = "contourpy-1.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ea9924d28fc5586bf0b42d15f590b10c224117e74409dd7a0be3b62b74a501c"}, + {file = "contourpy-1.3.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5b75aa69cb4d6f137b36f7eb2ace9280cfb60c55dc5f61c731fdf6f037f958a3"}, + {file = "contourpy-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:041b640d4ec01922083645a94bb3b2e777e6b626788f4095cf21abbe266413c1"}, + {file = "contourpy-1.3.1-cp313-cp313-win32.whl", hash = "sha256:36987a15e8ace5f58d4d5da9dca82d498c2bbb28dff6e5d04fbfcc35a9cb3a82"}, + {file = "contourpy-1.3.1-cp313-cp313-win_amd64.whl", hash = "sha256:a7895f46d47671fa7ceec40f31fae721da51ad34bdca0bee83e38870b1f47ffd"}, + {file = "contourpy-1.3.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:9ddeb796389dadcd884c7eb07bd14ef12408aaae358f0e2ae24114d797eede30"}, + {file = "contourpy-1.3.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:19c1555a6801c2f084c7ddc1c6e11f02eb6a6016ca1318dd5452ba3f613a1751"}, + {file = "contourpy-1.3.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:841ad858cff65c2c04bf93875e384ccb82b654574a6d7f30453a04f04af71342"}, + {file = "contourpy-1.3.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4318af1c925fb9a4fb190559ef3eec206845f63e80fb603d47f2d6d67683901c"}, + {file = "contourpy-1.3.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:14c102b0eab282427b662cb590f2e9340a9d91a1c297f48729431f2dcd16e14f"}, + {file = "contourpy-1.3.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05e806338bfeaa006acbdeba0ad681a10be63b26e1b17317bfac3c5d98f36cda"}, + {file = "contourpy-1.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4d76d5993a34ef3df5181ba3c92fabb93f1eaa5729504fb03423fcd9f3177242"}, + {file = "contourpy-1.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:89785bb2a1980c1bd87f0cb1517a71cde374776a5f150936b82580ae6ead44a1"}, + {file = "contourpy-1.3.1-cp313-cp313t-win32.whl", hash = "sha256:8eb96e79b9f3dcadbad2a3891672f81cdcab7f95b27f28f1c67d75f045b6b4f1"}, + {file = "contourpy-1.3.1-cp313-cp313t-win_amd64.whl", hash = "sha256:287ccc248c9e0d0566934e7d606201abd74761b5703d804ff3df8935f523d546"}, + {file = "contourpy-1.3.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:b457d6430833cee8e4b8e9b6f07aa1c161e5e0d52e118dc102c8f9bd7dd060d6"}, + {file = "contourpy-1.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb76c1a154b83991a3cbbf0dfeb26ec2833ad56f95540b442c73950af2013750"}, + {file = "contourpy-1.3.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:44a29502ca9c7b5ba389e620d44f2fbe792b1fb5734e8b931ad307071ec58c53"}, + {file = "contourpy-1.3.1.tar.gz", hash = "sha256:dfd97abd83335045a913e3bcc4a09c0ceadbe66580cf573fe961f4a825efa699"}, ] [package.dependencies] @@ -849,37 +814,37 @@ tests = ["pytest", "pytest-cov", "pytest-xdist"] [[package]] name = "debugpy" -version = "1.8.7" +version = "1.8.8" description = "An implementation of the Debug Adapter Protocol for Python" optional = false python-versions = ">=3.8" files = [ - {file = "debugpy-1.8.7-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:95fe04a573b8b22896c404365e03f4eda0ce0ba135b7667a1e57bd079793b96b"}, - {file = "debugpy-1.8.7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:628a11f4b295ffb4141d8242a9bb52b77ad4a63a2ad19217a93be0f77f2c28c9"}, - {file = "debugpy-1.8.7-cp310-cp310-win32.whl", hash = "sha256:85ce9c1d0eebf622f86cc68618ad64bf66c4fc3197d88f74bb695a416837dd55"}, - {file = "debugpy-1.8.7-cp310-cp310-win_amd64.whl", hash = "sha256:29e1571c276d643757ea126d014abda081eb5ea4c851628b33de0c2b6245b037"}, - {file = "debugpy-1.8.7-cp311-cp311-macosx_14_0_universal2.whl", hash = "sha256:caf528ff9e7308b74a1749c183d6808ffbedbb9fb6af78b033c28974d9b8831f"}, - {file = "debugpy-1.8.7-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cba1d078cf2e1e0b8402e6bda528bf8fda7ccd158c3dba6c012b7897747c41a0"}, - {file = "debugpy-1.8.7-cp311-cp311-win32.whl", hash = "sha256:171899588bcd412151e593bd40d9907133a7622cd6ecdbdb75f89d1551df13c2"}, - {file = "debugpy-1.8.7-cp311-cp311-win_amd64.whl", hash = "sha256:6e1c4ffb0c79f66e89dfd97944f335880f0d50ad29525dc792785384923e2211"}, - {file = "debugpy-1.8.7-cp312-cp312-macosx_14_0_universal2.whl", hash = "sha256:4d27d842311353ede0ad572600c62e4bcd74f458ee01ab0dd3a1a4457e7e3706"}, - {file = "debugpy-1.8.7-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:703c1fd62ae0356e194f3e7b7a92acd931f71fe81c4b3be2c17a7b8a4b546ec2"}, - {file = "debugpy-1.8.7-cp312-cp312-win32.whl", hash = "sha256:2f729228430ef191c1e4df72a75ac94e9bf77413ce5f3f900018712c9da0aaca"}, - {file = "debugpy-1.8.7-cp312-cp312-win_amd64.whl", hash = "sha256:45c30aaefb3e1975e8a0258f5bbd26cd40cde9bfe71e9e5a7ac82e79bad64e39"}, - {file = "debugpy-1.8.7-cp313-cp313-macosx_14_0_universal2.whl", hash = "sha256:d050a1ec7e925f514f0f6594a1e522580317da31fbda1af71d1530d6ea1f2b40"}, - {file = "debugpy-1.8.7-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2f4349a28e3228a42958f8ddaa6333d6f8282d5edaea456070e48609c5983b7"}, - {file = "debugpy-1.8.7-cp313-cp313-win32.whl", hash = "sha256:11ad72eb9ddb436afb8337891a986302e14944f0f755fd94e90d0d71e9100bba"}, - {file = "debugpy-1.8.7-cp313-cp313-win_amd64.whl", hash = "sha256:2efb84d6789352d7950b03d7f866e6d180284bc02c7e12cb37b489b7083d81aa"}, - {file = "debugpy-1.8.7-cp38-cp38-macosx_14_0_x86_64.whl", hash = "sha256:4b908291a1d051ef3331484de8e959ef3e66f12b5e610c203b5b75d2725613a7"}, - {file = "debugpy-1.8.7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da8df5b89a41f1fd31503b179d0a84a5fdb752dddd5b5388dbd1ae23cda31ce9"}, - {file = "debugpy-1.8.7-cp38-cp38-win32.whl", hash = "sha256:b12515e04720e9e5c2216cc7086d0edadf25d7ab7e3564ec8b4521cf111b4f8c"}, - {file = "debugpy-1.8.7-cp38-cp38-win_amd64.whl", hash = "sha256:93176e7672551cb5281577cdb62c63aadc87ec036f0c6a486f0ded337c504596"}, - {file = "debugpy-1.8.7-cp39-cp39-macosx_14_0_x86_64.whl", hash = "sha256:90d93e4f2db442f8222dec5ec55ccfc8005821028982f1968ebf551d32b28907"}, - {file = "debugpy-1.8.7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b6db2a370e2700557a976eaadb16243ec9c91bd46f1b3bb15376d7aaa7632c81"}, - {file = "debugpy-1.8.7-cp39-cp39-win32.whl", hash = "sha256:a6cf2510740e0c0b4a40330640e4b454f928c7b99b0c9dbf48b11efba08a8cda"}, - {file = "debugpy-1.8.7-cp39-cp39-win_amd64.whl", hash = "sha256:6a9d9d6d31846d8e34f52987ee0f1a904c7baa4912bf4843ab39dadf9b8f3e0d"}, - {file = "debugpy-1.8.7-py2.py3-none-any.whl", hash = "sha256:57b00de1c8d2c84a61b90880f7e5b6deaf4c312ecbde3a0e8912f2a56c4ac9ae"}, - {file = "debugpy-1.8.7.zip", hash = "sha256:18b8f731ed3e2e1df8e9cdaa23fb1fc9c24e570cd0081625308ec51c82efe42e"}, + {file = "debugpy-1.8.8-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:e59b1607c51b71545cb3496876544f7186a7a27c00b436a62f285603cc68d1c6"}, + {file = "debugpy-1.8.8-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a6531d952b565b7cb2fbd1ef5df3d333cf160b44f37547a4e7cf73666aca5d8d"}, + {file = "debugpy-1.8.8-cp310-cp310-win32.whl", hash = "sha256:b01f4a5e5c5fb1d34f4ccba99a20ed01eabc45a4684f4948b5db17a319dfb23f"}, + {file = "debugpy-1.8.8-cp310-cp310-win_amd64.whl", hash = "sha256:535f4fb1c024ddca5913bb0eb17880c8f24ba28aa2c225059db145ee557035e9"}, + {file = "debugpy-1.8.8-cp311-cp311-macosx_14_0_universal2.whl", hash = "sha256:c399023146e40ae373753a58d1be0a98bf6397fadc737b97ad612886b53df318"}, + {file = "debugpy-1.8.8-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:09cc7b162586ea2171eea055985da2702b0723f6f907a423c9b2da5996ad67ba"}, + {file = "debugpy-1.8.8-cp311-cp311-win32.whl", hash = "sha256:eea8821d998ebeb02f0625dd0d76839ddde8cbf8152ebbe289dd7acf2cdc6b98"}, + {file = "debugpy-1.8.8-cp311-cp311-win_amd64.whl", hash = "sha256:d4483836da2a533f4b1454dffc9f668096ac0433de855f0c22cdce8c9f7e10c4"}, + {file = "debugpy-1.8.8-cp312-cp312-macosx_14_0_universal2.whl", hash = "sha256:0cc94186340be87b9ac5a707184ec8f36547fb66636d1029ff4f1cc020e53996"}, + {file = "debugpy-1.8.8-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:64674e95916e53c2e9540a056e5f489e0ad4872645399d778f7c598eacb7b7f9"}, + {file = "debugpy-1.8.8-cp312-cp312-win32.whl", hash = "sha256:5c6e885dbf12015aed73770f29dec7023cb310d0dc2ba8bfbeb5c8e43f80edc9"}, + {file = "debugpy-1.8.8-cp312-cp312-win_amd64.whl", hash = "sha256:19ffbd84e757a6ca0113574d1bf5a2298b3947320a3e9d7d8dc3377f02d9f864"}, + {file = "debugpy-1.8.8-cp313-cp313-macosx_14_0_universal2.whl", hash = "sha256:705cd123a773d184860ed8dae99becd879dfec361098edbefb5fc0d3683eb804"}, + {file = "debugpy-1.8.8-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:890fd16803f50aa9cb1a9b9b25b5ec321656dd6b78157c74283de241993d086f"}, + {file = "debugpy-1.8.8-cp313-cp313-win32.whl", hash = "sha256:90244598214bbe704aa47556ec591d2f9869ff9e042e301a2859c57106649add"}, + {file = "debugpy-1.8.8-cp313-cp313-win_amd64.whl", hash = "sha256:4b93e4832fd4a759a0c465c967214ed0c8a6e8914bced63a28ddb0dd8c5f078b"}, + {file = "debugpy-1.8.8-cp38-cp38-macosx_14_0_x86_64.whl", hash = "sha256:143ef07940aeb8e7316de48f5ed9447644da5203726fca378f3a6952a50a9eae"}, + {file = "debugpy-1.8.8-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f95651bdcbfd3b27a408869a53fbefcc2bcae13b694daee5f1365b1b83a00113"}, + {file = "debugpy-1.8.8-cp38-cp38-win32.whl", hash = "sha256:26b461123a030e82602a750fb24d7801776aa81cd78404e54ab60e8b5fecdad5"}, + {file = "debugpy-1.8.8-cp38-cp38-win_amd64.whl", hash = "sha256:f3cbf1833e644a3100eadb6120f25be8a532035e8245584c4f7532937edc652a"}, + {file = "debugpy-1.8.8-cp39-cp39-macosx_14_0_x86_64.whl", hash = "sha256:53709d4ec586b525724819dc6af1a7703502f7e06f34ded7157f7b1f963bb854"}, + {file = "debugpy-1.8.8-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a9c013077a3a0000e83d97cf9cc9328d2b0bbb31f56b0e99ea3662d29d7a6a2"}, + {file = "debugpy-1.8.8-cp39-cp39-win32.whl", hash = "sha256:ffe94dd5e9a6739a75f0b85316dc185560db3e97afa6b215628d1b6a17561cb2"}, + {file = "debugpy-1.8.8-cp39-cp39-win_amd64.whl", hash = "sha256:5c0e5a38c7f9b481bf31277d2f74d2109292179081f11108e668195ef926c0f9"}, + {file = "debugpy-1.8.8-py2.py3-none-any.whl", hash = "sha256:ec684553aba5b4066d4de510859922419febc710df7bba04fe9e7ef3de15d34f"}, + {file = "debugpy-1.8.8.zip", hash = "sha256:e6355385db85cbd666be703a96ab7351bc9e6c61d694893206f8001e22aee091"}, ] [[package]] @@ -932,13 +897,13 @@ files = [ [[package]] name = "dparse" -version = "0.6.3" +version = "0.6.4" description = "A parser for Python dependency files" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" files = [ - {file = "dparse-0.6.3-py3-none-any.whl", hash = "sha256:0d8fe18714056ca632d98b24fbfc4e9791d4e47065285ab486182288813a5318"}, - {file = "dparse-0.6.3.tar.gz", hash = "sha256:27bb8b4bcaefec3997697ba3f6e06b2447200ba273c0b085c3d012a04571b528"}, + {file = "dparse-0.6.4-py3-none-any.whl", hash = "sha256:fbab4d50d54d0e739fbb4dedfc3d92771003a5b9aa8545ca7a7045e3b174af57"}, + {file = "dparse-0.6.4.tar.gz", hash = "sha256:90b29c39e3edc36c6284c82c4132648eaf28a01863eb3c231c2512196132201a"}, ] [package.dependencies] @@ -946,8 +911,10 @@ packaging = "*" tomli = {version = "*", markers = "python_version < \"3.11\""} [package.extras] +all = ["pipenv", "poetry", "pyyaml"] conda = ["pyyaml"] -pipenv = ["pipenv (<=2022.12.19)"] +pipenv = ["pipenv"] +poetry = ["poetry"] [[package]] name = "dynaconf" @@ -1112,59 +1079,61 @@ pyflakes = ">=2.3.0,<2.4.0" [[package]] name = "fonttools" -version = "4.54.1" +version = "4.55.0" description = "Tools to manipulate font files" optional = false python-versions = ">=3.8" files = [ - {file = "fonttools-4.54.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7ed7ee041ff7b34cc62f07545e55e1468808691dddfd315d51dd82a6b37ddef2"}, - {file = "fonttools-4.54.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:41bb0b250c8132b2fcac148e2e9198e62ff06f3cc472065dff839327945c5882"}, - {file = "fonttools-4.54.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7965af9b67dd546e52afcf2e38641b5be956d68c425bef2158e95af11d229f10"}, - {file = "fonttools-4.54.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:278913a168f90d53378c20c23b80f4e599dca62fbffae4cc620c8eed476b723e"}, - {file = "fonttools-4.54.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:0e88e3018ac809b9662615072dcd6b84dca4c2d991c6d66e1970a112503bba7e"}, - {file = "fonttools-4.54.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:4aa4817f0031206e637d1e685251ac61be64d1adef111060df84fdcbc6ab6c44"}, - {file = "fonttools-4.54.1-cp310-cp310-win32.whl", hash = "sha256:7e3b7d44e18c085fd8c16dcc6f1ad6c61b71ff463636fcb13df7b1b818bd0c02"}, - {file = "fonttools-4.54.1-cp310-cp310-win_amd64.whl", hash = "sha256:dd9cc95b8d6e27d01e1e1f1fae8559ef3c02c76317da650a19047f249acd519d"}, - {file = "fonttools-4.54.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:5419771b64248484299fa77689d4f3aeed643ea6630b2ea750eeab219588ba20"}, - {file = "fonttools-4.54.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:301540e89cf4ce89d462eb23a89464fef50915255ece765d10eee8b2bf9d75b2"}, - {file = "fonttools-4.54.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ae5091547e74e7efecc3cbf8e75200bc92daaeb88e5433c5e3e95ea8ce5aa7"}, - {file = "fonttools-4.54.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:82834962b3d7c5ca98cb56001c33cf20eb110ecf442725dc5fdf36d16ed1ab07"}, - {file = "fonttools-4.54.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d26732ae002cc3d2ecab04897bb02ae3f11f06dd7575d1df46acd2f7c012a8d8"}, - {file = "fonttools-4.54.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:58974b4987b2a71ee08ade1e7f47f410c367cdfc5a94fabd599c88165f56213a"}, - {file = "fonttools-4.54.1-cp311-cp311-win32.whl", hash = "sha256:ab774fa225238986218a463f3fe151e04d8c25d7de09df7f0f5fce27b1243dbc"}, - {file = "fonttools-4.54.1-cp311-cp311-win_amd64.whl", hash = "sha256:07e005dc454eee1cc60105d6a29593459a06321c21897f769a281ff2d08939f6"}, - {file = "fonttools-4.54.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:54471032f7cb5fca694b5f1a0aaeba4af6e10ae989df408e0216f7fd6cdc405d"}, - {file = "fonttools-4.54.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8fa92cb248e573daab8d032919623cc309c005086d743afb014c836636166f08"}, - {file = "fonttools-4.54.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a911591200114969befa7f2cb74ac148bce5a91df5645443371aba6d222e263"}, - {file = "fonttools-4.54.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:93d458c8a6a354dc8b48fc78d66d2a8a90b941f7fec30e94c7ad9982b1fa6bab"}, - {file = "fonttools-4.54.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:5eb2474a7c5be8a5331146758debb2669bf5635c021aee00fd7c353558fc659d"}, - {file = "fonttools-4.54.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c9c563351ddc230725c4bdf7d9e1e92cbe6ae8553942bd1fb2b2ff0884e8b714"}, - {file = "fonttools-4.54.1-cp312-cp312-win32.whl", hash = "sha256:fdb062893fd6d47b527d39346e0c5578b7957dcea6d6a3b6794569370013d9ac"}, - {file = "fonttools-4.54.1-cp312-cp312-win_amd64.whl", hash = "sha256:e4564cf40cebcb53f3dc825e85910bf54835e8a8b6880d59e5159f0f325e637e"}, - {file = "fonttools-4.54.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:6e37561751b017cf5c40fce0d90fd9e8274716de327ec4ffb0df957160be3bff"}, - {file = "fonttools-4.54.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:357cacb988a18aace66e5e55fe1247f2ee706e01debc4b1a20d77400354cddeb"}, - {file = "fonttools-4.54.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8e953cc0bddc2beaf3a3c3b5dd9ab7554677da72dfaf46951e193c9653e515a"}, - {file = "fonttools-4.54.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:58d29b9a294573d8319f16f2f79e42428ba9b6480442fa1836e4eb89c4d9d61c"}, - {file = "fonttools-4.54.1-cp313-cp313-win32.whl", hash = "sha256:9ef1b167e22709b46bf8168368b7b5d3efeaaa746c6d39661c1b4405b6352e58"}, - {file = "fonttools-4.54.1-cp313-cp313-win_amd64.whl", hash = "sha256:262705b1663f18c04250bd1242b0515d3bbae177bee7752be67c979b7d47f43d"}, - {file = "fonttools-4.54.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:ed2f80ca07025551636c555dec2b755dd005e2ea8fbeb99fc5cdff319b70b23b"}, - {file = "fonttools-4.54.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9dc080e5a1c3b2656caff2ac2633d009b3a9ff7b5e93d0452f40cd76d3da3b3c"}, - {file = "fonttools-4.54.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1d152d1be65652fc65e695e5619e0aa0982295a95a9b29b52b85775243c06556"}, - {file = "fonttools-4.54.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8583e563df41fdecef31b793b4dd3af8a9caa03397be648945ad32717a92885b"}, - {file = "fonttools-4.54.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:0d1d353ef198c422515a3e974a1e8d5b304cd54a4c2eebcae708e37cd9eeffb1"}, - {file = "fonttools-4.54.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:fda582236fee135d4daeca056c8c88ec5f6f6d88a004a79b84a02547c8f57386"}, - {file = "fonttools-4.54.1-cp38-cp38-win32.whl", hash = "sha256:e7d82b9e56716ed32574ee106cabca80992e6bbdcf25a88d97d21f73a0aae664"}, - {file = "fonttools-4.54.1-cp38-cp38-win_amd64.whl", hash = "sha256:ada215fd079e23e060157aab12eba0d66704316547f334eee9ff26f8c0d7b8ab"}, - {file = "fonttools-4.54.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:f5b8a096e649768c2f4233f947cf9737f8dbf8728b90e2771e2497c6e3d21d13"}, - {file = "fonttools-4.54.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4e10d2e0a12e18f4e2dd031e1bf7c3d7017be5c8dbe524d07706179f355c5dac"}, - {file = "fonttools-4.54.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:31c32d7d4b0958600eac75eaf524b7b7cb68d3a8c196635252b7a2c30d80e986"}, - {file = "fonttools-4.54.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c39287f5c8f4a0c5a55daf9eaf9ccd223ea59eed3f6d467133cc727d7b943a55"}, - {file = "fonttools-4.54.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:a7a310c6e0471602fe3bf8efaf193d396ea561486aeaa7adc1f132e02d30c4b9"}, - {file = "fonttools-4.54.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:d3b659d1029946f4ff9b6183984578041b520ce0f8fb7078bb37ec7445806b33"}, - {file = "fonttools-4.54.1-cp39-cp39-win32.whl", hash = "sha256:e96bc94c8cda58f577277d4a71f51c8e2129b8b36fd05adece6320dd3d57de8a"}, - {file = "fonttools-4.54.1-cp39-cp39-win_amd64.whl", hash = "sha256:e8a4b261c1ef91e7188a30571be6ad98d1c6d9fa2427244c545e2fa0a2494dd7"}, - {file = "fonttools-4.54.1-py3-none-any.whl", hash = "sha256:37cddd62d83dc4f72f7c3f3c2bcf2697e89a30efb152079896544a93907733bd"}, - {file = "fonttools-4.54.1.tar.gz", hash = "sha256:957f669d4922f92c171ba01bef7f29410668db09f6c02111e22b2bce446f3285"}, + {file = "fonttools-4.55.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:51c029d4c0608a21a3d3d169dfc3fb776fde38f00b35ca11fdab63ba10a16f61"}, + {file = "fonttools-4.55.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bca35b4e411362feab28e576ea10f11268b1aeed883b9f22ed05675b1e06ac69"}, + {file = "fonttools-4.55.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9ce4ba6981e10f7e0ccff6348e9775ce25ffadbee70c9fd1a3737e3e9f5fa74f"}, + {file = "fonttools-4.55.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31d00f9852a6051dac23294a4cf2df80ced85d1d173a61ba90a3d8f5abc63c60"}, + {file = "fonttools-4.55.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e198e494ca6e11f254bac37a680473a311a88cd40e58f9cc4dc4911dfb686ec6"}, + {file = "fonttools-4.55.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7208856f61770895e79732e1dcbe49d77bd5783adf73ae35f87fcc267df9db81"}, + {file = "fonttools-4.55.0-cp310-cp310-win32.whl", hash = "sha256:e7e6a352ff9e46e8ef8a3b1fe2c4478f8a553e1b5a479f2e899f9dc5f2055880"}, + {file = "fonttools-4.55.0-cp310-cp310-win_amd64.whl", hash = "sha256:636caaeefe586d7c84b5ee0734c1a5ab2dae619dc21c5cf336f304ddb8f6001b"}, + {file = "fonttools-4.55.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:fa34aa175c91477485c44ddfbb51827d470011e558dfd5c7309eb31bef19ec51"}, + {file = "fonttools-4.55.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:37dbb3fdc2ef7302d3199fb12468481cbebaee849e4b04bc55b77c24e3c49189"}, + {file = "fonttools-4.55.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5263d8e7ef3c0ae87fbce7f3ec2f546dc898d44a337e95695af2cd5ea21a967"}, + {file = "fonttools-4.55.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f307f6b5bf9e86891213b293e538d292cd1677e06d9faaa4bf9c086ad5f132f6"}, + {file = "fonttools-4.55.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:f0a4b52238e7b54f998d6a56b46a2c56b59c74d4f8a6747fb9d4042190f37cd3"}, + {file = "fonttools-4.55.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3e569711464f777a5d4ef522e781dc33f8095ab5efd7548958b36079a9f2f88c"}, + {file = "fonttools-4.55.0-cp311-cp311-win32.whl", hash = "sha256:2b3ab90ec0f7b76c983950ac601b58949f47aca14c3f21eed858b38d7ec42b05"}, + {file = "fonttools-4.55.0-cp311-cp311-win_amd64.whl", hash = "sha256:aa046f6a63bb2ad521004b2769095d4c9480c02c1efa7d7796b37826508980b6"}, + {file = "fonttools-4.55.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:838d2d8870f84fc785528a692e724f2379d5abd3fc9dad4d32f91cf99b41e4a7"}, + {file = "fonttools-4.55.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f46b863d74bab7bb0d395f3b68d3f52a03444964e67ce5c43ce43a75efce9246"}, + {file = "fonttools-4.55.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33b52a9cfe4e658e21b1f669f7309b4067910321757fec53802ca8f6eae96a5a"}, + {file = "fonttools-4.55.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:732a9a63d6ea4a81b1b25a1f2e5e143761b40c2e1b79bb2b68e4893f45139a40"}, + {file = "fonttools-4.55.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7dd91ac3fcb4c491bb4763b820bcab6c41c784111c24172616f02f4bc227c17d"}, + {file = "fonttools-4.55.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1f0e115281a32ff532118aa851ef497a1b7cda617f4621c1cdf81ace3e36fb0c"}, + {file = "fonttools-4.55.0-cp312-cp312-win32.whl", hash = "sha256:6c99b5205844f48a05cb58d4a8110a44d3038c67ed1d79eb733c4953c628b0f6"}, + {file = "fonttools-4.55.0-cp312-cp312-win_amd64.whl", hash = "sha256:f8c8c76037d05652510ae45be1cd8fb5dd2fd9afec92a25374ac82255993d57c"}, + {file = "fonttools-4.55.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8118dc571921dc9e4b288d9cb423ceaf886d195a2e5329cc427df82bba872cd9"}, + {file = "fonttools-4.55.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:01124f2ca6c29fad4132d930da69158d3f49b2350e4a779e1efbe0e82bd63f6c"}, + {file = "fonttools-4.55.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:81ffd58d2691f11f7c8438796e9f21c374828805d33e83ff4b76e4635633674c"}, + {file = "fonttools-4.55.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5435e5f1eb893c35c2bc2b9cd3c9596b0fcb0a59e7a14121562986dd4c47b8dd"}, + {file = "fonttools-4.55.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:d12081729280c39d001edd0f4f06d696014c26e6e9a0a55488fabc37c28945e4"}, + {file = "fonttools-4.55.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a7ad1f1b98ab6cb927ab924a38a8649f1ffd7525c75fe5b594f5dab17af70e18"}, + {file = "fonttools-4.55.0-cp313-cp313-win32.whl", hash = "sha256:abe62987c37630dca69a104266277216de1023cf570c1643bb3a19a9509e7a1b"}, + {file = "fonttools-4.55.0-cp313-cp313-win_amd64.whl", hash = "sha256:2863555ba90b573e4201feaf87a7e71ca3b97c05aa4d63548a4b69ea16c9e998"}, + {file = "fonttools-4.55.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:00f7cf55ad58a57ba421b6a40945b85ac7cc73094fb4949c41171d3619a3a47e"}, + {file = "fonttools-4.55.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f27526042efd6f67bfb0cc2f1610fa20364396f8b1fc5edb9f45bb815fb090b2"}, + {file = "fonttools-4.55.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8e67974326af6a8879dc2a4ec63ab2910a1c1a9680ccd63e4a690950fceddbe"}, + {file = "fonttools-4.55.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:61dc0a13451143c5e987dec5254d9d428f3c2789a549a7cf4f815b63b310c1cc"}, + {file = "fonttools-4.55.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:b2e526b325a903868c62155a6a7e24df53f6ce4c5c3160214d8fe1be2c41b478"}, + {file = "fonttools-4.55.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:b7ef9068a1297714e6fefe5932c33b058aa1d45a2b8be32a4c6dee602ae22b5c"}, + {file = "fonttools-4.55.0-cp38-cp38-win32.whl", hash = "sha256:55718e8071be35dff098976bc249fc243b58efa263768c611be17fe55975d40a"}, + {file = "fonttools-4.55.0-cp38-cp38-win_amd64.whl", hash = "sha256:553bd4f8cc327f310c20158e345e8174c8eed49937fb047a8bda51daf2c353c8"}, + {file = "fonttools-4.55.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:3f901cef813f7c318b77d1c5c14cf7403bae5cb977cede023e22ba4316f0a8f6"}, + {file = "fonttools-4.55.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8c9679fc0dd7e8a5351d321d8d29a498255e69387590a86b596a45659a39eb0d"}, + {file = "fonttools-4.55.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd2820a8b632f3307ebb0bf57948511c2208e34a4939cf978333bc0a3f11f838"}, + {file = "fonttools-4.55.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:23bbbb49bec613a32ed1b43df0f2b172313cee690c2509f1af8fdedcf0a17438"}, + {file = "fonttools-4.55.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:a656652e1f5d55b9728937a7e7d509b73d23109cddd4e89ee4f49bde03b736c6"}, + {file = "fonttools-4.55.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:f50a1f455902208486fbca47ce33054208a4e437b38da49d6721ce2fef732fcf"}, + {file = "fonttools-4.55.0-cp39-cp39-win32.whl", hash = "sha256:161d1ac54c73d82a3cded44202d0218ab007fde8cf194a23d3dd83f7177a2f03"}, + {file = "fonttools-4.55.0-cp39-cp39-win_amd64.whl", hash = "sha256:ca7fd6987c68414fece41c96836e945e1f320cda56fc96ffdc16e54a44ec57a2"}, + {file = "fonttools-4.55.0-py3-none-any.whl", hash = "sha256:12db5888cd4dd3fcc9f0ee60c6edd3c7e1fd44b7dd0f31381ea03df68f8a153f"}, + {file = "fonttools-4.55.0.tar.gz", hash = "sha256:7636acc6ab733572d5e7eec922b254ead611f1cdad17be3f0be7418e8bfaca71"}, ] [package.extras] @@ -1485,22 +1454,22 @@ colors = ["colorama (>=0.4.6)"] [[package]] name = "jedi" -version = "0.19.1" +version = "0.19.2" description = "An autocompletion tool for Python that can be used for text editors." optional = false python-versions = ">=3.6" files = [ - {file = "jedi-0.19.1-py2.py3-none-any.whl", hash = "sha256:e983c654fe5c02867aef4cdfce5a2fbb4a50adc0af145f70504238f18ef5e7e0"}, - {file = "jedi-0.19.1.tar.gz", hash = "sha256:cf0496f3651bc65d7174ac1b7d043eff454892c708a87d1b683e57b569927ffd"}, + {file = "jedi-0.19.2-py2.py3-none-any.whl", hash = "sha256:a8ef22bde8490f57fe5c7681a3c83cb58874daf72b4784de3cce5b6ef6edb5b9"}, + {file = "jedi-0.19.2.tar.gz", hash = "sha256:4770dc3de41bde3966b02eb84fbcf557fb33cce26ad23da12c742fb50ecb11f0"}, ] [package.dependencies] -parso = ">=0.8.3,<0.9.0" +parso = ">=0.8.4,<0.9.0" [package.extras] docs = ["Jinja2 (==2.11.3)", "MarkupSafe (==1.1.1)", "Pygments (==2.8.1)", "alabaster (==0.7.12)", "babel (==2.9.1)", "chardet (==4.0.0)", "commonmark (==0.8.1)", "docutils (==0.17.1)", "future (==0.18.2)", "idna (==2.10)", "imagesize (==1.2.0)", "mock (==1.0.1)", "packaging (==20.9)", "pyparsing (==2.4.7)", "pytz (==2021.1)", "readthedocs-sphinx-ext (==2.1.4)", "recommonmark (==0.5.0)", "requests (==2.25.1)", "six (==1.15.0)", "snowballstemmer (==2.1.0)", "sphinx (==1.8.5)", "sphinx-rtd-theme (==0.4.3)", "sphinxcontrib-serializinghtml (==1.1.4)", "sphinxcontrib-websupport (==1.2.4)", "urllib3 (==1.26.4)"] qa = ["flake8 (==5.0.4)", "mypy (==0.971)", "types-setuptools (==67.2.0.1)"] -testing = ["Django", "attrs", "colorama", "docopt", "pytest (<7.0.0)"] +testing = ["Django", "attrs", "colorama", "docopt", "pytest (<9.0.0)"] [[package]] name = "jellyfish" @@ -1531,15 +1500,18 @@ i18n = ["Babel (>=2.7)"] [[package]] name = "json5" -version = "0.9.25" +version = "0.9.28" description = "A Python implementation of the JSON5 data format." optional = false -python-versions = ">=3.8" +python-versions = ">=3.8.0" files = [ - {file = "json5-0.9.25-py3-none-any.whl", hash = "sha256:34ed7d834b1341a86987ed52f3f76cd8ee184394906b6e22a1e0deb9ab294e8f"}, - {file = "json5-0.9.25.tar.gz", hash = "sha256:548e41b9be043f9426776f05df8635a00fe06104ea51ed24b67f908856e151ae"}, + {file = "json5-0.9.28-py3-none-any.whl", hash = "sha256:29c56f1accdd8bc2e037321237662034a7e07921e2b7223281a5ce2c46f0c4df"}, + {file = "json5-0.9.28.tar.gz", hash = "sha256:1f82f36e615bc5b42f1bbd49dbc94b12563c56408c6ffa06414ea310890e9a6e"}, ] +[package.extras] +dev = ["build (==1.2.2.post1)", "coverage (==7.5.3)", "mypy (==1.13.0)", "pip (==24.3.1)", "pylint (==3.2.3)", "ruff (==0.7.3)", "twine (==5.1.1)", "uv (==0.5.1)"] + [[package]] name = "jsonpointer" version = "3.0.0" @@ -2958,13 +2930,13 @@ files = [ [[package]] name = "packaging" -version = "24.1" +version = "24.2" description = "Core utilities for Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124"}, - {file = "packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002"}, + {file = "packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759"}, + {file = "packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f"}, ] [[package]] @@ -3108,77 +3080,95 @@ ptyprocess = ">=0.5" [[package]] name = "pillow" -version = "9.3.0" +version = "11.0.0" description = "Python Imaging Library (Fork)" optional = false -python-versions = ">=3.7" +python-versions = ">=3.9" files = [ - {file = "Pillow-9.3.0-1-cp37-cp37m-win32.whl", hash = "sha256:e6ea6b856a74d560d9326c0f5895ef8050126acfdc7ca08ad703eb0081e82b74"}, - {file = "Pillow-9.3.0-1-cp37-cp37m-win_amd64.whl", hash = "sha256:32a44128c4bdca7f31de5be641187367fe2a450ad83b833ef78910397db491aa"}, - {file = "Pillow-9.3.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:0b7257127d646ff8676ec8a15520013a698d1fdc48bc2a79ba4e53df792526f2"}, - {file = "Pillow-9.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b90f7616ea170e92820775ed47e136208e04c967271c9ef615b6fbd08d9af0e3"}, - {file = "Pillow-9.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68943d632f1f9e3dce98908e873b3a090f6cba1cbb1b892a9e8d97c938871fbe"}, - {file = "Pillow-9.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:be55f8457cd1eac957af0c3f5ece7bc3f033f89b114ef30f710882717670b2a8"}, - {file = "Pillow-9.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d77adcd56a42d00cc1be30843d3426aa4e660cab4a61021dc84467123f7a00c"}, - {file = "Pillow-9.3.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:829f97c8e258593b9daa80638aee3789b7df9da5cf1336035016d76f03b8860c"}, - {file = "Pillow-9.3.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:801ec82e4188e935c7f5e22e006d01611d6b41661bba9fe45b60e7ac1a8f84de"}, - {file = "Pillow-9.3.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:871b72c3643e516db4ecf20efe735deb27fe30ca17800e661d769faab45a18d7"}, - {file = "Pillow-9.3.0-cp310-cp310-win32.whl", hash = "sha256:655a83b0058ba47c7c52e4e2df5ecf484c1b0b0349805896dd350cbc416bdd91"}, - {file = "Pillow-9.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:9f47eabcd2ded7698106b05c2c338672d16a6f2a485e74481f524e2a23c2794b"}, - {file = "Pillow-9.3.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:57751894f6618fd4308ed8e0c36c333e2f5469744c34729a27532b3db106ee20"}, - {file = "Pillow-9.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7db8b751ad307d7cf238f02101e8e36a128a6cb199326e867d1398067381bff4"}, - {file = "Pillow-9.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3033fbe1feb1b59394615a1cafaee85e49d01b51d54de0cbf6aa8e64182518a1"}, - {file = "Pillow-9.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:22b012ea2d065fd163ca096f4e37e47cd8b59cf4b0fd47bfca6abb93df70b34c"}, - {file = "Pillow-9.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b9a65733d103311331875c1dca05cb4606997fd33d6acfed695b1232ba1df193"}, - {file = "Pillow-9.3.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:502526a2cbfa431d9fc2a079bdd9061a2397b842bb6bc4239bb176da00993812"}, - {file = "Pillow-9.3.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:90fb88843d3902fe7c9586d439d1e8c05258f41da473952aa8b328d8b907498c"}, - {file = "Pillow-9.3.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:89dca0ce00a2b49024df6325925555d406b14aa3efc2f752dbb5940c52c56b11"}, - {file = "Pillow-9.3.0-cp311-cp311-win32.whl", hash = "sha256:3168434d303babf495d4ba58fc22d6604f6e2afb97adc6a423e917dab828939c"}, - {file = "Pillow-9.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:18498994b29e1cf86d505edcb7edbe814d133d2232d256db8c7a8ceb34d18cef"}, - {file = "Pillow-9.3.0-cp37-cp37m-macosx_10_10_x86_64.whl", hash = "sha256:772a91fc0e03eaf922c63badeca75e91baa80fe2f5f87bdaed4280662aad25c9"}, - {file = "Pillow-9.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa4107d1b306cdf8953edde0534562607fe8811b6c4d9a486298ad31de733b2"}, - {file = "Pillow-9.3.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b4012d06c846dc2b80651b120e2cdd787b013deb39c09f407727ba90015c684f"}, - {file = "Pillow-9.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:77ec3e7be99629898c9a6d24a09de089fa5356ee408cdffffe62d67bb75fdd72"}, - {file = "Pillow-9.3.0-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:6c738585d7a9961d8c2821a1eb3dcb978d14e238be3d70f0a706f7fa9316946b"}, - {file = "Pillow-9.3.0-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:828989c45c245518065a110434246c44a56a8b2b2f6347d1409c787e6e4651ee"}, - {file = "Pillow-9.3.0-cp37-cp37m-win32.whl", hash = "sha256:82409ffe29d70fd733ff3c1025a602abb3e67405d41b9403b00b01debc4c9a29"}, - {file = "Pillow-9.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:41e0051336807468be450d52b8edd12ac60bebaa97fe10c8b660f116e50b30e4"}, - {file = "Pillow-9.3.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:b03ae6f1a1878233ac620c98f3459f79fd77c7e3c2b20d460284e1fb370557d4"}, - {file = "Pillow-9.3.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4390e9ce199fc1951fcfa65795f239a8a4944117b5935a9317fb320e7767b40f"}, - {file = "Pillow-9.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40e1ce476a7804b0fb74bcfa80b0a2206ea6a882938eaba917f7a0f004b42502"}, - {file = "Pillow-9.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a0a06a052c5f37b4ed81c613a455a81f9a3a69429b4fd7bb913c3fa98abefc20"}, - {file = "Pillow-9.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03150abd92771742d4a8cd6f2fa6246d847dcd2e332a18d0c15cc75bf6703040"}, - {file = "Pillow-9.3.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:15c42fb9dea42465dfd902fb0ecf584b8848ceb28b41ee2b58f866411be33f07"}, - {file = "Pillow-9.3.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:51e0e543a33ed92db9f5ef69a0356e0b1a7a6b6a71b80df99f1d181ae5875636"}, - {file = "Pillow-9.3.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:3dd6caf940756101205dffc5367babf288a30043d35f80936f9bfb37f8355b32"}, - {file = "Pillow-9.3.0-cp38-cp38-win32.whl", hash = "sha256:f1ff2ee69f10f13a9596480335f406dd1f70c3650349e2be67ca3139280cade0"}, - {file = "Pillow-9.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:276a5ca930c913f714e372b2591a22c4bd3b81a418c0f6635ba832daec1cbcfc"}, - {file = "Pillow-9.3.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:73bd195e43f3fadecfc50c682f5055ec32ee2c933243cafbfdec69ab1aa87cad"}, - {file = "Pillow-9.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1c7c8ae3864846fc95f4611c78129301e203aaa2af813b703c55d10cc1628535"}, - {file = "Pillow-9.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2e0918e03aa0c72ea56edbb00d4d664294815aa11291a11504a377ea018330d3"}, - {file = "Pillow-9.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b0915e734b33a474d76c28e07292f196cdf2a590a0d25bcc06e64e545f2d146c"}, - {file = "Pillow-9.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af0372acb5d3598f36ec0914deed2a63f6bcdb7b606da04dc19a88d31bf0c05b"}, - {file = "Pillow-9.3.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:ad58d27a5b0262c0c19b47d54c5802db9b34d38bbf886665b626aff83c74bacd"}, - {file = "Pillow-9.3.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:97aabc5c50312afa5e0a2b07c17d4ac5e865b250986f8afe2b02d772567a380c"}, - {file = "Pillow-9.3.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:9aaa107275d8527e9d6e7670b64aabaaa36e5b6bd71a1015ddd21da0d4e06448"}, - {file = "Pillow-9.3.0-cp39-cp39-win32.whl", hash = "sha256:bac18ab8d2d1e6b4ce25e3424f709aceef668347db8637c2296bcf41acb7cf48"}, - {file = "Pillow-9.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:b472b5ea442148d1c3e2209f20f1e0bb0eb556538690fa70b5e1f79fa0ba8dc2"}, - {file = "Pillow-9.3.0-pp37-pypy37_pp73-macosx_10_10_x86_64.whl", hash = "sha256:ab388aaa3f6ce52ac1cb8e122c4bd46657c15905904b3120a6248b5b8b0bc228"}, - {file = "Pillow-9.3.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbb8e7f2abee51cef77673be97760abff1674ed32847ce04b4af90f610144c7b"}, - {file = "Pillow-9.3.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca31dd6014cb8b0b2db1e46081b0ca7d936f856da3b39744aef499db5d84d02"}, - {file = "Pillow-9.3.0-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:c7025dce65566eb6e89f56c9509d4f628fddcedb131d9465cacd3d8bac337e7e"}, - {file = "Pillow-9.3.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:ebf2029c1f464c59b8bdbe5143c79fa2045a581ac53679733d3a91d400ff9efb"}, - {file = "Pillow-9.3.0-pp38-pypy38_pp73-macosx_10_10_x86_64.whl", hash = "sha256:b59430236b8e58840a0dfb4099a0e8717ffb779c952426a69ae435ca1f57210c"}, - {file = "Pillow-9.3.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:12ce4932caf2ddf3e41d17fc9c02d67126935a44b86df6a206cf0d7161548627"}, - {file = "Pillow-9.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ae5331c23ce118c53b172fa64a4c037eb83c9165aba3a7ba9ddd3ec9fa64a699"}, - {file = "Pillow-9.3.0-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:0b07fffc13f474264c336298d1b4ce01d9c5a011415b79d4ee5527bb69ae6f65"}, - {file = "Pillow-9.3.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:073adb2ae23431d3b9bcbcff3fe698b62ed47211d0716b067385538a1b0f28b8"}, - {file = "Pillow-9.3.0.tar.gz", hash = "sha256:c935a22a557a560108d780f9a0fc426dd7459940dc54faa49d83249c8d3e760f"}, + {file = "pillow-11.0.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:6619654954dc4936fcff82db8eb6401d3159ec6be81e33c6000dfd76ae189947"}, + {file = "pillow-11.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b3c5ac4bed7519088103d9450a1107f76308ecf91d6dabc8a33a2fcfb18d0fba"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a65149d8ada1055029fcb665452b2814fe7d7082fcb0c5bed6db851cb69b2086"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88a58d8ac0cc0e7f3a014509f0455248a76629ca9b604eca7dc5927cc593c5e9"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:c26845094b1af3c91852745ae78e3ea47abf3dbcd1cf962f16b9a5fbe3ee8488"}, + {file = "pillow-11.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:1a61b54f87ab5786b8479f81c4b11f4d61702830354520837f8cc791ebba0f5f"}, + {file = "pillow-11.0.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:674629ff60030d144b7bca2b8330225a9b11c482ed408813924619c6f302fdbb"}, + {file = "pillow-11.0.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:598b4e238f13276e0008299bd2482003f48158e2b11826862b1eb2ad7c768b97"}, + {file = "pillow-11.0.0-cp310-cp310-win32.whl", hash = "sha256:9a0f748eaa434a41fccf8e1ee7a3eed68af1b690e75328fd7a60af123c193b50"}, + {file = "pillow-11.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:a5629742881bcbc1f42e840af185fd4d83a5edeb96475a575f4da50d6ede337c"}, + {file = "pillow-11.0.0-cp310-cp310-win_arm64.whl", hash = "sha256:ee217c198f2e41f184f3869f3e485557296d505b5195c513b2bfe0062dc537f1"}, + {file = "pillow-11.0.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:1c1d72714f429a521d8d2d018badc42414c3077eb187a59579f28e4270b4b0fc"}, + {file = "pillow-11.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:499c3a1b0d6fc8213519e193796eb1a86a1be4b1877d678b30f83fd979811d1a"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c8b2351c85d855293a299038e1f89db92a2f35e8d2f783489c6f0b2b5f3fe8a3"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f4dba50cfa56f910241eb7f883c20f1e7b1d8f7d91c750cd0b318bad443f4d5"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:5ddbfd761ee00c12ee1be86c9c0683ecf5bb14c9772ddbd782085779a63dd55b"}, + {file = "pillow-11.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:45c566eb10b8967d71bf1ab8e4a525e5a93519e29ea071459ce517f6b903d7fa"}, + {file = "pillow-11.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b4fd7bd29610a83a8c9b564d457cf5bd92b4e11e79a4ee4716a63c959699b306"}, + {file = "pillow-11.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:cb929ca942d0ec4fac404cbf520ee6cac37bf35be479b970c4ffadf2b6a1cad9"}, + {file = "pillow-11.0.0-cp311-cp311-win32.whl", hash = "sha256:006bcdd307cc47ba43e924099a038cbf9591062e6c50e570819743f5607404f5"}, + {file = "pillow-11.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:52a2d8323a465f84faaba5236567d212c3668f2ab53e1c74c15583cf507a0291"}, + {file = "pillow-11.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:16095692a253047fe3ec028e951fa4221a1f3ed3d80c397e83541a3037ff67c9"}, + {file = "pillow-11.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d2c0a187a92a1cb5ef2c8ed5412dd8d4334272617f532d4ad4de31e0495bd923"}, + {file = "pillow-11.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:084a07ef0821cfe4858fe86652fffac8e187b6ae677e9906e192aafcc1b69903"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8069c5179902dcdce0be9bfc8235347fdbac249d23bd90514b7a47a72d9fecf4"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f02541ef64077f22bf4924f225c0fd1248c168f86e4b7abdedd87d6ebaceab0f"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:fcb4621042ac4b7865c179bb972ed0da0218a076dc1820ffc48b1d74c1e37fe9"}, + {file = "pillow-11.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:00177a63030d612148e659b55ba99527803288cea7c75fb05766ab7981a8c1b7"}, + {file = "pillow-11.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8853a3bf12afddfdf15f57c4b02d7ded92c7a75a5d7331d19f4f9572a89c17e6"}, + {file = "pillow-11.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3107c66e43bda25359d5ef446f59c497de2b5ed4c7fdba0894f8d6cf3822dafc"}, + {file = "pillow-11.0.0-cp312-cp312-win32.whl", hash = "sha256:86510e3f5eca0ab87429dd77fafc04693195eec7fd6a137c389c3eeb4cfb77c6"}, + {file = "pillow-11.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:8ec4a89295cd6cd4d1058a5e6aec6bf51e0eaaf9714774e1bfac7cfc9051db47"}, + {file = "pillow-11.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:27a7860107500d813fcd203b4ea19b04babe79448268403172782754870dac25"}, + {file = "pillow-11.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:bcd1fb5bb7b07f64c15618c89efcc2cfa3e95f0e3bcdbaf4642509de1942a699"}, + {file = "pillow-11.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0e038b0745997c7dcaae350d35859c9715c71e92ffb7e0f4a8e8a16732150f38"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ae08bd8ffc41aebf578c2af2f9d8749d91f448b3bfd41d7d9ff573d74f2a6b2"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d69bfd8ec3219ae71bcde1f942b728903cad25fafe3100ba2258b973bd2bc1b2"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:61b887f9ddba63ddf62fd02a3ba7add935d053b6dd7d58998c630e6dbade8527"}, + {file = "pillow-11.0.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:c6a660307ca9d4867caa8d9ca2c2658ab685de83792d1876274991adec7b93fa"}, + {file = "pillow-11.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:73e3a0200cdda995c7e43dd47436c1548f87a30bb27fb871f352a22ab8dcf45f"}, + {file = "pillow-11.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fba162b8872d30fea8c52b258a542c5dfd7b235fb5cb352240c8d63b414013eb"}, + {file = "pillow-11.0.0-cp313-cp313-win32.whl", hash = "sha256:f1b82c27e89fffc6da125d5eb0ca6e68017faf5efc078128cfaa42cf5cb38798"}, + {file = "pillow-11.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:8ba470552b48e5835f1d23ecb936bb7f71d206f9dfeee64245f30c3270b994de"}, + {file = "pillow-11.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:846e193e103b41e984ac921b335df59195356ce3f71dcfd155aa79c603873b84"}, + {file = "pillow-11.0.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4ad70c4214f67d7466bea6a08061eba35c01b1b89eaa098040a35272a8efb22b"}, + {file = "pillow-11.0.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:6ec0d5af64f2e3d64a165f490d96368bb5dea8b8f9ad04487f9ab60dc4bb6003"}, + {file = "pillow-11.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c809a70e43c7977c4a42aefd62f0131823ebf7dd73556fa5d5950f5b354087e2"}, + {file = "pillow-11.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:4b60c9520f7207aaf2e1d94de026682fc227806c6e1f55bba7606d1c94dd623a"}, + {file = "pillow-11.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:1e2688958a840c822279fda0086fec1fdab2f95bf2b717b66871c4ad9859d7e8"}, + {file = "pillow-11.0.0-cp313-cp313t-win32.whl", hash = "sha256:607bbe123c74e272e381a8d1957083a9463401f7bd01287f50521ecb05a313f8"}, + {file = "pillow-11.0.0-cp313-cp313t-win_amd64.whl", hash = "sha256:5c39ed17edea3bc69c743a8dd3e9853b7509625c2462532e62baa0732163a904"}, + {file = "pillow-11.0.0-cp313-cp313t-win_arm64.whl", hash = "sha256:75acbbeb05b86bc53cbe7b7e6fe00fbcf82ad7c684b3ad82e3d711da9ba287d3"}, + {file = "pillow-11.0.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:2e46773dc9f35a1dd28bd6981332fd7f27bec001a918a72a79b4133cf5291dba"}, + {file = "pillow-11.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2679d2258b7f1192b378e2893a8a0a0ca472234d4c2c0e6bdd3380e8dfa21b6a"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eda2616eb2313cbb3eebbe51f19362eb434b18e3bb599466a1ffa76a033fb916"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20ec184af98a121fb2da42642dea8a29ec80fc3efbaefb86d8fdd2606619045d"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:8594f42df584e5b4bb9281799698403f7af489fba84c34d53d1c4bfb71b7c4e7"}, + {file = "pillow-11.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:c12b5ae868897c7338519c03049a806af85b9b8c237b7d675b8c5e089e4a618e"}, + {file = "pillow-11.0.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:70fbbdacd1d271b77b7721fe3cdd2d537bbbd75d29e6300c672ec6bb38d9672f"}, + {file = "pillow-11.0.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5178952973e588b3f1360868847334e9e3bf49d19e169bbbdfaf8398002419ae"}, + {file = "pillow-11.0.0-cp39-cp39-win32.whl", hash = "sha256:8c676b587da5673d3c75bd67dd2a8cdfeb282ca38a30f37950511766b26858c4"}, + {file = "pillow-11.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:94f3e1780abb45062287b4614a5bc0874519c86a777d4a7ad34978e86428b8dd"}, + {file = "pillow-11.0.0-cp39-cp39-win_arm64.whl", hash = "sha256:290f2cc809f9da7d6d622550bbf4c1e57518212da51b6a30fe8e0a270a5b78bd"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:1187739620f2b365de756ce086fdb3604573337cc28a0d3ac4a01ab6b2d2a6d2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:fbbcb7b57dc9c794843e3d1258c0fbf0f48656d46ffe9e09b63bbd6e8cd5d0a2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d203af30149ae339ad1b4f710d9844ed8796e97fda23ffbc4cc472968a47d0b"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21a0d3b115009ebb8ac3d2ebec5c2982cc693da935f4ab7bb5c8ebe2f47d36f2"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:73853108f56df97baf2bb8b522f3578221e56f646ba345a372c78326710d3830"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e58876c91f97b0952eb766123bfef372792ab3f4e3e1f1a2267834c2ab131734"}, + {file = "pillow-11.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:224aaa38177597bb179f3ec87eeefcce8e4f85e608025e9cfac60de237ba6316"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:5bd2d3bdb846d757055910f0a59792d33b555800813c3b39ada1829c372ccb06"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:375b8dd15a1f5d2feafff536d47e22f69625c1aa92f12b339ec0b2ca40263273"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:daffdf51ee5db69a82dd127eabecce20729e21f7a3680cf7cbb23f0829189790"}, + {file = "pillow-11.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7326a1787e3c7b0429659e0a944725e1b03eeaa10edd945a86dead1913383944"}, + {file = "pillow-11.0.0.tar.gz", hash = "sha256:72bacbaf24ac003fea9bff9837d1eedb6088758d41e100c1552930151f677739"}, ] [package.extras] -docs = ["furo", "olefile", "sphinx (>=2.4)", "sphinx-copybutton", "sphinx-issues (>=3.0.1)", "sphinx-removed-in", "sphinxext-opengraph"] +docs = ["furo", "olefile", "sphinx (>=8.1)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinxext-opengraph"] +fpx = ["olefile"] +mic = ["olefile"] tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"] +typing = ["typing-extensions"] +xmp = ["defusedxml"] [[package]] name = "platformdirs" @@ -3436,54 +3426,54 @@ files = [ [[package]] name = "pydantic" -version = "1.10.18" +version = "1.10.19" description = "Data validation and settings management using python type hints" optional = false python-versions = ">=3.7" files = [ - {file = "pydantic-1.10.18-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e405ffcc1254d76bb0e760db101ee8916b620893e6edfbfee563b3c6f7a67c02"}, - {file = "pydantic-1.10.18-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e306e280ebebc65040034bff1a0a81fd86b2f4f05daac0131f29541cafd80b80"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11d9d9b87b50338b1b7de4ebf34fd29fdb0d219dc07ade29effc74d3d2609c62"}, - {file = "pydantic-1.10.18-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b661ce52c7b5e5f600c0c3c5839e71918346af2ef20062705ae76b5c16914cab"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:c20f682defc9ef81cd7eaa485879ab29a86a0ba58acf669a78ed868e72bb89e0"}, - {file = "pydantic-1.10.18-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c5ae6b7c8483b1e0bf59e5f1843e4fd8fd405e11df7de217ee65b98eb5462861"}, - {file = "pydantic-1.10.18-cp310-cp310-win_amd64.whl", hash = "sha256:74fe19dda960b193b0eb82c1f4d2c8e5e26918d9cda858cbf3f41dd28549cb70"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:72fa46abace0a7743cc697dbb830a41ee84c9db8456e8d77a46d79b537efd7ec"}, - {file = "pydantic-1.10.18-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ef0fe7ad7cbdb5f372463d42e6ed4ca9c443a52ce544472d8842a0576d830da5"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a00e63104346145389b8e8f500bc6a241e729feaf0559b88b8aa513dd2065481"}, - {file = "pydantic-1.10.18-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae6fa2008e1443c46b7b3a5eb03800121868d5ab6bc7cda20b5df3e133cde8b3"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:9f463abafdc92635da4b38807f5b9972276be7c8c5121989768549fceb8d2588"}, - {file = "pydantic-1.10.18-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3445426da503c7e40baccefb2b2989a0c5ce6b163679dd75f55493b460f05a8f"}, - {file = "pydantic-1.10.18-cp311-cp311-win_amd64.whl", hash = "sha256:467a14ee2183bc9c902579bb2f04c3d3dac00eff52e252850509a562255b2a33"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:efbc8a7f9cb5fe26122acba1852d8dcd1e125e723727c59dcd244da7bdaa54f2"}, - {file = "pydantic-1.10.18-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:24a4a159d0f7a8e26bf6463b0d3d60871d6a52eac5bb6a07a7df85c806f4c048"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b74be007703547dc52e3c37344d130a7bfacca7df112a9e5ceeb840a9ce195c7"}, - {file = "pydantic-1.10.18-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fcb20d4cb355195c75000a49bb4a31d75e4295200df620f454bbc6bdf60ca890"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:46f379b8cb8a3585e3f61bf9ae7d606c70d133943f339d38b76e041ec234953f"}, - {file = "pydantic-1.10.18-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:cbfbca662ed3729204090c4d09ee4beeecc1a7ecba5a159a94b5a4eb24e3759a"}, - {file = "pydantic-1.10.18-cp312-cp312-win_amd64.whl", hash = "sha256:c6d0a9f9eccaf7f438671a64acf654ef0d045466e63f9f68a579e2383b63f357"}, - {file = "pydantic-1.10.18-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3d5492dbf953d7d849751917e3b2433fb26010d977aa7a0765c37425a4026ff1"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe734914977eed33033b70bfc097e1baaffb589517863955430bf2e0846ac30f"}, - {file = "pydantic-1.10.18-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:15fdbe568beaca9aacfccd5ceadfb5f1a235087a127e8af5e48df9d8a45ae85c"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c3e742f62198c9eb9201781fbebe64533a3bbf6a76a91b8d438d62b813079dbc"}, - {file = "pydantic-1.10.18-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:19a3bd00b9dafc2cd7250d94d5b578edf7a0bd7daf102617153ff9a8fa37871c"}, - {file = "pydantic-1.10.18-cp37-cp37m-win_amd64.whl", hash = "sha256:2ce3fcf75b2bae99aa31bd4968de0474ebe8c8258a0110903478bd83dfee4e3b"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:335a32d72c51a313b33fa3a9b0fe283503272ef6467910338e123f90925f0f03"}, - {file = "pydantic-1.10.18-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:34a3613c7edb8c6fa578e58e9abe3c0f5e7430e0fc34a65a415a1683b9c32d9a"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9ee4e6ca1d9616797fa2e9c0bfb8815912c7d67aca96f77428e316741082a1b"}, - {file = "pydantic-1.10.18-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23e8ec1ce4e57b4f441fc91e3c12adba023fedd06868445a5b5f1d48f0ab3682"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:44ae8a3e35a54d2e8fa88ed65e1b08967a9ef8c320819a969bfa09ce5528fafe"}, - {file = "pydantic-1.10.18-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5389eb3b48a72da28c6e061a247ab224381435256eb541e175798483368fdd3"}, - {file = "pydantic-1.10.18-cp38-cp38-win_amd64.whl", hash = "sha256:069b9c9fc645474d5ea3653788b544a9e0ccd3dca3ad8c900c4c6eac844b4620"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:80b982d42515632eb51f60fa1d217dfe0729f008e81a82d1544cc392e0a50ddf"}, - {file = "pydantic-1.10.18-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:aad8771ec8dbf9139b01b56f66386537c6fe4e76c8f7a47c10261b69ad25c2c9"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941a2eb0a1509bd7f31e355912eb33b698eb0051730b2eaf9e70e2e1589cae1d"}, - {file = "pydantic-1.10.18-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65f7361a09b07915a98efd17fdec23103307a54db2000bb92095457ca758d485"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6951f3f47cb5ca4da536ab161ac0163cab31417d20c54c6de5ddcab8bc813c3f"}, - {file = "pydantic-1.10.18-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7a4c5eec138a9b52c67f664c7d51d4c7234c5ad65dd8aacd919fb47445a62c86"}, - {file = "pydantic-1.10.18-cp39-cp39-win_amd64.whl", hash = "sha256:49e26c51ca854286bffc22b69787a8d4063a62bf7d83dc21d44d2ff426108518"}, - {file = "pydantic-1.10.18-py3-none-any.whl", hash = "sha256:06a189b81ffc52746ec9c8c007f16e5167c8b0a696e1a726369327e3db7b2a82"}, - {file = "pydantic-1.10.18.tar.gz", hash = "sha256:baebdff1907d1d96a139c25136a9bb7d17e118f133a76a2ef3b845e831e3403a"}, + {file = "pydantic-1.10.19-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a415b9e95fa602b10808113967f72b2da8722061265d6af69268c111c254832d"}, + {file = "pydantic-1.10.19-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:11965f421f7eb026439d4eb7464e9182fe6d69c3d4d416e464a4485d1ba61ab6"}, + {file = "pydantic-1.10.19-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5bb81fcfc6d5bff62cd786cbd87480a11d23f16d5376ad2e057c02b3b44df96"}, + {file = "pydantic-1.10.19-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:83ee8c9916689f8e6e7d90161e6663ac876be2efd32f61fdcfa3a15e87d4e413"}, + {file = "pydantic-1.10.19-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:0399094464ae7f28482de22383e667625e38e1516d6b213176df1acdd0c477ea"}, + {file = "pydantic-1.10.19-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8b2cf5e26da84f2d2dee3f60a3f1782adedcee785567a19b68d0af7e1534bd1f"}, + {file = "pydantic-1.10.19-cp310-cp310-win_amd64.whl", hash = "sha256:1fc8cc264afaf47ae6a9bcbd36c018d0c6b89293835d7fb0e5e1a95898062d59"}, + {file = "pydantic-1.10.19-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d7a8a1dd68bac29f08f0a3147de1885f4dccec35d4ea926e6e637fac03cdb4b3"}, + {file = "pydantic-1.10.19-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:07d00ca5ef0de65dd274005433ce2bb623730271d495a7d190a91c19c5679d34"}, + {file = "pydantic-1.10.19-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad57004e5d73aee36f1e25e4e73a4bc853b473a1c30f652dc8d86b0a987ffce3"}, + {file = "pydantic-1.10.19-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dce355fe7ae53e3090f7f5fa242423c3a7b53260747aa398b4b3aaf8b25f41c3"}, + {file = "pydantic-1.10.19-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:0d32227ea9a3bf537a2273fd2fdb6d64ab4d9b83acd9e4e09310a777baaabb98"}, + {file = "pydantic-1.10.19-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e351df83d1c9cffa53d4e779009a093be70f1d5c6bb7068584086f6a19042526"}, + {file = "pydantic-1.10.19-cp311-cp311-win_amd64.whl", hash = "sha256:d8d72553d2f3f57ce547de4fa7dc8e3859927784ab2c88343f1fc1360ff17a08"}, + {file = "pydantic-1.10.19-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d5b5b7c6bafaef90cbb7dafcb225b763edd71d9e22489647ee7df49d6d341890"}, + {file = "pydantic-1.10.19-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:570ad0aeaf98b5e33ff41af75aba2ef6604ee25ce0431ecd734a28e74a208555"}, + {file = "pydantic-1.10.19-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0890fbd7fec9e151c7512941243d830b2d6076d5df159a2030952d480ab80a4e"}, + {file = "pydantic-1.10.19-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ec5c44e6e9eac5128a9bfd21610df3b8c6b17343285cc185105686888dc81206"}, + {file = "pydantic-1.10.19-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:6eb56074b11a696e0b66c7181da682e88c00e5cebe6570af8013fcae5e63e186"}, + {file = "pydantic-1.10.19-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:9d7d48fbc5289efd23982a0d68e973a1f37d49064ccd36d86de4543aff21e086"}, + {file = "pydantic-1.10.19-cp312-cp312-win_amd64.whl", hash = "sha256:fd34012691fbd4e67bdf4accb1f0682342101015b78327eaae3543583fcd451e"}, + {file = "pydantic-1.10.19-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:4a5d5b877c7d3d9e17399571a8ab042081d22fe6904416a8b20f8af5909e6c8f"}, + {file = "pydantic-1.10.19-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c46f58ef2df958ed2ea7437a8be0897d5efe9ee480818405338c7da88186fb3"}, + {file = "pydantic-1.10.19-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6d8a38a44bb6a15810084316ed69c854a7c06e0c99c5429f1d664ad52cec353c"}, + {file = "pydantic-1.10.19-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:a82746c6d6e91ca17e75f7f333ed41d70fce93af520a8437821dec3ee52dfb10"}, + {file = "pydantic-1.10.19-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:566bebdbe6bc0ac593fa0f67d62febbad9f8be5433f686dc56401ba4aab034e3"}, + {file = "pydantic-1.10.19-cp37-cp37m-win_amd64.whl", hash = "sha256:22a1794e01591884741be56c6fba157c4e99dcc9244beb5a87bd4aa54b84ea8b"}, + {file = "pydantic-1.10.19-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:076c49e24b73d346c45f9282d00dbfc16eef7ae27c970583d499f11110d9e5b0"}, + {file = "pydantic-1.10.19-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:5d4320510682d5a6c88766b2a286d03b87bd3562bf8d78c73d63bab04b21e7b4"}, + {file = "pydantic-1.10.19-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e66aa0fa7f8aa9d0a620361834f6eb60d01d3e9cea23ca1a92cda99e6f61dac"}, + {file = "pydantic-1.10.19-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d216f8d0484d88ab72ab45d699ac669fe031275e3fa6553e3804e69485449fa0"}, + {file = "pydantic-1.10.19-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:9f28a81978e936136c44e6a70c65bde7548d87f3807260f73aeffbf76fb94c2f"}, + {file = "pydantic-1.10.19-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d3449633c207ec3d2d672eedb3edbe753e29bd4e22d2e42a37a2c1406564c20f"}, + {file = "pydantic-1.10.19-cp38-cp38-win_amd64.whl", hash = "sha256:7ea24e8614f541d69ea72759ff635df0e612b7dc9d264d43f51364df310081a3"}, + {file = "pydantic-1.10.19-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:573254d844f3e64093f72fcd922561d9c5696821ff0900a0db989d8c06ab0c25"}, + {file = "pydantic-1.10.19-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ff09600cebe957ecbb4a27496fe34c1d449e7957ed20a202d5029a71a8af2e35"}, + {file = "pydantic-1.10.19-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4739c206bfb6bb2bdc78dcd40bfcebb2361add4ceac6d170e741bb914e9eff0f"}, + {file = "pydantic-1.10.19-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0bfb5b378b78229119d66ced6adac2e933c67a0aa1d0a7adffbe432f3ec14ce4"}, + {file = "pydantic-1.10.19-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7f31742c95e3f9443b8c6fa07c119623e61d76603be9c0d390bcf7e888acabcb"}, + {file = "pydantic-1.10.19-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c6444368b651a14c2ce2fb22145e1496f7ab23cbdb978590d47c8d34a7bc0289"}, + {file = "pydantic-1.10.19-cp39-cp39-win_amd64.whl", hash = "sha256:945407f4d08cd12485757a281fca0e5b41408606228612f421aa4ea1b63a095d"}, + {file = "pydantic-1.10.19-py3-none-any.whl", hash = "sha256:2206a1752d9fac011e95ca83926a269fb0ef5536f7e053966d058316e24d929f"}, + {file = "pydantic-1.10.19.tar.gz", hash = "sha256:fea36c2065b7a1d28c6819cc2e93387b43dd5d3cf5a1e82d8132ee23f36d1f10"}, ] [package.dependencies] @@ -3939,109 +3929,6 @@ files = [ attrs = ">=22.2.0" rpds-py = ">=0.7.0" -[[package]] -name = "regex" -version = "2024.9.11" -description = "Alternative regular expression module, to replace re." -optional = false -python-versions = ">=3.8" -files = [ - {file = "regex-2024.9.11-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:1494fa8725c285a81d01dc8c06b55287a1ee5e0e382d8413adc0a9197aac6408"}, - {file = "regex-2024.9.11-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0e12c481ad92d129c78f13a2a3662317e46ee7ef96c94fd332e1c29131875b7d"}, - {file = "regex-2024.9.11-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:16e13a7929791ac1216afde26f712802e3df7bf0360b32e4914dca3ab8baeea5"}, - {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:46989629904bad940bbec2106528140a218b4a36bb3042d8406980be1941429c"}, - {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a906ed5e47a0ce5f04b2c981af1c9acf9e8696066900bf03b9d7879a6f679fc8"}, - {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e9a091b0550b3b0207784a7d6d0f1a00d1d1c8a11699c1a4d93db3fbefc3ad35"}, - {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ddcd9a179c0a6fa8add279a4444015acddcd7f232a49071ae57fa6e278f1f71"}, - {file = "regex-2024.9.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6b41e1adc61fa347662b09398e31ad446afadff932a24807d3ceb955ed865cc8"}, - {file = "regex-2024.9.11-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ced479f601cd2f8ca1fd7b23925a7e0ad512a56d6e9476f79b8f381d9d37090a"}, - {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:635a1d96665f84b292e401c3d62775851aedc31d4f8784117b3c68c4fcd4118d"}, - {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:c0256beda696edcf7d97ef16b2a33a8e5a875affd6fa6567b54f7c577b30a137"}, - {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:3ce4f1185db3fbde8ed8aa223fc9620f276c58de8b0d4f8cc86fd1360829edb6"}, - {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:09d77559e80dcc9d24570da3745ab859a9cf91953062e4ab126ba9d5993688ca"}, - {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7a22ccefd4db3f12b526eccb129390942fe874a3a9fdbdd24cf55773a1faab1a"}, - {file = "regex-2024.9.11-cp310-cp310-win32.whl", hash = "sha256:f745ec09bc1b0bd15cfc73df6fa4f726dcc26bb16c23a03f9e3367d357eeedd0"}, - {file = "regex-2024.9.11-cp310-cp310-win_amd64.whl", hash = "sha256:01c2acb51f8a7d6494c8c5eafe3d8e06d76563d8a8a4643b37e9b2dd8a2ff623"}, - {file = "regex-2024.9.11-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2cce2449e5927a0bf084d346da6cd5eb016b2beca10d0013ab50e3c226ffc0df"}, - {file = "regex-2024.9.11-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3b37fa423beefa44919e009745ccbf353d8c981516e807995b2bd11c2c77d268"}, - {file = "regex-2024.9.11-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:64ce2799bd75039b480cc0360907c4fb2f50022f030bf9e7a8705b636e408fad"}, - {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a4cc92bb6db56ab0c1cbd17294e14f5e9224f0cc6521167ef388332604e92679"}, - {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d05ac6fa06959c4172eccd99a222e1fbf17b5670c4d596cb1e5cde99600674c4"}, - {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:040562757795eeea356394a7fb13076ad4f99d3c62ab0f8bdfb21f99a1f85664"}, - {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6113c008a7780792efc80f9dfe10ba0cd043cbf8dc9a76ef757850f51b4edc50"}, - {file = "regex-2024.9.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8e5fb5f77c8745a60105403a774fe2c1759b71d3e7b4ca237a5e67ad066c7199"}, - {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:54d9ff35d4515debf14bc27f1e3b38bfc453eff3220f5bce159642fa762fe5d4"}, - {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:df5cbb1fbc74a8305b6065d4ade43b993be03dbe0f8b30032cced0d7740994bd"}, - {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:7fb89ee5d106e4a7a51bce305ac4efb981536301895f7bdcf93ec92ae0d91c7f"}, - {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:a738b937d512b30bf75995c0159c0ddf9eec0775c9d72ac0202076c72f24aa96"}, - {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e28f9faeb14b6f23ac55bfbbfd3643f5c7c18ede093977f1df249f73fd22c7b1"}, - {file = "regex-2024.9.11-cp311-cp311-win32.whl", hash = "sha256:18e707ce6c92d7282dfce370cd205098384b8ee21544e7cb29b8aab955b66fa9"}, - {file = "regex-2024.9.11-cp311-cp311-win_amd64.whl", hash = "sha256:313ea15e5ff2a8cbbad96ccef6be638393041b0a7863183c2d31e0c6116688cf"}, - {file = "regex-2024.9.11-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:b0d0a6c64fcc4ef9c69bd5b3b3626cc3776520a1637d8abaa62b9edc147a58f7"}, - {file = "regex-2024.9.11-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:49b0e06786ea663f933f3710a51e9385ce0cba0ea56b67107fd841a55d56a231"}, - {file = "regex-2024.9.11-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5b513b6997a0b2f10e4fd3a1313568e373926e8c252bd76c960f96fd039cd28d"}, - {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee439691d8c23e76f9802c42a95cfeebf9d47cf4ffd06f18489122dbb0a7ad64"}, - {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a8f877c89719d759e52783f7fe6e1c67121076b87b40542966c02de5503ace42"}, - {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23b30c62d0f16827f2ae9f2bb87619bc4fba2044911e2e6c2eb1af0161cdb766"}, - {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85ab7824093d8f10d44330fe1e6493f756f252d145323dd17ab6b48733ff6c0a"}, - {file = "regex-2024.9.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8dee5b4810a89447151999428fe096977346cf2f29f4d5e29609d2e19e0199c9"}, - {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:98eeee2f2e63edae2181c886d7911ce502e1292794f4c5ee71e60e23e8d26b5d"}, - {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:57fdd2e0b2694ce6fc2e5ccf189789c3e2962916fb38779d3e3521ff8fe7a822"}, - {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:d552c78411f60b1fdaafd117a1fca2f02e562e309223b9d44b7de8be451ec5e0"}, - {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:a0b2b80321c2ed3fcf0385ec9e51a12253c50f146fddb2abbb10f033fe3d049a"}, - {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:18406efb2f5a0e57e3a5881cd9354c1512d3bb4f5c45d96d110a66114d84d23a"}, - {file = "regex-2024.9.11-cp312-cp312-win32.whl", hash = "sha256:e464b467f1588e2c42d26814231edecbcfe77f5ac414d92cbf4e7b55b2c2a776"}, - {file = "regex-2024.9.11-cp312-cp312-win_amd64.whl", hash = "sha256:9e8719792ca63c6b8340380352c24dcb8cd7ec49dae36e963742a275dfae6009"}, - {file = "regex-2024.9.11-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:c157bb447303070f256e084668b702073db99bbb61d44f85d811025fcf38f784"}, - {file = "regex-2024.9.11-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:4db21ece84dfeefc5d8a3863f101995de646c6cb0536952c321a2650aa202c36"}, - {file = "regex-2024.9.11-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:220e92a30b426daf23bb67a7962900ed4613589bab80382be09b48896d211e92"}, - {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eb1ae19e64c14c7ec1995f40bd932448713d3c73509e82d8cd7744dc00e29e86"}, - {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f47cd43a5bfa48f86925fe26fbdd0a488ff15b62468abb5d2a1e092a4fb10e85"}, - {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9d4a76b96f398697fe01117093613166e6aa8195d63f1b4ec3f21ab637632963"}, - {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ea51dcc0835eea2ea31d66456210a4e01a076d820e9039b04ae8d17ac11dee6"}, - {file = "regex-2024.9.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b7aaa315101c6567a9a45d2839322c51c8d6e81f67683d529512f5bcfb99c802"}, - {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c57d08ad67aba97af57a7263c2d9006d5c404d721c5f7542f077f109ec2a4a29"}, - {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:f8404bf61298bb6f8224bb9176c1424548ee1181130818fcd2cbffddc768bed8"}, - {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:dd4490a33eb909ef5078ab20f5f000087afa2a4daa27b4c072ccb3cb3050ad84"}, - {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:eee9130eaad130649fd73e5cd92f60e55708952260ede70da64de420cdcad554"}, - {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a2644a93da36c784e546de579ec1806bfd2763ef47babc1b03d765fe560c9f8"}, - {file = "regex-2024.9.11-cp313-cp313-win32.whl", hash = "sha256:e997fd30430c57138adc06bba4c7c2968fb13d101e57dd5bb9355bf8ce3fa7e8"}, - {file = "regex-2024.9.11-cp313-cp313-win_amd64.whl", hash = "sha256:042c55879cfeb21a8adacc84ea347721d3d83a159da6acdf1116859e2427c43f"}, - {file = "regex-2024.9.11-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:35f4a6f96aa6cb3f2f7247027b07b15a374f0d5b912c0001418d1d55024d5cb4"}, - {file = "regex-2024.9.11-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:55b96e7ce3a69a8449a66984c268062fbaa0d8ae437b285428e12797baefce7e"}, - {file = "regex-2024.9.11-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cb130fccd1a37ed894824b8c046321540263013da72745d755f2d35114b81a60"}, - {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:323c1f04be6b2968944d730e5c2091c8c89767903ecaa135203eec4565ed2b2b"}, - {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:be1c8ed48c4c4065ecb19d882a0ce1afe0745dfad8ce48c49586b90a55f02366"}, - {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5b029322e6e7b94fff16cd120ab35a253236a5f99a79fb04fda7ae71ca20ae8"}, - {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6fff13ef6b5f29221d6904aa816c34701462956aa72a77f1f151a8ec4f56aeb"}, - {file = "regex-2024.9.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:587d4af3979376652010e400accc30404e6c16b7df574048ab1f581af82065e4"}, - {file = "regex-2024.9.11-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:079400a8269544b955ffa9e31f186f01d96829110a3bf79dc338e9910f794fca"}, - {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:f9268774428ec173654985ce55fc6caf4c6d11ade0f6f914d48ef4719eb05ebb"}, - {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:23f9985c8784e544d53fc2930fc1ac1a7319f5d5332d228437acc9f418f2f168"}, - {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:ae2941333154baff9838e88aa71c1d84f4438189ecc6021a12c7573728b5838e"}, - {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:e93f1c331ca8e86fe877a48ad64e77882c0c4da0097f2212873a69bbfea95d0c"}, - {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:846bc79ee753acf93aef4184c040d709940c9d001029ceb7b7a52747b80ed2dd"}, - {file = "regex-2024.9.11-cp38-cp38-win32.whl", hash = "sha256:c94bb0a9f1db10a1d16c00880bdebd5f9faf267273b8f5bd1878126e0fbde771"}, - {file = "regex-2024.9.11-cp38-cp38-win_amd64.whl", hash = "sha256:2b08fce89fbd45664d3df6ad93e554b6c16933ffa9d55cb7e01182baaf971508"}, - {file = "regex-2024.9.11-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:07f45f287469039ffc2c53caf6803cd506eb5f5f637f1d4acb37a738f71dd066"}, - {file = "regex-2024.9.11-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4838e24ee015101d9f901988001038f7f0d90dc0c3b115541a1365fb439add62"}, - {file = "regex-2024.9.11-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6edd623bae6a737f10ce853ea076f56f507fd7726bee96a41ee3d68d347e4d16"}, - {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c69ada171c2d0e97a4b5aa78fbb835e0ffbb6b13fc5da968c09811346564f0d3"}, - {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:02087ea0a03b4af1ed6ebab2c54d7118127fee8d71b26398e8e4b05b78963199"}, - {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:69dee6a020693d12a3cf892aba4808fe168d2a4cef368eb9bf74f5398bfd4ee8"}, - {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:297f54910247508e6e5cae669f2bc308985c60540a4edd1c77203ef19bfa63ca"}, - {file = "regex-2024.9.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ecea58b43a67b1b79805f1a0255730edaf5191ecef84dbc4cc85eb30bc8b63b9"}, - {file = "regex-2024.9.11-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:eab4bb380f15e189d1313195b062a6aa908f5bd687a0ceccd47c8211e9cf0d4a"}, - {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:0cbff728659ce4bbf4c30b2a1be040faafaa9eca6ecde40aaff86f7889f4ab39"}, - {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:54c4a097b8bc5bb0dfc83ae498061d53ad7b5762e00f4adaa23bee22b012e6ba"}, - {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:73d6d2f64f4d894c96626a75578b0bf7d9e56dcda8c3d037a2118fdfe9b1c664"}, - {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:e53b5fbab5d675aec9f0c501274c467c0f9a5d23696cfc94247e1fb56501ed89"}, - {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0ffbcf9221e04502fc35e54d1ce9567541979c3fdfb93d2c554f0ca583a19b35"}, - {file = "regex-2024.9.11-cp39-cp39-win32.whl", hash = "sha256:e4c22e1ac1f1ec1e09f72e6c44d8f2244173db7eb9629cc3a346a8d7ccc31142"}, - {file = "regex-2024.9.11-cp39-cp39-win_amd64.whl", hash = "sha256:faa3c142464efec496967359ca99696c896c591c56c53506bac1ad465f66e919"}, - {file = "regex-2024.9.11.tar.gz", hash = "sha256:6c188c307e8433bcb63dc1915022deb553b4203a70722fc542c363bf120a01fd"}, -] - [[package]] name = "requests" version = "2.32.3" @@ -4090,114 +3977,101 @@ files = [ [[package]] name = "rpds-py" -version = "0.20.1" +version = "0.21.0" description = "Python bindings to Rust's persistent data structures (rpds)" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "rpds_py-0.20.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:a649dfd735fff086e8a9d0503a9f0c7d01b7912a333c7ae77e1515c08c146dad"}, - {file = "rpds_py-0.20.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f16bc1334853e91ddaaa1217045dd7be166170beec337576818461268a3de67f"}, - {file = "rpds_py-0.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:14511a539afee6f9ab492b543060c7491c99924314977a55c98bfa2ee29ce78c"}, - {file = "rpds_py-0.20.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3ccb8ac2d3c71cda472b75af42818981bdacf48d2e21c36331b50b4f16930163"}, - {file = "rpds_py-0.20.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c142b88039b92e7e0cb2552e8967077e3179b22359e945574f5e2764c3953dcf"}, - {file = "rpds_py-0.20.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f19169781dddae7478a32301b499b2858bc52fc45a112955e798ee307e294977"}, - {file = "rpds_py-0.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13c56de6518e14b9bf6edde23c4c39dac5b48dcf04160ea7bce8fca8397cdf86"}, - {file = "rpds_py-0.20.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:925d176a549f4832c6f69fa6026071294ab5910e82a0fe6c6228fce17b0706bd"}, - {file = "rpds_py-0.20.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:78f0b6877bfce7a3d1ff150391354a410c55d3cdce386f862926a4958ad5ab7e"}, - {file = "rpds_py-0.20.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3dd645e2b0dcb0fd05bf58e2e54c13875847687d0b71941ad2e757e5d89d4356"}, - {file = "rpds_py-0.20.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:4f676e21db2f8c72ff0936f895271e7a700aa1f8d31b40e4e43442ba94973899"}, - {file = "rpds_py-0.20.1-cp310-none-win32.whl", hash = "sha256:648386ddd1e19b4a6abab69139b002bc49ebf065b596119f8f37c38e9ecee8ff"}, - {file = "rpds_py-0.20.1-cp310-none-win_amd64.whl", hash = "sha256:d9ecb51120de61e4604650666d1f2b68444d46ae18fd492245a08f53ad2b7711"}, - {file = "rpds_py-0.20.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:762703bdd2b30983c1d9e62b4c88664df4a8a4d5ec0e9253b0231171f18f6d75"}, - {file = "rpds_py-0.20.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0b581f47257a9fce535c4567782a8976002d6b8afa2c39ff616edf87cbeff712"}, - {file = "rpds_py-0.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:842c19a6ce894493563c3bd00d81d5100e8e57d70209e84d5491940fdb8b9e3a"}, - {file = "rpds_py-0.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:42cbde7789f5c0bcd6816cb29808e36c01b960fb5d29f11e052215aa85497c93"}, - {file = "rpds_py-0.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6c8e9340ce5a52f95fa7d3b552b35c7e8f3874d74a03a8a69279fd5fca5dc751"}, - {file = "rpds_py-0.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ba6f89cac95c0900d932c9efb7f0fb6ca47f6687feec41abcb1bd5e2bd45535"}, - {file = "rpds_py-0.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4a916087371afd9648e1962e67403c53f9c49ca47b9680adbeef79da3a7811b0"}, - {file = "rpds_py-0.20.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:200a23239781f46149e6a415f1e870c5ef1e712939fe8fa63035cd053ac2638e"}, - {file = "rpds_py-0.20.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:58b1d5dd591973d426cbb2da5e27ba0339209832b2f3315928c9790e13f159e8"}, - {file = "rpds_py-0.20.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:6b73c67850ca7cae0f6c56f71e356d7e9fa25958d3e18a64927c2d930859b8e4"}, - {file = "rpds_py-0.20.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d8761c3c891cc51e90bc9926d6d2f59b27beaf86c74622c8979380a29cc23ac3"}, - {file = "rpds_py-0.20.1-cp311-none-win32.whl", hash = "sha256:cd945871335a639275eee904caef90041568ce3b42f402c6959b460d25ae8732"}, - {file = "rpds_py-0.20.1-cp311-none-win_amd64.whl", hash = "sha256:7e21b7031e17c6b0e445f42ccc77f79a97e2687023c5746bfb7a9e45e0921b84"}, - {file = "rpds_py-0.20.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:36785be22066966a27348444b40389f8444671630063edfb1a2eb04318721e17"}, - {file = "rpds_py-0.20.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:142c0a5124d9bd0e2976089484af5c74f47bd3298f2ed651ef54ea728d2ea42c"}, - {file = "rpds_py-0.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dbddc10776ca7ebf2a299c41a4dde8ea0d8e3547bfd731cb87af2e8f5bf8962d"}, - {file = "rpds_py-0.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:15a842bb369e00295392e7ce192de9dcbf136954614124a667f9f9f17d6a216f"}, - {file = "rpds_py-0.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:be5ef2f1fc586a7372bfc355986226484e06d1dc4f9402539872c8bb99e34b01"}, - {file = "rpds_py-0.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbcf360c9e3399b056a238523146ea77eeb2a596ce263b8814c900263e46031a"}, - {file = "rpds_py-0.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ecd27a66740ffd621d20b9a2f2b5ee4129a56e27bfb9458a3bcc2e45794c96cb"}, - {file = "rpds_py-0.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d0b937b2a1988f184a3e9e577adaa8aede21ec0b38320d6009e02bd026db04fa"}, - {file = "rpds_py-0.20.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6889469bfdc1eddf489729b471303739bf04555bb151fe8875931f8564309afc"}, - {file = "rpds_py-0.20.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:19b73643c802f4eaf13d97f7855d0fb527fbc92ab7013c4ad0e13a6ae0ed23bd"}, - {file = "rpds_py-0.20.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3c6afcf2338e7f374e8edc765c79fbcb4061d02b15dd5f8f314a4af2bdc7feb5"}, - {file = "rpds_py-0.20.1-cp312-none-win32.whl", hash = "sha256:dc73505153798c6f74854aba69cc75953888cf9866465196889c7cdd351e720c"}, - {file = "rpds_py-0.20.1-cp312-none-win_amd64.whl", hash = "sha256:8bbe951244a838a51289ee53a6bae3a07f26d4e179b96fc7ddd3301caf0518eb"}, - {file = "rpds_py-0.20.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:6ca91093a4a8da4afae7fe6a222c3b53ee4eef433ebfee4d54978a103435159e"}, - {file = "rpds_py-0.20.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:b9c2fe36d1f758b28121bef29ed1dee9b7a2453e997528e7d1ac99b94892527c"}, - {file = "rpds_py-0.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f009c69bc8c53db5dfab72ac760895dc1f2bc1b62ab7408b253c8d1ec52459fc"}, - {file = "rpds_py-0.20.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6740a3e8d43a32629bb9b009017ea5b9e713b7210ba48ac8d4cb6d99d86c8ee8"}, - {file = "rpds_py-0.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:32b922e13d4c0080d03e7b62991ad7f5007d9cd74e239c4b16bc85ae8b70252d"}, - {file = "rpds_py-0.20.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe00a9057d100e69b4ae4a094203a708d65b0f345ed546fdef86498bf5390982"}, - {file = "rpds_py-0.20.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:49fe9b04b6fa685bd39237d45fad89ba19e9163a1ccaa16611a812e682913496"}, - {file = "rpds_py-0.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:aa7ac11e294304e615b43f8c441fee5d40094275ed7311f3420d805fde9b07b4"}, - {file = "rpds_py-0.20.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6aa97af1558a9bef4025f8f5d8c60d712e0a3b13a2fe875511defc6ee77a1ab7"}, - {file = "rpds_py-0.20.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:483b29f6f7ffa6af845107d4efe2e3fa8fb2693de8657bc1849f674296ff6a5a"}, - {file = "rpds_py-0.20.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:37fe0f12aebb6a0e3e17bb4cd356b1286d2d18d2e93b2d39fe647138458b4bcb"}, - {file = "rpds_py-0.20.1-cp313-none-win32.whl", hash = "sha256:a624cc00ef2158e04188df5e3016385b9353638139a06fb77057b3498f794782"}, - {file = "rpds_py-0.20.1-cp313-none-win_amd64.whl", hash = "sha256:b71b8666eeea69d6363248822078c075bac6ed135faa9216aa85f295ff009b1e"}, - {file = "rpds_py-0.20.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:5b48e790e0355865197ad0aca8cde3d8ede347831e1959e158369eb3493d2191"}, - {file = "rpds_py-0.20.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3e310838a5801795207c66c73ea903deda321e6146d6f282e85fa7e3e4854804"}, - {file = "rpds_py-0.20.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2249280b870e6a42c0d972339e9cc22ee98730a99cd7f2f727549af80dd5a963"}, - {file = "rpds_py-0.20.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e79059d67bea28b53d255c1437b25391653263f0e69cd7dec170d778fdbca95e"}, - {file = "rpds_py-0.20.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2b431c777c9653e569986ecf69ff4a5dba281cded16043d348bf9ba505486f36"}, - {file = "rpds_py-0.20.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:da584ff96ec95e97925174eb8237e32f626e7a1a97888cdd27ee2f1f24dd0ad8"}, - {file = "rpds_py-0.20.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:02a0629ec053fc013808a85178524e3cb63a61dbc35b22499870194a63578fb9"}, - {file = "rpds_py-0.20.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fbf15aff64a163db29a91ed0868af181d6f68ec1a3a7d5afcfe4501252840bad"}, - {file = "rpds_py-0.20.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:07924c1b938798797d60c6308fa8ad3b3f0201802f82e4a2c41bb3fafb44cc28"}, - {file = "rpds_py-0.20.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:4a5a844f68776a7715ecb30843b453f07ac89bad393431efbf7accca3ef599c1"}, - {file = "rpds_py-0.20.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:518d2ca43c358929bf08f9079b617f1c2ca6e8848f83c1225c88caeac46e6cbc"}, - {file = "rpds_py-0.20.1-cp38-none-win32.whl", hash = "sha256:3aea7eed3e55119635a74bbeb80b35e776bafccb70d97e8ff838816c124539f1"}, - {file = "rpds_py-0.20.1-cp38-none-win_amd64.whl", hash = "sha256:7dca7081e9a0c3b6490a145593f6fe3173a94197f2cb9891183ef75e9d64c425"}, - {file = "rpds_py-0.20.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:b41b6321805c472f66990c2849e152aff7bc359eb92f781e3f606609eac877ad"}, - {file = "rpds_py-0.20.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0a90c373ea2975519b58dece25853dbcb9779b05cc46b4819cb1917e3b3215b6"}, - {file = "rpds_py-0.20.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:16d4477bcb9fbbd7b5b0e4a5d9b493e42026c0bf1f06f723a9353f5153e75d30"}, - {file = "rpds_py-0.20.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:84b8382a90539910b53a6307f7c35697bc7e6ffb25d9c1d4e998a13e842a5e83"}, - {file = "rpds_py-0.20.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4888e117dd41b9d34194d9e31631af70d3d526efc363085e3089ab1a62c32ed1"}, - {file = "rpds_py-0.20.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5265505b3d61a0f56618c9b941dc54dc334dc6e660f1592d112cd103d914a6db"}, - {file = "rpds_py-0.20.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e75ba609dba23f2c95b776efb9dd3f0b78a76a151e96f96cc5b6b1b0004de66f"}, - {file = "rpds_py-0.20.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1791ff70bc975b098fe6ecf04356a10e9e2bd7dc21fa7351c1742fdeb9b4966f"}, - {file = "rpds_py-0.20.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d126b52e4a473d40232ec2052a8b232270ed1f8c9571aaf33f73a14cc298c24f"}, - {file = "rpds_py-0.20.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:c14937af98c4cc362a1d4374806204dd51b1e12dded1ae30645c298e5a5c4cb1"}, - {file = "rpds_py-0.20.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:3d089d0b88996df627693639d123c8158cff41c0651f646cd8fd292c7da90eaf"}, - {file = "rpds_py-0.20.1-cp39-none-win32.whl", hash = "sha256:653647b8838cf83b2e7e6a0364f49af96deec64d2a6578324db58380cff82aca"}, - {file = "rpds_py-0.20.1-cp39-none-win_amd64.whl", hash = "sha256:fa41a64ac5b08b292906e248549ab48b69c5428f3987b09689ab2441f267d04d"}, - {file = "rpds_py-0.20.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:7a07ced2b22f0cf0b55a6a510078174c31b6d8544f3bc00c2bcee52b3d613f74"}, - {file = "rpds_py-0.20.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:68cb0a499f2c4a088fd2f521453e22ed3527154136a855c62e148b7883b99f9a"}, - {file = "rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fa3060d885657abc549b2a0f8e1b79699290e5d83845141717c6c90c2df38311"}, - {file = "rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:95f3b65d2392e1c5cec27cff08fdc0080270d5a1a4b2ea1d51d5f4a2620ff08d"}, - {file = "rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2cc3712a4b0b76a1d45a9302dd2f53ff339614b1c29603a911318f2357b04dd2"}, - {file = "rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5d4eea0761e37485c9b81400437adb11c40e13ef513375bbd6973e34100aeb06"}, - {file = "rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f5179583d7a6cdb981151dd349786cbc318bab54963a192692d945dd3f6435d"}, - {file = "rpds_py-0.20.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2fbb0ffc754490aff6dabbf28064be47f0f9ca0b9755976f945214965b3ace7e"}, - {file = "rpds_py-0.20.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:a94e52537a0e0a85429eda9e49f272ada715506d3b2431f64b8a3e34eb5f3e75"}, - {file = "rpds_py-0.20.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:92b68b79c0da2a980b1c4197e56ac3dd0c8a149b4603747c4378914a68706979"}, - {file = "rpds_py-0.20.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:93da1d3db08a827eda74356f9f58884adb254e59b6664f64cc04cdff2cc19b0d"}, - {file = "rpds_py-0.20.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:754bbed1a4ca48479e9d4182a561d001bbf81543876cdded6f695ec3d465846b"}, - {file = "rpds_py-0.20.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:ca449520e7484534a2a44faf629362cae62b660601432d04c482283c47eaebab"}, - {file = "rpds_py-0.20.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:9c4cb04a16b0f199a8c9bf807269b2f63b7b5b11425e4a6bd44bd6961d28282c"}, - {file = "rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb63804105143c7e24cee7db89e37cb3f3941f8e80c4379a0b355c52a52b6780"}, - {file = "rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:55cd1fa4ecfa6d9f14fbd97ac24803e6f73e897c738f771a9fe038f2f11ff07c"}, - {file = "rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0f8f741b6292c86059ed175d80eefa80997125b7c478fb8769fd9ac8943a16c0"}, - {file = "rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0fc212779bf8411667234b3cdd34d53de6c2b8b8b958e1e12cb473a5f367c338"}, - {file = "rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ad56edabcdb428c2e33bbf24f255fe2b43253b7d13a2cdbf05de955217313e6"}, - {file = "rpds_py-0.20.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0a3a1e9ee9728b2c1734f65d6a1d376c6f2f6fdcc13bb007a08cc4b1ff576dc5"}, - {file = "rpds_py-0.20.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:e13de156137b7095442b288e72f33503a469aa1980ed856b43c353ac86390519"}, - {file = "rpds_py-0.20.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:07f59760ef99f31422c49038964b31c4dfcfeb5d2384ebfc71058a7c9adae2d2"}, - {file = "rpds_py-0.20.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:59240685e7da61fb78f65a9f07f8108e36a83317c53f7b276b4175dc44151684"}, - {file = "rpds_py-0.20.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:83cba698cfb3c2c5a7c3c6bac12fe6c6a51aae69513726be6411076185a8b24a"}, - {file = "rpds_py-0.20.1.tar.gz", hash = "sha256:e1791c4aabd117653530dccd24108fa03cc6baf21f58b950d0a73c3b3b29a350"}, + {file = "rpds_py-0.21.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:a017f813f24b9df929674d0332a374d40d7f0162b326562daae8066b502d0590"}, + {file = "rpds_py-0.21.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:20cc1ed0bcc86d8e1a7e968cce15be45178fd16e2ff656a243145e0b439bd250"}, + {file = "rpds_py-0.21.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ad116dda078d0bc4886cb7840e19811562acdc7a8e296ea6ec37e70326c1b41c"}, + {file = "rpds_py-0.21.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:808f1ac7cf3b44f81c9475475ceb221f982ef548e44e024ad5f9e7060649540e"}, + {file = "rpds_py-0.21.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de552f4a1916e520f2703ec474d2b4d3f86d41f353e7680b597512ffe7eac5d0"}, + {file = "rpds_py-0.21.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:efec946f331349dfc4ae9d0e034c263ddde19414fe5128580f512619abed05f1"}, + {file = "rpds_py-0.21.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b80b4690bbff51a034bfde9c9f6bf9357f0a8c61f548942b80f7b66356508bf5"}, + {file = "rpds_py-0.21.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:085ed25baac88953d4283e5b5bd094b155075bb40d07c29c4f073e10623f9f2e"}, + {file = "rpds_py-0.21.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:daa8efac2a1273eed2354397a51216ae1e198ecbce9036fba4e7610b308b6153"}, + {file = "rpds_py-0.21.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:95a5bad1ac8a5c77b4e658671642e4af3707f095d2b78a1fdd08af0dfb647624"}, + {file = "rpds_py-0.21.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3e53861b29a13d5b70116ea4230b5f0f3547b2c222c5daa090eb7c9c82d7f664"}, + {file = "rpds_py-0.21.0-cp310-none-win32.whl", hash = "sha256:ea3a6ac4d74820c98fcc9da4a57847ad2cc36475a8bd9683f32ab6d47a2bd682"}, + {file = "rpds_py-0.21.0-cp310-none-win_amd64.whl", hash = "sha256:b8f107395f2f1d151181880b69a2869c69e87ec079c49c0016ab96860b6acbe5"}, + {file = "rpds_py-0.21.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:5555db3e618a77034954b9dc547eae94166391a98eb867905ec8fcbce1308d95"}, + {file = "rpds_py-0.21.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:97ef67d9bbc3e15584c2f3c74bcf064af36336c10d2e21a2131e123ce0f924c9"}, + {file = "rpds_py-0.21.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ab2c2a26d2f69cdf833174f4d9d86118edc781ad9a8fa13970b527bf8236027"}, + {file = "rpds_py-0.21.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4e8921a259f54bfbc755c5bbd60c82bb2339ae0324163f32868f63f0ebb873d9"}, + {file = "rpds_py-0.21.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8a7ff941004d74d55a47f916afc38494bd1cfd4b53c482b77c03147c91ac0ac3"}, + {file = "rpds_py-0.21.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5145282a7cd2ac16ea0dc46b82167754d5e103a05614b724457cffe614f25bd8"}, + {file = "rpds_py-0.21.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de609a6f1b682f70bb7163da745ee815d8f230d97276db049ab447767466a09d"}, + {file = "rpds_py-0.21.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:40c91c6e34cf016fa8e6b59d75e3dbe354830777fcfd74c58b279dceb7975b75"}, + {file = "rpds_py-0.21.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d2132377f9deef0c4db89e65e8bb28644ff75a18df5293e132a8d67748397b9f"}, + {file = "rpds_py-0.21.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:0a9e0759e7be10109645a9fddaaad0619d58c9bf30a3f248a2ea57a7c417173a"}, + {file = "rpds_py-0.21.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9e20da3957bdf7824afdd4b6eeb29510e83e026473e04952dca565170cd1ecc8"}, + {file = "rpds_py-0.21.0-cp311-none-win32.whl", hash = "sha256:f71009b0d5e94c0e86533c0b27ed7cacc1239cb51c178fd239c3cfefefb0400a"}, + {file = "rpds_py-0.21.0-cp311-none-win_amd64.whl", hash = "sha256:e168afe6bf6ab7ab46c8c375606298784ecbe3ba31c0980b7dcbb9631dcba97e"}, + {file = "rpds_py-0.21.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:30b912c965b2aa76ba5168fd610087bad7fcde47f0a8367ee8f1876086ee6d1d"}, + {file = "rpds_py-0.21.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ca9989d5d9b1b300bc18e1801c67b9f6d2c66b8fd9621b36072ed1df2c977f72"}, + {file = "rpds_py-0.21.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f54e7106f0001244a5f4cf810ba8d3f9c542e2730821b16e969d6887b664266"}, + {file = "rpds_py-0.21.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fed5dfefdf384d6fe975cc026886aece4f292feaf69d0eeb716cfd3c5a4dd8be"}, + {file = "rpds_py-0.21.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:590ef88db231c9c1eece44dcfefd7515d8bf0d986d64d0caf06a81998a9e8cab"}, + {file = "rpds_py-0.21.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f983e4c2f603c95dde63df633eec42955508eefd8d0f0e6d236d31a044c882d7"}, + {file = "rpds_py-0.21.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b229ce052ddf1a01c67d68166c19cb004fb3612424921b81c46e7ea7ccf7c3bf"}, + {file = "rpds_py-0.21.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ebf64e281a06c904a7636781d2e973d1f0926a5b8b480ac658dc0f556e7779f4"}, + {file = "rpds_py-0.21.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:998a8080c4495e4f72132f3d66ff91f5997d799e86cec6ee05342f8f3cda7dca"}, + {file = "rpds_py-0.21.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:98486337f7b4f3c324ab402e83453e25bb844f44418c066623db88e4c56b7c7b"}, + {file = "rpds_py-0.21.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a78d8b634c9df7f8d175451cfeac3810a702ccb85f98ec95797fa98b942cea11"}, + {file = "rpds_py-0.21.0-cp312-none-win32.whl", hash = "sha256:a58ce66847711c4aa2ecfcfaff04cb0327f907fead8945ffc47d9407f41ff952"}, + {file = "rpds_py-0.21.0-cp312-none-win_amd64.whl", hash = "sha256:e860f065cc4ea6f256d6f411aba4b1251255366e48e972f8a347cf88077b24fd"}, + {file = "rpds_py-0.21.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:ee4eafd77cc98d355a0d02f263efc0d3ae3ce4a7c24740010a8b4012bbb24937"}, + {file = "rpds_py-0.21.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:688c93b77e468d72579351a84b95f976bd7b3e84aa6686be6497045ba84be560"}, + {file = "rpds_py-0.21.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c38dbf31c57032667dd5a2f0568ccde66e868e8f78d5a0d27dcc56d70f3fcd3b"}, + {file = "rpds_py-0.21.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2d6129137f43f7fa02d41542ffff4871d4aefa724a5fe38e2c31a4e0fd343fb0"}, + {file = "rpds_py-0.21.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:520ed8b99b0bf86a176271f6fe23024323862ac674b1ce5b02a72bfeff3fff44"}, + {file = "rpds_py-0.21.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aaeb25ccfb9b9014a10eaf70904ebf3f79faaa8e60e99e19eef9f478651b9b74"}, + {file = "rpds_py-0.21.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af04ac89c738e0f0f1b913918024c3eab6e3ace989518ea838807177d38a2e94"}, + {file = "rpds_py-0.21.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b9b76e2afd585803c53c5b29e992ecd183f68285b62fe2668383a18e74abe7a3"}, + {file = "rpds_py-0.21.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5afb5efde74c54724e1a01118c6e5c15e54e642c42a1ba588ab1f03544ac8c7a"}, + {file = "rpds_py-0.21.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:52c041802a6efa625ea18027a0723676a778869481d16803481ef6cc02ea8cb3"}, + {file = "rpds_py-0.21.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ee1e4fc267b437bb89990b2f2abf6c25765b89b72dd4a11e21934df449e0c976"}, + {file = "rpds_py-0.21.0-cp313-none-win32.whl", hash = "sha256:0c025820b78817db6a76413fff6866790786c38f95ea3f3d3c93dbb73b632202"}, + {file = "rpds_py-0.21.0-cp313-none-win_amd64.whl", hash = "sha256:320c808df533695326610a1b6a0a6e98f033e49de55d7dc36a13c8a30cfa756e"}, + {file = "rpds_py-0.21.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:2c51d99c30091f72a3c5d126fad26236c3f75716b8b5e5cf8effb18889ced928"}, + {file = "rpds_py-0.21.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cbd7504a10b0955ea287114f003b7ad62330c9e65ba012c6223dba646f6ffd05"}, + {file = "rpds_py-0.21.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6dcc4949be728ede49e6244eabd04064336012b37f5c2200e8ec8eb2988b209c"}, + {file = "rpds_py-0.21.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f414da5c51bf350e4b7960644617c130140423882305f7574b6cf65a3081cecb"}, + {file = "rpds_py-0.21.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9afe42102b40007f588666bc7de82451e10c6788f6f70984629db193849dced1"}, + {file = "rpds_py-0.21.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b929c2bb6e29ab31f12a1117c39f7e6d6450419ab7464a4ea9b0b417174f044"}, + {file = "rpds_py-0.21.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8404b3717da03cbf773a1d275d01fec84ea007754ed380f63dfc24fb76ce4592"}, + {file = "rpds_py-0.21.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e12bb09678f38b7597b8346983d2323a6482dcd59e423d9448108c1be37cac9d"}, + {file = "rpds_py-0.21.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:58a0e345be4b18e6b8501d3b0aa540dad90caeed814c515e5206bb2ec26736fd"}, + {file = "rpds_py-0.21.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:c3761f62fcfccf0864cc4665b6e7c3f0c626f0380b41b8bd1ce322103fa3ef87"}, + {file = "rpds_py-0.21.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:c2b2f71c6ad6c2e4fc9ed9401080badd1469fa9889657ec3abea42a3d6b2e1ed"}, + {file = "rpds_py-0.21.0-cp39-none-win32.whl", hash = "sha256:b21747f79f360e790525e6f6438c7569ddbfb1b3197b9e65043f25c3c9b489d8"}, + {file = "rpds_py-0.21.0-cp39-none-win_amd64.whl", hash = "sha256:0626238a43152918f9e72ede9a3b6ccc9e299adc8ade0d67c5e142d564c9a83d"}, + {file = "rpds_py-0.21.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:6b4ef7725386dc0762857097f6b7266a6cdd62bfd209664da6712cb26acef035"}, + {file = "rpds_py-0.21.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:6bc0e697d4d79ab1aacbf20ee5f0df80359ecf55db33ff41481cf3e24f206919"}, + {file = "rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da52d62a96e61c1c444f3998c434e8b263c384f6d68aca8274d2e08d1906325c"}, + {file = "rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:98e4fe5db40db87ce1c65031463a760ec7906ab230ad2249b4572c2fc3ef1f9f"}, + {file = "rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:30bdc973f10d28e0337f71d202ff29345320f8bc49a31c90e6c257e1ccef4333"}, + {file = "rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:faa5e8496c530f9c71f2b4e1c49758b06e5f4055e17144906245c99fa6d45356"}, + {file = "rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:32eb88c30b6a4f0605508023b7141d043a79b14acb3b969aa0b4f99b25bc7d4a"}, + {file = "rpds_py-0.21.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a89a8ce9e4e75aeb7fa5d8ad0f3fecdee813802592f4f46a15754dcb2fd6b061"}, + {file = "rpds_py-0.21.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:241e6c125568493f553c3d0fdbb38c74babf54b45cef86439d4cd97ff8feb34d"}, + {file = "rpds_py-0.21.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:3b766a9f57663396e4f34f5140b3595b233a7b146e94777b97a8413a1da1be18"}, + {file = "rpds_py-0.21.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:af4a644bf890f56e41e74be7d34e9511e4954894d544ec6b8efe1e21a1a8da6c"}, + {file = "rpds_py-0.21.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:3e30a69a706e8ea20444b98a49f386c17b26f860aa9245329bab0851ed100677"}, + {file = "rpds_py-0.21.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:031819f906bb146561af051c7cef4ba2003d28cff07efacef59da973ff7969ba"}, + {file = "rpds_py-0.21.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:b876f2bc27ab5954e2fd88890c071bd0ed18b9c50f6ec3de3c50a5ece612f7a6"}, + {file = "rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dc5695c321e518d9f03b7ea6abb5ea3af4567766f9852ad1560f501b17588c7b"}, + {file = "rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b4de1da871b5c0fd5537b26a6fc6814c3cc05cabe0c941db6e9044ffbb12f04a"}, + {file = "rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:878f6fea96621fda5303a2867887686d7a198d9e0f8a40be100a63f5d60c88c9"}, + {file = "rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8eeec67590e94189f434c6d11c426892e396ae59e4801d17a93ac96b8c02a6c"}, + {file = "rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ff2eba7f6c0cb523d7e9cff0903f2fe1feff8f0b2ceb6bd71c0e20a4dcee271"}, + {file = "rpds_py-0.21.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a429b99337062877d7875e4ff1a51fe788424d522bd64a8c0a20ef3021fdb6ed"}, + {file = "rpds_py-0.21.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:d167e4dbbdac48bd58893c7e446684ad5d425b407f9336e04ab52e8b9194e2ed"}, + {file = "rpds_py-0.21.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:4eb2de8a147ffe0626bfdc275fc6563aa7bf4b6db59cf0d44f0ccd6ca625a24e"}, + {file = "rpds_py-0.21.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:e78868e98f34f34a88e23ee9ccaeeec460e4eaf6db16d51d7a9b883e5e785a5e"}, + {file = "rpds_py-0.21.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:4991ca61656e3160cdaca4851151fd3f4a92e9eba5c7a530ab030d6aee96ec89"}, + {file = "rpds_py-0.21.0.tar.gz", hash = "sha256:ed6378c9d66d0de903763e7706383d60c33829581f0adff47b6535f1802fa6db"}, ] [[package]] @@ -4410,23 +4284,23 @@ win32 = ["pywin32"] [[package]] name = "setuptools" -version = "75.3.0" +version = "75.5.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "setuptools-75.3.0-py3-none-any.whl", hash = "sha256:f2504966861356aa38616760c0f66568e535562374995367b4e69c7143cf6bcd"}, - {file = "setuptools-75.3.0.tar.gz", hash = "sha256:fba5dd4d766e97be1b1681d98712680ae8f2f26d7881245f2ce9e40714f1a686"}, + {file = "setuptools-75.5.0-py3-none-any.whl", hash = "sha256:87cb777c3b96d638ca02031192d40390e0ad97737e27b6b4fa831bea86f2f829"}, + {file = "setuptools-75.5.0.tar.gz", hash = "sha256:5c4ccb41111392671f02bb5f8436dfc5a9a7185e80500531b133f5775c4163ef"}, ] [package.extras] -check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.7.0)"] +core = ["importlib-metadata (>=6)", "jaraco.collections", "jaraco.functools (>=4)", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24.2)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.12.*)", "pytest-mypy"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=24.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (>=1.12,<1.14)", "pytest-mypy"] [[package]] name = "shapely" @@ -4603,13 +4477,13 @@ files = [ [[package]] name = "tomli" -version = "2.0.2" +version = "1.2.3" description = "A lil' TOML parser" optional = false -python-versions = ">=3.8" +python-versions = ">=3.6" files = [ - {file = "tomli-2.0.2-py3-none-any.whl", hash = "sha256:2ebe24485c53d303f690b0ec092806a085f07af5a5aa1464f3931eec36caaa38"}, - {file = "tomli-2.0.2.tar.gz", hash = "sha256:d46d457a85337051c36524bc5349dd91b1877838e2979ac5ced3e710ed8a60ed"}, + {file = "tomli-1.2.3-py3-none-any.whl", hash = "sha256:e3069e4be3ead9668e21cb9b074cd948f7b3113fd9c8bba083f48247aab8b11c"}, + {file = "tomli-1.2.3.tar.gz", hash = "sha256:05b6166bff487dc068d322585c7ea4ef78deed501cc124060e0f238e89a9231f"}, ] [[package]] @@ -4645,13 +4519,13 @@ files = [ [[package]] name = "tox" -version = "3.28.0" +version = "3.25.1" description = "tox is a generic virtualenv management and test command line tool" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" files = [ - {file = "tox-3.28.0-py2.py3-none-any.whl", hash = "sha256:57b5ab7e8bb3074edc3c0c0b4b192a4f3799d3723b2c5b76f1fa9f2d40316eea"}, - {file = "tox-3.28.0.tar.gz", hash = "sha256:d0d28f3fe6d6d7195c27f8b054c3e99d5451952b54abdae673b71609a581f640"}, + {file = "tox-3.25.1-py2.py3-none-any.whl", hash = "sha256:c38e15f4733683a9cc0129fba078633e07eb0961f550a010ada879e95fb32632"}, + {file = "tox-3.25.1.tar.gz", hash = "sha256:c138327815f53bc6da4fe56baec5f25f00622ae69ef3fe4e1e385720e22486f9"}, ] [package.dependencies] @@ -4661,7 +4535,7 @@ packaging = ">=14" pluggy = ">=0.12.0" py = ">=1.4.17" six = ">=1.14.0" -tomli = {version = ">=2.0.1", markers = "python_version >= \"3.7\" and python_version < \"3.11\""} +toml = ">=0.9.4" virtualenv = ">=16.0.0,<20.0.0 || >20.0.0,<20.0.1 || >20.0.1,<20.0.2 || >20.0.2,<20.0.3 || >20.0.3,<20.0.4 || >20.0.4,<20.0.5 || >20.0.5,<20.0.6 || >20.0.6,<20.0.7 || >20.0.7" [package.extras] @@ -4689,13 +4563,13 @@ test = ["coverage", "pycodestyle", "pylint", "pytest"] [[package]] name = "tqdm" -version = "4.66.6" +version = "4.67.0" description = "Fast, Extensible Progress Meter" optional = false python-versions = ">=3.7" files = [ - {file = "tqdm-4.66.6-py3-none-any.whl", hash = "sha256:223e8b5359c2efc4b30555531f09e9f2f3589bcd7fdd389271191031b49b7a63"}, - {file = "tqdm-4.66.6.tar.gz", hash = "sha256:4bdd694238bef1485ce839d67967ab50af8f9272aab687c0d7702a01da0be090"}, + {file = "tqdm-4.67.0-py3-none-any.whl", hash = "sha256:0cd8af9d56911acab92182e88d763100d4788bdf421d251616040cc4d44863be"}, + {file = "tqdm-4.67.0.tar.gz", hash = "sha256:fe5a6f95e6fe0b9755e9469b77b9c3cf850048224ecaa8293d7d2d31f97d869a"}, ] [package.dependencies] @@ -4703,6 +4577,7 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} [package.extras] dev = ["pytest (>=6)", "pytest-cov", "pytest-timeout", "pytest-xdist"] +discord = ["requests"] notebook = ["ipywidgets (>=6)"] slack = ["slack-sdk"] telegram = ["requests"] @@ -4868,19 +4743,15 @@ files = [ [[package]] name = "webcolors" -version = "24.8.0" +version = "24.11.1" description = "A library for working with the color formats defined by HTML and CSS." optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "webcolors-24.8.0-py3-none-any.whl", hash = "sha256:fc4c3b59358ada164552084a8ebee637c221e4059267d0f8325b3b560f6c7f0a"}, - {file = "webcolors-24.8.0.tar.gz", hash = "sha256:08b07af286a01bcd30d583a7acadf629583d1f79bfef27dd2c2c5c263817277d"}, + {file = "webcolors-24.11.1-py3-none-any.whl", hash = "sha256:515291393b4cdf0eb19c155749a096f779f7d909f7cceea072791cb9095b92e9"}, + {file = "webcolors-24.11.1.tar.gz", hash = "sha256:ecb3d768f32202af770477b8b65f318fa4f566c22948673a977b00d589dd80f6"}, ] -[package.extras] -docs = ["furo", "sphinx", "sphinx-copybutton", "sphinx-inline-tabs", "sphinx-notfound-page", "sphinxext-opengraph"] -tests = ["coverage[toml]"] - [[package]] name = "webencodings" version = "0.5.1" @@ -5094,93 +4965,93 @@ files = [ [[package]] name = "yarl" -version = "1.17.1" +version = "1.17.2" description = "Yet another URL library" optional = false python-versions = ">=3.9" files = [ - {file = "yarl-1.17.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b1794853124e2f663f0ea54efb0340b457f08d40a1cef78edfa086576179c91"}, - {file = "yarl-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:fbea1751729afe607d84acfd01efd95e3b31db148a181a441984ce9b3d3469da"}, - {file = "yarl-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8ee427208c675f1b6e344a1f89376a9613fc30b52646a04ac0c1f6587c7e46ec"}, - {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b74ff4767d3ef47ffe0cd1d89379dc4d828d4873e5528976ced3b44fe5b0a21"}, - {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:62a91aefff3d11bf60e5956d340eb507a983a7ec802b19072bb989ce120cd948"}, - {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:846dd2e1243407133d3195d2d7e4ceefcaa5f5bf7278f0a9bda00967e6326b04"}, - {file = "yarl-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3e844be8d536afa129366d9af76ed7cb8dfefec99f5f1c9e4f8ae542279a6dc3"}, - {file = "yarl-1.17.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cc7c92c1baa629cb03ecb0c3d12564f172218fb1739f54bf5f3881844daadc6d"}, - {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ae3476e934b9d714aa8000d2e4c01eb2590eee10b9d8cd03e7983ad65dfbfcba"}, - {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:c7e177c619342e407415d4f35dec63d2d134d951e24b5166afcdfd1362828e17"}, - {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:64cc6e97f14cf8a275d79c5002281f3040c12e2e4220623b5759ea7f9868d6a5"}, - {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:84c063af19ef5130084db70ada40ce63a84f6c1ef4d3dbc34e5e8c4febb20822"}, - {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:482c122b72e3c5ec98f11457aeb436ae4aecca75de19b3d1de7cf88bc40db82f"}, - {file = "yarl-1.17.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:380e6c38ef692b8fd5a0f6d1fa8774d81ebc08cfbd624b1bca62a4d4af2f9931"}, - {file = "yarl-1.17.1-cp310-cp310-win32.whl", hash = "sha256:16bca6678a83657dd48df84b51bd56a6c6bd401853aef6d09dc2506a78484c7b"}, - {file = "yarl-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:561c87fea99545ef7d692403c110b2f99dced6dff93056d6e04384ad3bc46243"}, - {file = "yarl-1.17.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:cbad927ea8ed814622305d842c93412cb47bd39a496ed0f96bfd42b922b4a217"}, - {file = "yarl-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fca4b4307ebe9c3ec77a084da3a9d1999d164693d16492ca2b64594340999988"}, - {file = "yarl-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ff5c6771c7e3511a06555afa317879b7db8d640137ba55d6ab0d0c50425cab75"}, - {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5b29beab10211a746f9846baa39275e80034e065460d99eb51e45c9a9495bcca"}, - {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a52a1ffdd824fb1835272e125385c32fd8b17fbdefeedcb4d543cc23b332d74"}, - {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:58c8e9620eb82a189c6c40cb6b59b4e35b2ee68b1f2afa6597732a2b467d7e8f"}, - {file = "yarl-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d216e5d9b8749563c7f2c6f7a0831057ec844c68b4c11cb10fc62d4fd373c26d"}, - {file = "yarl-1.17.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:881764d610e3269964fc4bb3c19bb6fce55422828e152b885609ec176b41cf11"}, - {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8c79e9d7e3d8a32d4824250a9c6401194fb4c2ad9a0cec8f6a96e09a582c2cc0"}, - {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:299f11b44d8d3a588234adbe01112126010bd96d9139c3ba7b3badd9829261c3"}, - {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:cc7d768260f4ba4ea01741c1b5fe3d3a6c70eb91c87f4c8761bbcce5181beafe"}, - {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:de599af166970d6a61accde358ec9ded821234cbbc8c6413acfec06056b8e860"}, - {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:2b24ec55fad43e476905eceaf14f41f6478780b870eda5d08b4d6de9a60b65b4"}, - {file = "yarl-1.17.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9fb815155aac6bfa8d86184079652c9715c812d506b22cfa369196ef4e99d1b4"}, - {file = "yarl-1.17.1-cp311-cp311-win32.whl", hash = "sha256:7615058aabad54416ddac99ade09a5510cf77039a3b903e94e8922f25ed203d7"}, - {file = "yarl-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:14bc88baa44e1f84164a392827b5defb4fa8e56b93fecac3d15315e7c8e5d8b3"}, - {file = "yarl-1.17.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:327828786da2006085a4d1feb2594de6f6d26f8af48b81eb1ae950c788d97f61"}, - {file = "yarl-1.17.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:cc353841428d56b683a123a813e6a686e07026d6b1c5757970a877195f880c2d"}, - {file = "yarl-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c73df5b6e8fabe2ddb74876fb82d9dd44cbace0ca12e8861ce9155ad3c886139"}, - {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bdff5e0995522706c53078f531fb586f56de9c4c81c243865dd5c66c132c3b5"}, - {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:06157fb3c58f2736a5e47c8fcbe1afc8b5de6fb28b14d25574af9e62150fcaac"}, - {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1654ec814b18be1af2c857aa9000de7a601400bd4c9ca24629b18486c2e35463"}, - {file = "yarl-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f6595c852ca544aaeeb32d357e62c9c780eac69dcd34e40cae7b55bc4fb1147"}, - {file = "yarl-1.17.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:459e81c2fb920b5f5df744262d1498ec2c8081acdcfe18181da44c50f51312f7"}, - {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7e48cdb8226644e2fbd0bdb0a0f87906a3db07087f4de77a1b1b1ccfd9e93685"}, - {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:d9b6b28a57feb51605d6ae5e61a9044a31742db557a3b851a74c13bc61de5172"}, - {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e594b22688d5747b06e957f1ef822060cb5cb35b493066e33ceac0cf882188b7"}, - {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5f236cb5999ccd23a0ab1bd219cfe0ee3e1c1b65aaf6dd3320e972f7ec3a39da"}, - {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:a2a64e62c7a0edd07c1c917b0586655f3362d2c2d37d474db1a509efb96fea1c"}, - {file = "yarl-1.17.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d0eea830b591dbc68e030c86a9569826145df485b2b4554874b07fea1275a199"}, - {file = "yarl-1.17.1-cp312-cp312-win32.whl", hash = "sha256:46ddf6e0b975cd680eb83318aa1d321cb2bf8d288d50f1754526230fcf59ba96"}, - {file = "yarl-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:117ed8b3732528a1e41af3aa6d4e08483c2f0f2e3d3d7dca7cf538b3516d93df"}, - {file = "yarl-1.17.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:5d1d42556b063d579cae59e37a38c61f4402b47d70c29f0ef15cee1acaa64488"}, - {file = "yarl-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c0167540094838ee9093ef6cc2c69d0074bbf84a432b4995835e8e5a0d984374"}, - {file = "yarl-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2f0a6423295a0d282d00e8701fe763eeefba8037e984ad5de44aa349002562ac"}, - {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5b078134f48552c4d9527db2f7da0b5359abd49393cdf9794017baec7506170"}, - {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d401f07261dc5aa36c2e4efc308548f6ae943bfff20fcadb0a07517a26b196d8"}, - {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5f1ac7359e17efe0b6e5fec21de34145caef22b260e978336f325d5c84e6938"}, - {file = "yarl-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f63d176a81555984e91f2c84c2a574a61cab7111cc907e176f0f01538e9ff6e"}, - {file = "yarl-1.17.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9e275792097c9f7e80741c36de3b61917aebecc08a67ae62899b074566ff8556"}, - {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:81713b70bea5c1386dc2f32a8f0dab4148a2928c7495c808c541ee0aae614d67"}, - {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:aa46dce75078fceaf7cecac5817422febb4355fbdda440db55206e3bd288cfb8"}, - {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:1ce36ded585f45b1e9bb36d0ae94765c6608b43bd2e7f5f88079f7a85c61a4d3"}, - {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:2d374d70fdc36f5863b84e54775452f68639bc862918602d028f89310a034ab0"}, - {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:2d9f0606baaec5dd54cb99667fcf85183a7477f3766fbddbe3f385e7fc253299"}, - {file = "yarl-1.17.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b0341e6d9a0c0e3cdc65857ef518bb05b410dbd70d749a0d33ac0f39e81a4258"}, - {file = "yarl-1.17.1-cp313-cp313-win32.whl", hash = "sha256:2e7ba4c9377e48fb7b20dedbd473cbcbc13e72e1826917c185157a137dac9df2"}, - {file = "yarl-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:949681f68e0e3c25377462be4b658500e85ca24323d9619fdc41f68d46a1ffda"}, - {file = "yarl-1.17.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8994b29c462de9a8fce2d591028b986dbbe1b32f3ad600b2d3e1c482c93abad6"}, - {file = "yarl-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f9cbfbc5faca235fbdf531b93aa0f9f005ec7d267d9d738761a4d42b744ea159"}, - {file = "yarl-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b40d1bf6e6f74f7c0a567a9e5e778bbd4699d1d3d2c0fe46f4b717eef9e96b95"}, - {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5efe0661b9fcd6246f27957f6ae1c0eb29bc60552820f01e970b4996e016004"}, - {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b5c4804e4039f487e942c13381e6c27b4b4e66066d94ef1fae3f6ba8b953f383"}, - {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5d6a6c9602fd4598fa07e0389e19fe199ae96449008d8304bf5d47cb745462e"}, - {file = "yarl-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f4c9156c4d1eb490fe374fb294deeb7bc7eaccda50e23775b2354b6a6739934"}, - {file = "yarl-1.17.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6324274b4e0e2fa1b3eccb25997b1c9ed134ff61d296448ab8269f5ac068c4c"}, - {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d8a8b74d843c2638f3864a17d97a4acda58e40d3e44b6303b8cc3d3c44ae2d29"}, - {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:7fac95714b09da9278a0b52e492466f773cfe37651cf467a83a1b659be24bf71"}, - {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:c180ac742a083e109c1a18151f4dd8675f32679985a1c750d2ff806796165b55"}, - {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:578d00c9b7fccfa1745a44f4eddfdc99d723d157dad26764538fbdda37209857"}, - {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:1a3b91c44efa29e6c8ef8a9a2b583347998e2ba52c5d8280dbd5919c02dfc3b5"}, - {file = "yarl-1.17.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a7ac5b4984c468ce4f4a553df281450df0a34aefae02e58d77a0847be8d1e11f"}, - {file = "yarl-1.17.1-cp39-cp39-win32.whl", hash = "sha256:7294e38f9aa2e9f05f765b28ffdc5d81378508ce6dadbe93f6d464a8c9594473"}, - {file = "yarl-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:eb6dce402734575e1a8cc0bb1509afca508a400a57ce13d306ea2c663bad1138"}, - {file = "yarl-1.17.1-py3-none-any.whl", hash = "sha256:f1790a4b1e8e8e028c391175433b9c8122c39b46e1663228158e61e6f915bf06"}, - {file = "yarl-1.17.1.tar.gz", hash = "sha256:067a63fcfda82da6b198fa73079b1ca40b7c9b7994995b6ee38acda728b64d47"}, + {file = "yarl-1.17.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:93771146ef048b34201bfa382c2bf74c524980870bb278e6df515efaf93699ff"}, + {file = "yarl-1.17.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8281db240a1616af2f9c5f71d355057e73a1409c4648c8949901396dc0a3c151"}, + {file = "yarl-1.17.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:170ed4971bf9058582b01a8338605f4d8c849bd88834061e60e83b52d0c76870"}, + {file = "yarl-1.17.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bc61b005f6521fcc00ca0d1243559a5850b9dd1e1fe07b891410ee8fe192d0c0"}, + {file = "yarl-1.17.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:871e1b47eec7b6df76b23c642a81db5dd6536cbef26b7e80e7c56c2fd371382e"}, + {file = "yarl-1.17.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3a58a2f2ca7aaf22b265388d40232f453f67a6def7355a840b98c2d547bd037f"}, + {file = "yarl-1.17.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:736bb076f7299c5c55dfef3eb9e96071a795cb08052822c2bb349b06f4cb2e0a"}, + {file = "yarl-1.17.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8fd51299e21da709eabcd5b2dd60e39090804431292daacbee8d3dabe39a6bc0"}, + {file = "yarl-1.17.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:358dc7ddf25e79e1cc8ee16d970c23faee84d532b873519c5036dbb858965795"}, + {file = "yarl-1.17.2-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:50d866f7b1a3f16f98603e095f24c0eeba25eb508c85a2c5939c8b3870ba2df8"}, + {file = "yarl-1.17.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:8b9c4643e7d843a0dca9cd9d610a0876e90a1b2cbc4c5ba7930a0d90baf6903f"}, + {file = "yarl-1.17.2-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:d63123bfd0dce5f91101e77c8a5427c3872501acece8c90df457b486bc1acd47"}, + {file = "yarl-1.17.2-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:4e76381be3d8ff96a4e6c77815653063e87555981329cf8f85e5be5abf449021"}, + {file = "yarl-1.17.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:734144cd2bd633a1516948e477ff6c835041c0536cef1d5b9a823ae29899665b"}, + {file = "yarl-1.17.2-cp310-cp310-win32.whl", hash = "sha256:26bfb6226e0c157af5da16d2d62258f1ac578d2899130a50433ffee4a5dfa673"}, + {file = "yarl-1.17.2-cp310-cp310-win_amd64.whl", hash = "sha256:76499469dcc24759399accd85ec27f237d52dec300daaca46a5352fcbebb1071"}, + {file = "yarl-1.17.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:792155279dc093839e43f85ff7b9b6493a8eaa0af1f94f1f9c6e8f4de8c63500"}, + {file = "yarl-1.17.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:38bc4ed5cae853409cb193c87c86cd0bc8d3a70fd2268a9807217b9176093ac6"}, + {file = "yarl-1.17.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4a8c83f6fcdc327783bdc737e8e45b2e909b7bd108c4da1892d3bc59c04a6d84"}, + {file = "yarl-1.17.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c6d5fed96f0646bfdf698b0a1cebf32b8aae6892d1bec0c5d2d6e2df44e1e2d"}, + {file = "yarl-1.17.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:782ca9c58f5c491c7afa55518542b2b005caedaf4685ec814fadfcee51f02493"}, + {file = "yarl-1.17.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ff6af03cac0d1a4c3c19e5dcc4c05252411bf44ccaa2485e20d0a7c77892ab6e"}, + {file = "yarl-1.17.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6a3f47930fbbed0f6377639503848134c4aa25426b08778d641491131351c2c8"}, + {file = "yarl-1.17.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d1fa68a3c921365c5745b4bd3af6221ae1f0ea1bf04b69e94eda60e57958907f"}, + {file = "yarl-1.17.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:187df91395c11e9f9dc69b38d12406df85aa5865f1766a47907b1cc9855b6303"}, + {file = "yarl-1.17.2-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:93d1c8cc5bf5df401015c5e2a3ce75a5254a9839e5039c881365d2a9dcfc6dc2"}, + {file = "yarl-1.17.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:11d86c6145ac5c706c53d484784cf504d7d10fa407cb73b9d20f09ff986059ef"}, + {file = "yarl-1.17.2-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:c42774d1d1508ec48c3ed29e7b110e33f5e74a20957ea16197dbcce8be6b52ba"}, + {file = "yarl-1.17.2-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:0c8e589379ef0407b10bed16cc26e7392ef8f86961a706ade0a22309a45414d7"}, + {file = "yarl-1.17.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:1056cadd5e850a1c026f28e0704ab0a94daaa8f887ece8dfed30f88befb87bb0"}, + {file = "yarl-1.17.2-cp311-cp311-win32.whl", hash = "sha256:be4c7b1c49d9917c6e95258d3d07f43cfba2c69a6929816e77daf322aaba6628"}, + {file = "yarl-1.17.2-cp311-cp311-win_amd64.whl", hash = "sha256:ac8eda86cc75859093e9ce390d423aba968f50cf0e481e6c7d7d63f90bae5c9c"}, + {file = "yarl-1.17.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:dd90238d3a77a0e07d4d6ffdebc0c21a9787c5953a508a2231b5f191455f31e9"}, + {file = "yarl-1.17.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:c74f0b0472ac40b04e6d28532f55cac8090e34c3e81f118d12843e6df14d0909"}, + {file = "yarl-1.17.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4d486ddcaca8c68455aa01cf53d28d413fb41a35afc9f6594a730c9779545876"}, + {file = "yarl-1.17.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25b7e93f5414b9a983e1a6c1820142c13e1782cc9ed354c25e933aebe97fcf2"}, + {file = "yarl-1.17.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3a0baff7827a632204060f48dca9e63fbd6a5a0b8790c1a2adfb25dc2c9c0d50"}, + {file = "yarl-1.17.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:460024cacfc3246cc4d9f47a7fc860e4fcea7d1dc651e1256510d8c3c9c7cde0"}, + {file = "yarl-1.17.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5870d620b23b956f72bafed6a0ba9a62edb5f2ef78a8849b7615bd9433384171"}, + {file = "yarl-1.17.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2941756754a10e799e5b87e2319bbec481ed0957421fba0e7b9fb1c11e40509f"}, + {file = "yarl-1.17.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9611b83810a74a46be88847e0ea616794c406dbcb4e25405e52bff8f4bee2d0a"}, + {file = "yarl-1.17.2-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:cd7e35818d2328b679a13268d9ea505c85cd773572ebb7a0da7ccbca77b6a52e"}, + {file = "yarl-1.17.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:6b981316fcd940f085f646b822c2ff2b8b813cbd61281acad229ea3cbaabeb6b"}, + {file = "yarl-1.17.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:688058e89f512fb7541cb85c2f149c292d3fa22f981d5a5453b40c5da49eb9e8"}, + {file = "yarl-1.17.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:56afb44a12b0864d17b597210d63a5b88915d680f6484d8d202ed68ade38673d"}, + {file = "yarl-1.17.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:17931dfbb84ae18b287279c1f92b76a3abcd9a49cd69b92e946035cff06bcd20"}, + {file = "yarl-1.17.2-cp312-cp312-win32.whl", hash = "sha256:ff8d95e06546c3a8c188f68040e9d0360feb67ba8498baf018918f669f7bc39b"}, + {file = "yarl-1.17.2-cp312-cp312-win_amd64.whl", hash = "sha256:4c840cc11163d3c01a9d8aad227683c48cd3e5be5a785921bcc2a8b4b758c4f3"}, + {file = "yarl-1.17.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:3294f787a437cb5d81846de3a6697f0c35ecff37a932d73b1fe62490bef69211"}, + {file = "yarl-1.17.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f1e7fedb09c059efee2533119666ca7e1a2610072076926fa028c2ba5dfeb78c"}, + {file = "yarl-1.17.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:da9d3061e61e5ae3f753654813bc1cd1c70e02fb72cf871bd6daf78443e9e2b1"}, + {file = "yarl-1.17.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:91c012dceadc695ccf69301bfdccd1fc4472ad714fe2dd3c5ab4d2046afddf29"}, + {file = "yarl-1.17.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f11fd61d72d93ac23718d393d2a64469af40be2116b24da0a4ca6922df26807e"}, + {file = "yarl-1.17.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:46c465ad06971abcf46dd532f77560181387b4eea59084434bdff97524444032"}, + {file = "yarl-1.17.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ef6eee1a61638d29cd7c85f7fd3ac7b22b4c0fabc8fd00a712b727a3e73b0685"}, + {file = "yarl-1.17.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4434b739a8a101a837caeaa0137e0e38cb4ea561f39cb8960f3b1e7f4967a3fc"}, + {file = "yarl-1.17.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:752485cbbb50c1e20908450ff4f94217acba9358ebdce0d8106510859d6eb19a"}, + {file = "yarl-1.17.2-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:17791acaa0c0f89323c57da7b9a79f2174e26d5debbc8c02d84ebd80c2b7bff8"}, + {file = "yarl-1.17.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:5c6ea72fe619fee5e6b5d4040a451d45d8175f560b11b3d3e044cd24b2720526"}, + {file = "yarl-1.17.2-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:db5ac3871ed76340210fe028f535392f097fb31b875354bcb69162bba2632ef4"}, + {file = "yarl-1.17.2-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:7a1606ba68e311576bcb1672b2a1543417e7e0aa4c85e9e718ba6466952476c0"}, + {file = "yarl-1.17.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9bc27dd5cfdbe3dc7f381b05e6260ca6da41931a6e582267d5ca540270afeeb2"}, + {file = "yarl-1.17.2-cp313-cp313-win32.whl", hash = "sha256:52492b87d5877ec405542f43cd3da80bdcb2d0c2fbc73236526e5f2c28e6db28"}, + {file = "yarl-1.17.2-cp313-cp313-win_amd64.whl", hash = "sha256:8e1bf59e035534ba4077f5361d8d5d9194149f9ed4f823d1ee29ef3e8964ace3"}, + {file = "yarl-1.17.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c556fbc6820b6e2cda1ca675c5fa5589cf188f8da6b33e9fc05b002e603e44fa"}, + {file = "yarl-1.17.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f2f44a4247461965fed18b2573f3a9eb5e2c3cad225201ee858726cde610daca"}, + {file = "yarl-1.17.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3a3ede8c248f36b60227eb777eac1dbc2f1022dc4d741b177c4379ca8e75571a"}, + {file = "yarl-1.17.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2654caaf5584449d49c94a6b382b3cb4a246c090e72453493ea168b931206a4d"}, + {file = "yarl-1.17.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0d41c684f286ce41fa05ab6af70f32d6da1b6f0457459a56cf9e393c1c0b2217"}, + {file = "yarl-1.17.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2270d590997445a0dc29afa92e5534bfea76ba3aea026289e811bf9ed4b65a7f"}, + {file = "yarl-1.17.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18662443c6c3707e2fc7fad184b4dc32dd428710bbe72e1bce7fe1988d4aa654"}, + {file = "yarl-1.17.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:75ac158560dec3ed72f6d604c81090ec44529cfb8169b05ae6fcb3e986b325d9"}, + {file = "yarl-1.17.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1fee66b32e79264f428dc8da18396ad59cc48eef3c9c13844adec890cd339db5"}, + {file = "yarl-1.17.2-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:585ce7cd97be8f538345de47b279b879e091c8b86d9dbc6d98a96a7ad78876a3"}, + {file = "yarl-1.17.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:c019abc2eca67dfa4d8fb72ba924871d764ec3c92b86d5b53b405ad3d6aa56b0"}, + {file = "yarl-1.17.2-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:c6e659b9a24d145e271c2faf3fa6dd1fcb3e5d3f4e17273d9e0350b6ab0fe6e2"}, + {file = "yarl-1.17.2-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:d17832ba39374134c10e82d137e372b5f7478c4cceeb19d02ae3e3d1daed8721"}, + {file = "yarl-1.17.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:bc3003710e335e3f842ae3fd78efa55f11a863a89a72e9a07da214db3bf7e1f8"}, + {file = "yarl-1.17.2-cp39-cp39-win32.whl", hash = "sha256:f5ffc6b7ace5b22d9e73b2a4c7305740a339fbd55301d52735f73e21d9eb3130"}, + {file = "yarl-1.17.2-cp39-cp39-win_amd64.whl", hash = "sha256:48e424347a45568413deec6f6ee2d720de2cc0385019bedf44cd93e8638aa0ed"}, + {file = "yarl-1.17.2-py3-none-any.whl", hash = "sha256:dd7abf4f717e33b7487121faf23560b3a50924f80e4bef62b22dab441ded8f3b"}, + {file = "yarl-1.17.2.tar.gz", hash = "sha256:753eaaa0c7195244c84b5cc159dc8204b7fd99f716f11198f999f2332a86b178"}, ] [package.dependencies] @@ -5210,4 +5081,4 @@ test = ["mypy", "pre-commit", "pytest", "pytest-asyncio", "websockets (>=10.0)"] [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "40f680ca4ffebd8562d01cc7d7b0015724428f551959f305771e23d1adb43ede" +content-hash = "9edd0100b93348259a826b0f4e2aea10c46f04a648e172b5cda930eb158b9316" diff --git a/data/data-pipeline/pyproject.toml b/data/data-pipeline/pyproject.toml index 45403257..303408db 100644 --- a/data/data-pipeline/pyproject.toml +++ b/data/data-pipeline/pyproject.toml @@ -27,11 +27,9 @@ jupyter = "^1.0.0" jupyter-contrib-nbextensions = "^0.5.1" marshmallow-dataclass = "^8.5.3" marshmallow-enum = "^1.5.1" -matplotlib = "^3.4.2" numpy = "^1.22.1" pandas = "~1.4.3" pylint = "^2.11.1" -pillow = "9.3.0" # Newer versions break tile generation python = "^3.10" pypandoc = "^1.6.3" PyYAML = "^6.0" @@ -44,8 +42,8 @@ pydantic = "^1.9.0" Rtree = "^1.0.0" fiona = "~1.8.21" -[tool.poetry.dev-dependencies] -black = {version = "^21.6b0", allow-prereleases = true} +[tool.poetry.group.dev.dependencies] +black = "^21" flake8 = "^3.9.2" liccheck = "^0.6.2" mypy = "^0.910" @@ -126,6 +124,7 @@ authorized_licenses = [ "apache", "apache 2.0", "apache license 2.0", + "apache license, version 2.0", "apache software license", "apache software", "gnu lgpl", @@ -145,3 +144,5 @@ authorized_licenses = [ "gpl v3", "historical permission notice and disclaimer (hpnd)", ] +[tool.liccheck.authorized_packages] +ypy-websocket="0.8.4" From 109db724b1d882e04f1fe17812da4dc82b0999d2 Mon Sep 17 00:00:00 2001 From: ericiwamoto <100735505+ericiwamoto@users.noreply.github.com> Date: Tue, 19 Nov 2024 14:00:23 -0800 Subject: [PATCH 05/28] Frontend staging pipeline setup --- .github/workflows/deploy_frontend_main.yml | 85 ++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 .github/workflows/deploy_frontend_main.yml diff --git a/.github/workflows/deploy_frontend_main.yml b/.github/workflows/deploy_frontend_main.yml new file mode 100644 index 00000000..d70e9b4a --- /dev/null +++ b/.github/workflows/deploy_frontend_main.yml @@ -0,0 +1,85 @@ +name: Deploy Frontend Main +on: + push: + branches: [main] + paths: + - "client/**/*" +jobs: + build: + runs-on: ubuntu-latest + environment: Staging + defaults: + run: + working-directory: client + strategy: + matrix: + node-version: [14.x] + steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v2 + with: + node-version: ${{ matrix.node-version }} + - name: Set DESTINATION_FOLDER for main + run: | + echo "DESTINATION_FOLDER=main" >> $GITHUB_ENV + - name: Install + run: npm ci + - name: Build + run: npm run build --if-present + env: + # See the client readme for more info on environment variables: + # https://github.com/usds/justice40-tool/blob/main/client/README.md + DATA_SOURCE: cdn + # TODO: Update main URL when either is back up + SITE_URL: "${{ secrets.SITE_URL }}" + MAPBOX_STYLES_READ_TOKEN: "${{ secrets.MAPBOX_STYLES_READ_TOKEN }}" + - name: Get directory contents + run: ls -la public + - name: Lint + run: npm run lint + # Disabling for now due to jsonlint - TODO: put this back + # - name: License Check + # run: npm run licenses + - name: Test + run: npm test + # - name: Check for security vulnerabilities + # run: npm audit --production + - name: Upload Artifact + uses: actions/upload-artifact@v2 + with: + name: J40Static + # Upload-artifact does not support the default working directory + # See more: https://github.com/actions/upload-artifact/issues/87 + path: ./client/public + deploy: + runs-on: ubuntu-latest + needs: build + environment: Staging + steps: + - name: Checkout source + uses: actions/checkout@v2 + - name: Download Artifacts + uses: actions/download-artifact@v2 + with: + name: J40Static + path: ./public + - name: Set DESTINATION_FOLDER for main + run: | + echo "DESTINATION_FOLDER=main" >> $GITHUB_ENV + - name: Configure AWS Credentials + uses: aws-actions/configure-aws-credentials@v1 + with: + aws-access-key-id: ${{ secrets.CLIENT_DEV_AWS_ACCESS_KEY_ID }} + aws-secret-access-key: ${{ secrets.CLIENT_DEV_AWS_SECRET_ACCESS_KEY }} + aws-region: us-east-1 + - name: Deploy to Geoplatform AWS + run: aws s3 sync ./public/ s3://${{secrets.S3_WEBSITE_BUCKET}}/justice40-tool/${{env.DESTINATION_FOLDER}} --delete + - name: Invalidate cache on AWS CDNs + uses: chetan/invalidate-cloudfront-action@master + env: + DISTRIBUTION: ${{secrets.WEB_CDN_ID}} + PATHS: "/*" + AWS_REGION: "us-east-1" + AWS_ACCESS_KEY_ID: ${{ secrets.CLIENT_DEV_AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.CLIENT_DEV_AWS_SECRET_ACCESS_KEY }} \ No newline at end of file From f58f88cf1b746ba8a8db3fb40bfede86fca935af Mon Sep 17 00:00:00 2001 From: ericiwamoto <100735505+ericiwamoto@users.noreply.github.com> Date: Wed, 20 Nov 2024 08:38:39 -0800 Subject: [PATCH 06/28] update website cdn targets --- client/.env.development | 2 +- client/.env.production | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/.env.development b/client/.env.development index 4f232c01..0c6c369a 100644 --- a/client/.env.development +++ b/client/.env.development @@ -3,7 +3,7 @@ # Feature Tiles env variables: # The TILES_BASE_URL will be determined by the DATA_SOURCE env variable -GATSBY_CDN_TILES_BASE_URL=https://static-data-screeningtool.geoplatform.gov +GATSBY_CDN_TILES_BASE_URL=https://dig0wsohit6js.cloudfront.net GATSBY_LOCAL_TILES_BASE_URL=http://localhost:5000/data/data-pipeline GATSBY_DATA_PIPELINE_SCORE_PATH_LOCAL=data_pipeline/data/score diff --git a/client/.env.production b/client/.env.production index 540744cb..41ec89a8 100644 --- a/client/.env.production +++ b/client/.env.production @@ -3,7 +3,7 @@ # Feature Tiles env variables: # The TILES_BASE_URL will always point to the CDN -GATSBY_CDN_TILES_BASE_URL=https://static-data-screeningtool.geoplatform.gov +GATSBY_CDN_TILES_BASE_URL=https://dig0wsohit6js.cloudfront.net GATSBY_DATA_PIPELINE_TRIBAL_PATH=data-pipeline/data/tribal From 2c1fec5317baeae3bc44ecf7a145a8918bafb4cf Mon Sep 17 00:00:00 2001 From: Ryon Coleman Date: Wed, 20 Nov 2024 12:23:08 -0500 Subject: [PATCH 07/28] Add display text for island territories marked disadvantaged for low income --- .../src/components/AreaDetail/AreaDetail.tsx | 6 +++ .../PrioritizationCopy/PrioritizationCopy.tsx | 6 +++ client/src/data/constants.tsx | 15 ++++-- client/src/data/copy/explore.tsx | 50 +++++++++++-------- client/src/intl/en.json | 22 ++++---- client/src/intl/es.json | 5 +- 6 files changed, 69 insertions(+), 35 deletions(-) diff --git a/client/src/components/AreaDetail/AreaDetail.tsx b/client/src/components/AreaDetail/AreaDetail.tsx index 4e480dd8..2f3656b8 100644 --- a/client/src/components/AreaDetail/AreaDetail.tsx +++ b/client/src/components/AreaDetail/AreaDetail.tsx @@ -1146,6 +1146,12 @@ const AreaDetail = ({properties}: IAreaDetailProps) => { isAdjacencyLowIncome={ properties[constants.ADJACENCY_LOW_INCOME_EXCEEDS_THRESH] } + isIslandLowIncome={ + properties[constants.IS_FEDERAL_POVERTY_LEVEL_200] && + constants.TILES_ISLAND_AREA_FIPS_CODES.some((code) => { + return properties[constants.GEOID_PROPERTY].startsWith(code); + }) + } tribalCountAK={ properties[constants.TRIBAL_AREAS_COUNT_AK] >= 1 ? properties[constants.TRIBAL_AREAS_COUNT_AK] : diff --git a/client/src/components/PrioritizationCopy/PrioritizationCopy.tsx b/client/src/components/PrioritizationCopy/PrioritizationCopy.tsx index c2b22f6e..6769ebc3 100644 --- a/client/src/components/PrioritizationCopy/PrioritizationCopy.tsx +++ b/client/src/components/PrioritizationCopy/PrioritizationCopy.tsx @@ -9,6 +9,7 @@ interface IPrioritizationCopy { totalBurdensPrioritized: number isAdjacencyThreshMet: boolean, isAdjacencyLowIncome: boolean, + isIslandLowIncome: boolean, tribalCountAK: number | null, tribalCountUS: null, // when this signal is supported add number type percentTractTribal: number | null @@ -26,6 +27,7 @@ interface IPrioritizationCopy { * @param {number} totalBurdensPrioritized * @param {boolean} isAdjacencyThreshMet * @param {boolean} isAdjacencyLowIncome + * @param {boolean} isIslandLowIncome * @param {number | null} tribalCountAK * @param {number | null} tribalCountUS * @param {number | null} percentTractTribal @@ -36,6 +38,7 @@ const PrioritizationCopy = totalBurdensPrioritized, isAdjacencyThreshMet, isAdjacencyLowIncome, + isIslandLowIncome, tribalCountAK, tribalCountUS, percentTractTribal, @@ -48,6 +51,9 @@ const PrioritizationCopy = if (isAdjacencyThreshMet && isAdjacencyLowIncome) { prioCopyRendered = EXPLORE_COPY.PRIORITIZATION_COPY.PRIO_SURR_LI; // if 1-2 + } else if (isIslandLowIncome) { + prioCopyRendered = EXPLORE_COPY.PRIORITIZATION_COPY.PRIO_ISLAND_LI; + // if 1-3 } else if (isAdjacencyThreshMet && !isAdjacencyLowIncome) { // if 1-2-1 if ( tribalCountAK === null && tribalCountUS === null) { diff --git a/client/src/data/constants.tsx b/client/src/data/constants.tsx index cbb3b890..b60cec17 100644 --- a/client/src/data/constants.tsx +++ b/client/src/data/constants.tsx @@ -1,5 +1,7 @@ -import { LngLatBoundsLike } from "maplibre-gl"; -import { isMobile as isMobileReactDeviceDetect } from "react-device-detect"; +/* eslint quotes: [2, "double"] */ + +import {LngLatBoundsLike} from "maplibre-gl"; +import {isMobile as isMobileReactDeviceDetect} from "react-device-detect"; export const isMobile = isMobileReactDeviceDetect; @@ -77,6 +79,13 @@ export const SIDE_PANEL_STATE_VALUES = { ISLAND_AREAS: "Island Areas", }; +/** + * Note that the FIPS code is a string + * The FIPS codes listed are: + * 60: American Samoa, 66: Guam, 69: N. Mariana Islands, 78: US Virgin Islands + */ +export const TILES_ISLAND_AREA_FIPS_CODES = ["60", "66", "69", "78"]; + // Climate category export const IS_CLIMATE_FACTOR_DISADVANTAGED = "N_CLT"; export const IS_CLIMATE_EXCEED_ONE_OR_MORE_INDICATORS = "N_CLT_EOMI"; @@ -221,7 +230,7 @@ export const IS_EXCEEDS_THRESH_FOR_ISLAND_AREA_BELOW_100_POVERTY = "IA_POV_ET"; export const IS_WORKFORCE_EXCEED_BOTH_SOCIO_INDICATORS = "N_WKFC_EBSI"; -export const HIGH_SCHOOL_PROPERTY_PERCENTILE = `HSEF`; +export const HIGH_SCHOOL_PROPERTY_PERCENTILE = "HSEF"; export const IS_LOW_HS_EDUCATION_LOW_HIGHER_ED_PRIORITIZED = "LHE"; export const ISLAND_AREAS_HS_EDU_PERCENTAGE_FIELD = "IAHSEF"; export const ISLAND_AREA_LOW_HS_EDU = "IALHE"; diff --git a/client/src/data/copy/explore.tsx b/client/src/data/copy/explore.tsx index 5c59d831..af91b874 100644 --- a/client/src/data/copy/explore.tsx +++ b/client/src/data/copy/explore.tsx @@ -33,7 +33,7 @@ export const PAGE_INTRO = defineMessages({ export const PAGE_DESCRIPTION1 = ; @@ -41,7 +41,7 @@ export const PAGE_DESCRIPTION1 = ; @@ -55,8 +55,8 @@ export const LEGEND = defineMessages({ PRIORITY_DESCRIPT: { id: 'explore.map.page.legend.description.text', defaultMessage: ` - Communities identified as disadvantaged by the map are those that are marginalized, underserved, - and overburdened by pollution. These communities are at or above the thresholds in one or + Communities identified as disadvantaged by the map are those that are marginalized, underserved, + and overburdened by pollution. These communities are at or above the thresholds in one or more of eight categories of criteria. `, description: 'On the explore the map page, the description of the legend', @@ -108,7 +108,7 @@ export const MAP = defineMessages({ LOWER48_SHORT: { id: 'explore.map.page.map.territoryFocus.lower48.short', defaultMessage: '48', - description: `On the explore the map page, on the map, the abbreviated name indicating the bounds of + description: `On the explore the map page, on the map, the abbreviated name indicating the bounds of the Lower 48 states `, }, @@ -256,7 +256,7 @@ export const SIDE_PANEL_INITIAL_STATE = defineMessages({ PARA1_PART3: { id: 'explore.map.page.side.panel.info.para.1.part.3', defaultMessage: ` - , or locate yourself + , or locate yourself `, description: '`Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show or locate yourself', }, @@ -291,7 +291,7 @@ export const SIDE_PANEL_INITIAL_STATE = defineMessages({ PARA2_PART2: { id: 'explore.map.page.side.panel.info.para.2.part.2', defaultMessage: ` - . Census tracts are a small unit of geography. They generally have populations + . Census tracts are a small unit of geography. They generally have populations `, description: '`Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show Census tracts are a small unit of geography. They generally have populations of between 1,200 - 8,000 people.', }, @@ -305,7 +305,7 @@ export const SIDE_PANEL_INITIAL_STATE = defineMessages({ PARA3_PART1: { id: 'explore.map.page.side.panel.info.para.3.part.1', defaultMessage: ` - Communities that are disadvantaged live in tracts that experience burdens. These tracts are highlighted + Communities that are disadvantaged live in tracts that experience burdens. These tracts are highlighted `, description: '`Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show Communities that are disadvantaged live in tracts that experience burdens. These tracts are highlighted on the map.', }, @@ -340,7 +340,7 @@ export const SIDE_PANEL_INITIAL_STATE = defineMessages({ PARA5_PART2: { id: 'explore.map.page.side.panel.info.para.2', defaultMessage: ` - , or cutoffs, are used to determine if communities in a tract are disadvantaged. Certain burdens use percentages + , or cutoffs, are used to determine if communities in a tract are disadvantaged. Certain burdens use percentages `, description: '`Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show Thresholds, or cutoffs, are used to determine if communities in a tract are disadvantaged. Certain burdens use percentages or a simple yes/no.', }, @@ -598,7 +598,7 @@ export const SIDE_PANEL_TRIBAL_INFO = defineMessages({ LAND_AREA_NAME: { id: 'explore.map.page.side.panel.tribalInfo.landAreaName', defaultMessage: 'Land Area Name:', - description: `Navigate to the explore the map page. Click on Tribal Lands, when the map is in view, + description: `Navigate to the explore the map page. Click on Tribal Lands, when the map is in view, click on the map. The side panel will show the land area name of the feature selected`, }, }); @@ -644,6 +644,14 @@ export const PRIORITIZATION_COPY = { bold: boldFn, }} />, + PRIO_ISLAND_LI: AND is located in a U.S. Territory.'} + description={`Navigate to the explore the map page. Click on tract, The side panel will show This tract is considered disadvantaged. It is an island territory that meets an adjusted low income threshold.`} + values={{ + bold: boldFn, + }} + />, PRIO_SURR_LI: AND meets an adjusted low income threshold. The adjustment does not apply to any of the categories.'} @@ -1064,7 +1072,7 @@ export const SIDE_PANEL_INDICATORS = defineMessages({ POVERTY: { id: 'explore.map.page.side.panel.indicator.poverty', defaultMessage: 'Poverty', - description: `Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show Unemployment`, + description: `Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show Poverty`, }, UNEMPLOY: { id: 'explore.map.page.side.panel.indicator.unemploy', @@ -1147,7 +1155,7 @@ export const SIDE_PANEL_INDICATOR_DESCRIPTION = defineMessages({ EXP_BLD_LOSS: { id: 'explore.map.page.side.panel.indicator.description.exp.bld.loss', defaultMessage: 'Economic loss to building value resulting from natural hazards each year', - description: `Navigate to the explore the map page. When the map is in view, click on the map. The side + description: `Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show an indicator description of Economic loss rate to buildings resulting from natural hazards`, }, EXP_POP_LOSS: { @@ -1155,7 +1163,7 @@ export const SIDE_PANEL_INDICATOR_DESCRIPTION = defineMessages({ defaultMessage: ` Fatalities and injuries resulting from natural hazards each year `, - description: `Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show an indicator description of Economic loss rate to the population in fatalities and + description: `Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show an indicator description of Economic loss rate to the population in fatalities and injuries resulting from natural hazards`, }, FLOODING: { @@ -1175,17 +1183,17 @@ export const SIDE_PANEL_INDICATOR_DESCRIPTION = defineMessages({ LOW_INCOME: { id: 'explore.map.page.side.panel.indicator.description.low.income', defaultMessage: ` - People in households where income is less than or equal to twice the federal poverty level, not including students enrolled in higher ed + People in households where income is less than or equal to twice the federal poverty level, not including students enrolled in higher ed `, description: `Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show an indicator description ofPeople in households where income is less than or equal to twice the federal poverty level, not including students enrolled in higher ed`, }, HIGH_ED: { id: 'explore.map.page.side.panel.indicator.description.high.ed', defaultMessage: ` - Percent of the census tract's population 15 or older not enrolled in college, university, or - graduate school + Percent of the census tract's population 15 or older not enrolled in college, university, or + graduate school `, - description: `Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show an indicator description of Percent of the census tract's population 15 or older not + description: `Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show an indicator description of Percent of the census tract's population 15 or older not enrolled in college, university, or graduate school`, }, @@ -1252,7 +1260,7 @@ export const SIDE_PANEL_INDICATOR_DESCRIPTION = defineMessages({ defaultMessage: ` Share of homes that are likely to have lead paint `, - description: `Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show an indicator description of Share of homes that are likely to have lead paint + description: `Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show an indicator description of Share of homes that are likely to have lead paint `, }, @@ -1330,14 +1338,14 @@ export const SIDE_PANEL_INDICATOR_DESCRIPTION = defineMessages({ POVERTY: { id: 'explore.map.page.side.panel.indicator.description.poverty', defaultMessage: ` - Share of people in households where income is at or below 100% of the Federal poverty level + Share of people in households where income is at or below 100% of the Federal poverty level `, description: `Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show an indicator description of Share of people in households where the income is at or below 100% of the Federal poverty level`, }, UNEMPLOY: { id: 'explore.map.page.side.panel.indicator.description.unemploy', defaultMessage: 'Number of unemployed people as a part of the labor force', - description: `Navigate to the explore the map page. When the map is in view, click on the map. The side + description: `Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show an indicator description of Number of unemployed people as a part of the labor force`, }, HIGH_SKL: { @@ -1398,7 +1406,7 @@ export const DOWNLOAD_DRAFT = { Download the data sources used in the CEJST (.csv, .xlxs, .pdf that describes how to use the list, and a codebook, {downloadFileSize} unzipped). Last updated: {dateUpdated}. `} description={` - Navigate to the explore the map page. Under the map, you will see a link that is placed below the + Navigate to the explore the map page. Under the map, you will see a link that is placed below the map that will download the data packet `} values={{ diff --git a/client/src/intl/en.json b/client/src/intl/en.json index 71c56013..f2a67414 100644 --- a/client/src/intl/en.json +++ b/client/src/intl/en.json @@ -741,7 +741,7 @@ }, "explore.map.page.map.territoryFocus.lower48.short": { "defaultMessage": "48", - "description": "On the explore the map page, on the map, the abbreviated name indicating the bounds of \n the Lower 48 states\n " + "description": "On the explore the map page, on the map, the abbreviated name indicating the bounds of\n the Lower 48 states\n " }, "explore.map.page.map.territoryFocus.puerto_rico.long": { "defaultMessage": "Puerto Rico", @@ -933,11 +933,11 @@ }, "explore.map.page.side.panel.indicator.description.exp.bld.loss": { "defaultMessage": "Economic loss to building value resulting from natural hazards each year", - "description": "Navigate to the explore the map page. When the map is in view, click on the map. The side \n panel will show an indicator description of Economic loss rate to buildings resulting from natural hazards" + "description": "Navigate to the explore the map page. When the map is in view, click on the map. The side\n panel will show an indicator description of Economic loss rate to buildings resulting from natural hazards" }, "explore.map.page.side.panel.indicator.description.exp.pop.loss": { "defaultMessage": "Fatalities and injuries resulting from natural hazards each year", - "description": "Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show an indicator description of Economic loss rate to the population in fatalities and \n injuries resulting from natural hazards" + "description": "Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show an indicator description of Economic loss rate to the population in fatalities and\n injuries resulting from natural hazards" }, "explore.map.page.side.panel.indicator.description.flooding": { "defaultMessage": "Projected risk to properties from projected floods, from tides, rain, riverine and storm surges within 30 years", @@ -953,7 +953,7 @@ }, "explore.map.page.side.panel.indicator.description.high.ed": { "defaultMessage": "Percent of the census tract's population 15 or older not enrolled in college, university, or graduate school", - "description": "Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show an indicator description of Percent of the census tract's population 15 or older not \n enrolled in college, university, or graduate school" + "description": "Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show an indicator description of Percent of the census tract's population 15 or older not\n enrolled in college, university, or graduate school" }, "explore.map.page.side.panel.indicator.description.high.school": { "defaultMessage": "Percent of people ages 25 years or older whose high school education is less than a high school diploma", @@ -977,7 +977,7 @@ }, "explore.map.page.side.panel.indicator.description.leadPaint": { "defaultMessage": "Share of homes that are likely to have lead paint", - "description": "Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show an indicator description of Share of homes that are likely to have lead paint \n " + "description": "Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show an indicator description of Share of homes that are likely to have lead paint\n " }, "explore.map.page.side.panel.indicator.description.leaky.tanks": { "defaultMessage": "Formula of the density of leaking underground storage tanks and number of all active underground storage tanks within 1500 feet of the census tract boundaries", @@ -1025,7 +1025,7 @@ }, "explore.map.page.side.panel.indicator.description.unemploy": { "defaultMessage": "Number of unemployed people as a part of the labor force", - "description": "Navigate to the explore the map page. When the map is in view, click on the map. The side \n panel will show an indicator description of Number of unemployed people as a part of the labor force" + "description": "Navigate to the explore the map page. When the map is in view, click on the map. The side\n panel will show an indicator description of Number of unemployed people as a part of the labor force" }, "explore.map.page.side.panel.indicator.description.wasteWater": { "defaultMessage": "Modeled toxic concentrations at parts of streams within 500 meters", @@ -1145,7 +1145,7 @@ }, "explore.map.page.side.panel.indicator.poverty": { "defaultMessage": "Poverty", - "description": "Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show Unemployment" + "description": "Navigate to the explore the map page. When the map is in view, click on the map. The side panel will show Poverty" }, "explore.map.page.side.panel.indicator.prox.haz": { "defaultMessage": "Proximity to hazardous waste facilities", @@ -1427,6 +1427,10 @@ "defaultMessage": "The {numPoints} that are Federally Recognized Tribes in this tract are are {also} considered disadvantaged.", "description": "Navigate to the explore the map page. Click on tract, The {numPoints} that are Federally Recognized Tribes in this tract ares are {also} considered disadvantaged." }, + "explore.map.page.side.panel.prio.copy.prio.island.li": { + "defaultMessage": "This tract is considered disadvantaged because it meets the low income threshold AND is located in a U.S. Territory.", + "description": "Navigate to the explore the map page. Click on tract, The side panel will show This tract is considered disadvantaged. It is an island territory that meets an adjusted low income threshold." + }, "explore.map.page.side.panel.prio.copy.prio.n.burden": { "defaultMessage": "This tract is considered disadvantaged because it meets {burdens} burden threshold AND the associated socioeconomic threshold.", "description": "Navigate to the explore the map page. Click on tract, This tract is considered disadvantaged because it meets {burdens} burden thresholds AND the associated socioeconomic threshold." @@ -1453,7 +1457,7 @@ }, "explore.map.page.side.panel.tribalInfo.landAreaName": { "defaultMessage": "Land Area Name:", - "description": "Navigate to the explore the map page. Click on Tribal Lands, when the map is in view, \n click on the map. The side panel will show the land area name of the feature selected" + "description": "Navigate to the explore the map page. Click on Tribal Lands, when the map is in view,\n click on the map. The side panel will show the land area name of the feature selected" }, "explore.map.page.side.panel.version.title": { "defaultMessage": "Methodology version {version}", @@ -1465,7 +1469,7 @@ }, "explore.map.page.under.map.download.draft.ptag.1": { "defaultMessage": "Download the data sources used in the CEJST (.csv, .xlxs, .pdf that describes how to use the list, and a codebook, {downloadFileSize} unzipped). Last updated: {dateUpdated}.", - "description": "\n Navigate to the explore the map page. Under the map, you will see a link that is placed below the \n map that will download the data packet\n " + "description": "\n Navigate to the explore the map page. Under the map, you will see a link that is placed below the\n map that will download the data packet\n " }, "explore.map.page.under.map.note.on.territories.intro": { "defaultMessage": "U.S. territories note", diff --git a/client/src/intl/es.json b/client/src/intl/es.json index 94b5188d..5fce4c69 100644 --- a/client/src/intl/es.json +++ b/client/src/intl/es.json @@ -26,10 +26,10 @@ "about.page.title.text": "Información básica", "about.page.use.data.heading": "Cómo utilizar los datos ", "about.page.use.data.paragraph": "Los datos de la herramienta están disponibles para descargar. Estos datos se pueden usar para filtrar por estado o condado.", - "about.page.use.data.tutorial":"Descarga el tutorial de la hoja de cálculo (.pdf 5,4 MB)", + "about.page.use.data.tutorial": "Descarga el tutorial de la hoja de cálculo (.pdf 5,4 MB)", "about.page.use.map.heading": "Utilización del mapa", "about.page.use.map.para": "Amplíe y seleccione cualquier distrito censal para ver si se considera como desfavorecido.", - "about.page.use.map.tutorial":"Descarga el tutorial CEJST (.pdf 9.6 MB)", + "about.page.use.map.tutorial": "Descarga el tutorial CEJST (.pdf 9.6 MB)", "common.pages.alerts.additional_docs_available.description": "Descargue un nuevo documento de apoyo técnico y otra documentación, y envíe sus comentarios.", "common.pages.alerts.banner.beta.content": "Herramienta actualizada. La versión 1.0 de la herramienta fue publicada el {relDate}.", "common.pages.alerts.census.tract.title": "Ya hay más documentación disponible", @@ -348,6 +348,7 @@ "explore.map.page.side.panel.num.categories.exceeded": "en {numberOfDisCategories, plural, one {# categoría} otras {# categorías}}", "explore.map.page.side.panel.partial.community.of.focus": "PARCIALMENTE", "explore.map.page.side.panel.prio.copy.not.prio": "Este distrito censal no se considera desfavorecido. No cumple con ninguno de los umbrales O con al menos un umbral socioeconómico relacionado.", + "explore.map.page.side.panel.prio.copy.prio.island.li": "Este distrito censal se considera desfavorecido porque cumple con el umbral de bajos ingresos Y está ubicado en un territorio de los EE. UU.", "explore.map.page.side.panel.prio.copy.not.prio.n.burden": "Este distrito censal no se considera desfavorecido. Cumple con más de 1 umbral de carga PERO con ningún umbral socioeconómico asociado.", "explore.map.page.side.panel.prio.copy.not.prio.one.burden": "Este distrito censal no se considera desfavorecido. Cumple con 1 umbral de carga PERO con ningún umbral socioeconómico asociado.", "explore.map.page.side.panel.prio.copy.not.prio.surr.li": "Este distrito censal no se considera desfavorecido. Está rodeado de distritos censales desfavorecidos PERO no cumple con el umbral ajustado de bajos ingresos. El ajuste no corresponde a ninguna de las categorías.", From 460449f989fec081a3b8b88e61b9d3bd7833716d Mon Sep 17 00:00:00 2001 From: ericiwamoto <100735505+ericiwamoto@users.noreply.github.com> Date: Wed, 20 Nov 2024 12:16:32 -0800 Subject: [PATCH 08/28] update artifact actions version --- .github/workflows/deploy_frontend_main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy_frontend_main.yml b/.github/workflows/deploy_frontend_main.yml index d70e9b4a..35efb709 100644 --- a/.github/workflows/deploy_frontend_main.yml +++ b/.github/workflows/deploy_frontend_main.yml @@ -46,7 +46,7 @@ jobs: # - name: Check for security vulnerabilities # run: npm audit --production - name: Upload Artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: J40Static # Upload-artifact does not support the default working directory @@ -60,7 +60,7 @@ jobs: - name: Checkout source uses: actions/checkout@v2 - name: Download Artifacts - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: J40Static path: ./public From 6436dfa683c6c27dcd4e5aa66cb41f14d09fa2a3 Mon Sep 17 00:00:00 2001 From: Carlos Felix <63804190+carlosfelix2@users.noreply.github.com> Date: Thu, 21 Nov 2024 10:40:51 -0500 Subject: [PATCH 09/28] Use Census Decennial 2020 data for territories --- .../data-pipeline/data_pipeline/comparator.py | 20 +- .../data_pipeline/etl/score/constants.py | 8 +- .../data_pipeline/etl/score/etl_score.py | 18 +- .../etl/sources/census_decennial/README.md | 10 +- .../etl/sources/census_decennial/constants.py | 190 ++++++ .../etl/sources/census_decennial/etl.py | 634 +++++------------- .../data_pipeline/score/field_names.py | 36 +- .../data_pipeline/score/score_narwhal.py | 12 +- .../data/extract/2020/as/60/010/census.json | 8 + .../data/extract/2020/gu/66/010/census.json | 58 ++ .../census_decennial/data/transform/usa.csv | 134 ++++ .../sources/census_decennial/test_etl.py | 152 +++++ 12 files changed, 767 insertions(+), 513 deletions(-) create mode 100644 data/data-pipeline/data_pipeline/etl/sources/census_decennial/constants.py create mode 100644 data/data-pipeline/data_pipeline/tests/sources/census_decennial/data/extract/2020/as/60/010/census.json create mode 100644 data/data-pipeline/data_pipeline/tests/sources/census_decennial/data/extract/2020/gu/66/010/census.json create mode 100644 data/data-pipeline/data_pipeline/tests/sources/census_decennial/data/transform/usa.csv create mode 100644 data/data-pipeline/data_pipeline/tests/sources/census_decennial/test_etl.py diff --git a/data/data-pipeline/data_pipeline/comparator.py b/data/data-pipeline/data_pipeline/comparator.py index 09af4e8d..6cf184b6 100644 --- a/data/data-pipeline/data_pipeline/comparator.py +++ b/data/data-pipeline/data_pipeline/comparator.py @@ -65,7 +65,9 @@ def compare_score(compare_to_version: str): # TODO: transition to downloader code when it's available production_score_url = f"https://justice40-data.s3.amazonaws.com/data-versions/{compare_to_version}/data/score/csv/full/usa.csv" - production_score_path = WORKING_PATH / "usa.csv" + production_score_path = ( + WORKING_PATH / f"prod-score-csv-full-{compare_to_version}-usa.csv" + ) log_info(f"Fetching score version {compare_to_version} from AWS") production_score_path.parent.mkdir(parents=True, exist_ok=True) @@ -200,7 +202,7 @@ def compare_score(compare_to_version: str): " The number of tracts match!\n" if len(production_disadvantaged_tracts_set) == len(local_disadvantaged_tracts_set) - else f" The difference is {abs(len(production_disadvantaged_tracts_set) - len(local_disadvantaged_tracts_set)):,} tract(s).\n" + else f" The difference is {abs(len(production_disadvantaged_tracts_set) - len(local_disadvantaged_tracts_set))} tract(s).\n" ) removed_tracts = production_disadvantaged_tracts_set.difference( @@ -209,19 +211,25 @@ def compare_score(compare_to_version: str): added_tracts = local_disadvantaged_tracts_set.difference( production_disadvantaged_tracts_set ) + removed_tracts_str = ", ".join(list(removed_tracts)) + added_tracts_str = ", ".join(list(added_tracts)) log_info( - f"There are {len(removed_tracts):,} tract(s) marked as disadvantaged in the prod score that are not disadvantaged in the local score." + f"There are {len(removed_tracts):,} tract(s) marked as disadvantaged in the prod " + "score that are not disadvantaged in the local score. Those tracts are:" ) + log_info(removed_tracts_str) log_info( - f"There are {len(added_tracts):,} tract(s) marked as disadvantaged in the local score that are not disadvantaged in the prod score." + f"There are {len(added_tracts):,} tract(s) marked as disadvantaged in the local " + "score that are not disadvantaged in the prod score. Those tracts are:" ) + log_info(added_tracts_str) summary += ( f"* There are {len(removed_tracts):,} tract(s) marked as disadvantaged in the production score that are not disadvantaged in the locally" - " generated score (i.e. disadvantaged tracts that were removed by the new score)." + f" generated score (i.e. disadvantaged tracts that were removed by the new score). Those tracts are:\n{removed_tracts_str}\n" f" There are {len(added_tracts):,} tract(s) marked as disadvantaged in the locally generated score that are not disadvantaged in the" - " production score (i.e. disadvantaged tracts that were added by the new score).\n" + f" production score (i.e. disadvantaged tracts that were added by the new score). Those tracts are:\n{added_tracts_str}\n\n" ) try: diff --git a/data/data-pipeline/data_pipeline/etl/score/constants.py b/data/data-pipeline/data_pipeline/etl/score/constants.py index ea63f854..4adf7e32 100644 --- a/data/data-pipeline/data_pipeline/etl/score/constants.py +++ b/data/data-pipeline/data_pipeline/etl/score/constants.py @@ -315,18 +315,18 @@ TILES_SCORE_COLUMNS = { field_names.ISLAND_AREAS_POVERTY_LOW_HS_EDUCATION_FIELD: "IAPLHSE", field_names.ISLAND_AREAS_LOW_MEDIAN_INCOME_LOW_HS_EDUCATION_FIELD: "IALMILHSE", # Percentiles for Island areas' workforce columns - field_names.LOW_CENSUS_DECENNIAL_AREA_MEDIAN_INCOME_PERCENT_FIELD_2009 + field_names.LOW_CENSUS_DECENNIAL_AREA_MEDIAN_INCOME_PERCENT_FIELD_2019 + field_names.PERCENTILE_FIELD_SUFFIX: "IALMILHSE_PFS", - field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_100_FPL_FIELD_2009 + field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_100_FPL_FIELD_2019 + field_names.ISLAND_AREAS_PERCENTILE_ADJUSTMENT_FIELD + field_names.PERCENTILE_FIELD_SUFFIX: "IAPLHSE_PFS", - field_names.CENSUS_DECENNIAL_UNEMPLOYMENT_FIELD_2009 + field_names.CENSUS_DECENNIAL_UNEMPLOYMENT_FIELD_2019 + field_names.ISLAND_AREAS_PERCENTILE_ADJUSTMENT_FIELD + field_names.PERCENTILE_FIELD_SUFFIX: "IAULHSE_PFS", field_names.LOW_HS_EDUCATION_FIELD: "LHE", field_names.ISLAND_AREAS_LOW_HS_EDUCATION_FIELD: "IALHE", # Percentage of HS Degree completion for Islands - field_names.CENSUS_DECENNIAL_HIGH_SCHOOL_ED_FIELD_2009: "IAHSEF", + field_names.CENSUS_DECENNIAL_HIGH_SCHOOL_ED_FIELD_2019: "IAHSEF", # Booleans for the front end about the types of thresholds exceeded field_names.CLIMATE_THRESHOLD_EXCEEDED: "N_CLT_EOMI", field_names.ENERGY_THRESHOLD_EXCEEDED: "N_ENY_EOMI", diff --git a/data/data-pipeline/data_pipeline/etl/score/etl_score.py b/data/data-pipeline/data_pipeline/etl/score/etl_score.py index 887d6189..afd8ad9a 100644 --- a/data/data-pipeline/data_pipeline/etl/score/etl_score.py +++ b/data/data-pipeline/data_pipeline/etl/score/etl_score.py @@ -166,7 +166,7 @@ class ScoreETL(ExtractTransformLoad): census_decennial_csv = ( constants.DATA_PATH / "dataset" - / "census_decennial_2010" + / "census_decennial_2020" / "usa.csv" ) self.census_decennial_df = pd.read_csv( @@ -470,13 +470,13 @@ class ScoreETL(ExtractTransformLoad): field_names.EXPECTED_BUILDING_LOSS_RATE_FIELD, field_names.EXPECTED_AGRICULTURE_LOSS_RATE_FIELD, field_names.EXPECTED_POPULATION_LOSS_RATE_FIELD, - field_names.CENSUS_DECENNIAL_HIGH_SCHOOL_ED_FIELD_2009, - field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_100_FPL_FIELD_2009, - field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_200_FPL_FIELD_2009, - field_names.CENSUS_DECENNIAL_UNEMPLOYMENT_FIELD_2009, + field_names.CENSUS_DECENNIAL_HIGH_SCHOOL_ED_FIELD_2019, + field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_100_FPL_FIELD_2019, + field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_200_FPL_FIELD_2019, + field_names.CENSUS_DECENNIAL_UNEMPLOYMENT_FIELD_2019, field_names.CENSUS_UNEMPLOYMENT_FIELD_2010, field_names.CENSUS_POVERTY_LESS_THAN_100_FPL_FIELD_2010, - field_names.CENSUS_DECENNIAL_TOTAL_POPULATION_FIELD_2009, + field_names.CENSUS_DECENNIAL_TOTAL_POPULATION_FIELD_2019, field_names.UST_FIELD, field_names.DOT_TRAVEL_BURDEN_FIELD, field_names.FUTURE_FLOOD_RISK_FIELD, @@ -542,8 +542,8 @@ class ScoreETL(ExtractTransformLoad): low_field_name=field_names.LOW_LIFE_EXPECTANCY_FIELD, ), ReversePercentile( - field_name=field_names.CENSUS_DECENNIAL_AREA_MEDIAN_INCOME_PERCENT_FIELD_2009, - low_field_name=field_names.LOW_CENSUS_DECENNIAL_AREA_MEDIAN_INCOME_PERCENT_FIELD_2009, + field_name=field_names.CENSUS_DECENNIAL_AREA_MEDIAN_INCOME_PERCENT_FIELD_2019, + low_field_name=field_names.LOW_CENSUS_DECENNIAL_AREA_MEDIAN_INCOME_PERCENT_FIELD_2019, ), ] @@ -658,7 +658,7 @@ class ScoreETL(ExtractTransformLoad): df_copy[field_names.COMBINED_CENSUS_TOTAL_POPULATION_2010] = df_copy[ [ field_names.TOTAL_POP_FIELD, - field_names.CENSUS_DECENNIAL_TOTAL_POPULATION_FIELD_2009, + field_names.CENSUS_DECENNIAL_TOTAL_POPULATION_FIELD_2019, ] ].mean(axis=1, skipna=True) diff --git a/data/data-pipeline/data_pipeline/etl/sources/census_decennial/README.md b/data/data-pipeline/data_pipeline/etl/sources/census_decennial/README.md index e043f232..3f9b3c16 100644 --- a/data/data-pipeline/data_pipeline/etl/sources/census_decennial/README.md +++ b/data/data-pipeline/data_pipeline/etl/sources/census_decennial/README.md @@ -1,10 +1,10 @@ # Decennial Census of Island Areas -Adding a new ETL folder for Decennial Census of Island Areas since the Island areas aren't included in ACS. +Decennial Census of Island Areas since the Island areas aren't included in ACS. There's the American Samoa Summary File, the Guam Summary File, the Commonwealth of the Northern Mariana Islands Summary File, and the US Virgin Islands Summary File: -1. https://api.census.gov/data/2010/dec/as.html -1. https://api.census.gov/data/2010/dec/gu.html -1. https://api.census.gov/data/2010/dec/mp.html -1. https://api.census.gov/data/2010/dec/vi.html +1. https://api.census.gov/data/2020/dec/dhcas.html +1. https://api.census.gov/data/2020/dec/dhcgu.html +1. https://api.census.gov/data/2020/dec/dhcmp.html +1. https://api.census.gov/data/2020/dec/dhcvi.html diff --git a/data/data-pipeline/data_pipeline/etl/sources/census_decennial/constants.py b/data/data-pipeline/data_pipeline/etl/sources/census_decennial/constants.py new file mode 100644 index 00000000..891279c3 --- /dev/null +++ b/data/data-pipeline/data_pipeline/etl/sources/census_decennial/constants.py @@ -0,0 +1,190 @@ +from enum import Enum +from data_pipeline.score import field_names + + +class DEC_FIELD_NAMES(str, Enum): + """Field/column names for the decennial data""" + + MALE_HIGH_SCHOOL_ED = "Total male high school graduates 25 and over" + FEMALE_HIGH_SCHOOL_ED = "Total female high school graduates 25 and over" + IMPUTED_COLLEGE_ATTENDANCE = "Percent enrollment in college, graduate or professional school, imputed" + TOTAL_RACE_POPULATION = "Total population surveyed on racial data" + BLACK = "Black or African American" + AMERICAN_INDIAN = "American Indian / Alaska Native" + ASIAN = "Asian" + HAWAIIAN = "Native Hawaiian or Pacific" + TWO_OR_MORE_RACES = "two or more races" + NON_HISPANIC_WHITE = "White" + HISPANIC = "Hispanic or Latino" + OTHER_RACE = "other races" + HOUSEHOLD_POVERTY_LEVEL_UNDER_0_5 = ( + "Household poverty level Under 0.50 IN 2019" + ) + HOUSEHOLD_POVERTY_LEVEL_UNDER_0_74 = ( + "Household poverty level Under 0.74 IN 2019" + ) + HOUSEHOLD_POVERTY_LEVEL_UNDER_0_99 = ( + "Household poverty level Under 0.99 IN 2019" + ) + HOUSEHOLD_POVERTY_LEVEL_OVER_2_0 = ( + "Household poverty level Over 2.0 IN 2019" + ) + TOTAL_HOUSEHOLD_POVERTY_LEVEL = "Total Household poverty level IN 2019" + TERRITORY_MEDIAN_INCOME = "Territory Median Income" + EMPLOYMENT_MALE_UNEMPLOYED = "Total males not in labor force" + EMPLOYMENT_FEMALE_UNEMPLOYED = "Total females not in labor force" + EMPLOYMENT_MALE_IN_LABOR_FORCE = "Total males in labor force" + EMPLOYMENT_FEMALE_IN_LABOR_FORCE = "Total females in labor force" + COLLEGE_ATTENDANCE_TOTAL_ENROLLED = "Total asked enrolled in college or graduate school (excludes military housing)" + COLLEGE_NON_ATTENDANCE = "Percent of population not currently enrolled in college, graduate or professional school" + COLLEGE_ATTENDANCE_MALE_ENROLLED = "Males enrolled in college or graduate school (excludes military housing)" + COLLEGE_ATTENDANCE_FEMALE_ENROLLED = "Females enrolled in college or graduate school (excludes military housing)" + COLLEGE_ATTENDANCE_POPULATION = ( + "Population enrolled in college, graduate or professional school" + ) + COLLEGE_ATTENDANCE_PERCENT = ( + "Percent enrollment in college, graduate or professional school" + ) + COLLEGE_NON_ATTENDANCE_PERCENT = "Percent of population not currently enrolled in college, graduate or professional school" + + def __str__(self) -> str: + """This method removes the need to use the value attribute from the Enums""" + return str.__str__(self) + + +__FIELD_NAME_COMMON_XWALK = { + "P1_001N": field_names.CENSUS_DECENNIAL_TOTAL_POPULATION_FIELD_2019, + "PBG19_005N": DEC_FIELD_NAMES.MALE_HIGH_SCHOOL_ED, + "PBG19_012N": DEC_FIELD_NAMES.FEMALE_HIGH_SCHOOL_ED, + "PCT31_001N": DEC_FIELD_NAMES.COLLEGE_ATTENDANCE_TOTAL_ENROLLED, + "PBG32_003N": DEC_FIELD_NAMES.EMPLOYMENT_MALE_IN_LABOR_FORCE, + "PBG32_007N": DEC_FIELD_NAMES.EMPLOYMENT_MALE_UNEMPLOYED, + "PBG32_010N": DEC_FIELD_NAMES.EMPLOYMENT_FEMALE_IN_LABOR_FORCE, + "PBG32_014N": DEC_FIELD_NAMES.EMPLOYMENT_FEMALE_UNEMPLOYED, + "PCT34_003N": DEC_FIELD_NAMES.COLLEGE_ATTENDANCE_MALE_ENROLLED, + "PCT34_016N": DEC_FIELD_NAMES.COLLEGE_ATTENDANCE_FEMALE_ENROLLED, + "PBG43_001N": field_names.CENSUS_DECENNIAL_MEDIAN_INCOME_2019, + "PBG74_001N": DEC_FIELD_NAMES.TOTAL_HOUSEHOLD_POVERTY_LEVEL, + "PBG74_002N": DEC_FIELD_NAMES.HOUSEHOLD_POVERTY_LEVEL_UNDER_0_5, + "PBG74_003N": DEC_FIELD_NAMES.HOUSEHOLD_POVERTY_LEVEL_UNDER_0_74, + "PBG74_004N": DEC_FIELD_NAMES.HOUSEHOLD_POVERTY_LEVEL_UNDER_0_99, + "PBG74_010N": DEC_FIELD_NAMES.HOUSEHOLD_POVERTY_LEVEL_OVER_2_0, +} +""" +Census variable to text column name mapping. For details on Census variables see: +https://api.census.gov/data/2020/dec/dhcas/variables.html +https://api.census.gov/data/2020/dec/dhcgu/variables.html +https://api.census.gov/data/2020/dec/dhcmp/variables.html +https://api.census.gov/data/2020/dec/dhcvi/variables.html +""" + +# Note that the 2010 census for island areas does not break out +# hispanic and non-hispanic white, so this is slightly different from +# our other demographic data +__FIELD_NAME_AS_XWALK = { + "PCT9_001N": DEC_FIELD_NAMES.TOTAL_RACE_POPULATION, + "PCT9_003N": DEC_FIELD_NAMES.HAWAIIAN, + "PCT9_079N": DEC_FIELD_NAMES.ASIAN, + "PCT9_130N": DEC_FIELD_NAMES.NON_HISPANIC_WHITE, + "PCT9_155N": DEC_FIELD_NAMES.BLACK, + "PCT9_180N": DEC_FIELD_NAMES.AMERICAN_INDIAN, + "PCT9_205N": DEC_FIELD_NAMES.OTHER_RACE, + "PCT9_230N": DEC_FIELD_NAMES.TWO_OR_MORE_RACES, + "P5_002N": DEC_FIELD_NAMES.HISPANIC, +} +"""American Samoa specific race fields.""" + +__FIELD_NAME_VI_XWALK = { + "PCT7_001N": DEC_FIELD_NAMES.TOTAL_RACE_POPULATION, + "PCT7_003N": DEC_FIELD_NAMES.BLACK, + "PCT7_205N": DEC_FIELD_NAMES.ASIAN, + "PCT7_230N": DEC_FIELD_NAMES.AMERICAN_INDIAN, + "PCT7_255N": DEC_FIELD_NAMES.HAWAIIAN, + "PCT7_280N": DEC_FIELD_NAMES.OTHER_RACE, + "PCT7_305N": DEC_FIELD_NAMES.TWO_OR_MORE_RACES, + "P5_021N": DEC_FIELD_NAMES.NON_HISPANIC_WHITE, + "PCT6_003N": DEC_FIELD_NAMES.HISPANIC, +} +"""US Virgin Islands specific race fields.""" + +__FIELD_NAME_GU_XWALK = { + "PCT10_001N": DEC_FIELD_NAMES.TOTAL_RACE_POPULATION, + "PCT10_003N": DEC_FIELD_NAMES.HAWAIIAN, + "PCT10_204N": DEC_FIELD_NAMES.ASIAN, + "PCT10_330N": DEC_FIELD_NAMES.BLACK, + "PCT10_355N": DEC_FIELD_NAMES.AMERICAN_INDIAN, + "PCT10_380N": DEC_FIELD_NAMES.OTHER_RACE, + "PCT10_405N": DEC_FIELD_NAMES.TWO_OR_MORE_RACES, + "P5_026N": DEC_FIELD_NAMES.NON_HISPANIC_WHITE, + "PCT9_003N": DEC_FIELD_NAMES.HISPANIC, +} +"""Guam specific race fields.""" + +__FIELD_NAME_MP_XWALK = { + "PCT9_001N": DEC_FIELD_NAMES.TOTAL_RACE_POPULATION, + "PCT9_003N": DEC_FIELD_NAMES.ASIAN, + "PCT9_129N": DEC_FIELD_NAMES.HAWAIIAN, + "PCT9_330N": DEC_FIELD_NAMES.BLACK, + "PCT9_355N": DEC_FIELD_NAMES.AMERICAN_INDIAN, + "PCT9_380N": DEC_FIELD_NAMES.OTHER_RACE, + "PCT9_405N": DEC_FIELD_NAMES.TWO_OR_MORE_RACES, + "P5_002N": DEC_FIELD_NAMES.HISPANIC, + "P5_024N": DEC_FIELD_NAMES.NON_HISPANIC_WHITE, +} +"""Northern Mariana Islands specific race fields.""" + +OUTPUT_RACE_FIELDS = [ + DEC_FIELD_NAMES.BLACK, + DEC_FIELD_NAMES.AMERICAN_INDIAN, + DEC_FIELD_NAMES.ASIAN, + DEC_FIELD_NAMES.HAWAIIAN, + DEC_FIELD_NAMES.TWO_OR_MORE_RACES, + DEC_FIELD_NAMES.NON_HISPANIC_WHITE, + DEC_FIELD_NAMES.HISPANIC, + DEC_FIELD_NAMES.OTHER_RACE, +] +"""Race fields to output in the results.""" + +DEC_TERRITORY_PARAMS = [ + { + "state_abbreviation": "as", + "fips": "60", + # https://www2.census.gov/geo/docs/reference/codes2020/cou/st60_as_cou2020.txt + "county_fips": ["010", "020", "030", "040", "050"], + "xwalk": __FIELD_NAME_COMMON_XWALK | __FIELD_NAME_AS_XWALK, + # Note: we hardcode the median income for each territory in this dict, + # because that data is hard to programmatically access. + # https://www.ruralhealthinfo.org/states/american-samoa + "median_income": 26352, + }, + { + "state_abbreviation": "gu", + "fips": "66", + # https://www2.census.gov/geo/docs/reference/codes2020/cou/st66_gu_cou2020.txt + "county_fips": ["010"], + "xwalk": __FIELD_NAME_COMMON_XWALK | __FIELD_NAME_GU_XWALK, + # https://www.ruralhealthinfo.org/states/guam + # https://data.census.gov/table/DECENNIALDPGU2020.DP3?g=040XX00US66&d=DECIA%20Guam%20Demographic%20Profile + "median_income": 58289, + }, + { + "state_abbreviation": "mp", + "fips": "69", + # https://www2.census.gov/geo/docs/reference/codes2020/cou/st69_mp_cou2020.txt + "county_fips": ["085", "100", "110", "120"], + "xwalk": __FIELD_NAME_COMMON_XWALK | __FIELD_NAME_MP_XWALK, + # https://www.ruralhealthinfo.org/states/northern-mariana + # https://data.census.gov/table/DECENNIALDPMP2020.DP3?d=DECIA%20Commonwealth%20of%20the%20Northern%20Mariana%20Islands%20Demographic%20Profile + "median_income": 31362, + }, + { + "state_abbreviation": "vi", + "fips": "78", + # https://www2.census.gov/geo/docs/reference/codes2020/cou/st78_vi_cou2020.txt + "county_fips": ["010", "020", "030"], + "xwalk": __FIELD_NAME_COMMON_XWALK | __FIELD_NAME_VI_XWALK, + # https://www.ruralhealthinfo.org/states/us-virgin-islands + "median_income": 40408, + }, +] +"""List of territories to process.""" diff --git a/data/data-pipeline/data_pipeline/etl/sources/census_decennial/etl.py b/data/data-pipeline/data_pipeline/etl/sources/census_decennial/etl.py index 4fe26249..32a58ffd 100644 --- a/data/data-pipeline/data_pipeline/etl/sources/census_decennial/etl.py +++ b/data/data-pipeline/data_pipeline/etl/sources/census_decennial/etl.py @@ -1,14 +1,19 @@ -import json -from typing import List import os - import numpy as np import pandas as pd +import json +from typing import List +from pathlib import Path +from data_pipeline.etl.sources.census_decennial.constants import ( + DEC_TERRITORY_PARAMS, + DEC_FIELD_NAMES, + OUTPUT_RACE_FIELDS, +) from data_pipeline.etl.base import ExtractTransformLoad -from data_pipeline.score import field_names -from data_pipeline.utils import get_module_logger from data_pipeline.etl.datasource import DataSource from data_pipeline.etl.datasource import FileDataSource +from data_pipeline.score import field_names +from data_pipeline.utils import get_module_logger pd.options.mode.chained_assignment = "raise" @@ -16,514 +21,209 @@ logger = get_module_logger(__name__) class CensusDecennialETL(ExtractTransformLoad): - def __init__(self): - self.DECENNIAL_YEAR = 2010 - self.OUTPUT_PATH = ( - self.DATA_PATH - / "dataset" - / f"census_decennial_{self.DECENNIAL_YEAR}" - ) + DECENNIAL_YEAR = 2020 + OUTPUT_PATH = ( + ExtractTransformLoad.DATA_PATH + / "dataset" + / f"census_decennial_{DECENNIAL_YEAR}" + ) - # Income Fields - # AS, GU, and MP all share the same variable names, but VI is different - # https://api.census.gov/data/2010/dec/as.html - # https://api.census.gov/data/2010/dec/gu/variables.html - # https://api.census.gov/data/2010/dec/mp/variables.html - # https://api.census.gov/data/2010/dec/vi/variables.html - - # Total population field is the same in all island areas - self.TOTAL_POP_FIELD = self.TOTAL_POP_VI_FIELD = "P001001" - self.TOTAL_POP_FIELD_NAME = "Total population in 2009" - - self.MEDIAN_INCOME_FIELD = "PBG049001" - self.MEDIAN_INCOME_VI_FIELD = "PBG047001" - self.MEDIAN_INCOME_FIELD_NAME = "Median household income in 2009 ($)" - self.AREA_MEDIAN_INCOME_FIELD_NAME = ( - "Median household income as a percent of " - "territory median income in 2009" + def __get_api_url( + self, + state_abbreviation: str, + name_list: List[str], + fips: str, + county: str, + ) -> str: + url = ( + f"https://api.census.gov/data/{self.DECENNIAL_YEAR}/dec/dhc{state_abbreviation}?get=NAME,{name_list}" + + f"&for=tract:*&in=state:{fips}%20county:{county}" ) - - self.TERRITORY_MEDIAN_INCOME_FIELD = "Territory Median Income" - - self.TOTAL_HOUSEHOLD_RATIO_INCOME_TO_POVERTY_LEVEL_FIELD = "PBG083001" - self.TOTAL_HOUSEHOLD_RATIO_INCOME_TO_POVERTY_LEVEL_VI_FIELD = ( - "PBG077001" - ) - self.TOTAL_HOUSEHOLD_RATIO_INCOME_TO_POVERTY_LEVEL_FIELD_NAME = ( - "TOTAL; RATIO OF INCOME TO POVERTY LEVEL IN 2009" - ) - - self.HOUSEHOLD_OVER_200_PERC_POVERTY_LEVEL_FIELD = "PBG083010" - self.HOUSEHOLD_OVER_200_PERC_POVERTY_LEVEL_VI_FIELD = "PBG077010" - self.HOUSEHOLD_OVER_200_PERC_POVERTY_LEVEL_FIELD_NAME = ( - "Total!!2.00 and over; RATIO OF INCOME TO POVERTY LEVEL IN 2009" - ) - - self.PERCENTAGE_HOUSEHOLDS_BELOW_200_PERC_POVERTY_LEVEL_FIELD_NAME = ( - "Percentage households below 200% of federal poverty line in 2009" - ) - - # We will combine three fields to get households < 100% FPL. - self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_PART_ONE = ( - "PBG083002" # Total!!Under .50 - ) - self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_PART_TWO = ( - "PBG083003" # Total!!.50 to .74 - ) - self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_PART_THREE = ( - "PBG083004" # Total!!.75 to .99 - ) - - # Same fields, for Virgin Islands. - self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_VI_PART_ONE = ( - "PBG077002" # Total!!Under .50 - ) - self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_VI_PART_TWO = ( - "PBG077003" # Total!!.50 to .74 - ) - self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_VI_PART_THREE = ( - "PBG077004" # Total!!.75 to .99 - ) - - self.HOUSEHOLD_OVER_200_PERC_POVERTY_LEVEL_FIELD = "PBG083010" - self.HOUSEHOLD_OVER_200_PERC_POVERTY_LEVEL_VI_FIELD = "PBG077010" - self.HOUSEHOLD_OVER_200_PERC_POVERTY_LEVEL_FIELD_NAME = ( - "Total!!2.00 and over; RATIO OF INCOME TO POVERTY LEVEL IN 2009" - ) - - self.PERCENTAGE_HOUSEHOLDS_BELOW_100_PERC_POVERTY_LEVEL_FIELD_NAME = ( - "Percentage households below 100% of federal poverty line in 2009" - ) - - # High School Education Fields - self.TOTAL_POPULATION_FIELD = "PBG026001" - self.TOTAL_POPULATION_VI_FIELD = "PCT032001" - self.TOTAL_POPULATION_FIELD_NAME = "Total; SEX BY EDUCATIONAL ATTAINMENT FOR THE POPULATION 25 YEARS AND OVER" - - self.MALE_HIGH_SCHOOL_ED_FIELD = "PBG026005" - self.MALE_HIGH_SCHOOL_ED_VI_FIELD = "PCT032011" - self.MALE_HIGH_SCHOOL_ED_FIELD_NAME = ( - "Total!!Male!!High school graduate, GED, or alternative; " - "SEX BY EDUCATIONAL ATTAINMENT FOR THE POPULATION 25 YEARS AND OVER" - ) - - self.FEMALE_HIGH_SCHOOL_ED_FIELD = "PBG026012" - self.FEMALE_HIGH_SCHOOL_ED_VI_FIELD = "PCT032028" - self.FEMALE_HIGH_SCHOOL_ED_FIELD_NAME = ( - "Total!!Female!!High school graduate, GED, or alternative; " - "SEX BY EDUCATIONAL ATTAINMENT FOR THE POPULATION 25 YEARS AND OVER" - ) - - self.PERCENTAGE_HIGH_SCHOOL_ED_FIELD_NAME = "Percent individuals age 25 or over with less than high school degree in 2009" - - # Employment fields - self.EMPLOYMENT_MALE_IN_LABOR_FORCE_FIELD = ( - "PBG038003" # Total!!Male!!In labor force - ) - self.EMPLOYMENT_MALE_UNEMPLOYED_FIELD = ( - "PBG038007" # Total!!Male!!In labor force!!Civilian!!Unemployed - ) - self.EMPLOYMENT_FEMALE_IN_LABOR_FORCE_FIELD = ( - "PBG038010" # Total!!Female!!In labor force - ) - self.EMPLOYMENT_FEMALE_UNEMPLOYED_FIELD = ( - "PBG038014" # Total!!Female!!In labor force!!Civilian!!Unemployed - ) - - # Same fields, Virgin Islands. - self.EMPLOYMENT_MALE_IN_LABOR_FORCE_VI_FIELD = ( - "PBG036003" # Total!!Male!!In labor force - ) - self.EMPLOYMENT_MALE_UNEMPLOYED_VI_FIELD = ( - "PBG036007" # Total!!Male!!In labor force!!Civilian!!Unemployed - ) - self.EMPLOYMENT_FEMALE_IN_LABOR_FORCE_VI_FIELD = ( - "PBG036010" # Total!!Female!!In labor force - ) - self.EMPLOYMENT_FEMALE_UNEMPLOYED_VI_FIELD = ( - "PBG036014" # Total!!Female!!In labor force!!Civilian!!Unemployed - ) - - self.UNEMPLOYMENT_FIELD_NAME = ( - field_names.CENSUS_DECENNIAL_UNEMPLOYMENT_FIELD_2009 - ) - - # Race/Ethnicity fields - self.TOTAL_RACE_POPULATION_FIELD = "PCT086001" # Total - self.ASIAN_FIELD = "PCT086002" # Total!!Asian - self.BLACK_FIELD = "PCT086003" # Total!!Black or African American - self.HAWAIIAN_FIELD = ( - "PCT086004" # Total!!Native Hawaiian and Other Pacific Islander - ) - # Note that the 2010 census for island araeas does not break out - # hispanic and non-hispanic white, so this is slightly different from - # our other demographic data - self.NON_HISPANIC_WHITE_FIELD = "PCT086005" # Total!!White - self.HISPANIC_FIELD = "PCT086006" # Total!!Hispanic or Latino - self.OTHER_RACE_FIELD = "PCT086007" # Total!!Other Ethnic Origin or Ra - - self.TOTAL_RACE_POPULATION_VI_FIELD = "P003001" # Total - self.BLACK_VI_FIELD = ( - "P003003" # Total!!One race!!Black or African American alone - ) - self.AMERICAN_INDIAN_VI_FIELD = "P003005" # Total!!One race!!American Indian and Alaska Native alone - self.ASIAN_VI_FIELD = "P003006" # Total!!One race!!Asian alone - self.HAWAIIAN_VI_FIELD = "P003007" # Total!!One race!!Native Hawaiian and Other Pacific Islander alone - self.TWO_OR_MORE_RACES_VI_FIELD = "P003009" # Total!!Two or More Races - self.NON_HISPANIC_WHITE_VI_FIELD = ( - "P005006" # Total!!Not Hispanic or Latino!!One race!!White alone - ) - self.HISPANIC_VI_FIELD = "P005002" # Total!!Hispanic or Latino - self.OTHER_RACE_VI_FIELD = ( - "P003008" # Total!!One race!!Some Other Race alone - ) - self.TOTAL_RACE_POPULATION_VI_FIELD = "P003001" # Total - - self.TOTAL_RACE_POPULATION_FIELD_NAME = ( - "Total population surveyed on racial data" - ) - self.BLACK_FIELD_NAME = "Black or African American" - self.AMERICAN_INDIAN_FIELD_NAME = "American Indian / Alaska Native" - self.ASIAN_FIELD_NAME = "Asian" - self.HAWAIIAN_FIELD_NAME = "Native Hawaiian or Pacific" - self.TWO_OR_MORE_RACES_FIELD_NAME = "two or more races" - self.NON_HISPANIC_WHITE_FIELD_NAME = "White" - self.HISPANIC_FIELD_NAME = "Hispanic or Latino" - # Note that `other` is lowercase because the whole field will show up in the download - # file as "Percent other races" - self.OTHER_RACE_FIELD_NAME = "other races" - - # Name output demographics fields. - self.RE_OUTPUT_FIELDS = [ - self.BLACK_FIELD_NAME, - self.AMERICAN_INDIAN_FIELD_NAME, - self.ASIAN_FIELD_NAME, - self.HAWAIIAN_FIELD_NAME, - self.TWO_OR_MORE_RACES_FIELD_NAME, - self.NON_HISPANIC_WHITE_FIELD_NAME, - self.HISPANIC_FIELD_NAME, - self.OTHER_RACE_FIELD_NAME, - ] - - var_list = [ - self.MEDIAN_INCOME_FIELD, - self.TOTAL_HOUSEHOLD_RATIO_INCOME_TO_POVERTY_LEVEL_FIELD, - self.HOUSEHOLD_OVER_200_PERC_POVERTY_LEVEL_FIELD, - self.TOTAL_POPULATION_FIELD, - self.MALE_HIGH_SCHOOL_ED_FIELD, - self.FEMALE_HIGH_SCHOOL_ED_FIELD, - self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_PART_ONE, - self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_PART_TWO, - self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_PART_THREE, - self.EMPLOYMENT_MALE_IN_LABOR_FORCE_FIELD, - self.EMPLOYMENT_MALE_UNEMPLOYED_FIELD, - self.EMPLOYMENT_FEMALE_IN_LABOR_FORCE_FIELD, - self.EMPLOYMENT_FEMALE_UNEMPLOYED_FIELD, - self.TOTAL_POP_FIELD, - self.TOTAL_RACE_POPULATION_FIELD, - self.ASIAN_FIELD, - self.BLACK_FIELD, - self.HAWAIIAN_FIELD, - self.NON_HISPANIC_WHITE_FIELD, - self.HISPANIC_FIELD, - self.OTHER_RACE_FIELD, - ] - var_list = ",".join(var_list) - - var_list_vi = [ - self.MEDIAN_INCOME_VI_FIELD, - self.TOTAL_HOUSEHOLD_RATIO_INCOME_TO_POVERTY_LEVEL_VI_FIELD, - self.HOUSEHOLD_OVER_200_PERC_POVERTY_LEVEL_VI_FIELD, - self.TOTAL_POPULATION_VI_FIELD, - self.MALE_HIGH_SCHOOL_ED_VI_FIELD, - self.FEMALE_HIGH_SCHOOL_ED_VI_FIELD, - self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_VI_PART_ONE, - self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_VI_PART_TWO, - self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_VI_PART_THREE, - self.EMPLOYMENT_MALE_IN_LABOR_FORCE_VI_FIELD, - self.EMPLOYMENT_MALE_UNEMPLOYED_VI_FIELD, - self.EMPLOYMENT_FEMALE_IN_LABOR_FORCE_VI_FIELD, - self.EMPLOYMENT_FEMALE_UNEMPLOYED_VI_FIELD, - self.TOTAL_POP_VI_FIELD, - self.BLACK_VI_FIELD, - self.AMERICAN_INDIAN_VI_FIELD, - self.ASIAN_VI_FIELD, - self.HAWAIIAN_VI_FIELD, - self.TWO_OR_MORE_RACES_VI_FIELD, - self.NON_HISPANIC_WHITE_VI_FIELD, - self.HISPANIC_VI_FIELD, - self.OTHER_RACE_VI_FIELD, - self.TOTAL_RACE_POPULATION_VI_FIELD, - ] - var_list_vi = ",".join(var_list_vi) - - self.FIELD_NAME_XWALK = { - self.MEDIAN_INCOME_FIELD: self.MEDIAN_INCOME_FIELD_NAME, - self.MEDIAN_INCOME_VI_FIELD: self.MEDIAN_INCOME_FIELD_NAME, - self.TOTAL_HOUSEHOLD_RATIO_INCOME_TO_POVERTY_LEVEL_FIELD: self.TOTAL_HOUSEHOLD_RATIO_INCOME_TO_POVERTY_LEVEL_FIELD_NAME, - self.TOTAL_HOUSEHOLD_RATIO_INCOME_TO_POVERTY_LEVEL_VI_FIELD: self.TOTAL_HOUSEHOLD_RATIO_INCOME_TO_POVERTY_LEVEL_FIELD_NAME, - self.HOUSEHOLD_OVER_200_PERC_POVERTY_LEVEL_FIELD: self.HOUSEHOLD_OVER_200_PERC_POVERTY_LEVEL_FIELD_NAME, - self.HOUSEHOLD_OVER_200_PERC_POVERTY_LEVEL_VI_FIELD: self.HOUSEHOLD_OVER_200_PERC_POVERTY_LEVEL_FIELD_NAME, - self.TOTAL_POPULATION_FIELD: self.TOTAL_POPULATION_FIELD_NAME, - self.TOTAL_POPULATION_VI_FIELD: self.TOTAL_POPULATION_FIELD_NAME, - self.MALE_HIGH_SCHOOL_ED_FIELD: self.MALE_HIGH_SCHOOL_ED_FIELD_NAME, - self.MALE_HIGH_SCHOOL_ED_VI_FIELD: self.MALE_HIGH_SCHOOL_ED_FIELD_NAME, - self.FEMALE_HIGH_SCHOOL_ED_FIELD: self.FEMALE_HIGH_SCHOOL_ED_FIELD_NAME, - self.FEMALE_HIGH_SCHOOL_ED_VI_FIELD: self.FEMALE_HIGH_SCHOOL_ED_FIELD_NAME, - self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_PART_ONE: self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_PART_ONE, - self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_VI_PART_ONE: self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_PART_ONE, - self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_PART_TWO: self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_PART_TWO, - self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_VI_PART_TWO: self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_PART_TWO, - self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_PART_THREE: self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_PART_THREE, - self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_VI_PART_THREE: self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_PART_THREE, - self.EMPLOYMENT_MALE_IN_LABOR_FORCE_VI_FIELD: self.EMPLOYMENT_MALE_IN_LABOR_FORCE_FIELD, - self.EMPLOYMENT_MALE_UNEMPLOYED_VI_FIELD: self.EMPLOYMENT_MALE_UNEMPLOYED_FIELD, - self.EMPLOYMENT_FEMALE_IN_LABOR_FORCE_VI_FIELD: self.EMPLOYMENT_FEMALE_IN_LABOR_FORCE_FIELD, - self.EMPLOYMENT_FEMALE_UNEMPLOYED_VI_FIELD: self.EMPLOYMENT_FEMALE_UNEMPLOYED_FIELD, - self.EMPLOYMENT_MALE_IN_LABOR_FORCE_FIELD: self.EMPLOYMENT_MALE_IN_LABOR_FORCE_FIELD, - self.EMPLOYMENT_MALE_UNEMPLOYED_FIELD: self.EMPLOYMENT_MALE_UNEMPLOYED_FIELD, - self.EMPLOYMENT_FEMALE_IN_LABOR_FORCE_FIELD: self.EMPLOYMENT_FEMALE_IN_LABOR_FORCE_FIELD, - self.EMPLOYMENT_FEMALE_UNEMPLOYED_FIELD: self.EMPLOYMENT_FEMALE_UNEMPLOYED_FIELD, - self.TOTAL_RACE_POPULATION_FIELD: self.TOTAL_RACE_POPULATION_FIELD_NAME, - self.TOTAL_RACE_POPULATION_VI_FIELD: self.TOTAL_RACE_POPULATION_FIELD_NAME, - # Note there is no American Indian data for AS/GU/MI - self.AMERICAN_INDIAN_VI_FIELD: self.AMERICAN_INDIAN_FIELD_NAME, - self.ASIAN_FIELD: self.ASIAN_FIELD_NAME, - self.ASIAN_VI_FIELD: self.ASIAN_FIELD_NAME, - self.BLACK_FIELD: self.BLACK_FIELD_NAME, - self.BLACK_VI_FIELD: self.BLACK_FIELD_NAME, - self.HAWAIIAN_FIELD: self.HAWAIIAN_FIELD_NAME, - self.HAWAIIAN_VI_FIELD: self.HAWAIIAN_FIELD_NAME, - self.TWO_OR_MORE_RACES_VI_FIELD: self.TWO_OR_MORE_RACES_FIELD_NAME, - self.NON_HISPANIC_WHITE_FIELD: self.NON_HISPANIC_WHITE_FIELD_NAME, - self.NON_HISPANIC_WHITE_VI_FIELD: self.NON_HISPANIC_WHITE_FIELD_NAME, - self.HISPANIC_FIELD: self.HISPANIC_FIELD_NAME, - self.HISPANIC_VI_FIELD: self.HISPANIC_FIELD_NAME, - self.OTHER_RACE_FIELD: self.OTHER_RACE_FIELD_NAME, - self.OTHER_RACE_VI_FIELD: self.OTHER_RACE_FIELD_NAME, - } - - # To do: Ask Census Slack Group about whether you need to hardcode the county fips - # https://uscensusbureau.slack.com/archives/C6DGLC05B/p1635218909012600 - self.ISLAND_TERRITORIES = [ - { - "state_abbreviation": "as", - "fips": "60", - "county_fips": ["010", "020", "030", "040", "050"], - "var_list": var_list, - # Note: we hardcode the median income for each territory in this dict, - # because that data is hard to programmatically access. - self.TERRITORY_MEDIAN_INCOME_FIELD: 23892, - }, - { - "state_abbreviation": "gu", - "fips": "66", - "county_fips": ["010"], - "var_list": var_list, - self.TERRITORY_MEDIAN_INCOME_FIELD: 48274, - }, - { - "state_abbreviation": "mp", - "fips": "69", - "county_fips": ["085", "100", "110", "120"], - "var_list": var_list, - self.TERRITORY_MEDIAN_INCOME_FIELD: 19958, - }, - { - "state_abbreviation": "vi", - "fips": "78", - "county_fips": ["010", "020", "030"], - "var_list": var_list_vi, - self.TERRITORY_MEDIAN_INCOME_FIELD: 37254, - }, - ] - - self.API_URL = ( - "https://api.census.gov/data/{}/dec/{}?get=NAME,{}" - + "&for=tract:*&in=state:{}%20county:{}" - ) - census_api_key = os.environ.get("CENSUS_API_KEY") if census_api_key: - self.API_URL = self.API_URL + f"&key={census_api_key}" + url += f"&key={census_api_key}" + return url - self.final_race_fields: List[str] = [] + def __get_destination_path( + self, + state_abbreviation: str, + fips: str, + county: str, + test_path: Path = None, + ) -> str: + root_path = test_path or self.get_sources_path() + return ( + root_path + / str(self.DECENNIAL_YEAR) + / state_abbreviation + / fips + / county + / "census.json" + ) - self.df: pd.DataFrame - self.df_vi: pd.DataFrame - self.df_all: pd.DataFrame - - def get_data_sources(self) -> [DataSource]: + def __init__(self): + self.df_all = pd.DataFrame() + self.final_race_fields = [] + def get_data_sources(self) -> List[DataSource]: sources = [] - - for island in self.ISLAND_TERRITORIES: + for island in DEC_TERRITORY_PARAMS: for county in island["county_fips"]: - - api_url = self.API_URL.format( - self.DECENNIAL_YEAR, + api_url = self.__get_api_url( island["state_abbreviation"], - island["var_list"], + ",".join(island["xwalk"].keys()), island["fips"], county, ) - sources.append( FileDataSource( - source=api_url, - destination=self.get_sources_path() - / str(self.DECENNIAL_YEAR) - / island["state_abbreviation"] - / island["fips"] - / county - / "census.json", + api_url, + self.__get_destination_path( + island["state_abbreviation"], island["fips"], county + ), ) ) - return sources - def extract(self, use_cached_data_sources: bool = False) -> None: - - super().extract( - use_cached_data_sources - ) # download and extract data sources - - dfs = [] - dfs_vi = [] - for island in self.ISLAND_TERRITORIES: - logger.debug( - f"Downloading data for state/territory {island['state_abbreviation']}" - ) - for county in island["county_fips"]: - + def extract( + self, + use_cached_data_sources: bool = False, + test_territory_params=None, + test_path: Path = None, + ) -> None: + super().extract(use_cached_data_sources) + for territory in test_territory_params or DEC_TERRITORY_PARAMS: + for county in territory["county_fips"]: + abbr = territory["state_abbreviation"] + file_path = self.__get_destination_path( + abbr, territory["fips"], county, test_path=test_path + ) try: - filepath = ( - self.get_sources_path() - / str(self.DECENNIAL_YEAR) - / island["state_abbreviation"] - / island["fips"] - / county - / "census.json" - ) - df = json.load(filepath.open()) - except ValueError as e: + json_data = json.load(file_path.open()) + except (FileNotFoundError, ValueError) as e: logger.error( f"Could not load content in census decennial ETL because {e}." ) + raise + df = pd.DataFrame(json_data[1:], columns=json_data[0]) + # Rename the columns to their common names + df.rename(columns=territory["xwalk"], inplace=True) - # First row is the header - df = pd.DataFrame(df[1:], columns=df[0]) + # Convert columns to numeric where applicable + for column in df.columns: + if column not in ["state", "county", "NAME", "tract"]: + df[column] = pd.to_numeric(df[column], errors="ignore") - for col in island["var_list"].split(","): - # Converting appropriate variables to numeric. - # Also replacing 0s with NaNs - df[col] = pd.to_numeric(df[col]) + # Add the territory median income + df.loc[ + df[field_names.CENSUS_DECENNIAL_TOTAL_POPULATION_FIELD_2019] + > 0, + DEC_FIELD_NAMES.TERRITORY_MEDIAN_INCOME, + ] = territory["median_income"] + self.df_all = pd.concat([self.df_all, df]) - # TO-DO: CHECK THIS. I think it makes sense to replace 0 with NaN - # because for our variables of interest (e.g. Median Household Income, - # it doesn't make sense for that to be 0.) - # Likely, it's actually missing but can't find a cite for that in the docs - df[col] = df[col].replace(0, np.nan) - - if island["state_abbreviation"] == "vi": - dfs_vi.append(df) - else: - dfs.append(df) - - self.df = pd.concat(dfs) - self.df_vi = pd.concat(dfs_vi) + def _merge_tracts_2010_compatibility(self): + """Merges tract 69120950200 to match 2010 tracts""" + # MP 69/120 69120950200 = 69120950201, 69120950202 + # Tract has been split, but 69120950202 has no data, so we just make 69120950200 = 69120950201 + self.df_all = self.df_all.drop( + self.df_all[ + self.df_all[field_names.GEOID_TRACT_FIELD] == "69120950202" + ].index + ) + self.df_all.loc[ + self.df_all[field_names.GEOID_TRACT_FIELD] == "69120950201", + field_names.GEOID_TRACT_FIELD, + ] = "69120950200" def transform(self) -> None: - # Rename All Fields - self.df.rename(columns=self.FIELD_NAME_XWALK, inplace=True) - self.df_vi.rename(columns=self.FIELD_NAME_XWALK, inplace=True) + # Creating Geo ID (Census Block Group) Field Name + self.df_all[field_names.GEOID_TRACT_FIELD] = ( + self.df_all["state"] + self.df_all["county"] + self.df_all["tract"] + ) - # Combine the dfs after renaming - self.df_all = pd.concat([self.df, self.df_vi]) + # Combine the two MP 2020 tracts that were split from one 2010 tract + self._merge_tracts_2010_compatibility() - # Rename total population: - self.df_all[self.TOTAL_POP_FIELD_NAME] = self.df_all[ - self.TOTAL_POP_FIELD + # Replace invalid numeric values with NaN + numeric_columns = self.df_all.select_dtypes(include="number").columns + for num_column in numeric_columns: + self.df_all.loc[self.df_all[num_column] < -999, num_column] = np.nan + + # Percentage of households below 100% FPL + self.df_all[ + field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_100_FPL_FIELD_2019 + ] = ( + self.df_all[DEC_FIELD_NAMES.HOUSEHOLD_POVERTY_LEVEL_UNDER_0_5] + + self.df_all[DEC_FIELD_NAMES.HOUSEHOLD_POVERTY_LEVEL_UNDER_0_74] + + self.df_all[DEC_FIELD_NAMES.HOUSEHOLD_POVERTY_LEVEL_UNDER_0_99] + ) / self.df_all[ + DEC_FIELD_NAMES.TOTAL_HOUSEHOLD_POVERTY_LEVEL ] # Percentage of households below 200% which is - # [PBG083001 (total) - PBG083010 (num households over 200%)] / PBG083001 (total) self.df_all[ - self.PERCENTAGE_HOUSEHOLDS_BELOW_200_PERC_POVERTY_LEVEL_FIELD_NAME + field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_200_FPL_FIELD_2019 ] = ( - self.df_all[ - self.TOTAL_HOUSEHOLD_RATIO_INCOME_TO_POVERTY_LEVEL_FIELD_NAME - ] - - self.df_all[self.HOUSEHOLD_OVER_200_PERC_POVERTY_LEVEL_FIELD_NAME] + self.df_all[DEC_FIELD_NAMES.TOTAL_HOUSEHOLD_POVERTY_LEVEL] + - self.df_all[DEC_FIELD_NAMES.HOUSEHOLD_POVERTY_LEVEL_OVER_2_0] ) / self.df_all[ - self.TOTAL_HOUSEHOLD_RATIO_INCOME_TO_POVERTY_LEVEL_FIELD_NAME - ] - - # Percentage of households below 100% FPL - # which we get by adding `Total!!Under .50`, `Total!!.50 to .74`, ` Total!!.75 to .99`, - # and then dividing by PBG083001 (total) - self.df_all[ - self.PERCENTAGE_HOUSEHOLDS_BELOW_100_PERC_POVERTY_LEVEL_FIELD_NAME - ] = ( - self.df_all[ - self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_PART_ONE - ] - + self.df_all[ - self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_PART_TWO - ] - + self.df_all[ - self.HOUSEHOLD_UNDER_100_PERC_POVERTY_LEVEL_FIELD_PART_THREE - ] - ) / self.df_all[ - self.TOTAL_HOUSEHOLD_RATIO_INCOME_TO_POVERTY_LEVEL_FIELD_NAME + DEC_FIELD_NAMES.TOTAL_HOUSEHOLD_POVERTY_LEVEL ] # Percentage High School Achievement is # Percentage = (Male + Female) / (Total) - self.df_all[self.PERCENTAGE_HIGH_SCHOOL_ED_FIELD_NAME] = ( - self.df_all[self.MALE_HIGH_SCHOOL_ED_FIELD_NAME] - + self.df_all[self.FEMALE_HIGH_SCHOOL_ED_FIELD_NAME] - ) / self.df_all[self.TOTAL_POPULATION_FIELD_NAME] + self.df_all[field_names.CENSUS_DECENNIAL_HIGH_SCHOOL_ED_FIELD_2019] = ( + self.df_all[DEC_FIELD_NAMES.MALE_HIGH_SCHOOL_ED] + + self.df_all[DEC_FIELD_NAMES.FEMALE_HIGH_SCHOOL_ED] + ) / self.df_all[ + field_names.CENSUS_DECENNIAL_TOTAL_POPULATION_FIELD_2019 + ] # Calculate employment. - self.df_all[self.UNEMPLOYMENT_FIELD_NAME] = ( - self.df_all[self.EMPLOYMENT_MALE_UNEMPLOYED_FIELD] - + self.df_all[self.EMPLOYMENT_FEMALE_UNEMPLOYED_FIELD] + self.df_all[field_names.CENSUS_DECENNIAL_UNEMPLOYMENT_FIELD_2019] = ( + self.df_all[DEC_FIELD_NAMES.EMPLOYMENT_MALE_UNEMPLOYED] + + self.df_all[DEC_FIELD_NAMES.EMPLOYMENT_FEMALE_UNEMPLOYED] ) / ( - self.df_all[self.EMPLOYMENT_MALE_IN_LABOR_FORCE_FIELD] - + self.df_all[self.EMPLOYMENT_FEMALE_IN_LABOR_FORCE_FIELD] + self.df_all[DEC_FIELD_NAMES.EMPLOYMENT_MALE_IN_LABOR_FORCE] + + self.df_all[DEC_FIELD_NAMES.EMPLOYMENT_FEMALE_IN_LABOR_FORCE] ) # Calculate area median income - median_income_df = pd.DataFrame(self.ISLAND_TERRITORIES) - median_income_df = median_income_df[ - ["fips", self.TERRITORY_MEDIAN_INCOME_FIELD] - ] - self.df_all = self.df_all.merge( - right=median_income_df, left_on="state", right_on="fips", how="left" - ) - self.df_all[self.AREA_MEDIAN_INCOME_FIELD_NAME] = ( - self.df_all[self.MEDIAN_INCOME_FIELD_NAME] - / self.df_all[self.TERRITORY_MEDIAN_INCOME_FIELD] + self.df_all[ + field_names.CENSUS_DECENNIAL_AREA_MEDIAN_INCOME_PERCENT_FIELD_2019 + ] = ( + self.df_all[field_names.CENSUS_DECENNIAL_MEDIAN_INCOME_2019] + / self.df_all[DEC_FIELD_NAMES.TERRITORY_MEDIAN_INCOME] ) - # Creating Geo ID (Census Block Group) Field Name - self.df_all[self.GEOID_TRACT_FIELD_NAME] = ( - self.df_all["state"] + self.df_all["county"] + self.df_all["tract"] + # Calculate college attendance + self.df_all[DEC_FIELD_NAMES.COLLEGE_ATTENDANCE_POPULATION] = ( + self.df_all[DEC_FIELD_NAMES.COLLEGE_ATTENDANCE_MALE_ENROLLED] + + self.df_all[DEC_FIELD_NAMES.COLLEGE_ATTENDANCE_FEMALE_ENROLLED] + ) + self.df_all[DEC_FIELD_NAMES.COLLEGE_ATTENDANCE_PERCENT] = ( + self.df_all[DEC_FIELD_NAMES.COLLEGE_ATTENDANCE_MALE_ENROLLED] + + self.df_all[DEC_FIELD_NAMES.COLLEGE_ATTENDANCE_FEMALE_ENROLLED] + ) / self.df_all[DEC_FIELD_NAMES.COLLEGE_ATTENDANCE_TOTAL_ENROLLED] + self.df_all[DEC_FIELD_NAMES.COLLEGE_NON_ATTENDANCE_PERCENT] = ( + 1 - self.df_all[DEC_FIELD_NAMES.COLLEGE_ATTENDANCE_PERCENT] ) # Calculate stats by race - for race_field_name in self.RE_OUTPUT_FIELDS: + for race_field_name in OUTPUT_RACE_FIELDS: output_field_name = ( field_names.PERCENT_PREFIX + race_field_name - + field_names.ISLAND_AREA_BACKFILL_SUFFIX + # 2010 vs 2020 WARNING + # We must keep the old 2009 date to make it compatible with all the other 2010 data + + f" in {field_names.DEC_DATA_YEAR}" ) - self.final_race_fields.append(output_field_name) self.df_all[output_field_name] = ( self.df_all[race_field_name] - / self.df_all[self.TOTAL_RACE_POPULATION_FIELD_NAME] + / self.df_all[DEC_FIELD_NAMES.TOTAL_RACE_POPULATION] ) + self.final_race_fields.append(output_field_name) # Reporting Missing Values for col in self.df_all.columns: @@ -533,21 +233,21 @@ class CensusDecennialETL(ExtractTransformLoad): ) def load(self) -> None: - # mkdir census self.OUTPUT_PATH.mkdir(parents=True, exist_ok=True) - columns_to_include = [ - self.GEOID_TRACT_FIELD_NAME, - self.TOTAL_POP_FIELD_NAME, - self.MEDIAN_INCOME_FIELD_NAME, - self.TERRITORY_MEDIAN_INCOME_FIELD, - self.AREA_MEDIAN_INCOME_FIELD_NAME, - self.PERCENTAGE_HOUSEHOLDS_BELOW_100_PERC_POVERTY_LEVEL_FIELD_NAME, - self.PERCENTAGE_HOUSEHOLDS_BELOW_200_PERC_POVERTY_LEVEL_FIELD_NAME, - self.PERCENTAGE_HIGH_SCHOOL_ED_FIELD_NAME, - self.UNEMPLOYMENT_FIELD_NAME, + field_names.GEOID_TRACT_FIELD, + field_names.CENSUS_DECENNIAL_TOTAL_POPULATION_FIELD_2019, + field_names.CENSUS_DECENNIAL_MEDIAN_INCOME_2019, + DEC_FIELD_NAMES.TERRITORY_MEDIAN_INCOME, + field_names.CENSUS_DECENNIAL_AREA_MEDIAN_INCOME_PERCENT_FIELD_2019, + field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_100_FPL_FIELD_2019, + field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_200_FPL_FIELD_2019, + field_names.CENSUS_DECENNIAL_UNEMPLOYMENT_FIELD_2019, + field_names.CENSUS_DECENNIAL_HIGH_SCHOOL_ED_FIELD_2019, + DEC_FIELD_NAMES.COLLEGE_ATTENDANCE_PERCENT, + DEC_FIELD_NAMES.COLLEGE_NON_ATTENDANCE, + DEC_FIELD_NAMES.COLLEGE_ATTENDANCE_POPULATION, ] + self.final_race_fields - self.df_all[columns_to_include].to_csv( path_or_buf=self.OUTPUT_PATH / "usa.csv", index=False ) diff --git a/data/data-pipeline/data_pipeline/score/field_names.py b/data/data-pipeline/data_pipeline/score/field_names.py index 773a88aa..a2dbadbf 100644 --- a/data/data-pipeline/data_pipeline/score/field_names.py +++ b/data/data-pipeline/data_pipeline/score/field_names.py @@ -182,22 +182,26 @@ AGGREGATION_POPULATION_FIELD = "Population Characteristics" UNDER_5_FIELD = "Individuals under 5 years old" OVER_64_FIELD = "Individuals over 64 years old" -# Fields from 2010 decennial census (generally only loaded for the territories) -CENSUS_DECENNIAL_MEDIAN_INCOME_2009 = "Median household income in 2009 ($)" -CENSUS_DECENNIAL_POVERTY_LESS_THAN_100_FPL_FIELD_2009 = ( - "Percentage households below 100% of federal poverty line in 2009" +# Fields from 2020 decennial census (generally only loaded for the territories) +# 2010 vs 2020 WARNING +# We must keep the old 2009 date to make it compatible with all the other 2010 data +DEC_DATA_YEAR = "2009" +CENSUS_DECENNIAL_MEDIAN_INCOME_2019 = ( + f"Median household income in {DEC_DATA_YEAR} ($)" ) -CENSUS_DECENNIAL_POVERTY_LESS_THAN_200_FPL_FIELD_2009 = ( - "Percentage households below 200% of federal poverty line in 2009" +CENSUS_DECENNIAL_POVERTY_LESS_THAN_100_FPL_FIELD_2019 = f"Percentage households below 100% of federal poverty line in {DEC_DATA_YEAR}" +CENSUS_DECENNIAL_POVERTY_LESS_THAN_200_FPL_FIELD_2019 = f"Percentage households below 200% of federal poverty line in {DEC_DATA_YEAR}" +CENSUS_DECENNIAL_HIGH_SCHOOL_ED_FIELD_2019 = f"Percent individuals age 25 or over with less than high school degree in {DEC_DATA_YEAR}" +CENSUS_DECENNIAL_UNEMPLOYMENT_FIELD_2019 = ( + f"Unemployment (percent) in {DEC_DATA_YEAR}" ) -CENSUS_DECENNIAL_HIGH_SCHOOL_ED_FIELD_2009 = "Percent individuals age 25 or over with less than high school degree in 2009" -CENSUS_DECENNIAL_UNEMPLOYMENT_FIELD_2009 = "Unemployment (percent) in 2009" -CENSUS_DECENNIAL_TOTAL_POPULATION_FIELD_2009 = "Total population in 2009" -CENSUS_DECENNIAL_AREA_MEDIAN_INCOME_PERCENT_FIELD_2009 = ( - "Median household income as a percent of territory median income in 2009" +CENSUS_DECENNIAL_TOTAL_POPULATION_FIELD_2019 = ( + f"Total population in {DEC_DATA_YEAR}" ) -LOW_CENSUS_DECENNIAL_AREA_MEDIAN_INCOME_PERCENT_FIELD_2009 = "Low median household income as a percent of territory median income in 2009" -# Fields from 2010 ACS (loaded for comparison with the territories) +CENSUS_DECENNIAL_AREA_MEDIAN_INCOME_PERCENT_FIELD_2019 = f"Median household income as a percent of territory median income in {DEC_DATA_YEAR}" +LOW_CENSUS_DECENNIAL_AREA_MEDIAN_INCOME_PERCENT_FIELD_2019 = f"Low median household income as a percent of territory median income in {DEC_DATA_YEAR}" + +# # Fields from 2010 ACS (loaded for comparison with the territories) CENSUS_UNEMPLOYMENT_FIELD_2010 = "Unemployment (percent) in 2010" CENSUS_POVERTY_LESS_THAN_100_FPL_FIELD_2010 = ( "Percent of individuals less than 100% Federal Poverty Line in 2010" @@ -698,11 +702,11 @@ LOW_MEDIAN_INCOME_PCTILE_THRESHOLD = ( f"percent of area median income" ) ISLAND_LOW_MEDIAN_INCOME_PCTILE_THRESHOLD = ( - f"{LOW_CENSUS_DECENNIAL_AREA_MEDIAN_INCOME_PERCENT_FIELD_2009} exceeds " + f"{LOW_CENSUS_DECENNIAL_AREA_MEDIAN_INCOME_PERCENT_FIELD_2019} exceeds " f"{PERCENTILE}th percentile" ) -ISLAND_UNEMPLOYMENT_PCTILE_THRESHOLD = f"{CENSUS_DECENNIAL_UNEMPLOYMENT_FIELD_2009} exceeds {PERCENTILE}th percentile" -ISLAND_POVERTY_PCTILE_THRESHOLD = f"{CENSUS_DECENNIAL_POVERTY_LESS_THAN_100_FPL_FIELD_2009} exceeds {PERCENTILE}th percentile" +ISLAND_UNEMPLOYMENT_PCTILE_THRESHOLD = f"{CENSUS_DECENNIAL_UNEMPLOYMENT_FIELD_2019} exceeds {PERCENTILE}th percentile" +ISLAND_POVERTY_PCTILE_THRESHOLD = f"{CENSUS_DECENNIAL_POVERTY_LESS_THAN_100_FPL_FIELD_2019} exceeds {PERCENTILE}th percentile" # Not currently used in a factor EXTREME_HEAT_MEDIAN_HOUSE_VALUE_LOW_INCOME_FIELD = ( diff --git a/data/data-pipeline/data_pipeline/score/score_narwhal.py b/data/data-pipeline/data_pipeline/score/score_narwhal.py index 18ff8676..a4960a08 100644 --- a/data/data-pipeline/data_pipeline/score/score_narwhal.py +++ b/data/data-pipeline/data_pipeline/score/score_narwhal.py @@ -807,7 +807,7 @@ class ScoreNarwhal(Score): island_areas_unemployment_criteria_field_name, ) = self._combine_island_areas_with_states_and_set_thresholds( df=self.df, - column_from_island_areas=field_names.CENSUS_DECENNIAL_UNEMPLOYMENT_FIELD_2009, + column_from_island_areas=field_names.CENSUS_DECENNIAL_UNEMPLOYMENT_FIELD_2019, column_from_decennial_census=field_names.CENSUS_UNEMPLOYMENT_FIELD_2010, combined_column_name=field_names.COMBINED_UNEMPLOYMENT_2010, threshold_cutoff_for_island_areas=self.ENVIRONMENTAL_BURDEN_THRESHOLD, @@ -827,7 +827,7 @@ class ScoreNarwhal(Score): island_areas_poverty_criteria_field_name, ) = self._combine_island_areas_with_states_and_set_thresholds( df=self.df, - column_from_island_areas=field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_100_FPL_FIELD_2009, + column_from_island_areas=field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_100_FPL_FIELD_2019, column_from_decennial_census=field_names.CENSUS_POVERTY_LESS_THAN_100_FPL_FIELD_2010, combined_column_name=field_names.COMBINED_POVERTY_LESS_THAN_100_FPL_FIELD_2010, threshold_cutoff_for_island_areas=self.ENVIRONMENTAL_BURDEN_THRESHOLD, @@ -848,14 +848,14 @@ class ScoreNarwhal(Score): # refactor. self.df[field_names.ISLAND_LOW_MEDIAN_INCOME_PCTILE_THRESHOLD] = ( self.df[ - field_names.LOW_CENSUS_DECENNIAL_AREA_MEDIAN_INCOME_PERCENT_FIELD_2009 + field_names.LOW_CENSUS_DECENNIAL_AREA_MEDIAN_INCOME_PERCENT_FIELD_2019 + field_names.PERCENTILE_FIELD_SUFFIX ] >= self.ENVIRONMENTAL_BURDEN_THRESHOLD ) self.df[field_names.ISLAND_AREAS_LOW_HS_EDUCATION_FIELD] = ( - self.df[field_names.CENSUS_DECENNIAL_HIGH_SCHOOL_ED_FIELD_2009] + self.df[field_names.CENSUS_DECENNIAL_HIGH_SCHOOL_ED_FIELD_2019] >= self.LACK_OF_HIGH_SCHOOL_MINIMUM_THRESHOLD ) @@ -890,7 +890,7 @@ class ScoreNarwhal(Score): 100 * workforce_combined_criteria_for_island_areas.sum() # Choosing a random column from island areas to calculate the denominator. - / self.df[field_names.CENSUS_DECENNIAL_UNEMPLOYMENT_FIELD_2009] + / self.df[field_names.CENSUS_DECENNIAL_UNEMPLOYMENT_FIELD_2019] .notnull() .sum() ) @@ -1044,7 +1044,7 @@ class ScoreNarwhal(Score): island_areas_poverty_200_criteria_field_name, ) = self._combine_island_areas_with_states_and_set_thresholds( df=self.df, - column_from_island_areas=field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_200_FPL_FIELD_2009, + column_from_island_areas=field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_200_FPL_FIELD_2019, column_from_decennial_census=field_names.POVERTY_LESS_THAN_200_FPL_IMPUTED_FIELD, combined_column_name=field_names.COMBINED_POVERTY_LESS_THAN_200_FPL_FIELD_2010, threshold_cutoff_for_island_areas=self.LOW_INCOME_THRESHOLD, diff --git a/data/data-pipeline/data_pipeline/tests/sources/census_decennial/data/extract/2020/as/60/010/census.json b/data/data-pipeline/data_pipeline/tests/sources/census_decennial/data/extract/2020/as/60/010/census.json new file mode 100644 index 00000000..429c3d37 --- /dev/null +++ b/data/data-pipeline/data_pipeline/tests/sources/census_decennial/data/extract/2020/as/60/010/census.json @@ -0,0 +1,8 @@ +[["NAME","P1_001N","PBG19_005N","PBG19_012N","PCT31_001N","PBG32_003N","PBG32_007N","PBG32_010N","PBG32_014N","PCT34_003N","PCT34_016N","PBG43_001N","PBG74_001N","PBG74_002N","PBG74_003N","PBG74_004N","PBG74_010N","PCT9_001N","PCT9_003N","PCT9_079N","PCT9_130N","PCT9_155N","PCT9_180N","PCT9_205N","PCT9_230N","P5_002N","state","county","tract"], +["Census Tract 9505, Eastern District, American Samoa","2623","305","308","2044","443","42","369","44","175","164","26000","2151","538","338","329","352","2623","2021","342","77","0","0","99","84","107","60","010","950500"], +["Census Tract 9503, Eastern District, American Samoa","2415","325","345","2293","418","35","379","53","173","174","33631","2414","448","332","320","565","2415","2259","39","6","0","0","1","110","14","60","010","950300"], +["Census Tract 9501, Eastern District, American Samoa","1487","248","214","1404","269","38","254","39","103","106","24219","1485","448","243","146","200","1487","1449","3","1","1","0","1","32","6","60","010","950100"], +["Census Tract 9502, Eastern District, American Samoa","1158","164","143","1096","221","23","163","18","84","75","28333","1148","236","172","175","335","1158","1092","11","7","0","0","1","47","5","60","010","950200"], +["Census Tract 9506, Eastern District, American Samoa","3218","452","458","3031","645","57","573","56","216","242","26970","3188","774","462","439","666","3218","2781","167","9","1","0","5","255","40","60","010","950600"], +["Census Tract 9507, Eastern District, American Samoa","2727","381","364","2489","569","60","456","48","208","183","29083","2612","593","458","315","494","2727","2366","217","29","8","2","10","95","38","60","010","950700"], +["Census Tract 9509, Eastern District, American Samoa","3431","512","476","3239","718","76","682","89","238","244","30643","3412","724","510","573","623","3431","2988","332","28","0","0","2","81","27","60","010","950900"]] \ No newline at end of file diff --git a/data/data-pipeline/data_pipeline/tests/sources/census_decennial/data/extract/2020/gu/66/010/census.json b/data/data-pipeline/data_pipeline/tests/sources/census_decennial/data/extract/2020/gu/66/010/census.json new file mode 100644 index 00000000..ce6dbaf4 --- /dev/null +++ b/data/data-pipeline/data_pipeline/tests/sources/census_decennial/data/extract/2020/gu/66/010/census.json @@ -0,0 +1,58 @@ +[["NAME","P1_001N","PBG19_005N","PBG19_012N","PCT31_001N","PBG32_003N","PBG32_007N","PBG32_010N","PBG32_014N","PCT34_003N","PCT34_016N","PBG43_001N","PBG74_001N","PBG74_002N","PBG74_003N","PBG74_004N","PBG74_010N","PCT10_001N","PCT10_003N","PCT10_204N","PCT10_330N","PCT10_355N","PCT10_380N","PCT10_405N","P5_026N","PCT9_003N","state","county","tract"], +["Census Tract 9501, Guam, Guam","1347","7","6","77","25","1","14","0","2","29","40000","80","6","5","12","32","1347","13","128","159","11","63","111","764","221","66","010","950100"], +["Census Tract 9502, Guam, Guam","626","9","9","87","23","2","19","2","3","30","43750","102","6","0","10","44","626","29","91","56","3","32","86","296","81","66","010","950200"], +["Census Tract 9503, Guam, Guam","629","4","1","6","1","0","1","0","0","1","53750","6","0","0","0","0","629","3","620","0","0","0","1","5","0","66","010","950300"], +["Census Tract 9504.01, Guam, Guam","5809","669","581","5273","1447","150","1191","141","151","2096","53309","5688","455","322","376","2836","5809","1592","3775","14","9","3","359","54","70","66","010","950401"], +["Census Tract 9504.02, Guam, Guam","6606","735","668","5972","1581","168","1234","157","145","2198","50980","6579","834","472","531","2759","6606","2722","3135","32","0","13","574","122","101","66","010","950402"], +["Census Tract 9505.01, Guam, Guam","1834","211","188","1638","398","45","295","48","35","588","42054","1803","309","166","171","646","1834","1060","560","2","0","1","186","23","39","66","010","950501"], +["Census Tract 9505.02, Guam, Guam","5343","660","577","4952","1387","115","1052","86","160","1932","55833","5285","532","206","297","2911","5343","1833","2813","46","2","36","421","183","110","66","010","950502"], +["Census Tract 9507.01, Guam, Guam","5213","549","535","4849","1327","75","1088","86","162","1927","66023","5187","316","190","224","3283","5213","1279","2776","64","12","50","556","448","134","66","010","950701"], +["Census Tract 9507.02, Guam, Guam","4020","485","449","3640","930","89","742","61","102","1338","56406","3978","513","294","235","1894","4020","2093","1426","17","3","2","408","61","44","66","010","950702"], +["Census Tract 9508.01, Guam, Guam","3921","503","470","3607","932","127","836","124","66","1365","51528","3898","545","217","210","1804","3921","2058","1539","8","2","4","273","36","36","66","010","950801"], +["Census Tract 9508.02, Guam, Guam","4110","483","550","3846","894","102","746","111","97","1580","35372","4099","691","292","375","1531","4110","2055","1629","3","2","14","352","51","56","66","010","950802"], +["Census Tract 9509, Guam, Guam","4653","531","506","4404","1149","94","1014","94","98","1837","53221","4638","386","196","284","2672","4653","1048","3251","2","5","16","291","40","57","66","010","950900"], +["Census Tract 9510, Guam, Guam","3449","441","400","3240","821","74","739","57","105","1277","51806","3400","325","175","219","1743","3449","1137","1993","4","3","3","271","37","50","66","010","951000"], +["Census Tract 9511, Guam, Guam","6498","775","751","6108","1745","98","1498","134","216","2433","55673","6472","517","279","356","3630","6498","1974","3791","26","9","23","511","155","118","66","010","951100"], +["Census Tract 9516, Guam, Guam","142","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","142","111","16","4","0","1","7","3","3","66","010","951600"], +["Census Tract 9517, Guam, Guam","2239","193","198","1910","523","24","442","40","57","756","78333","2014","138","46","97","1387","2239","779","993","21","4","22","269","149","57","66","010","951700"], +["Census Tract 9518, Guam, Guam","99","18","13","83","27","1","18","3","1","33","50000","92","2","5","3","36","99","80","14","0","0","0","5","0","0","66","010","951800"], +["Census Tract 9519.01, Guam, Guam","4081","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","4081","797","2733","34","5","24","287","197","47","66","010","951901"], +["Census Tract 9519.02, Guam, Guam","3484","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","3484","575","2057","52","6","48","262","456","108","66","010","951902"], +["Census Tract 9522, Guam, Guam","3273","322","333","3102","900","84","749","105","58","1282","49355","3253","267","161","185","1805","3273","912","1845","26","1","13","349","125","47","66","010","952200"], +["Census Tract 9523, Guam, Guam","2829","250","289","2639","776","67","684","71","54","1080","59083","2811","233","141","128","1763","2829","848","1355","29","11","27","307","242","68","66","010","952300"], +["Census Tract 9524, Guam, Guam","1637","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","1637","614","737","16","0","18","176","72","46","66","010","952400"], +["Census Tract 9527, Guam, Guam","4468","537","542","3973","1016","78","874","68","117","1550","67578","4302","367","183","208","2623","4468","2929","823","19","0","11","423","253","136","66","010","952700"], +["Census Tract 9528, Guam, Guam",null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,"66","010","952800"], +["Census Tract 9529, Guam, Guam","5145","599","604","4121","1096","96","971","99","132","1631","62031","4430","349","125","215","2754","5145","3508","779","27","9","41","540","234","133","66","010","952900"], +["Census Tract 9530, Guam, Guam","3388","359","419","3023","775","85","742","100","112","1222","49605","3251","360","178","189","1777","3388","1990","747","16","0","22","453","157","98","66","010","953000"], +["Census Tract 9531.01, Guam, Guam","3966","530","500","3720","1029","110","889","75","111","1435","76413","3947","250","133","202","2659","3966","2585","551","15","1","20","544","236","171","66","010","953101"], +["Census Tract 9531.02, Guam, Guam","3098","362","380","2885","776","50","637","80","107","1078","67841","3074","196","114","161","1948","3098","1891","609","16","1","13","445","122","116","66","010","953102"], +["Census Tract 9532, Guam, Guam","2611","351","356","2410","614","72","577","77","48","960","67813","2597","286","80","137","1612","2611","1725","343","28","3","5","385","118","105","66","010","953200"], +["Census Tract 9533, Guam, Guam","3808","461","449","3478","902","85","769","94","78","1352","47419","3764","499","256","243","1889","3808","2268","910","18","0","11","452","137","99","66","010","953300"], +["Census Tract 9534, Guam, Guam","943","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","943","609","120","10","0","9","129","61","38","66","010","953400"], +["Census Tract 9535, Guam, Guam",null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,"66","010","953500"], +["Census Tract 9536, Guam, Guam","3616","418","408","3349","925","87","773","78","103","1295","71711","3574","278","171","104","2372","3616","2403","427","16","5","16","596","144","278","66","010","953600"], +["Census Tract 9539, Guam, Guam","4192","558","522","3831","946","97","789","74","85","1456","62386","4174","560","256","232","2215","4192","3101","328","3","5","39","532","176","137","66","010","953900"], +["Census Tract 9540, Guam, Guam","2106","259","234","1961","527","29","446","39","61","732","83889","2102","111","58","88","1447","2106","1283","277","11","1","16","308","207","82","66","010","954000"], +["Census Tract 9543, Guam, Guam","1532","153","172","1405","426","41","325","39","42","534","77125","1526","131","63","58","993","1532","932","160","10","3","14","237","160","61","66","010","954300"], +["Census Tract 9544, Guam, Guam","53","7","4","48","14","4","10","2","0","19","92500","50","8","0","1","32","53","39","4","0","0","0","9","1","0","66","010","954400"], +["Census Tract 9545, Guam, Guam","2483","9","7","69","20","1","14","3","3","21","40000","83","12","15","3","28","2483","71","203","257","35","98","219","1444","324","66","010","954500"], +["Census Tract 9547, Guam, Guam","2089","287","255","1910","497","71","407","48","52","729","54931","2061","238","108","95","1129","2089","1259","485","30","1","3","197","111","53","66","010","954700"], +["Census Tract 9548, Guam, Guam","2426","288","273","2183","472","99","444","83","31","833","47969","2416","504","186","173","979","2426","1638","489","5","0","2","217","69","68","66","010","954800"], +["Census Tract 9551, Guam, Guam","3550","514","473","3285","873","78","677","80","69","1200","80909","3518","265","165","162","2364","3550","2554","168","28","5","25","409","340","175","66","010","955100"], +["Census Tract 9552, Guam, Guam","2317","367","322","2116","529","56","416","39","31","799","67813","2295","252","105","149","1358","2317","2016","68","7","0","3","163","59","90","66","010","955200"], +["Census Tract 9553, Guam, Guam","1604","230","235","1481","305","50","264","28","25","582","51667","1600","267","82","84","726","1604","1362","43","4","0","1","129","65","50","66","010","955300"], +["Census Tract 9554, Guam, Guam","647","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","-999999999","647","565","10","0","2","3","51","16","24","66","010","955400"], +["Census Tract 9556, Guam, Guam","1008","125","118","940","267","11","209","11","22","355","81250","1001","63","36","48","640","1008","683","168","8","1","4","106","37","24","66","010","955600"], +["Census Tract 9557, Guam, Guam","4940","625","550","4642","1263","132","1059","105","139","1803","63352","4901","456","235","198","2988","4940","2251","2010","22","2","8","497","146","95","66","010","955700"], +["Census Tract 9558, Guam, Guam","7804","920","801","7224","1979","153","1695","167","267","2723","66349","7738","475","326","410","4635","7804","2631","3870","71","16","48","759","393","179","66","010","955800"], +["Census Tract 9559, Guam, Guam","3185","322","324","3023","1011","65","740","66","99","1230","64833","3150","237","90","119","2201","3185","650","1461","50","28","39","389","562","139","66","010","955900"], +["Census Tract 9560, Guam, Guam","2572","260","285","2256","536","46","481","77","42","855","59375","2524","337","208","179","1227","2572","1693","419","5","3","20","259","159","60","66","010","956000"], +["Census Tract 9561, Guam, Guam","2011","218","236","1846","528","50","425","36","53","721","77500","1981","150","98","84","1301","2011","1306","239","12","1","16","263","169","69","66","010","956100"], +["Census Tract 9562, Guam, Guam","3945","469","420","3270","797","69","747","68","66","1255","77455","3488","220","71","122","2406","3945","1911","833","20","2","35","471","643","158","66","010","956200"], +["Census Tract 9563, Guam, Guam","2385","278","250","2173","592","54","429","64","58","822","57031","2346","242","140","121","1133","2385","1316","748","7","2","14","181","112","51","66","010","956300"], +["Census Tract 9804, Guam, Guam","0","0","0","0","0","0","0","0","0","0","-666666666","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","010","980400"], +["Census Tract 9801, Guam, Guam","42","7","9","41","12","0","11","2","1","17","60000","42","6","0","3","28","42","26","7","0","0","0","9","0","0","66","010","980100"], +["Census Tract 9802, Guam, Guam","0","0","0","0","0","0","0","0","0","0","-666666666","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","010","980200"], +["Census Tract 9803, Guam, Guam","0","0","0","0","0","0","0","0","0","0","-666666666","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","010","980300"], +["Census Tract 9900, Guam, Guam","0","0","0","0","0","0","0","0","0","0","-666666666","0","0","0","0","0","0","0","0","0","0","0","0","0","0","66","010","990000"]] \ No newline at end of file diff --git a/data/data-pipeline/data_pipeline/tests/sources/census_decennial/data/transform/usa.csv b/data/data-pipeline/data_pipeline/tests/sources/census_decennial/data/transform/usa.csv new file mode 100644 index 00000000..3addabba --- /dev/null +++ b/data/data-pipeline/data_pipeline/tests/sources/census_decennial/data/transform/usa.csv @@ -0,0 +1,134 @@ +,NAME,Total population in 2009,Total male high school graduates 25 and over,Total female high school graduates 25 and over,Total asked enrolled in college or graduate school (excludes military housing),Total males in labor force,Total males not in labor force,Total females in labor force,Total females not in labor force,Males enrolled in college or graduate school (excludes military housing),Females enrolled in college or graduate school (excludes military housing),Median household income in 2009 ($),Total Household poverty level IN 2019,Household poverty level Under 0.50 IN 2019,Household poverty level Under 0.74 IN 2019,Household poverty level Under 0.99 IN 2019,Household poverty level Over 2.0 IN 2019,Total population surveyed on racial data,Native Hawaiian or Pacific,Asian,White,Black or African American,American Indian / Alaska Native,other races,two or more races,Hispanic or Latino,state,county,tract,Territory Median Income +0,"Census Tract 9505, Eastern District, American Samoa",2623.0,305.0,308.0,2044.0,443.0,42.0,369.0,44.0,175.0,164.0,26000.0,2151.0,538.0,338.0,329.0,352.0,2623.0,2021.0,342.0,77.0,0.0,0.0,99.0,84.0,107.0,60,010,950500,26352.0 +1,"Census Tract 9503, Eastern District, American Samoa",2415.0,325.0,345.0,2293.0,418.0,35.0,379.0,53.0,173.0,174.0,33631.0,2414.0,448.0,332.0,320.0,565.0,2415.0,2259.0,39.0,6.0,0.0,0.0,1.0,110.0,14.0,60,010,950300,26352.0 +2,"Census Tract 9501, Eastern District, American Samoa",1487.0,248.0,214.0,1404.0,269.0,38.0,254.0,39.0,103.0,106.0,24219.0,1485.0,448.0,243.0,146.0,200.0,1487.0,1449.0,3.0,1.0,1.0,0.0,1.0,32.0,6.0,60,010,950100,26352.0 +3,"Census Tract 9502, Eastern District, American Samoa",1158.0,164.0,143.0,1096.0,221.0,23.0,163.0,18.0,84.0,75.0,28333.0,1148.0,236.0,172.0,175.0,335.0,1158.0,1092.0,11.0,7.0,0.0,0.0,1.0,47.0,5.0,60,010,950200,26352.0 +4,"Census Tract 9506, Eastern District, American Samoa",3218.0,452.0,458.0,3031.0,645.0,57.0,573.0,56.0,216.0,242.0,26970.0,3188.0,774.0,462.0,439.0,666.0,3218.0,2781.0,167.0,9.0,1.0,0.0,5.0,255.0,40.0,60,010,950600,26352.0 +5,"Census Tract 9507, Eastern District, American Samoa",2727.0,381.0,364.0,2489.0,569.0,60.0,456.0,48.0,208.0,183.0,29083.0,2612.0,593.0,458.0,315.0,494.0,2727.0,2366.0,217.0,29.0,8.0,2.0,10.0,95.0,38.0,60,010,950700,26352.0 +6,"Census Tract 9509, Eastern District, American Samoa",3431.0,512.0,476.0,3239.0,718.0,76.0,682.0,89.0,238.0,244.0,30643.0,3412.0,724.0,510.0,573.0,623.0,3431.0,2988.0,332.0,28.0,0.0,0.0,2.0,81.0,27.0,60,010,950900,26352.0 +0,"Census Tract 9518, Manu'a District, American Samoa",832.0,169.0,119.0,784.0,213.0,23.0,148.0,36.0,63.0,63.0,26818.0,831.0,167.0,155.0,181.0,116.0,832.0,800.0,0.0,2.0,0.0,0.0,0.0,30.0,3.0,60,020,951800,26352.0 +0,"Census Tract 9519, Rose Island, American Samoa",0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-666666666.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60,030,951900, +0,"Census Tract 9520, Swains Island, American Samoa",0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-666666666.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60,040,952000, +0,"Census Tract 9510, Western District, American Samoa",3593.0,484.0,488.0,3386.0,738.0,34.0,559.0,25.0,272.0,225.0,24688.0,3572.0,1032.0,693.0,578.0,399.0,3593.0,3002.0,473.0,10.0,0.0,0.0,5.0,103.0,22.0,60,050,951000,26352.0 +1,"Census Tract 9511, Western District, American Samoa",6252.0,1007.0,961.0,5818.0,1162.0,80.0,842.0,72.0,477.0,422.0,24227.0,6201.0,2026.0,1206.0,876.0,725.0,6252.0,5765.0,212.0,50.0,1.0,0.0,1.0,223.0,40.0,60,050,951100,26352.0 +2,"Census Tract 9512.01, Western District, American Samoa",3406.0,411.0,386.0,2896.0,625.0,33.0,483.0,43.0,239.0,206.0,29107.0,3061.0,723.0,517.0,451.0,408.0,3406.0,3030.0,230.0,12.0,0.0,2.0,4.0,128.0,11.0,60,050,951201,26352.0 +3,"Census Tract 9512.02, Western District, American Samoa",4582.0,586.0,616.0,4322.0,906.0,59.0,814.0,64.0,319.0,320.0,31714.0,4535.0,784.0,687.0,577.0,1184.0,4582.0,3903.0,355.0,50.0,3.0,6.0,3.0,262.0,31.0,60,050,951202,26352.0 +4,"Census Tract 9512.03, Western District, American Samoa",4994.0,605.0,648.0,4721.0,964.0,89.0,896.0,106.0,330.0,340.0,32196.0,4948.0,1019.0,724.0,626.0,1199.0,4994.0,4308.0,264.0,61.0,3.0,3.0,4.0,351.0,33.0,60,050,951203,26352.0 +5,"Census Tract 9513, Western District, American Samoa",3010.0,443.0,419.0,2844.0,632.0,115.0,542.0,107.0,240.0,220.0,27330.0,2994.0,791.0,488.0,384.0,593.0,3010.0,2833.0,97.0,10.0,1.0,0.0,1.0,68.0,11.0,60,050,951300,26352.0 +6,"Census Tract 9515, Western District, American Samoa",1689.0,270.0,235.0,1588.0,355.0,77.0,307.0,96.0,139.0,110.0,28611.0,1674.0,484.0,184.0,217.0,246.0,1689.0,1593.0,14.0,2.0,1.0,0.0,0.0,79.0,2.0,60,050,951500,26352.0 +7,"Census Tract 9516, Western District, American Samoa",4293.0,629.0,565.0,4077.0,1075.0,306.0,937.0,351.0,311.0,322.0,28958.0,4280.0,990.0,726.0,621.0,889.0,4293.0,3900.0,122.0,20.0,5.0,0.0,2.0,244.0,16.0,60,050,951600,26352.0 +0,"Census Tract 9501, Guam, Guam",1347.0,7.0,6.0,77.0,25.0,1.0,14.0,0.0,2.0,29.0,40000.0,80.0,6.0,5.0,12.0,32.0,1347.0,13.0,128.0,764.0,159.0,11.0,63.0,111.0,221.0,66,010,950100,58289.0 +1,"Census Tract 9502, Guam, Guam",626.0,9.0,9.0,87.0,23.0,2.0,19.0,2.0,3.0,30.0,43750.0,102.0,6.0,0.0,10.0,44.0,626.0,29.0,91.0,296.0,56.0,3.0,32.0,86.0,81.0,66,010,950200,58289.0 +2,"Census Tract 9503, Guam, Guam",629.0,4.0,1.0,6.0,1.0,0.0,1.0,0.0,0.0,1.0,53750.0,6.0,0.0,0.0,0.0,0.0,629.0,3.0,620.0,5.0,0.0,0.0,0.0,1.0,0.0,66,010,950300,58289.0 +3,"Census Tract 9504.01, Guam, Guam",5809.0,669.0,581.0,5273.0,1447.0,150.0,1191.0,141.0,151.0,2096.0,53309.0,5688.0,455.0,322.0,376.0,2836.0,5809.0,1592.0,3775.0,54.0,14.0,9.0,3.0,359.0,70.0,66,010,950401,58289.0 +4,"Census Tract 9504.02, Guam, Guam",6606.0,735.0,668.0,5972.0,1581.0,168.0,1234.0,157.0,145.0,2198.0,50980.0,6579.0,834.0,472.0,531.0,2759.0,6606.0,2722.0,3135.0,122.0,32.0,0.0,13.0,574.0,101.0,66,010,950402,58289.0 +5,"Census Tract 9505.01, Guam, Guam",1834.0,211.0,188.0,1638.0,398.0,45.0,295.0,48.0,35.0,588.0,42054.0,1803.0,309.0,166.0,171.0,646.0,1834.0,1060.0,560.0,23.0,2.0,0.0,1.0,186.0,39.0,66,010,950501,58289.0 +6,"Census Tract 9505.02, Guam, Guam",5343.0,660.0,577.0,4952.0,1387.0,115.0,1052.0,86.0,160.0,1932.0,55833.0,5285.0,532.0,206.0,297.0,2911.0,5343.0,1833.0,2813.0,183.0,46.0,2.0,36.0,421.0,110.0,66,010,950502,58289.0 +7,"Census Tract 9507.01, Guam, Guam",5213.0,549.0,535.0,4849.0,1327.0,75.0,1088.0,86.0,162.0,1927.0,66023.0,5187.0,316.0,190.0,224.0,3283.0,5213.0,1279.0,2776.0,448.0,64.0,12.0,50.0,556.0,134.0,66,010,950701,58289.0 +8,"Census Tract 9507.02, Guam, Guam",4020.0,485.0,449.0,3640.0,930.0,89.0,742.0,61.0,102.0,1338.0,56406.0,3978.0,513.0,294.0,235.0,1894.0,4020.0,2093.0,1426.0,61.0,17.0,3.0,2.0,408.0,44.0,66,010,950702,58289.0 +9,"Census Tract 9508.01, Guam, Guam",3921.0,503.0,470.0,3607.0,932.0,127.0,836.0,124.0,66.0,1365.0,51528.0,3898.0,545.0,217.0,210.0,1804.0,3921.0,2058.0,1539.0,36.0,8.0,2.0,4.0,273.0,36.0,66,010,950801,58289.0 +10,"Census Tract 9508.02, Guam, Guam",4110.0,483.0,550.0,3846.0,894.0,102.0,746.0,111.0,97.0,1580.0,35372.0,4099.0,691.0,292.0,375.0,1531.0,4110.0,2055.0,1629.0,51.0,3.0,2.0,14.0,352.0,56.0,66,010,950802,58289.0 +11,"Census Tract 9509, Guam, Guam",4653.0,531.0,506.0,4404.0,1149.0,94.0,1014.0,94.0,98.0,1837.0,53221.0,4638.0,386.0,196.0,284.0,2672.0,4653.0,1048.0,3251.0,40.0,2.0,5.0,16.0,291.0,57.0,66,010,950900,58289.0 +12,"Census Tract 9510, Guam, Guam",3449.0,441.0,400.0,3240.0,821.0,74.0,739.0,57.0,105.0,1277.0,51806.0,3400.0,325.0,175.0,219.0,1743.0,3449.0,1137.0,1993.0,37.0,4.0,3.0,3.0,271.0,50.0,66,010,951000,58289.0 +13,"Census Tract 9511, Guam, Guam",6498.0,775.0,751.0,6108.0,1745.0,98.0,1498.0,134.0,216.0,2433.0,55673.0,6472.0,517.0,279.0,356.0,3630.0,6498.0,1974.0,3791.0,155.0,26.0,9.0,23.0,511.0,118.0,66,010,951100,58289.0 +14,"Census Tract 9516, Guam, Guam",142.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,142.0,111.0,16.0,3.0,4.0,0.0,1.0,7.0,3.0,66,010,951600,58289.0 +15,"Census Tract 9517, Guam, Guam",2239.0,193.0,198.0,1910.0,523.0,24.0,442.0,40.0,57.0,756.0,78333.0,2014.0,138.0,46.0,97.0,1387.0,2239.0,779.0,993.0,149.0,21.0,4.0,22.0,269.0,57.0,66,010,951700,58289.0 +16,"Census Tract 9518, Guam, Guam",99.0,18.0,13.0,83.0,27.0,1.0,18.0,3.0,1.0,33.0,50000.0,92.0,2.0,5.0,3.0,36.0,99.0,80.0,14.0,0.0,0.0,0.0,0.0,5.0,0.0,66,010,951800,58289.0 +17,"Census Tract 9519.01, Guam, Guam",4081.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,4081.0,797.0,2733.0,197.0,34.0,5.0,24.0,287.0,47.0,66,010,951901,58289.0 +18,"Census Tract 9519.02, Guam, Guam",3484.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,3484.0,575.0,2057.0,456.0,52.0,6.0,48.0,262.0,108.0,66,010,951902,58289.0 +19,"Census Tract 9522, Guam, Guam",3273.0,322.0,333.0,3102.0,900.0,84.0,749.0,105.0,58.0,1282.0,49355.0,3253.0,267.0,161.0,185.0,1805.0,3273.0,912.0,1845.0,125.0,26.0,1.0,13.0,349.0,47.0,66,010,952200,58289.0 +20,"Census Tract 9523, Guam, Guam",2829.0,250.0,289.0,2639.0,776.0,67.0,684.0,71.0,54.0,1080.0,59083.0,2811.0,233.0,141.0,128.0,1763.0,2829.0,848.0,1355.0,242.0,29.0,11.0,27.0,307.0,68.0,66,010,952300,58289.0 +21,"Census Tract 9524, Guam, Guam",1637.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,1637.0,614.0,737.0,72.0,16.0,0.0,18.0,176.0,46.0,66,010,952400,58289.0 +22,"Census Tract 9527, Guam, Guam",4468.0,537.0,542.0,3973.0,1016.0,78.0,874.0,68.0,117.0,1550.0,67578.0,4302.0,367.0,183.0,208.0,2623.0,4468.0,2929.0,823.0,253.0,19.0,0.0,11.0,423.0,136.0,66,010,952700,58289.0 +23,"Census Tract 9528, Guam, Guam",,,,,,,,,,,,,,,,,,,,,,,,,,66,010,952800, +24,"Census Tract 9529, Guam, Guam",5145.0,599.0,604.0,4121.0,1096.0,96.0,971.0,99.0,132.0,1631.0,62031.0,4430.0,349.0,125.0,215.0,2754.0,5145.0,3508.0,779.0,234.0,27.0,9.0,41.0,540.0,133.0,66,010,952900,58289.0 +25,"Census Tract 9530, Guam, Guam",3388.0,359.0,419.0,3023.0,775.0,85.0,742.0,100.0,112.0,1222.0,49605.0,3251.0,360.0,178.0,189.0,1777.0,3388.0,1990.0,747.0,157.0,16.0,0.0,22.0,453.0,98.0,66,010,953000,58289.0 +26,"Census Tract 9531.01, Guam, Guam",3966.0,530.0,500.0,3720.0,1029.0,110.0,889.0,75.0,111.0,1435.0,76413.0,3947.0,250.0,133.0,202.0,2659.0,3966.0,2585.0,551.0,236.0,15.0,1.0,20.0,544.0,171.0,66,010,953101,58289.0 +27,"Census Tract 9531.02, Guam, Guam",3098.0,362.0,380.0,2885.0,776.0,50.0,637.0,80.0,107.0,1078.0,67841.0,3074.0,196.0,114.0,161.0,1948.0,3098.0,1891.0,609.0,122.0,16.0,1.0,13.0,445.0,116.0,66,010,953102,58289.0 +28,"Census Tract 9532, Guam, Guam",2611.0,351.0,356.0,2410.0,614.0,72.0,577.0,77.0,48.0,960.0,67813.0,2597.0,286.0,80.0,137.0,1612.0,2611.0,1725.0,343.0,118.0,28.0,3.0,5.0,385.0,105.0,66,010,953200,58289.0 +29,"Census Tract 9533, Guam, Guam",3808.0,461.0,449.0,3478.0,902.0,85.0,769.0,94.0,78.0,1352.0,47419.0,3764.0,499.0,256.0,243.0,1889.0,3808.0,2268.0,910.0,137.0,18.0,0.0,11.0,452.0,99.0,66,010,953300,58289.0 +30,"Census Tract 9534, Guam, Guam",943.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,943.0,609.0,120.0,61.0,10.0,0.0,9.0,129.0,38.0,66,010,953400,58289.0 +31,"Census Tract 9535, Guam, Guam",,,,,,,,,,,,,,,,,,,,,,,,,,66,010,953500, +32,"Census Tract 9536, Guam, Guam",3616.0,418.0,408.0,3349.0,925.0,87.0,773.0,78.0,103.0,1295.0,71711.0,3574.0,278.0,171.0,104.0,2372.0,3616.0,2403.0,427.0,144.0,16.0,5.0,16.0,596.0,278.0,66,010,953600,58289.0 +33,"Census Tract 9539, Guam, Guam",4192.0,558.0,522.0,3831.0,946.0,97.0,789.0,74.0,85.0,1456.0,62386.0,4174.0,560.0,256.0,232.0,2215.0,4192.0,3101.0,328.0,176.0,3.0,5.0,39.0,532.0,137.0,66,010,953900,58289.0 +34,"Census Tract 9540, Guam, Guam",2106.0,259.0,234.0,1961.0,527.0,29.0,446.0,39.0,61.0,732.0,83889.0,2102.0,111.0,58.0,88.0,1447.0,2106.0,1283.0,277.0,207.0,11.0,1.0,16.0,308.0,82.0,66,010,954000,58289.0 +35,"Census Tract 9543, Guam, Guam",1532.0,153.0,172.0,1405.0,426.0,41.0,325.0,39.0,42.0,534.0,77125.0,1526.0,131.0,63.0,58.0,993.0,1532.0,932.0,160.0,160.0,10.0,3.0,14.0,237.0,61.0,66,010,954300,58289.0 +36,"Census Tract 9544, Guam, Guam",53.0,7.0,4.0,48.0,14.0,4.0,10.0,2.0,0.0,19.0,92500.0,50.0,8.0,0.0,1.0,32.0,53.0,39.0,4.0,1.0,0.0,0.0,0.0,9.0,0.0,66,010,954400,58289.0 +37,"Census Tract 9545, Guam, Guam",2483.0,9.0,7.0,69.0,20.0,1.0,14.0,3.0,3.0,21.0,40000.0,83.0,12.0,15.0,3.0,28.0,2483.0,71.0,203.0,1444.0,257.0,35.0,98.0,219.0,324.0,66,010,954500,58289.0 +38,"Census Tract 9547, Guam, Guam",2089.0,287.0,255.0,1910.0,497.0,71.0,407.0,48.0,52.0,729.0,54931.0,2061.0,238.0,108.0,95.0,1129.0,2089.0,1259.0,485.0,111.0,30.0,1.0,3.0,197.0,53.0,66,010,954700,58289.0 +39,"Census Tract 9548, Guam, Guam",2426.0,288.0,273.0,2183.0,472.0,99.0,444.0,83.0,31.0,833.0,47969.0,2416.0,504.0,186.0,173.0,979.0,2426.0,1638.0,489.0,69.0,5.0,0.0,2.0,217.0,68.0,66,010,954800,58289.0 +40,"Census Tract 9551, Guam, Guam",3550.0,514.0,473.0,3285.0,873.0,78.0,677.0,80.0,69.0,1200.0,80909.0,3518.0,265.0,165.0,162.0,2364.0,3550.0,2554.0,168.0,340.0,28.0,5.0,25.0,409.0,175.0,66,010,955100,58289.0 +41,"Census Tract 9552, Guam, Guam",2317.0,367.0,322.0,2116.0,529.0,56.0,416.0,39.0,31.0,799.0,67813.0,2295.0,252.0,105.0,149.0,1358.0,2317.0,2016.0,68.0,59.0,7.0,0.0,3.0,163.0,90.0,66,010,955200,58289.0 +42,"Census Tract 9553, Guam, Guam",1604.0,230.0,235.0,1481.0,305.0,50.0,264.0,28.0,25.0,582.0,51667.0,1600.0,267.0,82.0,84.0,726.0,1604.0,1362.0,43.0,65.0,4.0,0.0,1.0,129.0,50.0,66,010,955300,58289.0 +43,"Census Tract 9554, Guam, Guam",647.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,-999999999.0,647.0,565.0,10.0,16.0,0.0,2.0,3.0,51.0,24.0,66,010,955400,58289.0 +44,"Census Tract 9556, Guam, Guam",1008.0,125.0,118.0,940.0,267.0,11.0,209.0,11.0,22.0,355.0,81250.0,1001.0,63.0,36.0,48.0,640.0,1008.0,683.0,168.0,37.0,8.0,1.0,4.0,106.0,24.0,66,010,955600,58289.0 +45,"Census Tract 9557, Guam, Guam",4940.0,625.0,550.0,4642.0,1263.0,132.0,1059.0,105.0,139.0,1803.0,63352.0,4901.0,456.0,235.0,198.0,2988.0,4940.0,2251.0,2010.0,146.0,22.0,2.0,8.0,497.0,95.0,66,010,955700,58289.0 +46,"Census Tract 9558, Guam, Guam",7804.0,920.0,801.0,7224.0,1979.0,153.0,1695.0,167.0,267.0,2723.0,66349.0,7738.0,475.0,326.0,410.0,4635.0,7804.0,2631.0,3870.0,393.0,71.0,16.0,48.0,759.0,179.0,66,010,955800,58289.0 +47,"Census Tract 9559, Guam, Guam",3185.0,322.0,324.0,3023.0,1011.0,65.0,740.0,66.0,99.0,1230.0,64833.0,3150.0,237.0,90.0,119.0,2201.0,3185.0,650.0,1461.0,562.0,50.0,28.0,39.0,389.0,139.0,66,010,955900,58289.0 +48,"Census Tract 9560, Guam, Guam",2572.0,260.0,285.0,2256.0,536.0,46.0,481.0,77.0,42.0,855.0,59375.0,2524.0,337.0,208.0,179.0,1227.0,2572.0,1693.0,419.0,159.0,5.0,3.0,20.0,259.0,60.0,66,010,956000,58289.0 +49,"Census Tract 9561, Guam, Guam",2011.0,218.0,236.0,1846.0,528.0,50.0,425.0,36.0,53.0,721.0,77500.0,1981.0,150.0,98.0,84.0,1301.0,2011.0,1306.0,239.0,169.0,12.0,1.0,16.0,263.0,69.0,66,010,956100,58289.0 +50,"Census Tract 9562, Guam, Guam",3945.0,469.0,420.0,3270.0,797.0,69.0,747.0,68.0,66.0,1255.0,77455.0,3488.0,220.0,71.0,122.0,2406.0,3945.0,1911.0,833.0,643.0,20.0,2.0,35.0,471.0,158.0,66,010,956200,58289.0 +51,"Census Tract 9563, Guam, Guam",2385.0,278.0,250.0,2173.0,592.0,54.0,429.0,64.0,58.0,822.0,57031.0,2346.0,242.0,140.0,121.0,1133.0,2385.0,1316.0,748.0,112.0,7.0,2.0,14.0,181.0,51.0,66,010,956300,58289.0 +52,"Census Tract 9801, Guam, Guam",42.0,7.0,9.0,41.0,12.0,0.0,11.0,2.0,1.0,17.0,60000.0,42.0,6.0,0.0,3.0,28.0,42.0,26.0,7.0,0.0,0.0,0.0,0.0,9.0,0.0,66,010,980100,58289.0 +53,"Census Tract 9802, Guam, Guam",0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-666666666.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,66,010,980200, +54,"Census Tract 9803, Guam, Guam",0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-666666666.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,66,010,980300, +55,"Census Tract 9804, Guam, Guam",0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-666666666.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,66,010,980400, +56,"Census Tract 9900, Guam, Guam",0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-666666666.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,66,010,990000, +0,"Census Tract 9501, Northern Islands Municipality, Commonwealth of the Northern Mariana Islands",7.0,2.0,0.0,7.0,5.0,0.0,0.0,0.0,2.0,0.0,13125.0,7.0,2.0,0.0,1.0,0.0,7.0,7.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,69,085,950100,31362.0 +0,"Census Tract 9501, Rota Municipality, Commonwealth of the Northern Mariana Islands",1893.0,347.0,252.0,1810.0,514.0,96.0,374.0,75.0,109.0,119.0,31289.0,1891.0,357.0,175.0,157.0,548.0,1893.0,1212.0,557.0,27.0,1.0,0.0,3.0,92.0,17.0,69,100,950100,31362.0 +1,"Census Tract 9900, Rota Municipality, Commonwealth of the Northern Mariana Islands",0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-666666666.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,69,100,990000, +0,"Census Tract 1, Saipan Municipality, Commonwealth of the Northern Mariana Islands",1206.0,161.0,143.0,1164.0,342.0,40.0,231.0,37.0,112.0,65.0,42000.0,1203.0,130.0,86.0,121.0,427.0,1206.0,613.0,413.0,41.0,1.0,1.0,1.0,136.0,10.0,69,110,000100,31362.0 +1,"Census Tract 2, Saipan Municipality, Commonwealth of the Northern Mariana Islands",1399.0,193.0,148.0,1340.0,328.0,39.0,229.0,39.0,91.0,86.0,31250.0,1394.0,280.0,162.0,189.0,362.0,1399.0,817.0,454.0,36.0,0.0,1.0,3.0,88.0,6.0,69,110,000200,31362.0 +2,"Census Tract 3, Saipan Municipality, Commonwealth of the Northern Mariana Islands",1616.0,189.0,158.0,1551.0,478.0,53.0,365.0,62.0,93.0,117.0,48281.0,1602.0,147.0,115.0,114.0,754.0,1616.0,497.0,856.0,103.0,3.0,1.0,8.0,148.0,33.0,69,110,000300,31362.0 +3,"Census Tract 4, Saipan Municipality, Commonwealth of the Northern Mariana Islands",3096.0,477.0,364.0,2993.0,980.0,123.0,651.0,92.0,140.0,122.0,24056.0,3087.0,423.0,325.0,508.0,622.0,3096.0,457.0,2462.0,47.0,5.0,2.0,8.0,114.0,15.0,69,110,000400,31362.0 +4,"Census Tract 5, Saipan Municipality, Commonwealth of the Northern Mariana Islands",2448.0,311.0,269.0,2367.0,645.0,79.0,442.0,61.0,180.0,154.0,30431.0,2440.0,345.0,243.0,307.0,749.0,2448.0,799.0,1393.0,67.0,3.0,0.0,7.0,177.0,41.0,69,110,000500,31362.0 +5,"Census Tract 6, Saipan Municipality, Commonwealth of the Northern Mariana Islands",2739.0,337.0,240.0,2633.0,830.0,77.0,562.0,67.0,209.0,170.0,31250.0,2728.0,448.0,181.0,381.0,826.0,2739.0,801.0,1736.0,44.0,2.0,2.0,1.0,153.0,28.0,69,110,000600,31362.0 +6,"Census Tract 7, Saipan Municipality, Commonwealth of the Northern Mariana Islands",3071.0,508.0,308.0,2937.0,949.0,67.0,599.0,61.0,171.0,176.0,26417.0,3066.0,504.0,377.0,406.0,701.0,3071.0,973.0,1919.0,33.0,2.0,0.0,3.0,140.0,17.0,69,110,000700,31362.0 +7,"Census Tract 8, Saipan Municipality, Commonwealth of the Northern Mariana Islands",1840.0,224.0,183.0,1771.0,494.0,77.0,315.0,53.0,133.0,104.0,23693.0,1657.0,308.0,200.0,224.0,289.0,1840.0,576.0,1131.0,39.0,1.0,0.0,4.0,87.0,5.0,69,110,000800,31362.0 +8,"Census Tract 9, Saipan Municipality, Commonwealth of the Northern Mariana Islands",2967.0,438.0,295.0,2870.0,838.0,138.0,520.0,108.0,183.0,172.0,23365.0,2957.0,651.0,395.0,384.0,506.0,2967.0,947.0,1871.0,15.0,2.0,0.0,0.0,132.0,18.0,69,110,000900,31362.0 +9,"Census Tract 10, Saipan Municipality, Commonwealth of the Northern Mariana Islands",2566.0,335.0,232.0,2446.0,733.0,89.0,487.0,73.0,153.0,156.0,32500.0,2564.0,372.0,255.0,344.0,797.0,2566.0,906.0,1365.0,32.0,6.0,2.0,4.0,249.0,26.0,69,110,001000,31362.0 +10,"Census Tract 11, Saipan Municipality, Commonwealth of the Northern Mariana Islands",1597.0,248.0,178.0,1536.0,471.0,48.0,294.0,50.0,111.0,84.0,23015.0,1594.0,375.0,169.0,187.0,341.0,1597.0,392.0,1099.0,19.0,3.0,0.0,1.0,83.0,14.0,69,110,001100,31362.0 +11,"Census Tract 12, Saipan Municipality, Commonwealth of the Northern Mariana Islands",1900.0,321.0,214.0,1835.0,535.0,100.0,327.0,76.0,130.0,101.0,21250.0,1895.0,455.0,207.0,268.0,373.0,1900.0,645.0,1158.0,15.0,0.0,0.0,0.0,82.0,2.0,69,110,001200,31362.0 +12,"Census Tract 13, Saipan Municipality, Commonwealth of the Northern Mariana Islands",3236.0,434.0,331.0,3119.0,738.0,117.0,521.0,105.0,234.0,229.0,27850.0,3225.0,777.0,351.0,379.0,746.0,3236.0,1702.0,1264.0,23.0,0.0,0.0,5.0,242.0,44.0,69,110,001300,31362.0 +13,"Census Tract 14, Saipan Municipality, Commonwealth of the Northern Mariana Islands",4266.0,565.0,478.0,4081.0,1007.0,132.0,753.0,129.0,311.0,261.0,36086.0,4263.0,674.0,426.0,487.0,1265.0,4266.0,2577.0,1282.0,46.0,8.0,0.0,2.0,350.0,86.0,69,110,001400,31362.0 +14,"Census Tract 15, Saipan Municipality, Commonwealth of the Northern Mariana Islands",3306.0,458.0,356.0,3172.0,909.0,88.0,689.0,89.0,194.0,196.0,37550.0,3296.0,456.0,280.0,289.0,1196.0,3306.0,1506.0,1358.0,136.0,12.0,1.0,4.0,282.0,82.0,69,110,001500,31362.0 +15,"Census Tract 16, Saipan Municipality, Commonwealth of the Northern Mariana Islands",4027.0,569.0,496.0,3816.0,952.0,139.0,748.0,141.0,326.0,315.0,43073.0,4022.0,653.0,309.0,310.0,1425.0,4027.0,3049.0,469.0,36.0,3.0,0.0,3.0,460.0,30.0,69,110,001600,31362.0 +16,"Census Tract 17, Saipan Municipality, Commonwealth of the Northern Mariana Islands",2105.0,264.0,232.0,2020.0,516.0,55.0,417.0,53.0,126.0,107.0,54554.0,2102.0,226.0,103.0,154.0,1115.0,2105.0,1156.0,497.0,204.0,11.0,2.0,5.0,225.0,55.0,69,110,001700,31362.0 +17,"Census Tract 9900, Saipan Municipality, Commonwealth of the Northern Mariana Islands",0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-666666666.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,69,110,990000, +0,"Census Tract 9501.01, Tinian Municipality, Commonwealth of the Northern Mariana Islands",1250.0,230.0,149.0,1207.0,402.0,52.0,262.0,33.0,62.0,54.0,31771.0,1249.0,245.0,124.0,114.0,346.0,1250.0,535.0,589.0,9.0,0.0,0.0,3.0,113.0,21.0,69,120,950101,31362.0 +1,"Census Tract 9501.02, Tinian Municipality, Commonwealth of the Northern Mariana Islands",0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-666666666.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,69,120,950102, +2,"Census Tract 9502.01, Tinian Municipality, Commonwealth of the Northern Mariana Islands",794.0,119.0,95.0,763.0,220.0,28.0,171.0,27.0,38.0,51.0,41875.0,793.0,98.0,73.0,70.0,329.0,794.0,498.0,181.0,13.0,2.0,0.0,0.0,100.0,4.0,69,120,950201,31362.0 +3,"Census Tract 9502.02, Tinian Municipality, Commonwealth of the Northern Mariana Islands",0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-666666666.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,69,120,950202, +4,"Census Tract 9900, Tinian Municipality, Commonwealth of the Northern Mariana Islands",0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-666666666.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,69,120,990000, +0,"Census Tract 9704, St. Croix Island, United States Virgin Islands",3983.0,666.0,538.0,3362.0,923.0,47.0,881.0,33.0,33.0,82.0,56402.0,3971.0,318.0,71.0,145.0,2742.0,3983.0,0.0,39.0,595.0,2676.0,28.0,430.0,183.0,940.0,78,010,970400,40408.0 +1,"Census Tract 9701, St. Croix Island, United States Virgin Islands",1832.0,197.0,170.0,1583.0,475.0,23.0,410.0,23.0,1.0,78.0,75625.0,1767.0,69.0,31.0,48.0,1411.0,1832.0,0.0,28.0,986.0,534.0,20.0,149.0,94.0,267.0,78,010,970100,40408.0 +2,"Census Tract 9702, St. Croix Island, United States Virgin Islands",2446.0,369.0,361.0,1947.0,536.0,41.0,501.0,27.0,32.0,39.0,33400.0,2366.0,438.0,90.0,147.0,1154.0,2446.0,0.0,18.0,299.0,1816.0,14.0,181.0,102.0,695.0,78,010,970200,40408.0 +3,"Census Tract 9703, St. Croix Island, United States Virgin Islands",3025.0,410.0,459.0,2384.0,638.0,45.0,623.0,50.0,3.0,44.0,34444.0,3002.0,603.0,174.0,219.0,1440.0,3025.0,0.0,17.0,368.0,2081.0,8.0,318.0,215.0,907.0,78,010,970300,40408.0 +4,"Census Tract 9705, St. Croix Island, United States Virgin Islands",4814.0,567.0,541.0,3195.0,903.0,84.0,815.0,73.0,20.0,51.0,44196.0,3779.0,371.0,145.0,219.0,2251.0,4814.0,44.0,63.0,530.0,2999.0,31.0,581.0,448.0,1405.0,78,010,970500,40408.0 +5,"Census Tract 9706, St. Croix Island, United States Virgin Islands",2074.0,236.0,195.0,1773.0,570.0,31.0,500.0,27.0,5.0,70.0,62750.0,2074.0,111.0,45.0,86.0,1516.0,2074.0,0.0,59.0,531.0,1089.0,13.0,193.0,170.0,344.0,78,010,970600,40408.0 +6,"Census Tract 9707, St. Croix Island, United States Virgin Islands",1909.0,280.0,269.0,1651.0,435.0,31.0,400.0,27.0,8.0,34.0,40809.0,1896.0,147.0,80.0,109.0,1179.0,1909.0,0.0,5.0,208.0,1393.0,13.0,184.0,105.0,410.0,78,010,970700,40408.0 +7,"Census Tract 9708, St. Croix Island, United States Virgin Islands",3157.0,383.0,397.0,2405.0,585.0,62.0,595.0,91.0,19.0,15.0,29375.0,3086.0,648.0,214.0,244.0,1270.0,3157.0,0.0,5.0,59.0,2181.0,19.0,630.0,230.0,1331.0,78,010,970800,40408.0 +8,"Census Tract 9709, St. Croix Island, United States Virgin Islands",914.0,77.0,151.0,665.0,169.0,18.0,231.0,36.0,6.0,9.0,30385.0,911.0,227.0,48.0,50.0,363.0,914.0,0.0,1.0,40.0,779.0,1.0,67.0,22.0,135.0,78,010,970900,40408.0 +9,"Census Tract 9710, St. Croix Island, United States Virgin Islands",2041.0,270.0,259.0,1690.0,430.0,44.0,404.0,42.0,25.0,33.0,34550.0,2032.0,340.0,128.0,121.0,1018.0,2041.0,0.0,6.0,278.0,1499.0,11.0,118.0,115.0,270.0,78,010,971000,40408.0 +10,"Census Tract 9711, St. Croix Island, United States Virgin Islands",3079.0,399.0,433.0,2317.0,527.0,99.0,627.0,103.0,26.0,35.0,24036.0,3011.0,743.0,265.0,223.0,1087.0,3079.0,0.0,6.0,171.0,2569.0,5.0,203.0,117.0,683.0,78,010,971100,40408.0 +11,"Census Tract 9712, St. Croix Island, United States Virgin Islands",3372.0,546.0,506.0,2835.0,712.0,67.0,622.0,44.0,11.0,31.0,34250.0,3366.0,445.0,176.0,200.0,1800.0,3372.0,0.0,21.0,123.0,2708.0,6.0,266.0,215.0,644.0,78,010,971200,40408.0 +12,"Census Tract 9713, St. Croix Island, United States Virgin Islands",2678.0,361.0,344.0,2191.0,582.0,63.0,536.0,53.0,25.0,33.0,37132.0,2674.0,306.0,145.0,186.0,1397.0,2678.0,0.0,21.0,161.0,2113.0,15.0,231.0,134.0,585.0,78,010,971300,40408.0 +13,"Census Tract 9714, St. Croix Island, United States Virgin Islands",2550.0,297.0,359.0,1759.0,402.0,20.0,467.0,33.0,9.0,14.0,28641.0,2337.0,570.0,110.0,190.0,996.0,2550.0,0.0,6.0,80.0,2067.0,7.0,261.0,98.0,563.0,78,010,971400,40408.0 +14,"Census Tract 9715, St. Croix Island, United States Virgin Islands",3130.0,450.0,436.0,2573.0,707.0,26.0,754.0,36.0,14.0,35.0,45292.0,3124.0,255.0,106.0,205.0,1887.0,3130.0,0.0,20.0,129.0,2603.0,11.0,190.0,171.0,557.0,78,010,971500,40408.0 +15,"Census Tract 9900, St. Croix Island, United States Virgin Islands",0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-666666666.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78,010,990000, +0,"Census Tract 9501, St. John Island, United States Virgin Islands",1233.0,164.0,130.0,1058.0,322.0,34.0,329.0,32.0,8.0,35.0,52143.0,1228.0,97.0,36.0,63.0,799.0,1233.0,0.0,7.0,570.0,532.0,6.0,37.0,75.0,88.0,78,020,950100,40408.0 +1,"Census Tract 9502, St. John Island, United States Virgin Islands",2648.0,496.0,401.0,2305.0,853.0,72.0,700.0,99.0,25.0,47.0,49100.0,2623.0,301.0,98.0,134.0,1617.0,2648.0,1.0,13.0,777.0,1420.0,19.0,158.0,248.0,444.0,78,020,950200,40408.0 +2,"Census Tract 9900, St. John Island, United States Virgin Islands",0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-666666666.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78,020,990000, +0,"Census Tract 9601, St. Thomas Island, United States Virgin Islands",3329.0,485.0,449.0,2761.0,856.0,108.0,861.0,118.0,37.0,39.0,40234.0,3313.0,339.0,160.0,200.0,1840.0,3329.0,0.0,11.0,409.0,2403.0,7.0,90.0,402.0,542.0,78,030,960100,40408.0 +1,"Census Tract 9602, St. Thomas Island, United States Virgin Islands",3762.0,556.0,652.0,3101.0,894.0,116.0,871.0,90.0,84.0,22.0,37628.0,3722.0,401.0,175.0,209.0,1959.0,3762.0,0.0,13.0,41.0,3427.0,1.0,62.0,213.0,287.0,78,030,960200,40408.0 +2,"Census Tract 9603, St. Thomas Island, United States Virgin Islands",3117.0,516.0,560.0,2708.0,692.0,61.0,766.0,65.0,56.0,45.0,41746.0,3099.0,253.0,160.0,159.0,1926.0,3117.0,0.0,1.0,19.0,2838.0,1.0,59.0,199.0,248.0,78,030,960300,40408.0 +3,"Census Tract 9604, St. Thomas Island, United States Virgin Islands",3872.0,494.0,547.0,3303.0,992.0,52.0,1068.0,65.0,14.0,99.0,50602.0,3868.0,284.0,100.0,176.0,2548.0,3872.0,3.0,98.0,1000.0,2369.0,24.0,106.0,239.0,333.0,78,030,960400,40408.0 +4,"Census Tract 9605, St. Thomas Island, United States Virgin Islands",5001.0,676.0,580.0,4375.0,1340.0,90.0,1435.0,102.0,14.0,138.0,61962.0,4990.0,253.0,103.0,180.0,3793.0,5001.0,2.0,51.0,1715.0,2608.0,27.0,135.0,430.0,414.0,78,030,960500,40408.0 +5,"Census Tract 9606, St. Thomas Island, United States Virgin Islands",3114.0,402.0,423.0,2538.0,743.0,59.0,741.0,79.0,30.0,53.0,39393.0,3081.0,286.0,145.0,212.0,1658.0,3114.0,0.0,71.0,332.0,2220.0,13.0,158.0,302.0,561.0,78,030,960600,40408.0 +6,"Census Tract 9607, St. Thomas Island, United States Virgin Islands",2900.0,486.0,379.0,2489.0,783.0,77.0,688.0,64.0,23.0,51.0,44375.0,2897.0,273.0,135.0,147.0,1797.0,2900.0,0.0,15.0,488.0,2088.0,10.0,63.0,224.0,263.0,78,030,960700,40408.0 +7,"Census Tract 9608, St. Thomas Island, United States Virgin Islands",3161.0,430.0,428.0,2399.0,687.0,66.0,702.0,88.0,41.0,37.0,41375.0,2837.0,306.0,101.0,207.0,1578.0,3161.0,1.0,33.0,302.0,2351.0,11.0,173.0,278.0,602.0,78,030,960800,40408.0 +8,"Census Tract 9609, St. Thomas Island, United States Virgin Islands",3721.0,449.0,501.0,3049.0,930.0,107.0,826.0,119.0,57.0,66.0,38444.0,3700.0,478.0,239.0,241.0,1959.0,3721.0,0.0,82.0,437.0,2662.0,24.0,90.0,419.0,490.0,78,030,960900,40408.0 +9,"Census Tract 9610, St. Thomas Island, United States Virgin Islands",4386.0,681.0,620.0,3582.0,1095.0,135.0,976.0,156.0,60.0,29.0,31429.0,4276.0,559.0,301.0,317.0,1861.0,4386.0,0.0,85.0,217.0,3437.0,11.0,123.0,491.0,1050.0,78,030,961000,40408.0 +10,"Census Tract 9611, St. Thomas Island, United States Virgin Islands",3780.0,521.0,647.0,3144.0,833.0,114.0,866.0,117.0,24.0,24.0,29135.0,3754.0,511.0,272.0,278.0,1592.0,3780.0,0.0,92.0,84.0,3033.0,5.0,137.0,420.0,623.0,78,030,961100,40408.0 +11,"Census Tract 9612, St. Thomas Island, United States Virgin Islands",2118.0,261.0,280.0,1608.0,436.0,53.0,432.0,69.0,59.0,13.0,28523.0,1982.0,354.0,153.0,131.0,751.0,2118.0,0.0,23.0,87.0,1688.0,10.0,85.0,210.0,394.0,78,030,961200,40408.0 +12,"Census Tract 9900, St. Thomas Island, United States Virgin Islands",0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-666666666.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78,030,990000, diff --git a/data/data-pipeline/data_pipeline/tests/sources/census_decennial/test_etl.py b/data/data-pipeline/data_pipeline/tests/sources/census_decennial/test_etl.py new file mode 100644 index 00000000..4f489674 --- /dev/null +++ b/data/data-pipeline/data_pipeline/tests/sources/census_decennial/test_etl.py @@ -0,0 +1,152 @@ +import pytest +import pandas as pd +from pathlib import Path +from data_pipeline.etl.sources.census_decennial.constants import ( + DEC_TERRITORY_PARAMS, + DEC_FIELD_NAMES, + OUTPUT_RACE_FIELDS, +) +from data_pipeline.etl.sources.census_decennial.etl import CensusDecennialETL +from data_pipeline.score import field_names + + +@pytest.fixture +def territory_params_fixture(): + return [ + { + "state_abbreviation": "as", + "fips": "60", + "county_fips": ["010"], + "xwalk": DEC_TERRITORY_PARAMS[0]["xwalk"], + "median_income": 26352, + }, + { + "state_abbreviation": "gu", + "fips": "66", + "county_fips": ["010"], + "xwalk": DEC_TERRITORY_PARAMS[1]["xwalk"], + "median_income": 58289, + }, + ] + + +@pytest.fixture +def extract_path_fixture(): + return Path(__file__).parents[0] / "data/extract" + + +@pytest.fixture +def transform_path_fixture(): + return Path(__file__).parents[0] / "data/transform" + + +@pytest.fixture +def transformed_data_fixture(transform_path_fixture): + """Load the test data and call the ETL transform""" + dec = CensusDecennialETL() + dec.df_all = pd.read_csv( + transform_path_fixture / "usa.csv", + # Make sure these columns are string as expected of the original + dtype={"state": "object", "county": "object", "tract": "object"}, + ) + dec.transform() + return dec.df_all + + +############### +# Extract tests +############### +def test_no_files_found(territory_params_fixture): + """Test the ETL raises an exception if the file is not found""" + dec = CensusDecennialETL() + with pytest.raises(FileNotFoundError): + dec.extract( + use_cached_data_sources=True, + test_territory_params=territory_params_fixture, + test_path=Path("/path_does_not_exist"), + ) + + +def test_load_data(extract_path_fixture, territory_params_fixture): + """Test the ETL loads and translates the data""" + dec = CensusDecennialETL() + dec.extract( + use_cached_data_sources=True, + test_territory_params=territory_params_fixture, + test_path=extract_path_fixture, + ) + df = dec.df_all + assert len(df) == 64 + assert len(df.columns) == 30 + + # Columns should not have any census variable names + census_vars = list(DEC_TERRITORY_PARAMS[0]["xwalk"].keys()) + list( + DEC_TERRITORY_PARAMS[1]["xwalk"].keys() + ) + for var in census_vars: + assert var not in df.columns + + # Median income is added for entries with population + assert ( + df.loc[ + df[field_names.CENSUS_DECENNIAL_TOTAL_POPULATION_FIELD_2019] > 0, + DEC_FIELD_NAMES.TERRITORY_MEDIAN_INCOME, + ] + > 0 + ).all() + assert not ( + df.loc[ + df[field_names.CENSUS_DECENNIAL_TOTAL_POPULATION_FIELD_2019] == 0, + DEC_FIELD_NAMES.TERRITORY_MEDIAN_INCOME, + ] + > 0 + ).any() + + +############### +# Transform tests +############### +def test_geo_tract_generation(transformed_data_fixture): + result = transformed_data_fixture + assert field_names.GEOID_TRACT_FIELD in result.columns + assert result[field_names.GEOID_TRACT_FIELD].notnull().all() + + # Grab one GEO ID and test it + assert ( + result[field_names.GEOID_TRACT_FIELD][0] + == result["state"][0] + result["county"][0] + result["tract"][0] + ) + + +def test_merge_tracts(transformed_data_fixture): + result = transformed_data_fixture + # 69120950200 exists, but the tract split does now + assert ( + result.loc[result[field_names.GEOID_TRACT_FIELD] == "69120950200"] + .any() + .any() + ) + assert ( + not result.loc[result[field_names.GEOID_TRACT_FIELD] == "69120950201"] + .any() + .any() + ) + assert ( + not result.loc[result[field_names.GEOID_TRACT_FIELD] == "69120950202"] + .any() + .any() + ) + + +def test_remove_invalid_values(transformed_data_fixture): + numeric_df = transformed_data_fixture.select_dtypes(include="number") + assert not (numeric_df < -999).any().any() + + +def test_race_fields(transformed_data_fixture): + for race_field_name in OUTPUT_RACE_FIELDS: + assert race_field_name in transformed_data_fixture.columns + assert any( + col.startswith(field_names.PERCENT_PREFIX + race_field_name) + for col in transformed_data_fixture.columns + ) From cce91fb47bdf5f4fc807c2a4147bba93aabc2a25 Mon Sep 17 00:00:00 2001 From: Carlos Felix <63804190+carlosfelix2@users.noreply.github.com> Date: Thu, 21 Nov 2024 15:08:15 -0500 Subject: [PATCH 10/28] Add decennial 2020 territory imputations --- .github/workflows/data-checks.yml | 3 - .../data_pipeline/etl/score/etl_score.py | 1 + .../etl/sources/census_acs/etl.py | 27 ++-- .../etl/sources/census_decennial/constants.py | 103 +++++++------ .../etl/sources/census_decennial/etl.py | 81 +++++++++- .../data_pipeline/score/field_names.py | 3 + .../data_pipeline/score/score_narwhal.py | 2 +- .../data/test_mark_poverty_flag.csv | 2 +- .../census-us-territory-geojson.json | 138 ++++++++++++++++++ .../sources/census_decennial/test_etl.py | 135 +++++++++++++++-- 10 files changed, 420 insertions(+), 75 deletions(-) create mode 100644 data/data-pipeline/data_pipeline/tests/sources/census_decennial/data/imputation/census-us-territory-geojson.json diff --git a/.github/workflows/data-checks.yml b/.github/workflows/data-checks.yml index ccfd4bd9..be9cbeea 100644 --- a/.github/workflows/data-checks.yml +++ b/.github/workflows/data-checks.yml @@ -2,9 +2,6 @@ name: Data Checks on: pull_request: - branches: - - main - - "**/release/**" paths: - "data/**" jobs: diff --git a/data/data-pipeline/data_pipeline/etl/score/etl_score.py b/data/data-pipeline/data_pipeline/etl/score/etl_score.py index afd8ad9a..78e10a53 100644 --- a/data/data-pipeline/data_pipeline/etl/score/etl_score.py +++ b/data/data-pipeline/data_pipeline/etl/score/etl_score.py @@ -473,6 +473,7 @@ class ScoreETL(ExtractTransformLoad): field_names.CENSUS_DECENNIAL_HIGH_SCHOOL_ED_FIELD_2019, field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_100_FPL_FIELD_2019, field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_200_FPL_FIELD_2019, + field_names.CENSUS_DECENNIAL_ADJUSTED_POVERTY_LESS_THAN_200_FPL_FIELD_2019, field_names.CENSUS_DECENNIAL_UNEMPLOYMENT_FIELD_2019, field_names.CENSUS_UNEMPLOYMENT_FIELD_2010, field_names.CENSUS_POVERTY_LESS_THAN_100_FPL_FIELD_2010, diff --git a/data/data-pipeline/data_pipeline/etl/sources/census_acs/etl.py b/data/data-pipeline/data_pipeline/etl/sources/census_acs/etl.py index d67a2bc3..5a894a3c 100644 --- a/data/data-pipeline/data_pipeline/etl/sources/census_acs/etl.py +++ b/data/data-pipeline/data_pipeline/etl/sources/census_acs/etl.py @@ -25,6 +25,9 @@ class CensusACSETL(ExtractTransformLoad): NAME = "census_acs" ACS_YEAR = 2019 MINIMUM_POPULATION_REQUIRED_FOR_IMPUTATION = 1 + ImputeVariables = namedtuple( + "ImputeVariables", ["raw_field_name", "imputed_field_name"] + ) def __init__(self): @@ -284,7 +287,7 @@ class CensusACSETL(ExtractTransformLoad): self.COLUMNS_TO_KEEP = ( [ - self.GEOID_TRACT_FIELD_NAME, + field_names.GEOID_TRACT_FIELD, field_names.TOTAL_POP_FIELD, self.UNEMPLOYED_FIELD_NAME, self.LINGUISTIC_ISOLATION_FIELD_NAME, @@ -335,15 +338,15 @@ class CensusACSETL(ExtractTransformLoad): destination=self.census_acs_source, acs_year=self.ACS_YEAR, variables=variables, - tract_output_field_name=self.GEOID_TRACT_FIELD_NAME, + tract_output_field_name=field_names.GEOID_TRACT_FIELD, data_path_for_fips_codes=self.DATA_PATH, acs_type="acs5", ) ] # pylint: disable=too-many-arguments - def _merge_geojson( - self, + @staticmethod + def merge_geojson( df: pd.DataFrame, usa_geo_df: gpd.GeoDataFrame, geoid_field: str = "GEOID10", @@ -364,7 +367,7 @@ class CensusACSETL(ExtractTransformLoad): county_code_field, ] ], - left_on=[self.GEOID_TRACT_FIELD_NAME], + left_on=[field_names.GEOID_TRACT_FIELD], right_on=[geoid_field], ) ) @@ -377,7 +380,7 @@ class CensusACSETL(ExtractTransformLoad): self.df = pd.read_csv( self.census_acs_source, - dtype={self.GEOID_TRACT_FIELD_NAME: "string"}, + dtype={field_names.GEOID_TRACT_FIELD: "string"}, ) def transform(self) -> None: @@ -401,7 +404,7 @@ class CensusACSETL(ExtractTransformLoad): self.DATA_PATH / "census" / "geojson" / "us.json", ) - df = self._merge_geojson( + df = CensusACSETL.merge_geojson( df=df, usa_geo_df=geo_df, ) @@ -608,23 +611,19 @@ class CensusACSETL(ExtractTransformLoad): # we impute income for both income measures ## TODO: Convert to pydantic for clarity logger.debug("Imputing income information") - ImputeVariables = namedtuple( - "ImputeVariables", ["raw_field_name", "imputed_field_name"] - ) - df = calculate_income_measures( impute_var_named_tup_list=[ - ImputeVariables( + CensusACSETL.ImputeVariables( raw_field_name=self.POVERTY_LESS_THAN_200_PERCENT_FPL_FIELD_NAME, imputed_field_name=self.IMPUTED_POVERTY_LESS_THAN_200_PERCENT_FPL_FIELD_NAME, ), - ImputeVariables( + CensusACSETL.ImputeVariables( raw_field_name=self.COLLEGE_ATTENDANCE_FIELD, imputed_field_name=self.IMPUTED_COLLEGE_ATTENDANCE_FIELD, ), ], geo_df=df, - geoid_field=self.GEOID_TRACT_FIELD_NAME, + geoid_field=field_names.GEOID_TRACT_FIELD, minimum_population_required_for_imputation=self.MINIMUM_POPULATION_REQUIRED_FOR_IMPUTATION, ) diff --git a/data/data-pipeline/data_pipeline/etl/sources/census_decennial/constants.py b/data/data-pipeline/data_pipeline/etl/sources/census_decennial/constants.py index 891279c3..9cf52bc4 100644 --- a/data/data-pipeline/data_pipeline/etl/sources/census_decennial/constants.py +++ b/data/data-pipeline/data_pipeline/etl/sources/census_decennial/constants.py @@ -1,4 +1,5 @@ from enum import Enum +from types import MappingProxyType from data_pipeline.score import field_names @@ -29,6 +30,7 @@ class DEC_FIELD_NAMES(str, Enum): HOUSEHOLD_POVERTY_LEVEL_OVER_2_0 = ( "Household poverty level Over 2.0 IN 2019" ) + IMPUTED_PERCENTAGE_HOUSEHOLDS_BELOW_200_PERC_POVERTY_LEVEL = f"{field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_200_FPL_FIELD_2019}, imputed" TOTAL_HOUSEHOLD_POVERTY_LEVEL = "Total Household poverty level IN 2019" TERRITORY_MEDIAN_INCOME = "Territory Median Income" EMPLOYMENT_MALE_UNEMPLOYED = "Total males not in labor force" @@ -45,6 +47,9 @@ class DEC_FIELD_NAMES(str, Enum): COLLEGE_ATTENDANCE_PERCENT = ( "Percent enrollment in college, graduate or professional school" ) + IMPUTED_COLLEGE_ATTENDANCE_PERCENT = ( + f"{COLLEGE_ATTENDANCE_PERCENT}, imputed" + ) COLLEGE_NON_ATTENDANCE_PERCENT = "Percent of population not currently enrolled in college, graduate or professional school" def __str__(self) -> str: @@ -146,45 +151,61 @@ OUTPUT_RACE_FIELDS = [ """Race fields to output in the results.""" DEC_TERRITORY_PARAMS = [ - { - "state_abbreviation": "as", - "fips": "60", - # https://www2.census.gov/geo/docs/reference/codes2020/cou/st60_as_cou2020.txt - "county_fips": ["010", "020", "030", "040", "050"], - "xwalk": __FIELD_NAME_COMMON_XWALK | __FIELD_NAME_AS_XWALK, - # Note: we hardcode the median income for each territory in this dict, - # because that data is hard to programmatically access. - # https://www.ruralhealthinfo.org/states/american-samoa - "median_income": 26352, - }, - { - "state_abbreviation": "gu", - "fips": "66", - # https://www2.census.gov/geo/docs/reference/codes2020/cou/st66_gu_cou2020.txt - "county_fips": ["010"], - "xwalk": __FIELD_NAME_COMMON_XWALK | __FIELD_NAME_GU_XWALK, - # https://www.ruralhealthinfo.org/states/guam - # https://data.census.gov/table/DECENNIALDPGU2020.DP3?g=040XX00US66&d=DECIA%20Guam%20Demographic%20Profile - "median_income": 58289, - }, - { - "state_abbreviation": "mp", - "fips": "69", - # https://www2.census.gov/geo/docs/reference/codes2020/cou/st69_mp_cou2020.txt - "county_fips": ["085", "100", "110", "120"], - "xwalk": __FIELD_NAME_COMMON_XWALK | __FIELD_NAME_MP_XWALK, - # https://www.ruralhealthinfo.org/states/northern-mariana - # https://data.census.gov/table/DECENNIALDPMP2020.DP3?d=DECIA%20Commonwealth%20of%20the%20Northern%20Mariana%20Islands%20Demographic%20Profile - "median_income": 31362, - }, - { - "state_abbreviation": "vi", - "fips": "78", - # https://www2.census.gov/geo/docs/reference/codes2020/cou/st78_vi_cou2020.txt - "county_fips": ["010", "020", "030"], - "xwalk": __FIELD_NAME_COMMON_XWALK | __FIELD_NAME_VI_XWALK, - # https://www.ruralhealthinfo.org/states/us-virgin-islands - "median_income": 40408, - }, + MappingProxyType( + { + "state_abbreviation": "as", + "fips": "60", + # https://www2.census.gov/geo/docs/reference/codes2020/cou/st60_as_cou2020.txt + "county_fips": ("010", "020", "030", "040", "050"), + "xwalk": MappingProxyType( + __FIELD_NAME_COMMON_XWALK | __FIELD_NAME_AS_XWALK + ), + # Note: we hardcode the median income for each territory in this dict, + # because that data is hard to programmatically access. + # https://www.ruralhealthinfo.org/states/american-samoa + "median_income": 26352, + } + ), + MappingProxyType( + { + "state_abbreviation": "gu", + "fips": "66", + # https://www2.census.gov/geo/docs/reference/codes2020/cou/st66_gu_cou2020.txt + "county_fips": ("010",), + "xwalk": MappingProxyType( + __FIELD_NAME_COMMON_XWALK | __FIELD_NAME_GU_XWALK + ), + # https://www.ruralhealthinfo.org/states/guam + # https://data.census.gov/table/DECENNIALDPGU2020.DP3?g=040XX00US66&d=DECIA%20Guam%20Demographic%20Profile + "median_income": 58289, + } + ), + MappingProxyType( + { + "state_abbreviation": "mp", + "fips": "69", + # https://www2.census.gov/geo/docs/reference/codes2020/cou/st69_mp_cou2020.txt + "county_fips": ("085", "100", "110", "120"), + "xwalk": MappingProxyType( + __FIELD_NAME_COMMON_XWALK | __FIELD_NAME_MP_XWALK + ), + # https://www.ruralhealthinfo.org/states/northern-mariana + # https://data.census.gov/table/DECENNIALDPMP2020.DP3?d=DECIA%20Commonwealth%20of%20the%20Northern%20Mariana%20Islands%20Demographic%20Profile + "median_income": 31362, + } + ), + MappingProxyType( + { + "state_abbreviation": "vi", + "fips": "78", + # https://www2.census.gov/geo/docs/reference/codes2020/cou/st78_vi_cou2020.txt + "county_fips": ("010", "020", "030"), + "xwalk": MappingProxyType( + __FIELD_NAME_COMMON_XWALK | __FIELD_NAME_VI_XWALK + ), + # https://www.ruralhealthinfo.org/states/us-virgin-islands + "median_income": 40408, + } + ), ] -"""List of territories to process.""" +"""Read-only list of territories to process.""" diff --git a/data/data-pipeline/data_pipeline/etl/sources/census_decennial/etl.py b/data/data-pipeline/data_pipeline/etl/sources/census_decennial/etl.py index 32a58ffd..6794b45d 100644 --- a/data/data-pipeline/data_pipeline/etl/sources/census_decennial/etl.py +++ b/data/data-pipeline/data_pipeline/etl/sources/census_decennial/etl.py @@ -1,6 +1,7 @@ import os import numpy as np import pandas as pd +import geopandas as gpd import json from typing import List from pathlib import Path @@ -14,6 +15,10 @@ from data_pipeline.etl.datasource import DataSource from data_pipeline.etl.datasource import FileDataSource from data_pipeline.score import field_names from data_pipeline.utils import get_module_logger +from data_pipeline.etl.sources.census_acs.etl import CensusACSETL +from data_pipeline.etl.sources.census_acs.etl_imputations import ( + calculate_income_measures, +) pd.options.mode.chained_assignment = "raise" @@ -27,6 +32,9 @@ class CensusDecennialETL(ExtractTransformLoad): / "dataset" / f"census_decennial_{DECENNIAL_YEAR}" ) + CENSUS_GEOJSON_PATH = ( + ExtractTransformLoad.DATA_PATH / "census" / "geojson" / "us.json" + ) def __get_api_url( self, @@ -136,7 +144,73 @@ class CensusDecennialETL(ExtractTransformLoad): field_names.GEOID_TRACT_FIELD, ] = "69120950200" - def transform(self) -> None: + def _impute_income(self, geojson_path: Path): + """Impute income for both income measures.""" + # Merges Census geojson to imput values from. + logger.debug(f"Reading GeoJSON from {geojson_path}") + geo_df = gpd.read_file(geojson_path) + self.df_all = CensusACSETL.merge_geojson( + df=self.df_all, + usa_geo_df=geo_df, + ) + + logger.debug("Imputing income information") + impute_var_named_tup_list = [ + CensusACSETL.ImputeVariables( + raw_field_name=field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_200_FPL_FIELD_2019, + imputed_field_name=DEC_FIELD_NAMES.IMPUTED_PERCENTAGE_HOUSEHOLDS_BELOW_200_PERC_POVERTY_LEVEL, + ), + ] + self.df_all = calculate_income_measures( + impute_var_named_tup_list=impute_var_named_tup_list, + geo_df=self.df_all, + geoid_field=self.GEOID_TRACT_FIELD_NAME, + population_field=field_names.CENSUS_DECENNIAL_TOTAL_POPULATION_FIELD_2019, + ) + + logger.debug("Calculating with imputed values") + self.df_all[ + field_names.CENSUS_DECENNIAL_ADJUSTED_POVERTY_LESS_THAN_200_FPL_FIELD_2019 + ] = ( + self.df_all[ + field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_200_FPL_FIELD_2019 + ].fillna( + self.df_all[ + DEC_FIELD_NAMES.IMPUTED_PERCENTAGE_HOUSEHOLDS_BELOW_200_PERC_POVERTY_LEVEL + ] + ) + # Use clip to ensure that the values are not negative + ).clip( + lower=0 + ) + + # All values should have a value at this point for tracts with >0 population + assert ( + self.df_all[ + self.df_all[ + field_names.CENSUS_DECENNIAL_TOTAL_POPULATION_FIELD_2019 + ] + >= 1 + ][ + field_names.CENSUS_DECENNIAL_ADJUSTED_POVERTY_LESS_THAN_200_FPL_FIELD_2019 + ] + .isna() + .sum() + == 0 + ), "Error: not all values were filled with imputations..." + + # We generate a boolean that is TRUE when there is an imputed income but not a baseline income, and FALSE otherwise. + # This allows us to see which tracts have an imputed income. + self.df_all[field_names.ISLAND_AREAS_IMPUTED_INCOME_FLAG_FIELD] = ( + self.df_all[ + field_names.CENSUS_DECENNIAL_ADJUSTED_POVERTY_LESS_THAN_200_FPL_FIELD_2019 + ].notna() + & self.df_all[ + field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_200_FPL_FIELD_2019 + ].isna() + ) + + def transform(self, geojson_path: Path = CENSUS_GEOJSON_PATH) -> None: # Creating Geo ID (Census Block Group) Field Name self.df_all[field_names.GEOID_TRACT_FIELD] = ( self.df_all["state"] + self.df_all["county"] + self.df_all["tract"] @@ -232,6 +306,8 @@ class CensusDecennialETL(ExtractTransformLoad): f"There are {missing_value_count} missing values in the field {col} out of a total of {self.df_all.shape[0]} rows" ) + self._impute_income(geojson_path) + def load(self) -> None: self.OUTPUT_PATH.mkdir(parents=True, exist_ok=True) columns_to_include = [ @@ -242,11 +318,14 @@ class CensusDecennialETL(ExtractTransformLoad): field_names.CENSUS_DECENNIAL_AREA_MEDIAN_INCOME_PERCENT_FIELD_2019, field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_100_FPL_FIELD_2019, field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_200_FPL_FIELD_2019, + DEC_FIELD_NAMES.IMPUTED_PERCENTAGE_HOUSEHOLDS_BELOW_200_PERC_POVERTY_LEVEL, + field_names.CENSUS_DECENNIAL_ADJUSTED_POVERTY_LESS_THAN_200_FPL_FIELD_2019, field_names.CENSUS_DECENNIAL_UNEMPLOYMENT_FIELD_2019, field_names.CENSUS_DECENNIAL_HIGH_SCHOOL_ED_FIELD_2019, DEC_FIELD_NAMES.COLLEGE_ATTENDANCE_PERCENT, DEC_FIELD_NAMES.COLLEGE_NON_ATTENDANCE, DEC_FIELD_NAMES.COLLEGE_ATTENDANCE_POPULATION, + field_names.ISLAND_AREAS_IMPUTED_INCOME_FLAG_FIELD, ] + self.final_race_fields self.df_all[columns_to_include].to_csv( path_or_buf=self.OUTPUT_PATH / "usa.csv", index=False diff --git a/data/data-pipeline/data_pipeline/score/field_names.py b/data/data-pipeline/data_pipeline/score/field_names.py index a2dbadbf..de69d24b 100644 --- a/data/data-pipeline/data_pipeline/score/field_names.py +++ b/data/data-pipeline/data_pipeline/score/field_names.py @@ -191,6 +191,7 @@ CENSUS_DECENNIAL_MEDIAN_INCOME_2019 = ( ) CENSUS_DECENNIAL_POVERTY_LESS_THAN_100_FPL_FIELD_2019 = f"Percentage households below 100% of federal poverty line in {DEC_DATA_YEAR}" CENSUS_DECENNIAL_POVERTY_LESS_THAN_200_FPL_FIELD_2019 = f"Percentage households below 200% of federal poverty line in {DEC_DATA_YEAR}" +CENSUS_DECENNIAL_ADJUSTED_POVERTY_LESS_THAN_200_FPL_FIELD_2019 = f"{CENSUS_DECENNIAL_POVERTY_LESS_THAN_200_FPL_FIELD_2019}, adjusted and imputed" CENSUS_DECENNIAL_HIGH_SCHOOL_ED_FIELD_2019 = f"Percent individuals age 25 or over with less than high school degree in {DEC_DATA_YEAR}" CENSUS_DECENNIAL_UNEMPLOYMENT_FIELD_2019 = ( f"Unemployment (percent) in {DEC_DATA_YEAR}" @@ -707,6 +708,8 @@ ISLAND_LOW_MEDIAN_INCOME_PCTILE_THRESHOLD = ( ) ISLAND_UNEMPLOYMENT_PCTILE_THRESHOLD = f"{CENSUS_DECENNIAL_UNEMPLOYMENT_FIELD_2019} exceeds {PERCENTILE}th percentile" ISLAND_POVERTY_PCTILE_THRESHOLD = f"{CENSUS_DECENNIAL_POVERTY_LESS_THAN_100_FPL_FIELD_2019} exceeds {PERCENTILE}th percentile" +# Low Income Island Areas +ISLAND_AREAS_IMPUTED_INCOME_FLAG_FIELD = f"Income data has been estimated based on neighbor income{ISLAND_AREAS_SUFFIX}" # Not currently used in a factor EXTREME_HEAT_MEDIAN_HOUSE_VALUE_LOW_INCOME_FIELD = ( diff --git a/data/data-pipeline/data_pipeline/score/score_narwhal.py b/data/data-pipeline/data_pipeline/score/score_narwhal.py index a4960a08..bb921231 100644 --- a/data/data-pipeline/data_pipeline/score/score_narwhal.py +++ b/data/data-pipeline/data_pipeline/score/score_narwhal.py @@ -1044,7 +1044,7 @@ class ScoreNarwhal(Score): island_areas_poverty_200_criteria_field_name, ) = self._combine_island_areas_with_states_and_set_thresholds( df=self.df, - column_from_island_areas=field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_200_FPL_FIELD_2019, + column_from_island_areas=field_names.CENSUS_DECENNIAL_ADJUSTED_POVERTY_LESS_THAN_200_FPL_FIELD_2019, column_from_decennial_census=field_names.POVERTY_LESS_THAN_200_FPL_IMPUTED_FIELD, combined_column_name=field_names.COMBINED_POVERTY_LESS_THAN_200_FPL_FIELD_2010, threshold_cutoff_for_island_areas=self.LOW_INCOME_THRESHOLD, diff --git a/data/data-pipeline/data_pipeline/tests/score/test_utils/data/test_mark_poverty_flag.csv b/data/data-pipeline/data_pipeline/tests/score/test_utils/data/test_mark_poverty_flag.csv index 00ca70fd..92110932 100644 --- a/data/data-pipeline/data_pipeline/tests/score/test_utils/data/test_mark_poverty_flag.csv +++ b/data/data-pipeline/data_pipeline/tests/score/test_utils/data/test_mark_poverty_flag.csv @@ -1,4 +1,4 @@ -GEOID10_TRACT,Percentage households below 200% of federal poverty line in 2009,"Percent of individuals below 200% Federal Poverty Line, imputed and adjusted","Percent of individuals below 200% Federal Poverty Line, imputed and adjusted (percentile)",Is low income (imputed and adjusted)? +GEOID10_TRACT,"Percentage households below 200% of federal poverty line in 2009, adjusted and imputed","Percent of individuals below 200% Federal Poverty Line, imputed and adjusted","Percent of individuals below 200% Federal Poverty Line, imputed and adjusted (percentile)",Is low income (imputed and adjusted)? 01071950300,,0.1,0.1,False 36087011302,,0.7,0.7,False 72119130701,,0.5,0.5,False diff --git a/data/data-pipeline/data_pipeline/tests/sources/census_decennial/data/imputation/census-us-territory-geojson.json b/data/data-pipeline/data_pipeline/tests/sources/census_decennial/data/imputation/census-us-territory-geojson.json new file mode 100644 index 00000000..5f3e791c --- /dev/null +++ b/data/data-pipeline/data_pipeline/tests/sources/census_decennial/data/imputation/census-us-territory-geojson.json @@ -0,0 +1,138 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "STATEFP10": "69", "COUNTYFP10": "085", "TRACTCE10": "950100", "GEOID10": "69085950100", "NAME10": "9501", "NAMELSAD10": "Census Tract 9501", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 160042786, "AWATER10": 2939687603, "INTPTLAT10": "+18.0830563", "INTPTLON10": "+145.7428652" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.875, 18.086595 ], [ 145.868783, 18.07639 ], [ 145.864223, 18.068626 ], [ 145.859612, 18.063405 ], [ 145.854555, 18.057679 ], [ 145.844237, 18.045535 ], [ 145.839793, 18.044155 ], [ 145.832478, 18.041041 ], [ 145.820372, 18.034732 ], [ 145.80925, 18.029516 ], [ 145.801556, 18.022762 ], [ 145.792457, 18.015887 ], [ 145.79228, 18.015754 ], [ 145.783968, 18.009628 ], [ 145.777863, 18.003432 ], [ 145.769898, 18.0 ], [ 145.752558, 17.990617 ], [ 145.7441, 17.98604 ], [ 145.721616, 17.98604 ], [ 145.695386, 17.989836 ], [ 145.694919, 17.990106 ], [ 145.677866, 18.0 ], [ 145.669594, 18.006071 ], [ 145.664022, 18.009252 ], [ 145.661429, 18.013586 ], [ 145.657596, 18.018772 ], [ 145.657528, 18.018865 ], [ 145.656269, 18.024694 ], [ 145.652697, 18.029965 ], [ 145.649818, 18.038578 ], [ 145.645604, 18.045696 ], [ 145.645677, 18.052715 ], [ 145.643752, 18.057948 ], [ 145.646817, 18.06734 ], [ 145.648859, 18.073398 ], [ 145.651359, 18.082165 ], [ 145.654749, 18.090939 ], [ 145.654488, 18.09766 ], [ 145.654692, 18.098237 ], [ 145.658567, 18.109166 ], [ 145.660321, 18.119199 ], [ 145.663016, 18.125 ], [ 145.668456, 18.137209 ], [ 145.675805, 18.144507 ], [ 145.680344, 18.148635 ], [ 145.680476, 18.148755 ], [ 145.685486, 18.153618 ], [ 145.685211, 18.157058 ], [ 145.684775, 18.171116 ], [ 145.686876, 18.179176 ], [ 145.688932, 18.184428 ], [ 145.691308, 18.189048 ], [ 145.695347, 18.194873 ], [ 145.70003, 18.199744 ], [ 145.706023, 18.204268 ], [ 145.716357, 18.212735 ], [ 145.722685, 18.217563 ], [ 145.725214, 18.219296 ], [ 145.732332, 18.224175 ], [ 145.739668, 18.230223 ], [ 145.75, 18.235761 ], [ 145.759523, 18.241087 ], [ 145.767031, 18.242154 ], [ 145.77678, 18.241926 ], [ 145.777825, 18.242018 ], [ 145.787863, 18.242909 ], [ 145.794047, 18.243074 ], [ 145.806037, 18.239603 ], [ 145.81807, 18.23963 ], [ 145.824861, 18.238227 ], [ 145.840024, 18.233831 ], [ 145.84897, 18.228028 ], [ 145.855991, 18.223203 ], [ 145.858363, 18.218571 ], [ 145.859694, 18.215972 ], [ 145.864713, 18.20933 ], [ 145.870339, 18.201121 ], [ 145.875, 18.194498 ], [ 145.880287, 18.18637 ], [ 145.882227, 18.181663 ], [ 145.884033, 18.177283 ], [ 145.887144, 18.168515 ], [ 145.889277, 18.159759 ], [ 145.890652, 18.155066 ], [ 145.887685, 18.1479 ], [ 145.887481, 18.144161 ], [ 145.887753, 18.139253 ], [ 145.88781, 18.138233 ], [ 145.885187, 18.132029 ], [ 145.885162, 18.125 ], [ 145.884802, 18.120898 ], [ 145.884358, 18.117035 ], [ 145.883473, 18.109332 ], [ 145.878097, 18.095385 ], [ 145.87766, 18.094145 ], [ 145.875, 18.086595 ] ] ], [ [ [ 145.76893, 18.778131 ], [ 145.77066, 18.76072 ], [ 145.769805, 18.75 ], [ 145.769386, 18.748597 ], [ 145.76433, 18.731632 ], [ 145.762652, 18.729244 ], [ 145.761116, 18.727061 ], [ 145.760068, 18.725471 ], [ 145.752517, 18.714017 ], [ 145.75, 18.7102 ], [ 145.736617, 18.687905 ], [ 145.733654, 18.685643 ], [ 145.728978, 18.682074 ], [ 145.700285, 18.664278 ], [ 145.684624, 18.65784 ], [ 145.682701, 18.657535 ], [ 145.672122, 18.659161 ], [ 145.661198, 18.659173 ], [ 145.654435, 18.66041 ], [ 145.652455, 18.661281 ], [ 145.637631, 18.667808 ], [ 145.625, 18.672664 ], [ 145.60861, 18.682278 ], [ 145.608299, 18.682662 ], [ 145.592257, 18.702483 ], [ 145.576893, 18.729651 ], [ 145.576375, 18.73135 ], [ 145.570694, 18.75 ], [ 145.569816, 18.751546 ], [ 145.563134, 18.778687 ], [ 145.563143, 18.778823 ], [ 145.564075, 18.792401 ], [ 145.575397, 18.820429 ], [ 145.598098, 18.856844 ], [ 145.600189, 18.858778 ], [ 145.607845, 18.865858 ], [ 145.625, 18.875 ], [ 145.629335, 18.875996 ], [ 145.639663, 18.878371 ], [ 145.64237, 18.878844 ], [ 145.646753, 18.879611 ], [ 145.658316, 18.880651 ], [ 145.662184, 18.880999 ], [ 145.676085, 18.880547 ], [ 145.692801, 18.877247 ], [ 145.704192, 18.875 ], [ 145.709974, 18.872403 ], [ 145.715529, 18.867965 ], [ 145.72572, 18.859827 ], [ 145.741987, 18.837896 ], [ 145.75, 18.827095 ], [ 145.758807, 18.808449 ], [ 145.762386, 18.800874 ], [ 145.764922, 18.795566 ], [ 145.76893, 18.778131 ] ] ], [ [ [ 145.625, 16.280545 ], [ 145.603802, 16.289364 ], [ 145.584626, 16.300343 ], [ 145.575072, 16.305815 ], [ 145.560084, 16.341249 ], [ 145.558836, 16.374152 ], [ 145.571326, 16.401993 ], [ 145.588524, 16.416098 ], [ 145.597558, 16.423507 ], [ 145.625, 16.442499 ], [ 145.649645, 16.449653 ], [ 145.65461, 16.451096 ], [ 145.67571, 16.452348 ], [ 145.720754, 16.448284 ], [ 145.725881, 16.44642 ], [ 145.75, 16.437652 ], [ 145.759996, 16.427322 ], [ 145.764785, 16.422374 ], [ 145.770876, 16.41228 ], [ 145.778354, 16.389004 ], [ 145.780122, 16.383505 ], [ 145.781379, 16.375 ], [ 145.782822, 16.359917 ], [ 145.782718, 16.359473 ], [ 145.781869, 16.355853 ], [ 145.772497, 16.333969 ], [ 145.767637, 16.323965 ], [ 145.761576, 16.318484 ], [ 145.75, 16.308019 ], [ 145.732906, 16.29331 ], [ 145.728871, 16.290993 ], [ 145.724117, 16.288264 ], [ 145.707841, 16.279731 ], [ 145.702308, 16.276576 ], [ 145.693195, 16.273995 ], [ 145.677573, 16.273493 ], [ 145.651296, 16.273751 ], [ 145.649909, 16.273765 ], [ 145.625, 16.280545 ] ] ], [ [ [ 145.748506, 17.571717 ], [ 145.746783, 17.576812 ], [ 145.746835, 17.578977 ], [ 145.747062, 17.588247 ], [ 145.746659, 17.599369 ], [ 145.747421, 17.601467 ], [ 145.75, 17.608558 ], [ 145.75211, 17.611846 ], [ 145.75844, 17.621711 ], [ 145.760551, 17.625 ], [ 145.771483, 17.645008 ], [ 145.774945, 17.650844 ], [ 145.785435, 17.668522 ], [ 145.800108, 17.684088 ], [ 145.828118, 17.690817 ], [ 145.846121, 17.690647 ], [ 145.856873, 17.690546 ], [ 145.875, 17.685433 ], [ 145.891524, 17.680956 ], [ 145.893935, 17.680303 ], [ 145.910843, 17.667661 ], [ 145.917701, 17.654632 ], [ 145.920095, 17.641828 ], [ 145.923242, 17.625 ], [ 145.924398, 17.600187 ], [ 145.924448, 17.599122 ], [ 145.918333, 17.56724 ], [ 145.909552, 17.547959 ], [ 145.896662, 17.533538 ], [ 145.896269, 17.533301 ], [ 145.875, 17.520473 ], [ 145.867656, 17.517716 ], [ 145.848076, 17.515831 ], [ 145.846831, 17.5156 ], [ 145.832356, 17.512916 ], [ 145.817791, 17.514456 ], [ 145.801133, 17.520508 ], [ 145.776726, 17.535967 ], [ 145.768999, 17.542869 ], [ 145.758838, 17.551948 ], [ 145.75, 17.564259 ], [ 145.749495, 17.565707 ], [ 145.748834, 17.567604 ], [ 145.748627, 17.570188 ], [ 145.748506, 17.571717 ] ] ], [ [ [ 145.494424, 19.688592 ], [ 145.495623, 19.679918 ], [ 145.490565, 19.670702 ], [ 145.488406, 19.656979 ], [ 145.483857, 19.650617 ], [ 145.482038, 19.648072 ], [ 145.475983, 19.637968 ], [ 145.467615, 19.626987 ], [ 145.466367, 19.625 ], [ 145.455792, 19.606318 ], [ 145.454978, 19.604879 ], [ 145.427498, 19.590959 ], [ 145.400016, 19.588428 ], [ 145.395805, 19.589498 ], [ 145.375, 19.594788 ], [ 145.369141, 19.596708 ], [ 145.363924, 19.599081 ], [ 145.356417, 19.602498 ], [ 145.34306, 19.607699 ], [ 145.331687, 19.61422 ], [ 145.330327, 19.615001 ], [ 145.327738, 19.625 ], [ 145.325272, 19.62763 ], [ 145.321359, 19.635208 ], [ 145.31413, 19.651121 ], [ 145.312964, 19.653688 ], [ 145.310418, 19.669106 ], [ 145.304867, 19.684526 ], [ 145.306333, 19.698405 ], [ 145.315903, 19.714037 ], [ 145.329498, 19.728733 ], [ 145.330682, 19.729948 ], [ 145.341187, 19.740725 ], [ 145.352414, 19.75 ], [ 145.35629, 19.753417 ], [ 145.359687, 19.756413 ], [ 145.367155, 19.759403 ], [ 145.369993, 19.760129 ], [ 145.375, 19.761412 ], [ 145.384969, 19.764117 ], [ 145.388791, 19.764306 ], [ 145.396921, 19.764708 ], [ 145.410149, 19.763185 ], [ 145.424334, 19.760153 ], [ 145.430347, 19.757659 ], [ 145.435278, 19.755615 ], [ 145.441383, 19.750604 ], [ 145.442078, 19.75 ], [ 145.447942, 19.744864 ], [ 145.458368, 19.737009 ], [ 145.466667, 19.73106 ], [ 145.47271, 19.72673 ], [ 145.478813, 19.715625 ], [ 145.489837, 19.703581 ], [ 145.493201, 19.695473 ], [ 145.494424, 19.688592 ] ] ], [ [ [ 144.979355, 20.547376 ], [ 144.979231, 20.534638 ], [ 144.979146, 20.525863 ], [ 144.971428, 20.510531 ], [ 144.963849, 20.5 ], [ 144.958674, 20.495377 ], [ 144.952974, 20.48999 ], [ 144.944328, 20.483146 ], [ 144.938365, 20.47867 ], [ 144.934042, 20.475425 ], [ 144.926431, 20.470093 ], [ 144.920614, 20.468721 ], [ 144.911897, 20.466817 ], [ 144.89867, 20.464119 ], [ 144.887114, 20.462914 ], [ 144.878519, 20.463474 ], [ 144.875, 20.46563 ], [ 144.874224, 20.465802 ], [ 144.862474, 20.467095 ], [ 144.853506, 20.472272 ], [ 144.845055, 20.474069 ], [ 144.844463, 20.474493 ], [ 144.838366, 20.478867 ], [ 144.831399, 20.484895 ], [ 144.826761, 20.491766 ], [ 144.826128, 20.5 ], [ 144.822153, 20.507624 ], [ 144.816038, 20.523295 ], [ 144.81548, 20.527723 ], [ 144.813338, 20.544762 ], [ 144.815443, 20.562823 ], [ 144.821067, 20.578102 ], [ 144.833433, 20.595141 ], [ 144.846104, 20.605158 ], [ 144.846839, 20.605493 ], [ 144.86329, 20.612995 ], [ 144.875, 20.614472 ], [ 144.899134, 20.616556 ], [ 144.913764, 20.615216 ], [ 144.923036, 20.614367 ], [ 144.941414, 20.608322 ], [ 144.95928, 20.594403 ], [ 144.971092, 20.581185 ], [ 144.977486, 20.562255 ], [ 144.979355, 20.547376 ] ] ], [ [ [ 145.3125, 20.024643 ], [ 145.310086, 20.016493 ], [ 145.304151, 20.003582 ], [ 145.305683, 20.0 ], [ 145.302163, 19.992812 ], [ 145.297823, 19.986717 ], [ 145.292543, 19.979303 ], [ 145.282238, 19.96878 ], [ 145.272219, 19.961523 ], [ 145.263232, 19.956584 ], [ 145.261209, 19.955473 ], [ 145.25, 19.948546 ], [ 145.248099, 19.948057 ], [ 145.230925, 19.948258 ], [ 145.223112, 19.947874 ], [ 145.212143, 19.947337 ], [ 145.200071, 19.94833 ], [ 145.183121, 19.951911 ], [ 145.172734, 19.959148 ], [ 145.165857, 19.967199 ], [ 145.155197, 19.977571 ], [ 145.15327, 19.978899 ], [ 145.142601, 19.986255 ], [ 145.139934, 20.0 ], [ 145.135979, 20.014947 ], [ 145.132259, 20.037307 ], [ 145.131885, 20.039561 ], [ 145.136235, 20.055988 ], [ 145.146166, 20.076389 ], [ 145.160935, 20.086159 ], [ 145.178652, 20.096513 ], [ 145.203203, 20.101805 ], [ 145.212276, 20.102061 ], [ 145.233609, 20.102666 ], [ 145.25, 20.099034 ], [ 145.265148, 20.095363 ], [ 145.274355, 20.089308 ], [ 145.285568, 20.081935 ], [ 145.299716, 20.065836 ], [ 145.308934, 20.048282 ], [ 145.314965, 20.032962 ], [ 145.3125, 20.024643 ] ] ], [ [ [ 145.926867, 17.312739 ], [ 145.926819, 17.303851 ], [ 145.925816, 17.297129 ], [ 145.923192, 17.288603 ], [ 145.918312, 17.27982 ], [ 145.913359, 17.272545 ], [ 145.912142, 17.270758 ], [ 145.903713, 17.260825 ], [ 145.895636, 17.256401 ], [ 145.892151, 17.25 ], [ 145.891118, 17.245181 ], [ 145.890718, 17.243312 ], [ 145.882598, 17.239184 ], [ 145.879497, 17.237052 ], [ 145.878683, 17.236493 ], [ 145.875, 17.235094 ], [ 145.865607, 17.230717 ], [ 145.858391, 17.228347 ], [ 145.856362, 17.227681 ], [ 145.846816, 17.225265 ], [ 145.837105, 17.227123 ], [ 145.827383, 17.228676 ], [ 145.823053, 17.231661 ], [ 145.814132, 17.237149 ], [ 145.808289, 17.239818 ], [ 145.805478, 17.241103 ], [ 145.800428, 17.245544 ], [ 145.793614, 17.25 ], [ 145.791459, 17.254939 ], [ 145.787627, 17.259004 ], [ 145.786338, 17.259652 ], [ 145.781881, 17.265252 ], [ 145.775328, 17.271937 ], [ 145.77421, 17.273078 ], [ 145.770778, 17.281675 ], [ 145.766051, 17.290616 ], [ 145.764877, 17.29823 ], [ 145.763378, 17.305855 ], [ 145.762854, 17.313447 ], [ 145.76239, 17.324674 ], [ 145.764751, 17.329749 ], [ 145.761308, 17.336307 ], [ 145.764369, 17.344389 ], [ 145.76906, 17.352721 ], [ 145.769247, 17.35297 ], [ 145.774382, 17.35982 ], [ 145.780684, 17.36719 ], [ 145.787967, 17.375 ], [ 145.790619, 17.376832 ], [ 145.79461, 17.381025 ], [ 145.801572, 17.386987 ], [ 145.802527, 17.387299 ], [ 145.809464, 17.389565 ], [ 145.817028, 17.392149 ], [ 145.823588, 17.393227 ], [ 145.828542, 17.396175 ], [ 145.832154, 17.397012 ], [ 145.844313, 17.400411 ], [ 145.850541, 17.401189 ], [ 145.856404, 17.399529 ], [ 145.857363, 17.398903 ], [ 145.86029, 17.396996 ], [ 145.865171, 17.395357 ], [ 145.869077, 17.394046 ], [ 145.875, 17.391566 ], [ 145.879953, 17.391831 ], [ 145.88247, 17.391398 ], [ 145.8928, 17.389624 ], [ 145.896409, 17.388388 ], [ 145.900585, 17.383214 ], [ 145.901277, 17.381772 ], [ 145.904533, 17.375 ], [ 145.916096, 17.372077 ], [ 145.921548, 17.366749 ], [ 145.927303, 17.358042 ], [ 145.927981, 17.356482 ], [ 145.930806, 17.349997 ], [ 145.936555, 17.340371 ], [ 145.926012, 17.333294 ], [ 145.927236, 17.321313 ], [ 145.926867, 17.312739 ] ] ], [ [ [ 145.858271, 16.75 ], [ 145.867898, 16.741755 ], [ 145.868495, 16.72508 ], [ 145.868169, 16.712046 ], [ 145.867632, 16.690521 ], [ 145.861516, 16.673005 ], [ 145.854937, 16.660125 ], [ 145.842076, 16.647923 ], [ 145.821906, 16.637065 ], [ 145.802676, 16.632365 ], [ 145.790512, 16.63129 ], [ 145.781234, 16.63047 ], [ 145.762957, 16.632237 ], [ 145.75, 16.639222 ], [ 145.738307, 16.64095 ], [ 145.725491, 16.649432 ], [ 145.721845, 16.651846 ], [ 145.711746, 16.665675 ], [ 145.704424, 16.688155 ], [ 145.700027, 16.710897 ], [ 145.701166, 16.724112 ], [ 145.702167, 16.735708 ], [ 145.708296, 16.75 ], [ 145.710662, 16.751743 ], [ 145.715596, 16.755377 ], [ 145.717743, 16.756996 ], [ 145.72009, 16.758768 ], [ 145.722186, 16.763996 ], [ 145.723698, 16.765035 ], [ 145.730739, 16.769882 ], [ 145.743255, 16.775832 ], [ 145.75, 16.779041 ], [ 145.769772, 16.787745 ], [ 145.773083, 16.788363 ], [ 145.792386, 16.791971 ], [ 145.823189, 16.78212 ], [ 145.84112, 16.767812 ], [ 145.84355, 16.765874 ], [ 145.858004, 16.751338 ], [ 145.858271, 16.75 ] ] ], [ [ [ 146.010714, 15.97067 ], [ 146.00322, 16.0 ], [ 146.002974, 16.005756 ], [ 146.002238, 16.023026 ], [ 146.001994, 16.028784 ], [ 146.014254, 16.057442 ], [ 146.014687, 16.057974 ], [ 146.030366, 16.077234 ], [ 146.050775, 16.093368 ], [ 146.094034, 16.097283 ], [ 146.095233, 16.096824 ], [ 146.125, 16.085477 ], [ 146.13818, 16.074652 ], [ 146.139399, 16.072629 ], [ 146.15192, 16.051873 ], [ 146.154418, 16.022768 ], [ 146.153351, 16.018087 ], [ 146.15067, 16.006317 ], [ 146.146924, 16.0 ], [ 146.143068, 15.994664 ], [ 146.142447, 15.993805 ], [ 146.133159, 15.981021 ], [ 146.130647, 15.979602 ], [ 146.127098, 15.977598 ], [ 146.125, 15.976227 ], [ 146.09819, 15.959291 ], [ 146.08816, 15.952955 ], [ 146.044442, 15.947893 ], [ 146.011906, 15.969864 ], [ 146.010714, 15.97067 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "69", "COUNTYFP10": "100", "TRACTCE10": "950100", "GEOID10": "69100950100", "NAME10": "9501", "NAMELSAD10": "Census Tract 9501", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 85098733, "AWATER10": 19201, "INTPTLAT10": "+14.1523588", "INTPTLON10": "+145.2131278" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.142654, 14.146317 ], [ 145.142624, 14.146374 ], [ 145.142578, 14.146407 ], [ 145.142578, 14.146532 ], [ 145.142624, 14.146604 ], [ 145.142713, 14.146622 ], [ 145.1427, 14.146657 ], [ 145.142609, 14.14668 ], [ 145.142578, 14.146747 ], [ 145.142624, 14.146781 ], [ 145.142746, 14.14682 ], [ 145.142746, 14.146963 ], [ 145.142761, 14.14705 ], [ 145.142578, 14.147115 ], [ 145.142624, 14.147173 ], [ 145.142731, 14.147174 ], [ 145.142746, 14.147236 ], [ 145.142792, 14.147308 ], [ 145.142883, 14.147323 ], [ 145.142944, 14.147309 ], [ 145.143005, 14.147367 ], [ 145.143112, 14.147392 ], [ 145.143234, 14.147498 ], [ 145.143326, 14.147494 ], [ 145.143341, 14.147384 ], [ 145.143311, 14.147245 ], [ 145.143341, 14.14714 ], [ 145.143326, 14.147085 ], [ 145.143285, 14.146876 ], [ 145.143279, 14.146855 ], [ 145.143254, 14.146771 ], [ 145.143264, 14.146733 ], [ 145.143235, 14.146704 ], [ 145.143204, 14.146589 ], [ 145.143127, 14.146393 ], [ 145.143036, 14.146277 ], [ 145.142929, 14.146262 ], [ 145.142853, 14.146237 ], [ 145.142776, 14.146299 ], [ 145.142715, 14.146298 ], [ 145.142654, 14.146317 ] ] ], [ [ [ 145.186661, 14.115863 ], [ 145.186616, 14.115851 ], [ 145.186595, 14.115808 ], [ 145.186484, 14.115864 ], [ 145.186404, 14.115835 ], [ 145.18628, 14.11587 ], [ 145.186134, 14.115812 ], [ 145.185849, 14.115795 ], [ 145.185727, 14.115658 ], [ 145.185693, 14.115668 ], [ 145.185643, 14.115872 ], [ 145.18557, 14.115907 ], [ 145.18554, 14.116007 ], [ 145.185415, 14.116127 ], [ 145.185283, 14.116148 ], [ 145.185129, 14.116182 ], [ 145.185019, 14.116189 ], [ 145.184881, 14.116138 ], [ 145.184779, 14.116108 ], [ 145.184713, 14.116079 ], [ 145.184647, 14.116164 ], [ 145.184574, 14.116164 ], [ 145.184449, 14.11622 ], [ 145.184259, 14.116211 ], [ 145.184113, 14.116196 ], [ 145.184084, 14.116089 ], [ 145.184019, 14.116017 ], [ 145.183895, 14.116023 ], [ 145.183815, 14.115901 ], [ 145.183691, 14.115857 ], [ 145.183538, 14.115778 ], [ 145.183385, 14.115798 ], [ 145.183246, 14.115797 ], [ 145.183048, 14.115781 ], [ 145.182947, 14.115681 ], [ 145.182794, 14.115622 ], [ 145.182699, 14.115636 ], [ 145.182393, 14.115505 ], [ 145.182364, 14.115384 ], [ 145.182254, 14.115411 ], [ 145.182174, 14.115461 ], [ 145.182108, 14.115382 ], [ 145.181992, 14.115345 ], [ 145.181926, 14.115273 ], [ 145.181824, 14.115329 ], [ 145.181721, 14.115336 ], [ 145.181627, 14.115192 ], [ 145.181453, 14.115063 ], [ 145.181315, 14.114983 ], [ 145.181154, 14.114946 ], [ 145.181148, 14.114775 ], [ 145.181068, 14.11471 ], [ 145.181033, 14.114589 ], [ 145.18096, 14.114495 ], [ 145.180843, 14.114494 ], [ 145.180688, 14.11465 ], [ 145.180608, 14.114671 ], [ 145.180477, 14.11452 ], [ 145.180491, 14.114606 ], [ 145.180564, 14.114721 ], [ 145.180505, 14.114727 ], [ 145.180353, 14.11459 ], [ 145.180243, 14.114554 ], [ 145.180213, 14.114611 ], [ 145.18022, 14.114704 ], [ 145.180074, 14.114695 ], [ 145.179958, 14.114602 ], [ 145.179709, 14.114614 ], [ 145.17957, 14.11467 ], [ 145.179408, 14.114712 ], [ 145.179248, 14.114682 ], [ 145.179219, 14.114632 ], [ 145.179101, 14.114681 ], [ 145.179089, 14.11468 ], [ 145.178941, 14.114673 ], [ 145.178796, 14.114522 ], [ 145.178642, 14.114478 ], [ 145.178577, 14.114377 ], [ 145.178541, 14.114298 ], [ 145.178411, 14.114212 ], [ 145.178279, 14.114147 ], [ 145.178295, 14.114025 ], [ 145.178325, 14.113926 ], [ 145.1782, 14.11406 ], [ 145.178105, 14.113995 ], [ 145.178121, 14.113889 ], [ 145.178092, 14.11381 ], [ 145.177983, 14.113745 ], [ 145.177895, 14.113766 ], [ 145.177837, 14.113658 ], [ 145.177758, 14.113558 ], [ 145.177701, 14.113386 ], [ 145.177704, 14.113169 ], [ 145.177706, 14.113101 ], [ 145.177727, 14.112939 ], [ 145.177771, 14.112901 ], [ 145.177953, 14.112783 ], [ 145.17812, 14.112765 ], [ 145.178214, 14.11266 ], [ 145.178161, 14.112512 ], [ 145.177738, 14.112323 ], [ 145.177534, 14.112264 ], [ 145.177469, 14.11215 ], [ 145.177351, 14.112171 ], [ 145.177239, 14.112103 ], [ 145.177178, 14.111933 ], [ 145.177076, 14.111954 ], [ 145.176876, 14.112086 ], [ 145.176745, 14.111946 ], [ 145.176733, 14.111809 ], [ 145.176719, 14.111723 ], [ 145.17664, 14.111622 ], [ 145.176457, 14.111614 ], [ 145.176348, 14.11152 ], [ 145.176115, 14.111411 ], [ 145.175955, 14.111353 ], [ 145.175876, 14.111146 ], [ 145.175716, 14.111037 ], [ 145.175489, 14.111028 ], [ 145.175314, 14.110942 ], [ 145.175212, 14.110948 ], [ 145.175121, 14.110958 ], [ 145.175132, 14.110869 ], [ 145.174964, 14.110957 ], [ 145.174855, 14.11081 ], [ 145.174738, 14.110787 ], [ 145.17452, 14.11065 ], [ 145.174417, 14.110678 ], [ 145.174315, 14.110627 ], [ 145.174242, 14.110691 ], [ 145.174074, 14.110675 ], [ 145.173702, 14.11048 ], [ 145.17365, 14.110558 ], [ 145.173482, 14.110535 ], [ 145.173359, 14.110449 ], [ 145.173213, 14.110462 ], [ 145.173154, 14.11049 ], [ 145.173044, 14.110453 ], [ 145.17292, 14.110488 ], [ 145.172839, 14.110545 ], [ 145.172642, 14.1105 ], [ 145.172488, 14.110563 ], [ 145.172487, 14.110642 ], [ 145.172341, 14.110662 ], [ 145.17205, 14.11051 ], [ 145.171881, 14.11053 ], [ 145.171766, 14.110741 ], [ 145.171644, 14.110731 ], [ 145.171305, 14.110404 ], [ 145.171005, 14.110374 ], [ 145.170909, 14.110459 ], [ 145.170646, 14.110492 ], [ 145.170236, 14.110532 ], [ 145.170141, 14.110503 ], [ 145.170002, 14.110566 ], [ 145.169922, 14.110522 ], [ 145.169826, 14.110572 ], [ 145.169541, 14.110655 ], [ 145.169306, 14.11076 ], [ 145.169268, 14.110888 ], [ 145.169217, 14.110924 ], [ 145.169121, 14.110973 ], [ 145.168873, 14.110971 ], [ 145.168675, 14.110984 ], [ 145.168477, 14.111068 ], [ 145.168301, 14.111081 ], [ 145.16822, 14.111194 ], [ 145.168117, 14.111322 ], [ 145.167853, 14.111334 ], [ 145.16786, 14.111456 ], [ 145.167771, 14.111526 ], [ 145.167742, 14.111612 ], [ 145.167624, 14.111689 ], [ 145.167425, 14.111895 ], [ 145.167431, 14.112023 ], [ 145.167335, 14.112108 ], [ 145.167219, 14.112093 ], [ 145.167109, 14.112128 ], [ 145.1671, 14.112242 ], [ 145.167317, 14.112522 ], [ 145.167492, 14.112673 ], [ 145.167418, 14.11278 ], [ 145.16738, 14.112872 ], [ 145.167482, 14.113009 ], [ 145.16755, 14.11309 ], [ 145.167627, 14.113181 ], [ 145.167698, 14.113417 ], [ 145.167756, 14.11346 ], [ 145.167843, 14.113582 ], [ 145.16782, 14.113703 ], [ 145.167819, 14.113832 ], [ 145.167824, 14.114074 ], [ 145.167955, 14.114232 ], [ 145.168188, 14.11427 ], [ 145.168464, 14.114579 ], [ 145.168602, 14.114644 ], [ 145.168703, 14.114795 ], [ 145.168805, 14.114903 ], [ 145.168928, 14.114982 ], [ 145.169132, 14.115098 ], [ 145.169123, 14.115355 ], [ 145.169186, 14.115662 ], [ 145.169093, 14.115939 ], [ 145.169071, 14.116288 ], [ 145.169117, 14.116609 ], [ 145.169174, 14.116805 ], [ 145.169278, 14.116947 ], [ 145.169348, 14.117141 ], [ 145.169391, 14.117338 ], [ 145.169339, 14.117638 ], [ 145.169314, 14.118341 ], [ 145.1694, 14.118653 ], [ 145.169299, 14.118902 ], [ 145.169101, 14.118987 ], [ 145.168946, 14.11896 ], [ 145.168882, 14.119036 ], [ 145.168917, 14.119156 ], [ 145.168989, 14.119195 ], [ 145.168885, 14.119275 ], [ 145.168944, 14.119456 ], [ 145.168825, 14.119433 ], [ 145.168736, 14.119499 ], [ 145.168779, 14.119609 ], [ 145.168627, 14.119661 ], [ 145.168553, 14.119799 ], [ 145.168649, 14.119977 ], [ 145.168904, 14.119891 ], [ 145.168943, 14.119969 ], [ 145.16888, 14.120062 ], [ 145.168879, 14.120255 ], [ 145.168951, 14.120363 ], [ 145.169045, 14.120463 ], [ 145.16903, 14.120613 ], [ 145.169021, 14.12077 ], [ 145.169034, 14.120927 ], [ 145.169062, 14.121106 ], [ 145.169002, 14.121276 ], [ 145.168839, 14.121561 ], [ 145.168678, 14.121638 ], [ 145.168552, 14.121773 ], [ 145.168595, 14.12188 ], [ 145.168529, 14.121972 ], [ 145.168476, 14.122157 ], [ 145.168329, 14.122263 ], [ 145.168203, 14.122505 ], [ 145.168033, 14.122711 ], [ 145.167812, 14.122923 ], [ 145.167599, 14.123093 ], [ 145.167559, 14.123273 ], [ 145.167377, 14.123457 ], [ 145.167331, 14.123518 ], [ 145.167353, 14.12358 ], [ 145.167484, 14.123581 ], [ 145.167434, 14.12366 ], [ 145.167343, 14.123738 ], [ 145.167369, 14.123778 ], [ 145.167414, 14.123805 ], [ 145.1674, 14.123867 ], [ 145.1674, 14.123911 ], [ 145.167391, 14.123959 ], [ 145.16738, 14.12418 ], [ 145.167344, 14.124175 ], [ 145.167303, 14.124183 ], [ 145.167289, 14.124227 ], [ 145.167253, 14.124262 ], [ 145.167216, 14.124315 ], [ 145.167229, 14.124346 ], [ 145.167265, 14.124346 ], [ 145.167283, 14.124368 ], [ 145.167328, 14.124391 ], [ 145.167374, 14.124396 ], [ 145.167373, 14.124501 ], [ 145.167332, 14.124501 ], [ 145.167323, 14.124483 ], [ 145.167255, 14.124496 ], [ 145.167201, 14.124531 ], [ 145.167169, 14.124522 ], [ 145.167165, 14.124464 ], [ 145.167116, 14.124442 ], [ 145.16707, 14.124451 ], [ 145.167056, 14.124503 ], [ 145.167101, 14.124552 ], [ 145.167155, 14.124553 ], [ 145.167078, 14.124658 ], [ 145.167072, 14.124777 ], [ 145.167131, 14.124782 ], [ 145.167141, 14.124724 ], [ 145.167231, 14.124721 ], [ 145.167302, 14.124827 ], [ 145.167297, 14.124871 ], [ 145.167261, 14.124871 ], [ 145.16726, 14.124999 ], [ 145.167206, 14.12502 ], [ 145.167264, 14.125074 ], [ 145.167327, 14.125092 ], [ 145.167381, 14.125092 ], [ 145.167409, 14.125048 ], [ 145.167431, 14.125119 ], [ 145.167475, 14.125216 ], [ 145.167502, 14.125243 ], [ 145.167516, 14.12523 ], [ 145.16757, 14.125252 ], [ 145.16757, 14.125283 ], [ 145.167597, 14.125305 ], [ 145.167614, 14.125354 ], [ 145.167673, 14.125359 ], [ 145.167718, 14.125346 ], [ 145.16775, 14.125386 ], [ 145.167803, 14.125426 ], [ 145.167862, 14.125488 ], [ 145.167898, 14.125515 ], [ 145.167897, 14.12555 ], [ 145.167924, 14.12559 ], [ 145.167983, 14.125604 ], [ 145.168069, 14.125596 ], [ 145.168095, 14.125644 ], [ 145.168199, 14.125685 ], [ 145.168194, 14.125738 ], [ 145.168198, 14.125786 ], [ 145.168238, 14.125879 ], [ 145.168188, 14.125892 ], [ 145.168147, 14.125944 ], [ 145.168133, 14.126006 ], [ 145.168079, 14.126045 ], [ 145.168015, 14.126084 ], [ 145.167925, 14.126093 ], [ 145.167884, 14.126128 ], [ 145.167883, 14.126185 ], [ 145.167892, 14.126225 ], [ 145.167914, 14.126291 ], [ 145.16795, 14.126331 ], [ 145.16795, 14.126357 ], [ 145.167999, 14.126375 ], [ 145.168008, 14.126428 ], [ 145.168008, 14.126455 ], [ 145.167971, 14.126472 ], [ 145.167917, 14.126538 ], [ 145.167839, 14.12659 ], [ 145.16777, 14.126722 ], [ 145.167743, 14.126752 ], [ 145.167679, 14.126805 ], [ 145.167638, 14.126862 ], [ 145.167602, 14.126941 ], [ 145.16757, 14.126945 ], [ 145.167533, 14.126985 ], [ 145.167605, 14.127025 ], [ 145.167569, 14.127051 ], [ 145.167564, 14.127086 ], [ 145.167596, 14.127108 ], [ 145.167595, 14.127144 ], [ 145.167568, 14.127188 ], [ 145.167491, 14.127253 ], [ 145.1675, 14.127272 ], [ 145.16754, 14.127306 ], [ 145.167522, 14.127311 ], [ 145.167499, 14.12731 ], [ 145.16749, 14.127288 ], [ 145.167459, 14.127279 ], [ 145.1674, 14.127301 ], [ 145.167364, 14.12727 ], [ 145.167314, 14.127296 ], [ 145.167264, 14.127388 ], [ 145.167186, 14.127445 ], [ 145.1672, 14.127457 ], [ 145.167067, 14.127673 ], [ 145.166872, 14.127831 ], [ 145.16688, 14.127874 ], [ 145.166907, 14.127892 ], [ 145.16684, 14.127892 ], [ 145.166794, 14.127936 ], [ 145.166726, 14.127944 ], [ 145.166717, 14.128001 ], [ 145.166717, 14.128032 ], [ 145.166636, 14.128183 ], [ 145.166519, 14.128405 ], [ 145.16642, 14.128422 ], [ 145.166365, 14.128497 ], [ 145.166272, 14.128567 ], [ 145.166271, 14.12873 ], [ 145.166298, 14.12891 ], [ 145.166285, 14.12895 ], [ 145.166262, 14.128998 ], [ 145.166198, 14.12898 ], [ 145.166144, 14.128997 ], [ 145.166098, 14.129059 ], [ 145.166031, 14.129076 ], [ 145.165972, 14.129049 ], [ 145.165904, 14.129057 ], [ 145.165913, 14.129097 ], [ 145.165949, 14.129111 ], [ 145.165926, 14.129154 ], [ 145.165863, 14.129158 ], [ 145.165804, 14.129154 ], [ 145.165714, 14.129157 ], [ 145.165628, 14.129165 ], [ 145.165596, 14.129218 ], [ 145.16555, 14.12924 ], [ 145.165528, 14.12927 ], [ 145.16546, 14.129305 ], [ 145.165401, 14.129292 ], [ 145.165392, 14.129261 ], [ 145.165342, 14.129282 ], [ 145.16531, 14.129348 ], [ 145.165238, 14.12937 ], [ 145.16521, 14.12948 ], [ 145.16516, 14.129523 ], [ 145.165128, 14.12958 ], [ 145.165078, 14.129624 ], [ 145.164982, 14.129685 ], [ 145.16495, 14.129711 ], [ 145.164932, 14.129755 ], [ 145.164895, 14.12979 ], [ 145.164859, 14.129803 ], [ 145.164755, 14.129811 ], [ 145.16475, 14.129913 ], [ 145.164758, 14.129974 ], [ 145.164686, 14.130022 ], [ 145.164649, 14.130079 ], [ 145.164649, 14.130132 ], [ 145.164599, 14.130198 ], [ 145.164471, 14.130276 ], [ 145.164326, 14.130381 ], [ 145.164222, 14.130451 ], [ 145.164167, 14.130508 ], [ 145.164072, 14.130525 ], [ 145.164013, 14.130524 ], [ 145.163813, 14.130677 ], [ 145.163291, 14.130977 ], [ 145.163223, 14.131003 ], [ 145.162989, 14.13101 ], [ 145.162802, 14.131137 ], [ 145.162746, 14.13129 ], [ 145.162377, 14.131541 ], [ 145.162166, 14.131656 ], [ 145.161997, 14.131796 ], [ 145.16182, 14.131881 ], [ 145.161463, 14.131986 ], [ 145.161286, 14.132042 ], [ 145.161218, 14.132134 ], [ 145.161207, 14.132332 ], [ 145.161166, 14.132389 ], [ 145.161116, 14.132428 ], [ 145.161053, 14.132393 ], [ 145.160985, 14.132361 ], [ 145.16094, 14.132348 ], [ 145.160926, 14.132423 ], [ 145.160944, 14.132467 ], [ 145.160871, 14.13251 ], [ 145.160808, 14.132554 ], [ 145.160762, 14.132549 ], [ 145.160717, 14.13258 ], [ 145.160658, 14.132632 ], [ 145.160671, 14.132663 ], [ 145.160657, 14.132734 ], [ 145.160657, 14.132764 ], [ 145.160535, 14.132768 ], [ 145.160508, 14.132776 ], [ 145.160503, 14.132838 ], [ 145.160412, 14.132842 ], [ 145.160353, 14.132872 ], [ 145.160313, 14.132881 ], [ 145.160236, 14.132832 ], [ 145.160173, 14.132836 ], [ 145.160127, 14.132893 ], [ 145.160109, 14.132941 ], [ 145.159973, 14.133024 ], [ 145.1599, 14.133045 ], [ 145.159801, 14.133084 ], [ 145.159697, 14.133083 ], [ 145.159661, 14.133061 ], [ 145.159575, 14.133047 ], [ 145.159477, 14.132901 ], [ 145.159464, 14.132817 ], [ 145.159451, 14.132768 ], [ 145.159396, 14.132786 ], [ 145.159351, 14.132816 ], [ 145.159274, 14.132838 ], [ 145.159193, 14.132797 ], [ 145.159107, 14.13277 ], [ 145.159049, 14.132761 ], [ 145.158954, 14.132729 ], [ 145.158832, 14.132724 ], [ 145.158728, 14.132763 ], [ 145.158692, 14.132785 ], [ 145.1587, 14.132882 ], [ 145.158645, 14.132921 ], [ 145.158582, 14.132951 ], [ 145.158518, 14.132973 ], [ 145.158487, 14.132999 ], [ 145.15845, 14.133038 ], [ 145.158282, 14.133103 ], [ 145.158219, 14.133107 ], [ 145.158069, 14.133221 ], [ 145.157969, 14.13333 ], [ 145.157865, 14.133356 ], [ 145.157797, 14.133386 ], [ 145.157729, 14.133439 ], [ 145.157649, 14.133477 ], [ 145.157597, 14.133517 ], [ 145.157574, 14.133578 ], [ 145.157533, 14.133649 ], [ 145.157523, 14.133688 ], [ 145.157478, 14.133728 ], [ 145.157432, 14.133758 ], [ 145.157282, 14.13388 ], [ 145.157228, 14.133933 ], [ 145.157178, 14.133963 ], [ 145.157051, 14.134068 ], [ 145.156964, 14.13416 ], [ 145.156896, 14.134195 ], [ 145.156815, 14.134181 ], [ 145.156778, 14.134242 ], [ 145.156786, 14.134331 ], [ 145.156696, 14.134352 ], [ 145.156632, 14.134409 ], [ 145.156564, 14.134457 ], [ 145.156469, 14.134505 ], [ 145.156405, 14.13453 ], [ 145.156319, 14.134596 ], [ 145.15626, 14.134573 ], [ 145.15622, 14.134582 ], [ 145.156192, 14.134639 ], [ 145.156187, 14.134679 ], [ 145.156209, 14.134749 ], [ 145.156182, 14.13482 ], [ 145.156127, 14.134894 ], [ 145.156049, 14.134973 ], [ 145.155945, 14.134985 ], [ 145.155886, 14.135051 ], [ 145.155754, 14.135129 ], [ 145.155687, 14.135155 ], [ 145.155663, 14.135226 ], [ 145.155622, 14.135283 ], [ 145.155554, 14.135348 ], [ 145.15544, 14.13548 ], [ 145.155381, 14.135484 ], [ 145.155227, 14.135549 ], [ 145.155177, 14.135557 ], [ 145.155171, 14.13556 ], [ 145.155127, 14.135592 ], [ 145.155046, 14.135613 ], [ 145.154987, 14.135653 ], [ 145.154964, 14.13571 ], [ 145.154905, 14.1357 ], [ 145.154823, 14.135788 ], [ 145.154673, 14.135906 ], [ 145.154596, 14.135971 ], [ 145.154505, 14.136024 ], [ 145.15431, 14.136146 ], [ 145.154255, 14.136216 ], [ 145.154187, 14.136224 ], [ 145.154101, 14.136219 ], [ 145.154082, 14.136316 ], [ 145.154006, 14.136337 ], [ 145.153956, 14.136372 ], [ 145.153878, 14.136411 ], [ 145.153788, 14.136472 ], [ 145.15367, 14.136524 ], [ 145.153615, 14.136572 ], [ 145.153637, 14.136608 ], [ 145.153515, 14.136611 ], [ 145.153429, 14.136681 ], [ 145.153397, 14.13672 ], [ 145.153365, 14.136729 ], [ 145.153356, 14.136791 ], [ 145.153256, 14.13683 ], [ 145.153174, 14.136899 ], [ 145.15312, 14.136908 ], [ 145.153061, 14.136947 ], [ 145.153024, 14.137035 ], [ 145.153014, 14.137114 ], [ 145.152937, 14.137153 ], [ 145.152792, 14.13724 ], [ 145.152719, 14.137319 ], [ 145.15266, 14.137341 ], [ 145.152615, 14.137389 ], [ 145.152574, 14.137441 ], [ 145.152483, 14.137423 ], [ 145.152384, 14.137409 ], [ 145.152347, 14.137475 ], [ 145.152166, 14.137597 ], [ 145.152052, 14.13768 ], [ 145.151916, 14.137727 ], [ 145.151821, 14.137806 ], [ 145.151721, 14.137814 ], [ 145.15168, 14.137853 ], [ 145.151604, 14.137848 ], [ 145.151509, 14.137848 ], [ 145.151468, 14.1379 ], [ 145.151345, 14.137935 ], [ 145.151304, 14.137961 ], [ 145.151219, 14.137964 ], [ 145.151133, 14.137973 ], [ 145.151078, 14.138012 ], [ 145.150997, 14.138042 ], [ 145.15092, 14.138059 ], [ 145.150825, 14.138094 ], [ 145.150725, 14.138102 ], [ 145.150472, 14.138162 ], [ 145.150372, 14.138143 ], [ 145.15011, 14.138181 ], [ 145.150083, 14.138211 ], [ 145.150042, 14.138189 ], [ 145.150001, 14.138206 ], [ 145.149925, 14.138215 ], [ 145.149806, 14.138324 ], [ 145.149553, 14.138309 ], [ 145.149526, 14.138353 ], [ 145.149422, 14.138321 ], [ 145.149336, 14.138373 ], [ 145.149115, 14.138385 ], [ 145.149042, 14.138375 ], [ 145.148975, 14.138388 ], [ 145.148925, 14.138374 ], [ 145.148907, 14.138361 ], [ 145.148762, 14.138413 ], [ 145.148694, 14.138421 ], [ 145.148531, 14.138486 ], [ 145.148363, 14.138564 ], [ 145.148024, 14.138619 ], [ 145.147396, 14.138676 ], [ 145.147355, 14.138658 ], [ 145.147188, 14.138656 ], [ 145.147061, 14.138682 ], [ 145.147011, 14.138699 ], [ 145.146984, 14.138717 ], [ 145.146894, 14.138703 ], [ 145.146858, 14.138641 ], [ 145.146824, 14.138557 ], [ 145.146624, 14.138431 ], [ 145.146496, 14.138502 ], [ 145.146241, 14.138509 ], [ 145.146065, 14.138666 ], [ 145.146044, 14.138685 ], [ 145.145867, 14.138779 ], [ 145.145719, 14.138912 ], [ 145.145654, 14.138997 ], [ 145.145516, 14.139056 ], [ 145.14547, 14.139061 ], [ 145.145391, 14.139115 ], [ 145.145292, 14.139116 ], [ 145.145213, 14.139145 ], [ 145.145131, 14.13915 ], [ 145.144969, 14.139148 ], [ 145.144887, 14.139175 ], [ 145.14443, 14.139469 ], [ 145.144295, 14.139547 ], [ 145.144183, 14.139574 ], [ 145.14415, 14.139504 ], [ 145.143926, 14.139522 ], [ 145.143728, 14.139198 ], [ 145.143963, 14.13907 ], [ 145.143934, 14.139022 ], [ 145.143643, 14.139159 ], [ 145.143601, 14.139176 ], [ 145.143489, 14.139221 ], [ 145.143418, 14.139236 ], [ 145.143294, 14.13918 ], [ 145.143256, 14.139143 ], [ 145.143124, 14.139147 ], [ 145.143091, 14.139102 ], [ 145.143, 14.139079 ], [ 145.142957, 14.139024 ], [ 145.142813, 14.138978 ], [ 145.142525, 14.138748 ], [ 145.142459, 14.138737 ], [ 145.142418, 14.138702 ], [ 145.142352, 14.138704 ], [ 145.142302, 14.138664 ], [ 145.142024, 14.138508 ], [ 145.142014, 14.138439 ], [ 145.141948, 14.138408 ], [ 145.141883, 14.138344 ], [ 145.141868, 14.138291 ], [ 145.141632, 14.138168 ], [ 145.141472, 14.138018 ], [ 145.141404, 14.138006 ], [ 145.141266, 14.137983 ], [ 145.141175, 14.137907 ], [ 145.141066, 14.137876 ], [ 145.140962, 14.137828 ], [ 145.140911, 14.137783 ], [ 145.14082, 14.137723 ], [ 145.140755, 14.137663 ], [ 145.140687, 14.137628 ], [ 145.140628, 14.137592 ], [ 145.140608, 14.137553 ], [ 145.140558, 14.137522 ], [ 145.14051, 14.137524 ], [ 145.140495, 14.137477 ], [ 145.140426, 14.137425 ], [ 145.140318, 14.137364 ], [ 145.140285, 14.137327 ], [ 145.140242, 14.137262 ], [ 145.140159, 14.137187 ], [ 145.140015, 14.137035 ], [ 145.139932, 14.136937 ], [ 145.139864, 14.136895 ], [ 145.139816, 14.136822 ], [ 145.139764, 14.136767 ], [ 145.139631, 14.136759 ], [ 145.139508, 14.136674 ], [ 145.139437, 14.136614 ], [ 145.139311, 14.136521 ], [ 145.139248, 14.136451 ], [ 145.13921, 14.136391 ], [ 145.139196, 14.136297 ], [ 145.139058, 14.13608 ], [ 145.138843, 14.13586 ], [ 145.138658, 14.135551 ], [ 145.138373, 14.135263 ], [ 145.138346, 14.135216 ], [ 145.138233, 14.135022 ], [ 145.137796, 14.134622 ], [ 145.137561, 14.134538 ], [ 145.137516, 14.134554 ], [ 145.137423, 14.134567 ], [ 145.137418, 14.134534 ], [ 145.137448, 14.134481 ], [ 145.137453, 14.134419 ], [ 145.137439, 14.134362 ], [ 145.137395, 14.134294 ], [ 145.137342, 14.13427 ], [ 145.137303, 14.134236 ], [ 145.137284, 14.134169 ], [ 145.137255, 14.134116 ], [ 145.137206, 14.134068 ], [ 145.137192, 14.134025 ], [ 145.137207, 14.133996 ], [ 145.137207, 14.133963 ], [ 145.137139, 14.133881 ], [ 145.13709, 14.133828 ], [ 145.137052, 14.133814 ], [ 145.136934, 14.133813 ], [ 145.13689, 14.133779 ], [ 145.136876, 14.133745 ], [ 145.136886, 14.133664 ], [ 145.136876, 14.13363 ], [ 145.136789, 14.133596 ], [ 145.13672, 14.133558 ], [ 145.136687, 14.133487 ], [ 145.136665, 14.133467 ], [ 145.136634, 14.133318 ], [ 145.136639, 14.133265 ], [ 145.136606, 14.133141 ], [ 145.136505, 14.132944 ], [ 145.136408, 14.132804 ], [ 145.136335, 14.132775 ], [ 145.136245, 14.132667 ], [ 145.136242, 14.132664 ], [ 145.136243, 14.132535 ], [ 145.13618, 14.132511 ], [ 145.136137, 14.13242 ], [ 145.136167, 14.132267 ], [ 145.136222, 14.132205 ], [ 145.136242, 14.132129 ], [ 145.136228, 14.132076 ], [ 145.136169, 14.132066 ], [ 145.136095, 14.132041 ], [ 145.136071, 14.131993 ], [ 145.136096, 14.131955 ], [ 145.136111, 14.131922 ], [ 145.136013, 14.131888 ], [ 145.135984, 14.131835 ], [ 145.13597, 14.131768 ], [ 145.13599, 14.131711 ], [ 145.136025, 14.131663 ], [ 145.136001, 14.131605 ], [ 145.135967, 14.131562 ], [ 145.135904, 14.131543 ], [ 145.135865, 14.131423 ], [ 145.13588, 14.13137 ], [ 145.135783, 14.131312 ], [ 145.13571, 14.131259 ], [ 145.135643, 14.131091 ], [ 145.135614, 14.131048 ], [ 145.13555, 14.131023 ], [ 145.135482, 14.13097 ], [ 145.135439, 14.130869 ], [ 145.135419, 14.130802 ], [ 145.13541, 14.13074 ], [ 145.135386, 14.130687 ], [ 145.135359, 14.130603 ], [ 145.135349, 14.130583 ], [ 145.13529, 14.130452 ], [ 145.135237, 14.130361 ], [ 145.135144, 14.130312 ], [ 145.13511, 14.130283 ], [ 145.135027, 14.130264 ], [ 145.134988, 14.130244 ], [ 145.135001, 14.130148 ], [ 145.134954, 14.130104 ], [ 145.134958, 14.129993 ], [ 145.134928, 14.12993 ], [ 145.134877, 14.12992 ], [ 145.134883, 14.129828 ], [ 145.134828, 14.129729 ], [ 145.134808, 14.129602 ], [ 145.134766, 14.129535 ], [ 145.134635, 14.129402 ], [ 145.134529, 14.129255 ], [ 145.134444, 14.129146 ], [ 145.133807, 14.128439 ], [ 145.133538, 14.128077 ], [ 145.133446, 14.128054 ], [ 145.133437, 14.127977 ], [ 145.133392, 14.12786 ], [ 145.133296, 14.127842 ], [ 145.133286, 14.127736 ], [ 145.133211, 14.127668 ], [ 145.133181, 14.127549 ], [ 145.133085, 14.127444 ], [ 145.133061, 14.127352 ], [ 145.133054, 14.127345 ], [ 145.132988, 14.127284 ], [ 145.132955, 14.12717 ], [ 145.132942, 14.126994 ], [ 145.132863, 14.126944 ], [ 145.132798, 14.126891 ], [ 145.132742, 14.126804 ], [ 145.132706, 14.126652 ], [ 145.132658, 14.126592 ], [ 145.13262, 14.126587 ], [ 145.132618, 14.126438 ], [ 145.132574, 14.126299 ], [ 145.132493, 14.126289 ], [ 145.132473, 14.126229 ], [ 145.132407, 14.126226 ], [ 145.132349, 14.126119 ], [ 145.132282, 14.125962 ], [ 145.132128, 14.125537 ], [ 145.13198, 14.125315 ], [ 145.131877, 14.125121 ], [ 145.131769, 14.124976 ], [ 145.131669, 14.124814 ], [ 145.131594, 14.12466 ], [ 145.131531, 14.124548 ], [ 145.131491, 14.124434 ], [ 145.131416, 14.124361 ], [ 145.131378, 14.124262 ], [ 145.131326, 14.124182 ], [ 145.131271, 14.124072 ], [ 145.13109, 14.123783 ], [ 145.131002, 14.123686 ], [ 145.130819, 14.123507 ], [ 145.13075, 14.123389 ], [ 145.130636, 14.123326 ], [ 145.130569, 14.123184 ], [ 145.130521, 14.123139 ], [ 145.130456, 14.123027 ], [ 145.130377, 14.12292 ], [ 145.130246, 14.122814 ], [ 145.130164, 14.122713 ], [ 145.130012, 14.122664 ], [ 145.130023, 14.122482 ], [ 145.129902, 14.122376 ], [ 145.129822, 14.122241 ], [ 145.129619, 14.12223 ], [ 145.129585, 14.122149 ], [ 145.129536, 14.122096 ], [ 145.129474, 14.121985 ], [ 145.129357, 14.121922 ], [ 145.129238, 14.121879 ], [ 145.12918, 14.121866 ], [ 145.129141, 14.121892 ], [ 145.129087, 14.121906 ], [ 145.129063, 14.121848 ], [ 145.129029, 14.121819 ], [ 145.128961, 14.12179 ], [ 145.128986, 14.121666 ], [ 145.128903, 14.121617 ], [ 145.128874, 14.121541 ], [ 145.128792, 14.121492 ], [ 145.128748, 14.12142 ], [ 145.128665, 14.1214 ], [ 145.128567, 14.121337 ], [ 145.128485, 14.121255 ], [ 145.128436, 14.121193 ], [ 145.128354, 14.121111 ], [ 145.128183, 14.121062 ], [ 145.12807, 14.121023 ], [ 145.127938, 14.120955 ], [ 145.1279, 14.120878 ], [ 145.127813, 14.120753 ], [ 145.12773, 14.120695 ], [ 145.127681, 14.120623 ], [ 145.127618, 14.120541 ], [ 145.127599, 14.120493 ], [ 145.127517, 14.12033 ], [ 145.127435, 14.1202 ], [ 145.127416, 14.120114 ], [ 145.127323, 14.12006 ], [ 145.127255, 14.120055 ], [ 145.127197, 14.119983 ], [ 145.127138, 14.11992 ], [ 145.127075, 14.119905 ], [ 145.126968, 14.119809 ], [ 145.126944, 14.119761 ], [ 145.126865, 14.119722 ], [ 145.126792, 14.119712 ], [ 145.126655, 14.119735 ], [ 145.126576, 14.119739 ], [ 145.126517, 14.119753 ], [ 145.126442, 14.119698 ], [ 145.126326, 14.119682 ], [ 145.126237, 14.119743 ], [ 145.126115, 14.11973 ], [ 145.12597, 14.119731 ], [ 145.125936, 14.119736 ], [ 145.125876, 14.119719 ], [ 145.125763, 14.11967 ], [ 145.125725, 14.119613 ], [ 145.125568, 14.119587 ], [ 145.1255, 14.119544 ], [ 145.12529, 14.119485 ], [ 145.125182, 14.119403 ], [ 145.12505, 14.119349 ], [ 145.124953, 14.119339 ], [ 145.124944, 14.11934 ], [ 145.124899, 14.119348 ], [ 145.124879, 14.119381 ], [ 145.124761, 14.119376 ], [ 145.124732, 14.119327 ], [ 145.124684, 14.119279 ], [ 145.12463, 14.119241 ], [ 145.12461, 14.119293 ], [ 145.124609, 14.119365 ], [ 145.124551, 14.119321 ], [ 145.124469, 14.119172 ], [ 145.124338, 14.118966 ], [ 145.124251, 14.118865 ], [ 145.124154, 14.118778 ], [ 145.123998, 14.11858 ], [ 145.123931, 14.118484 ], [ 145.123911, 14.118436 ], [ 145.123872, 14.118388 ], [ 145.123853, 14.11834 ], [ 145.123814, 14.118316 ], [ 145.123756, 14.118268 ], [ 145.123708, 14.118181 ], [ 145.123669, 14.118133 ], [ 145.123655, 14.118071 ], [ 145.123513, 14.117965 ], [ 145.123484, 14.117902 ], [ 145.123431, 14.117859 ], [ 145.123368, 14.117782 ], [ 145.123275, 14.117704 ], [ 145.123207, 14.11767 ], [ 145.123153, 14.117656 ], [ 145.123085, 14.117631 ], [ 145.123031, 14.117583 ], [ 145.122968, 14.117511 ], [ 145.122949, 14.117468 ], [ 145.12291, 14.117458 ], [ 145.122861, 14.117419 ], [ 145.122807, 14.117395 ], [ 145.122734, 14.117335 ], [ 145.122713, 14.117351 ], [ 145.122664, 14.117359 ], [ 145.122553, 14.117352 ], [ 145.122514, 14.117375 ], [ 145.122475, 14.117356 ], [ 145.122441, 14.117332 ], [ 145.122328, 14.117374 ], [ 145.122269, 14.117388 ], [ 145.12221, 14.117397 ], [ 145.122224, 14.11744 ], [ 145.122185, 14.117459 ], [ 145.122107, 14.117449 ], [ 145.122018, 14.117462 ], [ 145.121999, 14.117494 ], [ 145.121994, 14.1175 ], [ 145.122003, 14.117577 ], [ 145.122027, 14.117639 ], [ 145.122085, 14.117716 ], [ 145.122172, 14.117903 ], [ 145.122063, 14.118051 ], [ 145.122018, 14.11806 ], [ 145.122018, 14.118137 ], [ 145.122012, 14.118208 ], [ 145.121983, 14.118251 ], [ 145.121958, 14.118313 ], [ 145.121923, 14.118356 ], [ 145.121932, 14.118408 ], [ 145.121814, 14.118446 ], [ 145.12179, 14.118388 ], [ 145.121736, 14.118426 ], [ 145.121755, 14.118503 ], [ 145.121691, 14.11856 ], [ 145.121696, 14.118598 ], [ 145.121661, 14.118612 ], [ 145.121636, 14.118645 ], [ 145.121539, 14.118606 ], [ 145.121484, 14.118639 ], [ 145.121489, 14.118678 ], [ 145.121469, 14.11874 ], [ 145.121444, 14.118768 ], [ 145.121405, 14.118796 ], [ 145.12137, 14.118834 ], [ 145.121345, 14.118906 ], [ 145.121369, 14.118983 ], [ 145.121403, 14.119055 ], [ 145.121432, 14.119103 ], [ 145.121387, 14.119145 ], [ 145.121387, 14.119203 ], [ 145.121401, 14.119251 ], [ 145.121386, 14.119318 ], [ 145.121513, 14.119352 ], [ 145.121532, 14.119429 ], [ 145.121486, 14.119605 ], [ 145.121491, 14.119648 ], [ 145.12153, 14.119711 ], [ 145.121524, 14.119797 ], [ 145.121563, 14.119835 ], [ 145.121582, 14.119931 ], [ 145.121576, 14.120041 ], [ 145.12161, 14.120118 ], [ 145.121604, 14.12019 ], [ 145.121614, 14.120228 ], [ 145.121652, 14.120262 ], [ 145.121623, 14.120319 ], [ 145.121646, 14.12041 ], [ 145.121734, 14.120449 ], [ 145.121783, 14.120502 ], [ 145.121846, 14.120579 ], [ 145.121845, 14.120655 ], [ 145.121796, 14.120703 ], [ 145.121761, 14.120779 ], [ 145.121775, 14.120889 ], [ 145.121735, 14.120937 ], [ 145.121769, 14.121004 ], [ 145.121861, 14.121072 ], [ 145.121896, 14.121077 ], [ 145.121905, 14.121129 ], [ 145.121928, 14.121378 ], [ 145.121878, 14.121431 ], [ 145.121716, 14.121453 ], [ 145.121652, 14.121481 ], [ 145.121583, 14.121529 ], [ 145.121538, 14.121619 ], [ 145.121513, 14.121715 ], [ 145.121507, 14.121868 ], [ 145.121511, 14.12204 ], [ 145.121485, 14.122111 ], [ 145.121519, 14.122212 ], [ 145.121499, 14.122269 ], [ 145.121479, 14.12235 ], [ 145.121487, 14.12246 ], [ 145.121443, 14.122508 ], [ 145.121379, 14.122522 ], [ 145.121371, 14.122547 ], [ 145.121364, 14.122574 ], [ 145.121354, 14.12266 ], [ 145.121377, 14.122732 ], [ 145.121426, 14.1228 ], [ 145.121425, 14.1229 ], [ 145.121444, 14.122991 ], [ 145.121483, 14.123058 ], [ 145.121599, 14.123174 ], [ 145.121701, 14.123251 ], [ 145.121725, 14.123337 ], [ 145.121774, 14.123395 ], [ 145.122008, 14.123545 ], [ 145.122154, 14.123609 ], [ 145.122208, 14.123681 ], [ 145.122305, 14.123739 ], [ 145.122334, 14.123777 ], [ 145.122329, 14.123873 ], [ 145.122313, 14.12394 ], [ 145.122308, 14.124021 ], [ 145.122327, 14.124093 ], [ 145.12236, 14.124165 ], [ 145.122404, 14.124232 ], [ 145.122423, 14.124319 ], [ 145.122427, 14.124433 ], [ 145.122402, 14.124519 ], [ 145.122421, 14.124553 ], [ 145.12247, 14.124529 ], [ 145.122545, 14.124386 ], [ 145.122584, 14.124368 ], [ 145.122628, 14.124416 ], [ 145.122618, 14.124487 ], [ 145.122627, 14.124569 ], [ 145.12266, 14.124646 ], [ 145.122742, 14.124809 ], [ 145.122786, 14.124881 ], [ 145.12281, 14.124929 ], [ 145.122834, 14.125001 ], [ 145.122838, 14.125053 ], [ 145.122779, 14.125101 ], [ 145.122671, 14.125086 ], [ 145.122613, 14.125023 ], [ 145.122589, 14.124956 ], [ 145.122541, 14.124879 ], [ 145.122517, 14.124821 ], [ 145.122483, 14.124783 ], [ 145.122429, 14.124821 ], [ 145.122404, 14.124886 ], [ 145.122399, 14.124892 ], [ 145.122461, 14.125051 ], [ 145.12248, 14.125089 ], [ 145.122519, 14.125137 ], [ 145.122553, 14.125214 ], [ 145.122494, 14.125218 ], [ 145.12243, 14.125213 ], [ 145.122385, 14.125323 ], [ 145.122385, 14.125394 ], [ 145.122463, 14.1254 ], [ 145.122522, 14.125419 ], [ 145.12256, 14.125477 ], [ 145.122555, 14.125525 ], [ 145.122486, 14.125543 ], [ 145.122442, 14.1256 ], [ 145.122524, 14.125711 ], [ 145.122514, 14.125773 ], [ 145.122391, 14.125801 ], [ 145.122371, 14.125863 ], [ 145.12241, 14.125916 ], [ 145.122488, 14.125931 ], [ 145.122541, 14.126065 ], [ 145.122585, 14.126056 ], [ 145.122678, 14.126066 ], [ 145.122658, 14.126114 ], [ 145.122628, 14.126166 ], [ 145.122661, 14.1263 ], [ 145.122705, 14.126329 ], [ 145.122744, 14.126397 ], [ 145.122773, 14.126473 ], [ 145.122782, 14.126579 ], [ 145.122859, 14.126661 ], [ 145.122937, 14.126728 ], [ 145.122991, 14.126762 ], [ 145.122995, 14.126872 ], [ 145.123038, 14.127035 ], [ 145.123051, 14.127159 ], [ 145.123124, 14.127217 ], [ 145.123193, 14.127218 ], [ 145.123409, 14.127172 ], [ 145.12357, 14.127307 ], [ 145.123652, 14.12737 ], [ 145.123642, 14.127417 ], [ 145.123695, 14.127528 ], [ 145.123763, 14.127571 ], [ 145.123861, 14.127654 ], [ 145.123914, 14.127735 ], [ 145.123972, 14.127846 ], [ 145.123966, 14.127922 ], [ 145.123839, 14.127916 ], [ 145.1238, 14.12793 ], [ 145.123828, 14.128026 ], [ 145.123838, 14.128093 ], [ 145.123895, 14.128209 ], [ 145.123949, 14.128286 ], [ 145.124022, 14.128291 ], [ 145.124091, 14.128287 ], [ 145.124238, 14.128307 ], [ 145.12433, 14.128355 ], [ 145.124374, 14.128413 ], [ 145.124398, 14.128485 ], [ 145.124467, 14.128486 ], [ 145.124491, 14.128471 ], [ 145.124554, 14.128553 ], [ 145.124662, 14.128568 ], [ 145.124696, 14.128631 ], [ 145.12473, 14.128684 ], [ 145.124745, 14.128696 ], [ 145.124788, 14.128751 ], [ 145.124851, 14.128795 ], [ 145.125061, 14.128959 ], [ 145.125227, 14.129008 ], [ 145.125319, 14.129076 ], [ 145.125348, 14.129157 ], [ 145.125436, 14.129244 ], [ 145.125503, 14.129326 ], [ 145.125518, 14.129388 ], [ 145.125467, 14.129589 ], [ 145.125442, 14.129655 ], [ 145.125476, 14.129737 ], [ 145.12572, 14.129854 ], [ 145.125832, 14.129888 ], [ 145.125862, 14.129859 ], [ 145.12595, 14.129836 ], [ 145.126073, 14.129852 ], [ 145.126175, 14.1299 ], [ 145.126175, 14.129938 ], [ 145.126253, 14.130001 ], [ 145.126336, 14.129997 ], [ 145.126439, 14.130003 ], [ 145.126482, 14.13006 ], [ 145.126551, 14.130133 ], [ 145.126604, 14.130152 ], [ 145.126687, 14.130263 ], [ 145.126916, 14.130332 ], [ 145.127235, 14.130387 ], [ 145.127386, 14.13045 ], [ 145.127439, 14.130489 ], [ 145.127271, 14.130707 ], [ 145.127162, 14.130817 ], [ 145.127289, 14.130899 ], [ 145.127412, 14.13089 ], [ 145.127504, 14.130982 ], [ 145.127592, 14.131026 ], [ 145.127636, 14.131016 ], [ 145.127744, 14.131036 ], [ 145.127787, 14.131104 ], [ 145.127928, 14.131224 ], [ 145.128006, 14.131277 ], [ 145.128134, 14.131307 ], [ 145.128192, 14.131375 ], [ 145.12827, 14.131447 ], [ 145.128387, 14.13151 ], [ 145.128419, 14.131519 ], [ 145.128475, 14.131535 ], [ 145.128533, 14.131573 ], [ 145.128695, 14.131603 ], [ 145.129178, 14.131784 ], [ 145.129481, 14.131982 ], [ 145.12971, 14.132156 ], [ 145.1299, 14.132287 ], [ 145.130055, 14.132403 ], [ 145.130299, 14.132567 ], [ 145.130537, 14.132789 ], [ 145.130781, 14.132982 ], [ 145.131039, 14.133238 ], [ 145.131326, 14.133393 ], [ 145.13139, 14.133461 ], [ 145.131507, 14.133509 ], [ 145.13176, 14.133684 ], [ 145.131823, 14.133751 ], [ 145.131858, 14.133761 ], [ 145.13195, 14.133809 ], [ 145.132014, 14.133848 ], [ 145.132116, 14.133925 ], [ 145.132189, 14.133955 ], [ 145.132228, 14.134008 ], [ 145.132365, 14.134061 ], [ 145.132434, 14.134052 ], [ 145.132467, 14.134105 ], [ 145.132536, 14.134153 ], [ 145.132559, 14.134206 ], [ 145.132576, 14.134541 ], [ 145.132056, 14.135216 ], [ 145.131851, 14.135219 ], [ 145.131629, 14.135356 ], [ 145.13153, 14.135413 ], [ 145.131412, 14.135527 ], [ 145.131388, 14.135426 ], [ 145.131359, 14.135369 ], [ 145.13127, 14.135343 ], [ 145.131154, 14.13531 ], [ 145.130795, 14.135298 ], [ 145.130777, 14.135303 ], [ 145.130556, 14.135319 ], [ 145.130496, 14.13541 ], [ 145.130427, 14.135486 ], [ 145.130451, 14.13561 ], [ 145.130553, 14.135678 ], [ 145.13071, 14.135703 ], [ 145.130871, 14.1357 ], [ 145.13092, 14.135781 ], [ 145.131012, 14.135897 ], [ 145.131139, 14.135926 ], [ 145.131213, 14.135874 ], [ 145.131282, 14.135851 ], [ 145.131385, 14.135842 ], [ 145.131383, 14.136019 ], [ 145.131417, 14.136153 ], [ 145.131553, 14.136279 ], [ 145.131685, 14.136323 ], [ 145.131738, 14.1364 ], [ 145.131802, 14.13641 ], [ 145.13188, 14.136415 ], [ 145.131978, 14.13644 ], [ 145.132106, 14.136573 ], [ 145.132187, 14.136657 ], [ 145.132289, 14.136777 ], [ 145.132386, 14.136845 ], [ 145.132449, 14.136927 ], [ 145.132591, 14.136918 ], [ 145.132704, 14.136929 ], [ 145.132954, 14.136926 ], [ 145.133106, 14.136903 ], [ 145.133175, 14.136841 ], [ 145.133181, 14.136688 ], [ 145.133094, 14.136563 ], [ 145.132673, 14.136132 ], [ 145.132623, 14.136081 ], [ 145.132584, 14.13599 ], [ 145.132585, 14.135875 ], [ 145.132567, 14.135756 ], [ 145.132523, 14.135655 ], [ 145.132294, 14.135194 ], [ 145.132683, 14.134675 ], [ 145.132896, 14.134419 ], [ 145.132956, 14.134381 ], [ 145.133038, 14.134425 ], [ 145.133062, 14.13455 ], [ 145.133188, 14.13468 ], [ 145.133232, 14.134752 ], [ 145.133153, 14.134823 ], [ 145.133137, 14.134928 ], [ 145.133176, 14.134943 ], [ 145.133196, 14.13489 ], [ 145.133255, 14.134829 ], [ 145.133435, 14.135055 ], [ 145.133579, 14.135352 ], [ 145.133627, 14.135582 ], [ 145.133762, 14.135851 ], [ 145.133816, 14.135847 ], [ 145.133846, 14.135873 ], [ 145.134041, 14.136042 ], [ 145.134088, 14.136083 ], [ 145.134186, 14.136108 ], [ 145.134274, 14.136156 ], [ 145.134371, 14.136267 ], [ 145.134405, 14.136325 ], [ 145.13438, 14.136358 ], [ 145.134365, 14.136411 ], [ 145.134509, 14.136534 ], [ 145.134652, 14.136657 ], [ 145.13473, 14.136676 ], [ 145.134862, 14.136735 ], [ 145.134901, 14.136812 ], [ 145.135071, 14.136976 ], [ 145.135236, 14.137106 ], [ 145.135387, 14.137212 ], [ 145.135484, 14.137371 ], [ 145.135503, 14.137424 ], [ 145.135576, 14.137472 ], [ 145.135649, 14.137535 ], [ 145.135737, 14.137569 ], [ 145.135946, 14.137795 ], [ 145.136029, 14.137834 ], [ 145.136269, 14.137917 ], [ 145.136391, 14.137928 ], [ 145.13644, 14.137952 ], [ 145.136484, 14.137934 ], [ 145.136553, 14.137953 ], [ 145.136557, 14.138001 ], [ 145.136674, 14.138126 ], [ 145.136762, 14.138146 ], [ 145.136908, 14.138305 ], [ 145.137131, 14.13856 ], [ 145.137408, 14.138892 ], [ 145.137635, 14.139238 ], [ 145.137742, 14.139383 ], [ 145.138042, 14.139835 ], [ 145.138183, 14.139974 ], [ 145.138353, 14.140191 ], [ 145.138464, 14.140311 ], [ 145.138537, 14.140417 ], [ 145.138789, 14.140621 ], [ 145.138883, 14.140697 ], [ 145.139151, 14.140891 ], [ 145.139238, 14.141001 ], [ 145.139223, 14.141059 ], [ 145.139286, 14.141093 ], [ 145.13933, 14.141131 ], [ 145.139315, 14.141188 ], [ 145.139275, 14.141245 ], [ 145.13928, 14.141289 ], [ 145.13925, 14.14136 ], [ 145.139293, 14.141413 ], [ 145.139362, 14.141414 ], [ 145.13945, 14.141433 ], [ 145.139577, 14.141544 ], [ 145.139683, 14.141679 ], [ 145.139678, 14.14177 ], [ 145.139691, 14.14189 ], [ 145.13975, 14.141919 ], [ 145.139844, 14.141862 ], [ 145.139937, 14.141872 ], [ 145.140019, 14.14193 ], [ 145.140073, 14.141959 ], [ 145.140127, 14.14195 ], [ 145.14014, 14.141995 ], [ 145.140155, 14.142084 ], [ 145.140188, 14.14212 ], [ 145.140221, 14.142154 ], [ 145.140251, 14.14218 ], [ 145.140267, 14.142194 ], [ 145.140296, 14.142219 ], [ 145.140311, 14.142272 ], [ 145.140354, 14.142354 ], [ 145.140378, 14.142416 ], [ 145.140419, 14.14244 ], [ 145.140437, 14.14245 ], [ 145.140525, 14.142475 ], [ 145.140559, 14.142532 ], [ 145.140622, 14.142547 ], [ 145.140676, 14.142591 ], [ 145.140695, 14.142677 ], [ 145.140743, 14.14272 ], [ 145.140743, 14.142768 ], [ 145.140782, 14.142797 ], [ 145.140825, 14.142869 ], [ 145.140913, 14.142979 ], [ 145.14099, 14.143076 ], [ 145.141078, 14.14312 ], [ 145.141102, 14.143153 ], [ 145.141209, 14.143312 ], [ 145.141287, 14.143404 ], [ 145.141375, 14.143423 ], [ 145.141503, 14.143534 ], [ 145.14151, 14.143601 ], [ 145.141759, 14.14378 ], [ 145.14191, 14.143844 ], [ 145.142231, 14.144186 ], [ 145.142329, 14.144239 ], [ 145.142401, 14.144393 ], [ 145.142469, 14.144732 ], [ 145.142517, 14.145006 ], [ 145.142609, 14.145059 ], [ 145.142634, 14.145307 ], [ 145.142685, 14.145495 ], [ 145.14267, 14.145667 ], [ 145.142611, 14.145727 ], [ 145.142624, 14.145915 ], [ 145.142731, 14.145992 ], [ 145.142998, 14.145991 ], [ 145.143082, 14.145957 ], [ 145.143234, 14.146188 ], [ 145.143372, 14.146479 ], [ 145.143449, 14.146635 ], [ 145.143455, 14.146675 ], [ 145.143492, 14.146763 ], [ 145.143563, 14.1471 ], [ 145.143716, 14.147586 ], [ 145.143982, 14.148432 ], [ 145.144363, 14.149219 ], [ 145.144836, 14.150222 ], [ 145.145322, 14.151001 ], [ 145.145611, 14.151653 ], [ 145.146079, 14.151968 ], [ 145.146286, 14.152457 ], [ 145.146535, 14.152478 ], [ 145.147082, 14.152812 ], [ 145.147363, 14.153123 ], [ 145.147427, 14.15315 ], [ 145.14751, 14.153232 ], [ 145.147588, 14.15328 ], [ 145.147636, 14.153333 ], [ 145.147679, 14.153424 ], [ 145.147728, 14.153506 ], [ 145.147791, 14.153583 ], [ 145.147874, 14.153627 ], [ 145.147902, 14.153732 ], [ 145.147902, 14.153809 ], [ 145.147946, 14.153838 ], [ 145.14797, 14.153924 ], [ 145.147979, 14.153981 ], [ 145.148111, 14.154064 ], [ 145.148169, 14.154165 ], [ 145.148222, 14.154218 ], [ 145.148345, 14.154209 ], [ 145.148438, 14.154234 ], [ 145.148496, 14.154306 ], [ 145.148495, 14.154382 ], [ 145.148534, 14.154421 ], [ 145.148543, 14.154502 ], [ 145.148567, 14.154565 ], [ 145.148645, 14.154651 ], [ 145.148684, 14.154723 ], [ 145.148747, 14.154743 ], [ 145.148805, 14.154849 ], [ 145.148859, 14.154844 ], [ 145.148883, 14.154931 ], [ 145.148907, 14.154979 ], [ 145.148961, 14.154993 ], [ 145.148999, 14.155085 ], [ 145.149004, 14.155132 ], [ 145.149111, 14.155248 ], [ 145.149179, 14.155306 ], [ 145.149252, 14.155326 ], [ 145.149295, 14.155422 ], [ 145.149334, 14.155527 ], [ 145.149402, 14.155532 ], [ 145.149485, 14.1556 ], [ 145.149583, 14.155649 ], [ 145.149626, 14.155716 ], [ 145.14968, 14.155788 ], [ 145.149797, 14.155851 ], [ 145.149836, 14.155866 ], [ 145.149874, 14.155966 ], [ 145.149933, 14.156015 ], [ 145.149961, 14.156091 ], [ 145.150049, 14.156154 ], [ 145.150088, 14.156217 ], [ 145.150077, 14.156303 ], [ 145.150175, 14.156375 ], [ 145.150258, 14.156419 ], [ 145.15037, 14.156458 ], [ 145.150409, 14.156511 ], [ 145.150482, 14.156559 ], [ 145.150604, 14.156603 ], [ 145.150628, 14.156651 ], [ 145.150633, 14.156709 ], [ 145.150627, 14.156771 ], [ 145.15071, 14.156848 ], [ 145.150769, 14.156877 ], [ 145.150798, 14.156916 ], [ 145.150816, 14.156982 ], [ 145.150831, 14.157036 ], [ 145.150938, 14.157132 ], [ 145.150972, 14.157214 ], [ 145.151084, 14.157277 ], [ 145.151133, 14.157282 ], [ 145.151162, 14.157339 ], [ 145.15122, 14.157479 ], [ 145.151351, 14.157613 ], [ 145.151444, 14.157633 ], [ 145.151492, 14.157696 ], [ 145.15158, 14.157787 ], [ 145.151633, 14.157855 ], [ 145.151701, 14.157894 ], [ 145.151809, 14.157942 ], [ 145.151832, 14.158086 ], [ 145.151896, 14.158086 ], [ 145.151993, 14.158159 ], [ 145.152037, 14.158245 ], [ 145.152115, 14.158318 ], [ 145.152178, 14.158366 ], [ 145.152246, 14.158429 ], [ 145.152323, 14.158606 ], [ 145.152415, 14.158702 ], [ 145.152538, 14.158703 ], [ 145.152656, 14.158666 ], [ 145.152729, 14.158743 ], [ 145.152826, 14.15882 ], [ 145.152943, 14.15897 ], [ 145.153165, 14.159311 ], [ 145.153214, 14.159345 ], [ 145.153258, 14.15935 ], [ 145.153297, 14.159422 ], [ 145.153347, 14.159447 ], [ 145.15345, 14.159576 ], [ 145.15352, 14.159621 ], [ 145.153499, 14.159733 ], [ 145.153531, 14.15977 ], [ 145.153601, 14.15975 ], [ 145.153646, 14.159839 ], [ 145.15367, 14.159871 ], [ 145.153753, 14.159872 ], [ 145.153813, 14.160009 ], [ 145.153892, 14.160056 ], [ 145.153919, 14.160161 ], [ 145.153962, 14.160192 ], [ 145.15407, 14.160202 ], [ 145.154122, 14.160256 ], [ 145.154146, 14.160347 ], [ 145.154204, 14.160414 ], [ 145.154222, 14.160471 ], [ 145.154265, 14.16048 ], [ 145.154305, 14.160541 ], [ 145.15436, 14.160602 ], [ 145.15444, 14.160678 ], [ 145.154498, 14.160714 ], [ 145.154563, 14.160809 ], [ 145.154567, 14.160894 ], [ 145.154639, 14.160951 ], [ 145.154735, 14.160994 ], [ 145.154807, 14.161084 ], [ 145.154874, 14.161151 ], [ 145.154936, 14.161194 ], [ 145.155004, 14.161218 ], [ 145.155037, 14.161317 ], [ 145.15507, 14.161402 ], [ 145.155118, 14.161402 ], [ 145.15519, 14.161431 ], [ 145.155233, 14.161544 ], [ 145.155305, 14.161611 ], [ 145.155357, 14.1617 ], [ 145.155448, 14.161758 ], [ 145.155588, 14.161811 ], [ 145.155616, 14.161886 ], [ 145.155664, 14.161962 ], [ 145.155788, 14.162109 ], [ 145.155826, 14.162194 ], [ 145.156046, 14.16237 ], [ 145.156324, 14.162598 ], [ 145.156401, 14.162669 ], [ 145.156487, 14.162768 ], [ 145.156578, 14.162854 ], [ 145.156664, 14.162949 ], [ 145.156789, 14.162964 ], [ 145.156871, 14.163059 ], [ 145.156879, 14.163158 ], [ 145.15699, 14.163205 ], [ 145.157062, 14.163286 ], [ 145.157129, 14.163385 ], [ 145.157259, 14.163424 ], [ 145.15744, 14.163431 ], [ 145.157316, 14.163519 ], [ 145.157414, 14.163622 ], [ 145.157377, 14.163722 ], [ 145.157535, 14.163757 ], [ 145.157683, 14.16372 ], [ 145.157773, 14.163659 ], [ 145.157859, 14.163711 ], [ 145.15781, 14.163805 ], [ 145.157906, 14.163909 ], [ 145.157905, 14.163994 ], [ 145.157977, 14.164046 ], [ 145.158079, 14.164042 ], [ 145.158237, 14.164091 ], [ 145.158299, 14.164199 ], [ 145.158332, 14.164346 ], [ 145.158215, 14.164551 ], [ 145.157869, 14.164955 ], [ 145.157897, 14.165132 ], [ 145.158028, 14.165248 ], [ 145.157918, 14.165364 ], [ 145.157999, 14.165534 ], [ 145.158108, 14.165612 ], [ 145.15813, 14.165918 ], [ 145.158133, 14.166153 ], [ 145.158151, 14.166392 ], [ 145.158218, 14.166584 ], [ 145.158293, 14.166751 ], [ 145.158446, 14.166868 ], [ 145.158494, 14.166969 ], [ 145.158518, 14.167049 ], [ 145.15856, 14.167116 ], [ 145.158723, 14.167181 ], [ 145.158829, 14.167297 ], [ 145.158896, 14.167443 ], [ 145.158996, 14.16759 ], [ 145.15912, 14.167723 ], [ 145.159293, 14.167851 ], [ 145.159408, 14.167951 ], [ 145.159845, 14.168218 ], [ 145.159931, 14.168232 ], [ 145.15996, 14.168237 ], [ 145.1601, 14.168281 ], [ 145.160196, 14.168333 ], [ 145.160321, 14.168344 ], [ 145.160668, 14.168426 ], [ 145.160818, 14.168442 ], [ 145.160986, 14.168467 ], [ 145.161116, 14.168519 ], [ 145.161372, 14.168517 ], [ 145.161565, 14.168518 ], [ 145.161724, 14.168529 ], [ 145.161767, 14.168553 ], [ 145.161922, 14.168549 ], [ 145.162201, 14.168589 ], [ 145.162327, 14.168595 ], [ 145.162472, 14.168563 ], [ 145.162635, 14.168573 ], [ 145.162877, 14.168561 ], [ 145.163118, 14.168535 ], [ 145.163249, 14.16854 ], [ 145.163331, 14.168499 ], [ 145.163408, 14.16849 ], [ 145.16348, 14.168547 ], [ 145.16363, 14.168525 ], [ 145.163751, 14.168497 ], [ 145.163813, 14.168559 ], [ 145.163886, 14.168503 ], [ 145.164108, 14.168495 ], [ 145.1643, 14.168548 ], [ 145.16445, 14.168531 ], [ 145.164542, 14.168541 ], [ 145.164575, 14.168612 ], [ 145.164671, 14.168617 ], [ 145.164706, 14.16849 ], [ 145.164894, 14.168468 ], [ 145.164971, 14.168535 ], [ 145.165029, 14.168531 ], [ 145.165044, 14.168446 ], [ 145.165175, 14.168395 ], [ 145.165237, 14.168461 ], [ 145.165363, 14.168444 ], [ 145.165445, 14.168392 ], [ 145.16574, 14.168315 ], [ 145.165895, 14.168302 ], [ 145.165992, 14.168246 ], [ 145.166088, 14.168247 ], [ 145.166223, 14.168262 ], [ 145.16631, 14.168244 ], [ 145.166392, 14.168207 ], [ 145.166532, 14.168184 ], [ 145.166658, 14.168152 ], [ 145.166797, 14.168194 ], [ 145.166914, 14.168117 ], [ 145.167098, 14.168057 ], [ 145.167248, 14.16802 ], [ 145.167397, 14.168026 ], [ 145.16772, 14.168024 ], [ 145.167823, 14.168054 ], [ 145.167895, 14.167987 ], [ 145.168083, 14.167951 ], [ 145.168243, 14.16791 ], [ 145.168465, 14.167888 ], [ 145.168726, 14.167848 ], [ 145.168986, 14.167855 ], [ 145.169099, 14.167853 ], [ 145.169382, 14.167876 ], [ 145.169473, 14.167882 ], [ 145.169604, 14.16785 ], [ 145.169695, 14.167893 ], [ 145.169782, 14.167898 ], [ 145.170048, 14.167872 ], [ 145.170183, 14.167873 ], [ 145.170376, 14.16786 ], [ 145.170428, 14.167848 ], [ 145.170782, 14.167774 ], [ 145.171004, 14.167691 ], [ 145.17127, 14.167641 ], [ 145.171499, 14.167579 ], [ 145.171668, 14.1676 ], [ 145.171856, 14.167587 ], [ 145.172013, 14.167623 ], [ 145.172134, 14.167657 ], [ 145.172242, 14.167748 ], [ 145.172331, 14.167643 ], [ 145.172433, 14.167603 ], [ 145.172588, 14.1676 ], [ 145.172737, 14.167577 ], [ 145.172878, 14.167489 ], [ 145.17299, 14.167381 ], [ 145.173184, 14.167237 ], [ 145.173363, 14.167144 ], [ 145.17335, 14.16705 ], [ 145.17361, 14.167028 ], [ 145.173847, 14.167002 ], [ 145.17402, 14.16705 ], [ 145.174246, 14.167132 ], [ 145.174568, 14.167313 ], [ 145.174775, 14.167348 ], [ 145.174968, 14.167415 ], [ 145.175093, 14.167426 ], [ 145.17518, 14.167422 ], [ 145.175295, 14.167521 ], [ 145.175382, 14.167527 ], [ 145.175463, 14.167664 ], [ 145.175621, 14.167759 ], [ 145.175746, 14.167775 ], [ 145.175863, 14.167919 ], [ 145.176237, 14.168075 ], [ 145.176453, 14.168152 ], [ 145.17668, 14.168182 ], [ 145.176825, 14.168145 ], [ 145.176955, 14.168099 ], [ 145.177095, 14.168109 ], [ 145.177181, 14.168199 ], [ 145.177311, 14.168257 ], [ 145.177426, 14.168319 ], [ 145.177537, 14.168348 ], [ 145.1776, 14.168382 ], [ 145.177725, 14.168364 ], [ 145.177855, 14.168454 ], [ 145.177994, 14.168507 ], [ 145.178153, 14.168579 ], [ 145.178341, 14.168646 ], [ 145.178514, 14.168718 ], [ 145.178672, 14.168818 ], [ 145.178807, 14.16889 ], [ 145.178961, 14.168905 ], [ 145.179076, 14.168981 ], [ 145.179192, 14.169015 ], [ 145.179303, 14.169016 ], [ 145.179404, 14.169026 ], [ 145.179514, 14.169079 ], [ 145.179697, 14.169146 ], [ 145.17988, 14.169227 ], [ 145.18002, 14.169247 ], [ 145.180169, 14.169249 ], [ 145.180261, 14.169301 ], [ 145.180381, 14.169278 ], [ 145.180594, 14.169205 ], [ 145.180807, 14.169154 ], [ 145.181047, 14.169241 ], [ 145.181288, 14.169318 ], [ 145.181442, 14.169409 ], [ 145.181605, 14.169528 ], [ 145.181833, 14.169662 ], [ 145.182083, 14.16976 ], [ 145.182703, 14.170061 ], [ 145.183143, 14.170241 ], [ 145.183651, 14.170374 ], [ 145.184034, 14.170507 ], [ 145.184287, 14.170565 ], [ 145.184566, 14.170611 ], [ 145.18482, 14.170699 ], [ 145.185167, 14.170806 ], [ 145.185374, 14.170854 ], [ 145.185401, 14.170861 ], [ 145.185455, 14.17088 ], [ 145.18546, 14.170914 ], [ 145.185514, 14.171 ], [ 145.185577, 14.171039 ], [ 145.18566, 14.171073 ], [ 145.185738, 14.17115 ], [ 145.185816, 14.171189 ], [ 145.185874, 14.171261 ], [ 145.185972, 14.171315 ], [ 145.186046, 14.171287 ], [ 145.186251, 14.171326 ], [ 145.186344, 14.171322 ], [ 145.186427, 14.171371 ], [ 145.186559, 14.171486 ], [ 145.186613, 14.171458 ], [ 145.186638, 14.171406 ], [ 145.186637, 14.171388 ], [ 145.186666, 14.171383 ], [ 145.186711, 14.171365 ], [ 145.186726, 14.171387 ], [ 145.186716, 14.171473 ], [ 145.186818, 14.171551 ], [ 145.186901, 14.171556 ], [ 145.186921, 14.171527 ], [ 145.187019, 14.171547 ], [ 145.187058, 14.171629 ], [ 145.187175, 14.171649 ], [ 145.187434, 14.171742 ], [ 145.187737, 14.171768 ], [ 145.187888, 14.171868 ], [ 145.188099, 14.171983 ], [ 145.188373, 14.172117 ], [ 145.18871, 14.172265 ], [ 145.188921, 14.172375 ], [ 145.189195, 14.172551 ], [ 145.18944, 14.17269 ], [ 145.189666, 14.172842 ], [ 145.189848, 14.172952 ], [ 145.189946, 14.17302 ], [ 145.189992, 14.173052 ], [ 145.190112, 14.173184 ], [ 145.190284, 14.173308 ], [ 145.190539, 14.173475 ], [ 145.190799, 14.173566 ], [ 145.19101, 14.173667 ], [ 145.191236, 14.173734 ], [ 145.191545, 14.173769 ], [ 145.191767, 14.173776 ], [ 145.192003, 14.173815 ], [ 145.192138, 14.173849 ], [ 145.192534, 14.17387 ], [ 145.192819, 14.173834 ], [ 145.192988, 14.173743 ], [ 145.193162, 14.173702 ], [ 145.193413, 14.173689 ], [ 145.193698, 14.173682 ], [ 145.193929, 14.173703 ], [ 145.194165, 14.173709 ], [ 145.194377, 14.173814 ], [ 145.194536, 14.173849 ], [ 145.194685, 14.173896 ], [ 145.194696, 14.173925 ], [ 145.194686, 14.173958 ], [ 145.194754, 14.17404 ], [ 145.194802, 14.174069 ], [ 145.194994, 14.174061 ], [ 145.195322, 14.174116 ], [ 145.195577, 14.174056 ], [ 145.195915, 14.174044 ], [ 145.196278, 14.174037 ], [ 145.196479, 14.174086 ], [ 145.196737, 14.174256 ], [ 145.197006, 14.174401 ], [ 145.197098, 14.174498 ], [ 145.19722, 14.174613 ], [ 145.197332, 14.174619 ], [ 145.197435, 14.174658 ], [ 145.19738, 14.174744 ], [ 145.197414, 14.174773 ], [ 145.197522, 14.174754 ], [ 145.197634, 14.17487 ], [ 145.198128, 14.17506 ], [ 145.19824, 14.175152 ], [ 145.198475, 14.175192 ], [ 145.198704, 14.175285 ], [ 145.198957, 14.175329 ], [ 145.199421, 14.175472 ], [ 145.19969, 14.175596 ], [ 145.199892, 14.17565 ], [ 145.200099, 14.17567 ], [ 145.200287, 14.175737 ], [ 145.200547, 14.17581 ], [ 145.200793, 14.175896 ], [ 145.201096, 14.175988 ], [ 145.201201, 14.176168 ], [ 145.201301, 14.176296 ], [ 145.201421, 14.176414 ], [ 145.201603, 14.176472 ], [ 145.201754, 14.176398 ], [ 145.201898, 14.176418 ], [ 145.202115, 14.176523 ], [ 145.202263, 14.176637 ], [ 145.202523, 14.176738 ], [ 145.202817, 14.176844 ], [ 145.203245, 14.176946 ], [ 145.203678, 14.177166 ], [ 145.203827, 14.177287 ], [ 145.203874, 14.177404 ], [ 145.203903, 14.177457 ], [ 145.204029, 14.177544 ], [ 145.204225, 14.177574 ], [ 145.204499, 14.177729 ], [ 145.204543, 14.177739 ], [ 145.204573, 14.177849 ], [ 145.204595, 14.177926 ], [ 145.204545, 14.17805 ], [ 145.204539, 14.178188 ], [ 145.204573, 14.178251 ], [ 145.20467, 14.178338 ], [ 145.204723, 14.178429 ], [ 145.204741, 14.178649 ], [ 145.20479, 14.178735 ], [ 145.204828, 14.178903 ], [ 145.204894, 14.179114 ], [ 145.204987, 14.17921 ], [ 145.205074, 14.179369 ], [ 145.205147, 14.179403 ], [ 145.205298, 14.179524 ], [ 145.205376, 14.17961 ], [ 145.205444, 14.17963 ], [ 145.205629, 14.179784 ], [ 145.205683, 14.179823 ], [ 145.20579, 14.179919 ], [ 145.205848, 14.180039 ], [ 145.205985, 14.180069 ], [ 145.206072, 14.180232 ], [ 145.206204, 14.180296 ], [ 145.206257, 14.180377 ], [ 145.206266, 14.180468 ], [ 145.206359, 14.180474 ], [ 145.206573, 14.18069 ], [ 145.20671, 14.180787 ], [ 145.206704, 14.180883 ], [ 145.206728, 14.180955 ], [ 145.206821, 14.18096 ], [ 145.206855, 14.181037 ], [ 145.206874, 14.181094 ], [ 145.206972, 14.181143 ], [ 145.20701, 14.181186 ], [ 145.207147, 14.181269 ], [ 145.207367, 14.181414 ], [ 145.207537, 14.181587 ], [ 145.207761, 14.181699 ], [ 145.207899, 14.181829 ], [ 145.208048, 14.181969 ], [ 145.208253, 14.182076 ], [ 145.208327, 14.182052 ], [ 145.208361, 14.182081 ], [ 145.208317, 14.182119 ], [ 145.208502, 14.182297 ], [ 145.208921, 14.182621 ], [ 145.209291, 14.182863 ], [ 145.209623, 14.183071 ], [ 145.209839, 14.183106 ], [ 145.209956, 14.18315 ], [ 145.210097, 14.183228 ], [ 145.210249, 14.183301 ], [ 145.210316, 14.183411 ], [ 145.210399, 14.183512 ], [ 145.210556, 14.183532 ], [ 145.210634, 14.183581 ], [ 145.210789, 14.183764 ], [ 145.211018, 14.183909 ], [ 145.211218, 14.184073 ], [ 145.211359, 14.184213 ], [ 145.21158, 14.184248 ], [ 145.211726, 14.184278 ], [ 145.212082, 14.184572 ], [ 145.212554, 14.18503 ], [ 145.212749, 14.185141 ], [ 145.212856, 14.185281 ], [ 145.212938, 14.185396 ], [ 145.213148, 14.185565 ], [ 145.21325, 14.18559 ], [ 145.213373, 14.185637 ], [ 145.213507, 14.185737 ], [ 145.213695, 14.185861 ], [ 145.2138, 14.185975 ], [ 145.213886, 14.186107 ], [ 145.214025, 14.186174 ], [ 145.214376, 14.186332 ], [ 145.214861, 14.186642 ], [ 145.21509, 14.186684 ], [ 145.215246, 14.186729 ], [ 145.215412, 14.186859 ], [ 145.215637, 14.186976 ], [ 145.215817, 14.187063 ], [ 145.216022, 14.187194 ], [ 145.216247, 14.187324 ], [ 145.216506, 14.187436 ], [ 145.216725, 14.187596 ], [ 145.21693, 14.187703 ], [ 145.217169, 14.187862 ], [ 145.217393, 14.188046 ], [ 145.217603, 14.188124 ], [ 145.217807, 14.18835 ], [ 145.217983, 14.188499 ], [ 145.218152, 14.188716 ], [ 145.218172, 14.18875 ], [ 145.218165, 14.188769 ], [ 145.21824, 14.188847 ], [ 145.218444, 14.188966 ], [ 145.21868, 14.189113 ], [ 145.218818, 14.189212 ], [ 145.21895, 14.189293 ], [ 145.219052, 14.189371 ], [ 145.219388, 14.189543 ], [ 145.219943, 14.189886 ], [ 145.220064, 14.189888 ], [ 145.220175, 14.190002 ], [ 145.220425, 14.19014 ], [ 145.220613, 14.190192 ], [ 145.220645, 14.190196 ], [ 145.220749, 14.190169 ], [ 145.220808, 14.190236 ], [ 145.220855, 14.190343 ], [ 145.221031, 14.190459 ], [ 145.221105, 14.190542 ], [ 145.221158, 14.190522 ], [ 145.221201, 14.190559 ], [ 145.221294, 14.190619 ], [ 145.221425, 14.190646 ], [ 145.221599, 14.190703 ], [ 145.221715, 14.190762 ], [ 145.221889, 14.190816 ], [ 145.222032, 14.190867 ], [ 145.222157, 14.190903 ], [ 145.222262, 14.19091 ], [ 145.222349, 14.190957 ], [ 145.222477, 14.191075 ], [ 145.222584, 14.19114 ], [ 145.222683, 14.191179 ], [ 145.222814, 14.191215 ], [ 145.222916, 14.191274 ], [ 145.222999, 14.191365 ], [ 145.223119, 14.191343 ], [ 145.223184, 14.191425 ], [ 145.223148, 14.191486 ], [ 145.22333, 14.19154 ], [ 145.223386, 14.191605 ], [ 145.223625, 14.191756 ], [ 145.223724, 14.191756 ], [ 145.223765, 14.191806 ], [ 145.223843, 14.191877 ], [ 145.223911, 14.191907 ], [ 145.223974, 14.191922 ], [ 145.224076, 14.191934 ], [ 145.224181, 14.191956 ], [ 145.224303, 14.192041 ], [ 145.224404, 14.192086 ], [ 145.224533, 14.192157 ], [ 145.224652, 14.192243 ], [ 145.224795, 14.192311 ], [ 145.224875, 14.192385 ], [ 145.224998, 14.192459 ], [ 145.225096, 14.19255 ], [ 145.225254, 14.192621 ], [ 145.225475, 14.192737 ], [ 145.225615, 14.192843 ], [ 145.225815, 14.192938 ], [ 145.22603, 14.19303 ], [ 145.226005, 14.193165 ], [ 145.226004, 14.19327 ], [ 145.226273, 14.193463 ], [ 145.226469, 14.193474 ], [ 145.226628, 14.193535 ], [ 145.226774, 14.193638 ], [ 145.226935, 14.193683 ], [ 145.227115, 14.193716 ], [ 145.227177, 14.193816 ], [ 145.227368, 14.193926 ], [ 145.227472, 14.194 ], [ 145.227561, 14.1941 ], [ 145.227749, 14.194201 ], [ 145.227805, 14.194345 ], [ 145.227918, 14.194459 ], [ 145.228031, 14.194524 ], [ 145.228175, 14.194587 ], [ 145.228264, 14.194649 ], [ 145.2285, 14.194797 ], [ 145.228616, 14.194827 ], [ 145.228754, 14.194877 ], [ 145.228855, 14.194945 ], [ 145.229065, 14.194971 ], [ 145.229246, 14.195044 ], [ 145.229461, 14.195118 ], [ 145.229509, 14.195209 ], [ 145.229715, 14.195317 ], [ 145.229888, 14.195435 ], [ 145.230408, 14.195627 ], [ 145.231171, 14.195891 ], [ 145.231566, 14.196066 ], [ 145.231834, 14.196141 ], [ 145.231948, 14.196174 ], [ 145.232084, 14.196285 ], [ 145.23232, 14.196277 ], [ 145.232673, 14.196376 ], [ 145.23294, 14.196516 ], [ 145.23319, 14.196658 ], [ 145.233433, 14.196831 ], [ 145.233875, 14.19697 ], [ 145.23416, 14.1971 ], [ 145.234454, 14.197316 ], [ 145.234822, 14.197512 ], [ 145.235058, 14.197742 ], [ 145.235701, 14.198287 ], [ 145.236009, 14.198447 ], [ 145.236431, 14.198573 ], [ 145.236635, 14.198667 ], [ 145.236853, 14.19884 ], [ 145.237042, 14.198963 ], [ 145.237239, 14.199036 ], [ 145.237567, 14.199174 ], [ 145.237917, 14.199283 ], [ 145.238201, 14.199428 ], [ 145.238493, 14.199544 ], [ 145.238814, 14.199644 ], [ 145.239062, 14.199756 ], [ 145.239318, 14.199757 ], [ 145.239685, 14.19978 ], [ 145.240116, 14.199864 ], [ 145.240463, 14.200005 ], [ 145.240801, 14.20006 ], [ 145.24104, 14.200163 ], [ 145.241319, 14.20026 ], [ 145.241672, 14.200253 ], [ 145.241814, 14.200254 ], [ 145.241946, 14.200236 ], [ 145.242784, 14.2003 ], [ 145.243691, 14.200278 ], [ 145.244318, 14.200293 ], [ 145.24451, 14.200298 ], [ 145.245244, 14.200347 ], [ 145.245418, 14.200359 ], [ 145.245838, 14.200319 ], [ 145.246394, 14.200309 ], [ 145.246833, 14.200319 ], [ 145.247089, 14.200335 ], [ 145.2475, 14.200239 ], [ 145.248026, 14.200242 ], [ 145.248634, 14.200133 ], [ 145.248956, 14.200149 ], [ 145.249381, 14.200081 ], [ 145.249813, 14.199991 ], [ 145.250369, 14.200003 ], [ 145.250947, 14.199971 ], [ 145.25124, 14.199952 ], [ 145.251496, 14.199947 ], [ 145.251628, 14.199862 ], [ 145.251869, 14.199907 ], [ 145.252019, 14.199875 ], [ 145.252402, 14.199725 ], [ 145.252638, 14.199741 ], [ 145.253004, 14.199715 ], [ 145.253297, 14.199717 ], [ 145.254051, 14.199687 ], [ 145.254674, 14.199442 ], [ 145.255231, 14.199382 ], [ 145.255991, 14.199359 ], [ 145.256547, 14.199348 ], [ 145.257258, 14.199268 ], [ 145.257997, 14.199131 ], [ 145.258883, 14.199094 ], [ 145.259592, 14.199114 ], [ 145.260163, 14.199111 ], [ 145.260609, 14.199092 ], [ 145.261011, 14.199095 ], [ 145.261311, 14.199112 ], [ 145.261429, 14.199113 ], [ 145.261589, 14.199114 ], [ 145.261919, 14.199059 ], [ 145.262329, 14.198984 ], [ 145.262659, 14.198872 ], [ 145.263084, 14.198739 ], [ 145.263444, 14.198621 ], [ 145.26384, 14.198467 ], [ 145.264347, 14.198156 ], [ 145.264882, 14.197939 ], [ 145.265301, 14.197763 ], [ 145.26566, 14.197602 ], [ 145.26602, 14.197462 ], [ 145.266153, 14.197341 ], [ 145.266526, 14.197323 ], [ 145.266759, 14.197374 ], [ 145.266982, 14.19739 ], [ 145.267088, 14.197398 ], [ 145.267506, 14.197344 ], [ 145.267733, 14.197332 ], [ 145.26796, 14.19729 ], [ 145.268069, 14.197323 ], [ 145.268172, 14.197299 ], [ 145.268355, 14.197236 ], [ 145.26856, 14.197259 ], [ 145.268755, 14.197309 ], [ 145.268911, 14.197233 ], [ 145.269167, 14.197228 ], [ 145.269335, 14.197307 ], [ 145.269474, 14.197301 ], [ 145.269643, 14.197243 ], [ 145.269825, 14.197247 ], [ 145.270037, 14.197284 ], [ 145.270257, 14.197257 ], [ 145.270542, 14.197245 ], [ 145.270828, 14.197118 ], [ 145.271019, 14.197013 ], [ 145.271253, 14.197029 ], [ 145.271487, 14.197023 ], [ 145.271692, 14.197046 ], [ 145.271978, 14.196963 ], [ 145.27222, 14.196921 ], [ 145.272484, 14.196831 ], [ 145.272628, 14.196734 ], [ 145.272732, 14.196606 ], [ 145.272845, 14.196484 ], [ 145.273056, 14.196455 ], [ 145.273328, 14.19643 ], [ 145.273723, 14.196411 ], [ 145.273935, 14.196377 ], [ 145.274053, 14.196335 ], [ 145.274148, 14.19635 ], [ 145.274257, 14.196387 ], [ 145.274391, 14.196331 ], [ 145.274484, 14.19636 ], [ 145.274647, 14.196356 ], [ 145.274735, 14.196313 ], [ 145.274832, 14.196331 ], [ 145.274929, 14.196331 ], [ 145.275073, 14.196235 ], [ 145.275184, 14.196222 ], [ 145.275281, 14.196222 ], [ 145.275378, 14.19624 ], [ 145.275474, 14.196267 ], [ 145.275571, 14.196259 ], [ 145.275659, 14.196216 ], [ 145.275739, 14.196165 ], [ 145.275827, 14.196123 ], [ 145.275933, 14.196098 ], [ 145.276012, 14.196047 ], [ 145.276083, 14.195988 ], [ 145.276145, 14.19592 ], [ 145.276233, 14.195886 ], [ 145.276313, 14.195835 ], [ 145.27642, 14.195681 ], [ 145.276499, 14.19563 ], [ 145.276587, 14.195597 ], [ 145.276658, 14.195537 ], [ 145.276738, 14.195486 ], [ 145.277028, 14.195411 ], [ 145.277117, 14.195378 ], [ 145.277205, 14.195335 ], [ 145.277293, 14.195302 ], [ 145.277364, 14.195242 ], [ 145.27736, 14.195175 ], [ 145.277443, 14.195191 ], [ 145.27754, 14.195166 ], [ 145.277585, 14.195081 ], [ 145.277553, 14.195029 ], [ 145.277718, 14.194953 ], [ 145.277806, 14.194919 ], [ 145.277886, 14.194868 ], [ 145.277921, 14.194783 ], [ 145.278115, 14.194733 ], [ 145.278212, 14.194733 ], [ 145.278335, 14.194717 ], [ 145.278432, 14.194735 ], [ 145.278519, 14.19477 ], [ 145.278589, 14.19483 ], [ 145.278616, 14.194736 ], [ 145.278696, 14.194685 ], [ 145.278793, 14.194695 ], [ 145.278889, 14.194695 ], [ 145.278986, 14.194679 ], [ 145.279083, 14.19468 ], [ 145.279171, 14.194646 ], [ 145.279207, 14.19456 ], [ 145.279295, 14.194527 ], [ 145.279392, 14.194553 ], [ 145.279479, 14.194597 ], [ 145.279558, 14.194649 ], [ 145.279663, 14.194661 ], [ 145.279776, 14.194662 ], [ 145.27983, 14.194745 ], [ 145.279927, 14.194754 ], [ 145.280006, 14.194703 ], [ 145.2802, 14.19467 ], [ 145.280297, 14.194663 ], [ 145.280385, 14.194629 ], [ 145.280464, 14.194578 ], [ 145.280553, 14.194536 ], [ 145.280746, 14.194503 ], [ 145.280826, 14.194452 ], [ 145.280923, 14.194427 ], [ 145.281019, 14.194428 ], [ 145.281116, 14.194471 ], [ 145.281212, 14.194489 ], [ 145.281283, 14.194429 ], [ 145.281337, 14.194353 ], [ 145.281407, 14.194293 ], [ 145.281504, 14.194268 ], [ 145.281601, 14.19426 ], [ 145.281689, 14.194226 ], [ 145.281786, 14.194201 ], [ 145.281813, 14.194107 ], [ 145.281884, 14.194048 ], [ 145.281929, 14.193962 ], [ 145.282025, 14.193972 ], [ 145.282218, 14.194024 ], [ 145.282315, 14.194034 ], [ 145.282403, 14.193983 ], [ 145.2825, 14.193958 ], [ 145.282597, 14.19395 ], [ 145.282685, 14.193985 ], [ 145.282782, 14.19396 ], [ 145.28287, 14.193926 ], [ 145.282966, 14.193961 ], [ 145.283036, 14.194022 ], [ 145.28308, 14.194039 ], [ 145.283119, 14.194055 ], [ 145.28315, 14.194134 ], [ 145.283247, 14.194109 ], [ 145.283335, 14.194075 ], [ 145.283423, 14.194033 ], [ 145.28352, 14.194025 ], [ 145.283617, 14.194034 ], [ 145.283687, 14.193975 ], [ 145.283846, 14.193873 ], [ 145.283808, 14.193782 ], [ 145.283793, 14.193725 ], [ 145.283897, 14.193644 ], [ 145.284033, 14.1936 ], [ 145.28413, 14.193575 ], [ 145.284227, 14.193558 ], [ 145.284324, 14.193559 ], [ 145.28442, 14.193551 ], [ 145.284509, 14.193517 ], [ 145.284702, 14.193467 ], [ 145.284791, 14.193434 ], [ 145.284967, 14.193349 ], [ 145.285144, 14.193282 ], [ 145.285337, 14.193232 ], [ 145.285426, 14.193198 ], [ 145.285522, 14.193173 ], [ 145.285611, 14.193139 ], [ 145.285708, 14.193114 ], [ 145.285884, 14.19303 ], [ 145.285964, 14.192979 ], [ 145.286061, 14.192937 ], [ 145.286149, 14.192886 ], [ 145.286202, 14.19286 ], [ 145.286246, 14.192844 ], [ 145.286326, 14.192784 ], [ 145.286414, 14.192742 ], [ 145.286493, 14.192691 ], [ 145.286582, 14.192657 ], [ 145.286661, 14.192606 ], [ 145.286758, 14.192573 ], [ 145.286838, 14.192522 ], [ 145.28697, 14.19248 ], [ 145.287058, 14.192446 ], [ 145.287235, 14.192362 ], [ 145.287314, 14.192311 ], [ 145.287411, 14.192286 ], [ 145.287596, 14.192218 ], [ 145.287729, 14.192142 ], [ 145.287817, 14.192108 ], [ 145.288213, 14.192008 ], [ 145.2883, 14.191976 ], [ 145.288416, 14.191941 ], [ 145.288575, 14.191839 ], [ 145.288646, 14.19178 ], [ 145.288725, 14.191729 ], [ 145.288796, 14.191669 ], [ 145.288876, 14.191618 ], [ 145.288947, 14.19155 ], [ 145.289, 14.191473 ], [ 145.289045, 14.191388 ], [ 145.289098, 14.191311 ], [ 145.289134, 14.191226 ], [ 145.289205, 14.19114 ], [ 145.289267, 14.191072 ], [ 145.289311, 14.190987 ], [ 145.289418, 14.190833 ], [ 145.289463, 14.190747 ], [ 145.289516, 14.190662 ], [ 145.289578, 14.190585 ], [ 145.289623, 14.1905 ], [ 145.289659, 14.190414 ], [ 145.289765, 14.190261 ], [ 145.289837, 14.190081 ], [ 145.289908, 14.189953 ], [ 145.289962, 14.189876 ], [ 145.289989, 14.189765 ], [ 145.289954, 14.189679 ], [ 145.290043, 14.189645 ], [ 145.290139, 14.189628 ], [ 145.290273, 14.189441 ], [ 145.290273, 14.189346 ], [ 145.290186, 14.189311 ], [ 145.290151, 14.189225 ], [ 145.290178, 14.189131 ], [ 145.290232, 14.189054 ], [ 145.290276, 14.188969 ], [ 145.290312, 14.188883 ], [ 145.290339, 14.18878 ], [ 145.290366, 14.188695 ], [ 145.290428, 14.188627 ], [ 145.290367, 14.188558 ], [ 145.290342, 14.188463 ], [ 145.290377, 14.188378 ], [ 145.290448, 14.188309 ], [ 145.290484, 14.188224 ], [ 145.290476, 14.188129 ], [ 145.290442, 14.188026 ], [ 145.290451, 14.187932 ], [ 145.290453, 14.187743 ], [ 145.290427, 14.187649 ], [ 145.290254, 14.187218 ], [ 145.290229, 14.187107 ], [ 145.290203, 14.187012 ], [ 145.29016, 14.186926 ], [ 145.290125, 14.18684 ], [ 145.290099, 14.186745 ], [ 145.290083, 14.186548 ], [ 145.29005, 14.186359 ], [ 145.290024, 14.186264 ], [ 145.289972, 14.186144 ], [ 145.289929, 14.186058 ], [ 145.289859, 14.185989 ], [ 145.289798, 14.185911 ], [ 145.289763, 14.185825 ], [ 145.289711, 14.185747 ], [ 145.28965, 14.18567 ], [ 145.289598, 14.185592 ], [ 145.289537, 14.185523 ], [ 145.289511, 14.185429 ], [ 145.289459, 14.185351 ], [ 145.289416, 14.185256 ], [ 145.289364, 14.18517 ], [ 145.289295, 14.18499 ], [ 145.289269, 14.184895 ], [ 145.289235, 14.184809 ], [ 145.289183, 14.184723 ], [ 145.289139, 14.184637 ], [ 145.289017, 14.184499 ], [ 145.288947, 14.184438 ], [ 145.288913, 14.184352 ], [ 145.288808, 14.184197 ], [ 145.288704, 14.183982 ], [ 145.28867, 14.183887 ], [ 145.288618, 14.183801 ], [ 145.288557, 14.183723 ], [ 145.288487, 14.183663 ], [ 145.288426, 14.183593 ], [ 145.288374, 14.183516 ], [ 145.288313, 14.183438 ], [ 145.288209, 14.18318 ], [ 145.288131, 14.183077 ], [ 145.28807, 14.183008 ], [ 145.287957, 14.182818 ], [ 145.287905, 14.18274 ], [ 145.287844, 14.182671 ], [ 145.287792, 14.182594 ], [ 145.287748, 14.182508 ], [ 145.287696, 14.18243 ], [ 145.287653, 14.182344 ], [ 145.287618, 14.182258 ], [ 145.287548, 14.182197 ], [ 145.287444, 14.182042 ], [ 145.287401, 14.181956 ], [ 145.28734, 14.181887 ], [ 145.287261, 14.181835 ], [ 145.287164, 14.181809 ], [ 145.28713, 14.181723 ], [ 145.287096, 14.181534 ], [ 145.287062, 14.181447 ], [ 145.287, 14.181378 ], [ 145.28694, 14.181301 ], [ 145.28687, 14.181232 ], [ 145.286844, 14.181137 ], [ 145.286775, 14.180956 ], [ 145.286689, 14.18075 ], [ 145.286636, 14.180672 ], [ 145.286567, 14.180612 ], [ 145.286462, 14.180457 ], [ 145.286401, 14.180388 ], [ 145.286271, 14.180129 ], [ 145.286219, 14.180052 ], [ 145.286149, 14.179991 ], [ 145.286027, 14.179853 ], [ 145.285905, 14.179732 ], [ 145.285853, 14.179654 ], [ 145.285757, 14.179474 ], [ 145.285705, 14.179387 ], [ 145.285575, 14.179129 ], [ 145.285479, 14.17912 ], [ 145.285382, 14.179145 ], [ 145.285338, 14.179059 ], [ 145.285366, 14.178965 ], [ 145.285376, 14.178784 ], [ 145.285341, 14.178698 ], [ 145.285315, 14.178604 ], [ 145.285281, 14.178518 ], [ 145.285264, 14.178423 ], [ 145.28523, 14.178337 ], [ 145.285213, 14.178243 ], [ 145.285178, 14.178122 ], [ 145.285144, 14.178028 ], [ 145.285101, 14.17789 ], [ 145.285066, 14.177804 ], [ 145.284998, 14.177563 ], [ 145.284981, 14.177426 ], [ 145.284956, 14.177332 ], [ 145.284912, 14.177237 ], [ 145.284878, 14.177151 ], [ 145.28487, 14.177056 ], [ 145.284871, 14.176962 ], [ 145.284854, 14.176868 ], [ 145.284811, 14.176756 ], [ 145.284794, 14.176661 ], [ 145.284725, 14.176489 ], [ 145.284699, 14.176395 ], [ 145.284647, 14.176291 ], [ 145.28463, 14.176197 ], [ 145.284604, 14.176102 ], [ 145.284524, 14.176081 ], [ 145.284442, 14.175956 ], [ 145.284565, 14.175823 ], [ 145.284478, 14.175689 ], [ 145.284388, 14.175637 ], [ 145.284345, 14.175543 ], [ 145.28431, 14.175448 ], [ 145.28429, 14.175338 ], [ 145.284329, 14.175277 ], [ 145.284345, 14.1752 ], [ 145.284325, 14.175138 ], [ 145.284292, 14.175066 ], [ 145.284307, 14.174985 ], [ 145.284306, 14.174916 ], [ 145.284324, 14.174822 ], [ 145.284351, 14.174771 ], [ 145.28436, 14.174719 ], [ 145.28428, 14.174688 ], [ 145.284238, 14.174598 ], [ 145.284185, 14.174521 ], [ 145.284177, 14.174426 ], [ 145.284231, 14.174349 ], [ 145.284249, 14.174255 ], [ 145.284214, 14.174169 ], [ 145.284215, 14.174075 ], [ 145.284225, 14.17398 ], [ 145.284173, 14.173894 ], [ 145.284103, 14.173825 ], [ 145.284086, 14.173696 ], [ 145.284113, 14.173602 ], [ 145.284167, 14.173525 ], [ 145.284185, 14.173431 ], [ 145.284238, 14.173354 ], [ 145.284309, 14.173295 ], [ 145.284336, 14.1732 ], [ 145.284193, 14.173123 ], [ 145.284175, 14.173018 ], [ 145.284136, 14.172941 ], [ 145.284147, 14.172822 ], [ 145.284074, 14.172726 ], [ 145.283927, 14.172672 ], [ 145.283972, 14.172548 ], [ 145.284105, 14.172563 ], [ 145.284154, 14.172501 ], [ 145.28416, 14.172387 ], [ 145.284174, 14.172352 ], [ 145.284205, 14.172277 ], [ 145.284211, 14.172143 ], [ 145.28424, 14.172029 ], [ 145.284212, 14.171966 ], [ 145.284178, 14.171918 ], [ 145.284159, 14.17187 ], [ 145.284194, 14.171794 ], [ 145.284189, 14.171703 ], [ 145.28418, 14.171626 ], [ 145.284205, 14.171574 ], [ 145.284215, 14.17154 ], [ 145.284206, 14.171483 ], [ 145.284187, 14.171425 ], [ 145.284143, 14.171358 ], [ 145.284148, 14.171296 ], [ 145.284179, 14.171186 ], [ 145.284199, 14.171052 ], [ 145.2842, 14.170938 ], [ 145.284162, 14.170837 ], [ 145.284206, 14.170785 ], [ 145.28426, 14.170742 ], [ 145.284281, 14.170651 ], [ 145.284267, 14.170579 ], [ 145.284258, 14.170455 ], [ 145.284342, 14.170303 ], [ 145.284377, 14.170222 ], [ 145.284415, 14.170152 ], [ 145.284412, 14.170112 ], [ 145.284448, 14.170027 ], [ 145.284457, 14.169933 ], [ 145.284484, 14.169838 ], [ 145.284538, 14.169762 ], [ 145.284617, 14.169702 ], [ 145.284706, 14.169668 ], [ 145.284733, 14.169574 ], [ 145.284708, 14.169291 ], [ 145.284674, 14.169171 ], [ 145.28464, 14.169085 ], [ 145.284596, 14.168998 ], [ 145.284562, 14.168912 ], [ 145.284545, 14.168818 ], [ 145.284537, 14.168706 ], [ 145.284494, 14.16862 ], [ 145.284459, 14.168534 ], [ 145.284442, 14.16844 ], [ 145.284418, 14.168156 ], [ 145.284445, 14.168062 ], [ 145.28449, 14.167977 ], [ 145.284508, 14.167883 ], [ 145.284544, 14.167754 ], [ 145.284525, 14.167535 ], [ 145.28445, 14.167384 ], [ 145.28446, 14.16729 ], [ 145.284443, 14.167196 ], [ 145.284338, 14.167041 ], [ 145.284295, 14.166954 ], [ 145.284295, 14.166927 ], [ 145.284296, 14.16686 ], [ 145.284138, 14.166756 ], [ 145.284178, 14.166652 ], [ 145.284243, 14.166595 ], [ 145.284131, 14.16648 ], [ 145.284057, 14.166436 ], [ 145.283974, 14.166437 ], [ 145.283886, 14.166402 ], [ 145.283768, 14.166453 ], [ 145.283702, 14.166375 ], [ 145.283605, 14.16634 ], [ 145.283553, 14.166404 ], [ 145.283475, 14.16637 ], [ 145.28344, 14.166275 ], [ 145.28353, 14.166184 ], [ 145.283555, 14.166141 ], [ 145.283467, 14.166126 ], [ 145.283406, 14.165987 ], [ 145.28345, 14.165902 ], [ 145.283522, 14.165705 ], [ 145.283558, 14.165619 ], [ 145.283637, 14.165568 ], [ 145.283673, 14.165483 ], [ 145.283744, 14.165423 ], [ 145.283823, 14.165364 ], [ 145.283836, 14.165287 ], [ 145.28391, 14.16523 ], [ 145.284003, 14.16523 ], [ 145.284081, 14.165202 ], [ 145.28416, 14.165179 ], [ 145.284161, 14.16504 ], [ 145.284178, 14.164937 ], [ 145.28417, 14.164843 ], [ 145.284197, 14.164749 ], [ 145.284242, 14.164655 ], [ 145.28426, 14.164561 ], [ 145.284261, 14.164466 ], [ 145.284227, 14.16438 ], [ 145.284193, 14.164183 ], [ 145.284195, 14.164054 ], [ 145.284154, 14.164012 ], [ 145.28414, 14.163935 ], [ 145.28414, 14.163873 ], [ 145.284092, 14.163806 ], [ 145.284083, 14.163734 ], [ 145.284103, 14.163643 ], [ 145.284099, 14.16349 ], [ 145.28409, 14.163394 ], [ 145.284105, 14.163323 ], [ 145.284106, 14.163208 ], [ 145.284068, 14.163036 ], [ 145.28403, 14.16294 ], [ 145.283967, 14.162829 ], [ 145.283943, 14.162767 ], [ 145.28389, 14.162685 ], [ 145.28388, 14.162599 ], [ 145.283729, 14.162483 ], [ 145.28372, 14.162402 ], [ 145.283657, 14.162291 ], [ 145.283594, 14.162233 ], [ 145.283486, 14.162257 ], [ 145.283417, 14.162261 ], [ 145.283379, 14.162175 ], [ 145.283443, 14.162046 ], [ 145.283454, 14.161984 ], [ 145.283435, 14.161898 ], [ 145.283406, 14.16183 ], [ 145.283397, 14.16173 ], [ 145.283397, 14.161677 ], [ 145.283349, 14.16161 ], [ 145.283343, 14.161566 ], [ 145.283281, 14.161525 ], [ 145.28322, 14.161456 ], [ 145.283168, 14.161378 ], [ 145.283107, 14.161309 ], [ 145.283054, 14.161232 ], [ 145.282967, 14.161188 ], [ 145.28287, 14.161162 ], [ 145.282783, 14.161127 ], [ 145.28273, 14.161049 ], [ 145.282731, 14.160955 ], [ 145.282749, 14.160861 ], [ 145.282717, 14.16078 ], [ 145.28268, 14.160775 ], [ 145.282664, 14.160773 ], [ 145.282591, 14.16072 ], [ 145.282616, 14.160634 ], [ 145.282612, 14.160562 ], [ 145.282573, 14.160504 ], [ 145.282504, 14.160456 ], [ 145.282496, 14.160327 ], [ 145.282452, 14.160269 ], [ 145.282393, 14.160235 ], [ 145.282301, 14.16011 ], [ 145.282311, 14.160048 ], [ 145.282287, 14.160034 ], [ 145.282268, 14.159996 ], [ 145.282123, 14.159938 ], [ 145.282114, 14.159915 ], [ 145.282053, 14.159898 ], [ 145.28199, 14.159826 ], [ 145.281956, 14.15972 ], [ 145.281844, 14.159619 ], [ 145.281575, 14.159517 ], [ 145.281409, 14.159463 ], [ 145.28115, 14.159389 ], [ 145.280905, 14.15934 ], [ 145.28049, 14.159126 ], [ 145.280319, 14.159025 ], [ 145.280178, 14.158923 ], [ 145.28007, 14.158927 ], [ 145.280031, 14.158898 ], [ 145.279928, 14.158869 ], [ 145.27983, 14.158863 ], [ 145.279757, 14.158815 ], [ 145.279733, 14.158786 ], [ 145.279532, 14.158756 ], [ 145.279362, 14.158611 ], [ 145.279156, 14.158543 ], [ 145.279035, 14.158437 ], [ 145.278947, 14.158393 ], [ 145.27881, 14.158349 ], [ 145.278537, 14.15817 ], [ 145.278429, 14.158141 ], [ 145.278371, 14.158035 ], [ 145.278185, 14.158019 ], [ 145.278087, 14.157976 ], [ 145.278044, 14.157908 ], [ 145.27804, 14.15788 ], [ 145.277963, 14.157815 ], [ 145.277893, 14.157746 ], [ 145.277814, 14.157694 ], [ 145.277727, 14.157659 ], [ 145.277639, 14.157615 ], [ 145.277543, 14.157597 ], [ 145.277323, 14.157536 ], [ 145.276778, 14.157532 ], [ 145.276681, 14.157523 ], [ 145.276585, 14.157496 ], [ 145.276401, 14.157426 ], [ 145.276313, 14.157383 ], [ 145.276234, 14.157331 ], [ 145.276029, 14.157282 ], [ 145.275972, 14.1572 ], [ 145.275911, 14.157122 ], [ 145.275832, 14.157062 ], [ 145.27578, 14.156976 ], [ 145.27571, 14.156907 ], [ 145.27564, 14.156846 ], [ 145.275553, 14.156785 ], [ 145.275465, 14.15675 ], [ 145.275378, 14.156707 ], [ 145.275299, 14.156646 ], [ 145.27522, 14.156594 ], [ 145.27505, 14.156514 ], [ 145.274962, 14.156461 ], [ 145.274931, 14.156403 ], [ 145.274888, 14.156386 ], [ 145.274791, 14.156377 ], [ 145.274694, 14.156359 ], [ 145.274598, 14.156324 ], [ 145.274519, 14.156272 ], [ 145.274502, 14.156177 ], [ 145.274478, 14.156116 ], [ 145.274327, 14.156117 ], [ 145.274229, 14.156087 ], [ 145.274166, 14.15603 ], [ 145.274157, 14.155881 ], [ 145.273987, 14.155751 ], [ 145.273914, 14.155664 ], [ 145.273812, 14.155525 ], [ 145.2737, 14.155395 ], [ 145.273701, 14.155285 ], [ 145.273682, 14.155237 ], [ 145.273481, 14.155216 ], [ 145.273423, 14.155149 ], [ 145.273408, 14.155091 ], [ 145.27333, 14.155062 ], [ 145.273292, 14.155 ], [ 145.273233, 14.154923 ], [ 145.273166, 14.154798 ], [ 145.27301, 14.154649 ], [ 145.272854, 14.154576 ], [ 145.272776, 14.154503 ], [ 145.272732, 14.154451 ], [ 145.2726, 14.154354 ], [ 145.272498, 14.154262 ], [ 145.272293, 14.15418 ], [ 145.2722, 14.154107 ], [ 145.272078, 14.15402 ], [ 145.272011, 14.153929 ], [ 145.271962, 14.153809 ], [ 145.271831, 14.153707 ], [ 145.271753, 14.153626 ], [ 145.271637, 14.153414 ], [ 145.271369, 14.153159 ], [ 145.271218, 14.153067 ], [ 145.270984, 14.152888 ], [ 145.270667, 14.1527 ], [ 145.270423, 14.15254 ], [ 145.270267, 14.152448 ], [ 145.270155, 14.152337 ], [ 145.269896, 14.152197 ], [ 145.269676, 14.152171 ], [ 145.269402, 14.152107 ], [ 145.269069, 14.152061 ], [ 145.26878, 14.152064 ], [ 145.268668, 14.151992 ], [ 145.268516, 14.151952 ], [ 145.268419, 14.151889 ], [ 145.268238, 14.151821 ], [ 145.268017, 14.151834 ], [ 145.267469, 14.151782 ], [ 145.267086, 14.151765 ], [ 145.266519, 14.152048 ], [ 145.266482, 14.152093 ], [ 145.266166, 14.152233 ], [ 145.266063, 14.152368 ], [ 145.265894, 14.152467 ], [ 145.265687, 14.152665 ], [ 145.265459, 14.152827 ], [ 145.265283, 14.152962 ], [ 145.265121, 14.15311 ], [ 145.264915, 14.15323 ], [ 145.264798, 14.153236 ], [ 145.264673, 14.153343 ], [ 145.264585, 14.153385 ], [ 145.264402, 14.153348 ], [ 145.264299, 14.153418 ], [ 145.264204, 14.153496 ], [ 145.264115, 14.153603 ], [ 145.26402, 14.153688 ], [ 145.263946, 14.153694 ], [ 145.263851, 14.153672 ], [ 145.263794, 14.153572 ], [ 145.26375, 14.153586 ], [ 145.26372, 14.153685 ], [ 145.263712, 14.153757 ], [ 145.263638, 14.153806 ], [ 145.26355, 14.153884 ], [ 145.263499, 14.153919 ], [ 145.263419, 14.153862 ], [ 145.263374, 14.15389 ], [ 145.26341, 14.153961 ], [ 145.263417, 14.154026 ], [ 145.263191, 14.154031 ], [ 145.263133, 14.153945 ], [ 145.263052, 14.153959 ], [ 145.262986, 14.154001 ], [ 145.262942, 14.154058 ], [ 145.262868, 14.154065 ], [ 145.262853, 14.154179 ], [ 145.262743, 14.154256 ], [ 145.26267, 14.15422 ], [ 145.262641, 14.154206 ], [ 145.262642, 14.154084 ], [ 145.262539, 14.154126 ], [ 145.262545, 14.154276 ], [ 145.262486, 14.154354 ], [ 145.262376, 14.154382 ], [ 145.262317, 14.154417 ], [ 145.262244, 14.154381 ], [ 145.262207, 14.154445 ], [ 145.262134, 14.154445 ], [ 145.261915, 14.1544 ], [ 145.261805, 14.154407 ], [ 145.261784, 14.154314 ], [ 145.261689, 14.154342 ], [ 145.261549, 14.154426 ], [ 145.261308, 14.154467 ], [ 145.261161, 14.154538 ], [ 145.261065, 14.15458 ], [ 145.260985, 14.154551 ], [ 145.260772, 14.154656 ], [ 145.260553, 14.154683 ], [ 145.26037, 14.154625 ], [ 145.260349, 14.154553 ], [ 145.260181, 14.154566 ], [ 145.260137, 14.154544 ], [ 145.260027, 14.154608 ], [ 145.259881, 14.154564 ], [ 145.259865, 14.154527 ], [ 145.259605, 14.154533 ], [ 145.259287, 14.154554 ], [ 145.258889, 14.154618 ], [ 145.258678, 14.154674 ], [ 145.258153, 14.15469 ], [ 145.258132, 14.154685 ], [ 145.25811, 14.154715 ], [ 145.257988, 14.154695 ], [ 145.257968, 14.154684 ], [ 145.257737, 14.154691 ], [ 145.257506, 14.154694 ], [ 145.257438, 14.154622 ], [ 145.257262, 14.154664 ], [ 145.256997, 14.154605 ], [ 145.25688, 14.154546 ], [ 145.256698, 14.154626 ], [ 145.256502, 14.154601 ], [ 145.256243, 14.15458 ], [ 145.256077, 14.154497 ], [ 145.255748, 14.154543 ], [ 145.255473, 14.154598 ], [ 145.255126, 14.154579 ], [ 145.255081, 14.154576 ], [ 145.2549, 14.154575 ], [ 145.254625, 14.154583 ], [ 145.254434, 14.154615 ], [ 145.254223, 14.154584 ], [ 145.254062, 14.15455 ], [ 145.253895, 14.154568 ], [ 145.25367, 14.154547 ], [ 145.253406, 14.15443 ], [ 145.253229, 14.154429 ], [ 145.252985, 14.15436 ], [ 145.252755, 14.154287 ], [ 145.252598, 14.154281 ], [ 145.252583, 14.154348 ], [ 145.252578, 14.154429 ], [ 145.252445, 14.154428 ], [ 145.252309, 14.15436 ], [ 145.252128, 14.154258 ], [ 145.251913, 14.154171 ], [ 145.251796, 14.154108 ], [ 145.251591, 14.153963 ], [ 145.251171, 14.153749 ], [ 145.251055, 14.153614 ], [ 145.250845, 14.153517 ], [ 145.250704, 14.153311 ], [ 145.250431, 14.153122 ], [ 145.250172, 14.153048 ], [ 145.250138, 14.152991 ], [ 145.250006, 14.152966 ], [ 145.249918, 14.15285 ], [ 145.249742, 14.152787 ], [ 145.24967, 14.152691 ], [ 145.249537, 14.152676 ], [ 145.249239, 14.152635 ], [ 145.249215, 14.152623 ], [ 145.249083, 14.152557 ], [ 145.248951, 14.152513 ], [ 145.248906, 14.152561 ], [ 145.248724, 14.152603 ], [ 145.248553, 14.152592 ], [ 145.248401, 14.152639 ], [ 145.248219, 14.152623 ], [ 145.248078, 14.152588 ], [ 145.247906, 14.152616 ], [ 145.247597, 14.152547 ], [ 145.247456, 14.152488 ], [ 145.247318, 14.152525 ], [ 145.247181, 14.152577 ], [ 145.247049, 14.152538 ], [ 145.246892, 14.152551 ], [ 145.246774, 14.152536 ], [ 145.246662, 14.152506 ], [ 145.246578, 14.152501 ], [ 145.246456, 14.152471 ], [ 145.246324, 14.152456 ], [ 145.246119, 14.152368 ], [ 145.246006, 14.152315 ], [ 145.245894, 14.152276 ], [ 145.245758, 14.152151 ], [ 145.245666, 14.152006 ], [ 145.245543, 14.151962 ], [ 145.245421, 14.151942 ], [ 145.245293, 14.151985 ], [ 145.245136, 14.152012 ], [ 145.244985, 14.151982 ], [ 145.244951, 14.151972 ], [ 145.244821, 14.151971 ], [ 145.244725, 14.152027 ], [ 145.244637, 14.152084 ], [ 145.244534, 14.152126 ], [ 145.244388, 14.152139 ], [ 145.2443, 14.152088 ], [ 145.244227, 14.152116 ], [ 145.244176, 14.152059 ], [ 145.244089, 14.152015 ], [ 145.244016, 14.151965 ], [ 145.243951, 14.151915 ], [ 145.243863, 14.1519 ], [ 145.243776, 14.151863 ], [ 145.243717, 14.151849 ], [ 145.243717, 14.151927 ], [ 145.243658, 14.151962 ], [ 145.243526, 14.151969 ], [ 145.243446, 14.151989 ], [ 145.243401, 14.15201 ], [ 145.243364, 14.152117 ], [ 145.243297, 14.152103 ], [ 145.243203, 14.152126 ], [ 145.243081, 14.152047 ], [ 145.243026, 14.152065 ], [ 145.242946, 14.15213 ], [ 145.242749, 14.152146 ], [ 145.242474, 14.152067 ], [ 145.242278, 14.152065 ], [ 145.242004, 14.151866 ], [ 145.241895, 14.151698 ], [ 145.241632, 14.151612 ], [ 145.241382, 14.151509 ], [ 145.241181, 14.151406 ], [ 145.24104, 14.151357 ], [ 145.241096, 14.151297 ], [ 145.241041, 14.151201 ], [ 145.240963, 14.151081 ], [ 145.240853, 14.150985 ], [ 145.240645, 14.150995 ], [ 145.240474, 14.150934 ], [ 145.240322, 14.150682 ], [ 145.240146, 14.150525 ], [ 145.239824, 14.150176 ], [ 145.239537, 14.149983 ], [ 145.239428, 14.149838 ], [ 145.239239, 14.149777 ], [ 145.239099, 14.149645 ], [ 145.238837, 14.149428 ], [ 145.238436, 14.14906 ], [ 145.238204, 14.148879 ], [ 145.238175, 14.148681 ], [ 145.237932, 14.148387 ], [ 145.237822, 14.14844 ], [ 145.237737, 14.148349 ], [ 145.237658, 14.148229 ], [ 145.237579, 14.148067 ], [ 145.237506, 14.148043 ], [ 145.237415, 14.147958 ], [ 145.237256, 14.147868 ], [ 145.237171, 14.147855 ], [ 145.237129, 14.147723 ], [ 145.236977, 14.147567 ], [ 145.236818, 14.147434 ], [ 145.236691, 14.147307 ], [ 145.236447, 14.147096 ], [ 145.236343, 14.147126 ], [ 145.236277, 14.14697 ], [ 145.235941, 14.14677 ], [ 145.235642, 14.146678 ], [ 145.235464, 14.146659 ], [ 145.2353, 14.146514 ], [ 145.235184, 14.146418 ], [ 145.235056, 14.14644 ], [ 145.234782, 14.146158 ], [ 145.234623, 14.146156 ], [ 145.234556, 14.146114 ], [ 145.234532, 14.146024 ], [ 145.234422, 14.145916 ], [ 145.234216, 14.145687 ], [ 145.234143, 14.145627 ], [ 145.23415, 14.145501 ], [ 145.234071, 14.145381 ], [ 145.234078, 14.145262 ], [ 145.233839, 14.145248 ], [ 145.233804, 14.145116 ], [ 145.233567, 14.144893 ], [ 145.233427, 14.144671 ], [ 145.233411, 14.144638 ], [ 145.23309, 14.143957 ], [ 145.232963, 14.143735 ], [ 145.232897, 14.143579 ], [ 145.23288, 14.143399 ], [ 145.23279, 14.1431 ], [ 145.232718, 14.142974 ], [ 145.232498, 14.142823 ], [ 145.232237, 14.142564 ], [ 145.231993, 14.142448 ], [ 145.231276, 14.142395 ], [ 145.230805, 14.142284 ], [ 145.230335, 14.142048 ], [ 145.230145, 14.142064 ], [ 145.22995, 14.142009 ], [ 145.229754, 14.142007 ], [ 145.229748, 14.141906 ], [ 145.22967, 14.14181 ], [ 145.229744, 14.141649 ], [ 145.229429, 14.141258 ], [ 145.229234, 14.141071 ], [ 145.229253, 14.140952 ], [ 145.229169, 14.140807 ], [ 145.229109, 14.14064 ], [ 145.229114, 14.140633 ], [ 145.229232, 14.140521 ], [ 145.229252, 14.140288 ], [ 145.229525, 14.139919 ], [ 145.229397, 14.139805 ], [ 145.229373, 14.139715 ], [ 145.229417, 14.139602 ], [ 145.229558, 14.139591 ], [ 145.229669, 14.13949 ], [ 145.229694, 14.139412 ], [ 145.229621, 14.139376 ], [ 145.229671, 14.139269 ], [ 145.229702, 14.139185 ], [ 145.229377, 14.139171 ], [ 145.229421, 14.139058 ], [ 145.229416, 14.138968 ], [ 145.229245, 14.138925 ], [ 145.229343, 14.13886 ], [ 145.229344, 14.138782 ], [ 145.229271, 14.138638 ], [ 145.22931, 14.138399 ], [ 145.22936, 14.138214 ], [ 145.229313, 14.137987 ], [ 145.229357, 14.137873 ], [ 145.229309, 14.137789 ], [ 145.229267, 14.13764 ], [ 145.229158, 14.137394 ], [ 145.229105, 14.137154 ], [ 145.229083, 14.136873 ], [ 145.229022, 14.136759 ], [ 145.228932, 14.136633 ], [ 145.228994, 14.136484 ], [ 145.229013, 14.136388 ], [ 145.228941, 14.136143 ], [ 145.228881, 14.136041 ], [ 145.228697, 14.136045 ], [ 145.228686, 14.135902 ], [ 145.228797, 14.135831 ], [ 145.228919, 14.135826 ], [ 145.228939, 14.135724 ], [ 145.229001, 14.135629 ], [ 145.228965, 14.135491 ], [ 145.228966, 14.135342 ], [ 145.228862, 14.135287 ], [ 145.228845, 14.135191 ], [ 145.228931, 14.135078 ], [ 145.229014, 14.134714 ], [ 145.229108, 14.134446 ], [ 145.229145, 14.134321 ], [ 145.229085, 14.134225 ], [ 145.229147, 14.134153 ], [ 145.229208, 14.134136 ], [ 145.229081, 14.133974 ], [ 145.229236, 14.133754 ], [ 145.229334, 14.133724 ], [ 145.229365, 14.133695 ], [ 145.229322, 14.133617 ], [ 145.229372, 14.133533 ], [ 145.229441, 14.133384 ], [ 145.229405, 14.133259 ], [ 145.229431, 14.133026 ], [ 145.229524, 14.132877 ], [ 145.229679, 14.132723 ], [ 145.229655, 14.132603 ], [ 145.22976, 14.132454 ], [ 145.22978, 14.132311 ], [ 145.229965, 14.132073 ], [ 145.230212, 14.131878 ], [ 145.230434, 14.131712 ], [ 145.230453, 14.131634 ], [ 145.230662, 14.131534 ], [ 145.230712, 14.131385 ], [ 145.230878, 14.131356 ], [ 145.230811, 14.131284 ], [ 145.23075, 14.131188 ], [ 145.230873, 14.131177 ], [ 145.230769, 14.131098 ], [ 145.230899, 14.131016 ], [ 145.230789, 14.130937 ], [ 145.230611, 14.130996 ], [ 145.230513, 14.130935 ], [ 145.230299, 14.130975 ], [ 145.230171, 14.130873 ], [ 145.230208, 14.130754 ], [ 145.230343, 14.130719 ], [ 145.230299, 14.130642 ], [ 145.230265, 14.130581 ], [ 145.230057, 14.130525 ], [ 145.229892, 14.13053 ], [ 145.229752, 14.130398 ], [ 145.229667, 14.130259 ], [ 145.229613, 14.130133 ], [ 145.229351, 14.129958 ], [ 145.229156, 14.129837 ], [ 145.229077, 14.129741 ], [ 145.228792, 14.129595 ], [ 145.228704, 14.129633 ], [ 145.228655, 14.129633 ], [ 145.228582, 14.12956 ], [ 145.228514, 14.129478 ], [ 145.228397, 14.129444 ], [ 145.228255, 14.129395 ], [ 145.228064, 14.129341 ], [ 145.227918, 14.129259 ], [ 145.22783, 14.129239 ], [ 145.227683, 14.129195 ], [ 145.227586, 14.129127 ], [ 145.227625, 14.129065 ], [ 145.227699, 14.129032 ], [ 145.227699, 14.12897 ], [ 145.227607, 14.128917 ], [ 145.227529, 14.128849 ], [ 145.227574, 14.128759 ], [ 145.227535, 14.128744 ], [ 145.227475, 14.128787 ], [ 145.227172, 14.128689 ], [ 145.227036, 14.128592 ], [ 145.226983, 14.12852 ], [ 145.226895, 14.128453 ], [ 145.226773, 14.128428 ], [ 145.22664, 14.128436 ], [ 145.226591, 14.128431 ], [ 145.226523, 14.128378 ], [ 145.226459, 14.128368 ], [ 145.226205, 14.128275 ], [ 145.226211, 14.128175 ], [ 145.226133, 14.128107 ], [ 145.226045, 14.128078 ], [ 145.226001, 14.12803 ], [ 145.225889, 14.127953 ], [ 145.225806, 14.12788 ], [ 145.225747, 14.127923 ], [ 145.225635, 14.127874 ], [ 145.225498, 14.12784 ], [ 145.225415, 14.127772 ], [ 145.225479, 14.127734 ], [ 145.22545, 14.127667 ], [ 145.225372, 14.127691 ], [ 145.225278, 14.127709 ], [ 145.22523, 14.127623 ], [ 145.224927, 14.127467 ], [ 145.224531, 14.127455 ], [ 145.224212, 14.127495 ], [ 145.224104, 14.127499 ], [ 145.22401, 14.127537 ], [ 145.223938, 14.127426 ], [ 145.223806, 14.127373 ], [ 145.223738, 14.127291 ], [ 145.223289, 14.127082 ], [ 145.223098, 14.126966 ], [ 145.222869, 14.126912 ], [ 145.222728, 14.126758 ], [ 145.222581, 14.126728 ], [ 145.222606, 14.12658 ], [ 145.222641, 14.126537 ], [ 145.222544, 14.126469 ], [ 145.222532, 14.126461 ], [ 145.222461, 14.126416 ], [ 145.222334, 14.126391 ], [ 145.222274, 14.126434 ], [ 145.222118, 14.126332 ], [ 145.221796, 14.126191 ], [ 145.221689, 14.126123 ], [ 145.221557, 14.126051 ], [ 145.221529, 14.125916 ], [ 145.221563, 14.125864 ], [ 145.221725, 14.125861 ], [ 145.221774, 14.125847 ], [ 145.221696, 14.125798 ], [ 145.221554, 14.125783 ], [ 145.221441, 14.125811 ], [ 145.221401, 14.125807 ], [ 145.221284, 14.125795 ], [ 145.221187, 14.125703 ], [ 145.221033, 14.125415 ], [ 145.22095, 14.125338 ], [ 145.22096, 14.125276 ], [ 145.220918, 14.125061 ], [ 145.220855, 14.124902 ], [ 145.220847, 14.124749 ], [ 145.220735, 14.124662 ], [ 145.220691, 14.124581 ], [ 145.2205, 14.12456 ], [ 145.220506, 14.124469 ], [ 145.220599, 14.124393 ], [ 145.220761, 14.12439 ], [ 145.220781, 14.124361 ], [ 145.22057, 14.124369 ], [ 145.220487, 14.124369 ], [ 145.220423, 14.124359 ], [ 145.22037, 14.124291 ], [ 145.220375, 14.12422 ], [ 145.22043, 14.124167 ], [ 145.22045, 14.124067 ], [ 145.220407, 14.123952 ], [ 145.220339, 14.123856 ], [ 145.220163, 14.123783 ], [ 145.220345, 14.123708 ], [ 145.220346, 14.123636 ], [ 145.220292, 14.123554 ], [ 145.220205, 14.123506 ], [ 145.220254, 14.123401 ], [ 145.220211, 14.123343 ], [ 145.220143, 14.123266 ], [ 145.220064, 14.123251 ], [ 145.220046, 14.123146 ], [ 145.219943, 14.123136 ], [ 145.219865, 14.123025 ], [ 145.219847, 14.122905 ], [ 145.219863, 14.122728 ], [ 145.219907, 14.122695 ], [ 145.219854, 14.122599 ], [ 145.219761, 14.122556 ], [ 145.219713, 14.122479 ], [ 145.219669, 14.122397 ], [ 145.219548, 14.122205 ], [ 145.21947, 14.122113 ], [ 145.219442, 14.121998 ], [ 145.219453, 14.121893 ], [ 145.219409, 14.121778 ], [ 145.219307, 14.121744 ], [ 145.219229, 14.121648 ], [ 145.218981, 14.121407 ], [ 145.218775, 14.121372 ], [ 145.218737, 14.121257 ], [ 145.218792, 14.121123 ], [ 145.218886, 14.120995 ], [ 145.218941, 14.120909 ], [ 145.218995, 14.120799 ], [ 145.218938, 14.120665 ], [ 145.21888, 14.120559 ], [ 145.218802, 14.12053 ], [ 145.218749, 14.120386 ], [ 145.218818, 14.120344 ], [ 145.218843, 14.120272 ], [ 145.218779, 14.120233 ], [ 145.218711, 14.120204 ], [ 145.218717, 14.120094 ], [ 145.218795, 14.1201 ], [ 145.218869, 14.120095 ], [ 145.218864, 14.120024 ], [ 145.218693, 14.120022 ], [ 145.21861, 14.120003 ], [ 145.218527, 14.119902 ], [ 145.218356, 14.119824 ], [ 145.218312, 14.119843 ], [ 145.218274, 14.119737 ], [ 145.218294, 14.119632 ], [ 145.218128, 14.119593 ], [ 145.218026, 14.119458 ], [ 145.218037, 14.119343 ], [ 145.217826, 14.119356 ], [ 145.217674, 14.119345 ], [ 145.217572, 14.119239 ], [ 145.217558, 14.119139 ], [ 145.21747, 14.119057 ], [ 145.217373, 14.119008 ], [ 145.217383, 14.118932 ], [ 145.217433, 14.118865 ], [ 145.21736, 14.118793 ], [ 145.217301, 14.118797 ], [ 145.2173, 14.11885 ], [ 145.217202, 14.118878 ], [ 145.21707, 14.118877 ], [ 145.217035, 14.118881 ], [ 145.216987, 14.118867 ], [ 145.216928, 14.118809 ], [ 145.216924, 14.118751 ], [ 145.216939, 14.118699 ], [ 145.216895, 14.118675 ], [ 145.216758, 14.118631 ], [ 145.216705, 14.118549 ], [ 145.216696, 14.118472 ], [ 145.216637, 14.118438 ], [ 145.216594, 14.118338 ], [ 145.216619, 14.118276 ], [ 145.216536, 14.118246 ], [ 145.216462, 14.118251 ], [ 145.216408, 14.118269 ], [ 145.2164, 14.118083 ], [ 145.216394, 14.118066 ], [ 145.216376, 14.117958 ], [ 145.216314, 14.117819 ], [ 145.216167, 14.117722 ], [ 145.216026, 14.117611 ], [ 145.216017, 14.117482 ], [ 145.215935, 14.117362 ], [ 145.215871, 14.117328 ], [ 145.215784, 14.11727 ], [ 145.215597, 14.117297 ], [ 145.215529, 14.117211 ], [ 145.215525, 14.117091 ], [ 145.215511, 14.117024 ], [ 145.215536, 14.116957 ], [ 145.215419, 14.116942 ], [ 145.215395, 14.11688 ], [ 145.215274, 14.116702 ], [ 145.215138, 14.116553 ], [ 145.215035, 14.116509 ], [ 145.214966, 14.116585 ], [ 145.214917, 14.116508 ], [ 145.214824, 14.116478 ], [ 145.214751, 14.116464 ], [ 145.214639, 14.116381 ], [ 145.21467, 14.11619 ], [ 145.214616, 14.116128 ], [ 145.214518, 14.116141 ], [ 145.214469, 14.116218 ], [ 145.214449, 14.116237 ], [ 145.214322, 14.116231 ], [ 145.214214, 14.116211 ], [ 145.214121, 14.116153 ], [ 145.214049, 14.116042 ], [ 145.213873, 14.115988 ], [ 145.213794, 14.11604 ], [ 145.213647, 14.115991 ], [ 145.213564, 14.115996 ], [ 145.21358, 14.115848 ], [ 145.213673, 14.11582 ], [ 145.213576, 14.115728 ], [ 145.213434, 14.115665 ], [ 145.213282, 14.115702 ], [ 145.213115, 14.115758 ], [ 145.212919, 14.115713 ], [ 145.212788, 14.115607 ], [ 145.212501, 14.115333 ], [ 145.212383, 14.115346 ], [ 145.212216, 14.115393 ], [ 145.212167, 14.115459 ], [ 145.212068, 14.115468 ], [ 145.211984, 14.11562 ], [ 145.211915, 14.115682 ], [ 145.211684, 14.115786 ], [ 145.211668, 14.115867 ], [ 145.211619, 14.115929 ], [ 145.211521, 14.115933 ], [ 145.211369, 14.115979 ], [ 145.211168, 14.115992 ], [ 145.211074, 14.116068 ], [ 145.211, 14.116111 ], [ 145.210956, 14.116115 ], [ 145.210971, 14.116019 ], [ 145.211011, 14.115953 ], [ 145.210982, 14.11589 ], [ 145.210918, 14.115962 ], [ 145.210878, 14.11599 ], [ 145.210843, 14.116124 ], [ 145.210813, 14.116181 ], [ 145.210715, 14.116214 ], [ 145.210686, 14.116213 ], [ 145.210622, 14.116261 ], [ 145.210529, 14.11615 ], [ 145.210382, 14.11613 ], [ 145.210324, 14.116134 ], [ 145.21026, 14.116158 ], [ 145.210161, 14.11621 ], [ 145.210083, 14.116218 ], [ 145.20992, 14.116337 ], [ 145.209871, 14.116351 ], [ 145.209606, 14.116392 ], [ 145.209327, 14.116342 ], [ 145.209293, 14.116323 ], [ 145.209234, 14.116303 ], [ 145.209161, 14.116245 ], [ 145.209025, 14.116187 ], [ 145.208926, 14.1162 ], [ 145.208843, 14.116195 ], [ 145.208746, 14.116151 ], [ 145.2085, 14.116188 ], [ 145.208417, 14.116192 ], [ 145.208162, 14.116152 ], [ 145.207976, 14.116217 ], [ 145.207696, 14.116206 ], [ 145.207447, 14.116165 ], [ 145.207232, 14.116049 ], [ 145.206904, 14.115984 ], [ 145.20665, 14.115963 ], [ 145.206424, 14.116014 ], [ 145.206106, 14.115945 ], [ 145.205724, 14.11589 ], [ 145.205205, 14.115881 ], [ 145.204891, 14.11584 ], [ 145.204739, 14.115897 ], [ 145.204603, 14.115795 ], [ 145.204412, 14.115669 ], [ 145.204315, 14.115563 ], [ 145.204257, 14.115515 ], [ 145.204214, 14.115405 ], [ 145.204136, 14.115337 ], [ 145.204058, 14.115284 ], [ 145.204009, 14.115265 ], [ 145.203882, 14.115231 ], [ 145.203848, 14.115202 ], [ 145.203784, 14.115009 ], [ 145.203697, 14.114951 ], [ 145.203654, 14.114837 ], [ 145.20364, 14.114715 ], [ 145.203604, 14.114644 ], [ 145.203525, 14.114646 ], [ 145.203267, 14.114656 ], [ 145.20318, 14.114669 ], [ 145.203113, 14.11474 ], [ 145.20293, 14.114746 ], [ 145.202858, 14.114688 ], [ 145.20277, 14.114709 ], [ 145.202704, 14.114751 ], [ 145.202674, 14.114844 ], [ 145.202608, 14.114886 ], [ 145.20252, 14.114886 ], [ 145.202498, 14.114828 ], [ 145.202403, 14.114835 ], [ 145.202322, 14.114898 ], [ 145.202242, 14.114919 ], [ 145.202184, 14.114854 ], [ 145.202118, 14.114811 ], [ 145.202067, 14.114861 ], [ 145.201986, 14.114917 ], [ 145.201891, 14.114931 ], [ 145.201695, 14.114758 ], [ 145.201637, 14.114622 ], [ 145.201535, 14.114578 ], [ 145.20147, 14.114492 ], [ 145.201544, 14.114436 ], [ 145.201515, 14.114293 ], [ 145.201436, 14.114221 ], [ 145.201385, 14.114128 ], [ 145.201503, 14.114029 ], [ 145.201592, 14.113887 ], [ 145.201615, 14.113773 ], [ 145.201615, 14.113701 ], [ 145.201491, 14.113729 ], [ 145.201469, 14.113679 ], [ 145.201374, 14.113635 ], [ 145.201294, 14.113685 ], [ 145.201228, 14.113698 ], [ 145.201177, 14.113648 ], [ 145.201089, 14.113619 ], [ 145.200936, 14.113625 ], [ 145.200877, 14.113596 ], [ 145.200746, 14.113566 ], [ 145.200739, 14.113502 ], [ 145.200644, 14.113509 ], [ 145.200585, 14.113587 ], [ 145.200256, 14.113598 ], [ 145.200205, 14.113562 ], [ 145.20022, 14.113505 ], [ 145.2003, 14.113506 ], [ 145.200301, 14.113385 ], [ 145.200171, 14.113234 ], [ 145.200083, 14.113212 ], [ 145.199974, 14.113175 ], [ 145.199791, 14.113145 ], [ 145.199732, 14.113223 ], [ 145.199688, 14.113294 ], [ 145.19957, 14.113358 ], [ 145.199468, 14.11335 ], [ 145.19941, 14.113299 ], [ 145.199454, 14.113228 ], [ 145.199331, 14.113163 ], [ 145.19912, 14.112969 ], [ 145.198996, 14.112968 ], [ 145.198888, 14.112739 ], [ 145.198742, 14.112709 ], [ 145.198559, 14.112694 ], [ 145.198472, 14.112679 ], [ 145.19837, 14.112635 ], [ 145.19834, 14.112721 ], [ 145.19823, 14.11272 ], [ 145.198156, 14.112783 ], [ 145.198009, 14.112889 ], [ 145.197972, 14.112953 ], [ 145.197935, 14.113089 ], [ 145.19789, 14.113174 ], [ 145.197839, 14.113238 ], [ 145.197707, 14.11318 ], [ 145.197627, 14.113186 ], [ 145.197386, 14.113127 ], [ 145.197363, 14.113241 ], [ 145.197143, 14.11329 ], [ 145.197055, 14.113346 ], [ 145.196937, 14.113495 ], [ 145.196864, 14.113516 ], [ 145.196746, 14.113565 ], [ 145.196666, 14.113536 ], [ 145.19657, 14.113664 ], [ 145.196606, 14.113742 ], [ 145.196606, 14.113778 ], [ 145.196533, 14.113785 ], [ 145.196496, 14.113841 ], [ 145.196604, 14.113985 ], [ 145.196618, 14.114064 ], [ 145.19656, 14.114063 ], [ 145.196471, 14.114134 ], [ 145.196354, 14.114211 ], [ 145.1962, 14.114282 ], [ 145.196134, 14.114295 ], [ 145.196155, 14.114403 ], [ 145.196147, 14.114531 ], [ 145.195808, 14.114771 ], [ 145.195681, 14.114877 ], [ 145.195543, 14.114933 ], [ 145.195469, 14.115014 ], [ 145.195307, 14.115089 ], [ 145.195228, 14.115152 ], [ 145.195016, 14.115136 ], [ 145.194826, 14.115128 ], [ 145.194643, 14.115126 ], [ 145.194306, 14.115145 ], [ 145.194249, 14.115136 ], [ 145.194237, 14.11514 ], [ 145.194165, 14.115138 ], [ 145.193371, 14.115119 ], [ 145.193346, 14.115116 ], [ 145.193271, 14.11511 ], [ 145.193247, 14.115108 ], [ 145.193086, 14.115093 ], [ 145.193019, 14.115084 ], [ 145.192859, 14.115063 ], [ 145.192567, 14.115039 ], [ 145.192334, 14.115046 ], [ 145.192187, 14.115051 ], [ 145.192112, 14.11502 ], [ 145.19172, 14.114955 ], [ 145.191351, 14.114823 ], [ 145.190768, 14.114841 ], [ 145.190413, 14.114743 ], [ 145.190118, 14.114743 ], [ 145.189952, 14.114856 ], [ 145.189828, 14.114898 ], [ 145.189569, 14.1151 ], [ 145.189227, 14.115105 ], [ 145.188999, 14.115224 ], [ 145.188535, 14.115422 ], [ 145.188407, 14.115462 ], [ 145.188281, 14.115501 ], [ 145.18817, 14.115547 ], [ 145.187937, 14.115482 ], [ 145.187709, 14.115507 ], [ 145.187612, 14.115637 ], [ 145.187488, 14.115806 ], [ 145.187123, 14.115894 ], [ 145.186661, 14.115863 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "69", "COUNTYFP10": "100", "TRACTCE10": "990000", "GEOID10": "69100990000", "NAME10": "9900", "NAMELSAD10": "Census Tract 9900", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 539081970, "INTPTLAT10": "+14.0941515", "INTPTLON10": "+145.1371595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.219561, 14.055983 ], [ 145.213094, 14.052109 ], [ 145.19725, 14.042743 ], [ 145.177988, 14.036565 ], [ 145.159733, 14.043026 ], [ 145.151375, 14.042846 ], [ 145.139447, 14.039165 ], [ 145.133343, 14.039345 ], [ 145.127325, 14.04411 ], [ 145.125, 14.044242 ], [ 145.111691, 14.045573 ], [ 145.096909, 14.047052 ], [ 145.077746, 14.060409 ], [ 145.076674, 14.061991 ], [ 145.069177, 14.073068 ], [ 145.068062, 14.074714 ], [ 145.065414, 14.078627 ], [ 145.065049, 14.079811 ], [ 145.064465, 14.081712 ], [ 145.064436, 14.083049 ], [ 145.059596, 14.099067 ], [ 145.058053, 14.114403 ], [ 145.058966, 14.125 ], [ 145.063022, 14.137901 ], [ 145.063622, 14.138943 ], [ 145.075239, 14.159112 ], [ 145.091456, 14.168738 ], [ 145.091049, 14.170743 ], [ 145.089366, 14.179041 ], [ 145.090399, 14.185215 ], [ 145.090779, 14.187024 ], [ 145.091942, 14.193626 ], [ 145.103001, 14.206845 ], [ 145.114309, 14.216907 ], [ 145.126115, 14.222776 ], [ 145.128449, 14.224337 ], [ 145.14309, 14.231324 ], [ 145.156987, 14.235154 ], [ 145.178328, 14.235021 ], [ 145.187081, 14.242764 ], [ 145.1969, 14.25 ], [ 145.201393, 14.253751 ], [ 145.21679, 14.261915 ], [ 145.217474, 14.262085 ], [ 145.235625, 14.266597 ], [ 145.248946, 14.266912 ], [ 145.254112, 14.266599 ], [ 145.263808, 14.266204 ], [ 145.27106, 14.262318 ], [ 145.276585, 14.254306 ], [ 145.283621, 14.255172 ], [ 145.286235, 14.255494 ], [ 145.304527, 14.256285 ], [ 145.307531, 14.255801 ], [ 145.31181, 14.255112 ], [ 145.319197, 14.253923 ], [ 145.324264, 14.251725 ], [ 145.328241, 14.25 ], [ 145.329761, 14.249373 ], [ 145.351703, 14.24441 ], [ 145.364996, 14.226609 ], [ 145.369216, 14.215137 ], [ 145.37448, 14.200825 ], [ 145.372477, 14.177494 ], [ 145.371413, 14.170126 ], [ 145.370836, 14.169225 ], [ 145.369439, 14.167202 ], [ 145.364108, 14.159098 ], [ 145.349182, 14.136409 ], [ 145.349566, 14.134507 ], [ 145.351488, 14.125 ], [ 145.349901, 14.121252 ], [ 145.339641, 14.108276 ], [ 145.325555, 14.098899 ], [ 145.312047, 14.094175 ], [ 145.299143, 14.091943 ], [ 145.295761, 14.084424 ], [ 145.284564, 14.071109 ], [ 145.273925, 14.063995 ], [ 145.260743, 14.058659 ], [ 145.254769, 14.057247 ], [ 145.252598, 14.057183 ], [ 145.25, 14.056595 ], [ 145.243661, 14.055248 ], [ 145.233025, 14.052531 ], [ 145.223082, 14.054501 ], [ 145.219561, 14.055983 ] ], [ [ 145.143326, 14.147494 ], [ 145.143234, 14.147498 ], [ 145.143112, 14.147392 ], [ 145.143005, 14.147367 ], [ 145.142944, 14.147309 ], [ 145.142883, 14.147323 ], [ 145.142792, 14.147308 ], [ 145.142746, 14.147236 ], [ 145.142731, 14.147174 ], [ 145.142624, 14.147173 ], [ 145.142578, 14.147115 ], [ 145.142761, 14.14705 ], [ 145.142746, 14.146963 ], [ 145.142746, 14.14682 ], [ 145.142624, 14.146781 ], [ 145.142578, 14.146747 ], [ 145.142609, 14.14668 ], [ 145.1427, 14.146657 ], [ 145.142713, 14.146622 ], [ 145.142624, 14.146604 ], [ 145.142578, 14.146532 ], [ 145.142578, 14.146407 ], [ 145.142624, 14.146374 ], [ 145.142654, 14.146317 ], [ 145.142715, 14.146298 ], [ 145.142776, 14.146299 ], [ 145.142853, 14.146237 ], [ 145.142929, 14.146262 ], [ 145.143036, 14.146277 ], [ 145.143127, 14.146393 ], [ 145.143204, 14.146589 ], [ 145.143235, 14.146704 ], [ 145.143264, 14.146733 ], [ 145.143254, 14.146771 ], [ 145.143279, 14.146855 ], [ 145.143285, 14.146876 ], [ 145.143326, 14.147085 ], [ 145.143341, 14.14714 ], [ 145.143311, 14.147245 ], [ 145.143341, 14.147384 ], [ 145.143326, 14.147494 ] ], [ [ 145.179089, 14.11468 ], [ 145.179101, 14.114681 ], [ 145.179219, 14.114632 ], [ 145.179248, 14.114682 ], [ 145.179408, 14.114712 ], [ 145.17957, 14.11467 ], [ 145.179709, 14.114614 ], [ 145.179958, 14.114602 ], [ 145.180074, 14.114695 ], [ 145.18022, 14.114704 ], [ 145.180213, 14.114611 ], [ 145.180243, 14.114554 ], [ 145.180353, 14.11459 ], [ 145.180505, 14.114727 ], [ 145.180564, 14.114721 ], [ 145.180491, 14.114606 ], [ 145.180477, 14.11452 ], [ 145.180608, 14.114671 ], [ 145.180688, 14.11465 ], [ 145.180843, 14.114494 ], [ 145.18096, 14.114495 ], [ 145.181033, 14.114589 ], [ 145.181068, 14.11471 ], [ 145.181148, 14.114775 ], [ 145.181154, 14.114946 ], [ 145.181315, 14.114983 ], [ 145.181453, 14.115063 ], [ 145.181627, 14.115192 ], [ 145.181721, 14.115336 ], [ 145.181824, 14.115329 ], [ 145.181926, 14.115273 ], [ 145.181992, 14.115345 ], [ 145.182108, 14.115382 ], [ 145.182174, 14.115461 ], [ 145.182254, 14.115411 ], [ 145.182364, 14.115384 ], [ 145.182393, 14.115505 ], [ 145.182699, 14.115636 ], [ 145.182794, 14.115622 ], [ 145.182947, 14.115681 ], [ 145.183048, 14.115781 ], [ 145.183246, 14.115797 ], [ 145.183385, 14.115798 ], [ 145.183538, 14.115778 ], [ 145.183691, 14.115857 ], [ 145.183815, 14.115901 ], [ 145.183895, 14.116023 ], [ 145.184019, 14.116017 ], [ 145.184084, 14.116089 ], [ 145.184113, 14.116196 ], [ 145.184259, 14.116211 ], [ 145.184449, 14.11622 ], [ 145.184574, 14.116164 ], [ 145.184647, 14.116164 ], [ 145.184713, 14.116079 ], [ 145.184779, 14.116108 ], [ 145.184881, 14.116138 ], [ 145.185019, 14.116189 ], [ 145.185129, 14.116182 ], [ 145.185283, 14.116148 ], [ 145.185415, 14.116127 ], [ 145.18554, 14.116007 ], [ 145.18557, 14.115907 ], [ 145.185643, 14.115872 ], [ 145.185693, 14.115668 ], [ 145.185727, 14.115658 ], [ 145.185849, 14.115795 ], [ 145.186134, 14.115812 ], [ 145.18628, 14.11587 ], [ 145.186404, 14.115835 ], [ 145.186484, 14.115864 ], [ 145.186595, 14.115808 ], [ 145.186616, 14.115851 ], [ 145.186661, 14.115863 ], [ 145.187123, 14.115894 ], [ 145.187488, 14.115806 ], [ 145.187612, 14.115637 ], [ 145.187709, 14.115507 ], [ 145.187937, 14.115482 ], [ 145.18817, 14.115547 ], [ 145.188281, 14.115501 ], [ 145.188407, 14.115462 ], [ 145.188535, 14.115422 ], [ 145.188999, 14.115224 ], [ 145.189227, 14.115105 ], [ 145.189569, 14.1151 ], [ 145.189828, 14.114898 ], [ 145.189952, 14.114856 ], [ 145.190118, 14.114743 ], [ 145.190413, 14.114743 ], [ 145.190768, 14.114841 ], [ 145.191351, 14.114823 ], [ 145.19172, 14.114955 ], [ 145.192112, 14.11502 ], [ 145.192187, 14.115051 ], [ 145.192334, 14.115046 ], [ 145.192567, 14.115039 ], [ 145.192859, 14.115063 ], [ 145.193019, 14.115084 ], [ 145.193086, 14.115093 ], [ 145.193247, 14.115108 ], [ 145.193271, 14.11511 ], [ 145.193346, 14.115116 ], [ 145.193371, 14.115119 ], [ 145.194165, 14.115138 ], [ 145.194237, 14.11514 ], [ 145.194249, 14.115136 ], [ 145.194306, 14.115145 ], [ 145.194643, 14.115126 ], [ 145.194826, 14.115128 ], [ 145.195016, 14.115136 ], [ 145.195228, 14.115152 ], [ 145.195307, 14.115089 ], [ 145.195469, 14.115014 ], [ 145.195543, 14.114933 ], [ 145.195681, 14.114877 ], [ 145.195808, 14.114771 ], [ 145.196147, 14.114531 ], [ 145.196155, 14.114403 ], [ 145.196134, 14.114295 ], [ 145.1962, 14.114282 ], [ 145.196354, 14.114211 ], [ 145.196471, 14.114134 ], [ 145.19656, 14.114063 ], [ 145.196618, 14.114064 ], [ 145.196604, 14.113985 ], [ 145.196496, 14.113841 ], [ 145.196533, 14.113785 ], [ 145.196606, 14.113778 ], [ 145.196606, 14.113742 ], [ 145.19657, 14.113664 ], [ 145.196666, 14.113536 ], [ 145.196746, 14.113565 ], [ 145.196864, 14.113516 ], [ 145.196937, 14.113495 ], [ 145.197055, 14.113346 ], [ 145.197143, 14.11329 ], [ 145.197363, 14.113241 ], [ 145.197386, 14.113127 ], [ 145.197627, 14.113186 ], [ 145.197707, 14.11318 ], [ 145.197839, 14.113238 ], [ 145.19789, 14.113174 ], [ 145.197935, 14.113089 ], [ 145.197972, 14.112953 ], [ 145.198009, 14.112889 ], [ 145.198156, 14.112783 ], [ 145.19823, 14.11272 ], [ 145.19834, 14.112721 ], [ 145.19837, 14.112635 ], [ 145.198472, 14.112679 ], [ 145.198559, 14.112694 ], [ 145.198742, 14.112709 ], [ 145.198888, 14.112739 ], [ 145.198996, 14.112968 ], [ 145.19912, 14.112969 ], [ 145.199331, 14.113163 ], [ 145.199454, 14.113228 ], [ 145.19941, 14.113299 ], [ 145.199468, 14.11335 ], [ 145.19957, 14.113358 ], [ 145.199688, 14.113294 ], [ 145.199732, 14.113223 ], [ 145.199791, 14.113145 ], [ 145.199974, 14.113175 ], [ 145.200083, 14.113212 ], [ 145.200171, 14.113234 ], [ 145.200301, 14.113385 ], [ 145.2003, 14.113506 ], [ 145.20022, 14.113505 ], [ 145.200205, 14.113562 ], [ 145.200256, 14.113598 ], [ 145.200585, 14.113587 ], [ 145.200644, 14.113509 ], [ 145.200739, 14.113502 ], [ 145.200746, 14.113566 ], [ 145.200877, 14.113596 ], [ 145.200936, 14.113625 ], [ 145.201089, 14.113619 ], [ 145.201177, 14.113648 ], [ 145.201228, 14.113698 ], [ 145.201294, 14.113685 ], [ 145.201374, 14.113635 ], [ 145.201469, 14.113679 ], [ 145.201491, 14.113729 ], [ 145.201615, 14.113701 ], [ 145.201615, 14.113773 ], [ 145.201592, 14.113887 ], [ 145.201503, 14.114029 ], [ 145.201385, 14.114128 ], [ 145.201436, 14.114221 ], [ 145.201515, 14.114293 ], [ 145.201544, 14.114436 ], [ 145.20147, 14.114492 ], [ 145.201535, 14.114578 ], [ 145.201637, 14.114622 ], [ 145.201695, 14.114758 ], [ 145.201891, 14.114931 ], [ 145.201986, 14.114917 ], [ 145.202067, 14.114861 ], [ 145.202118, 14.114811 ], [ 145.202184, 14.114854 ], [ 145.202242, 14.114919 ], [ 145.202322, 14.114898 ], [ 145.202403, 14.114835 ], [ 145.202498, 14.114828 ], [ 145.20252, 14.114886 ], [ 145.202608, 14.114886 ], [ 145.202674, 14.114844 ], [ 145.202704, 14.114751 ], [ 145.20277, 14.114709 ], [ 145.202858, 14.114688 ], [ 145.20293, 14.114746 ], [ 145.203113, 14.11474 ], [ 145.20318, 14.114669 ], [ 145.203267, 14.114656 ], [ 145.203525, 14.114646 ], [ 145.203604, 14.114644 ], [ 145.20364, 14.114715 ], [ 145.203654, 14.114837 ], [ 145.203697, 14.114951 ], [ 145.203784, 14.115009 ], [ 145.203848, 14.115202 ], [ 145.203882, 14.115231 ], [ 145.204009, 14.115265 ], [ 145.204058, 14.115284 ], [ 145.204136, 14.115337 ], [ 145.204214, 14.115405 ], [ 145.204257, 14.115515 ], [ 145.204315, 14.115563 ], [ 145.204412, 14.115669 ], [ 145.204603, 14.115795 ], [ 145.204739, 14.115897 ], [ 145.204891, 14.11584 ], [ 145.205205, 14.115881 ], [ 145.205724, 14.11589 ], [ 145.206106, 14.115945 ], [ 145.206424, 14.116014 ], [ 145.20665, 14.115963 ], [ 145.206904, 14.115984 ], [ 145.207232, 14.116049 ], [ 145.207447, 14.116165 ], [ 145.207696, 14.116206 ], [ 145.207976, 14.116217 ], [ 145.208162, 14.116152 ], [ 145.208417, 14.116192 ], [ 145.2085, 14.116188 ], [ 145.208746, 14.116151 ], [ 145.208843, 14.116195 ], [ 145.208926, 14.1162 ], [ 145.209025, 14.116187 ], [ 145.209161, 14.116245 ], [ 145.209234, 14.116303 ], [ 145.209293, 14.116323 ], [ 145.209327, 14.116342 ], [ 145.209606, 14.116392 ], [ 145.209871, 14.116351 ], [ 145.20992, 14.116337 ], [ 145.210083, 14.116218 ], [ 145.210161, 14.11621 ], [ 145.21026, 14.116158 ], [ 145.210324, 14.116134 ], [ 145.210382, 14.11613 ], [ 145.210529, 14.11615 ], [ 145.210622, 14.116261 ], [ 145.210686, 14.116213 ], [ 145.210715, 14.116214 ], [ 145.210813, 14.116181 ], [ 145.210843, 14.116124 ], [ 145.210878, 14.11599 ], [ 145.210918, 14.115962 ], [ 145.210982, 14.11589 ], [ 145.211011, 14.115953 ], [ 145.210971, 14.116019 ], [ 145.210956, 14.116115 ], [ 145.211, 14.116111 ], [ 145.211074, 14.116068 ], [ 145.211168, 14.115992 ], [ 145.211369, 14.115979 ], [ 145.211521, 14.115933 ], [ 145.211619, 14.115929 ], [ 145.211668, 14.115867 ], [ 145.211684, 14.115786 ], [ 145.211915, 14.115682 ], [ 145.211984, 14.11562 ], [ 145.212068, 14.115468 ], [ 145.212167, 14.115459 ], [ 145.212216, 14.115393 ], [ 145.212383, 14.115346 ], [ 145.212501, 14.115333 ], [ 145.212788, 14.115607 ], [ 145.212919, 14.115713 ], [ 145.213115, 14.115758 ], [ 145.213282, 14.115702 ], [ 145.213434, 14.115665 ], [ 145.213576, 14.115728 ], [ 145.213673, 14.11582 ], [ 145.21358, 14.115848 ], [ 145.213564, 14.115996 ], [ 145.213647, 14.115991 ], [ 145.213794, 14.11604 ], [ 145.213873, 14.115988 ], [ 145.214049, 14.116042 ], [ 145.214121, 14.116153 ], [ 145.214214, 14.116211 ], [ 145.214322, 14.116231 ], [ 145.214449, 14.116237 ], [ 145.214469, 14.116218 ], [ 145.214518, 14.116141 ], [ 145.214616, 14.116128 ], [ 145.21467, 14.11619 ], [ 145.214639, 14.116381 ], [ 145.214751, 14.116464 ], [ 145.214824, 14.116478 ], [ 145.214917, 14.116508 ], [ 145.214966, 14.116585 ], [ 145.215035, 14.116509 ], [ 145.215138, 14.116553 ], [ 145.215274, 14.116702 ], [ 145.215395, 14.11688 ], [ 145.215419, 14.116942 ], [ 145.215536, 14.116957 ], [ 145.215511, 14.117024 ], [ 145.215525, 14.117091 ], [ 145.215529, 14.117211 ], [ 145.215597, 14.117297 ], [ 145.215784, 14.11727 ], [ 145.215871, 14.117328 ], [ 145.215935, 14.117362 ], [ 145.216017, 14.117482 ], [ 145.216026, 14.117611 ], [ 145.216167, 14.117722 ], [ 145.216314, 14.117819 ], [ 145.216376, 14.117958 ], [ 145.216394, 14.118066 ], [ 145.2164, 14.118083 ], [ 145.216408, 14.118269 ], [ 145.216462, 14.118251 ], [ 145.216536, 14.118246 ], [ 145.216619, 14.118276 ], [ 145.216594, 14.118338 ], [ 145.216637, 14.118438 ], [ 145.216696, 14.118472 ], [ 145.216705, 14.118549 ], [ 145.216758, 14.118631 ], [ 145.216895, 14.118675 ], [ 145.216939, 14.118699 ], [ 145.216924, 14.118751 ], [ 145.216928, 14.118809 ], [ 145.216987, 14.118867 ], [ 145.217035, 14.118881 ], [ 145.21707, 14.118877 ], [ 145.217202, 14.118878 ], [ 145.2173, 14.11885 ], [ 145.217301, 14.118797 ], [ 145.21736, 14.118793 ], [ 145.217433, 14.118865 ], [ 145.217383, 14.118932 ], [ 145.217373, 14.119008 ], [ 145.21747, 14.119057 ], [ 145.217558, 14.119139 ], [ 145.217572, 14.119239 ], [ 145.217674, 14.119345 ], [ 145.217826, 14.119356 ], [ 145.218037, 14.119343 ], [ 145.218026, 14.119458 ], [ 145.218128, 14.119593 ], [ 145.218294, 14.119632 ], [ 145.218274, 14.119737 ], [ 145.218312, 14.119843 ], [ 145.218356, 14.119824 ], [ 145.218527, 14.119902 ], [ 145.21861, 14.120003 ], [ 145.218693, 14.120022 ], [ 145.218864, 14.120024 ], [ 145.218869, 14.120095 ], [ 145.218795, 14.1201 ], [ 145.218717, 14.120094 ], [ 145.218711, 14.120204 ], [ 145.218779, 14.120233 ], [ 145.218843, 14.120272 ], [ 145.218818, 14.120344 ], [ 145.218749, 14.120386 ], [ 145.218802, 14.12053 ], [ 145.21888, 14.120559 ], [ 145.218938, 14.120665 ], [ 145.218995, 14.120799 ], [ 145.218941, 14.120909 ], [ 145.218886, 14.120995 ], [ 145.218792, 14.121123 ], [ 145.218737, 14.121257 ], [ 145.218775, 14.121372 ], [ 145.218981, 14.121407 ], [ 145.219229, 14.121648 ], [ 145.219307, 14.121744 ], [ 145.219409, 14.121778 ], [ 145.219453, 14.121893 ], [ 145.219442, 14.121998 ], [ 145.21947, 14.122113 ], [ 145.219548, 14.122205 ], [ 145.219669, 14.122397 ], [ 145.219713, 14.122479 ], [ 145.219761, 14.122556 ], [ 145.219854, 14.122599 ], [ 145.219907, 14.122695 ], [ 145.219863, 14.122728 ], [ 145.219847, 14.122905 ], [ 145.219865, 14.123025 ], [ 145.219943, 14.123136 ], [ 145.220046, 14.123146 ], [ 145.220064, 14.123251 ], [ 145.220143, 14.123266 ], [ 145.220211, 14.123343 ], [ 145.220254, 14.123401 ], [ 145.220205, 14.123506 ], [ 145.220292, 14.123554 ], [ 145.220346, 14.123636 ], [ 145.220345, 14.123708 ], [ 145.220163, 14.123783 ], [ 145.220339, 14.123856 ], [ 145.220407, 14.123952 ], [ 145.22045, 14.124067 ], [ 145.22043, 14.124167 ], [ 145.220375, 14.12422 ], [ 145.22037, 14.124291 ], [ 145.220423, 14.124359 ], [ 145.220487, 14.124369 ], [ 145.22057, 14.124369 ], [ 145.220781, 14.124361 ], [ 145.220761, 14.12439 ], [ 145.220599, 14.124393 ], [ 145.220506, 14.124469 ], [ 145.2205, 14.12456 ], [ 145.220691, 14.124581 ], [ 145.220735, 14.124662 ], [ 145.220847, 14.124749 ], [ 145.220855, 14.124902 ], [ 145.220918, 14.125061 ], [ 145.22096, 14.125276 ], [ 145.22095, 14.125338 ], [ 145.221033, 14.125415 ], [ 145.221187, 14.125703 ], [ 145.221284, 14.125795 ], [ 145.221401, 14.125807 ], [ 145.221441, 14.125811 ], [ 145.221554, 14.125783 ], [ 145.221696, 14.125798 ], [ 145.221774, 14.125847 ], [ 145.221725, 14.125861 ], [ 145.221563, 14.125864 ], [ 145.221529, 14.125916 ], [ 145.221557, 14.126051 ], [ 145.221689, 14.126123 ], [ 145.221796, 14.126191 ], [ 145.222118, 14.126332 ], [ 145.222274, 14.126434 ], [ 145.222334, 14.126391 ], [ 145.222461, 14.126416 ], [ 145.222532, 14.126461 ], [ 145.222544, 14.126469 ], [ 145.222641, 14.126537 ], [ 145.222606, 14.12658 ], [ 145.222581, 14.126728 ], [ 145.222728, 14.126758 ], [ 145.222869, 14.126912 ], [ 145.223098, 14.126966 ], [ 145.223289, 14.127082 ], [ 145.223738, 14.127291 ], [ 145.223806, 14.127373 ], [ 145.223938, 14.127426 ], [ 145.22401, 14.127537 ], [ 145.224104, 14.127499 ], [ 145.224212, 14.127495 ], [ 145.224531, 14.127455 ], [ 145.224927, 14.127467 ], [ 145.22523, 14.127623 ], [ 145.225278, 14.127709 ], [ 145.225372, 14.127691 ], [ 145.22545, 14.127667 ], [ 145.225479, 14.127734 ], [ 145.225415, 14.127772 ], [ 145.225498, 14.12784 ], [ 145.225635, 14.127874 ], [ 145.225747, 14.127923 ], [ 145.225806, 14.12788 ], [ 145.225889, 14.127953 ], [ 145.226001, 14.12803 ], [ 145.226045, 14.128078 ], [ 145.226133, 14.128107 ], [ 145.226211, 14.128175 ], [ 145.226205, 14.128275 ], [ 145.226459, 14.128368 ], [ 145.226523, 14.128378 ], [ 145.226591, 14.128431 ], [ 145.22664, 14.128436 ], [ 145.226773, 14.128428 ], [ 145.226895, 14.128453 ], [ 145.226983, 14.12852 ], [ 145.227036, 14.128592 ], [ 145.227172, 14.128689 ], [ 145.227475, 14.128787 ], [ 145.227535, 14.128744 ], [ 145.227574, 14.128759 ], [ 145.227529, 14.128849 ], [ 145.227607, 14.128917 ], [ 145.227699, 14.12897 ], [ 145.227699, 14.129032 ], [ 145.227625, 14.129065 ], [ 145.227586, 14.129127 ], [ 145.227683, 14.129195 ], [ 145.22783, 14.129239 ], [ 145.227918, 14.129259 ], [ 145.228064, 14.129341 ], [ 145.228255, 14.129395 ], [ 145.228397, 14.129444 ], [ 145.228514, 14.129478 ], [ 145.228582, 14.12956 ], [ 145.228655, 14.129633 ], [ 145.228704, 14.129633 ], [ 145.228792, 14.129595 ], [ 145.229077, 14.129741 ], [ 145.229156, 14.129837 ], [ 145.229351, 14.129958 ], [ 145.229613, 14.130133 ], [ 145.229667, 14.130259 ], [ 145.229752, 14.130398 ], [ 145.229892, 14.13053 ], [ 145.230057, 14.130525 ], [ 145.230265, 14.130581 ], [ 145.230299, 14.130642 ], [ 145.230343, 14.130719 ], [ 145.230208, 14.130754 ], [ 145.230171, 14.130873 ], [ 145.230299, 14.130975 ], [ 145.230513, 14.130935 ], [ 145.230611, 14.130996 ], [ 145.230789, 14.130937 ], [ 145.230899, 14.131016 ], [ 145.230769, 14.131098 ], [ 145.230873, 14.131177 ], [ 145.23075, 14.131188 ], [ 145.230811, 14.131284 ], [ 145.230878, 14.131356 ], [ 145.230712, 14.131385 ], [ 145.230662, 14.131534 ], [ 145.230453, 14.131634 ], [ 145.230434, 14.131712 ], [ 145.230212, 14.131878 ], [ 145.229965, 14.132073 ], [ 145.22978, 14.132311 ], [ 145.22976, 14.132454 ], [ 145.229655, 14.132603 ], [ 145.229679, 14.132723 ], [ 145.229524, 14.132877 ], [ 145.229431, 14.133026 ], [ 145.229405, 14.133259 ], [ 145.229441, 14.133384 ], [ 145.229372, 14.133533 ], [ 145.229322, 14.133617 ], [ 145.229365, 14.133695 ], [ 145.229334, 14.133724 ], [ 145.229236, 14.133754 ], [ 145.229081, 14.133974 ], [ 145.229208, 14.134136 ], [ 145.229147, 14.134153 ], [ 145.229085, 14.134225 ], [ 145.229145, 14.134321 ], [ 145.229108, 14.134446 ], [ 145.229014, 14.134714 ], [ 145.228931, 14.135078 ], [ 145.228845, 14.135191 ], [ 145.228862, 14.135287 ], [ 145.228966, 14.135342 ], [ 145.228965, 14.135491 ], [ 145.229001, 14.135629 ], [ 145.228939, 14.135724 ], [ 145.228919, 14.135826 ], [ 145.228797, 14.135831 ], [ 145.228686, 14.135902 ], [ 145.228697, 14.136045 ], [ 145.228881, 14.136041 ], [ 145.228941, 14.136143 ], [ 145.229013, 14.136388 ], [ 145.228994, 14.136484 ], [ 145.228932, 14.136633 ], [ 145.229022, 14.136759 ], [ 145.229083, 14.136873 ], [ 145.229105, 14.137154 ], [ 145.229158, 14.137394 ], [ 145.229267, 14.13764 ], [ 145.229309, 14.137789 ], [ 145.229357, 14.137873 ], [ 145.229313, 14.137987 ], [ 145.22936, 14.138214 ], [ 145.22931, 14.138399 ], [ 145.229271, 14.138638 ], [ 145.229344, 14.138782 ], [ 145.229343, 14.13886 ], [ 145.229245, 14.138925 ], [ 145.229416, 14.138968 ], [ 145.229421, 14.139058 ], [ 145.229377, 14.139171 ], [ 145.229702, 14.139185 ], [ 145.229671, 14.139269 ], [ 145.229621, 14.139376 ], [ 145.229694, 14.139412 ], [ 145.229669, 14.13949 ], [ 145.229558, 14.139591 ], [ 145.229417, 14.139602 ], [ 145.229373, 14.139715 ], [ 145.229397, 14.139805 ], [ 145.229525, 14.139919 ], [ 145.229252, 14.140288 ], [ 145.229232, 14.140521 ], [ 145.229114, 14.140633 ], [ 145.229109, 14.14064 ], [ 145.229169, 14.140807 ], [ 145.229253, 14.140952 ], [ 145.229234, 14.141071 ], [ 145.229429, 14.141258 ], [ 145.229744, 14.141649 ], [ 145.22967, 14.14181 ], [ 145.229748, 14.141906 ], [ 145.229754, 14.142007 ], [ 145.22995, 14.142009 ], [ 145.230145, 14.142064 ], [ 145.230335, 14.142048 ], [ 145.230805, 14.142284 ], [ 145.231276, 14.142395 ], [ 145.231993, 14.142448 ], [ 145.232237, 14.142564 ], [ 145.232498, 14.142823 ], [ 145.232718, 14.142974 ], [ 145.23279, 14.1431 ], [ 145.23288, 14.143399 ], [ 145.232897, 14.143579 ], [ 145.232963, 14.143735 ], [ 145.23309, 14.143957 ], [ 145.233411, 14.144638 ], [ 145.233427, 14.144671 ], [ 145.233567, 14.144893 ], [ 145.233804, 14.145116 ], [ 145.233839, 14.145248 ], [ 145.234078, 14.145262 ], [ 145.234071, 14.145381 ], [ 145.23415, 14.145501 ], [ 145.234143, 14.145627 ], [ 145.234216, 14.145687 ], [ 145.234422, 14.145916 ], [ 145.234532, 14.146024 ], [ 145.234556, 14.146114 ], [ 145.234623, 14.146156 ], [ 145.234782, 14.146158 ], [ 145.235056, 14.14644 ], [ 145.235184, 14.146418 ], [ 145.2353, 14.146514 ], [ 145.235464, 14.146659 ], [ 145.235642, 14.146678 ], [ 145.235941, 14.14677 ], [ 145.236277, 14.14697 ], [ 145.236343, 14.147126 ], [ 145.236447, 14.147096 ], [ 145.236691, 14.147307 ], [ 145.236818, 14.147434 ], [ 145.236977, 14.147567 ], [ 145.237129, 14.147723 ], [ 145.237171, 14.147855 ], [ 145.237256, 14.147868 ], [ 145.237415, 14.147958 ], [ 145.237506, 14.148043 ], [ 145.237579, 14.148067 ], [ 145.237658, 14.148229 ], [ 145.237737, 14.148349 ], [ 145.237822, 14.14844 ], [ 145.237932, 14.148387 ], [ 145.238175, 14.148681 ], [ 145.238204, 14.148879 ], [ 145.238436, 14.14906 ], [ 145.238837, 14.149428 ], [ 145.239099, 14.149645 ], [ 145.239239, 14.149777 ], [ 145.239428, 14.149838 ], [ 145.239537, 14.149983 ], [ 145.239824, 14.150176 ], [ 145.240146, 14.150525 ], [ 145.240322, 14.150682 ], [ 145.240474, 14.150934 ], [ 145.240645, 14.150995 ], [ 145.240853, 14.150985 ], [ 145.240963, 14.151081 ], [ 145.241041, 14.151201 ], [ 145.241096, 14.151297 ], [ 145.24104, 14.151357 ], [ 145.241181, 14.151406 ], [ 145.241382, 14.151509 ], [ 145.241632, 14.151612 ], [ 145.241895, 14.151698 ], [ 145.242004, 14.151866 ], [ 145.242278, 14.152065 ], [ 145.242474, 14.152067 ], [ 145.242749, 14.152146 ], [ 145.242946, 14.15213 ], [ 145.243026, 14.152065 ], [ 145.243081, 14.152047 ], [ 145.243203, 14.152126 ], [ 145.243297, 14.152103 ], [ 145.243364, 14.152117 ], [ 145.243401, 14.15201 ], [ 145.243446, 14.151989 ], [ 145.243526, 14.151969 ], [ 145.243658, 14.151962 ], [ 145.243717, 14.151927 ], [ 145.243717, 14.151849 ], [ 145.243776, 14.151863 ], [ 145.243863, 14.1519 ], [ 145.243951, 14.151915 ], [ 145.244016, 14.151965 ], [ 145.244089, 14.152015 ], [ 145.244176, 14.152059 ], [ 145.244227, 14.152116 ], [ 145.2443, 14.152088 ], [ 145.244388, 14.152139 ], [ 145.244534, 14.152126 ], [ 145.244637, 14.152084 ], [ 145.244725, 14.152027 ], [ 145.244821, 14.151971 ], [ 145.244951, 14.151972 ], [ 145.244985, 14.151982 ], [ 145.245136, 14.152012 ], [ 145.245293, 14.151985 ], [ 145.245421, 14.151942 ], [ 145.245543, 14.151962 ], [ 145.245666, 14.152006 ], [ 145.245758, 14.152151 ], [ 145.245894, 14.152276 ], [ 145.246006, 14.152315 ], [ 145.246119, 14.152368 ], [ 145.246324, 14.152456 ], [ 145.246456, 14.152471 ], [ 145.246578, 14.152501 ], [ 145.246662, 14.152506 ], [ 145.246774, 14.152536 ], [ 145.246892, 14.152551 ], [ 145.247049, 14.152538 ], [ 145.247181, 14.152577 ], [ 145.247318, 14.152525 ], [ 145.247456, 14.152488 ], [ 145.247597, 14.152547 ], [ 145.247906, 14.152616 ], [ 145.248078, 14.152588 ], [ 145.248219, 14.152623 ], [ 145.248401, 14.152639 ], [ 145.248553, 14.152592 ], [ 145.248724, 14.152603 ], [ 145.248906, 14.152561 ], [ 145.248951, 14.152513 ], [ 145.249083, 14.152557 ], [ 145.249215, 14.152623 ], [ 145.249239, 14.152635 ], [ 145.249537, 14.152676 ], [ 145.24967, 14.152691 ], [ 145.249742, 14.152787 ], [ 145.249918, 14.15285 ], [ 145.250006, 14.152966 ], [ 145.250138, 14.152991 ], [ 145.250172, 14.153048 ], [ 145.250431, 14.153122 ], [ 145.250704, 14.153311 ], [ 145.250845, 14.153517 ], [ 145.251055, 14.153614 ], [ 145.251171, 14.153749 ], [ 145.251591, 14.153963 ], [ 145.251796, 14.154108 ], [ 145.251913, 14.154171 ], [ 145.252128, 14.154258 ], [ 145.252309, 14.15436 ], [ 145.252445, 14.154428 ], [ 145.252578, 14.154429 ], [ 145.252583, 14.154348 ], [ 145.252598, 14.154281 ], [ 145.252755, 14.154287 ], [ 145.252985, 14.15436 ], [ 145.253229, 14.154429 ], [ 145.253406, 14.15443 ], [ 145.25367, 14.154547 ], [ 145.253895, 14.154568 ], [ 145.254062, 14.15455 ], [ 145.254223, 14.154584 ], [ 145.254434, 14.154615 ], [ 145.254625, 14.154583 ], [ 145.2549, 14.154575 ], [ 145.255081, 14.154576 ], [ 145.255126, 14.154579 ], [ 145.255473, 14.154598 ], [ 145.255748, 14.154543 ], [ 145.256077, 14.154497 ], [ 145.256243, 14.15458 ], [ 145.256502, 14.154601 ], [ 145.256698, 14.154626 ], [ 145.25688, 14.154546 ], [ 145.256997, 14.154605 ], [ 145.257262, 14.154664 ], [ 145.257438, 14.154622 ], [ 145.257506, 14.154694 ], [ 145.257737, 14.154691 ], [ 145.257968, 14.154684 ], [ 145.257988, 14.154695 ], [ 145.25811, 14.154715 ], [ 145.258132, 14.154685 ], [ 145.258153, 14.15469 ], [ 145.258678, 14.154674 ], [ 145.258889, 14.154618 ], [ 145.259287, 14.154554 ], [ 145.259605, 14.154533 ], [ 145.259865, 14.154527 ], [ 145.259881, 14.154564 ], [ 145.260027, 14.154608 ], [ 145.260137, 14.154544 ], [ 145.260181, 14.154566 ], [ 145.260349, 14.154553 ], [ 145.26037, 14.154625 ], [ 145.260553, 14.154683 ], [ 145.260772, 14.154656 ], [ 145.260985, 14.154551 ], [ 145.261065, 14.15458 ], [ 145.261161, 14.154538 ], [ 145.261308, 14.154467 ], [ 145.261549, 14.154426 ], [ 145.261689, 14.154342 ], [ 145.261784, 14.154314 ], [ 145.261805, 14.154407 ], [ 145.261915, 14.1544 ], [ 145.262134, 14.154445 ], [ 145.262207, 14.154445 ], [ 145.262244, 14.154381 ], [ 145.262317, 14.154417 ], [ 145.262376, 14.154382 ], [ 145.262486, 14.154354 ], [ 145.262545, 14.154276 ], [ 145.262539, 14.154126 ], [ 145.262642, 14.154084 ], [ 145.262641, 14.154206 ], [ 145.26267, 14.15422 ], [ 145.262743, 14.154256 ], [ 145.262853, 14.154179 ], [ 145.262868, 14.154065 ], [ 145.262942, 14.154058 ], [ 145.262986, 14.154001 ], [ 145.263052, 14.153959 ], [ 145.263133, 14.153945 ], [ 145.263191, 14.154031 ], [ 145.263417, 14.154026 ], [ 145.26341, 14.153961 ], [ 145.263374, 14.15389 ], [ 145.263419, 14.153862 ], [ 145.263499, 14.153919 ], [ 145.26355, 14.153884 ], [ 145.263638, 14.153806 ], [ 145.263712, 14.153757 ], [ 145.26372, 14.153685 ], [ 145.26375, 14.153586 ], [ 145.263794, 14.153572 ], [ 145.263851, 14.153672 ], [ 145.263946, 14.153694 ], [ 145.26402, 14.153688 ], [ 145.264115, 14.153603 ], [ 145.264204, 14.153496 ], [ 145.264299, 14.153418 ], [ 145.264402, 14.153348 ], [ 145.264585, 14.153385 ], [ 145.264673, 14.153343 ], [ 145.264798, 14.153236 ], [ 145.264915, 14.15323 ], [ 145.265121, 14.15311 ], [ 145.265283, 14.152962 ], [ 145.265459, 14.152827 ], [ 145.265687, 14.152665 ], [ 145.265894, 14.152467 ], [ 145.266063, 14.152368 ], [ 145.266166, 14.152233 ], [ 145.266482, 14.152093 ], [ 145.266519, 14.152048 ], [ 145.267086, 14.151765 ], [ 145.267469, 14.151782 ], [ 145.268017, 14.151834 ], [ 145.268238, 14.151821 ], [ 145.268419, 14.151889 ], [ 145.268516, 14.151952 ], [ 145.268668, 14.151992 ], [ 145.26878, 14.152064 ], [ 145.269069, 14.152061 ], [ 145.269402, 14.152107 ], [ 145.269676, 14.152171 ], [ 145.269896, 14.152197 ], [ 145.270155, 14.152337 ], [ 145.270267, 14.152448 ], [ 145.270423, 14.15254 ], [ 145.270667, 14.1527 ], [ 145.270984, 14.152888 ], [ 145.271218, 14.153067 ], [ 145.271369, 14.153159 ], [ 145.271637, 14.153414 ], [ 145.271753, 14.153626 ], [ 145.271831, 14.153707 ], [ 145.271962, 14.153809 ], [ 145.272011, 14.153929 ], [ 145.272078, 14.15402 ], [ 145.2722, 14.154107 ], [ 145.272293, 14.15418 ], [ 145.272498, 14.154262 ], [ 145.2726, 14.154354 ], [ 145.272732, 14.154451 ], [ 145.272776, 14.154503 ], [ 145.272854, 14.154576 ], [ 145.27301, 14.154649 ], [ 145.273166, 14.154798 ], [ 145.273233, 14.154923 ], [ 145.273292, 14.155 ], [ 145.27333, 14.155062 ], [ 145.273408, 14.155091 ], [ 145.273423, 14.155149 ], [ 145.273481, 14.155216 ], [ 145.273682, 14.155237 ], [ 145.273701, 14.155285 ], [ 145.2737, 14.155395 ], [ 145.273812, 14.155525 ], [ 145.273914, 14.155664 ], [ 145.273987, 14.155751 ], [ 145.274157, 14.155881 ], [ 145.274166, 14.15603 ], [ 145.274229, 14.156087 ], [ 145.274327, 14.156117 ], [ 145.274478, 14.156116 ], [ 145.274502, 14.156177 ], [ 145.274519, 14.156272 ], [ 145.274598, 14.156324 ], [ 145.274694, 14.156359 ], [ 145.274791, 14.156377 ], [ 145.274888, 14.156386 ], [ 145.274931, 14.156403 ], [ 145.274962, 14.156461 ], [ 145.27505, 14.156514 ], [ 145.27522, 14.156594 ], [ 145.275299, 14.156646 ], [ 145.275378, 14.156707 ], [ 145.275465, 14.15675 ], [ 145.275553, 14.156785 ], [ 145.27564, 14.156846 ], [ 145.27571, 14.156907 ], [ 145.27578, 14.156976 ], [ 145.275832, 14.157062 ], [ 145.275911, 14.157122 ], [ 145.275972, 14.1572 ], [ 145.276029, 14.157282 ], [ 145.276234, 14.157331 ], [ 145.276313, 14.157383 ], [ 145.276401, 14.157426 ], [ 145.276585, 14.157496 ], [ 145.276681, 14.157523 ], [ 145.276778, 14.157532 ], [ 145.277323, 14.157536 ], [ 145.277543, 14.157597 ], [ 145.277639, 14.157615 ], [ 145.277727, 14.157659 ], [ 145.277814, 14.157694 ], [ 145.277893, 14.157746 ], [ 145.277963, 14.157815 ], [ 145.27804, 14.15788 ], [ 145.278044, 14.157908 ], [ 145.278087, 14.157976 ], [ 145.278185, 14.158019 ], [ 145.278371, 14.158035 ], [ 145.278429, 14.158141 ], [ 145.278537, 14.15817 ], [ 145.27881, 14.158349 ], [ 145.278947, 14.158393 ], [ 145.279035, 14.158437 ], [ 145.279156, 14.158543 ], [ 145.279362, 14.158611 ], [ 145.279532, 14.158756 ], [ 145.279733, 14.158786 ], [ 145.279757, 14.158815 ], [ 145.27983, 14.158863 ], [ 145.279928, 14.158869 ], [ 145.280031, 14.158898 ], [ 145.28007, 14.158927 ], [ 145.280178, 14.158923 ], [ 145.280319, 14.159025 ], [ 145.28049, 14.159126 ], [ 145.280905, 14.15934 ], [ 145.28115, 14.159389 ], [ 145.281409, 14.159463 ], [ 145.281575, 14.159517 ], [ 145.281844, 14.159619 ], [ 145.281956, 14.15972 ], [ 145.28199, 14.159826 ], [ 145.282053, 14.159898 ], [ 145.282114, 14.159915 ], [ 145.282123, 14.159938 ], [ 145.282268, 14.159996 ], [ 145.282287, 14.160034 ], [ 145.282311, 14.160048 ], [ 145.282301, 14.16011 ], [ 145.282393, 14.160235 ], [ 145.282452, 14.160269 ], [ 145.282496, 14.160327 ], [ 145.282504, 14.160456 ], [ 145.282573, 14.160504 ], [ 145.282612, 14.160562 ], [ 145.282616, 14.160634 ], [ 145.282591, 14.16072 ], [ 145.282664, 14.160773 ], [ 145.28268, 14.160775 ], [ 145.282717, 14.16078 ], [ 145.282749, 14.160861 ], [ 145.282731, 14.160955 ], [ 145.28273, 14.161049 ], [ 145.282783, 14.161127 ], [ 145.28287, 14.161162 ], [ 145.282967, 14.161188 ], [ 145.283054, 14.161232 ], [ 145.283107, 14.161309 ], [ 145.283168, 14.161378 ], [ 145.28322, 14.161456 ], [ 145.283281, 14.161525 ], [ 145.283343, 14.161566 ], [ 145.283349, 14.16161 ], [ 145.283397, 14.161677 ], [ 145.283397, 14.16173 ], [ 145.283406, 14.16183 ], [ 145.283435, 14.161898 ], [ 145.283454, 14.161984 ], [ 145.283443, 14.162046 ], [ 145.283379, 14.162175 ], [ 145.283417, 14.162261 ], [ 145.283486, 14.162257 ], [ 145.283594, 14.162233 ], [ 145.283657, 14.162291 ], [ 145.28372, 14.162402 ], [ 145.283729, 14.162483 ], [ 145.28388, 14.162599 ], [ 145.28389, 14.162685 ], [ 145.283943, 14.162767 ], [ 145.283967, 14.162829 ], [ 145.28403, 14.16294 ], [ 145.284068, 14.163036 ], [ 145.284106, 14.163208 ], [ 145.284105, 14.163323 ], [ 145.28409, 14.163394 ], [ 145.284099, 14.16349 ], [ 145.284103, 14.163643 ], [ 145.284083, 14.163734 ], [ 145.284092, 14.163806 ], [ 145.28414, 14.163873 ], [ 145.28414, 14.163935 ], [ 145.284154, 14.164012 ], [ 145.284195, 14.164054 ], [ 145.284193, 14.164183 ], [ 145.284227, 14.16438 ], [ 145.284261, 14.164466 ], [ 145.28426, 14.164561 ], [ 145.284242, 14.164655 ], [ 145.284197, 14.164749 ], [ 145.28417, 14.164843 ], [ 145.284178, 14.164937 ], [ 145.284161, 14.16504 ], [ 145.28416, 14.165179 ], [ 145.284081, 14.165202 ], [ 145.284003, 14.16523 ], [ 145.28391, 14.16523 ], [ 145.283836, 14.165287 ], [ 145.283823, 14.165364 ], [ 145.283744, 14.165423 ], [ 145.283673, 14.165483 ], [ 145.283637, 14.165568 ], [ 145.283558, 14.165619 ], [ 145.283522, 14.165705 ], [ 145.28345, 14.165902 ], [ 145.283406, 14.165987 ], [ 145.283467, 14.166126 ], [ 145.283555, 14.166141 ], [ 145.28353, 14.166184 ], [ 145.28344, 14.166275 ], [ 145.283475, 14.16637 ], [ 145.283553, 14.166404 ], [ 145.283605, 14.16634 ], [ 145.283702, 14.166375 ], [ 145.283768, 14.166453 ], [ 145.283886, 14.166402 ], [ 145.283974, 14.166437 ], [ 145.284057, 14.166436 ], [ 145.284131, 14.16648 ], [ 145.284243, 14.166595 ], [ 145.284178, 14.166652 ], [ 145.284138, 14.166756 ], [ 145.284296, 14.16686 ], [ 145.284295, 14.166927 ], [ 145.284295, 14.166954 ], [ 145.284338, 14.167041 ], [ 145.284443, 14.167196 ], [ 145.28446, 14.16729 ], [ 145.28445, 14.167384 ], [ 145.284525, 14.167535 ], [ 145.284544, 14.167754 ], [ 145.284508, 14.167883 ], [ 145.28449, 14.167977 ], [ 145.284445, 14.168062 ], [ 145.284418, 14.168156 ], [ 145.284442, 14.16844 ], [ 145.284459, 14.168534 ], [ 145.284494, 14.16862 ], [ 145.284537, 14.168706 ], [ 145.284545, 14.168818 ], [ 145.284562, 14.168912 ], [ 145.284596, 14.168998 ], [ 145.28464, 14.169085 ], [ 145.284674, 14.169171 ], [ 145.284708, 14.169291 ], [ 145.284733, 14.169574 ], [ 145.284706, 14.169668 ], [ 145.284617, 14.169702 ], [ 145.284538, 14.169762 ], [ 145.284484, 14.169838 ], [ 145.284457, 14.169933 ], [ 145.284448, 14.170027 ], [ 145.284412, 14.170112 ], [ 145.284415, 14.170152 ], [ 145.284377, 14.170222 ], [ 145.284342, 14.170303 ], [ 145.284258, 14.170455 ], [ 145.284267, 14.170579 ], [ 145.284281, 14.170651 ], [ 145.28426, 14.170742 ], [ 145.284206, 14.170785 ], [ 145.284162, 14.170837 ], [ 145.2842, 14.170938 ], [ 145.284199, 14.171052 ], [ 145.284179, 14.171186 ], [ 145.284148, 14.171296 ], [ 145.284143, 14.171358 ], [ 145.284187, 14.171425 ], [ 145.284206, 14.171483 ], [ 145.284215, 14.17154 ], [ 145.284205, 14.171574 ], [ 145.28418, 14.171626 ], [ 145.284189, 14.171703 ], [ 145.284194, 14.171794 ], [ 145.284159, 14.17187 ], [ 145.284178, 14.171918 ], [ 145.284212, 14.171966 ], [ 145.28424, 14.172029 ], [ 145.284211, 14.172143 ], [ 145.284205, 14.172277 ], [ 145.284174, 14.172352 ], [ 145.28416, 14.172387 ], [ 145.284154, 14.172501 ], [ 145.284105, 14.172563 ], [ 145.283972, 14.172548 ], [ 145.283927, 14.172672 ], [ 145.284074, 14.172726 ], [ 145.284147, 14.172822 ], [ 145.284136, 14.172941 ], [ 145.284175, 14.173018 ], [ 145.284193, 14.173123 ], [ 145.284336, 14.1732 ], [ 145.284309, 14.173295 ], [ 145.284238, 14.173354 ], [ 145.284185, 14.173431 ], [ 145.284167, 14.173525 ], [ 145.284113, 14.173602 ], [ 145.284086, 14.173696 ], [ 145.284103, 14.173825 ], [ 145.284173, 14.173894 ], [ 145.284225, 14.17398 ], [ 145.284215, 14.174075 ], [ 145.284214, 14.174169 ], [ 145.284249, 14.174255 ], [ 145.284231, 14.174349 ], [ 145.284177, 14.174426 ], [ 145.284185, 14.174521 ], [ 145.284238, 14.174598 ], [ 145.28428, 14.174688 ], [ 145.28436, 14.174719 ], [ 145.284351, 14.174771 ], [ 145.284324, 14.174822 ], [ 145.284306, 14.174916 ], [ 145.284307, 14.174985 ], [ 145.284292, 14.175066 ], [ 145.284325, 14.175138 ], [ 145.284345, 14.1752 ], [ 145.284329, 14.175277 ], [ 145.28429, 14.175338 ], [ 145.28431, 14.175448 ], [ 145.284345, 14.175543 ], [ 145.284388, 14.175637 ], [ 145.284478, 14.175689 ], [ 145.284565, 14.175823 ], [ 145.284442, 14.175956 ], [ 145.284524, 14.176081 ], [ 145.284604, 14.176102 ], [ 145.28463, 14.176197 ], [ 145.284647, 14.176291 ], [ 145.284699, 14.176395 ], [ 145.284725, 14.176489 ], [ 145.284794, 14.176661 ], [ 145.284811, 14.176756 ], [ 145.284854, 14.176868 ], [ 145.284871, 14.176962 ], [ 145.28487, 14.177056 ], [ 145.284878, 14.177151 ], [ 145.284912, 14.177237 ], [ 145.284956, 14.177332 ], [ 145.284981, 14.177426 ], [ 145.284998, 14.177563 ], [ 145.285066, 14.177804 ], [ 145.285101, 14.17789 ], [ 145.285144, 14.178028 ], [ 145.285178, 14.178122 ], [ 145.285213, 14.178243 ], [ 145.28523, 14.178337 ], [ 145.285264, 14.178423 ], [ 145.285281, 14.178518 ], [ 145.285315, 14.178604 ], [ 145.285341, 14.178698 ], [ 145.285376, 14.178784 ], [ 145.285366, 14.178965 ], [ 145.285338, 14.179059 ], [ 145.285382, 14.179145 ], [ 145.285479, 14.17912 ], [ 145.285575, 14.179129 ], [ 145.285705, 14.179387 ], [ 145.285757, 14.179474 ], [ 145.285853, 14.179654 ], [ 145.285905, 14.179732 ], [ 145.286027, 14.179853 ], [ 145.286149, 14.179991 ], [ 145.286219, 14.180052 ], [ 145.286271, 14.180129 ], [ 145.286401, 14.180388 ], [ 145.286462, 14.180457 ], [ 145.286567, 14.180612 ], [ 145.286636, 14.180672 ], [ 145.286689, 14.18075 ], [ 145.286775, 14.180956 ], [ 145.286844, 14.181137 ], [ 145.28687, 14.181232 ], [ 145.28694, 14.181301 ], [ 145.287, 14.181378 ], [ 145.287062, 14.181447 ], [ 145.287096, 14.181534 ], [ 145.28713, 14.181723 ], [ 145.287164, 14.181809 ], [ 145.287261, 14.181835 ], [ 145.28734, 14.181887 ], [ 145.287401, 14.181956 ], [ 145.287444, 14.182042 ], [ 145.287548, 14.182197 ], [ 145.287618, 14.182258 ], [ 145.287653, 14.182344 ], [ 145.287696, 14.18243 ], [ 145.287748, 14.182508 ], [ 145.287792, 14.182594 ], [ 145.287844, 14.182671 ], [ 145.287905, 14.18274 ], [ 145.287957, 14.182818 ], [ 145.28807, 14.183008 ], [ 145.288131, 14.183077 ], [ 145.288209, 14.18318 ], [ 145.288313, 14.183438 ], [ 145.288374, 14.183516 ], [ 145.288426, 14.183593 ], [ 145.288487, 14.183663 ], [ 145.288557, 14.183723 ], [ 145.288618, 14.183801 ], [ 145.28867, 14.183887 ], [ 145.288704, 14.183982 ], [ 145.288808, 14.184197 ], [ 145.288913, 14.184352 ], [ 145.288947, 14.184438 ], [ 145.289017, 14.184499 ], [ 145.289139, 14.184637 ], [ 145.289183, 14.184723 ], [ 145.289235, 14.184809 ], [ 145.289269, 14.184895 ], [ 145.289295, 14.18499 ], [ 145.289364, 14.18517 ], [ 145.289416, 14.185256 ], [ 145.289459, 14.185351 ], [ 145.289511, 14.185429 ], [ 145.289537, 14.185523 ], [ 145.289598, 14.185592 ], [ 145.28965, 14.18567 ], [ 145.289711, 14.185747 ], [ 145.289763, 14.185825 ], [ 145.289798, 14.185911 ], [ 145.289859, 14.185989 ], [ 145.289929, 14.186058 ], [ 145.289972, 14.186144 ], [ 145.290024, 14.186264 ], [ 145.29005, 14.186359 ], [ 145.290083, 14.186548 ], [ 145.290099, 14.186745 ], [ 145.290125, 14.18684 ], [ 145.29016, 14.186926 ], [ 145.290203, 14.187012 ], [ 145.290229, 14.187107 ], [ 145.290254, 14.187218 ], [ 145.290427, 14.187649 ], [ 145.290453, 14.187743 ], [ 145.290451, 14.187932 ], [ 145.290442, 14.188026 ], [ 145.290476, 14.188129 ], [ 145.290484, 14.188224 ], [ 145.290448, 14.188309 ], [ 145.290377, 14.188378 ], [ 145.290342, 14.188463 ], [ 145.290367, 14.188558 ], [ 145.290428, 14.188627 ], [ 145.290366, 14.188695 ], [ 145.290339, 14.18878 ], [ 145.290312, 14.188883 ], [ 145.290276, 14.188969 ], [ 145.290232, 14.189054 ], [ 145.290178, 14.189131 ], [ 145.290151, 14.189225 ], [ 145.290186, 14.189311 ], [ 145.290273, 14.189346 ], [ 145.290273, 14.189441 ], [ 145.290139, 14.189628 ], [ 145.290043, 14.189645 ], [ 145.289954, 14.189679 ], [ 145.289989, 14.189765 ], [ 145.289962, 14.189876 ], [ 145.289908, 14.189953 ], [ 145.289837, 14.190081 ], [ 145.289765, 14.190261 ], [ 145.289659, 14.190414 ], [ 145.289623, 14.1905 ], [ 145.289578, 14.190585 ], [ 145.289516, 14.190662 ], [ 145.289463, 14.190747 ], [ 145.289418, 14.190833 ], [ 145.289311, 14.190987 ], [ 145.289267, 14.191072 ], [ 145.289205, 14.19114 ], [ 145.289134, 14.191226 ], [ 145.289098, 14.191311 ], [ 145.289045, 14.191388 ], [ 145.289, 14.191473 ], [ 145.288947, 14.19155 ], [ 145.288876, 14.191618 ], [ 145.288796, 14.191669 ], [ 145.288725, 14.191729 ], [ 145.288646, 14.19178 ], [ 145.288575, 14.191839 ], [ 145.288416, 14.191941 ], [ 145.2883, 14.191976 ], [ 145.288213, 14.192008 ], [ 145.287817, 14.192108 ], [ 145.287729, 14.192142 ], [ 145.287596, 14.192218 ], [ 145.287411, 14.192286 ], [ 145.287314, 14.192311 ], [ 145.287235, 14.192362 ], [ 145.287058, 14.192446 ], [ 145.28697, 14.19248 ], [ 145.286838, 14.192522 ], [ 145.286758, 14.192573 ], [ 145.286661, 14.192606 ], [ 145.286582, 14.192657 ], [ 145.286493, 14.192691 ], [ 145.286414, 14.192742 ], [ 145.286326, 14.192784 ], [ 145.286246, 14.192844 ], [ 145.286202, 14.19286 ], [ 145.286149, 14.192886 ], [ 145.286061, 14.192937 ], [ 145.285964, 14.192979 ], [ 145.285884, 14.19303 ], [ 145.285708, 14.193114 ], [ 145.285611, 14.193139 ], [ 145.285522, 14.193173 ], [ 145.285426, 14.193198 ], [ 145.285337, 14.193232 ], [ 145.285144, 14.193282 ], [ 145.284967, 14.193349 ], [ 145.284791, 14.193434 ], [ 145.284702, 14.193467 ], [ 145.284509, 14.193517 ], [ 145.28442, 14.193551 ], [ 145.284324, 14.193559 ], [ 145.284227, 14.193558 ], [ 145.28413, 14.193575 ], [ 145.284033, 14.1936 ], [ 145.283897, 14.193644 ], [ 145.283793, 14.193725 ], [ 145.283808, 14.193782 ], [ 145.283846, 14.193873 ], [ 145.283687, 14.193975 ], [ 145.283617, 14.194034 ], [ 145.28352, 14.194025 ], [ 145.283423, 14.194033 ], [ 145.283335, 14.194075 ], [ 145.283247, 14.194109 ], [ 145.28315, 14.194134 ], [ 145.283119, 14.194055 ], [ 145.28308, 14.194039 ], [ 145.283036, 14.194022 ], [ 145.282966, 14.193961 ], [ 145.28287, 14.193926 ], [ 145.282782, 14.19396 ], [ 145.282685, 14.193985 ], [ 145.282597, 14.19395 ], [ 145.2825, 14.193958 ], [ 145.282403, 14.193983 ], [ 145.282315, 14.194034 ], [ 145.282218, 14.194024 ], [ 145.282025, 14.193972 ], [ 145.281929, 14.193962 ], [ 145.281884, 14.194048 ], [ 145.281813, 14.194107 ], [ 145.281786, 14.194201 ], [ 145.281689, 14.194226 ], [ 145.281601, 14.19426 ], [ 145.281504, 14.194268 ], [ 145.281407, 14.194293 ], [ 145.281337, 14.194353 ], [ 145.281283, 14.194429 ], [ 145.281212, 14.194489 ], [ 145.281116, 14.194471 ], [ 145.281019, 14.194428 ], [ 145.280923, 14.194427 ], [ 145.280826, 14.194452 ], [ 145.280746, 14.194503 ], [ 145.280553, 14.194536 ], [ 145.280464, 14.194578 ], [ 145.280385, 14.194629 ], [ 145.280297, 14.194663 ], [ 145.2802, 14.19467 ], [ 145.280006, 14.194703 ], [ 145.279927, 14.194754 ], [ 145.27983, 14.194745 ], [ 145.279776, 14.194662 ], [ 145.279663, 14.194661 ], [ 145.279558, 14.194649 ], [ 145.279479, 14.194597 ], [ 145.279392, 14.194553 ], [ 145.279295, 14.194527 ], [ 145.279207, 14.19456 ], [ 145.279171, 14.194646 ], [ 145.279083, 14.19468 ], [ 145.278986, 14.194679 ], [ 145.278889, 14.194695 ], [ 145.278793, 14.194695 ], [ 145.278696, 14.194685 ], [ 145.278616, 14.194736 ], [ 145.278589, 14.19483 ], [ 145.278519, 14.19477 ], [ 145.278432, 14.194735 ], [ 145.278335, 14.194717 ], [ 145.278212, 14.194733 ], [ 145.278115, 14.194733 ], [ 145.277921, 14.194783 ], [ 145.277886, 14.194868 ], [ 145.277806, 14.194919 ], [ 145.277718, 14.194953 ], [ 145.277553, 14.195029 ], [ 145.277585, 14.195081 ], [ 145.27754, 14.195166 ], [ 145.277443, 14.195191 ], [ 145.27736, 14.195175 ], [ 145.277364, 14.195242 ], [ 145.277293, 14.195302 ], [ 145.277205, 14.195335 ], [ 145.277117, 14.195378 ], [ 145.277028, 14.195411 ], [ 145.276738, 14.195486 ], [ 145.276658, 14.195537 ], [ 145.276587, 14.195597 ], [ 145.276499, 14.19563 ], [ 145.27642, 14.195681 ], [ 145.276313, 14.195835 ], [ 145.276233, 14.195886 ], [ 145.276145, 14.19592 ], [ 145.276083, 14.195988 ], [ 145.276012, 14.196047 ], [ 145.275933, 14.196098 ], [ 145.275827, 14.196123 ], [ 145.275739, 14.196165 ], [ 145.275659, 14.196216 ], [ 145.275571, 14.196259 ], [ 145.275474, 14.196267 ], [ 145.275378, 14.19624 ], [ 145.275281, 14.196222 ], [ 145.275184, 14.196222 ], [ 145.275073, 14.196235 ], [ 145.274929, 14.196331 ], [ 145.274832, 14.196331 ], [ 145.274735, 14.196313 ], [ 145.274647, 14.196356 ], [ 145.274484, 14.19636 ], [ 145.274391, 14.196331 ], [ 145.274257, 14.196387 ], [ 145.274148, 14.19635 ], [ 145.274053, 14.196335 ], [ 145.273935, 14.196377 ], [ 145.273723, 14.196411 ], [ 145.273328, 14.19643 ], [ 145.273056, 14.196455 ], [ 145.272845, 14.196484 ], [ 145.272732, 14.196606 ], [ 145.272628, 14.196734 ], [ 145.272484, 14.196831 ], [ 145.27222, 14.196921 ], [ 145.271978, 14.196963 ], [ 145.271692, 14.197046 ], [ 145.271487, 14.197023 ], [ 145.271253, 14.197029 ], [ 145.271019, 14.197013 ], [ 145.270828, 14.197118 ], [ 145.270542, 14.197245 ], [ 145.270257, 14.197257 ], [ 145.270037, 14.197284 ], [ 145.269825, 14.197247 ], [ 145.269643, 14.197243 ], [ 145.269474, 14.197301 ], [ 145.269335, 14.197307 ], [ 145.269167, 14.197228 ], [ 145.268911, 14.197233 ], [ 145.268755, 14.197309 ], [ 145.26856, 14.197259 ], [ 145.268355, 14.197236 ], [ 145.268172, 14.197299 ], [ 145.268069, 14.197323 ], [ 145.26796, 14.19729 ], [ 145.267733, 14.197332 ], [ 145.267506, 14.197344 ], [ 145.267088, 14.197398 ], [ 145.266982, 14.19739 ], [ 145.266759, 14.197374 ], [ 145.266526, 14.197323 ], [ 145.266153, 14.197341 ], [ 145.26602, 14.197462 ], [ 145.26566, 14.197602 ], [ 145.265301, 14.197763 ], [ 145.264882, 14.197939 ], [ 145.264347, 14.198156 ], [ 145.26384, 14.198467 ], [ 145.263444, 14.198621 ], [ 145.263084, 14.198739 ], [ 145.262659, 14.198872 ], [ 145.262329, 14.198984 ], [ 145.261919, 14.199059 ], [ 145.261589, 14.199114 ], [ 145.261429, 14.199113 ], [ 145.261311, 14.199112 ], [ 145.261011, 14.199095 ], [ 145.260609, 14.199092 ], [ 145.260163, 14.199111 ], [ 145.259592, 14.199114 ], [ 145.258883, 14.199094 ], [ 145.257997, 14.199131 ], [ 145.257258, 14.199268 ], [ 145.256547, 14.199348 ], [ 145.255991, 14.199359 ], [ 145.255231, 14.199382 ], [ 145.254674, 14.199442 ], [ 145.254051, 14.199687 ], [ 145.253297, 14.199717 ], [ 145.253004, 14.199715 ], [ 145.252638, 14.199741 ], [ 145.252402, 14.199725 ], [ 145.252019, 14.199875 ], [ 145.251869, 14.199907 ], [ 145.251628, 14.199862 ], [ 145.251496, 14.199947 ], [ 145.25124, 14.199952 ], [ 145.250947, 14.199971 ], [ 145.250369, 14.200003 ], [ 145.249813, 14.199991 ], [ 145.249381, 14.200081 ], [ 145.248956, 14.200149 ], [ 145.248634, 14.200133 ], [ 145.248026, 14.200242 ], [ 145.2475, 14.200239 ], [ 145.247089, 14.200335 ], [ 145.246833, 14.200319 ], [ 145.246394, 14.200309 ], [ 145.245838, 14.200319 ], [ 145.245418, 14.200359 ], [ 145.245244, 14.200347 ], [ 145.24451, 14.200298 ], [ 145.244318, 14.200293 ], [ 145.243691, 14.200278 ], [ 145.242784, 14.2003 ], [ 145.241946, 14.200236 ], [ 145.241814, 14.200254 ], [ 145.241672, 14.200253 ], [ 145.241319, 14.20026 ], [ 145.24104, 14.200163 ], [ 145.240801, 14.20006 ], [ 145.240463, 14.200005 ], [ 145.240116, 14.199864 ], [ 145.239685, 14.19978 ], [ 145.239318, 14.199757 ], [ 145.239062, 14.199756 ], [ 145.238814, 14.199644 ], [ 145.238493, 14.199544 ], [ 145.238201, 14.199428 ], [ 145.237917, 14.199283 ], [ 145.237567, 14.199174 ], [ 145.237239, 14.199036 ], [ 145.237042, 14.198963 ], [ 145.236853, 14.19884 ], [ 145.236635, 14.198667 ], [ 145.236431, 14.198573 ], [ 145.236009, 14.198447 ], [ 145.235701, 14.198287 ], [ 145.235058, 14.197742 ], [ 145.234822, 14.197512 ], [ 145.234454, 14.197316 ], [ 145.23416, 14.1971 ], [ 145.233875, 14.19697 ], [ 145.233433, 14.196831 ], [ 145.23319, 14.196658 ], [ 145.23294, 14.196516 ], [ 145.232673, 14.196376 ], [ 145.23232, 14.196277 ], [ 145.232084, 14.196285 ], [ 145.231948, 14.196174 ], [ 145.231834, 14.196141 ], [ 145.231566, 14.196066 ], [ 145.231171, 14.195891 ], [ 145.230408, 14.195627 ], [ 145.229888, 14.195435 ], [ 145.229715, 14.195317 ], [ 145.229509, 14.195209 ], [ 145.229461, 14.195118 ], [ 145.229246, 14.195044 ], [ 145.229065, 14.194971 ], [ 145.228855, 14.194945 ], [ 145.228754, 14.194877 ], [ 145.228616, 14.194827 ], [ 145.2285, 14.194797 ], [ 145.228264, 14.194649 ], [ 145.228175, 14.194587 ], [ 145.228031, 14.194524 ], [ 145.227918, 14.194459 ], [ 145.227805, 14.194345 ], [ 145.227749, 14.194201 ], [ 145.227561, 14.1941 ], [ 145.227472, 14.194 ], [ 145.227368, 14.193926 ], [ 145.227177, 14.193816 ], [ 145.227115, 14.193716 ], [ 145.226935, 14.193683 ], [ 145.226774, 14.193638 ], [ 145.226628, 14.193535 ], [ 145.226469, 14.193474 ], [ 145.226273, 14.193463 ], [ 145.226004, 14.19327 ], [ 145.226005, 14.193165 ], [ 145.22603, 14.19303 ], [ 145.225815, 14.192938 ], [ 145.225615, 14.192843 ], [ 145.225475, 14.192737 ], [ 145.225254, 14.192621 ], [ 145.225096, 14.19255 ], [ 145.224998, 14.192459 ], [ 145.224875, 14.192385 ], [ 145.224795, 14.192311 ], [ 145.224652, 14.192243 ], [ 145.224533, 14.192157 ], [ 145.224404, 14.192086 ], [ 145.224303, 14.192041 ], [ 145.224181, 14.191956 ], [ 145.224076, 14.191934 ], [ 145.223974, 14.191922 ], [ 145.223911, 14.191907 ], [ 145.223843, 14.191877 ], [ 145.223765, 14.191806 ], [ 145.223724, 14.191756 ], [ 145.223625, 14.191756 ], [ 145.223386, 14.191605 ], [ 145.22333, 14.19154 ], [ 145.223148, 14.191486 ], [ 145.223184, 14.191425 ], [ 145.223119, 14.191343 ], [ 145.222999, 14.191365 ], [ 145.222916, 14.191274 ], [ 145.222814, 14.191215 ], [ 145.222683, 14.191179 ], [ 145.222584, 14.19114 ], [ 145.222477, 14.191075 ], [ 145.222349, 14.190957 ], [ 145.222262, 14.19091 ], [ 145.222157, 14.190903 ], [ 145.222032, 14.190867 ], [ 145.221889, 14.190816 ], [ 145.221715, 14.190762 ], [ 145.221599, 14.190703 ], [ 145.221425, 14.190646 ], [ 145.221294, 14.190619 ], [ 145.221201, 14.190559 ], [ 145.221158, 14.190522 ], [ 145.221105, 14.190542 ], [ 145.221031, 14.190459 ], [ 145.220855, 14.190343 ], [ 145.220808, 14.190236 ], [ 145.220749, 14.190169 ], [ 145.220645, 14.190196 ], [ 145.220613, 14.190192 ], [ 145.220425, 14.19014 ], [ 145.220175, 14.190002 ], [ 145.220064, 14.189888 ], [ 145.219943, 14.189886 ], [ 145.219388, 14.189543 ], [ 145.219052, 14.189371 ], [ 145.21895, 14.189293 ], [ 145.218818, 14.189212 ], [ 145.21868, 14.189113 ], [ 145.218444, 14.188966 ], [ 145.21824, 14.188847 ], [ 145.218165, 14.188769 ], [ 145.218172, 14.18875 ], [ 145.218152, 14.188716 ], [ 145.217983, 14.188499 ], [ 145.217807, 14.18835 ], [ 145.217603, 14.188124 ], [ 145.217393, 14.188046 ], [ 145.217169, 14.187862 ], [ 145.21693, 14.187703 ], [ 145.216725, 14.187596 ], [ 145.216506, 14.187436 ], [ 145.216247, 14.187324 ], [ 145.216022, 14.187194 ], [ 145.215817, 14.187063 ], [ 145.215637, 14.186976 ], [ 145.215412, 14.186859 ], [ 145.215246, 14.186729 ], [ 145.21509, 14.186684 ], [ 145.214861, 14.186642 ], [ 145.214376, 14.186332 ], [ 145.214025, 14.186174 ], [ 145.213886, 14.186107 ], [ 145.2138, 14.185975 ], [ 145.213695, 14.185861 ], [ 145.213507, 14.185737 ], [ 145.213373, 14.185637 ], [ 145.21325, 14.18559 ], [ 145.213148, 14.185565 ], [ 145.212938, 14.185396 ], [ 145.212856, 14.185281 ], [ 145.212749, 14.185141 ], [ 145.212554, 14.18503 ], [ 145.212082, 14.184572 ], [ 145.211726, 14.184278 ], [ 145.21158, 14.184248 ], [ 145.211359, 14.184213 ], [ 145.211218, 14.184073 ], [ 145.211018, 14.183909 ], [ 145.210789, 14.183764 ], [ 145.210634, 14.183581 ], [ 145.210556, 14.183532 ], [ 145.210399, 14.183512 ], [ 145.210316, 14.183411 ], [ 145.210249, 14.183301 ], [ 145.210097, 14.183228 ], [ 145.209956, 14.18315 ], [ 145.209839, 14.183106 ], [ 145.209623, 14.183071 ], [ 145.209291, 14.182863 ], [ 145.208921, 14.182621 ], [ 145.208502, 14.182297 ], [ 145.208317, 14.182119 ], [ 145.208361, 14.182081 ], [ 145.208327, 14.182052 ], [ 145.208253, 14.182076 ], [ 145.208048, 14.181969 ], [ 145.207899, 14.181829 ], [ 145.207761, 14.181699 ], [ 145.207537, 14.181587 ], [ 145.207367, 14.181414 ], [ 145.207147, 14.181269 ], [ 145.20701, 14.181186 ], [ 145.206972, 14.181143 ], [ 145.206874, 14.181094 ], [ 145.206855, 14.181037 ], [ 145.206821, 14.18096 ], [ 145.206728, 14.180955 ], [ 145.206704, 14.180883 ], [ 145.20671, 14.180787 ], [ 145.206573, 14.18069 ], [ 145.206359, 14.180474 ], [ 145.206266, 14.180468 ], [ 145.206257, 14.180377 ], [ 145.206204, 14.180296 ], [ 145.206072, 14.180232 ], [ 145.205985, 14.180069 ], [ 145.205848, 14.180039 ], [ 145.20579, 14.179919 ], [ 145.205683, 14.179823 ], [ 145.205629, 14.179784 ], [ 145.205444, 14.17963 ], [ 145.205376, 14.17961 ], [ 145.205298, 14.179524 ], [ 145.205147, 14.179403 ], [ 145.205074, 14.179369 ], [ 145.204987, 14.17921 ], [ 145.204894, 14.179114 ], [ 145.204828, 14.178903 ], [ 145.20479, 14.178735 ], [ 145.204741, 14.178649 ], [ 145.204723, 14.178429 ], [ 145.20467, 14.178338 ], [ 145.204573, 14.178251 ], [ 145.204539, 14.178188 ], [ 145.204545, 14.17805 ], [ 145.204595, 14.177926 ], [ 145.204573, 14.177849 ], [ 145.204543, 14.177739 ], [ 145.204499, 14.177729 ], [ 145.204225, 14.177574 ], [ 145.204029, 14.177544 ], [ 145.203903, 14.177457 ], [ 145.203874, 14.177404 ], [ 145.203827, 14.177287 ], [ 145.203678, 14.177166 ], [ 145.203245, 14.176946 ], [ 145.202817, 14.176844 ], [ 145.202523, 14.176738 ], [ 145.202263, 14.176637 ], [ 145.202115, 14.176523 ], [ 145.201898, 14.176418 ], [ 145.201754, 14.176398 ], [ 145.201603, 14.176472 ], [ 145.201421, 14.176414 ], [ 145.201301, 14.176296 ], [ 145.201201, 14.176168 ], [ 145.201096, 14.175988 ], [ 145.200793, 14.175896 ], [ 145.200547, 14.17581 ], [ 145.200287, 14.175737 ], [ 145.200099, 14.17567 ], [ 145.199892, 14.17565 ], [ 145.19969, 14.175596 ], [ 145.199421, 14.175472 ], [ 145.198957, 14.175329 ], [ 145.198704, 14.175285 ], [ 145.198475, 14.175192 ], [ 145.19824, 14.175152 ], [ 145.198128, 14.17506 ], [ 145.197634, 14.17487 ], [ 145.197522, 14.174754 ], [ 145.197414, 14.174773 ], [ 145.19738, 14.174744 ], [ 145.197435, 14.174658 ], [ 145.197332, 14.174619 ], [ 145.19722, 14.174613 ], [ 145.197098, 14.174498 ], [ 145.197006, 14.174401 ], [ 145.196737, 14.174256 ], [ 145.196479, 14.174086 ], [ 145.196278, 14.174037 ], [ 145.195915, 14.174044 ], [ 145.195577, 14.174056 ], [ 145.195322, 14.174116 ], [ 145.194994, 14.174061 ], [ 145.194802, 14.174069 ], [ 145.194754, 14.17404 ], [ 145.194686, 14.173958 ], [ 145.194696, 14.173925 ], [ 145.194685, 14.173896 ], [ 145.194536, 14.173849 ], [ 145.194377, 14.173814 ], [ 145.194165, 14.173709 ], [ 145.193929, 14.173703 ], [ 145.193698, 14.173682 ], [ 145.193413, 14.173689 ], [ 145.193162, 14.173702 ], [ 145.192988, 14.173743 ], [ 145.192819, 14.173834 ], [ 145.192534, 14.17387 ], [ 145.192138, 14.173849 ], [ 145.192003, 14.173815 ], [ 145.191767, 14.173776 ], [ 145.191545, 14.173769 ], [ 145.191236, 14.173734 ], [ 145.19101, 14.173667 ], [ 145.190799, 14.173566 ], [ 145.190539, 14.173475 ], [ 145.190284, 14.173308 ], [ 145.190112, 14.173184 ], [ 145.189992, 14.173052 ], [ 145.189946, 14.17302 ], [ 145.189848, 14.172952 ], [ 145.189666, 14.172842 ], [ 145.18944, 14.17269 ], [ 145.189195, 14.172551 ], [ 145.188921, 14.172375 ], [ 145.18871, 14.172265 ], [ 145.188373, 14.172117 ], [ 145.188099, 14.171983 ], [ 145.187888, 14.171868 ], [ 145.187737, 14.171768 ], [ 145.187434, 14.171742 ], [ 145.187175, 14.171649 ], [ 145.187058, 14.171629 ], [ 145.187019, 14.171547 ], [ 145.186921, 14.171527 ], [ 145.186901, 14.171556 ], [ 145.186818, 14.171551 ], [ 145.186716, 14.171473 ], [ 145.186726, 14.171387 ], [ 145.186711, 14.171365 ], [ 145.186666, 14.171383 ], [ 145.186637, 14.171388 ], [ 145.186638, 14.171406 ], [ 145.186613, 14.171458 ], [ 145.186559, 14.171486 ], [ 145.186427, 14.171371 ], [ 145.186344, 14.171322 ], [ 145.186251, 14.171326 ], [ 145.186046, 14.171287 ], [ 145.185972, 14.171315 ], [ 145.185874, 14.171261 ], [ 145.185816, 14.171189 ], [ 145.185738, 14.17115 ], [ 145.18566, 14.171073 ], [ 145.185577, 14.171039 ], [ 145.185514, 14.171 ], [ 145.18546, 14.170914 ], [ 145.185455, 14.17088 ], [ 145.185401, 14.170861 ], [ 145.185374, 14.170854 ], [ 145.185167, 14.170806 ], [ 145.18482, 14.170699 ], [ 145.184566, 14.170611 ], [ 145.184287, 14.170565 ], [ 145.184034, 14.170507 ], [ 145.183651, 14.170374 ], [ 145.183143, 14.170241 ], [ 145.182703, 14.170061 ], [ 145.182083, 14.16976 ], [ 145.181833, 14.169662 ], [ 145.181605, 14.169528 ], [ 145.181442, 14.169409 ], [ 145.181288, 14.169318 ], [ 145.181047, 14.169241 ], [ 145.180807, 14.169154 ], [ 145.180594, 14.169205 ], [ 145.180381, 14.169278 ], [ 145.180261, 14.169301 ], [ 145.180169, 14.169249 ], [ 145.18002, 14.169247 ], [ 145.17988, 14.169227 ], [ 145.179697, 14.169146 ], [ 145.179514, 14.169079 ], [ 145.179404, 14.169026 ], [ 145.179303, 14.169016 ], [ 145.179192, 14.169015 ], [ 145.179076, 14.168981 ], [ 145.178961, 14.168905 ], [ 145.178807, 14.16889 ], [ 145.178672, 14.168818 ], [ 145.178514, 14.168718 ], [ 145.178341, 14.168646 ], [ 145.178153, 14.168579 ], [ 145.177994, 14.168507 ], [ 145.177855, 14.168454 ], [ 145.177725, 14.168364 ], [ 145.1776, 14.168382 ], [ 145.177537, 14.168348 ], [ 145.177426, 14.168319 ], [ 145.177311, 14.168257 ], [ 145.177181, 14.168199 ], [ 145.177095, 14.168109 ], [ 145.176955, 14.168099 ], [ 145.176825, 14.168145 ], [ 145.17668, 14.168182 ], [ 145.176453, 14.168152 ], [ 145.176237, 14.168075 ], [ 145.175863, 14.167919 ], [ 145.175746, 14.167775 ], [ 145.175621, 14.167759 ], [ 145.175463, 14.167664 ], [ 145.175382, 14.167527 ], [ 145.175295, 14.167521 ], [ 145.17518, 14.167422 ], [ 145.175093, 14.167426 ], [ 145.174968, 14.167415 ], [ 145.174775, 14.167348 ], [ 145.174568, 14.167313 ], [ 145.174246, 14.167132 ], [ 145.17402, 14.16705 ], [ 145.173847, 14.167002 ], [ 145.17361, 14.167028 ], [ 145.17335, 14.16705 ], [ 145.173363, 14.167144 ], [ 145.173184, 14.167237 ], [ 145.17299, 14.167381 ], [ 145.172878, 14.167489 ], [ 145.172737, 14.167577 ], [ 145.172588, 14.1676 ], [ 145.172433, 14.167603 ], [ 145.172331, 14.167643 ], [ 145.172242, 14.167748 ], [ 145.172134, 14.167657 ], [ 145.172013, 14.167623 ], [ 145.171856, 14.167587 ], [ 145.171668, 14.1676 ], [ 145.171499, 14.167579 ], [ 145.17127, 14.167641 ], [ 145.171004, 14.167691 ], [ 145.170782, 14.167774 ], [ 145.170428, 14.167848 ], [ 145.170376, 14.16786 ], [ 145.170183, 14.167873 ], [ 145.170048, 14.167872 ], [ 145.169782, 14.167898 ], [ 145.169695, 14.167893 ], [ 145.169604, 14.16785 ], [ 145.169473, 14.167882 ], [ 145.169382, 14.167876 ], [ 145.169099, 14.167853 ], [ 145.168986, 14.167855 ], [ 145.168726, 14.167848 ], [ 145.168465, 14.167888 ], [ 145.168243, 14.16791 ], [ 145.168083, 14.167951 ], [ 145.167895, 14.167987 ], [ 145.167823, 14.168054 ], [ 145.16772, 14.168024 ], [ 145.167397, 14.168026 ], [ 145.167248, 14.16802 ], [ 145.167098, 14.168057 ], [ 145.166914, 14.168117 ], [ 145.166797, 14.168194 ], [ 145.166658, 14.168152 ], [ 145.166532, 14.168184 ], [ 145.166392, 14.168207 ], [ 145.16631, 14.168244 ], [ 145.166223, 14.168262 ], [ 145.166088, 14.168247 ], [ 145.165992, 14.168246 ], [ 145.165895, 14.168302 ], [ 145.16574, 14.168315 ], [ 145.165445, 14.168392 ], [ 145.165363, 14.168444 ], [ 145.165237, 14.168461 ], [ 145.165175, 14.168395 ], [ 145.165044, 14.168446 ], [ 145.165029, 14.168531 ], [ 145.164971, 14.168535 ], [ 145.164894, 14.168468 ], [ 145.164706, 14.16849 ], [ 145.164671, 14.168617 ], [ 145.164575, 14.168612 ], [ 145.164542, 14.168541 ], [ 145.16445, 14.168531 ], [ 145.1643, 14.168548 ], [ 145.164108, 14.168495 ], [ 145.163886, 14.168503 ], [ 145.163813, 14.168559 ], [ 145.163751, 14.168497 ], [ 145.16363, 14.168525 ], [ 145.16348, 14.168547 ], [ 145.163408, 14.16849 ], [ 145.163331, 14.168499 ], [ 145.163249, 14.16854 ], [ 145.163118, 14.168535 ], [ 145.162877, 14.168561 ], [ 145.162635, 14.168573 ], [ 145.162472, 14.168563 ], [ 145.162327, 14.168595 ], [ 145.162201, 14.168589 ], [ 145.161922, 14.168549 ], [ 145.161767, 14.168553 ], [ 145.161724, 14.168529 ], [ 145.161565, 14.168518 ], [ 145.161372, 14.168517 ], [ 145.161116, 14.168519 ], [ 145.160986, 14.168467 ], [ 145.160818, 14.168442 ], [ 145.160668, 14.168426 ], [ 145.160321, 14.168344 ], [ 145.160196, 14.168333 ], [ 145.1601, 14.168281 ], [ 145.15996, 14.168237 ], [ 145.159931, 14.168232 ], [ 145.159845, 14.168218 ], [ 145.159408, 14.167951 ], [ 145.159293, 14.167851 ], [ 145.15912, 14.167723 ], [ 145.158996, 14.16759 ], [ 145.158896, 14.167443 ], [ 145.158829, 14.167297 ], [ 145.158723, 14.167181 ], [ 145.15856, 14.167116 ], [ 145.158518, 14.167049 ], [ 145.158494, 14.166969 ], [ 145.158446, 14.166868 ], [ 145.158293, 14.166751 ], [ 145.158218, 14.166584 ], [ 145.158151, 14.166392 ], [ 145.158133, 14.166153 ], [ 145.15813, 14.165918 ], [ 145.158108, 14.165612 ], [ 145.157999, 14.165534 ], [ 145.157918, 14.165364 ], [ 145.158028, 14.165248 ], [ 145.157897, 14.165132 ], [ 145.157869, 14.164955 ], [ 145.158215, 14.164551 ], [ 145.158332, 14.164346 ], [ 145.158299, 14.164199 ], [ 145.158237, 14.164091 ], [ 145.158079, 14.164042 ], [ 145.157977, 14.164046 ], [ 145.157905, 14.163994 ], [ 145.157906, 14.163909 ], [ 145.15781, 14.163805 ], [ 145.157859, 14.163711 ], [ 145.157773, 14.163659 ], [ 145.157683, 14.16372 ], [ 145.157535, 14.163757 ], [ 145.157377, 14.163722 ], [ 145.157414, 14.163622 ], [ 145.157316, 14.163519 ], [ 145.15744, 14.163431 ], [ 145.157259, 14.163424 ], [ 145.157129, 14.163385 ], [ 145.157062, 14.163286 ], [ 145.15699, 14.163205 ], [ 145.156879, 14.163158 ], [ 145.156871, 14.163059 ], [ 145.156789, 14.162964 ], [ 145.156664, 14.162949 ], [ 145.156578, 14.162854 ], [ 145.156487, 14.162768 ], [ 145.156401, 14.162669 ], [ 145.156324, 14.162598 ], [ 145.156046, 14.16237 ], [ 145.155826, 14.162194 ], [ 145.155788, 14.162109 ], [ 145.155664, 14.161962 ], [ 145.155616, 14.161886 ], [ 145.155588, 14.161811 ], [ 145.155448, 14.161758 ], [ 145.155357, 14.1617 ], [ 145.155305, 14.161611 ], [ 145.155233, 14.161544 ], [ 145.15519, 14.161431 ], [ 145.155118, 14.161402 ], [ 145.15507, 14.161402 ], [ 145.155037, 14.161317 ], [ 145.155004, 14.161218 ], [ 145.154936, 14.161194 ], [ 145.154874, 14.161151 ], [ 145.154807, 14.161084 ], [ 145.154735, 14.160994 ], [ 145.154639, 14.160951 ], [ 145.154567, 14.160894 ], [ 145.154563, 14.160809 ], [ 145.154498, 14.160714 ], [ 145.15444, 14.160678 ], [ 145.15436, 14.160602 ], [ 145.154305, 14.160541 ], [ 145.154265, 14.16048 ], [ 145.154222, 14.160471 ], [ 145.154204, 14.160414 ], [ 145.154146, 14.160347 ], [ 145.154122, 14.160256 ], [ 145.15407, 14.160202 ], [ 145.153962, 14.160192 ], [ 145.153919, 14.160161 ], [ 145.153892, 14.160056 ], [ 145.153813, 14.160009 ], [ 145.153753, 14.159872 ], [ 145.15367, 14.159871 ], [ 145.153646, 14.159839 ], [ 145.153601, 14.15975 ], [ 145.153531, 14.15977 ], [ 145.153499, 14.159733 ], [ 145.15352, 14.159621 ], [ 145.15345, 14.159576 ], [ 145.153347, 14.159447 ], [ 145.153297, 14.159422 ], [ 145.153258, 14.15935 ], [ 145.153214, 14.159345 ], [ 145.153165, 14.159311 ], [ 145.152943, 14.15897 ], [ 145.152826, 14.15882 ], [ 145.152729, 14.158743 ], [ 145.152656, 14.158666 ], [ 145.152538, 14.158703 ], [ 145.152415, 14.158702 ], [ 145.152323, 14.158606 ], [ 145.152246, 14.158429 ], [ 145.152178, 14.158366 ], [ 145.152115, 14.158318 ], [ 145.152037, 14.158245 ], [ 145.151993, 14.158159 ], [ 145.151896, 14.158086 ], [ 145.151832, 14.158086 ], [ 145.151809, 14.157942 ], [ 145.151701, 14.157894 ], [ 145.151633, 14.157855 ], [ 145.15158, 14.157787 ], [ 145.151492, 14.157696 ], [ 145.151444, 14.157633 ], [ 145.151351, 14.157613 ], [ 145.15122, 14.157479 ], [ 145.151162, 14.157339 ], [ 145.151133, 14.157282 ], [ 145.151084, 14.157277 ], [ 145.150972, 14.157214 ], [ 145.150938, 14.157132 ], [ 145.150831, 14.157036 ], [ 145.150816, 14.156982 ], [ 145.150798, 14.156916 ], [ 145.150769, 14.156877 ], [ 145.15071, 14.156848 ], [ 145.150627, 14.156771 ], [ 145.150633, 14.156709 ], [ 145.150628, 14.156651 ], [ 145.150604, 14.156603 ], [ 145.150482, 14.156559 ], [ 145.150409, 14.156511 ], [ 145.15037, 14.156458 ], [ 145.150258, 14.156419 ], [ 145.150175, 14.156375 ], [ 145.150077, 14.156303 ], [ 145.150088, 14.156217 ], [ 145.150049, 14.156154 ], [ 145.149961, 14.156091 ], [ 145.149933, 14.156015 ], [ 145.149874, 14.155966 ], [ 145.149836, 14.155866 ], [ 145.149797, 14.155851 ], [ 145.14968, 14.155788 ], [ 145.149626, 14.155716 ], [ 145.149583, 14.155649 ], [ 145.149485, 14.1556 ], [ 145.149402, 14.155532 ], [ 145.149334, 14.155527 ], [ 145.149295, 14.155422 ], [ 145.149252, 14.155326 ], [ 145.149179, 14.155306 ], [ 145.149111, 14.155248 ], [ 145.149004, 14.155132 ], [ 145.148999, 14.155085 ], [ 145.148961, 14.154993 ], [ 145.148907, 14.154979 ], [ 145.148883, 14.154931 ], [ 145.148859, 14.154844 ], [ 145.148805, 14.154849 ], [ 145.148747, 14.154743 ], [ 145.148684, 14.154723 ], [ 145.148645, 14.154651 ], [ 145.148567, 14.154565 ], [ 145.148543, 14.154502 ], [ 145.148534, 14.154421 ], [ 145.148495, 14.154382 ], [ 145.148496, 14.154306 ], [ 145.148438, 14.154234 ], [ 145.148345, 14.154209 ], [ 145.148222, 14.154218 ], [ 145.148169, 14.154165 ], [ 145.148111, 14.154064 ], [ 145.147979, 14.153981 ], [ 145.14797, 14.153924 ], [ 145.147946, 14.153838 ], [ 145.147902, 14.153809 ], [ 145.147902, 14.153732 ], [ 145.147874, 14.153627 ], [ 145.147791, 14.153583 ], [ 145.147728, 14.153506 ], [ 145.147679, 14.153424 ], [ 145.147636, 14.153333 ], [ 145.147588, 14.15328 ], [ 145.14751, 14.153232 ], [ 145.147427, 14.15315 ], [ 145.147363, 14.153123 ], [ 145.147082, 14.152812 ], [ 145.146535, 14.152478 ], [ 145.146286, 14.152457 ], [ 145.146079, 14.151968 ], [ 145.145611, 14.151653 ], [ 145.145322, 14.151001 ], [ 145.144836, 14.150222 ], [ 145.144363, 14.149219 ], [ 145.143982, 14.148432 ], [ 145.143716, 14.147586 ], [ 145.143563, 14.1471 ], [ 145.143492, 14.146763 ], [ 145.143455, 14.146675 ], [ 145.143449, 14.146635 ], [ 145.143372, 14.146479 ], [ 145.143234, 14.146188 ], [ 145.143082, 14.145957 ], [ 145.142998, 14.145991 ], [ 145.142731, 14.145992 ], [ 145.142624, 14.145915 ], [ 145.142611, 14.145727 ], [ 145.14267, 14.145667 ], [ 145.142685, 14.145495 ], [ 145.142634, 14.145307 ], [ 145.142609, 14.145059 ], [ 145.142517, 14.145006 ], [ 145.142469, 14.144732 ], [ 145.142401, 14.144393 ], [ 145.142329, 14.144239 ], [ 145.142231, 14.144186 ], [ 145.14191, 14.143844 ], [ 145.141759, 14.14378 ], [ 145.14151, 14.143601 ], [ 145.141503, 14.143534 ], [ 145.141375, 14.143423 ], [ 145.141287, 14.143404 ], [ 145.141209, 14.143312 ], [ 145.141102, 14.143153 ], [ 145.141078, 14.14312 ], [ 145.14099, 14.143076 ], [ 145.140913, 14.142979 ], [ 145.140825, 14.142869 ], [ 145.140782, 14.142797 ], [ 145.140743, 14.142768 ], [ 145.140743, 14.14272 ], [ 145.140695, 14.142677 ], [ 145.140676, 14.142591 ], [ 145.140622, 14.142547 ], [ 145.140559, 14.142532 ], [ 145.140525, 14.142475 ], [ 145.140437, 14.14245 ], [ 145.140419, 14.14244 ], [ 145.140378, 14.142416 ], [ 145.140354, 14.142354 ], [ 145.140311, 14.142272 ], [ 145.140296, 14.142219 ], [ 145.140267, 14.142194 ], [ 145.140251, 14.14218 ], [ 145.140221, 14.142154 ], [ 145.140188, 14.14212 ], [ 145.140155, 14.142084 ], [ 145.14014, 14.141995 ], [ 145.140127, 14.14195 ], [ 145.140073, 14.141959 ], [ 145.140019, 14.14193 ], [ 145.139937, 14.141872 ], [ 145.139844, 14.141862 ], [ 145.13975, 14.141919 ], [ 145.139691, 14.14189 ], [ 145.139678, 14.14177 ], [ 145.139683, 14.141679 ], [ 145.139577, 14.141544 ], [ 145.13945, 14.141433 ], [ 145.139362, 14.141414 ], [ 145.139293, 14.141413 ], [ 145.13925, 14.14136 ], [ 145.13928, 14.141289 ], [ 145.139275, 14.141245 ], [ 145.139315, 14.141188 ], [ 145.13933, 14.141131 ], [ 145.139286, 14.141093 ], [ 145.139223, 14.141059 ], [ 145.139238, 14.141001 ], [ 145.139151, 14.140891 ], [ 145.138883, 14.140697 ], [ 145.138789, 14.140621 ], [ 145.138537, 14.140417 ], [ 145.138464, 14.140311 ], [ 145.138353, 14.140191 ], [ 145.138183, 14.139974 ], [ 145.138042, 14.139835 ], [ 145.137742, 14.139383 ], [ 145.137635, 14.139238 ], [ 145.137408, 14.138892 ], [ 145.137131, 14.13856 ], [ 145.136908, 14.138305 ], [ 145.136762, 14.138146 ], [ 145.136674, 14.138126 ], [ 145.136557, 14.138001 ], [ 145.136553, 14.137953 ], [ 145.136484, 14.137934 ], [ 145.13644, 14.137952 ], [ 145.136391, 14.137928 ], [ 145.136269, 14.137917 ], [ 145.136029, 14.137834 ], [ 145.135946, 14.137795 ], [ 145.135737, 14.137569 ], [ 145.135649, 14.137535 ], [ 145.135576, 14.137472 ], [ 145.135503, 14.137424 ], [ 145.135484, 14.137371 ], [ 145.135387, 14.137212 ], [ 145.135236, 14.137106 ], [ 145.135071, 14.136976 ], [ 145.134901, 14.136812 ], [ 145.134862, 14.136735 ], [ 145.13473, 14.136676 ], [ 145.134652, 14.136657 ], [ 145.134509, 14.136534 ], [ 145.134365, 14.136411 ], [ 145.13438, 14.136358 ], [ 145.134405, 14.136325 ], [ 145.134371, 14.136267 ], [ 145.134274, 14.136156 ], [ 145.134186, 14.136108 ], [ 145.134088, 14.136083 ], [ 145.134041, 14.136042 ], [ 145.133846, 14.135873 ], [ 145.133816, 14.135847 ], [ 145.133762, 14.135851 ], [ 145.133627, 14.135582 ], [ 145.133579, 14.135352 ], [ 145.133435, 14.135055 ], [ 145.133255, 14.134829 ], [ 145.133196, 14.13489 ], [ 145.133176, 14.134943 ], [ 145.133137, 14.134928 ], [ 145.133153, 14.134823 ], [ 145.133232, 14.134752 ], [ 145.133188, 14.13468 ], [ 145.133062, 14.13455 ], [ 145.133038, 14.134425 ], [ 145.132956, 14.134381 ], [ 145.132896, 14.134419 ], [ 145.132683, 14.134675 ], [ 145.132294, 14.135194 ], [ 145.132523, 14.135655 ], [ 145.132567, 14.135756 ], [ 145.132585, 14.135875 ], [ 145.132584, 14.13599 ], [ 145.132623, 14.136081 ], [ 145.132673, 14.136132 ], [ 145.133094, 14.136563 ], [ 145.133181, 14.136688 ], [ 145.133175, 14.136841 ], [ 145.133106, 14.136903 ], [ 145.132954, 14.136926 ], [ 145.132704, 14.136929 ], [ 145.132591, 14.136918 ], [ 145.132449, 14.136927 ], [ 145.132386, 14.136845 ], [ 145.132289, 14.136777 ], [ 145.132187, 14.136657 ], [ 145.132106, 14.136573 ], [ 145.131978, 14.13644 ], [ 145.13188, 14.136415 ], [ 145.131802, 14.13641 ], [ 145.131738, 14.1364 ], [ 145.131685, 14.136323 ], [ 145.131553, 14.136279 ], [ 145.131417, 14.136153 ], [ 145.131383, 14.136019 ], [ 145.131385, 14.135842 ], [ 145.131282, 14.135851 ], [ 145.131213, 14.135874 ], [ 145.131139, 14.135926 ], [ 145.131012, 14.135897 ], [ 145.13092, 14.135781 ], [ 145.130871, 14.1357 ], [ 145.13071, 14.135703 ], [ 145.130553, 14.135678 ], [ 145.130451, 14.13561 ], [ 145.130427, 14.135486 ], [ 145.130496, 14.13541 ], [ 145.130556, 14.135319 ], [ 145.130777, 14.135303 ], [ 145.130795, 14.135298 ], [ 145.131154, 14.13531 ], [ 145.13127, 14.135343 ], [ 145.131359, 14.135369 ], [ 145.131388, 14.135426 ], [ 145.131412, 14.135527 ], [ 145.13153, 14.135413 ], [ 145.131629, 14.135356 ], [ 145.131851, 14.135219 ], [ 145.132056, 14.135216 ], [ 145.132576, 14.134541 ], [ 145.132559, 14.134206 ], [ 145.132536, 14.134153 ], [ 145.132467, 14.134105 ], [ 145.132434, 14.134052 ], [ 145.132365, 14.134061 ], [ 145.132228, 14.134008 ], [ 145.132189, 14.133955 ], [ 145.132116, 14.133925 ], [ 145.132014, 14.133848 ], [ 145.13195, 14.133809 ], [ 145.131858, 14.133761 ], [ 145.131823, 14.133751 ], [ 145.13176, 14.133684 ], [ 145.131507, 14.133509 ], [ 145.13139, 14.133461 ], [ 145.131326, 14.133393 ], [ 145.131039, 14.133238 ], [ 145.130781, 14.132982 ], [ 145.130537, 14.132789 ], [ 145.130299, 14.132567 ], [ 145.130055, 14.132403 ], [ 145.1299, 14.132287 ], [ 145.12971, 14.132156 ], [ 145.129481, 14.131982 ], [ 145.129178, 14.131784 ], [ 145.128695, 14.131603 ], [ 145.128533, 14.131573 ], [ 145.128475, 14.131535 ], [ 145.128419, 14.131519 ], [ 145.128387, 14.13151 ], [ 145.12827, 14.131447 ], [ 145.128192, 14.131375 ], [ 145.128134, 14.131307 ], [ 145.128006, 14.131277 ], [ 145.127928, 14.131224 ], [ 145.127787, 14.131104 ], [ 145.127744, 14.131036 ], [ 145.127636, 14.131016 ], [ 145.127592, 14.131026 ], [ 145.127504, 14.130982 ], [ 145.127412, 14.13089 ], [ 145.127289, 14.130899 ], [ 145.127162, 14.130817 ], [ 145.127271, 14.130707 ], [ 145.127439, 14.130489 ], [ 145.127386, 14.13045 ], [ 145.127235, 14.130387 ], [ 145.126916, 14.130332 ], [ 145.126687, 14.130263 ], [ 145.126604, 14.130152 ], [ 145.126551, 14.130133 ], [ 145.126482, 14.13006 ], [ 145.126439, 14.130003 ], [ 145.126336, 14.129997 ], [ 145.126253, 14.130001 ], [ 145.126175, 14.129938 ], [ 145.126175, 14.1299 ], [ 145.126073, 14.129852 ], [ 145.12595, 14.129836 ], [ 145.125862, 14.129859 ], [ 145.125832, 14.129888 ], [ 145.12572, 14.129854 ], [ 145.125476, 14.129737 ], [ 145.125442, 14.129655 ], [ 145.125467, 14.129589 ], [ 145.125518, 14.129388 ], [ 145.125503, 14.129326 ], [ 145.125436, 14.129244 ], [ 145.125348, 14.129157 ], [ 145.125319, 14.129076 ], [ 145.125227, 14.129008 ], [ 145.125061, 14.128959 ], [ 145.124851, 14.128795 ], [ 145.124788, 14.128751 ], [ 145.124745, 14.128696 ], [ 145.12473, 14.128684 ], [ 145.124696, 14.128631 ], [ 145.124662, 14.128568 ], [ 145.124554, 14.128553 ], [ 145.124491, 14.128471 ], [ 145.124467, 14.128486 ], [ 145.124398, 14.128485 ], [ 145.124374, 14.128413 ], [ 145.12433, 14.128355 ], [ 145.124238, 14.128307 ], [ 145.124091, 14.128287 ], [ 145.124022, 14.128291 ], [ 145.123949, 14.128286 ], [ 145.123895, 14.128209 ], [ 145.123838, 14.128093 ], [ 145.123828, 14.128026 ], [ 145.1238, 14.12793 ], [ 145.123839, 14.127916 ], [ 145.123966, 14.127922 ], [ 145.123972, 14.127846 ], [ 145.123914, 14.127735 ], [ 145.123861, 14.127654 ], [ 145.123763, 14.127571 ], [ 145.123695, 14.127528 ], [ 145.123642, 14.127417 ], [ 145.123652, 14.12737 ], [ 145.12357, 14.127307 ], [ 145.123409, 14.127172 ], [ 145.123193, 14.127218 ], [ 145.123124, 14.127217 ], [ 145.123051, 14.127159 ], [ 145.123038, 14.127035 ], [ 145.122995, 14.126872 ], [ 145.122991, 14.126762 ], [ 145.122937, 14.126728 ], [ 145.122859, 14.126661 ], [ 145.122782, 14.126579 ], [ 145.122773, 14.126473 ], [ 145.122744, 14.126397 ], [ 145.122705, 14.126329 ], [ 145.122661, 14.1263 ], [ 145.122628, 14.126166 ], [ 145.122658, 14.126114 ], [ 145.122678, 14.126066 ], [ 145.122585, 14.126056 ], [ 145.122541, 14.126065 ], [ 145.122488, 14.125931 ], [ 145.12241, 14.125916 ], [ 145.122371, 14.125863 ], [ 145.122391, 14.125801 ], [ 145.122514, 14.125773 ], [ 145.122524, 14.125711 ], [ 145.122442, 14.1256 ], [ 145.122486, 14.125543 ], [ 145.122555, 14.125525 ], [ 145.12256, 14.125477 ], [ 145.122522, 14.125419 ], [ 145.122463, 14.1254 ], [ 145.122385, 14.125394 ], [ 145.122385, 14.125323 ], [ 145.12243, 14.125213 ], [ 145.122494, 14.125218 ], [ 145.122553, 14.125214 ], [ 145.122519, 14.125137 ], [ 145.12248, 14.125089 ], [ 145.122461, 14.125051 ], [ 145.122399, 14.124892 ], [ 145.122404, 14.124886 ], [ 145.122429, 14.124821 ], [ 145.122483, 14.124783 ], [ 145.122517, 14.124821 ], [ 145.122541, 14.124879 ], [ 145.122589, 14.124956 ], [ 145.122613, 14.125023 ], [ 145.122671, 14.125086 ], [ 145.122779, 14.125101 ], [ 145.122838, 14.125053 ], [ 145.122834, 14.125001 ], [ 145.12281, 14.124929 ], [ 145.122786, 14.124881 ], [ 145.122742, 14.124809 ], [ 145.12266, 14.124646 ], [ 145.122627, 14.124569 ], [ 145.122618, 14.124487 ], [ 145.122628, 14.124416 ], [ 145.122584, 14.124368 ], [ 145.122545, 14.124386 ], [ 145.12247, 14.124529 ], [ 145.122421, 14.124553 ], [ 145.122402, 14.124519 ], [ 145.122427, 14.124433 ], [ 145.122423, 14.124319 ], [ 145.122404, 14.124232 ], [ 145.12236, 14.124165 ], [ 145.122327, 14.124093 ], [ 145.122308, 14.124021 ], [ 145.122313, 14.12394 ], [ 145.122329, 14.123873 ], [ 145.122334, 14.123777 ], [ 145.122305, 14.123739 ], [ 145.122208, 14.123681 ], [ 145.122154, 14.123609 ], [ 145.122008, 14.123545 ], [ 145.121774, 14.123395 ], [ 145.121725, 14.123337 ], [ 145.121701, 14.123251 ], [ 145.121599, 14.123174 ], [ 145.121483, 14.123058 ], [ 145.121444, 14.122991 ], [ 145.121425, 14.1229 ], [ 145.121426, 14.1228 ], [ 145.121377, 14.122732 ], [ 145.121354, 14.12266 ], [ 145.121364, 14.122574 ], [ 145.121371, 14.122547 ], [ 145.121379, 14.122522 ], [ 145.121443, 14.122508 ], [ 145.121487, 14.12246 ], [ 145.121479, 14.12235 ], [ 145.121499, 14.122269 ], [ 145.121519, 14.122212 ], [ 145.121485, 14.122111 ], [ 145.121511, 14.12204 ], [ 145.121507, 14.121868 ], [ 145.121513, 14.121715 ], [ 145.121538, 14.121619 ], [ 145.121583, 14.121529 ], [ 145.121652, 14.121481 ], [ 145.121716, 14.121453 ], [ 145.121878, 14.121431 ], [ 145.121928, 14.121378 ], [ 145.121905, 14.121129 ], [ 145.121896, 14.121077 ], [ 145.121861, 14.121072 ], [ 145.121769, 14.121004 ], [ 145.121735, 14.120937 ], [ 145.121775, 14.120889 ], [ 145.121761, 14.120779 ], [ 145.121796, 14.120703 ], [ 145.121845, 14.120655 ], [ 145.121846, 14.120579 ], [ 145.121783, 14.120502 ], [ 145.121734, 14.120449 ], [ 145.121646, 14.12041 ], [ 145.121623, 14.120319 ], [ 145.121652, 14.120262 ], [ 145.121614, 14.120228 ], [ 145.121604, 14.12019 ], [ 145.12161, 14.120118 ], [ 145.121576, 14.120041 ], [ 145.121582, 14.119931 ], [ 145.121563, 14.119835 ], [ 145.121524, 14.119797 ], [ 145.12153, 14.119711 ], [ 145.121491, 14.119648 ], [ 145.121486, 14.119605 ], [ 145.121532, 14.119429 ], [ 145.121513, 14.119352 ], [ 145.121386, 14.119318 ], [ 145.121401, 14.119251 ], [ 145.121387, 14.119203 ], [ 145.121387, 14.119145 ], [ 145.121432, 14.119103 ], [ 145.121403, 14.119055 ], [ 145.121369, 14.118983 ], [ 145.121345, 14.118906 ], [ 145.12137, 14.118834 ], [ 145.121405, 14.118796 ], [ 145.121444, 14.118768 ], [ 145.121469, 14.11874 ], [ 145.121489, 14.118678 ], [ 145.121484, 14.118639 ], [ 145.121539, 14.118606 ], [ 145.121636, 14.118645 ], [ 145.121661, 14.118612 ], [ 145.121696, 14.118598 ], [ 145.121691, 14.11856 ], [ 145.121755, 14.118503 ], [ 145.121736, 14.118426 ], [ 145.12179, 14.118388 ], [ 145.121814, 14.118446 ], [ 145.121932, 14.118408 ], [ 145.121923, 14.118356 ], [ 145.121958, 14.118313 ], [ 145.121983, 14.118251 ], [ 145.122012, 14.118208 ], [ 145.122018, 14.118137 ], [ 145.122018, 14.11806 ], [ 145.122063, 14.118051 ], [ 145.122172, 14.117903 ], [ 145.122085, 14.117716 ], [ 145.122027, 14.117639 ], [ 145.122003, 14.117577 ], [ 145.121994, 14.1175 ], [ 145.121999, 14.117494 ], [ 145.122018, 14.117462 ], [ 145.122107, 14.117449 ], [ 145.122185, 14.117459 ], [ 145.122224, 14.11744 ], [ 145.12221, 14.117397 ], [ 145.122269, 14.117388 ], [ 145.122328, 14.117374 ], [ 145.122441, 14.117332 ], [ 145.122475, 14.117356 ], [ 145.122514, 14.117375 ], [ 145.122553, 14.117352 ], [ 145.122664, 14.117359 ], [ 145.122713, 14.117351 ], [ 145.122734, 14.117335 ], [ 145.122807, 14.117395 ], [ 145.122861, 14.117419 ], [ 145.12291, 14.117458 ], [ 145.122949, 14.117468 ], [ 145.122968, 14.117511 ], [ 145.123031, 14.117583 ], [ 145.123085, 14.117631 ], [ 145.123153, 14.117656 ], [ 145.123207, 14.11767 ], [ 145.123275, 14.117704 ], [ 145.123368, 14.117782 ], [ 145.123431, 14.117859 ], [ 145.123484, 14.117902 ], [ 145.123513, 14.117965 ], [ 145.123655, 14.118071 ], [ 145.123669, 14.118133 ], [ 145.123708, 14.118181 ], [ 145.123756, 14.118268 ], [ 145.123814, 14.118316 ], [ 145.123853, 14.11834 ], [ 145.123872, 14.118388 ], [ 145.123911, 14.118436 ], [ 145.123931, 14.118484 ], [ 145.123998, 14.11858 ], [ 145.124154, 14.118778 ], [ 145.124251, 14.118865 ], [ 145.124338, 14.118966 ], [ 145.124469, 14.119172 ], [ 145.124551, 14.119321 ], [ 145.124609, 14.119365 ], [ 145.12461, 14.119293 ], [ 145.12463, 14.119241 ], [ 145.124684, 14.119279 ], [ 145.124732, 14.119327 ], [ 145.124761, 14.119376 ], [ 145.124879, 14.119381 ], [ 145.124899, 14.119348 ], [ 145.124944, 14.11934 ], [ 145.124953, 14.119339 ], [ 145.12505, 14.119349 ], [ 145.125182, 14.119403 ], [ 145.12529, 14.119485 ], [ 145.1255, 14.119544 ], [ 145.125568, 14.119587 ], [ 145.125725, 14.119613 ], [ 145.125763, 14.11967 ], [ 145.125876, 14.119719 ], [ 145.125936, 14.119736 ], [ 145.12597, 14.119731 ], [ 145.126115, 14.11973 ], [ 145.126237, 14.119743 ], [ 145.126326, 14.119682 ], [ 145.126442, 14.119698 ], [ 145.126517, 14.119753 ], [ 145.126576, 14.119739 ], [ 145.126655, 14.119735 ], [ 145.126792, 14.119712 ], [ 145.126865, 14.119722 ], [ 145.126944, 14.119761 ], [ 145.126968, 14.119809 ], [ 145.127075, 14.119905 ], [ 145.127138, 14.11992 ], [ 145.127197, 14.119983 ], [ 145.127255, 14.120055 ], [ 145.127323, 14.12006 ], [ 145.127416, 14.120114 ], [ 145.127435, 14.1202 ], [ 145.127517, 14.12033 ], [ 145.127599, 14.120493 ], [ 145.127618, 14.120541 ], [ 145.127681, 14.120623 ], [ 145.12773, 14.120695 ], [ 145.127813, 14.120753 ], [ 145.1279, 14.120878 ], [ 145.127938, 14.120955 ], [ 145.12807, 14.121023 ], [ 145.128183, 14.121062 ], [ 145.128354, 14.121111 ], [ 145.128436, 14.121193 ], [ 145.128485, 14.121255 ], [ 145.128567, 14.121337 ], [ 145.128665, 14.1214 ], [ 145.128748, 14.12142 ], [ 145.128792, 14.121492 ], [ 145.128874, 14.121541 ], [ 145.128903, 14.121617 ], [ 145.128986, 14.121666 ], [ 145.128961, 14.12179 ], [ 145.129029, 14.121819 ], [ 145.129063, 14.121848 ], [ 145.129087, 14.121906 ], [ 145.129141, 14.121892 ], [ 145.12918, 14.121866 ], [ 145.129238, 14.121879 ], [ 145.129357, 14.121922 ], [ 145.129474, 14.121985 ], [ 145.129536, 14.122096 ], [ 145.129585, 14.122149 ], [ 145.129619, 14.12223 ], [ 145.129822, 14.122241 ], [ 145.129902, 14.122376 ], [ 145.130023, 14.122482 ], [ 145.130012, 14.122664 ], [ 145.130164, 14.122713 ], [ 145.130246, 14.122814 ], [ 145.130377, 14.12292 ], [ 145.130456, 14.123027 ], [ 145.130521, 14.123139 ], [ 145.130569, 14.123184 ], [ 145.130636, 14.123326 ], [ 145.13075, 14.123389 ], [ 145.130819, 14.123507 ], [ 145.131002, 14.123686 ], [ 145.13109, 14.123783 ], [ 145.131271, 14.124072 ], [ 145.131326, 14.124182 ], [ 145.131378, 14.124262 ], [ 145.131416, 14.124361 ], [ 145.131491, 14.124434 ], [ 145.131531, 14.124548 ], [ 145.131594, 14.12466 ], [ 145.131669, 14.124814 ], [ 145.131769, 14.124976 ], [ 145.131877, 14.125121 ], [ 145.13198, 14.125315 ], [ 145.132128, 14.125537 ], [ 145.132282, 14.125962 ], [ 145.132349, 14.126119 ], [ 145.132407, 14.126226 ], [ 145.132473, 14.126229 ], [ 145.132493, 14.126289 ], [ 145.132574, 14.126299 ], [ 145.132618, 14.126438 ], [ 145.13262, 14.126587 ], [ 145.132658, 14.126592 ], [ 145.132706, 14.126652 ], [ 145.132742, 14.126804 ], [ 145.132798, 14.126891 ], [ 145.132863, 14.126944 ], [ 145.132942, 14.126994 ], [ 145.132955, 14.12717 ], [ 145.132988, 14.127284 ], [ 145.133054, 14.127345 ], [ 145.133061, 14.127352 ], [ 145.133085, 14.127444 ], [ 145.133181, 14.127549 ], [ 145.133211, 14.127668 ], [ 145.133286, 14.127736 ], [ 145.133296, 14.127842 ], [ 145.133392, 14.12786 ], [ 145.133437, 14.127977 ], [ 145.133446, 14.128054 ], [ 145.133538, 14.128077 ], [ 145.133807, 14.128439 ], [ 145.134444, 14.129146 ], [ 145.134529, 14.129255 ], [ 145.134635, 14.129402 ], [ 145.134766, 14.129535 ], [ 145.134808, 14.129602 ], [ 145.134828, 14.129729 ], [ 145.134883, 14.129828 ], [ 145.134877, 14.12992 ], [ 145.134928, 14.12993 ], [ 145.134958, 14.129993 ], [ 145.134954, 14.130104 ], [ 145.135001, 14.130148 ], [ 145.134988, 14.130244 ], [ 145.135027, 14.130264 ], [ 145.13511, 14.130283 ], [ 145.135144, 14.130312 ], [ 145.135237, 14.130361 ], [ 145.13529, 14.130452 ], [ 145.135349, 14.130583 ], [ 145.135359, 14.130603 ], [ 145.135386, 14.130687 ], [ 145.13541, 14.13074 ], [ 145.135419, 14.130802 ], [ 145.135439, 14.130869 ], [ 145.135482, 14.13097 ], [ 145.13555, 14.131023 ], [ 145.135614, 14.131048 ], [ 145.135643, 14.131091 ], [ 145.13571, 14.131259 ], [ 145.135783, 14.131312 ], [ 145.13588, 14.13137 ], [ 145.135865, 14.131423 ], [ 145.135904, 14.131543 ], [ 145.135967, 14.131562 ], [ 145.136001, 14.131605 ], [ 145.136025, 14.131663 ], [ 145.13599, 14.131711 ], [ 145.13597, 14.131768 ], [ 145.135984, 14.131835 ], [ 145.136013, 14.131888 ], [ 145.136111, 14.131922 ], [ 145.136096, 14.131955 ], [ 145.136071, 14.131993 ], [ 145.136095, 14.132041 ], [ 145.136169, 14.132066 ], [ 145.136228, 14.132076 ], [ 145.136242, 14.132129 ], [ 145.136222, 14.132205 ], [ 145.136167, 14.132267 ], [ 145.136137, 14.13242 ], [ 145.13618, 14.132511 ], [ 145.136243, 14.132535 ], [ 145.136242, 14.132664 ], [ 145.136245, 14.132667 ], [ 145.136335, 14.132775 ], [ 145.136408, 14.132804 ], [ 145.136505, 14.132944 ], [ 145.136606, 14.133141 ], [ 145.136639, 14.133265 ], [ 145.136634, 14.133318 ], [ 145.136665, 14.133467 ], [ 145.136687, 14.133487 ], [ 145.13672, 14.133558 ], [ 145.136789, 14.133596 ], [ 145.136876, 14.13363 ], [ 145.136886, 14.133664 ], [ 145.136876, 14.133745 ], [ 145.13689, 14.133779 ], [ 145.136934, 14.133813 ], [ 145.137052, 14.133814 ], [ 145.13709, 14.133828 ], [ 145.137139, 14.133881 ], [ 145.137207, 14.133963 ], [ 145.137207, 14.133996 ], [ 145.137192, 14.134025 ], [ 145.137206, 14.134068 ], [ 145.137255, 14.134116 ], [ 145.137284, 14.134169 ], [ 145.137303, 14.134236 ], [ 145.137342, 14.13427 ], [ 145.137395, 14.134294 ], [ 145.137439, 14.134362 ], [ 145.137453, 14.134419 ], [ 145.137448, 14.134481 ], [ 145.137418, 14.134534 ], [ 145.137423, 14.134567 ], [ 145.137516, 14.134554 ], [ 145.137561, 14.134538 ], [ 145.137796, 14.134622 ], [ 145.138233, 14.135022 ], [ 145.138346, 14.135216 ], [ 145.138373, 14.135263 ], [ 145.138658, 14.135551 ], [ 145.138843, 14.13586 ], [ 145.139058, 14.13608 ], [ 145.139196, 14.136297 ], [ 145.13921, 14.136391 ], [ 145.139248, 14.136451 ], [ 145.139311, 14.136521 ], [ 145.139437, 14.136614 ], [ 145.139508, 14.136674 ], [ 145.139631, 14.136759 ], [ 145.139764, 14.136767 ], [ 145.139816, 14.136822 ], [ 145.139864, 14.136895 ], [ 145.139932, 14.136937 ], [ 145.140015, 14.137035 ], [ 145.140159, 14.137187 ], [ 145.140242, 14.137262 ], [ 145.140285, 14.137327 ], [ 145.140318, 14.137364 ], [ 145.140426, 14.137425 ], [ 145.140495, 14.137477 ], [ 145.14051, 14.137524 ], [ 145.140558, 14.137522 ], [ 145.140608, 14.137553 ], [ 145.140628, 14.137592 ], [ 145.140687, 14.137628 ], [ 145.140755, 14.137663 ], [ 145.14082, 14.137723 ], [ 145.140911, 14.137783 ], [ 145.140962, 14.137828 ], [ 145.141066, 14.137876 ], [ 145.141175, 14.137907 ], [ 145.141266, 14.137983 ], [ 145.141404, 14.138006 ], [ 145.141472, 14.138018 ], [ 145.141632, 14.138168 ], [ 145.141868, 14.138291 ], [ 145.141883, 14.138344 ], [ 145.141948, 14.138408 ], [ 145.142014, 14.138439 ], [ 145.142024, 14.138508 ], [ 145.142302, 14.138664 ], [ 145.142352, 14.138704 ], [ 145.142418, 14.138702 ], [ 145.142459, 14.138737 ], [ 145.142525, 14.138748 ], [ 145.142813, 14.138978 ], [ 145.142957, 14.139024 ], [ 145.143, 14.139079 ], [ 145.143091, 14.139102 ], [ 145.143124, 14.139147 ], [ 145.143256, 14.139143 ], [ 145.143294, 14.13918 ], [ 145.143418, 14.139236 ], [ 145.143489, 14.139221 ], [ 145.143601, 14.139176 ], [ 145.143643, 14.139159 ], [ 145.143934, 14.139022 ], [ 145.143963, 14.13907 ], [ 145.143728, 14.139198 ], [ 145.143926, 14.139522 ], [ 145.14415, 14.139504 ], [ 145.144183, 14.139574 ], [ 145.144295, 14.139547 ], [ 145.14443, 14.139469 ], [ 145.144887, 14.139175 ], [ 145.144969, 14.139148 ], [ 145.145131, 14.13915 ], [ 145.145213, 14.139145 ], [ 145.145292, 14.139116 ], [ 145.145391, 14.139115 ], [ 145.14547, 14.139061 ], [ 145.145516, 14.139056 ], [ 145.145654, 14.138997 ], [ 145.145719, 14.138912 ], [ 145.145867, 14.138779 ], [ 145.146044, 14.138685 ], [ 145.146065, 14.138666 ], [ 145.146241, 14.138509 ], [ 145.146496, 14.138502 ], [ 145.146624, 14.138431 ], [ 145.146824, 14.138557 ], [ 145.146858, 14.138641 ], [ 145.146894, 14.138703 ], [ 145.146984, 14.138717 ], [ 145.147011, 14.138699 ], [ 145.147061, 14.138682 ], [ 145.147188, 14.138656 ], [ 145.147355, 14.138658 ], [ 145.147396, 14.138676 ], [ 145.148024, 14.138619 ], [ 145.148363, 14.138564 ], [ 145.148531, 14.138486 ], [ 145.148694, 14.138421 ], [ 145.148762, 14.138413 ], [ 145.148907, 14.138361 ], [ 145.148925, 14.138374 ], [ 145.148975, 14.138388 ], [ 145.149042, 14.138375 ], [ 145.149115, 14.138385 ], [ 145.149336, 14.138373 ], [ 145.149422, 14.138321 ], [ 145.149526, 14.138353 ], [ 145.149553, 14.138309 ], [ 145.149806, 14.138324 ], [ 145.149925, 14.138215 ], [ 145.150001, 14.138206 ], [ 145.150042, 14.138189 ], [ 145.150083, 14.138211 ], [ 145.15011, 14.138181 ], [ 145.150372, 14.138143 ], [ 145.150472, 14.138162 ], [ 145.150725, 14.138102 ], [ 145.150825, 14.138094 ], [ 145.15092, 14.138059 ], [ 145.150997, 14.138042 ], [ 145.151078, 14.138012 ], [ 145.151133, 14.137973 ], [ 145.151219, 14.137964 ], [ 145.151304, 14.137961 ], [ 145.151345, 14.137935 ], [ 145.151468, 14.1379 ], [ 145.151509, 14.137848 ], [ 145.151604, 14.137848 ], [ 145.15168, 14.137853 ], [ 145.151721, 14.137814 ], [ 145.151821, 14.137806 ], [ 145.151916, 14.137727 ], [ 145.152052, 14.13768 ], [ 145.152166, 14.137597 ], [ 145.152347, 14.137475 ], [ 145.152384, 14.137409 ], [ 145.152483, 14.137423 ], [ 145.152574, 14.137441 ], [ 145.152615, 14.137389 ], [ 145.15266, 14.137341 ], [ 145.152719, 14.137319 ], [ 145.152792, 14.13724 ], [ 145.152937, 14.137153 ], [ 145.153014, 14.137114 ], [ 145.153024, 14.137035 ], [ 145.153061, 14.136947 ], [ 145.15312, 14.136908 ], [ 145.153174, 14.136899 ], [ 145.153256, 14.13683 ], [ 145.153356, 14.136791 ], [ 145.153365, 14.136729 ], [ 145.153397, 14.13672 ], [ 145.153429, 14.136681 ], [ 145.153515, 14.136611 ], [ 145.153637, 14.136608 ], [ 145.153615, 14.136572 ], [ 145.15367, 14.136524 ], [ 145.153788, 14.136472 ], [ 145.153878, 14.136411 ], [ 145.153956, 14.136372 ], [ 145.154006, 14.136337 ], [ 145.154082, 14.136316 ], [ 145.154101, 14.136219 ], [ 145.154187, 14.136224 ], [ 145.154255, 14.136216 ], [ 145.15431, 14.136146 ], [ 145.154505, 14.136024 ], [ 145.154596, 14.135971 ], [ 145.154673, 14.135906 ], [ 145.154823, 14.135788 ], [ 145.154905, 14.1357 ], [ 145.154964, 14.13571 ], [ 145.154987, 14.135653 ], [ 145.155046, 14.135613 ], [ 145.155127, 14.135592 ], [ 145.155171, 14.13556 ], [ 145.155177, 14.135557 ], [ 145.155227, 14.135549 ], [ 145.155381, 14.135484 ], [ 145.15544, 14.13548 ], [ 145.155554, 14.135348 ], [ 145.155622, 14.135283 ], [ 145.155663, 14.135226 ], [ 145.155687, 14.135155 ], [ 145.155754, 14.135129 ], [ 145.155886, 14.135051 ], [ 145.155945, 14.134985 ], [ 145.156049, 14.134973 ], [ 145.156127, 14.134894 ], [ 145.156182, 14.13482 ], [ 145.156209, 14.134749 ], [ 145.156187, 14.134679 ], [ 145.156192, 14.134639 ], [ 145.15622, 14.134582 ], [ 145.15626, 14.134573 ], [ 145.156319, 14.134596 ], [ 145.156405, 14.13453 ], [ 145.156469, 14.134505 ], [ 145.156564, 14.134457 ], [ 145.156632, 14.134409 ], [ 145.156696, 14.134352 ], [ 145.156786, 14.134331 ], [ 145.156778, 14.134242 ], [ 145.156815, 14.134181 ], [ 145.156896, 14.134195 ], [ 145.156964, 14.13416 ], [ 145.157051, 14.134068 ], [ 145.157178, 14.133963 ], [ 145.157228, 14.133933 ], [ 145.157282, 14.13388 ], [ 145.157432, 14.133758 ], [ 145.157478, 14.133728 ], [ 145.157523, 14.133688 ], [ 145.157533, 14.133649 ], [ 145.157574, 14.133578 ], [ 145.157597, 14.133517 ], [ 145.157649, 14.133477 ], [ 145.157729, 14.133439 ], [ 145.157797, 14.133386 ], [ 145.157865, 14.133356 ], [ 145.157969, 14.13333 ], [ 145.158069, 14.133221 ], [ 145.158219, 14.133107 ], [ 145.158282, 14.133103 ], [ 145.15845, 14.133038 ], [ 145.158487, 14.132999 ], [ 145.158518, 14.132973 ], [ 145.158582, 14.132951 ], [ 145.158645, 14.132921 ], [ 145.1587, 14.132882 ], [ 145.158692, 14.132785 ], [ 145.158728, 14.132763 ], [ 145.158832, 14.132724 ], [ 145.158954, 14.132729 ], [ 145.159049, 14.132761 ], [ 145.159107, 14.13277 ], [ 145.159193, 14.132797 ], [ 145.159274, 14.132838 ], [ 145.159351, 14.132816 ], [ 145.159396, 14.132786 ], [ 145.159451, 14.132768 ], [ 145.159464, 14.132817 ], [ 145.159477, 14.132901 ], [ 145.159575, 14.133047 ], [ 145.159661, 14.133061 ], [ 145.159697, 14.133083 ], [ 145.159801, 14.133084 ], [ 145.1599, 14.133045 ], [ 145.159973, 14.133024 ], [ 145.160109, 14.132941 ], [ 145.160127, 14.132893 ], [ 145.160173, 14.132836 ], [ 145.160236, 14.132832 ], [ 145.160313, 14.132881 ], [ 145.160353, 14.132872 ], [ 145.160412, 14.132842 ], [ 145.160503, 14.132838 ], [ 145.160508, 14.132776 ], [ 145.160535, 14.132768 ], [ 145.160657, 14.132764 ], [ 145.160657, 14.132734 ], [ 145.160671, 14.132663 ], [ 145.160658, 14.132632 ], [ 145.160717, 14.13258 ], [ 145.160762, 14.132549 ], [ 145.160808, 14.132554 ], [ 145.160871, 14.13251 ], [ 145.160944, 14.132467 ], [ 145.160926, 14.132423 ], [ 145.16094, 14.132348 ], [ 145.160985, 14.132361 ], [ 145.161053, 14.132393 ], [ 145.161116, 14.132428 ], [ 145.161166, 14.132389 ], [ 145.161207, 14.132332 ], [ 145.161218, 14.132134 ], [ 145.161286, 14.132042 ], [ 145.161463, 14.131986 ], [ 145.16182, 14.131881 ], [ 145.161997, 14.131796 ], [ 145.162166, 14.131656 ], [ 145.162377, 14.131541 ], [ 145.162746, 14.13129 ], [ 145.162802, 14.131137 ], [ 145.162989, 14.13101 ], [ 145.163223, 14.131003 ], [ 145.163291, 14.130977 ], [ 145.163813, 14.130677 ], [ 145.164013, 14.130524 ], [ 145.164072, 14.130525 ], [ 145.164167, 14.130508 ], [ 145.164222, 14.130451 ], [ 145.164326, 14.130381 ], [ 145.164471, 14.130276 ], [ 145.164599, 14.130198 ], [ 145.164649, 14.130132 ], [ 145.164649, 14.130079 ], [ 145.164686, 14.130022 ], [ 145.164758, 14.129974 ], [ 145.16475, 14.129913 ], [ 145.164755, 14.129811 ], [ 145.164859, 14.129803 ], [ 145.164895, 14.12979 ], [ 145.164932, 14.129755 ], [ 145.16495, 14.129711 ], [ 145.164982, 14.129685 ], [ 145.165078, 14.129624 ], [ 145.165128, 14.12958 ], [ 145.16516, 14.129523 ], [ 145.16521, 14.12948 ], [ 145.165238, 14.12937 ], [ 145.16531, 14.129348 ], [ 145.165342, 14.129282 ], [ 145.165392, 14.129261 ], [ 145.165401, 14.129292 ], [ 145.16546, 14.129305 ], [ 145.165528, 14.12927 ], [ 145.16555, 14.12924 ], [ 145.165596, 14.129218 ], [ 145.165628, 14.129165 ], [ 145.165714, 14.129157 ], [ 145.165804, 14.129154 ], [ 145.165863, 14.129158 ], [ 145.165926, 14.129154 ], [ 145.165949, 14.129111 ], [ 145.165913, 14.129097 ], [ 145.165904, 14.129057 ], [ 145.165972, 14.129049 ], [ 145.166031, 14.129076 ], [ 145.166098, 14.129059 ], [ 145.166144, 14.128997 ], [ 145.166198, 14.12898 ], [ 145.166262, 14.128998 ], [ 145.166285, 14.12895 ], [ 145.166298, 14.12891 ], [ 145.166271, 14.12873 ], [ 145.166272, 14.128567 ], [ 145.166365, 14.128497 ], [ 145.16642, 14.128422 ], [ 145.166519, 14.128405 ], [ 145.166636, 14.128183 ], [ 145.166717, 14.128032 ], [ 145.166717, 14.128001 ], [ 145.166726, 14.127944 ], [ 145.166794, 14.127936 ], [ 145.16684, 14.127892 ], [ 145.166907, 14.127892 ], [ 145.16688, 14.127874 ], [ 145.166872, 14.127831 ], [ 145.167067, 14.127673 ], [ 145.1672, 14.127457 ], [ 145.167186, 14.127445 ], [ 145.167264, 14.127388 ], [ 145.167314, 14.127296 ], [ 145.167364, 14.12727 ], [ 145.1674, 14.127301 ], [ 145.167459, 14.127279 ], [ 145.16749, 14.127288 ], [ 145.167499, 14.12731 ], [ 145.167522, 14.127311 ], [ 145.16754, 14.127306 ], [ 145.1675, 14.127272 ], [ 145.167491, 14.127253 ], [ 145.167568, 14.127188 ], [ 145.167595, 14.127144 ], [ 145.167596, 14.127108 ], [ 145.167564, 14.127086 ], [ 145.167569, 14.127051 ], [ 145.167605, 14.127025 ], [ 145.167533, 14.126985 ], [ 145.16757, 14.126945 ], [ 145.167602, 14.126941 ], [ 145.167638, 14.126862 ], [ 145.167679, 14.126805 ], [ 145.167743, 14.126752 ], [ 145.16777, 14.126722 ], [ 145.167839, 14.12659 ], [ 145.167917, 14.126538 ], [ 145.167971, 14.126472 ], [ 145.168008, 14.126455 ], [ 145.168008, 14.126428 ], [ 145.167999, 14.126375 ], [ 145.16795, 14.126357 ], [ 145.16795, 14.126331 ], [ 145.167914, 14.126291 ], [ 145.167892, 14.126225 ], [ 145.167883, 14.126185 ], [ 145.167884, 14.126128 ], [ 145.167925, 14.126093 ], [ 145.168015, 14.126084 ], [ 145.168079, 14.126045 ], [ 145.168133, 14.126006 ], [ 145.168147, 14.125944 ], [ 145.168188, 14.125892 ], [ 145.168238, 14.125879 ], [ 145.168198, 14.125786 ], [ 145.168194, 14.125738 ], [ 145.168199, 14.125685 ], [ 145.168095, 14.125644 ], [ 145.168069, 14.125596 ], [ 145.167983, 14.125604 ], [ 145.167924, 14.12559 ], [ 145.167897, 14.12555 ], [ 145.167898, 14.125515 ], [ 145.167862, 14.125488 ], [ 145.167803, 14.125426 ], [ 145.16775, 14.125386 ], [ 145.167718, 14.125346 ], [ 145.167673, 14.125359 ], [ 145.167614, 14.125354 ], [ 145.167597, 14.125305 ], [ 145.16757, 14.125283 ], [ 145.16757, 14.125252 ], [ 145.167516, 14.12523 ], [ 145.167502, 14.125243 ], [ 145.167475, 14.125216 ], [ 145.167431, 14.125119 ], [ 145.167409, 14.125048 ], [ 145.167381, 14.125092 ], [ 145.167327, 14.125092 ], [ 145.167264, 14.125074 ], [ 145.167206, 14.12502 ], [ 145.16726, 14.124999 ], [ 145.167261, 14.124871 ], [ 145.167297, 14.124871 ], [ 145.167302, 14.124827 ], [ 145.167231, 14.124721 ], [ 145.167141, 14.124724 ], [ 145.167131, 14.124782 ], [ 145.167072, 14.124777 ], [ 145.167078, 14.124658 ], [ 145.167155, 14.124553 ], [ 145.167101, 14.124552 ], [ 145.167056, 14.124503 ], [ 145.16707, 14.124451 ], [ 145.167116, 14.124442 ], [ 145.167165, 14.124464 ], [ 145.167169, 14.124522 ], [ 145.167201, 14.124531 ], [ 145.167255, 14.124496 ], [ 145.167323, 14.124483 ], [ 145.167332, 14.124501 ], [ 145.167373, 14.124501 ], [ 145.167374, 14.124396 ], [ 145.167328, 14.124391 ], [ 145.167283, 14.124368 ], [ 145.167265, 14.124346 ], [ 145.167229, 14.124346 ], [ 145.167216, 14.124315 ], [ 145.167253, 14.124262 ], [ 145.167289, 14.124227 ], [ 145.167303, 14.124183 ], [ 145.167344, 14.124175 ], [ 145.16738, 14.12418 ], [ 145.167391, 14.123959 ], [ 145.1674, 14.123911 ], [ 145.1674, 14.123867 ], [ 145.167414, 14.123805 ], [ 145.167369, 14.123778 ], [ 145.167343, 14.123738 ], [ 145.167434, 14.12366 ], [ 145.167484, 14.123581 ], [ 145.167353, 14.12358 ], [ 145.167331, 14.123518 ], [ 145.167377, 14.123457 ], [ 145.167559, 14.123273 ], [ 145.167599, 14.123093 ], [ 145.167812, 14.122923 ], [ 145.168033, 14.122711 ], [ 145.168203, 14.122505 ], [ 145.168329, 14.122263 ], [ 145.168476, 14.122157 ], [ 145.168529, 14.121972 ], [ 145.168595, 14.12188 ], [ 145.168552, 14.121773 ], [ 145.168678, 14.121638 ], [ 145.168839, 14.121561 ], [ 145.169002, 14.121276 ], [ 145.169062, 14.121106 ], [ 145.169034, 14.120927 ], [ 145.169021, 14.12077 ], [ 145.16903, 14.120613 ], [ 145.169045, 14.120463 ], [ 145.168951, 14.120363 ], [ 145.168879, 14.120255 ], [ 145.16888, 14.120062 ], [ 145.168943, 14.119969 ], [ 145.168904, 14.119891 ], [ 145.168649, 14.119977 ], [ 145.168553, 14.119799 ], [ 145.168627, 14.119661 ], [ 145.168779, 14.119609 ], [ 145.168736, 14.119499 ], [ 145.168825, 14.119433 ], [ 145.168944, 14.119456 ], [ 145.168885, 14.119275 ], [ 145.168989, 14.119195 ], [ 145.168917, 14.119156 ], [ 145.168882, 14.119036 ], [ 145.168946, 14.11896 ], [ 145.169101, 14.118987 ], [ 145.169299, 14.118902 ], [ 145.1694, 14.118653 ], [ 145.169314, 14.118341 ], [ 145.169339, 14.117638 ], [ 145.169391, 14.117338 ], [ 145.169348, 14.117141 ], [ 145.169278, 14.116947 ], [ 145.169174, 14.116805 ], [ 145.169117, 14.116609 ], [ 145.169071, 14.116288 ], [ 145.169093, 14.115939 ], [ 145.169186, 14.115662 ], [ 145.169123, 14.115355 ], [ 145.169132, 14.115098 ], [ 145.168928, 14.114982 ], [ 145.168805, 14.114903 ], [ 145.168703, 14.114795 ], [ 145.168602, 14.114644 ], [ 145.168464, 14.114579 ], [ 145.168188, 14.11427 ], [ 145.167955, 14.114232 ], [ 145.167824, 14.114074 ], [ 145.167819, 14.113832 ], [ 145.16782, 14.113703 ], [ 145.167843, 14.113582 ], [ 145.167756, 14.11346 ], [ 145.167698, 14.113417 ], [ 145.167627, 14.113181 ], [ 145.16755, 14.11309 ], [ 145.167482, 14.113009 ], [ 145.16738, 14.112872 ], [ 145.167418, 14.11278 ], [ 145.167492, 14.112673 ], [ 145.167317, 14.112522 ], [ 145.1671, 14.112242 ], [ 145.167109, 14.112128 ], [ 145.167219, 14.112093 ], [ 145.167335, 14.112108 ], [ 145.167431, 14.112023 ], [ 145.167425, 14.111895 ], [ 145.167624, 14.111689 ], [ 145.167742, 14.111612 ], [ 145.167771, 14.111526 ], [ 145.16786, 14.111456 ], [ 145.167853, 14.111334 ], [ 145.168117, 14.111322 ], [ 145.16822, 14.111194 ], [ 145.168301, 14.111081 ], [ 145.168477, 14.111068 ], [ 145.168675, 14.110984 ], [ 145.168873, 14.110971 ], [ 145.169121, 14.110973 ], [ 145.169217, 14.110924 ], [ 145.169268, 14.110888 ], [ 145.169306, 14.11076 ], [ 145.169541, 14.110655 ], [ 145.169826, 14.110572 ], [ 145.169922, 14.110522 ], [ 145.170002, 14.110566 ], [ 145.170141, 14.110503 ], [ 145.170236, 14.110532 ], [ 145.170646, 14.110492 ], [ 145.170909, 14.110459 ], [ 145.171005, 14.110374 ], [ 145.171305, 14.110404 ], [ 145.171644, 14.110731 ], [ 145.171766, 14.110741 ], [ 145.171881, 14.11053 ], [ 145.17205, 14.11051 ], [ 145.172341, 14.110662 ], [ 145.172487, 14.110642 ], [ 145.172488, 14.110563 ], [ 145.172642, 14.1105 ], [ 145.172839, 14.110545 ], [ 145.17292, 14.110488 ], [ 145.173044, 14.110453 ], [ 145.173154, 14.11049 ], [ 145.173213, 14.110462 ], [ 145.173359, 14.110449 ], [ 145.173482, 14.110535 ], [ 145.17365, 14.110558 ], [ 145.173702, 14.11048 ], [ 145.174074, 14.110675 ], [ 145.174242, 14.110691 ], [ 145.174315, 14.110627 ], [ 145.174417, 14.110678 ], [ 145.17452, 14.11065 ], [ 145.174738, 14.110787 ], [ 145.174855, 14.11081 ], [ 145.174964, 14.110957 ], [ 145.175132, 14.110869 ], [ 145.175121, 14.110958 ], [ 145.175212, 14.110948 ], [ 145.175314, 14.110942 ], [ 145.175489, 14.111028 ], [ 145.175716, 14.111037 ], [ 145.175876, 14.111146 ], [ 145.175955, 14.111353 ], [ 145.176115, 14.111411 ], [ 145.176348, 14.11152 ], [ 145.176457, 14.111614 ], [ 145.17664, 14.111622 ], [ 145.176719, 14.111723 ], [ 145.176733, 14.111809 ], [ 145.176745, 14.111946 ], [ 145.176876, 14.112086 ], [ 145.177076, 14.111954 ], [ 145.177178, 14.111933 ], [ 145.177239, 14.112103 ], [ 145.177351, 14.112171 ], [ 145.177469, 14.11215 ], [ 145.177534, 14.112264 ], [ 145.177738, 14.112323 ], [ 145.178161, 14.112512 ], [ 145.178214, 14.11266 ], [ 145.17812, 14.112765 ], [ 145.177953, 14.112783 ], [ 145.177771, 14.112901 ], [ 145.177727, 14.112939 ], [ 145.177706, 14.113101 ], [ 145.177704, 14.113169 ], [ 145.177701, 14.113386 ], [ 145.177758, 14.113558 ], [ 145.177837, 14.113658 ], [ 145.177895, 14.113766 ], [ 145.177983, 14.113745 ], [ 145.178092, 14.11381 ], [ 145.178121, 14.113889 ], [ 145.178105, 14.113995 ], [ 145.1782, 14.11406 ], [ 145.178325, 14.113926 ], [ 145.178295, 14.114025 ], [ 145.178279, 14.114147 ], [ 145.178411, 14.114212 ], [ 145.178541, 14.114298 ], [ 145.178577, 14.114377 ], [ 145.178642, 14.114478 ], [ 145.178796, 14.114522 ], [ 145.178941, 14.114673 ], [ 145.179089, 14.11468 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "69", "COUNTYFP10": "110", "TRACTCE10": "000800", "GEOID10": "69110000800", "NAME10": "8", "NAMELSAD10": "Census Tract 8", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1830475, "AWATER10": 187542, "INTPTLAT10": "+15.1549143", "INTPTLON10": "+145.7085869" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.70394, 15.15161 ], [ 145.7038, 15.15171 ], [ 145.7036, 15.15179 ], [ 145.70349, 15.15183 ], [ 145.70338, 15.15184 ], [ 145.703375, 15.15184 ], [ 145.70314, 15.15184 ], [ 145.70293, 15.1518 ], [ 145.702868, 15.15179 ], [ 145.702684, 15.151761 ], [ 145.702623, 15.151752 ], [ 145.70229, 15.15171 ], [ 145.702095, 15.151686 ], [ 145.701513, 15.151614 ], [ 145.7014, 15.1516 ], [ 145.70132, 15.15159 ], [ 145.70117, 15.15157 ], [ 145.701155, 15.151567 ], [ 145.700665, 15.151489 ], [ 145.700502, 15.151464 ], [ 145.70041, 15.15145 ], [ 145.700257, 15.151437 ], [ 145.69993, 15.15141 ], [ 145.699524, 15.151366 ], [ 145.69928, 15.15134 ], [ 145.699264, 15.15134 ], [ 145.699215, 15.151341 ], [ 145.6992, 15.151342 ], [ 145.699198, 15.151358 ], [ 145.699194, 15.151408 ], [ 145.699193, 15.151425 ], [ 145.699639, 15.15147 ], [ 145.699698, 15.151494 ], [ 145.699799, 15.151527 ], [ 145.699993, 15.151512 ], [ 145.700145, 15.151562 ], [ 145.700262, 15.151678 ], [ 145.700494, 15.152236 ], [ 145.700544, 15.152474 ], [ 145.700538, 15.152536 ], [ 145.700492, 15.153046 ], [ 145.700489, 15.153079 ], [ 145.700421, 15.153308 ], [ 145.700403, 15.153373 ], [ 145.700291, 15.153807 ], [ 145.700168, 15.154084 ], [ 145.700154, 15.154117 ], [ 145.7001, 15.154348 ], [ 145.700085, 15.154411 ], [ 145.700024, 15.154787 ], [ 145.69998, 15.155106 ], [ 145.699972, 15.15518 ], [ 145.699944, 15.155467 ], [ 145.699942, 15.155762 ], [ 145.699966, 15.155982 ], [ 145.699998, 15.156212 ], [ 145.700081, 15.156449 ], [ 145.700139, 15.156655 ], [ 145.700197, 15.15677 ], [ 145.70044, 15.157001 ], [ 145.700625, 15.157158 ], [ 145.700683, 15.15728 ], [ 145.700724, 15.157428 ], [ 145.700746, 15.157449 ], [ 145.701017, 15.1577 ], [ 145.701109, 15.157831 ], [ 145.701227, 15.157946 ], [ 145.70131, 15.15807 ], [ 145.701562, 15.158251 ], [ 145.701915, 15.15849 ], [ 145.70204, 15.158606 ], [ 145.702124, 15.158712 ], [ 145.702132, 15.158721 ], [ 145.702401, 15.158894 ], [ 145.702644, 15.159125 ], [ 145.702745, 15.1592 ], [ 145.702854, 15.159307 ], [ 145.702955, 15.159381 ], [ 145.702979, 15.159495 ], [ 145.703037, 15.159619 ], [ 145.703264, 15.159759 ], [ 145.703558, 15.159925 ], [ 145.704095, 15.160296 ], [ 145.704465, 15.16056 ], [ 145.704537, 15.160619 ], [ 145.704808, 15.160841 ], [ 145.705135, 15.161162 ], [ 145.705295, 15.161335 ], [ 145.70547, 15.161524 ], [ 145.705797, 15.161889 ], [ 145.705897, 15.162001 ], [ 145.706202, 15.162325 ], [ 145.7064, 15.162536 ], [ 145.706843, 15.163096 ], [ 145.707588, 15.164025 ], [ 145.708014, 15.164732 ], [ 145.708472, 15.165594 ], [ 145.708484, 15.165625 ], [ 145.708746, 15.1663 ], [ 145.70955, 15.16593 ], [ 145.70962, 15.165904 ], [ 145.70983, 15.165826 ], [ 145.7099, 15.1658 ], [ 145.710022, 15.165744 ], [ 145.710388, 15.165576 ], [ 145.71051, 15.16552 ], [ 145.710639, 15.165459 ], [ 145.71081, 15.16538 ], [ 145.711029, 15.165286 ], [ 145.71116, 15.16523 ], [ 145.711339, 15.165146 ], [ 145.71178, 15.16494 ], [ 145.711874, 15.164891 ], [ 145.71205, 15.1648 ], [ 145.712062, 15.164778 ], [ 145.712101, 15.164712 ], [ 145.712114, 15.164691 ], [ 145.712112, 15.164684 ], [ 145.712107, 15.164664 ], [ 145.712106, 15.164658 ], [ 145.712102, 15.164642 ], [ 145.7121, 15.16463 ], [ 145.712104, 15.164594 ], [ 145.712106, 15.164578 ], [ 145.712112, 15.164515 ], [ 145.71213, 15.16435 ], [ 145.712132, 15.164328 ], [ 145.712141, 15.164266 ], [ 145.712189, 15.163903 ], [ 145.712207, 15.163814 ], [ 145.71225, 15.16371 ], [ 145.71229, 15.16363 ], [ 145.712296, 15.163537 ], [ 145.712301, 15.163463 ], [ 145.71231, 15.16332 ], [ 145.71229, 15.16318 ], [ 145.71227, 15.16304 ], [ 145.712257, 15.162995 ], [ 145.71221, 15.16282 ], [ 145.712206, 15.16279 ], [ 145.712204, 15.162782 ], [ 145.712201, 15.162758 ], [ 145.7122, 15.16275 ], [ 145.712189, 15.1627 ], [ 145.71219, 15.1627 ], [ 145.71225, 15.16251 ], [ 145.712376, 15.162145 ], [ 145.713552, 15.16123 ], [ 145.714304, 15.160159 ], [ 145.718237, 15.154552 ], [ 145.715354, 15.151189 ], [ 145.714243, 15.149893 ], [ 145.713843, 15.149238 ], [ 145.713604, 15.149275 ], [ 145.713482, 15.149399 ], [ 145.713384, 15.149397 ], [ 145.713225, 15.149463 ], [ 145.713087, 15.14958 ], [ 145.713084, 15.14958 ], [ 145.712982, 15.149608 ], [ 145.712843, 15.149735 ], [ 145.712667, 15.149837 ], [ 145.712298, 15.149939 ], [ 145.712092, 15.150105 ], [ 145.711929, 15.150194 ], [ 145.71164, 15.150243 ], [ 145.711485, 15.150361 ], [ 145.711339, 15.150391 ], [ 145.711118, 15.150605 ], [ 145.710935, 15.150838 ], [ 145.710914, 15.15087 ], [ 145.71078, 15.151088 ], [ 145.710715, 15.151279 ], [ 145.71053, 15.151647 ], [ 145.710459, 15.151881 ], [ 145.710464, 15.151906 ], [ 145.710517, 15.152145 ], [ 145.710511, 15.152396 ], [ 145.710515, 15.152664 ], [ 145.710513, 15.152714 ], [ 145.710511, 15.152841 ], [ 145.710399, 15.152932 ], [ 145.710305, 15.152897 ], [ 145.710023, 15.152794 ], [ 145.70993, 15.15276 ], [ 145.70978, 15.15279 ], [ 145.709766, 15.152787 ], [ 145.70951, 15.15274 ], [ 145.709276, 15.152691 ], [ 145.709114, 15.152657 ], [ 145.708973, 15.152627 ], [ 145.70855, 15.152539 ], [ 145.70841, 15.15251 ], [ 145.70831, 15.1525 ], [ 145.708098, 15.152452 ], [ 145.70737, 15.15229 ], [ 145.707169, 15.152246 ], [ 145.70686, 15.15218 ], [ 145.706766, 15.152161 ], [ 145.706484, 15.152106 ], [ 145.706391, 15.152088 ], [ 145.70635, 15.15208 ], [ 145.706244, 15.152057 ], [ 145.705806, 15.151961 ], [ 145.70566, 15.15193 ], [ 145.705548, 15.151908 ], [ 145.705212, 15.151842 ], [ 145.7051, 15.15182 ], [ 145.704658, 15.151733 ], [ 145.70444, 15.15169 ], [ 145.704203, 15.151643 ], [ 145.70414, 15.15163 ], [ 145.70394, 15.15161 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "69", "COUNTYFP10": "110", "TRACTCE10": "000900", "GEOID10": "69110000900", "NAME10": "9", "NAMELSAD10": "Census Tract 9", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1529718, "AWATER10": 0, "INTPTLAT10": "+15.1460451", "INTPTLON10": "+145.7056617" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.70242, 15.14054 ], [ 145.70216, 15.14077 ], [ 145.702093, 15.140835 ], [ 145.70156, 15.14136 ], [ 145.70114, 15.14175 ], [ 145.70097, 15.14189 ], [ 145.70077, 15.14198 ], [ 145.70077, 15.14205 ], [ 145.700782, 15.142116 ], [ 145.700855, 15.142524 ], [ 145.70088, 15.14266 ], [ 145.700886, 15.142692 ], [ 145.700904, 15.142788 ], [ 145.70091, 15.14282 ], [ 145.700944, 15.143022 ], [ 145.701046, 15.143628 ], [ 145.70108, 15.14383 ], [ 145.701098, 15.143933 ], [ 145.701155, 15.144245 ], [ 145.70116, 15.14427 ], [ 145.70117, 15.14435 ], [ 145.701114, 15.144359 ], [ 145.700945, 15.144389 ], [ 145.70089, 15.1444 ], [ 145.700796, 15.144417 ], [ 145.700513, 15.144471 ], [ 145.70042, 15.14449 ], [ 145.700304, 15.144511 ], [ 145.699955, 15.144577 ], [ 145.69984, 15.1446 ], [ 145.69955, 15.14468 ], [ 145.699085, 15.144717 ], [ 145.699348, 15.145311 ], [ 145.699814, 15.146313 ], [ 145.699816, 15.146318 ], [ 145.699922, 15.146607 ], [ 145.700094, 15.147118 ], [ 145.700163, 15.147326 ], [ 145.700187, 15.147395 ], [ 145.700253, 15.147658 ], [ 145.700277, 15.147879 ], [ 145.700292, 15.14797 ], [ 145.700326, 15.148165 ], [ 145.700325, 15.148187 ], [ 145.700316, 15.148403 ], [ 145.700315, 15.148523 ], [ 145.700315, 15.148583 ], [ 145.700287, 15.148984 ], [ 145.700234, 15.149528 ], [ 145.700233, 15.149541 ], [ 145.700189, 15.149786 ], [ 145.700162, 15.149856 ], [ 145.700129, 15.149941 ], [ 145.700053, 15.150244 ], [ 145.700008, 15.150431 ], [ 145.699734, 15.151167 ], [ 145.699632, 15.151346 ], [ 145.699603, 15.151352 ], [ 145.699575, 15.151358 ], [ 145.699281, 15.151324 ], [ 145.699202, 15.151319 ], [ 145.699201, 15.151323 ], [ 145.6992, 15.151337 ], [ 145.6992, 15.151342 ], [ 145.699215, 15.151341 ], [ 145.699264, 15.15134 ], [ 145.69928, 15.15134 ], [ 145.699524, 15.151366 ], [ 145.69993, 15.15141 ], [ 145.700257, 15.151437 ], [ 145.70041, 15.15145 ], [ 145.700502, 15.151464 ], [ 145.700665, 15.151489 ], [ 145.701155, 15.151567 ], [ 145.70117, 15.15157 ], [ 145.70132, 15.15159 ], [ 145.7014, 15.1516 ], [ 145.701513, 15.151614 ], [ 145.702095, 15.151686 ], [ 145.70229, 15.15171 ], [ 145.702623, 15.151752 ], [ 145.702684, 15.151761 ], [ 145.702868, 15.15179 ], [ 145.70293, 15.1518 ], [ 145.70314, 15.15184 ], [ 145.703375, 15.15184 ], [ 145.70338, 15.15184 ], [ 145.70349, 15.15183 ], [ 145.7036, 15.15179 ], [ 145.7038, 15.15171 ], [ 145.70394, 15.15161 ], [ 145.70414, 15.15163 ], [ 145.704203, 15.151643 ], [ 145.70444, 15.15169 ], [ 145.704658, 15.151733 ], [ 145.7051, 15.15182 ], [ 145.705212, 15.151842 ], [ 145.705548, 15.151908 ], [ 145.70566, 15.15193 ], [ 145.705806, 15.151961 ], [ 145.706244, 15.152057 ], [ 145.70635, 15.15208 ], [ 145.706391, 15.152088 ], [ 145.706484, 15.152106 ], [ 145.706766, 15.152161 ], [ 145.70686, 15.15218 ], [ 145.707169, 15.152246 ], [ 145.70737, 15.15229 ], [ 145.708098, 15.152452 ], [ 145.70831, 15.1525 ], [ 145.70841, 15.15251 ], [ 145.70855, 15.152539 ], [ 145.708973, 15.152627 ], [ 145.709114, 15.152657 ], [ 145.709276, 15.152691 ], [ 145.70951, 15.15274 ], [ 145.709766, 15.152787 ], [ 145.70978, 15.15279 ], [ 145.70993, 15.15276 ], [ 145.710023, 15.152794 ], [ 145.710305, 15.152897 ], [ 145.710399, 15.152932 ], [ 145.710511, 15.152841 ], [ 145.710513, 15.152714 ], [ 145.710515, 15.152664 ], [ 145.710511, 15.152396 ], [ 145.710517, 15.152145 ], [ 145.710464, 15.151906 ], [ 145.710459, 15.151881 ], [ 145.71053, 15.151647 ], [ 145.710715, 15.151279 ], [ 145.71078, 15.151088 ], [ 145.710914, 15.15087 ], [ 145.710935, 15.150838 ], [ 145.711118, 15.150605 ], [ 145.711339, 15.150391 ], [ 145.711485, 15.150361 ], [ 145.71164, 15.150243 ], [ 145.711929, 15.150194 ], [ 145.712092, 15.150105 ], [ 145.712298, 15.149939 ], [ 145.709974, 15.146158 ], [ 145.71075, 15.14577 ], [ 145.711145, 15.145601 ], [ 145.71115, 15.1456 ], [ 145.711785, 15.145275 ], [ 145.710572, 15.143596 ], [ 145.707589, 15.139467 ], [ 145.707371, 15.138696 ], [ 145.70726, 15.138397 ], [ 145.707257, 15.138388 ], [ 145.707087, 15.137776 ], [ 145.707026, 15.137428 ], [ 145.70702, 15.137118 ], [ 145.706961, 15.136886 ], [ 145.706956, 15.136804 ], [ 145.706899, 15.136724 ], [ 145.70679, 15.136685 ], [ 145.706571, 15.136625 ], [ 145.70636, 15.13693 ], [ 145.706238, 15.137129 ], [ 145.70592, 15.13765 ], [ 145.70577, 15.13785 ], [ 145.7056, 15.138 ], [ 145.70512, 15.13839 ], [ 145.70503, 15.13845 ], [ 145.70453, 15.13879 ], [ 145.704378, 15.138916 ], [ 145.70428, 15.139 ], [ 145.703909, 15.139277 ], [ 145.703752, 15.139396 ], [ 145.703713, 15.139424 ], [ 145.703598, 15.139511 ], [ 145.70356, 15.13954 ], [ 145.703514, 15.13958 ], [ 145.703376, 15.1397 ], [ 145.70333, 15.13974 ], [ 145.70327, 15.139791 ], [ 145.703094, 15.139947 ], [ 145.703035, 15.139999 ], [ 145.702911, 15.140107 ], [ 145.702543, 15.140431 ], [ 145.70242, 15.14054 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "69", "COUNTYFP10": "110", "TRACTCE10": "001600", "GEOID10": "69110001600", "NAME10": "16", "NAMELSAD10": "Census Tract 16", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 8502160, "AWATER10": 0, "INTPTLAT10": "+15.1673084", "INTPTLON10": "+145.7787735" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.792712, 15.149448 ], [ 145.792611, 15.149447 ], [ 145.792518, 15.149456 ], [ 145.792239, 15.149528 ], [ 145.792146, 15.14956 ], [ 145.792054, 15.149575 ], [ 145.791953, 15.149575 ], [ 145.791852, 15.149566 ], [ 145.791767, 15.149607 ], [ 145.791691, 15.149664 ], [ 145.791631, 15.149737 ], [ 145.791563, 15.149802 ], [ 145.791479, 15.149842 ], [ 145.791277, 15.149841 ], [ 145.791206, 15.149853 ], [ 145.791091, 15.149873 ], [ 145.791081, 15.149857 ], [ 145.791007, 15.149799 ], [ 145.790914, 15.149824 ], [ 145.79083, 15.149872 ], [ 145.790737, 15.149896 ], [ 145.790644, 15.149863 ], [ 145.790552, 15.149837 ], [ 145.790459, 15.149846 ], [ 145.790366, 15.149861 ], [ 145.790282, 15.149902 ], [ 145.790197, 15.149951 ], [ 145.790138, 15.150024 ], [ 145.79007, 15.150089 ], [ 145.790036, 15.150179 ], [ 145.7899, 15.15031 ], [ 145.789815, 15.150358 ], [ 145.789747, 15.150423 ], [ 145.789688, 15.150496 ], [ 145.789646, 15.150578 ], [ 145.789628, 15.150669 ], [ 145.789636, 15.150758 ], [ 145.789712, 15.150857 ], [ 145.789804, 15.150865 ], [ 145.789897, 15.15085 ], [ 145.78999, 15.150842 ], [ 145.790293, 15.150844 ], [ 145.790377, 15.150885 ], [ 145.79047, 15.150901 ], [ 145.790571, 15.150902 ], [ 145.790756, 15.15092 ], [ 145.790849, 15.150953 ], [ 145.790941, 15.150978 ], [ 145.791034, 15.150987 ], [ 145.791135, 15.150987 ], [ 145.79122, 15.150938 ], [ 145.791304, 15.150898 ], [ 145.791381, 15.150841 ], [ 145.791398, 15.150752 ], [ 145.791399, 15.150653 ], [ 145.791475, 15.150596 ], [ 145.791542, 15.150662 ], [ 145.791566, 15.150752 ], [ 145.791659, 15.150777 ], [ 145.791719, 15.150704 ], [ 145.791761, 15.150622 ], [ 145.791829, 15.150524 ], [ 145.791834, 15.150518 ], [ 145.791897, 15.150459 ], [ 145.791957, 15.150386 ], [ 145.792032, 15.150321 ], [ 145.792084, 15.150239 ], [ 145.792118, 15.15015 ], [ 145.79216, 15.15006 ], [ 145.79222, 15.149986 ], [ 145.792305, 15.149937 ], [ 145.792372, 15.149872 ], [ 145.792407, 15.149782 ], [ 145.792466, 15.149709 ], [ 145.792542, 15.149651 ], [ 145.792627, 15.149595 ], [ 145.79272, 15.149571 ], [ 145.792812, 15.149556 ], [ 145.792805, 15.149465 ], [ 145.792712, 15.149448 ] ] ], [ [ [ 145.76516, 15.17653 ], [ 145.765102, 15.176637 ], [ 145.765001, 15.176823 ], [ 145.764928, 15.176962 ], [ 145.76487, 15.17707 ], [ 145.764838, 15.177127 ], [ 145.764744, 15.1773 ], [ 145.764713, 15.177358 ], [ 145.765139, 15.177584 ], [ 145.765461, 15.177793 ], [ 145.765666, 15.178011 ], [ 145.765912, 15.178408 ], [ 145.7663, 15.178611 ], [ 145.766582, 15.178772 ], [ 145.766845, 15.178948 ], [ 145.767358, 15.179063 ], [ 145.767665, 15.179091 ], [ 145.767945, 15.179068 ], [ 145.768203, 15.179149 ], [ 145.76856, 15.179531 ], [ 145.768782, 15.179801 ], [ 145.769078, 15.180074 ], [ 145.769364, 15.180257 ], [ 145.769708, 15.180414 ], [ 145.770016, 15.180639 ], [ 145.769987, 15.180902 ], [ 145.769857, 15.181118 ], [ 145.769739, 15.181381 ], [ 145.769675, 15.18152 ], [ 145.769817, 15.181573 ], [ 145.769929, 15.181621 ], [ 145.77004, 15.181669 ], [ 145.770329, 15.181884 ], [ 145.770457, 15.181981 ], [ 145.770621, 15.182057 ], [ 145.770743, 15.182114 ], [ 145.77086, 15.18219 ], [ 145.770922, 15.18223 ], [ 145.770954, 15.18225 ], [ 145.771108, 15.182355 ], [ 145.77117, 15.182398 ], [ 145.771235, 15.182453 ], [ 145.771326, 15.182461 ], [ 145.771435, 15.182452 ], [ 145.771505, 15.182506 ], [ 145.771608, 15.182607 ], [ 145.771732, 15.182678 ], [ 145.771736, 15.182679 ], [ 145.771886, 15.182738 ], [ 145.772086, 15.182818 ], [ 145.772288, 15.182908 ], [ 145.772486, 15.182974 ], [ 145.772587, 15.183004 ], [ 145.772671, 15.183072 ], [ 145.77268, 15.183177 ], [ 145.772595, 15.183458 ], [ 145.772448, 15.183746 ], [ 145.772263, 15.183925 ], [ 145.772144, 15.184042 ], [ 145.772022, 15.184195 ], [ 145.771956, 15.184326 ], [ 145.77194, 15.184444 ], [ 145.771961, 15.184476 ], [ 145.772115, 15.184597 ], [ 145.772142, 15.184666 ], [ 145.772305, 15.184568 ], [ 145.772522, 15.184393 ], [ 145.77293, 15.184186 ], [ 145.773274, 15.184027 ], [ 145.773451, 15.183897 ], [ 145.773537, 15.183897 ], [ 145.773689, 15.1839 ], [ 145.773781, 15.183903 ], [ 145.774432, 15.18395 ], [ 145.774869, 15.183862 ], [ 145.775252, 15.183794 ], [ 145.775636, 15.18377 ], [ 145.77613, 15.183782 ], [ 145.776471, 15.183801 ], [ 145.776876, 15.183957 ], [ 145.77731, 15.184331 ], [ 145.777767, 15.184867 ], [ 145.778086, 15.185132 ], [ 145.778389, 15.185337 ], [ 145.778469, 15.185392 ], [ 145.778689, 15.185577 ], [ 145.77897, 15.185893 ], [ 145.779703, 15.186509 ], [ 145.779788, 15.18646 ], [ 145.779813, 15.186427 ], [ 145.779874, 15.186231 ], [ 145.779933, 15.186158 ], [ 145.779959, 15.186132 ], [ 145.780001, 15.186093 ], [ 145.780077, 15.186028 ], [ 145.780153, 15.185971 ], [ 145.780187, 15.185881 ], [ 145.780264, 15.185824 ], [ 145.780323, 15.185751 ], [ 145.78034, 15.185661 ], [ 145.780341, 15.185562 ], [ 145.780384, 15.185481 ], [ 145.78046, 15.185424 ], [ 145.780503, 15.185343 ], [ 145.780587, 15.185294 ], [ 145.780613, 15.185203 ], [ 145.780605, 15.185114 ], [ 145.780538, 15.185048 ], [ 145.780553, 15.185006 ], [ 145.780572, 15.184958 ], [ 145.78064, 15.184893 ], [ 145.780734, 15.184722 ], [ 145.780801, 15.184656 ], [ 145.780823, 15.184622 ], [ 145.780853, 15.184575 ], [ 145.780938, 15.184412 ], [ 145.780997, 15.184338 ], [ 145.781032, 15.184249 ], [ 145.781074, 15.184166 ], [ 145.781111, 15.184119 ], [ 145.781134, 15.184093 ], [ 145.781202, 15.18402 ], [ 145.781287, 15.183857 ], [ 145.781338, 15.183775 ], [ 145.781372, 15.183685 ], [ 145.781377, 15.183674 ], [ 145.781415, 15.183603 ], [ 145.781449, 15.183514 ], [ 145.7815, 15.183432 ], [ 145.781559, 15.183359 ], [ 145.781602, 15.183269 ], [ 145.781653, 15.183188 ], [ 145.781721, 15.183122 ], [ 145.78178, 15.183048 ], [ 145.781856, 15.182992 ], [ 145.781941, 15.182952 ], [ 145.782202, 15.182986 ], [ 145.782404, 15.182987 ], [ 145.78248, 15.183044 ], [ 145.782564, 15.183094 ], [ 145.782665, 15.183095 ], [ 145.782758, 15.18307 ], [ 145.782851, 15.183063 ], [ 145.782943, 15.183079 ], [ 145.783028, 15.183129 ], [ 145.78312, 15.183154 ], [ 145.783213, 15.183171 ], [ 145.783306, 15.18318 ], [ 145.783398, 15.183172 ], [ 145.783491, 15.183148 ], [ 145.783576, 15.183091 ], [ 145.783678, 15.182928 ], [ 145.783721, 15.182846 ], [ 145.783797, 15.182781 ], [ 145.783983, 15.182734 ], [ 145.784043, 15.182674 ], [ 145.78405, 15.182668 ], [ 145.784143, 15.182627 ], [ 145.784236, 15.182595 ], [ 145.784329, 15.182572 ], [ 145.784414, 15.182514 ], [ 145.784473, 15.182441 ], [ 145.784499, 15.182351 ], [ 145.784508, 15.182261 ], [ 145.7845, 15.182171 ], [ 145.784484, 15.182081 ], [ 145.784501, 15.181991 ], [ 145.784569, 15.181925 ], [ 145.784596, 15.181882 ], [ 145.78462, 15.181844 ], [ 145.784663, 15.181754 ], [ 145.784671, 15.181664 ], [ 145.784664, 15.181575 ], [ 145.784698, 15.181484 ], [ 145.784724, 15.181394 ], [ 145.784707, 15.181305 ], [ 145.784699, 15.181214 ], [ 145.784726, 15.180944 ], [ 145.784685, 15.180854 ], [ 145.78466, 15.180755 ], [ 145.784669, 15.180665 ], [ 145.784627, 15.180575 ], [ 145.784611, 15.180485 ], [ 145.784637, 15.180395 ], [ 145.784637, 15.180296 ], [ 145.784663, 15.180207 ], [ 145.784662, 15.180205 ], [ 145.784655, 15.180117 ], [ 145.78463, 15.180026 ], [ 145.784622, 15.179969 ], [ 145.784581, 15.179764 ], [ 145.78459, 15.179675 ], [ 145.784574, 15.179584 ], [ 145.784532, 15.179502 ], [ 145.784465, 15.179436 ], [ 145.78439, 15.179379 ], [ 145.784323, 15.179304 ], [ 145.784298, 15.179214 ], [ 145.784366, 15.179149 ], [ 145.784458, 15.179133 ], [ 145.784526, 15.179068 ], [ 145.784552, 15.178979 ], [ 145.78457, 15.178798 ], [ 145.784545, 15.178707 ], [ 145.784529, 15.178618 ], [ 145.784563, 15.178528 ], [ 145.784622, 15.178455 ], [ 145.784648, 15.178364 ], [ 145.784666, 15.178274 ], [ 145.784642, 15.177996 ], [ 145.784727, 15.177833 ], [ 145.784761, 15.177742 ], [ 145.784804, 15.177653 ], [ 145.784864, 15.177571 ], [ 145.784889, 15.177482 ], [ 145.784891, 15.177285 ], [ 145.784883, 15.177187 ], [ 145.784892, 15.177097 ], [ 145.784909, 15.177006 ], [ 145.784918, 15.176917 ], [ 145.784952, 15.176827 ], [ 145.785054, 15.176664 ], [ 145.785114, 15.176591 ], [ 145.78514, 15.1765 ], [ 145.785182, 15.176419 ], [ 145.785216, 15.176296 ], [ 145.785302, 15.176133 ], [ 145.785361, 15.17606 ], [ 145.785404, 15.17597 ], [ 145.785463, 15.175896 ], [ 145.785498, 15.175806 ], [ 145.785523, 15.175716 ], [ 145.785591, 15.175651 ], [ 145.785617, 15.175553 ], [ 145.785622, 15.175538 ], [ 145.785651, 15.175464 ], [ 145.785694, 15.175381 ], [ 145.785762, 15.175276 ], [ 145.78589, 15.175031 ], [ 145.785924, 15.174941 ], [ 145.785983, 15.17486 ], [ 145.786051, 15.174795 ], [ 145.786077, 15.174704 ], [ 145.786137, 15.174631 ], [ 145.786188, 15.174426 ], [ 145.786231, 15.174345 ], [ 145.78629, 15.174272 ], [ 145.786358, 15.174199 ], [ 145.786418, 15.174124 ], [ 145.78646, 15.174043 ], [ 145.786508, 15.173965 ], [ 145.786511, 15.173961 ], [ 145.786571, 15.173888 ], [ 145.786605, 15.173799 ], [ 145.786644, 15.173729 ], [ 145.786689, 15.17365 ], [ 145.786707, 15.173618 ], [ 145.786758, 15.173537 ], [ 145.786764, 15.173529 ], [ 145.786818, 15.173463 ], [ 145.786877, 15.173382 ], [ 145.786928, 15.173301 ], [ 145.786971, 15.173219 ], [ 145.787013, 15.173187 ], [ 145.787047, 15.173162 ], [ 145.787123, 15.173096 ], [ 145.787225, 15.173048 ], [ 145.787318, 15.173032 ], [ 145.78741, 15.173009 ], [ 145.787503, 15.172976 ], [ 145.787579, 15.172919 ], [ 145.787664, 15.17287 ], [ 145.78774, 15.172805 ], [ 145.787817, 15.172749 ], [ 145.787901, 15.172709 ], [ 145.788053, 15.172594 ], [ 145.788274, 15.172383 ], [ 145.78835, 15.172326 ], [ 145.788373, 15.172312 ], [ 145.788435, 15.172276 ], [ 145.788494, 15.172195 ], [ 145.788553, 15.172122 ], [ 145.78863, 15.172065 ], [ 145.788714, 15.172017 ], [ 145.788807, 15.172008 ], [ 145.788985, 15.171903 ], [ 145.789146, 15.171765 ], [ 145.789222, 15.171708 ], [ 145.789315, 15.171692 ], [ 145.789416, 15.171693 ], [ 145.7895, 15.171734 ], [ 145.789576, 15.1718 ], [ 145.789642, 15.171866 ], [ 145.789726, 15.171907 ], [ 145.789819, 15.171892 ], [ 145.789904, 15.17185 ], [ 145.789989, 15.171794 ], [ 145.790056, 15.171729 ], [ 145.790141, 15.171689 ], [ 145.7902, 15.171615 ], [ 145.790209, 15.171526 ], [ 145.790193, 15.17146 ], [ 145.790185, 15.171337 ], [ 145.790202, 15.171246 ], [ 145.790262, 15.171165 ], [ 145.790355, 15.171174 ], [ 145.79043, 15.171232 ], [ 145.790497, 15.171298 ], [ 145.790573, 15.171364 ], [ 145.790665, 15.171388 ], [ 145.790758, 15.171365 ], [ 145.790826, 15.171299 ], [ 145.790869, 15.171217 ], [ 145.790936, 15.171152 ], [ 145.790971, 15.171063 ], [ 145.791038, 15.170998 ], [ 145.791039, 15.170899 ], [ 145.791048, 15.170809 ], [ 145.791049, 15.170613 ], [ 145.791125, 15.170555 ], [ 145.791218, 15.170589 ], [ 145.791404, 15.17058 ], [ 145.791494, 15.170576 ], [ 145.791583, 15.170541 ], [ 145.791703, 15.170275 ], [ 145.7918, 15.170226 ], [ 145.792, 15.17024 ], [ 145.792075, 15.170176 ], [ 145.792062, 15.16983 ], [ 145.79227, 15.169659 ], [ 145.792737, 15.169676 ], [ 145.792841, 15.169619 ], [ 145.79302, 15.169598 ], [ 145.793235, 15.169484 ], [ 145.793422, 15.169283 ], [ 145.793653, 15.169098 ], [ 145.794101, 15.168524 ], [ 145.794733, 15.168094 ], [ 145.795135, 15.167838 ], [ 145.79524, 15.167715 ], [ 145.795332, 15.167524 ], [ 145.795417, 15.167476 ], [ 145.79551, 15.167468 ], [ 145.795611, 15.167469 ], [ 145.795704, 15.16746 ], [ 145.795788, 15.16742 ], [ 145.795864, 15.167364 ], [ 145.795949, 15.167322 ], [ 145.796042, 15.16729 ], [ 145.796211, 15.16721 ], [ 145.796304, 15.167177 ], [ 145.79654, 15.167121 ], [ 145.796827, 15.167074 ], [ 145.79692, 15.167042 ], [ 145.797199, 15.166969 ], [ 145.797292, 15.166928 ], [ 145.797384, 15.166937 ], [ 145.797477, 15.166914 ], [ 145.797562, 15.166864 ], [ 145.797621, 15.166791 ], [ 145.797638, 15.166701 ], [ 145.79758, 15.166627 ], [ 145.797513, 15.166561 ], [ 145.797471, 15.166471 ], [ 145.797413, 15.166397 ], [ 145.797337, 15.16634 ], [ 145.797278, 15.166265 ], [ 145.797194, 15.166224 ], [ 145.797102, 15.166199 ], [ 145.796933, 15.166116 ], [ 145.796841, 15.166083 ], [ 145.796806, 15.166056 ], [ 145.79669, 15.165967 ], [ 145.796597, 15.165951 ], [ 145.796505, 15.165918 ], [ 145.796412, 15.165909 ], [ 145.796227, 15.165924 ], [ 145.796125, 15.165923 ], [ 145.796033, 15.165931 ], [ 145.795847, 15.165897 ], [ 145.795755, 15.165873 ], [ 145.795679, 15.165815 ], [ 145.795747, 15.16575 ], [ 145.79584, 15.165725 ], [ 145.795916, 15.165669 ], [ 145.795967, 15.165587 ], [ 145.7959, 15.165513 ], [ 145.795724, 15.16543 ], [ 145.79564, 15.165381 ], [ 145.795555, 15.16534 ], [ 145.795463, 15.165306 ], [ 145.795387, 15.165248 ], [ 145.795295, 15.165215 ], [ 145.795219, 15.165157 ], [ 145.795135, 15.165116 ], [ 145.795043, 15.165083 ], [ 145.794959, 15.165041 ], [ 145.794875, 15.164983 ], [ 145.794807, 15.164918 ], [ 145.794723, 15.164868 ], [ 145.79464, 15.164826 ], [ 145.794547, 15.16481 ], [ 145.794454, 15.164777 ], [ 145.794362, 15.164751 ], [ 145.794286, 15.164694 ], [ 145.794202, 15.164652 ], [ 145.794017, 15.164618 ], [ 145.793933, 15.164577 ], [ 145.793849, 15.164528 ], [ 145.793765, 15.164486 ], [ 145.793832, 15.164421 ], [ 145.793909, 15.164365 ], [ 145.793892, 15.164274 ], [ 145.7938, 15.164233 ], [ 145.793699, 15.164233 ], [ 145.793606, 15.164265 ], [ 145.793513, 15.164288 ], [ 145.79342, 15.164297 ], [ 145.793327, 15.164287 ], [ 145.793252, 15.16423 ], [ 145.793084, 15.164147 ], [ 145.793017, 15.164081 ], [ 145.792941, 15.164015 ], [ 145.792866, 15.163941 ], [ 145.792807, 15.163859 ], [ 145.792715, 15.163817 ], [ 145.792622, 15.163801 ], [ 145.792588, 15.163776 ], [ 145.792488, 15.163596 ], [ 145.792303, 15.163529 ], [ 145.792236, 15.163455 ], [ 145.792203, 15.163365 ], [ 145.792187, 15.163274 ], [ 145.792221, 15.163176 ], [ 145.79207, 15.163061 ], [ 145.792011, 15.162987 ], [ 145.791986, 15.162897 ], [ 145.791945, 15.162806 ], [ 145.791878, 15.162732 ], [ 145.791862, 15.162553 ], [ 145.791863, 15.162356 ], [ 145.791814, 15.162175 ], [ 145.791747, 15.161987 ], [ 145.791731, 15.161897 ], [ 145.791672, 15.161823 ], [ 145.791597, 15.161765 ], [ 145.79153, 15.161699 ], [ 145.791522, 15.161608 ], [ 145.791564, 15.161527 ], [ 145.791624, 15.161454 ], [ 145.791599, 15.161364 ], [ 145.7916, 15.161257 ], [ 145.791659, 15.161175 ], [ 145.791626, 15.161085 ], [ 145.791567, 15.161011 ], [ 145.791517, 15.160921 ], [ 145.791492, 15.160831 ], [ 145.791569, 15.160774 ], [ 145.791603, 15.160684 ], [ 145.791662, 15.16061 ], [ 145.791654, 15.16052 ], [ 145.791604, 15.160438 ], [ 145.791605, 15.16034 ], [ 145.791639, 15.160226 ], [ 145.791715, 15.160169 ], [ 145.791834, 15.160021 ], [ 145.791902, 15.159956 ], [ 145.791911, 15.159867 ], [ 145.791869, 15.159776 ], [ 145.791819, 15.159695 ], [ 145.791786, 15.159604 ], [ 145.791719, 15.159538 ], [ 145.791677, 15.159456 ], [ 145.791661, 15.159366 ], [ 145.791628, 15.159276 ], [ 145.791637, 15.159185 ], [ 145.791705, 15.15912 ], [ 145.791764, 15.159047 ], [ 145.791815, 15.158966 ], [ 145.791824, 15.158876 ], [ 145.79174, 15.158835 ], [ 145.791749, 15.158744 ], [ 145.791665, 15.158703 ], [ 145.791589, 15.158637 ], [ 145.791623, 15.158547 ], [ 145.791573, 15.158514 ], [ 145.791464, 15.158334 ], [ 145.79149, 15.158243 ], [ 145.791482, 15.158153 ], [ 145.791457, 15.158064 ], [ 145.791416, 15.157981 ], [ 145.791332, 15.157923 ], [ 145.791273, 15.157849 ], [ 145.791206, 15.157775 ], [ 145.791123, 15.157611 ], [ 145.791047, 15.157553 ], [ 145.79109, 15.157472 ], [ 145.791124, 15.157382 ], [ 145.791184, 15.157308 ], [ 145.79121, 15.157218 ], [ 145.791252, 15.157137 ], [ 145.791312, 15.157064 ], [ 145.791321, 15.156974 ], [ 145.791313, 15.156883 ], [ 145.791355, 15.156802 ], [ 145.791347, 15.156704 ], [ 145.791407, 15.156631 ], [ 145.791458, 15.156548 ], [ 145.791433, 15.156458 ], [ 145.791374, 15.156384 ], [ 145.791282, 15.156368 ], [ 145.791223, 15.156293 ], [ 145.791148, 15.156236 ], [ 145.791098, 15.156153 ], [ 145.791132, 15.156064 ], [ 145.791174, 15.155982 ], [ 145.791099, 15.155924 ], [ 145.791006, 15.155932 ], [ 145.79082, 15.155997 ], [ 145.790736, 15.156045 ], [ 145.79066, 15.156102 ], [ 145.790567, 15.156126 ], [ 145.790474, 15.156101 ], [ 145.790373, 15.156101 ], [ 145.79028, 15.156083 ], [ 145.790078, 15.156082 ], [ 145.789985, 15.156066 ], [ 145.789901, 15.156016 ], [ 145.789809, 15.155999 ], [ 145.789708, 15.155958 ], [ 145.789729, 15.155936 ], [ 145.789523, 15.155842 ], [ 145.789447, 15.155784 ], [ 145.789363, 15.155743 ], [ 145.789296, 15.155677 ], [ 145.789238, 15.155603 ], [ 145.789187, 15.155522 ], [ 145.789054, 15.15539 ], [ 145.789029, 15.155299 ], [ 145.789088, 15.155226 ], [ 145.78903, 15.155151 ], [ 145.788945, 15.15511 ], [ 145.788861, 15.155052 ], [ 145.788828, 15.154963 ], [ 145.788837, 15.154872 ], [ 145.788779, 15.154791 ], [ 145.788712, 15.154725 ], [ 145.788627, 15.154674 ], [ 145.788535, 15.154641 ], [ 145.788443, 15.154575 ], [ 145.788376, 15.154509 ], [ 145.788326, 15.154428 ], [ 145.788293, 15.154247 ], [ 145.788268, 15.154148 ], [ 145.788277, 15.154059 ], [ 145.78832, 15.153969 ], [ 145.788388, 15.153904 ], [ 145.788455, 15.153831 ], [ 145.788498, 15.153748 ], [ 145.788499, 15.15365 ], [ 145.788432, 15.15347 ], [ 145.788424, 15.15338 ], [ 145.788391, 15.15329 ], [ 145.788383, 15.1532 ], [ 145.788384, 15.153101 ], [ 145.788443, 15.153028 ], [ 145.788461, 15.152938 ], [ 145.788486, 15.152848 ], [ 145.788504, 15.152759 ], [ 145.788494, 15.152686 ], [ 145.788559, 15.152605 ], [ 145.788663, 15.152433 ], [ 145.788723, 15.152347 ], [ 145.788836, 15.152295 ], [ 145.788911, 15.152243 ], [ 145.788911, 15.152181 ], [ 145.788887, 15.152105 ], [ 145.788794, 15.152088 ], [ 145.788735, 15.152014 ], [ 145.788745, 15.15181 ], [ 145.788771, 15.151719 ], [ 145.78883, 15.151646 ], [ 145.788899, 15.151467 ], [ 145.788958, 15.151393 ], [ 145.789001, 15.151312 ], [ 145.789033, 15.151276 ], [ 145.789069, 15.151238 ], [ 145.789078, 15.151148 ], [ 145.789061, 15.151058 ], [ 145.789096, 15.150969 ], [ 145.789147, 15.150886 ], [ 145.789156, 15.150796 ], [ 145.789139, 15.150707 ], [ 145.789173, 15.150616 ], [ 145.789241, 15.150551 ], [ 145.789258, 15.150461 ], [ 145.78925, 15.150372 ], [ 145.789158, 15.150338 ], [ 145.789057, 15.150338 ], [ 145.788964, 15.150313 ], [ 145.788872, 15.150295 ], [ 145.788779, 15.150312 ], [ 145.788686, 15.150319 ], [ 145.788594, 15.150303 ], [ 145.788509, 15.150351 ], [ 145.788416, 15.150342 ], [ 145.78823, 15.150407 ], [ 145.788137, 15.150422 ], [ 145.788045, 15.150447 ], [ 145.787944, 15.150446 ], [ 145.78786, 15.150405 ], [ 145.787767, 15.150387 ], [ 145.787666, 15.150387 ], [ 145.787606, 15.150461 ], [ 145.787514, 15.150452 ], [ 145.787383, 15.150467 ], [ 145.787221, 15.150498 ], [ 145.787122, 15.150583 ], [ 145.787049, 15.150669 ], [ 145.78725, 15.150795 ], [ 145.787191, 15.150868 ], [ 145.787081, 15.150861 ], [ 145.786919, 15.150907 ], [ 145.786815, 15.150921 ], [ 145.786653, 15.15092 ], [ 145.786575, 15.150955 ], [ 145.786474, 15.150954 ], [ 145.786381, 15.150962 ], [ 145.786212, 15.151042 ], [ 145.786136, 15.1511 ], [ 145.786076, 15.151173 ], [ 145.786009, 15.151238 ], [ 145.785898, 15.151418 ], [ 145.785797, 15.151418 ], [ 145.785704, 15.1514 ], [ 145.785611, 15.151432 ], [ 145.785535, 15.15149 ], [ 145.785442, 15.151522 ], [ 145.785349, 15.151529 ], [ 145.785165, 15.151463 ], [ 145.785089, 15.151405 ], [ 145.78503, 15.151331 ], [ 145.784989, 15.151249 ], [ 145.784905, 15.151207 ], [ 145.784812, 15.151191 ], [ 145.784719, 15.151215 ], [ 145.784626, 15.151247 ], [ 145.784533, 15.151263 ], [ 145.784441, 15.151237 ], [ 145.784346, 15.151257 ], [ 145.784252, 15.151314 ], [ 145.784139, 15.151323 ], [ 145.78408, 15.151346 ], [ 145.784035, 15.151383 ], [ 145.783961, 15.151408 ], [ 145.783863, 15.151394 ], [ 145.783764, 15.151468 ], [ 145.783724, 15.151498 ], [ 145.783606, 15.15154 ], [ 145.783413, 15.15162 ], [ 145.783339, 15.151678 ], [ 145.78325, 15.15172 ], [ 145.783165, 15.151795 ], [ 145.783072, 15.15182 ], [ 145.782987, 15.15186 ], [ 145.782895, 15.151876 ], [ 145.782616, 15.1519 ], [ 145.782507, 15.15189 ], [ 145.782414, 15.151857 ], [ 145.782229, 15.15184 ], [ 145.782145, 15.151782 ], [ 145.782086, 15.1517 ], [ 145.78207, 15.15161 ], [ 145.782028, 15.151528 ], [ 145.782012, 15.151438 ], [ 145.782054, 15.151356 ], [ 145.782122, 15.15129 ], [ 145.782131, 15.151201 ], [ 145.782125, 15.151139 ], [ 145.782123, 15.151111 ], [ 145.782073, 15.151029 ], [ 145.78204, 15.150939 ], [ 145.782041, 15.15084 ], [ 145.781982, 15.150766 ], [ 145.78189, 15.150757 ], [ 145.781797, 15.150716 ], [ 145.781713, 15.150658 ], [ 145.781574, 15.150616 ], [ 145.781559, 15.150435 ], [ 145.781486, 15.150364 ], [ 145.781495, 15.150301 ], [ 145.781522, 15.150215 ], [ 145.78142, 15.150214 ], [ 145.781283, 15.150276 ], [ 145.781226, 15.150339 ], [ 145.781242, 15.150418 ], [ 145.781225, 15.1505 ], [ 145.781132, 15.150532 ], [ 145.780945, 15.150448 ], [ 145.780863, 15.150455 ], [ 145.780799, 15.150415 ], [ 145.780783, 15.150344 ], [ 145.780702, 15.15028 ], [ 145.780653, 15.150312 ], [ 145.780644, 15.150423 ], [ 145.780571, 15.150462 ], [ 145.780489, 15.150437 ], [ 145.780408, 15.15039 ], [ 145.780278, 15.150397 ], [ 145.780123, 15.15038 ], [ 145.780115, 15.150459 ], [ 145.780066, 15.150522 ], [ 145.779935, 15.150615 ], [ 145.779878, 15.15071 ], [ 145.77969, 15.150796 ], [ 145.779519, 15.150827 ], [ 145.77921, 15.150849 ], [ 145.779071, 15.150911 ], [ 145.779054, 15.151046 ], [ 145.77911, 15.151188 ], [ 145.779207, 15.15122 ], [ 145.779273, 15.151229 ], [ 145.779362, 15.151308 ], [ 145.779118, 15.151323 ], [ 145.778979, 15.151322 ], [ 145.778881, 15.151337 ], [ 145.778793, 15.151202 ], [ 145.778647, 15.151154 ], [ 145.778509, 15.15113 ], [ 145.778378, 15.151121 ], [ 145.77824, 15.151128 ], [ 145.778126, 15.151183 ], [ 145.777987, 15.151206 ], [ 145.777882, 15.151189 ], [ 145.777858, 15.151118 ], [ 145.777891, 15.151063 ], [ 145.777851, 15.150944 ], [ 145.777761, 15.150904 ], [ 145.777599, 15.150848 ], [ 145.777461, 15.150713 ], [ 145.777377, 15.150712 ], [ 145.77712, 15.150711 ], [ 145.776867, 15.150749 ], [ 145.776656, 15.150764 ], [ 145.77659, 15.150882 ], [ 145.7765, 15.150992 ], [ 145.77641, 15.151071 ], [ 145.776223, 15.151093 ], [ 145.776185, 15.15107 ], [ 145.776128, 15.151079 ], [ 145.776122, 15.15113 ], [ 145.77606, 15.15116 ], [ 145.776002, 15.151144 ], [ 145.775966, 15.15118 ], [ 145.776023, 15.15124 ], [ 145.776106, 15.151251 ], [ 145.77621, 15.151328 ], [ 145.776204, 15.151374 ], [ 145.776334, 15.151415 ], [ 145.77651, 15.151598 ], [ 145.776577, 15.151654 ], [ 145.77641, 15.151708 ], [ 145.776348, 15.151663 ], [ 145.776275, 15.151687 ], [ 145.776348, 15.151789 ], [ 145.776321, 15.151814 ], [ 145.776285, 15.151793 ], [ 145.776264, 15.151758 ], [ 145.776197, 15.151713 ], [ 145.776082, 15.151692 ], [ 145.775984, 15.151646 ], [ 145.775922, 15.151599 ], [ 145.775833, 15.151578 ], [ 145.775792, 15.151614 ], [ 145.775739, 15.151619 ], [ 145.775632, 15.151558 ], [ 145.775568, 15.151522 ], [ 145.775282, 15.151581 ], [ 145.77523, 15.151536 ], [ 145.775058, 15.151468 ], [ 145.775038, 15.151418 ], [ 145.774999, 15.151392 ], [ 145.774876, 15.151407 ], [ 145.774821, 15.151505 ], [ 145.774729, 15.151497 ], [ 145.774569, 15.151491 ], [ 145.774385, 15.151667 ], [ 145.774318, 15.151692 ], [ 145.774244, 15.151757 ], [ 145.774208, 15.151828 ], [ 145.774134, 15.151883 ], [ 145.774051, 15.151928 ], [ 145.773895, 15.151952 ], [ 145.773821, 15.151998 ], [ 145.773696, 15.152093 ], [ 145.773607, 15.152128 ], [ 145.773523, 15.152178 ], [ 145.773471, 15.152284 ], [ 145.773413, 15.15239 ], [ 145.773355, 15.15248 ], [ 145.773399, 15.152579 ], [ 145.773339, 15.152652 ], [ 145.773288, 15.152733 ], [ 145.773246, 15.152815 ], [ 145.773186, 15.152888 ], [ 145.773102, 15.152936 ], [ 145.772816, 15.152963 ], [ 145.772746, 15.152958 ], [ 145.772713, 15.153002 ], [ 145.772709, 15.153008 ], [ 145.772724, 15.153064 ], [ 145.772521, 15.153149 ], [ 145.772325, 15.153206 ], [ 145.772295, 15.153393 ], [ 145.772153, 15.15355 ], [ 145.772085, 15.153802 ], [ 145.77198, 15.153874 ], [ 145.771965, 15.154002 ], [ 145.771875, 15.15406 ], [ 145.771919, 15.154233 ], [ 145.771815, 15.154262 ], [ 145.771822, 15.15442 ], [ 145.771754, 15.154535 ], [ 145.771445, 15.15469 ], [ 145.771319, 15.154836 ], [ 145.771159, 15.154905 ], [ 145.771025, 15.154941 ], [ 145.770943, 15.155092 ], [ 145.770979, 15.155186 ], [ 145.770957, 15.155258 ], [ 145.770794, 15.155206 ], [ 145.770319, 15.155319 ], [ 145.770059, 15.155317 ], [ 145.769957, 15.155321 ], [ 145.769863, 15.155431 ], [ 145.769813, 15.155622 ], [ 145.769767, 15.155766 ], [ 145.769859, 15.155859 ], [ 145.76988, 15.155895 ], [ 145.769889, 15.15591 ], [ 145.769952, 15.155951 ], [ 145.769945, 15.156038 ], [ 145.770023, 15.156201 ], [ 145.770062, 15.156273 ], [ 145.770132, 15.156375 ], [ 145.770162, 15.156431 ], [ 145.770215, 15.156474 ], [ 145.77025, 15.156523 ], [ 145.770256, 15.156582 ], [ 145.77023, 15.156623 ], [ 145.770274, 15.156695 ], [ 145.770283, 15.156748 ], [ 145.770273, 15.156815 ], [ 145.770287, 15.156896 ], [ 145.770267, 15.15692 ], [ 145.770228, 15.156992 ], [ 145.770232, 15.157039 ], [ 145.770279, 15.157064 ], [ 145.770321, 15.157113 ], [ 145.770335, 15.157136 ], [ 145.770389, 15.15725 ], [ 145.770408, 15.157342 ], [ 145.770452, 15.157452 ], [ 145.770372, 15.157543 ], [ 145.770332, 15.157595 ], [ 145.770367, 15.157676 ], [ 145.770307, 15.157791 ], [ 145.770227, 15.157905 ], [ 145.770252, 15.157953 ], [ 145.770138, 15.158043 ], [ 145.770122, 15.158187 ], [ 145.770058, 15.158234 ], [ 145.770008, 15.158402 ], [ 145.769941, 15.158473 ], [ 145.769906, 15.158554 ], [ 145.769837, 15.158573 ], [ 145.769792, 15.15862 ], [ 145.769832, 15.158678 ], [ 145.769732, 15.158782 ], [ 145.769673, 15.158878 ], [ 145.769604, 15.15891 ], [ 145.769519, 15.158987 ], [ 145.769386, 15.159048 ], [ 145.769302, 15.159071 ], [ 145.769238, 15.159186 ], [ 145.769243, 15.159268 ], [ 145.769153, 15.159353 ], [ 145.769049, 15.159419 ], [ 145.768975, 15.1595 ], [ 145.76891, 15.159611 ], [ 145.768811, 15.159681 ], [ 145.768692, 15.159757 ], [ 145.768682, 15.159848 ], [ 145.768563, 15.159953 ], [ 145.768495, 15.159934 ], [ 145.768416, 15.159972 ], [ 145.7684, 15.160047 ], [ 145.76841, 15.160115 ], [ 145.768316, 15.160171 ], [ 145.768214, 15.160267 ], [ 145.768179, 15.160395 ], [ 145.768035, 15.160643 ], [ 145.768019, 15.160724 ], [ 145.767876, 15.160905 ], [ 145.76787, 15.161006 ], [ 145.767677, 15.16111 ], [ 145.767569, 15.161158 ], [ 145.767508, 15.161363 ], [ 145.767557, 15.161492 ], [ 145.768002, 15.161868 ], [ 145.770143, 15.163678 ], [ 145.770011, 15.163964 ], [ 145.768874, 15.166428 ], [ 145.76866, 15.166771 ], [ 145.768022, 15.167803 ], [ 145.767809, 15.168147 ], [ 145.767225, 15.167853 ], [ 145.76704, 15.16776 ], [ 145.76673, 15.1676 ], [ 145.76635, 15.16742 ], [ 145.76612, 15.1673 ], [ 145.765489, 15.166947 ], [ 145.76535, 15.16687 ], [ 145.76506, 15.16672 ], [ 145.76495, 15.16669 ], [ 145.764897, 15.16669 ], [ 145.76487, 15.16669 ], [ 145.7648, 15.16671 ], [ 145.76474, 15.16675 ], [ 145.76466, 15.16684 ], [ 145.76463, 15.166886 ], [ 145.76446, 15.16716 ], [ 145.76431, 15.16741 ], [ 145.76421, 15.16759 ], [ 145.76418, 15.1677 ], [ 145.764143, 15.167802 ], [ 145.76413, 15.16784 ], [ 145.7641, 15.1679 ], [ 145.76405, 15.16796 ], [ 145.76398, 15.16801 ], [ 145.76391, 15.16804 ], [ 145.763918, 15.168053 ], [ 145.76428, 15.16867 ], [ 145.764283, 15.168885 ], [ 145.76429, 15.16931 ], [ 145.76428, 15.16945 ], [ 145.764252, 15.169527 ], [ 145.76418, 15.16973 ], [ 145.7641, 15.169875 ], [ 145.76389, 15.17026 ], [ 145.763864, 15.170311 ], [ 145.76379, 15.17046 ], [ 145.76367, 15.17068 ], [ 145.763609, 15.17083 ], [ 145.76357, 15.17093 ], [ 145.76356, 15.17106 ], [ 145.76357, 15.17115 ], [ 145.76364, 15.17126 ], [ 145.76373, 15.17137 ], [ 145.76386, 15.17149 ], [ 145.76398, 15.17156 ], [ 145.76412, 15.17169 ], [ 145.764222, 15.17177 ], [ 145.76426, 15.1718 ], [ 145.76433, 15.1719 ], [ 145.76443, 15.17201 ], [ 145.76446, 15.1721 ], [ 145.76431, 15.17207 ], [ 145.764189, 15.172039 ], [ 145.76403, 15.172 ], [ 145.76378, 15.17195 ], [ 145.76363, 15.17191 ], [ 145.76343, 15.17184 ], [ 145.763389, 15.17182 ], [ 145.76314, 15.1717 ], [ 145.76302, 15.17188 ], [ 145.762975, 15.17195 ], [ 145.762501, 15.172714 ], [ 145.76243, 15.17283 ], [ 145.76233, 15.17296 ], [ 145.762261, 15.173112 ], [ 145.762055, 15.173569 ], [ 145.761987, 15.173722 ], [ 145.761882, 15.173802 ], [ 145.761001, 15.175319 ], [ 145.762698, 15.175576 ], [ 145.76459, 15.17624 ], [ 145.764704, 15.176297 ], [ 145.765045, 15.176471 ], [ 145.76516, 15.17653 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "69", "COUNTYFP10": "110", "TRACTCE10": "001100", "GEOID10": "69110001100", "NAME10": "11", "NAMELSAD10": "Census Tract 11", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1631701, "AWATER10": 0, "INTPTLAT10": "+15.1343415", "INTPTLON10": "+145.7033712" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.70077, 15.14198 ], [ 145.70097, 15.14189 ], [ 145.70114, 15.14175 ], [ 145.70156, 15.14136 ], [ 145.702093, 15.140835 ], [ 145.70216, 15.14077 ], [ 145.70242, 15.14054 ], [ 145.702543, 15.140431 ], [ 145.702911, 15.140107 ], [ 145.703035, 15.139999 ], [ 145.703094, 15.139947 ], [ 145.70327, 15.139791 ], [ 145.70333, 15.13974 ], [ 145.703376, 15.1397 ], [ 145.703514, 15.13958 ], [ 145.70356, 15.13954 ], [ 145.703598, 15.139511 ], [ 145.703713, 15.139424 ], [ 145.703752, 15.139396 ], [ 145.703909, 15.139277 ], [ 145.70428, 15.139 ], [ 145.704378, 15.138916 ], [ 145.70453, 15.13879 ], [ 145.70503, 15.13845 ], [ 145.70512, 15.13839 ], [ 145.7056, 15.138 ], [ 145.70577, 15.13785 ], [ 145.70592, 15.13765 ], [ 145.706238, 15.137129 ], [ 145.70636, 15.13693 ], [ 145.706571, 15.136625 ], [ 145.706694, 15.136446 ], [ 145.70681, 15.13628 ], [ 145.707056, 15.135907 ], [ 145.707176, 15.135727 ], [ 145.707271, 15.135588 ], [ 145.707349, 15.135478 ], [ 145.707585, 15.135201 ], [ 145.707603, 15.135181 ], [ 145.7077, 15.13508 ], [ 145.707852, 15.134927 ], [ 145.708, 15.13478 ], [ 145.708321, 15.134485 ], [ 145.70848, 15.13434 ], [ 145.70876, 15.13406 ], [ 145.708795, 15.134025 ], [ 145.709754, 15.133093 ], [ 145.70982, 15.13303 ], [ 145.71006, 15.13277 ], [ 145.710211, 15.13261 ], [ 145.710667, 15.132129 ], [ 145.71082, 15.13197 ], [ 145.711145, 15.131631 ], [ 145.7118, 15.13095 ], [ 145.712108, 15.130601 ], [ 145.712376, 15.130299 ], [ 145.71242, 15.13025 ], [ 145.711837, 15.129802 ], [ 145.711334, 15.129417 ], [ 145.711013, 15.129171 ], [ 145.71101, 15.12917 ], [ 145.710879, 15.129073 ], [ 145.71055, 15.12883 ], [ 145.710483, 15.128795 ], [ 145.71034, 15.12872 ], [ 145.710066, 15.128564 ], [ 145.71006, 15.12856 ], [ 145.70996, 15.12852 ], [ 145.70964, 15.128392 ], [ 145.709534, 15.12835 ], [ 145.709469, 15.128323 ], [ 145.709274, 15.128245 ], [ 145.70921, 15.12822 ], [ 145.709175, 15.128206 ], [ 145.70907, 15.128167 ], [ 145.709036, 15.128155 ], [ 145.709006, 15.128144 ], [ 145.708919, 15.128111 ], [ 145.70889, 15.1281 ], [ 145.708777, 15.128057 ], [ 145.708441, 15.127928 ], [ 145.708329, 15.127886 ], [ 145.708179, 15.127828 ], [ 145.707729, 15.127657 ], [ 145.70758, 15.1276 ], [ 145.707472, 15.12756 ], [ 145.70715, 15.12744 ], [ 145.707044, 15.127398 ], [ 145.706936, 15.127355 ], [ 145.706612, 15.127226 ], [ 145.706505, 15.127184 ], [ 145.706418, 15.127149 ], [ 145.706158, 15.127047 ], [ 145.70614, 15.12704 ], [ 145.706072, 15.127014 ], [ 145.706022, 15.126995 ], [ 145.7051, 15.12664 ], [ 145.70501, 15.12661 ], [ 145.704793, 15.126516 ], [ 145.7045, 15.12639 ], [ 145.704354, 15.126317 ], [ 145.704008, 15.126731 ], [ 145.702873, 15.127935 ], [ 145.70286, 15.12796 ], [ 145.70279, 15.12806 ], [ 145.70257, 15.12827 ], [ 145.702344, 15.128447 ], [ 145.70215, 15.1286 ], [ 145.702028, 15.128699 ], [ 145.70171, 15.12896 ], [ 145.701664, 15.128994 ], [ 145.70154, 15.12909 ], [ 145.701464, 15.129151 ], [ 145.70132, 15.12927 ], [ 145.701247, 15.129346 ], [ 145.701181, 15.129418 ], [ 145.70117, 15.12943 ], [ 145.701129, 15.129467 ], [ 145.700972, 15.129611 ], [ 145.70092, 15.12966 ], [ 145.70084, 15.12973 ], [ 145.700772, 15.129795 ], [ 145.70051, 15.13005 ], [ 145.70035, 15.13022 ], [ 145.700347, 15.130223 ], [ 145.70023, 15.13037 ], [ 145.700222, 15.13038 ], [ 145.700045, 15.130595 ], [ 145.69956, 15.13119 ], [ 145.699516, 15.131243 ], [ 145.69934, 15.13146 ], [ 145.699325, 15.131477 ], [ 145.699282, 15.131531 ], [ 145.699268, 15.131549 ], [ 145.699192, 15.131641 ], [ 145.69904, 15.13183 ], [ 145.69897, 15.131923 ], [ 145.6989, 15.13202 ], [ 145.698865, 15.132063 ], [ 145.698764, 15.132195 ], [ 145.69873, 15.13224 ], [ 145.698585, 15.132432 ], [ 145.698151, 15.133011 ], [ 145.6981, 15.13308 ], [ 145.69799, 15.13319 ], [ 145.697922, 15.133286 ], [ 145.697899, 15.133303 ], [ 145.697673, 15.133476 ], [ 145.697533, 15.133536 ], [ 145.697503, 15.133553 ], [ 145.6974, 15.13355 ], [ 145.69747, 15.13372 ], [ 145.697501, 15.133789 ], [ 145.69762, 15.13405 ], [ 145.69775, 15.13434 ], [ 145.697818, 15.1345 ], [ 145.69792, 15.13474 ], [ 145.69804, 15.135024 ], [ 145.698401, 15.135879 ], [ 145.69841, 15.1359 ], [ 145.69853, 15.13616 ], [ 145.698596, 15.136341 ], [ 145.698456, 15.13634 ], [ 145.698039, 15.13634 ], [ 145.6979, 15.13634 ], [ 145.6978, 15.13637 ], [ 145.697731, 15.136401 ], [ 145.697242, 15.136625 ], [ 145.69708, 15.1367 ], [ 145.696996, 15.136737 ], [ 145.69679, 15.13683 ], [ 145.696305, 15.137068 ], [ 145.696888, 15.138198 ], [ 145.697079, 15.138715 ], [ 145.697361, 15.139527 ], [ 145.697502, 15.140109 ], [ 145.69755, 15.140306 ], [ 145.697714, 15.140954 ], [ 145.697823, 15.14148 ], [ 145.69787, 15.141707 ], [ 145.697871, 15.141719 ], [ 145.697894, 15.141913 ], [ 145.698111, 15.142291 ], [ 145.698155, 15.142382 ], [ 145.698194, 15.142463 ], [ 145.698247, 15.142608 ], [ 145.698268, 15.142666 ], [ 145.698332, 15.142843 ], [ 145.698354, 15.142902 ], [ 145.698377, 15.142964 ], [ 145.698446, 15.143152 ], [ 145.698469, 15.143215 ], [ 145.698575, 15.143505 ], [ 145.698682, 15.143766 ], [ 145.69878, 15.144001 ], [ 145.698941, 15.144391 ], [ 145.699085, 15.144717 ], [ 145.69955, 15.14468 ], [ 145.69984, 15.1446 ], [ 145.699955, 15.144577 ], [ 145.700304, 15.144511 ], [ 145.70042, 15.14449 ], [ 145.700513, 15.144471 ], [ 145.700796, 15.144417 ], [ 145.70089, 15.1444 ], [ 145.700945, 15.144389 ], [ 145.701114, 15.144359 ], [ 145.70117, 15.14435 ], [ 145.70116, 15.14427 ], [ 145.701155, 15.144245 ], [ 145.701098, 15.143933 ], [ 145.70108, 15.14383 ], [ 145.701046, 15.143628 ], [ 145.700944, 15.143022 ], [ 145.70091, 15.14282 ], [ 145.700904, 15.142788 ], [ 145.700886, 15.142692 ], [ 145.70088, 15.14266 ], [ 145.700855, 15.142524 ], [ 145.700782, 15.142116 ], [ 145.70077, 15.14205 ], [ 145.70077, 15.14198 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "69", "COUNTYFP10": "110", "TRACTCE10": "001200", "GEOID10": "69110001200", "NAME10": "12", "NAMELSAD10": "Census Tract 12", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1063726, "AWATER10": 0, "INTPTLAT10": "+15.1288135", "INTPTLON10": "+145.6970464" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.695044, 15.135092 ], [ 145.695237, 15.135348 ], [ 145.695467, 15.135679 ], [ 145.695671, 15.135972 ], [ 145.695844, 15.136249 ], [ 145.696072, 15.136614 ], [ 145.696305, 15.137068 ], [ 145.69679, 15.13683 ], [ 145.696996, 15.136737 ], [ 145.69708, 15.1367 ], [ 145.697242, 15.136625 ], [ 145.697731, 15.136401 ], [ 145.6978, 15.13637 ], [ 145.6979, 15.13634 ], [ 145.698039, 15.13634 ], [ 145.698456, 15.13634 ], [ 145.698596, 15.136341 ], [ 145.69853, 15.13616 ], [ 145.69841, 15.1359 ], [ 145.698401, 15.135879 ], [ 145.69804, 15.135024 ], [ 145.69792, 15.13474 ], [ 145.697818, 15.1345 ], [ 145.69775, 15.13434 ], [ 145.69762, 15.13405 ], [ 145.697501, 15.133789 ], [ 145.69747, 15.13372 ], [ 145.6974, 15.13355 ], [ 145.697503, 15.133553 ], [ 145.697533, 15.133536 ], [ 145.697673, 15.133476 ], [ 145.697899, 15.133303 ], [ 145.697922, 15.133286 ], [ 145.69799, 15.13319 ], [ 145.6981, 15.13308 ], [ 145.698151, 15.133011 ], [ 145.698585, 15.132432 ], [ 145.69873, 15.13224 ], [ 145.698764, 15.132195 ], [ 145.698865, 15.132063 ], [ 145.6989, 15.13202 ], [ 145.69897, 15.131923 ], [ 145.69904, 15.13183 ], [ 145.699192, 15.131641 ], [ 145.699268, 15.131549 ], [ 145.699282, 15.131531 ], [ 145.699325, 15.131477 ], [ 145.69934, 15.13146 ], [ 145.699516, 15.131243 ], [ 145.69956, 15.13119 ], [ 145.700045, 15.130595 ], [ 145.700222, 15.13038 ], [ 145.70023, 15.13037 ], [ 145.700347, 15.130223 ], [ 145.70035, 15.13022 ], [ 145.70051, 15.13005 ], [ 145.700772, 15.129795 ], [ 145.70084, 15.12973 ], [ 145.70092, 15.12966 ], [ 145.700972, 15.129611 ], [ 145.701129, 15.129467 ], [ 145.70117, 15.12943 ], [ 145.701181, 15.129418 ], [ 145.701247, 15.129346 ], [ 145.70132, 15.12927 ], [ 145.701464, 15.129151 ], [ 145.70154, 15.12909 ], [ 145.701664, 15.128994 ], [ 145.70171, 15.12896 ], [ 145.702028, 15.128699 ], [ 145.70215, 15.1286 ], [ 145.702344, 15.128447 ], [ 145.70257, 15.12827 ], [ 145.70279, 15.12806 ], [ 145.70286, 15.12796 ], [ 145.702873, 15.127935 ], [ 145.704008, 15.126731 ], [ 145.704354, 15.126317 ], [ 145.70414, 15.12621 ], [ 145.704102, 15.126187 ], [ 145.703905, 15.126073 ], [ 145.7039, 15.12607 ], [ 145.70363, 15.12589 ], [ 145.70348, 15.12578 ], [ 145.703472, 15.125775 ], [ 145.70315, 15.12561 ], [ 145.70295, 15.12553 ], [ 145.702942, 15.125528 ], [ 145.70275, 15.1255 ], [ 145.702611, 15.125483 ], [ 145.702194, 15.125435 ], [ 145.702056, 15.125419 ], [ 145.701908, 15.125401 ], [ 145.70181, 15.12539 ], [ 145.701652, 15.125373 ], [ 145.701467, 15.125355 ], [ 145.70132, 15.12534 ], [ 145.7009, 15.1253 ], [ 145.700793, 15.125288 ], [ 145.700633, 15.125271 ], [ 145.70033, 15.12524 ], [ 145.70009, 15.1252 ], [ 145.69981, 15.12513 ], [ 145.6994, 15.12498 ], [ 145.69866, 15.124689 ], [ 145.69856, 15.12465 ], [ 145.69803, 15.12441 ], [ 145.69791, 15.12436 ], [ 145.697843, 15.124324 ], [ 145.69763, 15.12421 ], [ 145.69742, 15.12405 ], [ 145.69735, 15.123966 ], [ 145.69727, 15.12387 ], [ 145.697231, 15.1238 ], [ 145.697161, 15.123675 ], [ 145.69713, 15.12362 ], [ 145.69704, 15.12335 ], [ 145.697017, 15.123273 ], [ 145.696976, 15.123137 ], [ 145.696964, 15.123099 ], [ 145.69695, 15.12305 ], [ 145.696942, 15.122984 ], [ 145.696938, 15.122946 ], [ 145.696905, 15.122676 ], [ 145.69689, 15.12255 ], [ 145.69687, 15.12214 ], [ 145.69687, 15.121861 ], [ 145.69687, 15.12159 ], [ 145.696862, 15.121392 ], [ 145.69686, 15.12134 ], [ 145.69679, 15.12112 ], [ 145.69673, 15.12098 ], [ 145.696619, 15.120869 ], [ 145.69648, 15.12073 ], [ 145.696239, 15.120902 ], [ 145.696028, 15.121076 ], [ 145.6956, 15.121376 ], [ 145.6952, 15.12168 ], [ 145.69505, 15.12189 ], [ 145.694919, 15.122152 ], [ 145.69476, 15.12265 ], [ 145.694697, 15.122876 ], [ 145.69468, 15.12294 ], [ 145.694502, 15.123555 ], [ 145.69447, 15.12367 ], [ 145.694439, 15.123782 ], [ 145.694393, 15.123948 ], [ 145.69427, 15.1244 ], [ 145.69426, 15.124448 ], [ 145.694225, 15.124617 ], [ 145.693769, 15.124581 ], [ 145.693768, 15.124663 ], [ 145.69376, 15.124744 ], [ 145.693725, 15.124908 ], [ 145.693707, 15.125072 ], [ 145.693715, 15.125153 ], [ 145.693706, 15.125236 ], [ 145.693637, 15.125399 ], [ 145.693612, 15.12548 ], [ 145.693577, 15.125644 ], [ 145.693551, 15.125726 ], [ 145.693534, 15.125807 ], [ 145.693525, 15.12589 ], [ 145.693507, 15.125971 ], [ 145.693456, 15.126135 ], [ 145.693431, 15.126233 ], [ 145.69338, 15.1263 ], [ 145.69339, 15.126323 ], [ 145.693353, 15.126445 ], [ 145.693318, 15.126649 ], [ 145.69318, 15.127213 ], [ 145.693017, 15.12759 ], [ 145.692906, 15.127875 ], [ 145.692898, 15.127888 ], [ 145.692701, 15.128259 ], [ 145.692556, 15.128545 ], [ 145.692488, 15.128732 ], [ 145.692401, 15.12915 ], [ 145.692348, 15.129543 ], [ 145.692287, 15.129828 ], [ 145.692323, 15.130302 ], [ 145.692334, 15.130443 ], [ 145.692401, 15.130625 ], [ 145.692508, 15.130911 ], [ 145.692699, 15.131379 ], [ 145.692785, 15.131557 ], [ 145.69289, 15.131773 ], [ 145.692926, 15.131862 ], [ 145.693138, 15.132383 ], [ 145.693314, 15.132815 ], [ 145.693723, 15.133407 ], [ 145.694033, 15.133804 ], [ 145.694275, 15.134114 ], [ 145.694382, 15.134247 ], [ 145.694517, 15.134413 ], [ 145.694735, 15.134682 ], [ 145.694914, 15.13492 ], [ 145.695044, 15.135092 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "69", "COUNTYFP10": "110", "TRACTCE10": "000500", "GEOID10": "69110000500", "NAME10": "5", "NAMELSAD10": "Census Tract 5", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4949942, "AWATER10": 0, "INTPTLAT10": "+15.2000221", "INTPTLON10": "+145.7341639" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.71999, 15.20342 ], [ 145.72002, 15.20365 ], [ 145.720023, 15.203673 ], [ 145.720054, 15.203855 ], [ 145.720069, 15.203946 ], [ 145.720114, 15.204219 ], [ 145.72013, 15.20431 ], [ 145.720143, 15.204427 ], [ 145.72015, 15.20448 ], [ 145.720213, 15.204776 ], [ 145.720239, 15.204893 ], [ 145.720244, 15.204919 ], [ 145.720261, 15.204999 ], [ 145.720267, 15.205026 ], [ 145.720272, 15.205051 ], [ 145.720289, 15.205127 ], [ 145.720295, 15.205153 ], [ 145.7203, 15.20518 ], [ 145.720318, 15.205261 ], [ 145.720324, 15.205288 ], [ 145.720329, 15.205312 ], [ 145.720344, 15.205385 ], [ 145.72035, 15.20541 ], [ 145.720382, 15.205524 ], [ 145.720478, 15.205866 ], [ 145.72051, 15.20598 ], [ 145.720545, 15.20609 ], [ 145.720653, 15.20642 ], [ 145.72069, 15.20653 ], [ 145.720724, 15.206618 ], [ 145.720826, 15.206881 ], [ 145.72086, 15.20697 ], [ 145.72095, 15.20719 ], [ 145.720953, 15.207198 ], [ 145.721243, 15.207882 ], [ 145.72134, 15.20811 ], [ 145.721474, 15.20839 ], [ 145.72168, 15.20882 ], [ 145.721911, 15.209212 ], [ 145.72207, 15.20948 ], [ 145.722122, 15.209567 ], [ 145.722278, 15.209831 ], [ 145.72233, 15.20992 ], [ 145.722523, 15.210224 ], [ 145.72268, 15.21047 ], [ 145.7231, 15.21103 ], [ 145.723157, 15.211102 ], [ 145.723383, 15.211384 ], [ 145.723572, 15.21162 ], [ 145.72358, 15.21163 ], [ 145.724193, 15.212287 ], [ 145.7244, 15.21251 ], [ 145.72454, 15.2124 ], [ 145.72459, 15.212356 ], [ 145.72461, 15.21234 ], [ 145.72474, 15.2122 ], [ 145.72482, 15.21209 ], [ 145.72496, 15.21187 ], [ 145.725021, 15.211764 ], [ 145.72507, 15.21168 ], [ 145.72514, 15.21155 ], [ 145.72518, 15.21148 ], [ 145.725218, 15.211398 ], [ 145.72525, 15.21133 ], [ 145.7253, 15.21119 ], [ 145.72534, 15.21106 ], [ 145.725358, 15.210909 ], [ 145.72538, 15.21074 ], [ 145.725397, 15.21056 ], [ 145.7254, 15.21054 ], [ 145.72543, 15.21035 ], [ 145.72548, 15.21025 ], [ 145.725517, 15.210199 ], [ 145.72556, 15.21014 ], [ 145.725621, 15.210085 ], [ 145.72564, 15.21007 ], [ 145.72578, 15.21 ], [ 145.72598, 15.209894 ], [ 145.726579, 15.209576 ], [ 145.72678, 15.20947 ], [ 145.72683, 15.20944 ], [ 145.726921, 15.20939 ], [ 145.727193, 15.209241 ], [ 145.727285, 15.209192 ], [ 145.727524, 15.209061 ], [ 145.72782, 15.2089 ], [ 145.728249, 15.208685 ], [ 145.72828, 15.20867 ], [ 145.7285, 15.20858 ], [ 145.728636, 15.208525 ], [ 145.7288, 15.20846 ], [ 145.729056, 15.208402 ], [ 145.7292, 15.20837 ], [ 145.729231, 15.208368 ], [ 145.729327, 15.208361 ], [ 145.72936, 15.20836 ], [ 145.729639, 15.208369 ], [ 145.729772, 15.208406 ], [ 145.729978, 15.208464 ], [ 145.73027, 15.20855 ], [ 145.73055, 15.20869 ], [ 145.730797, 15.208802 ], [ 145.731045, 15.208917 ], [ 145.731108, 15.208947 ], [ 145.731297, 15.209039 ], [ 145.73136, 15.20907 ], [ 145.73139, 15.20919 ], [ 145.73143, 15.20928 ], [ 145.73153, 15.20935 ], [ 145.731594, 15.20939 ], [ 145.73196, 15.20962 ], [ 145.73261, 15.21001 ], [ 145.732665, 15.210054 ], [ 145.73276, 15.21013 ], [ 145.73286, 15.21018 ], [ 145.73297, 15.21022 ], [ 145.73304, 15.21023 ], [ 145.733099, 15.21024 ], [ 145.733279, 15.21027 ], [ 145.73334, 15.21028 ], [ 145.733398, 15.210288 ], [ 145.733572, 15.210313 ], [ 145.733631, 15.210322 ], [ 145.73376, 15.21034 ], [ 145.733776, 15.210343 ], [ 145.734, 15.21039 ], [ 145.73418, 15.21047 ], [ 145.734191, 15.21048 ], [ 145.7343, 15.21058 ], [ 145.73439, 15.210662 ], [ 145.73441, 15.21068 ], [ 145.73452, 15.21084 ], [ 145.734619, 15.210945 ], [ 145.734703, 15.211034 ], [ 145.734793, 15.21113 ], [ 145.73484, 15.21118 ], [ 145.735052, 15.211427 ], [ 145.73508, 15.21146 ], [ 145.73516, 15.2115 ], [ 145.73522, 15.21161 ], [ 145.735234, 15.211621 ], [ 145.73532, 15.21169 ], [ 145.73548, 15.21177 ], [ 145.735613, 15.211814 ], [ 145.73575, 15.21186 ], [ 145.736593, 15.212126 ], [ 145.737702, 15.212541 ], [ 145.740033, 15.212184 ], [ 145.740476, 15.212095 ], [ 145.743796, 15.211576 ], [ 145.74572, 15.212079 ], [ 145.746438, 15.213208 ], [ 145.746769, 15.213013 ], [ 145.746964, 15.212715 ], [ 145.746986, 15.212199 ], [ 145.74697, 15.212078 ], [ 145.746929, 15.211757 ], [ 145.746961, 15.211266 ], [ 145.746927, 15.210943 ], [ 145.746821, 15.210609 ], [ 145.746744, 15.210041 ], [ 145.746755, 15.209523 ], [ 145.746632, 15.209066 ], [ 145.746591, 15.208707 ], [ 145.746406, 15.208382 ], [ 145.746299, 15.208238 ], [ 145.743546, 15.207321 ], [ 145.742775, 15.207234 ], [ 145.74235, 15.206594 ], [ 145.741414, 15.205562 ], [ 145.741246, 15.204895 ], [ 145.741171, 15.203231 ], [ 145.741436, 15.201844 ], [ 145.742214, 15.199835 ], [ 145.742, 15.194221 ], [ 145.741958, 15.193059 ], [ 145.741752, 15.186855 ], [ 145.741655, 15.185499 ], [ 145.741168, 15.185506 ], [ 145.740321, 15.185538 ], [ 145.739846, 15.185534 ], [ 145.73756, 15.185379 ], [ 145.73562, 15.185346 ], [ 145.735187, 15.1853 ], [ 145.730655, 15.185004 ], [ 145.728517, 15.185333 ], [ 145.729193, 15.187945 ], [ 145.728643, 15.18949 ], [ 145.728449, 15.190419 ], [ 145.728345, 15.191516 ], [ 145.728335, 15.191629 ], [ 145.728516, 15.193152 ], [ 145.729139, 15.194222 ], [ 145.729312, 15.194427 ], [ 145.729497, 15.194753 ], [ 145.729538, 15.194899 ], [ 145.729821, 15.195899 ], [ 145.729956, 15.196867 ], [ 145.730123, 15.197197 ], [ 145.73017, 15.19729 ], [ 145.730242, 15.197432 ], [ 145.730674, 15.197744 ], [ 145.733185, 15.200615 ], [ 145.733171, 15.200661 ], [ 145.727142, 15.201593 ], [ 145.726858, 15.201465 ], [ 145.726414, 15.201265 ], [ 145.726249, 15.20113 ], [ 145.726249, 15.201119 ], [ 145.725738, 15.201074 ], [ 145.72538, 15.20107 ], [ 145.72526, 15.20105 ], [ 145.725021, 15.20105 ], [ 145.72439, 15.20105 ], [ 145.72394, 15.201055 ], [ 145.72358, 15.20106 ], [ 145.721795, 15.201061 ], [ 145.7217, 15.20106 ], [ 145.721521, 15.201061 ], [ 145.720699, 15.201069 ], [ 145.72068, 15.20107 ], [ 145.720426, 15.20107 ], [ 145.720314, 15.20107 ], [ 145.719981, 15.20107 ], [ 145.71987, 15.20107 ], [ 145.71987, 15.20115 ], [ 145.719872, 15.201325 ], [ 145.71988, 15.20177 ], [ 145.71988, 15.201853 ], [ 145.71988, 15.20203 ], [ 145.719879, 15.20203 ], [ 145.71988, 15.2021 ], [ 145.719886, 15.202174 ], [ 145.719904, 15.202396 ], [ 145.71991, 15.20247 ], [ 145.719915, 15.202563 ], [ 145.719933, 15.202846 ], [ 145.71994, 15.20294 ], [ 145.719959, 15.203123 ], [ 145.71999, 15.20342 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "69", "COUNTYFP10": "110", "TRACTCE10": "001000", "GEOID10": "69110001000", "NAME10": "10", "NAMELSAD10": "Census Tract 10", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3243194, "AWATER10": 0, "INTPTLAT10": "+15.1432159", "INTPTLON10": "+145.7169032" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.71925, 15.13549 ], [ 145.719148, 15.135411 ], [ 145.71903, 15.13532 ], [ 145.718842, 15.135177 ], [ 145.71874, 15.1351 ], [ 145.71858, 15.13497 ], [ 145.7181, 15.13458 ], [ 145.71794, 15.13445 ], [ 145.717924, 15.134438 ], [ 145.717876, 15.134402 ], [ 145.71786, 15.13439 ], [ 145.717762, 15.134321 ], [ 145.717468, 15.134118 ], [ 145.71737, 15.13405 ], [ 145.717344, 15.134028 ], [ 145.717266, 15.133962 ], [ 145.71724, 15.13394 ], [ 145.717208, 15.133918 ], [ 145.717113, 15.133855 ], [ 145.717082, 15.133835 ], [ 145.71706, 15.13382 ], [ 145.717049, 15.133812 ], [ 145.716952, 15.133743 ], [ 145.71692, 15.13372 ], [ 145.716783, 15.133618 ], [ 145.716374, 15.133312 ], [ 145.71633, 15.13328 ], [ 145.71624, 15.133208 ], [ 145.716207, 15.133182 ], [ 145.71611, 15.133105 ], [ 145.716078, 15.13308 ], [ 145.71603, 15.133042 ], [ 145.715887, 15.132928 ], [ 145.71584, 15.13289 ], [ 145.715672, 15.132759 ], [ 145.715168, 15.132369 ], [ 145.715, 15.13224 ], [ 145.714881, 15.132146 ], [ 145.71456, 15.13189 ], [ 145.714527, 15.131864 ], [ 145.714408, 15.131772 ], [ 145.714322, 15.131705 ], [ 145.714065, 15.131506 ], [ 145.71398, 15.13144 ], [ 145.71387, 15.131355 ], [ 145.71367, 15.1312 ], [ 145.71354, 15.131103 ], [ 145.71343, 15.13102 ], [ 145.713229, 15.130864 ], [ 145.71285, 15.13057 ], [ 145.712623, 15.130401 ], [ 145.71242, 15.13025 ], [ 145.712376, 15.130299 ], [ 145.712108, 15.130601 ], [ 145.7118, 15.13095 ], [ 145.711145, 15.131631 ], [ 145.71082, 15.13197 ], [ 145.710667, 15.132129 ], [ 145.710211, 15.13261 ], [ 145.71006, 15.13277 ], [ 145.70982, 15.13303 ], [ 145.709754, 15.133093 ], [ 145.708795, 15.134025 ], [ 145.70876, 15.13406 ], [ 145.70848, 15.13434 ], [ 145.708321, 15.134485 ], [ 145.708, 15.13478 ], [ 145.707852, 15.134927 ], [ 145.7077, 15.13508 ], [ 145.707603, 15.135181 ], [ 145.707585, 15.135201 ], [ 145.707349, 15.135478 ], [ 145.707271, 15.135588 ], [ 145.707176, 15.135727 ], [ 145.707056, 15.135907 ], [ 145.70681, 15.13628 ], [ 145.706694, 15.136446 ], [ 145.706571, 15.136625 ], [ 145.70679, 15.136685 ], [ 145.706899, 15.136724 ], [ 145.706956, 15.136804 ], [ 145.706961, 15.136886 ], [ 145.70702, 15.137118 ], [ 145.707026, 15.137428 ], [ 145.707087, 15.137776 ], [ 145.707257, 15.138388 ], [ 145.70726, 15.138397 ], [ 145.707371, 15.138696 ], [ 145.707589, 15.139467 ], [ 145.710572, 15.143596 ], [ 145.711785, 15.145275 ], [ 145.71115, 15.1456 ], [ 145.711145, 15.145601 ], [ 145.71075, 15.14577 ], [ 145.709974, 15.146158 ], [ 145.712298, 15.149939 ], [ 145.712667, 15.149837 ], [ 145.712843, 15.149735 ], [ 145.712982, 15.149608 ], [ 145.713084, 15.14958 ], [ 145.713087, 15.14958 ], [ 145.713225, 15.149463 ], [ 145.713384, 15.149397 ], [ 145.713482, 15.149399 ], [ 145.713604, 15.149275 ], [ 145.713843, 15.149238 ], [ 145.714243, 15.149893 ], [ 145.715354, 15.151189 ], [ 145.718237, 15.154552 ], [ 145.718461, 15.154814 ], [ 145.720192, 15.15365 ], [ 145.720244, 15.153566 ], [ 145.720284, 15.153505 ], [ 145.72043, 15.15342 ], [ 145.720458, 15.153374 ], [ 145.72051, 15.15329 ], [ 145.72065, 15.15318 ], [ 145.720681, 15.153157 ], [ 145.7209, 15.153 ], [ 145.72106, 15.15288 ], [ 145.721215, 15.152784 ], [ 145.7214, 15.15267 ], [ 145.721471, 15.152756 ], [ 145.72159, 15.1529 ], [ 145.72166, 15.15299 ], [ 145.721682, 15.153015 ], [ 145.721756, 15.1531 ], [ 145.72179, 15.15314 ], [ 145.72187, 15.15325 ], [ 145.721892, 15.153256 ], [ 145.72197, 15.15328 ], [ 145.72215, 15.1533 ], [ 145.72229, 15.15332 ], [ 145.72238, 15.15341 ], [ 145.722443, 15.153496 ], [ 145.72246, 15.15352 ], [ 145.72259, 15.15365 ], [ 145.722661, 15.15357 ], [ 145.72279, 15.15343 ], [ 145.722865, 15.153324 ], [ 145.72289, 15.15329 ], [ 145.722938, 15.153246 ], [ 145.72301, 15.15318 ], [ 145.72305, 15.153139 ], [ 145.72312, 15.15307 ], [ 145.72324, 15.153 ], [ 145.72338, 15.15291 ], [ 145.723436, 15.152887 ], [ 145.72358, 15.15283 ], [ 145.723654, 15.152807 ], [ 145.72368, 15.1528 ], [ 145.723883, 15.152756 ], [ 145.72396, 15.15274 ], [ 145.724027, 15.152724 ], [ 145.72423, 15.152675 ], [ 145.724298, 15.15266 ], [ 145.724374, 15.152641 ], [ 145.724603, 15.152587 ], [ 145.72468, 15.15257 ], [ 145.724723, 15.152561 ], [ 145.724851, 15.152534 ], [ 145.724895, 15.152526 ], [ 145.72495, 15.152514 ], [ 145.725114, 15.152481 ], [ 145.72517, 15.15247 ], [ 145.725226, 15.152458 ], [ 145.725394, 15.152422 ], [ 145.72545, 15.15241 ], [ 145.725496, 15.152399 ], [ 145.725634, 15.152369 ], [ 145.725681, 15.15236 ], [ 145.725764, 15.152342 ], [ 145.726016, 15.152287 ], [ 145.7261, 15.15227 ], [ 145.726252, 15.152239 ], [ 145.72671, 15.152146 ], [ 145.726863, 15.152116 ], [ 145.727073, 15.152073 ], [ 145.72724, 15.15204 ], [ 145.7277, 15.151936 ], [ 145.72791, 15.15189 ], [ 145.72801, 15.151868 ], [ 145.72831, 15.151802 ], [ 145.72841, 15.15178 ], [ 145.728653, 15.151731 ], [ 145.72866, 15.15173 ], [ 145.728698, 15.151724 ], [ 145.7288, 15.15171 ], [ 145.728812, 15.151707 ], [ 145.72885, 15.1517 ], [ 145.728872, 15.151696 ], [ 145.728938, 15.151684 ], [ 145.72896, 15.15168 ], [ 145.729134, 15.15166 ], [ 145.72931, 15.15164 ], [ 145.72958, 15.15158 ], [ 145.729649, 15.151562 ], [ 145.72982, 15.15152 ], [ 145.72979, 15.15143 ], [ 145.729596, 15.151187 ], [ 145.72923, 15.15073 ], [ 145.728827, 15.150245 ], [ 145.728568, 15.149934 ], [ 145.728559, 15.149922 ], [ 145.728223, 15.149512 ], [ 145.72819, 15.149471 ], [ 145.728092, 15.14935 ], [ 145.72806, 15.14931 ], [ 145.727872, 15.149069 ], [ 145.727619, 15.148745 ], [ 145.727308, 15.148347 ], [ 145.727121, 15.148107 ], [ 145.726879, 15.147797 ], [ 145.72617, 15.14689 ], [ 145.726152, 15.146872 ], [ 145.72588, 15.14659 ], [ 145.725813, 15.146505 ], [ 145.72581, 15.14651 ], [ 145.725742, 15.146442 ], [ 145.72573, 15.14643 ], [ 145.72556, 15.146223 ], [ 145.7255, 15.14615 ], [ 145.725376, 15.146002 ], [ 145.725004, 15.145558 ], [ 145.72488, 15.14541 ], [ 145.724833, 15.14535 ], [ 145.72481, 15.14532 ], [ 145.724688, 15.145177 ], [ 145.72464, 15.14512 ], [ 145.724516, 15.144972 ], [ 145.724144, 15.144528 ], [ 145.72402, 15.14438 ], [ 145.72394, 15.14428 ], [ 145.723911, 15.144249 ], [ 145.723562, 15.143877 ], [ 145.7235, 15.14381 ], [ 145.72345, 15.14375 ], [ 145.723165, 15.143452 ], [ 145.722884, 15.143146 ], [ 145.72266, 15.14289 ], [ 145.722614, 15.142835 ], [ 145.72261, 15.14283 ], [ 145.722483, 15.142666 ], [ 145.72244, 15.14261 ], [ 145.722333, 15.142457 ], [ 145.72209, 15.14211 ], [ 145.722033, 15.141988 ], [ 145.72196, 15.14183 ], [ 145.721954, 15.14182 ], [ 145.721888, 15.141699 ], [ 145.72179, 15.14152 ], [ 145.721729, 15.141321 ], [ 145.72169, 15.14119 ], [ 145.721634, 15.141 ], [ 145.721466, 15.14043 ], [ 145.72141, 15.14024 ], [ 145.72121, 15.13947 ], [ 145.721173, 15.139344 ], [ 145.721063, 15.138966 ], [ 145.72105, 15.13892 ], [ 145.72103, 15.13884 ], [ 145.720856, 15.13817 ], [ 145.72085, 15.13817 ], [ 145.720808, 15.138011 ], [ 145.72077, 15.13787 ], [ 145.720731, 15.137724 ], [ 145.72067, 15.13749 ], [ 145.72047, 15.13689 ], [ 145.720464, 15.136878 ], [ 145.72034, 15.13661 ], [ 145.720331, 15.136594 ], [ 145.720308, 15.136546 ], [ 145.7203, 15.13653 ], [ 145.7202, 15.13635 ], [ 145.72014, 15.136278 ], [ 145.72001, 15.13612 ], [ 145.71978, 15.1359 ], [ 145.719488, 15.135669 ], [ 145.71935, 15.13556 ], [ 145.71925, 15.13549 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "69", "COUNTYFP10": "110", "TRACTCE10": "990000", "GEOID10": "69110990000", "NAME10": "9900", "NAMELSAD10": "Census Tract 9900", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 532603652, "INTPTLAT10": "+15.2015706", "INTPTLON10": "+145.7826944" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.829515, 15.097264 ], [ 145.825801, 15.092399 ], [ 145.820773, 15.088671 ], [ 145.815071, 15.084004 ], [ 145.808699, 15.078967 ], [ 145.802681, 15.075619 ], [ 145.796017, 15.073586 ], [ 145.787699, 15.072127 ], [ 145.776389, 15.070306 ], [ 145.765418, 15.069046 ], [ 145.752953, 15.067186 ], [ 145.751394, 15.067285 ], [ 145.75007, 15.066604 ], [ 145.75, 15.065922 ], [ 145.745138, 15.024554 ], [ 145.744186, 15.023002 ], [ 145.744157, 15.022906 ], [ 145.70731, 15.051187 ], [ 145.706383, 15.051822 ], [ 145.663741, 15.084401 ], [ 145.663415, 15.084771 ], [ 145.655915, 15.098144 ], [ 145.655521, 15.098764 ], [ 145.654825, 15.099157 ], [ 145.64264, 15.106934 ], [ 145.626893, 15.110369 ], [ 145.624933, 15.110886 ], [ 145.572603, 15.125018 ], [ 145.587745, 15.127748 ], [ 145.633171, 15.135938 ], [ 145.648314, 15.138668 ], [ 145.648734, 15.140362 ], [ 145.649151, 15.140793 ], [ 145.654047, 15.145848 ], [ 145.65568, 15.147534 ], [ 145.655923, 15.147785 ], [ 145.656655, 15.148541 ], [ 145.656899, 15.148793 ], [ 145.657157, 15.149059 ], [ 145.65743, 15.149342 ], [ 145.657925, 15.149866 ], [ 145.65818, 15.150137 ], [ 145.658745, 15.150738 ], [ 145.660442, 15.152543 ], [ 145.661008, 15.153145 ], [ 145.661804, 15.153992 ], [ 145.664192, 15.156533 ], [ 145.664988, 15.15738 ], [ 145.665119, 15.157519 ], [ 145.665514, 15.157939 ], [ 145.665646, 15.158079 ], [ 145.668558, 15.161177 ], [ 145.669296, 15.161962 ], [ 145.674915, 15.1722 ], [ 145.676962, 15.175928 ], [ 145.677083, 15.176276 ], [ 145.677448, 15.177322 ], [ 145.67757, 15.177671 ], [ 145.678078, 15.179128 ], [ 145.678262, 15.179543 ], [ 145.680689, 15.185023 ], [ 145.681499, 15.18685 ], [ 145.68169, 15.187282 ], [ 145.682266, 15.188581 ], [ 145.682458, 15.189015 ], [ 145.684594, 15.193837 ], [ 145.68697, 15.197365 ], [ 145.686969, 15.197551 ], [ 145.686908, 15.216628 ], [ 145.687258, 15.226686 ], [ 145.687452, 15.232241 ], [ 145.688444, 15.236277 ], [ 145.689137, 15.238008 ], [ 145.691702, 15.247015 ], [ 145.69376, 15.25 ], [ 145.69506, 15.252031 ], [ 145.708511, 15.275266 ], [ 145.720082, 15.291279 ], [ 145.720335, 15.291632 ], [ 145.721097, 15.292693 ], [ 145.721352, 15.293047 ], [ 145.726419, 15.300102 ], [ 145.735434, 15.312655 ], [ 145.743441, 15.319609 ], [ 145.75, 15.325305 ], [ 145.752062, 15.327016 ], [ 145.764267, 15.334636 ], [ 145.781815, 15.34835 ], [ 145.793021, 15.354699 ], [ 145.802854, 15.357834 ], [ 145.81907, 15.355422 ], [ 145.833547, 15.355284 ], [ 145.842871, 15.353641 ], [ 145.852815, 15.35189 ], [ 145.866523, 15.341701 ], [ 145.867497, 15.34095 ], [ 145.875, 15.335175 ], [ 145.875978, 15.334499 ], [ 145.890632, 15.314556 ], [ 145.896347, 15.308731 ], [ 145.901244, 15.294805 ], [ 145.907345, 15.283903 ], [ 145.909365, 15.274084 ], [ 145.905516, 15.257775 ], [ 145.902798, 15.251885 ], [ 145.902118, 15.25 ], [ 145.891886, 15.219907 ], [ 145.882943, 15.197353 ], [ 145.880863, 15.195643 ], [ 145.880489, 15.195167 ], [ 145.880483, 15.195083 ], [ 145.87985, 15.193258 ], [ 145.879875, 15.181283 ], [ 145.880037, 15.177945 ], [ 145.878825, 15.176079 ], [ 145.878809, 15.175421 ], [ 145.878762, 15.173447 ], [ 145.878747, 15.172789 ], [ 145.878638, 15.168204 ], [ 145.878618, 15.167347 ], [ 145.875948, 15.154724 ], [ 145.875, 15.150238 ], [ 145.879163, 15.145096 ], [ 145.875984, 15.135438 ], [ 145.864929, 15.13019 ], [ 145.863486, 15.128369 ], [ 145.859758, 15.123757 ], [ 145.854737, 15.122214 ], [ 145.84772, 15.12055 ], [ 145.842729, 15.120192 ], [ 145.837413, 15.120071 ], [ 145.838719, 15.115995 ], [ 145.837327, 15.110932 ], [ 145.836616, 15.107368 ], [ 145.834906, 15.103434 ], [ 145.833891, 15.101937 ], [ 145.829515, 15.097264 ] ], [ [ 145.721332, 15.217688 ], [ 145.721638, 15.217547 ], [ 145.721858, 15.217468 ], [ 145.722148, 15.217421 ], [ 145.722305, 15.217421 ], [ 145.722667, 15.217369 ], [ 145.723239, 15.217366 ], [ 145.723427, 15.217421 ], [ 145.723529, 15.217539 ], [ 145.723561, 15.217735 ], [ 145.723553, 15.218198 ], [ 145.723553, 15.218598 ], [ 145.723459, 15.218661 ], [ 145.723357, 15.21859 ], [ 145.723309, 15.218323 ], [ 145.723325, 15.218025 ], [ 145.723317, 15.217837 ], [ 145.723113, 15.21768 ], [ 145.722908, 15.217603 ], [ 145.722595, 15.217609 ], [ 145.722211, 15.217649 ], [ 145.721944, 15.217704 ], [ 145.721732, 15.217798 ], [ 145.721732, 15.2179 ], [ 145.721592, 15.217939 ], [ 145.721473, 15.217892 ], [ 145.721277, 15.21779 ], [ 145.721332, 15.217688 ] ], [ [ 145.813588, 15.256699 ], [ 145.813605, 15.256757 ], [ 145.81362, 15.256788 ], [ 145.813651, 15.256834 ], [ 145.813654, 15.256852 ], [ 145.813629, 15.256868 ], [ 145.813649, 15.256886 ], [ 145.813705, 15.2569 ], [ 145.813707, 15.256936 ], [ 145.813714, 15.256969 ], [ 145.813774, 15.256976 ], [ 145.813799, 15.256968 ], [ 145.813816, 15.256939 ], [ 145.813816, 15.256919 ], [ 145.813821, 15.256897 ], [ 145.813871, 15.256863 ], [ 145.813936, 15.256844 ], [ 145.813965, 15.256849 ], [ 145.813979, 15.25692 ], [ 145.814, 15.256977 ], [ 145.814103, 15.256988 ], [ 145.814069, 15.257103 ], [ 145.814074, 15.257167 ], [ 145.814134, 15.257207 ], [ 145.814132, 15.257221 ], [ 145.814125, 15.257327 ], [ 145.81416, 15.257434 ], [ 145.814055, 15.257485 ], [ 145.814089, 15.257566 ], [ 145.814089, 15.257633 ], [ 145.814113, 15.257714 ], [ 145.81425, 15.257853 ], [ 145.814122, 15.257872 ], [ 145.814156, 15.25793 ], [ 145.814067, 15.257958 ], [ 145.814141, 15.257997 ], [ 145.81425, 15.257974 ], [ 145.814148, 15.258073 ], [ 145.814055, 15.258064 ], [ 145.813971, 15.258023 ], [ 145.81387, 15.258023 ], [ 145.813777, 15.25803 ], [ 145.813684, 15.258022 ], [ 145.813591, 15.258029 ], [ 145.813638, 15.258133 ], [ 145.813505, 15.258161 ], [ 145.81347, 15.258203 ], [ 145.813363, 15.258184 ], [ 145.813241, 15.258175 ], [ 145.813068, 15.258117 ], [ 145.813054, 15.257997 ], [ 145.813075, 15.257883 ], [ 145.813154, 15.25783 ], [ 145.813247, 15.257815 ], [ 145.81334, 15.257782 ], [ 145.813406, 15.25766 ], [ 145.813434, 15.257582 ], [ 145.813479, 15.257478 ], [ 145.813486, 15.257463 ], [ 145.813383, 15.257372 ], [ 145.813299, 15.257343 ], [ 145.813216, 15.257306 ], [ 145.813208, 15.257217 ], [ 145.813234, 15.257127 ], [ 145.813243, 15.257036 ], [ 145.813269, 15.256947 ], [ 145.813367, 15.256932 ], [ 145.813446, 15.256882 ], [ 145.813469, 15.256836 ], [ 145.813525, 15.25682 ], [ 145.813553, 15.256816 ], [ 145.813573, 15.256799 ], [ 145.813562, 15.256732 ], [ 145.813563, 15.256703 ], [ 145.813588, 15.256699 ] ], [ [ 145.792712, 15.149448 ], [ 145.792805, 15.149465 ], [ 145.792812, 15.149556 ], [ 145.79272, 15.149571 ], [ 145.792627, 15.149595 ], [ 145.792542, 15.149651 ], [ 145.792466, 15.149709 ], [ 145.792407, 15.149782 ], [ 145.792372, 15.149872 ], [ 145.792305, 15.149937 ], [ 145.79222, 15.149986 ], [ 145.79216, 15.15006 ], [ 145.792118, 15.15015 ], [ 145.792084, 15.150239 ], [ 145.792032, 15.150321 ], [ 145.791957, 15.150386 ], [ 145.791897, 15.150459 ], [ 145.791834, 15.150518 ], [ 145.791829, 15.150524 ], [ 145.791761, 15.150622 ], [ 145.791719, 15.150704 ], [ 145.791659, 15.150777 ], [ 145.791566, 15.150752 ], [ 145.791542, 15.150662 ], [ 145.791475, 15.150596 ], [ 145.791399, 15.150653 ], [ 145.791398, 15.150752 ], [ 145.791381, 15.150841 ], [ 145.791304, 15.150898 ], [ 145.79122, 15.150938 ], [ 145.791135, 15.150987 ], [ 145.791034, 15.150987 ], [ 145.790941, 15.150978 ], [ 145.790849, 15.150953 ], [ 145.790756, 15.15092 ], [ 145.790571, 15.150902 ], [ 145.79047, 15.150901 ], [ 145.790377, 15.150885 ], [ 145.790293, 15.150844 ], [ 145.78999, 15.150842 ], [ 145.789897, 15.15085 ], [ 145.789804, 15.150865 ], [ 145.789712, 15.150857 ], [ 145.789636, 15.150758 ], [ 145.789628, 15.150669 ], [ 145.789646, 15.150578 ], [ 145.789688, 15.150496 ], [ 145.789747, 15.150423 ], [ 145.789815, 15.150358 ], [ 145.7899, 15.15031 ], [ 145.790036, 15.150179 ], [ 145.79007, 15.150089 ], [ 145.790138, 15.150024 ], [ 145.790197, 15.149951 ], [ 145.790282, 15.149902 ], [ 145.790366, 15.149861 ], [ 145.790459, 15.149846 ], [ 145.790552, 15.149837 ], [ 145.790644, 15.149863 ], [ 145.790737, 15.149896 ], [ 145.79083, 15.149872 ], [ 145.790914, 15.149824 ], [ 145.791007, 15.149799 ], [ 145.791081, 15.149857 ], [ 145.791091, 15.149873 ], [ 145.791206, 15.149853 ], [ 145.791277, 15.149841 ], [ 145.791479, 15.149842 ], [ 145.791563, 15.149802 ], [ 145.791631, 15.149737 ], [ 145.791691, 15.149664 ], [ 145.791767, 15.149607 ], [ 145.791852, 15.149566 ], [ 145.791953, 15.149575 ], [ 145.792054, 15.149575 ], [ 145.792146, 15.14956 ], [ 145.792239, 15.149528 ], [ 145.792518, 15.149456 ], [ 145.792611, 15.149447 ], [ 145.792712, 15.149448 ] ], [ [ 145.710617, 15.24056 ], [ 145.711395, 15.240654 ], [ 145.711661, 15.240346 ], [ 145.712003, 15.24014 ], [ 145.71223, 15.24007 ], [ 145.712594, 15.23997 ], [ 145.712773, 15.239929 ], [ 145.712928, 15.239894 ], [ 145.713124, 15.239849 ], [ 145.713201, 15.240038 ], [ 145.713359, 15.240331 ], [ 145.713432, 15.240465 ], [ 145.713688, 15.240722 ], [ 145.7138, 15.241124 ], [ 145.713773, 15.241297 ], [ 145.713748, 15.241458 ], [ 145.713661, 15.241649 ], [ 145.713565, 15.241811 ], [ 145.713372, 15.241997 ], [ 145.713026, 15.242311 ], [ 145.712619, 15.242681 ], [ 145.712319, 15.242938 ], [ 145.711685, 15.243174 ], [ 145.711481, 15.243172 ], [ 145.711147, 15.243101 ], [ 145.710993, 15.242947 ], [ 145.710908, 15.24263 ], [ 145.711015, 15.242388 ], [ 145.711139, 15.242108 ], [ 145.711245, 15.241881 ], [ 145.71141, 15.241629 ], [ 145.711416, 15.241454 ], [ 145.711481, 15.24121 ], [ 145.711493, 15.24108 ], [ 145.711515, 15.240833 ], [ 145.710591, 15.240696 ], [ 145.710617, 15.24056 ] ], [ [ 145.71601, 15.207631 ], [ 145.716023, 15.207575 ], [ 145.716102, 15.207312 ], [ 145.716094, 15.207188 ], [ 145.716094, 15.207173 ], [ 145.716101, 15.207016 ], [ 145.716104, 15.206959 ], [ 145.716131, 15.206706 ], [ 145.716149, 15.206452 ], [ 145.716218, 15.206133 ], [ 145.716246, 15.205773 ], [ 145.71628, 15.205618 ], [ 145.716256, 15.205511 ], [ 145.716206, 15.205438 ], [ 145.71624, 15.20533 ], [ 145.716274, 15.205257 ], [ 145.71628, 15.205216 ], [ 145.716305, 15.205053 ], [ 145.716295, 15.204853 ], [ 145.716294, 15.204816 ], [ 145.716308, 15.204733 ], [ 145.71632, 15.20466 ], [ 145.716313, 15.204447 ], [ 145.716276, 15.204325 ], [ 145.716226, 15.204312 ], [ 145.716205, 15.204225 ], [ 145.716213, 15.204079 ], [ 145.716233, 15.203759 ], [ 145.716217, 15.203513 ], [ 145.71622, 15.203063 ], [ 145.716164, 15.202628 ], [ 145.715518, 15.202581 ], [ 145.714933, 15.20254 ], [ 145.714934, 15.202426 ], [ 145.714934, 15.202376 ], [ 145.715179, 15.202386 ], [ 145.715322, 15.202386 ], [ 145.715407, 15.202396 ], [ 145.715531, 15.202399 ], [ 145.715642, 15.202388 ], [ 145.715769, 15.202389 ], [ 145.715997, 15.202398 ], [ 145.716169, 15.202383 ], [ 145.716174, 15.202383 ], [ 145.716225, 15.202268 ], [ 145.716234, 15.202122 ], [ 145.716252, 15.201942 ], [ 145.716287, 15.201704 ], [ 145.716314, 15.201549 ], [ 145.716306, 15.20136 ], [ 145.716239, 15.20127 ], [ 145.716274, 15.201106 ], [ 145.716325, 15.201 ], [ 145.71636, 15.200902 ], [ 145.716427, 15.200765 ], [ 145.716504, 15.200762 ], [ 145.716521, 15.200619 ], [ 145.716489, 15.200484 ], [ 145.716506, 15.200363 ], [ 145.716456, 15.200272 ], [ 145.716389, 15.200239 ], [ 145.715706, 15.200202 ], [ 145.715707, 15.200088 ], [ 145.716398, 15.200067 ], [ 145.716411, 15.200059 ], [ 145.716525, 15.200002 ], [ 145.716636, 15.199816 ], [ 145.716772, 15.19962 ], [ 145.716832, 15.199447 ], [ 145.716867, 15.199227 ], [ 145.716886, 15.198981 ], [ 145.716891, 15.198928 ], [ 145.716912, 15.198711 ], [ 145.716923, 15.198425 ], [ 145.716914, 15.198148 ], [ 145.716909, 15.197974 ], [ 145.716927, 15.19777 ], [ 145.716895, 15.197409 ], [ 145.716897, 15.197082 ], [ 145.716841, 15.196533 ], [ 145.716801, 15.196238 ], [ 145.716778, 15.195853 ], [ 145.716773, 15.195816 ], [ 145.716738, 15.195534 ], [ 145.716748, 15.19528 ], [ 145.716712, 15.195041 ], [ 145.716707, 15.195009 ], [ 145.716693, 15.194666 ], [ 145.716536, 15.194083 ], [ 145.716246, 15.193148 ], [ 145.716201, 15.192963 ], [ 145.716172, 15.192845 ], [ 145.716024, 15.192345 ], [ 145.715941, 15.192033 ], [ 145.715858, 15.191827 ], [ 145.715724, 15.191606 ], [ 145.715558, 15.191293 ], [ 145.715493, 15.190811 ], [ 145.715445, 15.190369 ], [ 145.71538, 15.190081 ], [ 145.71529, 15.189581 ], [ 145.715251, 15.189097 ], [ 145.715185, 15.188754 ], [ 145.715021, 15.188081 ], [ 145.714964, 15.187778 ], [ 145.714906, 15.187516 ], [ 145.714841, 15.18718 ], [ 145.71475, 15.186778 ], [ 145.714733, 15.186731 ], [ 145.714643, 15.186483 ], [ 145.714553, 15.186008 ], [ 145.714495, 15.185803 ], [ 145.714403, 15.185622 ], [ 145.714346, 15.185384 ], [ 145.714297, 15.185122 ], [ 145.714298, 15.184867 ], [ 145.714262, 15.184652 ], [ 145.714225, 15.184425 ], [ 145.714144, 15.183966 ], [ 145.71414, 15.183944 ], [ 145.714103, 15.183688 ], [ 145.714013, 15.183352 ], [ 145.71394, 15.182885 ], [ 145.713806, 15.182622 ], [ 145.713599, 15.182056 ], [ 145.713569, 15.181884 ], [ 145.713509, 15.18154 ], [ 145.713483, 15.181173 ], [ 145.713481, 15.181154 ], [ 145.713478, 15.181105 ], [ 145.713476, 15.181098 ], [ 145.713472, 15.18108 ], [ 145.713388, 15.180712 ], [ 145.713247, 15.180262 ], [ 145.713239, 15.180235 ], [ 145.713241, 15.179933 ], [ 145.713127, 15.179253 ], [ 145.712954, 15.178515 ], [ 145.712719, 15.177785 ], [ 145.712656, 15.177588 ], [ 145.71241, 15.176996 ], [ 145.712366, 15.176891 ], [ 145.711953, 15.175806 ], [ 145.711901, 15.175668 ], [ 145.71151, 15.174699 ], [ 145.711121, 15.173584 ], [ 145.710807, 15.172518 ], [ 145.710713, 15.172193 ], [ 145.710378, 15.171033 ], [ 145.710362, 15.170969 ], [ 145.710195, 15.170295 ], [ 145.710131, 15.170033 ], [ 145.709551, 15.168316 ], [ 145.709361, 15.167753 ], [ 145.709324, 15.167661 ], [ 145.70926, 15.167501 ], [ 145.709095, 15.167088 ], [ 145.709066, 15.167024 ], [ 145.708997, 15.166867 ], [ 145.708746, 15.1663 ], [ 145.708484, 15.165625 ], [ 145.708472, 15.165594 ], [ 145.708014, 15.164732 ], [ 145.707588, 15.164025 ], [ 145.706843, 15.163096 ], [ 145.7064, 15.162536 ], [ 145.706202, 15.162325 ], [ 145.705897, 15.162001 ], [ 145.705797, 15.161889 ], [ 145.70547, 15.161524 ], [ 145.705295, 15.161335 ], [ 145.705135, 15.161162 ], [ 145.704808, 15.160841 ], [ 145.704537, 15.160619 ], [ 145.704465, 15.16056 ], [ 145.704095, 15.160296 ], [ 145.703558, 15.159925 ], [ 145.703264, 15.159759 ], [ 145.703037, 15.159619 ], [ 145.702979, 15.159495 ], [ 145.702955, 15.159381 ], [ 145.702854, 15.159307 ], [ 145.702745, 15.1592 ], [ 145.702644, 15.159125 ], [ 145.702401, 15.158894 ], [ 145.702132, 15.158721 ], [ 145.702124, 15.158712 ], [ 145.70204, 15.158606 ], [ 145.701915, 15.15849 ], [ 145.701562, 15.158251 ], [ 145.70131, 15.15807 ], [ 145.701227, 15.157946 ], [ 145.701109, 15.157831 ], [ 145.701017, 15.1577 ], [ 145.700746, 15.157449 ], [ 145.700724, 15.157428 ], [ 145.700683, 15.15728 ], [ 145.700625, 15.157158 ], [ 145.70044, 15.157001 ], [ 145.700197, 15.15677 ], [ 145.700139, 15.156655 ], [ 145.700081, 15.156449 ], [ 145.699998, 15.156212 ], [ 145.699966, 15.155982 ], [ 145.699942, 15.155762 ], [ 145.699944, 15.155467 ], [ 145.699972, 15.15518 ], [ 145.69998, 15.155106 ], [ 145.700024, 15.154787 ], [ 145.700085, 15.154411 ], [ 145.7001, 15.154348 ], [ 145.700154, 15.154117 ], [ 145.700168, 15.154084 ], [ 145.700291, 15.153807 ], [ 145.700403, 15.153373 ], [ 145.700421, 15.153308 ], [ 145.700489, 15.153079 ], [ 145.700492, 15.153046 ], [ 145.700538, 15.152536 ], [ 145.700544, 15.152474 ], [ 145.700494, 15.152236 ], [ 145.700262, 15.151678 ], [ 145.700145, 15.151562 ], [ 145.699993, 15.151512 ], [ 145.699799, 15.151527 ], [ 145.699698, 15.151494 ], [ 145.699639, 15.15147 ], [ 145.699193, 15.151425 ], [ 145.699194, 15.151408 ], [ 145.699198, 15.151358 ], [ 145.6992, 15.151342 ], [ 145.6992, 15.151337 ], [ 145.699201, 15.151323 ], [ 145.699202, 15.151319 ], [ 145.699281, 15.151324 ], [ 145.699575, 15.151358 ], [ 145.699603, 15.151352 ], [ 145.699632, 15.151346 ], [ 145.699734, 15.151167 ], [ 145.700008, 15.150431 ], [ 145.700053, 15.150244 ], [ 145.700129, 15.149941 ], [ 145.700162, 15.149856 ], [ 145.700189, 15.149786 ], [ 145.700233, 15.149541 ], [ 145.700234, 15.149528 ], [ 145.700287, 15.148984 ], [ 145.700315, 15.148583 ], [ 145.700315, 15.148523 ], [ 145.700316, 15.148403 ], [ 145.700325, 15.148187 ], [ 145.700326, 15.148165 ], [ 145.700292, 15.14797 ], [ 145.700277, 15.147879 ], [ 145.700253, 15.147658 ], [ 145.700187, 15.147395 ], [ 145.700163, 15.147326 ], [ 145.700094, 15.147118 ], [ 145.699922, 15.146607 ], [ 145.699816, 15.146318 ], [ 145.699814, 15.146313 ], [ 145.699348, 15.145311 ], [ 145.699085, 15.144717 ], [ 145.698941, 15.144391 ], [ 145.69878, 15.144001 ], [ 145.698682, 15.143766 ], [ 145.698575, 15.143505 ], [ 145.698469, 15.143215 ], [ 145.698446, 15.143152 ], [ 145.698377, 15.142964 ], [ 145.698354, 15.142902 ], [ 145.698332, 15.142843 ], [ 145.698268, 15.142666 ], [ 145.698247, 15.142608 ], [ 145.698194, 15.142463 ], [ 145.698155, 15.142382 ], [ 145.698111, 15.142291 ], [ 145.697894, 15.141913 ], [ 145.697871, 15.141719 ], [ 145.69787, 15.141707 ], [ 145.697823, 15.14148 ], [ 145.697714, 15.140954 ], [ 145.69755, 15.140306 ], [ 145.697502, 15.140109 ], [ 145.697361, 15.139527 ], [ 145.697079, 15.138715 ], [ 145.696888, 15.138198 ], [ 145.696305, 15.137068 ], [ 145.696072, 15.136614 ], [ 145.695844, 15.136249 ], [ 145.695671, 15.135972 ], [ 145.695467, 15.135679 ], [ 145.695237, 15.135348 ], [ 145.695044, 15.135092 ], [ 145.694914, 15.13492 ], [ 145.694735, 15.134682 ], [ 145.694517, 15.134413 ], [ 145.694382, 15.134247 ], [ 145.694275, 15.134114 ], [ 145.694033, 15.133804 ], [ 145.693723, 15.133407 ], [ 145.693314, 15.132815 ], [ 145.693138, 15.132383 ], [ 145.692926, 15.131862 ], [ 145.69289, 15.131773 ], [ 145.692785, 15.131557 ], [ 145.692699, 15.131379 ], [ 145.692508, 15.130911 ], [ 145.692401, 15.130625 ], [ 145.692334, 15.130443 ], [ 145.692323, 15.130302 ], [ 145.692287, 15.129828 ], [ 145.692348, 15.129543 ], [ 145.692401, 15.12915 ], [ 145.692488, 15.128732 ], [ 145.692556, 15.128545 ], [ 145.692701, 15.128259 ], [ 145.692898, 15.127888 ], [ 145.692906, 15.127875 ], [ 145.693017, 15.12759 ], [ 145.69318, 15.127213 ], [ 145.693318, 15.126649 ], [ 145.693353, 15.126445 ], [ 145.69339, 15.126323 ], [ 145.69338, 15.1263 ], [ 145.693431, 15.126233 ], [ 145.693456, 15.126135 ], [ 145.693507, 15.125971 ], [ 145.693525, 15.12589 ], [ 145.693534, 15.125807 ], [ 145.693551, 15.125726 ], [ 145.693577, 15.125644 ], [ 145.693612, 15.12548 ], [ 145.693637, 15.125399 ], [ 145.693706, 15.125236 ], [ 145.693715, 15.125153 ], [ 145.693707, 15.125072 ], [ 145.693725, 15.124908 ], [ 145.69376, 15.124744 ], [ 145.693768, 15.124663 ], [ 145.693769, 15.124581 ], [ 145.693787, 15.124417 ], [ 145.693822, 15.124253 ], [ 145.693805, 15.124172 ], [ 145.693806, 15.124089 ], [ 145.693798, 15.124008 ], [ 145.693798, 15.123925 ], [ 145.693807, 15.123844 ], [ 145.693791, 15.12368 ], [ 145.693775, 15.123599 ], [ 145.69375, 15.123516 ], [ 145.693742, 15.123435 ], [ 145.693726, 15.123352 ], [ 145.693652, 15.123107 ], [ 145.693618, 15.123024 ], [ 145.693577, 15.12295 ], [ 145.69356, 15.122869 ], [ 145.693502, 15.122803 ], [ 145.693367, 15.122671 ], [ 145.693225, 15.122572 ], [ 145.693149, 15.122531 ], [ 145.693007, 15.122432 ], [ 145.692838, 15.122365 ], [ 145.692772, 15.122315 ], [ 145.692705, 15.122233 ], [ 145.692637, 15.122183 ], [ 145.69257, 15.122117 ], [ 145.692503, 15.12206 ], [ 145.692462, 15.121978 ], [ 145.692428, 15.121896 ], [ 145.692361, 15.12183 ], [ 145.692277, 15.121797 ], [ 145.692202, 15.121755 ], [ 145.692118, 15.121722 ], [ 145.692051, 15.121673 ], [ 145.691975, 15.121631 ], [ 145.691908, 15.121573 ], [ 145.691841, 15.121524 ], [ 145.69175, 15.121406 ], [ 145.69174, 15.121393 ], [ 145.691673, 15.121343 ], [ 145.691598, 15.121302 ], [ 145.691514, 15.121268 ], [ 145.691429, 15.121243 ], [ 145.691345, 15.12121 ], [ 145.69127, 15.121169 ], [ 145.691063, 15.12111 ], [ 145.690003, 15.120514 ], [ 145.689922, 15.120513 ], [ 145.68959, 15.120306 ], [ 145.689582, 15.120221 ], [ 145.689571, 15.120109 ], [ 145.689734, 15.120032 ], [ 145.689866, 15.119836 ], [ 145.690079, 15.11972 ], [ 145.690251, 15.119613 ], [ 145.690413, 15.119653 ], [ 145.690666, 15.119517 ], [ 145.690838, 15.11942 ], [ 145.691, 15.119401 ], [ 145.691122, 15.119353 ], [ 145.691284, 15.119315 ], [ 145.691557, 15.119169 ], [ 145.691829, 15.119269 ], [ 145.691941, 15.11922 ], [ 145.691982, 15.119222 ], [ 145.692153, 15.119231 ], [ 145.692225, 15.119085 ], [ 145.692346, 15.119017 ], [ 145.692771, 15.11894 ], [ 145.693166, 15.118815 ], [ 145.693621, 15.118748 ], [ 145.694117, 15.118644 ], [ 145.694379, 15.118551 ], [ 145.694548, 15.118502 ], [ 145.694632, 15.11847 ], [ 145.694717, 15.118454 ], [ 145.694801, 15.118422 ], [ 145.694886, 15.118405 ], [ 145.69497, 15.118381 ], [ 145.695054, 15.118366 ], [ 145.695147, 15.118341 ], [ 145.695215, 15.118293 ], [ 145.695384, 15.118229 ], [ 145.695553, 15.11818 ], [ 145.695637, 15.118173 ], [ 145.695721, 15.11819 ], [ 145.695805, 15.11819 ], [ 145.695915, 15.118158 ], [ 145.696, 15.118117 ], [ 145.696084, 15.118094 ], [ 145.696152, 15.118044 ], [ 145.696304, 15.117964 ], [ 145.696389, 15.117892 ], [ 145.696453, 15.117845 ], [ 145.696522, 15.117812 ], [ 145.696582, 15.117773 ], [ 145.696641, 15.117755 ], [ 145.696693, 15.117753 ], [ 145.696736, 15.117679 ], [ 145.696803, 15.117622 ], [ 145.69679, 15.117522 ], [ 145.6969, 15.11734 ], [ 145.697003, 15.117298 ], [ 145.697107, 15.117269 ], [ 145.697182, 15.117292 ], [ 145.69725, 15.117227 ], [ 145.697329, 15.117204 ], [ 145.697455, 15.117217 ], [ 145.697482, 15.117162 ], [ 145.697531, 15.117081 ], [ 145.697709, 15.116989 ], [ 145.697744, 15.116929 ], [ 145.697843, 15.116901 ], [ 145.697937, 15.116884 ], [ 145.698157, 15.11677 ], [ 145.698184, 15.116721 ], [ 145.698238, 15.116721 ], [ 145.698366, 15.116689 ], [ 145.698474, 15.116675 ], [ 145.698563, 15.116637 ], [ 145.698573, 15.116585 ], [ 145.698637, 15.116532 ], [ 145.698736, 15.116537 ], [ 145.69881, 15.116572 ], [ 145.698889, 15.116525 ], [ 145.698899, 15.116472 ], [ 145.698929, 15.116424 ], [ 145.698978, 15.116438 ], [ 145.699012, 15.116477 ], [ 145.699081, 15.11643 ], [ 145.69918, 15.116373 ], [ 145.699264, 15.116292 ], [ 145.699319, 15.116254 ], [ 145.699385, 15.116216 ], [ 145.699437, 15.116188 ], [ 145.699433, 15.116135 ], [ 145.699438, 15.116092 ], [ 145.699497, 15.116083 ], [ 145.699546, 15.116112 ], [ 145.69961, 15.116131 ], [ 145.699684, 15.116117 ], [ 145.699768, 15.116085 ], [ 145.699857, 15.115994 ], [ 145.699976, 15.115899 ], [ 145.699976, 15.115846 ], [ 145.700011, 15.115765 ], [ 145.700036, 15.115665 ], [ 145.700118, 15.115646 ], [ 145.700202, 15.115561 ], [ 145.700335, 15.11549 ], [ 145.700429, 15.115471 ], [ 145.700503, 15.1154 ], [ 145.700557, 15.115434 ], [ 145.700601, 15.115415 ], [ 145.700656, 15.115381 ], [ 145.700715, 15.115405 ], [ 145.700794, 15.115373 ], [ 145.700883, 15.11535 ], [ 145.700986, 15.115293 ], [ 145.70112, 15.115174 ], [ 145.701288, 15.11504 ], [ 145.701486, 15.114913 ], [ 145.701571, 15.114853 ], [ 145.701684, 15.114775 ], [ 145.701743, 15.114676 ], [ 145.701808, 15.114651 ], [ 145.701872, 15.1146 ], [ 145.701991, 15.114523 ], [ 145.702149, 15.114434 ], [ 145.703052, 15.11364 ], [ 145.703267, 15.113469 ], [ 145.703378, 15.113383 ], [ 145.703658, 15.113151 ], [ 145.704128, 15.112809 ], [ 145.704603, 15.112433 ], [ 145.704823, 15.112301 ], [ 145.70506, 15.112097 ], [ 145.705402, 15.111793 ], [ 145.70565, 15.11154 ], [ 145.705964, 15.111203 ], [ 145.706148, 15.110969 ], [ 145.706366, 15.110722 ], [ 145.706549, 15.110555 ], [ 145.706609, 15.11047 ], [ 145.706605, 15.110335 ], [ 145.706635, 15.110269 ], [ 145.706655, 15.110183 ], [ 145.706734, 15.110088 ], [ 145.706799, 15.11004 ], [ 145.706844, 15.109902 ], [ 145.706943, 15.109788 ], [ 145.706998, 15.109682 ], [ 145.707018, 15.109587 ], [ 145.707004, 15.109472 ], [ 145.707113, 15.109415 ], [ 145.707118, 15.109359 ], [ 145.707245, 15.109148 ], [ 145.707319, 15.109015 ], [ 145.70734, 15.108881 ], [ 145.707266, 15.108842 ], [ 145.707277, 15.108747 ], [ 145.707269, 15.108666 ], [ 145.707267, 15.108642 ], [ 145.707248, 15.10855 ], [ 145.707323, 15.108422 ], [ 145.707402, 15.108375 ], [ 145.707407, 15.108313 ], [ 145.707437, 15.108226 ], [ 145.707482, 15.108183 ], [ 145.707381, 15.107819 ], [ 145.707253, 15.107723 ], [ 145.707224, 15.107646 ], [ 145.7072, 15.107488 ], [ 145.70714, 15.107369 ], [ 145.707126, 15.107288 ], [ 145.707096, 15.10723 ], [ 145.707156, 15.107144 ], [ 145.707102, 15.107033 ], [ 145.707014, 15.106928 ], [ 145.707001, 15.106799 ], [ 145.707005, 15.106726 ], [ 145.707006, 15.106707 ], [ 145.707105, 15.106589 ], [ 145.707145, 15.10647 ], [ 145.707111, 15.106393 ], [ 145.707156, 15.106292 ], [ 145.707216, 15.106235 ], [ 145.707343, 15.106265 ], [ 145.707422, 15.106255 ], [ 145.707497, 15.106179 ], [ 145.707581, 15.106113 ], [ 145.70764, 15.106137 ], [ 145.707841, 15.106114 ], [ 145.707891, 15.106048 ], [ 145.708015, 15.106006 ], [ 145.708089, 15.10592 ], [ 145.708094, 15.105877 ], [ 145.708129, 15.105814 ], [ 145.708183, 15.105797 ], [ 145.708222, 15.10583 ], [ 145.708143, 15.105901 ], [ 145.708192, 15.105925 ], [ 145.708281, 15.105926 ], [ 145.70837, 15.105903 ], [ 145.708369, 15.105965 ], [ 145.708389, 15.106046 ], [ 145.708408, 15.106075 ], [ 145.708425, 15.106081 ], [ 145.708457, 15.106094 ], [ 145.708482, 15.10606 ], [ 145.708551, 15.106037 ], [ 145.70864, 15.106033 ], [ 145.708713, 15.106057 ], [ 145.708827, 15.106073 ], [ 145.708935, 15.106044 ], [ 145.708975, 15.10602 ], [ 145.709044, 15.105959 ], [ 145.709103, 15.105931 ], [ 145.709125, 15.105878 ], [ 145.709304, 15.105726 ], [ 145.709348, 15.105807 ], [ 145.709433, 15.105807 ], [ 145.709568, 15.10571 ], [ 145.709652, 15.105677 ], [ 145.709821, 15.105645 ], [ 145.709905, 15.105646 ], [ 145.70999, 15.105639 ], [ 145.710074, 15.105647 ], [ 145.710158, 15.105663 ], [ 145.710251, 15.105696 ], [ 145.710309, 15.105762 ], [ 145.710394, 15.105747 ], [ 145.710478, 15.105715 ], [ 145.710562, 15.105723 ], [ 145.710647, 15.105691 ], [ 145.710723, 15.105651 ], [ 145.710782, 15.105585 ], [ 145.710867, 15.105553 ], [ 145.711035, 15.105603 ], [ 145.711119, 15.105636 ], [ 145.711203, 15.105661 ], [ 145.711337, 15.10576 ], [ 145.711514, 15.105827 ], [ 145.711598, 15.105844 ], [ 145.711674, 15.105885 ], [ 145.711758, 15.105902 ], [ 145.71201, 15.106001 ], [ 145.712162, 15.105921 ], [ 145.712415, 15.105922 ], [ 145.712499, 15.105931 ], [ 145.712668, 15.105981 ], [ 145.712752, 15.105998 ], [ 145.713005, 15.105999 ], [ 145.713089, 15.106008 ], [ 145.713257, 15.106009 ], [ 145.713342, 15.106018 ], [ 145.713434, 15.106019 ], [ 145.713518, 15.106035 ], [ 145.713603, 15.106043 ], [ 145.713771, 15.106077 ], [ 145.71383, 15.106143 ], [ 145.713914, 15.106151 ], [ 145.713998, 15.106119 ], [ 145.714074, 15.106169 ], [ 145.714242, 15.106236 ], [ 145.714326, 15.106277 ], [ 145.71441, 15.106294 ], [ 145.714495, 15.106303 ], [ 145.714579, 15.106295 ], [ 145.714663, 15.106296 ], [ 145.71484, 15.106329 ], [ 145.714924, 15.10633 ], [ 145.714941, 15.106331 ], [ 145.715261, 15.106365 ], [ 145.715556, 15.106448 ], [ 145.715597, 15.106554 ], [ 145.715731, 15.106653 ], [ 145.715798, 15.106711 ], [ 145.71584, 15.106785 ], [ 145.715873, 15.106867 ], [ 145.715898, 15.106949 ], [ 145.715957, 15.107015 ], [ 145.715998, 15.107088 ], [ 145.716023, 15.107171 ], [ 145.716022, 15.107335 ], [ 145.716039, 15.107416 ], [ 145.716038, 15.107499 ], [ 145.716054, 15.10758 ], [ 145.716105, 15.107646 ], [ 145.716172, 15.107712 ], [ 145.716239, 15.107761 ], [ 145.716323, 15.107794 ], [ 145.7164, 15.10781 ], [ 145.716407, 15.107812 ], [ 145.716491, 15.10782 ], [ 145.716575, 15.10782 ], [ 145.71666, 15.107813 ], [ 145.716744, 15.107821 ], [ 145.716912, 15.107822 ], [ 145.716997, 15.10784 ], [ 145.717081, 15.10784 ], [ 145.71725, 15.107809 ], [ 145.717301, 15.107743 ], [ 145.717385, 15.107719 ], [ 145.717453, 15.107662 ], [ 145.717546, 15.107646 ], [ 145.717799, 15.107648 ], [ 145.717866, 15.107598 ], [ 145.717917, 15.107533 ], [ 145.717993, 15.107493 ], [ 145.718078, 15.107469 ], [ 145.718162, 15.107469 ], [ 145.718246, 15.107454 ], [ 145.718331, 15.107421 ], [ 145.718415, 15.107397 ], [ 145.718499, 15.107398 ], [ 145.718761, 15.107424 ], [ 145.718828, 15.107473 ], [ 145.718996, 15.107458 ], [ 145.719081, 15.107441 ], [ 145.719165, 15.107409 ], [ 145.719233, 15.107361 ], [ 145.719309, 15.107321 ], [ 145.719393, 15.107312 ], [ 145.719486, 15.107289 ], [ 145.71957, 15.107289 ], [ 145.719655, 15.107306 ], [ 145.719739, 15.107306 ], [ 145.719823, 15.107332 ], [ 145.719907, 15.10734 ], [ 145.719992, 15.10734 ], [ 145.720076, 15.107349 ], [ 145.72016, 15.107333 ], [ 145.720244, 15.107326 ], [ 145.720329, 15.107327 ], [ 145.720462, 15.1073 ], [ 145.72054, 15.107286 ], [ 145.720665, 15.107252 ], [ 145.720768, 15.107318 ], [ 145.720878, 15.107366 ], [ 145.721018, 15.107337 ], [ 145.721178, 15.107243 ], [ 145.721288, 15.107166 ], [ 145.721386, 15.107161 ], [ 145.721453, 15.107119 ], [ 145.721673, 15.107192 ], [ 145.721947, 15.107206 ], [ 145.722167, 15.1072 ], [ 145.722375, 15.107256 ], [ 145.722533, 15.107292 ], [ 145.722613, 15.107197 ], [ 145.722754, 15.107103 ], [ 145.722913, 15.107151 ], [ 145.723071, 15.107212 ], [ 145.723199, 15.107302 ], [ 145.723291, 15.107237 ], [ 145.723316, 15.107159 ], [ 145.723475, 15.107136 ], [ 145.723786, 15.107127 ], [ 145.723769, 15.107026 ], [ 145.723836, 15.106972 ], [ 145.723971, 15.106962 ], [ 145.724172, 15.106974 ], [ 145.724276, 15.107022 ], [ 145.724417, 15.106976 ], [ 145.724429, 15.106923 ], [ 145.724515, 15.106881 ], [ 145.724613, 15.106847 ], [ 145.724881, 15.10689 ], [ 145.725193, 15.10679 ], [ 145.725371, 15.106767 ], [ 145.725493, 15.106739 ], [ 145.725609, 15.106745 ], [ 145.725829, 15.106729 ], [ 145.72589, 15.10673 ], [ 145.726007, 15.106641 ], [ 145.726135, 15.106589 ], [ 145.72616, 15.106571 ], [ 145.726258, 15.106574 ], [ 145.726352, 15.106521 ], [ 145.726443, 15.106559 ], [ 145.726536, 15.106592 ], [ 145.72662, 15.1066 ], [ 145.726705, 15.106584 ], [ 145.726789, 15.106577 ], [ 145.726873, 15.106561 ], [ 145.726958, 15.106529 ], [ 145.727034, 15.106488 ], [ 145.727101, 15.106439 ], [ 145.727186, 15.106423 ], [ 145.72727, 15.1064 ], [ 145.727354, 15.106367 ], [ 145.727523, 15.106336 ], [ 145.727608, 15.106311 ], [ 145.727692, 15.106295 ], [ 145.727777, 15.106287 ], [ 145.727954, 15.10624 ], [ 145.728038, 15.106207 ], [ 145.728207, 15.106159 ], [ 145.728291, 15.106159 ], [ 145.728376, 15.106152 ], [ 145.72846, 15.106136 ], [ 145.728553, 15.106112 ], [ 145.728637, 15.106095 ], [ 145.728975, 15.105999 ], [ 145.729059, 15.105967 ], [ 145.729144, 15.105951 ], [ 145.729228, 15.105919 ], [ 145.729313, 15.105912 ], [ 145.729397, 15.105895 ], [ 145.729481, 15.105871 ], [ 145.729617, 15.105773 ], [ 145.729693, 15.105733 ], [ 145.729761, 15.105676 ], [ 145.729837, 15.105636 ], [ 145.729921, 15.10562 ], [ 145.730005, 15.105613 ], [ 145.730174, 15.10563 ], [ 145.730258, 15.10563 ], [ 145.730342, 15.105615 ], [ 145.730427, 15.105606 ], [ 145.730511, 15.105591 ], [ 145.730596, 15.105566 ], [ 145.73068, 15.105551 ], [ 145.730748, 15.105494 ], [ 145.730765, 15.105444 ], [ 145.730909, 15.105339 ], [ 145.731035, 15.105299 ], [ 145.731238, 15.10521 ], [ 145.731309, 15.105162 ], [ 145.731417, 15.105119 ], [ 145.73153, 15.105124 ], [ 145.731655, 15.105186 ], [ 145.731871, 15.105236 ], [ 145.732015, 15.105276 ], [ 145.732082, 15.105368 ], [ 145.732127, 15.105455 ], [ 145.732143, 15.105482 ], [ 145.73218, 15.105544 ], [ 145.73227, 15.10561 ], [ 145.732337, 15.105728 ], [ 145.732404, 15.105776 ], [ 145.732463, 15.105786 ], [ 145.732525, 15.105939 ], [ 145.732506, 15.10607 ], [ 145.732523, 15.106136 ], [ 145.732528, 15.10631 ], [ 145.732563, 15.106333 ], [ 145.732698, 15.106332 ], [ 145.732903, 15.106354 ], [ 145.733218, 15.106355 ], [ 145.733423, 15.106303 ], [ 145.733861, 15.106169 ], [ 145.735406, 15.106083 ], [ 145.735754, 15.106094 ], [ 145.736293, 15.10611 ], [ 145.736643, 15.106093 ], [ 145.736853, 15.106084 ], [ 145.736998, 15.106053 ], [ 145.737354, 15.105989 ], [ 145.737883, 15.105935 ], [ 145.737983, 15.105916 ], [ 145.738673, 15.10586 ], [ 145.739271, 15.105678 ], [ 145.739271, 15.105677 ], [ 145.739715, 15.10549 ], [ 145.7401, 15.105351 ], [ 145.740369, 15.105254 ], [ 145.740634, 15.105142 ], [ 145.740986, 15.104887 ], [ 145.74111, 15.104875 ], [ 145.741203, 15.104768 ], [ 145.741308, 15.104709 ], [ 145.741428, 15.104662 ], [ 145.741545, 15.104567 ], [ 145.741681, 15.104472 ], [ 145.741812, 15.104312 ], [ 145.741886, 15.104263 ], [ 145.742009, 15.104169 ], [ 145.742065, 15.104097 ], [ 145.74222, 15.103967 ], [ 145.7423, 15.103848 ], [ 145.742426, 15.103802 ], [ 145.742468, 15.103645 ], [ 145.742536, 15.103514 ], [ 145.742561, 15.103413 ], [ 145.74271, 15.103312 ], [ 145.742766, 15.103222 ], [ 145.742791, 15.103115 ], [ 145.742822, 15.103013 ], [ 145.742915, 15.102936 ], [ 145.742952, 15.102841 ], [ 145.743033, 15.102769 ], [ 145.743156, 15.10271 ], [ 145.743212, 15.102645 ], [ 145.743311, 15.102598 ], [ 145.743386, 15.102515 ], [ 145.743411, 15.102419 ], [ 145.743377, 15.102335 ], [ 145.74347, 15.102192 ], [ 145.743551, 15.102145 ], [ 145.743594, 15.102055 ], [ 145.743721, 15.101909 ], [ 145.743713, 15.101763 ], [ 145.743769, 15.10162 ], [ 145.743849, 15.101542 ], [ 145.743961, 15.101447 ], [ 145.743986, 15.10137 ], [ 145.744091, 15.101238 ], [ 145.744135, 15.101155 ], [ 145.744345, 15.101049 ], [ 145.744419, 15.101002 ], [ 145.744432, 15.1009 ], [ 145.744537, 15.100721 ], [ 145.744723, 15.100513 ], [ 145.744963, 15.100103 ], [ 145.744988, 15.100054 ], [ 145.744914, 15.100042 ], [ 145.744883, 15.099975 ], [ 145.744902, 15.099946 ], [ 145.745007, 15.099934 ], [ 145.745044, 15.099881 ], [ 145.745175, 15.099648 ], [ 145.745253, 15.099451 ], [ 145.745362, 15.099142 ], [ 145.745344, 15.099027 ], [ 145.745419, 15.098944 ], [ 145.745538, 15.098569 ], [ 145.74547, 15.098526 ], [ 145.745477, 15.098394 ], [ 145.745429, 15.098191 ], [ 145.745399, 15.098112 ], [ 145.745474, 15.097969 ], [ 145.74549, 15.097839 ], [ 145.745491, 15.097732 ], [ 145.745481, 15.097707 ], [ 145.745525, 15.09763 ], [ 145.745559, 15.097569 ], [ 145.745582, 15.097525 ], [ 145.745584, 15.097505 ], [ 145.74569, 15.097302 ], [ 145.745746, 15.097152 ], [ 145.745821, 15.096997 ], [ 145.745833, 15.096924 ], [ 145.745834, 15.096806 ], [ 145.745779, 15.096721 ], [ 145.745749, 15.096638 ], [ 145.745768, 15.096554 ], [ 145.745713, 15.096506 ], [ 145.745763, 15.096387 ], [ 145.745801, 15.096274 ], [ 145.745807, 15.096178 ], [ 145.745882, 15.096059 ], [ 145.745843, 15.095939 ], [ 145.745839, 15.09586 ], [ 145.745831, 15.095837 ], [ 145.74593, 15.095761 ], [ 145.745924, 15.095641 ], [ 145.7459, 15.095605 ], [ 145.745919, 15.095515 ], [ 145.745907, 15.095431 ], [ 145.745908, 15.09533 ], [ 145.745939, 15.09524 ], [ 145.746025, 15.095187 ], [ 145.746026, 15.095049 ], [ 145.745971, 15.094983 ], [ 145.745966, 15.094887 ], [ 145.746046, 15.094834 ], [ 145.746077, 15.094739 ], [ 145.746133, 15.094673 ], [ 145.746121, 15.094601 ], [ 145.746122, 15.09447 ], [ 145.74616, 15.09432 ], [ 145.746219, 15.094248 ], [ 145.746259, 15.09419 ], [ 145.746186, 15.094088 ], [ 145.746199, 15.093992 ], [ 145.746463, 15.093551 ], [ 145.7465, 15.093408 ], [ 145.746655, 15.093265 ], [ 145.746693, 15.093193 ], [ 145.746804, 15.093098 ], [ 145.746811, 15.092972 ], [ 145.74686, 15.092878 ], [ 145.747015, 15.092806 ], [ 145.747206, 15.092789 ], [ 145.747329, 15.092737 ], [ 145.747361, 15.092623 ], [ 145.747349, 15.092396 ], [ 145.7474, 15.092187 ], [ 145.747437, 15.092104 ], [ 145.747499, 15.092044 ], [ 145.747564, 15.092078 ], [ 145.747604, 15.092081 ], [ 145.747678, 15.092069 ], [ 145.747713, 15.092003 ], [ 145.747715, 15.091985 ], [ 145.747795, 15.091932 ], [ 145.747869, 15.09195 ], [ 145.747986, 15.091992 ], [ 145.748161, 15.091993 ], [ 145.74818, 15.091928 ], [ 145.748315, 15.091929 ], [ 145.748334, 15.091881 ], [ 145.748451, 15.091875 ], [ 145.748512, 15.091959 ], [ 145.748814, 15.09189 ], [ 145.74898, 15.091938 ], [ 145.749072, 15.091969 ], [ 145.749219, 15.092059 ], [ 145.749372, 15.092185 ], [ 145.749372, 15.092311 ], [ 145.749598, 15.09251 ], [ 145.749683, 15.092696 ], [ 145.750174, 15.093021 ], [ 145.750246, 15.093171 ], [ 145.750338, 15.093231 ], [ 145.750406, 15.093261 ], [ 145.750482, 15.093349 ], [ 145.75054, 15.093447 ], [ 145.750612, 15.093753 ], [ 145.75063, 15.093891 ], [ 145.750709, 15.094113 ], [ 145.7508, 15.094275 ], [ 145.750821, 15.094395 ], [ 145.750857, 15.094538 ], [ 145.750979, 15.094706 ], [ 145.751146, 15.09475 ], [ 145.75118, 15.094833 ], [ 145.751206, 15.09494 ], [ 145.751217, 15.095096 ], [ 145.751297, 15.09515 ], [ 145.751312, 15.095259 ], [ 145.751286, 15.095308 ], [ 145.751252, 15.09539 ], [ 145.751258, 15.095478 ], [ 145.751153, 15.095532 ], [ 145.751109, 15.095628 ], [ 145.751108, 15.095789 ], [ 145.751144, 15.096004 ], [ 145.751198, 15.096154 ], [ 145.751302, 15.096316 ], [ 145.751359, 15.096519 ], [ 145.751445, 15.096627 ], [ 145.751537, 15.096718 ], [ 145.751585, 15.096796 ], [ 145.751665, 15.096892 ], [ 145.751682, 15.097161 ], [ 145.751718, 15.097228 ], [ 145.751687, 15.097286 ], [ 145.751496, 15.097339 ], [ 145.751477, 15.097412 ], [ 145.751545, 15.097429 ], [ 145.751612, 15.097484 ], [ 145.751476, 15.097537 ], [ 145.751452, 15.09762 ], [ 145.75147, 15.097674 ], [ 145.751525, 15.097746 ], [ 145.751487, 15.097794 ], [ 145.751465, 15.097856 ], [ 145.751456, 15.097919 ], [ 145.751462, 15.097979 ], [ 145.751566, 15.09801 ], [ 145.751652, 15.098063 ], [ 145.751565, 15.098101 ], [ 145.751504, 15.098135 ], [ 145.751475, 15.098205 ], [ 145.751528, 15.098248 ], [ 145.75155, 15.098311 ], [ 145.751539, 15.098357 ], [ 145.751632, 15.098399 ], [ 145.751674, 15.0985 ], [ 145.751649, 15.09853 ], [ 145.751497, 15.098569 ], [ 145.751482, 15.098619 ], [ 145.751486, 15.098658 ], [ 145.751482, 15.098714 ], [ 145.751601, 15.0988 ], [ 145.751743, 15.098818 ], [ 145.751884, 15.09886 ], [ 145.751945, 15.098926 ], [ 145.751911, 15.098973 ], [ 145.751837, 15.09901 ], [ 145.751815, 15.099057 ], [ 145.751858, 15.0991 ], [ 145.751938, 15.099142 ], [ 145.751956, 15.099195 ], [ 145.752024, 15.09922 ], [ 145.752091, 15.099292 ], [ 145.752048, 15.099346 ], [ 145.752004, 15.099382 ], [ 145.752078, 15.099477 ], [ 145.752131, 15.099872 ], [ 145.752172, 15.100111 ], [ 145.752165, 15.100327 ], [ 145.752152, 15.100512 ], [ 145.752157, 15.100662 ], [ 145.752186, 15.100649 ], [ 145.752207, 15.100692 ], [ 145.752239, 15.100803 ], [ 145.752234, 15.100928 ], [ 145.752341, 15.101115 ], [ 145.752502, 15.101336 ], [ 145.752477, 15.101393 ], [ 145.752496, 15.101479 ], [ 145.752634, 15.101538 ], [ 145.752599, 15.101618 ], [ 145.752623, 15.101718 ], [ 145.752596, 15.101801 ], [ 145.752543, 15.101904 ], [ 145.752469, 15.101929 ], [ 145.752449, 15.101976 ], [ 145.752444, 15.102053 ], [ 145.752342, 15.102081 ], [ 145.752199, 15.102133 ], [ 145.752125, 15.102218 ], [ 145.752021, 15.102366 ], [ 145.75203, 15.102505 ], [ 145.752058, 15.102649 ], [ 145.752033, 15.102787 ], [ 145.752086, 15.102945 ], [ 145.752095, 15.103075 ], [ 145.752144, 15.103108 ], [ 145.752253, 15.103099 ], [ 145.752321, 15.103138 ], [ 145.752331, 15.103209 ], [ 145.752355, 15.103233 ], [ 145.752439, 15.103253 ], [ 145.752503, 15.10323 ], [ 145.752532, 15.103253 ], [ 145.752571, 15.103302 ], [ 145.752606, 15.103331 ], [ 145.752665, 15.103359 ], [ 145.75266, 15.103389 ], [ 145.752571, 15.103412 ], [ 145.752502, 15.10344 ], [ 145.752482, 15.103469 ], [ 145.752491, 15.103555 ], [ 145.75254, 15.103574 ], [ 145.752658, 15.103609 ], [ 145.752628, 15.103695 ], [ 145.752677, 15.103747 ], [ 145.752767, 15.103925 ], [ 145.752703, 15.103977 ], [ 145.752599, 15.104072 ], [ 145.752539, 15.10423 ], [ 145.752539, 15.104264 ], [ 145.752568, 15.104407 ], [ 145.752538, 15.104474 ], [ 145.752537, 15.104555 ], [ 145.752551, 15.104641 ], [ 145.752526, 15.104731 ], [ 145.752496, 15.104803 ], [ 145.752495, 15.105009 ], [ 145.752475, 15.105099 ], [ 145.752435, 15.105148 ], [ 145.752415, 15.105191 ], [ 145.752445, 15.105219 ], [ 145.752528, 15.105253 ], [ 145.752577, 15.105344 ], [ 145.752551, 15.105351 ], [ 145.752532, 15.105349 ], [ 145.752464, 15.105349 ], [ 145.752473, 15.105401 ], [ 145.752576, 15.105521 ], [ 145.752526, 15.10556 ], [ 145.752521, 15.105611 ], [ 145.752557, 15.105627 ], [ 145.75257, 15.105641 ], [ 145.752654, 15.105694 ], [ 145.752648, 15.105766 ], [ 145.752605, 15.105814 ], [ 145.752543, 15.105916 ], [ 145.752609, 15.106131 ], [ 145.75267, 15.106209 ], [ 145.752658, 15.106281 ], [ 145.752699, 15.106349 ], [ 145.752705, 15.106368 ], [ 145.752719, 15.106469 ], [ 145.752977, 15.106627 ], [ 145.753074, 15.10665 ], [ 145.75323, 15.106708 ], [ 145.753352, 15.10699 ], [ 145.753652, 15.107219 ], [ 145.753676, 15.107308 ], [ 145.753756, 15.107387 ], [ 145.753798, 15.107507 ], [ 145.75381, 15.107603 ], [ 145.753896, 15.107687 ], [ 145.753981, 15.107782 ], [ 145.754087, 15.107785 ], [ 145.754104, 15.107777 ], [ 145.754208, 15.107832 ], [ 145.754236, 15.107893 ], [ 145.754324, 15.107963 ], [ 145.754553, 15.107947 ], [ 145.754609, 15.10796 ], [ 145.754651, 15.107965 ], [ 145.754601, 15.108025 ], [ 145.75462, 15.108085 ], [ 145.754705, 15.108175 ], [ 145.754779, 15.108217 ], [ 145.754846, 15.108313 ], [ 145.75487, 15.108415 ], [ 145.754869, 15.108505 ], [ 145.754912, 15.108565 ], [ 145.754918, 15.108673 ], [ 145.754985, 15.108721 ], [ 145.755055, 15.10878 ], [ 145.755067, 15.108822 ], [ 145.75507, 15.108871 ], [ 145.755018, 15.108901 ], [ 145.755023, 15.109026 ], [ 145.755072, 15.109116 ], [ 145.755083, 15.109301 ], [ 145.755126, 15.109379 ], [ 145.755101, 15.109457 ], [ 145.755298, 15.109664 ], [ 145.755374, 15.109757 ], [ 145.755396, 15.109774 ], [ 145.755437, 15.109901 ], [ 145.755467, 15.110033 ], [ 145.755423, 15.110111 ], [ 145.75549, 15.110224 ], [ 145.755496, 15.110284 ], [ 145.755526, 15.11044 ], [ 145.755543, 15.110626 ], [ 145.755641, 15.110734 ], [ 145.755696, 15.110823 ], [ 145.755795, 15.110887 ], [ 145.755797, 15.110905 ], [ 145.755799, 15.110985 ], [ 145.755824, 15.111051 ], [ 145.755971, 15.111112 ], [ 145.756072, 15.111137 ], [ 145.756158, 15.111245 ], [ 145.756181, 15.111265 ], [ 145.756317, 15.111382 ], [ 145.756347, 15.111509 ], [ 145.756352, 15.111718 ], [ 145.756412, 15.112042 ], [ 145.756571, 15.112228 ], [ 145.756555, 15.112482 ], [ 145.756526, 15.112556 ], [ 145.756488, 15.112687 ], [ 145.756545, 15.112767 ], [ 145.756536, 15.112808 ], [ 145.756535, 15.112891 ], [ 145.756498, 15.113029 ], [ 145.756529, 15.113154 ], [ 145.75654, 15.11328 ], [ 145.756532, 15.113382 ], [ 145.756515, 15.113452 ], [ 145.756452, 15.113561 ], [ 145.756372, 15.113613 ], [ 145.756334, 15.113733 ], [ 145.756297, 15.113894 ], [ 145.756179, 15.113935 ], [ 145.756111, 15.114082 ], [ 145.756041, 15.114199 ], [ 145.756084, 15.114333 ], [ 145.756054, 15.115218 ], [ 145.756118, 15.115304 ], [ 145.756118, 15.115352 ], [ 145.756088, 15.115433 ], [ 145.756091, 15.115673 ], [ 145.756103, 15.115739 ], [ 145.756043, 15.115811 ], [ 145.756043, 15.11594 ], [ 145.756052, 15.116026 ], [ 145.756089, 15.116074 ], [ 145.756042, 15.116103 ], [ 145.756046, 15.116251 ], [ 145.75606, 15.116298 ], [ 145.756144, 15.116361 ], [ 145.756296, 15.116396 ], [ 145.756305, 15.116535 ], [ 145.756334, 15.116659 ], [ 145.756363, 15.116846 ], [ 145.756402, 15.117176 ], [ 145.756372, 15.117343 ], [ 145.756578, 15.117474 ], [ 145.756679, 15.117805 ], [ 145.756654, 15.117952 ], [ 145.756672, 15.118167 ], [ 145.756715, 15.118364 ], [ 145.756739, 15.118498 ], [ 145.756689, 15.118641 ], [ 145.756693, 15.118752 ], [ 145.756742, 15.118852 ], [ 145.756816, 15.118891 ], [ 145.756867, 15.119029 ], [ 145.7569, 15.119154 ], [ 145.756992, 15.119223 ], [ 145.757004, 15.119239 ], [ 145.757018, 15.119347 ], [ 145.756943, 15.119466 ], [ 145.756863, 15.119676 ], [ 145.756855, 15.120245 ], [ 145.756869, 15.12034 ], [ 145.756923, 15.120422 ], [ 145.756912, 15.120513 ], [ 145.756937, 15.120589 ], [ 145.75698, 15.120633 ], [ 145.756965, 15.120685 ], [ 145.756908, 15.120743 ], [ 145.756952, 15.120914 ], [ 145.756956, 15.120957 ], [ 145.756909, 15.121089 ], [ 145.7569, 15.121105 ], [ 145.756833, 15.121148 ], [ 145.756778, 15.12123 ], [ 145.756664, 15.121235 ], [ 145.756566, 15.121219 ], [ 145.756566, 15.121171 ], [ 145.756478, 15.12116 ], [ 145.756411, 15.121184 ], [ 145.756369, 15.121213 ], [ 145.756326, 15.121266 ], [ 145.7563, 15.121285 ], [ 145.756289, 15.121356 ], [ 145.756328, 15.121414 ], [ 145.756363, 15.121485 ], [ 145.756279, 15.121519 ], [ 145.756268, 15.121576 ], [ 145.756214, 15.121666 ], [ 145.756225, 15.121825 ], [ 145.756167, 15.121837 ], [ 145.756092, 15.121901 ], [ 145.756039, 15.121966 ], [ 145.756032, 15.121976 ], [ 145.755973, 15.121995 ], [ 145.755968, 15.122091 ], [ 145.755913, 15.122177 ], [ 145.755888, 15.122253 ], [ 145.755857, 15.122386 ], [ 145.755734, 15.122424 ], [ 145.755704, 15.12251 ], [ 145.755625, 15.12262 ], [ 145.755511, 15.122677 ], [ 145.755417, 15.122709 ], [ 145.755466, 15.122796 ], [ 145.755554, 15.122825 ], [ 145.7555, 15.122939 ], [ 145.7554, 15.123069 ], [ 145.755307, 15.123096 ], [ 145.755233, 15.123125 ], [ 145.755206, 15.1232 ], [ 145.755132, 15.123247 ], [ 145.755003, 15.123219 ], [ 145.754954, 15.123195 ], [ 145.754816, 15.123209 ], [ 145.754845, 15.123314 ], [ 145.754933, 15.123386 ], [ 145.754923, 15.123458 ], [ 145.754859, 15.123535 ], [ 145.754681, 15.123562 ], [ 145.754519, 15.123599 ], [ 145.754391, 15.123522 ], [ 145.754278, 15.12344 ], [ 145.754239, 15.12342 ], [ 145.754067, 15.1234 ], [ 145.753983, 15.1234 ], [ 145.753884, 15.12338 ], [ 145.753801, 15.123342 ], [ 145.753678, 15.123342 ], [ 145.753609, 15.123389 ], [ 145.75362, 15.123435 ], [ 145.753623, 15.123446 ], [ 145.753583, 15.12347 ], [ 145.753465, 15.123478 ], [ 145.753279, 15.123421 ], [ 145.753156, 15.123362 ], [ 145.753093, 15.123247 ], [ 145.753029, 15.123251 ], [ 145.753023, 15.123304 ], [ 145.75294, 15.123324 ], [ 145.752909, 15.123318 ], [ 145.75284, 15.12328 ], [ 145.752828, 15.123266 ], [ 145.752775, 15.123241 ], [ 145.752746, 15.123168 ], [ 145.752692, 15.123116 ], [ 145.752666, 15.123137 ], [ 145.752563, 15.123195 ], [ 145.75248, 15.123242 ], [ 145.752429, 15.12325 ], [ 145.752332, 15.12329 ], [ 145.752243, 15.123272 ], [ 145.75208, 15.123275 ], [ 145.752026, 15.123313 ], [ 145.751999, 15.123346 ], [ 145.751981, 15.12338 ], [ 145.751846, 15.123595 ], [ 145.751729, 15.123636 ], [ 145.751586, 15.123626 ], [ 145.751359, 15.123691 ], [ 145.75125, 15.123749 ], [ 145.751176, 15.123806 ], [ 145.751181, 15.123877 ], [ 145.751119, 15.123881 ], [ 145.750925, 15.123866 ], [ 145.750831, 15.123894 ], [ 145.750698, 15.123956 ], [ 145.750614, 15.124004 ], [ 145.750565, 15.124027 ], [ 145.750486, 15.124027 ], [ 145.750421, 15.124117 ], [ 145.750415, 15.124194 ], [ 145.750258, 15.12424 ], [ 145.750198, 15.124319 ], [ 145.750173, 15.124327 ], [ 145.75008, 15.124326 ], [ 145.749972, 15.124349 ], [ 145.749883, 15.124396 ], [ 145.749853, 15.124458 ], [ 145.749779, 15.124535 ], [ 145.749679, 15.124616 ], [ 145.749673, 15.124649 ], [ 145.749673, 15.124667 ], [ 145.749647, 15.124749 ], [ 145.749547, 15.124736 ], [ 145.749539, 15.124735 ], [ 145.749381, 15.124681 ], [ 145.749224, 15.12469 ], [ 145.74911, 15.124717 ], [ 145.749061, 15.124765 ], [ 145.748765, 15.125014 ], [ 145.748745, 15.125095 ], [ 145.748744, 15.125113 ], [ 145.748718, 15.125146 ], [ 145.74867, 15.125135 ], [ 145.748587, 15.125146 ], [ 145.748499, 15.12521 ], [ 145.748414, 15.125233 ], [ 145.748383, 15.125249 ], [ 145.748299, 15.125325 ], [ 145.748269, 15.125396 ], [ 145.748269, 15.125478 ], [ 145.748309, 15.125549 ], [ 145.748302, 15.12561 ], [ 145.748295, 15.125635 ], [ 145.748248, 15.12567 ], [ 145.748125, 15.125721 ], [ 145.748055, 15.125793 ], [ 145.747941, 15.125878 ], [ 145.747867, 15.125906 ], [ 145.747784, 15.12591 ], [ 145.747744, 15.125973 ], [ 145.747719, 15.126078 ], [ 145.747683, 15.126303 ], [ 145.747665, 15.126388 ], [ 145.747613, 15.126442 ], [ 145.747596, 15.12645 ], [ 145.747566, 15.126524 ], [ 145.747555, 15.126656 ], [ 145.747466, 15.126808 ], [ 145.747436, 15.126818 ], [ 145.747391, 15.126894 ], [ 145.747352, 15.126894 ], [ 145.747263, 15.126937 ], [ 145.747223, 15.127012 ], [ 145.747261, 15.127213 ], [ 145.747251, 15.127305 ], [ 145.747221, 15.127442 ], [ 145.747088, 15.127418 ], [ 145.747069, 15.12736 ], [ 145.747059, 15.127285 ], [ 145.747015, 15.127265 ], [ 145.746956, 15.127312 ], [ 145.746738, 15.127416 ], [ 145.746708, 15.127478 ], [ 145.746654, 15.127482 ], [ 145.746605, 15.127526 ], [ 145.746555, 15.127592 ], [ 145.746458, 15.127656 ], [ 145.746398, 15.127628 ], [ 145.746366, 15.127562 ], [ 145.746321, 15.127557 ], [ 145.746208, 15.127619 ], [ 145.746192, 15.127637 ], [ 145.746035, 15.127738 ], [ 145.745972, 15.127791 ], [ 145.745913, 15.127824 ], [ 145.745842, 15.127837 ], [ 145.745778, 15.12786 ], [ 145.745689, 15.127937 ], [ 145.745653, 15.128161 ], [ 145.745549, 15.128294 ], [ 145.745489, 15.128342 ], [ 145.74543, 15.128356 ], [ 145.745391, 15.128413 ], [ 145.745429, 15.128576 ], [ 145.745404, 15.128653 ], [ 145.745379, 15.128715 ], [ 145.745354, 15.12882 ], [ 145.745266, 15.128917 ], [ 145.74521, 15.128939 ], [ 145.745151, 15.129029 ], [ 145.74514, 15.12911 ], [ 145.745115, 15.129191 ], [ 145.745075, 15.129311 ], [ 145.745024, 15.129349 ], [ 145.744993, 15.129391 ], [ 145.744971, 15.129406 ], [ 145.744933, 15.129521 ], [ 145.744963, 15.129573 ], [ 145.744957, 15.129712 ], [ 145.744917, 15.129807 ], [ 145.744902, 15.129907 ], [ 145.744872, 15.129989 ], [ 145.744871, 15.13007 ], [ 145.74489, 15.130175 ], [ 145.744816, 15.130295 ], [ 145.744815, 15.130356 ], [ 145.744794, 15.130363 ], [ 145.744761, 15.130389 ], [ 145.744693, 15.130487 ], [ 145.744652, 15.130495 ], [ 145.744573, 15.130503 ], [ 145.744489, 15.130532 ], [ 145.7444, 15.130589 ], [ 145.744287, 15.130617 ], [ 145.74425, 15.130677 ], [ 145.744252, 15.130746 ], [ 145.744261, 15.130769 ], [ 145.744184, 15.130844 ], [ 145.744165, 15.130872 ], [ 145.744083, 15.130937 ], [ 145.744043, 15.131018 ], [ 145.744033, 15.13108 ], [ 145.744008, 15.131161 ], [ 145.743992, 15.131256 ], [ 145.743921, 15.13129 ], [ 145.743896, 15.13138 ], [ 145.743836, 15.131514 ], [ 145.743806, 15.131561 ], [ 145.743801, 15.131604 ], [ 145.743761, 15.131685 ], [ 145.743724, 15.131737 ], [ 145.743647, 15.131766 ], [ 145.743639, 15.13179 ], [ 145.743596, 15.131847 ], [ 145.743573, 15.131862 ], [ 145.743534, 15.1319 ], [ 145.743489, 15.131928 ], [ 145.743484, 15.131976 ], [ 145.743475, 15.132012 ], [ 145.743471, 15.132031 ], [ 145.743443, 15.132068 ], [ 145.743341, 15.132239 ], [ 145.743299, 15.132287 ], [ 145.743265, 15.132345 ], [ 145.743206, 15.132377 ], [ 145.74307, 15.132399 ], [ 145.743005, 15.13258 ], [ 145.742979, 15.132767 ], [ 145.742925, 15.132843 ], [ 145.742865, 15.132901 ], [ 145.742865, 15.132991 ], [ 145.742825, 15.133096 ], [ 145.742795, 15.133192 ], [ 145.74273, 15.13323 ], [ 145.742651, 15.133268 ], [ 145.742589, 15.133325 ], [ 145.742601, 15.133397 ], [ 145.742601, 15.13346 ], [ 145.742597, 15.133478 ], [ 145.742512, 15.133592 ], [ 145.742455, 15.133806 ], [ 145.742447, 15.133871 ], [ 145.742429, 15.133937 ], [ 145.742335, 15.13437 ], [ 145.742297, 15.134495 ], [ 145.742281, 15.134605 ], [ 145.742275, 15.134801 ], [ 145.74226, 15.134853 ], [ 145.742206, 15.134891 ], [ 145.742122, 15.135274 ], [ 145.742137, 15.135388 ], [ 145.742092, 15.135479 ], [ 145.741988, 15.135498 ], [ 145.741772, 15.136334 ], [ 145.741751, 15.136529 ], [ 145.741672, 15.136576 ], [ 145.741534, 15.136586 ], [ 145.741479, 15.136657 ], [ 145.741483, 15.136763 ], [ 145.741539, 15.136954 ], [ 145.741415, 15.137157 ], [ 145.74138, 15.137216 ], [ 145.74131, 15.137349 ], [ 145.741202, 15.137383 ], [ 145.741116, 15.137697 ], [ 145.741125, 15.137779 ], [ 145.741238, 15.137818 ], [ 145.741277, 15.137933 ], [ 145.741262, 15.138053 ], [ 145.741241, 15.138139 ], [ 145.741221, 15.138244 ], [ 145.74123, 15.138334 ], [ 145.741259, 15.138402 ], [ 145.741249, 15.138488 ], [ 145.741165, 15.13853 ], [ 145.741086, 15.138582 ], [ 145.74114, 15.138669 ], [ 145.741285, 15.138741 ], [ 145.741367, 15.138915 ], [ 145.741313, 15.138986 ], [ 145.741238, 15.1391 ], [ 145.741188, 15.139152 ], [ 145.74108, 15.139209 ], [ 145.741079, 15.139324 ], [ 145.741117, 15.139549 ], [ 145.741147, 15.139606 ], [ 145.74117, 15.139639 ], [ 145.741205, 15.139722 ], [ 145.741195, 15.139775 ], [ 145.74115, 15.13986 ], [ 145.741228, 15.139923 ], [ 145.741296, 15.140114 ], [ 145.741399, 15.140129 ], [ 145.741399, 15.140258 ], [ 145.741354, 15.14035 ], [ 145.741329, 15.140444 ], [ 145.741367, 15.140583 ], [ 145.741403, 15.140775 ], [ 145.741442, 15.140871 ], [ 145.741608, 15.141035 ], [ 145.741805, 15.141117 ], [ 145.742006, 15.141266 ], [ 145.742123, 15.141444 ], [ 145.742201, 15.141578 ], [ 145.742387, 15.14168 ], [ 145.742525, 15.141685 ], [ 145.742461, 15.141781 ], [ 145.742519, 15.141853 ], [ 145.742465, 15.1419 ], [ 145.742459, 15.141991 ], [ 145.742552, 15.142126 ], [ 145.742699, 15.142308 ], [ 145.742698, 15.142381 ], [ 145.742698, 15.14239 ], [ 145.742624, 15.142428 ], [ 145.742644, 15.142484 ], [ 145.742658, 15.142557 ], [ 145.742621, 15.142633 ], [ 145.742487, 15.142671 ], [ 145.742374, 15.142688 ], [ 145.74229, 15.142722 ], [ 145.742359, 15.142784 ], [ 145.742407, 15.142866 ], [ 145.742574, 15.142963 ], [ 145.742746, 15.14305 ], [ 145.742869, 15.143084 ], [ 145.742957, 15.143152 ], [ 145.742987, 15.143238 ], [ 145.742971, 15.143323 ], [ 145.74301, 15.143429 ], [ 145.743019, 15.143516 ], [ 145.743078, 15.143544 ], [ 145.743182, 15.14356 ], [ 145.743245, 15.143631 ], [ 145.743373, 15.143675 ], [ 145.743308, 15.143732 ], [ 145.743332, 15.143852 ], [ 145.743366, 15.143938 ], [ 145.743371, 15.14401 ], [ 145.743296, 15.144129 ], [ 145.743296, 15.144196 ], [ 145.743342, 15.144249 ], [ 145.743435, 15.144373 ], [ 145.743548, 15.144412 ], [ 145.743592, 15.144532 ], [ 145.743503, 15.144579 ], [ 145.743424, 15.144675 ], [ 145.743388, 15.14478 ], [ 145.743575, 15.144824 ], [ 145.743615, 15.144864 ], [ 145.743624, 15.144873 ], [ 145.743619, 15.144987 ], [ 145.743682, 15.145098 ], [ 145.74378, 15.145174 ], [ 145.743938, 15.145204 ], [ 145.744071, 15.145186 ], [ 145.744159, 15.145268 ], [ 145.744212, 15.145344 ], [ 145.744202, 15.145487 ], [ 145.744231, 15.145545 ], [ 145.74429, 15.145613 ], [ 145.744353, 15.145656 ], [ 145.744471, 15.1457 ], [ 145.74455, 15.145763 ], [ 145.744554, 15.145863 ], [ 145.744519, 15.145977 ], [ 145.744421, 15.146264 ], [ 145.744421, 15.146307 ], [ 145.74441, 15.146436 ], [ 145.74444, 15.146484 ], [ 145.744518, 15.146551 ], [ 145.744572, 15.146519 ], [ 145.744642, 15.14647 ], [ 145.74475, 15.146419 ], [ 145.744903, 15.146396 ], [ 145.745016, 15.146449 ], [ 145.745095, 15.146516 ], [ 145.745099, 15.146593 ], [ 145.745054, 15.146612 ], [ 145.74503, 15.146678 ], [ 145.745034, 15.146727 ], [ 145.745068, 15.146789 ], [ 145.745038, 15.146832 ], [ 145.744991, 15.146928 ], [ 145.744991, 15.14698 ], [ 145.745017, 15.147071 ], [ 145.744987, 15.147157 ], [ 145.745025, 15.147266 ], [ 145.74508, 15.147325 ], [ 145.745134, 15.147373 ], [ 145.745182, 15.147473 ], [ 145.745231, 15.147546 ], [ 145.74529, 15.147622 ], [ 145.745233, 15.147684 ], [ 145.745168, 15.147746 ], [ 145.745173, 15.147842 ], [ 145.745197, 15.147919 ], [ 145.745286, 15.147915 ], [ 145.745325, 15.147958 ], [ 145.745324, 15.148039 ], [ 145.745309, 15.148107 ], [ 145.745304, 15.148134 ], [ 145.74525, 15.148168 ], [ 145.745205, 15.148258 ], [ 145.745204, 15.148358 ], [ 145.745297, 15.148421 ], [ 145.745372, 15.148436 ], [ 145.745391, 15.148436 ], [ 145.74543, 15.148475 ], [ 145.745366, 15.14847 ], [ 145.745307, 15.148522 ], [ 145.745351, 15.148584 ], [ 145.74538, 15.148637 ], [ 145.74533, 15.148699 ], [ 145.745374, 15.148776 ], [ 145.745472, 15.148805 ], [ 145.745605, 15.148868 ], [ 145.745715, 15.149007 ], [ 145.745813, 15.149032 ], [ 145.745842, 15.149137 ], [ 145.745897, 15.14908 ], [ 145.745922, 15.149009 ], [ 145.746005, 15.149052 ], [ 145.746034, 15.149123 ], [ 145.746108, 15.149162 ], [ 145.746182, 15.149153 ], [ 145.746206, 15.149273 ], [ 145.746171, 15.149359 ], [ 145.746205, 15.149392 ], [ 145.746212, 15.149476 ], [ 145.746214, 15.149498 ], [ 145.74614, 15.149545 ], [ 145.746175, 15.149579 ], [ 145.746243, 15.149617 ], [ 145.746253, 15.149723 ], [ 145.746321, 15.149733 ], [ 145.74642, 15.149742 ], [ 145.746494, 15.149705 ], [ 145.746569, 15.149715 ], [ 145.746602, 15.149777 ], [ 145.746621, 15.149859 ], [ 145.746552, 15.149916 ], [ 145.74657, 15.150112 ], [ 145.746641, 15.15027 ], [ 145.746679, 15.150429 ], [ 145.746646, 15.150687 ], [ 145.746646, 15.150711 ], [ 145.746574, 15.150796 ], [ 145.746623, 15.150849 ], [ 145.746696, 15.150849 ], [ 145.74675, 15.150874 ], [ 145.746775, 15.15096 ], [ 145.746759, 15.151027 ], [ 145.74677, 15.151064 ], [ 145.746786, 15.151082 ], [ 145.746815, 15.151138 ], [ 145.746748, 15.151218 ], [ 145.746778, 15.151241 ], [ 145.746784, 15.151258 ], [ 145.746797, 15.151295 ], [ 145.746827, 15.151305 ], [ 145.746861, 15.151271 ], [ 145.746871, 15.15131 ], [ 145.746831, 15.151424 ], [ 145.746807, 15.15141 ], [ 145.746782, 15.151376 ], [ 145.746743, 15.151376 ], [ 145.746728, 15.151395 ], [ 145.746737, 15.151448 ], [ 145.746781, 15.151472 ], [ 145.746781, 15.151505 ], [ 145.746776, 15.151534 ], [ 145.746658, 15.151538 ], [ 145.746579, 15.151557 ], [ 145.746574, 15.151609 ], [ 145.746623, 15.151667 ], [ 145.746652, 15.15173 ], [ 145.746656, 15.151759 ], [ 145.746652, 15.151777 ], [ 145.746701, 15.15183 ], [ 145.746741, 15.15184 ], [ 145.746757, 15.15185 ], [ 145.746859, 15.151863 ], [ 145.746949, 15.151912 ], [ 145.746963, 15.15197 ], [ 145.746913, 15.151975 ], [ 145.746805, 15.151988 ], [ 145.746825, 15.152046 ], [ 145.746913, 15.152156 ], [ 145.746986, 15.15221 ], [ 145.74704, 15.152291 ], [ 145.747086, 15.152399 ], [ 145.747083, 15.152417 ], [ 145.747024, 15.152463 ], [ 145.747014, 15.152549 ], [ 145.747028, 15.152635 ], [ 145.747048, 15.152688 ], [ 145.747102, 15.152688 ], [ 145.747215, 15.152698 ], [ 145.747264, 15.152732 ], [ 145.747353, 15.152752 ], [ 145.747427, 15.152714 ], [ 145.74751, 15.152719 ], [ 145.747677, 15.152763 ], [ 145.747746, 15.152822 ], [ 145.747813, 15.153011 ], [ 145.747839, 15.153026 ], [ 145.747868, 15.153042 ], [ 145.747961, 15.153109 ], [ 145.748064, 15.153133 ], [ 145.748123, 15.153196 ], [ 145.748216, 15.15324 ], [ 145.748285, 15.153315 ], [ 145.7483, 15.15341 ], [ 145.748306, 15.153451 ], [ 145.74836, 15.153494 ], [ 145.748429, 15.153585 ], [ 145.748458, 15.153653 ], [ 145.748536, 15.153696 ], [ 145.748601, 15.153703 ], [ 145.748645, 15.15373 ], [ 145.748615, 15.153797 ], [ 145.748668, 15.153854 ], [ 145.748633, 15.153945 ], [ 145.748535, 15.153992 ], [ 145.748514, 15.154165 ], [ 145.748536, 15.154195 ], [ 145.748548, 15.154211 ], [ 145.748553, 15.154237 ], [ 145.748607, 15.15429 ], [ 145.748626, 15.154391 ], [ 145.748615, 15.154485 ], [ 145.74858, 15.154558 ], [ 145.748605, 15.154639 ], [ 145.748584, 15.154734 ], [ 145.748589, 15.154777 ], [ 145.748732, 15.154876 ], [ 145.748753, 15.15503 ], [ 145.74876, 15.155047 ], [ 145.748761, 15.155139 ], [ 145.748769, 15.155161 ], [ 145.74882, 15.155203 ], [ 145.748838, 15.155243 ], [ 145.748839, 15.1553 ], [ 145.748814, 15.15542 ], [ 145.748828, 15.155544 ], [ 145.748764, 15.155625 ], [ 145.748832, 15.155735 ], [ 145.748861, 15.155855 ], [ 145.748841, 15.155941 ], [ 145.748929, 15.15608 ], [ 145.74911, 15.156244 ], [ 145.749188, 15.156383 ], [ 145.749227, 15.156465 ], [ 145.749192, 15.156555 ], [ 145.749205, 15.156718 ], [ 145.749195, 15.156789 ], [ 145.749116, 15.156904 ], [ 145.74914, 15.157009 ], [ 145.749132, 15.157046 ], [ 145.749124, 15.157095 ], [ 145.74915, 15.157416 ], [ 145.74914, 15.157483 ], [ 145.749238, 15.157545 ], [ 145.749226, 15.15778 ], [ 145.749191, 15.157885 ], [ 145.749235, 15.158053 ], [ 145.749366, 15.158355 ], [ 145.749383, 15.158374 ], [ 145.749487, 15.158551 ], [ 145.749498, 15.15857 ], [ 145.749698, 15.15883 ], [ 145.749955, 15.159085 ], [ 145.750332, 15.159417 ], [ 145.750662, 15.15975 ], [ 145.750866, 15.159955 ], [ 145.751076, 15.160128 ], [ 145.751253, 15.160274 ], [ 145.751818, 15.160535 ], [ 145.752237, 15.160679 ], [ 145.752427, 15.160745 ], [ 145.752968, 15.160834 ], [ 145.753018, 15.160838 ], [ 145.753496, 15.161024 ], [ 145.754146, 15.161193 ], [ 145.754613, 15.161306 ], [ 145.755014, 15.161366 ], [ 145.755033, 15.161457 ], [ 145.755295, 15.161415 ], [ 145.755443, 15.161404 ], [ 145.755685, 15.161398 ], [ 145.755946, 15.161466 ], [ 145.755973, 15.161473 ], [ 145.756279, 15.161531 ], [ 145.756604, 15.161518 ], [ 145.756692, 15.161598 ], [ 145.756869, 15.161654 ], [ 145.757194, 15.161694 ], [ 145.75741, 15.161777 ], [ 145.757855, 15.161865 ], [ 145.757954, 15.16186 ], [ 145.757954, 15.161803 ], [ 145.757979, 15.161727 ], [ 145.758068, 15.161699 ], [ 145.758103, 15.161689 ], [ 145.758314, 15.161724 ], [ 145.758358, 15.161819 ], [ 145.758461, 15.161835 ], [ 145.758589, 15.161878 ], [ 145.758732, 15.161836 ], [ 145.758792, 15.161731 ], [ 145.758911, 15.161584 ], [ 145.759, 15.161531 ], [ 145.759123, 15.161513 ], [ 145.759158, 15.16148 ], [ 145.759217, 15.161509 ], [ 145.759236, 15.161633 ], [ 145.759274, 15.161781 ], [ 145.759283, 15.16192 ], [ 145.759307, 15.162017 ], [ 145.759356, 15.162088 ], [ 145.759321, 15.162174 ], [ 145.759262, 15.162246 ], [ 145.759251, 15.162346 ], [ 145.759275, 15.162456 ], [ 145.759363, 15.162581 ], [ 145.759505, 15.162697 ], [ 145.759525, 15.162764 ], [ 145.759627, 15.162951 ], [ 145.759644, 15.162972 ], [ 145.75971, 15.163052 ], [ 145.760142, 15.16326 ], [ 145.760565, 15.163349 ], [ 145.760764, 15.163383 ], [ 145.761114, 15.163432 ], [ 145.761475, 15.16341 ], [ 145.761656, 15.163407 ], [ 145.76207, 15.163304 ], [ 145.762105, 15.1633 ], [ 145.762464, 15.163268 ], [ 145.762711, 15.163183 ], [ 145.763269, 15.162961 ], [ 145.763565, 15.162872 ], [ 145.764109, 15.162808 ], [ 145.764171, 15.162805 ], [ 145.764652, 15.162788 ], [ 145.765021, 15.162727 ], [ 145.765233, 15.162685 ], [ 145.765465, 15.162629 ], [ 145.765736, 15.162554 ], [ 145.765958, 15.162488 ], [ 145.76621, 15.162389 ], [ 145.766403, 15.162289 ], [ 145.76659, 15.162181 ], [ 145.766778, 15.162081 ], [ 145.766941, 15.161982 ], [ 145.767045, 15.161905 ], [ 145.767193, 15.161863 ], [ 145.767314, 15.161797 ], [ 145.767472, 15.161769 ], [ 145.767557, 15.161492 ], [ 145.767508, 15.161363 ], [ 145.767569, 15.161158 ], [ 145.767677, 15.16111 ], [ 145.76787, 15.161006 ], [ 145.767876, 15.160905 ], [ 145.768019, 15.160724 ], [ 145.768035, 15.160643 ], [ 145.768179, 15.160395 ], [ 145.768214, 15.160267 ], [ 145.768316, 15.160171 ], [ 145.76841, 15.160115 ], [ 145.7684, 15.160047 ], [ 145.768416, 15.159972 ], [ 145.768495, 15.159934 ], [ 145.768563, 15.159953 ], [ 145.768682, 15.159848 ], [ 145.768692, 15.159757 ], [ 145.768811, 15.159681 ], [ 145.76891, 15.159611 ], [ 145.768975, 15.1595 ], [ 145.769049, 15.159419 ], [ 145.769153, 15.159353 ], [ 145.769243, 15.159268 ], [ 145.769238, 15.159186 ], [ 145.769302, 15.159071 ], [ 145.769386, 15.159048 ], [ 145.769519, 15.158987 ], [ 145.769604, 15.15891 ], [ 145.769673, 15.158878 ], [ 145.769732, 15.158782 ], [ 145.769832, 15.158678 ], [ 145.769792, 15.15862 ], [ 145.769837, 15.158573 ], [ 145.769906, 15.158554 ], [ 145.769941, 15.158473 ], [ 145.770008, 15.158402 ], [ 145.770058, 15.158234 ], [ 145.770122, 15.158187 ], [ 145.770138, 15.158043 ], [ 145.770252, 15.157953 ], [ 145.770227, 15.157905 ], [ 145.770307, 15.157791 ], [ 145.770367, 15.157676 ], [ 145.770332, 15.157595 ], [ 145.770372, 15.157543 ], [ 145.770452, 15.157452 ], [ 145.770408, 15.157342 ], [ 145.770389, 15.15725 ], [ 145.770335, 15.157136 ], [ 145.770321, 15.157113 ], [ 145.770279, 15.157064 ], [ 145.770232, 15.157039 ], [ 145.770228, 15.156992 ], [ 145.770267, 15.15692 ], [ 145.770287, 15.156896 ], [ 145.770273, 15.156815 ], [ 145.770283, 15.156748 ], [ 145.770274, 15.156695 ], [ 145.77023, 15.156623 ], [ 145.770256, 15.156582 ], [ 145.77025, 15.156523 ], [ 145.770215, 15.156474 ], [ 145.770162, 15.156431 ], [ 145.770132, 15.156375 ], [ 145.770062, 15.156273 ], [ 145.770023, 15.156201 ], [ 145.769945, 15.156038 ], [ 145.769952, 15.155951 ], [ 145.769889, 15.15591 ], [ 145.76988, 15.155895 ], [ 145.769859, 15.155859 ], [ 145.769767, 15.155766 ], [ 145.769813, 15.155622 ], [ 145.769863, 15.155431 ], [ 145.769957, 15.155321 ], [ 145.770059, 15.155317 ], [ 145.770319, 15.155319 ], [ 145.770794, 15.155206 ], [ 145.770957, 15.155258 ], [ 145.770979, 15.155186 ], [ 145.770943, 15.155092 ], [ 145.771025, 15.154941 ], [ 145.771159, 15.154905 ], [ 145.771319, 15.154836 ], [ 145.771445, 15.15469 ], [ 145.771754, 15.154535 ], [ 145.771822, 15.15442 ], [ 145.771815, 15.154262 ], [ 145.771919, 15.154233 ], [ 145.771875, 15.15406 ], [ 145.771965, 15.154002 ], [ 145.77198, 15.153874 ], [ 145.772085, 15.153802 ], [ 145.772153, 15.15355 ], [ 145.772295, 15.153393 ], [ 145.772325, 15.153206 ], [ 145.772521, 15.153149 ], [ 145.772724, 15.153064 ], [ 145.772709, 15.153008 ], [ 145.772713, 15.153002 ], [ 145.772746, 15.152958 ], [ 145.772816, 15.152963 ], [ 145.773102, 15.152936 ], [ 145.773186, 15.152888 ], [ 145.773246, 15.152815 ], [ 145.773288, 15.152733 ], [ 145.773339, 15.152652 ], [ 145.773399, 15.152579 ], [ 145.773355, 15.15248 ], [ 145.773413, 15.15239 ], [ 145.773471, 15.152284 ], [ 145.773523, 15.152178 ], [ 145.773607, 15.152128 ], [ 145.773696, 15.152093 ], [ 145.773821, 15.151998 ], [ 145.773895, 15.151952 ], [ 145.774051, 15.151928 ], [ 145.774134, 15.151883 ], [ 145.774208, 15.151828 ], [ 145.774244, 15.151757 ], [ 145.774318, 15.151692 ], [ 145.774385, 15.151667 ], [ 145.774569, 15.151491 ], [ 145.774729, 15.151497 ], [ 145.774821, 15.151505 ], [ 145.774876, 15.151407 ], [ 145.774999, 15.151392 ], [ 145.775038, 15.151418 ], [ 145.775058, 15.151468 ], [ 145.77523, 15.151536 ], [ 145.775282, 15.151581 ], [ 145.775568, 15.151522 ], [ 145.775632, 15.151558 ], [ 145.775739, 15.151619 ], [ 145.775792, 15.151614 ], [ 145.775833, 15.151578 ], [ 145.775922, 15.151599 ], [ 145.775984, 15.151646 ], [ 145.776082, 15.151692 ], [ 145.776197, 15.151713 ], [ 145.776264, 15.151758 ], [ 145.776285, 15.151793 ], [ 145.776321, 15.151814 ], [ 145.776348, 15.151789 ], [ 145.776275, 15.151687 ], [ 145.776348, 15.151663 ], [ 145.77641, 15.151708 ], [ 145.776577, 15.151654 ], [ 145.77651, 15.151598 ], [ 145.776334, 15.151415 ], [ 145.776204, 15.151374 ], [ 145.77621, 15.151328 ], [ 145.776106, 15.151251 ], [ 145.776023, 15.15124 ], [ 145.775966, 15.15118 ], [ 145.776002, 15.151144 ], [ 145.77606, 15.15116 ], [ 145.776122, 15.15113 ], [ 145.776128, 15.151079 ], [ 145.776185, 15.15107 ], [ 145.776223, 15.151093 ], [ 145.77641, 15.151071 ], [ 145.7765, 15.150992 ], [ 145.77659, 15.150882 ], [ 145.776656, 15.150764 ], [ 145.776867, 15.150749 ], [ 145.77712, 15.150711 ], [ 145.777377, 15.150712 ], [ 145.777461, 15.150713 ], [ 145.777599, 15.150848 ], [ 145.777761, 15.150904 ], [ 145.777851, 15.150944 ], [ 145.777891, 15.151063 ], [ 145.777858, 15.151118 ], [ 145.777882, 15.151189 ], [ 145.777987, 15.151206 ], [ 145.778126, 15.151183 ], [ 145.77824, 15.151128 ], [ 145.778378, 15.151121 ], [ 145.778509, 15.15113 ], [ 145.778647, 15.151154 ], [ 145.778793, 15.151202 ], [ 145.778881, 15.151337 ], [ 145.778979, 15.151322 ], [ 145.779118, 15.151323 ], [ 145.779362, 15.151308 ], [ 145.779273, 15.151229 ], [ 145.779207, 15.15122 ], [ 145.77911, 15.151188 ], [ 145.779054, 15.151046 ], [ 145.779071, 15.150911 ], [ 145.77921, 15.150849 ], [ 145.779519, 15.150827 ], [ 145.77969, 15.150796 ], [ 145.779878, 15.15071 ], [ 145.779935, 15.150615 ], [ 145.780066, 15.150522 ], [ 145.780115, 15.150459 ], [ 145.780123, 15.15038 ], [ 145.780278, 15.150397 ], [ 145.780408, 15.15039 ], [ 145.780489, 15.150437 ], [ 145.780571, 15.150462 ], [ 145.780644, 15.150423 ], [ 145.780653, 15.150312 ], [ 145.780702, 15.15028 ], [ 145.780783, 15.150344 ], [ 145.780799, 15.150415 ], [ 145.780863, 15.150455 ], [ 145.780945, 15.150448 ], [ 145.781132, 15.150532 ], [ 145.781225, 15.1505 ], [ 145.781242, 15.150418 ], [ 145.781226, 15.150339 ], [ 145.781283, 15.150276 ], [ 145.78142, 15.150214 ], [ 145.781522, 15.150215 ], [ 145.781495, 15.150301 ], [ 145.781486, 15.150364 ], [ 145.781559, 15.150435 ], [ 145.781574, 15.150616 ], [ 145.781713, 15.150658 ], [ 145.781797, 15.150716 ], [ 145.78189, 15.150757 ], [ 145.781982, 15.150766 ], [ 145.782041, 15.15084 ], [ 145.78204, 15.150939 ], [ 145.782073, 15.151029 ], [ 145.782123, 15.151111 ], [ 145.782125, 15.151139 ], [ 145.782131, 15.151201 ], [ 145.782122, 15.15129 ], [ 145.782054, 15.151356 ], [ 145.782012, 15.151438 ], [ 145.782028, 15.151528 ], [ 145.78207, 15.15161 ], [ 145.782086, 15.1517 ], [ 145.782145, 15.151782 ], [ 145.782229, 15.15184 ], [ 145.782414, 15.151857 ], [ 145.782507, 15.15189 ], [ 145.782616, 15.1519 ], [ 145.782895, 15.151876 ], [ 145.782987, 15.15186 ], [ 145.783072, 15.15182 ], [ 145.783165, 15.151795 ], [ 145.78325, 15.15172 ], [ 145.783339, 15.151678 ], [ 145.783413, 15.15162 ], [ 145.783606, 15.15154 ], [ 145.783724, 15.151498 ], [ 145.783764, 15.151468 ], [ 145.783863, 15.151394 ], [ 145.783961, 15.151408 ], [ 145.784035, 15.151383 ], [ 145.78408, 15.151346 ], [ 145.784139, 15.151323 ], [ 145.784252, 15.151314 ], [ 145.784346, 15.151257 ], [ 145.784441, 15.151237 ], [ 145.784533, 15.151263 ], [ 145.784626, 15.151247 ], [ 145.784719, 15.151215 ], [ 145.784812, 15.151191 ], [ 145.784905, 15.151207 ], [ 145.784989, 15.151249 ], [ 145.78503, 15.151331 ], [ 145.785089, 15.151405 ], [ 145.785165, 15.151463 ], [ 145.785349, 15.151529 ], [ 145.785442, 15.151522 ], [ 145.785535, 15.15149 ], [ 145.785611, 15.151432 ], [ 145.785704, 15.1514 ], [ 145.785797, 15.151418 ], [ 145.785898, 15.151418 ], [ 145.786009, 15.151238 ], [ 145.786076, 15.151173 ], [ 145.786136, 15.1511 ], [ 145.786212, 15.151042 ], [ 145.786381, 15.150962 ], [ 145.786474, 15.150954 ], [ 145.786575, 15.150955 ], [ 145.786653, 15.15092 ], [ 145.786815, 15.150921 ], [ 145.786919, 15.150907 ], [ 145.787081, 15.150861 ], [ 145.787191, 15.150868 ], [ 145.78725, 15.150795 ], [ 145.787049, 15.150669 ], [ 145.787122, 15.150583 ], [ 145.787221, 15.150498 ], [ 145.787383, 15.150467 ], [ 145.787514, 15.150452 ], [ 145.787606, 15.150461 ], [ 145.787666, 15.150387 ], [ 145.787767, 15.150387 ], [ 145.78786, 15.150405 ], [ 145.787944, 15.150446 ], [ 145.788045, 15.150447 ], [ 145.788137, 15.150422 ], [ 145.78823, 15.150407 ], [ 145.788416, 15.150342 ], [ 145.788509, 15.150351 ], [ 145.788594, 15.150303 ], [ 145.788686, 15.150319 ], [ 145.788779, 15.150312 ], [ 145.788872, 15.150295 ], [ 145.788964, 15.150313 ], [ 145.789057, 15.150338 ], [ 145.789158, 15.150338 ], [ 145.78925, 15.150372 ], [ 145.789258, 15.150461 ], [ 145.789241, 15.150551 ], [ 145.789173, 15.150616 ], [ 145.789139, 15.150707 ], [ 145.789156, 15.150796 ], [ 145.789147, 15.150886 ], [ 145.789096, 15.150969 ], [ 145.789061, 15.151058 ], [ 145.789078, 15.151148 ], [ 145.789069, 15.151238 ], [ 145.789033, 15.151276 ], [ 145.789001, 15.151312 ], [ 145.788958, 15.151393 ], [ 145.788899, 15.151467 ], [ 145.78883, 15.151646 ], [ 145.788771, 15.151719 ], [ 145.788745, 15.15181 ], [ 145.788735, 15.152014 ], [ 145.788794, 15.152088 ], [ 145.788887, 15.152105 ], [ 145.788911, 15.152181 ], [ 145.788911, 15.152243 ], [ 145.788836, 15.152295 ], [ 145.788723, 15.152347 ], [ 145.788663, 15.152433 ], [ 145.788559, 15.152605 ], [ 145.788494, 15.152686 ], [ 145.788504, 15.152759 ], [ 145.788486, 15.152848 ], [ 145.788461, 15.152938 ], [ 145.788443, 15.153028 ], [ 145.788384, 15.153101 ], [ 145.788383, 15.1532 ], [ 145.788391, 15.15329 ], [ 145.788424, 15.15338 ], [ 145.788432, 15.15347 ], [ 145.788499, 15.15365 ], [ 145.788498, 15.153748 ], [ 145.788455, 15.153831 ], [ 145.788388, 15.153904 ], [ 145.78832, 15.153969 ], [ 145.788277, 15.154059 ], [ 145.788268, 15.154148 ], [ 145.788293, 15.154247 ], [ 145.788326, 15.154428 ], [ 145.788376, 15.154509 ], [ 145.788443, 15.154575 ], [ 145.788535, 15.154641 ], [ 145.788627, 15.154674 ], [ 145.788712, 15.154725 ], [ 145.788779, 15.154791 ], [ 145.788837, 15.154872 ], [ 145.788828, 15.154963 ], [ 145.788861, 15.155052 ], [ 145.788945, 15.15511 ], [ 145.78903, 15.155151 ], [ 145.789088, 15.155226 ], [ 145.789029, 15.155299 ], [ 145.789054, 15.15539 ], [ 145.789187, 15.155522 ], [ 145.789238, 15.155603 ], [ 145.789296, 15.155677 ], [ 145.789363, 15.155743 ], [ 145.789447, 15.155784 ], [ 145.789523, 15.155842 ], [ 145.789729, 15.155936 ], [ 145.789708, 15.155958 ], [ 145.789809, 15.155999 ], [ 145.789901, 15.156016 ], [ 145.789985, 15.156066 ], [ 145.790078, 15.156082 ], [ 145.79028, 15.156083 ], [ 145.790373, 15.156101 ], [ 145.790474, 15.156101 ], [ 145.790567, 15.156126 ], [ 145.79066, 15.156102 ], [ 145.790736, 15.156045 ], [ 145.79082, 15.155997 ], [ 145.791006, 15.155932 ], [ 145.791099, 15.155924 ], [ 145.791174, 15.155982 ], [ 145.791132, 15.156064 ], [ 145.791098, 15.156153 ], [ 145.791148, 15.156236 ], [ 145.791223, 15.156293 ], [ 145.791282, 15.156368 ], [ 145.791374, 15.156384 ], [ 145.791433, 15.156458 ], [ 145.791458, 15.156548 ], [ 145.791407, 15.156631 ], [ 145.791347, 15.156704 ], [ 145.791355, 15.156802 ], [ 145.791313, 15.156883 ], [ 145.791321, 15.156974 ], [ 145.791312, 15.157064 ], [ 145.791252, 15.157137 ], [ 145.79121, 15.157218 ], [ 145.791184, 15.157308 ], [ 145.791124, 15.157382 ], [ 145.79109, 15.157472 ], [ 145.791047, 15.157553 ], [ 145.791123, 15.157611 ], [ 145.791206, 15.157775 ], [ 145.791273, 15.157849 ], [ 145.791332, 15.157923 ], [ 145.791416, 15.157981 ], [ 145.791457, 15.158064 ], [ 145.791482, 15.158153 ], [ 145.79149, 15.158243 ], [ 145.791464, 15.158334 ], [ 145.791573, 15.158514 ], [ 145.791623, 15.158547 ], [ 145.791589, 15.158637 ], [ 145.791665, 15.158703 ], [ 145.791749, 15.158744 ], [ 145.79174, 15.158835 ], [ 145.791824, 15.158876 ], [ 145.791815, 15.158966 ], [ 145.791764, 15.159047 ], [ 145.791705, 15.15912 ], [ 145.791637, 15.159185 ], [ 145.791628, 15.159276 ], [ 145.791661, 15.159366 ], [ 145.791677, 15.159456 ], [ 145.791719, 15.159538 ], [ 145.791786, 15.159604 ], [ 145.791819, 15.159695 ], [ 145.791869, 15.159776 ], [ 145.791911, 15.159867 ], [ 145.791902, 15.159956 ], [ 145.791834, 15.160021 ], [ 145.791715, 15.160169 ], [ 145.791639, 15.160226 ], [ 145.791605, 15.16034 ], [ 145.791604, 15.160438 ], [ 145.791654, 15.16052 ], [ 145.791662, 15.16061 ], [ 145.791603, 15.160684 ], [ 145.791569, 15.160774 ], [ 145.791492, 15.160831 ], [ 145.791517, 15.160921 ], [ 145.791567, 15.161011 ], [ 145.791626, 15.161085 ], [ 145.791659, 15.161175 ], [ 145.7916, 15.161257 ], [ 145.791599, 15.161364 ], [ 145.791624, 15.161454 ], [ 145.791564, 15.161527 ], [ 145.791522, 15.161608 ], [ 145.79153, 15.161699 ], [ 145.791597, 15.161765 ], [ 145.791672, 15.161823 ], [ 145.791731, 15.161897 ], [ 145.791747, 15.161987 ], [ 145.791814, 15.162175 ], [ 145.791863, 15.162356 ], [ 145.791862, 15.162553 ], [ 145.791878, 15.162732 ], [ 145.791945, 15.162806 ], [ 145.791986, 15.162897 ], [ 145.792011, 15.162987 ], [ 145.79207, 15.163061 ], [ 145.792221, 15.163176 ], [ 145.792187, 15.163274 ], [ 145.792203, 15.163365 ], [ 145.792236, 15.163455 ], [ 145.792303, 15.163529 ], [ 145.792488, 15.163596 ], [ 145.792588, 15.163776 ], [ 145.792622, 15.163801 ], [ 145.792715, 15.163817 ], [ 145.792807, 15.163859 ], [ 145.792866, 15.163941 ], [ 145.792941, 15.164015 ], [ 145.793017, 15.164081 ], [ 145.793084, 15.164147 ], [ 145.793252, 15.16423 ], [ 145.793327, 15.164287 ], [ 145.79342, 15.164297 ], [ 145.793513, 15.164288 ], [ 145.793606, 15.164265 ], [ 145.793699, 15.164233 ], [ 145.7938, 15.164233 ], [ 145.793892, 15.164274 ], [ 145.793909, 15.164365 ], [ 145.793832, 15.164421 ], [ 145.793765, 15.164486 ], [ 145.793849, 15.164528 ], [ 145.793933, 15.164577 ], [ 145.794017, 15.164618 ], [ 145.794202, 15.164652 ], [ 145.794286, 15.164694 ], [ 145.794362, 15.164751 ], [ 145.794454, 15.164777 ], [ 145.794547, 15.16481 ], [ 145.79464, 15.164826 ], [ 145.794723, 15.164868 ], [ 145.794807, 15.164918 ], [ 145.794875, 15.164983 ], [ 145.794959, 15.165041 ], [ 145.795043, 15.165083 ], [ 145.795135, 15.165116 ], [ 145.795219, 15.165157 ], [ 145.795295, 15.165215 ], [ 145.795387, 15.165248 ], [ 145.795463, 15.165306 ], [ 145.795555, 15.16534 ], [ 145.79564, 15.165381 ], [ 145.795724, 15.16543 ], [ 145.7959, 15.165513 ], [ 145.795967, 15.165587 ], [ 145.795916, 15.165669 ], [ 145.79584, 15.165725 ], [ 145.795747, 15.16575 ], [ 145.795679, 15.165815 ], [ 145.795755, 15.165873 ], [ 145.795847, 15.165897 ], [ 145.796033, 15.165931 ], [ 145.796125, 15.165923 ], [ 145.796227, 15.165924 ], [ 145.796412, 15.165909 ], [ 145.796505, 15.165918 ], [ 145.796597, 15.165951 ], [ 145.79669, 15.165967 ], [ 145.796806, 15.166056 ], [ 145.796841, 15.166083 ], [ 145.796933, 15.166116 ], [ 145.797102, 15.166199 ], [ 145.797194, 15.166224 ], [ 145.797278, 15.166265 ], [ 145.797337, 15.16634 ], [ 145.797413, 15.166397 ], [ 145.797471, 15.166471 ], [ 145.797513, 15.166561 ], [ 145.79758, 15.166627 ], [ 145.797638, 15.166701 ], [ 145.797621, 15.166791 ], [ 145.797562, 15.166864 ], [ 145.797477, 15.166914 ], [ 145.797384, 15.166937 ], [ 145.797292, 15.166928 ], [ 145.797199, 15.166969 ], [ 145.79692, 15.167042 ], [ 145.796827, 15.167074 ], [ 145.79654, 15.167121 ], [ 145.796304, 15.167177 ], [ 145.796211, 15.16721 ], [ 145.796042, 15.16729 ], [ 145.795949, 15.167322 ], [ 145.795864, 15.167364 ], [ 145.795788, 15.16742 ], [ 145.795704, 15.16746 ], [ 145.795611, 15.167469 ], [ 145.79551, 15.167468 ], [ 145.795417, 15.167476 ], [ 145.795332, 15.167524 ], [ 145.79524, 15.167715 ], [ 145.795135, 15.167838 ], [ 145.794733, 15.168094 ], [ 145.794101, 15.168524 ], [ 145.793653, 15.169098 ], [ 145.793422, 15.169283 ], [ 145.793235, 15.169484 ], [ 145.79302, 15.169598 ], [ 145.792841, 15.169619 ], [ 145.792737, 15.169676 ], [ 145.79227, 15.169659 ], [ 145.792062, 15.16983 ], [ 145.792075, 15.170176 ], [ 145.792, 15.17024 ], [ 145.7918, 15.170226 ], [ 145.791703, 15.170275 ], [ 145.791583, 15.170541 ], [ 145.791494, 15.170576 ], [ 145.791404, 15.17058 ], [ 145.791218, 15.170589 ], [ 145.791125, 15.170555 ], [ 145.791049, 15.170613 ], [ 145.791048, 15.170809 ], [ 145.791039, 15.170899 ], [ 145.791038, 15.170998 ], [ 145.790971, 15.171063 ], [ 145.790936, 15.171152 ], [ 145.790869, 15.171217 ], [ 145.790826, 15.171299 ], [ 145.790758, 15.171365 ], [ 145.790665, 15.171388 ], [ 145.790573, 15.171364 ], [ 145.790497, 15.171298 ], [ 145.79043, 15.171232 ], [ 145.790355, 15.171174 ], [ 145.790262, 15.171165 ], [ 145.790202, 15.171246 ], [ 145.790185, 15.171337 ], [ 145.790193, 15.17146 ], [ 145.790209, 15.171526 ], [ 145.7902, 15.171615 ], [ 145.790141, 15.171689 ], [ 145.790056, 15.171729 ], [ 145.789989, 15.171794 ], [ 145.789904, 15.17185 ], [ 145.789819, 15.171892 ], [ 145.789726, 15.171907 ], [ 145.789642, 15.171866 ], [ 145.789576, 15.1718 ], [ 145.7895, 15.171734 ], [ 145.789416, 15.171693 ], [ 145.789315, 15.171692 ], [ 145.789222, 15.171708 ], [ 145.789146, 15.171765 ], [ 145.788985, 15.171903 ], [ 145.788807, 15.172008 ], [ 145.788714, 15.172017 ], [ 145.78863, 15.172065 ], [ 145.788553, 15.172122 ], [ 145.788494, 15.172195 ], [ 145.788435, 15.172276 ], [ 145.788373, 15.172312 ], [ 145.78835, 15.172326 ], [ 145.788274, 15.172383 ], [ 145.788053, 15.172594 ], [ 145.787901, 15.172709 ], [ 145.787817, 15.172749 ], [ 145.78774, 15.172805 ], [ 145.787664, 15.17287 ], [ 145.787579, 15.172919 ], [ 145.787503, 15.172976 ], [ 145.78741, 15.173009 ], [ 145.787318, 15.173032 ], [ 145.787225, 15.173048 ], [ 145.787123, 15.173096 ], [ 145.787047, 15.173162 ], [ 145.787013, 15.173187 ], [ 145.786971, 15.173219 ], [ 145.786928, 15.173301 ], [ 145.786877, 15.173382 ], [ 145.786818, 15.173463 ], [ 145.786764, 15.173529 ], [ 145.786758, 15.173537 ], [ 145.786707, 15.173618 ], [ 145.786689, 15.17365 ], [ 145.786644, 15.173729 ], [ 145.786605, 15.173799 ], [ 145.786571, 15.173888 ], [ 145.786511, 15.173961 ], [ 145.786508, 15.173965 ], [ 145.78646, 15.174043 ], [ 145.786418, 15.174124 ], [ 145.786358, 15.174199 ], [ 145.78629, 15.174272 ], [ 145.786231, 15.174345 ], [ 145.786188, 15.174426 ], [ 145.786137, 15.174631 ], [ 145.786077, 15.174704 ], [ 145.786051, 15.174795 ], [ 145.785983, 15.17486 ], [ 145.785924, 15.174941 ], [ 145.78589, 15.175031 ], [ 145.785762, 15.175276 ], [ 145.785694, 15.175381 ], [ 145.785651, 15.175464 ], [ 145.785622, 15.175538 ], [ 145.785617, 15.175553 ], [ 145.785591, 15.175651 ], [ 145.785523, 15.175716 ], [ 145.785498, 15.175806 ], [ 145.785463, 15.175896 ], [ 145.785404, 15.17597 ], [ 145.785361, 15.17606 ], [ 145.785302, 15.176133 ], [ 145.785216, 15.176296 ], [ 145.785182, 15.176419 ], [ 145.78514, 15.1765 ], [ 145.785114, 15.176591 ], [ 145.785054, 15.176664 ], [ 145.784952, 15.176827 ], [ 145.784918, 15.176917 ], [ 145.784909, 15.177006 ], [ 145.784892, 15.177097 ], [ 145.784883, 15.177187 ], [ 145.784891, 15.177285 ], [ 145.784889, 15.177482 ], [ 145.784864, 15.177571 ], [ 145.784804, 15.177653 ], [ 145.784761, 15.177742 ], [ 145.784727, 15.177833 ], [ 145.784642, 15.177996 ], [ 145.784666, 15.178274 ], [ 145.784648, 15.178364 ], [ 145.784622, 15.178455 ], [ 145.784563, 15.178528 ], [ 145.784529, 15.178618 ], [ 145.784545, 15.178707 ], [ 145.78457, 15.178798 ], [ 145.784552, 15.178979 ], [ 145.784526, 15.179068 ], [ 145.784458, 15.179133 ], [ 145.784366, 15.179149 ], [ 145.784298, 15.179214 ], [ 145.784323, 15.179304 ], [ 145.78439, 15.179379 ], [ 145.784465, 15.179436 ], [ 145.784532, 15.179502 ], [ 145.784574, 15.179584 ], [ 145.78459, 15.179675 ], [ 145.784581, 15.179764 ], [ 145.784622, 15.179969 ], [ 145.78463, 15.180026 ], [ 145.784655, 15.180117 ], [ 145.784662, 15.180205 ], [ 145.784663, 15.180207 ], [ 145.784637, 15.180296 ], [ 145.784637, 15.180395 ], [ 145.784611, 15.180485 ], [ 145.784627, 15.180575 ], [ 145.784669, 15.180665 ], [ 145.78466, 15.180755 ], [ 145.784685, 15.180854 ], [ 145.784726, 15.180944 ], [ 145.784699, 15.181214 ], [ 145.784707, 15.181305 ], [ 145.784724, 15.181394 ], [ 145.784698, 15.181484 ], [ 145.784664, 15.181575 ], [ 145.784671, 15.181664 ], [ 145.784663, 15.181754 ], [ 145.78462, 15.181844 ], [ 145.784596, 15.181882 ], [ 145.784569, 15.181925 ], [ 145.784501, 15.181991 ], [ 145.784484, 15.182081 ], [ 145.7845, 15.182171 ], [ 145.784508, 15.182261 ], [ 145.784499, 15.182351 ], [ 145.784473, 15.182441 ], [ 145.784414, 15.182514 ], [ 145.784329, 15.182572 ], [ 145.784236, 15.182595 ], [ 145.784143, 15.182627 ], [ 145.78405, 15.182668 ], [ 145.784043, 15.182674 ], [ 145.783983, 15.182734 ], [ 145.783797, 15.182781 ], [ 145.783721, 15.182846 ], [ 145.783678, 15.182928 ], [ 145.783576, 15.183091 ], [ 145.783491, 15.183148 ], [ 145.783398, 15.183172 ], [ 145.783306, 15.18318 ], [ 145.783213, 15.183171 ], [ 145.78312, 15.183154 ], [ 145.783028, 15.183129 ], [ 145.782943, 15.183079 ], [ 145.782851, 15.183063 ], [ 145.782758, 15.18307 ], [ 145.782665, 15.183095 ], [ 145.782564, 15.183094 ], [ 145.78248, 15.183044 ], [ 145.782404, 15.182987 ], [ 145.782202, 15.182986 ], [ 145.781941, 15.182952 ], [ 145.781856, 15.182992 ], [ 145.78178, 15.183048 ], [ 145.781721, 15.183122 ], [ 145.781653, 15.183188 ], [ 145.781602, 15.183269 ], [ 145.781559, 15.183359 ], [ 145.7815, 15.183432 ], [ 145.781449, 15.183514 ], [ 145.781415, 15.183603 ], [ 145.781377, 15.183674 ], [ 145.781372, 15.183685 ], [ 145.781338, 15.183775 ], [ 145.781287, 15.183857 ], [ 145.781202, 15.18402 ], [ 145.781134, 15.184093 ], [ 145.781111, 15.184119 ], [ 145.781074, 15.184166 ], [ 145.781032, 15.184249 ], [ 145.780997, 15.184338 ], [ 145.780938, 15.184412 ], [ 145.780853, 15.184575 ], [ 145.780823, 15.184622 ], [ 145.780801, 15.184656 ], [ 145.780734, 15.184722 ], [ 145.78064, 15.184893 ], [ 145.780572, 15.184958 ], [ 145.780553, 15.185006 ], [ 145.780538, 15.185048 ], [ 145.780605, 15.185114 ], [ 145.780613, 15.185203 ], [ 145.780587, 15.185294 ], [ 145.780503, 15.185343 ], [ 145.78046, 15.185424 ], [ 145.780384, 15.185481 ], [ 145.780341, 15.185562 ], [ 145.78034, 15.185661 ], [ 145.780323, 15.185751 ], [ 145.780264, 15.185824 ], [ 145.780187, 15.185881 ], [ 145.780153, 15.185971 ], [ 145.780077, 15.186028 ], [ 145.780001, 15.186093 ], [ 145.779959, 15.186132 ], [ 145.779933, 15.186158 ], [ 145.779874, 15.186231 ], [ 145.779813, 15.186427 ], [ 145.779788, 15.18646 ], [ 145.779703, 15.186509 ], [ 145.779685, 15.186542 ], [ 145.779661, 15.18659 ], [ 145.779645, 15.186645 ], [ 145.779635, 15.186681 ], [ 145.779727, 15.186714 ], [ 145.779786, 15.186795 ], [ 145.779769, 15.186886 ], [ 145.779692, 15.186943 ], [ 145.77965, 15.187024 ], [ 145.77956, 15.187054 ], [ 145.779557, 15.187056 ], [ 145.779455, 15.187113 ], [ 145.779413, 15.187196 ], [ 145.779421, 15.187294 ], [ 145.779336, 15.187342 ], [ 145.779335, 15.18744 ], [ 145.779318, 15.187531 ], [ 145.779377, 15.187605 ], [ 145.779469, 15.187621 ], [ 145.779562, 15.187646 ], [ 145.779578, 15.187745 ], [ 145.779603, 15.187835 ], [ 145.77951, 15.187858 ], [ 145.779417, 15.187867 ], [ 145.779341, 15.187932 ], [ 145.779256, 15.187988 ], [ 145.779189, 15.188053 ], [ 145.77909, 15.188171 ], [ 145.779087, 15.188176 ], [ 145.778994, 15.188208 ], [ 145.778825, 15.18829 ], [ 145.77874, 15.188338 ], [ 145.778697, 15.188419 ], [ 145.77868, 15.188509 ], [ 145.778654, 15.188599 ], [ 145.778645, 15.18869 ], [ 145.778662, 15.188779 ], [ 145.778602, 15.188853 ], [ 145.778518, 15.188902 ], [ 145.778433, 15.188942 ], [ 145.778382, 15.189024 ], [ 145.778323, 15.189097 ], [ 145.778212, 15.189195 ], [ 145.778136, 15.189252 ], [ 145.778068, 15.189317 ], [ 145.778051, 15.189406 ], [ 145.778076, 15.189497 ], [ 145.778169, 15.189465 ], [ 145.778253, 15.189416 ], [ 145.778346, 15.189441 ], [ 145.778388, 15.189531 ], [ 145.778379, 15.189622 ], [ 145.778294, 15.189678 ], [ 145.778288, 15.189734 ], [ 145.778285, 15.189768 ], [ 145.778293, 15.189866 ], [ 145.778259, 15.189957 ], [ 145.778233, 15.190046 ], [ 145.778249, 15.190136 ], [ 145.778291, 15.190219 ], [ 145.778476, 15.190253 ], [ 145.778552, 15.190319 ], [ 145.778526, 15.190408 ], [ 145.77845, 15.190465 ], [ 145.778365, 15.190505 ], [ 145.778281, 15.190554 ], [ 145.778229, 15.190636 ], [ 145.77817, 15.190709 ], [ 145.778094, 15.190766 ], [ 145.778085, 15.190856 ], [ 145.778034, 15.190937 ], [ 145.778042, 15.191028 ], [ 145.778075, 15.191118 ], [ 145.778117, 15.1912 ], [ 145.778175, 15.191274 ], [ 145.778242, 15.19134 ], [ 145.778402, 15.19148 ], [ 145.77846, 15.191514 ], [ 145.778536, 15.19157 ], [ 145.778629, 15.191604 ], [ 145.778721, 15.191629 ], [ 145.778763, 15.191711 ], [ 145.778771, 15.191801 ], [ 145.778762, 15.191891 ], [ 145.778693, 15.192071 ], [ 145.778634, 15.192145 ], [ 145.778625, 15.192234 ], [ 145.778549, 15.192291 ], [ 145.778481, 15.192357 ], [ 145.778472, 15.192447 ], [ 145.778488, 15.192536 ], [ 145.778471, 15.192627 ], [ 145.778487, 15.192717 ], [ 145.778529, 15.192799 ], [ 145.778554, 15.192889 ], [ 145.778595, 15.192971 ], [ 145.778561, 15.193061 ], [ 145.778552, 15.193151 ], [ 145.77856, 15.193241 ], [ 145.778576, 15.193331 ], [ 145.778508, 15.193512 ], [ 145.778432, 15.193568 ], [ 145.778397, 15.193658 ], [ 145.778312, 15.193821 ], [ 145.778253, 15.193902 ], [ 145.778168, 15.193951 ], [ 145.777982, 15.193983 ], [ 145.77789, 15.194008 ], [ 145.777732, 15.194062 ], [ 145.777611, 15.194104 ], [ 145.777518, 15.194128 ], [ 145.77745, 15.194193 ], [ 145.777458, 15.194291 ], [ 145.7775, 15.194374 ], [ 145.777491, 15.194463 ], [ 145.777524, 15.194554 ], [ 145.777608, 15.194612 ], [ 145.777684, 15.19467 ], [ 145.777742, 15.194751 ], [ 145.777784, 15.194834 ], [ 145.777817, 15.194924 ], [ 145.777875, 15.194997 ], [ 145.7779, 15.195088 ], [ 145.777858, 15.19517 ], [ 145.777925, 15.195244 ], [ 145.778009, 15.195293 ], [ 145.777983, 15.195383 ], [ 145.777923, 15.195456 ], [ 145.777954, 15.195518 ], [ 145.777965, 15.195539 ], [ 145.778015, 15.195621 ], [ 145.778074, 15.195694 ], [ 145.778167, 15.195712 ], [ 145.778259, 15.195737 ], [ 145.778352, 15.19577 ], [ 145.778436, 15.19582 ], [ 145.778528, 15.195845 ], [ 145.778621, 15.195878 ], [ 145.778679, 15.195952 ], [ 145.778687, 15.196042 ], [ 145.778611, 15.196098 ], [ 145.778527, 15.19614 ], [ 145.778484, 15.196221 ], [ 145.778526, 15.196304 ], [ 145.77873, 15.196354 ], [ 145.778831, 15.196445 ], [ 145.778844, 15.196457 ], [ 145.77898, 15.196669 ], [ 145.779245, 15.196841 ], [ 145.779619, 15.196889 ], [ 145.779724, 15.196899 ], [ 145.779833, 15.196868 ], [ 145.779871, 15.196923 ], [ 145.779841, 15.197075 ], [ 145.780069, 15.197062 ], [ 145.780173, 15.197169 ], [ 145.780287, 15.197197 ], [ 145.780405, 15.197276 ], [ 145.780694, 15.197314 ], [ 145.780737, 15.197365 ], [ 145.780741, 15.19754 ], [ 145.780948, 15.197869 ], [ 145.781194, 15.197976 ], [ 145.781235, 15.198124 ], [ 145.781349, 15.198143 ], [ 145.781429, 15.198258 ], [ 145.781423, 15.198581 ], [ 145.781351, 15.198663 ], [ 145.781374, 15.198852 ], [ 145.781425, 15.198941 ], [ 145.781553, 15.19901 ], [ 145.781633, 15.199186 ], [ 145.781513, 15.199342 ], [ 145.781561, 15.199532 ], [ 145.781574, 15.199582 ], [ 145.781515, 15.199789 ], [ 145.781572, 15.199928 ], [ 145.781784, 15.200127 ], [ 145.781788, 15.200274 ], [ 145.781877, 15.200455 ], [ 145.781794, 15.200855 ], [ 145.781718, 15.200919 ], [ 145.781722, 15.201053 ], [ 145.78165, 15.201177 ], [ 145.781582, 15.201323 ], [ 145.781491, 15.20154 ], [ 145.781267, 15.201621 ], [ 145.781243, 15.2017 ], [ 145.781267, 15.201737 ], [ 145.781394, 15.201927 ], [ 145.781426, 15.202134 ], [ 145.781691, 15.202159 ], [ 145.781936, 15.20256 ], [ 145.782242, 15.202945 ], [ 145.782151, 15.203133 ], [ 145.782144, 15.203612 ], [ 145.782068, 15.203967 ], [ 145.782031, 15.204142 ], [ 145.781851, 15.204182 ], [ 145.781546, 15.204429 ], [ 145.781478, 15.204563 ], [ 145.78143, 15.204659 ], [ 145.781267, 15.204824 ], [ 145.781208, 15.204899 ], [ 145.78114, 15.204964 ], [ 145.781081, 15.205037 ], [ 145.781018, 15.205067 ], [ 145.780939, 15.205113 ], [ 145.780931, 15.205201 ], [ 145.780934, 15.205247 ], [ 145.780938, 15.205301 ], [ 145.780953, 15.205396 ], [ 145.780952, 15.205486 ], [ 145.780892, 15.20556 ], [ 145.780757, 15.205689 ], [ 145.780664, 15.205698 ], [ 145.78058, 15.205534 ], [ 145.780505, 15.205476 ], [ 145.78029, 15.205591 ], [ 145.780297, 15.205722 ], [ 145.780352, 15.205783 ], [ 145.7803, 15.205908 ], [ 145.78024, 15.205991 ], [ 145.780126, 15.206215 ], [ 145.780066, 15.206306 ], [ 145.780002, 15.206353 ], [ 145.779972, 15.20642 ], [ 145.779893, 15.206481 ], [ 145.779809, 15.206506 ], [ 145.779813, 15.206572 ], [ 145.779882, 15.206588 ], [ 145.779882, 15.20663 ], [ 145.779818, 15.206658 ], [ 145.779788, 15.206735 ], [ 145.779738, 15.206778 ], [ 145.779702, 15.206835 ], [ 145.779443, 15.207254 ], [ 145.779314, 15.207326 ], [ 145.779289, 15.207435 ], [ 145.779298, 15.207531 ], [ 145.779288, 15.2076 ], [ 145.779283, 15.207632 ], [ 145.779218, 15.207736 ], [ 145.779134, 15.207841 ], [ 145.779118, 15.207918 ], [ 145.779138, 15.208004 ], [ 145.779098, 15.20807 ], [ 145.779142, 15.208128 ], [ 145.779132, 15.208224 ], [ 145.779067, 15.208267 ], [ 145.779047, 15.208338 ], [ 145.778982, 15.208448 ], [ 145.778997, 15.208505 ], [ 145.779046, 15.208563 ], [ 145.778942, 15.208572 ], [ 145.778863, 15.208696 ], [ 145.778858, 15.208724 ], [ 145.778882, 15.208763 ], [ 145.778842, 15.208848 ], [ 145.778815, 15.208958 ], [ 145.778854, 15.209002 ], [ 145.778883, 15.209102 ], [ 145.778882, 15.209217 ], [ 145.778842, 15.209313 ], [ 145.778773, 15.209364 ], [ 145.778812, 15.209384 ], [ 145.778905, 15.209452 ], [ 145.778955, 15.209442 ], [ 145.778964, 15.209408 ], [ 145.779082, 15.209467 ], [ 145.779087, 15.20951 ], [ 145.778983, 15.209533 ], [ 145.778905, 15.209543 ], [ 145.77887, 15.209519 ], [ 145.778807, 15.209495 ], [ 145.778762, 15.209523 ], [ 145.778707, 15.209595 ], [ 145.778624, 15.209603 ], [ 145.778589, 15.209575 ], [ 145.7785, 15.209645 ], [ 145.778436, 15.20965 ], [ 145.778432, 15.209667 ], [ 145.778421, 15.209717 ], [ 145.778411, 15.209808 ], [ 145.778459, 15.209932 ], [ 145.778498, 15.209952 ], [ 145.778563, 15.209937 ], [ 145.778616, 15.209967 ], [ 145.778636, 15.21001 ], [ 145.778591, 15.210043 ], [ 145.778537, 15.210042 ], [ 145.778478, 15.210052 ], [ 145.778562, 15.21011 ], [ 145.778635, 15.210143 ], [ 145.77867, 15.210101 ], [ 145.778714, 15.210073 ], [ 145.778761, 15.210094 ], [ 145.778822, 15.210121 ], [ 145.778941, 15.21016 ], [ 145.779005, 15.210136 ], [ 145.779221, 15.210219 ], [ 145.779275, 15.210204 ], [ 145.779251, 15.210138 ], [ 145.77934, 15.210123 ], [ 145.779428, 15.210162 ], [ 145.779522, 15.210139 ], [ 145.779561, 15.210191 ], [ 145.779546, 15.210253 ], [ 145.77959, 15.210317 ], [ 145.779659, 15.210335 ], [ 145.779727, 15.210365 ], [ 145.779747, 15.210404 ], [ 145.779816, 15.210471 ], [ 145.77986, 15.210423 ], [ 145.779934, 15.210405 ], [ 145.779983, 15.210418 ], [ 145.779968, 15.210481 ], [ 145.779919, 15.21051 ], [ 145.779938, 15.210562 ], [ 145.780041, 15.21063 ], [ 145.780061, 15.210678 ], [ 145.780026, 15.210731 ], [ 145.780025, 15.210806 ], [ 145.780035, 15.210864 ], [ 145.77999, 15.210898 ], [ 145.78, 15.210945 ], [ 145.780029, 15.210979 ], [ 145.780113, 15.211042 ], [ 145.780201, 15.211037 ], [ 145.780237, 15.211058 ], [ 145.780312, 15.211116 ], [ 145.780405, 15.21115 ], [ 145.780506, 15.21115 ], [ 145.78059, 15.211191 ], [ 145.780683, 15.211217 ], [ 145.780775, 15.211208 ], [ 145.780868, 15.211233 ], [ 145.780935, 15.211299 ], [ 145.78102, 15.211297 ], [ 145.781112, 15.211366 ], [ 145.781147, 15.211456 ], [ 145.781195, 15.21153 ], [ 145.781178, 15.21162 ], [ 145.781186, 15.21171 ], [ 145.78121, 15.2118 ], [ 145.781206, 15.211919 ], [ 145.78126, 15.211981 ], [ 145.781293, 15.212071 ], [ 145.781293, 15.212177 ], [ 145.781351, 15.212252 ], [ 145.781393, 15.212341 ], [ 145.781409, 15.212432 ], [ 145.781391, 15.212612 ], [ 145.78139, 15.212808 ], [ 145.781415, 15.212898 ], [ 145.781394, 15.212988 ], [ 145.78149, 15.213063 ], [ 145.781583, 15.21308 ], [ 145.781684, 15.213081 ], [ 145.781869, 15.21313 ], [ 145.781962, 15.213164 ], [ 145.782006, 15.213235 ], [ 145.78197, 15.213316 ], [ 145.781952, 15.213409 ], [ 145.782052, 15.213573 ], [ 145.782128, 15.213631 ], [ 145.78222, 15.213664 ], [ 145.782304, 15.213715 ], [ 145.782337, 15.213804 ], [ 145.782413, 15.213862 ], [ 145.782497, 15.21392 ], [ 145.78253, 15.2141 ], [ 145.782455, 15.214163 ], [ 145.782495, 15.214279 ], [ 145.782569, 15.214257 ], [ 145.782666, 15.214284 ], [ 145.782621, 15.214421 ], [ 145.782652, 15.214511 ], [ 145.78265, 15.214538 ], [ 145.782642, 15.214563 ], [ 145.782549, 15.214677 ], [ 145.782484, 15.214739 ], [ 145.782416, 15.214832 ], [ 145.782344, 15.215088 ], [ 145.782238, 15.215144 ], [ 145.78214, 15.215172 ], [ 145.781924, 15.215163 ], [ 145.781867, 15.215145 ], [ 145.781841, 15.215195 ], [ 145.781836, 15.215206 ], [ 145.781826, 15.215333 ], [ 145.781768, 15.215414 ], [ 145.78172, 15.215428 ], [ 145.781601, 15.215414 ], [ 145.781516, 15.215451 ], [ 145.781486, 15.215439 ], [ 145.781393, 15.215412 ], [ 145.781322, 15.215438 ], [ 145.781261, 15.215476 ], [ 145.781181, 15.215571 ], [ 145.781145, 15.215635 ], [ 145.781149, 15.215707 ], [ 145.781241, 15.21572 ], [ 145.781378, 15.215764 ], [ 145.781435, 15.215821 ], [ 145.781412, 15.215948 ], [ 145.781403, 15.216038 ], [ 145.781433, 15.216111 ], [ 145.781477, 15.216172 ], [ 145.781561, 15.216173 ], [ 145.781623, 15.216092 ], [ 145.781685, 15.216049 ], [ 145.78176, 15.216028 ], [ 145.781844, 15.216032 ], [ 145.781928, 15.216029 ], [ 145.781972, 15.216054 ], [ 145.782016, 15.216063 ], [ 145.782096, 15.216055 ], [ 145.782184, 15.216038 ], [ 145.782215, 15.215966 ], [ 145.782246, 15.21591 ], [ 145.782392, 15.215886 ], [ 145.782458, 15.215898 ], [ 145.782538, 15.215925 ], [ 145.782599, 15.215951 ], [ 145.782634, 15.215994 ], [ 145.782546, 15.216054 ], [ 145.782554, 15.216105 ], [ 145.78262, 15.216114 ], [ 145.78266, 15.216079 ], [ 145.782705, 15.21599 ], [ 145.782771, 15.215974 ], [ 145.782846, 15.215939 ], [ 145.783019, 15.215829 ], [ 145.783072, 15.215829 ], [ 145.783134, 15.215778 ], [ 145.783187, 15.215706 ], [ 145.783271, 15.215659 ], [ 145.783356, 15.21559 ], [ 145.783488, 15.215574 ], [ 145.783575, 15.215588 ], [ 145.783668, 15.215612 ], [ 145.783769, 15.215613 ], [ 145.783861, 15.21563 ], [ 145.783911, 15.215712 ], [ 145.783928, 15.215802 ], [ 145.783953, 15.215893 ], [ 145.783945, 15.215975 ], [ 145.783944, 15.215987 ], [ 145.783944, 15.2161 ], [ 145.784044, 15.216156 ], [ 145.784136, 15.216197 ], [ 145.784212, 15.216255 ], [ 145.784271, 15.216329 ], [ 145.784262, 15.216419 ], [ 145.784355, 15.216395 ], [ 145.784422, 15.216329 ], [ 145.784507, 15.216289 ], [ 145.784608, 15.21629 ], [ 145.784701, 15.216273 ], [ 145.784794, 15.216291 ], [ 145.784759, 15.21638 ], [ 145.784708, 15.216462 ], [ 145.784716, 15.216551 ], [ 145.784641, 15.216586 ], [ 145.78464, 15.216672 ], [ 145.784736, 15.216696 ], [ 145.784725, 15.216768 ], [ 145.78485, 15.216798 ], [ 145.784925, 15.216856 ], [ 145.784941, 15.216955 ], [ 145.784891, 15.217036 ], [ 145.784831, 15.217117 ], [ 145.784729, 15.21728 ], [ 145.784669, 15.217354 ], [ 145.784635, 15.217443 ], [ 145.784584, 15.217624 ], [ 145.784481, 15.217787 ], [ 145.784414, 15.217852 ], [ 145.784338, 15.217908 ], [ 145.784253, 15.21795 ], [ 145.784194, 15.218023 ], [ 145.784126, 15.218088 ], [ 145.784117, 15.218177 ], [ 145.78404, 15.218235 ], [ 145.784065, 15.218325 ], [ 145.784124, 15.218399 ], [ 145.784199, 15.218457 ], [ 145.784259, 15.218384 ], [ 145.784344, 15.218342 ], [ 145.784546, 15.218344 ], [ 145.784621, 15.218409 ], [ 145.784663, 15.218492 ], [ 145.784734, 15.218509 ], [ 145.784798, 15.218438 ], [ 145.784911, 15.218404 ], [ 145.785, 15.218477 ], [ 145.785101, 15.218478 ], [ 145.785169, 15.218543 ], [ 145.785219, 15.218626 ], [ 145.785277, 15.2187 ], [ 145.78535, 15.218727 ], [ 145.785472, 15.218772 ], [ 145.785483, 15.218787 ], [ 145.785436, 15.218869 ], [ 145.785397, 15.218985 ], [ 145.785389, 15.219095 ], [ 145.785452, 15.219109 ], [ 145.785481, 15.219092 ], [ 145.785505, 15.219205 ], [ 145.785562, 15.219165 ], [ 145.785614, 15.219261 ], [ 145.785692, 15.219234 ], [ 145.785724, 15.219189 ], [ 145.785784, 15.219193 ], [ 145.785914, 15.219256 ], [ 145.785793, 15.219451 ], [ 145.785807, 15.219488 ], [ 145.785806, 15.219594 ], [ 145.785795, 15.219626 ], [ 145.785689, 15.219683 ], [ 145.785657, 15.219752 ], [ 145.785655, 15.219762 ], [ 145.785639, 15.219858 ], [ 145.785772, 15.220047 ], [ 145.785836, 15.220009 ], [ 145.78591, 15.219952 ], [ 145.785974, 15.219932 ], [ 145.786009, 15.219887 ], [ 145.786052, 15.219818 ], [ 145.786222, 15.219765 ], [ 145.786275, 15.219713 ], [ 145.786314, 15.219732 ], [ 145.786349, 15.219789 ], [ 145.786437, 15.219797 ], [ 145.786434, 15.219718 ], [ 145.786523, 15.219564 ], [ 145.786541, 15.219492 ], [ 145.786584, 15.219438 ], [ 145.786633, 15.219445 ], [ 145.786729, 15.219397 ], [ 145.786716, 15.219508 ], [ 145.786714, 15.219531 ], [ 145.786685, 15.219638 ], [ 145.786688, 15.219771 ], [ 145.786709, 15.219829 ], [ 145.786733, 15.219819 ], [ 145.786797, 15.219771 ], [ 145.786875, 15.219779 ], [ 145.786923, 15.219876 ], [ 145.786969, 15.219863 ], [ 145.787022, 15.219926 ], [ 145.787013, 15.219959 ], [ 145.787002, 15.21998 ], [ 145.787064, 15.220023 ], [ 145.787109, 15.219996 ], [ 145.787174, 15.219968 ], [ 145.78727, 15.220015 ], [ 145.787222, 15.220083 ], [ 145.787167, 15.22021 ], [ 145.787144, 15.220248 ], [ 145.787203, 15.220311 ], [ 145.787248, 15.220347 ], [ 145.787324, 15.220383 ], [ 145.787426, 15.220361 ], [ 145.78748, 15.220367 ], [ 145.78755, 15.220404 ], [ 145.787683, 15.22041 ], [ 145.787751, 15.220391 ], [ 145.787767, 15.220415 ], [ 145.787719, 15.220453 ], [ 145.787741, 15.220539 ], [ 145.787814, 15.220602 ], [ 145.787803, 15.220649 ], [ 145.787805, 15.220709 ], [ 145.787839, 15.220734 ], [ 145.787863, 15.220786 ], [ 145.787769, 15.220901 ], [ 145.787695, 15.22098 ], [ 145.787709, 15.221035 ], [ 145.787678, 15.221065 ], [ 145.787629, 15.221127 ], [ 145.787711, 15.221145 ], [ 145.787802, 15.22112 ], [ 145.787985, 15.221113 ], [ 145.788022, 15.221062 ], [ 145.788248, 15.221128 ], [ 145.788309, 15.221252 ], [ 145.788442, 15.22128 ], [ 145.788532, 15.221404 ], [ 145.7885, 15.221439 ], [ 145.788675, 15.221586 ], [ 145.788711, 15.221544 ], [ 145.788756, 15.221589 ], [ 145.788736, 15.221633 ], [ 145.788747, 15.221677 ], [ 145.788923, 15.221864 ], [ 145.788996, 15.221865 ], [ 145.789045, 15.221805 ], [ 145.78918, 15.221887 ], [ 145.789191, 15.221948 ], [ 145.789125, 15.222016 ], [ 145.789093, 15.222165 ], [ 145.789113, 15.222207 ], [ 145.789152, 15.222285 ], [ 145.789163, 15.222378 ], [ 145.789275, 15.222425 ], [ 145.789332, 15.222481 ], [ 145.789459, 15.222473 ], [ 145.789476, 15.222501 ], [ 145.789489, 15.222605 ], [ 145.789551, 15.222636 ], [ 145.78963, 15.222631 ], [ 145.7897, 15.222757 ], [ 145.789675, 15.222781 ], [ 145.789754, 15.222799 ], [ 145.789838, 15.222828 ], [ 145.789787, 15.222876 ], [ 145.789773, 15.223268 ], [ 145.789722, 15.223339 ], [ 145.789764, 15.223369 ], [ 145.789733, 15.223398 ], [ 145.789721, 15.223431 ], [ 145.789771, 15.223418 ], [ 145.789807, 15.22341 ], [ 145.789863, 15.223405 ], [ 145.789899, 15.223356 ], [ 145.789951, 15.223361 ], [ 145.790067, 15.223362 ], [ 145.790065, 15.223431 ], [ 145.790105, 15.223541 ], [ 145.790173, 15.223575 ], [ 145.790123, 15.223598 ], [ 145.790118, 15.223714 ], [ 145.790221, 15.223804 ], [ 145.79022, 15.223824 ], [ 145.790173, 15.223873 ], [ 145.790156, 15.223891 ], [ 145.790161, 15.223939 ], [ 145.790195, 15.223996 ], [ 145.790229, 15.224025 ], [ 145.790254, 15.224078 ], [ 145.790268, 15.22414 ], [ 145.790243, 15.224188 ], [ 145.790193, 15.224235 ], [ 145.790193, 15.224283 ], [ 145.790237, 15.224374 ], [ 145.790202, 15.224417 ], [ 145.790217, 15.224475 ], [ 145.790211, 15.224541 ], [ 145.790275, 15.22458 ], [ 145.790354, 15.224604 ], [ 145.790393, 15.224638 ], [ 145.790423, 15.224654 ], [ 145.790425, 15.224672 ], [ 145.790464, 15.224767 ], [ 145.790394, 15.224863 ], [ 145.790379, 15.224921 ], [ 145.790468, 15.224964 ], [ 145.790515, 15.22505 ], [ 145.790492, 15.225203 ], [ 145.790513, 15.225333 ], [ 145.790311, 15.225418 ], [ 145.790288, 15.225571 ], [ 145.790287, 15.22568 ], [ 145.790331, 15.225708 ], [ 145.790421, 15.225768 ], [ 145.790623, 15.225769 ], [ 145.790892, 15.225727 ], [ 145.791084, 15.225728 ], [ 145.791161, 15.225728 ], [ 145.791362, 15.225903 ], [ 145.791451, 15.226056 ], [ 145.791607, 15.226079 ], [ 145.791808, 15.226162 ], [ 145.791699, 15.226382 ], [ 145.791756, 15.226644 ], [ 145.791874, 15.226698 ], [ 145.791958, 15.226608 ], [ 145.792042, 15.22656 ], [ 145.792097, 15.226669 ], [ 145.792233, 15.226777 ], [ 145.792247, 15.226968 ], [ 145.792405, 15.226873 ], [ 145.792494, 15.226903 ], [ 145.792444, 15.226988 ], [ 145.792507, 15.22709 ], [ 145.792512, 15.22719 ], [ 145.792615, 15.227255 ], [ 145.792657, 15.227336 ], [ 145.792619, 15.227434 ], [ 145.792608, 15.227529 ], [ 145.792689, 15.227615 ], [ 145.792696, 15.227702 ], [ 145.792617, 15.227797 ], [ 145.79268, 15.227917 ], [ 145.792802, 15.228067 ], [ 145.792994, 15.228124 ], [ 145.792974, 15.228235 ], [ 145.79289, 15.228273 ], [ 145.792916, 15.228298 ], [ 145.792949, 15.22833 ], [ 145.793186, 15.228245 ], [ 145.79326, 15.228121 ], [ 145.793294, 15.227937 ], [ 145.793311, 15.227868 ], [ 145.793316, 15.227801 ], [ 145.793302, 15.227729 ], [ 145.79344, 15.22763 ], [ 145.793515, 15.227525 ], [ 145.793703, 15.227449 ], [ 145.79376, 15.227548 ], [ 145.793827, 15.227614 ], [ 145.793911, 15.227671 ], [ 145.793988, 15.227614 ], [ 145.794056, 15.22754 ], [ 145.794149, 15.2275 ], [ 145.794241, 15.227533 ], [ 145.794325, 15.227584 ], [ 145.794401, 15.227649 ], [ 145.794485, 15.227691 ], [ 145.79456, 15.227749 ], [ 145.794644, 15.227798 ], [ 145.794729, 15.227839 ], [ 145.79483, 15.227847 ], [ 145.794905, 15.227772 ], [ 145.794969, 15.227762 ], [ 145.795012, 15.227944 ], [ 145.795158, 15.227956 ], [ 145.795251, 15.227948 ], [ 145.795299, 15.227912 ], [ 145.795387, 15.227856 ], [ 145.795594, 15.227876 ], [ 145.795618, 15.227948 ], [ 145.795723, 15.228016 ], [ 145.795806, 15.228205 ], [ 145.795856, 15.228222 ], [ 145.795949, 15.228246 ], [ 145.796042, 15.228231 ], [ 145.796134, 15.228224 ], [ 145.796219, 15.228265 ], [ 145.796286, 15.228339 ], [ 145.796378, 15.228347 ], [ 145.796463, 15.228388 ], [ 145.796529, 15.228463 ], [ 145.796605, 15.22852 ], [ 145.796698, 15.22853 ], [ 145.7969, 15.228498 ], [ 145.797002, 15.228498 ], [ 145.797094, 15.228515 ], [ 145.797279, 15.228581 ], [ 145.797372, 15.228607 ], [ 145.797473, 15.228607 ], [ 145.797566, 15.228623 ], [ 145.797658, 15.228657 ], [ 145.797751, 15.228707 ], [ 145.797849, 15.228624 ], [ 145.797987, 15.228639 ], [ 145.797967, 15.228697 ], [ 145.798045, 15.228702 ], [ 145.798109, 15.228721 ], [ 145.798214, 15.228717 ], [ 145.798367, 15.228604 ], [ 145.798468, 15.228605 ], [ 145.798501, 15.228694 ], [ 145.798569, 15.22876 ], [ 145.798661, 15.228785 ], [ 145.798703, 15.228868 ], [ 145.798674, 15.228959 ], [ 145.798735, 15.229048 ], [ 145.798769, 15.229138 ], [ 145.798819, 15.22922 ], [ 145.798894, 15.229278 ], [ 145.798961, 15.229344 ], [ 145.799003, 15.229425 ], [ 145.79911, 15.229406 ], [ 145.799189, 15.229373 ], [ 145.799317, 15.229546 ], [ 145.799208, 15.22965 ], [ 145.79928, 15.229714 ], [ 145.799448, 15.229796 ], [ 145.799442, 15.229992 ], [ 145.799516, 15.230001 ], [ 145.799531, 15.230067 ], [ 145.799598, 15.230133 ], [ 145.799648, 15.230215 ], [ 145.799673, 15.230306 ], [ 145.799858, 15.230405 ], [ 145.799841, 15.230454 ], [ 145.799764, 15.230533 ], [ 145.799764, 15.230643 ], [ 145.799793, 15.230735 ], [ 145.799906, 15.230782 ], [ 145.79999, 15.230831 ], [ 145.800066, 15.230889 ], [ 145.800105, 15.230903 ], [ 145.800158, 15.230922 ], [ 145.800234, 15.23098 ], [ 145.800318, 15.231029 ], [ 145.800343, 15.23112 ], [ 145.800342, 15.231218 ], [ 145.800375, 15.231407 ], [ 145.800417, 15.231488 ], [ 145.800467, 15.231571 ], [ 145.800508, 15.231653 ], [ 145.800567, 15.231726 ], [ 145.8006, 15.231817 ], [ 145.800642, 15.231899 ], [ 145.80065, 15.231997 ], [ 145.800694, 15.232089 ], [ 145.800792, 15.232146 ], [ 145.800885, 15.232179 ], [ 145.800969, 15.23222 ], [ 145.801045, 15.232278 ], [ 145.801086, 15.23236 ], [ 145.801145, 15.232433 ], [ 145.801187, 15.232524 ], [ 145.801203, 15.232615 ], [ 145.801253, 15.232696 ], [ 145.801337, 15.232737 ], [ 145.801421, 15.232787 ], [ 145.801497, 15.232845 ], [ 145.801555, 15.232919 ], [ 145.801648, 15.232953 ], [ 145.801741, 15.232969 ], [ 145.801858, 15.233117 ], [ 145.801934, 15.233175 ], [ 145.801958, 15.233265 ], [ 145.802017, 15.233339 ], [ 145.80211, 15.233315 ], [ 145.802193, 15.23352 ], [ 145.802185, 15.233607 ], [ 145.802195, 15.233723 ], [ 145.802276, 15.233783 ], [ 145.802309, 15.233872 ], [ 145.802351, 15.233955 ], [ 145.802443, 15.233996 ], [ 145.80251, 15.234062 ], [ 145.802577, 15.234243 ], [ 145.802571, 15.234303 ], [ 145.802714, 15.234304 ], [ 145.802728, 15.234357 ], [ 145.802609, 15.234431 ], [ 145.802617, 15.234521 ], [ 145.802617, 15.23462 ], [ 145.802583, 15.234782 ], [ 145.802641, 15.234809 ], [ 145.802657, 15.234898 ], [ 145.80255, 15.234969 ], [ 145.802505, 15.23505 ], [ 145.802521, 15.235127 ], [ 145.802479, 15.235209 ], [ 145.802449, 15.235322 ], [ 145.802464, 15.235403 ], [ 145.80248, 15.23545 ], [ 145.802493, 15.235489 ], [ 145.802502, 15.235667 ], [ 145.802491, 15.235772 ], [ 145.802412, 15.235767 ], [ 145.802341, 15.235609 ], [ 145.802299, 15.23569 ], [ 145.80229, 15.235781 ], [ 145.802107, 15.23575 ], [ 145.802112, 15.23582 ], [ 145.801968, 15.235878 ], [ 145.801933, 15.236003 ], [ 145.801961, 15.236219 ], [ 145.802069, 15.236271 ], [ 145.802229, 15.236124 ], [ 145.802346, 15.236125 ], [ 145.80238, 15.236223 ], [ 145.802469, 15.236173 ], [ 145.802528, 15.236173 ], [ 145.80277, 15.236131 ], [ 145.80273, 15.236203 ], [ 145.802695, 15.236332 ], [ 145.802674, 15.236443 ], [ 145.802832, 15.236457 ], [ 145.802978, 15.23644 ], [ 145.803062, 15.236481 ], [ 145.803154, 15.236464 ], [ 145.803247, 15.23649 ], [ 145.803332, 15.23645 ], [ 145.803408, 15.236392 ], [ 145.803501, 15.23641 ], [ 145.803568, 15.236476 ], [ 145.803511, 15.236576 ], [ 145.80354, 15.236657 ], [ 145.803534, 15.236805 ], [ 145.803519, 15.237026 ], [ 145.803726, 15.237022 ], [ 145.803911, 15.23696 ], [ 145.803995, 15.23692 ], [ 145.804088, 15.236863 ], [ 145.804173, 15.236822 ], [ 145.804266, 15.236806 ], [ 145.804359, 15.236774 ], [ 145.804443, 15.236726 ], [ 145.804528, 15.236685 ], [ 145.804714, 15.236637 ], [ 145.804806, 15.236621 ], [ 145.804899, 15.236589 ], [ 145.804992, 15.236597 ], [ 145.805093, 15.236598 ], [ 145.80516, 15.236664 ], [ 145.805168, 15.236754 ], [ 145.80521, 15.236853 ], [ 145.805303, 15.236844 ], [ 145.805379, 15.236788 ], [ 145.805472, 15.236772 ], [ 145.805573, 15.236772 ], [ 145.805666, 15.23679 ], [ 145.805794, 15.236741 ], [ 145.805848, 15.236834 ], [ 145.805851, 15.236839 ], [ 145.805935, 15.236889 ], [ 145.806028, 15.236906 ], [ 145.80612, 15.236881 ], [ 145.806213, 15.236866 ], [ 145.806315, 15.236867 ], [ 145.80639, 15.236925 ], [ 145.806449, 15.236998 ], [ 145.806516, 15.237064 ], [ 145.806624, 15.23709 ], [ 145.806577, 15.237175 ], [ 145.806667, 15.237253 ], [ 145.806692, 15.237353 ], [ 145.806756, 15.237401 ], [ 145.80686, 15.237394 ], [ 145.806944, 15.237451 ], [ 145.807036, 15.237476 ], [ 145.807086, 15.237559 ], [ 145.807086, 15.237656 ], [ 145.807178, 15.237689 ], [ 145.807237, 15.237764 ], [ 145.807253, 15.237944 ], [ 145.807295, 15.238027 ], [ 145.807387, 15.23806 ], [ 145.807477, 15.238003 ], [ 145.807682, 15.238069 ], [ 145.807775, 15.238095 ], [ 145.807774, 15.238192 ], [ 145.807859, 15.238234 ], [ 145.807844, 15.238349 ], [ 145.807987, 15.238374 ], [ 145.808068, 15.238432 ], [ 145.808051, 15.238521 ], [ 145.808059, 15.238611 ], [ 145.808143, 15.238662 ], [ 145.808175, 15.23871 ], [ 145.808252, 15.238776 ], [ 145.808243, 15.238868 ], [ 145.808252, 15.238945 ], [ 145.808343, 15.239039 ], [ 145.808351, 15.239129 ], [ 145.808342, 15.239218 ], [ 145.808511, 15.23931 ], [ 145.808461, 15.239453 ], [ 145.808653, 15.239474 ], [ 145.808728, 15.239508 ], [ 145.808804, 15.239566 ], [ 145.808871, 15.239631 ], [ 145.808896, 15.239721 ], [ 145.808938, 15.239804 ], [ 145.809013, 15.23986 ], [ 145.80908, 15.239935 ], [ 145.809164, 15.239977 ], [ 145.809248, 15.240026 ], [ 145.809307, 15.2401 ], [ 145.809366, 15.240026 ], [ 145.80945, 15.240068 ], [ 145.809425, 15.240158 ], [ 145.80939, 15.240248 ], [ 145.809483, 15.240256 ], [ 145.809559, 15.240314 ], [ 145.809592, 15.240405 ], [ 145.809642, 15.240486 ], [ 145.809718, 15.240544 ], [ 145.80976, 15.240626 ], [ 145.809818, 15.240701 ], [ 145.809851, 15.24079 ], [ 145.809859, 15.240881 ], [ 145.809892, 15.240971 ], [ 145.809909, 15.241061 ], [ 145.809959, 15.241143 ], [ 145.810051, 15.241185 ], [ 145.810057, 15.241274 ], [ 145.810202, 15.241415 ], [ 145.810253, 15.2415 ], [ 145.810353, 15.24153 ], [ 145.810378, 15.24162 ], [ 145.810257, 15.241677 ], [ 145.810212, 15.241744 ], [ 145.810147, 15.241868 ], [ 145.810112, 15.241997 ], [ 145.810114, 15.24211 ], [ 145.809993, 15.242159 ], [ 145.809933, 15.242249 ], [ 145.809952, 15.242355 ], [ 145.809844, 15.242397 ], [ 145.80985, 15.24251 ], [ 145.809823, 15.242551 ], [ 145.809799, 15.242591 ], [ 145.809756, 15.242673 ], [ 145.809527, 15.242917 ], [ 145.809468, 15.24299 ], [ 145.809375, 15.243015 ], [ 145.809307, 15.24308 ], [ 145.809214, 15.243087 ], [ 145.80913, 15.243046 ], [ 145.809037, 15.243063 ], [ 145.808953, 15.243119 ], [ 145.80886, 15.243135 ], [ 145.808597, 15.243219 ], [ 145.808514, 15.243174 ], [ 145.808438, 15.243108 ], [ 145.808345, 15.243116 ], [ 145.808252, 15.243148 ], [ 145.808139, 15.243249 ], [ 145.808031, 15.243163 ], [ 145.807937, 15.243248 ], [ 145.80806, 15.243311 ], [ 145.808074, 15.243416 ], [ 145.807917, 15.243401 ], [ 145.807867, 15.243453 ], [ 145.807846, 15.243539 ], [ 145.80771, 15.243669 ], [ 145.80765, 15.243742 ], [ 145.807565, 15.243906 ], [ 145.807539, 15.243996 ], [ 145.807488, 15.244077 ], [ 145.807471, 15.244258 ], [ 145.807389, 15.244341 ], [ 145.807413, 15.244427 ], [ 145.807422, 15.244537 ], [ 145.807442, 15.244623 ], [ 145.807436, 15.244719 ], [ 145.807441, 15.24481 ], [ 145.80747, 15.244915 ], [ 145.807509, 15.244968 ], [ 145.807609, 15.245078 ], [ 145.807541, 15.245142 ], [ 145.807532, 15.245232 ], [ 145.807549, 15.245323 ], [ 145.807616, 15.245389 ], [ 145.807663, 15.245504 ], [ 145.807767, 15.245547 ], [ 145.80786, 15.245537 ], [ 145.808045, 15.245587 ], [ 145.808284, 15.245475 ], [ 145.808293, 15.245637 ], [ 145.808368, 15.245484 ], [ 145.808462, 15.245465 ], [ 145.808412, 15.245638 ], [ 145.808485, 15.245776 ], [ 145.808366, 15.245805 ], [ 145.808356, 15.245891 ], [ 145.808365, 15.245957 ], [ 145.808443, 15.246073 ], [ 145.80864, 15.246163 ], [ 145.808619, 15.246361 ], [ 145.808628, 15.246528 ], [ 145.808534, 15.246585 ], [ 145.808637, 15.246648 ], [ 145.80848, 15.246676 ], [ 145.808474, 15.246718 ], [ 145.808558, 15.246753 ], [ 145.808602, 15.246863 ], [ 145.808685, 15.246959 ], [ 145.808689, 15.24706 ], [ 145.808532, 15.247068 ], [ 145.808566, 15.247126 ], [ 145.808693, 15.247203 ], [ 145.808634, 15.247285 ], [ 145.808555, 15.247365 ], [ 145.808514, 15.247479 ], [ 145.808548, 15.24753 ], [ 145.808434, 15.247685 ], [ 145.808434, 15.247748 ], [ 145.808522, 15.2478 ], [ 145.808458, 15.247857 ], [ 145.808488, 15.247891 ], [ 145.808448, 15.247943 ], [ 145.808592, 15.248126 ], [ 145.808518, 15.248188 ], [ 145.808626, 15.24826 ], [ 145.808467, 15.24847 ], [ 145.808546, 15.248498 ], [ 145.808644, 15.24861 ], [ 145.808565, 15.248561 ], [ 145.808525, 15.248618 ], [ 145.808727, 15.24871 ], [ 145.808672, 15.248801 ], [ 145.808819, 15.248892 ], [ 145.808828, 15.249036 ], [ 145.808848, 15.249103 ], [ 145.808935, 15.249194 ], [ 145.808931, 15.249216 ], [ 145.808822, 15.24922 ], [ 145.808798, 15.249268 ], [ 145.808802, 15.24935 ], [ 145.808856, 15.249374 ], [ 145.808945, 15.249374 ], [ 145.808959, 15.249407 ], [ 145.809008, 15.249436 ], [ 145.809058, 15.249441 ], [ 145.809072, 15.249484 ], [ 145.808998, 15.249508 ], [ 145.809072, 15.249595 ], [ 145.809091, 15.249652 ], [ 145.80913, 15.249686 ], [ 145.80914, 15.249724 ], [ 145.80914, 15.249767 ], [ 145.809159, 15.249819 ], [ 145.809095, 15.249857 ], [ 145.809124, 15.249906 ], [ 145.809193, 15.24992 ], [ 145.809247, 15.249978 ], [ 145.809296, 15.250012 ], [ 145.809366, 15.250025 ], [ 145.809404, 15.250079 ], [ 145.809305, 15.250113 ], [ 145.809329, 15.250203 ], [ 145.809428, 15.250204 ], [ 145.809453, 15.250122 ], [ 145.809527, 15.250118 ], [ 145.80963, 15.250074 ], [ 145.809653, 15.250124 ], [ 145.809701, 15.250186 ], [ 145.809663, 15.250238 ], [ 145.809587, 15.250295 ], [ 145.809671, 15.250291 ], [ 145.809745, 15.250334 ], [ 145.809671, 15.250396 ], [ 145.809857, 15.25057 ], [ 145.809956, 15.250532 ], [ 145.810044, 15.250575 ], [ 145.810058, 15.250695 ], [ 145.810142, 15.250657 ], [ 145.810161, 15.250792 ], [ 145.810284, 15.250825 ], [ 145.810385, 15.250774 ], [ 145.810437, 15.250817 ], [ 145.810469, 15.250914 ], [ 145.810569, 15.250989 ], [ 145.810569, 15.251052 ], [ 145.810711, 15.251125 ], [ 145.810771, 15.251186 ], [ 145.81083, 15.25126 ], [ 145.810922, 15.251293 ], [ 145.81102, 15.251394 ], [ 145.811089, 15.251457 ], [ 145.811134, 15.251332 ], [ 145.811193, 15.251271 ], [ 145.811262, 15.251299 ], [ 145.811271, 15.251419 ], [ 145.811197, 15.251476 ], [ 145.811258, 15.25159 ], [ 145.81124, 15.251691 ], [ 145.811299, 15.251783 ], [ 145.811439, 15.25187 ], [ 145.811472, 15.25199 ], [ 145.811571, 15.252018 ], [ 145.811639, 15.252096 ], [ 145.811658, 15.252291 ], [ 145.811781, 15.25236 ], [ 145.811855, 15.252206 ], [ 145.811964, 15.252043 ], [ 145.81204, 15.251987 ], [ 145.812125, 15.251938 ], [ 145.812217, 15.251971 ], [ 145.812073, 15.252079 ], [ 145.812082, 15.252218 ], [ 145.812087, 15.252241 ], [ 145.812185, 15.252232 ], [ 145.81221, 15.252281 ], [ 145.812122, 15.252306 ], [ 145.811968, 15.252365 ], [ 145.812037, 15.252432 ], [ 145.812181, 15.252487 ], [ 145.812087, 15.252527 ], [ 145.811984, 15.252605 ], [ 145.812011, 15.252691 ], [ 145.811968, 15.252772 ], [ 145.811852, 15.252823 ], [ 145.811838, 15.252887 ], [ 145.811832, 15.252915 ], [ 145.811798, 15.252985 ], [ 145.811714, 15.252942 ], [ 145.811621, 15.252951 ], [ 145.811545, 15.253007 ], [ 145.811553, 15.253097 ], [ 145.81162, 15.253171 ], [ 145.811662, 15.253254 ], [ 145.81146, 15.25341 ], [ 145.81138, 15.253557 ], [ 145.811364, 15.253658 ], [ 145.811372, 15.253735 ], [ 145.811321, 15.253817 ], [ 145.811274, 15.253882 ], [ 145.811205, 15.253935 ], [ 145.81115, 15.254073 ], [ 145.811142, 15.254192 ], [ 145.811083, 15.254265 ], [ 145.810971, 15.254316 ], [ 145.810882, 15.254402 ], [ 145.810828, 15.254501 ], [ 145.810832, 15.254617 ], [ 145.810861, 15.254689 ], [ 145.810911, 15.254756 ], [ 145.81087, 15.254823 ], [ 145.810816, 15.254865 ], [ 145.81079, 15.25498 ], [ 145.810622, 15.255161 ], [ 145.810552, 15.255294 ], [ 145.8105, 15.255405 ], [ 145.810509, 15.255538 ], [ 145.810562, 15.255716 ], [ 145.810489, 15.255959 ], [ 145.810814, 15.256066 ], [ 145.810813, 15.256195 ], [ 145.810763, 15.256348 ], [ 145.810625, 15.256309 ], [ 145.810629, 15.256491 ], [ 145.810831, 15.256525 ], [ 145.810963, 15.256684 ], [ 145.811154, 15.256953 ], [ 145.810884, 15.256769 ], [ 145.810814, 15.256865 ], [ 145.810847, 15.257204 ], [ 145.810749, 15.257156 ], [ 145.810497, 15.257183 ], [ 145.810535, 15.257216 ], [ 145.810585, 15.25726 ], [ 145.810604, 15.257385 ], [ 145.810496, 15.257522 ], [ 145.810426, 15.257613 ], [ 145.81043, 15.257772 ], [ 145.810527, 15.25804 ], [ 145.81069, 15.258238 ], [ 145.810924, 15.258389 ], [ 145.810931, 15.258394 ], [ 145.811147, 15.258564 ], [ 145.811226, 15.258614 ], [ 145.811393, 15.258718 ], [ 145.811707, 15.258807 ], [ 145.812032, 15.258796 ], [ 145.812313, 15.258868 ], [ 145.812557, 15.259006 ], [ 145.812641, 15.259063 ], [ 145.812708, 15.259129 ], [ 145.812764, 15.259248 ], [ 145.812774, 15.259292 ], [ 145.812813, 15.259364 ], [ 145.81293, 15.259474 ], [ 145.81297, 15.259499 ], [ 145.813043, 15.259537 ], [ 145.813097, 15.259599 ], [ 145.81317, 15.259715 ], [ 145.813241, 15.259844 ], [ 145.813256, 15.259902 ], [ 145.81329, 15.25995 ], [ 145.813265, 15.259974 ], [ 145.813314, 15.260007 ], [ 145.813432, 15.260113 ], [ 145.813505, 15.2602 ], [ 145.813579, 15.260272 ], [ 145.813677, 15.260349 ], [ 145.81379, 15.260416 ], [ 145.813986, 15.260509 ], [ 145.814305, 15.260691 ], [ 145.814478, 15.260774 ], [ 145.814645, 15.260862 ], [ 145.814718, 15.260918 ], [ 145.814797, 15.260957 ], [ 145.814841, 15.260991 ], [ 145.814944, 15.26103 ], [ 145.815008, 15.261044 ], [ 145.815062, 15.261069 ], [ 145.815151, 15.261103 ], [ 145.815282, 15.26113 ], [ 145.815354, 15.261158 ], [ 145.815446, 15.261183 ], [ 145.815539, 15.261192 ], [ 145.815632, 15.261217 ], [ 145.815724, 15.261233 ], [ 145.815817, 15.261242 ], [ 145.815918, 15.261242 ], [ 145.81603, 15.261199 ], [ 145.816133, 15.261189 ], [ 145.816291, 15.261132 ], [ 145.816357, 15.261098 ], [ 145.816434, 15.261041 ], [ 145.816518, 15.261 ], [ 145.816595, 15.260943 ], [ 145.816643, 15.2608 ], [ 145.816841, 15.260648 ], [ 145.816934, 15.260609 ], [ 145.817054, 15.260463 ], [ 145.817069, 15.260429 ], [ 145.817108, 15.260415 ], [ 145.81723, 15.260381 ], [ 145.817383, 15.260268 ], [ 145.817585, 15.260196 ], [ 145.817664, 15.260122 ], [ 145.81766, 15.260059 ], [ 145.817665, 15.259978 ], [ 145.817808, 15.259921 ], [ 145.817887, 15.259931 ], [ 145.817961, 15.259903 ], [ 145.818045, 15.259841 ], [ 145.818129, 15.259803 ], [ 145.818233, 15.259746 ], [ 145.818243, 15.25967 ], [ 145.818386, 15.259656 ], [ 145.818491, 15.259734 ], [ 145.818583, 15.259725 ], [ 145.81866, 15.259669 ], [ 145.818755, 15.259687 ], [ 145.818844, 15.259711 ], [ 145.818923, 15.259764 ], [ 145.81903, 15.259728 ], [ 145.819123, 15.259712 ], [ 145.819225, 15.25968 ], [ 145.819326, 15.259681 ], [ 145.819418, 15.259706 ], [ 145.819511, 15.259722 ], [ 145.819604, 15.259756 ], [ 145.819696, 15.259764 ], [ 145.819767, 15.259803 ], [ 145.819885, 15.259851 ], [ 145.820083, 15.259847 ], [ 145.820231, 15.259743 ], [ 145.820102, 15.259644 ], [ 145.820136, 15.259554 ], [ 145.820229, 15.259522 ], [ 145.820322, 15.259514 ], [ 145.820423, 15.259515 ], [ 145.820887, 15.259558 ], [ 145.820979, 15.259583 ], [ 145.820926, 15.259665 ], [ 145.82108, 15.25969 ], [ 145.821098, 15.259737 ], [ 145.821162, 15.259815 ], [ 145.821265, 15.259878 ], [ 145.82132, 15.259796 ], [ 145.821335, 15.259706 ], [ 145.821335, 15.25961 ], [ 145.821375, 15.259538 ], [ 145.821356, 15.259433 ], [ 145.82146, 15.2594 ], [ 145.821608, 15.259333 ], [ 145.821689, 15.259308 ], [ 145.821776, 15.25931 ], [ 145.821884, 15.259284 ], [ 145.821976, 15.259277 ], [ 145.822061, 15.259236 ], [ 145.82212, 15.259163 ], [ 145.822195, 15.259145 ], [ 145.822254, 15.259184 ], [ 145.822308, 15.259266 ], [ 145.822446, 15.259262 ], [ 145.822525, 15.259246 ], [ 145.822567, 15.259239 ], [ 145.822659, 15.259272 ], [ 145.822752, 15.259288 ], [ 145.822845, 15.259281 ], [ 145.822938, 15.259257 ], [ 145.823031, 15.259226 ], [ 145.823124, 15.259201 ], [ 145.823212, 15.259247 ], [ 145.823276, 15.259266 ], [ 145.823355, 15.259233 ], [ 145.823459, 15.259223 ], [ 145.823552, 15.259249 ], [ 145.82369, 15.25923 ], [ 145.823807, 15.259164 ], [ 145.8239, 15.25914 ], [ 145.823993, 15.259107 ], [ 145.824247, 15.258986 ], [ 145.824542, 15.258962 ], [ 145.824601, 15.259037 ], [ 145.824567, 15.259126 ], [ 145.824348, 15.259238 ], [ 145.824422, 15.259296 ], [ 145.824566, 15.259257 ], [ 145.824659, 15.259266 ], [ 145.82476, 15.259266 ], [ 145.824852, 15.259259 ], [ 145.824945, 15.259236 ], [ 145.825038, 15.259244 ], [ 145.825141, 15.259281 ], [ 145.825215, 15.259329 ], [ 145.825425, 15.259335 ], [ 145.82556, 15.259361 ], [ 145.825633, 15.25945 ], [ 145.825731, 15.259451 ], [ 145.825838, 15.259403 ], [ 145.825931, 15.259428 ], [ 145.826015, 15.259469 ], [ 145.826076, 15.259506 ], [ 145.826031, 15.259634 ], [ 145.826259, 15.259594 ], [ 145.826352, 15.259586 ], [ 145.826435, 15.259584 ], [ 145.826538, 15.259538 ], [ 145.826655, 15.259432 ], [ 145.826723, 15.259566 ], [ 145.826797, 15.259686 ], [ 145.82687, 15.259791 ], [ 145.826823, 15.259892 ], [ 145.826881, 15.259973 ], [ 145.826998, 15.260122 ], [ 145.827065, 15.260188 ], [ 145.827124, 15.260262 ], [ 145.827113, 15.260343 ], [ 145.827157, 15.260472 ], [ 145.827275, 15.2605 ], [ 145.8274, 15.260656 ], [ 145.827493, 15.260682 ], [ 145.827594, 15.260682 ], [ 145.827594, 15.260819 ], [ 145.827647, 15.260943 ], [ 145.827701, 15.260987 ], [ 145.827794, 15.261049 ], [ 145.827823, 15.261165 ], [ 145.827967, 15.261204 ], [ 145.827975, 15.261333 ], [ 145.827916, 15.261275 ], [ 145.827852, 15.261261 ], [ 145.827805, 15.261375 ], [ 145.827923, 15.261448 ], [ 145.828045, 15.26147 ], [ 145.828104, 15.261544 ], [ 145.828164, 15.261516 ], [ 145.828203, 15.261612 ], [ 145.828231, 15.261741 ], [ 145.828364, 15.261808 ], [ 145.828275, 15.261932 ], [ 145.828422, 15.261986 ], [ 145.828368, 15.262082 ], [ 145.828481, 15.262087 ], [ 145.828495, 15.26223 ], [ 145.828623, 15.262236 ], [ 145.828538, 15.26237 ], [ 145.828602, 15.262407 ], [ 145.828755, 15.262427 ], [ 145.828631, 15.262604 ], [ 145.828497, 15.262685 ], [ 145.828536, 15.262794 ], [ 145.828645, 15.262781 ], [ 145.828713, 15.262853 ], [ 145.828654, 15.262968 ], [ 145.828788, 15.262931 ], [ 145.828745, 15.263014 ], [ 145.828658, 15.263111 ], [ 145.828845, 15.263169 ], [ 145.828938, 15.263194 ], [ 145.828977, 15.263233 ], [ 145.828987, 15.263295 ], [ 145.829021, 15.263362 ], [ 145.82905, 15.263477 ], [ 145.829084, 15.263583 ], [ 145.829053, 15.263686 ], [ 145.829103, 15.263768 ], [ 145.829191, 15.263817 ], [ 145.82922, 15.263918 ], [ 145.829195, 15.264031 ], [ 145.829253, 15.264104 ], [ 145.829287, 15.264195 ], [ 145.829395, 15.264225 ], [ 145.829409, 15.264349 ], [ 145.829429, 15.26444 ], [ 145.829379, 15.264589 ], [ 145.829385, 15.264646 ], [ 145.829419, 15.264736 ], [ 145.829435, 15.264826 ], [ 145.829434, 15.264925 ], [ 145.829484, 15.265195 ], [ 145.829517, 15.265285 ], [ 145.829516, 15.265384 ], [ 145.829507, 15.265473 ], [ 145.82954, 15.265654 ], [ 145.829607, 15.265834 ], [ 145.829615, 15.265924 ], [ 145.829631, 15.266023 ], [ 145.829655, 15.266113 ], [ 145.829672, 15.266203 ], [ 145.829721, 15.266384 ], [ 145.829729, 15.266473 ], [ 145.829728, 15.26667 ], [ 145.829745, 15.26676 ], [ 145.829769, 15.266851 ], [ 145.829698, 15.266925 ], [ 145.829737, 15.267015 ], [ 145.829766, 15.267131 ], [ 145.829761, 15.267206 ], [ 145.829834, 15.26731 ], [ 145.829834, 15.267407 ], [ 145.82985, 15.267588 ], [ 145.829849, 15.267686 ], [ 145.829857, 15.267776 ], [ 145.829907, 15.267956 ], [ 145.829948, 15.268047 ], [ 145.829982, 15.268136 ], [ 145.829998, 15.268227 ], [ 145.83004, 15.26831 ], [ 145.83009, 15.268391 ], [ 145.830132, 15.268473 ], [ 145.830106, 15.268563 ], [ 145.830122, 15.268768 ], [ 145.830188, 15.268941 ], [ 145.830238, 15.269121 ], [ 145.830303, 15.269482 ], [ 145.830319, 15.269661 ], [ 145.830352, 15.269752 ], [ 145.830402, 15.269833 ], [ 145.830427, 15.269924 ], [ 145.830435, 15.270014 ], [ 145.830434, 15.270309 ], [ 145.830442, 15.270399 ], [ 145.830483, 15.270481 ], [ 145.830466, 15.270572 ], [ 145.830465, 15.270669 ], [ 145.830498, 15.27085 ], [ 145.830497, 15.271046 ], [ 145.830505, 15.271136 ], [ 145.830504, 15.271234 ], [ 145.830487, 15.271415 ], [ 145.830486, 15.271513 ], [ 145.830494, 15.271603 ], [ 145.830476, 15.271783 ], [ 145.830441, 15.271962 ], [ 145.830415, 15.272053 ], [ 145.830363, 15.272298 ], [ 145.830375, 15.272443 ], [ 145.830374, 15.272543 ], [ 145.830334, 15.272639 ], [ 145.830226, 15.27274 ], [ 145.830224, 15.273011 ], [ 145.830086, 15.272905 ], [ 145.829997, 15.272986 ], [ 145.830081, 15.273083 ], [ 145.83007, 15.273183 ], [ 145.829961, 15.273245 ], [ 145.829951, 15.273364 ], [ 145.829683, 15.273343 ], [ 145.829591, 15.273425 ], [ 145.829497, 15.273382 ], [ 145.829404, 15.273374 ], [ 145.829312, 15.273389 ], [ 145.829162, 15.27336 ], [ 145.829159, 15.273446 ], [ 145.829235, 15.273504 ], [ 145.829156, 15.273575 ], [ 145.829049, 15.273561 ], [ 145.828956, 15.273584 ], [ 145.828753, 15.273648 ], [ 145.828641, 15.273687 ], [ 145.828522, 15.27372 ], [ 145.828441, 15.273778 ], [ 145.828348, 15.273794 ], [ 145.828264, 15.273753 ], [ 145.828095, 15.273654 ], [ 145.828006, 15.273554 ], [ 145.827889, 15.273598 ], [ 145.827828, 15.273649 ], [ 145.827734, 15.27374 ], [ 145.82763, 15.273806 ], [ 145.827477, 15.27392 ], [ 145.827254, 15.274077 ], [ 145.826992, 15.274291 ], [ 145.826868, 15.274409 ], [ 145.826754, 15.274539 ], [ 145.826743, 15.27461 ], [ 145.826644, 15.274695 ], [ 145.826431, 15.274933 ], [ 145.826188, 15.275286 ], [ 145.826118, 15.27541 ], [ 145.826078, 15.275497 ], [ 145.826019, 15.275606 ], [ 145.825995, 15.275757 ], [ 145.825924, 15.275943 ], [ 145.825898, 15.276032 ], [ 145.825838, 15.276074 ], [ 145.825754, 15.276121 ], [ 145.82569, 15.276197 ], [ 145.82561, 15.276307 ], [ 145.825645, 15.276407 ], [ 145.825642, 15.276498 ], [ 145.825574, 15.276563 ], [ 145.825557, 15.276653 ], [ 145.825548, 15.276743 ], [ 145.825531, 15.276834 ], [ 145.825509, 15.276908 ], [ 145.825348, 15.276868 ], [ 145.825269, 15.276923 ], [ 145.825226, 15.277076 ], [ 145.825146, 15.277228 ], [ 145.824988, 15.277341 ], [ 145.824887, 15.277543 ], [ 145.824902, 15.277671 ], [ 145.824875, 15.277809 ], [ 145.824637, 15.27817 ], [ 145.824541, 15.278348 ], [ 145.824456, 15.278445 ], [ 145.824382, 15.278557 ], [ 145.824266, 15.278633 ], [ 145.82414, 15.278677 ], [ 145.824097, 15.278835 ], [ 145.824112, 15.278963 ], [ 145.824059, 15.279064 ], [ 145.823927, 15.27911 ], [ 145.823885, 15.279156 ], [ 145.823905, 15.279278 ], [ 145.823947, 15.279355 ], [ 145.823878, 15.279365 ], [ 145.823757, 15.279365 ], [ 145.823783, 15.279451 ], [ 145.823783, 15.279543 ], [ 145.823704, 15.279557 ], [ 145.823667, 15.279614 ], [ 145.823656, 15.279685 ], [ 145.823678, 15.279751 ], [ 145.823642, 15.279796 ], [ 145.823641, 15.279894 ], [ 145.823632, 15.279984 ], [ 145.823486, 15.279986 ], [ 145.823463, 15.280073 ], [ 145.823378, 15.280122 ], [ 145.82331, 15.280301 ], [ 145.823242, 15.280383 ], [ 145.823157, 15.280547 ], [ 145.823085, 15.280736 ], [ 145.822977, 15.280825 ], [ 145.822955, 15.280931 ], [ 145.822902, 15.280997 ], [ 145.82286, 15.281119 ], [ 145.822791, 15.281191 ], [ 145.822769, 15.281308 ], [ 145.822664, 15.281297 ], [ 145.822606, 15.281348 ], [ 145.822606, 15.281419 ], [ 145.822537, 15.281429 ], [ 145.822505, 15.281475 ], [ 145.822521, 15.281541 ], [ 145.822546, 15.281725 ], [ 145.822483, 15.28175 ], [ 145.822367, 15.281759 ], [ 145.822283, 15.281811 ], [ 145.82223, 15.281897 ], [ 145.822234, 15.282065 ], [ 145.822228, 15.282182 ], [ 145.822228, 15.28229 ], [ 145.822201, 15.282351 ], [ 145.822117, 15.282336 ], [ 145.822064, 15.282427 ], [ 145.821964, 15.282477 ], [ 145.821926, 15.282548 ], [ 145.821916, 15.282595 ], [ 145.821846, 15.282636 ], [ 145.821795, 15.282717 ], [ 145.82171, 15.28288 ], [ 145.821612, 15.282963 ], [ 145.821641, 15.283052 ], [ 145.821599, 15.283142 ], [ 145.821502, 15.283225 ], [ 145.821533, 15.283301 ], [ 145.82148, 15.283377 ], [ 145.821428, 15.283438 ], [ 145.821284, 15.283501 ], [ 145.821185, 15.283503 ], [ 145.821195, 15.283636 ], [ 145.821274, 15.283668 ], [ 145.821252, 15.283794 ], [ 145.821189, 15.283779 ], [ 145.821084, 15.283783 ], [ 145.821073, 15.28387 ], [ 145.820909, 15.284003 ], [ 145.820909, 15.284145 ], [ 145.820929, 15.284283 ], [ 145.820865, 15.284364 ], [ 145.820815, 15.284447 ], [ 145.820722, 15.284489 ], [ 145.82068, 15.28457 ], [ 145.820645, 15.28466 ], [ 145.820553, 15.284635 ], [ 145.820477, 15.2847 ], [ 145.820434, 15.284781 ], [ 145.8204, 15.284871 ], [ 145.820315, 15.28492 ], [ 145.820255, 15.285001 ], [ 145.820217, 15.285085 ], [ 145.820238, 15.285162 ], [ 145.820237, 15.285253 ], [ 145.820153, 15.285319 ], [ 145.820042, 15.285355 ], [ 145.819921, 15.285349 ], [ 145.819807, 15.285335 ], [ 145.819722, 15.285375 ], [ 145.819654, 15.28544 ], [ 145.819595, 15.285522 ], [ 145.819576, 15.285588 ], [ 145.819489, 15.285647 ], [ 145.819388, 15.2858 ], [ 145.819235, 15.285962 ], [ 145.819097, 15.286146 ], [ 145.819022, 15.286229 ], [ 145.818954, 15.286307 ], [ 145.818843, 15.28645 ], [ 145.818769, 15.286552 ], [ 145.818753, 15.286592 ], [ 145.81872, 15.286615 ], [ 145.818564, 15.286577 ], [ 145.81857, 15.28651 ], [ 145.818491, 15.286453 ], [ 145.81837, 15.286432 ], [ 145.818344, 15.286356 ], [ 145.818229, 15.28633 ], [ 145.818177, 15.286263 ], [ 145.818132, 15.286186 ], [ 145.818039, 15.286201 ], [ 145.817937, 15.286233 ], [ 145.817836, 15.286233 ], [ 145.817743, 15.286241 ], [ 145.817651, 15.286257 ], [ 145.817583, 15.286322 ], [ 145.81748, 15.286485 ], [ 145.817413, 15.28655 ], [ 145.817243, 15.286493 ], [ 145.817216, 15.286436 ], [ 145.817191, 15.28637 ], [ 145.816992, 15.286359 ], [ 145.816849, 15.286455 ], [ 145.816749, 15.286419 ], [ 145.816691, 15.286362 ], [ 145.816597, 15.286311 ], [ 145.816529, 15.2863 ], [ 145.816469, 15.286275 ], [ 145.816402, 15.286348 ], [ 145.816232, 15.28643 ], [ 145.81614, 15.286445 ], [ 145.816047, 15.286477 ], [ 145.815962, 15.286518 ], [ 145.815776, 15.286566 ], [ 145.815683, 15.286582 ], [ 145.815591, 15.28659 ], [ 145.815498, 15.286623 ], [ 145.815405, 15.286646 ], [ 145.815218, 15.286727 ], [ 145.815134, 15.286775 ], [ 145.815049, 15.286816 ], [ 145.814864, 15.286864 ], [ 145.814762, 15.286864 ], [ 145.814678, 15.286904 ], [ 145.814525, 15.287018 ], [ 145.814339, 15.287083 ], [ 145.814187, 15.287196 ], [ 145.814119, 15.287262 ], [ 145.81403, 15.287293 ], [ 145.81395, 15.287333 ], [ 145.813899, 15.28735 ], [ 145.813824, 15.287407 ], [ 145.813718, 15.287596 ], [ 145.813675, 15.287764 ], [ 145.813657, 15.287835 ], [ 145.813644, 15.288115 ], [ 145.813511, 15.288416 ], [ 145.813384, 15.288473 ], [ 145.81338, 15.288574 ], [ 145.813345, 15.28875 ], [ 145.813299, 15.288888 ], [ 145.813179, 15.28891 ], [ 145.813133, 15.289011 ], [ 145.813059, 15.288952 ], [ 145.813006, 15.289068 ], [ 145.812968, 15.28914 ], [ 145.812901, 15.289082 ], [ 145.812818, 15.289162 ], [ 145.812697, 15.289321 ], [ 145.812674, 15.289422 ], [ 145.812501, 15.289538 ], [ 145.812321, 15.289581 ], [ 145.812104, 15.289609 ], [ 145.811909, 15.289644 ], [ 145.81169, 15.28984 ], [ 145.811618, 15.28998 ], [ 145.81148, 15.28996 ], [ 145.811371, 15.289994 ], [ 145.811201, 15.290026 ], [ 145.811103, 15.289982 ], [ 145.810945, 15.290058 ], [ 145.810797, 15.290038 ], [ 145.810718, 15.290081 ], [ 145.810648, 15.289993 ], [ 145.810566, 15.28997 ], [ 145.810442, 15.290045 ], [ 145.810265, 15.290055 ], [ 145.810211, 15.289997 ], [ 145.810295, 15.289868 ], [ 145.810237, 15.28983 ], [ 145.810148, 15.289786 ], [ 145.809857, 15.289774 ], [ 145.809809, 15.28966 ], [ 145.809887, 15.289693 ], [ 145.809916, 15.289634 ], [ 145.809819, 15.28956 ], [ 145.809785, 15.289487 ], [ 145.809623, 15.289453 ], [ 145.809642, 15.289587 ], [ 145.809602, 15.28963 ], [ 145.809479, 15.289543 ], [ 145.809495, 15.289357 ], [ 145.809514, 15.289246 ], [ 145.809443, 15.289219 ], [ 145.809359, 15.289209 ], [ 145.809294, 15.289155 ], [ 145.809127, 15.28914 ], [ 145.809043, 15.289067 ], [ 145.808974, 15.289134 ], [ 145.808886, 15.288981 ], [ 145.808852, 15.288895 ], [ 145.808803, 15.288856 ], [ 145.808749, 15.288793 ], [ 145.808621, 15.288744 ], [ 145.808651, 15.288649 ], [ 145.808629, 15.288567 ], [ 145.808553, 15.288514 ], [ 145.808434, 15.288361 ], [ 145.808311, 15.288322 ], [ 145.808193, 15.288307 ], [ 145.808104, 15.28824 ], [ 145.808041, 15.288096 ], [ 145.808032, 15.287972 ], [ 145.807954, 15.287804 ], [ 145.8079, 15.287703 ], [ 145.807733, 15.287587 ], [ 145.80769, 15.28751 ], [ 145.807716, 15.287424 ], [ 145.807649, 15.287374 ], [ 145.807641, 15.287299 ], [ 145.807568, 15.287271 ], [ 145.807438, 15.287251 ], [ 145.807489, 15.287186 ], [ 145.807499, 15.287122 ], [ 145.80748, 15.28705 ], [ 145.807431, 15.286979 ], [ 145.807397, 15.286902 ], [ 145.807314, 15.286872 ], [ 145.807213, 15.286889 ], [ 145.807112, 15.28689 ], [ 145.807003, 15.286846 ], [ 145.80694, 15.286769 ], [ 145.806891, 15.286655 ], [ 145.807, 15.286531 ], [ 145.806993, 15.28645 ], [ 145.806895, 15.286462 ], [ 145.806817, 15.286314 ], [ 145.806748, 15.286209 ], [ 145.806601, 15.286131 ], [ 145.806631, 15.285983 ], [ 145.806552, 15.285952 ], [ 145.806527, 15.28587 ], [ 145.806485, 15.285796 ], [ 145.806334, 15.285599 ], [ 145.806284, 15.2855 ], [ 145.80626, 15.285422 ], [ 145.806142, 15.285302 ], [ 145.806126, 15.285197 ], [ 145.806059, 15.285148 ], [ 145.806041, 15.285124 ], [ 145.806006, 15.285076 ], [ 145.805947, 15.285028 ], [ 145.805857, 15.285015 ], [ 145.805745, 15.284912 ], [ 145.805617, 15.284911 ], [ 145.805554, 15.28483 ], [ 145.805613, 15.284787 ], [ 145.805636, 15.284701 ], [ 145.805597, 15.2846 ], [ 145.805503, 15.284628 ], [ 145.805425, 15.284509 ], [ 145.805282, 15.284446 ], [ 145.805378, 15.284668 ], [ 145.805294, 15.284644 ], [ 145.805235, 15.284578 ], [ 145.805168, 15.28452 ], [ 145.805118, 15.284447 ], [ 145.805076, 15.284364 ], [ 145.805043, 15.284282 ], [ 145.805027, 15.2842 ], [ 145.805018, 15.284105 ], [ 145.804969, 15.284042 ], [ 145.804886, 15.28398 ], [ 145.804783, 15.283969 ], [ 145.804707, 15.283928 ], [ 145.80464, 15.283879 ], [ 145.804624, 15.283796 ], [ 145.804557, 15.283747 ], [ 145.804472, 15.283755 ], [ 145.804389, 15.283608 ], [ 145.80433, 15.283542 ], [ 145.804297, 15.283459 ], [ 145.80423, 15.283393 ], [ 145.804163, 15.283336 ], [ 145.804095, 15.283286 ], [ 145.80402, 15.283245 ], [ 145.803978, 15.283172 ], [ 145.803953, 15.283089 ], [ 145.80392, 15.283007 ], [ 145.803786, 15.282843 ], [ 145.80371, 15.282802 ], [ 145.803685, 15.282719 ], [ 145.803618, 15.282661 ], [ 145.803534, 15.282637 ], [ 145.803466, 15.282693 ], [ 145.803499, 15.282776 ], [ 145.803415, 15.282775 ], [ 145.803282, 15.282746 ], [ 145.803208, 15.282636 ], [ 145.80312, 15.282587 ], [ 145.803143, 15.282426 ], [ 145.803054, 15.28243 ], [ 145.802962, 15.282412 ], [ 145.80292, 15.282339 ], [ 145.802895, 15.282256 ], [ 145.802848, 15.282271 ], [ 145.802744, 15.28227 ], [ 145.802681, 15.282145 ], [ 145.802626, 15.282075 ], [ 145.802542, 15.282099 ], [ 145.802543, 15.282222 ], [ 145.802464, 15.282264 ], [ 145.80238, 15.282264 ], [ 145.802301, 15.282206 ], [ 145.802248, 15.282124 ], [ 145.802134, 15.282119 ], [ 145.801982, 15.281989 ], [ 145.801953, 15.281888 ], [ 145.801821, 15.281845 ], [ 145.801777, 15.281753 ], [ 145.801718, 15.281691 ], [ 145.801634, 15.281695 ], [ 145.801521, 15.281593 ], [ 145.801487, 15.281512 ], [ 145.801409, 15.281502 ], [ 145.80137, 15.281406 ], [ 145.801331, 15.281322 ], [ 145.801247, 15.281298 ], [ 145.801231, 15.281216 ], [ 145.801248, 15.281134 ], [ 145.801215, 15.281044 ], [ 145.801131, 15.281011 ], [ 145.801055, 15.28097 ], [ 145.801064, 15.280887 ], [ 145.801065, 15.280806 ], [ 145.801023, 15.280732 ], [ 145.800888, 15.280616 ], [ 145.800821, 15.280567 ], [ 145.800687, 15.280451 ], [ 145.800637, 15.280385 ], [ 145.80057, 15.280221 ], [ 145.800554, 15.28014 ], [ 145.800487, 15.279976 ], [ 145.800462, 15.279894 ], [ 145.800429, 15.279811 ], [ 145.800379, 15.279738 ], [ 145.800337, 15.279664 ], [ 145.800287, 15.279598 ], [ 145.800228, 15.279532 ], [ 145.800161, 15.279482 ], [ 145.800002, 15.279269 ], [ 145.799943, 15.279203 ], [ 145.79991, 15.279121 ], [ 145.7999, 15.279059 ], [ 145.799734, 15.278998 ], [ 145.799667, 15.278833 ], [ 145.799608, 15.278767 ], [ 145.799541, 15.27871 ], [ 145.799491, 15.278636 ], [ 145.799459, 15.27855 ], [ 145.799425, 15.278474 ], [ 145.799357, 15.278414 ], [ 145.79929, 15.278348 ], [ 145.799232, 15.278282 ], [ 145.79921, 15.278186 ], [ 145.799107, 15.278142 ], [ 145.799089, 15.278069 ], [ 145.799022, 15.278011 ], [ 145.798972, 15.277945 ], [ 145.798914, 15.277879 ], [ 145.798838, 15.277838 ], [ 145.798791, 15.277772 ], [ 145.798737, 15.277733 ], [ 145.798661, 15.277771 ], [ 145.798577, 15.277746 ], [ 145.798501, 15.277705 ], [ 145.798459, 15.277631 ], [ 145.798384, 15.27759 ], [ 145.798231, 15.277487 ], [ 145.798147, 15.277452 ], [ 145.798059, 15.277443 ], [ 145.797963, 15.27744 ], [ 145.797879, 15.277424 ], [ 145.797812, 15.277374 ], [ 145.797818, 15.277283 ], [ 145.797685, 15.277259 ], [ 145.797459, 15.277104 ], [ 145.797346, 15.27709 ], [ 145.797238, 15.277051 ], [ 145.797149, 15.277108 ], [ 145.797071, 15.277084 ], [ 145.796995, 15.277042 ], [ 145.796963, 15.276968 ], [ 145.796864, 15.276944 ], [ 145.79681, 15.276957 ], [ 145.796589, 15.276812 ], [ 145.796535, 15.276812 ], [ 145.796446, 15.276783 ], [ 145.796353, 15.276735 ], [ 145.796264, 15.276735 ], [ 145.796156, 15.276711 ], [ 145.795944, 15.276613 ], [ 145.795876, 15.276603 ], [ 145.795704, 15.276507 ], [ 145.795468, 15.276362 ], [ 145.795399, 15.276304 ], [ 145.795301, 15.276231 ], [ 145.795262, 15.276194 ], [ 145.795198, 15.276164 ], [ 145.79515, 15.276148 ], [ 145.795092, 15.276116 ], [ 145.794905, 15.276081 ], [ 145.794816, 15.276048 ], [ 145.794699, 15.275971 ], [ 145.794727, 15.275922 ], [ 145.794741, 15.2759 ], [ 145.794733, 15.275818 ], [ 145.794674, 15.275752 ], [ 145.79459, 15.275744 ], [ 145.794506, 15.275751 ], [ 145.794434, 15.275701 ], [ 145.794439, 15.275637 ], [ 145.794406, 15.275554 ], [ 145.794237, 15.275505 ], [ 145.794213, 15.275422 ], [ 145.794171, 15.275336 ], [ 145.794092, 15.27525 ], [ 145.793959, 15.275254 ], [ 145.793861, 15.275234 ], [ 145.793868, 15.275137 ], [ 145.793928, 15.275009 ], [ 145.793895, 15.274921 ], [ 145.793904, 15.274831 ], [ 145.793904, 15.274741 ], [ 145.793828, 15.274683 ], [ 145.793804, 15.274613 ], [ 145.793751, 15.27452 ], [ 145.79378, 15.274429 ], [ 145.79378, 15.27434 ], [ 145.793806, 15.274257 ], [ 145.79384, 15.274176 ], [ 145.793883, 15.274094 ], [ 145.7939, 15.274013 ], [ 145.793892, 15.27393 ], [ 145.793876, 15.273849 ], [ 145.793907, 15.27363 ], [ 145.793903, 15.273566 ], [ 145.793856, 15.273427 ], [ 145.793837, 15.273316 ], [ 145.793795, 15.273243 ], [ 145.793787, 15.27316 ], [ 145.793796, 15.273079 ], [ 145.793771, 15.272996 ], [ 145.793738, 15.272915 ], [ 145.793696, 15.272841 ], [ 145.793637, 15.272775 ], [ 145.793587, 15.272709 ], [ 145.793483, 15.272662 ], [ 145.793465, 15.27264 ], [ 145.793448, 15.272593 ], [ 145.793394, 15.272494 ], [ 145.793302, 15.272429 ], [ 145.793218, 15.272395 ], [ 145.79315, 15.272347 ], [ 145.793066, 15.272321 ], [ 145.792982, 15.272288 ], [ 145.792898, 15.272272 ], [ 145.792814, 15.272246 ], [ 145.79273, 15.272213 ], [ 145.792654, 15.272172 ], [ 145.792485, 15.272121 ], [ 145.792393, 15.27208 ], [ 145.792317, 15.272039 ], [ 145.792233, 15.272006 ], [ 145.792149, 15.271981 ], [ 145.792073, 15.27194 ], [ 145.791989, 15.271906 ], [ 145.791905, 15.271865 ], [ 145.791829, 15.271823 ], [ 145.791687, 15.271724 ], [ 145.791535, 15.271642 ], [ 145.791468, 15.271584 ], [ 145.791401, 15.271535 ], [ 145.791317, 15.271502 ], [ 145.791233, 15.271461 ], [ 145.791167, 15.271423 ], [ 145.791157, 15.271418 ], [ 145.791107, 15.271353 ], [ 145.791006, 15.271263 ], [ 145.790972, 15.271221 ], [ 145.790897, 15.27118 ], [ 145.790846, 15.271114 ], [ 145.790779, 15.271056 ], [ 145.790704, 15.271007 ], [ 145.790654, 15.270941 ], [ 145.790595, 15.270875 ], [ 145.790528, 15.270817 ], [ 145.790452, 15.270768 ], [ 145.790385, 15.270718 ], [ 145.790309, 15.270669 ], [ 145.790242, 15.270619 ], [ 145.790175, 15.270562 ], [ 145.790108, 15.270496 ], [ 145.790041, 15.270438 ], [ 145.789865, 15.270241 ], [ 145.789798, 15.270183 ], [ 145.789663, 15.270084 ], [ 145.789596, 15.270027 ], [ 145.789529, 15.269961 ], [ 145.78947, 15.269895 ], [ 145.789403, 15.269837 ], [ 145.789345, 15.269771 ], [ 145.789294, 15.269705 ], [ 145.789227, 15.26964 ], [ 145.789168, 15.269574 ], [ 145.789118, 15.269508 ], [ 145.789001, 15.269376 ], [ 145.7889, 15.269276 ], [ 145.788867, 15.269244 ], [ 145.788808, 15.269179 ], [ 145.788758, 15.269113 ], [ 145.788691, 15.269047 ], [ 145.788624, 15.26899 ], [ 145.788556, 15.26894 ], [ 145.788506, 15.268874 ], [ 145.788454, 15.268797 ], [ 145.788358, 15.268749 ], [ 145.788161, 15.268549 ], [ 145.787887, 15.26827 ], [ 145.787559, 15.267972 ], [ 145.787345, 15.267784 ], [ 145.786945, 15.267457 ], [ 145.786828, 15.267343 ], [ 145.786698, 15.267216 ], [ 145.786519, 15.267169 ], [ 145.786375, 15.267051 ], [ 145.786292, 15.266929 ], [ 145.786167, 15.266784 ], [ 145.786066, 15.266689 ], [ 145.786025, 15.266526 ], [ 145.786055, 15.266469 ], [ 145.785995, 15.266456 ], [ 145.785966, 15.26638 ], [ 145.785924, 15.266339 ], [ 145.785931, 15.266223 ], [ 145.785919, 15.266119 ], [ 145.785848, 15.266071 ], [ 145.785776, 15.265984 ], [ 145.785753, 15.265897 ], [ 145.785711, 15.265786 ], [ 145.785622, 15.265657 ], [ 145.785569, 15.265565 ], [ 145.785498, 15.265459 ], [ 145.78545, 15.265319 ], [ 145.785393, 15.265272 ], [ 145.785389, 15.265191 ], [ 145.785422, 15.265126 ], [ 145.785398, 15.265039 ], [ 145.785362, 15.265057 ], [ 145.785339, 15.264976 ], [ 145.785315, 15.264865 ], [ 145.78531, 15.264784 ], [ 145.785268, 15.264713 ], [ 145.785197, 15.264631 ], [ 145.785198, 15.264491 ], [ 145.785169, 15.264334 ], [ 145.78511, 15.264142 ], [ 145.78508, 15.264095 ], [ 145.78497, 15.264025 ], [ 145.784904, 15.263961 ], [ 145.784833, 15.263861 ], [ 145.784845, 15.263757 ], [ 145.784846, 15.263612 ], [ 145.784851, 15.263532 ], [ 145.784717, 15.263433 ], [ 145.784633, 15.263408 ], [ 145.784557, 15.263367 ], [ 145.784498, 15.263301 ], [ 145.784457, 15.263228 ], [ 145.78439, 15.263063 ], [ 145.784382, 15.26305 ], [ 145.784323, 15.262952 ], [ 145.784234, 15.262856 ], [ 145.784023, 15.262696 ], [ 145.783842, 15.262576 ], [ 145.783694, 15.262446 ], [ 145.783492, 15.262297 ], [ 145.783416, 15.262248 ], [ 145.783282, 15.262132 ], [ 145.783198, 15.262099 ], [ 145.783122, 15.26205 ], [ 145.783047, 15.262009 ], [ 145.78298, 15.261951 ], [ 145.782895, 15.261917 ], [ 145.782828, 15.261867 ], [ 145.782761, 15.26181 ], [ 145.782711, 15.261745 ], [ 145.782652, 15.261679 ], [ 145.782585, 15.261621 ], [ 145.782562, 15.261565 ], [ 145.782552, 15.261539 ], [ 145.782468, 15.261383 ], [ 145.782469, 15.261293 ], [ 145.782444, 15.261211 ], [ 145.782403, 15.261189 ], [ 145.782355, 15.261155 ], [ 145.782362, 15.261039 ], [ 145.782363, 15.260945 ], [ 145.782281, 15.260666 ], [ 145.782269, 15.260573 ], [ 145.782246, 15.260497 ], [ 145.782229, 15.260416 ], [ 145.782255, 15.260333 ], [ 145.782298, 15.260252 ], [ 145.782302, 15.260159 ], [ 145.782341, 15.260081 ], [ 145.78228, 15.25998 ], [ 145.782272, 15.259954 ], [ 145.782255, 15.259898 ], [ 145.782342, 15.259834 ], [ 145.782298, 15.259683 ], [ 145.782322, 15.259642 ], [ 145.782361, 15.259589 ], [ 145.782353, 15.259508 ], [ 145.782299, 15.259474 ], [ 145.782299, 15.259372 ], [ 145.782337, 15.259302 ], [ 145.782313, 15.259138 ], [ 145.782272, 15.258925 ], [ 145.782177, 15.258792 ], [ 145.78215, 15.258697 ], [ 145.78213, 15.258622 ], [ 145.782114, 15.258384 ], [ 145.782039, 15.258278 ], [ 145.781964, 15.258105 ], [ 145.781858, 15.258023 ], [ 145.781848, 15.257899 ], [ 145.78177, 15.257766 ], [ 145.78179, 15.257662 ], [ 145.781757, 15.257531 ], [ 145.781692, 15.257242 ], [ 145.781603, 15.257125 ], [ 145.781501, 15.25713 ], [ 145.781012, 15.256713 ], [ 145.780977, 15.256683 ], [ 145.780835, 15.256469 ], [ 145.780496, 15.256073 ], [ 145.780473, 15.256046 ], [ 145.780433, 15.256 ], [ 145.780403, 15.255969 ], [ 145.78038, 15.255944 ], [ 145.780224, 15.255779 ], [ 145.78008, 15.255753 ], [ 145.779955, 15.255629 ], [ 145.779603, 15.255251 ], [ 145.779409, 15.255074 ], [ 145.779116, 15.254807 ], [ 145.778621, 15.254239 ], [ 145.778059, 15.253777 ], [ 145.777505, 15.253267 ], [ 145.777195, 15.252995 ], [ 145.776817, 15.252829 ], [ 145.77648, 15.252606 ], [ 145.77637, 15.25255 ], [ 145.776102, 15.252415 ], [ 145.775825, 15.252234 ], [ 145.77548, 15.252101 ], [ 145.775174, 15.251989 ], [ 145.77516, 15.251984 ], [ 145.77505, 15.251968 ], [ 145.774899, 15.251975 ], [ 145.774814, 15.251926 ], [ 145.774714, 15.251777 ], [ 145.774706, 15.251729 ], [ 145.774597, 15.25167 ], [ 145.774335, 15.251653 ], [ 145.774255, 15.251626 ], [ 145.774209, 15.251611 ], [ 145.773906, 15.251487 ], [ 145.77293, 15.251219 ], [ 145.772517, 15.251102 ], [ 145.77213, 15.251001 ], [ 145.771801, 15.250951 ], [ 145.771422, 15.250818 ], [ 145.771168, 15.250724 ], [ 145.7709, 15.250626 ], [ 145.770816, 15.250602 ], [ 145.770741, 15.25056 ], [ 145.770657, 15.250536 ], [ 145.770446, 15.250493 ], [ 145.770378, 15.250485 ], [ 145.770294, 15.250451 ], [ 145.77021, 15.250451 ], [ 145.770142, 15.250438 ], [ 145.770126, 15.250435 ], [ 145.770041, 15.250434 ], [ 145.769873, 15.250416 ], [ 145.769762, 15.250364 ], [ 145.769664, 15.250325 ], [ 145.76958, 15.250281 ], [ 145.769537, 15.250194 ], [ 145.769383, 15.250214 ], [ 145.76935, 15.250173 ], [ 145.769285, 15.250093 ], [ 145.769173, 15.249983 ], [ 145.769056, 15.249815 ], [ 145.768997, 15.249695 ], [ 145.768939, 15.249618 ], [ 145.769001, 15.249528 ], [ 145.768934, 15.24947 ], [ 145.768871, 15.249378 ], [ 145.768893, 15.249298 ], [ 145.768859, 15.249199 ], [ 145.768754, 15.249096 ], [ 145.768784, 15.249034 ], [ 145.768706, 15.248871 ], [ 145.768786, 15.248798 ], [ 145.768732, 15.248775 ], [ 145.768701, 15.248603 ], [ 145.768716, 15.248469 ], [ 145.768738, 15.248387 ], [ 145.76867, 15.248339 ], [ 145.76854, 15.248272 ], [ 145.768545, 15.248215 ], [ 145.768486, 15.248149 ], [ 145.768411, 15.2481 ], [ 145.768349, 15.248055 ], [ 145.768343, 15.24805 ], [ 145.768268, 15.248009 ], [ 145.76815, 15.247877 ], [ 145.768083, 15.247819 ], [ 145.768016, 15.247753 ], [ 145.767815, 15.247605 ], [ 145.767697, 15.247602 ], [ 145.767646, 15.247546 ], [ 145.767571, 15.247505 ], [ 145.767524, 15.247486 ], [ 145.767487, 15.247472 ], [ 145.767411, 15.247423 ], [ 145.767272, 15.247356 ], [ 145.767188, 15.24727 ], [ 145.767167, 15.247249 ], [ 145.767075, 15.2472 ], [ 145.766967, 15.247202 ], [ 145.766918, 15.247148 ], [ 145.76684, 15.247075 ], [ 145.766755, 15.247051 ], [ 145.76668, 15.247009 ], [ 145.766612, 15.24696 ], [ 145.766491, 15.246894 ], [ 145.766461, 15.246877 ], [ 145.766226, 15.246753 ], [ 145.766142, 15.24672 ], [ 145.766066, 15.246678 ], [ 145.765982, 15.246654 ], [ 145.765831, 15.24657 ], [ 145.765696, 15.246471 ], [ 145.765595, 15.246414 ], [ 145.765511, 15.246381 ], [ 145.765444, 15.246331 ], [ 145.765377, 15.246273 ], [ 145.765301, 15.246232 ], [ 145.765217, 15.246199 ], [ 145.765133, 15.246158 ], [ 145.765057, 15.246116 ], [ 145.764889, 15.24605 ], [ 145.764805, 15.246025 ], [ 145.764721, 15.246007 ], [ 145.764674, 15.245981 ], [ 145.764645, 15.245966 ], [ 145.764561, 15.245933 ], [ 145.764477, 15.245909 ], [ 145.764401, 15.245867 ], [ 145.764232, 15.2458 ], [ 145.764165, 15.245732 ], [ 145.764057, 15.245736 ], [ 145.76398, 15.245775 ], [ 145.763904, 15.245733 ], [ 145.763837, 15.245684 ], [ 145.763778, 15.245618 ], [ 145.763728, 15.245552 ], [ 145.76372, 15.245549 ], [ 145.763501, 15.245468 ], [ 145.76335, 15.245386 ], [ 145.763181, 15.24532 ], [ 145.763097, 15.245294 ], [ 145.763013, 15.245278 ], [ 145.762727, 15.24517 ], [ 145.762651, 15.245128 ], [ 145.762567, 15.245128 ], [ 145.762498, 15.245109 ], [ 145.762486, 15.245106 ], [ 145.762412, 15.24511 ], [ 145.762338, 15.24509 ], [ 145.762235, 15.245094 ], [ 145.762145, 15.245134 ], [ 145.762074, 15.245134 ], [ 145.762061, 15.245134 ], [ 145.761977, 15.245124 ], [ 145.761892, 15.245108 ], [ 145.761831, 15.245102 ], [ 145.761808, 15.2451 ], [ 145.761724, 15.245067 ], [ 145.76161, 15.24499 ], [ 145.761555, 15.245041 ], [ 145.761462, 15.245032 ], [ 145.761286, 15.244966 ], [ 145.761202, 15.24494 ], [ 145.761162, 15.24494 ], [ 145.761117, 15.24494 ], [ 145.761033, 15.244915 ], [ 145.760934, 15.244863 ], [ 145.759184, 15.244261 ], [ 145.758509, 15.244071 ], [ 145.758323, 15.24404 ], [ 145.757986, 15.244005 ], [ 145.757733, 15.243955 ], [ 145.757649, 15.243947 ], [ 145.75763, 15.243943 ], [ 145.757564, 15.243929 ], [ 145.75748, 15.243904 ], [ 145.757396, 15.243896 ], [ 145.757312, 15.243879 ], [ 145.757143, 15.243829 ], [ 145.757059, 15.243828 ], [ 145.756975, 15.24382 ], [ 145.756891, 15.243803 ], [ 145.756553, 15.243769 ], [ 145.756385, 15.243768 ], [ 145.756301, 15.243751 ], [ 145.756132, 15.243734 ], [ 145.756048, 15.243709 ], [ 145.755963, 15.243691 ], [ 145.755879, 15.243691 ], [ 145.755795, 15.243674 ], [ 145.755711, 15.243649 ], [ 145.755627, 15.243641 ], [ 145.755511, 15.243608 ], [ 145.755433, 15.243559 ], [ 145.755339, 15.243511 ], [ 145.755192, 15.243453 ], [ 145.755167, 15.243441 ], [ 145.755054, 15.243385 ], [ 145.754937, 15.243327 ], [ 145.754877, 15.243269 ], [ 145.754854, 15.243249 ], [ 145.754804, 15.243207 ], [ 145.75472, 15.243159 ], [ 145.754553, 15.243115 ], [ 145.75445, 15.243072 ], [ 145.754381, 15.243014 ], [ 145.754288, 15.24297 ], [ 145.754285, 15.242968 ], [ 145.75419, 15.242903 ], [ 145.754117, 15.242845 ], [ 145.754068, 15.242763 ], [ 145.754054, 15.242753 ], [ 145.754004, 15.242714 ], [ 145.75391, 15.242695 ], [ 145.753822, 15.242638 ], [ 145.753714, 15.242579 ], [ 145.753626, 15.242507 ], [ 145.753626, 15.242431 ], [ 145.753553, 15.242373 ], [ 145.75356, 15.242295 ], [ 145.753474, 15.242262 ], [ 145.753401, 15.242175 ], [ 145.753398, 15.242169 ], [ 145.753367, 15.242104 ], [ 145.753368, 15.241922 ], [ 145.7534, 15.241865 ], [ 145.753413, 15.241841 ], [ 145.753443, 15.241751 ], [ 145.75346, 15.241666 ], [ 145.753434, 15.241537 ], [ 145.753431, 15.241428 ], [ 145.753464, 15.241336 ], [ 145.753456, 15.241254 ], [ 145.753457, 15.241172 ], [ 145.753407, 15.241008 ], [ 145.753357, 15.240942 ], [ 145.753348, 15.240934 ], [ 145.75329, 15.240884 ], [ 145.753223, 15.240835 ], [ 145.753172, 15.240762 ], [ 145.753041, 15.24064 ], [ 145.752915, 15.240546 ], [ 145.752844, 15.240366 ], [ 145.752683, 15.240213 ], [ 145.752725, 15.240387 ], [ 145.752634, 15.24057 ], [ 145.75255, 15.240545 ], [ 145.752466, 15.240528 ], [ 145.752331, 15.240429 ], [ 145.752264, 15.240371 ], [ 145.752188, 15.24033 ], [ 145.752113, 15.24028 ], [ 145.751979, 15.240181 ], [ 145.751853, 15.240034 ], [ 145.751777, 15.239983 ], [ 145.75171, 15.239927 ], [ 145.751509, 15.239777 ], [ 145.751442, 15.239711 ], [ 145.75139, 15.239683 ], [ 145.751366, 15.23967 ], [ 145.751198, 15.239621 ], [ 145.751032, 15.239524 ], [ 145.751047, 15.239423 ], [ 145.750962, 15.239423 ], [ 145.750878, 15.239415 ], [ 145.750794, 15.239397 ], [ 145.750626, 15.23938 ], [ 145.750574, 15.23936 ], [ 145.750541, 15.239347 ], [ 145.75039, 15.239264 ], [ 145.750306, 15.239231 ], [ 145.750191, 15.239211 ], [ 145.750146, 15.239156 ], [ 145.750134, 15.239152 ], [ 145.750062, 15.239131 ], [ 145.749995, 15.239082 ], [ 145.749911, 15.239057 ], [ 145.749826, 15.239039 ], [ 145.749768, 15.238973 ], [ 145.749684, 15.238957 ], [ 145.749599, 15.238932 ], [ 145.749448, 15.238833 ], [ 145.749314, 15.238734 ], [ 145.74923, 15.238742 ], [ 145.749145, 15.238725 ], [ 145.749011, 15.23861 ], [ 145.748894, 15.238604 ], [ 145.748837, 15.238538 ], [ 145.748829, 15.238529 ], [ 145.748812, 15.238435 ], [ 145.748785, 15.238362 ], [ 145.748709, 15.238321 ], [ 145.748634, 15.238272 ], [ 145.748566, 15.238214 ], [ 145.748533, 15.238182 ], [ 145.748506, 15.238155 ], [ 145.748499, 15.238148 ], [ 145.748424, 15.238107 ], [ 145.748411, 15.238097 ], [ 145.748381, 15.238075 ], [ 145.748356, 15.238057 ], [ 145.748347, 15.238052 ], [ 145.748238, 15.237996 ], [ 145.748202, 15.237978 ], [ 145.748197, 15.237975 ], [ 145.748167, 15.237963 ], [ 145.748113, 15.237942 ], [ 145.748068, 15.237911 ], [ 145.748037, 15.237891 ], [ 145.747995, 15.237872 ], [ 145.747948, 15.237865 ], [ 145.747946, 15.237865 ], [ 145.747892, 15.237822 ], [ 145.747863, 15.237749 ], [ 145.747809, 15.237725 ], [ 145.747757, 15.237679 ], [ 145.74774, 15.237663 ], [ 145.747721, 15.237597 ], [ 145.747542, 15.237512 ], [ 145.747487, 15.237473 ], [ 145.747399, 15.237413 ], [ 145.747323, 15.237372 ], [ 145.747248, 15.237322 ], [ 145.74718, 15.237264 ], [ 145.747113, 15.237215 ], [ 145.747055, 15.237149 ], [ 145.747005, 15.237083 ], [ 145.746963, 15.23701 ], [ 145.746931, 15.236932 ], [ 145.746896, 15.236846 ], [ 145.746847, 15.236681 ], [ 145.74685, 15.236648 ], [ 145.746856, 15.2366 ], [ 145.746856, 15.23655 ], [ 145.746856, 15.236518 ], [ 145.746781, 15.236321 ], [ 145.746757, 15.236239 ], [ 145.746799, 15.236166 ], [ 145.746814, 15.236117 ], [ 145.746825, 15.236084 ], [ 145.746825, 15.236002 ], [ 145.746801, 15.23592 ], [ 145.746759, 15.235838 ], [ 145.746675, 15.23569 ], [ 145.746625, 15.235624 ], [ 145.746575, 15.23555 ], [ 145.746525, 15.235484 ], [ 145.746379, 15.235393 ], [ 145.746359, 15.235344 ], [ 145.74638, 15.23523 ], [ 145.746275, 15.235033 ], [ 145.746268, 15.235026 ], [ 145.746208, 15.234967 ], [ 145.746132, 15.234925 ], [ 145.746073, 15.234859 ], [ 145.746023, 15.234785 ], [ 145.745975, 15.234719 ], [ 145.745923, 15.234646 ], [ 145.745864, 15.23458 ], [ 145.745822, 15.234506 ], [ 145.745739, 15.23435 ], [ 145.745666, 15.234293 ], [ 145.745596, 15.234251 ], [ 145.74558, 15.234243 ], [ 145.745524, 15.234215 ], [ 145.745466, 15.234196 ], [ 145.745422, 15.23419 ], [ 145.74539, 15.234156 ], [ 145.745362, 15.234097 ], [ 145.745325, 15.234039 ], [ 145.74531, 15.233969 ], [ 145.745272, 15.233898 ], [ 145.745244, 15.233858 ], [ 145.745194, 15.233802 ], [ 145.74515, 15.233738 ], [ 145.745106, 15.233683 ], [ 145.745063, 15.233597 ], [ 145.74505, 15.233551 ], [ 145.745044, 15.233504 ], [ 145.745054, 15.233465 ], [ 145.745064, 15.233447 ], [ 145.745076, 15.23341 ], [ 145.745011, 15.23338 ], [ 145.744935, 15.233339 ], [ 145.744851, 15.233313 ], [ 145.744717, 15.233214 ], [ 145.744583, 15.233099 ], [ 145.744515, 15.233049 ], [ 145.744387, 15.23296 ], [ 145.744373, 15.23295 ], [ 145.744297, 15.232909 ], [ 145.744213, 15.232876 ], [ 145.744028, 15.232769 ], [ 145.743814, 15.232708 ], [ 145.743792, 15.232702 ], [ 145.74354, 15.232651 ], [ 145.743455, 15.232627 ], [ 145.74338, 15.232576 ], [ 145.74322, 15.232494 ], [ 145.743101, 15.232428 ], [ 145.743069, 15.232411 ], [ 145.743002, 15.232362 ], [ 145.742918, 15.232337 ], [ 145.742833, 15.232303 ], [ 145.742691, 15.232204 ], [ 145.742615, 15.232163 ], [ 145.742447, 15.232097 ], [ 145.742278, 15.232046 ], [ 145.742194, 15.23203 ], [ 145.74211, 15.232021 ], [ 145.741942, 15.231971 ], [ 145.741773, 15.231904 ], [ 145.741596, 15.231903 ], [ 145.741427, 15.231952 ], [ 145.741351, 15.231992 ], [ 145.741283, 15.23204 ], [ 145.741199, 15.232057 ], [ 145.741115, 15.232039 ], [ 145.740955, 15.231957 ], [ 145.74095, 15.231954 ], [ 145.740879, 15.231907 ], [ 145.740542, 15.23184 ], [ 145.740458, 15.231815 ], [ 145.740383, 15.231774 ], [ 145.740333, 15.231709 ], [ 145.740265, 15.231651 ], [ 145.740189, 15.231633 ], [ 145.740114, 15.231654 ], [ 145.740005, 15.231657 ], [ 145.739929, 15.231649 ], [ 145.739838, 15.231615 ], [ 145.739772, 15.231617 ], [ 145.739685, 15.231541 ], [ 145.739594, 15.231531 ], [ 145.739466, 15.231547 ], [ 145.739365, 15.231629 ], [ 145.738724, 15.231586 ], [ 145.738739, 15.231151 ], [ 145.739731, 15.231166 ], [ 145.73977, 15.231093 ], [ 145.739777, 15.230977 ], [ 145.739746, 15.230869 ], [ 145.739639, 15.230797 ], [ 145.739578, 15.230649 ], [ 145.739639, 15.230583 ], [ 145.739734, 15.230496 ], [ 145.739822, 15.230507 ], [ 145.739872, 15.230499 ], [ 145.739899, 15.230478 ], [ 145.739899, 15.23028 ], [ 145.738888, 15.230243 ], [ 145.738907, 15.229875 ], [ 145.740433, 15.229932 ], [ 145.740356, 15.22985 ], [ 145.740372, 15.229778 ], [ 145.740402, 15.22971 ], [ 145.740204, 15.229709 ], [ 145.740091, 15.229727 ], [ 145.739975, 15.229666 ], [ 145.740005, 15.229542 ], [ 145.740085, 15.229448 ], [ 145.740128, 15.229375 ], [ 145.740112, 15.229313 ], [ 145.740139, 15.229249 ], [ 145.740158, 15.229153 ], [ 145.740045, 15.229053 ], [ 145.739973, 15.228956 ], [ 145.739975, 15.228807 ], [ 145.739922, 15.228714 ], [ 145.739864, 15.228634 ], [ 145.739761, 15.228455 ], [ 145.739664, 15.228402 ], [ 145.739609, 15.228421 ], [ 145.739487, 15.228469 ], [ 145.739395, 15.228518 ], [ 145.739333, 15.228564 ], [ 145.739273, 15.228632 ], [ 145.739273, 15.228705 ], [ 145.739304, 15.228796 ], [ 145.739288, 15.228861 ], [ 145.739243, 15.228918 ], [ 145.739182, 15.228959 ], [ 145.739059, 15.22897 ], [ 145.738943, 15.228896 ], [ 145.738846, 15.228851 ], [ 145.738724, 15.228744 ], [ 145.73877, 15.228659 ], [ 145.738892, 15.228538 ], [ 145.738985, 15.228526 ], [ 145.739212, 15.228452 ], [ 145.739304, 15.228379 ], [ 145.739395, 15.228318 ], [ 145.739472, 15.228235 ], [ 145.739501, 15.228114 ], [ 145.739502, 15.228004 ], [ 145.739502, 15.227929 ], [ 145.739517, 15.227833 ], [ 145.739504, 15.227603 ], [ 145.739426, 15.227454 ], [ 145.739383, 15.227381 ], [ 145.739184, 15.227144 ], [ 145.739105, 15.227051 ], [ 145.738968, 15.226927 ], [ 145.738878, 15.226855 ], [ 145.7388, 15.226762 ], [ 145.738618, 15.226607 ], [ 145.738403, 15.226482 ], [ 145.738281, 15.226353 ], [ 145.738115, 15.226261 ], [ 145.738007, 15.226226 ], [ 145.73793, 15.226168 ], [ 145.737838, 15.226142 ], [ 145.737717, 15.226024 ], [ 145.737808, 15.225918 ], [ 145.737839, 15.225792 ], [ 145.737946, 15.225727 ], [ 145.738007, 15.225689 ], [ 145.738052, 15.225603 ], [ 145.738059, 15.22553 ], [ 145.737887, 15.225497 ], [ 145.737773, 15.225463 ], [ 145.737733, 15.225557 ], [ 145.737693, 15.225687 ], [ 145.737668, 15.225799 ], [ 145.737625, 15.225871 ], [ 145.737534, 15.225931 ], [ 145.737459, 15.225867 ], [ 145.737442, 15.226085 ], [ 145.737362, 15.226317 ], [ 145.737336, 15.22645 ], [ 145.737216, 15.227086 ], [ 145.73705, 15.227032 ], [ 145.737165, 15.22632 ], [ 145.736773, 15.226244 ], [ 145.736492, 15.227445 ], [ 145.735081, 15.227159 ], [ 145.735079, 15.227158 ], [ 145.733863, 15.226216 ], [ 145.733858, 15.226213 ], [ 145.733181, 15.225714 ], [ 145.731949, 15.224737 ], [ 145.732341, 15.224262 ], [ 145.732274, 15.224213 ], [ 145.732148, 15.22411 ], [ 145.73208, 15.224104 ], [ 145.732041, 15.224049 ], [ 145.732003, 15.223995 ], [ 145.73187, 15.22407 ], [ 145.731777, 15.224013 ], [ 145.73171, 15.22398 ], [ 145.731651, 15.223905 ], [ 145.731643, 15.223824 ], [ 145.731644, 15.223733 ], [ 145.731619, 15.223619 ], [ 145.731586, 15.223536 ], [ 145.731536, 15.223463 ], [ 145.731486, 15.223381 ], [ 145.731431, 15.22332 ], [ 145.731427, 15.223315 ], [ 145.731377, 15.223233 ], [ 145.731235, 15.223085 ], [ 145.731187, 15.22303 ], [ 145.731134, 15.222969 ], [ 145.731076, 15.222887 ], [ 145.730891, 15.222771 ], [ 145.730773, 15.222714 ], [ 145.7307, 15.222666 ], [ 145.730461, 15.222509 ], [ 145.730345, 15.222409 ], [ 145.730236, 15.222342 ], [ 145.730186, 15.22226 ], [ 145.730169, 15.222146 ], [ 145.730178, 15.222055 ], [ 145.73018, 15.221965 ], [ 145.730205, 15.221851 ], [ 145.730203, 15.22175 ], [ 145.730259, 15.221609 ], [ 145.730317, 15.221491 ], [ 145.730385, 15.221418 ], [ 145.730513, 15.221242 ], [ 145.730563, 15.221188 ], [ 145.730648, 15.2211 ], [ 145.730708, 15.220953 ], [ 145.730744, 15.220851 ], [ 145.730824, 15.220736 ], [ 145.730895, 15.220684 ], [ 145.730963, 15.220587 ], [ 145.731042, 15.220549 ], [ 145.731235, 15.220467 ], [ 145.731314, 15.220463 ], [ 145.731402, 15.220466 ], [ 145.731425, 15.22041 ], [ 145.731411, 15.220353 ], [ 145.731435, 15.22028 ], [ 145.731495, 15.220273 ], [ 145.731505, 15.220188 ], [ 145.731472, 15.220138 ], [ 145.731379, 15.220064 ], [ 145.731304, 15.220014 ], [ 145.731203, 15.219924 ], [ 145.73111, 15.219891 ], [ 145.731035, 15.219808 ], [ 145.730951, 15.219734 ], [ 145.730834, 15.21966 ], [ 145.730741, 15.219577 ], [ 145.730649, 15.21952 ], [ 145.730548, 15.219445 ], [ 145.730414, 15.219396 ], [ 145.730279, 15.219281 ], [ 145.730153, 15.219238 ], [ 145.730011, 15.219098 ], [ 145.729899, 15.219063 ], [ 145.729772, 15.219062 ], [ 145.729744, 15.218994 ], [ 145.72969, 15.21898 ], [ 145.729632, 15.218917 ], [ 145.729616, 15.218826 ], [ 145.729574, 15.218752 ], [ 145.729499, 15.218679 ], [ 145.729425, 15.218623 ], [ 145.72928, 15.218593 ], [ 145.729204, 15.218614 ], [ 145.72909, 15.218717 ], [ 145.729066, 15.218713 ], [ 145.729024, 15.218682 ], [ 145.729027, 15.218664 ], [ 145.729037, 15.218621 ], [ 145.729074, 15.218508 ], [ 145.729064, 15.218475 ], [ 145.729023, 15.218512 ], [ 145.728985, 15.21853 ], [ 145.728949, 15.218566 ], [ 145.728936, 15.218594 ], [ 145.728888, 15.218676 ], [ 145.728856, 15.218679 ], [ 145.728831, 15.218659 ], [ 145.728835, 15.218629 ], [ 145.728855, 15.218595 ], [ 145.728865, 15.218558 ], [ 145.728862, 15.218527 ], [ 145.728888, 15.218473 ], [ 145.72889, 15.218455 ], [ 145.728878, 15.218441 ], [ 145.728823, 15.218436 ], [ 145.728716, 15.218445 ], [ 145.728509, 15.218361 ], [ 145.728439, 15.21838 ], [ 145.728283, 15.218457 ], [ 145.728235, 15.218429 ], [ 145.728208, 15.218371 ], [ 145.728216, 15.218332 ], [ 145.728122, 15.218281 ], [ 145.728049, 15.218296 ], [ 145.727936, 15.218303 ], [ 145.727835, 15.218291 ], [ 145.727705, 15.21825 ], [ 145.72762, 15.218192 ], [ 145.727596, 15.218242 ], [ 145.727495, 15.218257 ], [ 145.727402, 15.218208 ], [ 145.727309, 15.218181 ], [ 145.727174, 15.218215 ], [ 145.72709, 15.21816 ], [ 145.726982, 15.218194 ], [ 145.726841, 15.218194 ], [ 145.726745, 15.218098 ], [ 145.726653, 15.218023 ], [ 145.726594, 15.217949 ], [ 145.726511, 15.21781 ], [ 145.726435, 15.217769 ], [ 145.72625, 15.217735 ], [ 145.726123, 15.217734 ], [ 145.726005, 15.217716 ], [ 145.725906, 15.217694 ], [ 145.725839, 15.217733 ], [ 145.725318, 15.217631 ], [ 145.725035, 15.217514 ], [ 145.724939, 15.2175 ], [ 145.724884, 15.217544 ], [ 145.724759, 15.21781 ], [ 145.724949, 15.218139 ], [ 145.725293, 15.218686 ], [ 145.725583, 15.219159 ], [ 145.725722, 15.219638 ], [ 145.725772, 15.21973 ], [ 145.725852, 15.219851 ], [ 145.725863, 15.219937 ], [ 145.725811, 15.219901 ], [ 145.725712, 15.219798 ], [ 145.725643, 15.219715 ], [ 145.7253, 15.218997 ], [ 145.724739, 15.218187 ], [ 145.724634, 15.218173 ], [ 145.724421, 15.218584 ], [ 145.724566, 15.218767 ], [ 145.724446, 15.21901 ], [ 145.724366, 15.219392 ], [ 145.724245, 15.21975 ], [ 145.724322, 15.219999 ], [ 145.724459, 15.220073 ], [ 145.724583, 15.22014 ], [ 145.724751, 15.220223 ], [ 145.724911, 15.220249 ], [ 145.725028, 15.22029 ], [ 145.725113, 15.220324 ], [ 145.725239, 15.220324 ], [ 145.725349, 15.22035 ], [ 145.72545, 15.220318 ], [ 145.725551, 15.220293 ], [ 145.725661, 15.220253 ], [ 145.725805, 15.220189 ], [ 145.725898, 15.220156 ], [ 145.725974, 15.220198 ], [ 145.726015, 15.220271 ], [ 145.726074, 15.220362 ], [ 145.726124, 15.220461 ], [ 145.726174, 15.22055 ], [ 145.726324, 15.220855 ], [ 145.726425, 15.220921 ], [ 145.726463, 15.220879 ], [ 145.726392, 15.220838 ], [ 145.726351, 15.220738 ], [ 145.726367, 15.220674 ], [ 145.726359, 15.220527 ], [ 145.726385, 15.220421 ], [ 145.726453, 15.220405 ], [ 145.726529, 15.220438 ], [ 145.726537, 15.220528 ], [ 145.726527, 15.220683 ], [ 145.726644, 15.220774 ], [ 145.726584, 15.221061 ], [ 145.726549, 15.2212 ], [ 145.726539, 15.221277 ], [ 145.726514, 15.221469 ], [ 145.726463, 15.2216 ], [ 145.726368, 15.221903 ], [ 145.726292, 15.221992 ], [ 145.72619, 15.222017 ], [ 145.726123, 15.221975 ], [ 145.726123, 15.221918 ], [ 145.726166, 15.221803 ], [ 145.72626, 15.221674 ], [ 145.726328, 15.221583 ], [ 145.726337, 15.221461 ], [ 145.726262, 15.221378 ], [ 145.726144, 15.22132 ], [ 145.726035, 15.221237 ], [ 145.725926, 15.221146 ], [ 145.725724, 15.221039 ], [ 145.725556, 15.22098 ], [ 145.725421, 15.22089 ], [ 145.725253, 15.220791 ], [ 145.725085, 15.2207 ], [ 145.724884, 15.220585 ], [ 145.724774, 15.220494 ], [ 145.724581, 15.220394 ], [ 145.724446, 15.220345 ], [ 145.724312, 15.220286 ], [ 145.724177, 15.220294 ], [ 145.724084, 15.220326 ], [ 145.723999, 15.220424 ], [ 145.723956, 15.220505 ], [ 145.723922, 15.220628 ], [ 145.723921, 15.220751 ], [ 145.723904, 15.220857 ], [ 145.72386, 15.221053 ], [ 145.723851, 15.221176 ], [ 145.723817, 15.221315 ], [ 145.723799, 15.221438 ], [ 145.723713, 15.221699 ], [ 145.723687, 15.221862 ], [ 145.723661, 15.221978 ], [ 145.723635, 15.222124 ], [ 145.723566, 15.222305 ], [ 145.723531, 15.222451 ], [ 145.72343, 15.222508 ], [ 145.723354, 15.222483 ], [ 145.723346, 15.222323 ], [ 145.72337, 15.222191 ], [ 145.723433, 15.222009 ], [ 145.723459, 15.221805 ], [ 145.723512, 15.221567 ], [ 145.723538, 15.221314 ], [ 145.723582, 15.221109 ], [ 145.723617, 15.220905 ], [ 145.723636, 15.220827 ], [ 145.723682, 15.22064 ], [ 145.72371, 15.220437 ], [ 145.723882, 15.21965 ], [ 145.72408, 15.218778 ], [ 145.724089, 15.218155 ], [ 145.724041, 15.217584 ], [ 145.723917, 15.217245 ], [ 145.723799, 15.217084 ], [ 145.723662, 15.216945 ], [ 145.722409, 15.216948 ], [ 145.721753, 15.216951 ], [ 145.721645, 15.216996 ], [ 145.721043, 15.217268 ], [ 145.720857, 15.217404 ], [ 145.720796, 15.217487 ], [ 145.720727, 15.217583 ], [ 145.720613, 15.21769 ], [ 145.720526, 15.217907 ], [ 145.720419, 15.21818 ], [ 145.72047, 15.218484 ], [ 145.720609, 15.218661 ], [ 145.720663, 15.218365 ], [ 145.720796, 15.218245 ], [ 145.721028, 15.218205 ], [ 145.721208, 15.218256 ], [ 145.721296, 15.218482 ], [ 145.721187, 15.218735 ], [ 145.720997, 15.218905 ], [ 145.720758, 15.219062 ], [ 145.720437, 15.219165 ], [ 145.720047, 15.219272 ], [ 145.719728, 15.219359 ], [ 145.71944, 15.219434 ], [ 145.718916, 15.219567 ], [ 145.718665, 15.219602 ], [ 145.718471, 15.219611 ], [ 145.718281, 15.219633 ], [ 145.718078, 15.219638 ], [ 145.717953, 15.21964 ], [ 145.717809, 15.219651 ], [ 145.71766, 15.219677 ], [ 145.717489, 15.219715 ], [ 145.717379, 15.21973 ], [ 145.717101, 15.219717 ], [ 145.716901, 15.219644 ], [ 145.716809, 15.219498 ], [ 145.716712, 15.219334 ], [ 145.716653, 15.219259 ], [ 145.716554, 15.219125 ], [ 145.716501, 15.21904 ], [ 145.716424, 15.218918 ], [ 145.716397, 15.218811 ], [ 145.716134, 15.217821 ], [ 145.715812, 15.217162 ], [ 145.715592, 15.216609 ], [ 145.715554, 15.216404 ], [ 145.715585, 15.216045 ], [ 145.715548, 15.215258 ], [ 145.715545, 15.214333 ], [ 145.715604, 15.214106 ], [ 145.715703, 15.213204 ], [ 145.715671, 15.213016 ], [ 145.715671, 15.2129 ], [ 145.715672, 15.212804 ], [ 145.71569, 15.212591 ], [ 145.715682, 15.212313 ], [ 145.715703, 15.212064 ], [ 145.715706, 15.211985 ], [ 145.715712, 15.211854 ], [ 145.715772, 15.21169 ], [ 145.71579, 15.211502 ], [ 145.715792, 15.21106 ], [ 145.715819, 15.210866 ], [ 145.715828, 15.210806 ], [ 145.71584, 15.210345 ], [ 145.715875, 15.210067 ], [ 145.715871, 15.209699 ], [ 145.715904, 15.209406 ], [ 145.715899, 15.208833 ], [ 145.715941, 15.208727 ], [ 145.716014, 15.208621 ], [ 145.716004, 15.208461 ], [ 145.716013, 15.208423 ], [ 145.716042, 15.208317 ], [ 145.716006, 15.208249 ], [ 145.716006, 15.208202 ], [ 145.716055, 15.208113 ], [ 145.716056, 15.20799 ], [ 145.716022, 15.207893 ], [ 145.715996, 15.207695 ], [ 145.71601, 15.207631 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "69", "COUNTYFP10": "110", "TRACTCE10": "000100", "GEOID10": "69110000100", "NAME10": "1", "NAMELSAD10": "Census Tract 1", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 22079487, "AWATER10": 0, "INTPTLAT10": "+15.2578725", "INTPTLON10": "+145.8004365" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.813588, 15.256699 ], [ 145.813563, 15.256703 ], [ 145.813562, 15.256732 ], [ 145.813573, 15.256799 ], [ 145.813553, 15.256816 ], [ 145.813525, 15.25682 ], [ 145.813469, 15.256836 ], [ 145.813446, 15.256882 ], [ 145.813367, 15.256932 ], [ 145.813269, 15.256947 ], [ 145.813243, 15.257036 ], [ 145.813234, 15.257127 ], [ 145.813208, 15.257217 ], [ 145.813216, 15.257306 ], [ 145.813299, 15.257343 ], [ 145.813383, 15.257372 ], [ 145.813486, 15.257463 ], [ 145.813479, 15.257478 ], [ 145.813434, 15.257582 ], [ 145.813406, 15.25766 ], [ 145.81334, 15.257782 ], [ 145.813247, 15.257815 ], [ 145.813154, 15.25783 ], [ 145.813075, 15.257883 ], [ 145.813054, 15.257997 ], [ 145.813068, 15.258117 ], [ 145.813241, 15.258175 ], [ 145.813363, 15.258184 ], [ 145.81347, 15.258203 ], [ 145.813505, 15.258161 ], [ 145.813638, 15.258133 ], [ 145.813591, 15.258029 ], [ 145.813684, 15.258022 ], [ 145.813777, 15.25803 ], [ 145.81387, 15.258023 ], [ 145.813971, 15.258023 ], [ 145.814055, 15.258064 ], [ 145.814148, 15.258073 ], [ 145.81425, 15.257974 ], [ 145.814141, 15.257997 ], [ 145.814067, 15.257958 ], [ 145.814156, 15.25793 ], [ 145.814122, 15.257872 ], [ 145.81425, 15.257853 ], [ 145.814113, 15.257714 ], [ 145.814089, 15.257633 ], [ 145.814089, 15.257566 ], [ 145.814055, 15.257485 ], [ 145.81416, 15.257434 ], [ 145.814125, 15.257327 ], [ 145.814132, 15.257221 ], [ 145.814134, 15.257207 ], [ 145.814074, 15.257167 ], [ 145.814069, 15.257103 ], [ 145.814103, 15.256988 ], [ 145.814, 15.256977 ], [ 145.813979, 15.25692 ], [ 145.813965, 15.256849 ], [ 145.813936, 15.256844 ], [ 145.813871, 15.256863 ], [ 145.813821, 15.256897 ], [ 145.813816, 15.256919 ], [ 145.813816, 15.256939 ], [ 145.813799, 15.256968 ], [ 145.813774, 15.256976 ], [ 145.813714, 15.256969 ], [ 145.813707, 15.256936 ], [ 145.813705, 15.2569 ], [ 145.813649, 15.256886 ], [ 145.813629, 15.256868 ], [ 145.813654, 15.256852 ], [ 145.813651, 15.256834 ], [ 145.81362, 15.256788 ], [ 145.813605, 15.256757 ], [ 145.813588, 15.256699 ] ] ], [ [ [ 145.820136, 15.259554 ], [ 145.820102, 15.259644 ], [ 145.820231, 15.259743 ], [ 145.820083, 15.259847 ], [ 145.819885, 15.259851 ], [ 145.819767, 15.259803 ], [ 145.819696, 15.259764 ], [ 145.819604, 15.259756 ], [ 145.819511, 15.259722 ], [ 145.819418, 15.259706 ], [ 145.819326, 15.259681 ], [ 145.819225, 15.25968 ], [ 145.819123, 15.259712 ], [ 145.81903, 15.259728 ], [ 145.818923, 15.259764 ], [ 145.818844, 15.259711 ], [ 145.818755, 15.259687 ], [ 145.81866, 15.259669 ], [ 145.818583, 15.259725 ], [ 145.818491, 15.259734 ], [ 145.818386, 15.259656 ], [ 145.818243, 15.25967 ], [ 145.818233, 15.259746 ], [ 145.818129, 15.259803 ], [ 145.818045, 15.259841 ], [ 145.817961, 15.259903 ], [ 145.817887, 15.259931 ], [ 145.817808, 15.259921 ], [ 145.817665, 15.259978 ], [ 145.81766, 15.260059 ], [ 145.817664, 15.260122 ], [ 145.817585, 15.260196 ], [ 145.817383, 15.260268 ], [ 145.81723, 15.260381 ], [ 145.817108, 15.260415 ], [ 145.817069, 15.260429 ], [ 145.817054, 15.260463 ], [ 145.816934, 15.260609 ], [ 145.816841, 15.260648 ], [ 145.816643, 15.2608 ], [ 145.816595, 15.260943 ], [ 145.816518, 15.261 ], [ 145.816434, 15.261041 ], [ 145.816357, 15.261098 ], [ 145.816291, 15.261132 ], [ 145.816133, 15.261189 ], [ 145.81603, 15.261199 ], [ 145.815918, 15.261242 ], [ 145.815817, 15.261242 ], [ 145.815724, 15.261233 ], [ 145.815632, 15.261217 ], [ 145.815539, 15.261192 ], [ 145.815446, 15.261183 ], [ 145.815354, 15.261158 ], [ 145.815282, 15.26113 ], [ 145.815151, 15.261103 ], [ 145.815062, 15.261069 ], [ 145.815008, 15.261044 ], [ 145.814944, 15.26103 ], [ 145.814841, 15.260991 ], [ 145.814797, 15.260957 ], [ 145.814718, 15.260918 ], [ 145.814645, 15.260862 ], [ 145.814478, 15.260774 ], [ 145.814305, 15.260691 ], [ 145.813986, 15.260509 ], [ 145.81379, 15.260416 ], [ 145.813677, 15.260349 ], [ 145.813579, 15.260272 ], [ 145.813505, 15.2602 ], [ 145.813432, 15.260113 ], [ 145.813314, 15.260007 ], [ 145.813265, 15.259974 ], [ 145.81329, 15.25995 ], [ 145.813256, 15.259902 ], [ 145.813241, 15.259844 ], [ 145.81317, 15.259715 ], [ 145.813097, 15.259599 ], [ 145.813043, 15.259537 ], [ 145.81297, 15.259499 ], [ 145.81293, 15.259474 ], [ 145.812813, 15.259364 ], [ 145.812774, 15.259292 ], [ 145.812764, 15.259248 ], [ 145.812708, 15.259129 ], [ 145.812641, 15.259063 ], [ 145.812557, 15.259006 ], [ 145.812313, 15.258868 ], [ 145.812032, 15.258796 ], [ 145.811707, 15.258807 ], [ 145.811393, 15.258718 ], [ 145.811226, 15.258614 ], [ 145.811147, 15.258564 ], [ 145.810931, 15.258394 ], [ 145.810924, 15.258389 ], [ 145.81069, 15.258238 ], [ 145.810527, 15.25804 ], [ 145.81043, 15.257772 ], [ 145.810426, 15.257613 ], [ 145.810496, 15.257522 ], [ 145.810604, 15.257385 ], [ 145.810585, 15.25726 ], [ 145.810535, 15.257216 ], [ 145.810497, 15.257183 ], [ 145.810749, 15.257156 ], [ 145.810847, 15.257204 ], [ 145.810814, 15.256865 ], [ 145.810884, 15.256769 ], [ 145.811154, 15.256953 ], [ 145.810963, 15.256684 ], [ 145.810831, 15.256525 ], [ 145.810629, 15.256491 ], [ 145.810625, 15.256309 ], [ 145.810763, 15.256348 ], [ 145.810813, 15.256195 ], [ 145.810814, 15.256066 ], [ 145.810489, 15.255959 ], [ 145.810562, 15.255716 ], [ 145.810509, 15.255538 ], [ 145.8105, 15.255405 ], [ 145.810552, 15.255294 ], [ 145.810622, 15.255161 ], [ 145.81079, 15.25498 ], [ 145.810816, 15.254865 ], [ 145.81087, 15.254823 ], [ 145.810911, 15.254756 ], [ 145.810861, 15.254689 ], [ 145.810832, 15.254617 ], [ 145.810828, 15.254501 ], [ 145.810882, 15.254402 ], [ 145.810971, 15.254316 ], [ 145.811083, 15.254265 ], [ 145.811142, 15.254192 ], [ 145.81115, 15.254073 ], [ 145.811205, 15.253935 ], [ 145.811274, 15.253882 ], [ 145.811321, 15.253817 ], [ 145.811372, 15.253735 ], [ 145.811364, 15.253658 ], [ 145.81138, 15.253557 ], [ 145.81146, 15.25341 ], [ 145.811662, 15.253254 ], [ 145.81162, 15.253171 ], [ 145.811553, 15.253097 ], [ 145.811545, 15.253007 ], [ 145.811621, 15.252951 ], [ 145.811714, 15.252942 ], [ 145.811798, 15.252985 ], [ 145.811832, 15.252915 ], [ 145.811838, 15.252887 ], [ 145.811852, 15.252823 ], [ 145.811968, 15.252772 ], [ 145.812011, 15.252691 ], [ 145.811984, 15.252605 ], [ 145.812087, 15.252527 ], [ 145.812181, 15.252487 ], [ 145.812037, 15.252432 ], [ 145.811968, 15.252365 ], [ 145.812122, 15.252306 ], [ 145.81221, 15.252281 ], [ 145.812185, 15.252232 ], [ 145.812087, 15.252241 ], [ 145.812082, 15.252218 ], [ 145.812073, 15.252079 ], [ 145.812217, 15.251971 ], [ 145.812125, 15.251938 ], [ 145.81204, 15.251987 ], [ 145.811964, 15.252043 ], [ 145.811855, 15.252206 ], [ 145.811781, 15.25236 ], [ 145.811658, 15.252291 ], [ 145.811639, 15.252096 ], [ 145.811571, 15.252018 ], [ 145.811472, 15.25199 ], [ 145.811439, 15.25187 ], [ 145.811299, 15.251783 ], [ 145.81124, 15.251691 ], [ 145.811258, 15.25159 ], [ 145.811197, 15.251476 ], [ 145.811271, 15.251419 ], [ 145.811262, 15.251299 ], [ 145.811193, 15.251271 ], [ 145.811134, 15.251332 ], [ 145.811089, 15.251457 ], [ 145.81102, 15.251394 ], [ 145.810922, 15.251293 ], [ 145.81083, 15.25126 ], [ 145.810771, 15.251186 ], [ 145.810711, 15.251125 ], [ 145.810569, 15.251052 ], [ 145.810569, 15.250989 ], [ 145.810469, 15.250914 ], [ 145.810437, 15.250817 ], [ 145.810385, 15.250774 ], [ 145.810284, 15.250825 ], [ 145.810161, 15.250792 ], [ 145.810142, 15.250657 ], [ 145.810058, 15.250695 ], [ 145.810044, 15.250575 ], [ 145.809956, 15.250532 ], [ 145.809857, 15.25057 ], [ 145.809671, 15.250396 ], [ 145.809745, 15.250334 ], [ 145.809671, 15.250291 ], [ 145.809587, 15.250295 ], [ 145.809663, 15.250238 ], [ 145.809701, 15.250186 ], [ 145.809653, 15.250124 ], [ 145.80963, 15.250074 ], [ 145.809527, 15.250118 ], [ 145.809453, 15.250122 ], [ 145.809428, 15.250204 ], [ 145.809329, 15.250203 ], [ 145.809305, 15.250113 ], [ 145.809404, 15.250079 ], [ 145.809366, 15.250025 ], [ 145.809296, 15.250012 ], [ 145.809247, 15.249978 ], [ 145.809193, 15.24992 ], [ 145.809124, 15.249906 ], [ 145.809095, 15.249857 ], [ 145.809159, 15.249819 ], [ 145.80914, 15.249767 ], [ 145.80914, 15.249724 ], [ 145.80913, 15.249686 ], [ 145.809091, 15.249652 ], [ 145.809072, 15.249595 ], [ 145.808998, 15.249508 ], [ 145.809072, 15.249484 ], [ 145.809058, 15.249441 ], [ 145.809008, 15.249436 ], [ 145.808959, 15.249407 ], [ 145.808945, 15.249374 ], [ 145.808856, 15.249374 ], [ 145.808802, 15.24935 ], [ 145.808798, 15.249268 ], [ 145.808822, 15.24922 ], [ 145.808931, 15.249216 ], [ 145.808935, 15.249194 ], [ 145.808848, 15.249103 ], [ 145.808828, 15.249036 ], [ 145.808819, 15.248892 ], [ 145.808672, 15.248801 ], [ 145.808727, 15.24871 ], [ 145.808525, 15.248618 ], [ 145.808565, 15.248561 ], [ 145.808644, 15.24861 ], [ 145.808546, 15.248498 ], [ 145.808467, 15.24847 ], [ 145.808626, 15.24826 ], [ 145.808518, 15.248188 ], [ 145.808592, 15.248126 ], [ 145.808448, 15.247943 ], [ 145.808488, 15.247891 ], [ 145.808458, 15.247857 ], [ 145.808522, 15.2478 ], [ 145.808434, 15.247748 ], [ 145.808434, 15.247685 ], [ 145.808548, 15.24753 ], [ 145.808514, 15.247479 ], [ 145.808555, 15.247365 ], [ 145.808634, 15.247285 ], [ 145.808693, 15.247203 ], [ 145.808566, 15.247126 ], [ 145.808532, 15.247068 ], [ 145.808689, 15.24706 ], [ 145.808685, 15.246959 ], [ 145.808602, 15.246863 ], [ 145.808558, 15.246753 ], [ 145.808474, 15.246718 ], [ 145.80848, 15.246676 ], [ 145.808637, 15.246648 ], [ 145.808534, 15.246585 ], [ 145.808628, 15.246528 ], [ 145.808619, 15.246361 ], [ 145.80864, 15.246163 ], [ 145.808443, 15.246073 ], [ 145.808365, 15.245957 ], [ 145.808356, 15.245891 ], [ 145.808366, 15.245805 ], [ 145.808485, 15.245776 ], [ 145.808412, 15.245638 ], [ 145.808462, 15.245465 ], [ 145.808368, 15.245484 ], [ 145.808293, 15.245637 ], [ 145.808284, 15.245475 ], [ 145.808045, 15.245587 ], [ 145.80786, 15.245537 ], [ 145.807767, 15.245547 ], [ 145.807663, 15.245504 ], [ 145.807616, 15.245389 ], [ 145.807549, 15.245323 ], [ 145.807532, 15.245232 ], [ 145.807541, 15.245142 ], [ 145.807609, 15.245078 ], [ 145.807509, 15.244968 ], [ 145.80747, 15.244915 ], [ 145.807441, 15.24481 ], [ 145.807436, 15.244719 ], [ 145.807442, 15.244623 ], [ 145.807422, 15.244537 ], [ 145.807413, 15.244427 ], [ 145.807389, 15.244341 ], [ 145.807471, 15.244258 ], [ 145.807488, 15.244077 ], [ 145.807539, 15.243996 ], [ 145.807565, 15.243906 ], [ 145.80765, 15.243742 ], [ 145.80771, 15.243669 ], [ 145.807846, 15.243539 ], [ 145.807867, 15.243453 ], [ 145.807917, 15.243401 ], [ 145.808074, 15.243416 ], [ 145.80806, 15.243311 ], [ 145.807937, 15.243248 ], [ 145.808031, 15.243163 ], [ 145.808139, 15.243249 ], [ 145.808252, 15.243148 ], [ 145.808345, 15.243116 ], [ 145.808438, 15.243108 ], [ 145.808514, 15.243174 ], [ 145.808597, 15.243219 ], [ 145.80886, 15.243135 ], [ 145.808953, 15.243119 ], [ 145.809037, 15.243063 ], [ 145.80913, 15.243046 ], [ 145.809214, 15.243087 ], [ 145.809307, 15.24308 ], [ 145.809375, 15.243015 ], [ 145.809468, 15.24299 ], [ 145.809527, 15.242917 ], [ 145.809756, 15.242673 ], [ 145.809799, 15.242591 ], [ 145.809823, 15.242551 ], [ 145.80985, 15.24251 ], [ 145.809844, 15.242397 ], [ 145.809952, 15.242355 ], [ 145.809933, 15.242249 ], [ 145.809993, 15.242159 ], [ 145.810114, 15.24211 ], [ 145.810112, 15.241997 ], [ 145.810147, 15.241868 ], [ 145.810212, 15.241744 ], [ 145.810257, 15.241677 ], [ 145.810378, 15.24162 ], [ 145.810353, 15.24153 ], [ 145.810253, 15.2415 ], [ 145.810202, 15.241415 ], [ 145.810057, 15.241274 ], [ 145.810051, 15.241185 ], [ 145.809959, 15.241143 ], [ 145.809909, 15.241061 ], [ 145.809892, 15.240971 ], [ 145.809859, 15.240881 ], [ 145.809851, 15.24079 ], [ 145.809818, 15.240701 ], [ 145.80976, 15.240626 ], [ 145.809718, 15.240544 ], [ 145.809642, 15.240486 ], [ 145.809592, 15.240405 ], [ 145.809559, 15.240314 ], [ 145.809483, 15.240256 ], [ 145.80939, 15.240248 ], [ 145.809425, 15.240158 ], [ 145.80945, 15.240068 ], [ 145.809366, 15.240026 ], [ 145.809307, 15.2401 ], [ 145.809248, 15.240026 ], [ 145.809164, 15.239977 ], [ 145.80908, 15.239935 ], [ 145.809013, 15.23986 ], [ 145.808938, 15.239804 ], [ 145.808896, 15.239721 ], [ 145.808871, 15.239631 ], [ 145.808804, 15.239566 ], [ 145.808728, 15.239508 ], [ 145.808653, 15.239474 ], [ 145.808461, 15.239453 ], [ 145.808511, 15.23931 ], [ 145.808342, 15.239218 ], [ 145.808351, 15.239129 ], [ 145.808343, 15.239039 ], [ 145.808252, 15.238945 ], [ 145.808243, 15.238868 ], [ 145.808252, 15.238776 ], [ 145.808175, 15.23871 ], [ 145.808143, 15.238662 ], [ 145.808059, 15.238611 ], [ 145.808051, 15.238521 ], [ 145.808068, 15.238432 ], [ 145.807987, 15.238374 ], [ 145.807844, 15.238349 ], [ 145.807859, 15.238234 ], [ 145.807774, 15.238192 ], [ 145.807775, 15.238095 ], [ 145.807682, 15.238069 ], [ 145.807477, 15.238003 ], [ 145.807387, 15.23806 ], [ 145.807295, 15.238027 ], [ 145.807253, 15.237944 ], [ 145.807237, 15.237764 ], [ 145.807178, 15.237689 ], [ 145.807086, 15.237656 ], [ 145.807086, 15.237559 ], [ 145.807036, 15.237476 ], [ 145.806944, 15.237451 ], [ 145.80686, 15.237394 ], [ 145.806756, 15.237401 ], [ 145.806692, 15.237353 ], [ 145.806667, 15.237253 ], [ 145.806577, 15.237175 ], [ 145.806624, 15.23709 ], [ 145.806516, 15.237064 ], [ 145.806449, 15.236998 ], [ 145.80639, 15.236925 ], [ 145.806315, 15.236867 ], [ 145.806213, 15.236866 ], [ 145.80612, 15.236881 ], [ 145.806028, 15.236906 ], [ 145.805935, 15.236889 ], [ 145.805851, 15.236839 ], [ 145.805848, 15.236834 ], [ 145.805794, 15.236741 ], [ 145.805666, 15.23679 ], [ 145.805573, 15.236772 ], [ 145.805472, 15.236772 ], [ 145.805379, 15.236788 ], [ 145.805303, 15.236844 ], [ 145.80521, 15.236853 ], [ 145.805168, 15.236754 ], [ 145.80516, 15.236664 ], [ 145.805093, 15.236598 ], [ 145.804992, 15.236597 ], [ 145.804899, 15.236589 ], [ 145.804806, 15.236621 ], [ 145.804714, 15.236637 ], [ 145.804528, 15.236685 ], [ 145.804443, 15.236726 ], [ 145.804359, 15.236774 ], [ 145.804266, 15.236806 ], [ 145.804173, 15.236822 ], [ 145.804088, 15.236863 ], [ 145.803995, 15.23692 ], [ 145.803911, 15.23696 ], [ 145.803726, 15.237022 ], [ 145.803519, 15.237026 ], [ 145.803534, 15.236805 ], [ 145.80354, 15.236657 ], [ 145.803511, 15.236576 ], [ 145.803568, 15.236476 ], [ 145.803501, 15.23641 ], [ 145.803408, 15.236392 ], [ 145.803332, 15.23645 ], [ 145.803247, 15.23649 ], [ 145.803154, 15.236464 ], [ 145.803062, 15.236481 ], [ 145.802978, 15.23644 ], [ 145.802832, 15.236457 ], [ 145.802674, 15.236443 ], [ 145.802695, 15.236332 ], [ 145.80273, 15.236203 ], [ 145.80277, 15.236131 ], [ 145.802528, 15.236173 ], [ 145.802469, 15.236173 ], [ 145.80238, 15.236223 ], [ 145.802346, 15.236125 ], [ 145.802229, 15.236124 ], [ 145.802069, 15.236271 ], [ 145.801961, 15.236219 ], [ 145.801933, 15.236003 ], [ 145.801968, 15.235878 ], [ 145.802112, 15.23582 ], [ 145.802107, 15.23575 ], [ 145.80229, 15.235781 ], [ 145.802299, 15.23569 ], [ 145.802341, 15.235609 ], [ 145.802412, 15.235767 ], [ 145.802491, 15.235772 ], [ 145.802502, 15.235667 ], [ 145.802493, 15.235489 ], [ 145.80248, 15.23545 ], [ 145.802464, 15.235403 ], [ 145.802449, 15.235322 ], [ 145.802479, 15.235209 ], [ 145.802521, 15.235127 ], [ 145.802505, 15.23505 ], [ 145.80255, 15.234969 ], [ 145.802657, 15.234898 ], [ 145.802641, 15.234809 ], [ 145.802583, 15.234782 ], [ 145.802617, 15.23462 ], [ 145.802617, 15.234521 ], [ 145.802609, 15.234431 ], [ 145.802728, 15.234357 ], [ 145.802714, 15.234304 ], [ 145.802571, 15.234303 ], [ 145.802577, 15.234243 ], [ 145.80251, 15.234062 ], [ 145.802443, 15.233996 ], [ 145.802351, 15.233955 ], [ 145.802309, 15.233872 ], [ 145.802276, 15.233783 ], [ 145.802195, 15.233723 ], [ 145.802185, 15.233607 ], [ 145.802193, 15.23352 ], [ 145.80211, 15.233315 ], [ 145.802017, 15.233339 ], [ 145.801958, 15.233265 ], [ 145.801934, 15.233175 ], [ 145.801858, 15.233117 ], [ 145.801741, 15.232969 ], [ 145.801648, 15.232953 ], [ 145.801555, 15.232919 ], [ 145.801497, 15.232845 ], [ 145.801421, 15.232787 ], [ 145.801337, 15.232737 ], [ 145.801253, 15.232696 ], [ 145.801203, 15.232615 ], [ 145.801187, 15.232524 ], [ 145.801145, 15.232433 ], [ 145.801086, 15.23236 ], [ 145.801045, 15.232278 ], [ 145.800969, 15.23222 ], [ 145.800885, 15.232179 ], [ 145.800792, 15.232146 ], [ 145.800694, 15.232089 ], [ 145.80065, 15.231997 ], [ 145.800642, 15.231899 ], [ 145.8006, 15.231817 ], [ 145.800567, 15.231726 ], [ 145.800508, 15.231653 ], [ 145.800467, 15.231571 ], [ 145.800417, 15.231488 ], [ 145.800375, 15.231407 ], [ 145.800342, 15.231218 ], [ 145.800343, 15.23112 ], [ 145.800318, 15.231029 ], [ 145.800234, 15.23098 ], [ 145.800158, 15.230922 ], [ 145.800105, 15.230903 ], [ 145.800066, 15.230889 ], [ 145.79999, 15.230831 ], [ 145.799906, 15.230782 ], [ 145.799793, 15.230735 ], [ 145.799764, 15.230643 ], [ 145.799764, 15.230533 ], [ 145.799841, 15.230454 ], [ 145.799858, 15.230405 ], [ 145.799673, 15.230306 ], [ 145.799648, 15.230215 ], [ 145.799598, 15.230133 ], [ 145.799531, 15.230067 ], [ 145.799516, 15.230001 ], [ 145.799442, 15.229992 ], [ 145.799448, 15.229796 ], [ 145.79928, 15.229714 ], [ 145.799208, 15.22965 ], [ 145.799317, 15.229546 ], [ 145.799189, 15.229373 ], [ 145.79911, 15.229406 ], [ 145.799003, 15.229425 ], [ 145.798961, 15.229344 ], [ 145.798894, 15.229278 ], [ 145.798819, 15.22922 ], [ 145.798769, 15.229138 ], [ 145.798735, 15.229048 ], [ 145.798674, 15.228959 ], [ 145.798703, 15.228868 ], [ 145.798661, 15.228785 ], [ 145.798569, 15.22876 ], [ 145.798501, 15.228694 ], [ 145.798468, 15.228605 ], [ 145.798367, 15.228604 ], [ 145.798214, 15.228717 ], [ 145.798109, 15.228721 ], [ 145.798045, 15.228702 ], [ 145.797967, 15.228697 ], [ 145.797987, 15.228639 ], [ 145.797849, 15.228624 ], [ 145.797751, 15.228707 ], [ 145.797658, 15.228657 ], [ 145.797566, 15.228623 ], [ 145.797473, 15.228607 ], [ 145.797372, 15.228607 ], [ 145.797279, 15.228581 ], [ 145.797094, 15.228515 ], [ 145.797002, 15.228498 ], [ 145.7969, 15.228498 ], [ 145.796698, 15.22853 ], [ 145.796605, 15.22852 ], [ 145.796529, 15.228463 ], [ 145.796463, 15.228388 ], [ 145.796378, 15.228347 ], [ 145.796286, 15.228339 ], [ 145.796219, 15.228265 ], [ 145.796134, 15.228224 ], [ 145.796042, 15.228231 ], [ 145.795949, 15.228246 ], [ 145.795856, 15.228222 ], [ 145.795806, 15.228205 ], [ 145.795723, 15.228016 ], [ 145.795618, 15.227948 ], [ 145.795594, 15.227876 ], [ 145.795387, 15.227856 ], [ 145.795299, 15.227912 ], [ 145.795251, 15.227948 ], [ 145.795158, 15.227956 ], [ 145.795012, 15.227944 ], [ 145.794969, 15.227762 ], [ 145.794905, 15.227772 ], [ 145.79483, 15.227847 ], [ 145.794729, 15.227839 ], [ 145.794644, 15.227798 ], [ 145.79456, 15.227749 ], [ 145.794485, 15.227691 ], [ 145.794401, 15.227649 ], [ 145.794325, 15.227584 ], [ 145.794241, 15.227533 ], [ 145.794149, 15.2275 ], [ 145.794056, 15.22754 ], [ 145.793988, 15.227614 ], [ 145.793911, 15.227671 ], [ 145.793827, 15.227614 ], [ 145.79376, 15.227548 ], [ 145.793703, 15.227449 ], [ 145.793515, 15.227525 ], [ 145.79344, 15.22763 ], [ 145.793302, 15.227729 ], [ 145.793316, 15.227801 ], [ 145.793311, 15.227868 ], [ 145.793294, 15.227937 ], [ 145.79326, 15.228121 ], [ 145.793186, 15.228245 ], [ 145.792949, 15.22833 ], [ 145.792916, 15.228298 ], [ 145.79289, 15.228273 ], [ 145.792974, 15.228235 ], [ 145.792994, 15.228124 ], [ 145.792802, 15.228067 ], [ 145.79268, 15.227917 ], [ 145.792617, 15.227797 ], [ 145.792696, 15.227702 ], [ 145.792689, 15.227615 ], [ 145.792608, 15.227529 ], [ 145.792619, 15.227434 ], [ 145.792657, 15.227336 ], [ 145.792615, 15.227255 ], [ 145.792512, 15.22719 ], [ 145.792507, 15.22709 ], [ 145.792444, 15.226988 ], [ 145.792494, 15.226903 ], [ 145.792405, 15.226873 ], [ 145.792247, 15.226968 ], [ 145.792233, 15.226777 ], [ 145.792097, 15.226669 ], [ 145.792042, 15.22656 ], [ 145.791958, 15.226608 ], [ 145.791874, 15.226698 ], [ 145.791756, 15.226644 ], [ 145.791699, 15.226382 ], [ 145.791808, 15.226162 ], [ 145.791607, 15.226079 ], [ 145.791451, 15.226056 ], [ 145.791362, 15.225903 ], [ 145.791161, 15.225728 ], [ 145.791084, 15.225728 ], [ 145.790892, 15.225727 ], [ 145.790623, 15.225769 ], [ 145.790421, 15.225768 ], [ 145.790331, 15.225708 ], [ 145.790287, 15.22568 ], [ 145.790288, 15.225571 ], [ 145.790311, 15.225418 ], [ 145.789997, 15.225606 ], [ 145.789814, 15.225713 ], [ 145.789633, 15.225859 ], [ 145.78956, 15.225909 ], [ 145.789396, 15.226116 ], [ 145.789333, 15.226194 ], [ 145.789344, 15.226356 ], [ 145.789292, 15.226465 ], [ 145.789186, 15.226479 ], [ 145.78905, 15.22646 ], [ 145.788992, 15.226508 ], [ 145.786897, 15.228248 ], [ 145.783867, 15.232066 ], [ 145.781873, 15.233981 ], [ 145.780288, 15.235444 ], [ 145.777129, 15.238608 ], [ 145.773588, 15.242111 ], [ 145.773229, 15.242446 ], [ 145.771414, 15.244337 ], [ 145.77096, 15.24483 ], [ 145.770837, 15.244968 ], [ 145.769563, 15.246298 ], [ 145.769282, 15.246579 ], [ 145.769254, 15.24662 ], [ 145.768941, 15.24696 ], [ 145.768749, 15.247161 ], [ 145.76815, 15.247877 ], [ 145.768268, 15.248009 ], [ 145.768343, 15.24805 ], [ 145.768349, 15.248055 ], [ 145.768411, 15.2481 ], [ 145.768486, 15.248149 ], [ 145.768545, 15.248215 ], [ 145.76854, 15.248272 ], [ 145.76867, 15.248339 ], [ 145.768738, 15.248387 ], [ 145.768716, 15.248469 ], [ 145.768701, 15.248603 ], [ 145.768732, 15.248775 ], [ 145.768786, 15.248798 ], [ 145.768706, 15.248871 ], [ 145.768784, 15.249034 ], [ 145.768754, 15.249096 ], [ 145.768859, 15.249199 ], [ 145.768893, 15.249298 ], [ 145.768871, 15.249378 ], [ 145.768934, 15.24947 ], [ 145.769001, 15.249528 ], [ 145.768939, 15.249618 ], [ 145.768997, 15.249695 ], [ 145.769056, 15.249815 ], [ 145.769173, 15.249983 ], [ 145.769285, 15.250093 ], [ 145.76935, 15.250173 ], [ 145.769383, 15.250214 ], [ 145.769537, 15.250194 ], [ 145.76958, 15.250281 ], [ 145.769664, 15.250325 ], [ 145.769762, 15.250364 ], [ 145.769873, 15.250416 ], [ 145.770041, 15.250434 ], [ 145.770126, 15.250435 ], [ 145.770142, 15.250438 ], [ 145.77021, 15.250451 ], [ 145.770294, 15.250451 ], [ 145.770378, 15.250485 ], [ 145.770446, 15.250493 ], [ 145.770657, 15.250536 ], [ 145.770741, 15.25056 ], [ 145.770816, 15.250602 ], [ 145.7709, 15.250626 ], [ 145.771168, 15.250724 ], [ 145.771422, 15.250818 ], [ 145.771801, 15.250951 ], [ 145.77213, 15.251001 ], [ 145.772517, 15.251102 ], [ 145.77293, 15.251219 ], [ 145.773906, 15.251487 ], [ 145.774209, 15.251611 ], [ 145.774255, 15.251626 ], [ 145.774335, 15.251653 ], [ 145.774597, 15.25167 ], [ 145.774706, 15.251729 ], [ 145.774714, 15.251777 ], [ 145.774814, 15.251926 ], [ 145.774899, 15.251975 ], [ 145.77505, 15.251968 ], [ 145.77516, 15.251984 ], [ 145.775174, 15.251989 ], [ 145.77548, 15.252101 ], [ 145.775825, 15.252234 ], [ 145.776102, 15.252415 ], [ 145.77637, 15.25255 ], [ 145.77648, 15.252606 ], [ 145.776817, 15.252829 ], [ 145.777195, 15.252995 ], [ 145.777505, 15.253267 ], [ 145.778059, 15.253777 ], [ 145.778621, 15.254239 ], [ 145.779116, 15.254807 ], [ 145.779409, 15.255074 ], [ 145.779603, 15.255251 ], [ 145.779955, 15.255629 ], [ 145.78008, 15.255753 ], [ 145.780224, 15.255779 ], [ 145.78038, 15.255944 ], [ 145.780403, 15.255969 ], [ 145.780433, 15.256 ], [ 145.780473, 15.256046 ], [ 145.780496, 15.256073 ], [ 145.780835, 15.256469 ], [ 145.780977, 15.256683 ], [ 145.781012, 15.256713 ], [ 145.781501, 15.25713 ], [ 145.781603, 15.257125 ], [ 145.781692, 15.257242 ], [ 145.781757, 15.257531 ], [ 145.78179, 15.257662 ], [ 145.78177, 15.257766 ], [ 145.781848, 15.257899 ], [ 145.781858, 15.258023 ], [ 145.781964, 15.258105 ], [ 145.782039, 15.258278 ], [ 145.782114, 15.258384 ], [ 145.78213, 15.258622 ], [ 145.78215, 15.258697 ], [ 145.782177, 15.258792 ], [ 145.782272, 15.258925 ], [ 145.782313, 15.259138 ], [ 145.782337, 15.259302 ], [ 145.782299, 15.259372 ], [ 145.782299, 15.259474 ], [ 145.782353, 15.259508 ], [ 145.782361, 15.259589 ], [ 145.782322, 15.259642 ], [ 145.782298, 15.259683 ], [ 145.782342, 15.259834 ], [ 145.782255, 15.259898 ], [ 145.782272, 15.259954 ], [ 145.78228, 15.25998 ], [ 145.782341, 15.260081 ], [ 145.782302, 15.260159 ], [ 145.782298, 15.260252 ], [ 145.782255, 15.260333 ], [ 145.782229, 15.260416 ], [ 145.782246, 15.260497 ], [ 145.782269, 15.260573 ], [ 145.782281, 15.260666 ], [ 145.782363, 15.260945 ], [ 145.782362, 15.261039 ], [ 145.782355, 15.261155 ], [ 145.782403, 15.261189 ], [ 145.782444, 15.261211 ], [ 145.782469, 15.261293 ], [ 145.782468, 15.261383 ], [ 145.782552, 15.261539 ], [ 145.782562, 15.261565 ], [ 145.782585, 15.261621 ], [ 145.782652, 15.261679 ], [ 145.782711, 15.261745 ], [ 145.782761, 15.26181 ], [ 145.782828, 15.261867 ], [ 145.782895, 15.261917 ], [ 145.78298, 15.261951 ], [ 145.783047, 15.262009 ], [ 145.783122, 15.26205 ], [ 145.783198, 15.262099 ], [ 145.783282, 15.262132 ], [ 145.783416, 15.262248 ], [ 145.783492, 15.262297 ], [ 145.783694, 15.262446 ], [ 145.783842, 15.262576 ], [ 145.784023, 15.262696 ], [ 145.784234, 15.262856 ], [ 145.784323, 15.262952 ], [ 145.784382, 15.26305 ], [ 145.78439, 15.263063 ], [ 145.784457, 15.263228 ], [ 145.784498, 15.263301 ], [ 145.784557, 15.263367 ], [ 145.784633, 15.263408 ], [ 145.784717, 15.263433 ], [ 145.784851, 15.263532 ], [ 145.784846, 15.263612 ], [ 145.784845, 15.263757 ], [ 145.784833, 15.263861 ], [ 145.784904, 15.263961 ], [ 145.78497, 15.264025 ], [ 145.78508, 15.264095 ], [ 145.78511, 15.264142 ], [ 145.785169, 15.264334 ], [ 145.785198, 15.264491 ], [ 145.785197, 15.264631 ], [ 145.785268, 15.264713 ], [ 145.78531, 15.264784 ], [ 145.785315, 15.264865 ], [ 145.785339, 15.264976 ], [ 145.785362, 15.265057 ], [ 145.785398, 15.265039 ], [ 145.785422, 15.265126 ], [ 145.785389, 15.265191 ], [ 145.785393, 15.265272 ], [ 145.78545, 15.265319 ], [ 145.785498, 15.265459 ], [ 145.785569, 15.265565 ], [ 145.785622, 15.265657 ], [ 145.785711, 15.265786 ], [ 145.785753, 15.265897 ], [ 145.785776, 15.265984 ], [ 145.785848, 15.266071 ], [ 145.785919, 15.266119 ], [ 145.785931, 15.266223 ], [ 145.785924, 15.266339 ], [ 145.785966, 15.26638 ], [ 145.785995, 15.266456 ], [ 145.786055, 15.266469 ], [ 145.786025, 15.266526 ], [ 145.786066, 15.266689 ], [ 145.786167, 15.266784 ], [ 145.786292, 15.266929 ], [ 145.786375, 15.267051 ], [ 145.786519, 15.267169 ], [ 145.786698, 15.267216 ], [ 145.786828, 15.267343 ], [ 145.786945, 15.267457 ], [ 145.787345, 15.267784 ], [ 145.787559, 15.267972 ], [ 145.787887, 15.26827 ], [ 145.788161, 15.268549 ], [ 145.788358, 15.268749 ], [ 145.788454, 15.268797 ], [ 145.788506, 15.268874 ], [ 145.788556, 15.26894 ], [ 145.788624, 15.26899 ], [ 145.788691, 15.269047 ], [ 145.788758, 15.269113 ], [ 145.788808, 15.269179 ], [ 145.788867, 15.269244 ], [ 145.7889, 15.269276 ], [ 145.789001, 15.269376 ], [ 145.789118, 15.269508 ], [ 145.789168, 15.269574 ], [ 145.789227, 15.26964 ], [ 145.789294, 15.269705 ], [ 145.789345, 15.269771 ], [ 145.789403, 15.269837 ], [ 145.78947, 15.269895 ], [ 145.789529, 15.269961 ], [ 145.789596, 15.270027 ], [ 145.789663, 15.270084 ], [ 145.789798, 15.270183 ], [ 145.789865, 15.270241 ], [ 145.790041, 15.270438 ], [ 145.790108, 15.270496 ], [ 145.790175, 15.270562 ], [ 145.790242, 15.270619 ], [ 145.790309, 15.270669 ], [ 145.790385, 15.270718 ], [ 145.790452, 15.270768 ], [ 145.790528, 15.270817 ], [ 145.790595, 15.270875 ], [ 145.790654, 15.270941 ], [ 145.790704, 15.271007 ], [ 145.790779, 15.271056 ], [ 145.790846, 15.271114 ], [ 145.790897, 15.27118 ], [ 145.790972, 15.271221 ], [ 145.791006, 15.271263 ], [ 145.791107, 15.271353 ], [ 145.791157, 15.271418 ], [ 145.791167, 15.271423 ], [ 145.791233, 15.271461 ], [ 145.791317, 15.271502 ], [ 145.791401, 15.271535 ], [ 145.791468, 15.271584 ], [ 145.791535, 15.271642 ], [ 145.791687, 15.271724 ], [ 145.791829, 15.271823 ], [ 145.791905, 15.271865 ], [ 145.791989, 15.271906 ], [ 145.792073, 15.27194 ], [ 145.792149, 15.271981 ], [ 145.792233, 15.272006 ], [ 145.792317, 15.272039 ], [ 145.792393, 15.27208 ], [ 145.792485, 15.272121 ], [ 145.792654, 15.272172 ], [ 145.79273, 15.272213 ], [ 145.792814, 15.272246 ], [ 145.792898, 15.272272 ], [ 145.792982, 15.272288 ], [ 145.793066, 15.272321 ], [ 145.79315, 15.272347 ], [ 145.793218, 15.272395 ], [ 145.793302, 15.272429 ], [ 145.793394, 15.272494 ], [ 145.793448, 15.272593 ], [ 145.793465, 15.27264 ], [ 145.793483, 15.272662 ], [ 145.793587, 15.272709 ], [ 145.793637, 15.272775 ], [ 145.793696, 15.272841 ], [ 145.793738, 15.272915 ], [ 145.793771, 15.272996 ], [ 145.793796, 15.273079 ], [ 145.793787, 15.27316 ], [ 145.793795, 15.273243 ], [ 145.793837, 15.273316 ], [ 145.793856, 15.273427 ], [ 145.793903, 15.273566 ], [ 145.793907, 15.27363 ], [ 145.793876, 15.273849 ], [ 145.793892, 15.27393 ], [ 145.7939, 15.274013 ], [ 145.793883, 15.274094 ], [ 145.79384, 15.274176 ], [ 145.793806, 15.274257 ], [ 145.79378, 15.27434 ], [ 145.79378, 15.274429 ], [ 145.793751, 15.27452 ], [ 145.793804, 15.274613 ], [ 145.793828, 15.274683 ], [ 145.793904, 15.274741 ], [ 145.793904, 15.274831 ], [ 145.793895, 15.274921 ], [ 145.793928, 15.275009 ], [ 145.793868, 15.275137 ], [ 145.793861, 15.275234 ], [ 145.793959, 15.275254 ], [ 145.794092, 15.27525 ], [ 145.794171, 15.275336 ], [ 145.794213, 15.275422 ], [ 145.794237, 15.275505 ], [ 145.794406, 15.275554 ], [ 145.794439, 15.275637 ], [ 145.794434, 15.275701 ], [ 145.794506, 15.275751 ], [ 145.79459, 15.275744 ], [ 145.794674, 15.275752 ], [ 145.794733, 15.275818 ], [ 145.794741, 15.2759 ], [ 145.794727, 15.275922 ], [ 145.794699, 15.275971 ], [ 145.794816, 15.276048 ], [ 145.794905, 15.276081 ], [ 145.795092, 15.276116 ], [ 145.79515, 15.276148 ], [ 145.795198, 15.276164 ], [ 145.795262, 15.276194 ], [ 145.795301, 15.276231 ], [ 145.795399, 15.276304 ], [ 145.795468, 15.276362 ], [ 145.795704, 15.276507 ], [ 145.795876, 15.276603 ], [ 145.795944, 15.276613 ], [ 145.796156, 15.276711 ], [ 145.796264, 15.276735 ], [ 145.796353, 15.276735 ], [ 145.796446, 15.276783 ], [ 145.796535, 15.276812 ], [ 145.796589, 15.276812 ], [ 145.79681, 15.276957 ], [ 145.796864, 15.276944 ], [ 145.796963, 15.276968 ], [ 145.796995, 15.277042 ], [ 145.797071, 15.277084 ], [ 145.797149, 15.277108 ], [ 145.797238, 15.277051 ], [ 145.797346, 15.27709 ], [ 145.797459, 15.277104 ], [ 145.797685, 15.277259 ], [ 145.797818, 15.277283 ], [ 145.797812, 15.277374 ], [ 145.797879, 15.277424 ], [ 145.797963, 15.27744 ], [ 145.798059, 15.277443 ], [ 145.798147, 15.277452 ], [ 145.798231, 15.277487 ], [ 145.798384, 15.27759 ], [ 145.798459, 15.277631 ], [ 145.798501, 15.277705 ], [ 145.798577, 15.277746 ], [ 145.798661, 15.277771 ], [ 145.798737, 15.277733 ], [ 145.798791, 15.277772 ], [ 145.798838, 15.277838 ], [ 145.798914, 15.277879 ], [ 145.798972, 15.277945 ], [ 145.799022, 15.278011 ], [ 145.799089, 15.278069 ], [ 145.799107, 15.278142 ], [ 145.79921, 15.278186 ], [ 145.799232, 15.278282 ], [ 145.79929, 15.278348 ], [ 145.799357, 15.278414 ], [ 145.799425, 15.278474 ], [ 145.799459, 15.27855 ], [ 145.799491, 15.278636 ], [ 145.799541, 15.27871 ], [ 145.799608, 15.278767 ], [ 145.799667, 15.278833 ], [ 145.799734, 15.278998 ], [ 145.7999, 15.279059 ], [ 145.79991, 15.279121 ], [ 145.799943, 15.279203 ], [ 145.800002, 15.279269 ], [ 145.800161, 15.279482 ], [ 145.800228, 15.279532 ], [ 145.800287, 15.279598 ], [ 145.800337, 15.279664 ], [ 145.800379, 15.279738 ], [ 145.800429, 15.279811 ], [ 145.800462, 15.279894 ], [ 145.800487, 15.279976 ], [ 145.800554, 15.28014 ], [ 145.80057, 15.280221 ], [ 145.800637, 15.280385 ], [ 145.800687, 15.280451 ], [ 145.800821, 15.280567 ], [ 145.800888, 15.280616 ], [ 145.801023, 15.280732 ], [ 145.801065, 15.280806 ], [ 145.801064, 15.280887 ], [ 145.801055, 15.28097 ], [ 145.801131, 15.281011 ], [ 145.801215, 15.281044 ], [ 145.801248, 15.281134 ], [ 145.801231, 15.281216 ], [ 145.801247, 15.281298 ], [ 145.801331, 15.281322 ], [ 145.80137, 15.281406 ], [ 145.801409, 15.281502 ], [ 145.801487, 15.281512 ], [ 145.801521, 15.281593 ], [ 145.801634, 15.281695 ], [ 145.801718, 15.281691 ], [ 145.801777, 15.281753 ], [ 145.801821, 15.281845 ], [ 145.801953, 15.281888 ], [ 145.801982, 15.281989 ], [ 145.802134, 15.282119 ], [ 145.802248, 15.282124 ], [ 145.802301, 15.282206 ], [ 145.80238, 15.282264 ], [ 145.802464, 15.282264 ], [ 145.802543, 15.282222 ], [ 145.802542, 15.282099 ], [ 145.802626, 15.282075 ], [ 145.802681, 15.282145 ], [ 145.802744, 15.28227 ], [ 145.802848, 15.282271 ], [ 145.802895, 15.282256 ], [ 145.80292, 15.282339 ], [ 145.802962, 15.282412 ], [ 145.803054, 15.28243 ], [ 145.803143, 15.282426 ], [ 145.80312, 15.282587 ], [ 145.803208, 15.282636 ], [ 145.803282, 15.282746 ], [ 145.803415, 15.282775 ], [ 145.803499, 15.282776 ], [ 145.803466, 15.282693 ], [ 145.803534, 15.282637 ], [ 145.803618, 15.282661 ], [ 145.803685, 15.282719 ], [ 145.80371, 15.282802 ], [ 145.803786, 15.282843 ], [ 145.80392, 15.283007 ], [ 145.803953, 15.283089 ], [ 145.803978, 15.283172 ], [ 145.80402, 15.283245 ], [ 145.804095, 15.283286 ], [ 145.804163, 15.283336 ], [ 145.80423, 15.283393 ], [ 145.804297, 15.283459 ], [ 145.80433, 15.283542 ], [ 145.804389, 15.283608 ], [ 145.804472, 15.283755 ], [ 145.804557, 15.283747 ], [ 145.804624, 15.283796 ], [ 145.80464, 15.283879 ], [ 145.804707, 15.283928 ], [ 145.804783, 15.283969 ], [ 145.804886, 15.28398 ], [ 145.804969, 15.284042 ], [ 145.805018, 15.284105 ], [ 145.805027, 15.2842 ], [ 145.805043, 15.284282 ], [ 145.805076, 15.284364 ], [ 145.805118, 15.284447 ], [ 145.805168, 15.28452 ], [ 145.805235, 15.284578 ], [ 145.805294, 15.284644 ], [ 145.805378, 15.284668 ], [ 145.805282, 15.284446 ], [ 145.805425, 15.284509 ], [ 145.805503, 15.284628 ], [ 145.805597, 15.2846 ], [ 145.805636, 15.284701 ], [ 145.805613, 15.284787 ], [ 145.805554, 15.28483 ], [ 145.805617, 15.284911 ], [ 145.805745, 15.284912 ], [ 145.805857, 15.285015 ], [ 145.805947, 15.285028 ], [ 145.806006, 15.285076 ], [ 145.806041, 15.285124 ], [ 145.806059, 15.285148 ], [ 145.806126, 15.285197 ], [ 145.806142, 15.285302 ], [ 145.80626, 15.285422 ], [ 145.806284, 15.2855 ], [ 145.806334, 15.285599 ], [ 145.806485, 15.285796 ], [ 145.806527, 15.28587 ], [ 145.806552, 15.285952 ], [ 145.806631, 15.285983 ], [ 145.806601, 15.286131 ], [ 145.806748, 15.286209 ], [ 145.806817, 15.286314 ], [ 145.806895, 15.286462 ], [ 145.806993, 15.28645 ], [ 145.807, 15.286531 ], [ 145.806891, 15.286655 ], [ 145.80694, 15.286769 ], [ 145.807003, 15.286846 ], [ 145.807112, 15.28689 ], [ 145.807213, 15.286889 ], [ 145.807314, 15.286872 ], [ 145.807397, 15.286902 ], [ 145.807431, 15.286979 ], [ 145.80748, 15.28705 ], [ 145.807499, 15.287122 ], [ 145.807489, 15.287186 ], [ 145.807438, 15.287251 ], [ 145.807568, 15.287271 ], [ 145.807641, 15.287299 ], [ 145.807649, 15.287374 ], [ 145.807716, 15.287424 ], [ 145.80769, 15.28751 ], [ 145.807733, 15.287587 ], [ 145.8079, 15.287703 ], [ 145.807954, 15.287804 ], [ 145.808032, 15.287972 ], [ 145.808041, 15.288096 ], [ 145.808104, 15.28824 ], [ 145.808193, 15.288307 ], [ 145.808311, 15.288322 ], [ 145.808434, 15.288361 ], [ 145.808553, 15.288514 ], [ 145.808629, 15.288567 ], [ 145.808651, 15.288649 ], [ 145.808621, 15.288744 ], [ 145.808749, 15.288793 ], [ 145.808803, 15.288856 ], [ 145.808852, 15.288895 ], [ 145.808886, 15.288981 ], [ 145.808974, 15.289134 ], [ 145.809043, 15.289067 ], [ 145.809127, 15.28914 ], [ 145.809294, 15.289155 ], [ 145.809359, 15.289209 ], [ 145.809443, 15.289219 ], [ 145.809514, 15.289246 ], [ 145.809495, 15.289357 ], [ 145.809479, 15.289543 ], [ 145.809602, 15.28963 ], [ 145.809642, 15.289587 ], [ 145.809623, 15.289453 ], [ 145.809785, 15.289487 ], [ 145.809819, 15.28956 ], [ 145.809916, 15.289634 ], [ 145.809887, 15.289693 ], [ 145.809809, 15.28966 ], [ 145.809857, 15.289774 ], [ 145.810148, 15.289786 ], [ 145.810237, 15.28983 ], [ 145.810295, 15.289868 ], [ 145.810211, 15.289997 ], [ 145.810265, 15.290055 ], [ 145.810442, 15.290045 ], [ 145.810566, 15.28997 ], [ 145.810648, 15.289993 ], [ 145.810718, 15.290081 ], [ 145.810797, 15.290038 ], [ 145.810945, 15.290058 ], [ 145.811103, 15.289982 ], [ 145.811201, 15.290026 ], [ 145.811371, 15.289994 ], [ 145.81148, 15.28996 ], [ 145.811618, 15.28998 ], [ 145.81169, 15.28984 ], [ 145.811909, 15.289644 ], [ 145.812104, 15.289609 ], [ 145.812321, 15.289581 ], [ 145.812501, 15.289538 ], [ 145.812674, 15.289422 ], [ 145.812697, 15.289321 ], [ 145.812818, 15.289162 ], [ 145.812901, 15.289082 ], [ 145.812968, 15.28914 ], [ 145.813006, 15.289068 ], [ 145.813059, 15.288952 ], [ 145.813133, 15.289011 ], [ 145.813179, 15.28891 ], [ 145.813299, 15.288888 ], [ 145.813345, 15.28875 ], [ 145.81338, 15.288574 ], [ 145.813384, 15.288473 ], [ 145.813511, 15.288416 ], [ 145.813644, 15.288115 ], [ 145.813657, 15.287835 ], [ 145.813675, 15.287764 ], [ 145.813718, 15.287596 ], [ 145.813824, 15.287407 ], [ 145.813899, 15.28735 ], [ 145.81395, 15.287333 ], [ 145.81403, 15.287293 ], [ 145.814119, 15.287262 ], [ 145.814187, 15.287196 ], [ 145.814339, 15.287083 ], [ 145.814525, 15.287018 ], [ 145.814678, 15.286904 ], [ 145.814762, 15.286864 ], [ 145.814864, 15.286864 ], [ 145.815049, 15.286816 ], [ 145.815134, 15.286775 ], [ 145.815218, 15.286727 ], [ 145.815405, 15.286646 ], [ 145.815498, 15.286623 ], [ 145.815591, 15.28659 ], [ 145.815683, 15.286582 ], [ 145.815776, 15.286566 ], [ 145.815962, 15.286518 ], [ 145.816047, 15.286477 ], [ 145.81614, 15.286445 ], [ 145.816232, 15.28643 ], [ 145.816402, 15.286348 ], [ 145.816469, 15.286275 ], [ 145.816529, 15.2863 ], [ 145.816597, 15.286311 ], [ 145.816691, 15.286362 ], [ 145.816749, 15.286419 ], [ 145.816849, 15.286455 ], [ 145.816992, 15.286359 ], [ 145.817191, 15.28637 ], [ 145.817216, 15.286436 ], [ 145.817243, 15.286493 ], [ 145.817413, 15.28655 ], [ 145.81748, 15.286485 ], [ 145.817583, 15.286322 ], [ 145.817651, 15.286257 ], [ 145.817743, 15.286241 ], [ 145.817836, 15.286233 ], [ 145.817937, 15.286233 ], [ 145.818039, 15.286201 ], [ 145.818132, 15.286186 ], [ 145.818177, 15.286263 ], [ 145.818229, 15.28633 ], [ 145.818344, 15.286356 ], [ 145.81837, 15.286432 ], [ 145.818491, 15.286453 ], [ 145.81857, 15.28651 ], [ 145.818564, 15.286577 ], [ 145.81872, 15.286615 ], [ 145.818753, 15.286592 ], [ 145.818769, 15.286552 ], [ 145.818843, 15.28645 ], [ 145.818954, 15.286307 ], [ 145.819022, 15.286229 ], [ 145.819097, 15.286146 ], [ 145.819235, 15.285962 ], [ 145.819388, 15.2858 ], [ 145.819489, 15.285647 ], [ 145.819576, 15.285588 ], [ 145.819595, 15.285522 ], [ 145.819654, 15.28544 ], [ 145.819722, 15.285375 ], [ 145.819807, 15.285335 ], [ 145.819921, 15.285349 ], [ 145.820042, 15.285355 ], [ 145.820153, 15.285319 ], [ 145.820237, 15.285253 ], [ 145.820238, 15.285162 ], [ 145.820217, 15.285085 ], [ 145.820255, 15.285001 ], [ 145.820315, 15.28492 ], [ 145.8204, 15.284871 ], [ 145.820434, 15.284781 ], [ 145.820477, 15.2847 ], [ 145.820553, 15.284635 ], [ 145.820645, 15.28466 ], [ 145.82068, 15.28457 ], [ 145.820722, 15.284489 ], [ 145.820815, 15.284447 ], [ 145.820865, 15.284364 ], [ 145.820929, 15.284283 ], [ 145.820909, 15.284145 ], [ 145.820909, 15.284003 ], [ 145.821073, 15.28387 ], [ 145.821084, 15.283783 ], [ 145.821189, 15.283779 ], [ 145.821252, 15.283794 ], [ 145.821274, 15.283668 ], [ 145.821195, 15.283636 ], [ 145.821185, 15.283503 ], [ 145.821284, 15.283501 ], [ 145.821428, 15.283438 ], [ 145.82148, 15.283377 ], [ 145.821533, 15.283301 ], [ 145.821502, 15.283225 ], [ 145.821599, 15.283142 ], [ 145.821641, 15.283052 ], [ 145.821612, 15.282963 ], [ 145.82171, 15.28288 ], [ 145.821795, 15.282717 ], [ 145.821846, 15.282636 ], [ 145.821916, 15.282595 ], [ 145.821926, 15.282548 ], [ 145.821964, 15.282477 ], [ 145.822064, 15.282427 ], [ 145.822117, 15.282336 ], [ 145.822201, 15.282351 ], [ 145.822228, 15.28229 ], [ 145.822228, 15.282182 ], [ 145.822234, 15.282065 ], [ 145.82223, 15.281897 ], [ 145.822283, 15.281811 ], [ 145.822367, 15.281759 ], [ 145.822483, 15.28175 ], [ 145.822546, 15.281725 ], [ 145.822521, 15.281541 ], [ 145.822505, 15.281475 ], [ 145.822537, 15.281429 ], [ 145.822606, 15.281419 ], [ 145.822606, 15.281348 ], [ 145.822664, 15.281297 ], [ 145.822769, 15.281308 ], [ 145.822791, 15.281191 ], [ 145.82286, 15.281119 ], [ 145.822902, 15.280997 ], [ 145.822955, 15.280931 ], [ 145.822977, 15.280825 ], [ 145.823085, 15.280736 ], [ 145.823157, 15.280547 ], [ 145.823242, 15.280383 ], [ 145.82331, 15.280301 ], [ 145.823378, 15.280122 ], [ 145.823463, 15.280073 ], [ 145.823486, 15.279986 ], [ 145.823632, 15.279984 ], [ 145.823641, 15.279894 ], [ 145.823642, 15.279796 ], [ 145.823678, 15.279751 ], [ 145.823656, 15.279685 ], [ 145.823667, 15.279614 ], [ 145.823704, 15.279557 ], [ 145.823783, 15.279543 ], [ 145.823783, 15.279451 ], [ 145.823757, 15.279365 ], [ 145.823878, 15.279365 ], [ 145.823947, 15.279355 ], [ 145.823905, 15.279278 ], [ 145.823885, 15.279156 ], [ 145.823927, 15.27911 ], [ 145.824059, 15.279064 ], [ 145.824112, 15.278963 ], [ 145.824097, 15.278835 ], [ 145.82414, 15.278677 ], [ 145.824266, 15.278633 ], [ 145.824382, 15.278557 ], [ 145.824456, 15.278445 ], [ 145.824541, 15.278348 ], [ 145.824637, 15.27817 ], [ 145.824875, 15.277809 ], [ 145.824902, 15.277671 ], [ 145.824887, 15.277543 ], [ 145.824988, 15.277341 ], [ 145.825146, 15.277228 ], [ 145.825226, 15.277076 ], [ 145.825269, 15.276923 ], [ 145.825348, 15.276868 ], [ 145.825509, 15.276908 ], [ 145.825531, 15.276834 ], [ 145.825548, 15.276743 ], [ 145.825557, 15.276653 ], [ 145.825574, 15.276563 ], [ 145.825642, 15.276498 ], [ 145.825645, 15.276407 ], [ 145.82561, 15.276307 ], [ 145.82569, 15.276197 ], [ 145.825754, 15.276121 ], [ 145.825838, 15.276074 ], [ 145.825898, 15.276032 ], [ 145.825924, 15.275943 ], [ 145.825995, 15.275757 ], [ 145.826019, 15.275606 ], [ 145.826078, 15.275497 ], [ 145.826118, 15.27541 ], [ 145.826188, 15.275286 ], [ 145.826431, 15.274933 ], [ 145.826644, 15.274695 ], [ 145.826743, 15.27461 ], [ 145.826754, 15.274539 ], [ 145.826868, 15.274409 ], [ 145.826992, 15.274291 ], [ 145.827254, 15.274077 ], [ 145.827477, 15.27392 ], [ 145.82763, 15.273806 ], [ 145.827734, 15.27374 ], [ 145.827828, 15.273649 ], [ 145.827889, 15.273598 ], [ 145.828006, 15.273554 ], [ 145.828095, 15.273654 ], [ 145.828264, 15.273753 ], [ 145.828348, 15.273794 ], [ 145.828441, 15.273778 ], [ 145.828522, 15.27372 ], [ 145.828641, 15.273687 ], [ 145.828753, 15.273648 ], [ 145.828956, 15.273584 ], [ 145.829049, 15.273561 ], [ 145.829156, 15.273575 ], [ 145.829235, 15.273504 ], [ 145.829159, 15.273446 ], [ 145.829162, 15.27336 ], [ 145.829312, 15.273389 ], [ 145.829404, 15.273374 ], [ 145.829497, 15.273382 ], [ 145.829591, 15.273425 ], [ 145.829683, 15.273343 ], [ 145.829951, 15.273364 ], [ 145.829961, 15.273245 ], [ 145.83007, 15.273183 ], [ 145.830081, 15.273083 ], [ 145.829997, 15.272986 ], [ 145.830086, 15.272905 ], [ 145.830224, 15.273011 ], [ 145.830226, 15.27274 ], [ 145.830334, 15.272639 ], [ 145.830374, 15.272543 ], [ 145.830375, 15.272443 ], [ 145.830363, 15.272298 ], [ 145.830415, 15.272053 ], [ 145.830441, 15.271962 ], [ 145.830476, 15.271783 ], [ 145.830494, 15.271603 ], [ 145.830486, 15.271513 ], [ 145.830487, 15.271415 ], [ 145.830504, 15.271234 ], [ 145.830505, 15.271136 ], [ 145.830497, 15.271046 ], [ 145.830498, 15.27085 ], [ 145.830465, 15.270669 ], [ 145.830466, 15.270572 ], [ 145.830483, 15.270481 ], [ 145.830442, 15.270399 ], [ 145.830434, 15.270309 ], [ 145.830435, 15.270014 ], [ 145.830427, 15.269924 ], [ 145.830402, 15.269833 ], [ 145.830352, 15.269752 ], [ 145.830319, 15.269661 ], [ 145.830303, 15.269482 ], [ 145.830238, 15.269121 ], [ 145.830188, 15.268941 ], [ 145.830122, 15.268768 ], [ 145.830106, 15.268563 ], [ 145.830132, 15.268473 ], [ 145.83009, 15.268391 ], [ 145.83004, 15.26831 ], [ 145.829998, 15.268227 ], [ 145.829982, 15.268136 ], [ 145.829948, 15.268047 ], [ 145.829907, 15.267956 ], [ 145.829857, 15.267776 ], [ 145.829849, 15.267686 ], [ 145.82985, 15.267588 ], [ 145.829834, 15.267407 ], [ 145.829834, 15.26731 ], [ 145.829761, 15.267206 ], [ 145.829766, 15.267131 ], [ 145.829737, 15.267015 ], [ 145.829698, 15.266925 ], [ 145.829769, 15.266851 ], [ 145.829745, 15.26676 ], [ 145.829728, 15.26667 ], [ 145.829729, 15.266473 ], [ 145.829721, 15.266384 ], [ 145.829672, 15.266203 ], [ 145.829655, 15.266113 ], [ 145.829631, 15.266023 ], [ 145.829615, 15.265924 ], [ 145.829607, 15.265834 ], [ 145.82954, 15.265654 ], [ 145.829507, 15.265473 ], [ 145.829516, 15.265384 ], [ 145.829517, 15.265285 ], [ 145.829484, 15.265195 ], [ 145.829434, 15.264925 ], [ 145.829435, 15.264826 ], [ 145.829419, 15.264736 ], [ 145.829385, 15.264646 ], [ 145.829379, 15.264589 ], [ 145.829429, 15.26444 ], [ 145.829409, 15.264349 ], [ 145.829395, 15.264225 ], [ 145.829287, 15.264195 ], [ 145.829253, 15.264104 ], [ 145.829195, 15.264031 ], [ 145.82922, 15.263918 ], [ 145.829191, 15.263817 ], [ 145.829103, 15.263768 ], [ 145.829053, 15.263686 ], [ 145.829084, 15.263583 ], [ 145.82905, 15.263477 ], [ 145.829021, 15.263362 ], [ 145.828987, 15.263295 ], [ 145.828977, 15.263233 ], [ 145.828938, 15.263194 ], [ 145.828845, 15.263169 ], [ 145.828658, 15.263111 ], [ 145.828745, 15.263014 ], [ 145.828788, 15.262931 ], [ 145.828654, 15.262968 ], [ 145.828713, 15.262853 ], [ 145.828645, 15.262781 ], [ 145.828536, 15.262794 ], [ 145.828497, 15.262685 ], [ 145.828631, 15.262604 ], [ 145.828755, 15.262427 ], [ 145.828602, 15.262407 ], [ 145.828538, 15.26237 ], [ 145.828623, 15.262236 ], [ 145.828495, 15.26223 ], [ 145.828481, 15.262087 ], [ 145.828368, 15.262082 ], [ 145.828422, 15.261986 ], [ 145.828275, 15.261932 ], [ 145.828364, 15.261808 ], [ 145.828231, 15.261741 ], [ 145.828203, 15.261612 ], [ 145.828164, 15.261516 ], [ 145.828104, 15.261544 ], [ 145.828045, 15.26147 ], [ 145.827923, 15.261448 ], [ 145.827805, 15.261375 ], [ 145.827852, 15.261261 ], [ 145.827916, 15.261275 ], [ 145.827975, 15.261333 ], [ 145.827967, 15.261204 ], [ 145.827823, 15.261165 ], [ 145.827794, 15.261049 ], [ 145.827701, 15.260987 ], [ 145.827647, 15.260943 ], [ 145.827594, 15.260819 ], [ 145.827594, 15.260682 ], [ 145.827493, 15.260682 ], [ 145.8274, 15.260656 ], [ 145.827275, 15.2605 ], [ 145.827157, 15.260472 ], [ 145.827113, 15.260343 ], [ 145.827124, 15.260262 ], [ 145.827065, 15.260188 ], [ 145.826998, 15.260122 ], [ 145.826881, 15.259973 ], [ 145.826823, 15.259892 ], [ 145.82687, 15.259791 ], [ 145.826797, 15.259686 ], [ 145.826723, 15.259566 ], [ 145.826655, 15.259432 ], [ 145.826538, 15.259538 ], [ 145.826435, 15.259584 ], [ 145.826352, 15.259586 ], [ 145.826259, 15.259594 ], [ 145.826031, 15.259634 ], [ 145.826076, 15.259506 ], [ 145.826015, 15.259469 ], [ 145.825931, 15.259428 ], [ 145.825838, 15.259403 ], [ 145.825731, 15.259451 ], [ 145.825633, 15.25945 ], [ 145.82556, 15.259361 ], [ 145.825425, 15.259335 ], [ 145.825215, 15.259329 ], [ 145.825141, 15.259281 ], [ 145.825038, 15.259244 ], [ 145.824945, 15.259236 ], [ 145.824852, 15.259259 ], [ 145.82476, 15.259266 ], [ 145.824659, 15.259266 ], [ 145.824566, 15.259257 ], [ 145.824422, 15.259296 ], [ 145.824348, 15.259238 ], [ 145.824567, 15.259126 ], [ 145.824601, 15.259037 ], [ 145.824542, 15.258962 ], [ 145.824247, 15.258986 ], [ 145.823993, 15.259107 ], [ 145.8239, 15.25914 ], [ 145.823807, 15.259164 ], [ 145.82369, 15.25923 ], [ 145.823552, 15.259249 ], [ 145.823459, 15.259223 ], [ 145.823355, 15.259233 ], [ 145.823276, 15.259266 ], [ 145.823212, 15.259247 ], [ 145.823124, 15.259201 ], [ 145.823031, 15.259226 ], [ 145.822938, 15.259257 ], [ 145.822845, 15.259281 ], [ 145.822752, 15.259288 ], [ 145.822659, 15.259272 ], [ 145.822567, 15.259239 ], [ 145.822525, 15.259246 ], [ 145.822446, 15.259262 ], [ 145.822308, 15.259266 ], [ 145.822254, 15.259184 ], [ 145.822195, 15.259145 ], [ 145.82212, 15.259163 ], [ 145.822061, 15.259236 ], [ 145.821976, 15.259277 ], [ 145.821884, 15.259284 ], [ 145.821776, 15.25931 ], [ 145.821689, 15.259308 ], [ 145.821608, 15.259333 ], [ 145.82146, 15.2594 ], [ 145.821356, 15.259433 ], [ 145.821375, 15.259538 ], [ 145.821335, 15.25961 ], [ 145.821335, 15.259706 ], [ 145.82132, 15.259796 ], [ 145.821265, 15.259878 ], [ 145.821162, 15.259815 ], [ 145.821098, 15.259737 ], [ 145.82108, 15.25969 ], [ 145.820926, 15.259665 ], [ 145.820979, 15.259583 ], [ 145.820887, 15.259558 ], [ 145.820423, 15.259515 ], [ 145.820322, 15.259514 ], [ 145.820229, 15.259522 ], [ 145.820136, 15.259554 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "69", "COUNTYFP10": "110", "TRACTCE10": "001700", "GEOID10": "69110001700", "NAME10": "17", "NAMELSAD10": "Census Tract 17", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 23827139, "AWATER10": 0, "INTPTLAT10": "+15.2102066", "INTPTLON10": "+145.7645314" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.761041, 15.237619 ], [ 145.762286, 15.238275 ], [ 145.762731, 15.23851 ], [ 145.762874, 15.238615 ], [ 145.763303, 15.238929 ], [ 145.763446, 15.239035 ], [ 145.763577, 15.239123 ], [ 145.763972, 15.23939 ], [ 145.764104, 15.239479 ], [ 145.764658, 15.239928 ], [ 145.765862, 15.240541 ], [ 145.765922, 15.240572 ], [ 145.770752, 15.243884 ], [ 145.771056, 15.244084 ], [ 145.771414, 15.244337 ], [ 145.773229, 15.242446 ], [ 145.773588, 15.242111 ], [ 145.777129, 15.238608 ], [ 145.780288, 15.235444 ], [ 145.781873, 15.233981 ], [ 145.783867, 15.232066 ], [ 145.786897, 15.228248 ], [ 145.788992, 15.226508 ], [ 145.78905, 15.22646 ], [ 145.789186, 15.226479 ], [ 145.789292, 15.226465 ], [ 145.789344, 15.226356 ], [ 145.789333, 15.226194 ], [ 145.789396, 15.226116 ], [ 145.78956, 15.225909 ], [ 145.789633, 15.225859 ], [ 145.789814, 15.225713 ], [ 145.789997, 15.225606 ], [ 145.790311, 15.225418 ], [ 145.790513, 15.225333 ], [ 145.790492, 15.225203 ], [ 145.790515, 15.22505 ], [ 145.790468, 15.224964 ], [ 145.790379, 15.224921 ], [ 145.790394, 15.224863 ], [ 145.790464, 15.224767 ], [ 145.790425, 15.224672 ], [ 145.790423, 15.224654 ], [ 145.790393, 15.224638 ], [ 145.790354, 15.224604 ], [ 145.790275, 15.22458 ], [ 145.790211, 15.224541 ], [ 145.790217, 15.224475 ], [ 145.790202, 15.224417 ], [ 145.790237, 15.224374 ], [ 145.790193, 15.224283 ], [ 145.790193, 15.224235 ], [ 145.790243, 15.224188 ], [ 145.790268, 15.22414 ], [ 145.790254, 15.224078 ], [ 145.790229, 15.224025 ], [ 145.790195, 15.223996 ], [ 145.790161, 15.223939 ], [ 145.790156, 15.223891 ], [ 145.790173, 15.223873 ], [ 145.79022, 15.223824 ], [ 145.790221, 15.223804 ], [ 145.790118, 15.223714 ], [ 145.790123, 15.223598 ], [ 145.790173, 15.223575 ], [ 145.790105, 15.223541 ], [ 145.790065, 15.223431 ], [ 145.790067, 15.223362 ], [ 145.789951, 15.223361 ], [ 145.789899, 15.223356 ], [ 145.789863, 15.223405 ], [ 145.789807, 15.22341 ], [ 145.789771, 15.223418 ], [ 145.789721, 15.223431 ], [ 145.789733, 15.223398 ], [ 145.789764, 15.223369 ], [ 145.789722, 15.223339 ], [ 145.789773, 15.223268 ], [ 145.789787, 15.222876 ], [ 145.789838, 15.222828 ], [ 145.789754, 15.222799 ], [ 145.789675, 15.222781 ], [ 145.7897, 15.222757 ], [ 145.78963, 15.222631 ], [ 145.789551, 15.222636 ], [ 145.789489, 15.222605 ], [ 145.789476, 15.222501 ], [ 145.789459, 15.222473 ], [ 145.789332, 15.222481 ], [ 145.789275, 15.222425 ], [ 145.789163, 15.222378 ], [ 145.789152, 15.222285 ], [ 145.789113, 15.222207 ], [ 145.789093, 15.222165 ], [ 145.789125, 15.222016 ], [ 145.789191, 15.221948 ], [ 145.78918, 15.221887 ], [ 145.789045, 15.221805 ], [ 145.788996, 15.221865 ], [ 145.788923, 15.221864 ], [ 145.788747, 15.221677 ], [ 145.788736, 15.221633 ], [ 145.788756, 15.221589 ], [ 145.788711, 15.221544 ], [ 145.788675, 15.221586 ], [ 145.7885, 15.221439 ], [ 145.788532, 15.221404 ], [ 145.788442, 15.22128 ], [ 145.788309, 15.221252 ], [ 145.788248, 15.221128 ], [ 145.788022, 15.221062 ], [ 145.787985, 15.221113 ], [ 145.787802, 15.22112 ], [ 145.787711, 15.221145 ], [ 145.787629, 15.221127 ], [ 145.787678, 15.221065 ], [ 145.787709, 15.221035 ], [ 145.787695, 15.22098 ], [ 145.787769, 15.220901 ], [ 145.787863, 15.220786 ], [ 145.787839, 15.220734 ], [ 145.787805, 15.220709 ], [ 145.787803, 15.220649 ], [ 145.787814, 15.220602 ], [ 145.787741, 15.220539 ], [ 145.787719, 15.220453 ], [ 145.787767, 15.220415 ], [ 145.787751, 15.220391 ], [ 145.787683, 15.22041 ], [ 145.78755, 15.220404 ], [ 145.78748, 15.220367 ], [ 145.787426, 15.220361 ], [ 145.787324, 15.220383 ], [ 145.787248, 15.220347 ], [ 145.787203, 15.220311 ], [ 145.787144, 15.220248 ], [ 145.787167, 15.22021 ], [ 145.787222, 15.220083 ], [ 145.78727, 15.220015 ], [ 145.787174, 15.219968 ], [ 145.787109, 15.219996 ], [ 145.787064, 15.220023 ], [ 145.787002, 15.21998 ], [ 145.787013, 15.219959 ], [ 145.787022, 15.219926 ], [ 145.786969, 15.219863 ], [ 145.786923, 15.219876 ], [ 145.786875, 15.219779 ], [ 145.786797, 15.219771 ], [ 145.786733, 15.219819 ], [ 145.786709, 15.219829 ], [ 145.786688, 15.219771 ], [ 145.786685, 15.219638 ], [ 145.786714, 15.219531 ], [ 145.786716, 15.219508 ], [ 145.786729, 15.219397 ], [ 145.786633, 15.219445 ], [ 145.786584, 15.219438 ], [ 145.786541, 15.219492 ], [ 145.786523, 15.219564 ], [ 145.786434, 15.219718 ], [ 145.786437, 15.219797 ], [ 145.786349, 15.219789 ], [ 145.786314, 15.219732 ], [ 145.786275, 15.219713 ], [ 145.786222, 15.219765 ], [ 145.786052, 15.219818 ], [ 145.786009, 15.219887 ], [ 145.785974, 15.219932 ], [ 145.78591, 15.219952 ], [ 145.785836, 15.220009 ], [ 145.785772, 15.220047 ], [ 145.785639, 15.219858 ], [ 145.785655, 15.219762 ], [ 145.785657, 15.219752 ], [ 145.785689, 15.219683 ], [ 145.785795, 15.219626 ], [ 145.785806, 15.219594 ], [ 145.785807, 15.219488 ], [ 145.785793, 15.219451 ], [ 145.785914, 15.219256 ], [ 145.785784, 15.219193 ], [ 145.785724, 15.219189 ], [ 145.785692, 15.219234 ], [ 145.785614, 15.219261 ], [ 145.785562, 15.219165 ], [ 145.785505, 15.219205 ], [ 145.785481, 15.219092 ], [ 145.785452, 15.219109 ], [ 145.785389, 15.219095 ], [ 145.785397, 15.218985 ], [ 145.785436, 15.218869 ], [ 145.785483, 15.218787 ], [ 145.785472, 15.218772 ], [ 145.78535, 15.218727 ], [ 145.785277, 15.2187 ], [ 145.785219, 15.218626 ], [ 145.785169, 15.218543 ], [ 145.785101, 15.218478 ], [ 145.785, 15.218477 ], [ 145.784911, 15.218404 ], [ 145.784798, 15.218438 ], [ 145.784734, 15.218509 ], [ 145.784663, 15.218492 ], [ 145.784621, 15.218409 ], [ 145.784546, 15.218344 ], [ 145.784344, 15.218342 ], [ 145.784259, 15.218384 ], [ 145.784199, 15.218457 ], [ 145.784124, 15.218399 ], [ 145.784065, 15.218325 ], [ 145.78404, 15.218235 ], [ 145.784117, 15.218177 ], [ 145.784126, 15.218088 ], [ 145.784194, 15.218023 ], [ 145.784253, 15.21795 ], [ 145.784338, 15.217908 ], [ 145.784414, 15.217852 ], [ 145.784481, 15.217787 ], [ 145.784584, 15.217624 ], [ 145.784635, 15.217443 ], [ 145.784669, 15.217354 ], [ 145.784729, 15.21728 ], [ 145.784831, 15.217117 ], [ 145.784891, 15.217036 ], [ 145.784941, 15.216955 ], [ 145.784925, 15.216856 ], [ 145.78485, 15.216798 ], [ 145.784725, 15.216768 ], [ 145.784736, 15.216696 ], [ 145.78464, 15.216672 ], [ 145.784641, 15.216586 ], [ 145.784716, 15.216551 ], [ 145.784708, 15.216462 ], [ 145.784759, 15.21638 ], [ 145.784794, 15.216291 ], [ 145.784701, 15.216273 ], [ 145.784608, 15.21629 ], [ 145.784507, 15.216289 ], [ 145.784422, 15.216329 ], [ 145.784355, 15.216395 ], [ 145.784262, 15.216419 ], [ 145.784271, 15.216329 ], [ 145.784212, 15.216255 ], [ 145.784136, 15.216197 ], [ 145.784044, 15.216156 ], [ 145.783944, 15.2161 ], [ 145.783944, 15.215987 ], [ 145.783945, 15.215975 ], [ 145.783953, 15.215893 ], [ 145.783928, 15.215802 ], [ 145.783911, 15.215712 ], [ 145.783861, 15.21563 ], [ 145.783769, 15.215613 ], [ 145.783668, 15.215612 ], [ 145.783575, 15.215588 ], [ 145.783488, 15.215574 ], [ 145.783356, 15.21559 ], [ 145.783271, 15.215659 ], [ 145.783187, 15.215706 ], [ 145.783134, 15.215778 ], [ 145.783072, 15.215829 ], [ 145.783019, 15.215829 ], [ 145.782846, 15.215939 ], [ 145.782771, 15.215974 ], [ 145.782705, 15.21599 ], [ 145.78266, 15.216079 ], [ 145.78262, 15.216114 ], [ 145.782554, 15.216105 ], [ 145.782546, 15.216054 ], [ 145.782634, 15.215994 ], [ 145.782599, 15.215951 ], [ 145.782538, 15.215925 ], [ 145.782458, 15.215898 ], [ 145.782392, 15.215886 ], [ 145.782246, 15.21591 ], [ 145.782215, 15.215966 ], [ 145.782184, 15.216038 ], [ 145.782096, 15.216055 ], [ 145.782016, 15.216063 ], [ 145.781972, 15.216054 ], [ 145.781928, 15.216029 ], [ 145.781844, 15.216032 ], [ 145.78176, 15.216028 ], [ 145.781685, 15.216049 ], [ 145.781623, 15.216092 ], [ 145.781561, 15.216173 ], [ 145.781477, 15.216172 ], [ 145.781433, 15.216111 ], [ 145.781403, 15.216038 ], [ 145.781412, 15.215948 ], [ 145.781435, 15.215821 ], [ 145.781378, 15.215764 ], [ 145.781241, 15.21572 ], [ 145.781149, 15.215707 ], [ 145.781145, 15.215635 ], [ 145.781181, 15.215571 ], [ 145.781261, 15.215476 ], [ 145.781322, 15.215438 ], [ 145.781393, 15.215412 ], [ 145.781486, 15.215439 ], [ 145.781516, 15.215451 ], [ 145.781601, 15.215414 ], [ 145.78172, 15.215428 ], [ 145.781768, 15.215414 ], [ 145.781826, 15.215333 ], [ 145.781836, 15.215206 ], [ 145.781841, 15.215195 ], [ 145.781867, 15.215145 ], [ 145.781924, 15.215163 ], [ 145.78214, 15.215172 ], [ 145.782238, 15.215144 ], [ 145.782344, 15.215088 ], [ 145.782416, 15.214832 ], [ 145.782484, 15.214739 ], [ 145.782549, 15.214677 ], [ 145.782642, 15.214563 ], [ 145.78265, 15.214538 ], [ 145.782652, 15.214511 ], [ 145.782621, 15.214421 ], [ 145.782666, 15.214284 ], [ 145.782569, 15.214257 ], [ 145.782495, 15.214279 ], [ 145.782455, 15.214163 ], [ 145.78253, 15.2141 ], [ 145.782497, 15.21392 ], [ 145.782413, 15.213862 ], [ 145.782337, 15.213804 ], [ 145.782304, 15.213715 ], [ 145.78222, 15.213664 ], [ 145.782128, 15.213631 ], [ 145.782052, 15.213573 ], [ 145.781952, 15.213409 ], [ 145.78197, 15.213316 ], [ 145.782006, 15.213235 ], [ 145.781962, 15.213164 ], [ 145.781869, 15.21313 ], [ 145.781684, 15.213081 ], [ 145.781583, 15.21308 ], [ 145.78149, 15.213063 ], [ 145.781394, 15.212988 ], [ 145.781415, 15.212898 ], [ 145.78139, 15.212808 ], [ 145.781391, 15.212612 ], [ 145.781409, 15.212432 ], [ 145.781393, 15.212341 ], [ 145.781351, 15.212252 ], [ 145.781293, 15.212177 ], [ 145.781293, 15.212071 ], [ 145.78126, 15.211981 ], [ 145.781206, 15.211919 ], [ 145.78121, 15.2118 ], [ 145.781186, 15.21171 ], [ 145.781178, 15.21162 ], [ 145.781195, 15.21153 ], [ 145.781147, 15.211456 ], [ 145.781112, 15.211366 ], [ 145.78102, 15.211297 ], [ 145.780935, 15.211299 ], [ 145.780868, 15.211233 ], [ 145.780775, 15.211208 ], [ 145.780683, 15.211217 ], [ 145.78059, 15.211191 ], [ 145.780506, 15.21115 ], [ 145.780405, 15.21115 ], [ 145.780312, 15.211116 ], [ 145.780237, 15.211058 ], [ 145.780201, 15.211037 ], [ 145.780113, 15.211042 ], [ 145.780029, 15.210979 ], [ 145.78, 15.210945 ], [ 145.77999, 15.210898 ], [ 145.780035, 15.210864 ], [ 145.780025, 15.210806 ], [ 145.780026, 15.210731 ], [ 145.780061, 15.210678 ], [ 145.780041, 15.21063 ], [ 145.779938, 15.210562 ], [ 145.779919, 15.21051 ], [ 145.779968, 15.210481 ], [ 145.779983, 15.210418 ], [ 145.779934, 15.210405 ], [ 145.77986, 15.210423 ], [ 145.779816, 15.210471 ], [ 145.779747, 15.210404 ], [ 145.779727, 15.210365 ], [ 145.779659, 15.210335 ], [ 145.77959, 15.210317 ], [ 145.779546, 15.210253 ], [ 145.779561, 15.210191 ], [ 145.779522, 15.210139 ], [ 145.779428, 15.210162 ], [ 145.77934, 15.210123 ], [ 145.779251, 15.210138 ], [ 145.779275, 15.210204 ], [ 145.779221, 15.210219 ], [ 145.779005, 15.210136 ], [ 145.778941, 15.21016 ], [ 145.778822, 15.210121 ], [ 145.778761, 15.210094 ], [ 145.778714, 15.210073 ], [ 145.77867, 15.210101 ], [ 145.778635, 15.210143 ], [ 145.778562, 15.21011 ], [ 145.778478, 15.210052 ], [ 145.778537, 15.210042 ], [ 145.778591, 15.210043 ], [ 145.778636, 15.21001 ], [ 145.778616, 15.209967 ], [ 145.778563, 15.209937 ], [ 145.778498, 15.209952 ], [ 145.778459, 15.209932 ], [ 145.778411, 15.209808 ], [ 145.778421, 15.209717 ], [ 145.778432, 15.209667 ], [ 145.778436, 15.20965 ], [ 145.7785, 15.209645 ], [ 145.778589, 15.209575 ], [ 145.778624, 15.209603 ], [ 145.778707, 15.209595 ], [ 145.778762, 15.209523 ], [ 145.778807, 15.209495 ], [ 145.77887, 15.209519 ], [ 145.778905, 15.209543 ], [ 145.778983, 15.209533 ], [ 145.779087, 15.20951 ], [ 145.779082, 15.209467 ], [ 145.778964, 15.209408 ], [ 145.778955, 15.209442 ], [ 145.778905, 15.209452 ], [ 145.778812, 15.209384 ], [ 145.778773, 15.209364 ], [ 145.778842, 15.209313 ], [ 145.778882, 15.209217 ], [ 145.778883, 15.209102 ], [ 145.778854, 15.209002 ], [ 145.778815, 15.208958 ], [ 145.778842, 15.208848 ], [ 145.778882, 15.208763 ], [ 145.778858, 15.208724 ], [ 145.778863, 15.208696 ], [ 145.778942, 15.208572 ], [ 145.779046, 15.208563 ], [ 145.778997, 15.208505 ], [ 145.778982, 15.208448 ], [ 145.779047, 15.208338 ], [ 145.779067, 15.208267 ], [ 145.779132, 15.208224 ], [ 145.779142, 15.208128 ], [ 145.779098, 15.20807 ], [ 145.779138, 15.208004 ], [ 145.779118, 15.207918 ], [ 145.779134, 15.207841 ], [ 145.779218, 15.207736 ], [ 145.779283, 15.207632 ], [ 145.779288, 15.2076 ], [ 145.779298, 15.207531 ], [ 145.779289, 15.207435 ], [ 145.779314, 15.207326 ], [ 145.779443, 15.207254 ], [ 145.779702, 15.206835 ], [ 145.779738, 15.206778 ], [ 145.779788, 15.206735 ], [ 145.779818, 15.206658 ], [ 145.779882, 15.20663 ], [ 145.779882, 15.206588 ], [ 145.779813, 15.206572 ], [ 145.779809, 15.206506 ], [ 145.779893, 15.206481 ], [ 145.779972, 15.20642 ], [ 145.780002, 15.206353 ], [ 145.780066, 15.206306 ], [ 145.780126, 15.206215 ], [ 145.78024, 15.205991 ], [ 145.7803, 15.205908 ], [ 145.780352, 15.205783 ], [ 145.780297, 15.205722 ], [ 145.78029, 15.205591 ], [ 145.780505, 15.205476 ], [ 145.78058, 15.205534 ], [ 145.780664, 15.205698 ], [ 145.780757, 15.205689 ], [ 145.780892, 15.20556 ], [ 145.780952, 15.205486 ], [ 145.780953, 15.205396 ], [ 145.780938, 15.205301 ], [ 145.780934, 15.205247 ], [ 145.780931, 15.205201 ], [ 145.780939, 15.205113 ], [ 145.781018, 15.205067 ], [ 145.781081, 15.205037 ], [ 145.78114, 15.204964 ], [ 145.781208, 15.204899 ], [ 145.781267, 15.204824 ], [ 145.78143, 15.204659 ], [ 145.781478, 15.204563 ], [ 145.781546, 15.204429 ], [ 145.781851, 15.204182 ], [ 145.782031, 15.204142 ], [ 145.782068, 15.203967 ], [ 145.782144, 15.203612 ], [ 145.782151, 15.203133 ], [ 145.782242, 15.202945 ], [ 145.781936, 15.20256 ], [ 145.781691, 15.202159 ], [ 145.781426, 15.202134 ], [ 145.781394, 15.201927 ], [ 145.781267, 15.201737 ], [ 145.781243, 15.2017 ], [ 145.781267, 15.201621 ], [ 145.781491, 15.20154 ], [ 145.781582, 15.201323 ], [ 145.78165, 15.201177 ], [ 145.781722, 15.201053 ], [ 145.781718, 15.200919 ], [ 145.781794, 15.200855 ], [ 145.781877, 15.200455 ], [ 145.781788, 15.200274 ], [ 145.781784, 15.200127 ], [ 145.781572, 15.199928 ], [ 145.781515, 15.199789 ], [ 145.781574, 15.199582 ], [ 145.781561, 15.199532 ], [ 145.781513, 15.199342 ], [ 145.781633, 15.199186 ], [ 145.781553, 15.19901 ], [ 145.781425, 15.198941 ], [ 145.781374, 15.198852 ], [ 145.781351, 15.198663 ], [ 145.781423, 15.198581 ], [ 145.781429, 15.198258 ], [ 145.781349, 15.198143 ], [ 145.781235, 15.198124 ], [ 145.781194, 15.197976 ], [ 145.780948, 15.197869 ], [ 145.780741, 15.19754 ], [ 145.780737, 15.197365 ], [ 145.780694, 15.197314 ], [ 145.780405, 15.197276 ], [ 145.780287, 15.197197 ], [ 145.780173, 15.197169 ], [ 145.780069, 15.197062 ], [ 145.779841, 15.197075 ], [ 145.779871, 15.196923 ], [ 145.779833, 15.196868 ], [ 145.779724, 15.196899 ], [ 145.779619, 15.196889 ], [ 145.779245, 15.196841 ], [ 145.77898, 15.196669 ], [ 145.778844, 15.196457 ], [ 145.778831, 15.196445 ], [ 145.77873, 15.196354 ], [ 145.778526, 15.196304 ], [ 145.778484, 15.196221 ], [ 145.778527, 15.19614 ], [ 145.778611, 15.196098 ], [ 145.778687, 15.196042 ], [ 145.778679, 15.195952 ], [ 145.778621, 15.195878 ], [ 145.778528, 15.195845 ], [ 145.778436, 15.19582 ], [ 145.778352, 15.19577 ], [ 145.778259, 15.195737 ], [ 145.778167, 15.195712 ], [ 145.778074, 15.195694 ], [ 145.778015, 15.195621 ], [ 145.777965, 15.195539 ], [ 145.777954, 15.195518 ], [ 145.777923, 15.195456 ], [ 145.777983, 15.195383 ], [ 145.778009, 15.195293 ], [ 145.777925, 15.195244 ], [ 145.777858, 15.19517 ], [ 145.7779, 15.195088 ], [ 145.777875, 15.194997 ], [ 145.777817, 15.194924 ], [ 145.777784, 15.194834 ], [ 145.777742, 15.194751 ], [ 145.777684, 15.19467 ], [ 145.777608, 15.194612 ], [ 145.777524, 15.194554 ], [ 145.777491, 15.194463 ], [ 145.7775, 15.194374 ], [ 145.777458, 15.194291 ], [ 145.77745, 15.194193 ], [ 145.777518, 15.194128 ], [ 145.777611, 15.194104 ], [ 145.777732, 15.194062 ], [ 145.77789, 15.194008 ], [ 145.777982, 15.193983 ], [ 145.778168, 15.193951 ], [ 145.778253, 15.193902 ], [ 145.778312, 15.193821 ], [ 145.778397, 15.193658 ], [ 145.778432, 15.193568 ], [ 145.778508, 15.193512 ], [ 145.778576, 15.193331 ], [ 145.77856, 15.193241 ], [ 145.778552, 15.193151 ], [ 145.778561, 15.193061 ], [ 145.778595, 15.192971 ], [ 145.778554, 15.192889 ], [ 145.778529, 15.192799 ], [ 145.778487, 15.192717 ], [ 145.778471, 15.192627 ], [ 145.778488, 15.192536 ], [ 145.778472, 15.192447 ], [ 145.778481, 15.192357 ], [ 145.778549, 15.192291 ], [ 145.778625, 15.192234 ], [ 145.778634, 15.192145 ], [ 145.778693, 15.192071 ], [ 145.778762, 15.191891 ], [ 145.778771, 15.191801 ], [ 145.778763, 15.191711 ], [ 145.778721, 15.191629 ], [ 145.778629, 15.191604 ], [ 145.778536, 15.19157 ], [ 145.77846, 15.191514 ], [ 145.778402, 15.19148 ], [ 145.778242, 15.19134 ], [ 145.778175, 15.191274 ], [ 145.778117, 15.1912 ], [ 145.778075, 15.191118 ], [ 145.778042, 15.191028 ], [ 145.778034, 15.190937 ], [ 145.778085, 15.190856 ], [ 145.778094, 15.190766 ], [ 145.77817, 15.190709 ], [ 145.778229, 15.190636 ], [ 145.778281, 15.190554 ], [ 145.778365, 15.190505 ], [ 145.77845, 15.190465 ], [ 145.778526, 15.190408 ], [ 145.778552, 15.190319 ], [ 145.778476, 15.190253 ], [ 145.778291, 15.190219 ], [ 145.778249, 15.190136 ], [ 145.778233, 15.190046 ], [ 145.778259, 15.189957 ], [ 145.778293, 15.189866 ], [ 145.778285, 15.189768 ], [ 145.778288, 15.189734 ], [ 145.778294, 15.189678 ], [ 145.778379, 15.189622 ], [ 145.778388, 15.189531 ], [ 145.778346, 15.189441 ], [ 145.778253, 15.189416 ], [ 145.778169, 15.189465 ], [ 145.778076, 15.189497 ], [ 145.778051, 15.189406 ], [ 145.778068, 15.189317 ], [ 145.778136, 15.189252 ], [ 145.778212, 15.189195 ], [ 145.778323, 15.189097 ], [ 145.778382, 15.189024 ], [ 145.778433, 15.188942 ], [ 145.778518, 15.188902 ], [ 145.778602, 15.188853 ], [ 145.778662, 15.188779 ], [ 145.778645, 15.18869 ], [ 145.778654, 15.188599 ], [ 145.77868, 15.188509 ], [ 145.778697, 15.188419 ], [ 145.77874, 15.188338 ], [ 145.778825, 15.18829 ], [ 145.778994, 15.188208 ], [ 145.779087, 15.188176 ], [ 145.77909, 15.188171 ], [ 145.779189, 15.188053 ], [ 145.779256, 15.187988 ], [ 145.779341, 15.187932 ], [ 145.779417, 15.187867 ], [ 145.77951, 15.187858 ], [ 145.779603, 15.187835 ], [ 145.779578, 15.187745 ], [ 145.779562, 15.187646 ], [ 145.779469, 15.187621 ], [ 145.779377, 15.187605 ], [ 145.779318, 15.187531 ], [ 145.779335, 15.18744 ], [ 145.779336, 15.187342 ], [ 145.779421, 15.187294 ], [ 145.779413, 15.187196 ], [ 145.779455, 15.187113 ], [ 145.779557, 15.187056 ], [ 145.77956, 15.187054 ], [ 145.77965, 15.187024 ], [ 145.779692, 15.186943 ], [ 145.779769, 15.186886 ], [ 145.779786, 15.186795 ], [ 145.779727, 15.186714 ], [ 145.779635, 15.186681 ], [ 145.779645, 15.186645 ], [ 145.779661, 15.18659 ], [ 145.779685, 15.186542 ], [ 145.779703, 15.186509 ], [ 145.77897, 15.185893 ], [ 145.778689, 15.185577 ], [ 145.778469, 15.185392 ], [ 145.778389, 15.185337 ], [ 145.778086, 15.185132 ], [ 145.777767, 15.184867 ], [ 145.77731, 15.184331 ], [ 145.776876, 15.183957 ], [ 145.776471, 15.183801 ], [ 145.77613, 15.183782 ], [ 145.775636, 15.18377 ], [ 145.775252, 15.183794 ], [ 145.774869, 15.183862 ], [ 145.774432, 15.18395 ], [ 145.773781, 15.183903 ], [ 145.773689, 15.1839 ], [ 145.773537, 15.183897 ], [ 145.773451, 15.183897 ], [ 145.773274, 15.184027 ], [ 145.77293, 15.184186 ], [ 145.772522, 15.184393 ], [ 145.772305, 15.184568 ], [ 145.772142, 15.184666 ], [ 145.772115, 15.184597 ], [ 145.771961, 15.184476 ], [ 145.77194, 15.184444 ], [ 145.771956, 15.184326 ], [ 145.772022, 15.184195 ], [ 145.772144, 15.184042 ], [ 145.772263, 15.183925 ], [ 145.772448, 15.183746 ], [ 145.772595, 15.183458 ], [ 145.77268, 15.183177 ], [ 145.772671, 15.183072 ], [ 145.772587, 15.183004 ], [ 145.772486, 15.182974 ], [ 145.772288, 15.182908 ], [ 145.772086, 15.182818 ], [ 145.771886, 15.182738 ], [ 145.771736, 15.182679 ], [ 145.771732, 15.182678 ], [ 145.771608, 15.182607 ], [ 145.771505, 15.182506 ], [ 145.771435, 15.182452 ], [ 145.771326, 15.182461 ], [ 145.771235, 15.182453 ], [ 145.77117, 15.182398 ], [ 145.771108, 15.182355 ], [ 145.770954, 15.18225 ], [ 145.770922, 15.18223 ], [ 145.77086, 15.18219 ], [ 145.770743, 15.182114 ], [ 145.770621, 15.182057 ], [ 145.770457, 15.181981 ], [ 145.770329, 15.181884 ], [ 145.77004, 15.181669 ], [ 145.769929, 15.181621 ], [ 145.769817, 15.181573 ], [ 145.769675, 15.18152 ], [ 145.769739, 15.181381 ], [ 145.769857, 15.181118 ], [ 145.769987, 15.180902 ], [ 145.770016, 15.180639 ], [ 145.769708, 15.180414 ], [ 145.769364, 15.180257 ], [ 145.769078, 15.180074 ], [ 145.768782, 15.179801 ], [ 145.76856, 15.179531 ], [ 145.768203, 15.179149 ], [ 145.767945, 15.179068 ], [ 145.767665, 15.179091 ], [ 145.767358, 15.179063 ], [ 145.766845, 15.178948 ], [ 145.766582, 15.178772 ], [ 145.7663, 15.178611 ], [ 145.765912, 15.178408 ], [ 145.765666, 15.178011 ], [ 145.765461, 15.177793 ], [ 145.765139, 15.177584 ], [ 145.764713, 15.177358 ], [ 145.764575, 15.177609 ], [ 145.76445, 15.17784 ], [ 145.764139, 15.17835 ], [ 145.763991, 15.178596 ], [ 145.763726, 15.17903 ], [ 145.7636, 15.17924 ], [ 145.76322, 15.1799 ], [ 145.76297, 15.1803 ], [ 145.762943, 15.18034 ], [ 145.76284, 15.1805 ], [ 145.7627, 15.18064 ], [ 145.76261, 15.18072 ], [ 145.762504, 15.180778 ], [ 145.76243, 15.18082 ], [ 145.762172, 15.180917 ], [ 145.76206, 15.18096 ], [ 145.761969, 15.181007 ], [ 145.76183, 15.18108 ], [ 145.76174, 15.18114 ], [ 145.761708, 15.181165 ], [ 145.76163, 15.18123 ], [ 145.76147, 15.18134 ], [ 145.76138, 15.18142 ], [ 145.76132, 15.18151 ], [ 145.76125, 15.18171 ], [ 145.761231, 15.18179 ], [ 145.76122, 15.18184 ], [ 145.76119, 15.18194 ], [ 145.76115, 15.18199 ], [ 145.76105, 15.18206 ], [ 145.76015, 15.18258 ], [ 145.75976, 15.18281 ], [ 145.759487, 15.182976 ], [ 145.75945, 15.183 ], [ 145.75921, 15.18326 ], [ 145.759004, 15.183504 ], [ 145.758906, 15.183619 ], [ 145.758616, 15.183964 ], [ 145.75852, 15.18408 ], [ 145.75822, 15.18405 ], [ 145.75797, 15.184057 ], [ 145.75788, 15.18406 ], [ 145.75746, 15.18408 ], [ 145.75674, 15.18417 ], [ 145.7565, 15.18417 ], [ 145.75635, 15.18415 ], [ 145.756324, 15.184143 ], [ 145.75618, 15.18411 ], [ 145.75602, 15.18405 ], [ 145.75581, 15.18395 ], [ 145.755129, 15.184161 ], [ 145.754532, 15.184347 ], [ 145.753034, 15.184552 ], [ 145.752329, 15.184649 ], [ 145.752151, 15.184805 ], [ 145.751876, 15.185056 ], [ 145.75113, 15.18515 ], [ 145.751103, 15.18517 ], [ 145.750732, 15.185461 ], [ 145.75075, 15.18541 ], [ 145.746007, 15.185454 ], [ 145.745202, 15.185461 ], [ 145.742917, 15.185484 ], [ 145.741655, 15.185499 ], [ 145.741752, 15.186855 ], [ 145.741958, 15.193059 ], [ 145.742, 15.194221 ], [ 145.742214, 15.199835 ], [ 145.741436, 15.201844 ], [ 145.741171, 15.203231 ], [ 145.741246, 15.204895 ], [ 145.741414, 15.205562 ], [ 145.74235, 15.206594 ], [ 145.742775, 15.207234 ], [ 145.743546, 15.207321 ], [ 145.746299, 15.208238 ], [ 145.746406, 15.208382 ], [ 145.746591, 15.208707 ], [ 145.746632, 15.209066 ], [ 145.746755, 15.209523 ], [ 145.746744, 15.210041 ], [ 145.746821, 15.210609 ], [ 145.746927, 15.210943 ], [ 145.746961, 15.211266 ], [ 145.746929, 15.211757 ], [ 145.74697, 15.212078 ], [ 145.746986, 15.212199 ], [ 145.746964, 15.212715 ], [ 145.746769, 15.213013 ], [ 145.746438, 15.213208 ], [ 145.7485, 15.21729 ], [ 145.74861, 15.21725 ], [ 145.749016, 15.217228 ], [ 145.74917, 15.21722 ], [ 145.749437, 15.217239 ], [ 145.749372, 15.217618 ], [ 145.749236, 15.218253 ], [ 145.74922, 15.218311 ], [ 145.749154, 15.218558 ], [ 145.748894, 15.218932 ], [ 145.748728, 15.219253 ], [ 145.748548, 15.219532 ], [ 145.747945, 15.220186 ], [ 145.747691, 15.220583 ], [ 145.74752, 15.221071 ], [ 145.747503, 15.221122 ], [ 145.747413, 15.221273 ], [ 145.746938, 15.221619 ], [ 145.746774, 15.221758 ], [ 145.746727, 15.221799 ], [ 145.74661, 15.22208 ], [ 145.74696, 15.22221 ], [ 145.747107, 15.222302 ], [ 145.74736, 15.22246 ], [ 145.7476, 15.22264 ], [ 145.74774, 15.22274 ], [ 145.74794, 15.22297 ], [ 145.74809, 15.22317 ], [ 145.74839, 15.22383 ], [ 145.748417, 15.223905 ], [ 145.74852, 15.22419 ], [ 145.74869, 15.22456 ], [ 145.748727, 15.224663 ], [ 145.74882, 15.22492 ], [ 145.748847, 15.224972 ], [ 145.7489, 15.22507 ], [ 145.748902, 15.225113 ], [ 145.748911, 15.225243 ], [ 145.748914, 15.225287 ], [ 145.74892, 15.22537 ], [ 145.748922, 15.225388 ], [ 145.74894, 15.22551 ], [ 145.748901, 15.22569 ], [ 145.74888, 15.22579 ], [ 145.748895, 15.225815 ], [ 145.74894, 15.225891 ], [ 145.748955, 15.225917 ], [ 145.748985, 15.225969 ], [ 145.749075, 15.226125 ], [ 145.749105, 15.226177 ], [ 145.749183, 15.226467 ], [ 145.749418, 15.227338 ], [ 145.749497, 15.227629 ], [ 145.75129, 15.22996 ], [ 145.752305, 15.230387 ], [ 145.75305, 15.230883 ], [ 145.753444, 15.231162 ], [ 145.753537, 15.231266 ], [ 145.754785, 15.232658 ], [ 145.755201, 15.233122 ], [ 145.756261, 15.233965 ], [ 145.756789, 15.234384 ], [ 145.759444, 15.236494 ], [ 145.760506, 15.237337 ], [ 145.76095, 15.237571 ], [ 145.761041, 15.237619 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "69", "COUNTYFP10": "110", "TRACTCE10": "000200", "GEOID10": "69110000200", "NAME10": "2", "NAMELSAD10": "Census Tract 2", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2337665, "AWATER10": 0, "INTPTLAT10": "+15.2376525", "INTPTLON10": "+145.7565762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.761041, 15.237619 ], [ 145.76095, 15.237571 ], [ 145.760506, 15.237337 ], [ 145.759444, 15.236494 ], [ 145.756789, 15.234384 ], [ 145.756261, 15.233965 ], [ 145.755201, 15.233122 ], [ 145.754785, 15.232658 ], [ 145.753537, 15.231266 ], [ 145.753444, 15.231162 ], [ 145.75305, 15.230883 ], [ 145.752305, 15.230387 ], [ 145.75129, 15.22996 ], [ 145.749497, 15.227629 ], [ 145.749418, 15.227338 ], [ 145.749183, 15.226467 ], [ 145.749105, 15.226177 ], [ 145.749075, 15.226125 ], [ 145.748985, 15.225969 ], [ 145.748955, 15.225917 ], [ 145.74894, 15.225891 ], [ 145.748895, 15.225815 ], [ 145.74888, 15.22579 ], [ 145.748901, 15.22569 ], [ 145.74894, 15.22551 ], [ 145.748922, 15.225388 ], [ 145.74892, 15.22537 ], [ 145.748914, 15.225287 ], [ 145.748911, 15.225243 ], [ 145.748902, 15.225113 ], [ 145.7489, 15.22507 ], [ 145.748847, 15.224972 ], [ 145.74882, 15.22492 ], [ 145.748727, 15.224663 ], [ 145.74869, 15.22456 ], [ 145.74852, 15.22419 ], [ 145.748417, 15.223905 ], [ 145.74839, 15.22383 ], [ 145.74809, 15.22317 ], [ 145.74794, 15.22297 ], [ 145.74774, 15.22274 ], [ 145.7476, 15.22264 ], [ 145.74736, 15.22246 ], [ 145.747107, 15.222302 ], [ 145.74696, 15.22221 ], [ 145.74661, 15.22208 ], [ 145.74645, 15.22205 ], [ 145.74642, 15.22205 ], [ 145.74625, 15.2221 ], [ 145.7462, 15.222149 ], [ 145.74615, 15.2222 ], [ 145.74606, 15.22234 ], [ 145.74596, 15.22254 ], [ 145.74584, 15.2228 ], [ 145.745795, 15.222873 ], [ 145.74565, 15.22311 ], [ 145.74564, 15.223126 ], [ 145.74561, 15.223174 ], [ 145.7456, 15.22319 ], [ 145.745587, 15.223206 ], [ 145.745552, 15.223257 ], [ 145.74554, 15.223274 ], [ 145.745526, 15.223292 ], [ 145.745488, 15.223348 ], [ 145.745475, 15.223367 ], [ 145.745455, 15.223394 ], [ 145.745395, 15.223478 ], [ 145.74538, 15.2235 ], [ 145.745376, 15.223506 ], [ 145.745288, 15.223636 ], [ 145.745027, 15.224029 ], [ 145.74494, 15.22416 ], [ 145.744784, 15.224402 ], [ 145.74469, 15.22455 ], [ 145.744314, 15.225126 ], [ 145.744157, 15.225367 ], [ 145.744121, 15.225422 ], [ 145.74409, 15.22547 ], [ 145.744035, 15.225599 ], [ 145.74401, 15.22566 ], [ 145.744324, 15.2257 ], [ 145.7444, 15.22571 ], [ 145.74481, 15.22575 ], [ 145.74523, 15.22586 ], [ 145.745255, 15.225871 ], [ 145.74539, 15.22593 ], [ 145.74552, 15.22604 ], [ 145.745575, 15.226087 ], [ 145.745741, 15.226228 ], [ 145.74579, 15.22627 ], [ 145.745796, 15.226277 ], [ 145.74618, 15.22672 ], [ 145.746244, 15.226799 ], [ 145.74707, 15.22781 ], [ 145.74714, 15.22796 ], [ 145.74797, 15.22892 ], [ 145.74816, 15.22917 ], [ 145.74832, 15.22935 ], [ 145.74842, 15.22948 ], [ 145.74852, 15.22963 ], [ 145.74864, 15.2298 ], [ 145.74875, 15.23001 ], [ 145.74884, 15.23015 ], [ 145.74892, 15.23035 ], [ 145.74924, 15.231 ], [ 145.74895, 15.2311 ], [ 145.748889, 15.231351 ], [ 145.7486, 15.23256 ], [ 145.74841, 15.23323 ], [ 145.748388, 15.23331 ], [ 145.74821, 15.23396 ], [ 145.748155, 15.234169 ], [ 145.74804, 15.23461 ], [ 145.747981, 15.234794 ], [ 145.74798, 15.2348 ], [ 145.74794, 15.2349 ], [ 145.74785, 15.23495 ], [ 145.747857, 15.234968 ], [ 145.74788, 15.235025 ], [ 145.747888, 15.235044 ], [ 145.746856, 15.236518 ], [ 145.746856, 15.23655 ], [ 145.746856, 15.2366 ], [ 145.74685, 15.236648 ], [ 145.746847, 15.236681 ], [ 145.746896, 15.236846 ], [ 145.746931, 15.236932 ], [ 145.746963, 15.23701 ], [ 145.747005, 15.237083 ], [ 145.747055, 15.237149 ], [ 145.747113, 15.237215 ], [ 145.74718, 15.237264 ], [ 145.747248, 15.237322 ], [ 145.747323, 15.237372 ], [ 145.747399, 15.237413 ], [ 145.747487, 15.237473 ], [ 145.747542, 15.237512 ], [ 145.747721, 15.237597 ], [ 145.74774, 15.237663 ], [ 145.747757, 15.237679 ], [ 145.747809, 15.237725 ], [ 145.747863, 15.237749 ], [ 145.747892, 15.237822 ], [ 145.747946, 15.237865 ], [ 145.747948, 15.237865 ], [ 145.747995, 15.237872 ], [ 145.748037, 15.237891 ], [ 145.748068, 15.237911 ], [ 145.748113, 15.237942 ], [ 145.748167, 15.237963 ], [ 145.748197, 15.237975 ], [ 145.748202, 15.237978 ], [ 145.748238, 15.237996 ], [ 145.748347, 15.238052 ], [ 145.748356, 15.238057 ], [ 145.748381, 15.238075 ], [ 145.748411, 15.238097 ], [ 145.748424, 15.238107 ], [ 145.748499, 15.238148 ], [ 145.748506, 15.238155 ], [ 145.748533, 15.238182 ], [ 145.748566, 15.238214 ], [ 145.748634, 15.238272 ], [ 145.748709, 15.238321 ], [ 145.748785, 15.238362 ], [ 145.748812, 15.238435 ], [ 145.748829, 15.238529 ], [ 145.748837, 15.238538 ], [ 145.748894, 15.238604 ], [ 145.749011, 15.23861 ], [ 145.749145, 15.238725 ], [ 145.74923, 15.238742 ], [ 145.749314, 15.238734 ], [ 145.749448, 15.238833 ], [ 145.749599, 15.238932 ], [ 145.749684, 15.238957 ], [ 145.749768, 15.238973 ], [ 145.749826, 15.239039 ], [ 145.749911, 15.239057 ], [ 145.749995, 15.239082 ], [ 145.750062, 15.239131 ], [ 145.750134, 15.239152 ], [ 145.750146, 15.239156 ], [ 145.750191, 15.239211 ], [ 145.750306, 15.239231 ], [ 145.75039, 15.239264 ], [ 145.750541, 15.239347 ], [ 145.750574, 15.23936 ], [ 145.750626, 15.23938 ], [ 145.750794, 15.239397 ], [ 145.750878, 15.239415 ], [ 145.750962, 15.239423 ], [ 145.751047, 15.239423 ], [ 145.751032, 15.239524 ], [ 145.751198, 15.239621 ], [ 145.751366, 15.23967 ], [ 145.75139, 15.239683 ], [ 145.751442, 15.239711 ], [ 145.751509, 15.239777 ], [ 145.75171, 15.239927 ], [ 145.751777, 15.239983 ], [ 145.751853, 15.240034 ], [ 145.751979, 15.240181 ], [ 145.752113, 15.24028 ], [ 145.752188, 15.24033 ], [ 145.752264, 15.240371 ], [ 145.752331, 15.240429 ], [ 145.752466, 15.240528 ], [ 145.75255, 15.240545 ], [ 145.752634, 15.24057 ], [ 145.752725, 15.240387 ], [ 145.752683, 15.240213 ], [ 145.752844, 15.240366 ], [ 145.752915, 15.240546 ], [ 145.753041, 15.24064 ], [ 145.753172, 15.240762 ], [ 145.753223, 15.240835 ], [ 145.75329, 15.240884 ], [ 145.753348, 15.240934 ], [ 145.753357, 15.240942 ], [ 145.753407, 15.241008 ], [ 145.753457, 15.241172 ], [ 145.753456, 15.241254 ], [ 145.753464, 15.241336 ], [ 145.753431, 15.241428 ], [ 145.753434, 15.241537 ], [ 145.75346, 15.241666 ], [ 145.753443, 15.241751 ], [ 145.753413, 15.241841 ], [ 145.7534, 15.241865 ], [ 145.753368, 15.241922 ], [ 145.753367, 15.242104 ], [ 145.753398, 15.242169 ], [ 145.753401, 15.242175 ], [ 145.753474, 15.242262 ], [ 145.75356, 15.242295 ], [ 145.753553, 15.242373 ], [ 145.753626, 15.242431 ], [ 145.753626, 15.242507 ], [ 145.753714, 15.242579 ], [ 145.753822, 15.242638 ], [ 145.75391, 15.242695 ], [ 145.754004, 15.242714 ], [ 145.754054, 15.242753 ], [ 145.754068, 15.242763 ], [ 145.754117, 15.242845 ], [ 145.75419, 15.242903 ], [ 145.754285, 15.242968 ], [ 145.754288, 15.24297 ], [ 145.754381, 15.243014 ], [ 145.75445, 15.243072 ], [ 145.754553, 15.243115 ], [ 145.75472, 15.243159 ], [ 145.754804, 15.243207 ], [ 145.754854, 15.243249 ], [ 145.754877, 15.243269 ], [ 145.754937, 15.243327 ], [ 145.755054, 15.243385 ], [ 145.755167, 15.243441 ], [ 145.755192, 15.243453 ], [ 145.755339, 15.243511 ], [ 145.755433, 15.243559 ], [ 145.755511, 15.243608 ], [ 145.755627, 15.243641 ], [ 145.755711, 15.243649 ], [ 145.755795, 15.243674 ], [ 145.755879, 15.243691 ], [ 145.755963, 15.243691 ], [ 145.756048, 15.243709 ], [ 145.756132, 15.243734 ], [ 145.756301, 15.243751 ], [ 145.756385, 15.243768 ], [ 145.756553, 15.243769 ], [ 145.756891, 15.243803 ], [ 145.756975, 15.24382 ], [ 145.757059, 15.243828 ], [ 145.757143, 15.243829 ], [ 145.757312, 15.243879 ], [ 145.757396, 15.243896 ], [ 145.75748, 15.243904 ], [ 145.757564, 15.243929 ], [ 145.75763, 15.243943 ], [ 145.757649, 15.243947 ], [ 145.757733, 15.243955 ], [ 145.757986, 15.244005 ], [ 145.758323, 15.24404 ], [ 145.758509, 15.244071 ], [ 145.759184, 15.244261 ], [ 145.760934, 15.244863 ], [ 145.761033, 15.244915 ], [ 145.761117, 15.24494 ], [ 145.761162, 15.24494 ], [ 145.761202, 15.24494 ], [ 145.761286, 15.244966 ], [ 145.761462, 15.245032 ], [ 145.761555, 15.245041 ], [ 145.76161, 15.24499 ], [ 145.761724, 15.245067 ], [ 145.761808, 15.2451 ], [ 145.761831, 15.245102 ], [ 145.761892, 15.245108 ], [ 145.761977, 15.245124 ], [ 145.762061, 15.245134 ], [ 145.762074, 15.245134 ], [ 145.762145, 15.245134 ], [ 145.762235, 15.245094 ], [ 145.762338, 15.24509 ], [ 145.762412, 15.24511 ], [ 145.762486, 15.245106 ], [ 145.762498, 15.245109 ], [ 145.762567, 15.245128 ], [ 145.762651, 15.245128 ], [ 145.762727, 15.24517 ], [ 145.763013, 15.245278 ], [ 145.763097, 15.245294 ], [ 145.763181, 15.24532 ], [ 145.76335, 15.245386 ], [ 145.763501, 15.245468 ], [ 145.76372, 15.245549 ], [ 145.763728, 15.245552 ], [ 145.763778, 15.245618 ], [ 145.763837, 15.245684 ], [ 145.763904, 15.245733 ], [ 145.76398, 15.245775 ], [ 145.764057, 15.245736 ], [ 145.764165, 15.245732 ], [ 145.764232, 15.2458 ], [ 145.764401, 15.245867 ], [ 145.764477, 15.245909 ], [ 145.764561, 15.245933 ], [ 145.764645, 15.245966 ], [ 145.764674, 15.245981 ], [ 145.764721, 15.246007 ], [ 145.764805, 15.246025 ], [ 145.764889, 15.24605 ], [ 145.765057, 15.246116 ], [ 145.765133, 15.246158 ], [ 145.765217, 15.246199 ], [ 145.765301, 15.246232 ], [ 145.765377, 15.246273 ], [ 145.765444, 15.246331 ], [ 145.765511, 15.246381 ], [ 145.765595, 15.246414 ], [ 145.765696, 15.246471 ], [ 145.765831, 15.24657 ], [ 145.765982, 15.246654 ], [ 145.766066, 15.246678 ], [ 145.766142, 15.24672 ], [ 145.766226, 15.246753 ], [ 145.766461, 15.246877 ], [ 145.766491, 15.246894 ], [ 145.766612, 15.24696 ], [ 145.76668, 15.247009 ], [ 145.766755, 15.247051 ], [ 145.76684, 15.247075 ], [ 145.766918, 15.247148 ], [ 145.766967, 15.247202 ], [ 145.767075, 15.2472 ], [ 145.767167, 15.247249 ], [ 145.767188, 15.24727 ], [ 145.767272, 15.247356 ], [ 145.767411, 15.247423 ], [ 145.767487, 15.247472 ], [ 145.767524, 15.247486 ], [ 145.767571, 15.247505 ], [ 145.767646, 15.247546 ], [ 145.767697, 15.247602 ], [ 145.767815, 15.247605 ], [ 145.768016, 15.247753 ], [ 145.768083, 15.247819 ], [ 145.76815, 15.247877 ], [ 145.768749, 15.247161 ], [ 145.768941, 15.24696 ], [ 145.769254, 15.24662 ], [ 145.769282, 15.246579 ], [ 145.769563, 15.246298 ], [ 145.770837, 15.244968 ], [ 145.77096, 15.24483 ], [ 145.771414, 15.244337 ], [ 145.771056, 15.244084 ], [ 145.770752, 15.243884 ], [ 145.765922, 15.240572 ], [ 145.765862, 15.240541 ], [ 145.764658, 15.239928 ], [ 145.764104, 15.239479 ], [ 145.763972, 15.23939 ], [ 145.763577, 15.239123 ], [ 145.763446, 15.239035 ], [ 145.763303, 15.238929 ], [ 145.762874, 15.238615 ], [ 145.762731, 15.23851 ], [ 145.762286, 15.238275 ], [ 145.761041, 15.237619 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "69", "COUNTYFP10": "110", "TRACTCE10": "000300", "GEOID10": "69110000300", "NAME10": "3", "NAMELSAD10": "Census Tract 3", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4638838, "AWATER10": 0, "INTPTLAT10": "+15.2199353", "INTPTLON10": "+145.7362610" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.712619, 15.242681 ], [ 145.713026, 15.242311 ], [ 145.713372, 15.241997 ], [ 145.713565, 15.241811 ], [ 145.713661, 15.241649 ], [ 145.713748, 15.241458 ], [ 145.713773, 15.241297 ], [ 145.7138, 15.241124 ], [ 145.713688, 15.240722 ], [ 145.713432, 15.240465 ], [ 145.713359, 15.240331 ], [ 145.713201, 15.240038 ], [ 145.713124, 15.239849 ], [ 145.712928, 15.239894 ], [ 145.712773, 15.239929 ], [ 145.712594, 15.23997 ], [ 145.71223, 15.24007 ], [ 145.712003, 15.24014 ], [ 145.711661, 15.240346 ], [ 145.711395, 15.240654 ], [ 145.710617, 15.24056 ], [ 145.710591, 15.240696 ], [ 145.711515, 15.240833 ], [ 145.711493, 15.24108 ], [ 145.711481, 15.24121 ], [ 145.711416, 15.241454 ], [ 145.71141, 15.241629 ], [ 145.711245, 15.241881 ], [ 145.711139, 15.242108 ], [ 145.711015, 15.242388 ], [ 145.710908, 15.24263 ], [ 145.710993, 15.242947 ], [ 145.711147, 15.243101 ], [ 145.711481, 15.243172 ], [ 145.711685, 15.243174 ], [ 145.712319, 15.242938 ], [ 145.712619, 15.242681 ] ] ], [ [ [ 145.723459, 15.218661 ], [ 145.723553, 15.218598 ], [ 145.723553, 15.218198 ], [ 145.723561, 15.217735 ], [ 145.723529, 15.217539 ], [ 145.723427, 15.217421 ], [ 145.723239, 15.217366 ], [ 145.722667, 15.217369 ], [ 145.722305, 15.217421 ], [ 145.722148, 15.217421 ], [ 145.721858, 15.217468 ], [ 145.721638, 15.217547 ], [ 145.721332, 15.217688 ], [ 145.721277, 15.21779 ], [ 145.721473, 15.217892 ], [ 145.721592, 15.217939 ], [ 145.721732, 15.2179 ], [ 145.721732, 15.217798 ], [ 145.721944, 15.217704 ], [ 145.722211, 15.217649 ], [ 145.722595, 15.217609 ], [ 145.722908, 15.217603 ], [ 145.723113, 15.21768 ], [ 145.723317, 15.217837 ], [ 145.723325, 15.218025 ], [ 145.723309, 15.218323 ], [ 145.723357, 15.21859 ], [ 145.723459, 15.218661 ] ] ], [ [ [ 145.72578, 15.21 ], [ 145.72564, 15.21007 ], [ 145.725621, 15.210085 ], [ 145.72556, 15.21014 ], [ 145.725517, 15.210199 ], [ 145.72548, 15.21025 ], [ 145.72543, 15.21035 ], [ 145.7254, 15.21054 ], [ 145.725397, 15.21056 ], [ 145.72538, 15.21074 ], [ 145.725358, 15.210909 ], [ 145.72534, 15.21106 ], [ 145.7253, 15.21119 ], [ 145.72525, 15.21133 ], [ 145.725218, 15.211398 ], [ 145.72518, 15.21148 ], [ 145.72514, 15.21155 ], [ 145.72507, 15.21168 ], [ 145.725021, 15.211764 ], [ 145.72496, 15.21187 ], [ 145.72482, 15.21209 ], [ 145.72474, 15.2122 ], [ 145.72461, 15.21234 ], [ 145.72459, 15.212356 ], [ 145.72454, 15.2124 ], [ 145.7244, 15.21251 ], [ 145.7233, 15.21324 ], [ 145.722729, 15.213607 ], [ 145.721718, 15.21423 ], [ 145.721249, 15.214537 ], [ 145.72068, 15.21487 ], [ 145.720661, 15.214882 ], [ 145.720607, 15.214917 ], [ 145.72059, 15.21493 ], [ 145.720516, 15.214978 ], [ 145.720294, 15.215122 ], [ 145.72022, 15.21517 ], [ 145.720142, 15.21522 ], [ 145.719908, 15.21537 ], [ 145.71983, 15.21542 ], [ 145.719753, 15.215467 ], [ 145.7197, 15.2155 ], [ 145.719525, 15.215611 ], [ 145.71945, 15.21566 ], [ 145.719392, 15.215698 ], [ 145.719217, 15.215812 ], [ 145.71916, 15.21585 ], [ 145.719075, 15.215906 ], [ 145.718823, 15.216073 ], [ 145.71874, 15.21613 ], [ 145.718708, 15.216148 ], [ 145.718611, 15.216202 ], [ 145.71858, 15.21622 ], [ 145.718257, 15.216433 ], [ 145.71793, 15.21665 ], [ 145.717285, 15.217062 ], [ 145.71696, 15.21727 ], [ 145.716791, 15.217375 ], [ 145.716506, 15.217553 ], [ 145.716295, 15.217704 ], [ 145.716134, 15.217821 ], [ 145.716397, 15.218811 ], [ 145.716424, 15.218918 ], [ 145.716501, 15.21904 ], [ 145.716554, 15.219125 ], [ 145.716653, 15.219259 ], [ 145.716712, 15.219334 ], [ 145.716809, 15.219498 ], [ 145.716901, 15.219644 ], [ 145.717101, 15.219717 ], [ 145.717379, 15.21973 ], [ 145.717489, 15.219715 ], [ 145.71766, 15.219677 ], [ 145.717809, 15.219651 ], [ 145.717953, 15.21964 ], [ 145.718078, 15.219638 ], [ 145.718281, 15.219633 ], [ 145.718471, 15.219611 ], [ 145.718665, 15.219602 ], [ 145.718916, 15.219567 ], [ 145.71944, 15.219434 ], [ 145.719728, 15.219359 ], [ 145.720047, 15.219272 ], [ 145.720437, 15.219165 ], [ 145.720758, 15.219062 ], [ 145.720997, 15.218905 ], [ 145.721187, 15.218735 ], [ 145.721296, 15.218482 ], [ 145.721208, 15.218256 ], [ 145.721028, 15.218205 ], [ 145.720796, 15.218245 ], [ 145.720663, 15.218365 ], [ 145.720609, 15.218661 ], [ 145.72047, 15.218484 ], [ 145.720419, 15.21818 ], [ 145.720526, 15.217907 ], [ 145.720613, 15.21769 ], [ 145.720727, 15.217583 ], [ 145.720796, 15.217487 ], [ 145.720857, 15.217404 ], [ 145.721043, 15.217268 ], [ 145.721645, 15.216996 ], [ 145.721753, 15.216951 ], [ 145.722409, 15.216948 ], [ 145.723662, 15.216945 ], [ 145.723799, 15.217084 ], [ 145.723917, 15.217245 ], [ 145.724041, 15.217584 ], [ 145.724089, 15.218155 ], [ 145.72408, 15.218778 ], [ 145.723882, 15.21965 ], [ 145.72371, 15.220437 ], [ 145.723682, 15.22064 ], [ 145.723636, 15.220827 ], [ 145.723617, 15.220905 ], [ 145.723582, 15.221109 ], [ 145.723538, 15.221314 ], [ 145.723512, 15.221567 ], [ 145.723459, 15.221805 ], [ 145.723433, 15.222009 ], [ 145.72337, 15.222191 ], [ 145.723346, 15.222323 ], [ 145.723354, 15.222483 ], [ 145.72343, 15.222508 ], [ 145.723531, 15.222451 ], [ 145.723566, 15.222305 ], [ 145.723635, 15.222124 ], [ 145.723661, 15.221978 ], [ 145.723687, 15.221862 ], [ 145.723713, 15.221699 ], [ 145.723799, 15.221438 ], [ 145.723817, 15.221315 ], [ 145.723851, 15.221176 ], [ 145.72386, 15.221053 ], [ 145.723904, 15.220857 ], [ 145.723921, 15.220751 ], [ 145.723922, 15.220628 ], [ 145.723956, 15.220505 ], [ 145.723999, 15.220424 ], [ 145.724084, 15.220326 ], [ 145.724177, 15.220294 ], [ 145.724312, 15.220286 ], [ 145.724446, 15.220345 ], [ 145.724581, 15.220394 ], [ 145.724774, 15.220494 ], [ 145.724884, 15.220585 ], [ 145.725085, 15.2207 ], [ 145.725253, 15.220791 ], [ 145.725421, 15.22089 ], [ 145.725556, 15.22098 ], [ 145.725724, 15.221039 ], [ 145.725926, 15.221146 ], [ 145.726035, 15.221237 ], [ 145.726144, 15.22132 ], [ 145.726262, 15.221378 ], [ 145.726337, 15.221461 ], [ 145.726328, 15.221583 ], [ 145.72626, 15.221674 ], [ 145.726166, 15.221803 ], [ 145.726123, 15.221918 ], [ 145.726123, 15.221975 ], [ 145.72619, 15.222017 ], [ 145.726292, 15.221992 ], [ 145.726368, 15.221903 ], [ 145.726463, 15.2216 ], [ 145.726514, 15.221469 ], [ 145.726539, 15.221277 ], [ 145.726549, 15.2212 ], [ 145.726584, 15.221061 ], [ 145.726644, 15.220774 ], [ 145.726527, 15.220683 ], [ 145.726537, 15.220528 ], [ 145.726529, 15.220438 ], [ 145.726453, 15.220405 ], [ 145.726385, 15.220421 ], [ 145.726359, 15.220527 ], [ 145.726367, 15.220674 ], [ 145.726351, 15.220738 ], [ 145.726392, 15.220838 ], [ 145.726463, 15.220879 ], [ 145.726425, 15.220921 ], [ 145.726324, 15.220855 ], [ 145.726174, 15.22055 ], [ 145.726124, 15.220461 ], [ 145.726074, 15.220362 ], [ 145.726015, 15.220271 ], [ 145.725974, 15.220198 ], [ 145.725898, 15.220156 ], [ 145.725805, 15.220189 ], [ 145.725661, 15.220253 ], [ 145.725551, 15.220293 ], [ 145.72545, 15.220318 ], [ 145.725349, 15.22035 ], [ 145.725239, 15.220324 ], [ 145.725113, 15.220324 ], [ 145.725028, 15.22029 ], [ 145.724911, 15.220249 ], [ 145.724751, 15.220223 ], [ 145.724583, 15.22014 ], [ 145.724459, 15.220073 ], [ 145.724322, 15.219999 ], [ 145.724245, 15.21975 ], [ 145.724366, 15.219392 ], [ 145.724446, 15.21901 ], [ 145.724566, 15.218767 ], [ 145.724421, 15.218584 ], [ 145.724634, 15.218173 ], [ 145.724739, 15.218187 ], [ 145.7253, 15.218997 ], [ 145.725643, 15.219715 ], [ 145.725712, 15.219798 ], [ 145.725811, 15.219901 ], [ 145.725863, 15.219937 ], [ 145.725852, 15.219851 ], [ 145.725772, 15.21973 ], [ 145.725722, 15.219638 ], [ 145.725583, 15.219159 ], [ 145.725293, 15.218686 ], [ 145.724949, 15.218139 ], [ 145.724759, 15.21781 ], [ 145.724884, 15.217544 ], [ 145.724939, 15.2175 ], [ 145.725035, 15.217514 ], [ 145.725318, 15.217631 ], [ 145.725839, 15.217733 ], [ 145.725906, 15.217694 ], [ 145.726005, 15.217716 ], [ 145.726123, 15.217734 ], [ 145.72625, 15.217735 ], [ 145.726435, 15.217769 ], [ 145.726511, 15.21781 ], [ 145.726594, 15.217949 ], [ 145.726653, 15.218023 ], [ 145.726745, 15.218098 ], [ 145.726841, 15.218194 ], [ 145.726982, 15.218194 ], [ 145.72709, 15.21816 ], [ 145.727174, 15.218215 ], [ 145.727309, 15.218181 ], [ 145.727402, 15.218208 ], [ 145.727495, 15.218257 ], [ 145.727596, 15.218242 ], [ 145.72762, 15.218192 ], [ 145.727705, 15.21825 ], [ 145.727835, 15.218291 ], [ 145.727936, 15.218303 ], [ 145.728049, 15.218296 ], [ 145.728122, 15.218281 ], [ 145.728216, 15.218332 ], [ 145.728208, 15.218371 ], [ 145.728235, 15.218429 ], [ 145.728283, 15.218457 ], [ 145.728439, 15.21838 ], [ 145.728509, 15.218361 ], [ 145.728716, 15.218445 ], [ 145.728823, 15.218436 ], [ 145.728878, 15.218441 ], [ 145.72889, 15.218455 ], [ 145.728888, 15.218473 ], [ 145.728862, 15.218527 ], [ 145.728865, 15.218558 ], [ 145.728855, 15.218595 ], [ 145.728835, 15.218629 ], [ 145.728831, 15.218659 ], [ 145.728856, 15.218679 ], [ 145.728888, 15.218676 ], [ 145.728936, 15.218594 ], [ 145.728949, 15.218566 ], [ 145.728985, 15.21853 ], [ 145.729023, 15.218512 ], [ 145.729064, 15.218475 ], [ 145.729074, 15.218508 ], [ 145.729037, 15.218621 ], [ 145.729027, 15.218664 ], [ 145.729024, 15.218682 ], [ 145.729066, 15.218713 ], [ 145.72909, 15.218717 ], [ 145.729204, 15.218614 ], [ 145.72928, 15.218593 ], [ 145.729425, 15.218623 ], [ 145.729499, 15.218679 ], [ 145.729574, 15.218752 ], [ 145.729616, 15.218826 ], [ 145.729632, 15.218917 ], [ 145.72969, 15.21898 ], [ 145.729744, 15.218994 ], [ 145.729772, 15.219062 ], [ 145.729899, 15.219063 ], [ 145.730011, 15.219098 ], [ 145.730153, 15.219238 ], [ 145.730279, 15.219281 ], [ 145.730414, 15.219396 ], [ 145.730548, 15.219445 ], [ 145.730649, 15.21952 ], [ 145.730741, 15.219577 ], [ 145.730834, 15.21966 ], [ 145.730951, 15.219734 ], [ 145.731035, 15.219808 ], [ 145.73111, 15.219891 ], [ 145.731203, 15.219924 ], [ 145.731304, 15.220014 ], [ 145.731379, 15.220064 ], [ 145.731472, 15.220138 ], [ 145.731505, 15.220188 ], [ 145.731495, 15.220273 ], [ 145.731435, 15.22028 ], [ 145.731411, 15.220353 ], [ 145.731425, 15.22041 ], [ 145.731402, 15.220466 ], [ 145.731314, 15.220463 ], [ 145.731235, 15.220467 ], [ 145.731042, 15.220549 ], [ 145.730963, 15.220587 ], [ 145.730895, 15.220684 ], [ 145.730824, 15.220736 ], [ 145.730744, 15.220851 ], [ 145.730708, 15.220953 ], [ 145.730648, 15.2211 ], [ 145.730563, 15.221188 ], [ 145.730513, 15.221242 ], [ 145.730385, 15.221418 ], [ 145.730317, 15.221491 ], [ 145.730259, 15.221609 ], [ 145.730203, 15.22175 ], [ 145.730205, 15.221851 ], [ 145.73018, 15.221965 ], [ 145.730178, 15.222055 ], [ 145.730169, 15.222146 ], [ 145.730186, 15.22226 ], [ 145.730236, 15.222342 ], [ 145.730345, 15.222409 ], [ 145.730461, 15.222509 ], [ 145.7307, 15.222666 ], [ 145.730773, 15.222714 ], [ 145.730891, 15.222771 ], [ 145.731076, 15.222887 ], [ 145.731134, 15.222969 ], [ 145.731187, 15.22303 ], [ 145.731235, 15.223085 ], [ 145.731377, 15.223233 ], [ 145.731427, 15.223315 ], [ 145.731431, 15.22332 ], [ 145.731486, 15.223381 ], [ 145.731536, 15.223463 ], [ 145.731586, 15.223536 ], [ 145.731619, 15.223619 ], [ 145.731644, 15.223733 ], [ 145.731643, 15.223824 ], [ 145.731651, 15.223905 ], [ 145.73171, 15.22398 ], [ 145.731777, 15.224013 ], [ 145.73187, 15.22407 ], [ 145.732003, 15.223995 ], [ 145.732041, 15.224049 ], [ 145.73208, 15.224104 ], [ 145.732148, 15.22411 ], [ 145.732274, 15.224213 ], [ 145.732341, 15.224262 ], [ 145.731949, 15.224737 ], [ 145.733181, 15.225714 ], [ 145.733858, 15.226213 ], [ 145.733863, 15.226216 ], [ 145.735079, 15.227158 ], [ 145.735081, 15.227159 ], [ 145.736492, 15.227445 ], [ 145.736773, 15.226244 ], [ 145.737165, 15.22632 ], [ 145.73705, 15.227032 ], [ 145.737216, 15.227086 ], [ 145.737336, 15.22645 ], [ 145.737362, 15.226317 ], [ 145.737442, 15.226085 ], [ 145.737459, 15.225867 ], [ 145.737534, 15.225931 ], [ 145.737625, 15.225871 ], [ 145.737668, 15.225799 ], [ 145.737693, 15.225687 ], [ 145.737733, 15.225557 ], [ 145.737773, 15.225463 ], [ 145.737887, 15.225497 ], [ 145.738059, 15.22553 ], [ 145.738052, 15.225603 ], [ 145.738007, 15.225689 ], [ 145.737946, 15.225727 ], [ 145.737839, 15.225792 ], [ 145.737808, 15.225918 ], [ 145.737717, 15.226024 ], [ 145.737838, 15.226142 ], [ 145.73793, 15.226168 ], [ 145.738007, 15.226226 ], [ 145.738115, 15.226261 ], [ 145.738281, 15.226353 ], [ 145.738403, 15.226482 ], [ 145.738618, 15.226607 ], [ 145.7388, 15.226762 ], [ 145.738878, 15.226855 ], [ 145.738968, 15.226927 ], [ 145.739105, 15.227051 ], [ 145.739184, 15.227144 ], [ 145.739383, 15.227381 ], [ 145.739426, 15.227454 ], [ 145.739504, 15.227603 ], [ 145.739517, 15.227833 ], [ 145.739502, 15.227929 ], [ 145.739502, 15.228004 ], [ 145.739501, 15.228114 ], [ 145.739472, 15.228235 ], [ 145.739395, 15.228318 ], [ 145.739304, 15.228379 ], [ 145.739212, 15.228452 ], [ 145.738985, 15.228526 ], [ 145.738892, 15.228538 ], [ 145.73877, 15.228659 ], [ 145.738724, 15.228744 ], [ 145.738846, 15.228851 ], [ 145.738943, 15.228896 ], [ 145.739059, 15.22897 ], [ 145.739182, 15.228959 ], [ 145.739243, 15.228918 ], [ 145.739288, 15.228861 ], [ 145.739304, 15.228796 ], [ 145.739273, 15.228705 ], [ 145.739273, 15.228632 ], [ 145.739333, 15.228564 ], [ 145.739395, 15.228518 ], [ 145.739487, 15.228469 ], [ 145.739609, 15.228421 ], [ 145.739664, 15.228402 ], [ 145.739761, 15.228455 ], [ 145.739864, 15.228634 ], [ 145.739922, 15.228714 ], [ 145.739975, 15.228807 ], [ 145.739973, 15.228956 ], [ 145.740045, 15.229053 ], [ 145.740158, 15.229153 ], [ 145.740139, 15.229249 ], [ 145.740112, 15.229313 ], [ 145.740128, 15.229375 ], [ 145.740085, 15.229448 ], [ 145.740005, 15.229542 ], [ 145.739975, 15.229666 ], [ 145.740091, 15.229727 ], [ 145.740204, 15.229709 ], [ 145.740402, 15.22971 ], [ 145.740372, 15.229778 ], [ 145.740356, 15.22985 ], [ 145.740433, 15.229932 ], [ 145.738907, 15.229875 ], [ 145.738888, 15.230243 ], [ 145.739899, 15.23028 ], [ 145.739899, 15.230478 ], [ 145.739872, 15.230499 ], [ 145.739822, 15.230507 ], [ 145.739734, 15.230496 ], [ 145.739639, 15.230583 ], [ 145.739578, 15.230649 ], [ 145.739639, 15.230797 ], [ 145.739746, 15.230869 ], [ 145.739777, 15.230977 ], [ 145.73977, 15.231093 ], [ 145.739731, 15.231166 ], [ 145.738739, 15.231151 ], [ 145.738724, 15.231586 ], [ 145.739365, 15.231629 ], [ 145.739466, 15.231547 ], [ 145.739594, 15.231531 ], [ 145.739685, 15.231541 ], [ 145.739772, 15.231617 ], [ 145.739838, 15.231615 ], [ 145.739929, 15.231649 ], [ 145.740005, 15.231657 ], [ 145.740114, 15.231654 ], [ 145.740189, 15.231633 ], [ 145.740265, 15.231651 ], [ 145.740333, 15.231709 ], [ 145.740383, 15.231774 ], [ 145.740458, 15.231815 ], [ 145.740542, 15.23184 ], [ 145.740879, 15.231907 ], [ 145.74095, 15.231954 ], [ 145.740955, 15.231957 ], [ 145.741115, 15.232039 ], [ 145.741199, 15.232057 ], [ 145.741283, 15.23204 ], [ 145.741351, 15.231992 ], [ 145.741427, 15.231952 ], [ 145.741596, 15.231903 ], [ 145.741773, 15.231904 ], [ 145.741942, 15.231971 ], [ 145.74211, 15.232021 ], [ 145.742194, 15.23203 ], [ 145.742278, 15.232046 ], [ 145.742447, 15.232097 ], [ 145.742615, 15.232163 ], [ 145.742691, 15.232204 ], [ 145.742833, 15.232303 ], [ 145.742918, 15.232337 ], [ 145.743002, 15.232362 ], [ 145.743069, 15.232411 ], [ 145.743101, 15.232428 ], [ 145.74322, 15.232494 ], [ 145.74338, 15.232576 ], [ 145.743455, 15.232627 ], [ 145.74354, 15.232651 ], [ 145.743792, 15.232702 ], [ 145.743814, 15.232708 ], [ 145.744028, 15.232769 ], [ 145.744213, 15.232876 ], [ 145.744297, 15.232909 ], [ 145.744373, 15.23295 ], [ 145.744387, 15.23296 ], [ 145.744515, 15.233049 ], [ 145.744583, 15.233099 ], [ 145.744717, 15.233214 ], [ 145.744851, 15.233313 ], [ 145.744935, 15.233339 ], [ 145.745011, 15.23338 ], [ 145.745076, 15.23341 ], [ 145.745064, 15.233447 ], [ 145.745054, 15.233465 ], [ 145.745044, 15.233504 ], [ 145.74505, 15.233551 ], [ 145.745063, 15.233597 ], [ 145.745106, 15.233683 ], [ 145.74515, 15.233738 ], [ 145.745194, 15.233802 ], [ 145.745244, 15.233858 ], [ 145.745272, 15.233898 ], [ 145.74531, 15.233969 ], [ 145.745325, 15.234039 ], [ 145.745362, 15.234097 ], [ 145.74539, 15.234156 ], [ 145.745422, 15.23419 ], [ 145.745466, 15.234196 ], [ 145.745524, 15.234215 ], [ 145.74558, 15.234243 ], [ 145.745596, 15.234251 ], [ 145.745666, 15.234293 ], [ 145.745739, 15.23435 ], [ 145.745822, 15.234506 ], [ 145.745864, 15.23458 ], [ 145.745923, 15.234646 ], [ 145.745975, 15.234719 ], [ 145.746023, 15.234785 ], [ 145.746073, 15.234859 ], [ 145.746132, 15.234925 ], [ 145.746208, 15.234967 ], [ 145.746268, 15.235026 ], [ 145.746275, 15.235033 ], [ 145.74638, 15.23523 ], [ 145.746359, 15.235344 ], [ 145.746379, 15.235393 ], [ 145.746525, 15.235484 ], [ 145.746575, 15.23555 ], [ 145.746625, 15.235624 ], [ 145.746675, 15.23569 ], [ 145.746759, 15.235838 ], [ 145.746801, 15.23592 ], [ 145.746825, 15.236002 ], [ 145.746825, 15.236084 ], [ 145.746814, 15.236117 ], [ 145.746799, 15.236166 ], [ 145.746757, 15.236239 ], [ 145.746781, 15.236321 ], [ 145.746856, 15.236518 ], [ 145.747888, 15.235044 ], [ 145.74788, 15.235025 ], [ 145.747857, 15.234968 ], [ 145.74785, 15.23495 ], [ 145.74794, 15.2349 ], [ 145.74798, 15.2348 ], [ 145.747981, 15.234794 ], [ 145.74804, 15.23461 ], [ 145.748155, 15.234169 ], [ 145.74821, 15.23396 ], [ 145.748388, 15.23331 ], [ 145.74841, 15.23323 ], [ 145.7486, 15.23256 ], [ 145.748889, 15.231351 ], [ 145.74895, 15.2311 ], [ 145.74924, 15.231 ], [ 145.74892, 15.23035 ], [ 145.74884, 15.23015 ], [ 145.74875, 15.23001 ], [ 145.74864, 15.2298 ], [ 145.74852, 15.22963 ], [ 145.74842, 15.22948 ], [ 145.74832, 15.22935 ], [ 145.74816, 15.22917 ], [ 145.74797, 15.22892 ], [ 145.74714, 15.22796 ], [ 145.74707, 15.22781 ], [ 145.746244, 15.226799 ], [ 145.74618, 15.22672 ], [ 145.745796, 15.226277 ], [ 145.74579, 15.22627 ], [ 145.745741, 15.226228 ], [ 145.745575, 15.226087 ], [ 145.74552, 15.22604 ], [ 145.74539, 15.22593 ], [ 145.745255, 15.225871 ], [ 145.74523, 15.22586 ], [ 145.74481, 15.22575 ], [ 145.7444, 15.22571 ], [ 145.744324, 15.2257 ], [ 145.74401, 15.22566 ], [ 145.744035, 15.225599 ], [ 145.74409, 15.22547 ], [ 145.744121, 15.225422 ], [ 145.744157, 15.225367 ], [ 145.744314, 15.225126 ], [ 145.74469, 15.22455 ], [ 145.744784, 15.224402 ], [ 145.74494, 15.22416 ], [ 145.745027, 15.224029 ], [ 145.745288, 15.223636 ], [ 145.745376, 15.223506 ], [ 145.74538, 15.2235 ], [ 145.745395, 15.223478 ], [ 145.745455, 15.223394 ], [ 145.745475, 15.223367 ], [ 145.745488, 15.223348 ], [ 145.745526, 15.223292 ], [ 145.74554, 15.223274 ], [ 145.745552, 15.223257 ], [ 145.745587, 15.223206 ], [ 145.7456, 15.22319 ], [ 145.74561, 15.223174 ], [ 145.74564, 15.223126 ], [ 145.74565, 15.22311 ], [ 145.745795, 15.222873 ], [ 145.74584, 15.2228 ], [ 145.74596, 15.22254 ], [ 145.74606, 15.22234 ], [ 145.74615, 15.2222 ], [ 145.7462, 15.222149 ], [ 145.74625, 15.2221 ], [ 145.74642, 15.22205 ], [ 145.74645, 15.22205 ], [ 145.74661, 15.22208 ], [ 145.746727, 15.221799 ], [ 145.746774, 15.221758 ], [ 145.746938, 15.221619 ], [ 145.747413, 15.221273 ], [ 145.747503, 15.221122 ], [ 145.74752, 15.221071 ], [ 145.747691, 15.220583 ], [ 145.747945, 15.220186 ], [ 145.748548, 15.219532 ], [ 145.748728, 15.219253 ], [ 145.748894, 15.218932 ], [ 145.749154, 15.218558 ], [ 145.74922, 15.218311 ], [ 145.749236, 15.218253 ], [ 145.749372, 15.217618 ], [ 145.749437, 15.217239 ], [ 145.74917, 15.21722 ], [ 145.749016, 15.217228 ], [ 145.74861, 15.21725 ], [ 145.7485, 15.21729 ], [ 145.746438, 15.213208 ], [ 145.74572, 15.212079 ], [ 145.743796, 15.211576 ], [ 145.740476, 15.212095 ], [ 145.740033, 15.212184 ], [ 145.737702, 15.212541 ], [ 145.736593, 15.212126 ], [ 145.73575, 15.21186 ], [ 145.735613, 15.211814 ], [ 145.73548, 15.21177 ], [ 145.73532, 15.21169 ], [ 145.735234, 15.211621 ], [ 145.73522, 15.21161 ], [ 145.73516, 15.2115 ], [ 145.73508, 15.21146 ], [ 145.735052, 15.211427 ], [ 145.73484, 15.21118 ], [ 145.734793, 15.21113 ], [ 145.734703, 15.211034 ], [ 145.734619, 15.210945 ], [ 145.73452, 15.21084 ], [ 145.73441, 15.21068 ], [ 145.73439, 15.210662 ], [ 145.7343, 15.21058 ], [ 145.734191, 15.21048 ], [ 145.73418, 15.21047 ], [ 145.734, 15.21039 ], [ 145.733776, 15.210343 ], [ 145.73376, 15.21034 ], [ 145.733631, 15.210322 ], [ 145.733572, 15.210313 ], [ 145.733398, 15.210288 ], [ 145.73334, 15.21028 ], [ 145.733279, 15.21027 ], [ 145.733099, 15.21024 ], [ 145.73304, 15.21023 ], [ 145.73297, 15.21022 ], [ 145.73286, 15.21018 ], [ 145.73276, 15.21013 ], [ 145.732665, 15.210054 ], [ 145.73261, 15.21001 ], [ 145.73196, 15.20962 ], [ 145.731594, 15.20939 ], [ 145.73153, 15.20935 ], [ 145.73143, 15.20928 ], [ 145.73139, 15.20919 ], [ 145.73136, 15.20907 ], [ 145.731297, 15.209039 ], [ 145.731108, 15.208947 ], [ 145.731045, 15.208917 ], [ 145.730797, 15.208802 ], [ 145.73055, 15.20869 ], [ 145.73027, 15.20855 ], [ 145.729978, 15.208464 ], [ 145.729772, 15.208406 ], [ 145.729639, 15.208369 ], [ 145.72936, 15.20836 ], [ 145.729327, 15.208361 ], [ 145.729231, 15.208368 ], [ 145.7292, 15.20837 ], [ 145.729056, 15.208402 ], [ 145.7288, 15.20846 ], [ 145.728636, 15.208525 ], [ 145.7285, 15.20858 ], [ 145.72828, 15.20867 ], [ 145.728249, 15.208685 ], [ 145.72782, 15.2089 ], [ 145.727524, 15.209061 ], [ 145.727285, 15.209192 ], [ 145.727193, 15.209241 ], [ 145.726921, 15.20939 ], [ 145.72683, 15.20944 ], [ 145.72678, 15.20947 ], [ 145.726579, 15.209576 ], [ 145.72598, 15.209894 ], [ 145.72578, 15.21 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "69", "COUNTYFP10": "110", "TRACTCE10": "001500", "GEOID10": "69110001500", "NAME10": "15", "NAMELSAD10": "Census Tract 15", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 12884315, "AWATER10": 0, "INTPTLAT10": "+15.1662360", "INTPTLON10": "+145.7442810" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.76487, 15.17707 ], [ 145.764928, 15.176962 ], [ 145.765001, 15.176823 ], [ 145.765102, 15.176637 ], [ 145.76516, 15.17653 ], [ 145.765045, 15.176471 ], [ 145.764704, 15.176297 ], [ 145.76459, 15.17624 ], [ 145.762698, 15.175576 ], [ 145.761001, 15.175319 ], [ 145.761882, 15.173802 ], [ 145.761987, 15.173722 ], [ 145.762055, 15.173569 ], [ 145.762261, 15.173112 ], [ 145.76233, 15.17296 ], [ 145.76243, 15.17283 ], [ 145.762501, 15.172714 ], [ 145.762975, 15.17195 ], [ 145.76302, 15.17188 ], [ 145.76314, 15.1717 ], [ 145.763389, 15.17182 ], [ 145.76343, 15.17184 ], [ 145.76363, 15.17191 ], [ 145.76378, 15.17195 ], [ 145.76403, 15.172 ], [ 145.764189, 15.172039 ], [ 145.76431, 15.17207 ], [ 145.76446, 15.1721 ], [ 145.76443, 15.17201 ], [ 145.76433, 15.1719 ], [ 145.76426, 15.1718 ], [ 145.764222, 15.17177 ], [ 145.76412, 15.17169 ], [ 145.76398, 15.17156 ], [ 145.76386, 15.17149 ], [ 145.76373, 15.17137 ], [ 145.76364, 15.17126 ], [ 145.76357, 15.17115 ], [ 145.76356, 15.17106 ], [ 145.76357, 15.17093 ], [ 145.763609, 15.17083 ], [ 145.76367, 15.17068 ], [ 145.76379, 15.17046 ], [ 145.763864, 15.170311 ], [ 145.76389, 15.17026 ], [ 145.7641, 15.169875 ], [ 145.76418, 15.16973 ], [ 145.764252, 15.169527 ], [ 145.76428, 15.16945 ], [ 145.76429, 15.16931 ], [ 145.764283, 15.168885 ], [ 145.76428, 15.16867 ], [ 145.763918, 15.168053 ], [ 145.76391, 15.16804 ], [ 145.76398, 15.16801 ], [ 145.76405, 15.16796 ], [ 145.7641, 15.1679 ], [ 145.76413, 15.16784 ], [ 145.764143, 15.167802 ], [ 145.76418, 15.1677 ], [ 145.76421, 15.16759 ], [ 145.76431, 15.16741 ], [ 145.76446, 15.16716 ], [ 145.76463, 15.166886 ], [ 145.76466, 15.16684 ], [ 145.76474, 15.16675 ], [ 145.7648, 15.16671 ], [ 145.76487, 15.16669 ], [ 145.764897, 15.16669 ], [ 145.76495, 15.16669 ], [ 145.76506, 15.16672 ], [ 145.76535, 15.16687 ], [ 145.765489, 15.166947 ], [ 145.76612, 15.1673 ], [ 145.76635, 15.16742 ], [ 145.76673, 15.1676 ], [ 145.76704, 15.16776 ], [ 145.767225, 15.167853 ], [ 145.767809, 15.168147 ], [ 145.768022, 15.167803 ], [ 145.76866, 15.166771 ], [ 145.768874, 15.166428 ], [ 145.770011, 15.163964 ], [ 145.770143, 15.163678 ], [ 145.768002, 15.161868 ], [ 145.767557, 15.161492 ], [ 145.767472, 15.161769 ], [ 145.767314, 15.161797 ], [ 145.767193, 15.161863 ], [ 145.767045, 15.161905 ], [ 145.766941, 15.161982 ], [ 145.766778, 15.162081 ], [ 145.76659, 15.162181 ], [ 145.766403, 15.162289 ], [ 145.76621, 15.162389 ], [ 145.765958, 15.162488 ], [ 145.765736, 15.162554 ], [ 145.765465, 15.162629 ], [ 145.765233, 15.162685 ], [ 145.765021, 15.162727 ], [ 145.764652, 15.162788 ], [ 145.764171, 15.162805 ], [ 145.764109, 15.162808 ], [ 145.763565, 15.162872 ], [ 145.763269, 15.162961 ], [ 145.762711, 15.163183 ], [ 145.762464, 15.163268 ], [ 145.762105, 15.1633 ], [ 145.76207, 15.163304 ], [ 145.761656, 15.163407 ], [ 145.761475, 15.16341 ], [ 145.761114, 15.163432 ], [ 145.760764, 15.163383 ], [ 145.760565, 15.163349 ], [ 145.760142, 15.16326 ], [ 145.75971, 15.163052 ], [ 145.759644, 15.162972 ], [ 145.759627, 15.162951 ], [ 145.759525, 15.162764 ], [ 145.759505, 15.162697 ], [ 145.759363, 15.162581 ], [ 145.759275, 15.162456 ], [ 145.759251, 15.162346 ], [ 145.759262, 15.162246 ], [ 145.759321, 15.162174 ], [ 145.759356, 15.162088 ], [ 145.759307, 15.162017 ], [ 145.759283, 15.16192 ], [ 145.759274, 15.161781 ], [ 145.759236, 15.161633 ], [ 145.759217, 15.161509 ], [ 145.759158, 15.16148 ], [ 145.759123, 15.161513 ], [ 145.759, 15.161531 ], [ 145.758911, 15.161584 ], [ 145.758792, 15.161731 ], [ 145.758732, 15.161836 ], [ 145.758589, 15.161878 ], [ 145.758461, 15.161835 ], [ 145.758358, 15.161819 ], [ 145.758314, 15.161724 ], [ 145.758103, 15.161689 ], [ 145.758068, 15.161699 ], [ 145.757979, 15.161727 ], [ 145.757954, 15.161803 ], [ 145.757954, 15.16186 ], [ 145.757855, 15.161865 ], [ 145.75741, 15.161777 ], [ 145.757194, 15.161694 ], [ 145.756869, 15.161654 ], [ 145.756692, 15.161598 ], [ 145.756604, 15.161518 ], [ 145.756279, 15.161531 ], [ 145.755973, 15.161473 ], [ 145.755946, 15.161466 ], [ 145.755685, 15.161398 ], [ 145.755443, 15.161404 ], [ 145.755295, 15.161415 ], [ 145.755033, 15.161457 ], [ 145.755014, 15.161366 ], [ 145.754613, 15.161306 ], [ 145.754146, 15.161193 ], [ 145.753496, 15.161024 ], [ 145.753018, 15.160838 ], [ 145.752968, 15.160834 ], [ 145.752427, 15.160745 ], [ 145.752237, 15.160679 ], [ 145.751818, 15.160535 ], [ 145.751253, 15.160274 ], [ 145.751076, 15.160128 ], [ 145.750866, 15.159955 ], [ 145.750662, 15.15975 ], [ 145.750332, 15.159417 ], [ 145.749955, 15.159085 ], [ 145.749698, 15.15883 ], [ 145.749498, 15.15857 ], [ 145.749487, 15.158551 ], [ 145.749383, 15.158374 ], [ 145.749366, 15.158355 ], [ 145.749235, 15.158053 ], [ 145.749191, 15.157885 ], [ 145.749226, 15.15778 ], [ 145.749238, 15.157545 ], [ 145.74914, 15.157483 ], [ 145.74915, 15.157416 ], [ 145.749124, 15.157095 ], [ 145.749132, 15.157046 ], [ 145.74914, 15.157009 ], [ 145.749116, 15.156904 ], [ 145.749195, 15.156789 ], [ 145.749205, 15.156718 ], [ 145.749192, 15.156555 ], [ 145.749227, 15.156465 ], [ 145.749188, 15.156383 ], [ 145.74911, 15.156244 ], [ 145.748929, 15.15608 ], [ 145.748841, 15.155941 ], [ 145.748861, 15.155855 ], [ 145.748832, 15.155735 ], [ 145.748764, 15.155625 ], [ 145.748828, 15.155544 ], [ 145.748814, 15.15542 ], [ 145.748839, 15.1553 ], [ 145.748838, 15.155243 ], [ 145.74882, 15.155203 ], [ 145.748769, 15.155161 ], [ 145.748761, 15.155139 ], [ 145.74876, 15.155047 ], [ 145.748753, 15.15503 ], [ 145.748732, 15.154876 ], [ 145.748589, 15.154777 ], [ 145.748584, 15.154734 ], [ 145.748605, 15.154639 ], [ 145.74858, 15.154558 ], [ 145.748615, 15.154485 ], [ 145.748626, 15.154391 ], [ 145.748607, 15.15429 ], [ 145.748553, 15.154237 ], [ 145.748548, 15.154211 ], [ 145.748536, 15.154195 ], [ 145.748514, 15.154165 ], [ 145.748535, 15.153992 ], [ 145.748633, 15.153945 ], [ 145.748668, 15.153854 ], [ 145.748615, 15.153797 ], [ 145.748645, 15.15373 ], [ 145.748601, 15.153703 ], [ 145.748536, 15.153696 ], [ 145.748458, 15.153653 ], [ 145.748429, 15.153585 ], [ 145.74836, 15.153494 ], [ 145.748306, 15.153451 ], [ 145.7483, 15.15341 ], [ 145.748285, 15.153315 ], [ 145.748216, 15.15324 ], [ 145.748123, 15.153196 ], [ 145.748064, 15.153133 ], [ 145.747961, 15.153109 ], [ 145.747868, 15.153042 ], [ 145.747839, 15.153026 ], [ 145.747813, 15.153011 ], [ 145.747746, 15.152822 ], [ 145.747677, 15.152763 ], [ 145.74751, 15.152719 ], [ 145.747427, 15.152714 ], [ 145.747353, 15.152752 ], [ 145.747264, 15.152732 ], [ 145.747215, 15.152698 ], [ 145.747102, 15.152688 ], [ 145.747048, 15.152688 ], [ 145.747028, 15.152635 ], [ 145.747014, 15.152549 ], [ 145.747024, 15.152463 ], [ 145.747083, 15.152417 ], [ 145.747086, 15.152399 ], [ 145.74704, 15.152291 ], [ 145.746986, 15.15221 ], [ 145.746913, 15.152156 ], [ 145.746825, 15.152046 ], [ 145.746805, 15.151988 ], [ 145.746913, 15.151975 ], [ 145.746963, 15.15197 ], [ 145.746949, 15.151912 ], [ 145.746859, 15.151863 ], [ 145.746757, 15.15185 ], [ 145.746741, 15.15184 ], [ 145.746701, 15.15183 ], [ 145.746652, 15.151777 ], [ 145.746656, 15.151759 ], [ 145.746652, 15.15173 ], [ 145.746623, 15.151667 ], [ 145.746574, 15.151609 ], [ 145.746579, 15.151557 ], [ 145.746658, 15.151538 ], [ 145.746776, 15.151534 ], [ 145.746781, 15.151505 ], [ 145.746781, 15.151472 ], [ 145.746737, 15.151448 ], [ 145.746728, 15.151395 ], [ 145.746743, 15.151376 ], [ 145.746782, 15.151376 ], [ 145.746807, 15.15141 ], [ 145.746831, 15.151424 ], [ 145.746871, 15.15131 ], [ 145.746861, 15.151271 ], [ 145.746827, 15.151305 ], [ 145.746797, 15.151295 ], [ 145.746784, 15.151258 ], [ 145.746778, 15.151241 ], [ 145.746748, 15.151218 ], [ 145.746815, 15.151138 ], [ 145.746786, 15.151082 ], [ 145.74677, 15.151064 ], [ 145.746759, 15.151027 ], [ 145.746775, 15.15096 ], [ 145.74675, 15.150874 ], [ 145.746696, 15.150849 ], [ 145.746623, 15.150849 ], [ 145.746574, 15.150796 ], [ 145.746646, 15.150711 ], [ 145.746646, 15.150687 ], [ 145.746679, 15.150429 ], [ 145.746641, 15.15027 ], [ 145.74657, 15.150112 ], [ 145.746552, 15.149916 ], [ 145.746621, 15.149859 ], [ 145.746602, 15.149777 ], [ 145.746569, 15.149715 ], [ 145.746494, 15.149705 ], [ 145.74642, 15.149742 ], [ 145.746321, 15.149733 ], [ 145.746253, 15.149723 ], [ 145.746243, 15.149617 ], [ 145.746175, 15.149579 ], [ 145.74614, 15.149545 ], [ 145.746214, 15.149498 ], [ 145.746212, 15.149476 ], [ 145.746205, 15.149392 ], [ 145.746171, 15.149359 ], [ 145.746206, 15.149273 ], [ 145.746182, 15.149153 ], [ 145.746108, 15.149162 ], [ 145.746034, 15.149123 ], [ 145.746005, 15.149052 ], [ 145.745922, 15.149009 ], [ 145.745897, 15.14908 ], [ 145.745842, 15.149137 ], [ 145.745813, 15.149032 ], [ 145.745715, 15.149007 ], [ 145.745605, 15.148868 ], [ 145.745472, 15.148805 ], [ 145.745374, 15.148776 ], [ 145.74533, 15.148699 ], [ 145.74538, 15.148637 ], [ 145.745351, 15.148584 ], [ 145.745307, 15.148522 ], [ 145.745366, 15.14847 ], [ 145.74543, 15.148475 ], [ 145.745391, 15.148436 ], [ 145.745372, 15.148436 ], [ 145.745297, 15.148421 ], [ 145.745204, 15.148358 ], [ 145.745205, 15.148258 ], [ 145.74525, 15.148168 ], [ 145.745304, 15.148134 ], [ 145.745309, 15.148107 ], [ 145.745324, 15.148039 ], [ 145.745325, 15.147958 ], [ 145.745286, 15.147915 ], [ 145.745197, 15.147919 ], [ 145.745173, 15.147842 ], [ 145.745168, 15.147746 ], [ 145.745233, 15.147684 ], [ 145.74529, 15.147622 ], [ 145.745231, 15.147546 ], [ 145.745182, 15.147473 ], [ 145.745134, 15.147373 ], [ 145.74508, 15.147325 ], [ 145.745025, 15.147266 ], [ 145.744987, 15.147157 ], [ 145.745017, 15.147071 ], [ 145.744991, 15.14698 ], [ 145.744991, 15.146928 ], [ 145.745038, 15.146832 ], [ 145.745068, 15.146789 ], [ 145.745034, 15.146727 ], [ 145.74503, 15.146678 ], [ 145.745054, 15.146612 ], [ 145.745099, 15.146593 ], [ 145.745095, 15.146516 ], [ 145.745016, 15.146449 ], [ 145.744903, 15.146396 ], [ 145.74475, 15.146419 ], [ 145.744642, 15.14647 ], [ 145.744572, 15.146519 ], [ 145.744518, 15.146551 ], [ 145.74444, 15.146484 ], [ 145.74441, 15.146436 ], [ 145.744421, 15.146307 ], [ 145.744421, 15.146264 ], [ 145.744519, 15.145977 ], [ 145.744554, 15.145863 ], [ 145.74455, 15.145763 ], [ 145.744471, 15.1457 ], [ 145.744353, 15.145656 ], [ 145.74429, 15.145613 ], [ 145.744231, 15.145545 ], [ 145.744202, 15.145487 ], [ 145.744212, 15.145344 ], [ 145.744159, 15.145268 ], [ 145.744071, 15.145186 ], [ 145.743938, 15.145204 ], [ 145.74378, 15.145174 ], [ 145.743682, 15.145098 ], [ 145.743619, 15.144987 ], [ 145.743624, 15.144873 ], [ 145.743615, 15.144864 ], [ 145.743575, 15.144824 ], [ 145.743388, 15.14478 ], [ 145.743424, 15.144675 ], [ 145.743503, 15.144579 ], [ 145.743592, 15.144532 ], [ 145.743548, 15.144412 ], [ 145.743435, 15.144373 ], [ 145.743342, 15.144249 ], [ 145.743296, 15.144196 ], [ 145.743296, 15.144129 ], [ 145.743371, 15.14401 ], [ 145.743366, 15.143938 ], [ 145.743332, 15.143852 ], [ 145.743308, 15.143732 ], [ 145.743373, 15.143675 ], [ 145.742882, 15.143799 ], [ 145.741409, 15.144174 ], [ 145.740919, 15.144299 ], [ 145.740751, 15.14445 ], [ 145.740489, 15.144686 ], [ 145.740247, 15.144907 ], [ 145.74008, 15.14506 ], [ 145.739999, 15.145076 ], [ 145.739759, 15.145128 ], [ 145.73975, 15.14513 ], [ 145.73968, 15.14515 ], [ 145.739526, 15.145189 ], [ 145.73937, 15.14523 ], [ 145.73907, 15.145329 ], [ 145.73892, 15.14538 ], [ 145.73868, 15.14546 ], [ 145.738622, 15.145476 ], [ 145.73831, 15.14557 ], [ 145.73798, 15.1457 ], [ 145.737745, 15.145803 ], [ 145.73746, 15.14593 ], [ 145.737421, 15.145871 ], [ 145.737307, 15.145698 ], [ 145.73727, 15.14564 ], [ 145.737203, 15.145542 ], [ 145.73712, 15.14542 ], [ 145.73707, 15.14534 ], [ 145.737014, 15.145241 ], [ 145.73698, 15.14518 ], [ 145.736965, 15.145135 ], [ 145.736648, 15.145268 ], [ 145.736463, 15.145346 ], [ 145.73619, 15.145461 ], [ 145.735853, 15.145604 ], [ 145.735715, 15.145505 ], [ 145.735617, 15.145434 ], [ 145.735465, 15.145272 ], [ 145.732743, 15.147853 ], [ 145.73269, 15.147854 ], [ 145.732535, 15.147858 ], [ 145.732483, 15.14786 ], [ 145.732448, 15.14786 ], [ 145.732344, 15.14786 ], [ 145.73231, 15.14786 ], [ 145.732235, 15.147895 ], [ 145.7321, 15.14796 ], [ 145.73204, 15.14802 ], [ 145.732037, 15.148033 ], [ 145.732026, 15.148116 ], [ 145.73202, 15.14816 ], [ 145.732006, 15.148288 ], [ 145.73197, 15.14865 ], [ 145.73196, 15.14878 ], [ 145.731942, 15.1488 ], [ 145.73191, 15.14884 ], [ 145.731789, 15.148859 ], [ 145.73151, 15.14884 ], [ 145.731497, 15.148946 ], [ 145.73148, 15.14909 ], [ 145.731475, 15.149268 ], [ 145.731473, 15.149376 ], [ 145.73147, 15.14952 ], [ 145.731451, 15.149656 ], [ 145.73143, 15.14981 ], [ 145.73138, 15.15012 ], [ 145.731286, 15.150485 ], [ 145.73127, 15.15055 ], [ 145.73128, 15.15066 ], [ 145.73131, 15.15076 ], [ 145.731239, 15.150826 ], [ 145.73116, 15.1509 ], [ 145.73105, 15.15098 ], [ 145.73101, 15.151006 ], [ 145.73093, 15.15106 ], [ 145.73082, 15.15112 ], [ 145.730767, 15.151146 ], [ 145.73066, 15.1512 ], [ 145.73052, 15.15128 ], [ 145.73037, 15.15135 ], [ 145.730268, 15.151383 ], [ 145.73022, 15.1514 ], [ 145.730087, 15.15143 ], [ 145.72982, 15.15152 ], [ 145.729649, 15.151562 ], [ 145.72958, 15.15158 ], [ 145.72931, 15.15164 ], [ 145.729134, 15.15166 ], [ 145.72896, 15.15168 ], [ 145.728938, 15.151684 ], [ 145.728872, 15.151696 ], [ 145.72885, 15.1517 ], [ 145.728812, 15.151707 ], [ 145.7288, 15.15171 ], [ 145.728698, 15.151724 ], [ 145.72866, 15.15173 ], [ 145.728653, 15.151731 ], [ 145.72841, 15.15178 ], [ 145.72831, 15.151802 ], [ 145.72801, 15.151868 ], [ 145.72791, 15.15189 ], [ 145.7277, 15.151936 ], [ 145.72724, 15.15204 ], [ 145.727073, 15.152073 ], [ 145.726863, 15.152116 ], [ 145.72671, 15.152146 ], [ 145.726252, 15.152239 ], [ 145.7261, 15.15227 ], [ 145.726016, 15.152287 ], [ 145.725764, 15.152342 ], [ 145.725681, 15.15236 ], [ 145.725634, 15.152369 ], [ 145.725496, 15.152399 ], [ 145.72545, 15.15241 ], [ 145.725394, 15.152422 ], [ 145.725226, 15.152458 ], [ 145.72517, 15.15247 ], [ 145.725114, 15.152481 ], [ 145.72495, 15.152514 ], [ 145.724895, 15.152526 ], [ 145.724851, 15.152534 ], [ 145.724723, 15.152561 ], [ 145.72468, 15.15257 ], [ 145.724603, 15.152587 ], [ 145.724374, 15.152641 ], [ 145.724298, 15.15266 ], [ 145.72423, 15.152675 ], [ 145.724027, 15.152724 ], [ 145.72396, 15.15274 ], [ 145.723883, 15.152756 ], [ 145.72368, 15.1528 ], [ 145.723654, 15.152807 ], [ 145.72358, 15.15283 ], [ 145.723436, 15.152887 ], [ 145.72338, 15.15291 ], [ 145.72324, 15.153 ], [ 145.72312, 15.15307 ], [ 145.72305, 15.153139 ], [ 145.72301, 15.15318 ], [ 145.722938, 15.153246 ], [ 145.72289, 15.15329 ], [ 145.722865, 15.153324 ], [ 145.72279, 15.15343 ], [ 145.722661, 15.15357 ], [ 145.72259, 15.15365 ], [ 145.722302, 15.154006 ], [ 145.72213, 15.15422 ], [ 145.72155, 15.15494 ], [ 145.721439, 15.155075 ], [ 145.72115, 15.15543 ], [ 145.721085, 15.155508 ], [ 145.720892, 15.155743 ], [ 145.720828, 15.155822 ], [ 145.720745, 15.155922 ], [ 145.720497, 15.156225 ], [ 145.720415, 15.156326 ], [ 145.720397, 15.156346 ], [ 145.720347, 15.156409 ], [ 145.72033, 15.15643 ], [ 145.72028, 15.156487 ], [ 145.720131, 15.156658 ], [ 145.720082, 15.156716 ], [ 145.72065, 15.157478 ], [ 145.722356, 15.159765 ], [ 145.722553, 15.16003 ], [ 145.722925, 15.160528 ], [ 145.723238, 15.160921 ], [ 145.72418, 15.162103 ], [ 145.724494, 15.162497 ], [ 145.7256, 15.163777 ], [ 145.728919, 15.167618 ], [ 145.730026, 15.168899 ], [ 145.730302, 15.169255 ], [ 145.73113, 15.170323 ], [ 145.731406, 15.170679 ], [ 145.732848, 15.172981 ], [ 145.737176, 15.179888 ], [ 145.738619, 15.182191 ], [ 145.73892, 15.182579 ], [ 145.739618, 15.183478 ], [ 145.739818, 15.183752 ], [ 145.740108, 15.18415 ], [ 145.740846, 15.185094 ], [ 145.741168, 15.185506 ], [ 145.741655, 15.185499 ], [ 145.742917, 15.185484 ], [ 145.745202, 15.185461 ], [ 145.746007, 15.185454 ], [ 145.75075, 15.18541 ], [ 145.750732, 15.185461 ], [ 145.751103, 15.18517 ], [ 145.75113, 15.18515 ], [ 145.751876, 15.185056 ], [ 145.752151, 15.184805 ], [ 145.752329, 15.184649 ], [ 145.753034, 15.184552 ], [ 145.754532, 15.184347 ], [ 145.755129, 15.184161 ], [ 145.75581, 15.18395 ], [ 145.75602, 15.18405 ], [ 145.75618, 15.18411 ], [ 145.756324, 15.184143 ], [ 145.75635, 15.18415 ], [ 145.7565, 15.18417 ], [ 145.75674, 15.18417 ], [ 145.75746, 15.18408 ], [ 145.75788, 15.18406 ], [ 145.75797, 15.184057 ], [ 145.75822, 15.18405 ], [ 145.75852, 15.18408 ], [ 145.758616, 15.183964 ], [ 145.758906, 15.183619 ], [ 145.759004, 15.183504 ], [ 145.75921, 15.18326 ], [ 145.75945, 15.183 ], [ 145.759487, 15.182976 ], [ 145.75976, 15.18281 ], [ 145.76015, 15.18258 ], [ 145.76105, 15.18206 ], [ 145.76115, 15.18199 ], [ 145.76119, 15.18194 ], [ 145.76122, 15.18184 ], [ 145.761231, 15.18179 ], [ 145.76125, 15.18171 ], [ 145.76132, 15.18151 ], [ 145.76138, 15.18142 ], [ 145.76147, 15.18134 ], [ 145.76163, 15.18123 ], [ 145.761708, 15.181165 ], [ 145.76174, 15.18114 ], [ 145.76183, 15.18108 ], [ 145.761969, 15.181007 ], [ 145.76206, 15.18096 ], [ 145.762172, 15.180917 ], [ 145.76243, 15.18082 ], [ 145.762504, 15.180778 ], [ 145.76261, 15.18072 ], [ 145.7627, 15.18064 ], [ 145.76284, 15.1805 ], [ 145.762943, 15.18034 ], [ 145.76297, 15.1803 ], [ 145.76322, 15.1799 ], [ 145.7636, 15.17924 ], [ 145.763726, 15.17903 ], [ 145.763991, 15.178596 ], [ 145.764139, 15.17835 ], [ 145.76445, 15.17784 ], [ 145.764575, 15.177609 ], [ 145.764713, 15.177358 ], [ 145.764744, 15.1773 ], [ 145.764838, 15.177127 ], [ 145.76487, 15.17707 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "69", "COUNTYFP10": "110", "TRACTCE10": "000400", "GEOID10": "69110000400", "NAME10": "4", "NAMELSAD10": "Census Tract 4", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1244617, "AWATER10": 4549, "INTPTLAT10": "+15.2073131", "INTPTLON10": "+145.7182711" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.71624, 15.20533 ], [ 145.716206, 15.205438 ], [ 145.716256, 15.205511 ], [ 145.71628, 15.205618 ], [ 145.716246, 15.205773 ], [ 145.716218, 15.206133 ], [ 145.716149, 15.206452 ], [ 145.716131, 15.206706 ], [ 145.716104, 15.206959 ], [ 145.716101, 15.207016 ], [ 145.716094, 15.207173 ], [ 145.716094, 15.207188 ], [ 145.716102, 15.207312 ], [ 145.716023, 15.207575 ], [ 145.71601, 15.207631 ], [ 145.715996, 15.207695 ], [ 145.716022, 15.207893 ], [ 145.716056, 15.20799 ], [ 145.716055, 15.208113 ], [ 145.716006, 15.208202 ], [ 145.716006, 15.208249 ], [ 145.716042, 15.208317 ], [ 145.716013, 15.208423 ], [ 145.716004, 15.208461 ], [ 145.716014, 15.208621 ], [ 145.715941, 15.208727 ], [ 145.715899, 15.208833 ], [ 145.715904, 15.209406 ], [ 145.715871, 15.209699 ], [ 145.715875, 15.210067 ], [ 145.71584, 15.210345 ], [ 145.715828, 15.210806 ], [ 145.715819, 15.210866 ], [ 145.715792, 15.21106 ], [ 145.71579, 15.211502 ], [ 145.715772, 15.21169 ], [ 145.715712, 15.211854 ], [ 145.715706, 15.211985 ], [ 145.715703, 15.212064 ], [ 145.715682, 15.212313 ], [ 145.71569, 15.212591 ], [ 145.715672, 15.212804 ], [ 145.715671, 15.2129 ], [ 145.715671, 15.213016 ], [ 145.715703, 15.213204 ], [ 145.715604, 15.214106 ], [ 145.715545, 15.214333 ], [ 145.715548, 15.215258 ], [ 145.715585, 15.216045 ], [ 145.715554, 15.216404 ], [ 145.715592, 15.216609 ], [ 145.715812, 15.217162 ], [ 145.716134, 15.217821 ], [ 145.716295, 15.217704 ], [ 145.716506, 15.217553 ], [ 145.716791, 15.217375 ], [ 145.71696, 15.21727 ], [ 145.717285, 15.217062 ], [ 145.71793, 15.21665 ], [ 145.718257, 15.216433 ], [ 145.71858, 15.21622 ], [ 145.718611, 15.216202 ], [ 145.718708, 15.216148 ], [ 145.71874, 15.21613 ], [ 145.718823, 15.216073 ], [ 145.719075, 15.215906 ], [ 145.71916, 15.21585 ], [ 145.719217, 15.215812 ], [ 145.719392, 15.215698 ], [ 145.71945, 15.21566 ], [ 145.719525, 15.215611 ], [ 145.7197, 15.2155 ], [ 145.719753, 15.215467 ], [ 145.71983, 15.21542 ], [ 145.719908, 15.21537 ], [ 145.720142, 15.21522 ], [ 145.72022, 15.21517 ], [ 145.720294, 15.215122 ], [ 145.720516, 15.214978 ], [ 145.72059, 15.21493 ], [ 145.720607, 15.214917 ], [ 145.720661, 15.214882 ], [ 145.72068, 15.21487 ], [ 145.721249, 15.214537 ], [ 145.721718, 15.21423 ], [ 145.722729, 15.213607 ], [ 145.7233, 15.21324 ], [ 145.7244, 15.21251 ], [ 145.724193, 15.212287 ], [ 145.72358, 15.21163 ], [ 145.723572, 15.21162 ], [ 145.723383, 15.211384 ], [ 145.723157, 15.211102 ], [ 145.7231, 15.21103 ], [ 145.72268, 15.21047 ], [ 145.722523, 15.210224 ], [ 145.72233, 15.20992 ], [ 145.722278, 15.209831 ], [ 145.722122, 15.209567 ], [ 145.72207, 15.20948 ], [ 145.721911, 15.209212 ], [ 145.72168, 15.20882 ], [ 145.721474, 15.20839 ], [ 145.72134, 15.20811 ], [ 145.721243, 15.207882 ], [ 145.720953, 15.207198 ], [ 145.72095, 15.20719 ], [ 145.72086, 15.20697 ], [ 145.720826, 15.206881 ], [ 145.720724, 15.206618 ], [ 145.72069, 15.20653 ], [ 145.720653, 15.20642 ], [ 145.720545, 15.20609 ], [ 145.72051, 15.20598 ], [ 145.720478, 15.205866 ], [ 145.720382, 15.205524 ], [ 145.72035, 15.20541 ], [ 145.720344, 15.205385 ], [ 145.720329, 15.205312 ], [ 145.720324, 15.205288 ], [ 145.720318, 15.205261 ], [ 145.7203, 15.20518 ], [ 145.720295, 15.205153 ], [ 145.720289, 15.205127 ], [ 145.720272, 15.205051 ], [ 145.720267, 15.205026 ], [ 145.720261, 15.204999 ], [ 145.720244, 15.204919 ], [ 145.720239, 15.204893 ], [ 145.720213, 15.204776 ], [ 145.72015, 15.20448 ], [ 145.720143, 15.204427 ], [ 145.72013, 15.20431 ], [ 145.720114, 15.204219 ], [ 145.720069, 15.203946 ], [ 145.720054, 15.203855 ], [ 145.720023, 15.203673 ], [ 145.72002, 15.20365 ], [ 145.71999, 15.20342 ], [ 145.719959, 15.203123 ], [ 145.71994, 15.20294 ], [ 145.719933, 15.202846 ], [ 145.719915, 15.202563 ], [ 145.71991, 15.20247 ], [ 145.719904, 15.202396 ], [ 145.719886, 15.202174 ], [ 145.71988, 15.2021 ], [ 145.719879, 15.20203 ], [ 145.71988, 15.20203 ], [ 145.71988, 15.201853 ], [ 145.71988, 15.20177 ], [ 145.719872, 15.201325 ], [ 145.71987, 15.20115 ], [ 145.71987, 15.20107 ], [ 145.719871, 15.200948 ], [ 145.719878, 15.200582 ], [ 145.71988, 15.20046 ], [ 145.71988, 15.200397 ], [ 145.71988, 15.200208 ], [ 145.71988, 15.200146 ], [ 145.71988, 15.200006 ], [ 145.71988, 15.199589 ], [ 145.71988, 15.19945 ], [ 145.71988, 15.199427 ], [ 145.71988, 15.199347 ], [ 145.71988, 15.199109 ], [ 145.71988, 15.19903 ], [ 145.71988, 15.198948 ], [ 145.71988, 15.198702 ], [ 145.71988, 15.19862 ], [ 145.71988, 15.198571 ], [ 145.71988, 15.198424 ], [ 145.71988, 15.198376 ], [ 145.71988, 15.19783 ], [ 145.71988, 15.1975 ], [ 145.71988, 15.196195 ], [ 145.71988, 15.19604 ], [ 145.71988, 15.19565 ], [ 145.71988, 15.195598 ], [ 145.719882, 15.195443 ], [ 145.719883, 15.195392 ], [ 145.719884, 15.195324 ], [ 145.719887, 15.195124 ], [ 145.719888, 15.195057 ], [ 145.719888, 15.194981 ], [ 145.71989, 15.19489 ], [ 145.71989, 15.194755 ], [ 145.71989, 15.19468 ], [ 145.719891, 15.19459 ], [ 145.719895, 15.19432 ], [ 145.719897, 15.194231 ], [ 145.719897, 15.194186 ], [ 145.719899, 15.194054 ], [ 145.7199, 15.19401 ], [ 145.719813, 15.194043 ], [ 145.719555, 15.194146 ], [ 145.71947, 15.19418 ], [ 145.71937, 15.19413 ], [ 145.719302, 15.19407 ], [ 145.71928, 15.19405 ], [ 145.71912, 15.19384 ], [ 145.71906, 15.19375 ], [ 145.71897, 15.19369 ], [ 145.7189, 15.19366 ], [ 145.71888, 15.19366 ], [ 145.71881, 15.19366 ], [ 145.71868, 15.19368 ], [ 145.718569, 15.193754 ], [ 145.71828, 15.19395 ], [ 145.718237, 15.19398 ], [ 145.71813, 15.19406 ], [ 145.718021, 15.194177 ], [ 145.718, 15.1942 ], [ 145.717683, 15.194516 ], [ 145.71757, 15.19463 ], [ 145.71749, 15.19473 ], [ 145.717474, 15.194742 ], [ 145.71737, 15.19483 ], [ 145.71724, 15.19487 ], [ 145.71708, 15.19493 ], [ 145.71703, 15.19495 ], [ 145.71695, 15.195 ], [ 145.716902, 15.195008 ], [ 145.716759, 15.195032 ], [ 145.716712, 15.195041 ], [ 145.716748, 15.19528 ], [ 145.716738, 15.195534 ], [ 145.716773, 15.195816 ], [ 145.716778, 15.195853 ], [ 145.716801, 15.196238 ], [ 145.716841, 15.196533 ], [ 145.716897, 15.197082 ], [ 145.716895, 15.197409 ], [ 145.716927, 15.19777 ], [ 145.716909, 15.197974 ], [ 145.716914, 15.198148 ], [ 145.716923, 15.198425 ], [ 145.716912, 15.198711 ], [ 145.716891, 15.198928 ], [ 145.716886, 15.198981 ], [ 145.716867, 15.199227 ], [ 145.716832, 15.199447 ], [ 145.716772, 15.19962 ], [ 145.716636, 15.199816 ], [ 145.716525, 15.200002 ], [ 145.716411, 15.200059 ], [ 145.716398, 15.200067 ], [ 145.715707, 15.200088 ], [ 145.715706, 15.200202 ], [ 145.716389, 15.200239 ], [ 145.716456, 15.200272 ], [ 145.716506, 15.200363 ], [ 145.716489, 15.200484 ], [ 145.716521, 15.200619 ], [ 145.716504, 15.200762 ], [ 145.716427, 15.200765 ], [ 145.71636, 15.200902 ], [ 145.716325, 15.201 ], [ 145.716274, 15.201106 ], [ 145.716239, 15.20127 ], [ 145.716306, 15.20136 ], [ 145.716314, 15.201549 ], [ 145.716287, 15.201704 ], [ 145.716252, 15.201942 ], [ 145.716234, 15.202122 ], [ 145.716225, 15.202268 ], [ 145.716174, 15.202383 ], [ 145.716169, 15.202383 ], [ 145.715997, 15.202398 ], [ 145.715769, 15.202389 ], [ 145.715642, 15.202388 ], [ 145.715531, 15.202399 ], [ 145.715407, 15.202396 ], [ 145.715322, 15.202386 ], [ 145.715179, 15.202386 ], [ 145.714934, 15.202376 ], [ 145.714934, 15.202426 ], [ 145.714933, 15.20254 ], [ 145.715518, 15.202581 ], [ 145.716164, 15.202628 ], [ 145.71622, 15.203063 ], [ 145.716217, 15.203513 ], [ 145.716233, 15.203759 ], [ 145.716213, 15.204079 ], [ 145.716205, 15.204225 ], [ 145.716226, 15.204312 ], [ 145.716276, 15.204325 ], [ 145.716313, 15.204447 ], [ 145.71632, 15.20466 ], [ 145.716308, 15.204733 ], [ 145.716294, 15.204816 ], [ 145.716295, 15.204853 ], [ 145.716305, 15.205053 ], [ 145.71628, 15.205216 ], [ 145.716274, 15.205257 ], [ 145.71624, 15.20533 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "69", "COUNTYFP10": "110", "TRACTCE10": "000600", "GEOID10": "69110000600", "NAME10": "6", "NAMELSAD10": "Census Tract 6", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3087239, "AWATER10": 0, "INTPTLAT10": "+15.1900095", "INTPTLON10": "+145.7238031" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.71493, 15.184599 ], [ 145.714651, 15.184629 ], [ 145.71446, 15.18465 ], [ 145.71442, 15.18465 ], [ 145.714301, 15.184651 ], [ 145.714262, 15.184652 ], [ 145.714298, 15.184867 ], [ 145.714297, 15.185122 ], [ 145.714346, 15.185384 ], [ 145.714403, 15.185622 ], [ 145.714495, 15.185803 ], [ 145.714553, 15.186008 ], [ 145.714643, 15.186483 ], [ 145.714733, 15.186731 ], [ 145.71475, 15.186778 ], [ 145.714841, 15.18718 ], [ 145.714906, 15.187516 ], [ 145.714964, 15.187778 ], [ 145.715021, 15.188081 ], [ 145.715185, 15.188754 ], [ 145.715251, 15.189097 ], [ 145.71529, 15.189581 ], [ 145.71538, 15.190081 ], [ 145.715445, 15.190369 ], [ 145.715493, 15.190811 ], [ 145.715558, 15.191293 ], [ 145.715724, 15.191606 ], [ 145.715858, 15.191827 ], [ 145.715941, 15.192033 ], [ 145.716024, 15.192345 ], [ 145.716172, 15.192845 ], [ 145.716201, 15.192963 ], [ 145.716246, 15.193148 ], [ 145.716536, 15.194083 ], [ 145.716693, 15.194666 ], [ 145.716707, 15.195009 ], [ 145.716712, 15.195041 ], [ 145.716759, 15.195032 ], [ 145.716902, 15.195008 ], [ 145.71695, 15.195 ], [ 145.71703, 15.19495 ], [ 145.71708, 15.19493 ], [ 145.71724, 15.19487 ], [ 145.71737, 15.19483 ], [ 145.717474, 15.194742 ], [ 145.71749, 15.19473 ], [ 145.71757, 15.19463 ], [ 145.717683, 15.194516 ], [ 145.718, 15.1942 ], [ 145.718021, 15.194177 ], [ 145.71813, 15.19406 ], [ 145.718237, 15.19398 ], [ 145.71828, 15.19395 ], [ 145.718569, 15.193754 ], [ 145.71868, 15.19368 ], [ 145.71881, 15.19366 ], [ 145.71888, 15.19366 ], [ 145.7189, 15.19366 ], [ 145.71897, 15.19369 ], [ 145.71906, 15.19375 ], [ 145.71912, 15.19384 ], [ 145.71928, 15.19405 ], [ 145.719302, 15.19407 ], [ 145.71937, 15.19413 ], [ 145.71947, 15.19418 ], [ 145.719555, 15.194146 ], [ 145.719813, 15.194043 ], [ 145.7199, 15.19401 ], [ 145.719899, 15.194054 ], [ 145.719897, 15.194186 ], [ 145.719897, 15.194231 ], [ 145.719895, 15.19432 ], [ 145.719891, 15.19459 ], [ 145.71989, 15.19468 ], [ 145.71989, 15.194755 ], [ 145.71989, 15.19489 ], [ 145.719888, 15.194981 ], [ 145.719888, 15.195057 ], [ 145.719887, 15.195124 ], [ 145.719884, 15.195324 ], [ 145.719883, 15.195392 ], [ 145.719882, 15.195443 ], [ 145.71988, 15.195598 ], [ 145.71988, 15.19565 ], [ 145.71988, 15.19604 ], [ 145.71988, 15.196195 ], [ 145.71988, 15.1975 ], [ 145.71988, 15.19783 ], [ 145.71988, 15.198376 ], [ 145.71988, 15.198424 ], [ 145.71988, 15.198571 ], [ 145.71988, 15.19862 ], [ 145.71988, 15.198702 ], [ 145.71988, 15.198948 ], [ 145.71988, 15.19903 ], [ 145.71988, 15.199109 ], [ 145.71988, 15.199347 ], [ 145.71988, 15.199427 ], [ 145.71988, 15.19945 ], [ 145.71988, 15.199589 ], [ 145.71988, 15.200006 ], [ 145.71988, 15.200146 ], [ 145.71988, 15.200208 ], [ 145.71988, 15.200397 ], [ 145.71988, 15.20046 ], [ 145.719878, 15.200582 ], [ 145.719871, 15.200948 ], [ 145.71987, 15.20107 ], [ 145.719981, 15.20107 ], [ 145.720314, 15.20107 ], [ 145.720426, 15.20107 ], [ 145.72068, 15.20107 ], [ 145.720699, 15.201069 ], [ 145.721521, 15.201061 ], [ 145.7217, 15.20106 ], [ 145.721795, 15.201061 ], [ 145.72358, 15.20106 ], [ 145.72394, 15.201055 ], [ 145.72439, 15.20105 ], [ 145.725021, 15.20105 ], [ 145.72526, 15.20105 ], [ 145.72538, 15.20107 ], [ 145.725738, 15.201074 ], [ 145.726249, 15.201119 ], [ 145.726249, 15.20113 ], [ 145.726414, 15.201265 ], [ 145.726858, 15.201465 ], [ 145.727142, 15.201593 ], [ 145.733171, 15.200661 ], [ 145.733185, 15.200615 ], [ 145.730674, 15.197744 ], [ 145.730242, 15.197432 ], [ 145.73017, 15.19729 ], [ 145.730123, 15.197197 ], [ 145.729956, 15.196867 ], [ 145.729821, 15.195899 ], [ 145.729538, 15.194899 ], [ 145.729497, 15.194753 ], [ 145.729312, 15.194427 ], [ 145.729139, 15.194222 ], [ 145.728516, 15.193152 ], [ 145.728335, 15.191629 ], [ 145.728345, 15.191516 ], [ 145.728449, 15.190419 ], [ 145.728643, 15.18949 ], [ 145.729193, 15.187945 ], [ 145.728517, 15.185333 ], [ 145.729261, 15.181155 ], [ 145.729905, 15.177542 ], [ 145.730069, 15.176626 ], [ 145.72763, 15.176666 ], [ 145.726103, 15.176689 ], [ 145.724318, 15.177616 ], [ 145.72324, 15.17759 ], [ 145.722238, 15.177567 ], [ 145.722264, 15.181044 ], [ 145.722257, 15.181097 ], [ 145.72227, 15.182914 ], [ 145.722219, 15.183722 ], [ 145.722218, 15.18374 ], [ 145.722177, 15.184006 ], [ 145.722159, 15.184394 ], [ 145.721409, 15.184415 ], [ 145.71914, 15.18448 ], [ 145.718814, 15.184492 ], [ 145.718665, 15.184497 ], [ 145.718218, 15.184514 ], [ 145.71807, 15.18452 ], [ 145.71805, 15.184506 ], [ 145.71799, 15.184464 ], [ 145.71797, 15.18445 ], [ 145.71781, 15.18441 ], [ 145.717724, 15.184411 ], [ 145.7171, 15.18442 ], [ 145.716973, 15.184427 ], [ 145.716724, 15.184443 ], [ 145.716462, 15.184459 ], [ 145.7163, 15.18447 ], [ 145.71589, 15.18451 ], [ 145.715678, 15.184528 ], [ 145.71542, 15.18455 ], [ 145.715417, 15.18455 ], [ 145.715225, 15.184569 ], [ 145.71493, 15.184599 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "69", "COUNTYFP10": "110", "TRACTCE10": "000700", "GEOID10": "69110000700", "NAME10": "7", "NAMELSAD10": "Census Tract 7", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 5679360, "AWATER10": 0, "INTPTLAT10": "+15.1722289", "INTPTLON10": "+145.7221292" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.71446, 15.18465 ], [ 145.714651, 15.184629 ], [ 145.71493, 15.184599 ], [ 145.715225, 15.184569 ], [ 145.715417, 15.18455 ], [ 145.71542, 15.18455 ], [ 145.715678, 15.184528 ], [ 145.71589, 15.18451 ], [ 145.7163, 15.18447 ], [ 145.716462, 15.184459 ], [ 145.716724, 15.184443 ], [ 145.716973, 15.184427 ], [ 145.7171, 15.18442 ], [ 145.717724, 15.184411 ], [ 145.71781, 15.18441 ], [ 145.71797, 15.18445 ], [ 145.71799, 15.184464 ], [ 145.71805, 15.184506 ], [ 145.71807, 15.18452 ], [ 145.718218, 15.184514 ], [ 145.718665, 15.184497 ], [ 145.718814, 15.184492 ], [ 145.71914, 15.18448 ], [ 145.721409, 15.184415 ], [ 145.722159, 15.184394 ], [ 145.722177, 15.184006 ], [ 145.722218, 15.18374 ], [ 145.722219, 15.183722 ], [ 145.72227, 15.182914 ], [ 145.722257, 15.181097 ], [ 145.722264, 15.181044 ], [ 145.722238, 15.177567 ], [ 145.72324, 15.17759 ], [ 145.724318, 15.177616 ], [ 145.726103, 15.176689 ], [ 145.72763, 15.176666 ], [ 145.730069, 15.176626 ], [ 145.729905, 15.177542 ], [ 145.729261, 15.181155 ], [ 145.728517, 15.185333 ], [ 145.730655, 15.185004 ], [ 145.735187, 15.1853 ], [ 145.73562, 15.185346 ], [ 145.73756, 15.185379 ], [ 145.739846, 15.185534 ], [ 145.740321, 15.185538 ], [ 145.741168, 15.185506 ], [ 145.740846, 15.185094 ], [ 145.740108, 15.18415 ], [ 145.739818, 15.183752 ], [ 145.739618, 15.183478 ], [ 145.73892, 15.182579 ], [ 145.738619, 15.182191 ], [ 145.737176, 15.179888 ], [ 145.732848, 15.172981 ], [ 145.731406, 15.170679 ], [ 145.73113, 15.170323 ], [ 145.730302, 15.169255 ], [ 145.730026, 15.168899 ], [ 145.728919, 15.167618 ], [ 145.7256, 15.163777 ], [ 145.724494, 15.162497 ], [ 145.72418, 15.162103 ], [ 145.723238, 15.160921 ], [ 145.722925, 15.160528 ], [ 145.722553, 15.16003 ], [ 145.722356, 15.159765 ], [ 145.72065, 15.157478 ], [ 145.720082, 15.156716 ], [ 145.720131, 15.156658 ], [ 145.72028, 15.156487 ], [ 145.72033, 15.15643 ], [ 145.720347, 15.156409 ], [ 145.720397, 15.156346 ], [ 145.720415, 15.156326 ], [ 145.720497, 15.156225 ], [ 145.720745, 15.155922 ], [ 145.720828, 15.155822 ], [ 145.720892, 15.155743 ], [ 145.721085, 15.155508 ], [ 145.72115, 15.15543 ], [ 145.721439, 15.155075 ], [ 145.72155, 15.15494 ], [ 145.72213, 15.15422 ], [ 145.722302, 15.154006 ], [ 145.72259, 15.15365 ], [ 145.72246, 15.15352 ], [ 145.722443, 15.153496 ], [ 145.72238, 15.15341 ], [ 145.72229, 15.15332 ], [ 145.72215, 15.1533 ], [ 145.72197, 15.15328 ], [ 145.721892, 15.153256 ], [ 145.72187, 15.15325 ], [ 145.72179, 15.15314 ], [ 145.721756, 15.1531 ], [ 145.721682, 15.153015 ], [ 145.72166, 15.15299 ], [ 145.72159, 15.1529 ], [ 145.721471, 15.152756 ], [ 145.7214, 15.15267 ], [ 145.721215, 15.152784 ], [ 145.72106, 15.15288 ], [ 145.7209, 15.153 ], [ 145.720681, 15.153157 ], [ 145.72065, 15.15318 ], [ 145.72051, 15.15329 ], [ 145.720458, 15.153374 ], [ 145.72043, 15.15342 ], [ 145.720284, 15.153505 ], [ 145.720244, 15.153566 ], [ 145.720192, 15.15365 ], [ 145.718461, 15.154814 ], [ 145.718237, 15.154552 ], [ 145.714304, 15.160159 ], [ 145.713552, 15.16123 ], [ 145.712376, 15.162145 ], [ 145.71225, 15.16251 ], [ 145.71219, 15.1627 ], [ 145.712189, 15.1627 ], [ 145.7122, 15.16275 ], [ 145.712201, 15.162758 ], [ 145.712204, 15.162782 ], [ 145.712206, 15.16279 ], [ 145.71221, 15.16282 ], [ 145.712257, 15.162995 ], [ 145.71227, 15.16304 ], [ 145.71229, 15.16318 ], [ 145.71231, 15.16332 ], [ 145.712301, 15.163463 ], [ 145.712296, 15.163537 ], [ 145.71229, 15.16363 ], [ 145.71225, 15.16371 ], [ 145.712207, 15.163814 ], [ 145.712189, 15.163903 ], [ 145.712141, 15.164266 ], [ 145.712132, 15.164328 ], [ 145.71213, 15.16435 ], [ 145.712112, 15.164515 ], [ 145.712106, 15.164578 ], [ 145.712104, 15.164594 ], [ 145.7121, 15.16463 ], [ 145.712102, 15.164642 ], [ 145.712106, 15.164658 ], [ 145.712107, 15.164664 ], [ 145.712112, 15.164684 ], [ 145.712114, 15.164691 ], [ 145.712101, 15.164712 ], [ 145.712062, 15.164778 ], [ 145.71205, 15.1648 ], [ 145.711874, 15.164891 ], [ 145.71178, 15.16494 ], [ 145.711339, 15.165146 ], [ 145.71116, 15.16523 ], [ 145.711029, 15.165286 ], [ 145.71081, 15.16538 ], [ 145.710639, 15.165459 ], [ 145.71051, 15.16552 ], [ 145.710388, 15.165576 ], [ 145.710022, 15.165744 ], [ 145.7099, 15.1658 ], [ 145.70983, 15.165826 ], [ 145.70962, 15.165904 ], [ 145.70955, 15.16593 ], [ 145.708746, 15.1663 ], [ 145.708997, 15.166867 ], [ 145.709066, 15.167024 ], [ 145.709095, 15.167088 ], [ 145.70926, 15.167501 ], [ 145.709324, 15.167661 ], [ 145.709361, 15.167753 ], [ 145.709551, 15.168316 ], [ 145.710131, 15.170033 ], [ 145.710195, 15.170295 ], [ 145.710362, 15.170969 ], [ 145.710378, 15.171033 ], [ 145.710713, 15.172193 ], [ 145.710807, 15.172518 ], [ 145.711121, 15.173584 ], [ 145.71151, 15.174699 ], [ 145.711901, 15.175668 ], [ 145.711953, 15.175806 ], [ 145.712366, 15.176891 ], [ 145.71241, 15.176996 ], [ 145.712656, 15.177588 ], [ 145.712719, 15.177785 ], [ 145.712954, 15.178515 ], [ 145.713127, 15.179253 ], [ 145.713241, 15.179933 ], [ 145.713239, 15.180235 ], [ 145.713247, 15.180262 ], [ 145.713388, 15.180712 ], [ 145.713472, 15.18108 ], [ 145.713476, 15.181098 ], [ 145.713478, 15.181105 ], [ 145.713481, 15.181154 ], [ 145.713483, 15.181173 ], [ 145.713509, 15.18154 ], [ 145.713569, 15.181884 ], [ 145.713599, 15.182056 ], [ 145.713806, 15.182622 ], [ 145.71394, 15.182885 ], [ 145.714013, 15.183352 ], [ 145.714103, 15.183688 ], [ 145.71414, 15.183944 ], [ 145.714144, 15.183966 ], [ 145.714225, 15.184425 ], [ 145.714262, 15.184652 ], [ 145.714301, 15.184651 ], [ 145.71442, 15.18465 ], [ 145.71446, 15.18465 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "69", "COUNTYFP10": "110", "TRACTCE10": "001400", "GEOID10": "69110001400", "NAME10": "14", "NAMELSAD10": "Census Tract 14", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 5091118, "AWATER10": 9379, "INTPTLAT10": "+15.1374255", "INTPTLON10": "+145.7319800" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.71903, 15.13532 ], [ 145.719148, 15.135411 ], [ 145.71925, 15.13549 ], [ 145.71935, 15.13556 ], [ 145.719488, 15.135669 ], [ 145.71978, 15.1359 ], [ 145.72001, 15.13612 ], [ 145.72014, 15.136278 ], [ 145.7202, 15.13635 ], [ 145.7203, 15.13653 ], [ 145.720308, 15.136546 ], [ 145.720331, 15.136594 ], [ 145.72034, 15.13661 ], [ 145.720464, 15.136878 ], [ 145.72047, 15.13689 ], [ 145.72067, 15.13749 ], [ 145.720731, 15.137724 ], [ 145.72077, 15.13787 ], [ 145.720808, 15.138011 ], [ 145.72085, 15.13817 ], [ 145.720856, 15.13817 ], [ 145.72103, 15.13884 ], [ 145.72105, 15.13892 ], [ 145.721063, 15.138966 ], [ 145.721173, 15.139344 ], [ 145.72121, 15.13947 ], [ 145.72141, 15.14024 ], [ 145.721466, 15.14043 ], [ 145.721634, 15.141 ], [ 145.72169, 15.14119 ], [ 145.721729, 15.141321 ], [ 145.72179, 15.14152 ], [ 145.721888, 15.141699 ], [ 145.721954, 15.14182 ], [ 145.72196, 15.14183 ], [ 145.722033, 15.141988 ], [ 145.72209, 15.14211 ], [ 145.722333, 15.142457 ], [ 145.72244, 15.14261 ], [ 145.722483, 15.142666 ], [ 145.72261, 15.14283 ], [ 145.722614, 15.142835 ], [ 145.72266, 15.14289 ], [ 145.722884, 15.143146 ], [ 145.723165, 15.143452 ], [ 145.72345, 15.14375 ], [ 145.7235, 15.14381 ], [ 145.723562, 15.143877 ], [ 145.723911, 15.144249 ], [ 145.72394, 15.14428 ], [ 145.72402, 15.14438 ], [ 145.724144, 15.144528 ], [ 145.724516, 15.144972 ], [ 145.72464, 15.14512 ], [ 145.724688, 15.145177 ], [ 145.72481, 15.14532 ], [ 145.724833, 15.14535 ], [ 145.72488, 15.14541 ], [ 145.725004, 15.145558 ], [ 145.725376, 15.146002 ], [ 145.7255, 15.14615 ], [ 145.72556, 15.146223 ], [ 145.72573, 15.14643 ], [ 145.725742, 15.146442 ], [ 145.72581, 15.14651 ], [ 145.725813, 15.146505 ], [ 145.72588, 15.14659 ], [ 145.726152, 15.146872 ], [ 145.72617, 15.14689 ], [ 145.726879, 15.147797 ], [ 145.727121, 15.148107 ], [ 145.727308, 15.148347 ], [ 145.727619, 15.148745 ], [ 145.727872, 15.149069 ], [ 145.72806, 15.14931 ], [ 145.728092, 15.14935 ], [ 145.72819, 15.149471 ], [ 145.728223, 15.149512 ], [ 145.728559, 15.149922 ], [ 145.728568, 15.149934 ], [ 145.728827, 15.150245 ], [ 145.72923, 15.15073 ], [ 145.729596, 15.151187 ], [ 145.72979, 15.15143 ], [ 145.72982, 15.15152 ], [ 145.730087, 15.15143 ], [ 145.73022, 15.1514 ], [ 145.730268, 15.151383 ], [ 145.73037, 15.15135 ], [ 145.73052, 15.15128 ], [ 145.73066, 15.1512 ], [ 145.730767, 15.151146 ], [ 145.73082, 15.15112 ], [ 145.73093, 15.15106 ], [ 145.73101, 15.151006 ], [ 145.73105, 15.15098 ], [ 145.73116, 15.1509 ], [ 145.731239, 15.150826 ], [ 145.73131, 15.15076 ], [ 145.73128, 15.15066 ], [ 145.73127, 15.15055 ], [ 145.731286, 15.150485 ], [ 145.73138, 15.15012 ], [ 145.73143, 15.14981 ], [ 145.731451, 15.149656 ], [ 145.73147, 15.14952 ], [ 145.731473, 15.149376 ], [ 145.731475, 15.149268 ], [ 145.73148, 15.14909 ], [ 145.731497, 15.148946 ], [ 145.73151, 15.14884 ], [ 145.731789, 15.148859 ], [ 145.73191, 15.14884 ], [ 145.731942, 15.1488 ], [ 145.73196, 15.14878 ], [ 145.73197, 15.14865 ], [ 145.732006, 15.148288 ], [ 145.73202, 15.14816 ], [ 145.732026, 15.148116 ], [ 145.732037, 15.148033 ], [ 145.73204, 15.14802 ], [ 145.7321, 15.14796 ], [ 145.732235, 15.147895 ], [ 145.73231, 15.14786 ], [ 145.732344, 15.14786 ], [ 145.732448, 15.14786 ], [ 145.732483, 15.14786 ], [ 145.732535, 15.147858 ], [ 145.73269, 15.147854 ], [ 145.732743, 15.147853 ], [ 145.735465, 15.145272 ], [ 145.735617, 15.145434 ], [ 145.735715, 15.145505 ], [ 145.735853, 15.145604 ], [ 145.73619, 15.145461 ], [ 145.736463, 15.145346 ], [ 145.736648, 15.145268 ], [ 145.736965, 15.145135 ], [ 145.73698, 15.14518 ], [ 145.737014, 15.145241 ], [ 145.73707, 15.14534 ], [ 145.73712, 15.14542 ], [ 145.737203, 15.145542 ], [ 145.73727, 15.14564 ], [ 145.737307, 15.145698 ], [ 145.737421, 15.145871 ], [ 145.73746, 15.14593 ], [ 145.737745, 15.145803 ], [ 145.73798, 15.1457 ], [ 145.73831, 15.14557 ], [ 145.738622, 15.145476 ], [ 145.73868, 15.14546 ], [ 145.73892, 15.14538 ], [ 145.73907, 15.145329 ], [ 145.73937, 15.14523 ], [ 145.739526, 15.145189 ], [ 145.73968, 15.14515 ], [ 145.73975, 15.14513 ], [ 145.739759, 15.145128 ], [ 145.739999, 15.145076 ], [ 145.74008, 15.14506 ], [ 145.740247, 15.144907 ], [ 145.740489, 15.144686 ], [ 145.740751, 15.14445 ], [ 145.740919, 15.144299 ], [ 145.741409, 15.144174 ], [ 145.742882, 15.143799 ], [ 145.743373, 15.143675 ], [ 145.743245, 15.143631 ], [ 145.743182, 15.14356 ], [ 145.743078, 15.143544 ], [ 145.743019, 15.143516 ], [ 145.74301, 15.143429 ], [ 145.742971, 15.143323 ], [ 145.742987, 15.143238 ], [ 145.742957, 15.143152 ], [ 145.742869, 15.143084 ], [ 145.742746, 15.14305 ], [ 145.742574, 15.142963 ], [ 145.742407, 15.142866 ], [ 145.742359, 15.142784 ], [ 145.74229, 15.142722 ], [ 145.742374, 15.142688 ], [ 145.742487, 15.142671 ], [ 145.742621, 15.142633 ], [ 145.742658, 15.142557 ], [ 145.742644, 15.142484 ], [ 145.742624, 15.142428 ], [ 145.742698, 15.14239 ], [ 145.742698, 15.142381 ], [ 145.742699, 15.142308 ], [ 145.742552, 15.142126 ], [ 145.742459, 15.141991 ], [ 145.742465, 15.1419 ], [ 145.742519, 15.141853 ], [ 145.742461, 15.141781 ], [ 145.742525, 15.141685 ], [ 145.742387, 15.14168 ], [ 145.742201, 15.141578 ], [ 145.742123, 15.141444 ], [ 145.742006, 15.141266 ], [ 145.741805, 15.141117 ], [ 145.741608, 15.141035 ], [ 145.741442, 15.140871 ], [ 145.741403, 15.140775 ], [ 145.741367, 15.140583 ], [ 145.741329, 15.140444 ], [ 145.741354, 15.14035 ], [ 145.741399, 15.140258 ], [ 145.741399, 15.140129 ], [ 145.741296, 15.140114 ], [ 145.741228, 15.139923 ], [ 145.74115, 15.13986 ], [ 145.741195, 15.139775 ], [ 145.741205, 15.139722 ], [ 145.74117, 15.139639 ], [ 145.741147, 15.139606 ], [ 145.741117, 15.139549 ], [ 145.741079, 15.139324 ], [ 145.74108, 15.139209 ], [ 145.741188, 15.139152 ], [ 145.741238, 15.1391 ], [ 145.741313, 15.138986 ], [ 145.741367, 15.138915 ], [ 145.741285, 15.138741 ], [ 145.74114, 15.138669 ], [ 145.741086, 15.138582 ], [ 145.741165, 15.13853 ], [ 145.741249, 15.138488 ], [ 145.741259, 15.138402 ], [ 145.74123, 15.138334 ], [ 145.741221, 15.138244 ], [ 145.741241, 15.138139 ], [ 145.741262, 15.138053 ], [ 145.741277, 15.137933 ], [ 145.741238, 15.137818 ], [ 145.741125, 15.137779 ], [ 145.741116, 15.137697 ], [ 145.741202, 15.137383 ], [ 145.74131, 15.137349 ], [ 145.74138, 15.137216 ], [ 145.741415, 15.137157 ], [ 145.741539, 15.136954 ], [ 145.741483, 15.136763 ], [ 145.741479, 15.136657 ], [ 145.741534, 15.136586 ], [ 145.741672, 15.136576 ], [ 145.741751, 15.136529 ], [ 145.741772, 15.136334 ], [ 145.741988, 15.135498 ], [ 145.742092, 15.135479 ], [ 145.742137, 15.135388 ], [ 145.742122, 15.135274 ], [ 145.742206, 15.134891 ], [ 145.74226, 15.134853 ], [ 145.742275, 15.134801 ], [ 145.742281, 15.134605 ], [ 145.742297, 15.134495 ], [ 145.742335, 15.13437 ], [ 145.742429, 15.133937 ], [ 145.742447, 15.133871 ], [ 145.742455, 15.133806 ], [ 145.742512, 15.133592 ], [ 145.742597, 15.133478 ], [ 145.742601, 15.13346 ], [ 145.742601, 15.133397 ], [ 145.742589, 15.133325 ], [ 145.742651, 15.133268 ], [ 145.74273, 15.13323 ], [ 145.742795, 15.133192 ], [ 145.742825, 15.133096 ], [ 145.742865, 15.132991 ], [ 145.742865, 15.132901 ], [ 145.742925, 15.132843 ], [ 145.742979, 15.132767 ], [ 145.743005, 15.13258 ], [ 145.74307, 15.132399 ], [ 145.743206, 15.132377 ], [ 145.743265, 15.132345 ], [ 145.743299, 15.132287 ], [ 145.743341, 15.132239 ], [ 145.743443, 15.132068 ], [ 145.743471, 15.132031 ], [ 145.743475, 15.132012 ], [ 145.743484, 15.131976 ], [ 145.743489, 15.131928 ], [ 145.743534, 15.1319 ], [ 145.743573, 15.131862 ], [ 145.743596, 15.131847 ], [ 145.743639, 15.13179 ], [ 145.743647, 15.131766 ], [ 145.743724, 15.131737 ], [ 145.743761, 15.131685 ], [ 145.743801, 15.131604 ], [ 145.743806, 15.131561 ], [ 145.743836, 15.131514 ], [ 145.743896, 15.13138 ], [ 145.743921, 15.13129 ], [ 145.74163, 15.130173 ], [ 145.741262, 15.129994 ], [ 145.741186, 15.129956 ], [ 145.74096, 15.129845 ], [ 145.740885, 15.129808 ], [ 145.740723, 15.129732 ], [ 145.74024, 15.129504 ], [ 145.740079, 15.129428 ], [ 145.739919, 15.129648 ], [ 145.73989, 15.12969 ], [ 145.73964, 15.13001 ], [ 145.739355, 15.130229 ], [ 145.73929, 15.13028 ], [ 145.73911, 15.13034 ], [ 145.73892, 15.13035 ], [ 145.738873, 15.130355 ], [ 145.73876, 15.13037 ], [ 145.73859, 15.13034 ], [ 145.73838, 15.13029 ], [ 145.738191, 15.1302 ], [ 145.73819, 15.1302 ], [ 145.738, 15.13006 ], [ 145.73786, 15.12994 ], [ 145.73762, 15.129751 ], [ 145.73735, 15.12954 ], [ 145.7365, 15.12891 ], [ 145.736447, 15.128869 ], [ 145.73606, 15.12857 ], [ 145.735611, 15.128247 ], [ 145.73556, 15.12821 ], [ 145.73546, 15.12814 ], [ 145.73536, 15.12808 ], [ 145.73521, 15.12802 ], [ 145.73509, 15.12799 ], [ 145.73495, 15.12798 ], [ 145.73474, 15.12798 ], [ 145.73455, 15.12804 ], [ 145.734156, 15.128379 ], [ 145.73411, 15.12842 ], [ 145.73393, 15.1286 ], [ 145.733752, 15.128756 ], [ 145.73344, 15.12903 ], [ 145.733231, 15.129228 ], [ 145.73323, 15.12923 ], [ 145.73302, 15.12946 ], [ 145.73283, 15.12969 ], [ 145.73263, 15.1299 ], [ 145.73251, 15.13006 ], [ 145.73233, 15.13035 ], [ 145.73229, 15.13046 ], [ 145.73224, 15.13064 ], [ 145.73215, 15.13091 ], [ 145.732132, 15.130985 ], [ 145.73209, 15.13117 ], [ 145.73201, 15.13139 ], [ 145.7319, 15.13155 ], [ 145.73183, 15.1316 ], [ 145.73176, 15.13164 ], [ 145.73164, 15.13168 ], [ 145.731618, 15.131686 ], [ 145.730954, 15.131874 ], [ 145.73083, 15.13191 ], [ 145.730733, 15.131934 ], [ 145.73068, 15.131947 ], [ 145.730522, 15.131986 ], [ 145.73047, 15.132 ], [ 145.730068, 15.132095 ], [ 145.72988, 15.13214 ], [ 145.72977, 15.13217 ], [ 145.72963, 15.13218 ], [ 145.72951, 15.13218 ], [ 145.72941, 15.13217 ], [ 145.7293, 15.13214 ], [ 145.72918, 15.13209 ], [ 145.728906, 15.131913 ], [ 145.72856, 15.13169 ], [ 145.72865, 15.13146 ], [ 145.72872, 15.13124 ], [ 145.72873, 15.13102 ], [ 145.72872, 15.13076 ], [ 145.72865, 15.13048 ], [ 145.72857, 15.13026 ], [ 145.72848, 15.13011 ], [ 145.72835, 15.12993 ], [ 145.728301, 15.129887 ], [ 145.72804, 15.12966 ], [ 145.72787, 15.12957 ], [ 145.72767, 15.1295 ], [ 145.72667, 15.12921 ], [ 145.72643, 15.12912 ], [ 145.72624, 15.12903 ], [ 145.72606, 15.12893 ], [ 145.72588, 15.12875 ], [ 145.72571, 15.12857 ], [ 145.72455, 15.12703 ], [ 145.72443, 15.12686 ], [ 145.724003, 15.126276 ], [ 145.72394, 15.12619 ], [ 145.72375, 15.12587 ], [ 145.72312, 15.12455 ], [ 145.72283, 15.12394 ], [ 145.72278, 15.12383 ], [ 145.722767, 15.123804 ], [ 145.72252, 15.12328 ], [ 145.72234, 15.12289 ], [ 145.72187, 15.1219 ], [ 145.72182, 15.1218 ], [ 145.721713, 15.121565 ], [ 145.72167, 15.12147 ], [ 145.72162, 15.12138 ], [ 145.7215, 15.12109 ], [ 145.72142, 15.12096 ], [ 145.7213, 15.12087 ], [ 145.720958, 15.120824 ], [ 145.720723, 15.120806 ], [ 145.720524, 15.120813 ], [ 145.720371, 15.120837 ], [ 145.72013, 15.12089 ], [ 145.71999, 15.12089 ], [ 145.719873, 15.120858 ], [ 145.71984, 15.12085 ], [ 145.71967, 15.12081 ], [ 145.71952, 15.12082 ], [ 145.71939, 15.12084 ], [ 145.71923, 15.12089 ], [ 145.719131, 15.120966 ], [ 145.7191, 15.12099 ], [ 145.719, 15.1211 ], [ 145.718957, 15.121159 ], [ 145.71892, 15.12121 ], [ 145.718877, 15.121298 ], [ 145.718669, 15.121734 ], [ 145.7186, 15.12188 ], [ 145.718569, 15.122003 ], [ 145.71856, 15.12204 ], [ 145.71858, 15.12219 ], [ 145.71862, 15.1223 ], [ 145.718649, 15.12237 ], [ 145.71867, 15.12242 ], [ 145.718724, 15.12247 ], [ 145.718911, 15.122645 ], [ 145.7193, 15.12301 ], [ 145.71945, 15.12317 ], [ 145.719458, 15.123185 ], [ 145.71952, 15.1233 ], [ 145.71956, 15.12342 ], [ 145.71958, 15.12348 ], [ 145.719587, 15.123557 ], [ 145.71959, 15.12359 ], [ 145.7196, 15.12368 ], [ 145.71958, 15.12391 ], [ 145.719558, 15.123974 ], [ 145.71953, 15.12406 ], [ 145.719506, 15.124105 ], [ 145.71948, 15.124151 ], [ 145.719405, 15.124293 ], [ 145.71938, 15.12434 ], [ 145.719371, 15.124359 ], [ 145.719346, 15.124419 ], [ 145.719338, 15.12444 ], [ 145.719331, 15.124454 ], [ 145.719313, 15.124498 ], [ 145.719307, 15.124513 ], [ 145.719299, 15.12453 ], [ 145.719277, 15.124582 ], [ 145.71927, 15.1246 ], [ 145.71884, 15.125625 ], [ 145.718579, 15.12624 ], [ 145.718277, 15.126958 ], [ 145.71815, 15.12725 ], [ 145.717869, 15.127907 ], [ 145.717834, 15.127989 ], [ 145.717726, 15.12823 ], [ 145.71769, 15.12831 ], [ 145.717669, 15.128357 ], [ 145.71766, 15.12838 ], [ 145.717598, 15.128494 ], [ 145.71759, 15.12851 ], [ 145.717567, 15.128535 ], [ 145.71748, 15.12863 ], [ 145.717448, 15.128653 ], [ 145.71732, 15.12875 ], [ 145.71719, 15.12882 ], [ 145.71705, 15.12886 ], [ 145.716998, 15.128863 ], [ 145.71688, 15.12887 ], [ 145.71683, 15.12887 ], [ 145.716745, 15.12887 ], [ 145.71666, 15.12887 ], [ 145.71649, 15.128866 ], [ 145.716406, 15.128865 ], [ 145.716194, 15.128861 ], [ 145.71612, 15.12886 ], [ 145.715559, 15.12886 ], [ 145.71547, 15.12886 ], [ 145.715348, 15.128871 ], [ 145.71524, 15.12888 ], [ 145.71492, 15.12897 ], [ 145.714723, 15.129057 ], [ 145.71449, 15.12916 ], [ 145.7134, 15.12961 ], [ 145.712913, 15.129832 ], [ 145.71281, 15.12988 ], [ 145.71267, 15.12997 ], [ 145.71242, 15.13025 ], [ 145.712623, 15.130401 ], [ 145.71285, 15.13057 ], [ 145.713229, 15.130864 ], [ 145.71343, 15.13102 ], [ 145.71354, 15.131103 ], [ 145.71367, 15.1312 ], [ 145.71387, 15.131355 ], [ 145.71398, 15.13144 ], [ 145.714065, 15.131506 ], [ 145.714322, 15.131705 ], [ 145.714408, 15.131772 ], [ 145.714527, 15.131864 ], [ 145.71456, 15.13189 ], [ 145.714881, 15.132146 ], [ 145.715, 15.13224 ], [ 145.715168, 15.132369 ], [ 145.715672, 15.132759 ], [ 145.71584, 15.13289 ], [ 145.715887, 15.132928 ], [ 145.71603, 15.133042 ], [ 145.716078, 15.13308 ], [ 145.71611, 15.133105 ], [ 145.716207, 15.133182 ], [ 145.71624, 15.133208 ], [ 145.71633, 15.13328 ], [ 145.716374, 15.133312 ], [ 145.716783, 15.133618 ], [ 145.71692, 15.13372 ], [ 145.716952, 15.133743 ], [ 145.717049, 15.133812 ], [ 145.71706, 15.13382 ], [ 145.717082, 15.133835 ], [ 145.717113, 15.133855 ], [ 145.717208, 15.133918 ], [ 145.71724, 15.13394 ], [ 145.717266, 15.133962 ], [ 145.717344, 15.134028 ], [ 145.71737, 15.13405 ], [ 145.717468, 15.134118 ], [ 145.717762, 15.134321 ], [ 145.71786, 15.13439 ], [ 145.717876, 15.134402 ], [ 145.717924, 15.134438 ], [ 145.71794, 15.13445 ], [ 145.7181, 15.13458 ], [ 145.71858, 15.13497 ], [ 145.71874, 15.1351 ], [ 145.718842, 15.135177 ], [ 145.71903, 15.13532 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "69", "COUNTYFP10": "110", "TRACTCE10": "001300", "GEOID10": "69110001300", "NAME10": "13", "NAMELSAD10": "Census Tract 13", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 15233745, "AWATER10": 0, "INTPTLAT10": "+15.1162246", "INTPTLON10": "+145.7293294" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.704102, 15.126187 ], [ 145.70414, 15.12621 ], [ 145.704354, 15.126317 ], [ 145.7045, 15.12639 ], [ 145.704793, 15.126516 ], [ 145.70501, 15.12661 ], [ 145.7051, 15.12664 ], [ 145.706022, 15.126995 ], [ 145.706072, 15.127014 ], [ 145.70614, 15.12704 ], [ 145.706158, 15.127047 ], [ 145.706418, 15.127149 ], [ 145.706505, 15.127184 ], [ 145.706612, 15.127226 ], [ 145.706936, 15.127355 ], [ 145.707044, 15.127398 ], [ 145.70715, 15.12744 ], [ 145.707472, 15.12756 ], [ 145.70758, 15.1276 ], [ 145.707729, 15.127657 ], [ 145.708179, 15.127828 ], [ 145.708329, 15.127886 ], [ 145.708441, 15.127928 ], [ 145.708777, 15.128057 ], [ 145.70889, 15.1281 ], [ 145.708919, 15.128111 ], [ 145.709006, 15.128144 ], [ 145.709036, 15.128155 ], [ 145.70907, 15.128167 ], [ 145.709175, 15.128206 ], [ 145.70921, 15.12822 ], [ 145.709274, 15.128245 ], [ 145.709469, 15.128323 ], [ 145.709534, 15.12835 ], [ 145.70964, 15.128392 ], [ 145.70996, 15.12852 ], [ 145.71006, 15.12856 ], [ 145.710066, 15.128564 ], [ 145.71034, 15.12872 ], [ 145.710483, 15.128795 ], [ 145.71055, 15.12883 ], [ 145.710879, 15.129073 ], [ 145.71101, 15.12917 ], [ 145.711013, 15.129171 ], [ 145.711334, 15.129417 ], [ 145.711837, 15.129802 ], [ 145.71242, 15.13025 ], [ 145.71267, 15.12997 ], [ 145.71281, 15.12988 ], [ 145.712913, 15.129832 ], [ 145.7134, 15.12961 ], [ 145.71449, 15.12916 ], [ 145.714723, 15.129057 ], [ 145.71492, 15.12897 ], [ 145.71524, 15.12888 ], [ 145.715348, 15.128871 ], [ 145.71547, 15.12886 ], [ 145.715559, 15.12886 ], [ 145.71612, 15.12886 ], [ 145.716194, 15.128861 ], [ 145.716406, 15.128865 ], [ 145.71649, 15.128866 ], [ 145.71666, 15.12887 ], [ 145.716745, 15.12887 ], [ 145.71683, 15.12887 ], [ 145.71688, 15.12887 ], [ 145.716998, 15.128863 ], [ 145.71705, 15.12886 ], [ 145.71719, 15.12882 ], [ 145.71732, 15.12875 ], [ 145.717448, 15.128653 ], [ 145.71748, 15.12863 ], [ 145.717567, 15.128535 ], [ 145.71759, 15.12851 ], [ 145.717598, 15.128494 ], [ 145.71766, 15.12838 ], [ 145.717669, 15.128357 ], [ 145.71769, 15.12831 ], [ 145.717726, 15.12823 ], [ 145.717834, 15.127989 ], [ 145.717869, 15.127907 ], [ 145.71815, 15.12725 ], [ 145.718277, 15.126958 ], [ 145.718579, 15.12624 ], [ 145.71884, 15.125625 ], [ 145.71927, 15.1246 ], [ 145.719277, 15.124582 ], [ 145.719299, 15.12453 ], [ 145.719307, 15.124513 ], [ 145.719313, 15.124498 ], [ 145.719331, 15.124454 ], [ 145.719338, 15.12444 ], [ 145.719346, 15.124419 ], [ 145.719371, 15.124359 ], [ 145.71938, 15.12434 ], [ 145.719405, 15.124293 ], [ 145.71948, 15.124151 ], [ 145.719506, 15.124105 ], [ 145.71953, 15.12406 ], [ 145.719558, 15.123974 ], [ 145.71958, 15.12391 ], [ 145.7196, 15.12368 ], [ 145.71959, 15.12359 ], [ 145.719587, 15.123557 ], [ 145.71958, 15.12348 ], [ 145.71956, 15.12342 ], [ 145.71952, 15.1233 ], [ 145.719458, 15.123185 ], [ 145.71945, 15.12317 ], [ 145.7193, 15.12301 ], [ 145.718911, 15.122645 ], [ 145.718724, 15.12247 ], [ 145.71867, 15.12242 ], [ 145.718649, 15.12237 ], [ 145.71862, 15.1223 ], [ 145.71858, 15.12219 ], [ 145.71856, 15.12204 ], [ 145.718569, 15.122003 ], [ 145.7186, 15.12188 ], [ 145.718669, 15.121734 ], [ 145.718877, 15.121298 ], [ 145.71892, 15.12121 ], [ 145.718957, 15.121159 ], [ 145.719, 15.1211 ], [ 145.7191, 15.12099 ], [ 145.719131, 15.120966 ], [ 145.71923, 15.12089 ], [ 145.71939, 15.12084 ], [ 145.71952, 15.12082 ], [ 145.71967, 15.12081 ], [ 145.71984, 15.12085 ], [ 145.719873, 15.120858 ], [ 145.71999, 15.12089 ], [ 145.72013, 15.12089 ], [ 145.720371, 15.120837 ], [ 145.720524, 15.120813 ], [ 145.720723, 15.120806 ], [ 145.720958, 15.120824 ], [ 145.7213, 15.12087 ], [ 145.72142, 15.12096 ], [ 145.7215, 15.12109 ], [ 145.72162, 15.12138 ], [ 145.72167, 15.12147 ], [ 145.721713, 15.121565 ], [ 145.72182, 15.1218 ], [ 145.72187, 15.1219 ], [ 145.72234, 15.12289 ], [ 145.72252, 15.12328 ], [ 145.722767, 15.123804 ], [ 145.72278, 15.12383 ], [ 145.72283, 15.12394 ], [ 145.72312, 15.12455 ], [ 145.72375, 15.12587 ], [ 145.72394, 15.12619 ], [ 145.724003, 15.126276 ], [ 145.72443, 15.12686 ], [ 145.72455, 15.12703 ], [ 145.72571, 15.12857 ], [ 145.72588, 15.12875 ], [ 145.72606, 15.12893 ], [ 145.72624, 15.12903 ], [ 145.72643, 15.12912 ], [ 145.72667, 15.12921 ], [ 145.72767, 15.1295 ], [ 145.72787, 15.12957 ], [ 145.72804, 15.12966 ], [ 145.728301, 15.129887 ], [ 145.72835, 15.12993 ], [ 145.72848, 15.13011 ], [ 145.72857, 15.13026 ], [ 145.72865, 15.13048 ], [ 145.72872, 15.13076 ], [ 145.72873, 15.13102 ], [ 145.72872, 15.13124 ], [ 145.72865, 15.13146 ], [ 145.72856, 15.13169 ], [ 145.728906, 15.131913 ], [ 145.72918, 15.13209 ], [ 145.7293, 15.13214 ], [ 145.72941, 15.13217 ], [ 145.72951, 15.13218 ], [ 145.72963, 15.13218 ], [ 145.72977, 15.13217 ], [ 145.72988, 15.13214 ], [ 145.730068, 15.132095 ], [ 145.73047, 15.132 ], [ 145.730522, 15.131986 ], [ 145.73068, 15.131947 ], [ 145.730733, 15.131934 ], [ 145.73083, 15.13191 ], [ 145.730954, 15.131874 ], [ 145.731618, 15.131686 ], [ 145.73164, 15.13168 ], [ 145.73176, 15.13164 ], [ 145.73183, 15.1316 ], [ 145.7319, 15.13155 ], [ 145.73201, 15.13139 ], [ 145.73209, 15.13117 ], [ 145.732132, 15.130985 ], [ 145.73215, 15.13091 ], [ 145.73224, 15.13064 ], [ 145.73229, 15.13046 ], [ 145.73233, 15.13035 ], [ 145.73251, 15.13006 ], [ 145.73263, 15.1299 ], [ 145.73283, 15.12969 ], [ 145.73302, 15.12946 ], [ 145.73323, 15.12923 ], [ 145.733231, 15.129228 ], [ 145.73344, 15.12903 ], [ 145.733752, 15.128756 ], [ 145.73393, 15.1286 ], [ 145.73411, 15.12842 ], [ 145.734156, 15.128379 ], [ 145.73455, 15.12804 ], [ 145.73474, 15.12798 ], [ 145.73495, 15.12798 ], [ 145.73509, 15.12799 ], [ 145.73521, 15.12802 ], [ 145.73536, 15.12808 ], [ 145.73546, 15.12814 ], [ 145.73556, 15.12821 ], [ 145.735611, 15.128247 ], [ 145.73606, 15.12857 ], [ 145.736447, 15.128869 ], [ 145.7365, 15.12891 ], [ 145.73735, 15.12954 ], [ 145.73762, 15.129751 ], [ 145.73786, 15.12994 ], [ 145.738, 15.13006 ], [ 145.73819, 15.1302 ], [ 145.738191, 15.1302 ], [ 145.73838, 15.13029 ], [ 145.73859, 15.13034 ], [ 145.73876, 15.13037 ], [ 145.738873, 15.130355 ], [ 145.73892, 15.13035 ], [ 145.73911, 15.13034 ], [ 145.73929, 15.13028 ], [ 145.739355, 15.130229 ], [ 145.73964, 15.13001 ], [ 145.73989, 15.12969 ], [ 145.739919, 15.129648 ], [ 145.740079, 15.129428 ], [ 145.74024, 15.129504 ], [ 145.740723, 15.129732 ], [ 145.740885, 15.129808 ], [ 145.74096, 15.129845 ], [ 145.741186, 15.129956 ], [ 145.741262, 15.129994 ], [ 145.74163, 15.130173 ], [ 145.743921, 15.13129 ], [ 145.743992, 15.131256 ], [ 145.744008, 15.131161 ], [ 145.744033, 15.13108 ], [ 145.744043, 15.131018 ], [ 145.744083, 15.130937 ], [ 145.744165, 15.130872 ], [ 145.744184, 15.130844 ], [ 145.744261, 15.130769 ], [ 145.744252, 15.130746 ], [ 145.74425, 15.130677 ], [ 145.744287, 15.130617 ], [ 145.7444, 15.130589 ], [ 145.744489, 15.130532 ], [ 145.744573, 15.130503 ], [ 145.744652, 15.130495 ], [ 145.744693, 15.130487 ], [ 145.744761, 15.130389 ], [ 145.744794, 15.130363 ], [ 145.744815, 15.130356 ], [ 145.744816, 15.130295 ], [ 145.74489, 15.130175 ], [ 145.744871, 15.13007 ], [ 145.744872, 15.129989 ], [ 145.744902, 15.129907 ], [ 145.744917, 15.129807 ], [ 145.744957, 15.129712 ], [ 145.744963, 15.129573 ], [ 145.744933, 15.129521 ], [ 145.744971, 15.129406 ], [ 145.744993, 15.129391 ], [ 145.745024, 15.129349 ], [ 145.745075, 15.129311 ], [ 145.745115, 15.129191 ], [ 145.74514, 15.12911 ], [ 145.745151, 15.129029 ], [ 145.74521, 15.128939 ], [ 145.745266, 15.128917 ], [ 145.745354, 15.12882 ], [ 145.745379, 15.128715 ], [ 145.745404, 15.128653 ], [ 145.745429, 15.128576 ], [ 145.745391, 15.128413 ], [ 145.74543, 15.128356 ], [ 145.745489, 15.128342 ], [ 145.745549, 15.128294 ], [ 145.745653, 15.128161 ], [ 145.745689, 15.127937 ], [ 145.745778, 15.12786 ], [ 145.745842, 15.127837 ], [ 145.745913, 15.127824 ], [ 145.745972, 15.127791 ], [ 145.746035, 15.127738 ], [ 145.746192, 15.127637 ], [ 145.746208, 15.127619 ], [ 145.746321, 15.127557 ], [ 145.746366, 15.127562 ], [ 145.746398, 15.127628 ], [ 145.746458, 15.127656 ], [ 145.746555, 15.127592 ], [ 145.746605, 15.127526 ], [ 145.746654, 15.127482 ], [ 145.746708, 15.127478 ], [ 145.746738, 15.127416 ], [ 145.746956, 15.127312 ], [ 145.747015, 15.127265 ], [ 145.747059, 15.127285 ], [ 145.747069, 15.12736 ], [ 145.747088, 15.127418 ], [ 145.747221, 15.127442 ], [ 145.747251, 15.127305 ], [ 145.747261, 15.127213 ], [ 145.747223, 15.127012 ], [ 145.747263, 15.126937 ], [ 145.747352, 15.126894 ], [ 145.747391, 15.126894 ], [ 145.747436, 15.126818 ], [ 145.747466, 15.126808 ], [ 145.747555, 15.126656 ], [ 145.747566, 15.126524 ], [ 145.747596, 15.12645 ], [ 145.747613, 15.126442 ], [ 145.747665, 15.126388 ], [ 145.747683, 15.126303 ], [ 145.747719, 15.126078 ], [ 145.747744, 15.125973 ], [ 145.747784, 15.12591 ], [ 145.747867, 15.125906 ], [ 145.747941, 15.125878 ], [ 145.748055, 15.125793 ], [ 145.748125, 15.125721 ], [ 145.748248, 15.12567 ], [ 145.748295, 15.125635 ], [ 145.748302, 15.12561 ], [ 145.748309, 15.125549 ], [ 145.748269, 15.125478 ], [ 145.748269, 15.125396 ], [ 145.748299, 15.125325 ], [ 145.748383, 15.125249 ], [ 145.748414, 15.125233 ], [ 145.748499, 15.12521 ], [ 145.748587, 15.125146 ], [ 145.74867, 15.125135 ], [ 145.748718, 15.125146 ], [ 145.748744, 15.125113 ], [ 145.748745, 15.125095 ], [ 145.748765, 15.125014 ], [ 145.749061, 15.124765 ], [ 145.74911, 15.124717 ], [ 145.749224, 15.12469 ], [ 145.749381, 15.124681 ], [ 145.749539, 15.124735 ], [ 145.749547, 15.124736 ], [ 145.749647, 15.124749 ], [ 145.749673, 15.124667 ], [ 145.749673, 15.124649 ], [ 145.749679, 15.124616 ], [ 145.749779, 15.124535 ], [ 145.749853, 15.124458 ], [ 145.749883, 15.124396 ], [ 145.749972, 15.124349 ], [ 145.75008, 15.124326 ], [ 145.750173, 15.124327 ], [ 145.750198, 15.124319 ], [ 145.750258, 15.12424 ], [ 145.750415, 15.124194 ], [ 145.750421, 15.124117 ], [ 145.750486, 15.124027 ], [ 145.750565, 15.124027 ], [ 145.750614, 15.124004 ], [ 145.750698, 15.123956 ], [ 145.750831, 15.123894 ], [ 145.750925, 15.123866 ], [ 145.751119, 15.123881 ], [ 145.751181, 15.123877 ], [ 145.751176, 15.123806 ], [ 145.75125, 15.123749 ], [ 145.751359, 15.123691 ], [ 145.751586, 15.123626 ], [ 145.751729, 15.123636 ], [ 145.751846, 15.123595 ], [ 145.751981, 15.12338 ], [ 145.751999, 15.123346 ], [ 145.752026, 15.123313 ], [ 145.75208, 15.123275 ], [ 145.752243, 15.123272 ], [ 145.752332, 15.12329 ], [ 145.752429, 15.12325 ], [ 145.75248, 15.123242 ], [ 145.752563, 15.123195 ], [ 145.752666, 15.123137 ], [ 145.752692, 15.123116 ], [ 145.752746, 15.123168 ], [ 145.752775, 15.123241 ], [ 145.752828, 15.123266 ], [ 145.75284, 15.12328 ], [ 145.752909, 15.123318 ], [ 145.75294, 15.123324 ], [ 145.753023, 15.123304 ], [ 145.753029, 15.123251 ], [ 145.753093, 15.123247 ], [ 145.753156, 15.123362 ], [ 145.753279, 15.123421 ], [ 145.753465, 15.123478 ], [ 145.753583, 15.12347 ], [ 145.753623, 15.123446 ], [ 145.75362, 15.123435 ], [ 145.753609, 15.123389 ], [ 145.753678, 15.123342 ], [ 145.753801, 15.123342 ], [ 145.753884, 15.12338 ], [ 145.753983, 15.1234 ], [ 145.754067, 15.1234 ], [ 145.754239, 15.12342 ], [ 145.754278, 15.12344 ], [ 145.754391, 15.123522 ], [ 145.754519, 15.123599 ], [ 145.754681, 15.123562 ], [ 145.754859, 15.123535 ], [ 145.754923, 15.123458 ], [ 145.754933, 15.123386 ], [ 145.754845, 15.123314 ], [ 145.754816, 15.123209 ], [ 145.754954, 15.123195 ], [ 145.755003, 15.123219 ], [ 145.755132, 15.123247 ], [ 145.755206, 15.1232 ], [ 145.755233, 15.123125 ], [ 145.755307, 15.123096 ], [ 145.7554, 15.123069 ], [ 145.7555, 15.122939 ], [ 145.755554, 15.122825 ], [ 145.755466, 15.122796 ], [ 145.755417, 15.122709 ], [ 145.755511, 15.122677 ], [ 145.755625, 15.12262 ], [ 145.755704, 15.12251 ], [ 145.755734, 15.122424 ], [ 145.755857, 15.122386 ], [ 145.755888, 15.122253 ], [ 145.755913, 15.122177 ], [ 145.755968, 15.122091 ], [ 145.755973, 15.121995 ], [ 145.756032, 15.121976 ], [ 145.756039, 15.121966 ], [ 145.756092, 15.121901 ], [ 145.756167, 15.121837 ], [ 145.756225, 15.121825 ], [ 145.756214, 15.121666 ], [ 145.756268, 15.121576 ], [ 145.756279, 15.121519 ], [ 145.756363, 15.121485 ], [ 145.756328, 15.121414 ], [ 145.756289, 15.121356 ], [ 145.7563, 15.121285 ], [ 145.756326, 15.121266 ], [ 145.756369, 15.121213 ], [ 145.756411, 15.121184 ], [ 145.756478, 15.12116 ], [ 145.756566, 15.121171 ], [ 145.756566, 15.121219 ], [ 145.756664, 15.121235 ], [ 145.756778, 15.12123 ], [ 145.756833, 15.121148 ], [ 145.7569, 15.121105 ], [ 145.756909, 15.121089 ], [ 145.756956, 15.120957 ], [ 145.756952, 15.120914 ], [ 145.756908, 15.120743 ], [ 145.756965, 15.120685 ], [ 145.75698, 15.120633 ], [ 145.756937, 15.120589 ], [ 145.756912, 15.120513 ], [ 145.756923, 15.120422 ], [ 145.756869, 15.12034 ], [ 145.756855, 15.120245 ], [ 145.756863, 15.119676 ], [ 145.756943, 15.119466 ], [ 145.757018, 15.119347 ], [ 145.757004, 15.119239 ], [ 145.756992, 15.119223 ], [ 145.7569, 15.119154 ], [ 145.756867, 15.119029 ], [ 145.756816, 15.118891 ], [ 145.756742, 15.118852 ], [ 145.756693, 15.118752 ], [ 145.756689, 15.118641 ], [ 145.756739, 15.118498 ], [ 145.756715, 15.118364 ], [ 145.756672, 15.118167 ], [ 145.756654, 15.117952 ], [ 145.756679, 15.117805 ], [ 145.756578, 15.117474 ], [ 145.756372, 15.117343 ], [ 145.756402, 15.117176 ], [ 145.756363, 15.116846 ], [ 145.756334, 15.116659 ], [ 145.756305, 15.116535 ], [ 145.756296, 15.116396 ], [ 145.756144, 15.116361 ], [ 145.75606, 15.116298 ], [ 145.756046, 15.116251 ], [ 145.756042, 15.116103 ], [ 145.756089, 15.116074 ], [ 145.756052, 15.116026 ], [ 145.756043, 15.11594 ], [ 145.756043, 15.115811 ], [ 145.756103, 15.115739 ], [ 145.756091, 15.115673 ], [ 145.756088, 15.115433 ], [ 145.756118, 15.115352 ], [ 145.756118, 15.115304 ], [ 145.756054, 15.115218 ], [ 145.756084, 15.114333 ], [ 145.756041, 15.114199 ], [ 145.756111, 15.114082 ], [ 145.756179, 15.113935 ], [ 145.756297, 15.113894 ], [ 145.756334, 15.113733 ], [ 145.756372, 15.113613 ], [ 145.756452, 15.113561 ], [ 145.756515, 15.113452 ], [ 145.756532, 15.113382 ], [ 145.75654, 15.11328 ], [ 145.756529, 15.113154 ], [ 145.756498, 15.113029 ], [ 145.756535, 15.112891 ], [ 145.756536, 15.112808 ], [ 145.756545, 15.112767 ], [ 145.756488, 15.112687 ], [ 145.756526, 15.112556 ], [ 145.756555, 15.112482 ], [ 145.756571, 15.112228 ], [ 145.756412, 15.112042 ], [ 145.756352, 15.111718 ], [ 145.756347, 15.111509 ], [ 145.756317, 15.111382 ], [ 145.756181, 15.111265 ], [ 145.756158, 15.111245 ], [ 145.756072, 15.111137 ], [ 145.755971, 15.111112 ], [ 145.755824, 15.111051 ], [ 145.755799, 15.110985 ], [ 145.755797, 15.110905 ], [ 145.755795, 15.110887 ], [ 145.755696, 15.110823 ], [ 145.755641, 15.110734 ], [ 145.755543, 15.110626 ], [ 145.755526, 15.11044 ], [ 145.755496, 15.110284 ], [ 145.75549, 15.110224 ], [ 145.755423, 15.110111 ], [ 145.755467, 15.110033 ], [ 145.755437, 15.109901 ], [ 145.755396, 15.109774 ], [ 145.755374, 15.109757 ], [ 145.755298, 15.109664 ], [ 145.755101, 15.109457 ], [ 145.755126, 15.109379 ], [ 145.755083, 15.109301 ], [ 145.755072, 15.109116 ], [ 145.755023, 15.109026 ], [ 145.755018, 15.108901 ], [ 145.75507, 15.108871 ], [ 145.755067, 15.108822 ], [ 145.755055, 15.10878 ], [ 145.754985, 15.108721 ], [ 145.754918, 15.108673 ], [ 145.754912, 15.108565 ], [ 145.754869, 15.108505 ], [ 145.75487, 15.108415 ], [ 145.754846, 15.108313 ], [ 145.754779, 15.108217 ], [ 145.754705, 15.108175 ], [ 145.75462, 15.108085 ], [ 145.754601, 15.108025 ], [ 145.754651, 15.107965 ], [ 145.754609, 15.10796 ], [ 145.754553, 15.107947 ], [ 145.754324, 15.107963 ], [ 145.754236, 15.107893 ], [ 145.754208, 15.107832 ], [ 145.754104, 15.107777 ], [ 145.754087, 15.107785 ], [ 145.753981, 15.107782 ], [ 145.753896, 15.107687 ], [ 145.75381, 15.107603 ], [ 145.753798, 15.107507 ], [ 145.753756, 15.107387 ], [ 145.753676, 15.107308 ], [ 145.753652, 15.107219 ], [ 145.753352, 15.10699 ], [ 145.75323, 15.106708 ], [ 145.753074, 15.10665 ], [ 145.752977, 15.106627 ], [ 145.752719, 15.106469 ], [ 145.752705, 15.106368 ], [ 145.752699, 15.106349 ], [ 145.752658, 15.106281 ], [ 145.75267, 15.106209 ], [ 145.752609, 15.106131 ], [ 145.752543, 15.105916 ], [ 145.752605, 15.105814 ], [ 145.752648, 15.105766 ], [ 145.752654, 15.105694 ], [ 145.75257, 15.105641 ], [ 145.752557, 15.105627 ], [ 145.752521, 15.105611 ], [ 145.752526, 15.10556 ], [ 145.752576, 15.105521 ], [ 145.752473, 15.105401 ], [ 145.752464, 15.105349 ], [ 145.752532, 15.105349 ], [ 145.752551, 15.105351 ], [ 145.752577, 15.105344 ], [ 145.752528, 15.105253 ], [ 145.752445, 15.105219 ], [ 145.752415, 15.105191 ], [ 145.752435, 15.105148 ], [ 145.752475, 15.105099 ], [ 145.752495, 15.105009 ], [ 145.752496, 15.104803 ], [ 145.752526, 15.104731 ], [ 145.752551, 15.104641 ], [ 145.752537, 15.104555 ], [ 145.752538, 15.104474 ], [ 145.752568, 15.104407 ], [ 145.752539, 15.104264 ], [ 145.752539, 15.10423 ], [ 145.752599, 15.104072 ], [ 145.752703, 15.103977 ], [ 145.752767, 15.103925 ], [ 145.752677, 15.103747 ], [ 145.752628, 15.103695 ], [ 145.752658, 15.103609 ], [ 145.75254, 15.103574 ], [ 145.752491, 15.103555 ], [ 145.752482, 15.103469 ], [ 145.752502, 15.10344 ], [ 145.752571, 15.103412 ], [ 145.75266, 15.103389 ], [ 145.752665, 15.103359 ], [ 145.752606, 15.103331 ], [ 145.752571, 15.103302 ], [ 145.752532, 15.103253 ], [ 145.752503, 15.10323 ], [ 145.752439, 15.103253 ], [ 145.752355, 15.103233 ], [ 145.752331, 15.103209 ], [ 145.752321, 15.103138 ], [ 145.752253, 15.103099 ], [ 145.752144, 15.103108 ], [ 145.752095, 15.103075 ], [ 145.752086, 15.102945 ], [ 145.752033, 15.102787 ], [ 145.752058, 15.102649 ], [ 145.75203, 15.102505 ], [ 145.752021, 15.102366 ], [ 145.752125, 15.102218 ], [ 145.752199, 15.102133 ], [ 145.752342, 15.102081 ], [ 145.752444, 15.102053 ], [ 145.752449, 15.101976 ], [ 145.752469, 15.101929 ], [ 145.752543, 15.101904 ], [ 145.752596, 15.101801 ], [ 145.752623, 15.101718 ], [ 145.752599, 15.101618 ], [ 145.752634, 15.101538 ], [ 145.752496, 15.101479 ], [ 145.752477, 15.101393 ], [ 145.752502, 15.101336 ], [ 145.752341, 15.101115 ], [ 145.752234, 15.100928 ], [ 145.752239, 15.100803 ], [ 145.752207, 15.100692 ], [ 145.752186, 15.100649 ], [ 145.752157, 15.100662 ], [ 145.752152, 15.100512 ], [ 145.752165, 15.100327 ], [ 145.752172, 15.100111 ], [ 145.752131, 15.099872 ], [ 145.752078, 15.099477 ], [ 145.752004, 15.099382 ], [ 145.752048, 15.099346 ], [ 145.752091, 15.099292 ], [ 145.752024, 15.09922 ], [ 145.751956, 15.099195 ], [ 145.751938, 15.099142 ], [ 145.751858, 15.0991 ], [ 145.751815, 15.099057 ], [ 145.751837, 15.09901 ], [ 145.751911, 15.098973 ], [ 145.751945, 15.098926 ], [ 145.751884, 15.09886 ], [ 145.751743, 15.098818 ], [ 145.751601, 15.0988 ], [ 145.751482, 15.098714 ], [ 145.751486, 15.098658 ], [ 145.751482, 15.098619 ], [ 145.751497, 15.098569 ], [ 145.751649, 15.09853 ], [ 145.751674, 15.0985 ], [ 145.751632, 15.098399 ], [ 145.751539, 15.098357 ], [ 145.75155, 15.098311 ], [ 145.751528, 15.098248 ], [ 145.751475, 15.098205 ], [ 145.751504, 15.098135 ], [ 145.751565, 15.098101 ], [ 145.751652, 15.098063 ], [ 145.751566, 15.09801 ], [ 145.751462, 15.097979 ], [ 145.751456, 15.097919 ], [ 145.751465, 15.097856 ], [ 145.751487, 15.097794 ], [ 145.751525, 15.097746 ], [ 145.75147, 15.097674 ], [ 145.751452, 15.09762 ], [ 145.751476, 15.097537 ], [ 145.751612, 15.097484 ], [ 145.751545, 15.097429 ], [ 145.751477, 15.097412 ], [ 145.751496, 15.097339 ], [ 145.751687, 15.097286 ], [ 145.751718, 15.097228 ], [ 145.751682, 15.097161 ], [ 145.751665, 15.096892 ], [ 145.751585, 15.096796 ], [ 145.751537, 15.096718 ], [ 145.751445, 15.096627 ], [ 145.751359, 15.096519 ], [ 145.751302, 15.096316 ], [ 145.751198, 15.096154 ], [ 145.751144, 15.096004 ], [ 145.751108, 15.095789 ], [ 145.751109, 15.095628 ], [ 145.751153, 15.095532 ], [ 145.751258, 15.095478 ], [ 145.751252, 15.09539 ], [ 145.751286, 15.095308 ], [ 145.751312, 15.095259 ], [ 145.751297, 15.09515 ], [ 145.751217, 15.095096 ], [ 145.751206, 15.09494 ], [ 145.75118, 15.094833 ], [ 145.751146, 15.09475 ], [ 145.750979, 15.094706 ], [ 145.750857, 15.094538 ], [ 145.750821, 15.094395 ], [ 145.7508, 15.094275 ], [ 145.750709, 15.094113 ], [ 145.75063, 15.093891 ], [ 145.750612, 15.093753 ], [ 145.75054, 15.093447 ], [ 145.750482, 15.093349 ], [ 145.750406, 15.093261 ], [ 145.750338, 15.093231 ], [ 145.750246, 15.093171 ], [ 145.750174, 15.093021 ], [ 145.749683, 15.092696 ], [ 145.749598, 15.09251 ], [ 145.749372, 15.092311 ], [ 145.749372, 15.092185 ], [ 145.749219, 15.092059 ], [ 145.749072, 15.091969 ], [ 145.74898, 15.091938 ], [ 145.748814, 15.09189 ], [ 145.748512, 15.091959 ], [ 145.748451, 15.091875 ], [ 145.748334, 15.091881 ], [ 145.748315, 15.091929 ], [ 145.74818, 15.091928 ], [ 145.748161, 15.091993 ], [ 145.747986, 15.091992 ], [ 145.747869, 15.09195 ], [ 145.747795, 15.091932 ], [ 145.747715, 15.091985 ], [ 145.747713, 15.092003 ], [ 145.747678, 15.092069 ], [ 145.747604, 15.092081 ], [ 145.747564, 15.092078 ], [ 145.747499, 15.092044 ], [ 145.747437, 15.092104 ], [ 145.7474, 15.092187 ], [ 145.747349, 15.092396 ], [ 145.747361, 15.092623 ], [ 145.747329, 15.092737 ], [ 145.747206, 15.092789 ], [ 145.747015, 15.092806 ], [ 145.74686, 15.092878 ], [ 145.746811, 15.092972 ], [ 145.746804, 15.093098 ], [ 145.746693, 15.093193 ], [ 145.746655, 15.093265 ], [ 145.7465, 15.093408 ], [ 145.746463, 15.093551 ], [ 145.746199, 15.093992 ], [ 145.746186, 15.094088 ], [ 145.746259, 15.09419 ], [ 145.746219, 15.094248 ], [ 145.74616, 15.09432 ], [ 145.746122, 15.09447 ], [ 145.746121, 15.094601 ], [ 145.746133, 15.094673 ], [ 145.746077, 15.094739 ], [ 145.746046, 15.094834 ], [ 145.745966, 15.094887 ], [ 145.745971, 15.094983 ], [ 145.746026, 15.095049 ], [ 145.746025, 15.095187 ], [ 145.745939, 15.09524 ], [ 145.745908, 15.09533 ], [ 145.745907, 15.095431 ], [ 145.745919, 15.095515 ], [ 145.7459, 15.095605 ], [ 145.745924, 15.095641 ], [ 145.74593, 15.095761 ], [ 145.745831, 15.095837 ], [ 145.745839, 15.09586 ], [ 145.745843, 15.095939 ], [ 145.745882, 15.096059 ], [ 145.745807, 15.096178 ], [ 145.745801, 15.096274 ], [ 145.745763, 15.096387 ], [ 145.745713, 15.096506 ], [ 145.745768, 15.096554 ], [ 145.745749, 15.096638 ], [ 145.745779, 15.096721 ], [ 145.745834, 15.096806 ], [ 145.745833, 15.096924 ], [ 145.745821, 15.096997 ], [ 145.745746, 15.097152 ], [ 145.74569, 15.097302 ], [ 145.745584, 15.097505 ], [ 145.745582, 15.097525 ], [ 145.745559, 15.097569 ], [ 145.745525, 15.09763 ], [ 145.745481, 15.097707 ], [ 145.745491, 15.097732 ], [ 145.74549, 15.097839 ], [ 145.745474, 15.097969 ], [ 145.745399, 15.098112 ], [ 145.745429, 15.098191 ], [ 145.745477, 15.098394 ], [ 145.74547, 15.098526 ], [ 145.745538, 15.098569 ], [ 145.745419, 15.098944 ], [ 145.745344, 15.099027 ], [ 145.745362, 15.099142 ], [ 145.745253, 15.099451 ], [ 145.745175, 15.099648 ], [ 145.745044, 15.099881 ], [ 145.745007, 15.099934 ], [ 145.744902, 15.099946 ], [ 145.744883, 15.099975 ], [ 145.744914, 15.100042 ], [ 145.744988, 15.100054 ], [ 145.744963, 15.100103 ], [ 145.744723, 15.100513 ], [ 145.744537, 15.100721 ], [ 145.744432, 15.1009 ], [ 145.744419, 15.101002 ], [ 145.744345, 15.101049 ], [ 145.744135, 15.101155 ], [ 145.744091, 15.101238 ], [ 145.743986, 15.10137 ], [ 145.743961, 15.101447 ], [ 145.743849, 15.101542 ], [ 145.743769, 15.10162 ], [ 145.743713, 15.101763 ], [ 145.743721, 15.101909 ], [ 145.743594, 15.102055 ], [ 145.743551, 15.102145 ], [ 145.74347, 15.102192 ], [ 145.743377, 15.102335 ], [ 145.743411, 15.102419 ], [ 145.743386, 15.102515 ], [ 145.743311, 15.102598 ], [ 145.743212, 15.102645 ], [ 145.743156, 15.10271 ], [ 145.743033, 15.102769 ], [ 145.742952, 15.102841 ], [ 145.742915, 15.102936 ], [ 145.742822, 15.103013 ], [ 145.742791, 15.103115 ], [ 145.742766, 15.103222 ], [ 145.74271, 15.103312 ], [ 145.742561, 15.103413 ], [ 145.742536, 15.103514 ], [ 145.742468, 15.103645 ], [ 145.742426, 15.103802 ], [ 145.7423, 15.103848 ], [ 145.74222, 15.103967 ], [ 145.742065, 15.104097 ], [ 145.742009, 15.104169 ], [ 145.741886, 15.104263 ], [ 145.741812, 15.104312 ], [ 145.741681, 15.104472 ], [ 145.741545, 15.104567 ], [ 145.741428, 15.104662 ], [ 145.741308, 15.104709 ], [ 145.741203, 15.104768 ], [ 145.74111, 15.104875 ], [ 145.740986, 15.104887 ], [ 145.740634, 15.105142 ], [ 145.740369, 15.105254 ], [ 145.7401, 15.105351 ], [ 145.739715, 15.10549 ], [ 145.739271, 15.105677 ], [ 145.739271, 15.105678 ], [ 145.738673, 15.10586 ], [ 145.737983, 15.105916 ], [ 145.737883, 15.105935 ], [ 145.737354, 15.105989 ], [ 145.736998, 15.106053 ], [ 145.736853, 15.106084 ], [ 145.736643, 15.106093 ], [ 145.736293, 15.10611 ], [ 145.735754, 15.106094 ], [ 145.735406, 15.106083 ], [ 145.733861, 15.106169 ], [ 145.733423, 15.106303 ], [ 145.733218, 15.106355 ], [ 145.732903, 15.106354 ], [ 145.732698, 15.106332 ], [ 145.732563, 15.106333 ], [ 145.732528, 15.10631 ], [ 145.732523, 15.106136 ], [ 145.732506, 15.10607 ], [ 145.732525, 15.105939 ], [ 145.732463, 15.105786 ], [ 145.732404, 15.105776 ], [ 145.732337, 15.105728 ], [ 145.73227, 15.10561 ], [ 145.73218, 15.105544 ], [ 145.732143, 15.105482 ], [ 145.732127, 15.105455 ], [ 145.732082, 15.105368 ], [ 145.732015, 15.105276 ], [ 145.731871, 15.105236 ], [ 145.731655, 15.105186 ], [ 145.73153, 15.105124 ], [ 145.731417, 15.105119 ], [ 145.731309, 15.105162 ], [ 145.731238, 15.10521 ], [ 145.731035, 15.105299 ], [ 145.730909, 15.105339 ], [ 145.730765, 15.105444 ], [ 145.730748, 15.105494 ], [ 145.73068, 15.105551 ], [ 145.730596, 15.105566 ], [ 145.730511, 15.105591 ], [ 145.730427, 15.105606 ], [ 145.730342, 15.105615 ], [ 145.730258, 15.10563 ], [ 145.730174, 15.10563 ], [ 145.730005, 15.105613 ], [ 145.729921, 15.10562 ], [ 145.729837, 15.105636 ], [ 145.729761, 15.105676 ], [ 145.729693, 15.105733 ], [ 145.729617, 15.105773 ], [ 145.729481, 15.105871 ], [ 145.729397, 15.105895 ], [ 145.729313, 15.105912 ], [ 145.729228, 15.105919 ], [ 145.729144, 15.105951 ], [ 145.729059, 15.105967 ], [ 145.728975, 15.105999 ], [ 145.728637, 15.106095 ], [ 145.728553, 15.106112 ], [ 145.72846, 15.106136 ], [ 145.728376, 15.106152 ], [ 145.728291, 15.106159 ], [ 145.728207, 15.106159 ], [ 145.728038, 15.106207 ], [ 145.727954, 15.10624 ], [ 145.727777, 15.106287 ], [ 145.727692, 15.106295 ], [ 145.727608, 15.106311 ], [ 145.727523, 15.106336 ], [ 145.727354, 15.106367 ], [ 145.72727, 15.1064 ], [ 145.727186, 15.106423 ], [ 145.727101, 15.106439 ], [ 145.727034, 15.106488 ], [ 145.726958, 15.106529 ], [ 145.726873, 15.106561 ], [ 145.726789, 15.106577 ], [ 145.726705, 15.106584 ], [ 145.72662, 15.1066 ], [ 145.726536, 15.106592 ], [ 145.726443, 15.106559 ], [ 145.726352, 15.106521 ], [ 145.726258, 15.106574 ], [ 145.72616, 15.106571 ], [ 145.726135, 15.106589 ], [ 145.726007, 15.106641 ], [ 145.72589, 15.10673 ], [ 145.725829, 15.106729 ], [ 145.725609, 15.106745 ], [ 145.725493, 15.106739 ], [ 145.725371, 15.106767 ], [ 145.725193, 15.10679 ], [ 145.724881, 15.10689 ], [ 145.724613, 15.106847 ], [ 145.724515, 15.106881 ], [ 145.724429, 15.106923 ], [ 145.724417, 15.106976 ], [ 145.724276, 15.107022 ], [ 145.724172, 15.106974 ], [ 145.723971, 15.106962 ], [ 145.723836, 15.106972 ], [ 145.723769, 15.107026 ], [ 145.723786, 15.107127 ], [ 145.723475, 15.107136 ], [ 145.723316, 15.107159 ], [ 145.723291, 15.107237 ], [ 145.723199, 15.107302 ], [ 145.723071, 15.107212 ], [ 145.722913, 15.107151 ], [ 145.722754, 15.107103 ], [ 145.722613, 15.107197 ], [ 145.722533, 15.107292 ], [ 145.722375, 15.107256 ], [ 145.722167, 15.1072 ], [ 145.721947, 15.107206 ], [ 145.721673, 15.107192 ], [ 145.721453, 15.107119 ], [ 145.721386, 15.107161 ], [ 145.721288, 15.107166 ], [ 145.721178, 15.107243 ], [ 145.721018, 15.107337 ], [ 145.720878, 15.107366 ], [ 145.720768, 15.107318 ], [ 145.720665, 15.107252 ], [ 145.72054, 15.107286 ], [ 145.720462, 15.1073 ], [ 145.720329, 15.107327 ], [ 145.720244, 15.107326 ], [ 145.72016, 15.107333 ], [ 145.720076, 15.107349 ], [ 145.719992, 15.10734 ], [ 145.719907, 15.10734 ], [ 145.719823, 15.107332 ], [ 145.719739, 15.107306 ], [ 145.719655, 15.107306 ], [ 145.71957, 15.107289 ], [ 145.719486, 15.107289 ], [ 145.719393, 15.107312 ], [ 145.719309, 15.107321 ], [ 145.719233, 15.107361 ], [ 145.719165, 15.107409 ], [ 145.719081, 15.107441 ], [ 145.718996, 15.107458 ], [ 145.718828, 15.107473 ], [ 145.718761, 15.107424 ], [ 145.718499, 15.107398 ], [ 145.718415, 15.107397 ], [ 145.718331, 15.107421 ], [ 145.718246, 15.107454 ], [ 145.718162, 15.107469 ], [ 145.718078, 15.107469 ], [ 145.717993, 15.107493 ], [ 145.717917, 15.107533 ], [ 145.717866, 15.107598 ], [ 145.717799, 15.107648 ], [ 145.717546, 15.107646 ], [ 145.717453, 15.107662 ], [ 145.717385, 15.107719 ], [ 145.717301, 15.107743 ], [ 145.71725, 15.107809 ], [ 145.717081, 15.10784 ], [ 145.716997, 15.10784 ], [ 145.716912, 15.107822 ], [ 145.716744, 15.107821 ], [ 145.71666, 15.107813 ], [ 145.716575, 15.10782 ], [ 145.716491, 15.10782 ], [ 145.716407, 15.107812 ], [ 145.7164, 15.10781 ], [ 145.716323, 15.107794 ], [ 145.716239, 15.107761 ], [ 145.716172, 15.107712 ], [ 145.716105, 15.107646 ], [ 145.716054, 15.10758 ], [ 145.716038, 15.107499 ], [ 145.716039, 15.107416 ], [ 145.716022, 15.107335 ], [ 145.716023, 15.107171 ], [ 145.715998, 15.107088 ], [ 145.715957, 15.107015 ], [ 145.715898, 15.106949 ], [ 145.715873, 15.106867 ], [ 145.71584, 15.106785 ], [ 145.715798, 15.106711 ], [ 145.715731, 15.106653 ], [ 145.715597, 15.106554 ], [ 145.715556, 15.106448 ], [ 145.715261, 15.106365 ], [ 145.714941, 15.106331 ], [ 145.714924, 15.10633 ], [ 145.71484, 15.106329 ], [ 145.714663, 15.106296 ], [ 145.714579, 15.106295 ], [ 145.714495, 15.106303 ], [ 145.71441, 15.106294 ], [ 145.714326, 15.106277 ], [ 145.714242, 15.106236 ], [ 145.714074, 15.106169 ], [ 145.713998, 15.106119 ], [ 145.713914, 15.106151 ], [ 145.71383, 15.106143 ], [ 145.713771, 15.106077 ], [ 145.713603, 15.106043 ], [ 145.713518, 15.106035 ], [ 145.713434, 15.106019 ], [ 145.713342, 15.106018 ], [ 145.713257, 15.106009 ], [ 145.713089, 15.106008 ], [ 145.713005, 15.105999 ], [ 145.712752, 15.105998 ], [ 145.712668, 15.105981 ], [ 145.712499, 15.105931 ], [ 145.712415, 15.105922 ], [ 145.712162, 15.105921 ], [ 145.71201, 15.106001 ], [ 145.711758, 15.105902 ], [ 145.711674, 15.105885 ], [ 145.711598, 15.105844 ], [ 145.711514, 15.105827 ], [ 145.711337, 15.10576 ], [ 145.711203, 15.105661 ], [ 145.711119, 15.105636 ], [ 145.711035, 15.105603 ], [ 145.710867, 15.105553 ], [ 145.710782, 15.105585 ], [ 145.710723, 15.105651 ], [ 145.710647, 15.105691 ], [ 145.710562, 15.105723 ], [ 145.710478, 15.105715 ], [ 145.710394, 15.105747 ], [ 145.710309, 15.105762 ], [ 145.710251, 15.105696 ], [ 145.710158, 15.105663 ], [ 145.710074, 15.105647 ], [ 145.70999, 15.105639 ], [ 145.709905, 15.105646 ], [ 145.709821, 15.105645 ], [ 145.709652, 15.105677 ], [ 145.709568, 15.10571 ], [ 145.709433, 15.105807 ], [ 145.709348, 15.105807 ], [ 145.709304, 15.105726 ], [ 145.709125, 15.105878 ], [ 145.709103, 15.105931 ], [ 145.709044, 15.105959 ], [ 145.708975, 15.10602 ], [ 145.708935, 15.106044 ], [ 145.708827, 15.106073 ], [ 145.708713, 15.106057 ], [ 145.70864, 15.106033 ], [ 145.708551, 15.106037 ], [ 145.708482, 15.10606 ], [ 145.708457, 15.106094 ], [ 145.708425, 15.106081 ], [ 145.708408, 15.106075 ], [ 145.708389, 15.106046 ], [ 145.708369, 15.105965 ], [ 145.70837, 15.105903 ], [ 145.708281, 15.105926 ], [ 145.708192, 15.105925 ], [ 145.708143, 15.105901 ], [ 145.708222, 15.10583 ], [ 145.708183, 15.105797 ], [ 145.708129, 15.105814 ], [ 145.708094, 15.105877 ], [ 145.708089, 15.10592 ], [ 145.708015, 15.106006 ], [ 145.707891, 15.106048 ], [ 145.707841, 15.106114 ], [ 145.70764, 15.106137 ], [ 145.707581, 15.106113 ], [ 145.707497, 15.106179 ], [ 145.707422, 15.106255 ], [ 145.707343, 15.106265 ], [ 145.707216, 15.106235 ], [ 145.707156, 15.106292 ], [ 145.707111, 15.106393 ], [ 145.707145, 15.10647 ], [ 145.707105, 15.106589 ], [ 145.707006, 15.106707 ], [ 145.707005, 15.106726 ], [ 145.707001, 15.106799 ], [ 145.707014, 15.106928 ], [ 145.707102, 15.107033 ], [ 145.707156, 15.107144 ], [ 145.707096, 15.10723 ], [ 145.707126, 15.107288 ], [ 145.70714, 15.107369 ], [ 145.7072, 15.107488 ], [ 145.707224, 15.107646 ], [ 145.707253, 15.107723 ], [ 145.707381, 15.107819 ], [ 145.707482, 15.108183 ], [ 145.707437, 15.108226 ], [ 145.707407, 15.108313 ], [ 145.707402, 15.108375 ], [ 145.707323, 15.108422 ], [ 145.707248, 15.10855 ], [ 145.707267, 15.108642 ], [ 145.707269, 15.108666 ], [ 145.707277, 15.108747 ], [ 145.707266, 15.108842 ], [ 145.70734, 15.108881 ], [ 145.707319, 15.109015 ], [ 145.707245, 15.109148 ], [ 145.707118, 15.109359 ], [ 145.707113, 15.109415 ], [ 145.707004, 15.109472 ], [ 145.707018, 15.109587 ], [ 145.706998, 15.109682 ], [ 145.706943, 15.109788 ], [ 145.706844, 15.109902 ], [ 145.706799, 15.11004 ], [ 145.706734, 15.110088 ], [ 145.706655, 15.110183 ], [ 145.706635, 15.110269 ], [ 145.706605, 15.110335 ], [ 145.706609, 15.11047 ], [ 145.706549, 15.110555 ], [ 145.706366, 15.110722 ], [ 145.706148, 15.110969 ], [ 145.705964, 15.111203 ], [ 145.70565, 15.11154 ], [ 145.705402, 15.111793 ], [ 145.70506, 15.112097 ], [ 145.704823, 15.112301 ], [ 145.704603, 15.112433 ], [ 145.704128, 15.112809 ], [ 145.703658, 15.113151 ], [ 145.703378, 15.113383 ], [ 145.703267, 15.113469 ], [ 145.703052, 15.11364 ], [ 145.702149, 15.114434 ], [ 145.701991, 15.114523 ], [ 145.701872, 15.1146 ], [ 145.701808, 15.114651 ], [ 145.701743, 15.114676 ], [ 145.701684, 15.114775 ], [ 145.701571, 15.114853 ], [ 145.701486, 15.114913 ], [ 145.701288, 15.11504 ], [ 145.70112, 15.115174 ], [ 145.700986, 15.115293 ], [ 145.700883, 15.11535 ], [ 145.700794, 15.115373 ], [ 145.700715, 15.115405 ], [ 145.700656, 15.115381 ], [ 145.700601, 15.115415 ], [ 145.700557, 15.115434 ], [ 145.700503, 15.1154 ], [ 145.700429, 15.115471 ], [ 145.700335, 15.11549 ], [ 145.700202, 15.115561 ], [ 145.700118, 15.115646 ], [ 145.700036, 15.115665 ], [ 145.700011, 15.115765 ], [ 145.699976, 15.115846 ], [ 145.699976, 15.115899 ], [ 145.699857, 15.115994 ], [ 145.699768, 15.116085 ], [ 145.699684, 15.116117 ], [ 145.69961, 15.116131 ], [ 145.699546, 15.116112 ], [ 145.699497, 15.116083 ], [ 145.699438, 15.116092 ], [ 145.699433, 15.116135 ], [ 145.699437, 15.116188 ], [ 145.699385, 15.116216 ], [ 145.699319, 15.116254 ], [ 145.699264, 15.116292 ], [ 145.69918, 15.116373 ], [ 145.699081, 15.11643 ], [ 145.699012, 15.116477 ], [ 145.698978, 15.116438 ], [ 145.698929, 15.116424 ], [ 145.698899, 15.116472 ], [ 145.698889, 15.116525 ], [ 145.69881, 15.116572 ], [ 145.698736, 15.116537 ], [ 145.698637, 15.116532 ], [ 145.698573, 15.116585 ], [ 145.698563, 15.116637 ], [ 145.698474, 15.116675 ], [ 145.698366, 15.116689 ], [ 145.698238, 15.116721 ], [ 145.698184, 15.116721 ], [ 145.698157, 15.11677 ], [ 145.697937, 15.116884 ], [ 145.697843, 15.116901 ], [ 145.697744, 15.116929 ], [ 145.697709, 15.116989 ], [ 145.697531, 15.117081 ], [ 145.697482, 15.117162 ], [ 145.697455, 15.117217 ], [ 145.697329, 15.117204 ], [ 145.69725, 15.117227 ], [ 145.697182, 15.117292 ], [ 145.697107, 15.117269 ], [ 145.697003, 15.117298 ], [ 145.6969, 15.11734 ], [ 145.69679, 15.117522 ], [ 145.696803, 15.117622 ], [ 145.696736, 15.117679 ], [ 145.696693, 15.117753 ], [ 145.696641, 15.117755 ], [ 145.696582, 15.117773 ], [ 145.696522, 15.117812 ], [ 145.696453, 15.117845 ], [ 145.696389, 15.117892 ], [ 145.696304, 15.117964 ], [ 145.696152, 15.118044 ], [ 145.696084, 15.118094 ], [ 145.696, 15.118117 ], [ 145.695915, 15.118158 ], [ 145.695805, 15.11819 ], [ 145.695721, 15.11819 ], [ 145.695637, 15.118173 ], [ 145.695553, 15.11818 ], [ 145.695384, 15.118229 ], [ 145.695215, 15.118293 ], [ 145.695147, 15.118341 ], [ 145.695054, 15.118366 ], [ 145.69497, 15.118381 ], [ 145.694886, 15.118405 ], [ 145.694801, 15.118422 ], [ 145.694717, 15.118454 ], [ 145.694632, 15.11847 ], [ 145.694548, 15.118502 ], [ 145.694379, 15.118551 ], [ 145.694117, 15.118644 ], [ 145.693621, 15.118748 ], [ 145.693166, 15.118815 ], [ 145.692771, 15.11894 ], [ 145.692346, 15.119017 ], [ 145.692225, 15.119085 ], [ 145.692153, 15.119231 ], [ 145.691982, 15.119222 ], [ 145.691941, 15.11922 ], [ 145.691829, 15.119269 ], [ 145.691557, 15.119169 ], [ 145.691284, 15.119315 ], [ 145.691122, 15.119353 ], [ 145.691, 15.119401 ], [ 145.690838, 15.11942 ], [ 145.690666, 15.119517 ], [ 145.690413, 15.119653 ], [ 145.690251, 15.119613 ], [ 145.690079, 15.11972 ], [ 145.689866, 15.119836 ], [ 145.689734, 15.120032 ], [ 145.689571, 15.120109 ], [ 145.689582, 15.120221 ], [ 145.68959, 15.120306 ], [ 145.689922, 15.120513 ], [ 145.690003, 15.120514 ], [ 145.691063, 15.12111 ], [ 145.69127, 15.121169 ], [ 145.691345, 15.12121 ], [ 145.691429, 15.121243 ], [ 145.691514, 15.121268 ], [ 145.691598, 15.121302 ], [ 145.691673, 15.121343 ], [ 145.69174, 15.121393 ], [ 145.69175, 15.121406 ], [ 145.691841, 15.121524 ], [ 145.691908, 15.121573 ], [ 145.691975, 15.121631 ], [ 145.692051, 15.121673 ], [ 145.692118, 15.121722 ], [ 145.692202, 15.121755 ], [ 145.692277, 15.121797 ], [ 145.692361, 15.12183 ], [ 145.692428, 15.121896 ], [ 145.692462, 15.121978 ], [ 145.692503, 15.12206 ], [ 145.69257, 15.122117 ], [ 145.692637, 15.122183 ], [ 145.692705, 15.122233 ], [ 145.692772, 15.122315 ], [ 145.692838, 15.122365 ], [ 145.693007, 15.122432 ], [ 145.693149, 15.122531 ], [ 145.693225, 15.122572 ], [ 145.693367, 15.122671 ], [ 145.693502, 15.122803 ], [ 145.69356, 15.122869 ], [ 145.693577, 15.12295 ], [ 145.693618, 15.123024 ], [ 145.693652, 15.123107 ], [ 145.693726, 15.123352 ], [ 145.693742, 15.123435 ], [ 145.69375, 15.123516 ], [ 145.693775, 15.123599 ], [ 145.693791, 15.12368 ], [ 145.693807, 15.123844 ], [ 145.693798, 15.123925 ], [ 145.693798, 15.124008 ], [ 145.693806, 15.124089 ], [ 145.693805, 15.124172 ], [ 145.693822, 15.124253 ], [ 145.693787, 15.124417 ], [ 145.693769, 15.124581 ], [ 145.694225, 15.124617 ], [ 145.69426, 15.124448 ], [ 145.69427, 15.1244 ], [ 145.694393, 15.123948 ], [ 145.694439, 15.123782 ], [ 145.69447, 15.12367 ], [ 145.694502, 15.123555 ], [ 145.69468, 15.12294 ], [ 145.694697, 15.122876 ], [ 145.69476, 15.12265 ], [ 145.694919, 15.122152 ], [ 145.69505, 15.12189 ], [ 145.6952, 15.12168 ], [ 145.6956, 15.121376 ], [ 145.696028, 15.121076 ], [ 145.696239, 15.120902 ], [ 145.69648, 15.12073 ], [ 145.696619, 15.120869 ], [ 145.69673, 15.12098 ], [ 145.69679, 15.12112 ], [ 145.69686, 15.12134 ], [ 145.696862, 15.121392 ], [ 145.69687, 15.12159 ], [ 145.69687, 15.121861 ], [ 145.69687, 15.12214 ], [ 145.69689, 15.12255 ], [ 145.696905, 15.122676 ], [ 145.696938, 15.122946 ], [ 145.696942, 15.122984 ], [ 145.69695, 15.12305 ], [ 145.696964, 15.123099 ], [ 145.696976, 15.123137 ], [ 145.697017, 15.123273 ], [ 145.69704, 15.12335 ], [ 145.69713, 15.12362 ], [ 145.697161, 15.123675 ], [ 145.697231, 15.1238 ], [ 145.69727, 15.12387 ], [ 145.69735, 15.123966 ], [ 145.69742, 15.12405 ], [ 145.69763, 15.12421 ], [ 145.697843, 15.124324 ], [ 145.69791, 15.12436 ], [ 145.69803, 15.12441 ], [ 145.69856, 15.12465 ], [ 145.69866, 15.124689 ], [ 145.6994, 15.12498 ], [ 145.69981, 15.12513 ], [ 145.70009, 15.1252 ], [ 145.70033, 15.12524 ], [ 145.700633, 15.125271 ], [ 145.700793, 15.125288 ], [ 145.7009, 15.1253 ], [ 145.70132, 15.12534 ], [ 145.701467, 15.125355 ], [ 145.701652, 15.125373 ], [ 145.70181, 15.12539 ], [ 145.701908, 15.125401 ], [ 145.702056, 15.125419 ], [ 145.702194, 15.125435 ], [ 145.702611, 15.125483 ], [ 145.70275, 15.1255 ], [ 145.702942, 15.125528 ], [ 145.70295, 15.12553 ], [ 145.70315, 15.12561 ], [ 145.703472, 15.125775 ], [ 145.70348, 15.12578 ], [ 145.70363, 15.12589 ], [ 145.7039, 15.12607 ], [ 145.703905, 15.126073 ], [ 145.704102, 15.126187 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "69", "COUNTYFP10": "120", "TRACTCE10": "990000", "GEOID10": "69120990000", "NAME10": "9900", "NAMELSAD10": "Census Tract 9900", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 631524508, "INTPTLAT10": "+14.9367828", "INTPTLON10": "+145.6010200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.513219, 15.0 ], [ 145.51323, 15.001336 ], [ 145.513604, 15.026829 ], [ 145.518317, 15.056279 ], [ 145.518489, 15.056621 ], [ 145.53396, 15.087254 ], [ 145.535022, 15.089214 ], [ 145.535084, 15.089279 ], [ 145.572603, 15.125018 ], [ 145.624933, 15.110886 ], [ 145.626893, 15.110369 ], [ 145.64264, 15.106934 ], [ 145.654825, 15.099157 ], [ 145.655521, 15.098764 ], [ 145.655915, 15.098144 ], [ 145.663415, 15.084771 ], [ 145.663741, 15.084401 ], [ 145.706383, 15.051822 ], [ 145.70731, 15.051187 ], [ 145.744157, 15.022906 ], [ 145.743481, 15.021336 ], [ 145.743102, 15.018749 ], [ 145.743075, 15.018454 ], [ 145.742687, 15.014215 ], [ 145.742859, 15.005768 ], [ 145.7429, 15.004616 ], [ 145.743068, 15.0 ], [ 145.743224, 15.0 ], [ 145.746205, 14.991736 ], [ 145.74576, 14.990352 ], [ 145.746045, 14.988953 ], [ 145.746901, 14.984756 ], [ 145.747187, 14.983358 ], [ 145.747581, 14.981425 ], [ 145.747747, 14.971215 ], [ 145.743983, 14.959254 ], [ 145.741507, 14.951383 ], [ 145.730764, 14.917296 ], [ 145.710913, 14.894569 ], [ 145.709323, 14.892749 ], [ 145.701591, 14.882192 ], [ 145.695822, 14.875 ], [ 145.694674, 14.87313 ], [ 145.683742, 14.864229 ], [ 145.671216, 14.859997 ], [ 145.657076, 14.858262 ], [ 145.653126, 14.857366 ], [ 145.649103, 14.849643 ], [ 145.64137, 14.832333 ], [ 145.632694, 14.819066 ], [ 145.626602, 14.813532 ], [ 145.625, 14.811537 ], [ 145.616469, 14.800842 ], [ 145.591717, 14.781431 ], [ 145.562063, 14.773797 ], [ 145.532625, 14.772689 ], [ 145.507726, 14.779375 ], [ 145.503244, 14.784101 ], [ 145.502791, 14.78458 ], [ 145.502232, 14.785189 ], [ 145.500558, 14.787015 ], [ 145.5, 14.787625 ], [ 145.493934, 14.79023 ], [ 145.482681, 14.799207 ], [ 145.472556, 14.819145 ], [ 145.467848, 14.837085 ], [ 145.468222, 14.853345 ], [ 145.470196, 14.864877 ], [ 145.474402, 14.875 ], [ 145.475362, 14.876991 ], [ 145.476073, 14.878442 ], [ 145.489352, 14.8987 ], [ 145.5, 14.90609 ], [ 145.502437, 14.907421 ], [ 145.502426, 14.907341 ], [ 145.527342, 14.919441 ], [ 145.527351, 14.91945 ], [ 145.540759, 14.926599 ], [ 145.55224, 14.932721 ], [ 145.562891, 14.934284 ], [ 145.558065, 14.93765 ], [ 145.544984, 14.946805 ], [ 145.541014, 14.949585 ], [ 145.534841, 14.957907 ], [ 145.524765, 14.971455 ], [ 145.515686, 14.991283 ], [ 145.515593, 14.991486 ], [ 145.513219, 15.0 ] ], [ [ 145.532601, 14.834707 ], [ 145.532582, 14.834635 ], [ 145.532569, 14.834562 ], [ 145.532574, 14.834472 ], [ 145.532602, 14.834357 ], [ 145.532615, 14.834317 ], [ 145.532622, 14.834231 ], [ 145.532637, 14.834158 ], [ 145.532648, 14.834099 ], [ 145.532615, 14.834032 ], [ 145.532529, 14.833953 ], [ 145.532522, 14.833856 ], [ 145.532509, 14.833794 ], [ 145.532628, 14.833781 ], [ 145.532668, 14.833754 ], [ 145.532728, 14.833761 ], [ 145.532761, 14.833776 ], [ 145.532814, 14.83382 ], [ 145.53284, 14.833907 ], [ 145.532834, 14.833982 ], [ 145.532859, 14.83405 ], [ 145.532871, 14.834086 ], [ 145.532894, 14.834148 ], [ 145.532988, 14.834224 ], [ 145.533073, 14.834292 ], [ 145.533136, 14.834342 ], [ 145.53316, 14.834361 ], [ 145.533198, 14.834425 ], [ 145.533198, 14.834476 ], [ 145.533257, 14.834569 ], [ 145.533319, 14.834627 ], [ 145.53341, 14.834602 ], [ 145.533496, 14.834608 ], [ 145.533555, 14.834608 ], [ 145.533585, 14.834653 ], [ 145.533635, 14.834714 ], [ 145.533675, 14.8348 ], [ 145.533686, 14.834938 ], [ 145.533718, 14.835026 ], [ 145.533675, 14.835125 ], [ 145.533628, 14.835191 ], [ 145.533588, 14.835244 ], [ 145.533509, 14.835277 ], [ 145.533452, 14.835291 ], [ 145.533363, 14.835317 ], [ 145.533231, 14.83531 ], [ 145.533098, 14.83531 ], [ 145.532986, 14.835297 ], [ 145.532847, 14.835264 ], [ 145.532681, 14.835212 ], [ 145.532615, 14.835184 ], [ 145.532559, 14.835087 ], [ 145.532498, 14.835036 ], [ 145.532483, 14.834979 ], [ 145.532522, 14.834946 ], [ 145.532536, 14.834893 ], [ 145.532602, 14.834868 ], [ 145.532636, 14.834819 ], [ 145.532708, 14.834786 ], [ 145.532748, 14.834786 ], [ 145.532827, 14.83482 ], [ 145.532893, 14.834814 ], [ 145.532947, 14.834786 ], [ 145.532926, 14.834741 ], [ 145.532841, 14.834707 ], [ 145.532734, 14.834707 ], [ 145.532661, 14.834707 ], [ 145.532601, 14.834707 ] ], [ [ 145.624457, 14.951634 ], [ 145.624518, 14.951726 ], [ 145.624569, 14.951802 ], [ 145.624578, 14.951945 ], [ 145.624553, 14.952088 ], [ 145.624484, 14.952181 ], [ 145.624346, 14.952366 ], [ 145.624166, 14.952484 ], [ 145.624028, 14.952518 ], [ 145.624026, 14.952524 ], [ 145.623977, 14.952745 ], [ 145.623882, 14.952973 ], [ 145.62377, 14.953082 ], [ 145.623512, 14.953065 ], [ 145.623348, 14.953049 ], [ 145.623141, 14.952998 ], [ 145.622995, 14.95299 ], [ 145.6229, 14.952973 ], [ 145.622848, 14.952872 ], [ 145.622779, 14.952771 ], [ 145.622684, 14.952704 ], [ 145.622581, 14.952704 ], [ 145.622512, 14.952645 ], [ 145.622486, 14.952544 ], [ 145.622641, 14.952393 ], [ 145.623002, 14.952072 ], [ 145.6232, 14.951769 ], [ 145.623423, 14.951525 ], [ 145.623472, 14.951505 ], [ 145.623767, 14.95139 ], [ 145.62406, 14.951348 ], [ 145.624181, 14.951306 ], [ 145.624327, 14.951364 ], [ 145.624396, 14.951449 ], [ 145.624457, 14.951634 ] ], [ [ 145.575952, 14.865335 ], [ 145.575837, 14.865429 ], [ 145.575678, 14.865488 ], [ 145.575571, 14.865548 ], [ 145.575403, 14.865555 ], [ 145.575191, 14.865588 ], [ 145.575112, 14.865614 ], [ 145.574978, 14.865707 ], [ 145.57481, 14.865775 ], [ 145.574659, 14.865851 ], [ 145.574526, 14.865928 ], [ 145.574411, 14.865979 ], [ 145.574287, 14.866012 ], [ 145.574155, 14.866029 ], [ 145.573996, 14.865993 ], [ 145.573863, 14.866044 ], [ 145.573774, 14.866104 ], [ 145.573633, 14.866137 ], [ 145.5735, 14.866188 ], [ 145.573375, 14.86629 ], [ 145.573251, 14.866401 ], [ 145.573145, 14.866469 ], [ 145.572959, 14.866485 ], [ 145.572933, 14.866391 ], [ 145.57288, 14.866339 ], [ 145.572881, 14.866218 ], [ 145.572935, 14.866159 ], [ 145.57305, 14.866065 ], [ 145.573121, 14.865971 ], [ 145.573015, 14.865962 ], [ 145.572963, 14.865875 ], [ 145.572999, 14.865807 ], [ 145.57307, 14.865756 ], [ 145.572999, 14.865747 ], [ 145.57291, 14.865832 ], [ 145.572822, 14.865866 ], [ 145.572627, 14.865873 ], [ 145.572415, 14.865872 ], [ 145.572327, 14.865854 ], [ 145.572177, 14.865845 ], [ 145.572036, 14.865809 ], [ 145.571983, 14.865706 ], [ 145.571975, 14.865594 ], [ 145.571923, 14.865516 ], [ 145.571781, 14.865516 ], [ 145.571737, 14.86549 ], [ 145.571692, 14.865412 ], [ 145.571568, 14.865295 ], [ 145.571422, 14.865225 ], [ 145.571396, 14.865088 ], [ 145.571369, 14.865009 ], [ 145.571266, 14.865019 ], [ 145.571158, 14.864981 ], [ 145.571022, 14.864975 ], [ 145.570938, 14.864945 ], [ 145.57086, 14.864969 ], [ 145.570795, 14.864969 ], [ 145.570663, 14.864933 ], [ 145.570531, 14.864923 ], [ 145.57038, 14.864931 ], [ 145.570381, 14.864854 ], [ 145.570319, 14.864802 ], [ 145.570187, 14.864732 ], [ 145.570117, 14.864689 ], [ 145.570073, 14.864594 ], [ 145.570003, 14.864508 ], [ 145.569924, 14.86443 ], [ 145.569783, 14.864369 ], [ 145.569669, 14.864308 ], [ 145.569546, 14.864264 ], [ 145.569351, 14.864289 ], [ 145.569342, 14.864366 ], [ 145.569271, 14.864443 ], [ 145.569094, 14.864373 ], [ 145.568979, 14.864407 ], [ 145.568855, 14.864432 ], [ 145.568581, 14.86443 ], [ 145.568493, 14.864438 ], [ 145.56844, 14.864464 ], [ 145.568308, 14.864394 ], [ 145.568193, 14.86435 ], [ 145.568079, 14.864324 ], [ 145.567982, 14.864297 ], [ 145.567876, 14.864185 ], [ 145.567771, 14.864107 ], [ 145.567753, 14.864141 ], [ 145.567646, 14.864201 ], [ 145.567646, 14.864287 ], [ 145.567637, 14.864338 ], [ 145.567487, 14.864277 ], [ 145.567381, 14.864268 ], [ 145.56731, 14.864268 ], [ 145.567318, 14.864379 ], [ 145.56723, 14.864387 ], [ 145.567226, 14.864386 ], [ 145.56708, 14.864361 ], [ 145.567027, 14.864395 ], [ 145.566912, 14.864394 ], [ 145.566806, 14.86435 ], [ 145.566709, 14.864298 ], [ 145.56671, 14.864238 ], [ 145.566754, 14.86417 ], [ 145.566773, 14.864075 ], [ 145.566632, 14.863954 ], [ 145.566571, 14.863885 ], [ 145.566527, 14.863824 ], [ 145.56658, 14.863747 ], [ 145.566546, 14.863644 ], [ 145.566502, 14.863558 ], [ 145.56637, 14.863514 ], [ 145.566291, 14.86341 ], [ 145.566239, 14.863281 ], [ 145.566169, 14.863212 ], [ 145.566054, 14.863125 ], [ 145.56594, 14.863056 ], [ 145.565871, 14.862875 ], [ 145.565624, 14.862684 ], [ 145.565554, 14.862624 ], [ 145.565439, 14.862606 ], [ 145.565387, 14.862537 ], [ 145.565405, 14.862477 ], [ 145.565326, 14.862399 ], [ 145.565273, 14.862364 ], [ 145.565326, 14.862322 ], [ 145.565336, 14.862262 ], [ 145.565248, 14.862201 ], [ 145.565133, 14.862114 ], [ 145.565037, 14.862011 ], [ 145.564922, 14.861958 ], [ 145.564852, 14.861941 ], [ 145.564799, 14.861992 ], [ 145.564719, 14.861983 ], [ 145.564649, 14.861888 ], [ 145.564411, 14.861783 ], [ 145.564288, 14.861688 ], [ 145.564147, 14.861635 ], [ 145.564006, 14.8616 ], [ 145.56382, 14.861651 ], [ 145.563643, 14.86165 ], [ 145.563485, 14.861588 ], [ 145.563335, 14.861553 ], [ 145.563167, 14.8615 ], [ 145.562982, 14.861465 ], [ 145.562824, 14.861395 ], [ 145.562647, 14.861394 ], [ 145.562444, 14.861341 ], [ 145.562232, 14.861306 ], [ 145.562012, 14.861227 ], [ 145.561862, 14.861157 ], [ 145.561677, 14.861096 ], [ 145.561492, 14.861043 ], [ 145.561086, 14.860963 ], [ 145.560954, 14.860859 ], [ 145.560734, 14.860798 ], [ 145.560566, 14.860805 ], [ 145.560398, 14.86083 ], [ 145.560282, 14.860907 ], [ 145.560141, 14.860957 ], [ 145.559964, 14.860913 ], [ 145.5597, 14.860791 ], [ 145.55948, 14.86067 ], [ 145.559383, 14.860592 ], [ 145.559233, 14.860531 ], [ 145.559181, 14.860453 ], [ 145.559005, 14.8604 ], [ 145.558846, 14.860279 ], [ 145.55875, 14.860227 ], [ 145.558572, 14.860303 ], [ 145.558386, 14.860362 ], [ 145.558289, 14.860336 ], [ 145.558219, 14.860232 ], [ 145.558087, 14.860205 ], [ 145.557981, 14.860205 ], [ 145.557795, 14.860221 ], [ 145.557717, 14.860126 ], [ 145.557593, 14.860116 ], [ 145.557461, 14.86003 ], [ 145.557338, 14.859977 ], [ 145.557232, 14.859899 ], [ 145.557118, 14.859856 ], [ 145.557003, 14.859778 ], [ 145.556933, 14.859751 ], [ 145.556889, 14.859682 ], [ 145.556704, 14.859604 ], [ 145.556554, 14.859534 ], [ 145.556396, 14.859413 ], [ 145.5563, 14.859309 ], [ 145.556141, 14.859205 ], [ 145.555851, 14.858945 ], [ 145.555781, 14.858842 ], [ 145.555685, 14.858781 ], [ 145.55565, 14.858678 ], [ 145.555536, 14.858625 ], [ 145.555439, 14.858556 ], [ 145.555138, 14.858554 ], [ 145.555077, 14.858459 ], [ 145.554919, 14.858364 ], [ 145.554663, 14.85825 ], [ 145.554522, 14.858207 ], [ 145.554381, 14.85824 ], [ 145.554257, 14.858248 ], [ 145.554134, 14.858204 ], [ 145.554019, 14.858186 ], [ 145.553852, 14.858108 ], [ 145.553755, 14.858073 ], [ 145.553658, 14.858047 ], [ 145.553658, 14.857969 ], [ 145.553544, 14.857917 ], [ 145.553455, 14.857899 ], [ 145.553226, 14.85782 ], [ 145.553068, 14.857751 ], [ 145.552953, 14.85775 ], [ 145.552839, 14.857663 ], [ 145.552724, 14.857663 ], [ 145.552671, 14.857602 ], [ 145.552539, 14.85749 ], [ 145.552399, 14.857411 ], [ 145.552152, 14.857324 ], [ 145.551949, 14.857219 ], [ 145.551843, 14.857193 ], [ 145.551685, 14.857106 ], [ 145.551562, 14.857002 ], [ 145.55143, 14.856898 ], [ 145.551228, 14.856777 ], [ 145.551158, 14.85669 ], [ 145.550972, 14.856638 ], [ 145.550797, 14.856525 ], [ 145.55062, 14.856446 ], [ 145.550453, 14.856385 ], [ 145.550347, 14.856333 ], [ 145.549967, 14.856391 ], [ 145.549835, 14.856321 ], [ 145.549712, 14.856277 ], [ 145.54957, 14.856276 ], [ 145.549279, 14.856214 ], [ 145.549111, 14.856213 ], [ 145.548971, 14.856101 ], [ 145.548803, 14.856022 ], [ 145.548618, 14.855978 ], [ 145.548477, 14.85596 ], [ 145.548238, 14.85595 ], [ 145.547973, 14.855948 ], [ 145.547877, 14.85587 ], [ 145.547815, 14.855844 ], [ 145.547788, 14.855956 ], [ 145.547664, 14.855929 ], [ 145.547558, 14.855894 ], [ 145.547338, 14.855901 ], [ 145.547161, 14.855883 ], [ 145.54709, 14.855883 ], [ 145.546985, 14.85583 ], [ 145.546896, 14.855804 ], [ 145.54672, 14.855734 ], [ 145.546632, 14.855682 ], [ 145.546526, 14.855656 ], [ 145.546447, 14.855586 ], [ 145.546342, 14.855534 ], [ 145.546245, 14.855439 ], [ 145.546166, 14.855404 ], [ 145.545972, 14.855386 ], [ 145.545848, 14.855351 ], [ 145.545716, 14.855333 ], [ 145.545601, 14.85528 ], [ 145.545469, 14.855288 ], [ 145.545363, 14.855287 ], [ 145.545222, 14.855261 ], [ 145.545116, 14.855234 ], [ 145.545028, 14.855131 ], [ 145.54502, 14.855036 ], [ 145.544985, 14.854941 ], [ 145.544897, 14.854872 ], [ 145.544836, 14.854837 ], [ 145.544801, 14.854768 ], [ 145.544704, 14.854699 ], [ 145.544616, 14.854698 ], [ 145.544493, 14.854629 ], [ 145.544325, 14.85455 ], [ 145.544211, 14.854515 ], [ 145.544123, 14.854429 ], [ 145.543981, 14.854428 ], [ 145.543858, 14.854358 ], [ 145.543805, 14.854332 ], [ 145.543779, 14.854255 ], [ 145.543665, 14.854151 ], [ 145.543463, 14.854038 ], [ 145.543366, 14.85396 ], [ 145.543137, 14.853959 ], [ 145.543066, 14.853907 ], [ 145.542979, 14.853811 ], [ 145.542802, 14.853733 ], [ 145.542723, 14.853715 ], [ 145.542635, 14.85368 ], [ 145.542485, 14.853645 ], [ 145.542406, 14.853584 ], [ 145.542159, 14.85348 ], [ 145.54208, 14.853453 ], [ 145.541948, 14.853307 ], [ 145.541825, 14.853306 ], [ 145.541516, 14.853209 ], [ 145.541455, 14.853132 ], [ 145.541384, 14.853105 ], [ 145.54119, 14.853053 ], [ 145.541067, 14.853009 ], [ 145.540873, 14.852982 ], [ 145.540678, 14.852981 ], [ 145.540564, 14.85292 ], [ 145.54038, 14.852738 ], [ 145.540407, 14.852661 ], [ 145.540416, 14.852609 ], [ 145.540328, 14.85254 ], [ 145.540346, 14.852454 ], [ 145.540338, 14.852385 ], [ 145.540321, 14.852308 ], [ 145.540259, 14.852222 ], [ 145.540172, 14.852118 ], [ 145.540181, 14.852024 ], [ 145.540164, 14.851912 ], [ 145.54005, 14.851834 ], [ 145.539953, 14.851773 ], [ 145.539865, 14.851678 ], [ 145.539796, 14.851557 ], [ 145.539762, 14.851351 ], [ 145.539691, 14.85129 ], [ 145.539617, 14.851254 ], [ 145.539487, 14.851172 ], [ 145.539376, 14.851063 ], [ 145.539303, 14.850963 ], [ 145.539322, 14.850837 ], [ 145.539304, 14.850737 ], [ 145.539277, 14.850674 ], [ 145.539249, 14.850665 ], [ 145.539231, 14.850574 ], [ 145.539138, 14.850519 ], [ 145.539018, 14.850428 ], [ 145.539003, 14.85041 ], [ 145.538861, 14.850237 ], [ 145.538853, 14.850138 ], [ 145.538825, 14.850092 ], [ 145.538788, 14.850083 ], [ 145.538761, 14.849993 ], [ 145.538697, 14.849866 ], [ 145.538698, 14.849748 ], [ 145.538689, 14.849658 ], [ 145.538643, 14.849576 ], [ 145.538579, 14.84944 ], [ 145.538552, 14.84934 ], [ 145.538589, 14.849295 ], [ 145.53859, 14.849223 ], [ 145.538543, 14.849169 ], [ 145.538489, 14.849033 ], [ 145.538462, 14.848888 ], [ 145.538398, 14.848707 ], [ 145.538342, 14.848679 ], [ 145.538334, 14.848589 ], [ 145.538287, 14.84857 ], [ 145.538205, 14.848416 ], [ 145.538131, 14.848325 ], [ 145.538057, 14.848244 ], [ 145.53803, 14.848126 ], [ 145.537984, 14.848017 ], [ 145.537938, 14.847926 ], [ 145.537921, 14.8478 ], [ 145.537921, 14.847727 ], [ 145.537959, 14.847646 ], [ 145.537941, 14.847583 ], [ 145.53782, 14.847564 ], [ 145.537728, 14.847491 ], [ 145.537654, 14.847464 ], [ 145.537691, 14.847364 ], [ 145.537785, 14.84732 ], [ 145.537859, 14.847302 ], [ 145.537971, 14.847249 ], [ 145.537971, 14.847176 ], [ 145.53786, 14.847149 ], [ 145.537842, 14.847076 ], [ 145.537685, 14.846876 ], [ 145.537686, 14.846786 ], [ 145.537733, 14.846714 ], [ 145.537669, 14.846605 ], [ 145.537743, 14.846551 ], [ 145.537697, 14.846461 ], [ 145.537642, 14.846388 ], [ 145.537498, 14.846352 ], [ 145.537455, 14.846232 ], [ 145.537616, 14.846189 ], [ 145.53757, 14.846071 ], [ 145.537515, 14.845989 ], [ 145.537478, 14.845908 ], [ 145.537414, 14.845817 ], [ 145.537266, 14.845672 ], [ 145.537257, 14.845563 ], [ 145.537295, 14.845491 ], [ 145.537397, 14.845464 ], [ 145.537434, 14.845501 ], [ 145.537481, 14.845483 ], [ 145.537528, 14.845474 ], [ 145.537509, 14.845411 ], [ 145.537454, 14.845338 ], [ 145.537436, 14.845266 ], [ 145.53739, 14.845193 ], [ 145.537353, 14.845112 ], [ 145.537382, 14.845076 ], [ 145.537383, 14.844904 ], [ 145.537421, 14.844787 ], [ 145.537458, 14.844733 ], [ 145.537533, 14.844679 ], [ 145.537543, 14.84458 ], [ 145.537534, 14.844489 ], [ 145.537489, 14.844362 ], [ 145.537489, 14.844299 ], [ 145.53748, 14.844227 ], [ 145.537564, 14.844191 ], [ 145.537712, 14.844237 ], [ 145.537749, 14.844283 ], [ 145.537815, 14.844238 ], [ 145.537806, 14.844184 ], [ 145.537806, 14.844075 ], [ 145.537761, 14.843957 ], [ 145.537734, 14.843858 ], [ 145.537725, 14.843776 ], [ 145.537734, 14.843758 ], [ 145.537855, 14.84375 ], [ 145.537976, 14.843733 ], [ 145.53806, 14.843742 ], [ 145.538143, 14.843716 ], [ 145.538209, 14.843671 ], [ 145.538191, 14.843553 ], [ 145.538164, 14.843472 ], [ 145.538183, 14.843372 ], [ 145.53822, 14.843318 ], [ 145.538276, 14.843319 ], [ 145.538332, 14.843292 ], [ 145.538332, 14.843238 ], [ 145.538389, 14.843175 ], [ 145.53839, 14.843012 ], [ 145.538427, 14.842931 ], [ 145.538456, 14.842886 ], [ 145.538605, 14.842815 ], [ 145.538698, 14.842698 ], [ 145.538839, 14.842491 ], [ 145.538943, 14.842275 ], [ 145.53899, 14.842139 ], [ 145.539056, 14.842076 ], [ 145.539158, 14.842077 ], [ 145.539223, 14.842114 ], [ 145.539177, 14.842023 ], [ 145.539205, 14.841951 ], [ 145.539289, 14.841897 ], [ 145.539318, 14.841807 ], [ 145.539355, 14.841753 ], [ 145.539457, 14.841772 ], [ 145.539569, 14.841718 ], [ 145.539653, 14.841683 ], [ 145.539727, 14.841701 ], [ 145.539867, 14.841702 ], [ 145.540006, 14.841676 ], [ 145.540164, 14.841668 ], [ 145.540332, 14.841651 ], [ 145.540536, 14.841616 ], [ 145.540443, 14.841597 ], [ 145.540416, 14.841516 ], [ 145.540351, 14.84147 ], [ 145.54037, 14.841407 ], [ 145.540361, 14.841353 ], [ 145.540427, 14.841308 ], [ 145.54051, 14.84139 ], [ 145.540631, 14.84139 ], [ 145.540641, 14.8413 ], [ 145.540734, 14.841237 ], [ 145.540921, 14.841085 ], [ 145.540967, 14.841149 ], [ 145.540967, 14.841185 ], [ 145.54132, 14.841069 ], [ 145.541366, 14.84116 ], [ 145.541403, 14.841187 ], [ 145.541487, 14.841197 ], [ 145.541441, 14.841124 ], [ 145.54146, 14.841061 ], [ 145.541525, 14.84108 ], [ 145.541552, 14.841116 ], [ 145.541571, 14.841189 ], [ 145.541691, 14.841189 ], [ 145.541756, 14.841244 ], [ 145.541849, 14.84129 ], [ 145.541904, 14.841326 ], [ 145.541959, 14.841435 ], [ 145.542052, 14.841436 ], [ 145.541978, 14.841336 ], [ 145.54197, 14.841227 ], [ 145.541924, 14.841164 ], [ 145.541924, 14.8411 ], [ 145.54199, 14.841038 ], [ 145.542018, 14.840947 ], [ 145.542112, 14.840885 ], [ 145.542298, 14.840804 ], [ 145.542298, 14.840741 ], [ 145.542382, 14.840687 ], [ 145.542494, 14.840715 ], [ 145.542633, 14.84068 ], [ 145.542775, 14.840697 ], [ 145.542809, 14.840705 ], [ 145.542854, 14.840715 ], [ 145.542952, 14.840681 ], [ 145.54304, 14.840656 ], [ 145.543146, 14.840615 ], [ 145.543265, 14.840536 ], [ 145.543347, 14.840548 ], [ 145.543429, 14.840617 ], [ 145.543393, 14.840685 ], [ 145.543428, 14.840732 ], [ 145.543558, 14.840652 ], [ 145.5437, 14.84063 ], [ 145.543806, 14.840631 ], [ 145.543947, 14.840655 ], [ 145.544041, 14.840655 ], [ 145.544112, 14.840724 ], [ 145.54417, 14.840748 ], [ 145.544288, 14.840714 ], [ 145.544312, 14.840645 ], [ 145.544407, 14.840554 ], [ 145.544478, 14.840509 ], [ 145.544584, 14.84059 ], [ 145.544666, 14.840625 ], [ 145.544843, 14.840603 ], [ 145.544937, 14.840604 ], [ 145.545208, 14.840628 ], [ 145.5454, 14.840456 ], [ 145.545489, 14.840448 ], [ 145.545576, 14.840509 ], [ 145.545903, 14.840554 ], [ 145.54608, 14.840529 ], [ 145.546309, 14.840599 ], [ 145.546371, 14.840574 ], [ 145.546433, 14.840626 ], [ 145.546485, 14.840686 ], [ 145.54652, 14.840712 ], [ 145.546626, 14.840687 ], [ 145.546776, 14.840783 ], [ 145.546856, 14.840723 ], [ 145.546935, 14.840758 ], [ 145.547015, 14.840707 ], [ 145.547192, 14.840708 ], [ 145.547235, 14.840872 ], [ 145.547323, 14.840864 ], [ 145.547456, 14.840864 ], [ 145.547499, 14.840942 ], [ 145.547588, 14.840925 ], [ 145.547738, 14.840918 ], [ 145.547844, 14.840918 ], [ 145.547915, 14.840884 ], [ 145.547958, 14.841031 ], [ 145.548037, 14.841083 ], [ 145.548152, 14.841084 ], [ 145.548231, 14.84117 ], [ 145.548328, 14.841196 ], [ 145.548433, 14.841317 ], [ 145.548539, 14.841352 ], [ 145.548618, 14.841387 ], [ 145.548679, 14.841499 ], [ 145.548794, 14.841552 ], [ 145.5489, 14.841552 ], [ 145.549033, 14.841476 ], [ 145.549157, 14.841434 ], [ 145.549236, 14.84152 ], [ 145.549138, 14.841588 ], [ 145.549217, 14.841649 ], [ 145.549279, 14.841709 ], [ 145.549411, 14.841693 ], [ 145.54942, 14.84177 ], [ 145.549429, 14.841779 ], [ 145.54949, 14.84184 ], [ 145.549569, 14.841857 ], [ 145.549675, 14.841953 ], [ 145.549904, 14.841971 ], [ 145.549957, 14.842057 ], [ 145.550195, 14.842119 ], [ 145.550318, 14.842163 ], [ 145.550503, 14.84225 ], [ 145.550696, 14.842389 ], [ 145.550829, 14.842355 ], [ 145.550979, 14.842347 ], [ 145.551086, 14.842219 ], [ 145.551219, 14.842254 ], [ 145.551333, 14.842238 ], [ 145.551519, 14.842239 ], [ 145.55158, 14.842291 ], [ 145.551695, 14.842335 ], [ 145.551836, 14.842396 ], [ 145.551906, 14.842491 ], [ 145.552011, 14.842586 ], [ 145.5521, 14.842501 ], [ 145.552197, 14.842579 ], [ 145.552285, 14.842605 ], [ 145.552382, 14.842605 ], [ 145.552497, 14.842684 ], [ 145.552568, 14.842632 ], [ 145.552674, 14.842582 ], [ 145.552824, 14.842582 ], [ 145.552814, 14.842729 ], [ 145.552885, 14.842798 ], [ 145.552964, 14.842867 ], [ 145.553087, 14.842919 ], [ 145.55314, 14.842842 ], [ 145.553079, 14.84273 ], [ 145.553062, 14.842636 ], [ 145.553142, 14.842645 ], [ 145.55323, 14.842697 ], [ 145.553264, 14.842895 ], [ 145.553395, 14.843024 ], [ 145.553483, 14.843137 ], [ 145.553589, 14.843111 ], [ 145.553739, 14.843112 ], [ 145.553882, 14.842916 ], [ 145.554007, 14.842927 ], [ 145.55405, 14.842969 ], [ 145.554066, 14.842979 ], [ 145.554075, 14.842911 ], [ 145.55406, 14.842846 ], [ 145.554005, 14.842849 ], [ 145.553966, 14.84281 ], [ 145.554009, 14.842753 ], [ 145.554075, 14.842749 ], [ 145.554141, 14.842788 ], [ 145.554183, 14.842855 ], [ 145.554149, 14.842952 ], [ 145.554105, 14.84298 ], [ 145.554082, 14.843004 ], [ 145.554148, 14.843078 ], [ 145.554248, 14.843 ], [ 145.554323, 14.842987 ], [ 145.554438, 14.842988 ], [ 145.554411, 14.843099 ], [ 145.554508, 14.843109 ], [ 145.554613, 14.84329 ], [ 145.554639, 14.843376 ], [ 145.554744, 14.843454 ], [ 145.554814, 14.84354 ], [ 145.554885, 14.843592 ], [ 145.55507, 14.843645 ], [ 145.555184, 14.843714 ], [ 145.555298, 14.843818 ], [ 145.555395, 14.843922 ], [ 145.555509, 14.844009 ], [ 145.555695, 14.84401 ], [ 145.555766, 14.843959 ], [ 145.555881, 14.843839 ], [ 145.555891, 14.843702 ], [ 145.555812, 14.843615 ], [ 145.555918, 14.843599 ], [ 145.556006, 14.843599 ], [ 145.556121, 14.843677 ], [ 145.556032, 14.843797 ], [ 145.556164, 14.843807 ], [ 145.556226, 14.843747 ], [ 145.556262, 14.843678 ], [ 145.556359, 14.843748 ], [ 145.556305, 14.843825 ], [ 145.556305, 14.843919 ], [ 145.556331, 14.844005 ], [ 145.556445, 14.844006 ], [ 145.556578, 14.844015 ], [ 145.556649, 14.843999 ], [ 145.55679, 14.844068 ], [ 145.55694, 14.844052 ], [ 145.557073, 14.84401 ], [ 145.557134, 14.844019 ], [ 145.557091, 14.843933 ], [ 145.557197, 14.843899 ], [ 145.557365, 14.843943 ], [ 145.557391, 14.844029 ], [ 145.557506, 14.84397 ], [ 145.557576, 14.843979 ], [ 145.557683, 14.843928 ], [ 145.557762, 14.84398 ], [ 145.557814, 14.844075 ], [ 145.557841, 14.84398 ], [ 145.55786, 14.843894 ], [ 145.557948, 14.843921 ], [ 145.558054, 14.843913 ], [ 145.558106, 14.844016 ], [ 145.558141, 14.844077 ], [ 145.558204, 14.843957 ], [ 145.558222, 14.843897 ], [ 145.558291, 14.84406 ], [ 145.558362, 14.84407 ], [ 145.558361, 14.844164 ], [ 145.558308, 14.844258 ], [ 145.558342, 14.844353 ], [ 145.558475, 14.844354 ], [ 145.55859, 14.844346 ], [ 145.55866, 14.844398 ], [ 145.558863, 14.844391 ], [ 145.558934, 14.844451 ], [ 145.559004, 14.844452 ], [ 145.559075, 14.844495 ], [ 145.55918, 14.844547 ], [ 145.55926, 14.84447 ], [ 145.559261, 14.844393 ], [ 145.559332, 14.844308 ], [ 145.5595, 14.844386 ], [ 145.559641, 14.84431 ], [ 145.55973, 14.844267 ], [ 145.559783, 14.844302 ], [ 145.559906, 14.844294 ], [ 145.56003, 14.844295 ], [ 145.560093, 14.844192 ], [ 145.560217, 14.84415 ], [ 145.560296, 14.844168 ], [ 145.560438, 14.8441 ], [ 145.560562, 14.844023 ], [ 145.56065, 14.844015 ], [ 145.560765, 14.844016 ], [ 145.560907, 14.844 ], [ 145.56103, 14.844103 ], [ 145.561091, 14.844138 ], [ 145.561197, 14.844139 ], [ 145.561251, 14.844079 ], [ 145.561339, 14.844054 ], [ 145.56141, 14.843985 ], [ 145.561499, 14.844003 ], [ 145.561525, 14.844064 ], [ 145.561489, 14.844115 ], [ 145.561542, 14.844167 ], [ 145.561656, 14.844167 ], [ 145.561728, 14.844108 ], [ 145.561869, 14.844143 ], [ 145.561949, 14.844066 ], [ 145.562011, 14.844049 ], [ 145.562125, 14.844136 ], [ 145.562373, 14.844017 ], [ 145.562311, 14.844017 ], [ 145.562276, 14.843922 ], [ 145.562286, 14.843853 ], [ 145.562436, 14.843863 ], [ 145.562533, 14.843881 ], [ 145.562683, 14.843873 ], [ 145.562807, 14.843891 ], [ 145.562833, 14.843969 ], [ 145.562823, 14.844063 ], [ 145.562867, 14.844115 ], [ 145.562973, 14.844141 ], [ 145.563123, 14.844185 ], [ 145.563185, 14.844186 ], [ 145.563237, 14.844238 ], [ 145.563308, 14.844204 ], [ 145.563352, 14.844187 ], [ 145.563414, 14.844196 ], [ 145.563396, 14.844299 ], [ 145.563404, 14.84435 ], [ 145.563511, 14.844325 ], [ 145.563545, 14.844394 ], [ 145.563616, 14.844395 ], [ 145.563669, 14.844369 ], [ 145.563731, 14.844421 ], [ 145.563748, 14.844498 ], [ 145.56388, 14.844517 ], [ 145.564039, 14.844612 ], [ 145.564232, 14.844768 ], [ 145.564382, 14.84476 ], [ 145.564471, 14.844709 ], [ 145.564515, 14.844752 ], [ 145.564595, 14.844693 ], [ 145.564665, 14.84471 ], [ 145.564665, 14.844796 ], [ 145.564709, 14.844848 ], [ 145.564761, 14.844866 ], [ 145.564849, 14.844961 ], [ 145.564981, 14.84503 ], [ 145.56506, 14.845108 ], [ 145.565201, 14.845143 ], [ 145.565289, 14.84517 ], [ 145.565377, 14.845273 ], [ 145.565492, 14.845291 ], [ 145.565623, 14.845447 ], [ 145.565791, 14.845482 ], [ 145.565949, 14.845569 ], [ 145.566064, 14.845639 ], [ 145.566054, 14.845767 ], [ 145.566133, 14.845828 ], [ 145.566257, 14.845889 ], [ 145.566318, 14.845889 ], [ 145.566467, 14.846088 ], [ 145.566573, 14.846089 ], [ 145.566679, 14.846081 ], [ 145.56674, 14.846227 ], [ 145.566802, 14.846296 ], [ 145.566899, 14.846323 ], [ 145.566995, 14.846392 ], [ 145.567039, 14.846504 ], [ 145.5671, 14.846573 ], [ 145.567171, 14.846556 ], [ 145.567188, 14.84666 ], [ 145.567345, 14.846901 ], [ 145.567362, 14.846987 ], [ 145.567477, 14.847065 ], [ 145.567583, 14.847075 ], [ 145.56768, 14.847101 ], [ 145.567847, 14.847119 ], [ 145.567953, 14.847249 ], [ 145.568093, 14.847336 ], [ 145.568181, 14.847474 ], [ 145.568322, 14.847517 ], [ 145.568427, 14.847638 ], [ 145.568488, 14.847742 ], [ 145.568549, 14.847871 ], [ 145.568655, 14.847949 ], [ 145.568787, 14.847959 ], [ 145.568928, 14.848002 ], [ 145.568981, 14.848037 ], [ 145.569131, 14.848081 ], [ 145.569228, 14.848133 ], [ 145.569404, 14.848203 ], [ 145.569614, 14.848445 ], [ 145.569755, 14.848532 ], [ 145.569913, 14.84867 ], [ 145.570063, 14.848723 ], [ 145.570186, 14.848818 ], [ 145.570353, 14.848896 ], [ 145.570503, 14.848983 ], [ 145.5706, 14.849096 ], [ 145.570837, 14.849234 ], [ 145.570925, 14.849321 ], [ 145.571074, 14.849485 ], [ 145.571259, 14.849624 ], [ 145.571364, 14.849693 ], [ 145.571523, 14.849754 ], [ 145.57161, 14.849867 ], [ 145.571813, 14.849988 ], [ 145.571954, 14.850041 ], [ 145.572069, 14.85005 ], [ 145.572165, 14.850136 ], [ 145.572368, 14.850206 ], [ 145.572473, 14.850319 ], [ 145.57257, 14.850371 ], [ 145.572693, 14.850501 ], [ 145.572816, 14.85057 ], [ 145.57293, 14.850657 ], [ 145.573001, 14.8507 ], [ 145.573107, 14.850735 ], [ 145.573212, 14.850822 ], [ 145.573361, 14.850977 ], [ 145.573405, 14.851012 ], [ 145.573502, 14.85103 ], [ 145.573607, 14.851185 ], [ 145.573704, 14.851254 ], [ 145.573809, 14.851375 ], [ 145.573941, 14.851514 ], [ 145.574222, 14.851696 ], [ 145.574292, 14.851765 ], [ 145.574371, 14.851972 ], [ 145.574502, 14.852102 ], [ 145.574625, 14.85224 ], [ 145.574704, 14.852378 ], [ 145.574714, 14.852402 ], [ 145.574773, 14.852541 ], [ 145.574896, 14.852645 ], [ 145.574948, 14.852818 ], [ 145.574965, 14.852981 ], [ 145.575007, 14.85323 ], [ 145.575024, 14.853359 ], [ 145.575005, 14.853497 ], [ 145.575049, 14.8536 ], [ 145.575119, 14.853738 ], [ 145.575293, 14.85404 ], [ 145.575345, 14.854212 ], [ 145.575381, 14.854135 ], [ 145.575416, 14.854161 ], [ 145.575452, 14.854135 ], [ 145.575444, 14.854024 ], [ 145.575392, 14.853903 ], [ 145.575392, 14.853791 ], [ 145.575349, 14.853722 ], [ 145.575455, 14.853663 ], [ 145.575532, 14.853596 ], [ 145.575636, 14.853485 ], [ 145.575727, 14.853418 ], [ 145.575838, 14.853473 ], [ 145.575914, 14.853473 ], [ 145.575941, 14.853521 ], [ 145.576087, 14.853508 ], [ 145.576202, 14.853482 ], [ 145.576288, 14.853493 ], [ 145.576467, 14.853689 ], [ 145.576502, 14.853767 ], [ 145.576581, 14.853832 ], [ 145.576695, 14.85391 ], [ 145.576794, 14.854116 ], [ 145.57686, 14.854161 ], [ 145.576905, 14.854168 ], [ 145.57696, 14.854219 ], [ 145.577056, 14.854374 ], [ 145.577152, 14.85452 ], [ 145.577238, 14.854639 ], [ 145.577386, 14.854805 ], [ 145.577462, 14.854863 ], [ 145.577448, 14.854927 ], [ 145.577319, 14.854946 ], [ 145.577298, 14.855007 ], [ 145.577315, 14.855074 ], [ 145.577388, 14.855102 ], [ 145.577394, 14.855213 ], [ 145.577425, 14.85526 ], [ 145.577431, 14.855345 ], [ 145.577469, 14.855352 ], [ 145.577474, 14.855399 ], [ 145.577475, 14.85547 ], [ 145.577531, 14.855501 ], [ 145.577534, 14.855541 ], [ 145.577582, 14.855563 ], [ 145.577578, 14.855666 ], [ 145.57758, 14.855672 ], [ 145.577653, 14.855842 ], [ 145.577739, 14.85592 ], [ 145.577784, 14.856045 ], [ 145.577842, 14.85612 ], [ 145.5778, 14.856217 ], [ 145.577789, 14.856278 ], [ 145.577747, 14.856325 ], [ 145.577768, 14.856396 ], [ 145.577833, 14.856437 ], [ 145.577923, 14.856485 ], [ 145.578031, 14.856479 ], [ 145.578089, 14.85659 ], [ 145.578102, 14.856722 ], [ 145.578146, 14.85685 ], [ 145.578134, 14.857029 ], [ 145.57804, 14.857116 ], [ 145.578074, 14.857201 ], [ 145.578112, 14.857272 ], [ 145.578178, 14.857296 ], [ 145.57815, 14.857339 ], [ 145.578084, 14.857359 ], [ 145.57809, 14.857514 ], [ 145.578055, 14.857558 ], [ 145.578096, 14.857649 ], [ 145.578084, 14.857872 ], [ 145.578073, 14.85797 ], [ 145.577996, 14.858064 ], [ 145.578041, 14.858125 ], [ 145.578075, 14.858209 ], [ 145.578118, 14.858291 ], [ 145.578112, 14.858385 ], [ 145.578056, 14.858381 ], [ 145.578034, 14.858553 ], [ 145.578093, 14.858591 ], [ 145.578144, 14.858685 ], [ 145.578061, 14.858789 ], [ 145.577942, 14.858816 ], [ 145.577804, 14.858781 ], [ 145.577773, 14.858717 ], [ 145.57768, 14.858699 ], [ 145.577752, 14.858814 ], [ 145.577775, 14.858916 ], [ 145.577848, 14.858913 ], [ 145.577994, 14.858921 ], [ 145.577962, 14.858981 ], [ 145.577803, 14.85898 ], [ 145.577788, 14.859051 ], [ 145.577951, 14.85916 ], [ 145.578036, 14.859329 ], [ 145.578146, 14.859495 ], [ 145.578287, 14.859618 ], [ 145.578366, 14.859722 ], [ 145.578401, 14.859834 ], [ 145.578435, 14.85998 ], [ 145.578514, 14.860092 ], [ 145.578629, 14.860041 ], [ 145.578752, 14.860111 ], [ 145.578911, 14.860155 ], [ 145.57899, 14.860207 ], [ 145.578989, 14.860413 ], [ 145.578882, 14.860498 ], [ 145.578944, 14.860585 ], [ 145.578872, 14.860679 ], [ 145.578872, 14.860782 ], [ 145.578862, 14.860876 ], [ 145.578897, 14.86098 ], [ 145.57887, 14.861031 ], [ 145.578693, 14.861133 ], [ 145.578771, 14.861254 ], [ 145.578744, 14.8614 ], [ 145.578691, 14.861425 ], [ 145.578725, 14.861503 ], [ 145.578715, 14.8617 ], [ 145.578671, 14.861786 ], [ 145.578546, 14.861906 ], [ 145.578457, 14.861982 ], [ 145.578421, 14.862051 ], [ 145.578456, 14.862137 ], [ 145.578359, 14.862205 ], [ 145.57838, 14.862401 ], [ 145.578438, 14.862573 ], [ 145.578488, 14.862687 ], [ 145.578412, 14.862877 ], [ 145.578286, 14.862977 ], [ 145.578178, 14.863074 ], [ 145.578126, 14.863158 ], [ 145.578191, 14.863243 ], [ 145.578095, 14.863278 ], [ 145.578078, 14.863482 ], [ 145.578119, 14.863573 ], [ 145.578146, 14.863673 ], [ 145.578128, 14.863725 ], [ 145.578021, 14.863879 ], [ 145.577834, 14.864118 ], [ 145.577789, 14.864255 ], [ 145.577753, 14.864307 ], [ 145.577611, 14.864426 ], [ 145.577575, 14.864469 ], [ 145.577442, 14.86458 ], [ 145.577362, 14.864674 ], [ 145.57729, 14.864785 ], [ 145.577237, 14.864836 ], [ 145.57721, 14.864896 ], [ 145.577078, 14.864913 ], [ 145.576971, 14.864989 ], [ 145.576856, 14.865032 ], [ 145.576785, 14.865091 ], [ 145.576714, 14.86516 ], [ 145.576607, 14.86521 ], [ 145.576377, 14.865243 ], [ 145.576218, 14.865242 ], [ 145.576095, 14.86525 ], [ 145.575962, 14.865327 ], [ 145.575952, 14.865335 ] ], [ [ 145.584582, 14.99573 ], [ 145.584616, 14.99573 ], [ 145.584661, 14.995692 ], [ 145.584686, 14.995659 ], [ 145.584676, 14.995611 ], [ 145.584716, 14.995573 ], [ 145.58477, 14.995592 ], [ 145.584809, 14.995573 ], [ 145.584825, 14.995492 ], [ 145.584879, 14.995421 ], [ 145.584929, 14.995373 ], [ 145.584983, 14.995373 ], [ 145.584984, 14.995249 ], [ 145.584967, 14.99512 ], [ 145.585022, 14.995039 ], [ 145.585076, 14.995006 ], [ 145.585185, 14.994892 ], [ 145.585131, 14.994853 ], [ 145.585132, 14.994772 ], [ 145.585167, 14.99471 ], [ 145.585187, 14.994657 ], [ 145.585221, 14.994672 ], [ 145.585285, 14.994682 ], [ 145.585389, 14.994591 ], [ 145.585483, 14.994472 ], [ 145.585533, 14.994387 ], [ 145.585588, 14.99432 ], [ 145.585642, 14.994287 ], [ 145.585711, 14.994307 ], [ 145.585794, 14.994317 ], [ 145.585903, 14.994236 ], [ 145.585997, 14.994208 ], [ 145.58614, 14.994151 ], [ 145.586322, 14.994071 ], [ 145.58643, 14.99412 ], [ 145.586474, 14.994149 ], [ 145.586568, 14.994135 ], [ 145.586591, 14.994078 ], [ 145.586669, 14.994054 ], [ 145.586714, 14.994002 ], [ 145.586812, 14.994007 ], [ 145.586862, 14.99395 ], [ 145.586951, 14.993889 ], [ 145.586996, 14.993846 ], [ 145.58705, 14.993827 ], [ 145.587094, 14.993856 ], [ 145.587148, 14.993875 ], [ 145.587202, 14.993866 ], [ 145.587266, 14.993905 ], [ 145.587325, 14.993886 ], [ 145.587355, 14.993867 ], [ 145.587443, 14.993868 ], [ 145.587428, 14.99392 ], [ 145.587502, 14.993901 ], [ 145.587561, 14.993921 ], [ 145.587605, 14.993969 ], [ 145.587645, 14.993936 ], [ 145.587684, 14.993864 ], [ 145.587734, 14.993788 ], [ 145.587747, 14.993693 ], [ 145.587738, 14.993602 ], [ 145.587847, 14.993492 ], [ 145.587926, 14.993426 ], [ 145.58799, 14.99345 ], [ 145.588034, 14.993517 ], [ 145.588082, 14.993604 ], [ 145.58816, 14.9937 ], [ 145.588229, 14.993767 ], [ 145.588273, 14.993744 ], [ 145.588293, 14.993725 ], [ 145.588396, 14.993706 ], [ 145.588456, 14.993702 ], [ 145.588485, 14.993664 ], [ 145.588466, 14.993606 ], [ 145.588437, 14.993587 ], [ 145.588373, 14.993572 ], [ 145.588324, 14.9935 ], [ 145.588324, 14.993462 ], [ 145.5883, 14.993376 ], [ 145.588291, 14.993299 ], [ 145.588232, 14.993251 ], [ 145.588242, 14.993189 ], [ 145.588301, 14.993184 ], [ 145.58838, 14.993156 ], [ 145.588469, 14.993133 ], [ 145.588518, 14.993186 ], [ 145.588532, 14.993238 ], [ 145.588561, 14.993305 ], [ 145.58863, 14.993306 ], [ 145.588675, 14.993325 ], [ 145.588743, 14.993326 ], [ 145.588827, 14.993302 ], [ 145.588906, 14.993274 ], [ 145.588946, 14.993236 ], [ 145.588902, 14.993183 ], [ 145.588882, 14.99314 ], [ 145.588868, 14.993073 ], [ 145.588942, 14.993045 ], [ 145.588991, 14.993078 ], [ 145.58904, 14.993088 ], [ 145.589149, 14.993027 ], [ 145.58911, 14.992974 ], [ 145.589076, 14.992907 ], [ 145.589067, 14.992792 ], [ 145.589131, 14.992745 ], [ 145.5892, 14.992711 ], [ 145.589329, 14.992626 ], [ 145.589383, 14.992579 ], [ 145.589452, 14.99257 ], [ 145.589486, 14.992618 ], [ 145.589594, 14.992628 ], [ 145.589648, 14.992642 ], [ 145.589697, 14.992686 ], [ 145.589737, 14.992696 ], [ 145.589786, 14.992682 ], [ 145.589826, 14.992596 ], [ 145.589846, 14.992543 ], [ 145.589738, 14.992504 ], [ 145.589699, 14.992485 ], [ 145.58964, 14.992422 ], [ 145.589631, 14.992355 ], [ 145.589581, 14.992341 ], [ 145.589527, 14.992316 ], [ 145.589523, 14.992245 ], [ 145.589538, 14.992202 ], [ 145.589622, 14.992169 ], [ 145.589647, 14.992121 ], [ 145.589687, 14.992069 ], [ 145.589687, 14.992021 ], [ 145.589658, 14.991992 ], [ 145.589692, 14.99193 ], [ 145.589732, 14.991873 ], [ 145.589776, 14.991883 ], [ 145.589786, 14.991912 ], [ 145.58988, 14.991864 ], [ 145.589939, 14.991884 ], [ 145.589963, 14.991908 ], [ 145.590047, 14.991861 ], [ 145.590082, 14.991837 ], [ 145.590111, 14.991823 ], [ 145.590149, 14.99177 ], [ 145.590178, 14.991718 ], [ 145.590223, 14.99167 ], [ 145.590267, 14.991671 ], [ 145.590351, 14.991642 ], [ 145.590317, 14.991609 ], [ 145.590253, 14.99157 ], [ 145.590199, 14.991603 ], [ 145.59016, 14.991569 ], [ 145.590175, 14.991512 ], [ 145.59018, 14.991474 ], [ 145.590195, 14.991417 ], [ 145.590161, 14.991388 ], [ 145.590107, 14.991373 ], [ 145.590062, 14.991421 ], [ 145.590033, 14.99144 ], [ 145.589999, 14.991363 ], [ 145.589984, 14.991305 ], [ 145.590054, 14.99122 ], [ 145.590098, 14.991186 ], [ 145.590089, 14.991158 ], [ 145.590059, 14.991148 ], [ 145.590069, 14.991119 ], [ 145.590153, 14.991029 ], [ 145.590208, 14.990938 ], [ 145.590253, 14.990881 ], [ 145.590283, 14.9908 ], [ 145.590323, 14.990748 ], [ 145.590323, 14.990681 ], [ 145.590402, 14.990633 ], [ 145.590456, 14.990643 ], [ 145.590501, 14.990605 ], [ 145.590515, 14.990634 ], [ 145.590589, 14.990692 ], [ 145.590658, 14.990664 ], [ 145.590702, 14.990616 ], [ 145.590741, 14.990674 ], [ 145.590702, 14.990726 ], [ 145.590785, 14.990732 ], [ 145.590879, 14.990679 ], [ 145.590928, 14.99067 ], [ 145.591002, 14.990647 ], [ 145.591077, 14.99058 ], [ 145.591092, 14.990552 ], [ 145.591165, 14.990538 ], [ 145.59118, 14.990509 ], [ 145.591235, 14.9905 ], [ 145.591259, 14.990452 ], [ 145.591294, 14.990438 ], [ 145.591319, 14.990386 ], [ 145.591349, 14.990376 ], [ 145.591388, 14.990329 ], [ 145.591423, 14.990248 ], [ 145.591463, 14.990238 ], [ 145.591546, 14.990244 ], [ 145.591615, 14.99022 ], [ 145.591674, 14.990206 ], [ 145.591711, 14.990182 ], [ 145.591766, 14.990135 ], [ 145.591825, 14.990121 ], [ 145.591859, 14.990135 ], [ 145.591884, 14.990155 ], [ 145.591854, 14.990231 ], [ 145.591898, 14.990246 ], [ 145.591977, 14.990222 ], [ 145.592056, 14.990228 ], [ 145.592115, 14.990204 ], [ 145.592159, 14.990147 ], [ 145.59215, 14.990104 ], [ 145.592214, 14.990052 ], [ 145.592283, 14.990057 ], [ 145.592328, 14.990024 ], [ 145.592303, 14.989966 ], [ 145.592323, 14.989914 ], [ 145.592382, 14.989914 ], [ 145.592407, 14.989943 ], [ 145.592461, 14.989953 ], [ 145.592515, 14.989977 ], [ 145.592564, 14.989953 ], [ 145.592624, 14.989891 ], [ 145.592713, 14.989811 ], [ 145.592732, 14.98982 ], [ 145.592767, 14.989854 ], [ 145.592752, 14.989888 ], [ 145.592781, 14.989945 ], [ 145.59282, 14.990003 ], [ 145.592879, 14.98997 ], [ 145.59285, 14.989926 ], [ 145.59287, 14.989874 ], [ 145.592904, 14.989865 ], [ 145.592929, 14.989817 ], [ 145.593047, 14.989832 ], [ 145.593067, 14.989856 ], [ 145.593013, 14.989865 ], [ 145.593003, 14.989889 ], [ 145.593052, 14.989918 ], [ 145.593056, 14.990023 ], [ 145.593159, 14.990057 ], [ 145.593198, 14.99012 ], [ 145.593316, 14.990149 ], [ 145.593325, 14.990188 ], [ 145.593374, 14.990226 ], [ 145.593433, 14.990231 ], [ 145.593502, 14.990275 ], [ 145.593629, 14.990371 ], [ 145.593629, 14.990462 ], [ 145.593668, 14.990544 ], [ 145.593756, 14.99053 ], [ 145.593855, 14.990497 ], [ 145.593998, 14.99044 ], [ 145.594052, 14.990393 ], [ 145.594028, 14.990345 ], [ 145.594009, 14.990278 ], [ 145.594044, 14.990226 ], [ 145.594098, 14.990197 ], [ 145.594103, 14.990216 ], [ 145.594142, 14.990274 ], [ 145.594181, 14.990274 ], [ 145.594147, 14.990226 ], [ 145.594152, 14.990174 ], [ 145.594197, 14.990121 ], [ 145.594266, 14.990103 ], [ 145.59431, 14.990146 ], [ 145.594354, 14.990137 ], [ 145.594384, 14.990079 ], [ 145.594419, 14.99007 ], [ 145.594507, 14.990037 ], [ 145.594513, 14.989965 ], [ 145.594533, 14.989927 ], [ 145.594557, 14.989903 ], [ 145.594567, 14.98987 ], [ 145.594627, 14.989833 ], [ 145.594696, 14.989837 ], [ 145.594784, 14.989886 ], [ 145.594882, 14.989896 ], [ 145.594941, 14.98992 ], [ 145.595074, 14.989887 ], [ 145.595138, 14.989897 ], [ 145.595138, 14.989955 ], [ 145.595207, 14.989941 ], [ 145.595276, 14.989903 ], [ 145.59532, 14.989894 ], [ 145.595389, 14.989856 ], [ 145.595459, 14.989809 ], [ 145.595515, 14.989785 ], [ 145.595608, 14.989829 ], [ 145.595678, 14.989767 ], [ 145.595737, 14.989791 ], [ 145.595811, 14.989782 ], [ 145.59589, 14.989725 ], [ 145.596013, 14.989716 ], [ 145.596106, 14.989688 ], [ 145.596185, 14.989722 ], [ 145.596268, 14.98979 ], [ 145.596307, 14.989809 ], [ 145.596401, 14.989843 ], [ 145.596465, 14.989815 ], [ 145.596509, 14.989762 ], [ 145.596535, 14.989676 ], [ 145.596623, 14.989648 ], [ 145.596717, 14.989654 ], [ 145.596731, 14.989692 ], [ 145.59676, 14.989745 ], [ 145.596819, 14.98976 ], [ 145.596849, 14.989736 ], [ 145.596918, 14.989736 ], [ 145.596982, 14.98977 ], [ 145.597006, 14.989823 ], [ 145.597011, 14.989871 ], [ 145.59701, 14.989957 ], [ 145.597039, 14.990005 ], [ 145.597127, 14.990068 ], [ 145.597171, 14.990144 ], [ 145.597225, 14.990202 ], [ 145.597284, 14.990217 ], [ 145.597318, 14.99027 ], [ 145.597342, 14.990284 ], [ 145.597364, 14.990327 ], [ 145.597433, 14.990332 ], [ 145.597502, 14.990314 ], [ 145.597566, 14.990276 ], [ 145.59762, 14.990319 ], [ 145.597674, 14.990344 ], [ 145.597723, 14.990387 ], [ 145.597772, 14.990368 ], [ 145.597783, 14.990301 ], [ 145.597872, 14.990268 ], [ 145.597882, 14.990244 ], [ 145.597926, 14.990235 ], [ 145.597994, 14.990346 ], [ 145.598072, 14.990403 ], [ 145.598077, 14.99048 ], [ 145.598101, 14.990518 ], [ 145.598145, 14.990547 ], [ 145.598224, 14.990519 ], [ 145.598214, 14.990548 ], [ 145.59814, 14.99059 ], [ 145.5981, 14.990643 ], [ 145.598129, 14.990734 ], [ 145.598178, 14.990806 ], [ 145.598222, 14.990883 ], [ 145.598285, 14.99094 ], [ 145.598334, 14.990998 ], [ 145.598373, 14.991118 ], [ 145.598447, 14.991128 ], [ 145.598523, 14.991176 ], [ 145.598572, 14.991177 ], [ 145.598641, 14.991191 ], [ 145.598694, 14.991249 ], [ 145.598783, 14.991293 ], [ 145.598861, 14.991341 ], [ 145.59888, 14.991394 ], [ 145.598974, 14.991428 ], [ 145.599018, 14.991471 ], [ 145.599081, 14.99151 ], [ 145.599155, 14.991544 ], [ 145.599179, 14.991601 ], [ 145.599218, 14.991654 ], [ 145.599258, 14.991626 ], [ 145.599317, 14.991607 ], [ 145.599341, 14.99166 ], [ 145.5994, 14.991722 ], [ 145.599557, 14.991804 ], [ 145.59965, 14.991786 ], [ 145.59969, 14.9918 ], [ 145.599808, 14.991811 ], [ 145.599837, 14.99184 ], [ 145.599916, 14.99185 ], [ 145.599989, 14.991845 ], [ 145.600085, 14.991908 ], [ 145.600139, 14.991865 ], [ 145.600272, 14.991881 ], [ 145.600351, 14.9919 ], [ 145.600405, 14.991939 ], [ 145.600464, 14.991891 ], [ 145.600557, 14.991988 ], [ 145.600596, 14.991973 ], [ 145.600631, 14.991945 ], [ 145.600765, 14.991917 ], [ 145.600769, 14.991917 ], [ 145.600936, 14.991909 ], [ 145.60103, 14.99189 ], [ 145.601217, 14.991905 ], [ 145.601261, 14.991891 ], [ 145.60132, 14.991849 ], [ 145.60137, 14.99182 ], [ 145.6014, 14.991763 ], [ 145.601434, 14.991749 ], [ 145.601459, 14.991787 ], [ 145.601478, 14.991783 ], [ 145.601523, 14.991754 ], [ 145.601513, 14.991716 ], [ 145.601528, 14.991673 ], [ 145.601563, 14.99164 ], [ 145.601602, 14.991659 ], [ 145.601587, 14.99172 ], [ 145.601602, 14.991731 ], [ 145.601656, 14.991731 ], [ 145.6017, 14.991751 ], [ 145.601734, 14.99176 ], [ 145.601749, 14.991741 ], [ 145.601748, 14.991713 ], [ 145.601777, 14.991709 ], [ 145.601811, 14.99178 ], [ 145.601845, 14.991802 ], [ 145.601823, 14.991828 ], [ 145.601749, 14.991813 ], [ 145.601783, 14.991847 ], [ 145.601748, 14.99188 ], [ 145.601788, 14.991914 ], [ 145.601881, 14.991919 ], [ 145.601945, 14.991934 ], [ 145.601999, 14.99191 ], [ 145.602019, 14.991882 ], [ 145.602113, 14.991854 ], [ 145.602186, 14.991878 ], [ 145.60227, 14.991883 ], [ 145.602326, 14.991903 ], [ 145.60236, 14.991979 ], [ 145.602404, 14.992042 ], [ 145.602449, 14.992013 ], [ 145.602478, 14.991975 ], [ 145.602503, 14.991956 ], [ 145.602562, 14.99199 ], [ 145.602562, 14.992033 ], [ 145.602527, 14.9921 ], [ 145.602586, 14.992143 ], [ 145.602615, 14.992215 ], [ 145.602688, 14.992221 ], [ 145.602728, 14.992254 ], [ 145.602786, 14.992283 ], [ 145.602875, 14.992317 ], [ 145.602983, 14.992318 ], [ 145.60314, 14.992348 ], [ 145.603234, 14.99232 ], [ 145.603362, 14.992268 ], [ 145.603456, 14.992249 ], [ 145.603545, 14.992216 ], [ 145.603619, 14.992183 ], [ 145.603678, 14.992102 ], [ 145.603698, 14.992035 ], [ 145.603718, 14.991988 ], [ 145.603763, 14.991969 ], [ 145.603812, 14.992003 ], [ 145.603812, 14.992046 ], [ 145.603792, 14.99207 ], [ 145.603772, 14.992112 ], [ 145.603791, 14.992146 ], [ 145.603771, 14.992213 ], [ 145.603845, 14.99218 ], [ 145.603924, 14.9922 ], [ 145.604017, 14.992272 ], [ 145.604086, 14.992229 ], [ 145.60416, 14.992215 ], [ 145.604189, 14.992254 ], [ 145.604204, 14.992216 ], [ 145.604268, 14.992235 ], [ 145.604347, 14.992212 ], [ 145.604499, 14.992208 ], [ 145.604524, 14.992251 ], [ 145.604573, 14.992304 ], [ 145.604607, 14.992352 ], [ 145.60471, 14.992424 ], [ 145.604784, 14.992406 ], [ 145.604823, 14.992358 ], [ 145.604907, 14.992316 ], [ 145.604961, 14.992278 ], [ 145.60505, 14.992283 ], [ 145.605129, 14.992226 ], [ 145.605119, 14.992192 ], [ 145.605065, 14.992173 ], [ 145.605081, 14.99212 ], [ 145.605185, 14.992011 ], [ 145.605264, 14.991964 ], [ 145.605308, 14.991916 ], [ 145.605314, 14.991854 ], [ 145.605343, 14.991811 ], [ 145.605407, 14.991816 ], [ 145.605446, 14.991874 ], [ 145.605446, 14.991917 ], [ 145.605579, 14.991832 ], [ 145.605609, 14.991803 ], [ 145.605659, 14.99177 ], [ 145.605693, 14.991718 ], [ 145.605745, 14.991723 ], [ 145.605785, 14.991661 ], [ 145.6058, 14.991604 ], [ 145.605845, 14.991551 ], [ 145.605943, 14.991542 ], [ 145.606036, 14.991557 ], [ 145.606076, 14.991596 ], [ 145.606159, 14.991644 ], [ 145.606223, 14.991601 ], [ 145.606287, 14.991587 ], [ 145.606307, 14.991535 ], [ 145.606445, 14.991579 ], [ 145.606503, 14.991622 ], [ 145.606577, 14.991627 ], [ 145.606617, 14.991599 ], [ 145.606622, 14.991546 ], [ 145.606671, 14.991551 ], [ 145.606691, 14.99158 ], [ 145.60678, 14.991538 ], [ 145.606829, 14.991495 ], [ 145.606888, 14.991457 ], [ 145.606918, 14.991467 ], [ 145.606992, 14.991453 ], [ 145.607031, 14.991401 ], [ 145.607106, 14.991353 ], [ 145.607189, 14.991311 ], [ 145.607269, 14.991259 ], [ 145.607357, 14.991216 ], [ 145.607436, 14.991188 ], [ 145.607486, 14.991159 ], [ 145.607506, 14.991088 ], [ 145.607541, 14.991045 ], [ 145.60759, 14.991007 ], [ 145.607674, 14.990921 ], [ 145.607738, 14.990946 ], [ 145.607738, 14.99097 ], [ 145.607748, 14.990994 ], [ 145.607787, 14.990994 ], [ 145.607861, 14.990937 ], [ 145.607886, 14.990904 ], [ 145.60793, 14.990875 ], [ 145.607979, 14.990904 ], [ 145.608043, 14.990919 ], [ 145.608078, 14.9909 ], [ 145.608142, 14.990829 ], [ 145.608167, 14.990776 ], [ 145.608231, 14.990724 ], [ 145.608251, 14.9907 ], [ 145.60837, 14.990605 ], [ 145.60841, 14.990553 ], [ 145.60841, 14.990505 ], [ 145.60846, 14.990438 ], [ 145.608494, 14.990434 ], [ 145.608583, 14.99041 ], [ 145.608627, 14.990372 ], [ 145.608645, 14.990344 ], [ 145.608596, 14.990229 ], [ 145.608681, 14.990129 ], [ 145.60873, 14.990143 ], [ 145.60874, 14.9901 ], [ 145.608809, 14.990058 ], [ 145.608844, 14.990005 ], [ 145.608825, 14.9899 ], [ 145.608835, 14.989824 ], [ 145.60888, 14.98969 ], [ 145.608955, 14.989533 ], [ 145.608931, 14.989451 ], [ 145.608937, 14.989317 ], [ 145.608996, 14.989275 ], [ 145.609066, 14.989194 ], [ 145.609056, 14.989093 ], [ 145.609057, 14.988969 ], [ 145.609038, 14.988859 ], [ 145.609004, 14.988844 ], [ 145.608915, 14.988891 ], [ 145.608915, 14.988853 ], [ 145.608999, 14.988763 ], [ 145.609054, 14.988696 ], [ 145.609045, 14.988643 ], [ 145.60908, 14.988538 ], [ 145.609066, 14.988409 ], [ 145.609051, 14.988347 ], [ 145.609076, 14.988285 ], [ 145.609052, 14.988232 ], [ 145.609059, 14.987993 ], [ 145.609094, 14.987893 ], [ 145.609094, 14.987816 ], [ 145.609114, 14.987735 ], [ 145.609085, 14.987701 ], [ 145.609051, 14.987649 ], [ 145.609061, 14.987596 ], [ 145.609076, 14.987544 ], [ 145.609039, 14.987503 ], [ 145.609018, 14.987438 ], [ 145.608915, 14.987394 ], [ 145.608954, 14.987356 ], [ 145.608998, 14.987264 ], [ 145.609079, 14.987194 ], [ 145.609045, 14.987118 ], [ 145.608951, 14.987069 ], [ 145.608858, 14.986997 ], [ 145.608844, 14.986925 ], [ 145.608746, 14.986867 ], [ 145.608653, 14.986804 ], [ 145.608521, 14.986728 ], [ 145.608439, 14.986646 ], [ 145.608326, 14.986627 ], [ 145.608267, 14.986543 ], [ 145.608276, 14.986496 ], [ 145.608325, 14.986472 ], [ 145.60838, 14.986406 ], [ 145.608281, 14.986415 ], [ 145.608179, 14.986452 ], [ 145.608084, 14.98639 ], [ 145.608059, 14.986329 ], [ 145.607984, 14.986249 ], [ 145.607914, 14.986188 ], [ 145.607985, 14.986147 ], [ 145.60805, 14.986035 ], [ 145.608115, 14.985907 ], [ 145.608258, 14.985793 ], [ 145.608254, 14.985726 ], [ 145.60826, 14.985638 ], [ 145.608344, 14.985559 ], [ 145.608438, 14.985546 ], [ 145.608566, 14.985599 ], [ 145.60865, 14.985643 ], [ 145.608734, 14.985615 ], [ 145.608883, 14.985548 ], [ 145.608981, 14.985595 ], [ 145.609032, 14.985544 ], [ 145.609136, 14.985536 ], [ 145.609229, 14.985472 ], [ 145.609346, 14.985405 ], [ 145.609404, 14.985426 ], [ 145.609433, 14.985402 ], [ 145.609423, 14.985351 ], [ 145.609662, 14.985251 ], [ 145.609855, 14.985047 ], [ 145.609865, 14.985004 ], [ 145.6099, 14.984923 ], [ 145.609901, 14.984765 ], [ 145.609916, 14.984712 ], [ 145.609946, 14.984703 ], [ 145.609975, 14.984751 ], [ 145.610009, 14.984756 ], [ 145.610069, 14.984718 ], [ 145.610103, 14.98478 ], [ 145.610187, 14.984747 ], [ 145.610177, 14.984676 ], [ 145.610183, 14.984618 ], [ 145.610262, 14.984542 ], [ 145.610199, 14.984432 ], [ 145.610189, 14.984389 ], [ 145.610194, 14.984355 ], [ 145.61017, 14.984326 ], [ 145.610076, 14.984331 ], [ 145.610032, 14.984306 ], [ 145.610097, 14.98423 ], [ 145.610121, 14.984207 ], [ 145.610205, 14.984159 ], [ 145.610181, 14.984116 ], [ 145.610132, 14.984068 ], [ 145.610132, 14.984025 ], [ 145.610123, 14.983953 ], [ 145.610153, 14.983891 ], [ 145.610124, 14.983838 ], [ 145.610114, 14.983771 ], [ 145.610134, 14.983757 ], [ 145.610208, 14.983729 ], [ 145.610257, 14.983758 ], [ 145.610301, 14.983744 ], [ 145.610373, 14.983773 ], [ 145.610456, 14.983778 ], [ 145.610466, 14.983797 ], [ 145.61055, 14.983793 ], [ 145.610565, 14.98376 ], [ 145.610609, 14.983722 ], [ 145.610654, 14.983693 ], [ 145.610693, 14.983674 ], [ 145.610747, 14.98366 ], [ 145.610777, 14.983699 ], [ 145.610865, 14.983704 ], [ 145.610909, 14.98368 ], [ 145.61091, 14.983594 ], [ 145.610935, 14.983561 ], [ 145.610965, 14.983533 ], [ 145.611048, 14.983557 ], [ 145.611112, 14.983562 ], [ 145.611161, 14.983543 ], [ 145.611186, 14.9835 ], [ 145.611245, 14.983506 ], [ 145.611359, 14.983449 ], [ 145.611433, 14.983363 ], [ 145.611443, 14.983335 ], [ 145.611454, 14.983239 ], [ 145.611493, 14.983239 ], [ 145.611537, 14.983254 ], [ 145.611606, 14.983249 ], [ 145.611596, 14.983216 ], [ 145.611538, 14.983192 ], [ 145.611543, 14.983125 ], [ 145.611637, 14.982996 ], [ 145.611692, 14.982934 ], [ 145.611736, 14.982872 ], [ 145.611801, 14.982791 ], [ 145.61189, 14.982696 ], [ 145.61193, 14.982634 ], [ 145.61198, 14.982529 ], [ 145.612039, 14.982482 ], [ 145.612079, 14.982468 ], [ 145.612099, 14.982401 ], [ 145.612138, 14.982377 ], [ 145.612134, 14.982334 ], [ 145.612144, 14.982282 ], [ 145.612193, 14.982268 ], [ 145.612238, 14.982196 ], [ 145.612297, 14.982144 ], [ 145.612346, 14.98212 ], [ 145.612362, 14.982058 ], [ 145.612475, 14.982006 ], [ 145.612549, 14.981959 ], [ 145.612589, 14.981921 ], [ 145.612619, 14.981845 ], [ 145.612688, 14.981807 ], [ 145.612762, 14.981755 ], [ 145.612802, 14.981717 ], [ 145.612846, 14.981702 ], [ 145.612871, 14.981698 ], [ 145.612886, 14.981685 ], [ 145.612905, 14.981679 ], [ 145.612982, 14.981584 ], [ 145.613008, 14.981485 ], [ 145.612984, 14.981313 ], [ 145.612926, 14.981158 ], [ 145.612977, 14.981116 ], [ 145.612994, 14.981027 ], [ 145.613031, 14.980938 ], [ 145.613026, 14.980833 ], [ 145.613017, 14.980747 ], [ 145.613022, 14.98069 ], [ 145.612971, 14.980666 ], [ 145.612879, 14.980649 ], [ 145.612803, 14.980591 ], [ 145.612745, 14.980517 ], [ 145.612737, 14.980427 ], [ 145.612763, 14.980337 ], [ 145.612738, 14.980247 ], [ 145.61268, 14.980173 ], [ 145.612689, 14.980083 ], [ 145.612672, 14.979993 ], [ 145.612648, 14.979903 ], [ 145.612514, 14.979771 ], [ 145.612455, 14.979697 ], [ 145.612377, 14.979691 ], [ 145.612348, 14.979528 ], [ 145.612422, 14.979519 ], [ 145.612443, 14.979433 ], [ 145.612409, 14.979356 ], [ 145.612409, 14.979256 ], [ 145.612537, 14.979209 ], [ 145.612636, 14.979149 ], [ 145.612573, 14.979032 ], [ 145.612529, 14.978922 ], [ 145.61251, 14.97885 ], [ 145.612512, 14.978788 ], [ 145.612419, 14.978731 ], [ 145.612352, 14.978665 ], [ 145.612261, 14.978614 ], [ 145.612212, 14.978508 ], [ 145.612228, 14.97832 ], [ 145.61222, 14.978222 ], [ 145.612246, 14.978132 ], [ 145.612339, 14.978116 ], [ 145.612415, 14.978051 ], [ 145.612331, 14.977993 ], [ 145.612256, 14.977935 ], [ 145.61224, 14.977845 ], [ 145.612198, 14.977755 ], [ 145.612131, 14.977689 ], [ 145.612103, 14.977591 ], [ 145.612074, 14.977427 ], [ 145.612091, 14.977337 ], [ 145.612066, 14.977173 ], [ 145.612145, 14.97714 ], [ 145.612236, 14.977149 ], [ 145.612278, 14.977068 ], [ 145.612175, 14.977073 ], [ 145.612102, 14.976985 ], [ 145.612069, 14.976878 ], [ 145.612028, 14.976796 ], [ 145.611994, 14.976706 ], [ 145.611987, 14.976616 ], [ 145.612012, 14.976526 ], [ 145.612004, 14.976422 ], [ 145.612089, 14.97642 ], [ 145.612151, 14.976406 ], [ 145.61214, 14.976322 ], [ 145.612033, 14.976243 ], [ 145.612082, 14.976174 ], [ 145.612193, 14.976107 ], [ 145.612237, 14.976022 ], [ 145.612236, 14.975984 ], [ 145.612218, 14.975935 ], [ 145.612226, 14.975899 ], [ 145.612215, 14.975884 ], [ 145.6122, 14.975873 ], [ 145.612235, 14.97582 ], [ 145.612215, 14.975782 ], [ 145.612171, 14.97581 ], [ 145.612141, 14.975781 ], [ 145.612181, 14.975686 ], [ 145.612216, 14.975638 ], [ 145.61226, 14.975648 ], [ 145.612315, 14.975625 ], [ 145.612305, 14.975567 ], [ 145.612271, 14.975524 ], [ 145.612224, 14.975519 ], [ 145.61218, 14.975509 ], [ 145.612279, 14.975371 ], [ 145.612329, 14.975328 ], [ 145.612339, 14.975257 ], [ 145.61234, 14.975156 ], [ 145.612365, 14.975084 ], [ 145.6124, 14.975018 ], [ 145.612474, 14.974985 ], [ 145.612479, 14.974932 ], [ 145.612524, 14.974842 ], [ 145.612514, 14.974784 ], [ 145.61247, 14.974741 ], [ 145.612456, 14.974717 ], [ 145.612535, 14.974674 ], [ 145.612584, 14.974627 ], [ 145.61256, 14.974588 ], [ 145.612491, 14.974621 ], [ 145.612442, 14.974626 ], [ 145.612506, 14.974554 ], [ 145.612541, 14.974502 ], [ 145.612536, 14.97443 ], [ 145.612561, 14.974359 ], [ 145.612478, 14.974329 ], [ 145.612399, 14.974319 ], [ 145.612325, 14.974319 ], [ 145.612286, 14.974276 ], [ 145.611832, 14.974401 ], [ 145.611563, 14.974133 ], [ 145.611361, 14.973495 ], [ 145.611563, 14.971867 ], [ 145.612255, 14.969447 ], [ 145.613522, 14.966682 ], [ 145.616095, 14.962957 ], [ 145.618745, 14.960768 ], [ 145.621209, 14.958763 ], [ 145.624275, 14.957197 ], [ 145.62896, 14.954547 ], [ 145.629523, 14.954366 ], [ 145.629859, 14.954515 ], [ 145.630127, 14.954687 ], [ 145.630275, 14.954855 ], [ 145.630314, 14.954782 ], [ 145.630373, 14.95471 ], [ 145.630611, 14.954496 ], [ 145.630691, 14.954455 ], [ 145.630932, 14.954301 ], [ 145.631142, 14.954057 ], [ 145.631217, 14.953956 ], [ 145.631304, 14.953813 ], [ 145.63136, 14.9537 ], [ 145.631391, 14.95358 ], [ 145.631417, 14.953503 ], [ 145.631442, 14.953395 ], [ 145.63143, 14.953306 ], [ 145.631535, 14.953181 ], [ 145.631585, 14.953199 ], [ 145.631585, 14.953085 ], [ 145.631567, 14.953001 ], [ 145.631605, 14.952954 ], [ 145.63163, 14.952822 ], [ 145.631686, 14.952739 ], [ 145.631693, 14.952655 ], [ 145.631656, 14.952589 ], [ 145.63162, 14.952434 ], [ 145.631658, 14.952362 ], [ 145.631664, 14.952308 ], [ 145.631664, 14.952255 ], [ 145.631687, 14.952028 ], [ 145.631706, 14.951932 ], [ 145.631677, 14.951788 ], [ 145.631677, 14.951657 ], [ 145.631604, 14.951507 ], [ 145.631507, 14.951351 ], [ 145.631452, 14.951237 ], [ 145.631435, 14.951141 ], [ 145.631387, 14.95095 ], [ 145.63132, 14.950734 ], [ 145.63131, 14.950483 ], [ 145.631261, 14.950327 ], [ 145.63125, 14.950189 ], [ 145.631003, 14.949907 ], [ 145.63101, 14.949734 ], [ 145.630967, 14.949674 ], [ 145.630968, 14.949518 ], [ 145.630841, 14.94926 ], [ 145.630841, 14.949182 ], [ 145.630725, 14.949116 ], [ 145.630707, 14.948966 ], [ 145.630727, 14.948853 ], [ 145.630727, 14.948769 ], [ 145.630678, 14.948703 ], [ 145.630673, 14.948578 ], [ 145.63068, 14.948428 ], [ 145.630632, 14.948284 ], [ 145.630509, 14.94817 ], [ 145.63048, 14.947949 ], [ 145.630395, 14.947781 ], [ 145.630402, 14.947643 ], [ 145.630384, 14.94753 ], [ 145.630308, 14.947445 ], [ 145.630253, 14.947373 ], [ 145.630162, 14.947277 ], [ 145.630082, 14.947235 ], [ 145.630094, 14.947138 ], [ 145.630105, 14.947056 ], [ 145.630084, 14.946834 ], [ 145.630036, 14.946756 ], [ 145.629906, 14.946767 ], [ 145.629852, 14.946671 ], [ 145.629809, 14.946552 ], [ 145.629748, 14.946515 ], [ 145.6297, 14.946425 ], [ 145.629663, 14.9463 ], [ 145.629633, 14.946228 ], [ 145.629578, 14.946227 ], [ 145.629548, 14.946155 ], [ 145.629536, 14.945988 ], [ 145.629481, 14.945904 ], [ 145.629439, 14.945808 ], [ 145.629305, 14.94567 ], [ 145.629305, 14.945556 ], [ 145.629288, 14.9454 ], [ 145.629239, 14.945293 ], [ 145.629265, 14.945209 ], [ 145.629192, 14.945059 ], [ 145.629137, 14.945029 ], [ 145.629069, 14.945005 ], [ 145.629069, 14.944957 ], [ 145.629021, 14.944795 ], [ 145.628979, 14.944735 ], [ 145.629005, 14.944684 ], [ 145.628976, 14.944602 ], [ 145.628986, 14.944531 ], [ 145.628947, 14.944506 ], [ 145.628917, 14.944564 ], [ 145.628878, 14.944544 ], [ 145.628878, 14.944429 ], [ 145.628819, 14.944419 ], [ 145.62881, 14.944381 ], [ 145.628874, 14.944286 ], [ 145.628806, 14.944281 ], [ 145.628786, 14.944223 ], [ 145.628792, 14.944156 ], [ 145.628689, 14.944055 ], [ 145.62867, 14.943864 ], [ 145.628636, 14.943825 ], [ 145.628592, 14.943739 ], [ 145.628578, 14.943662 ], [ 145.628544, 14.943581 ], [ 145.628525, 14.943523 ], [ 145.628525, 14.943502 ], [ 145.628513, 14.943487 ], [ 145.628487, 14.943375 ], [ 145.628493, 14.94314 ], [ 145.62844, 14.942992 ], [ 145.62844, 14.94292 ], [ 145.628475, 14.942911 ], [ 145.62849, 14.942839 ], [ 145.628441, 14.942805 ], [ 145.628378, 14.942676 ], [ 145.628408, 14.942623 ], [ 145.628399, 14.942518 ], [ 145.628364, 14.942465 ], [ 145.628438, 14.942475 ], [ 145.628454, 14.942361 ], [ 145.62842, 14.942279 ], [ 145.628361, 14.942236 ], [ 145.628386, 14.942154 ], [ 145.628421, 14.942116 ], [ 145.628397, 14.942059 ], [ 145.628397, 14.941958 ], [ 145.628442, 14.94193 ], [ 145.62842, 14.941829 ], [ 145.628372, 14.941647 ], [ 145.628441, 14.941581 ], [ 145.628412, 14.941514 ], [ 145.628433, 14.941423 ], [ 145.628443, 14.941308 ], [ 145.628414, 14.941231 ], [ 145.62842, 14.94115 ], [ 145.628498, 14.941151 ], [ 145.628461, 14.940758 ], [ 145.628398, 14.9407 ], [ 145.628428, 14.940624 ], [ 145.628463, 14.940553 ], [ 145.628478, 14.940514 ], [ 145.628547, 14.940505 ], [ 145.62864, 14.940515 ], [ 145.628669, 14.940563 ], [ 145.628625, 14.940621 ], [ 145.628604, 14.940687 ], [ 145.628654, 14.940707 ], [ 145.628737, 14.940679 ], [ 145.628782, 14.940588 ], [ 145.628822, 14.940593 ], [ 145.628856, 14.940526 ], [ 145.628857, 14.940464 ], [ 145.628891, 14.940483 ], [ 145.628925, 14.940512 ], [ 145.628926, 14.940436 ], [ 145.62896, 14.940417 ], [ 145.628995, 14.940441 ], [ 145.629049, 14.940417 ], [ 145.629069, 14.94037 ], [ 145.629108, 14.940346 ], [ 145.629197, 14.94039 ], [ 145.629236, 14.940414 ], [ 145.629261, 14.940366 ], [ 145.62933, 14.940338 ], [ 145.62935, 14.940276 ], [ 145.629355, 14.940204 ], [ 145.629385, 14.940137 ], [ 145.62944, 14.940099 ], [ 145.62944, 14.940051 ], [ 145.629465, 14.940013 ], [ 145.629485, 14.939884 ], [ 145.629466, 14.939817 ], [ 145.629506, 14.93977 ], [ 145.629548, 14.939736 ], [ 145.629568, 14.93967 ], [ 145.629632, 14.939617 ], [ 145.629667, 14.939546 ], [ 145.629633, 14.939493 ], [ 145.629589, 14.939459 ], [ 145.629604, 14.939373 ], [ 145.62956, 14.939349 ], [ 145.629526, 14.939296 ], [ 145.62962, 14.939258 ], [ 145.629733, 14.93925 ], [ 145.629738, 14.939202 ], [ 145.629773, 14.939125 ], [ 145.629744, 14.939058 ], [ 145.629793, 14.93904 ], [ 145.629803, 14.938977 ], [ 145.629755, 14.93892 ], [ 145.629671, 14.938857 ], [ 145.629667, 14.93878 ], [ 145.629623, 14.938699 ], [ 145.629559, 14.93866 ], [ 145.629447, 14.938583 ], [ 145.629329, 14.938544 ], [ 145.629324, 14.938477 ], [ 145.629359, 14.93841 ], [ 145.629399, 14.938377 ], [ 145.629394, 14.938324 ], [ 145.62935, 14.938382 ], [ 145.629271, 14.93841 ], [ 145.629252, 14.938314 ], [ 145.629247, 14.938223 ], [ 145.629253, 14.938161 ], [ 145.629322, 14.938137 ], [ 145.62942, 14.93809 ], [ 145.629313, 14.938008 ], [ 145.629411, 14.937942 ], [ 145.629471, 14.937875 ], [ 145.629479, 14.937832 ], [ 145.629435, 14.93777 ], [ 145.62946, 14.937693 ], [ 145.629519, 14.937646 ], [ 145.629549, 14.937541 ], [ 145.62957, 14.937445 ], [ 145.629604, 14.937374 ], [ 145.629639, 14.937364 ], [ 145.629648, 14.937427 ], [ 145.629692, 14.937499 ], [ 145.629737, 14.93748 ], [ 145.629781, 14.937494 ], [ 145.629791, 14.937466 ], [ 145.629825, 14.937437 ], [ 145.629875, 14.937438 ], [ 145.629934, 14.937376 ], [ 145.629945, 14.937256 ], [ 145.629979, 14.937228 ], [ 145.629951, 14.937113 ], [ 145.629921, 14.93707 ], [ 145.629907, 14.937003 ], [ 145.629927, 14.936931 ], [ 145.629928, 14.93684 ], [ 145.629913, 14.936759 ], [ 145.629864, 14.93673 ], [ 145.62988, 14.936668 ], [ 145.629835, 14.936643 ], [ 145.629796, 14.936672 ], [ 145.629752, 14.936662 ], [ 145.629698, 14.936547 ], [ 145.629689, 14.936518 ], [ 145.62964, 14.936499 ], [ 145.629596, 14.936446 ], [ 145.629582, 14.936264 ], [ 145.629602, 14.936159 ], [ 145.629637, 14.936116 ], [ 145.629603, 14.936068 ], [ 145.629544, 14.936053 ], [ 145.629475, 14.936029 ], [ 145.629397, 14.935952 ], [ 145.629346, 14.935885 ], [ 145.62939, 14.935847 ], [ 145.629479, 14.935785 ], [ 145.62947, 14.935713 ], [ 145.629425, 14.935737 ], [ 145.629386, 14.935737 ], [ 145.629422, 14.935536 ], [ 145.629486, 14.935479 ], [ 145.629453, 14.935287 ], [ 145.629478, 14.935235 ], [ 145.629439, 14.935187 ], [ 145.629395, 14.935158 ], [ 145.629302, 14.935081 ], [ 145.629327, 14.935019 ], [ 145.629376, 14.935014 ], [ 145.629386, 14.934933 ], [ 145.62948, 14.934929 ], [ 145.6295, 14.934838 ], [ 145.629559, 14.934786 ], [ 145.62956, 14.934695 ], [ 145.629536, 14.934561 ], [ 145.629487, 14.934508 ], [ 145.62938, 14.934412 ], [ 145.62936, 14.934349 ], [ 145.629361, 14.934278 ], [ 145.629332, 14.934263 ], [ 145.629337, 14.934187 ], [ 145.629306, 14.934086 ], [ 145.629306, 14.933995 ], [ 145.629366, 14.933933 ], [ 145.629371, 14.933895 ], [ 145.62942, 14.933867 ], [ 145.629465, 14.933776 ], [ 145.629451, 14.933723 ], [ 145.629421, 14.933666 ], [ 145.629501, 14.933551 ], [ 145.629531, 14.933456 ], [ 145.629566, 14.933284 ], [ 145.629616, 14.933232 ], [ 145.629631, 14.93316 ], [ 145.629686, 14.933117 ], [ 145.62975, 14.933075 ], [ 145.629751, 14.932893 ], [ 145.62984, 14.932779 ], [ 145.629885, 14.932702 ], [ 145.6299, 14.932616 ], [ 145.62992, 14.932559 ], [ 145.629994, 14.932545 ], [ 145.630019, 14.932512 ], [ 145.630029, 14.932455 ], [ 145.629976, 14.932382 ], [ 145.629976, 14.932363 ], [ 145.630064, 14.932402 ], [ 145.630099, 14.932364 ], [ 145.630114, 14.932302 ], [ 145.630058, 14.932225 ], [ 145.629979, 14.932244 ], [ 145.629915, 14.932215 ], [ 145.629906, 14.932138 ], [ 145.62994, 14.9321 ], [ 145.63, 14.932086 ], [ 145.630084, 14.931977 ], [ 145.630222, 14.931953 ], [ 145.630242, 14.931882 ], [ 145.630272, 14.931863 ], [ 145.630297, 14.931743 ], [ 145.630312, 14.931691 ], [ 145.630347, 14.931634 ], [ 145.630391, 14.931586 ], [ 145.630377, 14.931519 ], [ 145.630427, 14.931467 ], [ 145.630481, 14.931467 ], [ 145.630515, 14.931482 ], [ 145.63057, 14.93142 ], [ 145.63057, 14.931305 ], [ 145.630591, 14.931205 ], [ 145.630611, 14.931152 ], [ 145.630699, 14.931105 ], [ 145.630724, 14.931076 ], [ 145.630769, 14.931043 ], [ 145.63072, 14.931019 ], [ 145.63068, 14.93099 ], [ 145.630686, 14.930937 ], [ 145.630721, 14.930885 ], [ 145.630731, 14.930828 ], [ 145.63078, 14.930814 ], [ 145.630815, 14.930761 ], [ 145.63081, 14.930709 ], [ 145.63083, 14.93067 ], [ 145.630948, 14.930657 ], [ 145.631022, 14.930619 ], [ 145.631042, 14.930566 ], [ 145.63092, 14.930508 ], [ 145.630896, 14.930417 ], [ 145.630862, 14.930331 ], [ 145.630848, 14.93023 ], [ 145.630799, 14.930144 ], [ 145.630814, 14.930072 ], [ 145.630726, 14.93 ], [ 145.630687, 14.929943 ], [ 145.630685, 14.929852 ], [ 145.630622, 14.929756 ], [ 145.630613, 14.929631 ], [ 145.630574, 14.92954 ], [ 145.630565, 14.929377 ], [ 145.630522, 14.929296 ], [ 145.630527, 14.929133 ], [ 145.630484, 14.929037 ], [ 145.630484, 14.928999 ], [ 145.630536, 14.928966 ], [ 145.630559, 14.928875 ], [ 145.630593, 14.928818 ], [ 145.630608, 14.928765 ], [ 145.630545, 14.928708 ], [ 145.630565, 14.928622 ], [ 145.63059, 14.92855 ], [ 145.630615, 14.928521 ], [ 145.630645, 14.928507 ], [ 145.630716, 14.928517 ], [ 145.630756, 14.92846 ], [ 145.630771, 14.928408 ], [ 145.630756, 14.928331 ], [ 145.630791, 14.928269 ], [ 145.630811, 14.928217 ], [ 145.630762, 14.928144 ], [ 145.630699, 14.928091 ], [ 145.63064, 14.92801 ], [ 145.630596, 14.927962 ], [ 145.630567, 14.927895 ], [ 145.630592, 14.927856 ], [ 145.630637, 14.927828 ], [ 145.630671, 14.927823 ], [ 145.630672, 14.927827 ], [ 145.630685, 14.927886 ], [ 145.630724, 14.927962 ], [ 145.630763, 14.928006 ], [ 145.630793, 14.927996 ], [ 145.630887, 14.927892 ], [ 145.630858, 14.927801 ], [ 145.630888, 14.927696 ], [ 145.630958, 14.927596 ], [ 145.630988, 14.927534 ], [ 145.631013, 14.927495 ], [ 145.631023, 14.927414 ], [ 145.631048, 14.927323 ], [ 145.631127, 14.927243 ], [ 145.631181, 14.927253 ], [ 145.631305, 14.92721 ], [ 145.631305, 14.927162 ], [ 145.63133, 14.927129 ], [ 145.631418, 14.927149 ], [ 145.631492, 14.92714 ], [ 145.631495, 14.927068 ], [ 145.631525, 14.92702 ], [ 145.631609, 14.926987 ], [ 145.631609, 14.926959 ], [ 145.631545, 14.926934 ], [ 145.631521, 14.926896 ], [ 145.631521, 14.926848 ], [ 145.631565, 14.926824 ], [ 145.63161, 14.926767 ], [ 145.631556, 14.926729 ], [ 145.631477, 14.926709 ], [ 145.631453, 14.926661 ], [ 145.631473, 14.92657 ], [ 145.631513, 14.926499 ], [ 145.631548, 14.926466 ], [ 145.631642, 14.926433 ], [ 145.631637, 14.926385 ], [ 145.631603, 14.926332 ], [ 145.631554, 14.926279 ], [ 145.631662, 14.926256 ], [ 145.63177, 14.926285 ], [ 145.6318, 14.926218 ], [ 145.631756, 14.926175 ], [ 145.631772, 14.926103 ], [ 145.631875, 14.926027 ], [ 145.631891, 14.92586 ], [ 145.632054, 14.925828 ], [ 145.632088, 14.92578 ], [ 145.632226, 14.925733 ], [ 145.632227, 14.925685 ], [ 145.632271, 14.925676 ], [ 145.63232, 14.925652 ], [ 145.63234, 14.9256 ], [ 145.632365, 14.925557 ], [ 145.632336, 14.925509 ], [ 145.632282, 14.925499 ], [ 145.632243, 14.925503 ], [ 145.632223, 14.925465 ], [ 145.632238, 14.925427 ], [ 145.632255, 14.925436 ], [ 145.632312, 14.925403 ], [ 145.632288, 14.92537 ], [ 145.632244, 14.925322 ], [ 145.632185, 14.925226 ], [ 145.632139, 14.925139 ], [ 145.632105, 14.925034 ], [ 145.63218, 14.924958 ], [ 145.632273, 14.924906 ], [ 145.632353, 14.924801 ], [ 145.632467, 14.92472 ], [ 145.632526, 14.924577 ], [ 145.632645, 14.924477 ], [ 145.632799, 14.924335 ], [ 145.632917, 14.924283 ], [ 145.633011, 14.924217 ], [ 145.633142, 14.924112 ], [ 145.633172, 14.92405 ], [ 145.633216, 14.924036 ], [ 145.633275, 14.923984 ], [ 145.633335, 14.92397 ], [ 145.633369, 14.923893 ], [ 145.633414, 14.923851 ], [ 145.633587, 14.923727 ], [ 145.6337, 14.923718 ], [ 145.633735, 14.923661 ], [ 145.633809, 14.923561 ], [ 145.633894, 14.923466 ], [ 145.634007, 14.92339 ], [ 145.634091, 14.923343 ], [ 145.634145, 14.923319 ], [ 145.63416, 14.923291 ], [ 145.63424, 14.923219 ], [ 145.634348, 14.923153 ], [ 145.634437, 14.923149 ], [ 145.634457, 14.923116 ], [ 145.634555, 14.923107 ], [ 145.634575, 14.923073 ], [ 145.634629, 14.923064 ], [ 145.634698, 14.923098 ], [ 145.634767, 14.923108 ], [ 145.634816, 14.923036 ], [ 145.634855, 14.92307 ], [ 145.634905, 14.922994 ], [ 145.634984, 14.923009 ], [ 145.635038, 14.922966 ], [ 145.635137, 14.922871 ], [ 145.63528, 14.922757 ], [ 145.635448, 14.922777 ], [ 145.635506, 14.922816 ], [ 145.635566, 14.922763 ], [ 145.635634, 14.922783 ], [ 145.635822, 14.922655 ], [ 145.635916, 14.922646 ], [ 145.63593, 14.922694 ], [ 145.6361, 14.922642 ], [ 145.636223, 14.92259 ], [ 145.636297, 14.922576 ], [ 145.636622, 14.922578 ], [ 145.636745, 14.922574 ], [ 145.636867, 14.922666 ], [ 145.636995, 14.922667 ], [ 145.637015, 14.922595 ], [ 145.637134, 14.922586 ], [ 145.637291, 14.922602 ], [ 145.637385, 14.922554 ], [ 145.637518, 14.922526 ], [ 145.637557, 14.92256 ], [ 145.637641, 14.922522 ], [ 145.637714, 14.922528 ], [ 145.637773, 14.922585 ], [ 145.637818, 14.922547 ], [ 145.638063, 14.922563 ], [ 145.638078, 14.922587 ], [ 145.638196, 14.922593 ], [ 145.638279, 14.922631 ], [ 145.638584, 14.922647 ], [ 145.638638, 14.922638 ], [ 145.638816, 14.922639 ], [ 145.63884, 14.922673 ], [ 145.639031, 14.922722 ], [ 145.639106, 14.922679 ], [ 145.639341, 14.922767 ], [ 145.639454, 14.922815 ], [ 145.639488, 14.922854 ], [ 145.639523, 14.922835 ], [ 145.639614, 14.922864 ], [ 145.639628, 14.922941 ], [ 145.639652, 14.922941 ], [ 145.639795, 14.922879 ], [ 145.6398, 14.922899 ], [ 145.639854, 14.922889 ], [ 145.639948, 14.922909 ], [ 145.640104, 14.923034 ], [ 145.640281, 14.923045 ], [ 145.640311, 14.923074 ], [ 145.640384, 14.923084 ], [ 145.640473, 14.923118 ], [ 145.640526, 14.9232 ], [ 145.640585, 14.923224 ], [ 145.640639, 14.923305 ], [ 145.640661, 14.923314 ], [ 145.640717, 14.923339 ], [ 145.640801, 14.923335 ], [ 145.640816, 14.923287 ], [ 145.64085, 14.923302 ], [ 145.64086, 14.923355 ], [ 145.640993, 14.923365 ], [ 145.641061, 14.923442 ], [ 145.641277, 14.923472 ], [ 145.641375, 14.923559 ], [ 145.641448, 14.923659 ], [ 145.641493, 14.92366 ], [ 145.641571, 14.92377 ], [ 145.641629, 14.92379 ], [ 145.641762, 14.923824 ], [ 145.641816, 14.923886 ], [ 145.641806, 14.923934 ], [ 145.641874, 14.924049 ], [ 145.641943, 14.924064 ], [ 145.642021, 14.924093 ], [ 145.642119, 14.924108 ], [ 145.642109, 14.924156 ], [ 145.642173, 14.924185 ], [ 145.642315, 14.924286 ], [ 145.642391, 14.924354 ], [ 145.642563, 14.924336 ], [ 145.642568, 14.924427 ], [ 145.642641, 14.924413 ], [ 145.642671, 14.924432 ], [ 145.642646, 14.924508 ], [ 145.642749, 14.924576 ], [ 145.642891, 14.924644 ], [ 145.643023, 14.924668 ], [ 145.643136, 14.924741 ], [ 145.643264, 14.924775 ], [ 145.643278, 14.92488 ], [ 145.643322, 14.924957 ], [ 145.643371, 14.924991 ], [ 145.64339, 14.925029 ], [ 145.64336, 14.925067 ], [ 145.643375, 14.925106 ], [ 145.643434, 14.925154 ], [ 145.643537, 14.925179 ], [ 145.643571, 14.925236 ], [ 145.643659, 14.92527 ], [ 145.64386, 14.925439 ], [ 145.643904, 14.925444 ], [ 145.643928, 14.925477 ], [ 145.643899, 14.925544 ], [ 145.643932, 14.925621 ], [ 145.643976, 14.925669 ], [ 145.644015, 14.925727 ], [ 145.644064, 14.92577 ], [ 145.644148, 14.925794 ], [ 145.644177, 14.925838 ], [ 145.644305, 14.925853 ], [ 145.644364, 14.925872 ], [ 145.644428, 14.925901 ], [ 145.644338, 14.926001 ], [ 145.644355, 14.926083 ], [ 145.644492, 14.92627 ], [ 145.644595, 14.926304 ], [ 145.644703, 14.926353 ], [ 145.644806, 14.926296 ], [ 145.644934, 14.92632 ], [ 145.645229, 14.92636 ], [ 145.645288, 14.926361 ], [ 145.645307, 14.926504 ], [ 145.645346, 14.926538 ], [ 145.645375, 14.926591 ], [ 145.645449, 14.926639 ], [ 145.645334, 14.926863 ], [ 145.645322, 14.927188 ], [ 145.645479, 14.927275 ], [ 145.645635, 14.927501 ], [ 145.645664, 14.927559 ], [ 145.645723, 14.92755 ], [ 145.645777, 14.927583 ], [ 145.645757, 14.927669 ], [ 145.645751, 14.927765 ], [ 145.645893, 14.927924 ], [ 145.645942, 14.927938 ], [ 145.645977, 14.927943 ], [ 145.646021, 14.927924 ], [ 145.646136, 14.928021 ], [ 145.646195, 14.928035 ], [ 145.646239, 14.928093 ], [ 145.646303, 14.928103 ], [ 145.646332, 14.92817 ], [ 145.646317, 14.928223 ], [ 145.646262, 14.928265 ], [ 145.646262, 14.928313 ], [ 145.646297, 14.928318 ], [ 145.646409, 14.928424 ], [ 145.646414, 14.928472 ], [ 145.646443, 14.928477 ], [ 145.646492, 14.928463 ], [ 145.646502, 14.928492 ], [ 145.646487, 14.928602 ], [ 145.646535, 14.928731 ], [ 145.646682, 14.928789 ], [ 145.646755, 14.928885 ], [ 145.64678, 14.928948 ], [ 145.646824, 14.929001 ], [ 145.646852, 14.929092 ], [ 145.646964, 14.929274 ], [ 145.646974, 14.929341 ], [ 145.647013, 14.929365 ], [ 145.647047, 14.929404 ], [ 145.647062, 14.929466 ], [ 145.64706, 14.929705 ], [ 145.647094, 14.929763 ], [ 145.647076, 14.929916 ], [ 145.647207, 14.93018 ], [ 145.64728, 14.93029 ], [ 145.647348, 14.93041 ], [ 145.647388, 14.930429 ], [ 145.647426, 14.930525 ], [ 145.647406, 14.930654 ], [ 145.647435, 14.930688 ], [ 145.647513, 14.930856 ], [ 145.647493, 14.930889 ], [ 145.647507, 14.930947 ], [ 145.647507, 14.931085 ], [ 145.647595, 14.931172 ], [ 145.647654, 14.931144 ], [ 145.647747, 14.93124 ], [ 145.647761, 14.931302 ], [ 145.647814, 14.931427 ], [ 145.647799, 14.931479 ], [ 145.647784, 14.931575 ], [ 145.647813, 14.931632 ], [ 145.647857, 14.931657 ], [ 145.647876, 14.931719 ], [ 145.648023, 14.931835 ], [ 145.648023, 14.931868 ], [ 145.647978, 14.93193 ], [ 145.648024, 14.932055 ], [ 145.648063, 14.932117 ], [ 145.648117, 14.932151 ], [ 145.648161, 14.932256 ], [ 145.64823, 14.93229 ], [ 145.648351, 14.932544 ], [ 145.648473, 14.932741 ], [ 145.648512, 14.932703 ], [ 145.648566, 14.932694 ], [ 145.648571, 14.932751 ], [ 145.648522, 14.932775 ], [ 145.648482, 14.932823 ], [ 145.648501, 14.932866 ], [ 145.64856, 14.932904 ], [ 145.648599, 14.932943 ], [ 145.648599, 14.932986 ], [ 145.648638, 14.933058 ], [ 145.648701, 14.933154 ], [ 145.648711, 14.933221 ], [ 145.648789, 14.933346 ], [ 145.648867, 14.933461 ], [ 145.648925, 14.933557 ], [ 145.648974, 14.933586 ], [ 145.648974, 14.933634 ], [ 145.649033, 14.933644 ], [ 145.649092, 14.933611 ], [ 145.649141, 14.933611 ], [ 145.649191, 14.933587 ], [ 145.649259, 14.933688 ], [ 145.649293, 14.93376 ], [ 145.649277, 14.933889 ], [ 145.649243, 14.933903 ], [ 145.649228, 14.933965 ], [ 145.649257, 14.934013 ], [ 145.649286, 14.934033 ], [ 145.649382, 14.934038 ], [ 145.649465, 14.934082 ], [ 145.6495, 14.934115 ], [ 145.649514, 14.934154 ], [ 145.649573, 14.934144 ], [ 145.649593, 14.934092 ], [ 145.649692, 14.93404 ], [ 145.649776, 14.934036 ], [ 145.649805, 14.934074 ], [ 145.649854, 14.934151 ], [ 145.649923, 14.934151 ], [ 145.649962, 14.934195 ], [ 145.649957, 14.934214 ], [ 145.649888, 14.934228 ], [ 145.649883, 14.934256 ], [ 145.649945, 14.934419 ], [ 145.649896, 14.934419 ], [ 145.649867, 14.934452 ], [ 145.649886, 14.934534 ], [ 145.649949, 14.934587 ], [ 145.650033, 14.934578 ], [ 145.650057, 14.934621 ], [ 145.650042, 14.934673 ], [ 145.649958, 14.934735 ], [ 145.650109, 14.934949 ], [ 145.650114, 14.934956 ], [ 145.650178, 14.935066 ], [ 145.650182, 14.935148 ], [ 145.650235, 14.935263 ], [ 145.650294, 14.935316 ], [ 145.650358, 14.935321 ], [ 145.650402, 14.935383 ], [ 145.650446, 14.935422 ], [ 145.6505, 14.935437 ], [ 145.650535, 14.935389 ], [ 145.650574, 14.935394 ], [ 145.650623, 14.935423 ], [ 145.650598, 14.935456 ], [ 145.650593, 14.935538 ], [ 145.650627, 14.935547 ], [ 145.650676, 14.935572 ], [ 145.650715, 14.935677 ], [ 145.650749, 14.935715 ], [ 145.650803, 14.935759 ], [ 145.650842, 14.935812 ], [ 145.650891, 14.935836 ], [ 145.650984, 14.935856 ], [ 145.651033, 14.935899 ], [ 145.651142, 14.935828 ], [ 145.6513, 14.936044 ], [ 145.651364, 14.936035 ], [ 145.651418, 14.936083 ], [ 145.651374, 14.936159 ], [ 145.651388, 14.936217 ], [ 145.651348, 14.936264 ], [ 145.651509, 14.936519 ], [ 145.651509, 14.936571 ], [ 145.651523, 14.936619 ], [ 145.651577, 14.936639 ], [ 145.651547, 14.936696 ], [ 145.651601, 14.936811 ], [ 145.65163, 14.936864 ], [ 145.65163, 14.936907 ], [ 145.651772, 14.936941 ], [ 145.651811, 14.936975 ], [ 145.651915, 14.936956 ], [ 145.651949, 14.936995 ], [ 145.652008, 14.936971 ], [ 145.652057, 14.936943 ], [ 145.652136, 14.937001 ], [ 145.652184, 14.937097 ], [ 145.652204, 14.937121 ], [ 145.652253, 14.937131 ], [ 145.652272, 14.937164 ], [ 145.652243, 14.937207 ], [ 145.652198, 14.937245 ], [ 145.652188, 14.937341 ], [ 145.652217, 14.937374 ], [ 145.652226, 14.937461 ], [ 145.652256, 14.937513 ], [ 145.652245, 14.93759 ], [ 145.65227, 14.937633 ], [ 145.652319, 14.937662 ], [ 145.652343, 14.937715 ], [ 145.652372, 14.937758 ], [ 145.652421, 14.937811 ], [ 145.652445, 14.937859 ], [ 145.65244, 14.937907 ], [ 145.652445, 14.93795 ], [ 145.652479, 14.937979 ], [ 145.652454, 14.938007 ], [ 145.65237, 14.938074 ], [ 145.652377, 14.93815 ], [ 145.652426, 14.938208 ], [ 145.652479, 14.938318 ], [ 145.652484, 14.938371 ], [ 145.652508, 14.938424 ], [ 145.652537, 14.938467 ], [ 145.652483, 14.93851 ], [ 145.652325, 14.938599 ], [ 145.652324, 14.938776 ], [ 145.652195, 14.938938 ], [ 145.652224, 14.939082 ], [ 145.652197, 14.939111 ], [ 145.65205, 14.939263 ], [ 145.652005, 14.939353 ], [ 145.652025, 14.939416 ], [ 145.652117, 14.939617 ], [ 145.652068, 14.939641 ], [ 145.651949, 14.939659 ], [ 145.65189, 14.939721 ], [ 145.651836, 14.939735 ], [ 145.651752, 14.939691 ], [ 145.651674, 14.93972 ], [ 145.65159, 14.939724 ], [ 145.65153, 14.9398 ], [ 145.65152, 14.939862 ], [ 145.651559, 14.939925 ], [ 145.651544, 14.939958 ], [ 145.651442, 14.940125 ], [ 145.651457, 14.940192 ], [ 145.651535, 14.940283 ], [ 145.651647, 14.940423 ], [ 145.651602, 14.940489 ], [ 145.651533, 14.94058 ], [ 145.651493, 14.940599 ], [ 145.651429, 14.940641 ], [ 145.651424, 14.940708 ], [ 145.651409, 14.940794 ], [ 145.651457, 14.940929 ], [ 145.651496, 14.940977 ], [ 145.651436, 14.941072 ], [ 145.65147, 14.941139 ], [ 145.651465, 14.941273 ], [ 145.651499, 14.941316 ], [ 145.651533, 14.941302 ], [ 145.651592, 14.941341 ], [ 145.651626, 14.941398 ], [ 145.651749, 14.941409 ], [ 145.651793, 14.941438 ], [ 145.651798, 14.941514 ], [ 145.651866, 14.941629 ], [ 145.651831, 14.941672 ], [ 145.651836, 14.94171 ], [ 145.65189, 14.941739 ], [ 145.651958, 14.941764 ], [ 145.651943, 14.941792 ], [ 145.651894, 14.941859 ], [ 145.651938, 14.941878 ], [ 145.652012, 14.941903 ], [ 145.652056, 14.941956 ], [ 145.652045, 14.942013 ], [ 145.651996, 14.942075 ], [ 145.65204, 14.942137 ], [ 145.652044, 14.94219 ], [ 145.652137, 14.942277 ], [ 145.65224, 14.942292 ], [ 145.652245, 14.942344 ], [ 145.652289, 14.94244 ], [ 145.652323, 14.942464 ], [ 145.652357, 14.942512 ], [ 145.652357, 14.94257 ], [ 145.652371, 14.942613 ], [ 145.65246, 14.942609 ], [ 145.652504, 14.942671 ], [ 145.652508, 14.942748 ], [ 145.652601, 14.942791 ], [ 145.652655, 14.942854 ], [ 145.652684, 14.942926 ], [ 145.652694, 14.942983 ], [ 145.652753, 14.943007 ], [ 145.652792, 14.942988 ], [ 145.652812, 14.942936 ], [ 145.652871, 14.942951 ], [ 145.65289, 14.943008 ], [ 145.65287, 14.94307 ], [ 145.652831, 14.943084 ], [ 145.652816, 14.943123 ], [ 145.652827, 14.943196 ], [ 145.652876, 14.943206 ], [ 145.652965, 14.943216 ], [ 145.653023, 14.943312 ], [ 145.653082, 14.94336 ], [ 145.653037, 14.943461 ], [ 145.65311, 14.943499 ], [ 145.653076, 14.943557 ], [ 145.65306, 14.943643 ], [ 145.65309, 14.943686 ], [ 145.653178, 14.943763 ], [ 145.653286, 14.943744 ], [ 145.653291, 14.943811 ], [ 145.653349, 14.943831 ], [ 145.653349, 14.943852 ], [ 145.653356, 14.943884 ], [ 145.653375, 14.943882 ], [ 145.653395, 14.943872 ], [ 145.653411, 14.943858 ], [ 145.653402, 14.943842 ], [ 145.653426, 14.943795 ], [ 145.653497, 14.943793 ], [ 145.653546, 14.943822 ], [ 145.653565, 14.943899 ], [ 145.65356, 14.943952 ], [ 145.653639, 14.943986 ], [ 145.653708, 14.944 ], [ 145.653805, 14.944092 ], [ 145.653839, 14.944212 ], [ 145.653775, 14.944264 ], [ 145.65373, 14.944292 ], [ 145.65373, 14.944345 ], [ 145.653764, 14.944359 ], [ 145.653833, 14.944422 ], [ 145.653876, 14.944513 ], [ 145.653763, 14.944575 ], [ 145.653792, 14.944613 ], [ 145.653866, 14.944604 ], [ 145.653944, 14.944676 ], [ 145.65389, 14.944743 ], [ 145.653919, 14.944786 ], [ 145.653978, 14.944844 ], [ 145.654002, 14.944944 ], [ 145.654051, 14.944983 ], [ 145.65409, 14.944988 ], [ 145.654159, 14.945022 ], [ 145.654242, 14.945013 ], [ 145.654213, 14.945065 ], [ 145.654124, 14.945112 ], [ 145.654094, 14.945194 ], [ 145.654083, 14.945308 ], [ 145.654142, 14.945404 ], [ 145.654191, 14.945438 ], [ 145.654254, 14.945472 ], [ 145.654293, 14.945515 ], [ 145.654391, 14.945602 ], [ 145.65445, 14.945703 ], [ 145.654498, 14.94576 ], [ 145.654547, 14.945799 ], [ 145.654572, 14.945856 ], [ 145.654749, 14.945886 ], [ 145.654857, 14.945925 ], [ 145.65492, 14.946016 ], [ 145.655018, 14.946079 ], [ 145.655111, 14.946123 ], [ 145.655219, 14.946109 ], [ 145.655268, 14.946162 ], [ 145.655376, 14.946206 ], [ 145.655465, 14.946158 ], [ 145.65548, 14.946068 ], [ 145.655447, 14.945991 ], [ 145.655515, 14.945996 ], [ 145.655529, 14.946101 ], [ 145.655648, 14.946107 ], [ 145.655717, 14.946069 ], [ 145.655997, 14.946004 ], [ 145.656047, 14.945975 ], [ 145.656116, 14.945985 ], [ 145.656179, 14.946052 ], [ 145.656273, 14.946029 ], [ 145.656331, 14.946092 ], [ 145.6564, 14.946207 ], [ 145.656513, 14.946169 ], [ 145.656557, 14.946246 ], [ 145.65663, 14.946356 ], [ 145.656708, 14.946453 ], [ 145.656801, 14.946578 ], [ 145.656938, 14.946703 ], [ 145.657183, 14.946872 ], [ 145.657335, 14.946959 ], [ 145.657361, 14.94705 ], [ 145.657497, 14.94727 ], [ 145.65764, 14.947333 ], [ 145.658023, 14.947383 ], [ 145.658047, 14.947561 ], [ 145.658086, 14.947628 ], [ 145.658287, 14.947682 ], [ 145.65836, 14.947735 ], [ 145.658444, 14.947788 ], [ 145.658433, 14.947879 ], [ 145.658501, 14.948032 ], [ 145.658579, 14.948128 ], [ 145.658711, 14.948268 ], [ 145.658739, 14.94831 ], [ 145.658799, 14.948402 ], [ 145.658873, 14.948403 ], [ 145.65902, 14.948432 ], [ 145.659089, 14.948385 ], [ 145.659169, 14.948309 ], [ 145.659267, 14.948295 ], [ 145.659306, 14.948348 ], [ 145.659325, 14.948415 ], [ 145.659404, 14.948449 ], [ 145.659532, 14.948488 ], [ 145.659644, 14.948551 ], [ 145.659738, 14.948565 ], [ 145.659797, 14.948585 ], [ 145.659875, 14.948638 ], [ 145.65987, 14.948671 ], [ 145.659874, 14.948753 ], [ 145.659908, 14.948815 ], [ 145.659972, 14.948811 ], [ 145.660017, 14.948763 ], [ 145.660061, 14.948773 ], [ 145.660101, 14.948725 ], [ 145.66017, 14.948697 ], [ 145.660214, 14.948654 ], [ 145.660229, 14.948631 ], [ 145.660328, 14.948583 ], [ 145.660378, 14.948536 ], [ 145.660451, 14.948541 ], [ 145.660624, 14.948489 ], [ 145.660708, 14.948437 ], [ 145.660801, 14.948409 ], [ 145.660791, 14.948452 ], [ 145.660808, 14.948469 ], [ 145.660826, 14.948476 ], [ 145.660905, 14.948434 ], [ 145.660934, 14.948391 ], [ 145.661018, 14.948348 ], [ 145.661137, 14.948272 ], [ 145.661176, 14.94822 ], [ 145.661206, 14.948167 ], [ 145.661305, 14.948139 ], [ 145.661369, 14.948135 ], [ 145.661413, 14.948188 ], [ 145.661437, 14.948245 ], [ 145.661506, 14.948303 ], [ 145.661582, 14.948275 ], [ 145.661671, 14.948223 ], [ 145.66175, 14.948128 ], [ 145.661839, 14.948085 ], [ 145.661908, 14.948019 ], [ 145.661958, 14.947952 ], [ 145.661972, 14.947995 ], [ 145.662041, 14.948034 ], [ 145.662168, 14.94813 ], [ 145.662305, 14.948313 ], [ 145.662457, 14.948457 ], [ 145.662515, 14.948496 ], [ 145.662731, 14.948669 ], [ 145.662834, 14.948655 ], [ 145.662928, 14.948661 ], [ 145.663036, 14.948661 ], [ 145.663085, 14.948623 ], [ 145.663267, 14.948605 ], [ 145.663302, 14.948519 ], [ 145.663362, 14.948496 ], [ 145.663426, 14.948424 ], [ 145.663421, 14.948377 ], [ 145.66347, 14.948406 ], [ 145.66352, 14.948387 ], [ 145.663574, 14.94833 ], [ 145.66357, 14.948267 ], [ 145.663629, 14.948186 ], [ 145.663718, 14.948087 ], [ 145.663767, 14.948116 ], [ 145.663807, 14.94803 ], [ 145.663857, 14.947996 ], [ 145.663965, 14.948031 ], [ 145.664004, 14.948002 ], [ 145.664033, 14.947952 ], [ 145.664116, 14.94797 ], [ 145.66415, 14.947993 ], [ 145.664192, 14.948011 ], [ 145.664238, 14.947995 ], [ 145.664249, 14.947975 ], [ 145.66425, 14.947965 ], [ 145.664247, 14.947948 ], [ 145.66428, 14.947908 ], [ 145.664333, 14.947951 ], [ 145.664367, 14.947972 ], [ 145.664435, 14.947933 ], [ 145.664548, 14.947953 ], [ 145.664573, 14.947924 ], [ 145.664667, 14.947872 ], [ 145.664663, 14.947891 ], [ 145.664799, 14.948002 ], [ 145.664882, 14.948098 ], [ 145.664936, 14.948127 ], [ 145.66496, 14.948118 ], [ 145.665064, 14.948114 ], [ 145.665201, 14.948153 ], [ 145.66529, 14.948115 ], [ 145.665492, 14.948154 ], [ 145.665496, 14.948274 ], [ 145.665424, 14.948347 ], [ 145.665407, 14.948355 ], [ 145.665352, 14.948393 ], [ 145.665288, 14.948445 ], [ 145.665184, 14.948554 ], [ 145.665149, 14.948597 ], [ 145.6651, 14.948683 ], [ 145.665139, 14.948755 ], [ 145.665158, 14.948808 ], [ 145.665251, 14.948918 ], [ 145.665269, 14.949062 ], [ 145.665264, 14.949124 ], [ 145.665327, 14.949316 ], [ 145.665386, 14.949302 ], [ 145.66543, 14.949302 ], [ 145.665538, 14.949331 ], [ 145.665666, 14.949399 ], [ 145.66572, 14.949447 ], [ 145.665896, 14.949572 ], [ 145.665925, 14.949611 ], [ 145.66589, 14.949702 ], [ 145.665851, 14.949754 ], [ 145.665811, 14.949792 ], [ 145.665761, 14.949897 ], [ 145.665785, 14.949969 ], [ 145.665834, 14.950041 ], [ 145.665858, 14.950194 ], [ 145.665907, 14.950271 ], [ 145.665955, 14.950329 ], [ 145.665979, 14.950439 ], [ 145.665748, 14.950423 ], [ 145.665546, 14.950417 ], [ 145.665359, 14.950478 ], [ 145.664758, 14.950551 ], [ 145.664595, 14.950694 ], [ 145.664505, 14.950885 ], [ 145.664466, 14.950836 ], [ 145.664303, 14.950965 ], [ 145.664189, 14.951088 ], [ 145.664198, 14.951227 ], [ 145.6641, 14.95126 ], [ 145.664089, 14.951375 ], [ 145.664133, 14.951428 ], [ 145.664122, 14.951571 ], [ 145.664156, 14.951638 ], [ 145.664185, 14.95172 ], [ 145.664249, 14.951711 ], [ 145.664309, 14.951653 ], [ 145.664357, 14.951745 ], [ 145.664308, 14.951773 ], [ 145.664259, 14.95183 ], [ 145.664312, 14.951883 ], [ 145.664371, 14.95195 ], [ 145.664302, 14.952007 ], [ 145.664321, 14.952074 ], [ 145.66432, 14.952242 ], [ 145.664246, 14.952323 ], [ 145.664171, 14.952523 ], [ 145.66421, 14.952547 ], [ 145.664298, 14.952615 ], [ 145.664386, 14.952663 ], [ 145.664371, 14.95274 ], [ 145.664312, 14.952782 ], [ 145.664179, 14.95281 ], [ 145.664145, 14.952762 ], [ 145.66407, 14.952867 ], [ 145.664109, 14.952934 ], [ 145.664045, 14.953001 ], [ 145.663921, 14.953086 ], [ 145.663931, 14.953134 ], [ 145.663896, 14.953196 ], [ 145.663852, 14.953162 ], [ 145.663768, 14.953162 ], [ 145.663719, 14.9532 ], [ 145.663763, 14.953238 ], [ 145.663531, 14.953371 ], [ 145.663515, 14.953471 ], [ 145.663535, 14.953524 ], [ 145.663426, 14.953633 ], [ 145.663366, 14.953815 ], [ 145.663394, 14.954068 ], [ 145.663344, 14.954102 ], [ 145.663295, 14.95413 ], [ 145.663265, 14.954187 ], [ 145.663353, 14.954212 ], [ 145.663318, 14.954278 ], [ 145.663357, 14.954365 ], [ 145.663287, 14.954517 ], [ 145.6634, 14.954647 ], [ 145.66337, 14.9547 ], [ 145.663001, 14.95475 ], [ 145.663064, 14.954927 ], [ 145.663024, 14.954989 ], [ 145.662791, 14.95527 ], [ 145.66284, 14.955333 ], [ 145.662874, 14.955405 ], [ 145.662735, 14.955461 ], [ 145.662696, 14.955552 ], [ 145.662774, 14.955615 ], [ 145.662734, 14.955734 ], [ 145.66262, 14.955819 ], [ 145.662625, 14.955862 ], [ 145.662782, 14.955921 ], [ 145.662653, 14.955992 ], [ 145.662545, 14.955977 ], [ 145.662505, 14.956072 ], [ 145.662313, 14.956219 ], [ 145.662247, 14.956549 ], [ 145.662128, 14.956697 ], [ 145.662152, 14.956754 ], [ 145.662082, 14.956835 ], [ 145.662072, 14.956983 ], [ 145.661964, 14.956973 ], [ 145.661827, 14.957127 ], [ 145.661824, 14.957242 ], [ 145.66176, 14.957352 ], [ 145.661676, 14.957323 ], [ 145.661616, 14.957514 ], [ 145.6616, 14.957662 ], [ 145.661654, 14.957715 ], [ 145.661559, 14.957896 ], [ 145.661549, 14.958063 ], [ 145.661484, 14.958192 ], [ 145.661389, 14.958349 ], [ 145.661339, 14.958536 ], [ 145.661347, 14.958775 ], [ 145.661381, 14.958852 ], [ 145.6614, 14.958971 ], [ 145.661429, 14.959062 ], [ 145.661397, 14.959129 ], [ 145.661376, 14.959296 ], [ 145.661404, 14.959502 ], [ 145.661443, 14.959694 ], [ 145.661442, 14.959765 ], [ 145.66154, 14.959895 ], [ 145.661608, 14.959939 ], [ 145.661598, 14.960029 ], [ 145.661607, 14.960082 ], [ 145.661636, 14.960159 ], [ 145.661706, 14.960121 ], [ 145.661774, 14.96015 ], [ 145.661803, 14.960275 ], [ 145.661768, 14.960346 ], [ 145.661763, 14.960442 ], [ 145.661806, 14.960586 ], [ 145.661928, 14.960763 ], [ 145.662006, 14.960893 ], [ 145.662113, 14.961003 ], [ 145.66213, 14.961142 ], [ 145.662158, 14.961281 ], [ 145.662167, 14.961458 ], [ 145.662102, 14.961573 ], [ 145.662011, 14.962041 ], [ 145.66203, 14.962194 ], [ 145.662048, 14.962381 ], [ 145.662087, 14.96251 ], [ 145.662253, 14.962717 ], [ 145.662267, 14.962812 ], [ 145.662276, 14.962946 ], [ 145.662236, 14.963013 ], [ 145.662204, 14.963027 ], [ 145.662125, 14.963084 ], [ 145.662115, 14.963142 ], [ 145.662041, 14.963208 ], [ 145.662001, 14.963222 ], [ 145.661823, 14.963326 ], [ 145.66169, 14.96345 ], [ 145.66166, 14.963493 ], [ 145.661669, 14.963612 ], [ 145.661713, 14.96368 ], [ 145.661752, 14.963718 ], [ 145.661845, 14.963747 ], [ 145.661909, 14.96381 ], [ 145.661909, 14.963863 ], [ 145.661942, 14.963978 ], [ 145.661898, 14.96403 ], [ 145.661893, 14.963987 ], [ 145.661799, 14.964015 ], [ 145.66176, 14.964091 ], [ 145.661858, 14.964082 ], [ 145.661931, 14.964169 ], [ 145.661985, 14.964255 ], [ 145.662083, 14.964265 ], [ 145.662107, 14.964352 ], [ 145.662107, 14.964404 ], [ 145.662116, 14.96449 ], [ 145.662106, 14.964591 ], [ 145.662125, 14.964672 ], [ 145.662105, 14.964797 ], [ 145.66206, 14.964844 ], [ 145.662052, 14.964887 ], [ 145.661939, 14.964915 ], [ 145.66186, 14.964986 ], [ 145.661721, 14.96512 ], [ 145.661642, 14.965181 ], [ 145.661691, 14.965244 ], [ 145.661774, 14.965297 ], [ 145.661833, 14.965369 ], [ 145.661945, 14.96548 ], [ 145.662009, 14.965585 ], [ 145.662082, 14.965662 ], [ 145.662195, 14.965715 ], [ 145.662312, 14.965802 ], [ 145.662376, 14.96587 ], [ 145.662469, 14.965913 ], [ 145.662596, 14.966081 ], [ 145.662796, 14.966417 ], [ 145.662947, 14.966586 ], [ 145.663016, 14.967036 ], [ 145.663128, 14.967165 ], [ 145.663313, 14.967415 ], [ 145.663416, 14.967526 ], [ 145.663475, 14.967612 ], [ 145.66343, 14.967655 ], [ 145.66341, 14.967755 ], [ 145.663419, 14.967851 ], [ 145.66335, 14.967922 ], [ 145.663276, 14.967975 ], [ 145.66327, 14.968065 ], [ 145.663304, 14.968128 ], [ 145.663333, 14.968205 ], [ 145.663378, 14.968195 ], [ 145.66354, 14.96823 ], [ 145.663598, 14.968307 ], [ 145.663662, 14.968374 ], [ 145.663681, 14.968422 ], [ 145.663558, 14.968469 ], [ 145.663577, 14.968555 ], [ 145.663685, 14.968623 ], [ 145.663684, 14.968709 ], [ 145.663768, 14.968757 ], [ 145.663826, 14.968844 ], [ 145.664173, 14.969214 ], [ 145.664325, 14.969349 ], [ 145.664476, 14.969527 ], [ 145.66451, 14.969608 ], [ 145.664574, 14.969695 ], [ 145.664679, 14.969748 ], [ 145.664895, 14.969787 ], [ 145.665019, 14.969731 ], [ 145.665116, 14.96986 ], [ 145.665244, 14.969986 ], [ 145.665371, 14.970063 ], [ 145.665341, 14.970154 ], [ 145.665272, 14.970234 ], [ 145.665182, 14.970363 ], [ 145.665186, 14.970473 ], [ 145.665269, 14.97056 ], [ 145.665377, 14.970656 ], [ 145.665395, 14.970886 ], [ 145.665441, 14.971015 ], [ 145.665471, 14.971058 ], [ 145.665519, 14.97114 ], [ 145.665568, 14.971202 ], [ 145.665715, 14.971323 ], [ 145.665764, 14.971419 ], [ 145.665773, 14.971486 ], [ 145.665758, 14.971581 ], [ 145.665777, 14.971682 ], [ 145.665776, 14.971749 ], [ 145.665795, 14.971873 ], [ 145.665735, 14.971997 ], [ 145.665681, 14.972059 ], [ 145.665582, 14.97215 ], [ 145.665493, 14.972288 ], [ 145.665507, 14.97234 ], [ 145.665595, 14.972413 ], [ 145.665555, 14.972518 ], [ 145.665559, 14.972599 ], [ 145.665458, 14.972694 ], [ 145.665517, 14.972723 ], [ 145.665639, 14.972824 ], [ 145.665506, 14.972967 ], [ 145.665421, 14.973081 ], [ 145.665401, 14.973229 ], [ 145.665316, 14.973329 ], [ 145.665341, 14.973373 ], [ 145.66528, 14.973664 ], [ 145.665225, 14.973745 ], [ 145.665121, 14.973859 ], [ 145.664953, 14.973983 ], [ 145.664879, 14.974044 ], [ 145.664913, 14.974116 ], [ 145.664942, 14.974203 ], [ 145.665025, 14.974265 ], [ 145.664995, 14.974299 ], [ 145.664832, 14.974408 ], [ 145.664768, 14.974498 ], [ 145.664532, 14.974774 ], [ 145.664295, 14.974955 ], [ 145.664196, 14.975045 ], [ 145.664141, 14.97515 ], [ 145.6642, 14.975251 ], [ 145.66417, 14.975322 ], [ 145.66408, 14.975446 ], [ 145.663872, 14.97576 ], [ 145.663925, 14.975914 ], [ 145.664008, 14.975967 ], [ 145.664136, 14.976015 ], [ 145.664169, 14.976183 ], [ 145.664164, 14.976307 ], [ 145.664222, 14.97636 ], [ 145.664296, 14.976437 ], [ 145.664246, 14.976494 ], [ 145.664177, 14.97659 ], [ 145.664073, 14.976666 ], [ 145.664036, 14.976732 ], [ 145.663858, 14.976746 ], [ 145.663711, 14.976769 ], [ 145.663627, 14.976811 ], [ 145.663538, 14.976902 ], [ 145.663503, 14.976973 ], [ 145.663507, 14.977055 ], [ 145.663684, 14.977089 ], [ 145.663725, 14.977149 ], [ 145.663733, 14.977161 ], [ 145.663816, 14.977224 ], [ 145.66389, 14.977219 ], [ 145.664038, 14.977153 ], [ 145.664185, 14.977207 ], [ 145.664273, 14.977289 ], [ 145.664307, 14.977423 ], [ 145.664247, 14.977489 ], [ 145.664247, 14.97758 ], [ 145.66432, 14.977657 ], [ 145.664443, 14.97772 ], [ 145.664506, 14.977773 ], [ 145.66454, 14.977898 ], [ 145.664559, 14.977984 ], [ 145.664613, 14.978027 ], [ 145.664717, 14.977966 ], [ 145.664751, 14.978076 ], [ 145.664814, 14.978129 ], [ 145.664838, 14.978186 ], [ 145.664858, 14.978263 ], [ 145.664916, 14.978311 ], [ 145.665218, 14.978461 ], [ 145.665223, 14.978523 ], [ 145.665316, 14.978581 ], [ 145.665424, 14.97862 ], [ 145.665482, 14.97875 ], [ 145.66556, 14.978798 ], [ 145.665786, 14.978866 ], [ 145.665997, 14.979054 ], [ 145.66611, 14.979112 ], [ 145.666315, 14.979329 ], [ 145.6663, 14.979405 ], [ 145.666304, 14.979501 ], [ 145.666269, 14.979596 ], [ 145.666298, 14.979678 ], [ 145.666337, 14.979683 ], [ 145.666401, 14.979755 ], [ 145.666347, 14.980094 ], [ 145.666419, 14.980343 ], [ 145.666493, 14.980368 ], [ 145.666576, 14.980449 ], [ 145.666595, 14.98055 ], [ 145.666639, 14.980684 ], [ 145.666657, 14.980833 ], [ 145.66674, 14.980938 ], [ 145.666868, 14.980949 ], [ 145.666957, 14.980992 ], [ 145.667064, 14.981117 ], [ 145.667107, 14.981285 ], [ 145.667136, 14.981371 ], [ 145.66722, 14.981439 ], [ 145.667263, 14.981577 ], [ 145.667361, 14.98164 ], [ 145.66743, 14.981631 ], [ 145.667508, 14.981675 ], [ 145.667606, 14.981747 ], [ 145.667603, 14.981833 ], [ 145.667612, 14.981967 ], [ 145.667661, 14.982058 ], [ 145.667769, 14.982111 ], [ 145.667842, 14.982227 ], [ 145.667896, 14.982327 ], [ 145.66788, 14.982447 ], [ 145.667909, 14.982543 ], [ 145.667997, 14.982596 ], [ 145.668075, 14.982687 ], [ 145.66807, 14.982835 ], [ 145.668, 14.982935 ], [ 145.668098, 14.983065 ], [ 145.668063, 14.983146 ], [ 145.668116, 14.983223 ], [ 145.66816, 14.983247 ], [ 145.668141, 14.98362 ], [ 145.668081, 14.983696 ], [ 145.668095, 14.983811 ], [ 145.668154, 14.98385 ], [ 145.668208, 14.983917 ], [ 145.668212, 14.983999 ], [ 145.668276, 14.984123 ], [ 145.66829, 14.984243 ], [ 145.668338, 14.984368 ], [ 145.668279, 14.984439 ], [ 145.668263, 14.984563 ], [ 145.668346, 14.984645 ], [ 145.668321, 14.984688 ], [ 145.668335, 14.984798 ], [ 145.668375, 14.984813 ], [ 145.668433, 14.98488 ], [ 145.668494, 14.984966 ], [ 145.668464, 14.985086 ], [ 145.668527, 14.985225 ], [ 145.668626, 14.985173 ], [ 145.668699, 14.985279 ], [ 145.668777, 14.985413 ], [ 145.668796, 14.985547 ], [ 145.668928, 14.985725 ], [ 145.66904, 14.98584 ], [ 145.669113, 14.986013 ], [ 145.669068, 14.986146 ], [ 145.669082, 14.986247 ], [ 145.669111, 14.986309 ], [ 145.669135, 14.986372 ], [ 145.669076, 14.98641 ], [ 145.669056, 14.986491 ], [ 145.66909, 14.986505 ], [ 145.669097, 14.986591 ], [ 145.669131, 14.986683 ], [ 145.669125, 14.986769 ], [ 145.668991, 14.986959 ], [ 145.668999, 14.987227 ], [ 145.669063, 14.987299 ], [ 145.669111, 14.987424 ], [ 145.669165, 14.987505 ], [ 145.669081, 14.987596 ], [ 145.669095, 14.987672 ], [ 145.669154, 14.987725 ], [ 145.669153, 14.987807 ], [ 145.669202, 14.987903 ], [ 145.669258, 14.98798 ], [ 145.669396, 14.987913 ], [ 145.669455, 14.987942 ], [ 145.669527, 14.988259 ], [ 145.669546, 14.988407 ], [ 145.66958, 14.988493 ], [ 145.669535, 14.988603 ], [ 145.669563, 14.98878 ], [ 145.669632, 14.988862 ], [ 145.6697, 14.988967 ], [ 145.669788, 14.989092 ], [ 145.669806, 14.989226 ], [ 145.669747, 14.989326 ], [ 145.669751, 14.98947 ], [ 145.669762, 14.98957 ], [ 145.669772, 14.989657 ], [ 145.669732, 14.989671 ], [ 145.6696, 14.989627 ], [ 145.669579, 14.989818 ], [ 145.669637, 14.990034 ], [ 145.669676, 14.990077 ], [ 145.669828, 14.990097 ], [ 145.669862, 14.990164 ], [ 145.669719, 14.990249 ], [ 145.669669, 14.990359 ], [ 145.669771, 14.990513 ], [ 145.66983, 14.990566 ], [ 145.669844, 14.990671 ], [ 145.669903, 14.990758 ], [ 145.669912, 14.990896 ], [ 145.669975, 14.990964 ], [ 145.669925, 14.991064 ], [ 145.669999, 14.991122 ], [ 145.669989, 14.991184 ], [ 145.67003, 14.991284 ], [ 145.670054, 14.991371 ], [ 145.670024, 14.991427 ], [ 145.670009, 14.991456 ], [ 145.669993, 14.991609 ], [ 145.670012, 14.991739 ], [ 145.670075, 14.991873 ], [ 145.670016, 14.991944 ], [ 145.669897, 14.992059 ], [ 145.669935, 14.992231 ], [ 145.670023, 14.992332 ], [ 145.670037, 14.992452 ], [ 145.669938, 14.992594 ], [ 145.669923, 14.992709 ], [ 145.669991, 14.992834 ], [ 145.670094, 14.992916 ], [ 145.670123, 14.992997 ], [ 145.670147, 14.993103 ], [ 145.670151, 14.993189 ], [ 145.670205, 14.993266 ], [ 145.67028, 14.993362 ], [ 145.670407, 14.993506 ], [ 145.670451, 14.99365 ], [ 145.670405, 14.993898 ], [ 145.670429, 14.994028 ], [ 145.670428, 14.994219 ], [ 145.670461, 14.994377 ], [ 145.670495, 14.994468 ], [ 145.670438, 14.994865 ], [ 145.670452, 14.994989 ], [ 145.670545, 14.995124 ], [ 145.670657, 14.995272 ], [ 145.670642, 14.995363 ], [ 145.670674, 14.995383 ], [ 145.670806, 14.995503 ], [ 145.671022, 14.995633 ], [ 145.671154, 14.995768 ], [ 145.671143, 14.995897 ], [ 145.671098, 14.99605 ], [ 145.671127, 14.996155 ], [ 145.671195, 14.996266 ], [ 145.671224, 14.996381 ], [ 145.671149, 14.996543 ], [ 145.67102, 14.996647 ], [ 145.670877, 14.996709 ], [ 145.670877, 14.996819 ], [ 145.67092, 14.996905 ], [ 145.670964, 14.996972 ], [ 145.670944, 14.997063 ], [ 145.670939, 14.997125 ], [ 145.671049, 14.997217 ], [ 145.671171, 14.997308 ], [ 145.671313, 14.997429 ], [ 145.671337, 14.997582 ], [ 145.67142, 14.99764 ], [ 145.671528, 14.997698 ], [ 145.671541, 14.997713 ], [ 145.671616, 14.997799 ], [ 145.671605, 14.997961 ], [ 145.671624, 14.9981 ], [ 145.671584, 14.998234 ], [ 145.671642, 14.998316 ], [ 145.671716, 14.998373 ], [ 145.6717, 14.998459 ], [ 145.671744, 14.998579 ], [ 145.671674, 14.998689 ], [ 145.671704, 14.998756 ], [ 145.671702, 14.998962 ], [ 145.671741, 14.999072 ], [ 145.67174, 14.999215 ], [ 145.671724, 14.999464 ], [ 145.671753, 14.999565 ], [ 145.671816, 14.999694 ], [ 145.671928, 14.9999 ], [ 145.672003, 15.000003 ], [ 145.672016, 15.000021 ], [ 145.672099, 15.000078 ], [ 145.672098, 15.000165 ], [ 145.672181, 15.00027 ], [ 145.672269, 15.000357 ], [ 145.67224, 15.000419 ], [ 145.672239, 15.000505 ], [ 145.672179, 15.000596 ], [ 145.672179, 15.00072 ], [ 145.672281, 15.00084 ], [ 145.672276, 15.000893 ], [ 145.672276, 15.000955 ], [ 145.672307, 15.000993 ], [ 145.672386, 15.001056 ], [ 145.672419, 15.001204 ], [ 145.672448, 15.001401 ], [ 145.672511, 15.001487 ], [ 145.672545, 15.001612 ], [ 145.672642, 15.001746 ], [ 145.672656, 15.001904 ], [ 145.672709, 15.002034 ], [ 145.672841, 15.00224 ], [ 145.672811, 15.002316 ], [ 145.672899, 15.002355 ], [ 145.672904, 15.00247 ], [ 145.672942, 15.002623 ], [ 145.672922, 15.002733 ], [ 145.672931, 15.002872 ], [ 145.672981, 15.003121 ], [ 145.673058, 15.003399 ], [ 145.673208, 15.00373 ], [ 145.673247, 15.003873 ], [ 145.673275, 15.004055 ], [ 145.673358, 15.004142 ], [ 145.673456, 15.004205 ], [ 145.6735, 15.004301 ], [ 145.673554, 15.004392 ], [ 145.673642, 15.004469 ], [ 145.673636, 15.004531 ], [ 145.673661, 15.004598 ], [ 145.673734, 15.004651 ], [ 145.67367, 15.004727 ], [ 145.673625, 15.004823 ], [ 145.673562, 15.005062 ], [ 145.673541, 15.005162 ], [ 145.67358, 15.005234 ], [ 145.673536, 15.005272 ], [ 145.673496, 15.005372 ], [ 145.673485, 15.005468 ], [ 145.673514, 15.005611 ], [ 145.673558, 15.005707 ], [ 145.673621, 15.005779 ], [ 145.673719, 15.005856 ], [ 145.673797, 15.005943 ], [ 145.673796, 15.006517 ], [ 145.673722, 15.006627 ], [ 145.673647, 15.00676 ], [ 145.673651, 15.006918 ], [ 145.673576, 15.007085 ], [ 145.673581, 15.007181 ], [ 145.673501, 15.007319 ], [ 145.673461, 15.007414 ], [ 145.673372, 15.007509 ], [ 145.673248, 15.0076 ], [ 145.673125, 15.00768 ], [ 145.672876, 15.007727 ], [ 145.672742, 15.007874 ], [ 145.672702, 15.007974 ], [ 145.672726, 15.008084 ], [ 145.672676, 15.008194 ], [ 145.672567, 15.00828 ], [ 145.672488, 15.008451 ], [ 145.672359, 15.008508 ], [ 145.672172, 15.008512 ], [ 145.672113, 15.008569 ], [ 145.672053, 15.008659 ], [ 145.672058, 15.008698 ], [ 145.671984, 15.008812 ], [ 145.67193, 15.00873 ], [ 145.671852, 15.008649 ], [ 145.671724, 15.008614 ], [ 145.671664, 15.008683 ], [ 145.67163, 15.008724 ], [ 145.671477, 15.008799 ], [ 145.671402, 15.008885 ], [ 145.671319, 15.008899 ], [ 145.671085, 15.009261 ], [ 145.670977, 15.009586 ], [ 145.67086, 15.010303 ], [ 145.670882, 15.010743 ], [ 145.671118, 15.010749 ], [ 145.67114, 15.011089 ], [ 145.67112, 15.011203 ], [ 145.67106, 15.011351 ], [ 145.671069, 15.011471 ], [ 145.671093, 15.011543 ], [ 145.670957, 15.011695 ], [ 145.670867, 15.011886 ], [ 145.67054, 15.01229 ], [ 145.670544, 15.012405 ], [ 145.670192, 15.012891 ], [ 145.670102, 15.013029 ], [ 145.670012, 15.013206 ], [ 145.669952, 15.013373 ], [ 145.669921, 15.013602 ], [ 145.669916, 15.013707 ], [ 145.669893, 15.013765 ], [ 145.669824, 15.013879 ], [ 145.66967, 15.014046 ], [ 145.669512, 15.014231 ], [ 145.669407, 15.01436 ], [ 145.669363, 15.01445 ], [ 145.669337, 15.014551 ], [ 145.669366, 15.014627 ], [ 145.669322, 15.014704 ], [ 145.669277, 15.014746 ], [ 145.669183, 15.014822 ], [ 145.669153, 15.014923 ], [ 145.669197, 15.015019 ], [ 145.669142, 15.015109 ], [ 145.669063, 15.015133 ], [ 145.669016, 15.015195 ], [ 145.668883, 15.015261 ], [ 145.66875, 15.015212 ], [ 145.668636, 15.015288 ], [ 145.668626, 15.015355 ], [ 145.668586, 15.01545 ], [ 145.66862, 15.01556 ], [ 145.668615, 15.015604 ], [ 145.66853, 15.015737 ], [ 145.668391, 15.015908 ], [ 145.668332, 15.016028 ], [ 145.6684, 15.0161 ], [ 145.668395, 15.016133 ], [ 145.668316, 15.016224 ], [ 145.668227, 15.01628 ], [ 145.668123, 15.016371 ], [ 145.667974, 15.016513 ], [ 145.667782, 15.016627 ], [ 145.667688, 15.016713 ], [ 145.667608, 15.016765 ], [ 145.667145, 15.01691 ], [ 145.667123, 15.016939 ], [ 145.666979, 15.017101 ], [ 145.666895, 15.017186 ], [ 145.666899, 15.017239 ], [ 145.666652, 15.017424 ], [ 145.666573, 15.017495 ], [ 145.666351, 15.017623 ], [ 145.666257, 15.017699 ], [ 145.666187, 15.017766 ], [ 145.666118, 15.017885 ], [ 145.666048, 15.017971 ], [ 145.665979, 15.018027 ], [ 145.66588, 15.018142 ], [ 145.665757, 15.018198 ], [ 145.665618, 15.018245 ], [ 145.665495, 15.018336 ], [ 145.66543, 15.018402 ], [ 145.665297, 15.018435 ], [ 145.665214, 15.018444 ], [ 145.665069, 15.018405 ], [ 145.664995, 15.018462 ], [ 145.664832, 15.018518 ], [ 145.664531, 15.018545 ], [ 145.664467, 15.018593 ], [ 145.664457, 15.018669 ], [ 145.664368, 15.018626 ], [ 145.664063, 15.018614 ], [ 145.663709, 15.018636 ], [ 145.663448, 15.018615 ], [ 145.663237, 15.018571 ], [ 145.663128, 15.018594 ], [ 145.662981, 15.018541 ], [ 145.662735, 15.018496 ], [ 145.662622, 15.018524 ], [ 145.662475, 15.01849 ], [ 145.66243, 15.018533 ], [ 145.662213, 15.018541 ], [ 145.662105, 15.018502 ], [ 145.661825, 15.018481 ], [ 145.661668, 15.018461 ], [ 145.661592, 15.018437 ], [ 145.661508, 15.018365 ], [ 145.661272, 15.018378 ], [ 145.661139, 15.018353 ], [ 145.660977, 15.018285 ], [ 145.660845, 15.018241 ], [ 145.660633, 15.018245 ], [ 145.660515, 15.018215 ], [ 145.660412, 15.018205 ], [ 145.660319, 15.018104 ], [ 145.660191, 15.018137 ], [ 145.660195, 15.018175 ], [ 145.66023, 15.018223 ], [ 145.660215, 15.018261 ], [ 145.660023, 15.018236 ], [ 145.659783, 15.018082 ], [ 145.659753, 15.018072 ], [ 145.659615, 15.0181 ], [ 145.659492, 15.018075 ], [ 145.65936, 15.018008 ], [ 145.659271, 15.018031 ], [ 145.659261, 15.018079 ], [ 145.659364, 15.018118 ], [ 145.659472, 15.018166 ], [ 145.659452, 15.018209 ], [ 145.659413, 15.018242 ], [ 145.659501, 15.018296 ], [ 145.659525, 15.018358 ], [ 145.659481, 15.018391 ], [ 145.659367, 15.01839 ], [ 145.659328, 15.018309 ], [ 145.65928, 15.018227 ], [ 145.65924, 15.018217 ], [ 145.659103, 15.018221 ], [ 145.658964, 15.018292 ], [ 145.658939, 15.018354 ], [ 145.658934, 15.018383 ], [ 145.658961, 15.018441 ], [ 145.658916, 15.018483 ], [ 145.658808, 15.018545 ], [ 145.658739, 15.018597 ], [ 145.658684, 15.018606 ], [ 145.658606, 15.018568 ], [ 145.658493, 15.018586 ], [ 145.658458, 15.018615 ], [ 145.658286, 15.018609 ], [ 145.658192, 15.018584 ], [ 145.658158, 15.018646 ], [ 145.658192, 15.018699 ], [ 145.658196, 15.018752 ], [ 145.657935, 15.018822 ], [ 145.657817, 15.018812 ], [ 145.657551, 15.018815 ], [ 145.657447, 15.018867 ], [ 145.657364, 15.01889 ], [ 145.65726, 15.018909 ], [ 145.656994, 15.019309 ], [ 145.656954, 15.019424 ], [ 145.65688, 15.019481 ], [ 145.656782, 15.019423 ], [ 145.656673, 15.019494 ], [ 145.656545, 15.019565 ], [ 145.656243, 15.019874 ], [ 145.656055, 15.020011 ], [ 145.655946, 15.020183 ], [ 145.655777, 15.020364 ], [ 145.655787, 15.020388 ], [ 145.655737, 15.020541 ], [ 145.655677, 15.020708 ], [ 145.655599, 15.020908 ], [ 145.655563, 15.021094 ], [ 145.655498, 15.02129 ], [ 145.655448, 15.021462 ], [ 145.655309, 15.021571 ], [ 145.655309, 15.021662 ], [ 145.655186, 15.021685 ], [ 145.655116, 15.02178 ], [ 145.655052, 15.02189 ], [ 145.65507, 15.022019 ], [ 145.654986, 15.022124 ], [ 145.654897, 15.022143 ], [ 145.654724, 15.022395 ], [ 145.654639, 15.022553 ], [ 145.654589, 15.022667 ], [ 145.65451, 15.022762 ], [ 145.65443, 15.022824 ], [ 145.654381, 15.022915 ], [ 145.654403, 15.022948 ], [ 145.65424, 15.022981 ], [ 145.654171, 15.023047 ], [ 145.654195, 15.023148 ], [ 145.654199, 15.023191 ], [ 145.654101, 15.023166 ], [ 145.654007, 15.023257 ], [ 145.653897, 15.023452 ], [ 145.653819, 15.023456 ], [ 145.653749, 15.023509 ], [ 145.653734, 15.023614 ], [ 145.653762, 15.023901 ], [ 145.653717, 15.023987 ], [ 145.653702, 15.024082 ], [ 145.653706, 15.024159 ], [ 145.653686, 15.024235 ], [ 145.653666, 15.024269 ], [ 145.653606, 15.024354 ], [ 145.653582, 15.024373 ], [ 145.653571, 15.024455 ], [ 145.653576, 15.024522 ], [ 145.653546, 15.02456 ], [ 145.653526, 15.024651 ], [ 145.653565, 15.024694 ], [ 145.653614, 15.024737 ], [ 145.653618, 15.024795 ], [ 145.653564, 15.02489 ], [ 145.653613, 15.024943 ], [ 145.653686, 15.024996 ], [ 145.653666, 15.025044 ], [ 145.653631, 15.025091 ], [ 145.653591, 15.025163 ], [ 145.653537, 15.025249 ], [ 145.653551, 15.025325 ], [ 145.653566, 15.025363 ], [ 145.653577, 15.025403 ], [ 145.653578, 15.025421 ], [ 145.653541, 15.025452 ], [ 145.653509, 15.025493 ], [ 145.653471, 15.025524 ], [ 145.653428, 15.025549 ], [ 145.653364, 15.025622 ], [ 145.653331, 15.025668 ], [ 145.653299, 15.025704 ], [ 145.653294, 15.025761 ], [ 145.653229, 15.025833 ], [ 145.653186, 15.025859 ], [ 145.653138, 15.025874 ], [ 145.653074, 15.025947 ], [ 145.653036, 15.025977 ], [ 145.652993, 15.025998 ], [ 145.652998, 15.026045 ], [ 145.653019, 15.026086 ], [ 145.653051, 15.026123 ], [ 145.653094, 15.026144 ], [ 145.653131, 15.026175 ], [ 145.653147, 15.026222 ], [ 145.653125, 15.026263 ], [ 145.653124, 15.026356 ], [ 145.653135, 15.026403 ], [ 145.653167, 15.02644 ], [ 145.653182, 15.026538 ], [ 145.653185, 15.026545 ], [ 145.653203, 15.02658 ], [ 145.65324, 15.026611 ], [ 145.653266, 15.026705 ], [ 145.653245, 15.026746 ], [ 145.653202, 15.026766 ], [ 145.653154, 15.026761 ], [ 145.653069, 15.026719 ], [ 145.652973, 15.026739 ], [ 145.652876, 15.02677 ], [ 145.652775, 15.026821 ], [ 145.652732, 15.0268 ], [ 145.652684, 15.0268 ], [ 145.652609, 15.026861 ], [ 145.652582, 15.026903 ], [ 145.65255, 15.026939 ], [ 145.652528, 15.02698 ], [ 145.652512, 15.027027 ], [ 145.652522, 15.027073 ], [ 145.65256, 15.02711 ], [ 145.652581, 15.027152 ], [ 145.652586, 15.027198 ], [ 145.652564, 15.027291 ], [ 145.652468, 15.027322 ], [ 145.652425, 15.027342 ], [ 145.652329, 15.027342 ], [ 145.652281, 15.027352 ], [ 145.652238, 15.027378 ], [ 145.652184, 15.027398 ], [ 145.652136, 15.027403 ], [ 145.65204, 15.027392 ], [ 145.652003, 15.027423 ], [ 145.652008, 15.02747 ], [ 145.65204, 15.027506 ], [ 145.652114, 15.027574 ], [ 145.652156, 15.027662 ], [ 145.652156, 15.027709 ], [ 145.652134, 15.027756 ], [ 145.652129, 15.027802 ], [ 145.652139, 15.027849 ], [ 145.652144, 15.027896 ], [ 145.652144, 15.027942 ], [ 145.652133, 15.027989 ], [ 145.652033, 15.028019 ], [ 145.651999, 15.028038 ], [ 145.651855, 15.028089 ], [ 145.651811, 15.028132 ], [ 145.651801, 15.02818 ], [ 145.651761, 15.028242 ], [ 145.651687, 15.028332 ], [ 145.651661, 15.028437 ], [ 145.651636, 15.028562 ], [ 145.651547, 15.028676 ], [ 145.651457, 15.028809 ], [ 145.651392, 15.029005 ], [ 145.651352, 15.029081 ], [ 145.651349, 15.029134 ], [ 145.651137, 15.029266 ], [ 145.651038, 15.029395 ], [ 145.651046, 15.029625 ], [ 145.650972, 15.029682 ], [ 145.650848, 15.029815 ], [ 145.650812, 15.029992 ], [ 145.650718, 15.030125 ], [ 145.650703, 15.03024 ], [ 145.650678, 15.030321 ], [ 145.650618, 15.030392 ], [ 145.650612, 15.03056 ], [ 145.650602, 15.03066 ], [ 145.650562, 15.030741 ], [ 145.650532, 15.030837 ], [ 145.650506, 15.030937 ], [ 145.650526, 15.030966 ], [ 145.650535, 15.031081 ], [ 145.65053, 15.031133 ], [ 145.650554, 15.031176 ], [ 145.650442, 15.031319 ], [ 145.650397, 15.031477 ], [ 145.650382, 15.031582 ], [ 145.650371, 15.031706 ], [ 145.650331, 15.031759 ], [ 145.650331, 15.03184 ], [ 145.650286, 15.031892 ], [ 145.650266, 15.031945 ], [ 145.650305, 15.032093 ], [ 145.650235, 15.032227 ], [ 145.650254, 15.032294 ], [ 145.650258, 15.032399 ], [ 145.650209, 15.032466 ], [ 145.650159, 15.032508 ], [ 145.650119, 15.032604 ], [ 145.650143, 15.032681 ], [ 145.650079, 15.032714 ], [ 145.650049, 15.032757 ], [ 145.650034, 15.032805 ], [ 145.650011, 15.032824 ], [ 145.649963, 15.032818 ], [ 145.649915, 15.032823 ], [ 145.649867, 15.032838 ], [ 145.649819, 15.032848 ], [ 145.649733, 15.032895 ], [ 145.649691, 15.032915 ], [ 145.649626, 15.032987 ], [ 145.649583, 15.033013 ], [ 145.649551, 15.033054 ], [ 145.649508, 15.03308 ], [ 145.64946, 15.03309 ], [ 145.649412, 15.033121 ], [ 145.649396, 15.033136 ], [ 145.649385, 15.033188 ], [ 145.649294, 15.033224 ], [ 145.64924, 15.033239 ], [ 145.649187, 15.033259 ], [ 145.649144, 15.033285 ], [ 145.649069, 15.033347 ], [ 145.649026, 15.033367 ], [ 145.648994, 15.033403 ], [ 145.648983, 15.03345 ], [ 145.648967, 15.033497 ], [ 145.648881, 15.033548 ], [ 145.648897, 15.033605 ], [ 145.648886, 15.033652 ], [ 145.648885, 15.033698 ], [ 145.648917, 15.03374 ], [ 145.648896, 15.033781 ], [ 145.648847, 15.033802 ], [ 145.648799, 15.033817 ], [ 145.648751, 15.033801 ], [ 145.648703, 15.033811 ], [ 145.648682, 15.033853 ], [ 145.648639, 15.033873 ], [ 145.648617, 15.033914 ], [ 145.648628, 15.033961 ], [ 145.648616, 15.03406 ], [ 145.648616, 15.0342 ], [ 145.648599, 15.034303 ], [ 145.648599, 15.03435 ], [ 145.648593, 15.034396 ], [ 145.648582, 15.034443 ], [ 145.648576, 15.03449 ], [ 145.648555, 15.034531 ], [ 145.648551, 15.034562 ], [ 145.648549, 15.034578 ], [ 145.648538, 15.034624 ], [ 145.648538, 15.034676 ], [ 145.648516, 15.034769 ], [ 145.64844, 15.034981 ], [ 145.648429, 15.035033 ], [ 145.648413, 15.03508 ], [ 145.648412, 15.035126 ], [ 145.648401, 15.03522 ], [ 145.648385, 15.035266 ], [ 145.648379, 15.035313 ], [ 145.648352, 15.03539 ], [ 145.648325, 15.035489 ], [ 145.648281, 15.035613 ], [ 145.64827, 15.035659 ], [ 145.648205, 15.035856 ], [ 145.648199, 15.035903 ], [ 145.648188, 15.035949 ], [ 145.648188, 15.035996 ], [ 145.648177, 15.036043 ], [ 145.648161, 15.036089 ], [ 145.648155, 15.036136 ], [ 145.648155, 15.036229 ], [ 145.648144, 15.036276 ], [ 145.648138, 15.036322 ], [ 145.648105, 15.036415 ], [ 145.648089, 15.036509 ], [ 145.648067, 15.03655 ], [ 145.648062, 15.036597 ], [ 145.648034, 15.036695 ], [ 145.648034, 15.036819 ], [ 145.648055, 15.036861 ], [ 145.648022, 15.03698 ], [ 145.648016, 15.037027 ], [ 145.647989, 15.03712 ], [ 145.647989, 15.037166 ], [ 145.647978, 15.037213 ], [ 145.647977, 15.03726 ], [ 145.64802, 15.037343 ], [ 145.648025, 15.03739 ], [ 145.648024, 15.037447 ], [ 145.647997, 15.03754 ], [ 145.647975, 15.037581 ], [ 145.647959, 15.037628 ], [ 145.647937, 15.037674 ], [ 145.647868, 15.037746 ], [ 145.64782, 15.037762 ], [ 145.647825, 15.037808 ], [ 145.647819, 15.037855 ], [ 145.647781, 15.037901 ], [ 145.64776, 15.037943 ], [ 145.647786, 15.037984 ], [ 145.647829, 15.038005 ], [ 145.647866, 15.038037 ], [ 145.647898, 15.038078 ], [ 145.647924, 15.038172 ], [ 145.647923, 15.038265 ], [ 145.647917, 15.038312 ], [ 145.64788, 15.038369 ], [ 145.647795, 15.038311 ], [ 145.647747, 15.038321 ], [ 145.64772, 15.038362 ], [ 145.647703, 15.038409 ], [ 145.647693, 15.038456 ], [ 145.647676, 15.038507 ], [ 145.647676, 15.038554 ], [ 145.647697, 15.038596 ], [ 145.647729, 15.038632 ], [ 145.647734, 15.038679 ], [ 145.647728, 15.038725 ], [ 145.647707, 15.038767 ], [ 145.647631, 15.038828 ], [ 145.647583, 15.038844 ], [ 145.647503, 15.038905 ], [ 145.647455, 15.038926 ], [ 145.647439, 15.038972 ], [ 145.647449, 15.039019 ], [ 145.647491, 15.039102 ], [ 145.647539, 15.039103 ], [ 145.647577, 15.039072 ], [ 145.647598, 15.039093 ], [ 145.64763, 15.039134 ], [ 145.647725, 15.039156 ], [ 145.647768, 15.039177 ], [ 145.647805, 15.039213 ], [ 145.647837, 15.039265 ], [ 145.647847, 15.039312 ], [ 145.647868, 15.039354 ], [ 145.647884, 15.0394 ], [ 145.647873, 15.039447 ], [ 145.64783, 15.039467 ], [ 145.647793, 15.039498 ], [ 145.647707, 15.039555 ], [ 145.647675, 15.039591 ], [ 145.647626, 15.039679 ], [ 145.647569, 15.03974 ], [ 145.647572, 15.03982 ], [ 145.64756, 15.039959 ], [ 145.647694, 15.039922 ], [ 145.647816, 15.039966 ], [ 145.647831, 15.040052 ], [ 145.647756, 15.0402 ], [ 145.64777, 15.040257 ], [ 145.64775, 15.0403 ], [ 145.647676, 15.040362 ], [ 145.647646, 15.040405 ], [ 145.647691, 15.040405 ], [ 145.647789, 15.040463 ], [ 145.647783, 15.040506 ], [ 145.647749, 15.040535 ], [ 145.64767, 15.040587 ], [ 145.647654, 15.040687 ], [ 145.647708, 15.040735 ], [ 145.647777, 15.040807 ], [ 145.64777, 15.041061 ], [ 145.647725, 15.041209 ], [ 145.64766, 15.04128 ], [ 145.647601, 15.041356 ], [ 145.647467, 15.041442 ], [ 145.647381, 15.041532 ], [ 145.647282, 15.041622 ], [ 145.647208, 15.04166 ], [ 145.64707, 15.041659 ], [ 145.647079, 15.041741 ], [ 145.647113, 15.041894 ], [ 145.647122, 15.04199 ], [ 145.647106, 15.0421 ], [ 145.64716, 15.042148 ], [ 145.647268, 15.042206 ], [ 145.647356, 15.042369 ], [ 145.647355, 15.042489 ], [ 145.647359, 15.042584 ], [ 145.647142, 15.042688 ], [ 145.647127, 15.04275 ], [ 145.647141, 15.04286 ], [ 145.647244, 15.04289 ], [ 145.647278, 15.042914 ], [ 145.647357, 15.042948 ], [ 145.647386, 15.043015 ], [ 145.647279, 15.043196 ], [ 145.647136, 15.043267 ], [ 145.64713, 15.043358 ], [ 145.647204, 15.043416 ], [ 145.647174, 15.04354 ], [ 145.647178, 15.043655 ], [ 145.647133, 15.043731 ], [ 145.64701, 15.043797 ], [ 145.646989, 15.043878 ], [ 145.647068, 15.043855 ], [ 145.647088, 15.043912 ], [ 145.647082, 15.044037 ], [ 145.647111, 15.044123 ], [ 145.647061, 15.044175 ], [ 145.646994, 15.044304 ], [ 145.646939, 15.04438 ], [ 145.646993, 15.044419 ], [ 145.647077, 15.04441 ], [ 145.647112, 15.044357 ], [ 145.647181, 15.044329 ], [ 145.647259, 15.044368 ], [ 145.647343, 15.044421 ], [ 145.647436, 15.044527 ], [ 145.647558, 15.04468 ], [ 145.647557, 15.044767 ], [ 145.647473, 15.044809 ], [ 145.647448, 15.044933 ], [ 145.647349, 15.045028 ], [ 145.647368, 15.045105 ], [ 145.647486, 15.045106 ], [ 145.647579, 15.045135 ], [ 145.647697, 15.045227 ], [ 145.647721, 15.045308 ], [ 145.647804, 15.045356 ], [ 145.647903, 15.045386 ], [ 145.647917, 15.045477 ], [ 145.647912, 15.045539 ], [ 145.647946, 15.045587 ], [ 145.647997, 15.045625 ], [ 145.648031, 15.045702 ], [ 145.647962, 15.045802 ], [ 145.647887, 15.045869 ], [ 145.647764, 15.045944 ], [ 145.647768, 15.046011 ], [ 145.647837, 15.046064 ], [ 145.64792, 15.046084 ], [ 145.64795, 15.046146 ], [ 145.647969, 15.046252 ], [ 145.647904, 15.046304 ], [ 145.647751, 15.04638 ], [ 145.647706, 15.046456 ], [ 145.647731, 15.046552 ], [ 145.64778, 15.046566 ], [ 145.647853, 15.046634 ], [ 145.647911, 15.046735 ], [ 145.647917, 15.046663 ], [ 145.647966, 15.046606 ], [ 145.648001, 15.046663 ], [ 145.647956, 15.046706 ], [ 145.647985, 15.046773 ], [ 145.648064, 15.046774 ], [ 145.648094, 15.046736 ], [ 145.648099, 15.046697 ], [ 145.648143, 15.046655 ], [ 145.648187, 15.046684 ], [ 145.648113, 15.046745 ], [ 145.648271, 15.046765 ], [ 145.648399, 15.046733 ], [ 145.648473, 15.046743 ], [ 145.648541, 15.0468 ], [ 145.648679, 15.04684 ], [ 145.648762, 15.046878 ], [ 145.648796, 15.046979 ], [ 145.648756, 15.047031 ], [ 145.648741, 15.047098 ], [ 145.648755, 15.047146 ], [ 145.648864, 15.047161 ], [ 145.648933, 15.047099 ], [ 145.649027, 15.047047 ], [ 145.649111, 15.04699 ], [ 145.649199, 15.047024 ], [ 145.649204, 15.047072 ], [ 145.649248, 15.047154 ], [ 145.649311, 15.047245 ], [ 145.649306, 15.047298 ], [ 145.649266, 15.047364 ], [ 145.649245, 15.047374 ], [ 145.649182, 15.047407 ], [ 145.649069, 15.047454 ], [ 145.649029, 15.047526 ], [ 145.649043, 15.04755 ], [ 145.649142, 15.047536 ], [ 145.649231, 15.047498 ], [ 145.649275, 15.047546 ], [ 145.649314, 15.047599 ], [ 145.649225, 15.047646 ], [ 145.649234, 15.047689 ], [ 145.649269, 15.047742 ], [ 145.649323, 15.047719 ], [ 145.649372, 15.047676 ], [ 145.649442, 15.047629 ], [ 145.649501, 15.047576 ], [ 145.649678, 15.047663 ], [ 145.64981, 15.047741 ], [ 145.649913, 15.047856 ], [ 145.649922, 15.047971 ], [ 145.649981, 15.047952 ], [ 145.650232, 15.048011 ], [ 145.650329, 15.048112 ], [ 145.650407, 15.048232 ], [ 145.650436, 15.048314 ], [ 145.65049, 15.04839 ], [ 145.650528, 15.048558 ], [ 145.650567, 15.048692 ], [ 145.65062, 15.048779 ], [ 145.650714, 15.048818 ], [ 145.650919, 15.049034 ], [ 145.650973, 15.049125 ], [ 145.651105, 15.049183 ], [ 145.651175, 15.04937 ], [ 145.651259, 15.049419 ], [ 145.651308, 15.049476 ], [ 145.651371, 15.049515 ], [ 145.65143, 15.049582 ], [ 145.651454, 15.049712 ], [ 145.651532, 15.049832 ], [ 145.651605, 15.049889 ], [ 145.651768, 15.049905 ], [ 145.651876, 15.049968 ], [ 145.651934, 15.050035 ], [ 145.651993, 15.050093 ], [ 145.652017, 15.050165 ], [ 145.652066, 15.050246 ], [ 145.652169, 15.05028 ], [ 145.652292, 15.050276 ], [ 145.6524, 15.050334 ], [ 145.652528, 15.050316 ], [ 145.652582, 15.05035 ], [ 145.652646, 15.050407 ], [ 145.652645, 15.05046 ], [ 145.65259, 15.050551 ], [ 145.652541, 15.050617 ], [ 145.652555, 15.050723 ], [ 145.652589, 15.050799 ], [ 145.652697, 15.050886 ], [ 145.652841, 15.051078 ], [ 145.653086, 15.051194 ], [ 145.653233, 15.051272 ], [ 145.653267, 15.051358 ], [ 145.653311, 15.051435 ], [ 145.653512, 15.051508 ], [ 145.653719, 15.051557 ], [ 145.654009, 15.051607 ], [ 145.654092, 15.051731 ], [ 145.654576, 15.052174 ], [ 145.655, 15.052502 ], [ 145.655264, 15.052733 ], [ 145.655381, 15.052877 ], [ 145.65542, 15.052949 ], [ 145.655503, 15.05305 ], [ 145.655562, 15.053094 ], [ 145.655655, 15.053147 ], [ 145.655729, 15.053272 ], [ 145.655728, 15.053343 ], [ 145.655791, 15.053439 ], [ 145.655776, 15.05353 ], [ 145.65583, 15.053645 ], [ 145.655829, 15.053751 ], [ 145.655873, 15.053851 ], [ 145.655985, 15.053943 ], [ 145.656083, 15.053967 ], [ 145.656113, 15.05402 ], [ 145.656148, 15.054193 ], [ 145.656177, 15.054308 ], [ 145.656266, 15.05437 ], [ 145.656398, 15.054366 ], [ 145.656496, 15.054496 ], [ 145.656599, 15.054611 ], [ 145.656584, 15.054669 ], [ 145.656544, 15.054711 ], [ 145.656553, 15.054778 ], [ 145.656622, 15.054841 ], [ 145.656691, 15.054779 ], [ 145.656819, 15.054847 ], [ 145.656853, 15.054919 ], [ 145.656941, 15.054986 ], [ 145.656985, 15.055078 ], [ 145.657038, 15.055126 ], [ 145.657112, 15.055179 ], [ 145.657255, 15.055213 ], [ 145.65723, 15.055223 ], [ 145.657249, 15.055309 ], [ 145.657268, 15.055424 ], [ 145.657563, 15.055803 ], [ 145.657769, 15.055981 ], [ 145.657906, 15.05615 ], [ 145.657994, 15.056275 ], [ 145.658116, 15.056366 ], [ 145.658228, 15.056506 ], [ 145.658218, 15.056611 ], [ 145.65836, 15.056717 ], [ 145.658453, 15.05687 ], [ 145.658515, 15.057143 ], [ 145.658593, 15.057225 ], [ 145.658602, 15.057326 ], [ 145.658671, 15.057403 ], [ 145.658684, 15.057565 ], [ 145.658723, 15.05768 ], [ 145.658811, 15.057753 ], [ 145.658793, 15.057915 ], [ 145.658812, 15.058006 ], [ 145.6589, 15.058121 ], [ 145.658899, 15.058217 ], [ 145.658889, 15.058356 ], [ 145.658898, 15.058428 ], [ 145.658892, 15.058566 ], [ 145.658848, 15.058638 ], [ 145.658921, 15.0587 ], [ 145.658969, 15.05882 ], [ 145.65889, 15.058896 ], [ 145.658806, 15.058967 ], [ 145.658791, 15.059106 ], [ 145.658809, 15.05924 ], [ 145.658848, 15.05937 ], [ 145.658872, 15.059465 ], [ 145.658822, 15.059556 ], [ 145.658793, 15.059852 ], [ 145.658679, 15.059943 ], [ 145.658684, 15.060038 ], [ 145.658599, 15.060219 ], [ 145.658515, 15.060281 ], [ 145.658509, 15.060372 ], [ 145.65844, 15.060439 ], [ 145.658405, 15.060529 ], [ 145.6583, 15.060725 ], [ 145.658324, 15.06083 ], [ 145.65824, 15.060887 ], [ 145.658073, 15.06091 ], [ 145.658033, 15.061048 ], [ 145.657973, 15.061105 ], [ 145.657903, 15.061244 ], [ 145.657829, 15.061334 ], [ 145.657657, 15.061333 ], [ 145.657587, 15.0614 ], [ 145.65746, 15.061361 ], [ 145.657287, 15.061388 ], [ 145.657159, 15.061349 ], [ 145.657053, 15.061406 ], [ 145.656916, 15.061372 ], [ 145.656871, 15.061391 ], [ 145.656822, 15.061443 ], [ 145.656738, 15.061447 ], [ 145.656492, 15.061742 ], [ 145.656427, 15.062015 ], [ 145.656456, 15.062125 ], [ 145.656332, 15.062268 ], [ 145.656326, 15.062363 ], [ 145.65637, 15.062445 ], [ 145.656291, 15.06253 ], [ 145.656276, 15.062573 ], [ 145.656297, 15.062645 ], [ 145.656224, 15.062635 ], [ 145.656174, 15.062702 ], [ 145.656163, 15.062845 ], [ 145.656094, 15.062921 ], [ 145.656015, 15.062998 ], [ 145.656023, 15.063151 ], [ 145.65593, 15.063126 ], [ 145.6559, 15.063207 ], [ 145.655944, 15.063275 ], [ 145.655889, 15.063365 ], [ 145.655927, 15.063643 ], [ 145.655843, 15.0637 ], [ 145.655791, 15.064077 ], [ 145.65583, 15.064192 ], [ 145.655903, 15.064217 ], [ 145.65589, 15.064355 ], [ 145.655811, 15.064446 ], [ 145.655978, 15.064523 ], [ 145.655967, 15.064628 ], [ 145.65575, 15.064708 ], [ 145.655711, 15.064756 ], [ 145.655665, 15.064947 ], [ 145.655615, 15.065057 ], [ 145.655541, 15.065118 ], [ 145.655437, 15.065175 ], [ 145.655466, 15.065281 ], [ 145.655456, 15.065348 ], [ 145.65547, 15.065434 ], [ 145.655469, 15.065549 ], [ 145.65543, 15.06561 ], [ 145.655321, 15.065725 ], [ 145.655369, 15.065792 ], [ 145.655406, 15.065912 ], [ 145.655317, 15.065954 ], [ 145.655257, 15.066045 ], [ 145.655261, 15.066174 ], [ 145.655275, 15.066308 ], [ 145.655264, 15.066456 ], [ 145.655249, 15.066552 ], [ 145.655263, 15.066729 ], [ 145.655218, 15.066781 ], [ 145.655134, 15.066852 ], [ 145.655207, 15.066996 ], [ 145.655127, 15.067115 ], [ 145.655156, 15.067226 ], [ 145.655185, 15.067269 ], [ 145.655138, 15.06735 ], [ 145.655197, 15.067451 ], [ 145.655167, 15.067508 ], [ 145.655067, 15.067612 ], [ 145.655101, 15.067694 ], [ 145.655165, 15.067747 ], [ 145.655125, 15.067895 ], [ 145.655149, 15.067962 ], [ 145.655223, 15.06801 ], [ 145.655202, 15.068111 ], [ 145.655133, 15.068201 ], [ 145.655157, 15.068283 ], [ 145.655245, 15.06835 ], [ 145.655244, 15.068431 ], [ 145.655165, 15.068484 ], [ 145.655125, 15.068579 ], [ 145.65514, 15.068641 ], [ 145.6551, 15.068684 ], [ 145.65512, 15.068718 ], [ 145.65516, 15.068957 ], [ 145.655086, 15.069047 ], [ 145.655119, 15.069134 ], [ 145.655153, 15.069206 ], [ 145.655169, 15.069895 ], [ 145.655149, 15.069995 ], [ 145.655158, 15.070062 ], [ 145.655202, 15.070134 ], [ 145.655142, 15.070296 ], [ 145.655111, 15.07044 ], [ 145.65515, 15.070535 ], [ 145.655179, 15.070617 ], [ 145.655198, 15.070713 ], [ 145.655322, 15.070943 ], [ 145.655336, 15.07113 ], [ 145.655419, 15.071274 ], [ 145.655506, 15.071408 ], [ 145.655417, 15.071455 ], [ 145.655358, 15.071532 ], [ 145.655402, 15.071589 ], [ 145.655544, 15.071619 ], [ 145.655642, 15.071705 ], [ 145.65568, 15.071911 ], [ 145.65564, 15.072007 ], [ 145.655645, 15.072098 ], [ 145.655723, 15.072165 ], [ 145.655746, 15.072414 ], [ 145.6558, 15.072883 ], [ 145.655725, 15.072969 ], [ 145.655695, 15.073069 ], [ 145.655778, 15.07317 ], [ 145.655841, 15.073352 ], [ 145.655791, 15.073514 ], [ 145.655849, 15.073649 ], [ 145.655844, 15.073739 ], [ 145.655868, 15.073802 ], [ 145.655877, 15.073893 ], [ 145.655921, 15.073936 ], [ 145.655955, 15.073998 ], [ 145.655905, 15.074127 ], [ 145.655939, 15.074285 ], [ 145.656, 15.074405 ], [ 145.655989, 15.074501 ], [ 145.655959, 15.074635 ], [ 145.656022, 15.074798 ], [ 145.65608, 15.074884 ], [ 145.65605, 15.07497 ], [ 145.656084, 15.075047 ], [ 145.656143, 15.075152 ], [ 145.656156, 15.075301 ], [ 145.656151, 15.075425 ], [ 145.656209, 15.075483 ], [ 145.656228, 15.075574 ], [ 145.656208, 15.075674 ], [ 145.65634, 15.075794 ], [ 145.6563, 15.075885 ], [ 145.656336, 15.076048 ], [ 145.656331, 15.076158 ], [ 145.656389, 15.076326 ], [ 145.656432, 15.076493 ], [ 145.656514, 15.076695 ], [ 145.656508, 15.076886 ], [ 145.656625, 15.077083 ], [ 145.656566, 15.077168 ], [ 145.65658, 15.07725 ], [ 145.656643, 15.077355 ], [ 145.656727, 15.077399 ], [ 145.656731, 15.077495 ], [ 145.656647, 15.077532 ], [ 145.656676, 15.077614 ], [ 145.656779, 15.077653 ], [ 145.656793, 15.077854 ], [ 145.656743, 15.077925 ], [ 145.656806, 15.077997 ], [ 145.656831, 15.078069 ], [ 145.656859, 15.078232 ], [ 145.656917, 15.078347 ], [ 145.656887, 15.078447 ], [ 145.656852, 15.078519 ], [ 145.656882, 15.078567 ], [ 145.65696, 15.078658 ], [ 145.657093, 15.079401 ], [ 145.657014, 15.079481 ], [ 145.657037, 15.07962 ], [ 145.657036, 15.079792 ], [ 145.65706, 15.079998 ], [ 145.657108, 15.080219 ], [ 145.657151, 15.080329 ], [ 145.657141, 15.080434 ], [ 145.657137, 15.080692 ], [ 145.657155, 15.080826 ], [ 145.657135, 15.080884 ], [ 145.657184, 15.081027 ], [ 145.657297, 15.081879 ], [ 145.657281, 15.081961 ], [ 145.657222, 15.082042 ], [ 145.657213, 15.082199 ], [ 145.657222, 15.082314 ], [ 145.657178, 15.082386 ], [ 145.657133, 15.082472 ], [ 145.657122, 15.082605 ], [ 145.65721, 15.082673 ], [ 145.657141, 15.082754 ], [ 145.657135, 15.082893 ], [ 145.657119, 15.083117 ], [ 145.657128, 15.083232 ], [ 145.657236, 15.083281 ], [ 145.657162, 15.083366 ], [ 145.657073, 15.083351 ], [ 145.657053, 15.083428 ], [ 145.656958, 15.083619 ], [ 145.656977, 15.083709 ], [ 145.656928, 15.083743 ], [ 145.656878, 15.083814 ], [ 145.656905, 15.083867 ], [ 145.656959, 15.083949 ], [ 145.657017, 15.084049 ], [ 145.656958, 15.084102 ], [ 145.656903, 15.084192 ], [ 145.656907, 15.084283 ], [ 145.656833, 15.084354 ], [ 145.656847, 15.084441 ], [ 145.656674, 15.08465 ], [ 145.656652, 15.084932 ], [ 145.656588, 15.08497 ], [ 145.656499, 15.085012 ], [ 145.656523, 15.085118 ], [ 145.656469, 15.085151 ], [ 145.656438, 15.08528 ], [ 145.656457, 15.08539 ], [ 145.656491, 15.085462 ], [ 145.656471, 15.085515 ], [ 145.656372, 15.085576 ], [ 145.656338, 15.085633 ], [ 145.656362, 15.0857 ], [ 145.656426, 15.08571 ], [ 145.656492, 15.085768 ], [ 145.656481, 15.085859 ], [ 145.656407, 15.085902 ], [ 145.656309, 15.085911 ], [ 145.656259, 15.085996 ], [ 145.656257, 15.086293 ], [ 145.656311, 15.086346 ], [ 145.6563, 15.086475 ], [ 145.656176, 15.086599 ], [ 145.656088, 15.086632 ], [ 145.656023, 15.086679 ], [ 145.656057, 15.086732 ], [ 145.656081, 15.086823 ], [ 145.656059, 15.08689 ], [ 145.655906, 15.086999 ], [ 145.655924, 15.087152 ], [ 145.655855, 15.087218 ], [ 145.655824, 15.087414 ], [ 145.655823, 15.087544 ], [ 145.655793, 15.08762 ], [ 145.65569, 15.087638 ], [ 145.655591, 15.087757 ], [ 145.65558, 15.087848 ], [ 145.655484, 15.087982 ], [ 145.655456, 15.088024 ], [ 145.655381, 15.08823 ], [ 145.655321, 15.088349 ], [ 145.655222, 15.088477 ], [ 145.65514, 15.088597 ], [ 145.655114, 15.088735 ], [ 145.654926, 15.088882 ], [ 145.654925, 15.08905 ], [ 145.654861, 15.089102 ], [ 145.654845, 15.089226 ], [ 145.654786, 15.089269 ], [ 145.654751, 15.089336 ], [ 145.654721, 15.089436 ], [ 145.65477, 15.089503 ], [ 145.654691, 15.089574 ], [ 145.654607, 15.089612 ], [ 145.654552, 15.089698 ], [ 145.654531, 15.08986 ], [ 145.654472, 15.089927 ], [ 145.654461, 15.090027 ], [ 145.654353, 15.090075 ], [ 145.65433, 15.090103 ], [ 145.654227, 15.090141 ], [ 145.654187, 15.090255 ], [ 145.654211, 15.090318 ], [ 145.654191, 15.09038 ], [ 145.654097, 15.09048 ], [ 145.654037, 15.090556 ], [ 145.653938, 15.090589 ], [ 145.653889, 15.090675 ], [ 145.653834, 15.090712 ], [ 145.65376, 15.090793 ], [ 145.653799, 15.090832 ], [ 145.653808, 15.090928 ], [ 145.653734, 15.09097 ], [ 145.653536, 15.091141 ], [ 145.653408, 15.091231 ], [ 145.653293, 15.091384 ], [ 145.653145, 15.091569 ], [ 145.653129, 15.091641 ], [ 145.653016, 15.091726 ], [ 145.652897, 15.09174 ], [ 145.652852, 15.09185 ], [ 145.652744, 15.091921 ], [ 145.652674, 15.092016 ], [ 145.652664, 15.092093 ], [ 145.652713, 15.092136 ], [ 145.652722, 15.092184 ], [ 145.652707, 15.092236 ], [ 145.652653, 15.092212 ], [ 145.652624, 15.092174 ], [ 145.652522, 15.092245 ], [ 145.652458, 15.09234 ], [ 145.652398, 15.092469 ], [ 145.65213, 15.092817 ], [ 145.652085, 15.092888 ], [ 145.652055, 15.092983 ], [ 145.651936, 15.093059 ], [ 145.651818, 15.093116 ], [ 145.651837, 15.09324 ], [ 145.651807, 15.093317 ], [ 145.651673, 15.093383 ], [ 145.651575, 15.093449 ], [ 145.651589, 15.093545 ], [ 145.651588, 15.093626 ], [ 145.65141, 15.093778 ], [ 145.651345, 15.093864 ], [ 145.651244, 15.094026 ], [ 145.651184, 15.094093 ], [ 145.651174, 15.094174 ], [ 145.650961, 15.094364 ], [ 145.650872, 15.09444 ], [ 145.650787, 15.094631 ], [ 145.650771, 15.094746 ], [ 145.650726, 15.094827 ], [ 145.650657, 15.094879 ], [ 145.650574, 15.094874 ], [ 145.650494, 15.09495 ], [ 145.650425, 15.095078 ], [ 145.650384, 15.095236 ], [ 145.650315, 15.09535 ], [ 145.650216, 15.095378 ], [ 145.650137, 15.095431 ], [ 145.650028, 15.095535 ], [ 145.649949, 15.095626 ], [ 145.649843, 15.095625 ], [ 145.649769, 15.095672 ], [ 145.649734, 15.095749 ], [ 145.649521, 15.095833 ], [ 145.649408, 15.095842 ], [ 145.649339, 15.095904 ], [ 145.649289, 15.096004 ], [ 145.649313, 15.096148 ], [ 145.649376, 15.096287 ], [ 145.649336, 15.096378 ], [ 145.64937, 15.096464 ], [ 145.649345, 15.096516 ], [ 145.649266, 15.09653 ], [ 145.649211, 15.096611 ], [ 145.649171, 15.096755 ], [ 145.649072, 15.096826 ], [ 145.649027, 15.096926 ], [ 145.648923, 15.097054 ], [ 145.648947, 15.097131 ], [ 145.648917, 15.097198 ], [ 145.648858, 15.097255 ], [ 145.648854, 15.097379 ], [ 145.648785, 15.097494 ], [ 145.648705, 15.097608 ], [ 145.648602, 15.097564 ], [ 145.648513, 15.09764 ], [ 145.648429, 15.097721 ], [ 145.648324, 15.097893 ], [ 145.648225, 15.097978 ], [ 145.648072, 15.09803 ], [ 145.648047, 15.09814 ], [ 145.648007, 15.098216 ], [ 145.647953, 15.098268 ], [ 145.648006, 15.09834 ], [ 145.647933, 15.09833 ], [ 145.647844, 15.098368 ], [ 145.647893, 15.098416 ], [ 145.647808, 15.098526 ], [ 145.647675, 15.098621 ], [ 145.647611, 15.098568 ], [ 145.647478, 15.098634 ], [ 145.647452, 15.098772 ], [ 145.64737, 15.098911 ], [ 145.647266, 15.098953 ], [ 145.646939, 15.099343 ], [ 145.646879, 15.099448 ], [ 145.646741, 15.099562 ], [ 145.646692, 15.099562 ], [ 145.646598, 15.099633 ], [ 145.646543, 15.09969 ], [ 145.646474, 15.099747 ], [ 145.646463, 15.099881 ], [ 145.646104, 15.10017 ], [ 145.645995, 15.100337 ], [ 145.64592, 15.10049 ], [ 145.645782, 15.100604 ], [ 145.645614, 15.100684 ], [ 145.64552, 15.10076 ], [ 145.64548, 15.100832 ], [ 145.645519, 15.100904 ], [ 145.645469, 15.100965 ], [ 145.645321, 15.101089 ], [ 145.645143, 15.10115 ], [ 145.64505, 15.101097 ], [ 145.644927, 15.101115 ], [ 145.644833, 15.101062 ], [ 145.644759, 15.101051 ], [ 145.644115, 15.100953 ], [ 145.643718, 15.100764 ], [ 145.643156, 15.100378 ], [ 145.642226, 15.099602 ], [ 145.641521, 15.098909 ], [ 145.640944, 15.098398 ], [ 145.640888, 15.098293 ], [ 145.640501, 15.097913 ], [ 145.640464, 15.097895 ], [ 145.640452, 15.097889 ], [ 145.640369, 15.097859 ], [ 145.640418, 15.097831 ], [ 145.640306, 15.097615 ], [ 145.640243, 15.097519 ], [ 145.64013, 15.097451 ], [ 145.640081, 15.097379 ], [ 145.639777, 15.097143 ], [ 145.639753, 15.097066 ], [ 145.63967, 15.097066 ], [ 145.639268, 15.09669 ], [ 145.639244, 15.096628 ], [ 145.639166, 15.096599 ], [ 145.639107, 15.096503 ], [ 145.639044, 15.096431 ], [ 145.639, 15.096354 ], [ 145.63898, 15.096292 ], [ 145.638872, 15.096234 ], [ 145.638777, 15.096118 ], [ 145.638753, 15.096027 ], [ 145.63864, 15.096036 ], [ 145.638343, 15.095551 ], [ 145.638265, 15.09545 ], [ 145.638112, 15.095382 ], [ 145.637911, 15.095238 ], [ 145.637848, 15.095113 ], [ 145.63776, 15.09505 ], [ 145.637751, 15.094983 ], [ 145.637648, 15.094916 ], [ 145.637486, 15.094776 ], [ 145.637492, 15.094647 ], [ 145.637448, 15.094589 ], [ 145.637405, 15.094436 ], [ 145.637361, 15.094373 ], [ 145.637287, 15.094292 ], [ 145.637238, 15.094268 ], [ 145.637159, 15.09432 ], [ 145.63709, 15.094334 ], [ 145.636902, 15.094103 ], [ 145.636928, 15.093969 ], [ 145.636845, 15.093773 ], [ 145.636757, 15.093734 ], [ 145.636713, 15.093681 ], [ 145.63662, 15.093628 ], [ 145.636536, 15.093646 ], [ 145.636183, 15.093324 ], [ 145.636189, 15.093204 ], [ 145.636057, 15.093069 ], [ 145.635867, 15.092796 ], [ 145.635725, 15.092603 ], [ 145.635366, 15.092247 ], [ 145.635351, 15.092152 ], [ 145.635263, 15.092161 ], [ 145.635135, 15.09205 ], [ 145.635131, 15.091988 ], [ 145.635042, 15.091963 ], [ 145.634979, 15.091929 ], [ 145.63494, 15.0918 ], [ 145.634808, 15.091641 ], [ 145.634574, 15.0913 ], [ 145.634334, 15.091108 ], [ 145.634256, 15.09104 ], [ 145.634187, 15.090992 ], [ 145.634065, 15.090785 ], [ 145.633973, 15.090574 ], [ 145.633831, 15.090483 ], [ 145.633802, 15.090353 ], [ 145.633739, 15.090296 ], [ 145.633624, 15.090156 ], [ 145.633473, 15.089935 ], [ 145.633399, 15.089863 ], [ 145.633316, 15.089834 ], [ 145.633292, 15.089772 ], [ 145.633242, 15.089781 ], [ 145.633154, 15.089747 ], [ 145.633184, 15.089718 ], [ 145.633174, 15.089666 ], [ 145.633105, 15.089646 ], [ 145.633042, 15.08954 ], [ 145.632993, 15.089492 ], [ 145.633023, 15.089368 ], [ 145.633044, 15.089225 ], [ 145.632882, 15.089229 ], [ 145.632837, 15.0892 ], [ 145.632897, 15.089147 ], [ 145.632991, 15.089047 ], [ 145.632996, 15.088966 ], [ 145.632913, 15.088942 ], [ 145.632953, 15.088822 ], [ 145.632845, 15.088707 ], [ 145.632797, 15.088558 ], [ 145.632812, 15.088506 ], [ 145.632758, 15.088529 ], [ 145.632734, 15.088453 ], [ 145.632694, 15.088457 ], [ 145.632641, 15.088385 ], [ 145.632518, 15.088265 ], [ 145.632453, 15.088174 ], [ 145.632483, 15.088064 ], [ 145.632532, 15.088012 ], [ 145.632513, 15.087944 ], [ 145.632593, 15.087768 ], [ 145.632609, 15.087649 ], [ 145.632703, 15.087553 ], [ 145.632728, 15.087482 ], [ 145.632802, 15.087387 ], [ 145.632773, 15.087353 ], [ 145.632719, 15.087377 ], [ 145.632664, 15.087391 ], [ 145.63263, 15.087448 ], [ 145.632526, 15.087476 ], [ 145.632314, 15.087479 ], [ 145.632288, 15.087436 ], [ 145.632285, 15.087431 ], [ 145.632221, 15.087378 ], [ 145.632173, 15.087282 ], [ 145.631917, 15.087262 ], [ 145.631843, 15.087204 ], [ 145.631746, 15.087098 ], [ 145.631717, 15.087007 ], [ 145.631706, 15.087003 ], [ 145.631663, 15.086988 ], [ 145.631609, 15.086915 ], [ 145.631555, 15.086877 ], [ 145.631551, 15.086791 ], [ 145.631497, 15.086723 ], [ 145.631384, 15.086747 ], [ 145.631167, 15.086741 ], [ 145.631079, 15.086664 ], [ 145.631021, 15.086558 ], [ 145.630928, 15.086452 ], [ 145.630775, 15.086394 ], [ 145.630712, 15.086298 ], [ 145.630254, 15.085946 ], [ 145.630146, 15.085936 ], [ 145.629975, 15.08577 ], [ 145.629765, 15.085723 ], [ 145.629619, 15.085626 ], [ 145.629068, 15.08544 ], [ 145.628901, 15.085359 ], [ 145.628754, 15.085322 ], [ 145.628604, 15.085256 ], [ 145.62842, 15.08519 ], [ 145.628181, 15.085053 ], [ 145.628113, 15.08499 ], [ 145.628009, 15.084928 ], [ 145.627971, 15.084879 ], [ 145.62787, 15.084862 ], [ 145.627765, 15.084861 ], [ 145.627631, 15.084768 ], [ 145.627582, 15.084709 ], [ 145.627565, 15.084627 ], [ 145.627515, 15.084594 ], [ 145.627432, 15.084616 ], [ 145.627337, 15.084572 ], [ 145.627365, 15.084518 ], [ 145.627321, 15.084458 ], [ 145.627305, 15.084448 ], [ 145.62726, 15.08442 ], [ 145.6272, 15.084447 ], [ 145.627063, 15.084353 ], [ 145.627073, 15.084181 ], [ 145.626979, 15.084238 ], [ 145.626866, 15.08418 ], [ 145.62667, 15.084001 ], [ 145.626563, 15.083886 ], [ 145.626588, 15.083762 ], [ 145.626663, 15.083681 ], [ 145.626604, 15.083661 ], [ 145.626397, 15.083703 ], [ 145.62627, 15.083497 ], [ 145.626335, 15.083392 ], [ 145.626261, 15.083305 ], [ 145.626143, 15.083338 ], [ 145.625747, 15.082881 ], [ 145.625645, 15.08268 ], [ 145.625511, 15.082492 ], [ 145.625302, 15.082271 ], [ 145.625115, 15.082074 ], [ 145.624675, 15.081569 ], [ 145.624494, 15.081319 ], [ 145.624466, 15.081219 ], [ 145.624255, 15.081079 ], [ 145.624206, 15.08103 ], [ 145.624138, 15.080877 ], [ 145.623971, 15.080809 ], [ 145.623695, 15.080458 ], [ 145.623505, 15.080223 ], [ 145.623157, 15.079876 ], [ 145.623055, 15.079699 ], [ 145.622987, 15.079555 ], [ 145.622899, 15.079449 ], [ 145.622846, 15.079358 ], [ 145.622777, 15.0793 ], [ 145.622768, 15.079247 ], [ 145.622714, 15.079113 ], [ 145.622271, 15.078756 ], [ 145.622163, 15.078789 ], [ 145.622045, 15.078745 ], [ 145.62204, 15.078645 ], [ 145.621849, 15.078548 ], [ 145.621692, 15.07849 ], [ 145.621471, 15.078374 ], [ 145.621359, 15.078249 ], [ 145.6213, 15.078119 ], [ 145.621281, 15.078052 ], [ 145.621188, 15.078047 ], [ 145.621124, 15.078051 ], [ 145.621109, 15.077974 ], [ 145.62111, 15.077903 ], [ 145.620972, 15.077887 ], [ 145.620864, 15.07782 ], [ 145.620766, 15.077776 ], [ 145.620752, 15.077685 ], [ 145.620777, 15.077628 ], [ 145.620649, 15.077555 ], [ 145.620526, 15.077531 ], [ 145.620436, 15.077363 ], [ 145.620313, 15.077372 ], [ 145.620176, 15.077266 ], [ 145.620196, 15.077204 ], [ 145.620098, 15.077155 ], [ 145.619926, 15.077159 ], [ 145.619764, 15.077091 ], [ 145.619754, 15.077014 ], [ 145.619583, 15.076879 ], [ 145.619509, 15.07697 ], [ 145.619306, 15.077064 ], [ 145.619164, 15.076996 ], [ 145.618967, 15.076933 ], [ 145.61886, 15.076818 ], [ 145.618757, 15.076764 ], [ 145.618728, 15.076678 ], [ 145.618305, 15.076541 ], [ 145.618237, 15.076412 ], [ 145.618046, 15.076363 ], [ 145.618036, 15.076272 ], [ 145.617923, 15.076238 ], [ 145.617774, 15.076073 ], [ 145.617633, 15.075916 ], [ 145.617242, 15.075377 ], [ 145.616627, 15.074608 ], [ 145.616447, 15.074277 ], [ 145.616382, 15.074047 ], [ 145.616354, 15.073808 ], [ 145.616288, 15.073396 ], [ 145.61621, 15.073181 ], [ 145.616127, 15.072968 ], [ 145.61607, 15.072821 ], [ 145.616052, 15.072591 ], [ 145.615937, 15.072366 ], [ 145.615777, 15.072087 ], [ 145.615577, 15.071847 ], [ 145.615425, 15.071703 ], [ 145.615239, 15.071553 ], [ 145.614997, 15.071317 ], [ 145.614919, 15.071188 ], [ 145.614649, 15.071004 ], [ 145.614473, 15.070912 ], [ 145.614488, 15.070826 ], [ 145.614375, 15.070792 ], [ 145.614257, 15.070791 ], [ 145.614174, 15.070643 ], [ 145.613977, 15.070598 ], [ 145.6139, 15.070464 ], [ 145.614018, 15.070383 ], [ 145.613999, 15.070297 ], [ 145.613872, 15.070153 ], [ 145.61366, 15.070171 ], [ 145.613429, 15.070098 ], [ 145.61317, 15.0699 ], [ 145.612935, 15.069674 ], [ 145.612913, 15.069568 ], [ 145.612806, 15.069505 ], [ 145.612752, 15.069376 ], [ 145.61262, 15.069222 ], [ 145.612607, 15.069016 ], [ 145.61247, 15.068934 ], [ 145.612269, 15.068828 ], [ 145.612073, 15.068621 ], [ 145.611841, 15.068347 ], [ 145.611733, 15.068313 ], [ 145.611714, 15.068212 ], [ 145.611686, 15.067958 ], [ 145.611731, 15.067806 ], [ 145.611668, 15.067748 ], [ 145.611461, 15.067718 ], [ 145.611211, 15.067535 ], [ 145.611064, 15.067409 ], [ 145.610857, 15.067069 ], [ 145.610759, 15.067087 ], [ 145.610373, 15.066611 ], [ 145.610241, 15.066515 ], [ 145.610236, 15.066462 ], [ 145.610124, 15.066337 ], [ 145.610011, 15.066241 ], [ 145.609845, 15.066072 ], [ 145.609434, 15.065611 ], [ 145.609415, 15.065524 ], [ 145.609253, 15.065499 ], [ 145.608994, 15.06523 ], [ 145.60884, 15.064966 ], [ 145.608733, 15.064865 ], [ 145.608611, 15.064615 ], [ 145.607976, 15.063975 ], [ 145.607957, 15.063894 ], [ 145.607893, 15.063889 ], [ 145.607883, 15.063827 ], [ 145.607794, 15.063831 ], [ 145.607658, 15.063691 ], [ 145.607624, 15.0636 ], [ 145.606903, 15.062845 ], [ 145.606736, 15.062767 ], [ 145.606731, 15.062691 ], [ 145.606683, 15.06259 ], [ 145.606551, 15.062469 ], [ 145.606462, 15.062416 ], [ 145.606458, 15.062364 ], [ 145.606419, 15.06232 ], [ 145.606008, 15.061897 ], [ 145.605979, 15.061801 ], [ 145.605739, 15.06157 ], [ 145.605725, 15.06146 ], [ 145.605642, 15.06145 ], [ 145.605583, 15.06133 ], [ 145.605495, 15.061286 ], [ 145.605476, 15.061224 ], [ 145.605339, 15.061108 ], [ 145.605158, 15.06083 ], [ 145.604962, 15.06079 ], [ 145.604884, 15.06057 ], [ 145.604591, 15.060248 ], [ 145.604098, 15.059623 ], [ 145.603981, 15.059522 ], [ 145.60337, 15.058834 ], [ 145.603337, 15.058609 ], [ 145.603185, 15.058455 ], [ 145.603142, 15.058364 ], [ 145.602965, 15.05831 ], [ 145.602946, 15.058214 ], [ 145.602702, 15.058146 ], [ 145.602693, 15.058041 ], [ 145.60266, 15.057859 ], [ 145.602651, 15.057691 ], [ 145.602469, 15.05768 ], [ 145.602456, 15.057494 ], [ 145.602329, 15.057373 ], [ 145.601947, 15.057032 ], [ 145.601937, 15.057008 ], [ 145.601761, 15.056873 ], [ 145.601692, 15.056872 ], [ 145.601663, 15.056786 ], [ 145.601511, 15.056637 ], [ 145.601335, 15.056569 ], [ 145.601281, 15.056501 ], [ 145.60119, 15.056396 ], [ 145.601067, 15.056385 ], [ 145.601019, 15.056284 ], [ 145.600901, 15.056279 ], [ 145.600891, 15.056221 ], [ 145.600631, 15.056091 ], [ 145.600337, 15.055869 ], [ 145.600209, 15.055887 ], [ 145.600141, 15.055791 ], [ 145.599798, 15.055593 ], [ 145.59945, 15.055342 ], [ 145.599146, 15.055139 ], [ 145.598803, 15.054998 ], [ 145.598739, 15.05495 ], [ 145.598641, 15.054931 ], [ 145.598631, 15.054878 ], [ 145.598488, 15.054887 ], [ 145.598444, 15.054829 ], [ 145.598464, 15.054786 ], [ 145.598379, 15.054723 ], [ 145.598305, 15.054694 ], [ 145.598291, 15.054608 ], [ 145.598212, 15.054627 ], [ 145.598168, 15.05455 ], [ 145.598119, 15.054511 ], [ 145.598011, 15.054496 ], [ 145.597957, 15.054443 ], [ 145.597884, 15.054381 ], [ 145.59784, 15.054356 ], [ 145.597776, 15.054351 ], [ 145.597786, 15.054284 ], [ 145.597732, 15.054188 ], [ 145.597649, 15.054092 ], [ 145.597679, 15.053992 ], [ 145.597655, 15.053934 ], [ 145.597626, 15.053953 ], [ 145.597586, 15.053929 ], [ 145.597547, 15.053867 ], [ 145.597503, 15.053871 ], [ 145.597479, 15.053833 ], [ 145.597455, 15.053751 ], [ 145.597396, 15.053727 ], [ 145.597332, 15.053712 ], [ 145.597303, 15.053664 ], [ 145.597251, 15.053678 ], [ 145.597187, 15.053687 ], [ 145.597138, 15.053649 ], [ 145.597148, 15.053582 ], [ 145.597079, 15.053601 ], [ 145.596932, 15.053528 ], [ 145.596883, 15.05348 ], [ 145.596854, 15.053465 ], [ 145.596785, 15.053408 ], [ 145.596687, 15.053412 ], [ 145.596637, 15.05344 ], [ 145.596633, 15.053397 ], [ 145.596596, 15.053383 ], [ 145.596546, 15.053387 ], [ 145.596497, 15.053358 ], [ 145.596478, 15.053315 ], [ 145.596424, 15.053295 ], [ 145.596434, 15.053257 ], [ 145.596439, 15.0532 ], [ 145.59641, 15.053166 ], [ 145.59645, 15.053085 ], [ 145.59647, 15.053018 ], [ 145.596431, 15.052927 ], [ 145.596377, 15.052893 ], [ 145.596338, 15.05285 ], [ 145.596349, 15.052778 ], [ 145.596398, 15.052745 ], [ 145.596423, 15.052654 ], [ 145.596414, 15.052602 ], [ 145.596458, 15.052554 ], [ 145.596564, 15.052569 ], [ 145.596633, 15.052531 ], [ 145.596678, 15.052479 ], [ 145.596737, 15.052422 ], [ 145.596758, 15.052269 ], [ 145.596699, 15.052216 ], [ 145.596744, 15.052178 ], [ 145.596769, 15.05213 ], [ 145.596828, 15.052126 ], [ 145.596931, 15.052088 ], [ 145.596996, 15.052051 ], [ 145.59705, 15.051974 ], [ 145.597129, 15.051984 ], [ 145.597179, 15.051918 ], [ 145.597243, 15.051904 ], [ 145.597336, 15.0519 ], [ 145.597439, 15.051929 ], [ 145.597548, 15.051891 ], [ 145.597607, 15.051844 ], [ 145.597706, 15.051821 ], [ 145.597765, 15.051826 ], [ 145.597844, 15.051817 ], [ 145.597977, 15.051774 ], [ 145.598012, 15.051722 ], [ 145.59812, 15.051684 ], [ 145.598169, 15.051704 ], [ 145.598253, 15.051661 ], [ 145.598266, 15.051604 ], [ 145.598301, 15.051552 ], [ 145.598395, 15.051523 ], [ 145.598425, 15.051452 ], [ 145.598445, 15.05138 ], [ 145.598474, 15.051342 ], [ 145.598465, 15.051285 ], [ 145.598495, 15.051237 ], [ 145.598528, 15.051206 ], [ 145.598539, 15.05119 ], [ 145.598559, 15.051214 ], [ 145.598589, 15.05119 ], [ 145.598599, 15.05107 ], [ 145.598629, 15.050989 ], [ 145.598679, 15.05097 ], [ 145.598699, 15.050947 ], [ 145.598744, 15.050779 ], [ 145.598779, 15.050717 ], [ 145.598785, 15.050584 ], [ 145.598805, 15.050498 ], [ 145.598813, 15.050354 ], [ 145.598774, 15.050335 ], [ 145.598749, 15.050311 ], [ 145.598784, 15.050273 ], [ 145.598775, 15.050201 ], [ 145.598731, 15.050162 ], [ 145.598775, 15.05011 ], [ 145.598752, 15.049986 ], [ 145.598698, 15.049961 ], [ 145.598688, 15.049885 ], [ 145.598703, 15.049827 ], [ 145.598645, 15.049755 ], [ 145.59873, 15.04955 ], [ 145.598794, 15.049474 ], [ 145.598795, 15.049463 ], [ 145.5988, 15.049383 ], [ 145.598741, 15.049306 ], [ 145.598747, 15.049244 ], [ 145.598698, 15.049139 ], [ 145.598634, 15.049095 ], [ 145.598591, 15.049014 ], [ 145.598527, 15.04896 ], [ 145.598454, 15.048898 ], [ 145.598449, 15.048802 ], [ 145.598336, 15.048749 ], [ 145.598263, 15.048691 ], [ 145.598259, 15.048509 ], [ 145.598235, 15.048447 ], [ 145.598162, 15.048375 ], [ 145.598103, 15.048307 ], [ 145.598069, 15.04825 ], [ 145.598084, 15.048154 ], [ 145.598119, 15.048068 ], [ 145.598095, 15.047996 ], [ 145.598016, 15.048001 ], [ 145.597958, 15.047981 ], [ 145.597909, 15.047933 ], [ 145.597904, 15.047876 ], [ 145.597939, 15.047776 ], [ 145.597925, 15.047732 ], [ 145.597881, 15.047713 ], [ 145.597841, 15.04767 ], [ 145.597803, 15.047588 ], [ 145.597793, 15.047507 ], [ 145.597813, 15.04744 ], [ 145.597779, 15.047387 ], [ 145.597676, 15.047386 ], [ 145.597617, 15.047362 ], [ 145.597599, 15.047346 ], [ 145.597578, 15.047295 ], [ 145.597573, 15.047257 ], [ 145.597628, 15.047176 ], [ 145.59767, 15.047104 ], [ 145.597696, 15.047013 ], [ 145.597662, 15.046956 ], [ 145.597619, 15.046755 ], [ 145.597624, 15.04664 ], [ 145.597644, 15.046554 ], [ 145.597606, 15.046444 ], [ 145.597552, 15.046367 ], [ 145.597592, 15.046286 ], [ 145.597558, 15.046204 ], [ 145.597529, 15.04607 ], [ 145.597491, 15.04595 ], [ 145.597448, 15.045716 ], [ 145.597419, 15.045625 ], [ 145.597439, 15.045558 ], [ 145.597425, 15.045429 ], [ 145.597367, 15.045385 ], [ 145.597429, 15.045228 ], [ 145.597425, 15.04517 ], [ 145.597346, 15.045146 ], [ 145.597268, 15.045102 ], [ 145.597283, 15.045055 ], [ 145.597357, 15.044983 ], [ 145.597422, 15.04485 ], [ 145.597433, 15.044706 ], [ 145.597394, 15.044596 ], [ 145.597439, 15.044491 ], [ 145.597367, 15.044276 ], [ 145.597348, 15.044075 ], [ 145.597363, 15.043989 ], [ 145.597413, 15.043908 ], [ 145.597339, 15.043567 ], [ 145.597268, 15.043146 ], [ 145.597225, 15.042916 ], [ 145.597241, 15.042811 ], [ 145.597173, 15.042586 ], [ 145.597154, 15.042485 ], [ 145.597091, 15.04238 ], [ 145.597047, 15.042284 ], [ 145.597053, 15.042131 ], [ 145.596995, 15.042011 ], [ 145.59704, 15.041959 ], [ 145.597016, 15.041863 ], [ 145.596932, 15.04179 ], [ 145.596803, 15.04156 ], [ 145.596829, 15.041374 ], [ 145.596835, 15.041283 ], [ 145.596836, 15.041158 ], [ 145.596817, 15.040991 ], [ 145.596769, 15.040866 ], [ 145.596764, 15.040751 ], [ 145.596716, 15.040636 ], [ 145.596623, 15.040526 ], [ 145.596585, 15.040382 ], [ 145.596512, 15.040252 ], [ 145.596424, 15.040132 ], [ 145.596236, 15.039902 ], [ 145.596149, 15.039729 ], [ 145.595997, 15.039642 ], [ 145.59585, 15.039521 ], [ 145.595796, 15.039454 ], [ 145.595787, 15.039358 ], [ 145.595674, 15.039233 ], [ 145.595596, 15.039156 ], [ 145.595476, 15.03906 ], [ 145.595393, 15.039016 ], [ 145.595437, 15.038959 ], [ 145.595413, 15.038897 ], [ 145.595354, 15.038897 ], [ 145.59532, 15.038911 ], [ 145.595281, 15.038925 ], [ 145.595253, 15.03891 ], [ 145.595221, 15.038896 ], [ 145.595182, 15.038819 ], [ 145.595154, 15.038723 ], [ 145.595164, 15.038651 ], [ 145.595154, 15.038589 ], [ 145.595041, 15.038574 ], [ 145.594924, 15.038521 ], [ 145.594914, 15.038459 ], [ 145.59488, 15.038367 ], [ 145.594674, 15.03829 ], [ 145.594517, 15.038279 ], [ 145.594473, 15.038236 ], [ 145.59436, 15.038139 ], [ 145.594193, 15.038114 ], [ 145.59406, 15.038047 ], [ 145.593972, 15.038008 ], [ 145.593825, 15.037964 ], [ 145.593677, 15.037925 ], [ 145.593569, 15.037905 ], [ 145.593446, 15.037866 ], [ 145.593358, 15.037875 ], [ 145.593289, 15.037889 ], [ 145.593186, 15.037845 ], [ 145.593068, 15.037711 ], [ 145.592985, 15.037633 ], [ 145.592887, 15.037561 ], [ 145.592814, 15.037494 ], [ 145.592755, 15.037412 ], [ 145.592648, 15.037325 ], [ 145.592599, 15.037244 ], [ 145.592531, 15.037186 ], [ 145.592393, 15.037118 ], [ 145.592285, 15.037055 ], [ 145.592167, 15.037016 ], [ 145.592035, 15.036939 ], [ 145.591932, 15.036871 ], [ 145.591834, 15.036794 ], [ 145.591731, 15.036817 ], [ 145.591642, 15.036865 ], [ 145.591519, 15.036878 ], [ 145.591342, 15.036815 ], [ 145.591149, 15.036886 ], [ 145.590987, 15.036923 ], [ 145.590967, 15.036947 ], [ 145.590942, 15.036956 ], [ 145.590834, 15.037017 ], [ 145.590705, 15.037127 ], [ 145.590675, 15.037198 ], [ 145.590611, 15.037246 ], [ 145.590512, 15.037226 ], [ 145.590414, 15.037283 ], [ 145.590329, 15.037349 ], [ 145.590177, 15.037353 ], [ 145.590074, 15.037348 ], [ 145.589867, 15.037389 ], [ 145.589733, 15.037446 ], [ 145.589487, 15.03754 ], [ 145.589442, 15.037592 ], [ 145.589412, 15.037616 ], [ 145.589363, 15.037683 ], [ 145.589333, 15.03774 ], [ 145.589307, 15.03784 ], [ 145.589248, 15.037902 ], [ 145.589178, 15.037997 ], [ 145.589099, 15.038049 ], [ 145.58903, 15.038111 ], [ 145.589049, 15.038164 ], [ 145.588901, 15.03823 ], [ 145.588788, 15.03821 ], [ 145.588754, 15.038138 ], [ 145.588695, 15.0381 ], [ 145.588666, 15.038061 ], [ 145.588623, 15.037951 ], [ 145.588608, 15.037865 ], [ 145.588599, 15.037778 ], [ 145.588541, 15.037635 ], [ 145.588497, 15.037515 ], [ 145.588449, 15.037428 ], [ 145.588494, 15.037347 ], [ 145.588445, 15.037242 ], [ 145.588446, 15.037132 ], [ 145.588407, 15.037036 ], [ 145.588388, 15.036902 ], [ 145.588359, 15.036801 ], [ 145.588365, 15.03671 ], [ 145.588341, 15.036662 ], [ 145.588334, 15.036571 ], [ 145.588276, 15.036409 ], [ 145.588267, 15.036284 ], [ 145.588297, 15.036213 ], [ 145.588351, 15.03617 ], [ 145.58845, 15.036156 ], [ 145.588514, 15.036113 ], [ 145.588544, 15.036047 ], [ 145.588471, 15.03597 ], [ 145.588392, 15.035969 ], [ 145.588318, 15.035935 ], [ 145.58827, 15.035873 ], [ 145.588245, 15.035801 ], [ 145.588256, 15.03572 ], [ 145.588197, 15.035609 ], [ 145.588129, 15.035532 ], [ 145.588134, 15.035461 ], [ 145.588169, 15.035427 ], [ 145.58817, 15.03536 ], [ 145.588116, 15.035336 ], [ 145.588086, 15.035279 ], [ 145.588121, 15.035226 ], [ 145.588124, 15.035135 ], [ 145.588081, 15.035044 ], [ 145.588047, 15.034929 ], [ 145.588057, 15.034834 ], [ 145.588003, 15.0348 ], [ 145.587901, 15.034665 ], [ 145.587844, 15.034397 ], [ 145.587805, 15.034291 ], [ 145.58781, 15.034215 ], [ 145.58788, 15.034187 ], [ 145.587865, 15.034105 ], [ 145.587841, 15.034033 ], [ 145.587851, 15.033967 ], [ 145.587827, 15.03388 ], [ 145.587749, 15.033818 ], [ 145.587706, 15.033712 ], [ 145.587711, 15.033607 ], [ 145.587731, 15.033531 ], [ 145.587747, 15.033445 ], [ 145.587747, 15.033368 ], [ 145.587718, 15.033272 ], [ 145.587724, 15.033205 ], [ 145.587744, 15.033129 ], [ 145.587811, 15.033048 ], [ 145.587792, 15.032957 ], [ 145.587772, 15.032909 ], [ 145.587773, 15.032799 ], [ 145.587784, 15.032694 ], [ 145.587779, 15.032612 ], [ 145.587804, 15.032546 ], [ 145.58779, 15.032479 ], [ 145.58781, 15.032402 ], [ 145.58783, 15.032345 ], [ 145.587781, 15.032297 ], [ 145.587762, 15.032244 ], [ 145.587782, 15.032153 ], [ 145.587812, 15.032106 ], [ 145.587773, 15.031986 ], [ 145.587715, 15.031952 ], [ 145.587715, 15.03188 ], [ 145.58775, 15.031837 ], [ 145.587765, 15.03178 ], [ 145.587711, 15.031722 ], [ 145.587647, 15.031722 ], [ 145.587692, 15.031622 ], [ 145.587683, 15.031555 ], [ 145.587658, 15.031521 ], [ 145.587609, 15.031502 ], [ 145.587585, 15.031482 ], [ 145.587649, 15.03143 ], [ 145.587654, 15.031402 ], [ 145.58764, 15.031363 ], [ 145.587638, 15.031268 ], [ 145.587614, 15.0312 ], [ 145.587545, 15.0312 ], [ 145.587447, 15.031175 ], [ 145.587443, 15.031032 ], [ 145.587448, 15.030979 ], [ 145.587404, 15.030946 ], [ 145.587376, 15.030745 ], [ 145.587312, 15.030744 ], [ 145.587188, 15.030767 ], [ 145.587125, 15.0307 ], [ 145.587086, 15.030614 ], [ 145.587028, 15.030503 ], [ 145.586984, 15.030364 ], [ 145.586941, 15.030264 ], [ 145.586961, 15.030154 ], [ 145.586981, 15.030072 ], [ 145.58699, 15.029948 ], [ 145.58701, 15.029877 ], [ 145.587054, 15.029839 ], [ 145.587138, 15.029815 ], [ 145.587188, 15.029782 ], [ 145.587213, 15.029691 ], [ 145.587179, 15.029619 ], [ 145.587115, 15.029605 ], [ 145.587011, 15.029633 ], [ 145.586957, 15.029594 ], [ 145.586958, 15.029489 ], [ 145.586983, 15.029408 ], [ 145.587063, 15.029303 ], [ 145.587063, 15.029212 ], [ 145.587024, 15.029236 ], [ 145.586999, 15.029269 ], [ 145.586955, 15.029278 ], [ 145.586911, 15.02913 ], [ 145.586917, 15.029025 ], [ 145.586957, 15.028944 ], [ 145.586947, 15.028905 ], [ 145.586859, 15.028876 ], [ 145.586841, 15.028632 ], [ 145.586792, 15.028598 ], [ 145.586713, 15.028564 ], [ 145.586557, 15.028434 ], [ 145.586528, 15.028357 ], [ 145.586481, 15.028271 ], [ 145.58661, 15.028138 ], [ 145.586621, 15.028066 ], [ 145.586621, 15.028009 ], [ 145.586562, 15.027941 ], [ 145.586459, 15.027898 ], [ 145.586405, 15.02784 ], [ 145.586342, 15.027763 ], [ 145.586278, 15.027724 ], [ 145.586229, 15.027681 ], [ 145.58625, 15.0276 ], [ 145.586314, 15.027552 ], [ 145.586368, 15.027495 ], [ 145.586403, 15.027429 ], [ 145.586389, 15.027357 ], [ 145.586345, 15.027342 ], [ 145.586271, 15.027303 ], [ 145.586227, 15.027251 ], [ 145.586075, 15.027202 ], [ 145.586075, 15.027274 ], [ 145.58603, 15.027355 ], [ 145.58599, 15.02735 ], [ 145.585927, 15.027282 ], [ 145.585908, 15.027148 ], [ 145.585889, 15.027062 ], [ 145.585855, 15.026966 ], [ 145.585801, 15.026932 ], [ 145.585718, 15.026937 ], [ 145.585698, 15.026874 ], [ 145.585669, 15.026817 ], [ 145.585689, 15.026764 ], [ 145.585729, 15.026712 ], [ 145.585737, 15.026669 ], [ 145.585697, 15.026616 ], [ 145.585659, 15.026525 ], [ 145.58561, 15.026491 ], [ 145.58562, 15.026424 ], [ 145.58565, 15.026362 ], [ 145.585621, 15.026328 ], [ 145.585493, 15.026275 ], [ 145.585429, 15.026227 ], [ 145.5854, 15.026155 ], [ 145.585327, 15.026121 ], [ 145.585317, 15.02603 ], [ 145.585323, 15.025925 ], [ 145.585284, 15.025896 ], [ 145.585245, 15.025848 ], [ 145.58525, 15.025814 ], [ 145.585191, 15.025795 ], [ 145.585122, 15.025751 ], [ 145.585118, 15.025656 ], [ 145.585119, 15.02555 ], [ 145.58508, 15.025493 ], [ 145.585006, 15.025459 ], [ 145.584878, 15.025434 ], [ 145.584855, 15.025334 ], [ 145.58483, 15.025271 ], [ 145.584826, 15.025195 ], [ 145.58487, 15.025152 ], [ 145.584851, 15.02509 ], [ 145.584788, 15.025046 ], [ 145.584729, 15.024979 ], [ 145.584769, 15.024907 ], [ 145.584745, 15.02484 ], [ 145.58473, 15.024759 ], [ 145.584701, 15.024658 ], [ 145.584631, 15.024529 ], [ 145.584592, 15.024428 ], [ 145.584524, 15.02438 ], [ 145.584485, 15.024293 ], [ 145.584466, 15.024226 ], [ 145.584387, 15.024211 ], [ 145.584363, 15.024101 ], [ 145.584339, 15.024049 ], [ 145.5843, 15.023919 ], [ 145.584321, 15.023776 ], [ 145.584272, 15.023742 ], [ 145.584242, 15.023737 ], [ 145.584208, 15.023722 ], [ 145.584194, 15.023651 ], [ 145.584159, 15.023641 ], [ 145.584145, 15.023574 ], [ 145.58415, 15.023516 ], [ 145.584126, 15.023449 ], [ 145.584087, 15.023406 ], [ 145.584098, 15.023334 ], [ 145.584137, 15.023349 ], [ 145.584221, 15.023326 ], [ 145.584265, 15.023273 ], [ 145.584291, 15.023125 ], [ 145.584358, 15.023044 ], [ 145.584412, 15.023016 ], [ 145.584476, 15.023002 ], [ 145.584506, 15.023012 ], [ 145.584575, 15.023007 ], [ 145.584634, 15.022993 ], [ 145.584673, 15.022974 ], [ 145.584699, 15.022755 ], [ 145.584729, 15.022707 ], [ 145.58472, 15.022616 ], [ 145.584725, 15.022554 ], [ 145.584706, 15.022458 ], [ 145.584702, 15.022386 ], [ 145.584746, 15.022348 ], [ 145.584727, 15.022286 ], [ 145.584678, 15.022224 ], [ 145.584713, 15.022171 ], [ 145.584782, 15.0221 ], [ 145.584817, 15.022052 ], [ 145.584778, 15.021966 ], [ 145.584715, 15.021899 ], [ 145.584651, 15.02185 ], [ 145.584587, 15.021812 ], [ 145.584504, 15.021725 ], [ 145.584441, 15.021682 ], [ 145.584382, 15.021653 ], [ 145.584196, 15.021513 ], [ 145.584137, 15.021445 ], [ 145.584103, 15.021369 ], [ 145.584049, 15.021306 ], [ 145.583939, 15.021191 ], [ 145.583831, 15.021199 ], [ 145.583733, 15.02117 ], [ 145.58363, 15.021146 ], [ 145.583551, 15.021107 ], [ 145.583413, 15.021101 ], [ 145.583336, 15.020957 ], [ 145.583238, 15.020894 ], [ 145.58311, 15.020841 ], [ 145.583066, 15.020764 ], [ 145.583077, 15.020621 ], [ 145.583147, 15.020502 ], [ 145.583103, 15.020401 ], [ 145.58304, 15.020295 ], [ 145.583006, 15.020204 ], [ 145.583075, 15.020142 ], [ 145.583065, 15.020045 ], [ 145.583062, 15.019932 ], [ 145.58305, 15.01986 ], [ 145.583046, 15.01975 ], [ 145.583007, 15.019692 ], [ 145.582973, 15.019611 ], [ 145.582973, 15.01953 ], [ 145.58293, 15.019458 ], [ 145.582867, 15.019304 ], [ 145.582799, 15.01917 ], [ 145.58274, 15.019074 ], [ 145.582726, 15.018949 ], [ 145.582692, 15.01892 ], [ 145.582658, 15.018848 ], [ 145.582683, 15.018767 ], [ 145.582679, 15.018705 ], [ 145.582694, 15.01859 ], [ 145.582614, 15.018399 ], [ 145.582565, 15.018365 ], [ 145.582536, 15.018298 ], [ 145.582527, 15.018245 ], [ 145.582571, 15.018193 ], [ 145.582562, 15.01813 ], [ 145.582523, 15.018082 ], [ 145.58246, 15.017986 ], [ 145.582396, 15.017871 ], [ 145.582342, 15.017837 ], [ 145.582284, 15.017708 ], [ 145.5823, 15.017627 ], [ 145.58227, 15.017588 ], [ 145.582216, 15.017578 ], [ 145.582202, 15.017473 ], [ 145.582247, 15.017425 ], [ 145.582267, 15.017335 ], [ 145.582287, 15.017215 ], [ 145.582263, 15.017119 ], [ 145.582252, 15.016952 ], [ 145.582238, 15.016847 ], [ 145.582274, 15.016679 ], [ 145.582308, 15.016651 ], [ 145.582407, 15.016608 ], [ 145.582418, 15.016503 ], [ 145.582384, 15.016431 ], [ 145.582379, 15.016345 ], [ 145.582429, 15.016317 ], [ 145.582503, 15.016303 ], [ 145.582557, 15.016337 ], [ 145.582611, 15.016313 ], [ 145.582631, 15.016275 ], [ 145.582656, 15.016151 ], [ 145.582686, 15.01607 ], [ 145.582712, 15.015965 ], [ 145.582796, 15.015917 ], [ 145.582875, 15.015837 ], [ 145.58291, 15.015755 ], [ 145.582915, 15.015688 ], [ 145.582945, 15.015646 ], [ 145.582985, 15.015617 ], [ 145.582971, 15.015493 ], [ 145.582966, 15.015402 ], [ 145.582996, 15.015364 ], [ 145.582996, 15.015292 ], [ 145.583017, 15.015206 ], [ 145.583037, 15.015154 ], [ 145.583074, 15.015116 ], [ 145.583204, 15.014719 ], [ 145.583308, 15.014677 ], [ 145.583456, 15.01464 ], [ 145.583506, 15.014592 ], [ 145.583486, 15.014506 ], [ 145.583423, 15.014376 ], [ 145.583463, 15.01429 ], [ 145.583527, 15.014253 ], [ 145.583632, 15.014086 ], [ 145.583593, 15.014052 ], [ 145.583593, 15.01398 ], [ 145.583687, 15.013967 ], [ 145.583751, 15.013938 ], [ 145.583717, 15.013838 ], [ 145.583762, 15.013781 ], [ 145.583807, 15.013704 ], [ 145.583851, 15.013657 ], [ 145.583896, 15.013619 ], [ 145.583935, 15.013605 ], [ 145.583985, 15.013514 ], [ 145.584025, 15.013457 ], [ 145.584104, 15.013419 ], [ 145.584148, 15.013477 ], [ 145.584187, 15.013472 ], [ 145.584192, 15.013434 ], [ 145.584242, 15.013396 ], [ 145.584252, 15.013358 ], [ 145.584301, 15.013392 ], [ 145.58437, 15.013402 ], [ 145.584381, 15.01322 ], [ 145.58446, 15.013177 ], [ 145.584519, 15.013202 ], [ 145.584548, 15.013226 ], [ 145.584666, 15.013198 ], [ 145.584711, 15.013155 ], [ 145.584775, 15.013151 ], [ 145.584809, 15.013213 ], [ 145.584685, 15.013298 ], [ 145.584754, 15.013299 ], [ 145.584858, 15.01329 ], [ 145.584951, 15.013247 ], [ 145.585021, 15.01319 ], [ 145.585045, 15.013162 ], [ 145.585016, 15.013152 ], [ 145.584987, 15.01309 ], [ 145.585085, 15.013071 ], [ 145.585115, 15.013081 ], [ 145.585159, 15.013105 ], [ 145.585203, 15.013163 ], [ 145.585237, 15.013192 ], [ 145.585316, 15.013202 ], [ 145.585331, 15.01314 ], [ 145.585336, 15.013068 ], [ 145.585415, 15.013035 ], [ 145.585484, 15.013045 ], [ 145.585499, 15.013093 ], [ 145.585538, 15.013122 ], [ 145.585631, 15.013094 ], [ 145.585705, 15.013085 ], [ 145.585893, 15.013052 ], [ 145.585956, 15.013091 ], [ 145.586027, 15.01312 ], [ 145.586141, 15.013035 ], [ 145.586191, 15.012992 ], [ 145.586235, 15.012997 ], [ 145.586254, 15.013036 ], [ 145.586334, 15.012979 ], [ 145.586403, 15.012922 ], [ 145.586462, 15.012946 ], [ 145.586496, 15.012932 ], [ 145.586546, 15.012894 ], [ 145.586527, 15.012798 ], [ 145.586576, 15.012741 ], [ 145.586655, 15.012741 ], [ 145.586695, 15.012689 ], [ 145.586754, 15.012661 ], [ 145.586853, 15.012566 ], [ 145.586947, 15.012509 ], [ 145.586952, 15.012447 ], [ 145.587017, 15.012385 ], [ 145.587085, 15.0124 ], [ 145.58716, 15.012333 ], [ 145.587136, 15.012214 ], [ 145.587196, 15.012109 ], [ 145.587216, 15.012028 ], [ 145.587261, 15.011946 ], [ 145.5873, 15.011932 ], [ 145.587324, 15.011976 ], [ 145.587393, 15.011976 ], [ 145.587482, 15.011933 ], [ 145.587522, 15.011843 ], [ 145.587532, 15.011786 ], [ 145.587557, 15.01169 ], [ 145.587548, 15.011604 ], [ 145.587524, 15.011508 ], [ 145.587495, 15.011417 ], [ 145.587491, 15.01134 ], [ 145.587479, 15.011249 ], [ 145.587509, 15.011159 ], [ 145.587451, 15.011053 ], [ 145.587437, 15.010886 ], [ 145.587462, 15.010809 ], [ 145.587497, 15.010757 ], [ 145.587522, 15.010676 ], [ 145.587572, 15.010623 ], [ 145.587759, 15.010601 ], [ 145.587808, 15.010611 ], [ 145.587931, 15.010611 ], [ 145.588, 15.010569 ], [ 145.588075, 15.010502 ], [ 145.58812, 15.010412 ], [ 145.588174, 15.010326 ], [ 145.588258, 15.010245 ], [ 145.588274, 15.010183 ], [ 145.588274, 15.010102 ], [ 145.588324, 15.010016 ], [ 145.588246, 15.009948 ], [ 145.58829, 15.009877 ], [ 145.588325, 15.009801 ], [ 145.588331, 15.009734 ], [ 145.588346, 15.009715 ], [ 145.58838, 15.009696 ], [ 145.588395, 15.009744 ], [ 145.588404, 15.009806 ], [ 145.588389, 15.009854 ], [ 145.588364, 15.009897 ], [ 145.588398, 15.009949 ], [ 145.588412, 15.009936 ], [ 145.588443, 15.009864 ], [ 145.588453, 15.009797 ], [ 145.588452, 15.009581 ], [ 145.588527, 15.009501 ], [ 145.588596, 15.009463 ], [ 145.588621, 15.009386 ], [ 145.588568, 15.00918 ], [ 145.588534, 15.009094 ], [ 145.588515, 15.009013 ], [ 145.588441, 15.008974 ], [ 145.588457, 15.008893 ], [ 145.588457, 15.008788 ], [ 145.588419, 15.008711 ], [ 145.588375, 15.008596 ], [ 145.588381, 15.008486 ], [ 145.588396, 15.00839 ], [ 145.588421, 15.00828 ], [ 145.588402, 15.008228 ], [ 145.588363, 15.008179 ], [ 145.588344, 15.008098 ], [ 145.588319, 15.008074 ], [ 145.588236, 15.00804 ], [ 145.588162, 15.007992 ], [ 145.588015, 15.007981 ], [ 145.587921, 15.008009 ], [ 145.58768, 15.008046 ], [ 145.587636, 15.008008 ], [ 145.58767, 15.007993 ], [ 145.587744, 15.00798 ], [ 145.587789, 15.007951 ], [ 145.587829, 15.007865 ], [ 145.587839, 15.007808 ], [ 145.58781, 15.007736 ], [ 145.587758, 15.007675 ], [ 145.587749, 15.007659 ], [ 145.587656, 15.007606 ], [ 145.587533, 15.007576 ], [ 145.587434, 15.007585 ], [ 145.587311, 15.007566 ], [ 145.58713, 15.00744 ], [ 145.587116, 15.007373 ], [ 145.587165, 15.007335 ], [ 145.58723, 15.007297 ], [ 145.587259, 15.00725 ], [ 145.587255, 15.007178 ], [ 145.587221, 15.007101 ], [ 145.587167, 15.007038 ], [ 145.587133, 15.006986 ], [ 145.587129, 15.006914 ], [ 145.587109, 15.006885 ], [ 145.587105, 15.006828 ], [ 145.58707, 15.006813 ], [ 145.58694, 15.006807 ], [ 145.586866, 15.006783 ], [ 145.586798, 15.00672 ], [ 145.586759, 15.006672 ], [ 145.58669, 15.006691 ], [ 145.58666, 15.006662 ], [ 145.586631, 15.006614 ], [ 145.586587, 15.006566 ], [ 145.586598, 15.006499 ], [ 145.586632, 15.006456 ], [ 145.586613, 15.006394 ], [ 145.586633, 15.006327 ], [ 145.586678, 15.006304 ], [ 145.586727, 15.006237 ], [ 145.586781, 15.006233 ], [ 145.586831, 15.006223 ], [ 145.586895, 15.006195 ], [ 145.586846, 15.006118 ], [ 145.586822, 15.006061 ], [ 145.586847, 15.006027 ], [ 145.586925, 15.006023 ], [ 145.587009, 15.006009 ], [ 145.587024, 15.005971 ], [ 145.586995, 15.005899 ], [ 145.586907, 15.005851 ], [ 145.586883, 15.005793 ], [ 145.586912, 15.005755 ], [ 145.586928, 15.005703 ], [ 145.586942, 15.005679 ], [ 145.587002, 15.005679 ], [ 145.586987, 15.005631 ], [ 145.586928, 15.005593 ], [ 145.586927, 15.005368 ], [ 145.586873, 15.005339 ], [ 145.58685, 15.005133 ], [ 145.586885, 15.005085 ], [ 145.586832, 15.00497 ], [ 145.586822, 15.004879 ], [ 145.586867, 15.004741 ], [ 145.586897, 15.004688 ], [ 145.586917, 15.004621 ], [ 145.586908, 15.004559 ], [ 145.586952, 15.00456 ], [ 145.587026, 15.00455 ], [ 145.587051, 15.004522 ], [ 145.586987, 15.004474 ], [ 145.587002, 15.00445 ], [ 145.587081, 15.004441 ], [ 145.58716, 15.004389 ], [ 145.587121, 15.004317 ], [ 145.587067, 15.004288 ], [ 145.587014, 15.00423 ], [ 145.586975, 15.004158 ], [ 145.58695, 15.004091 ], [ 145.586907, 15.004024 ], [ 145.586833, 15.004037 ], [ 145.586745, 15.003965 ], [ 145.586726, 15.003855 ], [ 145.586751, 15.003807 ], [ 145.586705, 15.003625 ], [ 145.586661, 15.003568 ], [ 145.586602, 15.003562 ], [ 145.586608, 15.003462 ], [ 145.586574, 15.0034 ], [ 145.586559, 15.003361 ], [ 145.586668, 15.003329 ], [ 145.586692, 15.00329 ], [ 145.586624, 15.003237 ], [ 145.586575, 15.003237 ], [ 145.586535, 15.003213 ], [ 145.586551, 15.00316 ], [ 145.586561, 15.003108 ], [ 145.586596, 15.003051 ], [ 145.586601, 15.002993 ], [ 145.586547, 15.002988 ], [ 145.586537, 15.002959 ], [ 145.586572, 15.002936 ], [ 145.586636, 15.002912 ], [ 145.586685, 15.002889 ], [ 145.586725, 15.002846 ], [ 145.586696, 15.002817 ], [ 145.586627, 15.002778 ], [ 145.586529, 15.002691 ], [ 145.586485, 15.002639 ], [ 145.5865, 15.002562 ], [ 145.58651, 15.002538 ], [ 145.58656, 15.0025 ], [ 145.586565, 15.002443 ], [ 145.586536, 15.002424 ], [ 145.586447, 15.00238 ], [ 145.586408, 15.002337 ], [ 145.586443, 15.002256 ], [ 145.586503, 15.002232 ], [ 145.586537, 15.002208 ], [ 145.58653, 15.002165 ], [ 145.586471, 15.002146 ], [ 145.586437, 15.002088 ], [ 145.586452, 15.002031 ], [ 145.586566, 15.001883 ], [ 145.586473, 15.00184 ], [ 145.586483, 15.001773 ], [ 145.586538, 15.00174 ], [ 145.586607, 15.001678 ], [ 145.586622, 15.00163 ], [ 145.586618, 15.001558 ], [ 145.586588, 15.001515 ], [ 145.586524, 15.00152 ], [ 145.586491, 15.001419 ], [ 145.586525, 15.001367 ], [ 145.586487, 15.001304 ], [ 145.586472, 15.001237 ], [ 145.586488, 15.001151 ], [ 145.586473, 15.001079 ], [ 145.586518, 15.001017 ], [ 145.586499, 15.000974 ], [ 145.586401, 15.000854 ], [ 145.586357, 15.000787 ], [ 145.586229, 15.000748 ], [ 145.586161, 15.000733 ], [ 145.586161, 15.000647 ], [ 145.586009, 15.00056 ], [ 145.58594, 15.000535 ], [ 145.585882, 15.00043 ], [ 145.585858, 15.000358 ], [ 145.585785, 15.000281 ], [ 145.585775, 15.00019 ], [ 145.585731, 15.000137 ], [ 145.585791, 14.999999 ], [ 145.585747, 14.999951 ], [ 145.585768, 14.999855 ], [ 145.585714, 14.999812 ], [ 145.585705, 14.999683 ], [ 145.585754, 14.999669 ], [ 145.58573, 14.999635 ], [ 145.585627, 14.999591 ], [ 145.585608, 14.99951 ], [ 145.585648, 14.99941 ], [ 145.585579, 14.999357 ], [ 145.585525, 14.999304 ], [ 145.585511, 14.999237 ], [ 145.585414, 14.999064 ], [ 145.585425, 14.998873 ], [ 145.585406, 14.998805 ], [ 145.585357, 14.998738 ], [ 145.585303, 14.998685 ], [ 145.585279, 14.998632 ], [ 145.585236, 14.998585 ], [ 145.585229, 14.998567 ], [ 145.585223, 14.998517 ], [ 145.585255, 14.998465 ], [ 145.585172, 14.998464 ], [ 145.585098, 14.998378 ], [ 145.585119, 14.998311 ], [ 145.585148, 14.998254 ], [ 145.585134, 14.998192 ], [ 145.58508, 14.99811 ], [ 145.585037, 14.998019 ], [ 145.584978, 14.997937 ], [ 145.584875, 14.99796 ], [ 145.58488, 14.997922 ], [ 145.58491, 14.997865 ], [ 145.584925, 14.997745 ], [ 145.584931, 14.997655 ], [ 145.584951, 14.997597 ], [ 145.584922, 14.997501 ], [ 145.584898, 14.997477 ], [ 145.584814, 14.997491 ], [ 145.5847, 14.997538 ], [ 145.584656, 14.997509 ], [ 145.584672, 14.997428 ], [ 145.584672, 14.997361 ], [ 145.584653, 14.997227 ], [ 145.584646, 14.996902 ], [ 145.58466, 14.996867 ], [ 145.584658, 14.996825 ], [ 145.584673, 14.996849 ], [ 145.584717, 14.996893 ], [ 145.584727, 14.99684 ], [ 145.584752, 14.996812 ], [ 145.584786, 14.996817 ], [ 145.58482, 14.996874 ], [ 145.584864, 14.996937 ], [ 145.584914, 14.996923 ], [ 145.584988, 14.996861 ], [ 145.585018, 14.996785 ], [ 145.585009, 14.996636 ], [ 145.584941, 14.99654 ], [ 145.584852, 14.996544 ], [ 145.584798, 14.996487 ], [ 145.58472, 14.996381 ], [ 145.584642, 14.996294 ], [ 145.58456, 14.996074 ], [ 145.58461, 14.996007 ], [ 145.58463, 14.995964 ], [ 145.584664, 14.995979 ], [ 145.584708, 14.995974 ], [ 145.584733, 14.995922 ], [ 145.584684, 14.995898 ], [ 145.584645, 14.995854 ], [ 145.584586, 14.995797 ], [ 145.584582, 14.99573 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "69", "COUNTYFP10": "120", "TRACTCE10": "950200", "GEOID10": "69120950200", "NAME10": "9502", "NAMELSAD10": "Census Tract 9502", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 96341990, "AWATER10": 65723, "INTPTLAT10": "+15.0255591", "INTPTLON10": "+145.6320797" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.624457, 14.951634 ], [ 145.624396, 14.951449 ], [ 145.624327, 14.951364 ], [ 145.624181, 14.951306 ], [ 145.62406, 14.951348 ], [ 145.623767, 14.95139 ], [ 145.623472, 14.951505 ], [ 145.623423, 14.951525 ], [ 145.6232, 14.951769 ], [ 145.623002, 14.952072 ], [ 145.622641, 14.952393 ], [ 145.622486, 14.952544 ], [ 145.622512, 14.952645 ], [ 145.622581, 14.952704 ], [ 145.622684, 14.952704 ], [ 145.622779, 14.952771 ], [ 145.622848, 14.952872 ], [ 145.6229, 14.952973 ], [ 145.622995, 14.95299 ], [ 145.623141, 14.952998 ], [ 145.623348, 14.953049 ], [ 145.623512, 14.953065 ], [ 145.62377, 14.953082 ], [ 145.623882, 14.952973 ], [ 145.623977, 14.952745 ], [ 145.624026, 14.952524 ], [ 145.624028, 14.952518 ], [ 145.624166, 14.952484 ], [ 145.624346, 14.952366 ], [ 145.624484, 14.952181 ], [ 145.624553, 14.952088 ], [ 145.624578, 14.951945 ], [ 145.624569, 14.951802 ], [ 145.624518, 14.951726 ], [ 145.624457, 14.951634 ] ] ], [ [ [ 145.637784, 14.970235 ], [ 145.637717, 14.970243 ], [ 145.637519, 14.970268 ], [ 145.637453, 14.970277 ], [ 145.637417, 14.970282 ], [ 145.637384, 14.970283 ], [ 145.637178, 14.970295 ], [ 145.63711, 14.9703 ], [ 145.636745, 14.970331 ], [ 145.635653, 14.970427 ], [ 145.635559, 14.970435 ], [ 145.635289, 14.97046 ], [ 145.63516, 14.97047 ], [ 145.634776, 14.970504 ], [ 145.634648, 14.970516 ], [ 145.634559, 14.970523 ], [ 145.634296, 14.970547 ], [ 145.634208, 14.970555 ], [ 145.634053, 14.970568 ], [ 145.633847, 14.970587 ], [ 145.633589, 14.970609 ], [ 145.633435, 14.970623 ], [ 145.633397, 14.970625 ], [ 145.633284, 14.970635 ], [ 145.633247, 14.970639 ], [ 145.632917, 14.970663 ], [ 145.631929, 14.970739 ], [ 145.631687, 14.970758 ], [ 145.6316, 14.970762 ], [ 145.631629, 14.971091 ], [ 145.631719, 14.972079 ], [ 145.631743, 14.972335 ], [ 145.631749, 14.972409 ], [ 145.631811, 14.973108 ], [ 145.631818, 14.973182 ], [ 145.631864, 14.973623 ], [ 145.632036, 14.975503 ], [ 145.632107, 14.976277 ], [ 145.632155, 14.976821 ], [ 145.632192, 14.977196 ], [ 145.632194, 14.977212 ], [ 145.632292, 14.978381 ], [ 145.632386, 14.979364 ], [ 145.632447, 14.979953 ], [ 145.632494, 14.980397 ], [ 145.632532, 14.980873 ], [ 145.632503, 14.980878 ], [ 145.63242, 14.980893 ], [ 145.632399, 14.980884 ], [ 145.627329, 14.981319 ], [ 145.624341, 14.981572 ], [ 145.621409, 14.981845 ], [ 145.619366, 14.982034 ], [ 145.618239, 14.982131 ], [ 145.617813, 14.982191 ], [ 145.617667, 14.982397 ], [ 145.61758, 14.982834 ], [ 145.617326, 14.983026 ], [ 145.617076, 14.983048 ], [ 145.616764, 14.982878 ], [ 145.616661, 14.98269 ], [ 145.616637, 14.982584 ], [ 145.616624, 14.982429 ], [ 145.616614, 14.982303 ], [ 145.616597, 14.982101 ], [ 145.616577, 14.981854 ], [ 145.616553, 14.981778 ], [ 145.616482, 14.981708 ], [ 145.616411, 14.981702 ], [ 145.616316, 14.981725 ], [ 145.616226, 14.981747 ], [ 145.612905, 14.981679 ], [ 145.612886, 14.981685 ], [ 145.612871, 14.981698 ], [ 145.612846, 14.981702 ], [ 145.612802, 14.981717 ], [ 145.612762, 14.981755 ], [ 145.612688, 14.981807 ], [ 145.612619, 14.981845 ], [ 145.612589, 14.981921 ], [ 145.612549, 14.981959 ], [ 145.612475, 14.982006 ], [ 145.612362, 14.982058 ], [ 145.612346, 14.98212 ], [ 145.612297, 14.982144 ], [ 145.612238, 14.982196 ], [ 145.612193, 14.982268 ], [ 145.612144, 14.982282 ], [ 145.612134, 14.982334 ], [ 145.612138, 14.982377 ], [ 145.612099, 14.982401 ], [ 145.612079, 14.982468 ], [ 145.612039, 14.982482 ], [ 145.61198, 14.982529 ], [ 145.61193, 14.982634 ], [ 145.61189, 14.982696 ], [ 145.611801, 14.982791 ], [ 145.611736, 14.982872 ], [ 145.611692, 14.982934 ], [ 145.611637, 14.982996 ], [ 145.611543, 14.983125 ], [ 145.611538, 14.983192 ], [ 145.611596, 14.983216 ], [ 145.611606, 14.983249 ], [ 145.611537, 14.983254 ], [ 145.611493, 14.983239 ], [ 145.611454, 14.983239 ], [ 145.611443, 14.983335 ], [ 145.611433, 14.983363 ], [ 145.611359, 14.983449 ], [ 145.611245, 14.983506 ], [ 145.611186, 14.9835 ], [ 145.611161, 14.983543 ], [ 145.611112, 14.983562 ], [ 145.611048, 14.983557 ], [ 145.610965, 14.983533 ], [ 145.610935, 14.983561 ], [ 145.61091, 14.983594 ], [ 145.610909, 14.98368 ], [ 145.610865, 14.983704 ], [ 145.610777, 14.983699 ], [ 145.610747, 14.98366 ], [ 145.610693, 14.983674 ], [ 145.610654, 14.983693 ], [ 145.610609, 14.983722 ], [ 145.610565, 14.98376 ], [ 145.61055, 14.983793 ], [ 145.610466, 14.983797 ], [ 145.610456, 14.983778 ], [ 145.610373, 14.983773 ], [ 145.610301, 14.983744 ], [ 145.610257, 14.983758 ], [ 145.610208, 14.983729 ], [ 145.610134, 14.983757 ], [ 145.610114, 14.983771 ], [ 145.610124, 14.983838 ], [ 145.610153, 14.983891 ], [ 145.610123, 14.983953 ], [ 145.610132, 14.984025 ], [ 145.610132, 14.984068 ], [ 145.610181, 14.984116 ], [ 145.610205, 14.984159 ], [ 145.610121, 14.984207 ], [ 145.610097, 14.98423 ], [ 145.610032, 14.984306 ], [ 145.610076, 14.984331 ], [ 145.61017, 14.984326 ], [ 145.610194, 14.984355 ], [ 145.610189, 14.984389 ], [ 145.610199, 14.984432 ], [ 145.610262, 14.984542 ], [ 145.610183, 14.984618 ], [ 145.610177, 14.984676 ], [ 145.610187, 14.984747 ], [ 145.610103, 14.98478 ], [ 145.610069, 14.984718 ], [ 145.610009, 14.984756 ], [ 145.609975, 14.984751 ], [ 145.609946, 14.984703 ], [ 145.609916, 14.984712 ], [ 145.609901, 14.984765 ], [ 145.6099, 14.984923 ], [ 145.609865, 14.985004 ], [ 145.609855, 14.985047 ], [ 145.609662, 14.985251 ], [ 145.609423, 14.985351 ], [ 145.609433, 14.985402 ], [ 145.609404, 14.985426 ], [ 145.609346, 14.985405 ], [ 145.609229, 14.985472 ], [ 145.609136, 14.985536 ], [ 145.609032, 14.985544 ], [ 145.608981, 14.985595 ], [ 145.608883, 14.985548 ], [ 145.608734, 14.985615 ], [ 145.60865, 14.985643 ], [ 145.608566, 14.985599 ], [ 145.608438, 14.985546 ], [ 145.608344, 14.985559 ], [ 145.60826, 14.985638 ], [ 145.608254, 14.985726 ], [ 145.608258, 14.985793 ], [ 145.608115, 14.985907 ], [ 145.60805, 14.986035 ], [ 145.607985, 14.986147 ], [ 145.607914, 14.986188 ], [ 145.607984, 14.986249 ], [ 145.608059, 14.986329 ], [ 145.608084, 14.98639 ], [ 145.608179, 14.986452 ], [ 145.608281, 14.986415 ], [ 145.60838, 14.986406 ], [ 145.608325, 14.986472 ], [ 145.608276, 14.986496 ], [ 145.608267, 14.986543 ], [ 145.608326, 14.986627 ], [ 145.608439, 14.986646 ], [ 145.608521, 14.986728 ], [ 145.608653, 14.986804 ], [ 145.608746, 14.986867 ], [ 145.608844, 14.986925 ], [ 145.608858, 14.986997 ], [ 145.608951, 14.987069 ], [ 145.609045, 14.987118 ], [ 145.609079, 14.987194 ], [ 145.608998, 14.987264 ], [ 145.608954, 14.987356 ], [ 145.608915, 14.987394 ], [ 145.609018, 14.987438 ], [ 145.609039, 14.987503 ], [ 145.609076, 14.987544 ], [ 145.609061, 14.987596 ], [ 145.609051, 14.987649 ], [ 145.609085, 14.987701 ], [ 145.609114, 14.987735 ], [ 145.609094, 14.987816 ], [ 145.609094, 14.987893 ], [ 145.609059, 14.987993 ], [ 145.609052, 14.988232 ], [ 145.609076, 14.988285 ], [ 145.609051, 14.988347 ], [ 145.609066, 14.988409 ], [ 145.60908, 14.988538 ], [ 145.609045, 14.988643 ], [ 145.609054, 14.988696 ], [ 145.608999, 14.988763 ], [ 145.608915, 14.988853 ], [ 145.608915, 14.988891 ], [ 145.609004, 14.988844 ], [ 145.609038, 14.988859 ], [ 145.609057, 14.988969 ], [ 145.609056, 14.989093 ], [ 145.609066, 14.989194 ], [ 145.608996, 14.989275 ], [ 145.608937, 14.989317 ], [ 145.608931, 14.989451 ], [ 145.608955, 14.989533 ], [ 145.60888, 14.98969 ], [ 145.608835, 14.989824 ], [ 145.608825, 14.9899 ], [ 145.608844, 14.990005 ], [ 145.608809, 14.990058 ], [ 145.60874, 14.9901 ], [ 145.60873, 14.990143 ], [ 145.608681, 14.990129 ], [ 145.608596, 14.990229 ], [ 145.608645, 14.990344 ], [ 145.608627, 14.990372 ], [ 145.608583, 14.99041 ], [ 145.608494, 14.990434 ], [ 145.60846, 14.990438 ], [ 145.60841, 14.990505 ], [ 145.60841, 14.990553 ], [ 145.60837, 14.990605 ], [ 145.608251, 14.9907 ], [ 145.608231, 14.990724 ], [ 145.608167, 14.990776 ], [ 145.608142, 14.990829 ], [ 145.608078, 14.9909 ], [ 145.608043, 14.990919 ], [ 145.607979, 14.990904 ], [ 145.60793, 14.990875 ], [ 145.607886, 14.990904 ], [ 145.607861, 14.990937 ], [ 145.607787, 14.990994 ], [ 145.607748, 14.990994 ], [ 145.607738, 14.99097 ], [ 145.607738, 14.990946 ], [ 145.607674, 14.990921 ], [ 145.60759, 14.991007 ], [ 145.607541, 14.991045 ], [ 145.607506, 14.991088 ], [ 145.607486, 14.991159 ], [ 145.607436, 14.991188 ], [ 145.607357, 14.991216 ], [ 145.607269, 14.991259 ], [ 145.607189, 14.991311 ], [ 145.607106, 14.991353 ], [ 145.607031, 14.991401 ], [ 145.606992, 14.991453 ], [ 145.606918, 14.991467 ], [ 145.606888, 14.991457 ], [ 145.606829, 14.991495 ], [ 145.60678, 14.991538 ], [ 145.606691, 14.99158 ], [ 145.606671, 14.991551 ], [ 145.606622, 14.991546 ], [ 145.606617, 14.991599 ], [ 145.606577, 14.991627 ], [ 145.606503, 14.991622 ], [ 145.606445, 14.991579 ], [ 145.606307, 14.991535 ], [ 145.606287, 14.991587 ], [ 145.606223, 14.991601 ], [ 145.606159, 14.991644 ], [ 145.606076, 14.991596 ], [ 145.606036, 14.991557 ], [ 145.605943, 14.991542 ], [ 145.605845, 14.991551 ], [ 145.6058, 14.991604 ], [ 145.605785, 14.991661 ], [ 145.605745, 14.991723 ], [ 145.605693, 14.991718 ], [ 145.605659, 14.99177 ], [ 145.605609, 14.991803 ], [ 145.605579, 14.991832 ], [ 145.605446, 14.991917 ], [ 145.605446, 14.991874 ], [ 145.605407, 14.991816 ], [ 145.605343, 14.991811 ], [ 145.605314, 14.991854 ], [ 145.605308, 14.991916 ], [ 145.605264, 14.991964 ], [ 145.605185, 14.992011 ], [ 145.605081, 14.99212 ], [ 145.605065, 14.992173 ], [ 145.605119, 14.992192 ], [ 145.605129, 14.992226 ], [ 145.60505, 14.992283 ], [ 145.604961, 14.992278 ], [ 145.604907, 14.992316 ], [ 145.604823, 14.992358 ], [ 145.604784, 14.992406 ], [ 145.60471, 14.992424 ], [ 145.604607, 14.992352 ], [ 145.604573, 14.992304 ], [ 145.604524, 14.992251 ], [ 145.604499, 14.992208 ], [ 145.604347, 14.992212 ], [ 145.604268, 14.992235 ], [ 145.604204, 14.992216 ], [ 145.604189, 14.992254 ], [ 145.60416, 14.992215 ], [ 145.604086, 14.992229 ], [ 145.604017, 14.992272 ], [ 145.603924, 14.9922 ], [ 145.603845, 14.99218 ], [ 145.603771, 14.992213 ], [ 145.603791, 14.992146 ], [ 145.603772, 14.992112 ], [ 145.603792, 14.99207 ], [ 145.603812, 14.992046 ], [ 145.603812, 14.992003 ], [ 145.603763, 14.991969 ], [ 145.603718, 14.991988 ], [ 145.603698, 14.992035 ], [ 145.603678, 14.992102 ], [ 145.603619, 14.992183 ], [ 145.603545, 14.992216 ], [ 145.603456, 14.992249 ], [ 145.603362, 14.992268 ], [ 145.603234, 14.99232 ], [ 145.60314, 14.992348 ], [ 145.602983, 14.992318 ], [ 145.602875, 14.992317 ], [ 145.602786, 14.992283 ], [ 145.602728, 14.992254 ], [ 145.602688, 14.992221 ], [ 145.602615, 14.992215 ], [ 145.602586, 14.992143 ], [ 145.602527, 14.9921 ], [ 145.602562, 14.992033 ], [ 145.602562, 14.99199 ], [ 145.602503, 14.991956 ], [ 145.602478, 14.991975 ], [ 145.602449, 14.992013 ], [ 145.602404, 14.992042 ], [ 145.60236, 14.991979 ], [ 145.602326, 14.991903 ], [ 145.60227, 14.991883 ], [ 145.602186, 14.991878 ], [ 145.602113, 14.991854 ], [ 145.602019, 14.991882 ], [ 145.601999, 14.99191 ], [ 145.601945, 14.991934 ], [ 145.601881, 14.991919 ], [ 145.601788, 14.991914 ], [ 145.601748, 14.99188 ], [ 145.601783, 14.991847 ], [ 145.601749, 14.991813 ], [ 145.601823, 14.991828 ], [ 145.601845, 14.991802 ], [ 145.601811, 14.99178 ], [ 145.601777, 14.991709 ], [ 145.601748, 14.991713 ], [ 145.601749, 14.991741 ], [ 145.601734, 14.99176 ], [ 145.6017, 14.991751 ], [ 145.601656, 14.991731 ], [ 145.601602, 14.991731 ], [ 145.601587, 14.99172 ], [ 145.601602, 14.991659 ], [ 145.601563, 14.99164 ], [ 145.601528, 14.991673 ], [ 145.601513, 14.991716 ], [ 145.601523, 14.991754 ], [ 145.601478, 14.991783 ], [ 145.601459, 14.991787 ], [ 145.601434, 14.991749 ], [ 145.6014, 14.991763 ], [ 145.60137, 14.99182 ], [ 145.60132, 14.991849 ], [ 145.601261, 14.991891 ], [ 145.601217, 14.991905 ], [ 145.60103, 14.99189 ], [ 145.600936, 14.991909 ], [ 145.600769, 14.991917 ], [ 145.600765, 14.991917 ], [ 145.600631, 14.991945 ], [ 145.600596, 14.991973 ], [ 145.600557, 14.991988 ], [ 145.600464, 14.991891 ], [ 145.600405, 14.991939 ], [ 145.600351, 14.9919 ], [ 145.600272, 14.991881 ], [ 145.600139, 14.991865 ], [ 145.600085, 14.991908 ], [ 145.599989, 14.991845 ], [ 145.599916, 14.99185 ], [ 145.599837, 14.99184 ], [ 145.599808, 14.991811 ], [ 145.59969, 14.9918 ], [ 145.59965, 14.991786 ], [ 145.599557, 14.991804 ], [ 145.5994, 14.991722 ], [ 145.599341, 14.99166 ], [ 145.599317, 14.991607 ], [ 145.599258, 14.991626 ], [ 145.599218, 14.991654 ], [ 145.599179, 14.991601 ], [ 145.599155, 14.991544 ], [ 145.599081, 14.99151 ], [ 145.599018, 14.991471 ], [ 145.598974, 14.991428 ], [ 145.59888, 14.991394 ], [ 145.598861, 14.991341 ], [ 145.598783, 14.991293 ], [ 145.598694, 14.991249 ], [ 145.598641, 14.991191 ], [ 145.598572, 14.991177 ], [ 145.598523, 14.991176 ], [ 145.598447, 14.991128 ], [ 145.598373, 14.991118 ], [ 145.598334, 14.990998 ], [ 145.598285, 14.99094 ], [ 145.598222, 14.990883 ], [ 145.598178, 14.990806 ], [ 145.598129, 14.990734 ], [ 145.5981, 14.990643 ], [ 145.59814, 14.99059 ], [ 145.598214, 14.990548 ], [ 145.598224, 14.990519 ], [ 145.598145, 14.990547 ], [ 145.598101, 14.990518 ], [ 145.598077, 14.99048 ], [ 145.598072, 14.990403 ], [ 145.597994, 14.990346 ], [ 145.597926, 14.990235 ], [ 145.597882, 14.990244 ], [ 145.597872, 14.990268 ], [ 145.597783, 14.990301 ], [ 145.597772, 14.990368 ], [ 145.597723, 14.990387 ], [ 145.597674, 14.990344 ], [ 145.59762, 14.990319 ], [ 145.597566, 14.990276 ], [ 145.597502, 14.990314 ], [ 145.597433, 14.990332 ], [ 145.597364, 14.990327 ], [ 145.597342, 14.990284 ], [ 145.597318, 14.99027 ], [ 145.597284, 14.990217 ], [ 145.597225, 14.990202 ], [ 145.597171, 14.990144 ], [ 145.597127, 14.990068 ], [ 145.597039, 14.990005 ], [ 145.59701, 14.989957 ], [ 145.597011, 14.989871 ], [ 145.597006, 14.989823 ], [ 145.596982, 14.98977 ], [ 145.596918, 14.989736 ], [ 145.596849, 14.989736 ], [ 145.596819, 14.98976 ], [ 145.59676, 14.989745 ], [ 145.596731, 14.989692 ], [ 145.596717, 14.989654 ], [ 145.596623, 14.989648 ], [ 145.596535, 14.989676 ], [ 145.596509, 14.989762 ], [ 145.596465, 14.989815 ], [ 145.596401, 14.989843 ], [ 145.596307, 14.989809 ], [ 145.596268, 14.98979 ], [ 145.596185, 14.989722 ], [ 145.596106, 14.989688 ], [ 145.596013, 14.989716 ], [ 145.59589, 14.989725 ], [ 145.595811, 14.989782 ], [ 145.595737, 14.989791 ], [ 145.595678, 14.989767 ], [ 145.595608, 14.989829 ], [ 145.595515, 14.989785 ], [ 145.595459, 14.989809 ], [ 145.595389, 14.989856 ], [ 145.59532, 14.989894 ], [ 145.595276, 14.989903 ], [ 145.595207, 14.989941 ], [ 145.595138, 14.989955 ], [ 145.595138, 14.989897 ], [ 145.595074, 14.989887 ], [ 145.594941, 14.98992 ], [ 145.594882, 14.989896 ], [ 145.594784, 14.989886 ], [ 145.594696, 14.989837 ], [ 145.594627, 14.989833 ], [ 145.594567, 14.98987 ], [ 145.594557, 14.989903 ], [ 145.594533, 14.989927 ], [ 145.594513, 14.989965 ], [ 145.594507, 14.990037 ], [ 145.594419, 14.99007 ], [ 145.594384, 14.990079 ], [ 145.594354, 14.990137 ], [ 145.59431, 14.990146 ], [ 145.594266, 14.990103 ], [ 145.594197, 14.990121 ], [ 145.594152, 14.990174 ], [ 145.594147, 14.990226 ], [ 145.594181, 14.990274 ], [ 145.594142, 14.990274 ], [ 145.594103, 14.990216 ], [ 145.594098, 14.990197 ], [ 145.594044, 14.990226 ], [ 145.594009, 14.990278 ], [ 145.594028, 14.990345 ], [ 145.594052, 14.990393 ], [ 145.593998, 14.99044 ], [ 145.593855, 14.990497 ], [ 145.593756, 14.99053 ], [ 145.593668, 14.990544 ], [ 145.593629, 14.990462 ], [ 145.593629, 14.990371 ], [ 145.593502, 14.990275 ], [ 145.593433, 14.990231 ], [ 145.593374, 14.990226 ], [ 145.593325, 14.990188 ], [ 145.593316, 14.990149 ], [ 145.593198, 14.99012 ], [ 145.593159, 14.990057 ], [ 145.593056, 14.990023 ], [ 145.593052, 14.989918 ], [ 145.593003, 14.989889 ], [ 145.593013, 14.989865 ], [ 145.593067, 14.989856 ], [ 145.593047, 14.989832 ], [ 145.592929, 14.989817 ], [ 145.592904, 14.989865 ], [ 145.59287, 14.989874 ], [ 145.59285, 14.989926 ], [ 145.592879, 14.98997 ], [ 145.59282, 14.990003 ], [ 145.592781, 14.989945 ], [ 145.592752, 14.989888 ], [ 145.592767, 14.989854 ], [ 145.592732, 14.98982 ], [ 145.592713, 14.989811 ], [ 145.592624, 14.989891 ], [ 145.592564, 14.989953 ], [ 145.592515, 14.989977 ], [ 145.592461, 14.989953 ], [ 145.592407, 14.989943 ], [ 145.592382, 14.989914 ], [ 145.592323, 14.989914 ], [ 145.592303, 14.989966 ], [ 145.592328, 14.990024 ], [ 145.592283, 14.990057 ], [ 145.592214, 14.990052 ], [ 145.59215, 14.990104 ], [ 145.592159, 14.990147 ], [ 145.592115, 14.990204 ], [ 145.592056, 14.990228 ], [ 145.591977, 14.990222 ], [ 145.591898, 14.990246 ], [ 145.591854, 14.990231 ], [ 145.591884, 14.990155 ], [ 145.591859, 14.990135 ], [ 145.591825, 14.990121 ], [ 145.591766, 14.990135 ], [ 145.591711, 14.990182 ], [ 145.591674, 14.990206 ], [ 145.591615, 14.99022 ], [ 145.591546, 14.990244 ], [ 145.591463, 14.990238 ], [ 145.591423, 14.990248 ], [ 145.591388, 14.990329 ], [ 145.591349, 14.990376 ], [ 145.591319, 14.990386 ], [ 145.591294, 14.990438 ], [ 145.591259, 14.990452 ], [ 145.591235, 14.9905 ], [ 145.59118, 14.990509 ], [ 145.591165, 14.990538 ], [ 145.591092, 14.990552 ], [ 145.591077, 14.99058 ], [ 145.591002, 14.990647 ], [ 145.590928, 14.99067 ], [ 145.590879, 14.990679 ], [ 145.590785, 14.990732 ], [ 145.590702, 14.990726 ], [ 145.590741, 14.990674 ], [ 145.590702, 14.990616 ], [ 145.590658, 14.990664 ], [ 145.590589, 14.990692 ], [ 145.590515, 14.990634 ], [ 145.590501, 14.990605 ], [ 145.590456, 14.990643 ], [ 145.590402, 14.990633 ], [ 145.590323, 14.990681 ], [ 145.590323, 14.990748 ], [ 145.590283, 14.9908 ], [ 145.590253, 14.990881 ], [ 145.590208, 14.990938 ], [ 145.590153, 14.991029 ], [ 145.590069, 14.991119 ], [ 145.590059, 14.991148 ], [ 145.590089, 14.991158 ], [ 145.590098, 14.991186 ], [ 145.590054, 14.99122 ], [ 145.589984, 14.991305 ], [ 145.589999, 14.991363 ], [ 145.590033, 14.99144 ], [ 145.590062, 14.991421 ], [ 145.590107, 14.991373 ], [ 145.590161, 14.991388 ], [ 145.590195, 14.991417 ], [ 145.59018, 14.991474 ], [ 145.590175, 14.991512 ], [ 145.59016, 14.991569 ], [ 145.590199, 14.991603 ], [ 145.590253, 14.99157 ], [ 145.590317, 14.991609 ], [ 145.590351, 14.991642 ], [ 145.590267, 14.991671 ], [ 145.590223, 14.99167 ], [ 145.590178, 14.991718 ], [ 145.590149, 14.99177 ], [ 145.590111, 14.991823 ], [ 145.590082, 14.991837 ], [ 145.590047, 14.991861 ], [ 145.589963, 14.991908 ], [ 145.589939, 14.991884 ], [ 145.58988, 14.991864 ], [ 145.589786, 14.991912 ], [ 145.589776, 14.991883 ], [ 145.589732, 14.991873 ], [ 145.589692, 14.99193 ], [ 145.589658, 14.991992 ], [ 145.589687, 14.992021 ], [ 145.589687, 14.992069 ], [ 145.589647, 14.992121 ], [ 145.589622, 14.992169 ], [ 145.589538, 14.992202 ], [ 145.589523, 14.992245 ], [ 145.589527, 14.992316 ], [ 145.589581, 14.992341 ], [ 145.589631, 14.992355 ], [ 145.58964, 14.992422 ], [ 145.589699, 14.992485 ], [ 145.589738, 14.992504 ], [ 145.589846, 14.992543 ], [ 145.589826, 14.992596 ], [ 145.589786, 14.992682 ], [ 145.589737, 14.992696 ], [ 145.589697, 14.992686 ], [ 145.589648, 14.992642 ], [ 145.589594, 14.992628 ], [ 145.589486, 14.992618 ], [ 145.589452, 14.99257 ], [ 145.589383, 14.992579 ], [ 145.589329, 14.992626 ], [ 145.5892, 14.992711 ], [ 145.589131, 14.992745 ], [ 145.589067, 14.992792 ], [ 145.589076, 14.992907 ], [ 145.58911, 14.992974 ], [ 145.589149, 14.993027 ], [ 145.58904, 14.993088 ], [ 145.588991, 14.993078 ], [ 145.588942, 14.993045 ], [ 145.588868, 14.993073 ], [ 145.588882, 14.99314 ], [ 145.588902, 14.993183 ], [ 145.588946, 14.993236 ], [ 145.588906, 14.993274 ], [ 145.588827, 14.993302 ], [ 145.588743, 14.993326 ], [ 145.588675, 14.993325 ], [ 145.58863, 14.993306 ], [ 145.588561, 14.993305 ], [ 145.588532, 14.993238 ], [ 145.588518, 14.993186 ], [ 145.588469, 14.993133 ], [ 145.58838, 14.993156 ], [ 145.588301, 14.993184 ], [ 145.588242, 14.993189 ], [ 145.588232, 14.993251 ], [ 145.588291, 14.993299 ], [ 145.5883, 14.993376 ], [ 145.588324, 14.993462 ], [ 145.588324, 14.9935 ], [ 145.588373, 14.993572 ], [ 145.588437, 14.993587 ], [ 145.588466, 14.993606 ], [ 145.588485, 14.993664 ], [ 145.588456, 14.993702 ], [ 145.588396, 14.993706 ], [ 145.588293, 14.993725 ], [ 145.588273, 14.993744 ], [ 145.588229, 14.993767 ], [ 145.58816, 14.9937 ], [ 145.588082, 14.993604 ], [ 145.588034, 14.993517 ], [ 145.58799, 14.99345 ], [ 145.587926, 14.993426 ], [ 145.587847, 14.993492 ], [ 145.587738, 14.993602 ], [ 145.587747, 14.993693 ], [ 145.587734, 14.993788 ], [ 145.587684, 14.993864 ], [ 145.587645, 14.993936 ], [ 145.587605, 14.993969 ], [ 145.587561, 14.993921 ], [ 145.587502, 14.993901 ], [ 145.587428, 14.99392 ], [ 145.587443, 14.993868 ], [ 145.587355, 14.993867 ], [ 145.587325, 14.993886 ], [ 145.587266, 14.993905 ], [ 145.587202, 14.993866 ], [ 145.587148, 14.993875 ], [ 145.587094, 14.993856 ], [ 145.58705, 14.993827 ], [ 145.586996, 14.993846 ], [ 145.586951, 14.993889 ], [ 145.586862, 14.99395 ], [ 145.586812, 14.994007 ], [ 145.586714, 14.994002 ], [ 145.586669, 14.994054 ], [ 145.586591, 14.994078 ], [ 145.586568, 14.994135 ], [ 145.586474, 14.994149 ], [ 145.58643, 14.99412 ], [ 145.586322, 14.994071 ], [ 145.58614, 14.994151 ], [ 145.585997, 14.994208 ], [ 145.585903, 14.994236 ], [ 145.585794, 14.994317 ], [ 145.585711, 14.994307 ], [ 145.585642, 14.994287 ], [ 145.585588, 14.99432 ], [ 145.585533, 14.994387 ], [ 145.585483, 14.994472 ], [ 145.585389, 14.994591 ], [ 145.585285, 14.994682 ], [ 145.585221, 14.994672 ], [ 145.585187, 14.994657 ], [ 145.585167, 14.99471 ], [ 145.585132, 14.994772 ], [ 145.585131, 14.994853 ], [ 145.585185, 14.994892 ], [ 145.585076, 14.995006 ], [ 145.585022, 14.995039 ], [ 145.584967, 14.99512 ], [ 145.584984, 14.995249 ], [ 145.584983, 14.995373 ], [ 145.584929, 14.995373 ], [ 145.584879, 14.995421 ], [ 145.584825, 14.995492 ], [ 145.584809, 14.995573 ], [ 145.58477, 14.995592 ], [ 145.584716, 14.995573 ], [ 145.584676, 14.995611 ], [ 145.584686, 14.995659 ], [ 145.584661, 14.995692 ], [ 145.584616, 14.99573 ], [ 145.584582, 14.99573 ], [ 145.584586, 14.995797 ], [ 145.584645, 14.995854 ], [ 145.584684, 14.995898 ], [ 145.584733, 14.995922 ], [ 145.584708, 14.995974 ], [ 145.584664, 14.995979 ], [ 145.58463, 14.995964 ], [ 145.58461, 14.996007 ], [ 145.58456, 14.996074 ], [ 145.584642, 14.996294 ], [ 145.58472, 14.996381 ], [ 145.584798, 14.996487 ], [ 145.584852, 14.996544 ], [ 145.584941, 14.99654 ], [ 145.585009, 14.996636 ], [ 145.585018, 14.996785 ], [ 145.584988, 14.996861 ], [ 145.584914, 14.996923 ], [ 145.584864, 14.996937 ], [ 145.58482, 14.996874 ], [ 145.584786, 14.996817 ], [ 145.584752, 14.996812 ], [ 145.584727, 14.99684 ], [ 145.584717, 14.996893 ], [ 145.584673, 14.996849 ], [ 145.584658, 14.996825 ], [ 145.58466, 14.996867 ], [ 145.584646, 14.996902 ], [ 145.584653, 14.997227 ], [ 145.584672, 14.997361 ], [ 145.584672, 14.997428 ], [ 145.584656, 14.997509 ], [ 145.5847, 14.997538 ], [ 145.584814, 14.997491 ], [ 145.584898, 14.997477 ], [ 145.584922, 14.997501 ], [ 145.584951, 14.997597 ], [ 145.584931, 14.997655 ], [ 145.584925, 14.997745 ], [ 145.58491, 14.997865 ], [ 145.58488, 14.997922 ], [ 145.584875, 14.99796 ], [ 145.584978, 14.997937 ], [ 145.585037, 14.998019 ], [ 145.58508, 14.99811 ], [ 145.585134, 14.998192 ], [ 145.585148, 14.998254 ], [ 145.585119, 14.998311 ], [ 145.585098, 14.998378 ], [ 145.585172, 14.998464 ], [ 145.585255, 14.998465 ], [ 145.585223, 14.998517 ], [ 145.585229, 14.998567 ], [ 145.585236, 14.998585 ], [ 145.585279, 14.998632 ], [ 145.585303, 14.998685 ], [ 145.585357, 14.998738 ], [ 145.585406, 14.998805 ], [ 145.585425, 14.998873 ], [ 145.585414, 14.999064 ], [ 145.585511, 14.999237 ], [ 145.585525, 14.999304 ], [ 145.585579, 14.999357 ], [ 145.585648, 14.99941 ], [ 145.585608, 14.99951 ], [ 145.585627, 14.999591 ], [ 145.58573, 14.999635 ], [ 145.585754, 14.999669 ], [ 145.585705, 14.999683 ], [ 145.585714, 14.999812 ], [ 145.585768, 14.999855 ], [ 145.585747, 14.999951 ], [ 145.585791, 14.999999 ], [ 145.585731, 15.000137 ], [ 145.585775, 15.00019 ], [ 145.585785, 15.000281 ], [ 145.585858, 15.000358 ], [ 145.585882, 15.00043 ], [ 145.58594, 15.000535 ], [ 145.586009, 15.00056 ], [ 145.586161, 15.000647 ], [ 145.586161, 15.000733 ], [ 145.586229, 15.000748 ], [ 145.586357, 15.000787 ], [ 145.586401, 15.000854 ], [ 145.586499, 15.000974 ], [ 145.586518, 15.001017 ], [ 145.586473, 15.001079 ], [ 145.586488, 15.001151 ], [ 145.586472, 15.001237 ], [ 145.586487, 15.001304 ], [ 145.586525, 15.001367 ], [ 145.586491, 15.001419 ], [ 145.586524, 15.00152 ], [ 145.586588, 15.001515 ], [ 145.586618, 15.001558 ], [ 145.586622, 15.00163 ], [ 145.586607, 15.001678 ], [ 145.586538, 15.00174 ], [ 145.586483, 15.001773 ], [ 145.586473, 15.00184 ], [ 145.586566, 15.001883 ], [ 145.586452, 15.002031 ], [ 145.586437, 15.002088 ], [ 145.586471, 15.002146 ], [ 145.58653, 15.002165 ], [ 145.586537, 15.002208 ], [ 145.586503, 15.002232 ], [ 145.586443, 15.002256 ], [ 145.586408, 15.002337 ], [ 145.586447, 15.00238 ], [ 145.586536, 15.002424 ], [ 145.586565, 15.002443 ], [ 145.58656, 15.0025 ], [ 145.58651, 15.002538 ], [ 145.5865, 15.002562 ], [ 145.586485, 15.002639 ], [ 145.586529, 15.002691 ], [ 145.586627, 15.002778 ], [ 145.586696, 15.002817 ], [ 145.586725, 15.002846 ], [ 145.586685, 15.002889 ], [ 145.586636, 15.002912 ], [ 145.586572, 15.002936 ], [ 145.586537, 15.002959 ], [ 145.586547, 15.002988 ], [ 145.586601, 15.002993 ], [ 145.586596, 15.003051 ], [ 145.586561, 15.003108 ], [ 145.586551, 15.00316 ], [ 145.586535, 15.003213 ], [ 145.586575, 15.003237 ], [ 145.586624, 15.003237 ], [ 145.586692, 15.00329 ], [ 145.586668, 15.003329 ], [ 145.586559, 15.003361 ], [ 145.586574, 15.0034 ], [ 145.586608, 15.003462 ], [ 145.586602, 15.003562 ], [ 145.586661, 15.003568 ], [ 145.586705, 15.003625 ], [ 145.586751, 15.003807 ], [ 145.586726, 15.003855 ], [ 145.586745, 15.003965 ], [ 145.586833, 15.004037 ], [ 145.586907, 15.004024 ], [ 145.58695, 15.004091 ], [ 145.586975, 15.004158 ], [ 145.587014, 15.00423 ], [ 145.587067, 15.004288 ], [ 145.587121, 15.004317 ], [ 145.58716, 15.004389 ], [ 145.587081, 15.004441 ], [ 145.587002, 15.00445 ], [ 145.586987, 15.004474 ], [ 145.587051, 15.004522 ], [ 145.587026, 15.00455 ], [ 145.586952, 15.00456 ], [ 145.586908, 15.004559 ], [ 145.586917, 15.004621 ], [ 145.586897, 15.004688 ], [ 145.586867, 15.004741 ], [ 145.586822, 15.004879 ], [ 145.586832, 15.00497 ], [ 145.586885, 15.005085 ], [ 145.58685, 15.005133 ], [ 145.586873, 15.005339 ], [ 145.586927, 15.005368 ], [ 145.586928, 15.005593 ], [ 145.586987, 15.005631 ], [ 145.587002, 15.005679 ], [ 145.586942, 15.005679 ], [ 145.586928, 15.005703 ], [ 145.586912, 15.005755 ], [ 145.586883, 15.005793 ], [ 145.586907, 15.005851 ], [ 145.586995, 15.005899 ], [ 145.587024, 15.005971 ], [ 145.587009, 15.006009 ], [ 145.586925, 15.006023 ], [ 145.586847, 15.006027 ], [ 145.586822, 15.006061 ], [ 145.586846, 15.006118 ], [ 145.586895, 15.006195 ], [ 145.586831, 15.006223 ], [ 145.586781, 15.006233 ], [ 145.586727, 15.006237 ], [ 145.586678, 15.006304 ], [ 145.586633, 15.006327 ], [ 145.586613, 15.006394 ], [ 145.586632, 15.006456 ], [ 145.586598, 15.006499 ], [ 145.586587, 15.006566 ], [ 145.586631, 15.006614 ], [ 145.58666, 15.006662 ], [ 145.58669, 15.006691 ], [ 145.586759, 15.006672 ], [ 145.586798, 15.00672 ], [ 145.586866, 15.006783 ], [ 145.58694, 15.006807 ], [ 145.58707, 15.006813 ], [ 145.587105, 15.006828 ], [ 145.587109, 15.006885 ], [ 145.587129, 15.006914 ], [ 145.587133, 15.006986 ], [ 145.587167, 15.007038 ], [ 145.587221, 15.007101 ], [ 145.587255, 15.007178 ], [ 145.587259, 15.00725 ], [ 145.58723, 15.007297 ], [ 145.587165, 15.007335 ], [ 145.587116, 15.007373 ], [ 145.58713, 15.00744 ], [ 145.587311, 15.007566 ], [ 145.587434, 15.007585 ], [ 145.587533, 15.007576 ], [ 145.587656, 15.007606 ], [ 145.587749, 15.007659 ], [ 145.587758, 15.007675 ], [ 145.58781, 15.007736 ], [ 145.587839, 15.007808 ], [ 145.587829, 15.007865 ], [ 145.587789, 15.007951 ], [ 145.587744, 15.00798 ], [ 145.58767, 15.007993 ], [ 145.587636, 15.008008 ], [ 145.58768, 15.008046 ], [ 145.587921, 15.008009 ], [ 145.588015, 15.007981 ], [ 145.588162, 15.007992 ], [ 145.588236, 15.00804 ], [ 145.588319, 15.008074 ], [ 145.588344, 15.008098 ], [ 145.588363, 15.008179 ], [ 145.588402, 15.008228 ], [ 145.588421, 15.00828 ], [ 145.588396, 15.00839 ], [ 145.588381, 15.008486 ], [ 145.588375, 15.008596 ], [ 145.588419, 15.008711 ], [ 145.588457, 15.008788 ], [ 145.588457, 15.008893 ], [ 145.588441, 15.008974 ], [ 145.588515, 15.009013 ], [ 145.588534, 15.009094 ], [ 145.588568, 15.00918 ], [ 145.588621, 15.009386 ], [ 145.588596, 15.009463 ], [ 145.588527, 15.009501 ], [ 145.588452, 15.009581 ], [ 145.588453, 15.009797 ], [ 145.588443, 15.009864 ], [ 145.588412, 15.009936 ], [ 145.588398, 15.009949 ], [ 145.588364, 15.009897 ], [ 145.588389, 15.009854 ], [ 145.588404, 15.009806 ], [ 145.588395, 15.009744 ], [ 145.58838, 15.009696 ], [ 145.588346, 15.009715 ], [ 145.588331, 15.009734 ], [ 145.588325, 15.009801 ], [ 145.58829, 15.009877 ], [ 145.588246, 15.009948 ], [ 145.588324, 15.010016 ], [ 145.588274, 15.010102 ], [ 145.588274, 15.010183 ], [ 145.588258, 15.010245 ], [ 145.588174, 15.010326 ], [ 145.58812, 15.010412 ], [ 145.588075, 15.010502 ], [ 145.588, 15.010569 ], [ 145.587931, 15.010611 ], [ 145.587808, 15.010611 ], [ 145.587759, 15.010601 ], [ 145.587572, 15.010623 ], [ 145.587522, 15.010676 ], [ 145.587497, 15.010757 ], [ 145.587462, 15.010809 ], [ 145.587437, 15.010886 ], [ 145.587451, 15.011053 ], [ 145.587509, 15.011159 ], [ 145.587479, 15.011249 ], [ 145.587491, 15.01134 ], [ 145.587495, 15.011417 ], [ 145.587524, 15.011508 ], [ 145.587548, 15.011604 ], [ 145.587557, 15.01169 ], [ 145.587532, 15.011786 ], [ 145.587522, 15.011843 ], [ 145.587482, 15.011933 ], [ 145.587393, 15.011976 ], [ 145.587324, 15.011976 ], [ 145.5873, 15.011932 ], [ 145.587261, 15.011946 ], [ 145.587216, 15.012028 ], [ 145.587196, 15.012109 ], [ 145.587136, 15.012214 ], [ 145.58716, 15.012333 ], [ 145.587085, 15.0124 ], [ 145.587017, 15.012385 ], [ 145.586952, 15.012447 ], [ 145.586947, 15.012509 ], [ 145.586853, 15.012566 ], [ 145.586754, 15.012661 ], [ 145.586695, 15.012689 ], [ 145.586655, 15.012741 ], [ 145.586576, 15.012741 ], [ 145.586527, 15.012798 ], [ 145.586546, 15.012894 ], [ 145.586496, 15.012932 ], [ 145.586462, 15.012946 ], [ 145.586403, 15.012922 ], [ 145.586334, 15.012979 ], [ 145.586254, 15.013036 ], [ 145.586235, 15.012997 ], [ 145.586191, 15.012992 ], [ 145.586141, 15.013035 ], [ 145.586027, 15.01312 ], [ 145.585956, 15.013091 ], [ 145.585893, 15.013052 ], [ 145.585705, 15.013085 ], [ 145.585631, 15.013094 ], [ 145.585538, 15.013122 ], [ 145.585499, 15.013093 ], [ 145.585484, 15.013045 ], [ 145.585415, 15.013035 ], [ 145.585336, 15.013068 ], [ 145.585331, 15.01314 ], [ 145.585316, 15.013202 ], [ 145.585237, 15.013192 ], [ 145.585203, 15.013163 ], [ 145.585159, 15.013105 ], [ 145.585115, 15.013081 ], [ 145.585085, 15.013071 ], [ 145.584987, 15.01309 ], [ 145.585016, 15.013152 ], [ 145.585045, 15.013162 ], [ 145.585021, 15.01319 ], [ 145.584951, 15.013247 ], [ 145.584858, 15.01329 ], [ 145.584754, 15.013299 ], [ 145.584685, 15.013298 ], [ 145.584809, 15.013213 ], [ 145.584775, 15.013151 ], [ 145.584711, 15.013155 ], [ 145.584666, 15.013198 ], [ 145.584548, 15.013226 ], [ 145.584519, 15.013202 ], [ 145.58446, 15.013177 ], [ 145.584381, 15.01322 ], [ 145.58437, 15.013402 ], [ 145.584301, 15.013392 ], [ 145.584252, 15.013358 ], [ 145.584242, 15.013396 ], [ 145.584192, 15.013434 ], [ 145.584187, 15.013472 ], [ 145.584148, 15.013477 ], [ 145.584104, 15.013419 ], [ 145.584025, 15.013457 ], [ 145.583985, 15.013514 ], [ 145.583935, 15.013605 ], [ 145.583896, 15.013619 ], [ 145.583851, 15.013657 ], [ 145.583807, 15.013704 ], [ 145.583762, 15.013781 ], [ 145.583717, 15.013838 ], [ 145.583751, 15.013938 ], [ 145.583687, 15.013967 ], [ 145.583593, 15.01398 ], [ 145.583593, 15.014052 ], [ 145.583632, 15.014086 ], [ 145.583527, 15.014253 ], [ 145.583463, 15.01429 ], [ 145.583423, 15.014376 ], [ 145.583486, 15.014506 ], [ 145.583506, 15.014592 ], [ 145.583456, 15.01464 ], [ 145.583308, 15.014677 ], [ 145.583204, 15.014719 ], [ 145.583074, 15.015116 ], [ 145.583037, 15.015154 ], [ 145.583017, 15.015206 ], [ 145.582996, 15.015292 ], [ 145.582996, 15.015364 ], [ 145.582966, 15.015402 ], [ 145.582971, 15.015493 ], [ 145.582985, 15.015617 ], [ 145.582945, 15.015646 ], [ 145.582915, 15.015688 ], [ 145.58291, 15.015755 ], [ 145.582875, 15.015837 ], [ 145.582796, 15.015917 ], [ 145.582712, 15.015965 ], [ 145.582686, 15.01607 ], [ 145.582656, 15.016151 ], [ 145.582631, 15.016275 ], [ 145.582611, 15.016313 ], [ 145.582557, 15.016337 ], [ 145.582503, 15.016303 ], [ 145.582429, 15.016317 ], [ 145.582379, 15.016345 ], [ 145.582384, 15.016431 ], [ 145.582418, 15.016503 ], [ 145.582407, 15.016608 ], [ 145.582308, 15.016651 ], [ 145.582274, 15.016679 ], [ 145.582238, 15.016847 ], [ 145.582252, 15.016952 ], [ 145.582263, 15.017119 ], [ 145.582287, 15.017215 ], [ 145.582267, 15.017335 ], [ 145.582247, 15.017425 ], [ 145.582202, 15.017473 ], [ 145.582216, 15.017578 ], [ 145.58227, 15.017588 ], [ 145.5823, 15.017627 ], [ 145.582284, 15.017708 ], [ 145.582342, 15.017837 ], [ 145.582396, 15.017871 ], [ 145.58246, 15.017986 ], [ 145.582523, 15.018082 ], [ 145.582562, 15.01813 ], [ 145.582571, 15.018193 ], [ 145.582527, 15.018245 ], [ 145.582536, 15.018298 ], [ 145.582565, 15.018365 ], [ 145.582614, 15.018399 ], [ 145.582694, 15.01859 ], [ 145.582679, 15.018705 ], [ 145.582683, 15.018767 ], [ 145.582658, 15.018848 ], [ 145.582692, 15.01892 ], [ 145.582726, 15.018949 ], [ 145.58274, 15.019074 ], [ 145.582799, 15.01917 ], [ 145.582867, 15.019304 ], [ 145.58293, 15.019458 ], [ 145.582973, 15.01953 ], [ 145.582973, 15.019611 ], [ 145.583007, 15.019692 ], [ 145.583046, 15.01975 ], [ 145.58305, 15.01986 ], [ 145.583062, 15.019932 ], [ 145.583065, 15.020045 ], [ 145.583075, 15.020142 ], [ 145.583006, 15.020204 ], [ 145.58304, 15.020295 ], [ 145.583103, 15.020401 ], [ 145.583147, 15.020502 ], [ 145.583077, 15.020621 ], [ 145.583066, 15.020764 ], [ 145.58311, 15.020841 ], [ 145.583238, 15.020894 ], [ 145.583336, 15.020957 ], [ 145.583413, 15.021101 ], [ 145.583551, 15.021107 ], [ 145.58363, 15.021146 ], [ 145.583733, 15.02117 ], [ 145.583831, 15.021199 ], [ 145.583939, 15.021191 ], [ 145.584049, 15.021306 ], [ 145.584103, 15.021369 ], [ 145.584137, 15.021445 ], [ 145.584196, 15.021513 ], [ 145.584382, 15.021653 ], [ 145.584441, 15.021682 ], [ 145.584504, 15.021725 ], [ 145.584587, 15.021812 ], [ 145.584651, 15.02185 ], [ 145.584715, 15.021899 ], [ 145.584778, 15.021966 ], [ 145.584817, 15.022052 ], [ 145.584782, 15.0221 ], [ 145.584713, 15.022171 ], [ 145.584678, 15.022224 ], [ 145.584727, 15.022286 ], [ 145.584746, 15.022348 ], [ 145.584702, 15.022386 ], [ 145.584706, 15.022458 ], [ 145.584725, 15.022554 ], [ 145.58472, 15.022616 ], [ 145.584729, 15.022707 ], [ 145.584699, 15.022755 ], [ 145.584673, 15.022974 ], [ 145.584634, 15.022993 ], [ 145.584575, 15.023007 ], [ 145.584506, 15.023012 ], [ 145.584476, 15.023002 ], [ 145.584412, 15.023016 ], [ 145.584358, 15.023044 ], [ 145.584291, 15.023125 ], [ 145.584265, 15.023273 ], [ 145.584221, 15.023326 ], [ 145.584137, 15.023349 ], [ 145.584098, 15.023334 ], [ 145.584087, 15.023406 ], [ 145.584126, 15.023449 ], [ 145.58415, 15.023516 ], [ 145.584145, 15.023574 ], [ 145.584159, 15.023641 ], [ 145.584194, 15.023651 ], [ 145.584208, 15.023722 ], [ 145.584242, 15.023737 ], [ 145.584272, 15.023742 ], [ 145.584321, 15.023776 ], [ 145.5843, 15.023919 ], [ 145.584339, 15.024049 ], [ 145.584363, 15.024101 ], [ 145.584387, 15.024211 ], [ 145.584466, 15.024226 ], [ 145.584485, 15.024293 ], [ 145.584524, 15.02438 ], [ 145.584592, 15.024428 ], [ 145.584631, 15.024529 ], [ 145.584701, 15.024658 ], [ 145.58473, 15.024759 ], [ 145.584745, 15.02484 ], [ 145.584769, 15.024907 ], [ 145.584729, 15.024979 ], [ 145.584788, 15.025046 ], [ 145.584851, 15.02509 ], [ 145.58487, 15.025152 ], [ 145.584826, 15.025195 ], [ 145.58483, 15.025271 ], [ 145.584855, 15.025334 ], [ 145.584878, 15.025434 ], [ 145.585006, 15.025459 ], [ 145.58508, 15.025493 ], [ 145.585119, 15.02555 ], [ 145.585118, 15.025656 ], [ 145.585122, 15.025751 ], [ 145.585191, 15.025795 ], [ 145.58525, 15.025814 ], [ 145.585245, 15.025848 ], [ 145.585284, 15.025896 ], [ 145.585323, 15.025925 ], [ 145.585317, 15.02603 ], [ 145.585327, 15.026121 ], [ 145.5854, 15.026155 ], [ 145.585429, 15.026227 ], [ 145.585493, 15.026275 ], [ 145.585621, 15.026328 ], [ 145.58565, 15.026362 ], [ 145.58562, 15.026424 ], [ 145.58561, 15.026491 ], [ 145.585659, 15.026525 ], [ 145.585697, 15.026616 ], [ 145.585737, 15.026669 ], [ 145.585729, 15.026712 ], [ 145.585689, 15.026764 ], [ 145.585669, 15.026817 ], [ 145.585698, 15.026874 ], [ 145.585718, 15.026937 ], [ 145.585801, 15.026932 ], [ 145.585855, 15.026966 ], [ 145.585889, 15.027062 ], [ 145.585908, 15.027148 ], [ 145.585927, 15.027282 ], [ 145.58599, 15.02735 ], [ 145.58603, 15.027355 ], [ 145.586075, 15.027274 ], [ 145.586075, 15.027202 ], [ 145.586227, 15.027251 ], [ 145.586271, 15.027303 ], [ 145.586345, 15.027342 ], [ 145.586389, 15.027357 ], [ 145.586403, 15.027429 ], [ 145.586368, 15.027495 ], [ 145.586314, 15.027552 ], [ 145.58625, 15.0276 ], [ 145.586229, 15.027681 ], [ 145.586278, 15.027724 ], [ 145.586342, 15.027763 ], [ 145.586405, 15.02784 ], [ 145.586459, 15.027898 ], [ 145.586562, 15.027941 ], [ 145.586621, 15.028009 ], [ 145.586621, 15.028066 ], [ 145.58661, 15.028138 ], [ 145.586481, 15.028271 ], [ 145.586528, 15.028357 ], [ 145.586557, 15.028434 ], [ 145.586713, 15.028564 ], [ 145.586792, 15.028598 ], [ 145.586841, 15.028632 ], [ 145.586859, 15.028876 ], [ 145.586947, 15.028905 ], [ 145.586957, 15.028944 ], [ 145.586917, 15.029025 ], [ 145.586911, 15.02913 ], [ 145.586955, 15.029278 ], [ 145.586999, 15.029269 ], [ 145.587024, 15.029236 ], [ 145.587063, 15.029212 ], [ 145.587063, 15.029303 ], [ 145.586983, 15.029408 ], [ 145.586958, 15.029489 ], [ 145.586957, 15.029594 ], [ 145.587011, 15.029633 ], [ 145.587115, 15.029605 ], [ 145.587179, 15.029619 ], [ 145.587213, 15.029691 ], [ 145.587188, 15.029782 ], [ 145.587138, 15.029815 ], [ 145.587054, 15.029839 ], [ 145.58701, 15.029877 ], [ 145.58699, 15.029948 ], [ 145.586981, 15.030072 ], [ 145.586961, 15.030154 ], [ 145.586941, 15.030264 ], [ 145.586984, 15.030364 ], [ 145.587028, 15.030503 ], [ 145.587086, 15.030614 ], [ 145.587125, 15.0307 ], [ 145.587188, 15.030767 ], [ 145.587312, 15.030744 ], [ 145.587376, 15.030745 ], [ 145.587404, 15.030946 ], [ 145.587448, 15.030979 ], [ 145.587443, 15.031032 ], [ 145.587447, 15.031175 ], [ 145.587545, 15.0312 ], [ 145.587614, 15.0312 ], [ 145.587638, 15.031268 ], [ 145.58764, 15.031363 ], [ 145.587654, 15.031402 ], [ 145.587649, 15.03143 ], [ 145.587585, 15.031482 ], [ 145.587609, 15.031502 ], [ 145.587658, 15.031521 ], [ 145.587683, 15.031555 ], [ 145.587692, 15.031622 ], [ 145.587647, 15.031722 ], [ 145.587711, 15.031722 ], [ 145.587765, 15.03178 ], [ 145.58775, 15.031837 ], [ 145.587715, 15.03188 ], [ 145.587715, 15.031952 ], [ 145.587773, 15.031986 ], [ 145.587812, 15.032106 ], [ 145.587782, 15.032153 ], [ 145.587762, 15.032244 ], [ 145.587781, 15.032297 ], [ 145.58783, 15.032345 ], [ 145.58781, 15.032402 ], [ 145.58779, 15.032479 ], [ 145.587804, 15.032546 ], [ 145.587779, 15.032612 ], [ 145.587784, 15.032694 ], [ 145.587773, 15.032799 ], [ 145.587772, 15.032909 ], [ 145.587792, 15.032957 ], [ 145.587811, 15.033048 ], [ 145.587744, 15.033129 ], [ 145.587724, 15.033205 ], [ 145.587718, 15.033272 ], [ 145.587747, 15.033368 ], [ 145.587747, 15.033445 ], [ 145.587731, 15.033531 ], [ 145.587711, 15.033607 ], [ 145.587706, 15.033712 ], [ 145.587749, 15.033818 ], [ 145.587827, 15.03388 ], [ 145.587851, 15.033967 ], [ 145.587841, 15.034033 ], [ 145.587865, 15.034105 ], [ 145.58788, 15.034187 ], [ 145.58781, 15.034215 ], [ 145.587805, 15.034291 ], [ 145.587844, 15.034397 ], [ 145.587901, 15.034665 ], [ 145.588003, 15.0348 ], [ 145.588057, 15.034834 ], [ 145.588047, 15.034929 ], [ 145.588081, 15.035044 ], [ 145.588124, 15.035135 ], [ 145.588121, 15.035226 ], [ 145.588086, 15.035279 ], [ 145.588116, 15.035336 ], [ 145.58817, 15.03536 ], [ 145.588169, 15.035427 ], [ 145.588134, 15.035461 ], [ 145.588129, 15.035532 ], [ 145.588197, 15.035609 ], [ 145.588256, 15.03572 ], [ 145.588245, 15.035801 ], [ 145.58827, 15.035873 ], [ 145.588318, 15.035935 ], [ 145.588392, 15.035969 ], [ 145.588471, 15.03597 ], [ 145.588544, 15.036047 ], [ 145.588514, 15.036113 ], [ 145.58845, 15.036156 ], [ 145.588351, 15.03617 ], [ 145.588297, 15.036213 ], [ 145.588267, 15.036284 ], [ 145.588276, 15.036409 ], [ 145.588334, 15.036571 ], [ 145.588341, 15.036662 ], [ 145.588365, 15.03671 ], [ 145.588359, 15.036801 ], [ 145.588388, 15.036902 ], [ 145.588407, 15.037036 ], [ 145.588446, 15.037132 ], [ 145.588445, 15.037242 ], [ 145.588494, 15.037347 ], [ 145.588449, 15.037428 ], [ 145.588497, 15.037515 ], [ 145.588541, 15.037635 ], [ 145.588599, 15.037778 ], [ 145.588608, 15.037865 ], [ 145.588623, 15.037951 ], [ 145.588666, 15.038061 ], [ 145.588695, 15.0381 ], [ 145.588754, 15.038138 ], [ 145.588788, 15.03821 ], [ 145.588901, 15.03823 ], [ 145.589049, 15.038164 ], [ 145.58903, 15.038111 ], [ 145.589099, 15.038049 ], [ 145.589178, 15.037997 ], [ 145.589248, 15.037902 ], [ 145.589307, 15.03784 ], [ 145.589333, 15.03774 ], [ 145.589363, 15.037683 ], [ 145.589412, 15.037616 ], [ 145.589442, 15.037592 ], [ 145.589487, 15.03754 ], [ 145.589733, 15.037446 ], [ 145.589867, 15.037389 ], [ 145.590074, 15.037348 ], [ 145.590177, 15.037353 ], [ 145.590329, 15.037349 ], [ 145.590414, 15.037283 ], [ 145.590512, 15.037226 ], [ 145.590611, 15.037246 ], [ 145.590675, 15.037198 ], [ 145.590705, 15.037127 ], [ 145.590834, 15.037017 ], [ 145.590942, 15.036956 ], [ 145.590967, 15.036947 ], [ 145.590987, 15.036923 ], [ 145.591149, 15.036886 ], [ 145.591342, 15.036815 ], [ 145.591519, 15.036878 ], [ 145.591642, 15.036865 ], [ 145.591731, 15.036817 ], [ 145.591834, 15.036794 ], [ 145.591932, 15.036871 ], [ 145.592035, 15.036939 ], [ 145.592167, 15.037016 ], [ 145.592285, 15.037055 ], [ 145.592393, 15.037118 ], [ 145.592531, 15.037186 ], [ 145.592599, 15.037244 ], [ 145.592648, 15.037325 ], [ 145.592755, 15.037412 ], [ 145.592814, 15.037494 ], [ 145.592887, 15.037561 ], [ 145.592985, 15.037633 ], [ 145.593068, 15.037711 ], [ 145.593186, 15.037845 ], [ 145.593289, 15.037889 ], [ 145.593358, 15.037875 ], [ 145.593446, 15.037866 ], [ 145.593569, 15.037905 ], [ 145.593677, 15.037925 ], [ 145.593825, 15.037964 ], [ 145.593972, 15.038008 ], [ 145.59406, 15.038047 ], [ 145.594193, 15.038114 ], [ 145.59436, 15.038139 ], [ 145.594473, 15.038236 ], [ 145.594517, 15.038279 ], [ 145.594674, 15.03829 ], [ 145.59488, 15.038367 ], [ 145.594914, 15.038459 ], [ 145.594924, 15.038521 ], [ 145.595041, 15.038574 ], [ 145.595154, 15.038589 ], [ 145.595164, 15.038651 ], [ 145.595154, 15.038723 ], [ 145.595182, 15.038819 ], [ 145.595221, 15.038896 ], [ 145.595253, 15.03891 ], [ 145.595281, 15.038925 ], [ 145.59532, 15.038911 ], [ 145.595354, 15.038897 ], [ 145.595413, 15.038897 ], [ 145.595437, 15.038959 ], [ 145.595393, 15.039016 ], [ 145.595476, 15.03906 ], [ 145.595596, 15.039156 ], [ 145.595674, 15.039233 ], [ 145.595787, 15.039358 ], [ 145.595796, 15.039454 ], [ 145.59585, 15.039521 ], [ 145.595997, 15.039642 ], [ 145.596149, 15.039729 ], [ 145.596236, 15.039902 ], [ 145.596424, 15.040132 ], [ 145.596512, 15.040252 ], [ 145.596585, 15.040382 ], [ 145.596623, 15.040526 ], [ 145.596716, 15.040636 ], [ 145.596764, 15.040751 ], [ 145.596769, 15.040866 ], [ 145.596817, 15.040991 ], [ 145.596836, 15.041158 ], [ 145.596835, 15.041283 ], [ 145.596829, 15.041374 ], [ 145.596803, 15.04156 ], [ 145.596932, 15.04179 ], [ 145.597016, 15.041863 ], [ 145.59704, 15.041959 ], [ 145.596995, 15.042011 ], [ 145.597053, 15.042131 ], [ 145.597047, 15.042284 ], [ 145.597091, 15.04238 ], [ 145.597154, 15.042485 ], [ 145.597173, 15.042586 ], [ 145.597241, 15.042811 ], [ 145.597225, 15.042916 ], [ 145.597268, 15.043146 ], [ 145.597339, 15.043567 ], [ 145.597413, 15.043908 ], [ 145.597363, 15.043989 ], [ 145.597348, 15.044075 ], [ 145.597367, 15.044276 ], [ 145.597439, 15.044491 ], [ 145.597394, 15.044596 ], [ 145.597433, 15.044706 ], [ 145.597422, 15.04485 ], [ 145.597357, 15.044983 ], [ 145.597283, 15.045055 ], [ 145.597268, 15.045102 ], [ 145.597346, 15.045146 ], [ 145.597425, 15.04517 ], [ 145.597429, 15.045228 ], [ 145.597367, 15.045385 ], [ 145.597425, 15.045429 ], [ 145.597439, 15.045558 ], [ 145.597419, 15.045625 ], [ 145.597448, 15.045716 ], [ 145.597491, 15.04595 ], [ 145.597529, 15.04607 ], [ 145.597558, 15.046204 ], [ 145.597592, 15.046286 ], [ 145.597552, 15.046367 ], [ 145.597606, 15.046444 ], [ 145.597644, 15.046554 ], [ 145.597624, 15.04664 ], [ 145.597619, 15.046755 ], [ 145.597662, 15.046956 ], [ 145.597696, 15.047013 ], [ 145.59767, 15.047104 ], [ 145.597628, 15.047176 ], [ 145.597573, 15.047257 ], [ 145.597578, 15.047295 ], [ 145.597599, 15.047346 ], [ 145.597617, 15.047362 ], [ 145.597676, 15.047386 ], [ 145.597779, 15.047387 ], [ 145.597813, 15.04744 ], [ 145.597793, 15.047507 ], [ 145.597803, 15.047588 ], [ 145.597841, 15.04767 ], [ 145.597881, 15.047713 ], [ 145.597925, 15.047732 ], [ 145.597939, 15.047776 ], [ 145.597904, 15.047876 ], [ 145.597909, 15.047933 ], [ 145.597958, 15.047981 ], [ 145.598016, 15.048001 ], [ 145.598095, 15.047996 ], [ 145.598119, 15.048068 ], [ 145.598084, 15.048154 ], [ 145.598069, 15.04825 ], [ 145.598103, 15.048307 ], [ 145.598162, 15.048375 ], [ 145.598235, 15.048447 ], [ 145.598259, 15.048509 ], [ 145.598263, 15.048691 ], [ 145.598336, 15.048749 ], [ 145.598449, 15.048802 ], [ 145.598454, 15.048898 ], [ 145.598527, 15.04896 ], [ 145.598591, 15.049014 ], [ 145.598634, 15.049095 ], [ 145.598698, 15.049139 ], [ 145.598747, 15.049244 ], [ 145.598741, 15.049306 ], [ 145.5988, 15.049383 ], [ 145.598795, 15.049463 ], [ 145.598794, 15.049474 ], [ 145.59873, 15.04955 ], [ 145.598645, 15.049755 ], [ 145.598703, 15.049827 ], [ 145.598688, 15.049885 ], [ 145.598698, 15.049961 ], [ 145.598752, 15.049986 ], [ 145.598775, 15.05011 ], [ 145.598731, 15.050162 ], [ 145.598775, 15.050201 ], [ 145.598784, 15.050273 ], [ 145.598749, 15.050311 ], [ 145.598774, 15.050335 ], [ 145.598813, 15.050354 ], [ 145.598805, 15.050498 ], [ 145.598785, 15.050584 ], [ 145.598779, 15.050717 ], [ 145.598744, 15.050779 ], [ 145.598699, 15.050947 ], [ 145.598679, 15.05097 ], [ 145.598629, 15.050989 ], [ 145.598599, 15.05107 ], [ 145.598589, 15.05119 ], [ 145.598559, 15.051214 ], [ 145.598539, 15.05119 ], [ 145.598528, 15.051206 ], [ 145.598495, 15.051237 ], [ 145.598465, 15.051285 ], [ 145.598474, 15.051342 ], [ 145.598445, 15.05138 ], [ 145.598425, 15.051452 ], [ 145.598395, 15.051523 ], [ 145.598301, 15.051552 ], [ 145.598266, 15.051604 ], [ 145.598253, 15.051661 ], [ 145.598169, 15.051704 ], [ 145.59812, 15.051684 ], [ 145.598012, 15.051722 ], [ 145.597977, 15.051774 ], [ 145.597844, 15.051817 ], [ 145.597765, 15.051826 ], [ 145.597706, 15.051821 ], [ 145.597607, 15.051844 ], [ 145.597548, 15.051891 ], [ 145.597439, 15.051929 ], [ 145.597336, 15.0519 ], [ 145.597243, 15.051904 ], [ 145.597179, 15.051918 ], [ 145.597129, 15.051984 ], [ 145.59705, 15.051974 ], [ 145.596996, 15.052051 ], [ 145.596931, 15.052088 ], [ 145.596828, 15.052126 ], [ 145.596769, 15.05213 ], [ 145.596744, 15.052178 ], [ 145.596699, 15.052216 ], [ 145.596758, 15.052269 ], [ 145.596737, 15.052422 ], [ 145.596678, 15.052479 ], [ 145.596633, 15.052531 ], [ 145.596564, 15.052569 ], [ 145.596458, 15.052554 ], [ 145.596414, 15.052602 ], [ 145.596423, 15.052654 ], [ 145.596398, 15.052745 ], [ 145.596349, 15.052778 ], [ 145.596338, 15.05285 ], [ 145.596377, 15.052893 ], [ 145.596431, 15.052927 ], [ 145.59647, 15.053018 ], [ 145.59645, 15.053085 ], [ 145.59641, 15.053166 ], [ 145.596439, 15.0532 ], [ 145.596434, 15.053257 ], [ 145.596424, 15.053295 ], [ 145.596478, 15.053315 ], [ 145.596497, 15.053358 ], [ 145.596546, 15.053387 ], [ 145.596596, 15.053383 ], [ 145.596633, 15.053397 ], [ 145.596637, 15.05344 ], [ 145.596687, 15.053412 ], [ 145.596785, 15.053408 ], [ 145.596854, 15.053465 ], [ 145.596883, 15.05348 ], [ 145.596932, 15.053528 ], [ 145.597079, 15.053601 ], [ 145.597148, 15.053582 ], [ 145.597138, 15.053649 ], [ 145.597187, 15.053687 ], [ 145.597251, 15.053678 ], [ 145.597303, 15.053664 ], [ 145.597332, 15.053712 ], [ 145.597396, 15.053727 ], [ 145.597455, 15.053751 ], [ 145.597479, 15.053833 ], [ 145.597503, 15.053871 ], [ 145.597547, 15.053867 ], [ 145.597586, 15.053929 ], [ 145.597626, 15.053953 ], [ 145.597655, 15.053934 ], [ 145.597679, 15.053992 ], [ 145.597649, 15.054092 ], [ 145.597732, 15.054188 ], [ 145.597786, 15.054284 ], [ 145.597776, 15.054351 ], [ 145.59784, 15.054356 ], [ 145.597884, 15.054381 ], [ 145.597957, 15.054443 ], [ 145.598011, 15.054496 ], [ 145.598119, 15.054511 ], [ 145.598168, 15.05455 ], [ 145.598212, 15.054627 ], [ 145.598291, 15.054608 ], [ 145.598305, 15.054694 ], [ 145.598379, 15.054723 ], [ 145.598464, 15.054786 ], [ 145.598444, 15.054829 ], [ 145.598488, 15.054887 ], [ 145.598631, 15.054878 ], [ 145.598641, 15.054931 ], [ 145.598739, 15.05495 ], [ 145.598803, 15.054998 ], [ 145.599146, 15.055139 ], [ 145.59945, 15.055342 ], [ 145.599798, 15.055593 ], [ 145.600141, 15.055791 ], [ 145.600209, 15.055887 ], [ 145.600337, 15.055869 ], [ 145.600631, 15.056091 ], [ 145.600891, 15.056221 ], [ 145.600901, 15.056279 ], [ 145.601019, 15.056284 ], [ 145.601067, 15.056385 ], [ 145.60119, 15.056396 ], [ 145.601281, 15.056501 ], [ 145.601335, 15.056569 ], [ 145.601511, 15.056637 ], [ 145.601663, 15.056786 ], [ 145.601692, 15.056872 ], [ 145.601761, 15.056873 ], [ 145.601937, 15.057008 ], [ 145.601947, 15.057032 ], [ 145.602329, 15.057373 ], [ 145.602456, 15.057494 ], [ 145.602469, 15.05768 ], [ 145.602651, 15.057691 ], [ 145.60266, 15.057859 ], [ 145.602693, 15.058041 ], [ 145.602702, 15.058146 ], [ 145.602946, 15.058214 ], [ 145.602965, 15.05831 ], [ 145.603142, 15.058364 ], [ 145.603185, 15.058455 ], [ 145.603337, 15.058609 ], [ 145.60337, 15.058834 ], [ 145.603981, 15.059522 ], [ 145.604098, 15.059623 ], [ 145.604591, 15.060248 ], [ 145.604884, 15.06057 ], [ 145.604962, 15.06079 ], [ 145.605158, 15.06083 ], [ 145.605339, 15.061108 ], [ 145.605476, 15.061224 ], [ 145.605495, 15.061286 ], [ 145.605583, 15.06133 ], [ 145.605642, 15.06145 ], [ 145.605725, 15.06146 ], [ 145.605739, 15.06157 ], [ 145.605979, 15.061801 ], [ 145.606008, 15.061897 ], [ 145.606419, 15.06232 ], [ 145.606458, 15.062364 ], [ 145.606462, 15.062416 ], [ 145.606551, 15.062469 ], [ 145.606683, 15.06259 ], [ 145.606731, 15.062691 ], [ 145.606736, 15.062767 ], [ 145.606903, 15.062845 ], [ 145.607624, 15.0636 ], [ 145.607658, 15.063691 ], [ 145.607794, 15.063831 ], [ 145.607883, 15.063827 ], [ 145.607893, 15.063889 ], [ 145.607957, 15.063894 ], [ 145.607976, 15.063975 ], [ 145.608611, 15.064615 ], [ 145.608733, 15.064865 ], [ 145.60884, 15.064966 ], [ 145.608994, 15.06523 ], [ 145.609253, 15.065499 ], [ 145.609415, 15.065524 ], [ 145.609434, 15.065611 ], [ 145.609845, 15.066072 ], [ 145.610011, 15.066241 ], [ 145.610124, 15.066337 ], [ 145.610236, 15.066462 ], [ 145.610241, 15.066515 ], [ 145.610373, 15.066611 ], [ 145.610759, 15.067087 ], [ 145.610857, 15.067069 ], [ 145.611064, 15.067409 ], [ 145.611211, 15.067535 ], [ 145.611461, 15.067718 ], [ 145.611668, 15.067748 ], [ 145.611731, 15.067806 ], [ 145.611686, 15.067958 ], [ 145.611714, 15.068212 ], [ 145.611733, 15.068313 ], [ 145.611841, 15.068347 ], [ 145.612073, 15.068621 ], [ 145.612269, 15.068828 ], [ 145.61247, 15.068934 ], [ 145.612607, 15.069016 ], [ 145.61262, 15.069222 ], [ 145.612752, 15.069376 ], [ 145.612806, 15.069505 ], [ 145.612913, 15.069568 ], [ 145.612935, 15.069674 ], [ 145.61317, 15.0699 ], [ 145.613429, 15.070098 ], [ 145.61366, 15.070171 ], [ 145.613872, 15.070153 ], [ 145.613999, 15.070297 ], [ 145.614018, 15.070383 ], [ 145.6139, 15.070464 ], [ 145.613977, 15.070598 ], [ 145.614174, 15.070643 ], [ 145.614257, 15.070791 ], [ 145.614375, 15.070792 ], [ 145.614488, 15.070826 ], [ 145.614473, 15.070912 ], [ 145.614649, 15.071004 ], [ 145.614919, 15.071188 ], [ 145.614997, 15.071317 ], [ 145.615239, 15.071553 ], [ 145.615425, 15.071703 ], [ 145.615577, 15.071847 ], [ 145.615777, 15.072087 ], [ 145.615937, 15.072366 ], [ 145.616052, 15.072591 ], [ 145.61607, 15.072821 ], [ 145.616127, 15.072968 ], [ 145.61621, 15.073181 ], [ 145.616288, 15.073396 ], [ 145.616354, 15.073808 ], [ 145.616382, 15.074047 ], [ 145.616447, 15.074277 ], [ 145.616627, 15.074608 ], [ 145.617242, 15.075377 ], [ 145.617633, 15.075916 ], [ 145.617774, 15.076073 ], [ 145.617923, 15.076238 ], [ 145.618036, 15.076272 ], [ 145.618046, 15.076363 ], [ 145.618237, 15.076412 ], [ 145.618305, 15.076541 ], [ 145.618728, 15.076678 ], [ 145.618757, 15.076764 ], [ 145.61886, 15.076818 ], [ 145.618967, 15.076933 ], [ 145.619164, 15.076996 ], [ 145.619306, 15.077064 ], [ 145.619509, 15.07697 ], [ 145.619583, 15.076879 ], [ 145.619754, 15.077014 ], [ 145.619764, 15.077091 ], [ 145.619926, 15.077159 ], [ 145.620098, 15.077155 ], [ 145.620196, 15.077204 ], [ 145.620176, 15.077266 ], [ 145.620313, 15.077372 ], [ 145.620436, 15.077363 ], [ 145.620526, 15.077531 ], [ 145.620649, 15.077555 ], [ 145.620777, 15.077628 ], [ 145.620752, 15.077685 ], [ 145.620766, 15.077776 ], [ 145.620864, 15.07782 ], [ 145.620972, 15.077887 ], [ 145.62111, 15.077903 ], [ 145.621109, 15.077974 ], [ 145.621124, 15.078051 ], [ 145.621188, 15.078047 ], [ 145.621281, 15.078052 ], [ 145.6213, 15.078119 ], [ 145.621359, 15.078249 ], [ 145.621471, 15.078374 ], [ 145.621692, 15.07849 ], [ 145.621849, 15.078548 ], [ 145.62204, 15.078645 ], [ 145.622045, 15.078745 ], [ 145.622163, 15.078789 ], [ 145.622271, 15.078756 ], [ 145.622714, 15.079113 ], [ 145.622768, 15.079247 ], [ 145.622777, 15.0793 ], [ 145.622846, 15.079358 ], [ 145.622899, 15.079449 ], [ 145.622987, 15.079555 ], [ 145.623055, 15.079699 ], [ 145.623157, 15.079876 ], [ 145.623505, 15.080223 ], [ 145.623695, 15.080458 ], [ 145.623971, 15.080809 ], [ 145.624138, 15.080877 ], [ 145.624206, 15.08103 ], [ 145.624255, 15.081079 ], [ 145.624466, 15.081219 ], [ 145.624494, 15.081319 ], [ 145.624675, 15.081569 ], [ 145.625115, 15.082074 ], [ 145.625302, 15.082271 ], [ 145.625511, 15.082492 ], [ 145.625645, 15.08268 ], [ 145.625747, 15.082881 ], [ 145.626143, 15.083338 ], [ 145.626261, 15.083305 ], [ 145.626335, 15.083392 ], [ 145.62627, 15.083497 ], [ 145.626397, 15.083703 ], [ 145.626604, 15.083661 ], [ 145.626663, 15.083681 ], [ 145.626588, 15.083762 ], [ 145.626563, 15.083886 ], [ 145.62667, 15.084001 ], [ 145.626866, 15.08418 ], [ 145.626979, 15.084238 ], [ 145.627073, 15.084181 ], [ 145.627063, 15.084353 ], [ 145.6272, 15.084447 ], [ 145.62726, 15.08442 ], [ 145.627305, 15.084448 ], [ 145.627321, 15.084458 ], [ 145.627365, 15.084518 ], [ 145.627337, 15.084572 ], [ 145.627432, 15.084616 ], [ 145.627515, 15.084594 ], [ 145.627565, 15.084627 ], [ 145.627582, 15.084709 ], [ 145.627631, 15.084768 ], [ 145.627765, 15.084861 ], [ 145.62787, 15.084862 ], [ 145.627971, 15.084879 ], [ 145.628009, 15.084928 ], [ 145.628113, 15.08499 ], [ 145.628181, 15.085053 ], [ 145.62842, 15.08519 ], [ 145.628604, 15.085256 ], [ 145.628754, 15.085322 ], [ 145.628901, 15.085359 ], [ 145.629068, 15.08544 ], [ 145.629619, 15.085626 ], [ 145.629765, 15.085723 ], [ 145.629975, 15.08577 ], [ 145.630146, 15.085936 ], [ 145.630254, 15.085946 ], [ 145.630712, 15.086298 ], [ 145.630775, 15.086394 ], [ 145.630928, 15.086452 ], [ 145.631021, 15.086558 ], [ 145.631079, 15.086664 ], [ 145.631167, 15.086741 ], [ 145.631384, 15.086747 ], [ 145.631497, 15.086723 ], [ 145.631551, 15.086791 ], [ 145.631555, 15.086877 ], [ 145.631609, 15.086915 ], [ 145.631663, 15.086988 ], [ 145.631706, 15.087003 ], [ 145.631717, 15.087007 ], [ 145.631746, 15.087098 ], [ 145.631843, 15.087204 ], [ 145.631917, 15.087262 ], [ 145.632173, 15.087282 ], [ 145.632221, 15.087378 ], [ 145.632285, 15.087431 ], [ 145.632288, 15.087436 ], [ 145.632314, 15.087479 ], [ 145.632526, 15.087476 ], [ 145.63263, 15.087448 ], [ 145.632664, 15.087391 ], [ 145.632719, 15.087377 ], [ 145.632773, 15.087353 ], [ 145.632802, 15.087387 ], [ 145.632728, 15.087482 ], [ 145.632703, 15.087553 ], [ 145.632609, 15.087649 ], [ 145.632593, 15.087768 ], [ 145.632513, 15.087944 ], [ 145.632532, 15.088012 ], [ 145.632483, 15.088064 ], [ 145.632453, 15.088174 ], [ 145.632518, 15.088265 ], [ 145.632641, 15.088385 ], [ 145.632694, 15.088457 ], [ 145.632734, 15.088453 ], [ 145.632758, 15.088529 ], [ 145.632812, 15.088506 ], [ 145.632797, 15.088558 ], [ 145.632845, 15.088707 ], [ 145.632953, 15.088822 ], [ 145.632913, 15.088942 ], [ 145.632996, 15.088966 ], [ 145.632991, 15.089047 ], [ 145.632897, 15.089147 ], [ 145.632837, 15.0892 ], [ 145.632882, 15.089229 ], [ 145.633044, 15.089225 ], [ 145.633023, 15.089368 ], [ 145.632993, 15.089492 ], [ 145.633042, 15.08954 ], [ 145.633105, 15.089646 ], [ 145.633174, 15.089666 ], [ 145.633184, 15.089718 ], [ 145.633154, 15.089747 ], [ 145.633242, 15.089781 ], [ 145.633292, 15.089772 ], [ 145.633316, 15.089834 ], [ 145.633399, 15.089863 ], [ 145.633473, 15.089935 ], [ 145.633624, 15.090156 ], [ 145.633739, 15.090296 ], [ 145.633802, 15.090353 ], [ 145.633831, 15.090483 ], [ 145.633973, 15.090574 ], [ 145.634065, 15.090785 ], [ 145.634187, 15.090992 ], [ 145.634256, 15.09104 ], [ 145.634334, 15.091108 ], [ 145.634574, 15.0913 ], [ 145.634808, 15.091641 ], [ 145.63494, 15.0918 ], [ 145.634979, 15.091929 ], [ 145.635042, 15.091963 ], [ 145.635131, 15.091988 ], [ 145.635135, 15.09205 ], [ 145.635263, 15.092161 ], [ 145.635351, 15.092152 ], [ 145.635366, 15.092247 ], [ 145.635725, 15.092603 ], [ 145.635867, 15.092796 ], [ 145.636057, 15.093069 ], [ 145.636189, 15.093204 ], [ 145.636183, 15.093324 ], [ 145.636536, 15.093646 ], [ 145.63662, 15.093628 ], [ 145.636713, 15.093681 ], [ 145.636757, 15.093734 ], [ 145.636845, 15.093773 ], [ 145.636928, 15.093969 ], [ 145.636902, 15.094103 ], [ 145.63709, 15.094334 ], [ 145.637159, 15.09432 ], [ 145.637238, 15.094268 ], [ 145.637287, 15.094292 ], [ 145.637361, 15.094373 ], [ 145.637405, 15.094436 ], [ 145.637448, 15.094589 ], [ 145.637492, 15.094647 ], [ 145.637486, 15.094776 ], [ 145.637648, 15.094916 ], [ 145.637751, 15.094983 ], [ 145.63776, 15.09505 ], [ 145.637848, 15.095113 ], [ 145.637911, 15.095238 ], [ 145.638112, 15.095382 ], [ 145.638265, 15.09545 ], [ 145.638343, 15.095551 ], [ 145.63864, 15.096036 ], [ 145.638753, 15.096027 ], [ 145.638777, 15.096118 ], [ 145.638872, 15.096234 ], [ 145.63898, 15.096292 ], [ 145.639, 15.096354 ], [ 145.639044, 15.096431 ], [ 145.639107, 15.096503 ], [ 145.639166, 15.096599 ], [ 145.639244, 15.096628 ], [ 145.639268, 15.09669 ], [ 145.63967, 15.097066 ], [ 145.639753, 15.097066 ], [ 145.639777, 15.097143 ], [ 145.640081, 15.097379 ], [ 145.64013, 15.097451 ], [ 145.640243, 15.097519 ], [ 145.640306, 15.097615 ], [ 145.640418, 15.097831 ], [ 145.640369, 15.097859 ], [ 145.640452, 15.097889 ], [ 145.640464, 15.097895 ], [ 145.640501, 15.097913 ], [ 145.640888, 15.098293 ], [ 145.640944, 15.098398 ], [ 145.641521, 15.098909 ], [ 145.642226, 15.099602 ], [ 145.643156, 15.100378 ], [ 145.643718, 15.100764 ], [ 145.644115, 15.100953 ], [ 145.644759, 15.101051 ], [ 145.644833, 15.101062 ], [ 145.644927, 15.101115 ], [ 145.64505, 15.101097 ], [ 145.645143, 15.10115 ], [ 145.645321, 15.101089 ], [ 145.645469, 15.100965 ], [ 145.645519, 15.100904 ], [ 145.64548, 15.100832 ], [ 145.64552, 15.10076 ], [ 145.645614, 15.100684 ], [ 145.645782, 15.100604 ], [ 145.64592, 15.10049 ], [ 145.645995, 15.100337 ], [ 145.646104, 15.10017 ], [ 145.646463, 15.099881 ], [ 145.646474, 15.099747 ], [ 145.646543, 15.09969 ], [ 145.646598, 15.099633 ], [ 145.646692, 15.099562 ], [ 145.646741, 15.099562 ], [ 145.646879, 15.099448 ], [ 145.646939, 15.099343 ], [ 145.647266, 15.098953 ], [ 145.64737, 15.098911 ], [ 145.647452, 15.098772 ], [ 145.647478, 15.098634 ], [ 145.647611, 15.098568 ], [ 145.647675, 15.098621 ], [ 145.647808, 15.098526 ], [ 145.647893, 15.098416 ], [ 145.647844, 15.098368 ], [ 145.647933, 15.09833 ], [ 145.648006, 15.09834 ], [ 145.647953, 15.098268 ], [ 145.648007, 15.098216 ], [ 145.648047, 15.09814 ], [ 145.648072, 15.09803 ], [ 145.648225, 15.097978 ], [ 145.648324, 15.097893 ], [ 145.648429, 15.097721 ], [ 145.648513, 15.09764 ], [ 145.648602, 15.097564 ], [ 145.648705, 15.097608 ], [ 145.648785, 15.097494 ], [ 145.648854, 15.097379 ], [ 145.648858, 15.097255 ], [ 145.648917, 15.097198 ], [ 145.648947, 15.097131 ], [ 145.648923, 15.097054 ], [ 145.649027, 15.096926 ], [ 145.649072, 15.096826 ], [ 145.649171, 15.096755 ], [ 145.649211, 15.096611 ], [ 145.649266, 15.09653 ], [ 145.649345, 15.096516 ], [ 145.64937, 15.096464 ], [ 145.649336, 15.096378 ], [ 145.649376, 15.096287 ], [ 145.649313, 15.096148 ], [ 145.649289, 15.096004 ], [ 145.649339, 15.095904 ], [ 145.649408, 15.095842 ], [ 145.649521, 15.095833 ], [ 145.649734, 15.095749 ], [ 145.649769, 15.095672 ], [ 145.649843, 15.095625 ], [ 145.649949, 15.095626 ], [ 145.650028, 15.095535 ], [ 145.650137, 15.095431 ], [ 145.650216, 15.095378 ], [ 145.650315, 15.09535 ], [ 145.650384, 15.095236 ], [ 145.650425, 15.095078 ], [ 145.650494, 15.09495 ], [ 145.650574, 15.094874 ], [ 145.650657, 15.094879 ], [ 145.650726, 15.094827 ], [ 145.650771, 15.094746 ], [ 145.650787, 15.094631 ], [ 145.650872, 15.09444 ], [ 145.650961, 15.094364 ], [ 145.651174, 15.094174 ], [ 145.651184, 15.094093 ], [ 145.651244, 15.094026 ], [ 145.651345, 15.093864 ], [ 145.65141, 15.093778 ], [ 145.651588, 15.093626 ], [ 145.651589, 15.093545 ], [ 145.651575, 15.093449 ], [ 145.651673, 15.093383 ], [ 145.651807, 15.093317 ], [ 145.651837, 15.09324 ], [ 145.651818, 15.093116 ], [ 145.651936, 15.093059 ], [ 145.652055, 15.092983 ], [ 145.652085, 15.092888 ], [ 145.65213, 15.092817 ], [ 145.652398, 15.092469 ], [ 145.652458, 15.09234 ], [ 145.652522, 15.092245 ], [ 145.652624, 15.092174 ], [ 145.652653, 15.092212 ], [ 145.652707, 15.092236 ], [ 145.652722, 15.092184 ], [ 145.652713, 15.092136 ], [ 145.652664, 15.092093 ], [ 145.652674, 15.092016 ], [ 145.652744, 15.091921 ], [ 145.652852, 15.09185 ], [ 145.652897, 15.09174 ], [ 145.653016, 15.091726 ], [ 145.653129, 15.091641 ], [ 145.653145, 15.091569 ], [ 145.653293, 15.091384 ], [ 145.653408, 15.091231 ], [ 145.653536, 15.091141 ], [ 145.653734, 15.09097 ], [ 145.653808, 15.090928 ], [ 145.653799, 15.090832 ], [ 145.65376, 15.090793 ], [ 145.653834, 15.090712 ], [ 145.653889, 15.090675 ], [ 145.653938, 15.090589 ], [ 145.654037, 15.090556 ], [ 145.654097, 15.09048 ], [ 145.654191, 15.09038 ], [ 145.654211, 15.090318 ], [ 145.654187, 15.090255 ], [ 145.654227, 15.090141 ], [ 145.65433, 15.090103 ], [ 145.654353, 15.090075 ], [ 145.654461, 15.090027 ], [ 145.654472, 15.089927 ], [ 145.654531, 15.08986 ], [ 145.654552, 15.089698 ], [ 145.654607, 15.089612 ], [ 145.654691, 15.089574 ], [ 145.65477, 15.089503 ], [ 145.654721, 15.089436 ], [ 145.654751, 15.089336 ], [ 145.654786, 15.089269 ], [ 145.654845, 15.089226 ], [ 145.654861, 15.089102 ], [ 145.654925, 15.08905 ], [ 145.654926, 15.088882 ], [ 145.655114, 15.088735 ], [ 145.65514, 15.088597 ], [ 145.655222, 15.088477 ], [ 145.655321, 15.088349 ], [ 145.655381, 15.08823 ], [ 145.655456, 15.088024 ], [ 145.655484, 15.087982 ], [ 145.65558, 15.087848 ], [ 145.655591, 15.087757 ], [ 145.65569, 15.087638 ], [ 145.655793, 15.08762 ], [ 145.655823, 15.087544 ], [ 145.655824, 15.087414 ], [ 145.655855, 15.087218 ], [ 145.655924, 15.087152 ], [ 145.655906, 15.086999 ], [ 145.656059, 15.08689 ], [ 145.656081, 15.086823 ], [ 145.656057, 15.086732 ], [ 145.656023, 15.086679 ], [ 145.656088, 15.086632 ], [ 145.656176, 15.086599 ], [ 145.6563, 15.086475 ], [ 145.656311, 15.086346 ], [ 145.656257, 15.086293 ], [ 145.656259, 15.085996 ], [ 145.656309, 15.085911 ], [ 145.656407, 15.085902 ], [ 145.656481, 15.085859 ], [ 145.656492, 15.085768 ], [ 145.656426, 15.08571 ], [ 145.656362, 15.0857 ], [ 145.656338, 15.085633 ], [ 145.656372, 15.085576 ], [ 145.656471, 15.085515 ], [ 145.656491, 15.085462 ], [ 145.656457, 15.08539 ], [ 145.656438, 15.08528 ], [ 145.656469, 15.085151 ], [ 145.656523, 15.085118 ], [ 145.656499, 15.085012 ], [ 145.656588, 15.08497 ], [ 145.656652, 15.084932 ], [ 145.656674, 15.08465 ], [ 145.656847, 15.084441 ], [ 145.656833, 15.084354 ], [ 145.656907, 15.084283 ], [ 145.656903, 15.084192 ], [ 145.656958, 15.084102 ], [ 145.657017, 15.084049 ], [ 145.656959, 15.083949 ], [ 145.656905, 15.083867 ], [ 145.656878, 15.083814 ], [ 145.656928, 15.083743 ], [ 145.656977, 15.083709 ], [ 145.656958, 15.083619 ], [ 145.657053, 15.083428 ], [ 145.657073, 15.083351 ], [ 145.657162, 15.083366 ], [ 145.657236, 15.083281 ], [ 145.657128, 15.083232 ], [ 145.657119, 15.083117 ], [ 145.657135, 15.082893 ], [ 145.657141, 15.082754 ], [ 145.65721, 15.082673 ], [ 145.657122, 15.082605 ], [ 145.657133, 15.082472 ], [ 145.657178, 15.082386 ], [ 145.657222, 15.082314 ], [ 145.657213, 15.082199 ], [ 145.657222, 15.082042 ], [ 145.657281, 15.081961 ], [ 145.657297, 15.081879 ], [ 145.657184, 15.081027 ], [ 145.657135, 15.080884 ], [ 145.657155, 15.080826 ], [ 145.657137, 15.080692 ], [ 145.657141, 15.080434 ], [ 145.657151, 15.080329 ], [ 145.657108, 15.080219 ], [ 145.65706, 15.079998 ], [ 145.657036, 15.079792 ], [ 145.657037, 15.07962 ], [ 145.657014, 15.079481 ], [ 145.657093, 15.079401 ], [ 145.65696, 15.078658 ], [ 145.656882, 15.078567 ], [ 145.656852, 15.078519 ], [ 145.656887, 15.078447 ], [ 145.656917, 15.078347 ], [ 145.656859, 15.078232 ], [ 145.656831, 15.078069 ], [ 145.656806, 15.077997 ], [ 145.656743, 15.077925 ], [ 145.656793, 15.077854 ], [ 145.656779, 15.077653 ], [ 145.656676, 15.077614 ], [ 145.656647, 15.077532 ], [ 145.656731, 15.077495 ], [ 145.656727, 15.077399 ], [ 145.656643, 15.077355 ], [ 145.65658, 15.07725 ], [ 145.656566, 15.077168 ], [ 145.656625, 15.077083 ], [ 145.656508, 15.076886 ], [ 145.656514, 15.076695 ], [ 145.656432, 15.076493 ], [ 145.656389, 15.076326 ], [ 145.656331, 15.076158 ], [ 145.656336, 15.076048 ], [ 145.6563, 15.075885 ], [ 145.65634, 15.075794 ], [ 145.656208, 15.075674 ], [ 145.656228, 15.075574 ], [ 145.656209, 15.075483 ], [ 145.656151, 15.075425 ], [ 145.656156, 15.075301 ], [ 145.656143, 15.075152 ], [ 145.656084, 15.075047 ], [ 145.65605, 15.07497 ], [ 145.65608, 15.074884 ], [ 145.656022, 15.074798 ], [ 145.655959, 15.074635 ], [ 145.655989, 15.074501 ], [ 145.656, 15.074405 ], [ 145.655939, 15.074285 ], [ 145.655905, 15.074127 ], [ 145.655955, 15.073998 ], [ 145.655921, 15.073936 ], [ 145.655877, 15.073893 ], [ 145.655868, 15.073802 ], [ 145.655844, 15.073739 ], [ 145.655849, 15.073649 ], [ 145.655791, 15.073514 ], [ 145.655841, 15.073352 ], [ 145.655778, 15.07317 ], [ 145.655695, 15.073069 ], [ 145.655725, 15.072969 ], [ 145.6558, 15.072883 ], [ 145.655746, 15.072414 ], [ 145.655723, 15.072165 ], [ 145.655645, 15.072098 ], [ 145.65564, 15.072007 ], [ 145.65568, 15.071911 ], [ 145.655642, 15.071705 ], [ 145.655544, 15.071619 ], [ 145.655402, 15.071589 ], [ 145.655358, 15.071532 ], [ 145.655417, 15.071455 ], [ 145.655506, 15.071408 ], [ 145.655419, 15.071274 ], [ 145.655336, 15.07113 ], [ 145.655322, 15.070943 ], [ 145.655198, 15.070713 ], [ 145.655179, 15.070617 ], [ 145.65515, 15.070535 ], [ 145.655111, 15.07044 ], [ 145.655142, 15.070296 ], [ 145.655202, 15.070134 ], [ 145.655158, 15.070062 ], [ 145.655149, 15.069995 ], [ 145.655169, 15.069895 ], [ 145.655153, 15.069206 ], [ 145.655119, 15.069134 ], [ 145.655086, 15.069047 ], [ 145.65516, 15.068957 ], [ 145.65512, 15.068718 ], [ 145.6551, 15.068684 ], [ 145.65514, 15.068641 ], [ 145.655125, 15.068579 ], [ 145.655165, 15.068484 ], [ 145.655244, 15.068431 ], [ 145.655245, 15.06835 ], [ 145.655157, 15.068283 ], [ 145.655133, 15.068201 ], [ 145.655202, 15.068111 ], [ 145.655223, 15.06801 ], [ 145.655149, 15.067962 ], [ 145.655125, 15.067895 ], [ 145.655165, 15.067747 ], [ 145.655101, 15.067694 ], [ 145.655067, 15.067612 ], [ 145.655167, 15.067508 ], [ 145.655197, 15.067451 ], [ 145.655138, 15.06735 ], [ 145.655185, 15.067269 ], [ 145.655156, 15.067226 ], [ 145.655127, 15.067115 ], [ 145.655207, 15.066996 ], [ 145.655134, 15.066852 ], [ 145.655218, 15.066781 ], [ 145.655263, 15.066729 ], [ 145.655249, 15.066552 ], [ 145.655264, 15.066456 ], [ 145.655275, 15.066308 ], [ 145.655261, 15.066174 ], [ 145.655257, 15.066045 ], [ 145.655317, 15.065954 ], [ 145.655406, 15.065912 ], [ 145.655369, 15.065792 ], [ 145.655321, 15.065725 ], [ 145.65543, 15.06561 ], [ 145.655469, 15.065549 ], [ 145.65547, 15.065434 ], [ 145.655456, 15.065348 ], [ 145.655466, 15.065281 ], [ 145.655437, 15.065175 ], [ 145.655541, 15.065118 ], [ 145.655615, 15.065057 ], [ 145.655665, 15.064947 ], [ 145.655711, 15.064756 ], [ 145.65575, 15.064708 ], [ 145.655967, 15.064628 ], [ 145.655978, 15.064523 ], [ 145.655811, 15.064446 ], [ 145.65589, 15.064355 ], [ 145.655903, 15.064217 ], [ 145.65583, 15.064192 ], [ 145.655791, 15.064077 ], [ 145.655843, 15.0637 ], [ 145.655927, 15.063643 ], [ 145.655889, 15.063365 ], [ 145.655944, 15.063275 ], [ 145.6559, 15.063207 ], [ 145.65593, 15.063126 ], [ 145.656023, 15.063151 ], [ 145.656015, 15.062998 ], [ 145.656094, 15.062921 ], [ 145.656163, 15.062845 ], [ 145.656174, 15.062702 ], [ 145.656224, 15.062635 ], [ 145.656297, 15.062645 ], [ 145.656276, 15.062573 ], [ 145.656291, 15.06253 ], [ 145.65637, 15.062445 ], [ 145.656326, 15.062363 ], [ 145.656332, 15.062268 ], [ 145.656456, 15.062125 ], [ 145.656427, 15.062015 ], [ 145.656492, 15.061742 ], [ 145.656738, 15.061447 ], [ 145.656822, 15.061443 ], [ 145.656871, 15.061391 ], [ 145.656916, 15.061372 ], [ 145.657053, 15.061406 ], [ 145.657159, 15.061349 ], [ 145.657287, 15.061388 ], [ 145.65746, 15.061361 ], [ 145.657587, 15.0614 ], [ 145.657657, 15.061333 ], [ 145.657829, 15.061334 ], [ 145.657903, 15.061244 ], [ 145.657973, 15.061105 ], [ 145.658033, 15.061048 ], [ 145.658073, 15.06091 ], [ 145.65824, 15.060887 ], [ 145.658324, 15.06083 ], [ 145.6583, 15.060725 ], [ 145.658405, 15.060529 ], [ 145.65844, 15.060439 ], [ 145.658509, 15.060372 ], [ 145.658515, 15.060281 ], [ 145.658599, 15.060219 ], [ 145.658684, 15.060038 ], [ 145.658679, 15.059943 ], [ 145.658793, 15.059852 ], [ 145.658822, 15.059556 ], [ 145.658872, 15.059465 ], [ 145.658848, 15.05937 ], [ 145.658809, 15.05924 ], [ 145.658791, 15.059106 ], [ 145.658806, 15.058967 ], [ 145.65889, 15.058896 ], [ 145.658969, 15.05882 ], [ 145.658921, 15.0587 ], [ 145.658848, 15.058638 ], [ 145.658892, 15.058566 ], [ 145.658898, 15.058428 ], [ 145.658889, 15.058356 ], [ 145.658899, 15.058217 ], [ 145.6589, 15.058121 ], [ 145.658812, 15.058006 ], [ 145.658793, 15.057915 ], [ 145.658811, 15.057753 ], [ 145.658723, 15.05768 ], [ 145.658684, 15.057565 ], [ 145.658671, 15.057403 ], [ 145.658602, 15.057326 ], [ 145.658593, 15.057225 ], [ 145.658515, 15.057143 ], [ 145.658453, 15.05687 ], [ 145.65836, 15.056717 ], [ 145.658218, 15.056611 ], [ 145.658228, 15.056506 ], [ 145.658116, 15.056366 ], [ 145.657994, 15.056275 ], [ 145.657906, 15.05615 ], [ 145.657769, 15.055981 ], [ 145.657563, 15.055803 ], [ 145.657268, 15.055424 ], [ 145.657249, 15.055309 ], [ 145.65723, 15.055223 ], [ 145.657255, 15.055213 ], [ 145.657112, 15.055179 ], [ 145.657038, 15.055126 ], [ 145.656985, 15.055078 ], [ 145.656941, 15.054986 ], [ 145.656853, 15.054919 ], [ 145.656819, 15.054847 ], [ 145.656691, 15.054779 ], [ 145.656622, 15.054841 ], [ 145.656553, 15.054778 ], [ 145.656544, 15.054711 ], [ 145.656584, 15.054669 ], [ 145.656599, 15.054611 ], [ 145.656496, 15.054496 ], [ 145.656398, 15.054366 ], [ 145.656266, 15.05437 ], [ 145.656177, 15.054308 ], [ 145.656148, 15.054193 ], [ 145.656113, 15.05402 ], [ 145.656083, 15.053967 ], [ 145.655985, 15.053943 ], [ 145.655873, 15.053851 ], [ 145.655829, 15.053751 ], [ 145.65583, 15.053645 ], [ 145.655776, 15.05353 ], [ 145.655791, 15.053439 ], [ 145.655728, 15.053343 ], [ 145.655729, 15.053272 ], [ 145.655655, 15.053147 ], [ 145.655562, 15.053094 ], [ 145.655503, 15.05305 ], [ 145.65542, 15.052949 ], [ 145.655381, 15.052877 ], [ 145.655264, 15.052733 ], [ 145.655, 15.052502 ], [ 145.654576, 15.052174 ], [ 145.654092, 15.051731 ], [ 145.654009, 15.051607 ], [ 145.653719, 15.051557 ], [ 145.653512, 15.051508 ], [ 145.653311, 15.051435 ], [ 145.653267, 15.051358 ], [ 145.653233, 15.051272 ], [ 145.653086, 15.051194 ], [ 145.652841, 15.051078 ], [ 145.652697, 15.050886 ], [ 145.652589, 15.050799 ], [ 145.652555, 15.050723 ], [ 145.652541, 15.050617 ], [ 145.65259, 15.050551 ], [ 145.652645, 15.05046 ], [ 145.652646, 15.050407 ], [ 145.652582, 15.05035 ], [ 145.652528, 15.050316 ], [ 145.6524, 15.050334 ], [ 145.652292, 15.050276 ], [ 145.652169, 15.05028 ], [ 145.652066, 15.050246 ], [ 145.652017, 15.050165 ], [ 145.651993, 15.050093 ], [ 145.651934, 15.050035 ], [ 145.651876, 15.049968 ], [ 145.651768, 15.049905 ], [ 145.651605, 15.049889 ], [ 145.651532, 15.049832 ], [ 145.651454, 15.049712 ], [ 145.65143, 15.049582 ], [ 145.651371, 15.049515 ], [ 145.651308, 15.049476 ], [ 145.651259, 15.049419 ], [ 145.651175, 15.04937 ], [ 145.651105, 15.049183 ], [ 145.650973, 15.049125 ], [ 145.650919, 15.049034 ], [ 145.650714, 15.048818 ], [ 145.65062, 15.048779 ], [ 145.650567, 15.048692 ], [ 145.650528, 15.048558 ], [ 145.65049, 15.04839 ], [ 145.650436, 15.048314 ], [ 145.650407, 15.048232 ], [ 145.650329, 15.048112 ], [ 145.650232, 15.048011 ], [ 145.649981, 15.047952 ], [ 145.649922, 15.047971 ], [ 145.649913, 15.047856 ], [ 145.64981, 15.047741 ], [ 145.649678, 15.047663 ], [ 145.649501, 15.047576 ], [ 145.649442, 15.047629 ], [ 145.649372, 15.047676 ], [ 145.649323, 15.047719 ], [ 145.649269, 15.047742 ], [ 145.649234, 15.047689 ], [ 145.649225, 15.047646 ], [ 145.649314, 15.047599 ], [ 145.649275, 15.047546 ], [ 145.649231, 15.047498 ], [ 145.649142, 15.047536 ], [ 145.649043, 15.04755 ], [ 145.649029, 15.047526 ], [ 145.649069, 15.047454 ], [ 145.649182, 15.047407 ], [ 145.649245, 15.047374 ], [ 145.649266, 15.047364 ], [ 145.649306, 15.047298 ], [ 145.649311, 15.047245 ], [ 145.649248, 15.047154 ], [ 145.649204, 15.047072 ], [ 145.649199, 15.047024 ], [ 145.649111, 15.04699 ], [ 145.649027, 15.047047 ], [ 145.648933, 15.047099 ], [ 145.648864, 15.047161 ], [ 145.648755, 15.047146 ], [ 145.648741, 15.047098 ], [ 145.648756, 15.047031 ], [ 145.648796, 15.046979 ], [ 145.648762, 15.046878 ], [ 145.648679, 15.04684 ], [ 145.648541, 15.0468 ], [ 145.648473, 15.046743 ], [ 145.648399, 15.046733 ], [ 145.648271, 15.046765 ], [ 145.648113, 15.046745 ], [ 145.648187, 15.046684 ], [ 145.648143, 15.046655 ], [ 145.648099, 15.046697 ], [ 145.648094, 15.046736 ], [ 145.648064, 15.046774 ], [ 145.647985, 15.046773 ], [ 145.647956, 15.046706 ], [ 145.648001, 15.046663 ], [ 145.647966, 15.046606 ], [ 145.647917, 15.046663 ], [ 145.647911, 15.046735 ], [ 145.647853, 15.046634 ], [ 145.64778, 15.046566 ], [ 145.647731, 15.046552 ], [ 145.647706, 15.046456 ], [ 145.647751, 15.04638 ], [ 145.647904, 15.046304 ], [ 145.647969, 15.046252 ], [ 145.64795, 15.046146 ], [ 145.64792, 15.046084 ], [ 145.647837, 15.046064 ], [ 145.647768, 15.046011 ], [ 145.647764, 15.045944 ], [ 145.647887, 15.045869 ], [ 145.647962, 15.045802 ], [ 145.648031, 15.045702 ], [ 145.647997, 15.045625 ], [ 145.647946, 15.045587 ], [ 145.647912, 15.045539 ], [ 145.647917, 15.045477 ], [ 145.647903, 15.045386 ], [ 145.647804, 15.045356 ], [ 145.647721, 15.045308 ], [ 145.647697, 15.045227 ], [ 145.647579, 15.045135 ], [ 145.647486, 15.045106 ], [ 145.647368, 15.045105 ], [ 145.647349, 15.045028 ], [ 145.647448, 15.044933 ], [ 145.647473, 15.044809 ], [ 145.647557, 15.044767 ], [ 145.647558, 15.04468 ], [ 145.647436, 15.044527 ], [ 145.647343, 15.044421 ], [ 145.647259, 15.044368 ], [ 145.647181, 15.044329 ], [ 145.647112, 15.044357 ], [ 145.647077, 15.04441 ], [ 145.646993, 15.044419 ], [ 145.646939, 15.04438 ], [ 145.646994, 15.044304 ], [ 145.647061, 15.044175 ], [ 145.647111, 15.044123 ], [ 145.647082, 15.044037 ], [ 145.647088, 15.043912 ], [ 145.647068, 15.043855 ], [ 145.646989, 15.043878 ], [ 145.64701, 15.043797 ], [ 145.647133, 15.043731 ], [ 145.647178, 15.043655 ], [ 145.647174, 15.04354 ], [ 145.647204, 15.043416 ], [ 145.64713, 15.043358 ], [ 145.647136, 15.043267 ], [ 145.647279, 15.043196 ], [ 145.647386, 15.043015 ], [ 145.647357, 15.042948 ], [ 145.647278, 15.042914 ], [ 145.647244, 15.04289 ], [ 145.647141, 15.04286 ], [ 145.647127, 15.04275 ], [ 145.647142, 15.042688 ], [ 145.647359, 15.042584 ], [ 145.647355, 15.042489 ], [ 145.647356, 15.042369 ], [ 145.647268, 15.042206 ], [ 145.64716, 15.042148 ], [ 145.647106, 15.0421 ], [ 145.647122, 15.04199 ], [ 145.647113, 15.041894 ], [ 145.647079, 15.041741 ], [ 145.64707, 15.041659 ], [ 145.647208, 15.04166 ], [ 145.647282, 15.041622 ], [ 145.647381, 15.041532 ], [ 145.647467, 15.041442 ], [ 145.647601, 15.041356 ], [ 145.64766, 15.04128 ], [ 145.647725, 15.041209 ], [ 145.64777, 15.041061 ], [ 145.647777, 15.040807 ], [ 145.647708, 15.040735 ], [ 145.647654, 15.040687 ], [ 145.64767, 15.040587 ], [ 145.647749, 15.040535 ], [ 145.647783, 15.040506 ], [ 145.647789, 15.040463 ], [ 145.647691, 15.040405 ], [ 145.647646, 15.040405 ], [ 145.647676, 15.040362 ], [ 145.64775, 15.0403 ], [ 145.64777, 15.040257 ], [ 145.647756, 15.0402 ], [ 145.647831, 15.040052 ], [ 145.647816, 15.039966 ], [ 145.647694, 15.039922 ], [ 145.64756, 15.039959 ], [ 145.647572, 15.03982 ], [ 145.647569, 15.03974 ], [ 145.647626, 15.039679 ], [ 145.647675, 15.039591 ], [ 145.647707, 15.039555 ], [ 145.647793, 15.039498 ], [ 145.64783, 15.039467 ], [ 145.647873, 15.039447 ], [ 145.647884, 15.0394 ], [ 145.647868, 15.039354 ], [ 145.647847, 15.039312 ], [ 145.647837, 15.039265 ], [ 145.647805, 15.039213 ], [ 145.647768, 15.039177 ], [ 145.647725, 15.039156 ], [ 145.64763, 15.039134 ], [ 145.647598, 15.039093 ], [ 145.647577, 15.039072 ], [ 145.647539, 15.039103 ], [ 145.647491, 15.039102 ], [ 145.647449, 15.039019 ], [ 145.647439, 15.038972 ], [ 145.647455, 15.038926 ], [ 145.647503, 15.038905 ], [ 145.647583, 15.038844 ], [ 145.647631, 15.038828 ], [ 145.647707, 15.038767 ], [ 145.647728, 15.038725 ], [ 145.647734, 15.038679 ], [ 145.647729, 15.038632 ], [ 145.647697, 15.038596 ], [ 145.647676, 15.038554 ], [ 145.647676, 15.038507 ], [ 145.647693, 15.038456 ], [ 145.647703, 15.038409 ], [ 145.64772, 15.038362 ], [ 145.647747, 15.038321 ], [ 145.647795, 15.038311 ], [ 145.64788, 15.038369 ], [ 145.647917, 15.038312 ], [ 145.647923, 15.038265 ], [ 145.647924, 15.038172 ], [ 145.647898, 15.038078 ], [ 145.647866, 15.038037 ], [ 145.647829, 15.038005 ], [ 145.647786, 15.037984 ], [ 145.64776, 15.037943 ], [ 145.647781, 15.037901 ], [ 145.647819, 15.037855 ], [ 145.647825, 15.037808 ], [ 145.64782, 15.037762 ], [ 145.647868, 15.037746 ], [ 145.647937, 15.037674 ], [ 145.647959, 15.037628 ], [ 145.647975, 15.037581 ], [ 145.647997, 15.03754 ], [ 145.648024, 15.037447 ], [ 145.648025, 15.03739 ], [ 145.64802, 15.037343 ], [ 145.647977, 15.03726 ], [ 145.647978, 15.037213 ], [ 145.647989, 15.037166 ], [ 145.647989, 15.03712 ], [ 145.648016, 15.037027 ], [ 145.648022, 15.03698 ], [ 145.648055, 15.036861 ], [ 145.648034, 15.036819 ], [ 145.648034, 15.036695 ], [ 145.648062, 15.036597 ], [ 145.648067, 15.03655 ], [ 145.648089, 15.036509 ], [ 145.648105, 15.036415 ], [ 145.648138, 15.036322 ], [ 145.648144, 15.036276 ], [ 145.648155, 15.036229 ], [ 145.648155, 15.036136 ], [ 145.648161, 15.036089 ], [ 145.648177, 15.036043 ], [ 145.648188, 15.035996 ], [ 145.648188, 15.035949 ], [ 145.648199, 15.035903 ], [ 145.648205, 15.035856 ], [ 145.64827, 15.035659 ], [ 145.648281, 15.035613 ], [ 145.648325, 15.035489 ], [ 145.648352, 15.03539 ], [ 145.648379, 15.035313 ], [ 145.648385, 15.035266 ], [ 145.648401, 15.03522 ], [ 145.648412, 15.035126 ], [ 145.648413, 15.03508 ], [ 145.648429, 15.035033 ], [ 145.64844, 15.034981 ], [ 145.648516, 15.034769 ], [ 145.648538, 15.034676 ], [ 145.648538, 15.034624 ], [ 145.648549, 15.034578 ], [ 145.648551, 15.034562 ], [ 145.648555, 15.034531 ], [ 145.648576, 15.03449 ], [ 145.648582, 15.034443 ], [ 145.648593, 15.034396 ], [ 145.648599, 15.03435 ], [ 145.648599, 15.034303 ], [ 145.648616, 15.0342 ], [ 145.648616, 15.03406 ], [ 145.648628, 15.033961 ], [ 145.648617, 15.033914 ], [ 145.648639, 15.033873 ], [ 145.648682, 15.033853 ], [ 145.648703, 15.033811 ], [ 145.648751, 15.033801 ], [ 145.648799, 15.033817 ], [ 145.648847, 15.033802 ], [ 145.648896, 15.033781 ], [ 145.648917, 15.03374 ], [ 145.648885, 15.033698 ], [ 145.648886, 15.033652 ], [ 145.648897, 15.033605 ], [ 145.648881, 15.033548 ], [ 145.648967, 15.033497 ], [ 145.648983, 15.03345 ], [ 145.648994, 15.033403 ], [ 145.649026, 15.033367 ], [ 145.649069, 15.033347 ], [ 145.649144, 15.033285 ], [ 145.649187, 15.033259 ], [ 145.64924, 15.033239 ], [ 145.649294, 15.033224 ], [ 145.649385, 15.033188 ], [ 145.649396, 15.033136 ], [ 145.649412, 15.033121 ], [ 145.64946, 15.03309 ], [ 145.649508, 15.03308 ], [ 145.649551, 15.033054 ], [ 145.649583, 15.033013 ], [ 145.649626, 15.032987 ], [ 145.649691, 15.032915 ], [ 145.649733, 15.032895 ], [ 145.649819, 15.032848 ], [ 145.649867, 15.032838 ], [ 145.649915, 15.032823 ], [ 145.649963, 15.032818 ], [ 145.650011, 15.032824 ], [ 145.650034, 15.032805 ], [ 145.650049, 15.032757 ], [ 145.650079, 15.032714 ], [ 145.650143, 15.032681 ], [ 145.650119, 15.032604 ], [ 145.650159, 15.032508 ], [ 145.650209, 15.032466 ], [ 145.650258, 15.032399 ], [ 145.650254, 15.032294 ], [ 145.650235, 15.032227 ], [ 145.650305, 15.032093 ], [ 145.650266, 15.031945 ], [ 145.650286, 15.031892 ], [ 145.650331, 15.03184 ], [ 145.650331, 15.031759 ], [ 145.650371, 15.031706 ], [ 145.650382, 15.031582 ], [ 145.650397, 15.031477 ], [ 145.650442, 15.031319 ], [ 145.650554, 15.031176 ], [ 145.65053, 15.031133 ], [ 145.650535, 15.031081 ], [ 145.650526, 15.030966 ], [ 145.650506, 15.030937 ], [ 145.650532, 15.030837 ], [ 145.650562, 15.030741 ], [ 145.650602, 15.03066 ], [ 145.650612, 15.03056 ], [ 145.650618, 15.030392 ], [ 145.650678, 15.030321 ], [ 145.650703, 15.03024 ], [ 145.650718, 15.030125 ], [ 145.650812, 15.029992 ], [ 145.650848, 15.029815 ], [ 145.650972, 15.029682 ], [ 145.651046, 15.029625 ], [ 145.651038, 15.029395 ], [ 145.651137, 15.029266 ], [ 145.651349, 15.029134 ], [ 145.651352, 15.029081 ], [ 145.651392, 15.029005 ], [ 145.651457, 15.028809 ], [ 145.651547, 15.028676 ], [ 145.651636, 15.028562 ], [ 145.651661, 15.028437 ], [ 145.651687, 15.028332 ], [ 145.651761, 15.028242 ], [ 145.651801, 15.02818 ], [ 145.651811, 15.028132 ], [ 145.651855, 15.028089 ], [ 145.651999, 15.028038 ], [ 145.652033, 15.028019 ], [ 145.652133, 15.027989 ], [ 145.652144, 15.027942 ], [ 145.652144, 15.027896 ], [ 145.652139, 15.027849 ], [ 145.652129, 15.027802 ], [ 145.652134, 15.027756 ], [ 145.652156, 15.027709 ], [ 145.652156, 15.027662 ], [ 145.652114, 15.027574 ], [ 145.65204, 15.027506 ], [ 145.652008, 15.02747 ], [ 145.652003, 15.027423 ], [ 145.65204, 15.027392 ], [ 145.652136, 15.027403 ], [ 145.652184, 15.027398 ], [ 145.652238, 15.027378 ], [ 145.652281, 15.027352 ], [ 145.652329, 15.027342 ], [ 145.652425, 15.027342 ], [ 145.652468, 15.027322 ], [ 145.652564, 15.027291 ], [ 145.652586, 15.027198 ], [ 145.652581, 15.027152 ], [ 145.65256, 15.02711 ], [ 145.652522, 15.027073 ], [ 145.652512, 15.027027 ], [ 145.652528, 15.02698 ], [ 145.65255, 15.026939 ], [ 145.652582, 15.026903 ], [ 145.652609, 15.026861 ], [ 145.652684, 15.0268 ], [ 145.652732, 15.0268 ], [ 145.652775, 15.026821 ], [ 145.652876, 15.02677 ], [ 145.652973, 15.026739 ], [ 145.653069, 15.026719 ], [ 145.653154, 15.026761 ], [ 145.653202, 15.026766 ], [ 145.653245, 15.026746 ], [ 145.653266, 15.026705 ], [ 145.65324, 15.026611 ], [ 145.653203, 15.02658 ], [ 145.653185, 15.026545 ], [ 145.653182, 15.026538 ], [ 145.653167, 15.02644 ], [ 145.653135, 15.026403 ], [ 145.653124, 15.026356 ], [ 145.653125, 15.026263 ], [ 145.653147, 15.026222 ], [ 145.653131, 15.026175 ], [ 145.653094, 15.026144 ], [ 145.653051, 15.026123 ], [ 145.653019, 15.026086 ], [ 145.652998, 15.026045 ], [ 145.652993, 15.025998 ], [ 145.653036, 15.025977 ], [ 145.653074, 15.025947 ], [ 145.653138, 15.025874 ], [ 145.653186, 15.025859 ], [ 145.653229, 15.025833 ], [ 145.653294, 15.025761 ], [ 145.653299, 15.025704 ], [ 145.653331, 15.025668 ], [ 145.653364, 15.025622 ], [ 145.653428, 15.025549 ], [ 145.653471, 15.025524 ], [ 145.653509, 15.025493 ], [ 145.653541, 15.025452 ], [ 145.653578, 15.025421 ], [ 145.653577, 15.025403 ], [ 145.653566, 15.025363 ], [ 145.653551, 15.025325 ], [ 145.653537, 15.025249 ], [ 145.653591, 15.025163 ], [ 145.653631, 15.025091 ], [ 145.653666, 15.025044 ], [ 145.653686, 15.024996 ], [ 145.653613, 15.024943 ], [ 145.653564, 15.02489 ], [ 145.653618, 15.024795 ], [ 145.653614, 15.024737 ], [ 145.653565, 15.024694 ], [ 145.653526, 15.024651 ], [ 145.653546, 15.02456 ], [ 145.653576, 15.024522 ], [ 145.653571, 15.024455 ], [ 145.653582, 15.024373 ], [ 145.653606, 15.024354 ], [ 145.653666, 15.024269 ], [ 145.653686, 15.024235 ], [ 145.653706, 15.024159 ], [ 145.653702, 15.024082 ], [ 145.653717, 15.023987 ], [ 145.653762, 15.023901 ], [ 145.653734, 15.023614 ], [ 145.653749, 15.023509 ], [ 145.653819, 15.023456 ], [ 145.653897, 15.023452 ], [ 145.654007, 15.023257 ], [ 145.654101, 15.023166 ], [ 145.654199, 15.023191 ], [ 145.654195, 15.023148 ], [ 145.654171, 15.023047 ], [ 145.65424, 15.022981 ], [ 145.654403, 15.022948 ], [ 145.654381, 15.022915 ], [ 145.65443, 15.022824 ], [ 145.65451, 15.022762 ], [ 145.654589, 15.022667 ], [ 145.654639, 15.022553 ], [ 145.654724, 15.022395 ], [ 145.654897, 15.022143 ], [ 145.654986, 15.022124 ], [ 145.65507, 15.022019 ], [ 145.655052, 15.02189 ], [ 145.655116, 15.02178 ], [ 145.655186, 15.021685 ], [ 145.655309, 15.021662 ], [ 145.655309, 15.021571 ], [ 145.655448, 15.021462 ], [ 145.655498, 15.02129 ], [ 145.655563, 15.021094 ], [ 145.655599, 15.020908 ], [ 145.655677, 15.020708 ], [ 145.655737, 15.020541 ], [ 145.655787, 15.020388 ], [ 145.655777, 15.020364 ], [ 145.655946, 15.020183 ], [ 145.656055, 15.020011 ], [ 145.656243, 15.019874 ], [ 145.656545, 15.019565 ], [ 145.656673, 15.019494 ], [ 145.656782, 15.019423 ], [ 145.65688, 15.019481 ], [ 145.656954, 15.019424 ], [ 145.656994, 15.019309 ], [ 145.65726, 15.018909 ], [ 145.657364, 15.01889 ], [ 145.657447, 15.018867 ], [ 145.657551, 15.018815 ], [ 145.657817, 15.018812 ], [ 145.657935, 15.018822 ], [ 145.658196, 15.018752 ], [ 145.658192, 15.018699 ], [ 145.658158, 15.018646 ], [ 145.658192, 15.018584 ], [ 145.658286, 15.018609 ], [ 145.658458, 15.018615 ], [ 145.658493, 15.018586 ], [ 145.658606, 15.018568 ], [ 145.658684, 15.018606 ], [ 145.658739, 15.018597 ], [ 145.658808, 15.018545 ], [ 145.658916, 15.018483 ], [ 145.658961, 15.018441 ], [ 145.658934, 15.018383 ], [ 145.658939, 15.018354 ], [ 145.658964, 15.018292 ], [ 145.659103, 15.018221 ], [ 145.65924, 15.018217 ], [ 145.65928, 15.018227 ], [ 145.659328, 15.018309 ], [ 145.659367, 15.01839 ], [ 145.659481, 15.018391 ], [ 145.659525, 15.018358 ], [ 145.659501, 15.018296 ], [ 145.659413, 15.018242 ], [ 145.659452, 15.018209 ], [ 145.659472, 15.018166 ], [ 145.659364, 15.018118 ], [ 145.659261, 15.018079 ], [ 145.659271, 15.018031 ], [ 145.65936, 15.018008 ], [ 145.659492, 15.018075 ], [ 145.659615, 15.0181 ], [ 145.659753, 15.018072 ], [ 145.659783, 15.018082 ], [ 145.660023, 15.018236 ], [ 145.660215, 15.018261 ], [ 145.66023, 15.018223 ], [ 145.660195, 15.018175 ], [ 145.660191, 15.018137 ], [ 145.660319, 15.018104 ], [ 145.660412, 15.018205 ], [ 145.660515, 15.018215 ], [ 145.660633, 15.018245 ], [ 145.660845, 15.018241 ], [ 145.660977, 15.018285 ], [ 145.661139, 15.018353 ], [ 145.661272, 15.018378 ], [ 145.661508, 15.018365 ], [ 145.661592, 15.018437 ], [ 145.661668, 15.018461 ], [ 145.661825, 15.018481 ], [ 145.662105, 15.018502 ], [ 145.662213, 15.018541 ], [ 145.66243, 15.018533 ], [ 145.662475, 15.01849 ], [ 145.662622, 15.018524 ], [ 145.662735, 15.018496 ], [ 145.662981, 15.018541 ], [ 145.663128, 15.018594 ], [ 145.663237, 15.018571 ], [ 145.663448, 15.018615 ], [ 145.663709, 15.018636 ], [ 145.664063, 15.018614 ], [ 145.664368, 15.018626 ], [ 145.664457, 15.018669 ], [ 145.664467, 15.018593 ], [ 145.664531, 15.018545 ], [ 145.664832, 15.018518 ], [ 145.664995, 15.018462 ], [ 145.665069, 15.018405 ], [ 145.665214, 15.018444 ], [ 145.665297, 15.018435 ], [ 145.66543, 15.018402 ], [ 145.665495, 15.018336 ], [ 145.665618, 15.018245 ], [ 145.665757, 15.018198 ], [ 145.66588, 15.018142 ], [ 145.665979, 15.018027 ], [ 145.666048, 15.017971 ], [ 145.666118, 15.017885 ], [ 145.666187, 15.017766 ], [ 145.666257, 15.017699 ], [ 145.666351, 15.017623 ], [ 145.666573, 15.017495 ], [ 145.666652, 15.017424 ], [ 145.666899, 15.017239 ], [ 145.666895, 15.017186 ], [ 145.666979, 15.017101 ], [ 145.667123, 15.016939 ], [ 145.667145, 15.01691 ], [ 145.667608, 15.016765 ], [ 145.667688, 15.016713 ], [ 145.667782, 15.016627 ], [ 145.667974, 15.016513 ], [ 145.668123, 15.016371 ], [ 145.668227, 15.01628 ], [ 145.668316, 15.016224 ], [ 145.668395, 15.016133 ], [ 145.6684, 15.0161 ], [ 145.668332, 15.016028 ], [ 145.668391, 15.015908 ], [ 145.66853, 15.015737 ], [ 145.668615, 15.015604 ], [ 145.66862, 15.01556 ], [ 145.668586, 15.01545 ], [ 145.668626, 15.015355 ], [ 145.668636, 15.015288 ], [ 145.66875, 15.015212 ], [ 145.668883, 15.015261 ], [ 145.669016, 15.015195 ], [ 145.669063, 15.015133 ], [ 145.669142, 15.015109 ], [ 145.669197, 15.015019 ], [ 145.669153, 15.014923 ], [ 145.669183, 15.014822 ], [ 145.669277, 15.014746 ], [ 145.669322, 15.014704 ], [ 145.669366, 15.014627 ], [ 145.669337, 15.014551 ], [ 145.669363, 15.01445 ], [ 145.669407, 15.01436 ], [ 145.669512, 15.014231 ], [ 145.66967, 15.014046 ], [ 145.669824, 15.013879 ], [ 145.669893, 15.013765 ], [ 145.669916, 15.013707 ], [ 145.669921, 15.013602 ], [ 145.669952, 15.013373 ], [ 145.670012, 15.013206 ], [ 145.670102, 15.013029 ], [ 145.670192, 15.012891 ], [ 145.670544, 15.012405 ], [ 145.67054, 15.01229 ], [ 145.670867, 15.011886 ], [ 145.670957, 15.011695 ], [ 145.671093, 15.011543 ], [ 145.671069, 15.011471 ], [ 145.67106, 15.011351 ], [ 145.67112, 15.011203 ], [ 145.67114, 15.011089 ], [ 145.671118, 15.010749 ], [ 145.670882, 15.010743 ], [ 145.67086, 15.010303 ], [ 145.670977, 15.009586 ], [ 145.671085, 15.009261 ], [ 145.671319, 15.008899 ], [ 145.671402, 15.008885 ], [ 145.671477, 15.008799 ], [ 145.67163, 15.008724 ], [ 145.671664, 15.008683 ], [ 145.671724, 15.008614 ], [ 145.671852, 15.008649 ], [ 145.67193, 15.00873 ], [ 145.671984, 15.008812 ], [ 145.672058, 15.008698 ], [ 145.672053, 15.008659 ], [ 145.672113, 15.008569 ], [ 145.672172, 15.008512 ], [ 145.672359, 15.008508 ], [ 145.672488, 15.008451 ], [ 145.672567, 15.00828 ], [ 145.672676, 15.008194 ], [ 145.672726, 15.008084 ], [ 145.672702, 15.007974 ], [ 145.672742, 15.007874 ], [ 145.672876, 15.007727 ], [ 145.673125, 15.00768 ], [ 145.673248, 15.0076 ], [ 145.673372, 15.007509 ], [ 145.673461, 15.007414 ], [ 145.673501, 15.007319 ], [ 145.673581, 15.007181 ], [ 145.673576, 15.007085 ], [ 145.673651, 15.006918 ], [ 145.673647, 15.00676 ], [ 145.673722, 15.006627 ], [ 145.673796, 15.006517 ], [ 145.673797, 15.005943 ], [ 145.673719, 15.005856 ], [ 145.673621, 15.005779 ], [ 145.673558, 15.005707 ], [ 145.673514, 15.005611 ], [ 145.673485, 15.005468 ], [ 145.673496, 15.005372 ], [ 145.673536, 15.005272 ], [ 145.67358, 15.005234 ], [ 145.673541, 15.005162 ], [ 145.673562, 15.005062 ], [ 145.673625, 15.004823 ], [ 145.67367, 15.004727 ], [ 145.673734, 15.004651 ], [ 145.673661, 15.004598 ], [ 145.673636, 15.004531 ], [ 145.673642, 15.004469 ], [ 145.673554, 15.004392 ], [ 145.6735, 15.004301 ], [ 145.673456, 15.004205 ], [ 145.673358, 15.004142 ], [ 145.673275, 15.004055 ], [ 145.673247, 15.003873 ], [ 145.673208, 15.00373 ], [ 145.673058, 15.003399 ], [ 145.672981, 15.003121 ], [ 145.672931, 15.002872 ], [ 145.672922, 15.002733 ], [ 145.672942, 15.002623 ], [ 145.672904, 15.00247 ], [ 145.672899, 15.002355 ], [ 145.672811, 15.002316 ], [ 145.672841, 15.00224 ], [ 145.672709, 15.002034 ], [ 145.672656, 15.001904 ], [ 145.672642, 15.001746 ], [ 145.672545, 15.001612 ], [ 145.672511, 15.001487 ], [ 145.672448, 15.001401 ], [ 145.672419, 15.001204 ], [ 145.672386, 15.001056 ], [ 145.672307, 15.000993 ], [ 145.672276, 15.000955 ], [ 145.672276, 15.000893 ], [ 145.672281, 15.00084 ], [ 145.672179, 15.00072 ], [ 145.672179, 15.000596 ], [ 145.672239, 15.000505 ], [ 145.67224, 15.000419 ], [ 145.672269, 15.000357 ], [ 145.672181, 15.00027 ], [ 145.672098, 15.000165 ], [ 145.672099, 15.000078 ], [ 145.672016, 15.000021 ], [ 145.672003, 15.000003 ], [ 145.671928, 14.9999 ], [ 145.671816, 14.999694 ], [ 145.671753, 14.999565 ], [ 145.671724, 14.999464 ], [ 145.67174, 14.999215 ], [ 145.671741, 14.999072 ], [ 145.671702, 14.998962 ], [ 145.671704, 14.998756 ], [ 145.671674, 14.998689 ], [ 145.671744, 14.998579 ], [ 145.6717, 14.998459 ], [ 145.671716, 14.998373 ], [ 145.671642, 14.998316 ], [ 145.671584, 14.998234 ], [ 145.671624, 14.9981 ], [ 145.671605, 14.997961 ], [ 145.671616, 14.997799 ], [ 145.671541, 14.997713 ], [ 145.671528, 14.997698 ], [ 145.67142, 14.99764 ], [ 145.671337, 14.997582 ], [ 145.671313, 14.997429 ], [ 145.671171, 14.997308 ], [ 145.671049, 14.997217 ], [ 145.670939, 14.997125 ], [ 145.670944, 14.997063 ], [ 145.670964, 14.996972 ], [ 145.67092, 14.996905 ], [ 145.670877, 14.996819 ], [ 145.670877, 14.996709 ], [ 145.67102, 14.996647 ], [ 145.671149, 14.996543 ], [ 145.671224, 14.996381 ], [ 145.671195, 14.996266 ], [ 145.671127, 14.996155 ], [ 145.671098, 14.99605 ], [ 145.671143, 14.995897 ], [ 145.671154, 14.995768 ], [ 145.671022, 14.995633 ], [ 145.670806, 14.995503 ], [ 145.670674, 14.995383 ], [ 145.670642, 14.995363 ], [ 145.670657, 14.995272 ], [ 145.670545, 14.995124 ], [ 145.670452, 14.994989 ], [ 145.670438, 14.994865 ], [ 145.670495, 14.994468 ], [ 145.670461, 14.994377 ], [ 145.670428, 14.994219 ], [ 145.670429, 14.994028 ], [ 145.670405, 14.993898 ], [ 145.670451, 14.99365 ], [ 145.670407, 14.993506 ], [ 145.67028, 14.993362 ], [ 145.670205, 14.993266 ], [ 145.670151, 14.993189 ], [ 145.670147, 14.993103 ], [ 145.670123, 14.992997 ], [ 145.670094, 14.992916 ], [ 145.669991, 14.992834 ], [ 145.669923, 14.992709 ], [ 145.669938, 14.992594 ], [ 145.670037, 14.992452 ], [ 145.670023, 14.992332 ], [ 145.669935, 14.992231 ], [ 145.669897, 14.992059 ], [ 145.670016, 14.991944 ], [ 145.670075, 14.991873 ], [ 145.670012, 14.991739 ], [ 145.669993, 14.991609 ], [ 145.670009, 14.991456 ], [ 145.670024, 14.991427 ], [ 145.670054, 14.991371 ], [ 145.67003, 14.991284 ], [ 145.669989, 14.991184 ], [ 145.669999, 14.991122 ], [ 145.669925, 14.991064 ], [ 145.669975, 14.990964 ], [ 145.669912, 14.990896 ], [ 145.669903, 14.990758 ], [ 145.669844, 14.990671 ], [ 145.66983, 14.990566 ], [ 145.669771, 14.990513 ], [ 145.669669, 14.990359 ], [ 145.669719, 14.990249 ], [ 145.669862, 14.990164 ], [ 145.669828, 14.990097 ], [ 145.669676, 14.990077 ], [ 145.669637, 14.990034 ], [ 145.669579, 14.989818 ], [ 145.6696, 14.989627 ], [ 145.669732, 14.989671 ], [ 145.669772, 14.989657 ], [ 145.669762, 14.98957 ], [ 145.669751, 14.98947 ], [ 145.669747, 14.989326 ], [ 145.669806, 14.989226 ], [ 145.669788, 14.989092 ], [ 145.6697, 14.988967 ], [ 145.669632, 14.988862 ], [ 145.669563, 14.98878 ], [ 145.669535, 14.988603 ], [ 145.66958, 14.988493 ], [ 145.669546, 14.988407 ], [ 145.669527, 14.988259 ], [ 145.669455, 14.987942 ], [ 145.669396, 14.987913 ], [ 145.669258, 14.98798 ], [ 145.669202, 14.987903 ], [ 145.669153, 14.987807 ], [ 145.669154, 14.987725 ], [ 145.669095, 14.987672 ], [ 145.669081, 14.987596 ], [ 145.669165, 14.987505 ], [ 145.669111, 14.987424 ], [ 145.669063, 14.987299 ], [ 145.668999, 14.987227 ], [ 145.668991, 14.986959 ], [ 145.669125, 14.986769 ], [ 145.669131, 14.986683 ], [ 145.669097, 14.986591 ], [ 145.66909, 14.986505 ], [ 145.669056, 14.986491 ], [ 145.669076, 14.98641 ], [ 145.669135, 14.986372 ], [ 145.669111, 14.986309 ], [ 145.669082, 14.986247 ], [ 145.669068, 14.986146 ], [ 145.669113, 14.986013 ], [ 145.66904, 14.98584 ], [ 145.668928, 14.985725 ], [ 145.668796, 14.985547 ], [ 145.668777, 14.985413 ], [ 145.668699, 14.985279 ], [ 145.668626, 14.985173 ], [ 145.668527, 14.985225 ], [ 145.668464, 14.985086 ], [ 145.668494, 14.984966 ], [ 145.668433, 14.98488 ], [ 145.668375, 14.984813 ], [ 145.668335, 14.984798 ], [ 145.668321, 14.984688 ], [ 145.668346, 14.984645 ], [ 145.668263, 14.984563 ], [ 145.668279, 14.984439 ], [ 145.668338, 14.984368 ], [ 145.66829, 14.984243 ], [ 145.668276, 14.984123 ], [ 145.668212, 14.983999 ], [ 145.668208, 14.983917 ], [ 145.668154, 14.98385 ], [ 145.668095, 14.983811 ], [ 145.668081, 14.983696 ], [ 145.668141, 14.98362 ], [ 145.66816, 14.983247 ], [ 145.668116, 14.983223 ], [ 145.668063, 14.983146 ], [ 145.668098, 14.983065 ], [ 145.668, 14.982935 ], [ 145.66807, 14.982835 ], [ 145.668075, 14.982687 ], [ 145.667997, 14.982596 ], [ 145.667909, 14.982543 ], [ 145.66788, 14.982447 ], [ 145.667896, 14.982327 ], [ 145.667842, 14.982227 ], [ 145.667769, 14.982111 ], [ 145.667661, 14.982058 ], [ 145.667612, 14.981967 ], [ 145.667603, 14.981833 ], [ 145.667606, 14.981747 ], [ 145.667508, 14.981675 ], [ 145.66743, 14.981631 ], [ 145.667361, 14.98164 ], [ 145.667263, 14.981577 ], [ 145.66722, 14.981439 ], [ 145.667136, 14.981371 ], [ 145.667107, 14.981285 ], [ 145.667064, 14.981117 ], [ 145.666957, 14.980992 ], [ 145.666868, 14.980949 ], [ 145.66674, 14.980938 ], [ 145.666657, 14.980833 ], [ 145.666639, 14.980684 ], [ 145.666595, 14.98055 ], [ 145.666576, 14.980449 ], [ 145.666493, 14.980368 ], [ 145.666419, 14.980343 ], [ 145.666347, 14.980094 ], [ 145.666401, 14.979755 ], [ 145.666337, 14.979683 ], [ 145.666298, 14.979678 ], [ 145.666269, 14.979596 ], [ 145.666304, 14.979501 ], [ 145.6663, 14.979405 ], [ 145.666315, 14.979329 ], [ 145.66611, 14.979112 ], [ 145.665997, 14.979054 ], [ 145.665786, 14.978866 ], [ 145.66556, 14.978798 ], [ 145.665482, 14.97875 ], [ 145.665424, 14.97862 ], [ 145.665316, 14.978581 ], [ 145.665223, 14.978523 ], [ 145.665218, 14.978461 ], [ 145.664916, 14.978311 ], [ 145.664858, 14.978263 ], [ 145.664838, 14.978186 ], [ 145.664814, 14.978129 ], [ 145.664751, 14.978076 ], [ 145.664717, 14.977966 ], [ 145.664613, 14.978027 ], [ 145.664559, 14.977984 ], [ 145.66454, 14.977898 ], [ 145.664506, 14.977773 ], [ 145.664443, 14.97772 ], [ 145.66432, 14.977657 ], [ 145.664247, 14.97758 ], [ 145.664247, 14.977489 ], [ 145.664307, 14.977423 ], [ 145.664273, 14.977289 ], [ 145.664185, 14.977207 ], [ 145.664038, 14.977153 ], [ 145.66389, 14.977219 ], [ 145.663816, 14.977224 ], [ 145.663733, 14.977161 ], [ 145.663725, 14.977149 ], [ 145.663684, 14.977089 ], [ 145.663507, 14.977055 ], [ 145.663503, 14.976973 ], [ 145.663538, 14.976902 ], [ 145.663627, 14.976811 ], [ 145.663711, 14.976769 ], [ 145.663858, 14.976746 ], [ 145.664036, 14.976732 ], [ 145.664073, 14.976666 ], [ 145.664177, 14.97659 ], [ 145.664246, 14.976494 ], [ 145.664296, 14.976437 ], [ 145.664222, 14.97636 ], [ 145.664164, 14.976307 ], [ 145.664169, 14.976183 ], [ 145.664136, 14.976015 ], [ 145.664008, 14.975967 ], [ 145.663925, 14.975914 ], [ 145.663872, 14.97576 ], [ 145.66408, 14.975446 ], [ 145.66417, 14.975322 ], [ 145.6642, 14.975251 ], [ 145.664141, 14.97515 ], [ 145.664196, 14.975045 ], [ 145.664295, 14.974955 ], [ 145.664532, 14.974774 ], [ 145.664768, 14.974498 ], [ 145.664832, 14.974408 ], [ 145.664995, 14.974299 ], [ 145.665025, 14.974265 ], [ 145.664942, 14.974203 ], [ 145.664913, 14.974116 ], [ 145.664879, 14.974044 ], [ 145.664953, 14.973983 ], [ 145.665121, 14.973859 ], [ 145.665225, 14.973745 ], [ 145.66528, 14.973664 ], [ 145.665341, 14.973373 ], [ 145.665316, 14.973329 ], [ 145.665401, 14.973229 ], [ 145.665421, 14.973081 ], [ 145.665506, 14.972967 ], [ 145.665639, 14.972824 ], [ 145.665517, 14.972723 ], [ 145.665458, 14.972694 ], [ 145.665559, 14.972599 ], [ 145.665555, 14.972518 ], [ 145.665595, 14.972413 ], [ 145.665507, 14.97234 ], [ 145.665493, 14.972288 ], [ 145.665582, 14.97215 ], [ 145.665681, 14.972059 ], [ 145.665735, 14.971997 ], [ 145.665795, 14.971873 ], [ 145.665776, 14.971749 ], [ 145.665777, 14.971682 ], [ 145.665758, 14.971581 ], [ 145.665773, 14.971486 ], [ 145.665764, 14.971419 ], [ 145.665715, 14.971323 ], [ 145.665568, 14.971202 ], [ 145.665519, 14.97114 ], [ 145.665471, 14.971058 ], [ 145.665441, 14.971015 ], [ 145.665395, 14.970886 ], [ 145.665377, 14.970656 ], [ 145.665269, 14.97056 ], [ 145.665186, 14.970473 ], [ 145.665182, 14.970363 ], [ 145.665272, 14.970234 ], [ 145.665341, 14.970154 ], [ 145.665371, 14.970063 ], [ 145.665244, 14.969986 ], [ 145.665116, 14.96986 ], [ 145.665019, 14.969731 ], [ 145.664895, 14.969787 ], [ 145.664679, 14.969748 ], [ 145.664574, 14.969695 ], [ 145.66451, 14.969608 ], [ 145.664476, 14.969527 ], [ 145.664325, 14.969349 ], [ 145.664173, 14.969214 ], [ 145.663826, 14.968844 ], [ 145.663768, 14.968757 ], [ 145.663684, 14.968709 ], [ 145.663685, 14.968623 ], [ 145.663577, 14.968555 ], [ 145.663558, 14.968469 ], [ 145.663681, 14.968422 ], [ 145.663662, 14.968374 ], [ 145.663598, 14.968307 ], [ 145.66354, 14.96823 ], [ 145.663378, 14.968195 ], [ 145.663333, 14.968205 ], [ 145.663304, 14.968128 ], [ 145.66327, 14.968065 ], [ 145.663276, 14.967975 ], [ 145.66335, 14.967922 ], [ 145.663419, 14.967851 ], [ 145.66341, 14.967755 ], [ 145.66343, 14.967655 ], [ 145.663475, 14.967612 ], [ 145.663416, 14.967526 ], [ 145.663313, 14.967415 ], [ 145.663128, 14.967165 ], [ 145.663016, 14.967036 ], [ 145.662947, 14.966586 ], [ 145.662796, 14.966417 ], [ 145.662596, 14.966081 ], [ 145.662469, 14.965913 ], [ 145.662376, 14.96587 ], [ 145.662312, 14.965802 ], [ 145.662195, 14.965715 ], [ 145.662082, 14.965662 ], [ 145.662009, 14.965585 ], [ 145.661945, 14.96548 ], [ 145.661833, 14.965369 ], [ 145.661774, 14.965297 ], [ 145.661691, 14.965244 ], [ 145.661642, 14.965181 ], [ 145.661721, 14.96512 ], [ 145.66186, 14.964986 ], [ 145.661939, 14.964915 ], [ 145.662052, 14.964887 ], [ 145.66206, 14.964844 ], [ 145.662105, 14.964797 ], [ 145.662125, 14.964672 ], [ 145.662106, 14.964591 ], [ 145.662116, 14.96449 ], [ 145.662107, 14.964404 ], [ 145.662107, 14.964352 ], [ 145.662083, 14.964265 ], [ 145.661985, 14.964255 ], [ 145.661931, 14.964169 ], [ 145.661858, 14.964082 ], [ 145.66176, 14.964091 ], [ 145.661799, 14.964015 ], [ 145.661893, 14.963987 ], [ 145.661898, 14.96403 ], [ 145.661942, 14.963978 ], [ 145.661909, 14.963863 ], [ 145.661909, 14.96381 ], [ 145.661845, 14.963747 ], [ 145.661752, 14.963718 ], [ 145.661713, 14.96368 ], [ 145.661669, 14.963612 ], [ 145.66166, 14.963493 ], [ 145.66169, 14.96345 ], [ 145.661823, 14.963326 ], [ 145.662001, 14.963222 ], [ 145.662041, 14.963208 ], [ 145.662115, 14.963142 ], [ 145.662125, 14.963084 ], [ 145.662204, 14.963027 ], [ 145.662236, 14.963013 ], [ 145.662276, 14.962946 ], [ 145.662267, 14.962812 ], [ 145.662253, 14.962717 ], [ 145.662087, 14.96251 ], [ 145.662048, 14.962381 ], [ 145.66203, 14.962194 ], [ 145.662011, 14.962041 ], [ 145.662102, 14.961573 ], [ 145.662167, 14.961458 ], [ 145.662158, 14.961281 ], [ 145.66213, 14.961142 ], [ 145.662113, 14.961003 ], [ 145.662006, 14.960893 ], [ 145.661928, 14.960763 ], [ 145.661806, 14.960586 ], [ 145.661763, 14.960442 ], [ 145.661768, 14.960346 ], [ 145.661803, 14.960275 ], [ 145.661774, 14.96015 ], [ 145.661706, 14.960121 ], [ 145.661636, 14.960159 ], [ 145.661607, 14.960082 ], [ 145.661598, 14.960029 ], [ 145.661608, 14.959939 ], [ 145.66154, 14.959895 ], [ 145.661442, 14.959765 ], [ 145.661443, 14.959694 ], [ 145.661404, 14.959502 ], [ 145.661376, 14.959296 ], [ 145.661397, 14.959129 ], [ 145.661429, 14.959062 ], [ 145.6614, 14.958971 ], [ 145.661381, 14.958852 ], [ 145.661347, 14.958775 ], [ 145.661339, 14.958536 ], [ 145.661389, 14.958349 ], [ 145.661484, 14.958192 ], [ 145.661549, 14.958063 ], [ 145.661559, 14.957896 ], [ 145.661654, 14.957715 ], [ 145.6616, 14.957662 ], [ 145.661616, 14.957514 ], [ 145.661676, 14.957323 ], [ 145.66176, 14.957352 ], [ 145.661824, 14.957242 ], [ 145.661827, 14.957127 ], [ 145.661964, 14.956973 ], [ 145.662072, 14.956983 ], [ 145.662082, 14.956835 ], [ 145.662152, 14.956754 ], [ 145.662128, 14.956697 ], [ 145.662247, 14.956549 ], [ 145.662313, 14.956219 ], [ 145.662505, 14.956072 ], [ 145.662545, 14.955977 ], [ 145.662653, 14.955992 ], [ 145.662782, 14.955921 ], [ 145.662625, 14.955862 ], [ 145.66262, 14.955819 ], [ 145.662734, 14.955734 ], [ 145.662774, 14.955615 ], [ 145.662696, 14.955552 ], [ 145.662735, 14.955461 ], [ 145.662874, 14.955405 ], [ 145.66284, 14.955333 ], [ 145.662791, 14.95527 ], [ 145.663024, 14.954989 ], [ 145.663064, 14.954927 ], [ 145.663001, 14.95475 ], [ 145.66337, 14.9547 ], [ 145.6634, 14.954647 ], [ 145.663287, 14.954517 ], [ 145.663357, 14.954365 ], [ 145.663318, 14.954278 ], [ 145.663353, 14.954212 ], [ 145.663265, 14.954187 ], [ 145.663295, 14.95413 ], [ 145.663344, 14.954102 ], [ 145.663394, 14.954068 ], [ 145.663366, 14.953815 ], [ 145.663426, 14.953633 ], [ 145.663535, 14.953524 ], [ 145.663515, 14.953471 ], [ 145.663531, 14.953371 ], [ 145.663763, 14.953238 ], [ 145.663719, 14.9532 ], [ 145.663768, 14.953162 ], [ 145.663852, 14.953162 ], [ 145.663896, 14.953196 ], [ 145.663931, 14.953134 ], [ 145.663921, 14.953086 ], [ 145.664045, 14.953001 ], [ 145.664109, 14.952934 ], [ 145.66407, 14.952867 ], [ 145.664145, 14.952762 ], [ 145.664179, 14.95281 ], [ 145.664312, 14.952782 ], [ 145.664371, 14.95274 ], [ 145.664386, 14.952663 ], [ 145.664298, 14.952615 ], [ 145.66421, 14.952547 ], [ 145.664171, 14.952523 ], [ 145.664246, 14.952323 ], [ 145.66432, 14.952242 ], [ 145.664321, 14.952074 ], [ 145.664302, 14.952007 ], [ 145.664371, 14.95195 ], [ 145.664312, 14.951883 ], [ 145.664259, 14.95183 ], [ 145.664308, 14.951773 ], [ 145.664357, 14.951745 ], [ 145.664309, 14.951653 ], [ 145.664249, 14.951711 ], [ 145.664185, 14.95172 ], [ 145.664156, 14.951638 ], [ 145.664122, 14.951571 ], [ 145.664133, 14.951428 ], [ 145.664089, 14.951375 ], [ 145.6641, 14.95126 ], [ 145.664198, 14.951227 ], [ 145.664189, 14.951088 ], [ 145.664303, 14.950965 ], [ 145.664466, 14.950836 ], [ 145.664505, 14.950885 ], [ 145.664595, 14.950694 ], [ 145.664758, 14.950551 ], [ 145.665359, 14.950478 ], [ 145.665546, 14.950417 ], [ 145.665748, 14.950423 ], [ 145.665979, 14.950439 ], [ 145.665955, 14.950329 ], [ 145.665907, 14.950271 ], [ 145.665858, 14.950194 ], [ 145.665834, 14.950041 ], [ 145.665785, 14.949969 ], [ 145.665761, 14.949897 ], [ 145.665811, 14.949792 ], [ 145.665851, 14.949754 ], [ 145.66589, 14.949702 ], [ 145.665925, 14.949611 ], [ 145.665896, 14.949572 ], [ 145.66572, 14.949447 ], [ 145.665666, 14.949399 ], [ 145.665538, 14.949331 ], [ 145.66543, 14.949302 ], [ 145.665386, 14.949302 ], [ 145.665327, 14.949316 ], [ 145.665264, 14.949124 ], [ 145.665269, 14.949062 ], [ 145.665251, 14.948918 ], [ 145.665158, 14.948808 ], [ 145.665139, 14.948755 ], [ 145.6651, 14.948683 ], [ 145.665149, 14.948597 ], [ 145.665184, 14.948554 ], [ 145.665288, 14.948445 ], [ 145.665352, 14.948393 ], [ 145.665407, 14.948355 ], [ 145.665424, 14.948347 ], [ 145.665496, 14.948274 ], [ 145.665492, 14.948154 ], [ 145.66529, 14.948115 ], [ 145.665201, 14.948153 ], [ 145.665064, 14.948114 ], [ 145.66496, 14.948118 ], [ 145.664936, 14.948127 ], [ 145.664882, 14.948098 ], [ 145.664799, 14.948002 ], [ 145.664663, 14.947891 ], [ 145.664667, 14.947872 ], [ 145.664573, 14.947924 ], [ 145.664548, 14.947953 ], [ 145.664435, 14.947933 ], [ 145.664367, 14.947972 ], [ 145.664333, 14.947951 ], [ 145.66428, 14.947908 ], [ 145.664247, 14.947948 ], [ 145.66425, 14.947965 ], [ 145.664249, 14.947975 ], [ 145.664238, 14.947995 ], [ 145.664192, 14.948011 ], [ 145.66415, 14.947993 ], [ 145.664116, 14.94797 ], [ 145.664033, 14.947952 ], [ 145.664004, 14.948002 ], [ 145.663965, 14.948031 ], [ 145.663857, 14.947996 ], [ 145.663807, 14.94803 ], [ 145.663767, 14.948116 ], [ 145.663718, 14.948087 ], [ 145.663629, 14.948186 ], [ 145.66357, 14.948267 ], [ 145.663574, 14.94833 ], [ 145.66352, 14.948387 ], [ 145.66347, 14.948406 ], [ 145.663421, 14.948377 ], [ 145.663426, 14.948424 ], [ 145.663362, 14.948496 ], [ 145.663302, 14.948519 ], [ 145.663267, 14.948605 ], [ 145.663085, 14.948623 ], [ 145.663036, 14.948661 ], [ 145.662928, 14.948661 ], [ 145.662834, 14.948655 ], [ 145.662731, 14.948669 ], [ 145.662515, 14.948496 ], [ 145.662457, 14.948457 ], [ 145.662305, 14.948313 ], [ 145.662168, 14.94813 ], [ 145.662041, 14.948034 ], [ 145.661972, 14.947995 ], [ 145.661958, 14.947952 ], [ 145.661908, 14.948019 ], [ 145.661839, 14.948085 ], [ 145.66175, 14.948128 ], [ 145.661671, 14.948223 ], [ 145.661582, 14.948275 ], [ 145.661506, 14.948303 ], [ 145.661437, 14.948245 ], [ 145.661413, 14.948188 ], [ 145.661369, 14.948135 ], [ 145.661305, 14.948139 ], [ 145.661206, 14.948167 ], [ 145.661176, 14.94822 ], [ 145.661137, 14.948272 ], [ 145.661018, 14.948348 ], [ 145.660934, 14.948391 ], [ 145.660905, 14.948434 ], [ 145.660826, 14.948476 ], [ 145.660808, 14.948469 ], [ 145.660791, 14.948452 ], [ 145.660801, 14.948409 ], [ 145.660708, 14.948437 ], [ 145.660624, 14.948489 ], [ 145.660451, 14.948541 ], [ 145.660378, 14.948536 ], [ 145.660328, 14.948583 ], [ 145.660229, 14.948631 ], [ 145.660214, 14.948654 ], [ 145.66017, 14.948697 ], [ 145.660101, 14.948725 ], [ 145.660061, 14.948773 ], [ 145.660017, 14.948763 ], [ 145.659972, 14.948811 ], [ 145.659908, 14.948815 ], [ 145.659874, 14.948753 ], [ 145.65987, 14.948671 ], [ 145.659875, 14.948638 ], [ 145.659797, 14.948585 ], [ 145.659738, 14.948565 ], [ 145.659644, 14.948551 ], [ 145.659532, 14.948488 ], [ 145.659404, 14.948449 ], [ 145.659325, 14.948415 ], [ 145.659306, 14.948348 ], [ 145.659267, 14.948295 ], [ 145.659169, 14.948309 ], [ 145.659089, 14.948385 ], [ 145.65902, 14.948432 ], [ 145.658873, 14.948403 ], [ 145.658799, 14.948402 ], [ 145.658739, 14.94831 ], [ 145.658711, 14.948268 ], [ 145.658579, 14.948128 ], [ 145.658501, 14.948032 ], [ 145.658433, 14.947879 ], [ 145.658444, 14.947788 ], [ 145.65836, 14.947735 ], [ 145.658287, 14.947682 ], [ 145.658086, 14.947628 ], [ 145.658047, 14.947561 ], [ 145.658023, 14.947383 ], [ 145.65764, 14.947333 ], [ 145.657497, 14.94727 ], [ 145.657361, 14.94705 ], [ 145.657335, 14.946959 ], [ 145.657183, 14.946872 ], [ 145.656938, 14.946703 ], [ 145.656801, 14.946578 ], [ 145.656708, 14.946453 ], [ 145.65663, 14.946356 ], [ 145.656557, 14.946246 ], [ 145.656513, 14.946169 ], [ 145.6564, 14.946207 ], [ 145.656331, 14.946092 ], [ 145.656273, 14.946029 ], [ 145.656179, 14.946052 ], [ 145.656116, 14.945985 ], [ 145.656047, 14.945975 ], [ 145.655997, 14.946004 ], [ 145.655717, 14.946069 ], [ 145.655648, 14.946107 ], [ 145.655529, 14.946101 ], [ 145.655515, 14.945996 ], [ 145.655447, 14.945991 ], [ 145.65548, 14.946068 ], [ 145.655465, 14.946158 ], [ 145.655376, 14.946206 ], [ 145.655268, 14.946162 ], [ 145.655219, 14.946109 ], [ 145.655111, 14.946123 ], [ 145.655018, 14.946079 ], [ 145.65492, 14.946016 ], [ 145.654857, 14.945925 ], [ 145.654749, 14.945886 ], [ 145.654572, 14.945856 ], [ 145.654547, 14.945799 ], [ 145.654498, 14.94576 ], [ 145.65445, 14.945703 ], [ 145.654391, 14.945602 ], [ 145.654293, 14.945515 ], [ 145.654254, 14.945472 ], [ 145.654191, 14.945438 ], [ 145.654142, 14.945404 ], [ 145.654083, 14.945308 ], [ 145.654094, 14.945194 ], [ 145.654124, 14.945112 ], [ 145.654213, 14.945065 ], [ 145.654242, 14.945013 ], [ 145.654159, 14.945022 ], [ 145.65409, 14.944988 ], [ 145.654051, 14.944983 ], [ 145.654002, 14.944944 ], [ 145.653978, 14.944844 ], [ 145.653919, 14.944786 ], [ 145.65389, 14.944743 ], [ 145.653944, 14.944676 ], [ 145.653866, 14.944604 ], [ 145.653792, 14.944613 ], [ 145.653763, 14.944575 ], [ 145.653876, 14.944513 ], [ 145.653833, 14.944422 ], [ 145.653764, 14.944359 ], [ 145.65373, 14.944345 ], [ 145.65373, 14.944292 ], [ 145.653775, 14.944264 ], [ 145.653839, 14.944212 ], [ 145.653805, 14.944092 ], [ 145.653708, 14.944 ], [ 145.653639, 14.943986 ], [ 145.65356, 14.943952 ], [ 145.653565, 14.943899 ], [ 145.653546, 14.943822 ], [ 145.653497, 14.943793 ], [ 145.653426, 14.943795 ], [ 145.653402, 14.943842 ], [ 145.653411, 14.943858 ], [ 145.653395, 14.943872 ], [ 145.653375, 14.943882 ], [ 145.653356, 14.943884 ], [ 145.653349, 14.943852 ], [ 145.653349, 14.943831 ], [ 145.653291, 14.943811 ], [ 145.653286, 14.943744 ], [ 145.653178, 14.943763 ], [ 145.65309, 14.943686 ], [ 145.65306, 14.943643 ], [ 145.653076, 14.943557 ], [ 145.65311, 14.943499 ], [ 145.653037, 14.943461 ], [ 145.653082, 14.94336 ], [ 145.653023, 14.943312 ], [ 145.652965, 14.943216 ], [ 145.652876, 14.943206 ], [ 145.652827, 14.943196 ], [ 145.652816, 14.943123 ], [ 145.652831, 14.943084 ], [ 145.65287, 14.94307 ], [ 145.65289, 14.943008 ], [ 145.652871, 14.942951 ], [ 145.652812, 14.942936 ], [ 145.652792, 14.942988 ], [ 145.652753, 14.943007 ], [ 145.652694, 14.942983 ], [ 145.652684, 14.942926 ], [ 145.652655, 14.942854 ], [ 145.652601, 14.942791 ], [ 145.652508, 14.942748 ], [ 145.652504, 14.942671 ], [ 145.65246, 14.942609 ], [ 145.652371, 14.942613 ], [ 145.652357, 14.94257 ], [ 145.652357, 14.942512 ], [ 145.652323, 14.942464 ], [ 145.652289, 14.94244 ], [ 145.652245, 14.942344 ], [ 145.65224, 14.942292 ], [ 145.652137, 14.942277 ], [ 145.652044, 14.94219 ], [ 145.65204, 14.942137 ], [ 145.651996, 14.942075 ], [ 145.652045, 14.942013 ], [ 145.652056, 14.941956 ], [ 145.652012, 14.941903 ], [ 145.651938, 14.941878 ], [ 145.651894, 14.941859 ], [ 145.651943, 14.941792 ], [ 145.651958, 14.941764 ], [ 145.65189, 14.941739 ], [ 145.651836, 14.94171 ], [ 145.651831, 14.941672 ], [ 145.651866, 14.941629 ], [ 145.651798, 14.941514 ], [ 145.651793, 14.941438 ], [ 145.651749, 14.941409 ], [ 145.651626, 14.941398 ], [ 145.651592, 14.941341 ], [ 145.651533, 14.941302 ], [ 145.651499, 14.941316 ], [ 145.651465, 14.941273 ], [ 145.65147, 14.941139 ], [ 145.651436, 14.941072 ], [ 145.651496, 14.940977 ], [ 145.651457, 14.940929 ], [ 145.651409, 14.940794 ], [ 145.651424, 14.940708 ], [ 145.651429, 14.940641 ], [ 145.651493, 14.940599 ], [ 145.651533, 14.94058 ], [ 145.651602, 14.940489 ], [ 145.651647, 14.940423 ], [ 145.651535, 14.940283 ], [ 145.651457, 14.940192 ], [ 145.651442, 14.940125 ], [ 145.651544, 14.939958 ], [ 145.651559, 14.939925 ], [ 145.65152, 14.939862 ], [ 145.65153, 14.9398 ], [ 145.65159, 14.939724 ], [ 145.651674, 14.93972 ], [ 145.651752, 14.939691 ], [ 145.651836, 14.939735 ], [ 145.65189, 14.939721 ], [ 145.651949, 14.939659 ], [ 145.652068, 14.939641 ], [ 145.652117, 14.939617 ], [ 145.652025, 14.939416 ], [ 145.652005, 14.939353 ], [ 145.65205, 14.939263 ], [ 145.652197, 14.939111 ], [ 145.652224, 14.939082 ], [ 145.652195, 14.938938 ], [ 145.652324, 14.938776 ], [ 145.652325, 14.938599 ], [ 145.652483, 14.93851 ], [ 145.652537, 14.938467 ], [ 145.652508, 14.938424 ], [ 145.652484, 14.938371 ], [ 145.652479, 14.938318 ], [ 145.652426, 14.938208 ], [ 145.652377, 14.93815 ], [ 145.65237, 14.938074 ], [ 145.652454, 14.938007 ], [ 145.652479, 14.937979 ], [ 145.652445, 14.93795 ], [ 145.65244, 14.937907 ], [ 145.652445, 14.937859 ], [ 145.652421, 14.937811 ], [ 145.652372, 14.937758 ], [ 145.652343, 14.937715 ], [ 145.652319, 14.937662 ], [ 145.65227, 14.937633 ], [ 145.652245, 14.93759 ], [ 145.652256, 14.937513 ], [ 145.652226, 14.937461 ], [ 145.652217, 14.937374 ], [ 145.652188, 14.937341 ], [ 145.652198, 14.937245 ], [ 145.652243, 14.937207 ], [ 145.652272, 14.937164 ], [ 145.652253, 14.937131 ], [ 145.652204, 14.937121 ], [ 145.652184, 14.937097 ], [ 145.652136, 14.937001 ], [ 145.652057, 14.936943 ], [ 145.652008, 14.936971 ], [ 145.651949, 14.936995 ], [ 145.651915, 14.936956 ], [ 145.651811, 14.936975 ], [ 145.651772, 14.936941 ], [ 145.65163, 14.936907 ], [ 145.65163, 14.936864 ], [ 145.651601, 14.936811 ], [ 145.651547, 14.936696 ], [ 145.651577, 14.936639 ], [ 145.651523, 14.936619 ], [ 145.651509, 14.936571 ], [ 145.651509, 14.936519 ], [ 145.651348, 14.936264 ], [ 145.651388, 14.936217 ], [ 145.651374, 14.936159 ], [ 145.651418, 14.936083 ], [ 145.651364, 14.936035 ], [ 145.6513, 14.936044 ], [ 145.651142, 14.935828 ], [ 145.651033, 14.935899 ], [ 145.650984, 14.935856 ], [ 145.650891, 14.935836 ], [ 145.650842, 14.935812 ], [ 145.650803, 14.935759 ], [ 145.650749, 14.935715 ], [ 145.650715, 14.935677 ], [ 145.650676, 14.935572 ], [ 145.650627, 14.935547 ], [ 145.650593, 14.935538 ], [ 145.650598, 14.935456 ], [ 145.650623, 14.935423 ], [ 145.650574, 14.935394 ], [ 145.650535, 14.935389 ], [ 145.6505, 14.935437 ], [ 145.650446, 14.935422 ], [ 145.650402, 14.935383 ], [ 145.650358, 14.935321 ], [ 145.650294, 14.935316 ], [ 145.650235, 14.935263 ], [ 145.650182, 14.935148 ], [ 145.650178, 14.935066 ], [ 145.650114, 14.934956 ], [ 145.650109, 14.934949 ], [ 145.649958, 14.934735 ], [ 145.650042, 14.934673 ], [ 145.650057, 14.934621 ], [ 145.650033, 14.934578 ], [ 145.649949, 14.934587 ], [ 145.649886, 14.934534 ], [ 145.649867, 14.934452 ], [ 145.649896, 14.934419 ], [ 145.649945, 14.934419 ], [ 145.649883, 14.934256 ], [ 145.649888, 14.934228 ], [ 145.649957, 14.934214 ], [ 145.649962, 14.934195 ], [ 145.649923, 14.934151 ], [ 145.649854, 14.934151 ], [ 145.649805, 14.934074 ], [ 145.649776, 14.934036 ], [ 145.649692, 14.93404 ], [ 145.649593, 14.934092 ], [ 145.649573, 14.934144 ], [ 145.649514, 14.934154 ], [ 145.6495, 14.934115 ], [ 145.649465, 14.934082 ], [ 145.649382, 14.934038 ], [ 145.649286, 14.934033 ], [ 145.649257, 14.934013 ], [ 145.649228, 14.933965 ], [ 145.649243, 14.933903 ], [ 145.649277, 14.933889 ], [ 145.649293, 14.93376 ], [ 145.649259, 14.933688 ], [ 145.649191, 14.933587 ], [ 145.649141, 14.933611 ], [ 145.649092, 14.933611 ], [ 145.649033, 14.933644 ], [ 145.648974, 14.933634 ], [ 145.648974, 14.933586 ], [ 145.648925, 14.933557 ], [ 145.648867, 14.933461 ], [ 145.648789, 14.933346 ], [ 145.648711, 14.933221 ], [ 145.648701, 14.933154 ], [ 145.648638, 14.933058 ], [ 145.648599, 14.932986 ], [ 145.648599, 14.932943 ], [ 145.64856, 14.932904 ], [ 145.648501, 14.932866 ], [ 145.648482, 14.932823 ], [ 145.648522, 14.932775 ], [ 145.648571, 14.932751 ], [ 145.648566, 14.932694 ], [ 145.648512, 14.932703 ], [ 145.648473, 14.932741 ], [ 145.648351, 14.932544 ], [ 145.64823, 14.93229 ], [ 145.648161, 14.932256 ], [ 145.648117, 14.932151 ], [ 145.648063, 14.932117 ], [ 145.648024, 14.932055 ], [ 145.647978, 14.93193 ], [ 145.648023, 14.931868 ], [ 145.648023, 14.931835 ], [ 145.647876, 14.931719 ], [ 145.647857, 14.931657 ], [ 145.647813, 14.931632 ], [ 145.647784, 14.931575 ], [ 145.647799, 14.931479 ], [ 145.647814, 14.931427 ], [ 145.647761, 14.931302 ], [ 145.647747, 14.93124 ], [ 145.647654, 14.931144 ], [ 145.647595, 14.931172 ], [ 145.647507, 14.931085 ], [ 145.647507, 14.930947 ], [ 145.647493, 14.930889 ], [ 145.647513, 14.930856 ], [ 145.647435, 14.930688 ], [ 145.647406, 14.930654 ], [ 145.647426, 14.930525 ], [ 145.647388, 14.930429 ], [ 145.647348, 14.93041 ], [ 145.64728, 14.93029 ], [ 145.647207, 14.93018 ], [ 145.647076, 14.929916 ], [ 145.647094, 14.929763 ], [ 145.64706, 14.929705 ], [ 145.647062, 14.929466 ], [ 145.647047, 14.929404 ], [ 145.647013, 14.929365 ], [ 145.646974, 14.929341 ], [ 145.646964, 14.929274 ], [ 145.646852, 14.929092 ], [ 145.646824, 14.929001 ], [ 145.64678, 14.928948 ], [ 145.646755, 14.928885 ], [ 145.646682, 14.928789 ], [ 145.646535, 14.928731 ], [ 145.646487, 14.928602 ], [ 145.646502, 14.928492 ], [ 145.646492, 14.928463 ], [ 145.646443, 14.928477 ], [ 145.646414, 14.928472 ], [ 145.646409, 14.928424 ], [ 145.646297, 14.928318 ], [ 145.646262, 14.928313 ], [ 145.646262, 14.928265 ], [ 145.646317, 14.928223 ], [ 145.646332, 14.92817 ], [ 145.646303, 14.928103 ], [ 145.646239, 14.928093 ], [ 145.646195, 14.928035 ], [ 145.646136, 14.928021 ], [ 145.646021, 14.927924 ], [ 145.645977, 14.927943 ], [ 145.645942, 14.927938 ], [ 145.645893, 14.927924 ], [ 145.645751, 14.927765 ], [ 145.645757, 14.927669 ], [ 145.645777, 14.927583 ], [ 145.645723, 14.92755 ], [ 145.645664, 14.927559 ], [ 145.645635, 14.927501 ], [ 145.645479, 14.927275 ], [ 145.645322, 14.927188 ], [ 145.645334, 14.926863 ], [ 145.645449, 14.926639 ], [ 145.645375, 14.926591 ], [ 145.645346, 14.926538 ], [ 145.645307, 14.926504 ], [ 145.645288, 14.926361 ], [ 145.645229, 14.92636 ], [ 145.644934, 14.92632 ], [ 145.644806, 14.926296 ], [ 145.644703, 14.926353 ], [ 145.644595, 14.926304 ], [ 145.644492, 14.92627 ], [ 145.644355, 14.926083 ], [ 145.644338, 14.926001 ], [ 145.644428, 14.925901 ], [ 145.644364, 14.925872 ], [ 145.644305, 14.925853 ], [ 145.644177, 14.925838 ], [ 145.644148, 14.925794 ], [ 145.644064, 14.92577 ], [ 145.644015, 14.925727 ], [ 145.643976, 14.925669 ], [ 145.643932, 14.925621 ], [ 145.643899, 14.925544 ], [ 145.643928, 14.925477 ], [ 145.643904, 14.925444 ], [ 145.64386, 14.925439 ], [ 145.643659, 14.92527 ], [ 145.643571, 14.925236 ], [ 145.643537, 14.925179 ], [ 145.643434, 14.925154 ], [ 145.643375, 14.925106 ], [ 145.64336, 14.925067 ], [ 145.64339, 14.925029 ], [ 145.643371, 14.924991 ], [ 145.643322, 14.924957 ], [ 145.643278, 14.92488 ], [ 145.643264, 14.924775 ], [ 145.643136, 14.924741 ], [ 145.643023, 14.924668 ], [ 145.642891, 14.924644 ], [ 145.642749, 14.924576 ], [ 145.642646, 14.924508 ], [ 145.642671, 14.924432 ], [ 145.642641, 14.924413 ], [ 145.642568, 14.924427 ], [ 145.642563, 14.924336 ], [ 145.642391, 14.924354 ], [ 145.642315, 14.924286 ], [ 145.642173, 14.924185 ], [ 145.642109, 14.924156 ], [ 145.642119, 14.924108 ], [ 145.642021, 14.924093 ], [ 145.641943, 14.924064 ], [ 145.641874, 14.924049 ], [ 145.641806, 14.923934 ], [ 145.641816, 14.923886 ], [ 145.641762, 14.923824 ], [ 145.641629, 14.92379 ], [ 145.641571, 14.92377 ], [ 145.641493, 14.92366 ], [ 145.641448, 14.923659 ], [ 145.641375, 14.923559 ], [ 145.641277, 14.923472 ], [ 145.641061, 14.923442 ], [ 145.640993, 14.923365 ], [ 145.64086, 14.923355 ], [ 145.64085, 14.923302 ], [ 145.640816, 14.923287 ], [ 145.640801, 14.923335 ], [ 145.640717, 14.923339 ], [ 145.640661, 14.923314 ], [ 145.640639, 14.923305 ], [ 145.640585, 14.923224 ], [ 145.640526, 14.9232 ], [ 145.640473, 14.923118 ], [ 145.640384, 14.923084 ], [ 145.640311, 14.923074 ], [ 145.640281, 14.923045 ], [ 145.640104, 14.923034 ], [ 145.639948, 14.922909 ], [ 145.639854, 14.922889 ], [ 145.6398, 14.922899 ], [ 145.639795, 14.922879 ], [ 145.639652, 14.922941 ], [ 145.639628, 14.922941 ], [ 145.639614, 14.922864 ], [ 145.639523, 14.922835 ], [ 145.639488, 14.922854 ], [ 145.639454, 14.922815 ], [ 145.639341, 14.922767 ], [ 145.639106, 14.922679 ], [ 145.639031, 14.922722 ], [ 145.63884, 14.922673 ], [ 145.638816, 14.922639 ], [ 145.638638, 14.922638 ], [ 145.638584, 14.922647 ], [ 145.638279, 14.922631 ], [ 145.638196, 14.922593 ], [ 145.638078, 14.922587 ], [ 145.638063, 14.922563 ], [ 145.637818, 14.922547 ], [ 145.637773, 14.922585 ], [ 145.637714, 14.922528 ], [ 145.637641, 14.922522 ], [ 145.637557, 14.92256 ], [ 145.637518, 14.922526 ], [ 145.637385, 14.922554 ], [ 145.637291, 14.922602 ], [ 145.637134, 14.922586 ], [ 145.637015, 14.922595 ], [ 145.636995, 14.922667 ], [ 145.636867, 14.922666 ], [ 145.636745, 14.922574 ], [ 145.636622, 14.922578 ], [ 145.636297, 14.922576 ], [ 145.636223, 14.92259 ], [ 145.6361, 14.922642 ], [ 145.63593, 14.922694 ], [ 145.635916, 14.922646 ], [ 145.635822, 14.922655 ], [ 145.635634, 14.922783 ], [ 145.635566, 14.922763 ], [ 145.635506, 14.922816 ], [ 145.635448, 14.922777 ], [ 145.63528, 14.922757 ], [ 145.635137, 14.922871 ], [ 145.635038, 14.922966 ], [ 145.634984, 14.923009 ], [ 145.634905, 14.922994 ], [ 145.634855, 14.92307 ], [ 145.634816, 14.923036 ], [ 145.634767, 14.923108 ], [ 145.634698, 14.923098 ], [ 145.634629, 14.923064 ], [ 145.634575, 14.923073 ], [ 145.634555, 14.923107 ], [ 145.634457, 14.923116 ], [ 145.634437, 14.923149 ], [ 145.634348, 14.923153 ], [ 145.63424, 14.923219 ], [ 145.63416, 14.923291 ], [ 145.634145, 14.923319 ], [ 145.634091, 14.923343 ], [ 145.634007, 14.92339 ], [ 145.633894, 14.923466 ], [ 145.633809, 14.923561 ], [ 145.633735, 14.923661 ], [ 145.6337, 14.923718 ], [ 145.633587, 14.923727 ], [ 145.633414, 14.923851 ], [ 145.633369, 14.923893 ], [ 145.633335, 14.92397 ], [ 145.633275, 14.923984 ], [ 145.633216, 14.924036 ], [ 145.633172, 14.92405 ], [ 145.633142, 14.924112 ], [ 145.633011, 14.924217 ], [ 145.632917, 14.924283 ], [ 145.632799, 14.924335 ], [ 145.632645, 14.924477 ], [ 145.632526, 14.924577 ], [ 145.632467, 14.92472 ], [ 145.632353, 14.924801 ], [ 145.632273, 14.924906 ], [ 145.63218, 14.924958 ], [ 145.632105, 14.925034 ], [ 145.632139, 14.925139 ], [ 145.632185, 14.925226 ], [ 145.632244, 14.925322 ], [ 145.632288, 14.92537 ], [ 145.632312, 14.925403 ], [ 145.632255, 14.925436 ], [ 145.632238, 14.925427 ], [ 145.632223, 14.925465 ], [ 145.632243, 14.925503 ], [ 145.632282, 14.925499 ], [ 145.632336, 14.925509 ], [ 145.632365, 14.925557 ], [ 145.63234, 14.9256 ], [ 145.63232, 14.925652 ], [ 145.632271, 14.925676 ], [ 145.632227, 14.925685 ], [ 145.632226, 14.925733 ], [ 145.632088, 14.92578 ], [ 145.632054, 14.925828 ], [ 145.631891, 14.92586 ], [ 145.631875, 14.926027 ], [ 145.631772, 14.926103 ], [ 145.631756, 14.926175 ], [ 145.6318, 14.926218 ], [ 145.63177, 14.926285 ], [ 145.631662, 14.926256 ], [ 145.631554, 14.926279 ], [ 145.631603, 14.926332 ], [ 145.631637, 14.926385 ], [ 145.631642, 14.926433 ], [ 145.631548, 14.926466 ], [ 145.631513, 14.926499 ], [ 145.631473, 14.92657 ], [ 145.631453, 14.926661 ], [ 145.631477, 14.926709 ], [ 145.631556, 14.926729 ], [ 145.63161, 14.926767 ], [ 145.631565, 14.926824 ], [ 145.631521, 14.926848 ], [ 145.631521, 14.926896 ], [ 145.631545, 14.926934 ], [ 145.631609, 14.926959 ], [ 145.631609, 14.926987 ], [ 145.631525, 14.92702 ], [ 145.631495, 14.927068 ], [ 145.631492, 14.92714 ], [ 145.631418, 14.927149 ], [ 145.63133, 14.927129 ], [ 145.631305, 14.927162 ], [ 145.631305, 14.92721 ], [ 145.631181, 14.927253 ], [ 145.631127, 14.927243 ], [ 145.631048, 14.927323 ], [ 145.631023, 14.927414 ], [ 145.631013, 14.927495 ], [ 145.630988, 14.927534 ], [ 145.630958, 14.927596 ], [ 145.630888, 14.927696 ], [ 145.630858, 14.927801 ], [ 145.630887, 14.927892 ], [ 145.630793, 14.927996 ], [ 145.630763, 14.928006 ], [ 145.630724, 14.927962 ], [ 145.630685, 14.927886 ], [ 145.630672, 14.927827 ], [ 145.630671, 14.927823 ], [ 145.630637, 14.927828 ], [ 145.630592, 14.927856 ], [ 145.630567, 14.927895 ], [ 145.630596, 14.927962 ], [ 145.63064, 14.92801 ], [ 145.630699, 14.928091 ], [ 145.630762, 14.928144 ], [ 145.630811, 14.928217 ], [ 145.630791, 14.928269 ], [ 145.630756, 14.928331 ], [ 145.630771, 14.928408 ], [ 145.630756, 14.92846 ], [ 145.630716, 14.928517 ], [ 145.630645, 14.928507 ], [ 145.630615, 14.928521 ], [ 145.63059, 14.92855 ], [ 145.630565, 14.928622 ], [ 145.630545, 14.928708 ], [ 145.630608, 14.928765 ], [ 145.630593, 14.928818 ], [ 145.630559, 14.928875 ], [ 145.630536, 14.928966 ], [ 145.630484, 14.928999 ], [ 145.630484, 14.929037 ], [ 145.630527, 14.929133 ], [ 145.630522, 14.929296 ], [ 145.630565, 14.929377 ], [ 145.630574, 14.92954 ], [ 145.630613, 14.929631 ], [ 145.630622, 14.929756 ], [ 145.630685, 14.929852 ], [ 145.630687, 14.929943 ], [ 145.630726, 14.93 ], [ 145.630814, 14.930072 ], [ 145.630799, 14.930144 ], [ 145.630848, 14.93023 ], [ 145.630862, 14.930331 ], [ 145.630896, 14.930417 ], [ 145.63092, 14.930508 ], [ 145.631042, 14.930566 ], [ 145.631022, 14.930619 ], [ 145.630948, 14.930657 ], [ 145.63083, 14.93067 ], [ 145.63081, 14.930709 ], [ 145.630815, 14.930761 ], [ 145.63078, 14.930814 ], [ 145.630731, 14.930828 ], [ 145.630721, 14.930885 ], [ 145.630686, 14.930937 ], [ 145.63068, 14.93099 ], [ 145.63072, 14.931019 ], [ 145.630769, 14.931043 ], [ 145.630724, 14.931076 ], [ 145.630699, 14.931105 ], [ 145.630611, 14.931152 ], [ 145.630591, 14.931205 ], [ 145.63057, 14.931305 ], [ 145.63057, 14.93142 ], [ 145.630515, 14.931482 ], [ 145.630481, 14.931467 ], [ 145.630427, 14.931467 ], [ 145.630377, 14.931519 ], [ 145.630391, 14.931586 ], [ 145.630347, 14.931634 ], [ 145.630312, 14.931691 ], [ 145.630297, 14.931743 ], [ 145.630272, 14.931863 ], [ 145.630242, 14.931882 ], [ 145.630222, 14.931953 ], [ 145.630084, 14.931977 ], [ 145.63, 14.932086 ], [ 145.62994, 14.9321 ], [ 145.629906, 14.932138 ], [ 145.629915, 14.932215 ], [ 145.629979, 14.932244 ], [ 145.630058, 14.932225 ], [ 145.630114, 14.932302 ], [ 145.630099, 14.932364 ], [ 145.630064, 14.932402 ], [ 145.629976, 14.932363 ], [ 145.629976, 14.932382 ], [ 145.630029, 14.932455 ], [ 145.630019, 14.932512 ], [ 145.629994, 14.932545 ], [ 145.62992, 14.932559 ], [ 145.6299, 14.932616 ], [ 145.629885, 14.932702 ], [ 145.62984, 14.932779 ], [ 145.629751, 14.932893 ], [ 145.62975, 14.933075 ], [ 145.629686, 14.933117 ], [ 145.629631, 14.93316 ], [ 145.629616, 14.933232 ], [ 145.629566, 14.933284 ], [ 145.629531, 14.933456 ], [ 145.629501, 14.933551 ], [ 145.629421, 14.933666 ], [ 145.629451, 14.933723 ], [ 145.629465, 14.933776 ], [ 145.62942, 14.933867 ], [ 145.629371, 14.933895 ], [ 145.629366, 14.933933 ], [ 145.629306, 14.933995 ], [ 145.629306, 14.934086 ], [ 145.629337, 14.934187 ], [ 145.629332, 14.934263 ], [ 145.629361, 14.934278 ], [ 145.62936, 14.934349 ], [ 145.62938, 14.934412 ], [ 145.629487, 14.934508 ], [ 145.629536, 14.934561 ], [ 145.62956, 14.934695 ], [ 145.629559, 14.934786 ], [ 145.6295, 14.934838 ], [ 145.62948, 14.934929 ], [ 145.629386, 14.934933 ], [ 145.629376, 14.935014 ], [ 145.629327, 14.935019 ], [ 145.629302, 14.935081 ], [ 145.629395, 14.935158 ], [ 145.629439, 14.935187 ], [ 145.629478, 14.935235 ], [ 145.629453, 14.935287 ], [ 145.629486, 14.935479 ], [ 145.629422, 14.935536 ], [ 145.629386, 14.935737 ], [ 145.629425, 14.935737 ], [ 145.62947, 14.935713 ], [ 145.629479, 14.935785 ], [ 145.62939, 14.935847 ], [ 145.629346, 14.935885 ], [ 145.629397, 14.935952 ], [ 145.629475, 14.936029 ], [ 145.629544, 14.936053 ], [ 145.629603, 14.936068 ], [ 145.629637, 14.936116 ], [ 145.629602, 14.936159 ], [ 145.629582, 14.936264 ], [ 145.629596, 14.936446 ], [ 145.62964, 14.936499 ], [ 145.629689, 14.936518 ], [ 145.629698, 14.936547 ], [ 145.629752, 14.936662 ], [ 145.629796, 14.936672 ], [ 145.629835, 14.936643 ], [ 145.62988, 14.936668 ], [ 145.629864, 14.93673 ], [ 145.629913, 14.936759 ], [ 145.629928, 14.93684 ], [ 145.629927, 14.936931 ], [ 145.629907, 14.937003 ], [ 145.629921, 14.93707 ], [ 145.629951, 14.937113 ], [ 145.629979, 14.937228 ], [ 145.629945, 14.937256 ], [ 145.629934, 14.937376 ], [ 145.629875, 14.937438 ], [ 145.629825, 14.937437 ], [ 145.629791, 14.937466 ], [ 145.629781, 14.937494 ], [ 145.629737, 14.93748 ], [ 145.629692, 14.937499 ], [ 145.629648, 14.937427 ], [ 145.629639, 14.937364 ], [ 145.629604, 14.937374 ], [ 145.62957, 14.937445 ], [ 145.629549, 14.937541 ], [ 145.629519, 14.937646 ], [ 145.62946, 14.937693 ], [ 145.629435, 14.93777 ], [ 145.629479, 14.937832 ], [ 145.629471, 14.937875 ], [ 145.629411, 14.937942 ], [ 145.629313, 14.938008 ], [ 145.62942, 14.93809 ], [ 145.629322, 14.938137 ], [ 145.629253, 14.938161 ], [ 145.629247, 14.938223 ], [ 145.629252, 14.938314 ], [ 145.629271, 14.93841 ], [ 145.62935, 14.938382 ], [ 145.629394, 14.938324 ], [ 145.629399, 14.938377 ], [ 145.629359, 14.93841 ], [ 145.629324, 14.938477 ], [ 145.629329, 14.938544 ], [ 145.629447, 14.938583 ], [ 145.629559, 14.93866 ], [ 145.629623, 14.938699 ], [ 145.629667, 14.93878 ], [ 145.629671, 14.938857 ], [ 145.629755, 14.93892 ], [ 145.629803, 14.938977 ], [ 145.629793, 14.93904 ], [ 145.629744, 14.939058 ], [ 145.629773, 14.939125 ], [ 145.629738, 14.939202 ], [ 145.629733, 14.93925 ], [ 145.62962, 14.939258 ], [ 145.629526, 14.939296 ], [ 145.62956, 14.939349 ], [ 145.629604, 14.939373 ], [ 145.629589, 14.939459 ], [ 145.629633, 14.939493 ], [ 145.629667, 14.939546 ], [ 145.629632, 14.939617 ], [ 145.629568, 14.93967 ], [ 145.629548, 14.939736 ], [ 145.629506, 14.93977 ], [ 145.629466, 14.939817 ], [ 145.629485, 14.939884 ], [ 145.629465, 14.940013 ], [ 145.62944, 14.940051 ], [ 145.62944, 14.940099 ], [ 145.629385, 14.940137 ], [ 145.629355, 14.940204 ], [ 145.62935, 14.940276 ], [ 145.62933, 14.940338 ], [ 145.629261, 14.940366 ], [ 145.629236, 14.940414 ], [ 145.629197, 14.94039 ], [ 145.629108, 14.940346 ], [ 145.629069, 14.94037 ], [ 145.629049, 14.940417 ], [ 145.628995, 14.940441 ], [ 145.62896, 14.940417 ], [ 145.628926, 14.940436 ], [ 145.628925, 14.940512 ], [ 145.628891, 14.940483 ], [ 145.628857, 14.940464 ], [ 145.628856, 14.940526 ], [ 145.628822, 14.940593 ], [ 145.628782, 14.940588 ], [ 145.628737, 14.940679 ], [ 145.628654, 14.940707 ], [ 145.628604, 14.940687 ], [ 145.628625, 14.940621 ], [ 145.628669, 14.940563 ], [ 145.62864, 14.940515 ], [ 145.628547, 14.940505 ], [ 145.628478, 14.940514 ], [ 145.628463, 14.940553 ], [ 145.628428, 14.940624 ], [ 145.628398, 14.9407 ], [ 145.628461, 14.940758 ], [ 145.628498, 14.941151 ], [ 145.62842, 14.94115 ], [ 145.628414, 14.941231 ], [ 145.628443, 14.941308 ], [ 145.628433, 14.941423 ], [ 145.628412, 14.941514 ], [ 145.628441, 14.941581 ], [ 145.628372, 14.941647 ], [ 145.62842, 14.941829 ], [ 145.628442, 14.94193 ], [ 145.628397, 14.941958 ], [ 145.628397, 14.942059 ], [ 145.628421, 14.942116 ], [ 145.628386, 14.942154 ], [ 145.628361, 14.942236 ], [ 145.62842, 14.942279 ], [ 145.628454, 14.942361 ], [ 145.628438, 14.942475 ], [ 145.628364, 14.942465 ], [ 145.628399, 14.942518 ], [ 145.628408, 14.942623 ], [ 145.628378, 14.942676 ], [ 145.628441, 14.942805 ], [ 145.62849, 14.942839 ], [ 145.628475, 14.942911 ], [ 145.62844, 14.94292 ], [ 145.62844, 14.942992 ], [ 145.628493, 14.94314 ], [ 145.628487, 14.943375 ], [ 145.628513, 14.943487 ], [ 145.628525, 14.943502 ], [ 145.628525, 14.943523 ], [ 145.628544, 14.943581 ], [ 145.628578, 14.943662 ], [ 145.628592, 14.943739 ], [ 145.628636, 14.943825 ], [ 145.62867, 14.943864 ], [ 145.628689, 14.944055 ], [ 145.628792, 14.944156 ], [ 145.628786, 14.944223 ], [ 145.628806, 14.944281 ], [ 145.628874, 14.944286 ], [ 145.62881, 14.944381 ], [ 145.628819, 14.944419 ], [ 145.628878, 14.944429 ], [ 145.628878, 14.944544 ], [ 145.628917, 14.944564 ], [ 145.628947, 14.944506 ], [ 145.628986, 14.944531 ], [ 145.628976, 14.944602 ], [ 145.629005, 14.944684 ], [ 145.628979, 14.944735 ], [ 145.629021, 14.944795 ], [ 145.629069, 14.944957 ], [ 145.629069, 14.945005 ], [ 145.629137, 14.945029 ], [ 145.629192, 14.945059 ], [ 145.629265, 14.945209 ], [ 145.629239, 14.945293 ], [ 145.629288, 14.9454 ], [ 145.629305, 14.945556 ], [ 145.629305, 14.94567 ], [ 145.629439, 14.945808 ], [ 145.629481, 14.945904 ], [ 145.629536, 14.945988 ], [ 145.629548, 14.946155 ], [ 145.629578, 14.946227 ], [ 145.629633, 14.946228 ], [ 145.629663, 14.9463 ], [ 145.6297, 14.946425 ], [ 145.629748, 14.946515 ], [ 145.629809, 14.946552 ], [ 145.629852, 14.946671 ], [ 145.629906, 14.946767 ], [ 145.630036, 14.946756 ], [ 145.630084, 14.946834 ], [ 145.630105, 14.947056 ], [ 145.630094, 14.947138 ], [ 145.630082, 14.947235 ], [ 145.630162, 14.947277 ], [ 145.630253, 14.947373 ], [ 145.630308, 14.947445 ], [ 145.630384, 14.94753 ], [ 145.630402, 14.947643 ], [ 145.630395, 14.947781 ], [ 145.63048, 14.947949 ], [ 145.630509, 14.94817 ], [ 145.630632, 14.948284 ], [ 145.63068, 14.948428 ], [ 145.630673, 14.948578 ], [ 145.630678, 14.948703 ], [ 145.630727, 14.948769 ], [ 145.630727, 14.948853 ], [ 145.630707, 14.948966 ], [ 145.630725, 14.949116 ], [ 145.630841, 14.949182 ], [ 145.630841, 14.94926 ], [ 145.630968, 14.949518 ], [ 145.630967, 14.949674 ], [ 145.63101, 14.949734 ], [ 145.631003, 14.949907 ], [ 145.63125, 14.950189 ], [ 145.631261, 14.950327 ], [ 145.63131, 14.950483 ], [ 145.63132, 14.950734 ], [ 145.631387, 14.95095 ], [ 145.631435, 14.951141 ], [ 145.631452, 14.951237 ], [ 145.631507, 14.951351 ], [ 145.631604, 14.951507 ], [ 145.631677, 14.951657 ], [ 145.631677, 14.951788 ], [ 145.631706, 14.951932 ], [ 145.631687, 14.952028 ], [ 145.631664, 14.952255 ], [ 145.631664, 14.952308 ], [ 145.631658, 14.952362 ], [ 145.63162, 14.952434 ], [ 145.631656, 14.952589 ], [ 145.631693, 14.952655 ], [ 145.631686, 14.952739 ], [ 145.63163, 14.952822 ], [ 145.631605, 14.952954 ], [ 145.631567, 14.953001 ], [ 145.631585, 14.953085 ], [ 145.631585, 14.953199 ], [ 145.631535, 14.953181 ], [ 145.63143, 14.953306 ], [ 145.631442, 14.953395 ], [ 145.631417, 14.953503 ], [ 145.631391, 14.95358 ], [ 145.63136, 14.9537 ], [ 145.631304, 14.953813 ], [ 145.631217, 14.953956 ], [ 145.631142, 14.954057 ], [ 145.630932, 14.954301 ], [ 145.630691, 14.954455 ], [ 145.630611, 14.954496 ], [ 145.630373, 14.95471 ], [ 145.630314, 14.954782 ], [ 145.630275, 14.954855 ], [ 145.630632, 14.954851 ], [ 145.631703, 14.954843 ], [ 145.632061, 14.95484 ], [ 145.632108, 14.954984 ], [ 145.632155, 14.955149 ], [ 145.632182, 14.955287 ], [ 145.632198, 14.955365 ], [ 145.632216, 14.955509 ], [ 145.632229, 14.955619 ], [ 145.632255, 14.955836 ], [ 145.632287, 14.956052 ], [ 145.63233, 14.956277 ], [ 145.632399, 14.956661 ], [ 145.632401, 14.95667 ], [ 145.632456, 14.956964 ], [ 145.632507, 14.957112 ], [ 145.632573, 14.957107 ], [ 145.632708, 14.957093 ], [ 145.63331, 14.957034 ], [ 145.633461, 14.95702 ], [ 145.633512, 14.957016 ], [ 145.633902, 14.956979 ], [ 145.634118, 14.956962 ], [ 145.634591, 14.956927 ], [ 145.635937, 14.956811 ], [ 145.636171, 14.956791 ], [ 145.636544, 14.956766 ], [ 145.636626, 14.957703 ], [ 145.636872, 14.960515 ], [ 145.636928, 14.961152 ], [ 145.636956, 14.961453 ], [ 145.636994, 14.961863 ], [ 145.637108, 14.963093 ], [ 145.637147, 14.963504 ], [ 145.637154, 14.963579 ], [ 145.637175, 14.963806 ], [ 145.637182, 14.963882 ], [ 145.63722, 14.964306 ], [ 145.637335, 14.965578 ], [ 145.637375, 14.966002 ], [ 145.637391, 14.966196 ], [ 145.637442, 14.966778 ], [ 145.63746, 14.966973 ], [ 145.63746, 14.966979 ], [ 145.637462, 14.966997 ], [ 145.637463, 14.967004 ], [ 145.637483, 14.967232 ], [ 145.637546, 14.967918 ], [ 145.637567, 14.968147 ], [ 145.637657, 14.968138 ], [ 145.637878, 14.968133 ], [ 145.638138, 14.968129 ], [ 145.63839, 14.968112 ], [ 145.638463, 14.968124 ], [ 145.638545, 14.968181 ], [ 145.638587, 14.96826 ], [ 145.638586, 14.968381 ], [ 145.6386, 14.968416 ], [ 145.638613, 14.968445 ], [ 145.638694, 14.968514 ], [ 145.638744, 14.968586 ], [ 145.638751, 14.968672 ], [ 145.640748, 14.9695 ], [ 145.6412, 14.969828 ], [ 145.641417, 14.969981 ], [ 145.641332, 14.96996 ], [ 145.641287, 14.96995 ], [ 145.641071, 14.969956 ], [ 145.640984, 14.969959 ], [ 145.640626, 14.969982 ], [ 145.640343, 14.970008 ], [ 145.639811, 14.970058 ], [ 145.638826, 14.97014 ], [ 145.638423, 14.970187 ], [ 145.638031, 14.970234 ], [ 145.637784, 14.970235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "69", "COUNTYFP10": "120", "TRACTCE10": "950102", "GEOID10": "69120950102", "NAME10": "9501.02", "NAMELSAD10": "Census Tract 9501.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 7013120, "AWATER10": 0, "INTPTLAT10": "+14.8524263", "INTPTLON10": "+145.5586495" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.532628, 14.833781 ], [ 145.532509, 14.833794 ], [ 145.532522, 14.833856 ], [ 145.532529, 14.833953 ], [ 145.532615, 14.834032 ], [ 145.532648, 14.834099 ], [ 145.532637, 14.834158 ], [ 145.532622, 14.834231 ], [ 145.532615, 14.834317 ], [ 145.532602, 14.834357 ], [ 145.532574, 14.834472 ], [ 145.532569, 14.834562 ], [ 145.532582, 14.834635 ], [ 145.532601, 14.834707 ], [ 145.532661, 14.834707 ], [ 145.532734, 14.834707 ], [ 145.532841, 14.834707 ], [ 145.532926, 14.834741 ], [ 145.532947, 14.834786 ], [ 145.532893, 14.834814 ], [ 145.532827, 14.83482 ], [ 145.532748, 14.834786 ], [ 145.532708, 14.834786 ], [ 145.532636, 14.834819 ], [ 145.532602, 14.834868 ], [ 145.532536, 14.834893 ], [ 145.532522, 14.834946 ], [ 145.532483, 14.834979 ], [ 145.532498, 14.835036 ], [ 145.532559, 14.835087 ], [ 145.532615, 14.835184 ], [ 145.532681, 14.835212 ], [ 145.532847, 14.835264 ], [ 145.532986, 14.835297 ], [ 145.533098, 14.83531 ], [ 145.533231, 14.83531 ], [ 145.533363, 14.835317 ], [ 145.533452, 14.835291 ], [ 145.533509, 14.835277 ], [ 145.533588, 14.835244 ], [ 145.533628, 14.835191 ], [ 145.533675, 14.835125 ], [ 145.533718, 14.835026 ], [ 145.533686, 14.834938 ], [ 145.533675, 14.8348 ], [ 145.533635, 14.834714 ], [ 145.533585, 14.834653 ], [ 145.533555, 14.834608 ], [ 145.533496, 14.834608 ], [ 145.53341, 14.834602 ], [ 145.533319, 14.834627 ], [ 145.533257, 14.834569 ], [ 145.533198, 14.834476 ], [ 145.533198, 14.834425 ], [ 145.53316, 14.834361 ], [ 145.533136, 14.834342 ], [ 145.533073, 14.834292 ], [ 145.532988, 14.834224 ], [ 145.532894, 14.834148 ], [ 145.532871, 14.834086 ], [ 145.532859, 14.83405 ], [ 145.532834, 14.833982 ], [ 145.53284, 14.833907 ], [ 145.532814, 14.83382 ], [ 145.532761, 14.833776 ], [ 145.532728, 14.833761 ], [ 145.532668, 14.833754 ], [ 145.532628, 14.833781 ] ] ], [ [ [ 145.556933, 14.859751 ], [ 145.557003, 14.859778 ], [ 145.557118, 14.859856 ], [ 145.557232, 14.859899 ], [ 145.557338, 14.859977 ], [ 145.557461, 14.86003 ], [ 145.557593, 14.860116 ], [ 145.557717, 14.860126 ], [ 145.557795, 14.860221 ], [ 145.557981, 14.860205 ], [ 145.558087, 14.860205 ], [ 145.558219, 14.860232 ], [ 145.558289, 14.860336 ], [ 145.558386, 14.860362 ], [ 145.558572, 14.860303 ], [ 145.55875, 14.860227 ], [ 145.558846, 14.860279 ], [ 145.559005, 14.8604 ], [ 145.559181, 14.860453 ], [ 145.559233, 14.860531 ], [ 145.559383, 14.860592 ], [ 145.55948, 14.86067 ], [ 145.5597, 14.860791 ], [ 145.559964, 14.860913 ], [ 145.560141, 14.860957 ], [ 145.560282, 14.860907 ], [ 145.560398, 14.86083 ], [ 145.560566, 14.860805 ], [ 145.560734, 14.860798 ], [ 145.560954, 14.860859 ], [ 145.561086, 14.860963 ], [ 145.561492, 14.861043 ], [ 145.561677, 14.861096 ], [ 145.561862, 14.861157 ], [ 145.562012, 14.861227 ], [ 145.562232, 14.861306 ], [ 145.562444, 14.861341 ], [ 145.562647, 14.861394 ], [ 145.562824, 14.861395 ], [ 145.562982, 14.861465 ], [ 145.563167, 14.8615 ], [ 145.563335, 14.861553 ], [ 145.563485, 14.861588 ], [ 145.563643, 14.86165 ], [ 145.56382, 14.861651 ], [ 145.564006, 14.8616 ], [ 145.564147, 14.861635 ], [ 145.564288, 14.861688 ], [ 145.564411, 14.861783 ], [ 145.564649, 14.861888 ], [ 145.564719, 14.861983 ], [ 145.564799, 14.861992 ], [ 145.564852, 14.861941 ], [ 145.564922, 14.861958 ], [ 145.565037, 14.862011 ], [ 145.565133, 14.862114 ], [ 145.565248, 14.862201 ], [ 145.565336, 14.862262 ], [ 145.565326, 14.862322 ], [ 145.565273, 14.862364 ], [ 145.565326, 14.862399 ], [ 145.565405, 14.862477 ], [ 145.565387, 14.862537 ], [ 145.565439, 14.862606 ], [ 145.565554, 14.862624 ], [ 145.565624, 14.862684 ], [ 145.565871, 14.862875 ], [ 145.56594, 14.863056 ], [ 145.566054, 14.863125 ], [ 145.566169, 14.863212 ], [ 145.566239, 14.863281 ], [ 145.566291, 14.86341 ], [ 145.56637, 14.863514 ], [ 145.566502, 14.863558 ], [ 145.566546, 14.863644 ], [ 145.56658, 14.863747 ], [ 145.566527, 14.863824 ], [ 145.566571, 14.863885 ], [ 145.566632, 14.863954 ], [ 145.566773, 14.864075 ], [ 145.566754, 14.86417 ], [ 145.56671, 14.864238 ], [ 145.566709, 14.864298 ], [ 145.566806, 14.86435 ], [ 145.566912, 14.864394 ], [ 145.567027, 14.864395 ], [ 145.56708, 14.864361 ], [ 145.567226, 14.864386 ], [ 145.56723, 14.864387 ], [ 145.567318, 14.864379 ], [ 145.56731, 14.864268 ], [ 145.567381, 14.864268 ], [ 145.567487, 14.864277 ], [ 145.567637, 14.864338 ], [ 145.567646, 14.864287 ], [ 145.567646, 14.864201 ], [ 145.567753, 14.864141 ], [ 145.567771, 14.864107 ], [ 145.567876, 14.864185 ], [ 145.567982, 14.864297 ], [ 145.568079, 14.864324 ], [ 145.568193, 14.86435 ], [ 145.568308, 14.864394 ], [ 145.56844, 14.864464 ], [ 145.568493, 14.864438 ], [ 145.568581, 14.86443 ], [ 145.568855, 14.864432 ], [ 145.568979, 14.864407 ], [ 145.569094, 14.864373 ], [ 145.569271, 14.864443 ], [ 145.569342, 14.864366 ], [ 145.569351, 14.864289 ], [ 145.569546, 14.864264 ], [ 145.569669, 14.864308 ], [ 145.569783, 14.864369 ], [ 145.569924, 14.86443 ], [ 145.570003, 14.864508 ], [ 145.570073, 14.864594 ], [ 145.570117, 14.864689 ], [ 145.570187, 14.864732 ], [ 145.570319, 14.864802 ], [ 145.570381, 14.864854 ], [ 145.57038, 14.864931 ], [ 145.570531, 14.864923 ], [ 145.570663, 14.864933 ], [ 145.570795, 14.864969 ], [ 145.57086, 14.864969 ], [ 145.570938, 14.864945 ], [ 145.571022, 14.864975 ], [ 145.571158, 14.864981 ], [ 145.571266, 14.865019 ], [ 145.571369, 14.865009 ], [ 145.571396, 14.865088 ], [ 145.571422, 14.865225 ], [ 145.571568, 14.865295 ], [ 145.571692, 14.865412 ], [ 145.571737, 14.86549 ], [ 145.571781, 14.865516 ], [ 145.571923, 14.865516 ], [ 145.571975, 14.865594 ], [ 145.571983, 14.865706 ], [ 145.572036, 14.865809 ], [ 145.572177, 14.865845 ], [ 145.572327, 14.865854 ], [ 145.572415, 14.865872 ], [ 145.572627, 14.865873 ], [ 145.572822, 14.865866 ], [ 145.57291, 14.865832 ], [ 145.572999, 14.865747 ], [ 145.57307, 14.865756 ], [ 145.572999, 14.865807 ], [ 145.572963, 14.865875 ], [ 145.573015, 14.865962 ], [ 145.573121, 14.865971 ], [ 145.57305, 14.866065 ], [ 145.572935, 14.866159 ], [ 145.572881, 14.866218 ], [ 145.57288, 14.866339 ], [ 145.572933, 14.866391 ], [ 145.572959, 14.866485 ], [ 145.573145, 14.866469 ], [ 145.573251, 14.866401 ], [ 145.573375, 14.86629 ], [ 145.5735, 14.866188 ], [ 145.573633, 14.866137 ], [ 145.573774, 14.866104 ], [ 145.573863, 14.866044 ], [ 145.573996, 14.865993 ], [ 145.574155, 14.866029 ], [ 145.574287, 14.866012 ], [ 145.574411, 14.865979 ], [ 145.574526, 14.865928 ], [ 145.574659, 14.865851 ], [ 145.57481, 14.865775 ], [ 145.574978, 14.865707 ], [ 145.575112, 14.865614 ], [ 145.575191, 14.865588 ], [ 145.575403, 14.865555 ], [ 145.575571, 14.865548 ], [ 145.575678, 14.865488 ], [ 145.575837, 14.865429 ], [ 145.575952, 14.865335 ], [ 145.575962, 14.865327 ], [ 145.576095, 14.86525 ], [ 145.576218, 14.865242 ], [ 145.576377, 14.865243 ], [ 145.576607, 14.86521 ], [ 145.576714, 14.86516 ], [ 145.576785, 14.865091 ], [ 145.576856, 14.865032 ], [ 145.576971, 14.864989 ], [ 145.577078, 14.864913 ], [ 145.57721, 14.864896 ], [ 145.577237, 14.864836 ], [ 145.57729, 14.864785 ], [ 145.577362, 14.864674 ], [ 145.577442, 14.86458 ], [ 145.577575, 14.864469 ], [ 145.577611, 14.864426 ], [ 145.577753, 14.864307 ], [ 145.577789, 14.864255 ], [ 145.577834, 14.864118 ], [ 145.578021, 14.863879 ], [ 145.578128, 14.863725 ], [ 145.578146, 14.863673 ], [ 145.578119, 14.863573 ], [ 145.578078, 14.863482 ], [ 145.578095, 14.863278 ], [ 145.578191, 14.863243 ], [ 145.578126, 14.863158 ], [ 145.578178, 14.863074 ], [ 145.578286, 14.862977 ], [ 145.578412, 14.862877 ], [ 145.578488, 14.862687 ], [ 145.578438, 14.862573 ], [ 145.57838, 14.862401 ], [ 145.578359, 14.862205 ], [ 145.578456, 14.862137 ], [ 145.578421, 14.862051 ], [ 145.578457, 14.861982 ], [ 145.578546, 14.861906 ], [ 145.578671, 14.861786 ], [ 145.578715, 14.8617 ], [ 145.578725, 14.861503 ], [ 145.578691, 14.861425 ], [ 145.578744, 14.8614 ], [ 145.578771, 14.861254 ], [ 145.578693, 14.861133 ], [ 145.57887, 14.861031 ], [ 145.578897, 14.86098 ], [ 145.578862, 14.860876 ], [ 145.578872, 14.860782 ], [ 145.578872, 14.860679 ], [ 145.578944, 14.860585 ], [ 145.578882, 14.860498 ], [ 145.578989, 14.860413 ], [ 145.57899, 14.860207 ], [ 145.578911, 14.860155 ], [ 145.578752, 14.860111 ], [ 145.578629, 14.860041 ], [ 145.578514, 14.860092 ], [ 145.578435, 14.85998 ], [ 145.578401, 14.859834 ], [ 145.578366, 14.859722 ], [ 145.578287, 14.859618 ], [ 145.578146, 14.859495 ], [ 145.578036, 14.859329 ], [ 145.577951, 14.85916 ], [ 145.577788, 14.859051 ], [ 145.577803, 14.85898 ], [ 145.577962, 14.858981 ], [ 145.577994, 14.858921 ], [ 145.577848, 14.858913 ], [ 145.577775, 14.858916 ], [ 145.577752, 14.858814 ], [ 145.57768, 14.858699 ], [ 145.577773, 14.858717 ], [ 145.577804, 14.858781 ], [ 145.577942, 14.858816 ], [ 145.578061, 14.858789 ], [ 145.578144, 14.858685 ], [ 145.578093, 14.858591 ], [ 145.578034, 14.858553 ], [ 145.578056, 14.858381 ], [ 145.578112, 14.858385 ], [ 145.578118, 14.858291 ], [ 145.578075, 14.858209 ], [ 145.578041, 14.858125 ], [ 145.577996, 14.858064 ], [ 145.578073, 14.85797 ], [ 145.578084, 14.857872 ], [ 145.578096, 14.857649 ], [ 145.578055, 14.857558 ], [ 145.57809, 14.857514 ], [ 145.578084, 14.857359 ], [ 145.57815, 14.857339 ], [ 145.578178, 14.857296 ], [ 145.578112, 14.857272 ], [ 145.578074, 14.857201 ], [ 145.57804, 14.857116 ], [ 145.578134, 14.857029 ], [ 145.578146, 14.85685 ], [ 145.578102, 14.856722 ], [ 145.578089, 14.85659 ], [ 145.578031, 14.856479 ], [ 145.577923, 14.856485 ], [ 145.577833, 14.856437 ], [ 145.577768, 14.856396 ], [ 145.577747, 14.856325 ], [ 145.577789, 14.856278 ], [ 145.5778, 14.856217 ], [ 145.577842, 14.85612 ], [ 145.577784, 14.856045 ], [ 145.577739, 14.85592 ], [ 145.577653, 14.855842 ], [ 145.57758, 14.855672 ], [ 145.577578, 14.855666 ], [ 145.577582, 14.855563 ], [ 145.577534, 14.855541 ], [ 145.577531, 14.855501 ], [ 145.577475, 14.85547 ], [ 145.577474, 14.855399 ], [ 145.577469, 14.855352 ], [ 145.577431, 14.855345 ], [ 145.577425, 14.85526 ], [ 145.577394, 14.855213 ], [ 145.577388, 14.855102 ], [ 145.577315, 14.855074 ], [ 145.577298, 14.855007 ], [ 145.577319, 14.854946 ], [ 145.577448, 14.854927 ], [ 145.577462, 14.854863 ], [ 145.577386, 14.854805 ], [ 145.577238, 14.854639 ], [ 145.577152, 14.85452 ], [ 145.577056, 14.854374 ], [ 145.57696, 14.854219 ], [ 145.576905, 14.854168 ], [ 145.57686, 14.854161 ], [ 145.576794, 14.854116 ], [ 145.576695, 14.85391 ], [ 145.576581, 14.853832 ], [ 145.576502, 14.853767 ], [ 145.576467, 14.853689 ], [ 145.576288, 14.853493 ], [ 145.576202, 14.853482 ], [ 145.576087, 14.853508 ], [ 145.575941, 14.853521 ], [ 145.575914, 14.853473 ], [ 145.575838, 14.853473 ], [ 145.575727, 14.853418 ], [ 145.575636, 14.853485 ], [ 145.575532, 14.853596 ], [ 145.575455, 14.853663 ], [ 145.575349, 14.853722 ], [ 145.575392, 14.853791 ], [ 145.575392, 14.853903 ], [ 145.575444, 14.854024 ], [ 145.575452, 14.854135 ], [ 145.575416, 14.854161 ], [ 145.575381, 14.854135 ], [ 145.575345, 14.854212 ], [ 145.575293, 14.85404 ], [ 145.575119, 14.853738 ], [ 145.575049, 14.8536 ], [ 145.575005, 14.853497 ], [ 145.575024, 14.853359 ], [ 145.575007, 14.85323 ], [ 145.574965, 14.852981 ], [ 145.574948, 14.852818 ], [ 145.574896, 14.852645 ], [ 145.574773, 14.852541 ], [ 145.574714, 14.852402 ], [ 145.574704, 14.852378 ], [ 145.574625, 14.85224 ], [ 145.574502, 14.852102 ], [ 145.574371, 14.851972 ], [ 145.574292, 14.851765 ], [ 145.574222, 14.851696 ], [ 145.573941, 14.851514 ], [ 145.573809, 14.851375 ], [ 145.573704, 14.851254 ], [ 145.573607, 14.851185 ], [ 145.573502, 14.85103 ], [ 145.573405, 14.851012 ], [ 145.573361, 14.850977 ], [ 145.573212, 14.850822 ], [ 145.573107, 14.850735 ], [ 145.573001, 14.8507 ], [ 145.57293, 14.850657 ], [ 145.572816, 14.85057 ], [ 145.572693, 14.850501 ], [ 145.57257, 14.850371 ], [ 145.572473, 14.850319 ], [ 145.572368, 14.850206 ], [ 145.572165, 14.850136 ], [ 145.572069, 14.85005 ], [ 145.571954, 14.850041 ], [ 145.571813, 14.849988 ], [ 145.57161, 14.849867 ], [ 145.571523, 14.849754 ], [ 145.571364, 14.849693 ], [ 145.571259, 14.849624 ], [ 145.571074, 14.849485 ], [ 145.570925, 14.849321 ], [ 145.570837, 14.849234 ], [ 145.5706, 14.849096 ], [ 145.570503, 14.848983 ], [ 145.570353, 14.848896 ], [ 145.570186, 14.848818 ], [ 145.570063, 14.848723 ], [ 145.569913, 14.84867 ], [ 145.569755, 14.848532 ], [ 145.569614, 14.848445 ], [ 145.569404, 14.848203 ], [ 145.569228, 14.848133 ], [ 145.569131, 14.848081 ], [ 145.568981, 14.848037 ], [ 145.568928, 14.848002 ], [ 145.568787, 14.847959 ], [ 145.568655, 14.847949 ], [ 145.568549, 14.847871 ], [ 145.568488, 14.847742 ], [ 145.568427, 14.847638 ], [ 145.568322, 14.847517 ], [ 145.568181, 14.847474 ], [ 145.568093, 14.847336 ], [ 145.567953, 14.847249 ], [ 145.567847, 14.847119 ], [ 145.56768, 14.847101 ], [ 145.567583, 14.847075 ], [ 145.567477, 14.847065 ], [ 145.567362, 14.846987 ], [ 145.567345, 14.846901 ], [ 145.567188, 14.84666 ], [ 145.567171, 14.846556 ], [ 145.5671, 14.846573 ], [ 145.567039, 14.846504 ], [ 145.566995, 14.846392 ], [ 145.566899, 14.846323 ], [ 145.566802, 14.846296 ], [ 145.56674, 14.846227 ], [ 145.566679, 14.846081 ], [ 145.566573, 14.846089 ], [ 145.566467, 14.846088 ], [ 145.566318, 14.845889 ], [ 145.566257, 14.845889 ], [ 145.566133, 14.845828 ], [ 145.566054, 14.845767 ], [ 145.566064, 14.845639 ], [ 145.565949, 14.845569 ], [ 145.565791, 14.845482 ], [ 145.565623, 14.845447 ], [ 145.565492, 14.845291 ], [ 145.565377, 14.845273 ], [ 145.565289, 14.84517 ], [ 145.565201, 14.845143 ], [ 145.56506, 14.845108 ], [ 145.564981, 14.84503 ], [ 145.564849, 14.844961 ], [ 145.564761, 14.844866 ], [ 145.564709, 14.844848 ], [ 145.564665, 14.844796 ], [ 145.564665, 14.84471 ], [ 145.564595, 14.844693 ], [ 145.564515, 14.844752 ], [ 145.564471, 14.844709 ], [ 145.564382, 14.84476 ], [ 145.564232, 14.844768 ], [ 145.564039, 14.844612 ], [ 145.56388, 14.844517 ], [ 145.563748, 14.844498 ], [ 145.563731, 14.844421 ], [ 145.563669, 14.844369 ], [ 145.563616, 14.844395 ], [ 145.563545, 14.844394 ], [ 145.563511, 14.844325 ], [ 145.563404, 14.84435 ], [ 145.563396, 14.844299 ], [ 145.563414, 14.844196 ], [ 145.563352, 14.844187 ], [ 145.563308, 14.844204 ], [ 145.563237, 14.844238 ], [ 145.563185, 14.844186 ], [ 145.563123, 14.844185 ], [ 145.562973, 14.844141 ], [ 145.562867, 14.844115 ], [ 145.562823, 14.844063 ], [ 145.562833, 14.843969 ], [ 145.562807, 14.843891 ], [ 145.562683, 14.843873 ], [ 145.562533, 14.843881 ], [ 145.562436, 14.843863 ], [ 145.562286, 14.843853 ], [ 145.562276, 14.843922 ], [ 145.562311, 14.844017 ], [ 145.562373, 14.844017 ], [ 145.562125, 14.844136 ], [ 145.562011, 14.844049 ], [ 145.561949, 14.844066 ], [ 145.561869, 14.844143 ], [ 145.561728, 14.844108 ], [ 145.561656, 14.844167 ], [ 145.561542, 14.844167 ], [ 145.561489, 14.844115 ], [ 145.561525, 14.844064 ], [ 145.561499, 14.844003 ], [ 145.56141, 14.843985 ], [ 145.561339, 14.844054 ], [ 145.561251, 14.844079 ], [ 145.561197, 14.844139 ], [ 145.561091, 14.844138 ], [ 145.56103, 14.844103 ], [ 145.560907, 14.844 ], [ 145.560765, 14.844016 ], [ 145.56065, 14.844015 ], [ 145.560562, 14.844023 ], [ 145.560438, 14.8441 ], [ 145.560296, 14.844168 ], [ 145.560217, 14.84415 ], [ 145.560093, 14.844192 ], [ 145.56003, 14.844295 ], [ 145.559906, 14.844294 ], [ 145.559783, 14.844302 ], [ 145.55973, 14.844267 ], [ 145.559641, 14.84431 ], [ 145.5595, 14.844386 ], [ 145.559332, 14.844308 ], [ 145.559261, 14.844393 ], [ 145.55926, 14.84447 ], [ 145.55918, 14.844547 ], [ 145.559075, 14.844495 ], [ 145.559004, 14.844452 ], [ 145.558934, 14.844451 ], [ 145.558863, 14.844391 ], [ 145.55866, 14.844398 ], [ 145.55859, 14.844346 ], [ 145.558475, 14.844354 ], [ 145.558342, 14.844353 ], [ 145.558308, 14.844258 ], [ 145.558361, 14.844164 ], [ 145.558362, 14.84407 ], [ 145.558291, 14.84406 ], [ 145.558222, 14.843897 ], [ 145.558204, 14.843957 ], [ 145.558141, 14.844077 ], [ 145.558106, 14.844016 ], [ 145.558054, 14.843913 ], [ 145.557948, 14.843921 ], [ 145.55786, 14.843894 ], [ 145.557841, 14.84398 ], [ 145.557814, 14.844075 ], [ 145.557762, 14.84398 ], [ 145.557683, 14.843928 ], [ 145.557576, 14.843979 ], [ 145.557506, 14.84397 ], [ 145.557391, 14.844029 ], [ 145.557365, 14.843943 ], [ 145.557197, 14.843899 ], [ 145.557091, 14.843933 ], [ 145.557134, 14.844019 ], [ 145.557073, 14.84401 ], [ 145.55694, 14.844052 ], [ 145.55679, 14.844068 ], [ 145.556649, 14.843999 ], [ 145.556578, 14.844015 ], [ 145.556445, 14.844006 ], [ 145.556331, 14.844005 ], [ 145.556305, 14.843919 ], [ 145.556305, 14.843825 ], [ 145.556359, 14.843748 ], [ 145.556262, 14.843678 ], [ 145.556226, 14.843747 ], [ 145.556164, 14.843807 ], [ 145.556032, 14.843797 ], [ 145.556121, 14.843677 ], [ 145.556006, 14.843599 ], [ 145.555918, 14.843599 ], [ 145.555812, 14.843615 ], [ 145.555891, 14.843702 ], [ 145.555881, 14.843839 ], [ 145.555766, 14.843959 ], [ 145.555695, 14.84401 ], [ 145.555509, 14.844009 ], [ 145.555395, 14.843922 ], [ 145.555298, 14.843818 ], [ 145.555184, 14.843714 ], [ 145.55507, 14.843645 ], [ 145.554885, 14.843592 ], [ 145.554814, 14.84354 ], [ 145.554744, 14.843454 ], [ 145.554639, 14.843376 ], [ 145.554613, 14.84329 ], [ 145.554508, 14.843109 ], [ 145.554411, 14.843099 ], [ 145.554438, 14.842988 ], [ 145.554323, 14.842987 ], [ 145.554248, 14.843 ], [ 145.554148, 14.843078 ], [ 145.554082, 14.843004 ], [ 145.554105, 14.84298 ], [ 145.554149, 14.842952 ], [ 145.554183, 14.842855 ], [ 145.554141, 14.842788 ], [ 145.554075, 14.842749 ], [ 145.554009, 14.842753 ], [ 145.553966, 14.84281 ], [ 145.554005, 14.842849 ], [ 145.55406, 14.842846 ], [ 145.554075, 14.842911 ], [ 145.554066, 14.842979 ], [ 145.55405, 14.842969 ], [ 145.554007, 14.842927 ], [ 145.553882, 14.842916 ], [ 145.553739, 14.843112 ], [ 145.553589, 14.843111 ], [ 145.553483, 14.843137 ], [ 145.553395, 14.843024 ], [ 145.553264, 14.842895 ], [ 145.55323, 14.842697 ], [ 145.553142, 14.842645 ], [ 145.553062, 14.842636 ], [ 145.553079, 14.84273 ], [ 145.55314, 14.842842 ], [ 145.553087, 14.842919 ], [ 145.552964, 14.842867 ], [ 145.552885, 14.842798 ], [ 145.552814, 14.842729 ], [ 145.552824, 14.842582 ], [ 145.552674, 14.842582 ], [ 145.552568, 14.842632 ], [ 145.552497, 14.842684 ], [ 145.552382, 14.842605 ], [ 145.552285, 14.842605 ], [ 145.552197, 14.842579 ], [ 145.5521, 14.842501 ], [ 145.552011, 14.842586 ], [ 145.551906, 14.842491 ], [ 145.551836, 14.842396 ], [ 145.551695, 14.842335 ], [ 145.55158, 14.842291 ], [ 145.551519, 14.842239 ], [ 145.551333, 14.842238 ], [ 145.551219, 14.842254 ], [ 145.551086, 14.842219 ], [ 145.550979, 14.842347 ], [ 145.550829, 14.842355 ], [ 145.550696, 14.842389 ], [ 145.550503, 14.84225 ], [ 145.550318, 14.842163 ], [ 145.550195, 14.842119 ], [ 145.549957, 14.842057 ], [ 145.549904, 14.841971 ], [ 145.549675, 14.841953 ], [ 145.549569, 14.841857 ], [ 145.54949, 14.84184 ], [ 145.549429, 14.841779 ], [ 145.54942, 14.84177 ], [ 145.549411, 14.841693 ], [ 145.549279, 14.841709 ], [ 145.549217, 14.841649 ], [ 145.549138, 14.841588 ], [ 145.549236, 14.84152 ], [ 145.549157, 14.841434 ], [ 145.549033, 14.841476 ], [ 145.5489, 14.841552 ], [ 145.548794, 14.841552 ], [ 145.548679, 14.841499 ], [ 145.548618, 14.841387 ], [ 145.548539, 14.841352 ], [ 145.548433, 14.841317 ], [ 145.548328, 14.841196 ], [ 145.548231, 14.84117 ], [ 145.548152, 14.841084 ], [ 145.548037, 14.841083 ], [ 145.547958, 14.841031 ], [ 145.547915, 14.840884 ], [ 145.547844, 14.840918 ], [ 145.547738, 14.840918 ], [ 145.547588, 14.840925 ], [ 145.547499, 14.840942 ], [ 145.547456, 14.840864 ], [ 145.547323, 14.840864 ], [ 145.547235, 14.840872 ], [ 145.547192, 14.840708 ], [ 145.547015, 14.840707 ], [ 145.546935, 14.840758 ], [ 145.546856, 14.840723 ], [ 145.546776, 14.840783 ], [ 145.546626, 14.840687 ], [ 145.54652, 14.840712 ], [ 145.546485, 14.840686 ], [ 145.546433, 14.840626 ], [ 145.546371, 14.840574 ], [ 145.546309, 14.840599 ], [ 145.54608, 14.840529 ], [ 145.545903, 14.840554 ], [ 145.545576, 14.840509 ], [ 145.545489, 14.840448 ], [ 145.5454, 14.840456 ], [ 145.545208, 14.840628 ], [ 145.544937, 14.840604 ], [ 145.544843, 14.840603 ], [ 145.544666, 14.840625 ], [ 145.544584, 14.84059 ], [ 145.544478, 14.840509 ], [ 145.544407, 14.840554 ], [ 145.544312, 14.840645 ], [ 145.544288, 14.840714 ], [ 145.54417, 14.840748 ], [ 145.544112, 14.840724 ], [ 145.544041, 14.840655 ], [ 145.543947, 14.840655 ], [ 145.543806, 14.840631 ], [ 145.5437, 14.84063 ], [ 145.543558, 14.840652 ], [ 145.543428, 14.840732 ], [ 145.543393, 14.840685 ], [ 145.543429, 14.840617 ], [ 145.543347, 14.840548 ], [ 145.543265, 14.840536 ], [ 145.543146, 14.840615 ], [ 145.54304, 14.840656 ], [ 145.542952, 14.840681 ], [ 145.542854, 14.840715 ], [ 145.542809, 14.840705 ], [ 145.542775, 14.840697 ], [ 145.542633, 14.84068 ], [ 145.542494, 14.840715 ], [ 145.542382, 14.840687 ], [ 145.542298, 14.840741 ], [ 145.542298, 14.840804 ], [ 145.542112, 14.840885 ], [ 145.542018, 14.840947 ], [ 145.54199, 14.841038 ], [ 145.541924, 14.8411 ], [ 145.541924, 14.841164 ], [ 145.54197, 14.841227 ], [ 145.541978, 14.841336 ], [ 145.542052, 14.841436 ], [ 145.541959, 14.841435 ], [ 145.541904, 14.841326 ], [ 145.541849, 14.84129 ], [ 145.541756, 14.841244 ], [ 145.541691, 14.841189 ], [ 145.541571, 14.841189 ], [ 145.541552, 14.841116 ], [ 145.541525, 14.84108 ], [ 145.54146, 14.841061 ], [ 145.541441, 14.841124 ], [ 145.541487, 14.841197 ], [ 145.541403, 14.841187 ], [ 145.541366, 14.84116 ], [ 145.54132, 14.841069 ], [ 145.540967, 14.841185 ], [ 145.540967, 14.841149 ], [ 145.540921, 14.841085 ], [ 145.540734, 14.841237 ], [ 145.540641, 14.8413 ], [ 145.540631, 14.84139 ], [ 145.54051, 14.84139 ], [ 145.540427, 14.841308 ], [ 145.540361, 14.841353 ], [ 145.54037, 14.841407 ], [ 145.540351, 14.84147 ], [ 145.540416, 14.841516 ], [ 145.540443, 14.841597 ], [ 145.540536, 14.841616 ], [ 145.540332, 14.841651 ], [ 145.540164, 14.841668 ], [ 145.540006, 14.841676 ], [ 145.539867, 14.841702 ], [ 145.539727, 14.841701 ], [ 145.539653, 14.841683 ], [ 145.539569, 14.841718 ], [ 145.539457, 14.841772 ], [ 145.539355, 14.841753 ], [ 145.539318, 14.841807 ], [ 145.539289, 14.841897 ], [ 145.539205, 14.841951 ], [ 145.539177, 14.842023 ], [ 145.539223, 14.842114 ], [ 145.539158, 14.842077 ], [ 145.539056, 14.842076 ], [ 145.53899, 14.842139 ], [ 145.538943, 14.842275 ], [ 145.538839, 14.842491 ], [ 145.538698, 14.842698 ], [ 145.538605, 14.842815 ], [ 145.538456, 14.842886 ], [ 145.538427, 14.842931 ], [ 145.53839, 14.843012 ], [ 145.538389, 14.843175 ], [ 145.538332, 14.843238 ], [ 145.538332, 14.843292 ], [ 145.538276, 14.843319 ], [ 145.53822, 14.843318 ], [ 145.538183, 14.843372 ], [ 145.538164, 14.843472 ], [ 145.538191, 14.843553 ], [ 145.538209, 14.843671 ], [ 145.538143, 14.843716 ], [ 145.53806, 14.843742 ], [ 145.537976, 14.843733 ], [ 145.537855, 14.84375 ], [ 145.537734, 14.843758 ], [ 145.537725, 14.843776 ], [ 145.537734, 14.843858 ], [ 145.537761, 14.843957 ], [ 145.537806, 14.844075 ], [ 145.537806, 14.844184 ], [ 145.537815, 14.844238 ], [ 145.537749, 14.844283 ], [ 145.537712, 14.844237 ], [ 145.537564, 14.844191 ], [ 145.53748, 14.844227 ], [ 145.537489, 14.844299 ], [ 145.537489, 14.844362 ], [ 145.537534, 14.844489 ], [ 145.537543, 14.84458 ], [ 145.537533, 14.844679 ], [ 145.537458, 14.844733 ], [ 145.537421, 14.844787 ], [ 145.537383, 14.844904 ], [ 145.537382, 14.845076 ], [ 145.537353, 14.845112 ], [ 145.53739, 14.845193 ], [ 145.537436, 14.845266 ], [ 145.537454, 14.845338 ], [ 145.537509, 14.845411 ], [ 145.537528, 14.845474 ], [ 145.537481, 14.845483 ], [ 145.537434, 14.845501 ], [ 145.537397, 14.845464 ], [ 145.537295, 14.845491 ], [ 145.537257, 14.845563 ], [ 145.537266, 14.845672 ], [ 145.537414, 14.845817 ], [ 145.537478, 14.845908 ], [ 145.537515, 14.845989 ], [ 145.53757, 14.846071 ], [ 145.537616, 14.846189 ], [ 145.537455, 14.846232 ], [ 145.537498, 14.846352 ], [ 145.537642, 14.846388 ], [ 145.537697, 14.846461 ], [ 145.537743, 14.846551 ], [ 145.537669, 14.846605 ], [ 145.537733, 14.846714 ], [ 145.537686, 14.846786 ], [ 145.537685, 14.846876 ], [ 145.537842, 14.847076 ], [ 145.53786, 14.847149 ], [ 145.537971, 14.847176 ], [ 145.537971, 14.847249 ], [ 145.537859, 14.847302 ], [ 145.537785, 14.84732 ], [ 145.537691, 14.847364 ], [ 145.537654, 14.847464 ], [ 145.537728, 14.847491 ], [ 145.53782, 14.847564 ], [ 145.537941, 14.847583 ], [ 145.537959, 14.847646 ], [ 145.537921, 14.847727 ], [ 145.537921, 14.8478 ], [ 145.537938, 14.847926 ], [ 145.537984, 14.848017 ], [ 145.53803, 14.848126 ], [ 145.538057, 14.848244 ], [ 145.538131, 14.848325 ], [ 145.538205, 14.848416 ], [ 145.538287, 14.84857 ], [ 145.538334, 14.848589 ], [ 145.538342, 14.848679 ], [ 145.538398, 14.848707 ], [ 145.538462, 14.848888 ], [ 145.538489, 14.849033 ], [ 145.538543, 14.849169 ], [ 145.53859, 14.849223 ], [ 145.538589, 14.849295 ], [ 145.538552, 14.84934 ], [ 145.538579, 14.84944 ], [ 145.538643, 14.849576 ], [ 145.538689, 14.849658 ], [ 145.538698, 14.849748 ], [ 145.538697, 14.849866 ], [ 145.538761, 14.849993 ], [ 145.538788, 14.850083 ], [ 145.538825, 14.850092 ], [ 145.538853, 14.850138 ], [ 145.538861, 14.850237 ], [ 145.539003, 14.85041 ], [ 145.539018, 14.850428 ], [ 145.539138, 14.850519 ], [ 145.539231, 14.850574 ], [ 145.539249, 14.850665 ], [ 145.539277, 14.850674 ], [ 145.539304, 14.850737 ], [ 145.539322, 14.850837 ], [ 145.539303, 14.850963 ], [ 145.539376, 14.851063 ], [ 145.539487, 14.851172 ], [ 145.539617, 14.851254 ], [ 145.539691, 14.85129 ], [ 145.539762, 14.851351 ], [ 145.539796, 14.851557 ], [ 145.539865, 14.851678 ], [ 145.539953, 14.851773 ], [ 145.54005, 14.851834 ], [ 145.540164, 14.851912 ], [ 145.540181, 14.852024 ], [ 145.540172, 14.852118 ], [ 145.540259, 14.852222 ], [ 145.540321, 14.852308 ], [ 145.540338, 14.852385 ], [ 145.540346, 14.852454 ], [ 145.540328, 14.85254 ], [ 145.540416, 14.852609 ], [ 145.540407, 14.852661 ], [ 145.54038, 14.852738 ], [ 145.540564, 14.85292 ], [ 145.540678, 14.852981 ], [ 145.540873, 14.852982 ], [ 145.541067, 14.853009 ], [ 145.54119, 14.853053 ], [ 145.541384, 14.853105 ], [ 145.541455, 14.853132 ], [ 145.541516, 14.853209 ], [ 145.541825, 14.853306 ], [ 145.541948, 14.853307 ], [ 145.54208, 14.853453 ], [ 145.542159, 14.85348 ], [ 145.542406, 14.853584 ], [ 145.542485, 14.853645 ], [ 145.542635, 14.85368 ], [ 145.542723, 14.853715 ], [ 145.542802, 14.853733 ], [ 145.542979, 14.853811 ], [ 145.543066, 14.853907 ], [ 145.543137, 14.853959 ], [ 145.543366, 14.85396 ], [ 145.543463, 14.854038 ], [ 145.543665, 14.854151 ], [ 145.543779, 14.854255 ], [ 145.543805, 14.854332 ], [ 145.543858, 14.854358 ], [ 145.543981, 14.854428 ], [ 145.544123, 14.854429 ], [ 145.544211, 14.854515 ], [ 145.544325, 14.85455 ], [ 145.544493, 14.854629 ], [ 145.544616, 14.854698 ], [ 145.544704, 14.854699 ], [ 145.544801, 14.854768 ], [ 145.544836, 14.854837 ], [ 145.544897, 14.854872 ], [ 145.544985, 14.854941 ], [ 145.54502, 14.855036 ], [ 145.545028, 14.855131 ], [ 145.545116, 14.855234 ], [ 145.545222, 14.855261 ], [ 145.545363, 14.855287 ], [ 145.545469, 14.855288 ], [ 145.545601, 14.85528 ], [ 145.545716, 14.855333 ], [ 145.545848, 14.855351 ], [ 145.545972, 14.855386 ], [ 145.546166, 14.855404 ], [ 145.546245, 14.855439 ], [ 145.546342, 14.855534 ], [ 145.546447, 14.855586 ], [ 145.546526, 14.855656 ], [ 145.546632, 14.855682 ], [ 145.54672, 14.855734 ], [ 145.546896, 14.855804 ], [ 145.546985, 14.85583 ], [ 145.54709, 14.855883 ], [ 145.547161, 14.855883 ], [ 145.547338, 14.855901 ], [ 145.547558, 14.855894 ], [ 145.547664, 14.855929 ], [ 145.547788, 14.855956 ], [ 145.547815, 14.855844 ], [ 145.547877, 14.85587 ], [ 145.547973, 14.855948 ], [ 145.548238, 14.85595 ], [ 145.548477, 14.85596 ], [ 145.548618, 14.855978 ], [ 145.548803, 14.856022 ], [ 145.548971, 14.856101 ], [ 145.549111, 14.856213 ], [ 145.549279, 14.856214 ], [ 145.54957, 14.856276 ], [ 145.549712, 14.856277 ], [ 145.549835, 14.856321 ], [ 145.549967, 14.856391 ], [ 145.550347, 14.856333 ], [ 145.550453, 14.856385 ], [ 145.55062, 14.856446 ], [ 145.550797, 14.856525 ], [ 145.550972, 14.856638 ], [ 145.551158, 14.85669 ], [ 145.551228, 14.856777 ], [ 145.55143, 14.856898 ], [ 145.551562, 14.857002 ], [ 145.551685, 14.857106 ], [ 145.551843, 14.857193 ], [ 145.551949, 14.857219 ], [ 145.552152, 14.857324 ], [ 145.552399, 14.857411 ], [ 145.552539, 14.85749 ], [ 145.552671, 14.857602 ], [ 145.552724, 14.857663 ], [ 145.552839, 14.857663 ], [ 145.552953, 14.85775 ], [ 145.553068, 14.857751 ], [ 145.553226, 14.85782 ], [ 145.553455, 14.857899 ], [ 145.553544, 14.857917 ], [ 145.553658, 14.857969 ], [ 145.553658, 14.858047 ], [ 145.553755, 14.858073 ], [ 145.553852, 14.858108 ], [ 145.554019, 14.858186 ], [ 145.554134, 14.858204 ], [ 145.554257, 14.858248 ], [ 145.554381, 14.85824 ], [ 145.554522, 14.858207 ], [ 145.554663, 14.85825 ], [ 145.554919, 14.858364 ], [ 145.555077, 14.858459 ], [ 145.555138, 14.858554 ], [ 145.555439, 14.858556 ], [ 145.555536, 14.858625 ], [ 145.55565, 14.858678 ], [ 145.555685, 14.858781 ], [ 145.555781, 14.858842 ], [ 145.555851, 14.858945 ], [ 145.556141, 14.859205 ], [ 145.5563, 14.859309 ], [ 145.556396, 14.859413 ], [ 145.556554, 14.859534 ], [ 145.556704, 14.859604 ], [ 145.556889, 14.859682 ], [ 145.556933, 14.859751 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "69", "COUNTYFP10": "120", "TRACTCE10": "950101", "GEOID10": "69120950101", "NAME10": "9501.01", "NAMELSAD10": "Census Tract 9501.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4882500, "AWATER10": 1297074, "INTPTLAT10": "+14.9687921", "INTPTLON10": "+145.6245468" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.637519, 14.970268 ], [ 145.637717, 14.970243 ], [ 145.637784, 14.970235 ], [ 145.638031, 14.970234 ], [ 145.638423, 14.970187 ], [ 145.638826, 14.97014 ], [ 145.639811, 14.970058 ], [ 145.640343, 14.970008 ], [ 145.640626, 14.969982 ], [ 145.640984, 14.969959 ], [ 145.641071, 14.969956 ], [ 145.641287, 14.96995 ], [ 145.641332, 14.96996 ], [ 145.641417, 14.969981 ], [ 145.6412, 14.969828 ], [ 145.640748, 14.9695 ], [ 145.638751, 14.968672 ], [ 145.638744, 14.968586 ], [ 145.638694, 14.968514 ], [ 145.638613, 14.968445 ], [ 145.6386, 14.968416 ], [ 145.638586, 14.968381 ], [ 145.638587, 14.96826 ], [ 145.638545, 14.968181 ], [ 145.638463, 14.968124 ], [ 145.63839, 14.968112 ], [ 145.638138, 14.968129 ], [ 145.637878, 14.968133 ], [ 145.637657, 14.968138 ], [ 145.637567, 14.968147 ], [ 145.637546, 14.967918 ], [ 145.637483, 14.967232 ], [ 145.637463, 14.967004 ], [ 145.637462, 14.966997 ], [ 145.63746, 14.966979 ], [ 145.63746, 14.966973 ], [ 145.637442, 14.966778 ], [ 145.637391, 14.966196 ], [ 145.637375, 14.966002 ], [ 145.637335, 14.965578 ], [ 145.63722, 14.964306 ], [ 145.637182, 14.963882 ], [ 145.637175, 14.963806 ], [ 145.637154, 14.963579 ], [ 145.637147, 14.963504 ], [ 145.637108, 14.963093 ], [ 145.636994, 14.961863 ], [ 145.636956, 14.961453 ], [ 145.636928, 14.961152 ], [ 145.636872, 14.960515 ], [ 145.636626, 14.957703 ], [ 145.636544, 14.956766 ], [ 145.636171, 14.956791 ], [ 145.635937, 14.956811 ], [ 145.634591, 14.956927 ], [ 145.634118, 14.956962 ], [ 145.633902, 14.956979 ], [ 145.633512, 14.957016 ], [ 145.633461, 14.95702 ], [ 145.63331, 14.957034 ], [ 145.632708, 14.957093 ], [ 145.632573, 14.957107 ], [ 145.632507, 14.957112 ], [ 145.632456, 14.956964 ], [ 145.632401, 14.95667 ], [ 145.632399, 14.956661 ], [ 145.63233, 14.956277 ], [ 145.632287, 14.956052 ], [ 145.632255, 14.955836 ], [ 145.632229, 14.955619 ], [ 145.632216, 14.955509 ], [ 145.632198, 14.955365 ], [ 145.632182, 14.955287 ], [ 145.632155, 14.955149 ], [ 145.632108, 14.954984 ], [ 145.632061, 14.95484 ], [ 145.631703, 14.954843 ], [ 145.630632, 14.954851 ], [ 145.630275, 14.954855 ], [ 145.630127, 14.954687 ], [ 145.629859, 14.954515 ], [ 145.629523, 14.954366 ], [ 145.62896, 14.954547 ], [ 145.624275, 14.957197 ], [ 145.621209, 14.958763 ], [ 145.618745, 14.960768 ], [ 145.616095, 14.962957 ], [ 145.613522, 14.966682 ], [ 145.612255, 14.969447 ], [ 145.611563, 14.971867 ], [ 145.611361, 14.973495 ], [ 145.611563, 14.974133 ], [ 145.611832, 14.974401 ], [ 145.612286, 14.974276 ], [ 145.612325, 14.974319 ], [ 145.612399, 14.974319 ], [ 145.612478, 14.974329 ], [ 145.612561, 14.974359 ], [ 145.612536, 14.97443 ], [ 145.612541, 14.974502 ], [ 145.612506, 14.974554 ], [ 145.612442, 14.974626 ], [ 145.612491, 14.974621 ], [ 145.61256, 14.974588 ], [ 145.612584, 14.974627 ], [ 145.612535, 14.974674 ], [ 145.612456, 14.974717 ], [ 145.61247, 14.974741 ], [ 145.612514, 14.974784 ], [ 145.612524, 14.974842 ], [ 145.612479, 14.974932 ], [ 145.612474, 14.974985 ], [ 145.6124, 14.975018 ], [ 145.612365, 14.975084 ], [ 145.61234, 14.975156 ], [ 145.612339, 14.975257 ], [ 145.612329, 14.975328 ], [ 145.612279, 14.975371 ], [ 145.61218, 14.975509 ], [ 145.612224, 14.975519 ], [ 145.612271, 14.975524 ], [ 145.612305, 14.975567 ], [ 145.612315, 14.975625 ], [ 145.61226, 14.975648 ], [ 145.612216, 14.975638 ], [ 145.612181, 14.975686 ], [ 145.612141, 14.975781 ], [ 145.612171, 14.97581 ], [ 145.612215, 14.975782 ], [ 145.612235, 14.97582 ], [ 145.6122, 14.975873 ], [ 145.612215, 14.975884 ], [ 145.612226, 14.975899 ], [ 145.612218, 14.975935 ], [ 145.612236, 14.975984 ], [ 145.612237, 14.976022 ], [ 145.612193, 14.976107 ], [ 145.612082, 14.976174 ], [ 145.612033, 14.976243 ], [ 145.61214, 14.976322 ], [ 145.612151, 14.976406 ], [ 145.612089, 14.97642 ], [ 145.612004, 14.976422 ], [ 145.612012, 14.976526 ], [ 145.611987, 14.976616 ], [ 145.611994, 14.976706 ], [ 145.612028, 14.976796 ], [ 145.612069, 14.976878 ], [ 145.612102, 14.976985 ], [ 145.612175, 14.977073 ], [ 145.612278, 14.977068 ], [ 145.612236, 14.977149 ], [ 145.612145, 14.97714 ], [ 145.612066, 14.977173 ], [ 145.612091, 14.977337 ], [ 145.612074, 14.977427 ], [ 145.612103, 14.977591 ], [ 145.612131, 14.977689 ], [ 145.612198, 14.977755 ], [ 145.61224, 14.977845 ], [ 145.612256, 14.977935 ], [ 145.612331, 14.977993 ], [ 145.612415, 14.978051 ], [ 145.612339, 14.978116 ], [ 145.612246, 14.978132 ], [ 145.61222, 14.978222 ], [ 145.612228, 14.97832 ], [ 145.612212, 14.978508 ], [ 145.612261, 14.978614 ], [ 145.612352, 14.978665 ], [ 145.612419, 14.978731 ], [ 145.612512, 14.978788 ], [ 145.61251, 14.97885 ], [ 145.612529, 14.978922 ], [ 145.612573, 14.979032 ], [ 145.612636, 14.979149 ], [ 145.612537, 14.979209 ], [ 145.612409, 14.979256 ], [ 145.612409, 14.979356 ], [ 145.612443, 14.979433 ], [ 145.612422, 14.979519 ], [ 145.612348, 14.979528 ], [ 145.612377, 14.979691 ], [ 145.612455, 14.979697 ], [ 145.612514, 14.979771 ], [ 145.612648, 14.979903 ], [ 145.612672, 14.979993 ], [ 145.612689, 14.980083 ], [ 145.61268, 14.980173 ], [ 145.612738, 14.980247 ], [ 145.612763, 14.980337 ], [ 145.612737, 14.980427 ], [ 145.612745, 14.980517 ], [ 145.612803, 14.980591 ], [ 145.612879, 14.980649 ], [ 145.612971, 14.980666 ], [ 145.613022, 14.98069 ], [ 145.613017, 14.980747 ], [ 145.613026, 14.980833 ], [ 145.613031, 14.980938 ], [ 145.612994, 14.981027 ], [ 145.612977, 14.981116 ], [ 145.612926, 14.981158 ], [ 145.612984, 14.981313 ], [ 145.613008, 14.981485 ], [ 145.612982, 14.981584 ], [ 145.612905, 14.981679 ], [ 145.616226, 14.981747 ], [ 145.616316, 14.981725 ], [ 145.616411, 14.981702 ], [ 145.616482, 14.981708 ], [ 145.616553, 14.981778 ], [ 145.616577, 14.981854 ], [ 145.616597, 14.982101 ], [ 145.616614, 14.982303 ], [ 145.616624, 14.982429 ], [ 145.616637, 14.982584 ], [ 145.616661, 14.98269 ], [ 145.616764, 14.982878 ], [ 145.617076, 14.983048 ], [ 145.617326, 14.983026 ], [ 145.61758, 14.982834 ], [ 145.617667, 14.982397 ], [ 145.617813, 14.982191 ], [ 145.618239, 14.982131 ], [ 145.619366, 14.982034 ], [ 145.621409, 14.981845 ], [ 145.624341, 14.981572 ], [ 145.627329, 14.981319 ], [ 145.632399, 14.980884 ], [ 145.63242, 14.980893 ], [ 145.632503, 14.980878 ], [ 145.632532, 14.980873 ], [ 145.632494, 14.980397 ], [ 145.632447, 14.979953 ], [ 145.632386, 14.979364 ], [ 145.632292, 14.978381 ], [ 145.632194, 14.977212 ], [ 145.632192, 14.977196 ], [ 145.632155, 14.976821 ], [ 145.632107, 14.976277 ], [ 145.632036, 14.975503 ], [ 145.631864, 14.973623 ], [ 145.631818, 14.973182 ], [ 145.631811, 14.973108 ], [ 145.631749, 14.972409 ], [ 145.631743, 14.972335 ], [ 145.631719, 14.972079 ], [ 145.631629, 14.971091 ], [ 145.6316, 14.970762 ], [ 145.631687, 14.970758 ], [ 145.631929, 14.970739 ], [ 145.632917, 14.970663 ], [ 145.633247, 14.970639 ], [ 145.633284, 14.970635 ], [ 145.633397, 14.970625 ], [ 145.633435, 14.970623 ], [ 145.633589, 14.970609 ], [ 145.633847, 14.970587 ], [ 145.634053, 14.970568 ], [ 145.634208, 14.970555 ], [ 145.634296, 14.970547 ], [ 145.634559, 14.970523 ], [ 145.634648, 14.970516 ], [ 145.634776, 14.970504 ], [ 145.63516, 14.97047 ], [ 145.635289, 14.97046 ], [ 145.635559, 14.970435 ], [ 145.635653, 14.970427 ], [ 145.636745, 14.970331 ], [ 145.63711, 14.9703 ], [ 145.637178, 14.970295 ], [ 145.637384, 14.970283 ], [ 145.637417, 14.970282 ], [ 145.637453, 14.970277 ], [ 145.637519, 14.970268 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "60", "COUNTYFP10": "010", "TRACTCE10": "950900", "GEOID10": "60010950900", "NAME10": "9509", "NAMELSAD10": "Census Tract 9509", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 14401534, "AWATER10": 55111663, "INTPTLAT10": "-14.3040180", "INTPTLON10": "-170.7133703" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -170.747496, -14.236581 ], [ -170.742524, -14.2441 ], [ -170.739297, -14.248981 ], [ -170.734202, -14.256985 ], [ -170.728663, -14.266079 ], [ -170.728046, -14.266935 ], [ -170.722556, -14.272711 ], [ -170.721353, -14.272967 ], [ -170.716235, -14.277501 ], [ -170.715913, -14.277787 ], [ -170.715211, -14.27841 ], [ -170.715064, -14.278668 ], [ -170.712332, -14.283746 ], [ -170.7116, -14.284991 ], [ -170.712013, -14.28568 ], [ -170.712678, -14.286719 ], [ -170.713368, -14.287835 ], [ -170.715918, -14.291903 ], [ -170.716644, -14.293061 ], [ -170.719303, -14.297379 ], [ -170.714939, -14.296722 ], [ -170.712559, -14.296364 ], [ -170.710906, -14.296116 ], [ -170.706663, -14.295485 ], [ -170.703748, -14.295053 ], [ -170.7037, -14.29506 ], [ -170.697036, -14.29247 ], [ -170.694801, -14.291602 ], [ -170.694105, -14.291332 ], [ -170.690744, -14.2932 ], [ -170.689528, -14.293877 ], [ -170.689037, -14.293687 ], [ -170.688361, -14.293427 ], [ -170.679974, -14.294941 ], [ -170.680039, -14.295224 ], [ -170.68056, -14.29749 ], [ -170.679915, -14.297692 ], [ -170.679568, -14.2978 ], [ -170.678575, -14.298112 ], [ -170.678417, -14.298162 ], [ -170.676294, -14.299044 ], [ -170.674853, -14.299238 ], [ -170.673918, -14.299364 ], [ -170.669335, -14.305041 ], [ -170.667975, -14.308866 ], [ -170.667669, -14.309728 ], [ -170.658518, -14.335475 ], [ -170.655496, -14.344467 ], [ -170.653672, -14.349897 ], [ -170.65187, -14.356187 ], [ -170.652776, -14.358973 ], [ -170.654493, -14.364252 ], [ -170.656558, -14.36675 ], [ -170.658426, -14.369009 ], [ -170.658818, -14.369483 ], [ -170.659996, -14.370907 ], [ -170.660384, -14.371376 ], [ -170.66039, -14.371381 ], [ -170.661381, -14.372104 ], [ -170.664355, -14.374276 ], [ -170.665347, -14.375 ], [ -170.665917, -14.37545 ], [ -170.666331, -14.375776 ], [ -170.667629, -14.3768 ], [ -170.6682, -14.377251 ], [ -170.668567, -14.3768 ], [ -170.669671, -14.37545 ], [ -170.670039, -14.375 ], [ -170.676421, -14.367779 ], [ -170.679389, -14.364421 ], [ -170.695028, -14.345653 ], [ -170.695368, -14.345246 ], [ -170.701156, -14.338216 ], [ -170.702339, -14.336797 ], [ -170.705895, -14.332551 ], [ -170.707084, -14.331139 ], [ -170.707258, -14.330935 ], [ -170.707677, -14.330448 ], [ -170.707787, -14.330332 ], [ -170.707973, -14.33014 ], [ -170.708252, -14.329806 ], [ -170.709091, -14.328807 ], [ -170.709372, -14.328475 ], [ -170.709501, -14.32832 ], [ -170.709887, -14.327854 ], [ -170.710017, -14.3277 ], [ -170.710334, -14.327316 ], [ -170.710726, -14.326845 ], [ -170.711144, -14.326343 ], [ -170.711288, -14.326168 ], [ -170.711606, -14.325785 ], [ -170.711709, -14.325658 ], [ -170.711716, -14.32565 ], [ -170.712048, -14.325246 ], [ -170.712118, -14.325159 ], [ -170.712148, -14.325123 ], [ -170.712509, -14.324698 ], [ -170.712734, -14.324425 ], [ -170.713056, -14.324035 ], [ -170.713984, -14.322915 ], [ -170.714069, -14.322812 ], [ -170.714255, -14.32259 ], [ -170.715041, -14.32158 ], [ -170.715454, -14.321049 ], [ -170.715897, -14.320481 ], [ -170.71638, -14.319936 ], [ -170.716497, -14.319806 ], [ -170.716827, -14.319436 ], [ -170.716841, -14.31942 ], [ -170.717075, -14.319155 ], [ -170.717444, -14.318737 ], [ -170.717758, -14.31838 ], [ -170.718141, -14.317921 ], [ -170.718185, -14.317869 ], [ -170.718443, -14.317562 ], [ -170.718736, -14.317212 ], [ -170.718758, -14.317184 ], [ -170.718811, -14.317122 ], [ -170.718827, -14.317102 ], [ -170.718851, -14.317075 ], [ -170.719075, -14.316812 ], [ -170.719137, -14.31674 ], [ -170.719189, -14.316675 ], [ -170.719451, -14.316366 ], [ -170.719742, -14.31602 ], [ -170.719965, -14.315756 ], [ -170.720147, -14.315538 ], [ -170.720179, -14.315501 ], [ -170.720189, -14.315488 ], [ -170.720694, -14.314888 ], [ -170.720741, -14.314833 ], [ -170.720879, -14.314669 ], [ -170.720939, -14.314597 ], [ -170.721125, -14.314372 ], [ -170.721188, -14.314298 ], [ -170.721201, -14.314283 ], [ -170.721215, -14.314266 ], [ -170.722102, -14.313213 ], [ -170.723145, -14.311969 ], [ -170.723843, -14.311137 ], [ -170.724719, -14.310095 ], [ -170.727111, -14.307267 ], [ -170.727328, -14.307013 ], [ -170.728621, -14.305495 ], [ -170.730116, -14.303742 ], [ -170.730295, -14.303533 ], [ -170.730493, -14.303299 ], [ -170.731089, -14.3026 ], [ -170.731288, -14.302367 ], [ -170.731498, -14.302121 ], [ -170.73152, -14.302103 ], [ -170.731629, -14.302023 ], [ -170.73242, -14.301438 ], [ -170.734307, -14.300048 ], [ -170.739156, -14.296478 ], [ -170.739276, -14.296377 ], [ -170.742204, -14.293943 ], [ -170.742295, -14.293866 ], [ -170.744765, -14.291816 ], [ -170.744934, -14.291673 ], [ -170.745444, -14.29125 ], [ -170.745617, -14.29111 ], [ -170.746395, -14.290459 ], [ -170.760677, -14.278627 ], [ -170.763402, -14.276415 ], [ -170.792825, -14.252544 ], [ -170.792984, -14.252415 ], [ -170.793461, -14.252028 ], [ -170.79362, -14.251899 ], [ -170.794088, -14.251519 ], [ -170.795491, -14.250379 ], [ -170.79596, -14.25 ], [ -170.796766, -14.249376 ], [ -170.799185, -14.247504 ], [ -170.799992, -14.246881 ], [ -170.797156, -14.246637 ], [ -170.794219, -14.246385 ], [ -170.766256, -14.243967 ], [ -170.75, -14.241175 ], [ -170.75, -14.241187 ], [ -170.75, -14.241223 ], [ -170.75, -14.241235 ], [ -170.749499, -14.240304 ], [ -170.747996, -14.237511 ], [ -170.747496, -14.236581 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "60", "COUNTYFP10": "010", "TRACTCE10": "950600", "GEOID10": "60010950600", "NAME10": "9506", "NAMELSAD10": "Census Tract 9506", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 9284398, "AWATER10": 25256893, "INTPTLAT10": "-14.2524460", "INTPTLON10": "-170.7010280" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -170.706074, -14.20498 ], [ -170.702704, -14.214814 ], [ -170.696895, -14.231765 ], [ -170.696786, -14.232084 ], [ -170.692595, -14.244316 ], [ -170.692107, -14.245743 ], [ -170.691412, -14.249103 ], [ -170.690403, -14.253986 ], [ -170.689804, -14.2586 ], [ -170.687376, -14.262226 ], [ -170.686036, -14.264637 ], [ -170.687334, -14.265167 ], [ -170.687362, -14.265213 ], [ -170.68744, -14.265294 ], [ -170.687595, -14.26537 ], [ -170.687811, -14.265468 ], [ -170.688044, -14.265539 ], [ -170.688117, -14.265545 ], [ -170.688216, -14.265555 ], [ -170.688422, -14.265515 ], [ -170.688644, -14.265434 ], [ -170.688852, -14.265441 ], [ -170.688956, -14.265414 ], [ -170.689109, -14.265349 ], [ -170.689185, -14.265317 ], [ -170.689241, -14.265293 ], [ -170.689379, -14.265198 ], [ -170.689511, -14.265043 ], [ -170.689608, -14.264975 ], [ -170.689768, -14.264928 ], [ -170.689695, -14.265342 ], [ -170.689583, -14.265992 ], [ -170.689456, -14.266977 ], [ -170.689236, -14.268111 ], [ -170.689236, -14.27045 ], [ -170.689202, -14.270491 ], [ -170.68918, -14.270541 ], [ -170.68917, -14.270695 ], [ -170.68917, -14.270712 ], [ -170.68917, -14.270807 ], [ -170.689168, -14.270875 ], [ -170.689253, -14.271735 ], [ -170.689228, -14.274294 ], [ -170.689641, -14.274252 ], [ -170.689982, -14.274165 ], [ -170.690257, -14.27398 ], [ -170.690317, -14.273893 ], [ -170.690503, -14.27363 ], [ -170.690643, -14.273443 ], [ -170.691401, -14.273489 ], [ -170.691825, -14.273515 ], [ -170.69266, -14.273642 ], [ -170.693658, -14.273801 ], [ -170.694409, -14.273921 ], [ -170.695369, -14.274227 ], [ -170.695528, -14.274462 ], [ -170.695656, -14.274652 ], [ -170.696162, -14.275399 ], [ -170.696178, -14.277728 ], [ -170.696624, -14.279288 ], [ -170.697179, -14.279855 ], [ -170.697794, -14.279855 ], [ -170.698284, -14.283585 ], [ -170.698521, -14.285386 ], [ -170.696377, -14.287799 ], [ -170.696498, -14.287844 ], [ -170.697997, -14.2884 ], [ -170.699028, -14.288784 ], [ -170.700322, -14.290187 ], [ -170.702417, -14.290306 ], [ -170.7037, -14.29506 ], [ -170.703748, -14.295053 ], [ -170.706663, -14.295485 ], [ -170.710906, -14.296116 ], [ -170.712559, -14.296364 ], [ -170.714939, -14.296722 ], [ -170.719303, -14.297379 ], [ -170.716644, -14.293061 ], [ -170.715918, -14.291903 ], [ -170.713368, -14.287835 ], [ -170.712678, -14.286719 ], [ -170.712013, -14.28568 ], [ -170.7116, -14.284991 ], [ -170.712332, -14.283746 ], [ -170.715064, -14.278668 ], [ -170.715211, -14.27841 ], [ -170.715913, -14.277787 ], [ -170.716235, -14.277501 ], [ -170.721353, -14.272967 ], [ -170.722556, -14.272711 ], [ -170.728046, -14.266935 ], [ -170.728663, -14.266079 ], [ -170.734202, -14.256985 ], [ -170.739297, -14.248981 ], [ -170.742524, -14.2441 ], [ -170.747496, -14.236581 ], [ -170.745979, -14.233761 ], [ -170.741597, -14.229295 ], [ -170.740572, -14.228482 ], [ -170.737232, -14.225831 ], [ -170.732128, -14.223627 ], [ -170.726287, -14.222683 ], [ -170.724471, -14.220196 ], [ -170.720325, -14.214726 ], [ -170.7153, -14.210424 ], [ -170.713384, -14.208783 ], [ -170.706229, -14.205096 ], [ -170.706074, -14.20498 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "60", "COUNTYFP10": "010", "TRACTCE10": "950500", "GEOID10": "60010950500", "NAME10": "9505", "NAMELSAD10": "Census Tract 9505", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3922496, "AWATER10": 3153110, "INTPTLAT10": "-14.2758160", "INTPTLON10": "-170.6650368" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -170.6847, -14.264191 ], [ -170.683981, -14.263952 ], [ -170.683612, -14.263874 ], [ -170.682177, -14.263575 ], [ -170.680839, -14.263346 ], [ -170.680454, -14.263281 ], [ -170.67933, -14.263298 ], [ -170.676268, -14.263348 ], [ -170.673228, -14.263706 ], [ -170.671753, -14.26388 ], [ -170.669923, -14.264097 ], [ -170.666177, -14.263358 ], [ -170.666105, -14.263346 ], [ -170.663232, -14.262884 ], [ -170.662703, -14.262898 ], [ -170.659261, -14.262991 ], [ -170.658818, -14.263003 ], [ -170.657575, -14.263548 ], [ -170.657051, -14.263779 ], [ -170.656581, -14.264449 ], [ -170.655751, -14.266813 ], [ -170.653858, -14.271424 ], [ -170.654247, -14.272489 ], [ -170.654415, -14.272948 ], [ -170.655404, -14.275308 ], [ -170.656348, -14.277118 ], [ -170.658991, -14.282186 ], [ -170.66047, -14.284457 ], [ -170.660844, -14.28503 ], [ -170.661583, -14.286203 ], [ -170.66184, -14.28661 ], [ -170.661894, -14.286652 ], [ -170.663069, -14.287584 ], [ -170.663252, -14.28774 ], [ -170.663371, -14.287835 ], [ -170.664067, -14.288392 ], [ -170.664485, -14.288675 ], [ -170.66586, -14.289606 ], [ -170.668658, -14.2915 ], [ -170.668773, -14.290247 ], [ -170.668844, -14.289482 ], [ -170.668847, -14.289438 ], [ -170.669065, -14.288699 ], [ -170.66976, -14.286356 ], [ -170.669992, -14.285576 ], [ -170.670044, -14.285452 ], [ -170.6702, -14.285082 ], [ -170.670253, -14.284959 ], [ -170.670328, -14.284826 ], [ -170.670552, -14.28443 ], [ -170.670628, -14.284298 ], [ -170.670975, -14.283723 ], [ -170.671631, -14.282639 ], [ -170.672174, -14.282126 ], [ -170.672663, -14.281666 ], [ -170.673063, -14.28138 ], [ -170.673594, -14.281004 ], [ -170.674393, -14.2808 ], [ -170.67487, -14.280679 ], [ -170.675479, -14.280579 ], [ -170.677308, -14.280281 ], [ -170.677918, -14.280182 ], [ -170.678413, -14.279404 ], [ -170.679901, -14.27707 ], [ -170.680397, -14.276293 ], [ -170.680852, -14.275579 ], [ -170.68222, -14.273438 ], [ -170.682629, -14.272799 ], [ -170.682717, -14.272793 ], [ -170.683116, -14.272952 ], [ -170.684038, -14.273321 ], [ -170.684314, -14.273429 ], [ -170.684715, -14.273586 ], [ -170.685145, -14.273745 ], [ -170.685226, -14.273775 ], [ -170.68644, -14.274208 ], [ -170.686802, -14.274337 ], [ -170.686877, -14.274343 ], [ -170.687144, -14.274348 ], [ -170.687919, -14.274365 ], [ -170.687946, -14.274365 ], [ -170.688214, -14.274371 ], [ -170.688768, -14.274335 ], [ -170.688907, -14.274327 ], [ -170.689228, -14.274294 ], [ -170.689253, -14.271735 ], [ -170.689168, -14.270875 ], [ -170.68917, -14.270807 ], [ -170.68917, -14.270712 ], [ -170.68917, -14.270695 ], [ -170.68918, -14.270541 ], [ -170.689202, -14.270491 ], [ -170.689236, -14.27045 ], [ -170.689236, -14.268111 ], [ -170.689456, -14.266977 ], [ -170.689583, -14.265992 ], [ -170.689695, -14.265342 ], [ -170.689768, -14.264928 ], [ -170.689608, -14.264975 ], [ -170.689511, -14.265043 ], [ -170.689379, -14.265198 ], [ -170.689241, -14.265293 ], [ -170.689185, -14.265317 ], [ -170.689109, -14.265349 ], [ -170.688956, -14.265414 ], [ -170.688852, -14.265441 ], [ -170.688644, -14.265434 ], [ -170.688422, -14.265515 ], [ -170.688216, -14.265555 ], [ -170.688117, -14.265545 ], [ -170.688044, -14.265539 ], [ -170.687811, -14.265468 ], [ -170.687595, -14.26537 ], [ -170.68744, -14.265294 ], [ -170.687362, -14.265213 ], [ -170.687334, -14.265167 ], [ -170.686036, -14.264637 ], [ -170.6847, -14.264191 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "60", "COUNTYFP10": "010", "TRACTCE10": "950700", "GEOID10": "60010950700", "NAME10": "9507", "NAMELSAD10": "Census Tract 9507", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3965147, "AWATER10": 2567994, "INTPTLAT10": "-14.2850819", "INTPTLON10": "-170.6817785" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -170.668658, -14.2915 ], [ -170.668563, -14.292542 ], [ -170.66855, -14.292681 ], [ -170.668494, -14.293308 ], [ -170.668538, -14.293405 ], [ -170.668673, -14.293696 ], [ -170.668718, -14.293793 ], [ -170.669007, -14.295535 ], [ -170.669316, -14.297388 ], [ -170.670801, -14.298623 ], [ -170.67192, -14.299178 ], [ -170.672159, -14.2992 ], [ -170.673918, -14.299364 ], [ -170.674853, -14.299238 ], [ -170.676294, -14.299044 ], [ -170.678417, -14.298162 ], [ -170.678575, -14.298112 ], [ -170.679568, -14.2978 ], [ -170.679915, -14.297692 ], [ -170.68056, -14.29749 ], [ -170.680039, -14.295224 ], [ -170.679974, -14.294941 ], [ -170.688361, -14.293427 ], [ -170.689037, -14.293687 ], [ -170.689528, -14.293877 ], [ -170.690744, -14.2932 ], [ -170.694105, -14.291332 ], [ -170.694801, -14.291602 ], [ -170.697036, -14.29247 ], [ -170.7037, -14.29506 ], [ -170.702417, -14.290306 ], [ -170.700322, -14.290187 ], [ -170.699028, -14.288784 ], [ -170.697997, -14.2884 ], [ -170.696498, -14.287844 ], [ -170.696377, -14.287799 ], [ -170.698521, -14.285386 ], [ -170.698284, -14.283585 ], [ -170.697794, -14.279855 ], [ -170.697179, -14.279855 ], [ -170.696624, -14.279288 ], [ -170.696178, -14.277728 ], [ -170.696162, -14.275399 ], [ -170.695656, -14.274652 ], [ -170.695528, -14.274462 ], [ -170.695369, -14.274227 ], [ -170.694409, -14.273921 ], [ -170.693658, -14.273801 ], [ -170.69266, -14.273642 ], [ -170.691825, -14.273515 ], [ -170.691401, -14.273489 ], [ -170.690643, -14.273443 ], [ -170.690503, -14.27363 ], [ -170.690317, -14.273893 ], [ -170.690257, -14.27398 ], [ -170.689982, -14.274165 ], [ -170.689641, -14.274252 ], [ -170.689228, -14.274294 ], [ -170.688907, -14.274327 ], [ -170.688768, -14.274335 ], [ -170.688214, -14.274371 ], [ -170.687946, -14.274365 ], [ -170.687919, -14.274365 ], [ -170.687144, -14.274348 ], [ -170.686877, -14.274343 ], [ -170.686802, -14.274337 ], [ -170.68644, -14.274208 ], [ -170.685226, -14.273775 ], [ -170.685145, -14.273745 ], [ -170.684715, -14.273586 ], [ -170.684314, -14.273429 ], [ -170.684038, -14.273321 ], [ -170.683116, -14.272952 ], [ -170.682717, -14.272793 ], [ -170.682629, -14.272799 ], [ -170.68222, -14.273438 ], [ -170.680852, -14.275579 ], [ -170.680397, -14.276293 ], [ -170.679901, -14.27707 ], [ -170.678413, -14.279404 ], [ -170.677918, -14.280182 ], [ -170.677308, -14.280281 ], [ -170.675479, -14.280579 ], [ -170.67487, -14.280679 ], [ -170.674393, -14.2808 ], [ -170.673594, -14.281004 ], [ -170.673063, -14.28138 ], [ -170.672663, -14.281666 ], [ -170.672174, -14.282126 ], [ -170.671631, -14.282639 ], [ -170.670975, -14.283723 ], [ -170.670628, -14.284298 ], [ -170.670552, -14.28443 ], [ -170.670328, -14.284826 ], [ -170.670253, -14.284959 ], [ -170.6702, -14.285082 ], [ -170.670044, -14.285452 ], [ -170.669992, -14.285576 ], [ -170.66976, -14.286356 ], [ -170.669065, -14.288699 ], [ -170.668847, -14.289438 ], [ -170.668844, -14.289482 ], [ -170.668773, -14.290247 ], [ -170.668658, -14.2915 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "60", "COUNTYFP10": "010", "TRACTCE10": "950200", "GEOID10": "60010950200", "NAME10": "9502", "NAMELSAD10": "Census Tract 9502", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 5978713, "AWATER10": 47851594, "INTPTLAT10": "-14.2883260", "INTPTLON10": "-170.5565659" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -170.542363, -14.285447 ], [ -170.541231, -14.28791 ], [ -170.539058, -14.294852 ], [ -170.539057, -14.295156 ], [ -170.539052, -14.297439 ], [ -170.539032, -14.306401 ], [ -170.539055, -14.312126 ], [ -170.539009, -14.312346 ], [ -170.538977, -14.312503 ], [ -170.538313, -14.330182 ], [ -170.53809, -14.336129 ], [ -170.548483, -14.33728 ], [ -170.548909, -14.337328 ], [ -170.559541, -14.338046 ], [ -170.572833, -14.336744 ], [ -170.579599, -14.335231 ], [ -170.58142, -14.334824 ], [ -170.585074, -14.333024 ], [ -170.586502, -14.331034 ], [ -170.588551, -14.331321 ], [ -170.589977, -14.33152 ], [ -170.592448, -14.331867 ], [ -170.594222, -14.332303 ], [ -170.595622, -14.332648 ], [ -170.597189, -14.333034 ], [ -170.601893, -14.334192 ], [ -170.602385, -14.334313 ], [ -170.603494, -14.334305 ], [ -170.605115, -14.327156 ], [ -170.608341, -14.312935 ], [ -170.611576, -14.306271 ], [ -170.614778, -14.299678 ], [ -170.613818, -14.296683 ], [ -170.610938, -14.287697 ], [ -170.609978, -14.284703 ], [ -170.609727, -14.283917 ], [ -170.608975, -14.28156 ], [ -170.608746, -14.28084 ], [ -170.60894, -14.279734 ], [ -170.610297, -14.272039 ], [ -170.608013, -14.269737 ], [ -170.607354, -14.269354 ], [ -170.607285, -14.26928 ], [ -170.607219, -14.269151 ], [ -170.60695, -14.268827 ], [ -170.606752, -14.268706 ], [ -170.606502, -14.268508 ], [ -170.606376, -14.26836 ], [ -170.606212, -14.267071 ], [ -170.605322, -14.266375 ], [ -170.604539, -14.265717 ], [ -170.603692, -14.265004 ], [ -170.603302, -14.264676 ], [ -170.60288, -14.265148 ], [ -170.600585, -14.267722 ], [ -170.600237, -14.268113 ], [ -170.598876, -14.269066 ], [ -170.596542, -14.270703 ], [ -170.596255, -14.270847 ], [ -170.594325, -14.271815 ], [ -170.594192, -14.271882 ], [ -170.593942, -14.272013 ], [ -170.593446, -14.271572 ], [ -170.592458, -14.270894 ], [ -170.59147, -14.270246 ], [ -170.591258, -14.270107 ], [ -170.59098, -14.269928 ], [ -170.590582, -14.26967 ], [ -170.586406, -14.268147 ], [ -170.585622, -14.267318 ], [ -170.58296, -14.265446 ], [ -170.582277, -14.265141 ], [ -170.581535, -14.264811 ], [ -170.580143, -14.265155 ], [ -170.579375, -14.264488 ], [ -170.578506, -14.262503 ], [ -170.578232, -14.261875 ], [ -170.577624, -14.26221 ], [ -170.570872, -14.265943 ], [ -170.569827, -14.26652 ], [ -170.568208, -14.267415 ], [ -170.567168, -14.26799 ], [ -170.566574, -14.269477 ], [ -170.566155, -14.270529 ], [ -170.561415, -14.27554 ], [ -170.559051, -14.27543 ], [ -170.556984, -14.275712 ], [ -170.552863, -14.276277 ], [ -170.552534, -14.276395 ], [ -170.548226, -14.277949 ], [ -170.547428, -14.278237 ], [ -170.543629, -14.282697 ], [ -170.542363, -14.285447 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "60", "COUNTYFP10": "010", "TRACTCE10": "950100", "GEOID10": "60010950100", "NAME10": "9501", "NAMELSAD10": "Census Tract 9501", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 11904402, "AWATER10": 155836404, "INTPTLAT10": "-14.2492783", "INTPTLON10": "-170.5794301" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -170.539032, -14.306401 ], [ -170.539052, -14.297439 ], [ -170.539057, -14.295156 ], [ -170.539058, -14.294852 ], [ -170.541231, -14.28791 ], [ -170.542363, -14.285447 ], [ -170.543629, -14.282697 ], [ -170.547428, -14.278237 ], [ -170.548226, -14.277949 ], [ -170.552534, -14.276395 ], [ -170.552863, -14.276277 ], [ -170.556984, -14.275712 ], [ -170.559051, -14.27543 ], [ -170.561415, -14.27554 ], [ -170.566155, -14.270529 ], [ -170.566574, -14.269477 ], [ -170.567168, -14.26799 ], [ -170.568208, -14.267415 ], [ -170.569827, -14.26652 ], [ -170.570872, -14.265943 ], [ -170.577624, -14.26221 ], [ -170.578232, -14.261875 ], [ -170.578506, -14.262503 ], [ -170.579375, -14.264488 ], [ -170.580143, -14.265155 ], [ -170.581535, -14.264811 ], [ -170.582277, -14.265141 ], [ -170.58296, -14.265446 ], [ -170.585622, -14.267318 ], [ -170.586406, -14.268147 ], [ -170.590582, -14.26967 ], [ -170.59098, -14.269928 ], [ -170.591258, -14.270107 ], [ -170.59147, -14.270246 ], [ -170.592458, -14.270894 ], [ -170.593446, -14.271572 ], [ -170.593942, -14.272013 ], [ -170.594192, -14.271882 ], [ -170.594325, -14.271815 ], [ -170.596255, -14.270847 ], [ -170.594773, -14.266407 ], [ -170.594648, -14.266033 ], [ -170.592045, -14.258234 ], [ -170.591472, -14.25745 ], [ -170.59014, -14.253058 ], [ -170.590136, -14.248052 ], [ -170.590135, -14.244776 ], [ -170.590132, -14.228568 ], [ -170.590208, -14.209738 ], [ -170.590256, -14.198059 ], [ -170.589777, -14.197966 ], [ -170.58834, -14.197689 ], [ -170.587861, -14.197597 ], [ -170.581658, -14.1964 ], [ -170.566335, -14.197755 ], [ -170.559218, -14.198385 ], [ -170.536778, -14.20434 ], [ -170.521818, -14.22022 ], [ -170.512957, -14.229624 ], [ -170.510598, -14.23213 ], [ -170.506853, -14.25 ], [ -170.506503, -14.251456 ], [ -170.506171, -14.252841 ], [ -170.506457, -14.2543 ], [ -170.505647, -14.255659 ], [ -170.505276, -14.256284 ], [ -170.504717, -14.256814 ], [ -170.49472, -14.265964 ], [ -170.490341, -14.282475 ], [ -170.491495, -14.301691 ], [ -170.5, -14.317616 ], [ -170.50238, -14.320364 ], [ -170.50641, -14.32516 ], [ -170.509439, -14.328763 ], [ -170.519675, -14.333156 ], [ -170.529268, -14.33502 ], [ -170.530839, -14.335326 ], [ -170.53809, -14.336129 ], [ -170.538313, -14.330182 ], [ -170.538977, -14.312503 ], [ -170.539009, -14.312346 ], [ -170.539055, -14.312126 ], [ -170.539032, -14.306401 ] ] ], [ [ [ -170.604599, -14.204612 ], [ -170.611253, -14.21111 ], [ -170.619826, -14.219481 ], [ -170.626015, -14.225524 ], [ -170.631218, -14.230604 ], [ -170.637873, -14.237102 ], [ -170.638852, -14.237978 ], [ -170.641791, -14.240608 ], [ -170.642771, -14.241485 ], [ -170.65278, -14.248519 ], [ -170.654175, -14.251744 ], [ -170.655114, -14.253823 ], [ -170.656965, -14.257916 ], [ -170.658868, -14.262123 ], [ -170.659261, -14.262991 ], [ -170.662703, -14.262898 ], [ -170.663232, -14.262884 ], [ -170.666105, -14.263346 ], [ -170.666177, -14.263358 ], [ -170.669923, -14.264097 ], [ -170.671753, -14.26388 ], [ -170.673228, -14.263706 ], [ -170.676268, -14.263348 ], [ -170.67933, -14.263298 ], [ -170.680454, -14.263281 ], [ -170.680839, -14.263346 ], [ -170.682177, -14.263575 ], [ -170.683612, -14.263874 ], [ -170.683981, -14.263952 ], [ -170.6847, -14.264191 ], [ -170.686036, -14.264637 ], [ -170.687376, -14.262226 ], [ -170.689804, -14.2586 ], [ -170.690403, -14.253986 ], [ -170.691412, -14.249103 ], [ -170.692107, -14.245743 ], [ -170.692595, -14.244316 ], [ -170.696786, -14.232084 ], [ -170.696895, -14.231765 ], [ -170.702704, -14.214814 ], [ -170.706074, -14.20498 ], [ -170.70392, -14.203366 ], [ -170.702795, -14.196863 ], [ -170.695367, -14.190203 ], [ -170.695334, -14.190174 ], [ -170.687092, -14.18224 ], [ -170.67664, -14.178337 ], [ -170.6652, -14.175947 ], [ -170.655315, -14.175545 ], [ -170.641804, -14.176921 ], [ -170.641661, -14.176936 ], [ -170.636626, -14.17874 ], [ -170.628085, -14.182835 ], [ -170.625, -14.185834 ], [ -170.620338, -14.188809 ], [ -170.606353, -14.197736 ], [ -170.602228, -14.20037 ], [ -170.601603, -14.200249 ], [ -170.601312, -14.200192 ], [ -170.600439, -14.200022 ], [ -170.600149, -14.199966 ], [ -170.601039, -14.200895 ], [ -170.603709, -14.203682 ], [ -170.604599, -14.204612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "60", "COUNTYFP10": "010", "TRACTCE10": "950300", "GEOID10": "60010950300", "NAME10": "9503", "NAMELSAD10": "Census Tract 9503", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 17084168, "AWATER10": 63685463, "INTPTLAT10": "-14.2750891", "INTPTLON10": "-170.6313777" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -170.637873, -14.237102 ], [ -170.631218, -14.230604 ], [ -170.626015, -14.225524 ], [ -170.619826, -14.219481 ], [ -170.611253, -14.21111 ], [ -170.604599, -14.204612 ], [ -170.603709, -14.203682 ], [ -170.601039, -14.200895 ], [ -170.600149, -14.199966 ], [ -170.59817, -14.199584 ], [ -170.592234, -14.19844 ], [ -170.590256, -14.198059 ], [ -170.590208, -14.209738 ], [ -170.590132, -14.228568 ], [ -170.590135, -14.244776 ], [ -170.590136, -14.248052 ], [ -170.59014, -14.253058 ], [ -170.591472, -14.25745 ], [ -170.592045, -14.258234 ], [ -170.594648, -14.266033 ], [ -170.594773, -14.266407 ], [ -170.596255, -14.270847 ], [ -170.596542, -14.270703 ], [ -170.598876, -14.269066 ], [ -170.600237, -14.268113 ], [ -170.600585, -14.267722 ], [ -170.60288, -14.265148 ], [ -170.603302, -14.264676 ], [ -170.603692, -14.265004 ], [ -170.604539, -14.265717 ], [ -170.605322, -14.266375 ], [ -170.606212, -14.267071 ], [ -170.606376, -14.26836 ], [ -170.606502, -14.268508 ], [ -170.606752, -14.268706 ], [ -170.60695, -14.268827 ], [ -170.607219, -14.269151 ], [ -170.607285, -14.26928 ], [ -170.607354, -14.269354 ], [ -170.608013, -14.269737 ], [ -170.610297, -14.272039 ], [ -170.60894, -14.279734 ], [ -170.608746, -14.28084 ], [ -170.608975, -14.28156 ], [ -170.609727, -14.283917 ], [ -170.609978, -14.284703 ], [ -170.610938, -14.287697 ], [ -170.613818, -14.296683 ], [ -170.614778, -14.299678 ], [ -170.611576, -14.306271 ], [ -170.608341, -14.312935 ], [ -170.605115, -14.327156 ], [ -170.603494, -14.334305 ], [ -170.605761, -14.334289 ], [ -170.612562, -14.334242 ], [ -170.61483, -14.334227 ], [ -170.61645, -14.334216 ], [ -170.616566, -14.334228 ], [ -170.621749, -14.334788 ], [ -170.623477, -14.334975 ], [ -170.625, -14.335139 ], [ -170.627692, -14.335277 ], [ -170.631926, -14.335496 ], [ -170.637463, -14.336914 ], [ -170.639761, -14.338385 ], [ -170.642786, -14.340321 ], [ -170.64317, -14.340829 ], [ -170.645315, -14.343666 ], [ -170.648176, -14.347451 ], [ -170.650489, -14.352908 ], [ -170.65184, -14.356094 ], [ -170.65187, -14.356187 ], [ -170.653672, -14.349897 ], [ -170.655496, -14.344467 ], [ -170.658518, -14.335475 ], [ -170.667669, -14.309728 ], [ -170.667975, -14.308866 ], [ -170.669335, -14.305041 ], [ -170.673918, -14.299364 ], [ -170.672159, -14.2992 ], [ -170.67192, -14.299178 ], [ -170.670801, -14.298623 ], [ -170.669316, -14.297388 ], [ -170.669007, -14.295535 ], [ -170.668718, -14.293793 ], [ -170.668673, -14.293696 ], [ -170.668538, -14.293405 ], [ -170.668494, -14.293308 ], [ -170.66855, -14.292681 ], [ -170.668563, -14.292542 ], [ -170.668658, -14.2915 ], [ -170.66586, -14.289606 ], [ -170.664485, -14.288675 ], [ -170.664067, -14.288392 ], [ -170.663371, -14.287835 ], [ -170.663252, -14.28774 ], [ -170.663069, -14.287584 ], [ -170.661894, -14.286652 ], [ -170.66184, -14.28661 ], [ -170.661583, -14.286203 ], [ -170.660844, -14.28503 ], [ -170.66047, -14.284457 ], [ -170.658991, -14.282186 ], [ -170.656348, -14.277118 ], [ -170.655404, -14.275308 ], [ -170.654415, -14.272948 ], [ -170.654247, -14.272489 ], [ -170.653858, -14.271424 ], [ -170.655751, -14.266813 ], [ -170.656581, -14.264449 ], [ -170.657051, -14.263779 ], [ -170.657575, -14.263548 ], [ -170.658818, -14.263003 ], [ -170.659261, -14.262991 ], [ -170.658868, -14.262123 ], [ -170.656965, -14.257916 ], [ -170.655114, -14.253823 ], [ -170.654175, -14.251744 ], [ -170.65278, -14.248519 ], [ -170.642771, -14.241485 ], [ -170.641791, -14.240608 ], [ -170.638852, -14.237978 ], [ -170.637873, -14.237102 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "60", "COUNTYFP10": "040", "TRACTCE10": "952000", "GEOID10": "60040952000", "NAME10": "9520", "NAMELSAD10": "Census Tract 9520", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2432604, "AWATER10": 149078353, "INTPTLAT10": "-11.0545242", "INTPTLON10": "-171.0695263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -171.027898, -11.006523 ], [ -171.019279, -11.012249 ], [ -171.018759, -11.01339 ], [ -171.014071, -11.023701 ], [ -171.012383, -11.047118 ], [ -171.011549, -11.05869 ], [ -171.011158, -11.060224 ], [ -171.011378, -11.078143 ], [ -171.017082, -11.089535 ], [ -171.019633, -11.094631 ], [ -171.032173, -11.105088 ], [ -171.048865, -11.109294 ], [ -171.074412, -11.11013 ], [ -171.098344, -11.107869 ], [ -171.105879, -11.105517 ], [ -171.120632, -11.100913 ], [ -171.133845, -11.090553 ], [ -171.13385, -11.090548 ], [ -171.133865, -11.090537 ], [ -171.133871, -11.090534 ], [ -171.133863, -11.090534 ], [ -171.133839, -11.090534 ], [ -171.133831, -11.090534 ], [ -171.135289, -11.087192 ], [ -171.139664, -11.077168 ], [ -171.141123, -11.073827 ], [ -171.141127, -11.073825 ], [ -171.141141, -11.07382 ], [ -171.141146, -11.073819 ], [ -171.141907, -11.060764 ], [ -171.141181, -11.046608 ], [ -171.141162, -11.046223 ], [ -171.137454, -11.030091 ], [ -171.125766, -11.015597 ], [ -171.1114, -11.003792 ], [ -171.09488, -10.997802 ], [ -171.084855, -10.997505 ], [ -171.074632, -10.997203 ], [ -171.057708, -10.999035 ], [ -171.051627, -11.000137 ], [ -171.036338, -11.002911 ], [ -171.033579, -11.004091 ], [ -171.027898, -11.006523 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "60", "COUNTYFP10": "020", "TRACTCE10": "951800", "GEOID10": "60020951800", "NAME10": "9518", "NAMELSAD10": "Census Tract 9518", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 57723250, "AWATER10": 464147375, "INTPTLAT10": "-14.2231195", "INTPTLON10": "-169.5176907" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.5, -14.313015 ], [ -169.502365, -14.3121 ], [ -169.506565, -14.31008 ], [ -169.512963, -14.30793 ], [ -169.513397, -14.307785 ], [ -169.518884, -14.301802 ], [ -169.521994, -14.294857 ], [ -169.527691, -14.281714 ], [ -169.532902, -14.274007 ], [ -169.534487, -14.272744 ], [ -169.539188, -14.269002 ], [ -169.546671, -14.266351 ], [ -169.551324, -14.264658 ], [ -169.553377, -14.263912 ], [ -169.558872, -14.258917 ], [ -169.561413, -14.25433 ], [ -169.563814, -14.25 ], [ -169.562895, -14.25 ], [ -169.565226, -14.241789 ], [ -169.565291, -14.241221 ], [ -169.566589, -14.229858 ], [ -169.566847, -14.221479 ], [ -169.567317, -14.221794 ], [ -169.568729, -14.22274 ], [ -169.5692, -14.223056 ], [ -169.569349, -14.223156 ], [ -169.569798, -14.223456 ], [ -169.569948, -14.223557 ], [ -169.571586, -14.224295 ], [ -169.580927, -14.229791 ], [ -169.588332, -14.23377 ], [ -169.601625, -14.237064 ], [ -169.608646, -14.237915 ], [ -169.615629, -14.237721 ], [ -169.622815, -14.235689 ], [ -169.625, -14.234445 ], [ -169.625, -14.234002 ], [ -169.626478, -14.233032 ], [ -169.627536, -14.232339 ], [ -169.629824, -14.229515 ], [ -169.630109, -14.229225 ], [ -169.631351, -14.227966 ], [ -169.632671, -14.228608 ], [ -169.635613, -14.230035 ], [ -169.636431, -14.230438 ], [ -169.646727, -14.232575 ], [ -169.66061, -14.233827 ], [ -169.672671, -14.232886 ], [ -169.680352, -14.230597 ], [ -169.69284, -14.221604 ], [ -169.703768, -14.210657 ], [ -169.714193, -14.200733 ], [ -169.722804, -14.18937 ], [ -169.725797, -14.180972 ], [ -169.725705, -14.172436 ], [ -169.725895, -14.16615 ], [ -169.725269, -14.155623 ], [ -169.722572, -14.143665 ], [ -169.720453, -14.137715 ], [ -169.717322, -14.133307 ], [ -169.712658, -14.129457 ], [ -169.706558, -14.125 ], [ -169.703278, -14.121337 ], [ -169.702316, -14.120345 ], [ -169.692797, -14.116613 ], [ -169.678021, -14.111522 ], [ -169.665747, -14.10937 ], [ -169.661488, -14.108899 ], [ -169.655474, -14.109667 ], [ -169.646204, -14.111188 ], [ -169.64133, -14.111967 ], [ -169.636683, -14.11271 ], [ -169.630488, -14.113715 ], [ -169.626253, -14.110993 ], [ -169.625, -14.110461 ], [ -169.615076, -14.106813 ], [ -169.609891, -14.105941 ], [ -169.599242, -14.105392 ], [ -169.59001, -14.107523 ], [ -169.575712, -14.113586 ], [ -169.575652, -14.113645 ], [ -169.573386, -14.115773 ], [ -169.572233, -14.116737 ], [ -169.568777, -14.119631 ], [ -169.567625, -14.120596 ], [ -169.562366, -14.125 ], [ -169.561855, -14.126134 ], [ -169.559134, -14.131359 ], [ -169.557507, -14.134484 ], [ -169.554716, -14.142581 ], [ -169.554272, -14.151691 ], [ -169.554161, -14.151854 ], [ -169.550164, -14.157764 ], [ -169.549138, -14.159282 ], [ -169.547939, -14.162666 ], [ -169.547615, -14.163584 ], [ -169.548256, -14.178007 ], [ -169.548089, -14.178849 ], [ -169.547041, -14.18417 ], [ -169.547034, -14.184202 ], [ -169.547015, -14.1843 ], [ -169.547009, -14.184333 ], [ -169.546996, -14.184319 ], [ -169.546958, -14.184277 ], [ -169.546946, -14.184264 ], [ -169.54653, -14.183782 ], [ -169.543378, -14.180575 ], [ -169.542553, -14.179779 ], [ -169.535252, -14.176995 ], [ -169.529784, -14.17573 ], [ -169.528185, -14.175459 ], [ -169.523798, -14.174718 ], [ -169.521446, -14.1732 ], [ -169.515702, -14.170163 ], [ -169.510749, -14.168392 ], [ -169.506058, -14.166874 ], [ -169.5, -14.166052 ], [ -169.494006, -14.16609 ], [ -169.481534, -14.167357 ], [ -169.465424, -14.168995 ], [ -169.464429, -14.169096 ], [ -169.461444, -14.169399 ], [ -169.46045, -14.169501 ], [ -169.458065, -14.167279 ], [ -169.453574, -14.167708 ], [ -169.436411, -14.170026 ], [ -169.432119, -14.171256 ], [ -169.430451, -14.171274 ], [ -169.415917, -14.168595 ], [ -169.412104, -14.168637 ], [ -169.395182, -14.170007 ], [ -169.385643, -14.174606 ], [ -169.377205, -14.181256 ], [ -169.375, -14.184785 ], [ -169.372106, -14.18927 ], [ -169.3692, -14.193777 ], [ -169.366896, -14.202075 ], [ -169.366886, -14.204113 ], [ -169.366862, -14.209451 ], [ -169.367288, -14.218553 ], [ -169.367441, -14.233181 ], [ -169.367038, -14.2449 ], [ -169.367518, -14.261303 ], [ -169.369052, -14.268571 ], [ -169.369366, -14.273673 ], [ -169.370061, -14.276785 ], [ -169.370674, -14.279525 ], [ -169.373613, -14.285613 ], [ -169.375, -14.288486 ], [ -169.380242, -14.294816 ], [ -169.386212, -14.299612 ], [ -169.387794, -14.300883 ], [ -169.397398, -14.307179 ], [ -169.408976, -14.310028 ], [ -169.419498, -14.311415 ], [ -169.430213, -14.309859 ], [ -169.430926, -14.309608 ], [ -169.441644, -14.305846 ], [ -169.445973, -14.304832 ], [ -169.446034, -14.30487 ], [ -169.446533, -14.305192 ], [ -169.453772, -14.309519 ], [ -169.464063, -14.313078 ], [ -169.473243, -14.316359 ], [ -169.48269, -14.317249 ], [ -169.482692, -14.317249 ], [ -169.48282, -14.317203 ], [ -169.5, -14.313015 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "60", "COUNTYFP10": "030", "TRACTCE10": "951900", "GEOID10": "60030951900", "NAME10": "9519", "NAMELSAD10": "Census Tract 9519", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 82093, "AWATER10": 147383837, "INTPTLAT10": "-14.5365298", "INTPTLON10": "-168.1512917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -168.157852, -14.601813 ], [ -168.173538, -14.601339 ], [ -168.181327, -14.599798 ], [ -168.195114, -14.597071 ], [ -168.206757, -14.590092 ], [ -168.217987, -14.57513 ], [ -168.22348, -14.561343 ], [ -168.22523, -14.551407 ], [ -168.226, -14.547037 ], [ -168.225273, -14.535906 ], [ -168.224529, -14.52451 ], [ -168.22312, -14.521577 ], [ -168.218752, -14.512483 ], [ -168.218689, -14.512365 ], [ -168.218501, -14.512011 ], [ -168.218439, -14.511893 ], [ -168.218446, -14.511881 ], [ -168.218468, -14.511848 ], [ -168.218476, -14.511837 ], [ -168.209822, -14.500086 ], [ -168.20978, -14.500045 ], [ -168.199527, -14.490126 ], [ -168.186781, -14.48325 ], [ -168.1733, -14.479693 ], [ -168.172043, -14.47955 ], [ -168.157486, -14.477894 ], [ -168.156488, -14.477884 ], [ -168.153496, -14.477854 ], [ -168.152499, -14.477845 ], [ -168.152444, -14.477845 ], [ -168.152282, -14.477847 ], [ -168.152228, -14.477848 ], [ -168.152228, -14.477923 ], [ -168.152231, -14.47815 ], [ -168.152232, -14.478226 ], [ -168.144096, -14.481204 ], [ -168.134893, -14.484574 ], [ -168.123337, -14.491729 ], [ -168.121629, -14.49369 ], [ -168.115941, -14.500225 ], [ -168.111165, -14.508125 ], [ -168.109457, -14.512529 ], [ -168.104694, -14.524819 ], [ -168.101612, -14.537936 ], [ -168.102194, -14.553134 ], [ -168.102229, -14.554034 ], [ -168.105926, -14.566554 ], [ -168.10844, -14.573644 ], [ -168.110399, -14.579166 ], [ -168.116144, -14.58705 ], [ -168.121574, -14.591395 ], [ -168.127449, -14.596096 ], [ -168.127779, -14.596328 ], [ -168.128771, -14.597026 ], [ -168.129102, -14.597259 ], [ -168.135803, -14.599679 ], [ -168.157852, -14.601813 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "60", "COUNTYFP10": "050", "TRACTCE10": "951100", "GEOID10": "60050951100", "NAME10": "9511", "NAMELSAD10": "Census Tract 9511", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4878117, "AWATER10": 0, "INTPTLAT10": "-14.3277362", "INTPTLON10": "-170.7518410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -170.744391, -14.323545 ], [ -170.744486, -14.323706 ], [ -170.744422, -14.323915 ], [ -170.744276, -14.324154 ], [ -170.744221, -14.324245 ], [ -170.744189, -14.32423 ], [ -170.744093, -14.324187 ], [ -170.744062, -14.324173 ], [ -170.744005, -14.324147 ], [ -170.743994, -14.324141 ], [ -170.743796, -14.324041 ], [ -170.74373, -14.324008 ], [ -170.743697, -14.323991 ], [ -170.743601, -14.323942 ], [ -170.743569, -14.323926 ], [ -170.743486, -14.323883 ], [ -170.743305, -14.32378 ], [ -170.743263, -14.323756 ], [ -170.743153, -14.323686 ], [ -170.742945, -14.323557 ], [ -170.742851, -14.323502 ], [ -170.742428, -14.323732 ], [ -170.742097, -14.323946 ], [ -170.741804, -14.324247 ], [ -170.741662, -14.324395 ], [ -170.740889, -14.324848 ], [ -170.740234, -14.324923 ], [ -170.740217, -14.325255 ], [ -170.740046, -14.325534 ], [ -170.739144, -14.325464 ], [ -170.739532, -14.32695 ], [ -170.740131, -14.329827 ], [ -170.740131, -14.330271 ], [ -170.740131, -14.330598 ], [ -170.74029, -14.330774 ], [ -170.741187, -14.331762 ], [ -170.74125, -14.332499 ], [ -170.741312, -14.332541 ], [ -170.741383, -14.332568 ], [ -170.741461, -14.332588 ], [ -170.741537, -14.332613 ], [ -170.74161, -14.332643 ], [ -170.741682, -14.332683 ], [ -170.74175, -14.33273 ], [ -170.741887, -14.332796 ], [ -170.741951, -14.332848 ], [ -170.742164, -14.333093 ], [ -170.742334, -14.333323 ], [ -170.742412, -14.333429 ], [ -170.7425, -14.333528 ], [ -170.742559, -14.333576 ], [ -170.742623, -14.333621 ], [ -170.742689, -14.333655 ], [ -170.742868, -14.333771 ], [ -170.742914, -14.333809 ], [ -170.743029, -14.333956 ], [ -170.743077, -14.333995 ], [ -170.743114, -14.334031 ], [ -170.743173, -14.334075 ], [ -170.743249, -14.334133 ], [ -170.743289, -14.334174 ], [ -170.743324, -14.334201 ], [ -170.74336, -14.334237 ], [ -170.743467, -14.334322 ], [ -170.743501, -14.334375 ], [ -170.743538, -14.334421 ], [ -170.743557, -14.334481 ], [ -170.743579, -14.334604 ], [ -170.743618, -14.334779 ], [ -170.743652, -14.33486 ], [ -170.743686, -14.334964 ], [ -170.743731, -14.335099 ], [ -170.743784, -14.335279 ], [ -170.743791, -14.3353 ], [ -170.743786, -14.335389 ], [ -170.74417, -14.335666 ], [ -170.745322, -14.336499 ], [ -170.745579, -14.336685 ], [ -170.745676, -14.336809 ], [ -170.745726, -14.336874 ], [ -170.745741, -14.336964 ], [ -170.745765, -14.337054 ], [ -170.745807, -14.337124 ], [ -170.745833, -14.337167 ], [ -170.745908, -14.337253 ], [ -170.745964, -14.337298 ], [ -170.746048, -14.337366 ], [ -170.746251, -14.337532 ], [ -170.746459, -14.337709 ], [ -170.746594, -14.337805 ], [ -170.74669, -14.337873 ], [ -170.746695, -14.337948 ], [ -170.746734, -14.338099 ], [ -170.746766, -14.338482 ], [ -170.746789, -14.338756 ], [ -170.746864, -14.339634 ], [ -170.746897, -14.340018 ], [ -170.747566, -14.340071 ], [ -170.750419, -14.340949 ], [ -170.754066, -14.340164 ], [ -170.754116, -14.340149 ], [ -170.754157, -14.340138 ], [ -170.754215, -14.340129 ], [ -170.754263, -14.340121 ], [ -170.754272, -14.34012 ], [ -170.754556, -14.340039 ], [ -170.754845, -14.339948 ], [ -170.754882, -14.339937 ], [ -170.754918, -14.339925 ], [ -170.755012, -14.339899 ], [ -170.75504, -14.339892 ], [ -170.755157, -14.339856 ], [ -170.755273, -14.339816 ], [ -170.755281, -14.339814 ], [ -170.755365, -14.339778 ], [ -170.755408, -14.339759 ], [ -170.755535, -14.339695 ], [ -170.755662, -14.339612 ], [ -170.755694, -14.339587 ], [ -170.755781, -14.33952 ], [ -170.75589, -14.339423 ], [ -170.755955, -14.339367 ], [ -170.755976, -14.339348 ], [ -170.756058, -14.339245 ], [ -170.756096, -14.339318 ], [ -170.756219, -14.339357 ], [ -170.756706, -14.338857 ], [ -170.756728, -14.338834 ], [ -170.757456, -14.338406 ], [ -170.758012, -14.338362 ], [ -170.758459, -14.338068 ], [ -170.758831, -14.337494 ], [ -170.758432, -14.335954 ], [ -170.758349, -14.335652 ], [ -170.759455, -14.331897 ], [ -170.76104, -14.332056 ], [ -170.76099, -14.330429 ], [ -170.760985, -14.330248 ], [ -170.760924, -14.327959 ], [ -170.762244, -14.325721 ], [ -170.762936, -14.322868 ], [ -170.762892, -14.321333 ], [ -170.761967, -14.320051 ], [ -170.761898, -14.320014 ], [ -170.761281, -14.319683 ], [ -170.761267, -14.319601 ], [ -170.760954, -14.31766 ], [ -170.76085, -14.317013 ], [ -170.760761, -14.317106 ], [ -170.760648, -14.317202 ], [ -170.760596, -14.317253 ], [ -170.760557, -14.317293 ], [ -170.760165, -14.317668 ], [ -170.760053, -14.317806 ], [ -170.759973, -14.317896 ], [ -170.759876, -14.318014 ], [ -170.759756, -14.318163 ], [ -170.759682, -14.318303 ], [ -170.758899, -14.316282 ], [ -170.758463, -14.316257 ], [ -170.752729, -14.315938 ], [ -170.750862, -14.315051 ], [ -170.75018, -14.314727 ], [ -170.749558, -14.314398 ], [ -170.748501, -14.31628 ], [ -170.747463, -14.318133 ], [ -170.746781, -14.319092 ], [ -170.74605, -14.320063 ], [ -170.744552, -14.322547 ], [ -170.744371, -14.322849 ], [ -170.744294, -14.323172 ], [ -170.744332, -14.323445 ], [ -170.744391, -14.323545 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "60", "COUNTYFP10": "050", "TRACTCE10": "951000", "GEOID10": "60050951000", "NAME10": "9510", "NAMELSAD10": "Census Tract 9510", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 5071345, "AWATER10": 0, "INTPTLAT10": "-14.3139464", "INTPTLON10": "-170.7343927" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -170.723, -14.321632 ], [ -170.722995, -14.321688 ], [ -170.722985, -14.321822 ], [ -170.722982, -14.32184 ], [ -170.722976, -14.321894 ], [ -170.722974, -14.321913 ], [ -170.722968, -14.322017 ], [ -170.722966, -14.322072 ], [ -170.722964, -14.322098 ], [ -170.722956, -14.322195 ], [ -170.722933, -14.322328 ], [ -170.722933, -14.322332 ], [ -170.722905, -14.322429 ], [ -170.722943, -14.322454 ], [ -170.723059, -14.32253 ], [ -170.723063, -14.322533 ], [ -170.723093, -14.322562 ], [ -170.72315, -14.322616 ], [ -170.723218, -14.322682 ], [ -170.723327, -14.322774 ], [ -170.723376, -14.322815 ], [ -170.723389, -14.322825 ], [ -170.723551, -14.322956 ], [ -170.723572, -14.322973 ], [ -170.723641, -14.323043 ], [ -170.723704, -14.323099 ], [ -170.723705, -14.3231 ], [ -170.724807, -14.321895 ], [ -170.726111, -14.322057 ], [ -170.726554, -14.322181 ], [ -170.727063, -14.322087 ], [ -170.727954, -14.321736 ], [ -170.728111, -14.321164 ], [ -170.7278, -14.320539 ], [ -170.728055, -14.320535 ], [ -170.728517, -14.320577 ], [ -170.728808, -14.320844 ], [ -170.73039, -14.320927 ], [ -170.730559, -14.321011 ], [ -170.730593, -14.321436 ], [ -170.730595, -14.321468 ], [ -170.730617, -14.3215 ], [ -170.730632, -14.321514 ], [ -170.730678, -14.321557 ], [ -170.730808, -14.32165 ], [ -170.730858, -14.321665 ], [ -170.730878, -14.321671 ], [ -170.730911, -14.321676 ], [ -170.730944, -14.321696 ], [ -170.730979, -14.321699 ], [ -170.730986, -14.3217 ], [ -170.731033, -14.321706 ], [ -170.731084, -14.321725 ], [ -170.731118, -14.321739 ], [ -170.731126, -14.32172 ], [ -170.731134, -14.321705 ], [ -170.731146, -14.321663 ], [ -170.731147, -14.321661 ], [ -170.731158, -14.321647 ], [ -170.731379, -14.321419 ], [ -170.731898, -14.320886 ], [ -170.73189, -14.320832 ], [ -170.731889, -14.320801 ], [ -170.731889, -14.320763 ], [ -170.731859, -14.320627 ], [ -170.731904, -14.320624 ], [ -170.731982, -14.320584 ], [ -170.732024, -14.320564 ], [ -170.73207, -14.320544 ], [ -170.73211, -14.320512 ], [ -170.732157, -14.320486 ], [ -170.732309, -14.320514 ], [ -170.73235, -14.320503 ], [ -170.73235, -14.320501 ], [ -170.73244, -14.320403 ], [ -170.732731, -14.320146 ], [ -170.732804, -14.320151 ], [ -170.732921, -14.320159 ], [ -170.733232, -14.320134 ], [ -170.73364, -14.320315 ], [ -170.733719, -14.320307 ], [ -170.73418, -14.321261 ], [ -170.734869, -14.324397 ], [ -170.735647, -14.324398 ], [ -170.736821, -14.3244 ], [ -170.73764, -14.324365 ], [ -170.738039, -14.324348 ], [ -170.738851, -14.324333 ], [ -170.739076, -14.3252 ], [ -170.739144, -14.325464 ], [ -170.740046, -14.325534 ], [ -170.740217, -14.325255 ], [ -170.740234, -14.324923 ], [ -170.740889, -14.324848 ], [ -170.741662, -14.324395 ], [ -170.741804, -14.324247 ], [ -170.742097, -14.323946 ], [ -170.742428, -14.323732 ], [ -170.742851, -14.323502 ], [ -170.742945, -14.323557 ], [ -170.743153, -14.323686 ], [ -170.743263, -14.323756 ], [ -170.743305, -14.32378 ], [ -170.743486, -14.323883 ], [ -170.743569, -14.323926 ], [ -170.743601, -14.323942 ], [ -170.743697, -14.323991 ], [ -170.74373, -14.324008 ], [ -170.743796, -14.324041 ], [ -170.743994, -14.324141 ], [ -170.744005, -14.324147 ], [ -170.744062, -14.324173 ], [ -170.744093, -14.324187 ], [ -170.744189, -14.32423 ], [ -170.744221, -14.324245 ], [ -170.744276, -14.324154 ], [ -170.744422, -14.323915 ], [ -170.744486, -14.323706 ], [ -170.744391, -14.323545 ], [ -170.744332, -14.323445 ], [ -170.744294, -14.323172 ], [ -170.744371, -14.322849 ], [ -170.744552, -14.322547 ], [ -170.74605, -14.320063 ], [ -170.746781, -14.319092 ], [ -170.747463, -14.318133 ], [ -170.748501, -14.31628 ], [ -170.749558, -14.314398 ], [ -170.748547, -14.313863 ], [ -170.747959, -14.313476 ], [ -170.747405, -14.313162 ], [ -170.744694, -14.311624 ], [ -170.743923, -14.311155 ], [ -170.742779, -14.31046 ], [ -170.739841, -14.306829 ], [ -170.739444, -14.306338 ], [ -170.73738, -14.303989 ], [ -170.737265, -14.303661 ], [ -170.738035, -14.298632 ], [ -170.739276, -14.296377 ], [ -170.739156, -14.296478 ], [ -170.734307, -14.300048 ], [ -170.73242, -14.301438 ], [ -170.731629, -14.302023 ], [ -170.73152, -14.302103 ], [ -170.731498, -14.302121 ], [ -170.731288, -14.302367 ], [ -170.731089, -14.3026 ], [ -170.730493, -14.303299 ], [ -170.730295, -14.303533 ], [ -170.730116, -14.303742 ], [ -170.728621, -14.305495 ], [ -170.727328, -14.307013 ], [ -170.727111, -14.307267 ], [ -170.724719, -14.310095 ], [ -170.723843, -14.311137 ], [ -170.723145, -14.311969 ], [ -170.722102, -14.313213 ], [ -170.721215, -14.314266 ], [ -170.721201, -14.314283 ], [ -170.721188, -14.314298 ], [ -170.721125, -14.314372 ], [ -170.720939, -14.314597 ], [ -170.720879, -14.314669 ], [ -170.720741, -14.314833 ], [ -170.720694, -14.314888 ], [ -170.720189, -14.315488 ], [ -170.720179, -14.315501 ], [ -170.720147, -14.315538 ], [ -170.719965, -14.315756 ], [ -170.719742, -14.31602 ], [ -170.719451, -14.316366 ], [ -170.719189, -14.316675 ], [ -170.719137, -14.31674 ], [ -170.719075, -14.316812 ], [ -170.718851, -14.317075 ], [ -170.718827, -14.317102 ], [ -170.718811, -14.317122 ], [ -170.718758, -14.317184 ], [ -170.718736, -14.317212 ], [ -170.718443, -14.317562 ], [ -170.718185, -14.317869 ], [ -170.71832, -14.317934 ], [ -170.718434, -14.317996 ], [ -170.718514, -14.318039 ], [ -170.718633, -14.318104 ], [ -170.718739, -14.318152 ], [ -170.718781, -14.318175 ], [ -170.718828, -14.318202 ], [ -170.718889, -14.318248 ], [ -170.718943, -14.318288 ], [ -170.718982, -14.318317 ], [ -170.719022, -14.318357 ], [ -170.719104, -14.318415 ], [ -170.719117, -14.318425 ], [ -170.719162, -14.318452 ], [ -170.71922, -14.318486 ], [ -170.71929, -14.318528 ], [ -170.719364, -14.318555 ], [ -170.719406, -14.318573 ], [ -170.719469, -14.318601 ], [ -170.71954, -14.318647 ], [ -170.71971, -14.318757 ], [ -170.719758, -14.318783 ], [ -170.719834, -14.318825 ], [ -170.719883, -14.318852 ], [ -170.720033, -14.318933 ], [ -170.720083, -14.318961 ], [ -170.720125, -14.318984 ], [ -170.720251, -14.319054 ], [ -170.720253, -14.319055 ], [ -170.720292, -14.319086 ], [ -170.720316, -14.319104 ], [ -170.720389, -14.31916 ], [ -170.720414, -14.319179 ], [ -170.720453, -14.319204 ], [ -170.720497, -14.319232 ], [ -170.72057, -14.319279 ], [ -170.72061, -14.319305 ], [ -170.720641, -14.319325 ], [ -170.720734, -14.319385 ], [ -170.720766, -14.319406 ], [ -170.720847, -14.319458 ], [ -170.721091, -14.319616 ], [ -170.721093, -14.319617 ], [ -170.721179, -14.319664 ], [ -170.721204, -14.319678 ], [ -170.721281, -14.31972 ], [ -170.721307, -14.319735 ], [ -170.721405, -14.319789 ], [ -170.721659, -14.319926 ], [ -170.7217, -14.319952 ], [ -170.721702, -14.319956 ], [ -170.721723, -14.319993 ], [ -170.721829, -14.320111 ], [ -170.721894, -14.320214 ], [ -170.722036, -14.320344 ], [ -170.722103, -14.320397 ], [ -170.722193, -14.320424 ], [ -170.722345, -14.320491 ], [ -170.722417, -14.320538 ], [ -170.722563, -14.320609 ], [ -170.722625, -14.320629 ], [ -170.722672, -14.320595 ], [ -170.722718, -14.320538 ], [ -170.722753, -14.320489 ], [ -170.722763, -14.320476 ], [ -170.722807, -14.32042 ], [ -170.722853, -14.320376 ], [ -170.72291, -14.320326 ], [ -170.722952, -14.320268 ], [ -170.722991, -14.320247 ], [ -170.723035, -14.320231 ], [ -170.723098, -14.320217 ], [ -170.723094, -14.320262 ], [ -170.723093, -14.320264 ], [ -170.723079, -14.320403 ], [ -170.723053, -14.320669 ], [ -170.723032, -14.320965 ], [ -170.723029, -14.321021 ], [ -170.723025, -14.321153 ], [ -170.72302, -14.321287 ], [ -170.723019, -14.321351 ], [ -170.723, -14.321632 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "60", "COUNTYFP10": "050", "TRACTCE10": "951201", "GEOID10": "60050951201", "NAME10": "9512.01", "NAMELSAD10": "Census Tract 9512.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3446823, "AWATER10": 17253588, "INTPTLAT10": "-14.3325042", "INTPTLON10": "-170.7126567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -170.722985, -14.321822 ], [ -170.722995, -14.321688 ], [ -170.723, -14.321632 ], [ -170.723019, -14.321351 ], [ -170.72302, -14.321287 ], [ -170.723025, -14.321153 ], [ -170.723029, -14.321021 ], [ -170.723032, -14.320965 ], [ -170.723053, -14.320669 ], [ -170.723079, -14.320403 ], [ -170.723093, -14.320264 ], [ -170.723094, -14.320262 ], [ -170.723098, -14.320217 ], [ -170.723035, -14.320231 ], [ -170.722991, -14.320247 ], [ -170.722952, -14.320268 ], [ -170.72291, -14.320326 ], [ -170.722853, -14.320376 ], [ -170.722807, -14.32042 ], [ -170.722763, -14.320476 ], [ -170.722753, -14.320489 ], [ -170.722718, -14.320538 ], [ -170.722672, -14.320595 ], [ -170.722625, -14.320629 ], [ -170.722563, -14.320609 ], [ -170.722417, -14.320538 ], [ -170.722345, -14.320491 ], [ -170.722193, -14.320424 ], [ -170.722103, -14.320397 ], [ -170.722036, -14.320344 ], [ -170.721894, -14.320214 ], [ -170.721829, -14.320111 ], [ -170.721723, -14.319993 ], [ -170.721702, -14.319956 ], [ -170.7217, -14.319952 ], [ -170.721659, -14.319926 ], [ -170.721405, -14.319789 ], [ -170.721307, -14.319735 ], [ -170.721281, -14.31972 ], [ -170.721204, -14.319678 ], [ -170.721179, -14.319664 ], [ -170.721093, -14.319617 ], [ -170.721091, -14.319616 ], [ -170.720847, -14.319458 ], [ -170.720766, -14.319406 ], [ -170.720734, -14.319385 ], [ -170.720641, -14.319325 ], [ -170.72061, -14.319305 ], [ -170.72057, -14.319279 ], [ -170.720497, -14.319232 ], [ -170.720453, -14.319204 ], [ -170.720414, -14.319179 ], [ -170.720389, -14.31916 ], [ -170.720316, -14.319104 ], [ -170.720292, -14.319086 ], [ -170.720253, -14.319055 ], [ -170.720251, -14.319054 ], [ -170.720125, -14.318984 ], [ -170.720083, -14.318961 ], [ -170.720033, -14.318933 ], [ -170.719883, -14.318852 ], [ -170.719834, -14.318825 ], [ -170.719758, -14.318783 ], [ -170.71971, -14.318757 ], [ -170.71954, -14.318647 ], [ -170.719469, -14.318601 ], [ -170.719406, -14.318573 ], [ -170.719364, -14.318555 ], [ -170.71929, -14.318528 ], [ -170.71922, -14.318486 ], [ -170.719162, -14.318452 ], [ -170.719117, -14.318425 ], [ -170.719104, -14.318415 ], [ -170.719022, -14.318357 ], [ -170.718982, -14.318317 ], [ -170.718943, -14.318288 ], [ -170.718889, -14.318248 ], [ -170.718828, -14.318202 ], [ -170.718781, -14.318175 ], [ -170.718739, -14.318152 ], [ -170.718633, -14.318104 ], [ -170.718514, -14.318039 ], [ -170.718434, -14.317996 ], [ -170.71832, -14.317934 ], [ -170.718185, -14.317869 ], [ -170.718141, -14.317921 ], [ -170.717758, -14.31838 ], [ -170.717444, -14.318737 ], [ -170.717075, -14.319155 ], [ -170.716841, -14.31942 ], [ -170.716827, -14.319436 ], [ -170.716497, -14.319806 ], [ -170.71638, -14.319936 ], [ -170.715897, -14.320481 ], [ -170.715454, -14.321049 ], [ -170.715041, -14.32158 ], [ -170.714255, -14.32259 ], [ -170.714069, -14.322812 ], [ -170.713984, -14.322915 ], [ -170.713056, -14.324035 ], [ -170.712734, -14.324425 ], [ -170.712509, -14.324698 ], [ -170.712148, -14.325123 ], [ -170.712118, -14.325159 ], [ -170.712048, -14.325246 ], [ -170.711716, -14.32565 ], [ -170.711709, -14.325658 ], [ -170.711606, -14.325785 ], [ -170.711288, -14.326168 ], [ -170.711144, -14.326343 ], [ -170.710726, -14.326845 ], [ -170.710334, -14.327316 ], [ -170.710017, -14.3277 ], [ -170.709887, -14.327854 ], [ -170.709501, -14.32832 ], [ -170.709372, -14.328475 ], [ -170.709091, -14.328807 ], [ -170.708252, -14.329806 ], [ -170.707973, -14.33014 ], [ -170.707787, -14.330332 ], [ -170.707677, -14.330448 ], [ -170.707258, -14.330935 ], [ -170.707084, -14.331139 ], [ -170.705895, -14.332551 ], [ -170.702339, -14.336797 ], [ -170.701156, -14.338216 ], [ -170.695368, -14.345246 ], [ -170.695028, -14.345653 ], [ -170.679389, -14.364421 ], [ -170.676421, -14.367779 ], [ -170.670039, -14.375 ], [ -170.669671, -14.37545 ], [ -170.668567, -14.3768 ], [ -170.6682, -14.377251 ], [ -170.669225, -14.378057 ], [ -170.673317, -14.380664 ], [ -170.675842, -14.382272 ], [ -170.688544, -14.391113 ], [ -170.690118, -14.392209 ], [ -170.693656, -14.394545 ], [ -170.715557, -14.352766 ], [ -170.71891, -14.345545 ], [ -170.720876, -14.341309 ], [ -170.721406, -14.340167 ], [ -170.721512, -14.33994 ], [ -170.721696, -14.33979 ], [ -170.721738, -14.339731 ], [ -170.721763, -14.339698 ], [ -170.721825, -14.339616 ], [ -170.721859, -14.339553 ], [ -170.721894, -14.33949 ], [ -170.722019, -14.339317 ], [ -170.722306, -14.338921 ], [ -170.722393, -14.338797 ], [ -170.722517, -14.338623 ], [ -170.722661, -14.33837 ], [ -170.723094, -14.33761 ], [ -170.723239, -14.337358 ], [ -170.723344, -14.33702 ], [ -170.723658, -14.336008 ], [ -170.723764, -14.335671 ], [ -170.723885, -14.335524 ], [ -170.723857, -14.335509 ], [ -170.723653, -14.335398 ], [ -170.723265, -14.335187 ], [ -170.722961, -14.335014 ], [ -170.722937, -14.335 ], [ -170.722735, -14.334879 ], [ -170.722732, -14.334877 ], [ -170.722723, -14.334871 ], [ -170.72272, -14.334869 ], [ -170.722731, -14.334851 ], [ -170.722766, -14.334799 ], [ -170.722778, -14.334782 ], [ -170.722223, -14.334472 ], [ -170.720873, -14.333719 ], [ -170.721079, -14.333428 ], [ -170.721448, -14.332912 ], [ -170.721671, -14.332665 ], [ -170.721705, -14.332628 ], [ -170.722479, -14.332081 ], [ -170.722512, -14.332058 ], [ -170.72271, -14.331843 ], [ -170.722759, -14.331806 ], [ -170.722773, -14.331782 ], [ -170.722775, -14.33178 ], [ -170.72278, -14.331768 ], [ -170.722806, -14.331718 ], [ -170.722833, -14.331674 ], [ -170.722915, -14.331558 ], [ -170.722967, -14.331486 ], [ -170.72299, -14.331425 ], [ -170.72301, -14.331401 ], [ -170.723141, -14.331257 ], [ -170.723198, -14.331221 ], [ -170.723221, -14.331208 ], [ -170.723307, -14.331163 ], [ -170.723377, -14.331085 ], [ -170.723388, -14.331064 ], [ -170.723473, -14.330915 ], [ -170.723587, -14.330734 ], [ -170.723656, -14.330626 ], [ -170.723705, -14.330528 ], [ -170.723774, -14.330396 ], [ -170.723842, -14.33023 ], [ -170.723844, -14.330227 ], [ -170.723872, -14.330125 ], [ -170.723994, -14.33016 ], [ -170.724024, -14.330169 ], [ -170.724374, -14.330199 ], [ -170.724501, -14.33021 ], [ -170.724583, -14.330217 ], [ -170.724618, -14.33022 ], [ -170.724798, -14.330235 ], [ -170.72483, -14.330236 ], [ -170.724913, -14.33024 ], [ -170.72497, -14.330242 ], [ -170.725142, -14.330249 ], [ -170.7252, -14.330252 ], [ -170.725217, -14.330253 ], [ -170.725244, -14.330256 ], [ -170.725268, -14.330257 ], [ -170.725286, -14.330259 ], [ -170.725392, -14.330266 ], [ -170.725552, -14.330279 ], [ -170.725701, -14.330285 ], [ -170.72571, -14.330285 ], [ -170.725817, -14.330292 ], [ -170.72587, -14.330294 ], [ -170.725914, -14.330296 ], [ -170.725979, -14.330298 ], [ -170.726019, -14.330299 ], [ -170.726033, -14.330299 ], [ -170.726057, -14.330299 ], [ -170.726087, -14.330301 ], [ -170.726135, -14.330303 ], [ -170.726175, -14.330305 ], [ -170.726279, -14.330315 ], [ -170.726327, -14.330321 ], [ -170.726389, -14.330335 ], [ -170.726576, -14.330379 ], [ -170.726639, -14.330394 ], [ -170.726708, -14.330407 ], [ -170.726918, -14.330449 ], [ -170.726988, -14.330464 ], [ -170.727051, -14.330479 ], [ -170.727165, -14.330506 ], [ -170.727244, -14.330512 ], [ -170.72731, -14.330518 ], [ -170.727366, -14.33052 ], [ -170.727536, -14.330529 ], [ -170.727593, -14.330532 ], [ -170.727648, -14.330534 ], [ -170.727813, -14.330543 ], [ -170.727869, -14.330546 ], [ -170.727959, -14.330549 ], [ -170.728006, -14.330551 ], [ -170.728229, -14.33056 ], [ -170.728319, -14.330565 ], [ -170.728431, -14.330529 ], [ -170.72877, -14.330423 ], [ -170.728883, -14.330388 ], [ -170.728892, -14.330435 ], [ -170.728891, -14.33047 ], [ -170.728916, -14.330515 ], [ -170.728956, -14.330553 ], [ -170.729093, -14.330589 ], [ -170.729153, -14.330587 ], [ -170.729466, -14.330579 ], [ -170.729496, -14.33058 ], [ -170.729662, -14.330579 ], [ -170.729737, -14.33058 ], [ -170.729956, -14.330579 ], [ -170.73024, -14.330593 ], [ -170.730295, -14.330594 ], [ -170.730327, -14.330592 ], [ -170.730333, -14.330592 ], [ -170.73062, -14.330589 ], [ -170.73072, -14.330588 ], [ -170.730708, -14.33046 ], [ -170.730698, -14.330408 ], [ -170.730676, -14.330254 ], [ -170.730668, -14.330048 ], [ -170.730667, -14.330019 ], [ -170.73066, -14.329911 ], [ -170.730654, -14.329828 ], [ -170.730653, -14.329819 ], [ -170.730652, -14.329684 ], [ -170.730653, -14.329545 ], [ -170.730655, -14.329454 ], [ -170.730655, -14.329426 ], [ -170.730656, -14.329363 ], [ -170.730656, -14.329345 ], [ -170.730658, -14.329319 ], [ -170.730664, -14.329256 ], [ -170.730682, -14.329097 ], [ -170.730683, -14.329067 ], [ -170.730687, -14.329004 ], [ -170.730689, -14.328949 ], [ -170.730697, -14.328787 ], [ -170.7307, -14.328733 ], [ -170.730715, -14.328642 ], [ -170.730729, -14.328578 ], [ -170.730773, -14.328392 ], [ -170.730825, -14.328123 ], [ -170.730826, -14.328116 ], [ -170.73086, -14.327963 ], [ -170.730871, -14.327907 ], [ -170.730883, -14.327851 ], [ -170.730904, -14.327742 ], [ -170.730916, -14.327687 ], [ -170.730933, -14.327605 ], [ -170.730945, -14.327547 ], [ -170.730972, -14.327431 ], [ -170.731001, -14.327326 ], [ -170.731051, -14.32715 ], [ -170.731057, -14.327134 ], [ -170.731116, -14.327004 ], [ -170.731127, -14.326978 ], [ -170.731161, -14.326903 ], [ -170.731173, -14.326878 ], [ -170.73128, -14.326724 ], [ -170.731286, -14.326716 ], [ -170.731329, -14.326659 ], [ -170.731379, -14.326592 ], [ -170.731476, -14.326462 ], [ -170.73157, -14.326325 ], [ -170.731604, -14.326265 ], [ -170.7317, -14.326104 ], [ -170.731706, -14.326092 ], [ -170.73172, -14.326069 ], [ -170.731727, -14.326056 ], [ -170.731734, -14.326044 ], [ -170.731806, -14.325921 ], [ -170.731845, -14.325857 ], [ -170.731944, -14.325634 ], [ -170.731959, -14.325583 ], [ -170.731974, -14.325532 ], [ -170.731993, -14.325471 ], [ -170.732018, -14.325397 ], [ -170.73203, -14.325362 ], [ -170.732061, -14.325214 ], [ -170.732085, -14.325102 ], [ -170.732095, -14.324967 ], [ -170.732082, -14.324773 ], [ -170.732069, -14.324654 ], [ -170.732051, -14.324467 ], [ -170.732461, -14.324395 ], [ -170.734869, -14.324397 ], [ -170.73418, -14.321261 ], [ -170.733719, -14.320307 ], [ -170.73364, -14.320315 ], [ -170.733232, -14.320134 ], [ -170.732921, -14.320159 ], [ -170.732804, -14.320151 ], [ -170.732731, -14.320146 ], [ -170.73244, -14.320403 ], [ -170.73235, -14.320501 ], [ -170.73235, -14.320503 ], [ -170.732309, -14.320514 ], [ -170.732157, -14.320486 ], [ -170.73211, -14.320512 ], [ -170.73207, -14.320544 ], [ -170.732024, -14.320564 ], [ -170.731982, -14.320584 ], [ -170.731904, -14.320624 ], [ -170.731859, -14.320627 ], [ -170.731889, -14.320763 ], [ -170.731889, -14.320801 ], [ -170.73189, -14.320832 ], [ -170.731898, -14.320886 ], [ -170.731379, -14.321419 ], [ -170.731158, -14.321647 ], [ -170.731147, -14.321661 ], [ -170.731146, -14.321663 ], [ -170.731134, -14.321705 ], [ -170.731126, -14.32172 ], [ -170.731118, -14.321739 ], [ -170.731084, -14.321725 ], [ -170.731033, -14.321706 ], [ -170.730986, -14.3217 ], [ -170.730979, -14.321699 ], [ -170.730944, -14.321696 ], [ -170.730911, -14.321676 ], [ -170.730878, -14.321671 ], [ -170.730858, -14.321665 ], [ -170.730808, -14.32165 ], [ -170.730678, -14.321557 ], [ -170.730632, -14.321514 ], [ -170.730617, -14.3215 ], [ -170.730595, -14.321468 ], [ -170.730593, -14.321436 ], [ -170.730559, -14.321011 ], [ -170.73039, -14.320927 ], [ -170.728808, -14.320844 ], [ -170.728517, -14.320577 ], [ -170.728055, -14.320535 ], [ -170.7278, -14.320539 ], [ -170.728111, -14.321164 ], [ -170.727954, -14.321736 ], [ -170.727063, -14.322087 ], [ -170.726554, -14.322181 ], [ -170.726111, -14.322057 ], [ -170.724807, -14.321895 ], [ -170.723705, -14.3231 ], [ -170.723704, -14.323099 ], [ -170.723641, -14.323043 ], [ -170.723572, -14.322973 ], [ -170.723551, -14.322956 ], [ -170.723389, -14.322825 ], [ -170.723376, -14.322815 ], [ -170.723327, -14.322774 ], [ -170.723218, -14.322682 ], [ -170.72315, -14.322616 ], [ -170.723093, -14.322562 ], [ -170.723063, -14.322533 ], [ -170.723059, -14.32253 ], [ -170.722943, -14.322454 ], [ -170.722905, -14.322429 ], [ -170.722933, -14.322332 ], [ -170.722933, -14.322328 ], [ -170.722956, -14.322195 ], [ -170.722964, -14.322098 ], [ -170.722966, -14.322072 ], [ -170.722968, -14.322017 ], [ -170.722974, -14.321913 ], [ -170.722976, -14.321894 ], [ -170.722982, -14.32184 ], [ -170.722985, -14.321822 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "60", "COUNTYFP10": "050", "TRACTCE10": "951203", "GEOID10": "60050951203", "NAME10": "9512.03", "NAMELSAD10": "Census Tract 9512.03", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 7170124, "AWATER10": 31709133, "INTPTLAT10": "-14.3617336", "INTPTLON10": "-170.7412423" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -170.743652, -14.33486 ], [ -170.743469, -14.334974 ], [ -170.743408, -14.335018 ], [ -170.743333, -14.335058 ], [ -170.743254, -14.335089 ], [ -170.743184, -14.335101 ], [ -170.743035, -14.335112 ], [ -170.742948, -14.335125 ], [ -170.742923, -14.33513 ], [ -170.742772, -14.33514 ], [ -170.742658, -14.335136 ], [ -170.742217, -14.335119 ], [ -170.742112, -14.335123 ], [ -170.742014, -14.335132 ], [ -170.741899, -14.335137 ], [ -170.741727, -14.335146 ], [ -170.74125, -14.335153 ], [ -170.741185, -14.335154 ], [ -170.741013, -14.33516 ], [ -170.740914, -14.335158 ], [ -170.740818, -14.335151 ], [ -170.740644, -14.335151 ], [ -170.740632, -14.335151 ], [ -170.740535, -14.335159 ], [ -170.740447, -14.335167 ], [ -170.740293, -14.335188 ], [ -170.740041, -14.335209 ], [ -170.73988, -14.335225 ], [ -170.739654, -14.335247 ], [ -170.739593, -14.335253 ], [ -170.73931, -14.335262 ], [ -170.738615, -14.335284 ], [ -170.738194, -14.337354 ], [ -170.737706, -14.338076 ], [ -170.736692, -14.338783 ], [ -170.736516, -14.339042 ], [ -170.735213, -14.339553 ], [ -170.733658, -14.340363 ], [ -170.733191, -14.34075 ], [ -170.733092, -14.340693 ], [ -170.732795, -14.340522 ], [ -170.732697, -14.340466 ], [ -170.732622, -14.340421 ], [ -170.732399, -14.340286 ], [ -170.732325, -14.340242 ], [ -170.73222, -14.340183 ], [ -170.732146, -14.340142 ], [ -170.731667, -14.339876 ], [ -170.731608, -14.339843 ], [ -170.73143, -14.339744 ], [ -170.7314, -14.339724 ], [ -170.731311, -14.339667 ], [ -170.731282, -14.339648 ], [ -170.731191, -14.339597 ], [ -170.73118, -14.339591 ], [ -170.731147, -14.339572 ], [ -170.73106, -14.339524 ], [ -170.731021, -14.339502 ], [ -170.730875, -14.339423 ], [ -170.730838, -14.339403 ], [ -170.730775, -14.339365 ], [ -170.730697, -14.33932 ], [ -170.730463, -14.339185 ], [ -170.730385, -14.33914 ], [ -170.730343, -14.339117 ], [ -170.730271, -14.339079 ], [ -170.730217, -14.339051 ], [ -170.730176, -14.339029 ], [ -170.729443, -14.340202 ], [ -170.729021, -14.340113 ], [ -170.72876, -14.340017 ], [ -170.728671, -14.339984 ], [ -170.728263, -14.339837 ], [ -170.727982, -14.339722 ], [ -170.727725, -14.339618 ], [ -170.727498, -14.339576 ], [ -170.725858, -14.339274 ], [ -170.723094, -14.33761 ], [ -170.722661, -14.33837 ], [ -170.722517, -14.338623 ], [ -170.722393, -14.338797 ], [ -170.722306, -14.338921 ], [ -170.722019, -14.339317 ], [ -170.721894, -14.33949 ], [ -170.721859, -14.339553 ], [ -170.721825, -14.339616 ], [ -170.721763, -14.339698 ], [ -170.721738, -14.339731 ], [ -170.721696, -14.33979 ], [ -170.721512, -14.33994 ], [ -170.721406, -14.340167 ], [ -170.720876, -14.341309 ], [ -170.71891, -14.345545 ], [ -170.715557, -14.352766 ], [ -170.693656, -14.394545 ], [ -170.697079, -14.396805 ], [ -170.707348, -14.403588 ], [ -170.710771, -14.405849 ], [ -170.711401, -14.406265 ], [ -170.713037, -14.407346 ], [ -170.713291, -14.407512 ], [ -170.713923, -14.407927 ], [ -170.725755, -14.415942 ], [ -170.739019, -14.41995 ], [ -170.73902, -14.41995 ], [ -170.739933, -14.41987 ], [ -170.742673, -14.419633 ], [ -170.743587, -14.419554 ], [ -170.745438, -14.40778 ], [ -170.75, -14.378768 ], [ -170.750585, -14.375045 ], [ -170.750991, -14.37246 ], [ -170.75149, -14.369292 ], [ -170.752017, -14.365417 ], [ -170.752567, -14.36138 ], [ -170.752665, -14.360661 ], [ -170.752727, -14.360212 ], [ -170.752917, -14.358866 ], [ -170.75298, -14.358418 ], [ -170.752988, -14.358359 ], [ -170.753014, -14.358186 ], [ -170.753023, -14.358128 ], [ -170.753048, -14.357955 ], [ -170.753124, -14.357436 ], [ -170.75315, -14.357264 ], [ -170.753189, -14.356996 ], [ -170.753307, -14.356195 ], [ -170.75333, -14.35604 ], [ -170.753347, -14.355928 ], [ -170.75339, -14.355628 ], [ -170.753447, -14.355225 ], [ -170.753747, -14.353119 ], [ -170.753842, -14.352452 ], [ -170.754041, -14.352493 ], [ -170.755801, -14.35213 ], [ -170.756037, -14.350947 ], [ -170.755978, -14.35009 ], [ -170.75554, -14.349938 ], [ -170.754852, -14.349997 ], [ -170.754305, -14.350072 ], [ -170.753877, -14.350131 ], [ -170.754035, -14.34894 ], [ -170.754162, -14.347927 ], [ -170.753996, -14.347392 ], [ -170.753917, -14.346718 ], [ -170.755026, -14.345398 ], [ -170.755044, -14.345546 ], [ -170.756021, -14.344747 ], [ -170.757182, -14.342149 ], [ -170.756293, -14.341692 ], [ -170.755934, -14.341392 ], [ -170.755646, -14.341152 ], [ -170.755491, -14.340484 ], [ -170.754918, -14.339925 ], [ -170.754882, -14.339937 ], [ -170.754845, -14.339948 ], [ -170.754556, -14.340039 ], [ -170.754272, -14.34012 ], [ -170.754263, -14.340121 ], [ -170.754215, -14.340129 ], [ -170.754157, -14.340138 ], [ -170.754116, -14.340149 ], [ -170.754066, -14.340164 ], [ -170.750419, -14.340949 ], [ -170.747566, -14.340071 ], [ -170.746897, -14.340018 ], [ -170.746864, -14.339634 ], [ -170.746789, -14.338756 ], [ -170.746766, -14.338482 ], [ -170.746734, -14.338099 ], [ -170.746695, -14.337948 ], [ -170.74669, -14.337873 ], [ -170.746594, -14.337805 ], [ -170.746459, -14.337709 ], [ -170.746251, -14.337532 ], [ -170.746048, -14.337366 ], [ -170.745964, -14.337298 ], [ -170.745908, -14.337253 ], [ -170.745833, -14.337167 ], [ -170.745807, -14.337124 ], [ -170.745765, -14.337054 ], [ -170.745741, -14.336964 ], [ -170.745726, -14.336874 ], [ -170.745676, -14.336809 ], [ -170.745579, -14.336685 ], [ -170.745322, -14.336499 ], [ -170.74417, -14.335666 ], [ -170.743786, -14.335389 ], [ -170.743791, -14.3353 ], [ -170.743784, -14.335279 ], [ -170.743731, -14.335099 ], [ -170.743686, -14.334964 ], [ -170.743652, -14.33486 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "60", "COUNTYFP10": "050", "TRACTCE10": "951202", "GEOID10": "60050951202", "NAME10": "9512.02", "NAMELSAD10": "Census Tract 9512.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2465485, "AWATER10": 0, "INTPTLAT10": "-14.3329549", "INTPTLON10": "-170.7325608" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -170.741899, -14.335137 ], [ -170.742014, -14.335132 ], [ -170.742112, -14.335123 ], [ -170.742217, -14.335119 ], [ -170.742658, -14.335136 ], [ -170.742772, -14.33514 ], [ -170.742923, -14.33513 ], [ -170.742948, -14.335125 ], [ -170.743035, -14.335112 ], [ -170.743184, -14.335101 ], [ -170.743254, -14.335089 ], [ -170.743333, -14.335058 ], [ -170.743408, -14.335018 ], [ -170.743469, -14.334974 ], [ -170.743652, -14.33486 ], [ -170.743618, -14.334779 ], [ -170.743579, -14.334604 ], [ -170.743557, -14.334481 ], [ -170.743538, -14.334421 ], [ -170.743501, -14.334375 ], [ -170.743467, -14.334322 ], [ -170.74336, -14.334237 ], [ -170.743324, -14.334201 ], [ -170.743289, -14.334174 ], [ -170.743249, -14.334133 ], [ -170.743173, -14.334075 ], [ -170.743114, -14.334031 ], [ -170.743077, -14.333995 ], [ -170.743029, -14.333956 ], [ -170.742914, -14.333809 ], [ -170.742868, -14.333771 ], [ -170.742689, -14.333655 ], [ -170.742623, -14.333621 ], [ -170.742559, -14.333576 ], [ -170.7425, -14.333528 ], [ -170.742412, -14.333429 ], [ -170.742334, -14.333323 ], [ -170.742164, -14.333093 ], [ -170.741951, -14.332848 ], [ -170.741887, -14.332796 ], [ -170.74175, -14.33273 ], [ -170.741682, -14.332683 ], [ -170.74161, -14.332643 ], [ -170.741537, -14.332613 ], [ -170.741461, -14.332588 ], [ -170.741383, -14.332568 ], [ -170.741312, -14.332541 ], [ -170.74125, -14.332499 ], [ -170.741187, -14.331762 ], [ -170.74029, -14.330774 ], [ -170.740131, -14.330598 ], [ -170.740131, -14.330271 ], [ -170.740131, -14.329827 ], [ -170.739532, -14.32695 ], [ -170.739144, -14.325464 ], [ -170.739076, -14.3252 ], [ -170.738851, -14.324333 ], [ -170.738039, -14.324348 ], [ -170.73764, -14.324365 ], [ -170.736821, -14.3244 ], [ -170.735647, -14.324398 ], [ -170.734869, -14.324397 ], [ -170.732461, -14.324395 ], [ -170.732051, -14.324467 ], [ -170.732069, -14.324654 ], [ -170.732082, -14.324773 ], [ -170.732095, -14.324967 ], [ -170.732085, -14.325102 ], [ -170.732061, -14.325214 ], [ -170.73203, -14.325362 ], [ -170.732018, -14.325397 ], [ -170.731993, -14.325471 ], [ -170.731974, -14.325532 ], [ -170.731959, -14.325583 ], [ -170.731944, -14.325634 ], [ -170.731845, -14.325857 ], [ -170.731806, -14.325921 ], [ -170.731734, -14.326044 ], [ -170.731727, -14.326056 ], [ -170.73172, -14.326069 ], [ -170.731706, -14.326092 ], [ -170.7317, -14.326104 ], [ -170.731604, -14.326265 ], [ -170.73157, -14.326325 ], [ -170.731476, -14.326462 ], [ -170.731379, -14.326592 ], [ -170.731329, -14.326659 ], [ -170.731286, -14.326716 ], [ -170.73128, -14.326724 ], [ -170.731173, -14.326878 ], [ -170.731161, -14.326903 ], [ -170.731127, -14.326978 ], [ -170.731116, -14.327004 ], [ -170.731057, -14.327134 ], [ -170.731051, -14.32715 ], [ -170.731001, -14.327326 ], [ -170.730972, -14.327431 ], [ -170.730945, -14.327547 ], [ -170.730933, -14.327605 ], [ -170.730916, -14.327687 ], [ -170.730904, -14.327742 ], [ -170.730883, -14.327851 ], [ -170.730871, -14.327907 ], [ -170.73086, -14.327963 ], [ -170.730826, -14.328116 ], [ -170.730825, -14.328123 ], [ -170.730773, -14.328392 ], [ -170.730729, -14.328578 ], [ -170.730715, -14.328642 ], [ -170.7307, -14.328733 ], [ -170.730697, -14.328787 ], [ -170.730689, -14.328949 ], [ -170.730687, -14.329004 ], [ -170.730683, -14.329067 ], [ -170.730682, -14.329097 ], [ -170.730664, -14.329256 ], [ -170.730658, -14.329319 ], [ -170.730656, -14.329345 ], [ -170.730656, -14.329363 ], [ -170.730655, -14.329426 ], [ -170.730655, -14.329454 ], [ -170.730653, -14.329545 ], [ -170.730652, -14.329684 ], [ -170.730653, -14.329819 ], [ -170.730654, -14.329828 ], [ -170.73066, -14.329911 ], [ -170.730667, -14.330019 ], [ -170.730668, -14.330048 ], [ -170.730676, -14.330254 ], [ -170.730698, -14.330408 ], [ -170.730708, -14.33046 ], [ -170.73072, -14.330588 ], [ -170.73062, -14.330589 ], [ -170.730333, -14.330592 ], [ -170.730327, -14.330592 ], [ -170.730295, -14.330594 ], [ -170.73024, -14.330593 ], [ -170.729956, -14.330579 ], [ -170.729737, -14.33058 ], [ -170.729662, -14.330579 ], [ -170.729496, -14.33058 ], [ -170.729466, -14.330579 ], [ -170.729153, -14.330587 ], [ -170.729093, -14.330589 ], [ -170.728956, -14.330553 ], [ -170.728916, -14.330515 ], [ -170.728891, -14.33047 ], [ -170.728892, -14.330435 ], [ -170.728883, -14.330388 ], [ -170.72877, -14.330423 ], [ -170.728431, -14.330529 ], [ -170.728319, -14.330565 ], [ -170.728229, -14.33056 ], [ -170.728006, -14.330551 ], [ -170.727959, -14.330549 ], [ -170.727869, -14.330546 ], [ -170.727813, -14.330543 ], [ -170.727648, -14.330534 ], [ -170.727593, -14.330532 ], [ -170.727536, -14.330529 ], [ -170.727366, -14.33052 ], [ -170.72731, -14.330518 ], [ -170.727244, -14.330512 ], [ -170.727165, -14.330506 ], [ -170.727051, -14.330479 ], [ -170.726988, -14.330464 ], [ -170.726918, -14.330449 ], [ -170.726708, -14.330407 ], [ -170.726639, -14.330394 ], [ -170.726576, -14.330379 ], [ -170.726389, -14.330335 ], [ -170.726327, -14.330321 ], [ -170.726279, -14.330315 ], [ -170.726175, -14.330305 ], [ -170.726135, -14.330303 ], [ -170.726087, -14.330301 ], [ -170.726057, -14.330299 ], [ -170.726033, -14.330299 ], [ -170.726019, -14.330299 ], [ -170.725979, -14.330298 ], [ -170.725914, -14.330296 ], [ -170.72587, -14.330294 ], [ -170.725817, -14.330292 ], [ -170.72571, -14.330285 ], [ -170.725701, -14.330285 ], [ -170.725552, -14.330279 ], [ -170.725392, -14.330266 ], [ -170.725286, -14.330259 ], [ -170.725268, -14.330257 ], [ -170.725244, -14.330256 ], [ -170.725217, -14.330253 ], [ -170.7252, -14.330252 ], [ -170.725142, -14.330249 ], [ -170.72497, -14.330242 ], [ -170.724913, -14.33024 ], [ -170.72483, -14.330236 ], [ -170.724798, -14.330235 ], [ -170.724618, -14.33022 ], [ -170.724583, -14.330217 ], [ -170.724501, -14.33021 ], [ -170.724374, -14.330199 ], [ -170.724024, -14.330169 ], [ -170.723994, -14.33016 ], [ -170.723872, -14.330125 ], [ -170.723844, -14.330227 ], [ -170.723842, -14.33023 ], [ -170.723774, -14.330396 ], [ -170.723705, -14.330528 ], [ -170.723656, -14.330626 ], [ -170.723587, -14.330734 ], [ -170.723473, -14.330915 ], [ -170.723388, -14.331064 ], [ -170.723377, -14.331085 ], [ -170.723307, -14.331163 ], [ -170.723221, -14.331208 ], [ -170.723198, -14.331221 ], [ -170.723141, -14.331257 ], [ -170.72301, -14.331401 ], [ -170.72299, -14.331425 ], [ -170.722967, -14.331486 ], [ -170.722915, -14.331558 ], [ -170.722833, -14.331674 ], [ -170.722806, -14.331718 ], [ -170.72278, -14.331768 ], [ -170.722775, -14.33178 ], [ -170.722773, -14.331782 ], [ -170.722759, -14.331806 ], [ -170.72271, -14.331843 ], [ -170.722512, -14.332058 ], [ -170.722479, -14.332081 ], [ -170.721705, -14.332628 ], [ -170.721671, -14.332665 ], [ -170.721448, -14.332912 ], [ -170.721079, -14.333428 ], [ -170.720873, -14.333719 ], [ -170.722223, -14.334472 ], [ -170.722778, -14.334782 ], [ -170.722766, -14.334799 ], [ -170.722731, -14.334851 ], [ -170.72272, -14.334869 ], [ -170.722723, -14.334871 ], [ -170.722732, -14.334877 ], [ -170.722735, -14.334879 ], [ -170.722937, -14.335 ], [ -170.722961, -14.335014 ], [ -170.723265, -14.335187 ], [ -170.723653, -14.335398 ], [ -170.723857, -14.335509 ], [ -170.723885, -14.335524 ], [ -170.723764, -14.335671 ], [ -170.723658, -14.336008 ], [ -170.723344, -14.33702 ], [ -170.723239, -14.337358 ], [ -170.723094, -14.33761 ], [ -170.725858, -14.339274 ], [ -170.727498, -14.339576 ], [ -170.727725, -14.339618 ], [ -170.727982, -14.339722 ], [ -170.728263, -14.339837 ], [ -170.728671, -14.339984 ], [ -170.72876, -14.340017 ], [ -170.729021, -14.340113 ], [ -170.729443, -14.340202 ], [ -170.730176, -14.339029 ], [ -170.730217, -14.339051 ], [ -170.730271, -14.339079 ], [ -170.730343, -14.339117 ], [ -170.730385, -14.33914 ], [ -170.730463, -14.339185 ], [ -170.730697, -14.33932 ], [ -170.730775, -14.339365 ], [ -170.730838, -14.339403 ], [ -170.730875, -14.339423 ], [ -170.731021, -14.339502 ], [ -170.73106, -14.339524 ], [ -170.731147, -14.339572 ], [ -170.73118, -14.339591 ], [ -170.731191, -14.339597 ], [ -170.731282, -14.339648 ], [ -170.731311, -14.339667 ], [ -170.7314, -14.339724 ], [ -170.73143, -14.339744 ], [ -170.731608, -14.339843 ], [ -170.731667, -14.339876 ], [ -170.732146, -14.340142 ], [ -170.73222, -14.340183 ], [ -170.732325, -14.340242 ], [ -170.732399, -14.340286 ], [ -170.732622, -14.340421 ], [ -170.732697, -14.340466 ], [ -170.732795, -14.340522 ], [ -170.733092, -14.340693 ], [ -170.733191, -14.34075 ], [ -170.733658, -14.340363 ], [ -170.735213, -14.339553 ], [ -170.736516, -14.339042 ], [ -170.736692, -14.338783 ], [ -170.737706, -14.338076 ], [ -170.738194, -14.337354 ], [ -170.738615, -14.335284 ], [ -170.73931, -14.335262 ], [ -170.739593, -14.335253 ], [ -170.739654, -14.335247 ], [ -170.73988, -14.335225 ], [ -170.740041, -14.335209 ], [ -170.740293, -14.335188 ], [ -170.740447, -14.335167 ], [ -170.740535, -14.335159 ], [ -170.740632, -14.335151 ], [ -170.740644, -14.335151 ], [ -170.740818, -14.335151 ], [ -170.740914, -14.335158 ], [ -170.741013, -14.33516 ], [ -170.741185, -14.335154 ], [ -170.74125, -14.335153 ], [ -170.741727, -14.335146 ], [ -170.741899, -14.335137 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "60", "COUNTYFP10": "050", "TRACTCE10": "951600", "GEOID10": "60050951600", "NAME10": "9516", "NAMELSAD10": "Census Tract 9516", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 23231008, "AWATER10": 104515479, "INTPTLAT10": "-14.3180517", "INTPTLON10": "-170.8286376" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -170.785979, -14.346376 ], [ -170.786113, -14.346302 ], [ -170.786394, -14.34612 ], [ -170.78646, -14.346088 ], [ -170.786614, -14.346037 ], [ -170.78669, -14.346006 ], [ -170.786806, -14.34597 ], [ -170.786906, -14.345951 ], [ -170.787003, -14.34592 ], [ -170.787101, -14.345899 ], [ -170.787193, -14.345863 ], [ -170.787261, -14.345828 ], [ -170.787318, -14.345785 ], [ -170.788096, -14.345871 ], [ -170.790911, -14.346186 ], [ -170.79151, -14.354202 ], [ -170.791737, -14.357228 ], [ -170.792324, -14.365571 ], [ -170.794088, -14.390601 ], [ -170.794676, -14.398945 ], [ -170.795266, -14.398741 ], [ -170.797036, -14.398131 ], [ -170.797627, -14.397928 ], [ -170.797682, -14.397908 ], [ -170.79785, -14.39785 ], [ -170.797906, -14.397832 ], [ -170.798724, -14.39755 ], [ -170.80118, -14.396703 ], [ -170.801999, -14.396422 ], [ -170.802811, -14.396141 ], [ -170.803958, -14.395747 ], [ -170.805005, -14.394868 ], [ -170.805664, -14.394316 ], [ -170.805825, -14.39418 ], [ -170.806308, -14.393775 ], [ -170.80647, -14.39364 ], [ -170.807196, -14.39303 ], [ -170.809377, -14.391201 ], [ -170.810104, -14.390592 ], [ -170.812269, -14.388775 ], [ -170.812594, -14.388307 ], [ -170.817993, -14.380553 ], [ -170.818486, -14.379999 ], [ -170.820746, -14.377464 ], [ -170.82085, -14.377059 ], [ -170.821655, -14.375 ], [ -170.823099, -14.371787 ], [ -170.825005, -14.37125 ], [ -170.825065, -14.37115 ], [ -170.825412, -14.371125 ], [ -170.826805, -14.371026 ], [ -170.82727, -14.370994 ], [ -170.828194, -14.370928 ], [ -170.82966, -14.370823 ], [ -170.830965, -14.370731 ], [ -170.83189, -14.370666 ], [ -170.833973, -14.370518 ], [ -170.838101, -14.370225 ], [ -170.840153, -14.369666 ], [ -170.842169, -14.369118 ], [ -170.845535, -14.368201 ], [ -170.852334, -14.366351 ], [ -170.855304, -14.364653 ], [ -170.858334, -14.362923 ], [ -170.862063, -14.360792 ], [ -170.865943, -14.358576 ], [ -170.869679, -14.354855 ], [ -170.871928, -14.352656 ], [ -170.875, -14.349654 ], [ -170.875, -14.349899 ], [ -170.883698, -14.342694 ], [ -170.887928, -14.333713 ], [ -170.889252, -14.330902 ], [ -170.890348, -14.32335 ], [ -170.890291, -14.317194 ], [ -170.888464, -14.312976 ], [ -170.886374, -14.308099 ], [ -170.881845, -14.298484 ], [ -170.875, -14.287667 ], [ -170.875, -14.287597 ], [ -170.872488, -14.285161 ], [ -170.867026, -14.279866 ], [ -170.865057, -14.277753 ], [ -170.862673, -14.275194 ], [ -170.862533, -14.275044 ], [ -170.855192, -14.268764 ], [ -170.850454, -14.264712 ], [ -170.840271, -14.258018 ], [ -170.832049, -14.257161 ], [ -170.829502, -14.257687 ], [ -170.829334, -14.257429 ], [ -170.826823, -14.253572 ], [ -170.823922, -14.250682 ], [ -170.822974, -14.25 ], [ -170.823099, -14.24997 ], [ -170.82311, -14.249966 ], [ -170.823258, -14.25 ], [ -170.816778, -14.247654 ], [ -170.804473, -14.246314 ], [ -170.799992, -14.246881 ], [ -170.799185, -14.247504 ], [ -170.796766, -14.249376 ], [ -170.79596, -14.25 ], [ -170.795491, -14.250379 ], [ -170.794088, -14.251519 ], [ -170.79362, -14.251899 ], [ -170.793817, -14.260088 ], [ -170.794409, -14.284658 ], [ -170.794548, -14.290392 ], [ -170.794563, -14.290816 ], [ -170.794637, -14.292848 ], [ -170.794522, -14.292956 ], [ -170.794177, -14.29328 ], [ -170.794062, -14.293388 ], [ -170.793202, -14.294762 ], [ -170.793001, -14.295081 ], [ -170.792576, -14.295759 ], [ -170.791658, -14.297227 ], [ -170.791628, -14.297582 ], [ -170.791388, -14.298871 ], [ -170.79106, -14.300637 ], [ -170.791006, -14.300924 ], [ -170.790695, -14.302602 ], [ -170.790582, -14.304631 ], [ -170.790244, -14.310721 ], [ -170.789422, -14.310478 ], [ -170.787903, -14.31096 ], [ -170.787547, -14.311074 ], [ -170.787252, -14.311319 ], [ -170.78654, -14.311914 ], [ -170.785644, -14.312648 ], [ -170.783824, -14.314166 ], [ -170.783531, -14.314255 ], [ -170.783534, -14.314331 ], [ -170.783372, -14.314303 ], [ -170.782116, -14.314687 ], [ -170.780475, -14.315095 ], [ -170.780081, -14.315217 ], [ -170.769344, -14.31856 ], [ -170.768521, -14.318725 ], [ -170.767958, -14.318838 ], [ -170.773881, -14.325875 ], [ -170.775404, -14.327684 ], [ -170.777461, -14.32888 ], [ -170.775754, -14.332445 ], [ -170.774905, -14.334188 ], [ -170.776626, -14.334188 ], [ -170.776945, -14.336077 ], [ -170.777076, -14.336853 ], [ -170.776982, -14.337568 ], [ -170.776439, -14.338481 ], [ -170.776312, -14.338695 ], [ -170.77605, -14.339137 ], [ -170.775734, -14.34006 ], [ -170.776015, -14.341052 ], [ -170.774679, -14.341 ], [ -170.773832, -14.34077 ], [ -170.773334, -14.340935 ], [ -170.772176, -14.341243 ], [ -170.771131, -14.341251 ], [ -170.771145, -14.342362 ], [ -170.769946, -14.343613 ], [ -170.768437, -14.344797 ], [ -170.768054, -14.345238 ], [ -170.767617, -14.345322 ], [ -170.767517, -14.345655 ], [ -170.767492, -14.34574 ], [ -170.767474, -14.345799 ], [ -170.767405, -14.345777 ], [ -170.767346, -14.345718 ], [ -170.767329, -14.345701 ], [ -170.767219, -14.345567 ], [ -170.76718, -14.345527 ], [ -170.767132, -14.345499 ], [ -170.767091, -14.345484 ], [ -170.766994, -14.345456 ], [ -170.766982, -14.345455 ], [ -170.766827, -14.345446 ], [ -170.766245, -14.345671 ], [ -170.766192, -14.345672 ], [ -170.766162, -14.345679 ], [ -170.766129, -14.345688 ], [ -170.766069, -14.345714 ], [ -170.766003, -14.34573 ], [ -170.765292, -14.345324 ], [ -170.764707, -14.345329 ], [ -170.764638, -14.345326 ], [ -170.764031, -14.345329 ], [ -170.761848, -14.346027 ], [ -170.763147, -14.347899 ], [ -170.763938, -14.348872 ], [ -170.764357, -14.349388 ], [ -170.764357, -14.349013 ], [ -170.764597, -14.348851 ], [ -170.764745, -14.348752 ], [ -170.765164, -14.348709 ], [ -170.765745, -14.348448 ], [ -170.766085, -14.34804 ], [ -170.766355, -14.348079 ], [ -170.766919, -14.348161 ], [ -170.767128, -14.348136 ], [ -170.768059, -14.348021 ], [ -170.769831, -14.347932 ], [ -170.770189, -14.347612 ], [ -170.770726, -14.347728 ], [ -170.772169, -14.347652 ], [ -170.774216, -14.34929 ], [ -170.774536, -14.349333 ], [ -170.774498, -14.349837 ], [ -170.774458, -14.350353 ], [ -170.776318, -14.350446 ], [ -170.776383, -14.350522 ], [ -170.776469, -14.350591 ], [ -170.776525, -14.350645 ], [ -170.776615, -14.350694 ], [ -170.776623, -14.350695 ], [ -170.77675, -14.350714 ], [ -170.776797, -14.350737 ], [ -170.776838, -14.350769 ], [ -170.776878, -14.350811 ], [ -170.776925, -14.350853 ], [ -170.776984, -14.350866 ], [ -170.777046, -14.350899 ], [ -170.777093, -14.350937 ], [ -170.777207, -14.351073 ], [ -170.777241, -14.3511 ], [ -170.777345, -14.351194 ], [ -170.777422, -14.35125 ], [ -170.777582, -14.351355 ], [ -170.777586, -14.351358 ], [ -170.777859, -14.351562 ], [ -170.777904, -14.351601 ], [ -170.777957, -14.351496 ], [ -170.778549, -14.35146 ], [ -170.778731, -14.351206 ], [ -170.77938, -14.350159 ], [ -170.779779, -14.349343 ], [ -170.779972, -14.349165 ], [ -170.780117, -14.348922 ], [ -170.780309, -14.348602 ], [ -170.780826, -14.348415 ], [ -170.781058, -14.348053 ], [ -170.781133, -14.347877 ], [ -170.781221, -14.347676 ], [ -170.781016, -14.347547 ], [ -170.78113, -14.347347 ], [ -170.781908, -14.346177 ], [ -170.782274, -14.345211 ], [ -170.78239, -14.344909 ], [ -170.782474, -14.344965 ], [ -170.782504, -14.344986 ], [ -170.782576, -14.345037 ], [ -170.782635, -14.34508 ], [ -170.782749, -14.345164 ], [ -170.782816, -14.345218 ], [ -170.78294, -14.345318 ], [ -170.783036, -14.345408 ], [ -170.783123, -14.345491 ], [ -170.783125, -14.345492 ], [ -170.783302, -14.345674 ], [ -170.783368, -14.345732 ], [ -170.78338, -14.345747 ], [ -170.783457, -14.345841 ], [ -170.783513, -14.345912 ], [ -170.78358, -14.345996 ], [ -170.783611, -14.346042 ], [ -170.783686, -14.346115 ], [ -170.78369, -14.34612 ], [ -170.783752, -14.346188 ], [ -170.783733, -14.346225 ], [ -170.783719, -14.346257 ], [ -170.783685, -14.346328 ], [ -170.783679, -14.346338 ], [ -170.783659, -14.346375 ], [ -170.783625, -14.346434 ], [ -170.783527, -14.346611 ], [ -170.783494, -14.346671 ], [ -170.783549, -14.346706 ], [ -170.783692, -14.346828 ], [ -170.783833, -14.346948 ], [ -170.784248, -14.347286 ], [ -170.784279, -14.347315 ], [ -170.784394, -14.347422 ], [ -170.78447, -14.347483 ], [ -170.784492, -14.347453 ], [ -170.784596, -14.347371 ], [ -170.784685, -14.347313 ], [ -170.784767, -14.34724 ], [ -170.784806, -14.347198 ], [ -170.78485, -14.347158 ], [ -170.784928, -14.347101 ], [ -170.785163, -14.346927 ], [ -170.785204, -14.346886 ], [ -170.785315, -14.346807 ], [ -170.785361, -14.346775 ], [ -170.785581, -14.346653 ], [ -170.785787, -14.346497 ], [ -170.785874, -14.346436 ], [ -170.785979, -14.346376 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "60", "COUNTYFP10": "050", "TRACTCE10": "951500", "GEOID10": "60050951500", "NAME10": "9515", "NAMELSAD10": "Census Tract 9515", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 18212222, "AWATER10": 11769756, "INTPTLAT10": "-14.3014393", "INTPTLON10": "-170.7693693" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -170.758432, -14.335954 ], [ -170.758831, -14.337494 ], [ -170.758459, -14.338068 ], [ -170.758012, -14.338362 ], [ -170.757456, -14.338406 ], [ -170.756728, -14.338834 ], [ -170.756706, -14.338857 ], [ -170.756219, -14.339357 ], [ -170.756096, -14.339318 ], [ -170.756058, -14.339245 ], [ -170.755976, -14.339348 ], [ -170.755955, -14.339367 ], [ -170.75589, -14.339423 ], [ -170.755781, -14.33952 ], [ -170.755694, -14.339587 ], [ -170.755662, -14.339612 ], [ -170.755535, -14.339695 ], [ -170.755408, -14.339759 ], [ -170.755365, -14.339778 ], [ -170.755281, -14.339814 ], [ -170.755273, -14.339816 ], [ -170.755157, -14.339856 ], [ -170.75504, -14.339892 ], [ -170.755012, -14.339899 ], [ -170.754918, -14.339925 ], [ -170.755491, -14.340484 ], [ -170.755646, -14.341152 ], [ -170.755934, -14.341392 ], [ -170.756293, -14.341692 ], [ -170.757182, -14.342149 ], [ -170.757288, -14.341913 ], [ -170.757367, -14.341737 ], [ -170.758012, -14.341638 ], [ -170.758374, -14.341524 ], [ -170.758556, -14.341466 ], [ -170.75991, -14.340767 ], [ -170.760288, -14.340345 ], [ -170.761416, -14.340059 ], [ -170.762305, -14.339566 ], [ -170.764256, -14.3393 ], [ -170.764585, -14.340081 ], [ -170.764719, -14.340137 ], [ -170.765188, -14.340335 ], [ -170.765574, -14.340676 ], [ -170.766062, -14.341038 ], [ -170.766166, -14.341025 ], [ -170.766347, -14.341005 ], [ -170.766828, -14.340335 ], [ -170.766957, -14.340157 ], [ -170.767129, -14.340142 ], [ -170.767155, -14.340068 ], [ -170.767176, -14.340028 ], [ -170.767203, -14.339988 ], [ -170.767231, -14.339948 ], [ -170.767271, -14.339901 ], [ -170.767273, -14.339901 ], [ -170.767409, -14.339789 ], [ -170.767715, -14.339638 ], [ -170.767772, -14.339613 ], [ -170.767797, -14.339603 ], [ -170.767863, -14.339578 ], [ -170.767963, -14.339542 ], [ -170.768213, -14.339467 ], [ -170.768255, -14.339452 ], [ -170.768328, -14.339431 ], [ -170.768389, -14.339414 ], [ -170.768485, -14.339386 ], [ -170.768554, -14.339365 ], [ -170.768762, -14.339303 ], [ -170.768832, -14.339283 ], [ -170.768861, -14.339274 ], [ -170.768949, -14.339249 ], [ -170.768979, -14.339241 ], [ -170.769069, -14.339218 ], [ -170.769088, -14.339214 ], [ -170.76918, -14.339187 ], [ -170.76919, -14.339185 ], [ -170.769287, -14.339158 ], [ -170.769532, -14.339083 ], [ -170.76973, -14.339044 ], [ -170.769787, -14.339036 ], [ -170.769926, -14.339018 ], [ -170.769995, -14.339012 ], [ -170.770024, -14.339009 ], [ -170.770111, -14.339002 ], [ -170.770141, -14.339 ], [ -170.770193, -14.338992 ], [ -170.770294, -14.338982 ], [ -170.770313, -14.33898 ], [ -170.77035, -14.338976 ], [ -170.770354, -14.338976 ], [ -170.770403, -14.338971 ], [ -170.770422, -14.338968 ], [ -170.770482, -14.338963 ], [ -170.770502, -14.338962 ], [ -170.770591, -14.33896 ], [ -170.770665, -14.338959 ], [ -170.77078, -14.33894 ], [ -170.770884, -14.338924 ], [ -170.770962, -14.339243 ], [ -170.770993, -14.339602 ], [ -170.770993, -14.340618 ], [ -170.771131, -14.341251 ], [ -170.772176, -14.341243 ], [ -170.773334, -14.340935 ], [ -170.773832, -14.34077 ], [ -170.774679, -14.341 ], [ -170.776015, -14.341052 ], [ -170.775734, -14.34006 ], [ -170.77605, -14.339137 ], [ -170.776312, -14.338695 ], [ -170.776439, -14.338481 ], [ -170.776982, -14.337568 ], [ -170.777076, -14.336853 ], [ -170.776945, -14.336077 ], [ -170.776626, -14.334188 ], [ -170.774905, -14.334188 ], [ -170.775754, -14.332445 ], [ -170.777461, -14.32888 ], [ -170.775404, -14.327684 ], [ -170.773881, -14.325875 ], [ -170.767958, -14.318838 ], [ -170.768521, -14.318725 ], [ -170.769344, -14.31856 ], [ -170.780081, -14.315217 ], [ -170.780475, -14.315095 ], [ -170.782116, -14.314687 ], [ -170.783372, -14.314303 ], [ -170.783534, -14.314331 ], [ -170.783531, -14.314255 ], [ -170.783824, -14.314166 ], [ -170.785644, -14.312648 ], [ -170.78654, -14.311914 ], [ -170.787252, -14.311319 ], [ -170.787547, -14.311074 ], [ -170.787903, -14.31096 ], [ -170.789422, -14.310478 ], [ -170.790244, -14.310721 ], [ -170.790582, -14.304631 ], [ -170.790695, -14.302602 ], [ -170.791006, -14.300924 ], [ -170.79106, -14.300637 ], [ -170.791388, -14.298871 ], [ -170.791628, -14.297582 ], [ -170.791658, -14.297227 ], [ -170.792576, -14.295759 ], [ -170.793001, -14.295081 ], [ -170.793202, -14.294762 ], [ -170.794062, -14.293388 ], [ -170.794177, -14.29328 ], [ -170.794522, -14.292956 ], [ -170.794637, -14.292848 ], [ -170.794563, -14.290816 ], [ -170.794548, -14.290392 ], [ -170.794409, -14.284658 ], [ -170.793817, -14.260088 ], [ -170.79362, -14.251899 ], [ -170.793461, -14.252028 ], [ -170.792984, -14.252415 ], [ -170.792825, -14.252544 ], [ -170.763402, -14.276415 ], [ -170.760677, -14.278627 ], [ -170.746395, -14.290459 ], [ -170.745617, -14.29111 ], [ -170.745444, -14.29125 ], [ -170.744934, -14.291673 ], [ -170.744765, -14.291816 ], [ -170.742295, -14.293866 ], [ -170.742204, -14.293943 ], [ -170.739276, -14.296377 ], [ -170.738035, -14.298632 ], [ -170.737265, -14.303661 ], [ -170.73738, -14.303989 ], [ -170.739444, -14.306338 ], [ -170.739841, -14.306829 ], [ -170.742779, -14.31046 ], [ -170.743923, -14.311155 ], [ -170.744694, -14.311624 ], [ -170.747405, -14.313162 ], [ -170.747959, -14.313476 ], [ -170.748547, -14.313863 ], [ -170.749558, -14.314398 ], [ -170.75018, -14.314727 ], [ -170.750862, -14.315051 ], [ -170.752729, -14.315938 ], [ -170.758463, -14.316257 ], [ -170.758899, -14.316282 ], [ -170.759682, -14.318303 ], [ -170.759756, -14.318163 ], [ -170.759876, -14.318014 ], [ -170.759973, -14.317896 ], [ -170.760053, -14.317806 ], [ -170.760165, -14.317668 ], [ -170.760557, -14.317293 ], [ -170.760596, -14.317253 ], [ -170.760648, -14.317202 ], [ -170.760761, -14.317106 ], [ -170.76085, -14.317013 ], [ -170.760954, -14.31766 ], [ -170.761267, -14.319601 ], [ -170.761281, -14.319683 ], [ -170.761898, -14.320014 ], [ -170.761967, -14.320051 ], [ -170.762892, -14.321333 ], [ -170.762936, -14.322868 ], [ -170.762244, -14.325721 ], [ -170.760924, -14.327959 ], [ -170.760985, -14.330248 ], [ -170.76099, -14.330429 ], [ -170.76104, -14.332056 ], [ -170.759455, -14.331897 ], [ -170.758349, -14.335652 ], [ -170.758432, -14.335954 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "60", "COUNTYFP10": "050", "TRACTCE10": "951300", "GEOID10": "60050951300", "NAME10": "9513", "NAMELSAD10": "Census Tract 9513", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 6766018, "AWATER10": 27581226, "INTPTLAT10": "-14.3714906", "INTPTLON10": "-170.7595192" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -170.787318, -14.345785 ], [ -170.787261, -14.345828 ], [ -170.787193, -14.345863 ], [ -170.787101, -14.345899 ], [ -170.787003, -14.34592 ], [ -170.786906, -14.345951 ], [ -170.786806, -14.34597 ], [ -170.78669, -14.346006 ], [ -170.786614, -14.346037 ], [ -170.78646, -14.346088 ], [ -170.786394, -14.34612 ], [ -170.786113, -14.346302 ], [ -170.785979, -14.346376 ], [ -170.785874, -14.346436 ], [ -170.785787, -14.346497 ], [ -170.785581, -14.346653 ], [ -170.785361, -14.346775 ], [ -170.785315, -14.346807 ], [ -170.785204, -14.346886 ], [ -170.785163, -14.346927 ], [ -170.784928, -14.347101 ], [ -170.78485, -14.347158 ], [ -170.784806, -14.347198 ], [ -170.784767, -14.34724 ], [ -170.784685, -14.347313 ], [ -170.784596, -14.347371 ], [ -170.784492, -14.347453 ], [ -170.78447, -14.347483 ], [ -170.784394, -14.347422 ], [ -170.784279, -14.347315 ], [ -170.784248, -14.347286 ], [ -170.783833, -14.346948 ], [ -170.783692, -14.346828 ], [ -170.783549, -14.346706 ], [ -170.783494, -14.346671 ], [ -170.783527, -14.346611 ], [ -170.783625, -14.346434 ], [ -170.783659, -14.346375 ], [ -170.783679, -14.346338 ], [ -170.783685, -14.346328 ], [ -170.783719, -14.346257 ], [ -170.783733, -14.346225 ], [ -170.783752, -14.346188 ], [ -170.78369, -14.34612 ], [ -170.783686, -14.346115 ], [ -170.783611, -14.346042 ], [ -170.78358, -14.345996 ], [ -170.783513, -14.345912 ], [ -170.783457, -14.345841 ], [ -170.78338, -14.345747 ], [ -170.783368, -14.345732 ], [ -170.783302, -14.345674 ], [ -170.783125, -14.345492 ], [ -170.783123, -14.345491 ], [ -170.783036, -14.345408 ], [ -170.78294, -14.345318 ], [ -170.782816, -14.345218 ], [ -170.782749, -14.345164 ], [ -170.782635, -14.34508 ], [ -170.782576, -14.345037 ], [ -170.782504, -14.344986 ], [ -170.782474, -14.344965 ], [ -170.78239, -14.344909 ], [ -170.782274, -14.345211 ], [ -170.781908, -14.346177 ], [ -170.78113, -14.347347 ], [ -170.781016, -14.347547 ], [ -170.781221, -14.347676 ], [ -170.781133, -14.347877 ], [ -170.781058, -14.348053 ], [ -170.780826, -14.348415 ], [ -170.780309, -14.348602 ], [ -170.780117, -14.348922 ], [ -170.779972, -14.349165 ], [ -170.779779, -14.349343 ], [ -170.77938, -14.350159 ], [ -170.778731, -14.351206 ], [ -170.778549, -14.35146 ], [ -170.777957, -14.351496 ], [ -170.777904, -14.351601 ], [ -170.777859, -14.351562 ], [ -170.777586, -14.351358 ], [ -170.777582, -14.351355 ], [ -170.777422, -14.35125 ], [ -170.777345, -14.351194 ], [ -170.777241, -14.3511 ], [ -170.777207, -14.351073 ], [ -170.777093, -14.350937 ], [ -170.777046, -14.350899 ], [ -170.776984, -14.350866 ], [ -170.776925, -14.350853 ], [ -170.776878, -14.350811 ], [ -170.776838, -14.350769 ], [ -170.776797, -14.350737 ], [ -170.77675, -14.350714 ], [ -170.776623, -14.350695 ], [ -170.776615, -14.350694 ], [ -170.776525, -14.350645 ], [ -170.776469, -14.350591 ], [ -170.776383, -14.350522 ], [ -170.776318, -14.350446 ], [ -170.774458, -14.350353 ], [ -170.774498, -14.349837 ], [ -170.774536, -14.349333 ], [ -170.774216, -14.34929 ], [ -170.772169, -14.347652 ], [ -170.770726, -14.347728 ], [ -170.770189, -14.347612 ], [ -170.769831, -14.347932 ], [ -170.768059, -14.348021 ], [ -170.767128, -14.348136 ], [ -170.766919, -14.348161 ], [ -170.766355, -14.348079 ], [ -170.766085, -14.34804 ], [ -170.765745, -14.348448 ], [ -170.765164, -14.348709 ], [ -170.764745, -14.348752 ], [ -170.764597, -14.348851 ], [ -170.764357, -14.349013 ], [ -170.764357, -14.349388 ], [ -170.763938, -14.348872 ], [ -170.763147, -14.347899 ], [ -170.761848, -14.346027 ], [ -170.764031, -14.345329 ], [ -170.764638, -14.345326 ], [ -170.764707, -14.345329 ], [ -170.765292, -14.345324 ], [ -170.766003, -14.34573 ], [ -170.766069, -14.345714 ], [ -170.766129, -14.345688 ], [ -170.766162, -14.345679 ], [ -170.766192, -14.345672 ], [ -170.766245, -14.345671 ], [ -170.766827, -14.345446 ], [ -170.766982, -14.345455 ], [ -170.766994, -14.345456 ], [ -170.767091, -14.345484 ], [ -170.767132, -14.345499 ], [ -170.76718, -14.345527 ], [ -170.767219, -14.345567 ], [ -170.767329, -14.345701 ], [ -170.767346, -14.345718 ], [ -170.767405, -14.345777 ], [ -170.767474, -14.345799 ], [ -170.767492, -14.34574 ], [ -170.767517, -14.345655 ], [ -170.767617, -14.345322 ], [ -170.768054, -14.345238 ], [ -170.768437, -14.344797 ], [ -170.769946, -14.343613 ], [ -170.771145, -14.342362 ], [ -170.771131, -14.341251 ], [ -170.770993, -14.340618 ], [ -170.770993, -14.339602 ], [ -170.770962, -14.339243 ], [ -170.770884, -14.338924 ], [ -170.77078, -14.33894 ], [ -170.770665, -14.338959 ], [ -170.770591, -14.33896 ], [ -170.770502, -14.338962 ], [ -170.770482, -14.338963 ], [ -170.770422, -14.338968 ], [ -170.770403, -14.338971 ], [ -170.770354, -14.338976 ], [ -170.77035, -14.338976 ], [ -170.770313, -14.33898 ], [ -170.770294, -14.338982 ], [ -170.770193, -14.338992 ], [ -170.770141, -14.339 ], [ -170.770111, -14.339002 ], [ -170.770024, -14.339009 ], [ -170.769995, -14.339012 ], [ -170.769926, -14.339018 ], [ -170.769787, -14.339036 ], [ -170.76973, -14.339044 ], [ -170.769532, -14.339083 ], [ -170.769287, -14.339158 ], [ -170.76919, -14.339185 ], [ -170.76918, -14.339187 ], [ -170.769088, -14.339214 ], [ -170.769069, -14.339218 ], [ -170.768979, -14.339241 ], [ -170.768949, -14.339249 ], [ -170.768861, -14.339274 ], [ -170.768832, -14.339283 ], [ -170.768762, -14.339303 ], [ -170.768554, -14.339365 ], [ -170.768485, -14.339386 ], [ -170.768389, -14.339414 ], [ -170.768328, -14.339431 ], [ -170.768255, -14.339452 ], [ -170.768213, -14.339467 ], [ -170.767963, -14.339542 ], [ -170.767863, -14.339578 ], [ -170.767797, -14.339603 ], [ -170.767772, -14.339613 ], [ -170.767715, -14.339638 ], [ -170.767409, -14.339789 ], [ -170.767273, -14.339901 ], [ -170.767271, -14.339901 ], [ -170.767231, -14.339948 ], [ -170.767203, -14.339988 ], [ -170.767176, -14.340028 ], [ -170.767155, -14.340068 ], [ -170.767129, -14.340142 ], [ -170.766957, -14.340157 ], [ -170.766828, -14.340335 ], [ -170.766347, -14.341005 ], [ -170.766166, -14.341025 ], [ -170.766062, -14.341038 ], [ -170.765574, -14.340676 ], [ -170.765188, -14.340335 ], [ -170.764719, -14.340137 ], [ -170.764585, -14.340081 ], [ -170.764256, -14.3393 ], [ -170.762305, -14.339566 ], [ -170.761416, -14.340059 ], [ -170.760288, -14.340345 ], [ -170.75991, -14.340767 ], [ -170.758556, -14.341466 ], [ -170.758374, -14.341524 ], [ -170.758012, -14.341638 ], [ -170.757367, -14.341737 ], [ -170.757288, -14.341913 ], [ -170.757182, -14.342149 ], [ -170.756021, -14.344747 ], [ -170.755044, -14.345546 ], [ -170.755026, -14.345398 ], [ -170.753917, -14.346718 ], [ -170.753996, -14.347392 ], [ -170.754162, -14.347927 ], [ -170.754035, -14.34894 ], [ -170.753877, -14.350131 ], [ -170.754305, -14.350072 ], [ -170.754852, -14.349997 ], [ -170.75554, -14.349938 ], [ -170.755978, -14.35009 ], [ -170.756037, -14.350947 ], [ -170.755801, -14.35213 ], [ -170.754041, -14.352493 ], [ -170.753842, -14.352452 ], [ -170.753747, -14.353119 ], [ -170.753447, -14.355225 ], [ -170.75339, -14.355628 ], [ -170.753347, -14.355928 ], [ -170.75333, -14.35604 ], [ -170.753307, -14.356195 ], [ -170.753189, -14.356996 ], [ -170.75315, -14.357264 ], [ -170.753124, -14.357436 ], [ -170.753048, -14.357955 ], [ -170.753023, -14.358128 ], [ -170.753014, -14.358186 ], [ -170.752988, -14.358359 ], [ -170.75298, -14.358418 ], [ -170.752917, -14.358866 ], [ -170.752727, -14.360212 ], [ -170.752665, -14.360661 ], [ -170.752567, -14.36138 ], [ -170.752017, -14.365417 ], [ -170.75149, -14.369292 ], [ -170.750991, -14.37246 ], [ -170.750585, -14.375045 ], [ -170.75, -14.378768 ], [ -170.745438, -14.40778 ], [ -170.743587, -14.419554 ], [ -170.75, -14.418998 ], [ -170.750555, -14.41895 ], [ -170.759852, -14.418136 ], [ -170.763393, -14.41683 ], [ -170.766964, -14.415514 ], [ -170.774121, -14.413213 ], [ -170.774344, -14.413142 ], [ -170.777061, -14.410872 ], [ -170.777129, -14.410814 ], [ -170.777336, -14.410641 ], [ -170.777405, -14.410584 ], [ -170.780829, -14.407722 ], [ -170.781144, -14.40746 ], [ -170.784395, -14.403601 ], [ -170.785869, -14.400524 ], [ -170.790355, -14.399961 ], [ -170.792512, -14.399691 ], [ -170.794676, -14.398945 ], [ -170.794088, -14.390601 ], [ -170.792324, -14.365571 ], [ -170.791737, -14.357228 ], [ -170.79151, -14.354202 ], [ -170.790911, -14.346186 ], [ -170.788096, -14.345871 ], [ -170.787318, -14.345785 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "010", "TRACTCE10": "970400", "GEOID10": "78010970400", "NAME10": "9704", "NAMELSAD10": "Census Tract 9704", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 28578871, "AWATER10": 2156872, "INTPTLAT10": "+17.7223269", "INTPTLON10": "-064.6924176" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.72863, 17.7152 ], [ -64.728751, 17.715162 ], [ -64.729018, 17.71508 ], [ -64.72915, 17.71504 ], [ -64.729299, 17.714996 ], [ -64.72936, 17.71498 ], [ -64.729749, 17.714857 ], [ -64.7299, 17.71481 ], [ -64.730203, 17.714708 ], [ -64.73026, 17.71469 ], [ -64.7309, 17.71449 ], [ -64.731121, 17.714427 ], [ -64.73143, 17.71434 ], [ -64.731432, 17.714348 ], [ -64.731438, 17.714372 ], [ -64.73144, 17.71438 ], [ -64.731468, 17.714471 ], [ -64.731551, 17.714747 ], [ -64.73158, 17.71484 ], [ -64.73164, 17.715017 ], [ -64.731731, 17.715288 ], [ -64.73182, 17.715551 ], [ -64.73188, 17.71573 ], [ -64.731926, 17.715868 ], [ -64.732063, 17.716282 ], [ -64.73211, 17.71642 ], [ -64.732164, 17.716572 ], [ -64.732326, 17.717028 ], [ -64.73238, 17.71718 ], [ -64.732404, 17.717257 ], [ -64.732476, 17.717491 ], [ -64.7325, 17.71757 ], [ -64.732564, 17.717758 ], [ -64.732755, 17.718322 ], [ -64.73282, 17.71851 ], [ -64.732879, 17.718693 ], [ -64.733059, 17.719246 ], [ -64.73312, 17.71943 ], [ -64.733186, 17.719614 ], [ -64.733384, 17.720166 ], [ -64.73345, 17.72035 ], [ -64.73348, 17.72045 ], [ -64.733526, 17.720587 ], [ -64.73374, 17.72122 ], [ -64.733773, 17.721293 ], [ -64.7338, 17.72135 ], [ -64.73385, 17.72153 ], [ -64.733912, 17.721735 ], [ -64.734, 17.72202 ], [ -64.734111, 17.722346 ], [ -64.73418, 17.72255 ], [ -64.73423, 17.72272 ], [ -64.73424, 17.722756 ], [ -64.73428, 17.72289 ], [ -64.734392, 17.723234 ], [ -64.734436, 17.723372 ], [ -64.734503, 17.723577 ], [ -64.734532, 17.723667 ], [ -64.73462, 17.723939 ], [ -64.73465, 17.72403 ], [ -64.734671, 17.724089 ], [ -64.734737, 17.724267 ], [ -64.734761, 17.724327 ], [ -64.734798, 17.724419 ], [ -64.734911, 17.724697 ], [ -64.73495, 17.72479 ], [ -64.734988, 17.724909 ], [ -64.735102, 17.72527 ], [ -64.73514, 17.72539 ], [ -64.735195, 17.725536 ], [ -64.73522, 17.7256 ], [ -64.735319, 17.725988 ], [ -64.735349, 17.726104 ], [ -64.73536, 17.72614 ], [ -64.735397, 17.726256 ], [ -64.73547, 17.72648 ], [ -64.735527, 17.726599 ], [ -64.73558, 17.72671 ], [ -64.735631, 17.726858 ], [ -64.735788, 17.727302 ], [ -64.73584, 17.72745 ], [ -64.735876, 17.727558 ], [ -64.735986, 17.727883 ], [ -64.736024, 17.727992 ], [ -64.736052, 17.728075 ], [ -64.736136, 17.728324 ], [ -64.736165, 17.728408 ], [ -64.736219, 17.728567 ], [ -64.736329, 17.728901 ], [ -64.73644, 17.729231 ], [ -64.736516, 17.729415 ], [ -64.736763, 17.730141 ], [ -64.736842, 17.730377 ], [ -64.736891, 17.730518 ], [ -64.736939, 17.730762 ], [ -64.737832, 17.733427 ], [ -64.738316, 17.734837 ], [ -64.738563, 17.735622 ], [ -64.738683, 17.735966 ], [ -64.738727, 17.736087 ], [ -64.738783, 17.736265 ], [ -64.738964, 17.736806 ], [ -64.739519, 17.738461 ], [ -64.739692, 17.738983 ], [ -64.739115, 17.739178 ], [ -64.73911, 17.73918 ], [ -64.738864, 17.73926 ], [ -64.73867, 17.739323 ], [ -64.738088, 17.739512 ], [ -64.737895, 17.739576 ], [ -64.73782, 17.7396 ], [ -64.737699, 17.739637 ], [ -64.737111, 17.739818 ], [ -64.736917, 17.739879 ], [ -64.73685, 17.7399 ], [ -64.73515, 17.74046 ], [ -64.73505, 17.7405 ], [ -64.734809, 17.74057 ], [ -64.73457, 17.74063 ], [ -64.734533, 17.740648 ], [ -64.73441, 17.74071 ], [ -64.73428, 17.74076 ], [ -64.73408, 17.74076 ], [ -64.734098, 17.740831 ], [ -64.734258, 17.741315 ], [ -64.72994, 17.742585 ], [ -64.729916, 17.742613 ], [ -64.730029, 17.742994 ], [ -64.729709, 17.743107 ], [ -64.72931, 17.743205 ], [ -64.729178, 17.743294 ], [ -64.729181, 17.743363 ], [ -64.729189, 17.743483 ], [ -64.729195, 17.74357 ], [ -64.7292, 17.74364 ], [ -64.729178, 17.743651 ], [ -64.729044, 17.743656 ], [ -64.72895, 17.74366 ], [ -64.728806, 17.743715 ], [ -64.728201, 17.743947 ], [ -64.72745, 17.74418 ], [ -64.725803, 17.744689 ], [ -64.725527, 17.743373 ], [ -64.724089, 17.743883 ], [ -64.723881, 17.743948 ], [ -64.722722, 17.744368 ], [ -64.721476, 17.74057 ], [ -64.721145, 17.739561 ], [ -64.720687, 17.738163 ], [ -64.7207, 17.73823 ], [ -64.72068, 17.73838 ], [ -64.72057, 17.73878 ], [ -64.720462, 17.73907 ], [ -64.72043, 17.73916 ], [ -64.72027, 17.73955 ], [ -64.72016, 17.739604 ], [ -64.72007, 17.73965 ], [ -64.71985, 17.73971 ], [ -64.719809, 17.739719 ], [ -64.719691, 17.739747 ], [ -64.71908, 17.73989 ], [ -64.718441, 17.740046 ], [ -64.71802, 17.74015 ], [ -64.71714, 17.74038 ], [ -64.71676, 17.74045 ], [ -64.71663, 17.74044 ], [ -64.71646, 17.74038 ], [ -64.71619, 17.74024 ], [ -64.71564, 17.74 ], [ -64.71536, 17.73987 ], [ -64.71517, 17.7398 ], [ -64.71496, 17.73979 ], [ -64.714774, 17.73979 ], [ -64.71471, 17.73979 ], [ -64.71448, 17.73972 ], [ -64.714175, 17.739618 ], [ -64.71335, 17.736544 ], [ -64.712148, 17.735999 ], [ -64.709736, 17.734903 ], [ -64.708402, 17.735313 ], [ -64.706961, 17.735753 ], [ -64.706361, 17.735937 ], [ -64.702118, 17.737237 ], [ -64.700655, 17.733215 ], [ -64.69601, 17.733456 ], [ -64.695572, 17.731989 ], [ -64.695098, 17.73195 ], [ -64.693524, 17.731784 ], [ -64.692868, 17.732554 ], [ -64.692402, 17.731145 ], [ -64.691686, 17.728911 ], [ -64.691399, 17.72802 ], [ -64.691365, 17.727912 ], [ -64.691266, 17.727946 ], [ -64.687986, 17.729088 ], [ -64.687615, 17.729217 ], [ -64.686665, 17.729548 ], [ -64.68658, 17.729578 ], [ -64.686024, 17.729772 ], [ -64.686095, 17.730009 ], [ -64.686213, 17.730398 ], [ -64.687595, 17.734961 ], [ -64.687784, 17.735598 ], [ -64.688255, 17.737277 ], [ -64.688359, 17.73767 ], [ -64.688524, 17.738264 ], [ -64.688152, 17.738373 ], [ -64.687392, 17.738595 ], [ -64.686756, 17.738782 ], [ -64.686578, 17.738833 ], [ -64.68328, 17.739814 ], [ -64.680165, 17.740785 ], [ -64.679469, 17.740996 ], [ -64.67916, 17.741091 ], [ -64.678305, 17.741351 ], [ -64.678132, 17.741404 ], [ -64.677332, 17.741642 ], [ -64.675399, 17.742229 ], [ -64.674962, 17.742363 ], [ -64.67205, 17.74326 ], [ -64.67198, 17.74326 ], [ -64.67192, 17.74328 ], [ -64.67162, 17.743383 ], [ -64.67002, 17.73971 ], [ -64.66995, 17.73962 ], [ -64.66992, 17.73954 ], [ -64.66999, 17.73932 ], [ -64.67015, 17.73904 ], [ -64.67018, 17.73887 ], [ -64.67018, 17.738734 ], [ -64.67018, 17.73871 ], [ -64.67016, 17.73849 ], [ -64.67013, 17.73825 ], [ -64.6701, 17.73815 ], [ -64.67004, 17.73805 ], [ -64.6699, 17.73791 ], [ -64.66971, 17.73781 ], [ -64.66951, 17.73774 ], [ -64.6693, 17.73765 ], [ -64.66918, 17.73757 ], [ -64.66913, 17.73747 ], [ -64.66915, 17.73734 ], [ -64.66938, 17.73698 ], [ -64.66947, 17.73681 ], [ -64.66947, 17.73666 ], [ -64.669336, 17.736214 ], [ -64.66929, 17.73606 ], [ -64.66923, 17.73583 ], [ -64.66907, 17.73537 ], [ -64.669, 17.73521 ], [ -64.668969, 17.735093 ], [ -64.66892, 17.7349 ], [ -64.66887, 17.734746 ], [ -64.668835, 17.734632 ], [ -64.668803, 17.734536 ], [ -64.668713, 17.734249 ], [ -64.66871, 17.73424 ], [ -64.668681, 17.734155 ], [ -64.66862, 17.733978 ], [ -64.66844, 17.733447 ], [ -64.66838, 17.73327 ], [ -64.668278, 17.73296 ], [ -64.66817, 17.73263 ], [ -64.667981, 17.73203 ], [ -64.66794, 17.7319 ], [ -64.667885, 17.73172 ], [ -64.667846, 17.731599 ], [ -64.667736, 17.73124 ], [ -64.6677, 17.73112 ], [ -64.667269, 17.731261 ], [ -64.665977, 17.731685 ], [ -64.66572, 17.73177 ], [ -64.665546, 17.731821 ], [ -64.665364, 17.731874 ], [ -64.664821, 17.732036 ], [ -64.66464, 17.73209 ], [ -64.664278, 17.732203 ], [ -64.663956, 17.732306 ], [ -64.663272, 17.732523 ], [ -64.663199, 17.732545 ], [ -64.663056, 17.732591 ], [ -64.66284, 17.73266 ], [ -64.6628, 17.73267 ], [ -64.662578, 17.732741 ], [ -64.662476, 17.732774 ], [ -64.662112, 17.732892 ], [ -64.66181, 17.73299 ], [ -64.661797, 17.732992 ], [ -64.661532, 17.733057 ], [ -64.66148, 17.73307 ], [ -64.66126, 17.73313 ], [ -64.661219, 17.733132 ], [ -64.6611, 17.73314 ], [ -64.66093, 17.73313 ], [ -64.66064, 17.7331 ], [ -64.66046, 17.73311 ], [ -64.660256, 17.733143 ], [ -64.659938, 17.733195 ], [ -64.65948, 17.73327 ], [ -64.65925, 17.73333 ], [ -64.659172, 17.733353 ], [ -64.65895, 17.73342 ], [ -64.65865, 17.73359 ], [ -64.65833, 17.73381 ], [ -64.65818, 17.73395 ], [ -64.658, 17.73415 ], [ -64.65787, 17.73424 ], [ -64.65773, 17.73429 ], [ -64.657156, 17.734472 ], [ -64.65641, 17.73471 ], [ -64.656412, 17.734724 ], [ -64.656418, 17.734766 ], [ -64.65642, 17.73478 ], [ -64.656496, 17.735012 ], [ -64.656724, 17.735707 ], [ -64.6568, 17.73594 ], [ -64.656861, 17.736128 ], [ -64.657045, 17.736695 ], [ -64.65706, 17.73674 ], [ -64.657105, 17.736885 ], [ -64.657129, 17.736966 ], [ -64.657203, 17.737209 ], [ -64.65723, 17.73729 ], [ -64.65729, 17.737445 ], [ -64.6573, 17.737472 ], [ -64.657349, 17.737599 ], [ -64.65735, 17.7376 ], [ -64.657455, 17.737905 ], [ -64.657495, 17.738025 ], [ -64.65756, 17.73821 ], [ -64.657591, 17.738291 ], [ -64.65768, 17.73851 ], [ -64.657698, 17.738528 ], [ -64.65776, 17.73859 ], [ -64.65771, 17.73866 ], [ -64.657658, 17.738675 ], [ -64.657619, 17.738687 ], [ -64.658281, 17.74075 ], [ -64.658398, 17.741119 ], [ -64.658525, 17.741516 ], [ -64.658565, 17.741643 ], [ -64.659413, 17.744283 ], [ -64.659562, 17.744749 ], [ -64.660247, 17.746884 ], [ -64.660084, 17.746938 ], [ -64.66002, 17.74696 ], [ -64.659363, 17.747161 ], [ -64.65803, 17.74757 ], [ -64.657394, 17.747766 ], [ -64.657213, 17.747822 ], [ -64.65674, 17.74797 ], [ -64.65636, 17.74808 ], [ -64.654739, 17.748592 ], [ -64.654326, 17.748733 ], [ -64.651928, 17.749485 ], [ -64.65189, 17.74936 ], [ -64.651845, 17.749218 ], [ -64.651803, 17.749087 ], [ -64.65174, 17.74889 ], [ -64.65153, 17.748249 ], [ -64.651438, 17.747972 ], [ -64.651385, 17.747803 ], [ -64.651121, 17.746977 ], [ -64.651094, 17.746905 ], [ -64.651061, 17.746811 ], [ -64.650163, 17.744044 ], [ -64.649985, 17.743495 ], [ -64.649917, 17.743285 ], [ -64.64991, 17.743263 ], [ -64.649243, 17.741217 ], [ -64.64731, 17.74179 ], [ -64.646637, 17.741999 ], [ -64.645627, 17.739322 ], [ -64.645556, 17.739134 ], [ -64.645103, 17.737932 ], [ -64.644253, 17.735676 ], [ -64.643879, 17.734685 ], [ -64.643686, 17.734174 ], [ -64.643653, 17.734084 ], [ -64.641115, 17.727261 ], [ -64.64065, 17.726012 ], [ -64.63943, 17.722731 ], [ -64.639167, 17.722026 ], [ -64.639072, 17.721769 ], [ -64.664562, 17.71384 ], [ -64.66462, 17.713796 ], [ -64.664752, 17.713741 ], [ -64.664843, 17.713726 ], [ -64.664959, 17.713708 ], [ -64.665034, 17.713702 ], [ -64.665108, 17.713686 ], [ -64.66524, 17.713641 ], [ -64.665344, 17.713614 ], [ -64.665366, 17.713603 ], [ -64.66543, 17.713573 ], [ -64.665551, 17.713553 ], [ -64.66566, 17.713487 ], [ -64.665711, 17.713474 ], [ -64.665907, 17.713492 ], [ -64.666011, 17.713514 ], [ -64.666097, 17.71352 ], [ -64.666263, 17.713487 ], [ -64.666332, 17.713459 ], [ -64.666373, 17.713432 ], [ -64.666401, 17.713375 ], [ -64.666436, 17.713327 ], [ -64.666482, 17.713289 ], [ -64.666585, 17.713254 ], [ -64.666654, 17.71325 ], [ -64.66674, 17.713239 ], [ -64.666832, 17.71325 ], [ -64.666947, 17.713272 ], [ -64.667028, 17.713279 ], [ -64.667189, 17.713294 ], [ -64.667315, 17.71331 ], [ -64.667614, 17.713288 ], [ -64.667763, 17.713272 ], [ -64.66789, 17.713233 ], [ -64.667993, 17.713177 ], [ -64.668079, 17.713122 ], [ -64.668136, 17.713072 ], [ -64.668205, 17.713033 ], [ -64.668338, 17.712993 ], [ -64.668544, 17.712953 ], [ -64.668671, 17.71293 ], [ -64.668746, 17.712924 ], [ -64.668803, 17.712913 ], [ -64.672809, 17.713479 ], [ -64.675799, 17.712608 ], [ -64.675872, 17.712576 ], [ -64.675934, 17.712582 ], [ -64.676032, 17.712559 ], [ -64.676158, 17.712508 ], [ -64.676239, 17.712453 ], [ -64.676308, 17.712436 ], [ -64.676417, 17.712434 ], [ -64.676676, 17.712392 ], [ -64.676848, 17.712343 ], [ -64.677101, 17.712306 ], [ -64.677257, 17.712262 ], [ -64.677406, 17.712229 ], [ -64.677624, 17.712134 ], [ -64.677929, 17.711963 ], [ -64.678009, 17.711914 ], [ -64.678095, 17.71187 ], [ -64.678257, 17.711833 ], [ -64.67844, 17.71176 ], [ -64.678723, 17.711635 ], [ -64.678843, 17.711595 ], [ -64.678947, 17.711547 ], [ -64.678995, 17.711517 ], [ -64.679159, 17.711418 ], [ -64.679423, 17.711237 ], [ -64.679759, 17.710981 ], [ -64.679878, 17.710892 ], [ -64.680033, 17.710768 ], [ -64.68013, 17.710719 ], [ -64.68028, 17.71062 ], [ -64.680349, 17.710587 ], [ -64.680424, 17.710561 ], [ -64.685812, 17.707149 ], [ -64.685936, 17.707041 ], [ -64.68604, 17.706976 ], [ -64.686132, 17.706926 ], [ -64.686174, 17.706903 ], [ -64.686293, 17.70685 ], [ -64.686534, 17.70681 ], [ -64.686538, 17.706809 ], [ -64.686635, 17.706806 ], [ -64.686654, 17.706805 ], [ -64.686752, 17.706804 ], [ -64.686775, 17.706807 ], [ -64.686947, 17.706828 ], [ -64.687085, 17.706833 ], [ -64.687258, 17.706833 ], [ -64.687401, 17.706813 ], [ -64.68752, 17.706797 ], [ -64.687538, 17.706791 ], [ -64.687671, 17.706749 ], [ -64.687748, 17.706731 ], [ -64.68793, 17.706692 ], [ -64.688, 17.706681 ], [ -64.688378, 17.706623 ], [ -64.688538, 17.70658 ], [ -64.688556, 17.706574 ], [ -64.688712, 17.706513 ], [ -64.689167, 17.706284 ], [ -64.689286, 17.706216 ], [ -64.689379, 17.706176 ], [ -64.68947, 17.706122 ], [ -64.689637, 17.706051 ], [ -64.690188, 17.705961 ], [ -64.69028, 17.705943 ], [ -64.690423, 17.705916 ], [ -64.690442, 17.705913 ], [ -64.690655, 17.70586 ], [ -64.690867, 17.705786 ], [ -64.691091, 17.705726 ], [ -64.691243, 17.705692 ], [ -64.691338, 17.705672 ], [ -64.691505, 17.705638 ], [ -64.691695, 17.705579 ], [ -64.691775, 17.705548 ], [ -64.691879, 17.705508 ], [ -64.692235, 17.705404 ], [ -64.692402, 17.705376 ], [ -64.693071, 17.705289 ], [ -64.693143, 17.705283 ], [ -64.693292, 17.705271 ], [ -64.693434, 17.705269 ], [ -64.693453, 17.70527 ], [ -64.693561, 17.705278 ], [ -64.701114, 17.703365 ], [ -64.701172, 17.703348 ], [ -64.701223, 17.703348 ], [ -64.701631, 17.703409 ], [ -64.701678, 17.703414 ], [ -64.701786, 17.703421 ], [ -64.701919, 17.7034 ], [ -64.702206, 17.703384 ], [ -64.702316, 17.703368 ], [ -64.702407, 17.703338 ], [ -64.702522, 17.703288 ], [ -64.70274, 17.703183 ], [ -64.702936, 17.703095 ], [ -64.702999, 17.703079 ], [ -64.712103, 17.70175 ], [ -64.712183, 17.701708 ], [ -64.712249, 17.701685 ], [ -64.712343, 17.701653 ], [ -64.712493, 17.701623 ], [ -64.712608, 17.701595 ], [ -64.712653, 17.701583 ], [ -64.7127, 17.701575 ], [ -64.712936, 17.701526 ], [ -64.71298, 17.701516 ], [ -64.713029, 17.701512 ], [ -64.713274, 17.701483 ], [ -64.713412, 17.701444 ], [ -64.713505, 17.701425 ], [ -64.713734, 17.701369 ], [ -64.713921, 17.701314 ], [ -64.714016, 17.70129 ], [ -64.714148, 17.701247 ], [ -64.714257, 17.701219 ], [ -64.714361, 17.70118 ], [ -64.71451, 17.701136 ], [ -64.714602, 17.701103 ], [ -64.714648, 17.701093 ], [ -64.714711, 17.701081 ], [ -64.714941, 17.700998 ], [ -64.715067, 17.70096 ], [ -64.715315, 17.700857 ], [ -64.71538, 17.700821 ], [ -64.715399, 17.700812 ], [ -64.715418, 17.7008 ], [ -64.715461, 17.700783 ], [ -64.715528, 17.700752 ], [ -64.715584, 17.700718 ], [ -64.715671, 17.700668 ], [ -64.715786, 17.700607 ], [ -64.716056, 17.700475 ], [ -64.716077, 17.700465 ], [ -64.716166, 17.700427 ], [ -64.716243, 17.70038 ], [ -64.716297, 17.700348 ], [ -64.716406, 17.700288 ], [ -64.716528, 17.700212 ], [ -64.716614, 17.700152 ], [ -64.716793, 17.699981 ], [ -64.716878, 17.699869 ], [ -64.716998, 17.699737 ], [ -64.717085, 17.699616 ], [ -64.717096, 17.699597 ], [ -64.717406, 17.700558 ], [ -64.717887, 17.702057 ], [ -64.720089, 17.708875 ], [ -64.721278, 17.712435 ], [ -64.722747, 17.717029 ], [ -64.725674, 17.716118 ], [ -64.72863, 17.7152 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "010", "TRACTCE10": "971400", "GEOID10": "78010971400", "NAME10": "9714", "NAMELSAD10": "Census Tract 9714", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 6698182, "AWATER10": 18762, "INTPTLAT10": "+17.7089821", "INTPTLON10": "-064.8138051" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.800517, 17.704936 ], [ -64.8005, 17.70488 ], [ -64.80047, 17.7048 ], [ -64.80047, 17.70473 ], [ -64.799804, 17.702742 ], [ -64.799679, 17.70232 ], [ -64.802262, 17.70147 ], [ -64.802406, 17.701423 ], [ -64.805092, 17.700542 ], [ -64.807924, 17.699614 ], [ -64.809436, 17.704072 ], [ -64.810686, 17.703661 ], [ -64.82079, 17.700338 ], [ -64.820413, 17.699136 ], [ -64.823107, 17.698372 ], [ -64.822238, 17.695609 ], [ -64.8223, 17.69559 ], [ -64.823387, 17.695251 ], [ -64.82355, 17.6952 ], [ -64.823665, 17.69516 ], [ -64.82378, 17.69512 ], [ -64.82416, 17.694997 ], [ -64.82434, 17.69494 ], [ -64.824383, 17.69493 ], [ -64.824496, 17.694902 ], [ -64.82455, 17.69489 ], [ -64.82506, 17.694713 ], [ -64.825134, 17.694688 ], [ -64.825312, 17.695315 ], [ -64.825313, 17.695316 ], [ -64.825862, 17.69695 ], [ -64.82593, 17.697145 ], [ -64.82603, 17.69743 ], [ -64.82611, 17.69765 ], [ -64.826137, 17.697732 ], [ -64.82616, 17.6978 ], [ -64.8262, 17.69793 ], [ -64.82628, 17.69818 ], [ -64.826375, 17.69847 ], [ -64.82656, 17.69902 ], [ -64.82691, 17.700092 ], [ -64.82705, 17.70052 ], [ -64.827089, 17.700633 ], [ -64.827242, 17.701082 ], [ -64.82745, 17.70169 ], [ -64.827698, 17.70243 ], [ -64.82785, 17.702881 ], [ -64.82786, 17.70291 ], [ -64.827939, 17.702888 ], [ -64.82818, 17.702822 ], [ -64.82826, 17.702801 ], [ -64.828875, 17.702632 ], [ -64.82903, 17.70259 ], [ -64.83002, 17.70231 ], [ -64.830713, 17.702098 ], [ -64.83097, 17.70202 ], [ -64.831323, 17.701908 ], [ -64.831453, 17.701866 ], [ -64.831847, 17.701741 ], [ -64.83198, 17.7017 ], [ -64.832261, 17.701604 ], [ -64.83242, 17.70155 ], [ -64.83308, 17.70134 ], [ -64.833108, 17.701331 ], [ -64.833396, 17.701254 ], [ -64.833445, 17.701239 ], [ -64.833596, 17.701198 ], [ -64.833647, 17.701185 ], [ -64.833801, 17.701639 ], [ -64.834211, 17.702826 ], [ -64.834318, 17.703132 ], [ -64.83452, 17.703738 ], [ -64.834784, 17.704586 ], [ -64.835008, 17.705351 ], [ -64.83545, 17.706706 ], [ -64.835575, 17.70703 ], [ -64.836034, 17.708424 ], [ -64.836372, 17.709354 ], [ -64.836051, 17.709455 ], [ -64.835082, 17.709758 ], [ -64.83476, 17.70986 ], [ -64.834703, 17.709877 ], [ -64.834531, 17.709929 ], [ -64.834475, 17.709947 ], [ -64.83417, 17.71004 ], [ -64.833715, 17.710173 ], [ -64.83234, 17.71058 ], [ -64.831441, 17.710854 ], [ -64.83126, 17.71091 ], [ -64.83069, 17.7111 ], [ -64.830499, 17.711159 ], [ -64.829929, 17.711335 ], [ -64.829739, 17.711395 ], [ -64.82941, 17.711498 ], [ -64.829088, 17.711597 ], [ -64.82908, 17.7116 ], [ -64.82814, 17.7119 ], [ -64.82726, 17.71216 ], [ -64.827132, 17.712195 ], [ -64.826477, 17.712381 ], [ -64.826374, 17.71241 ], [ -64.82634, 17.71242 ], [ -64.82607, 17.712514 ], [ -64.82597, 17.71255 ], [ -64.82574, 17.712618 ], [ -64.825485, 17.712695 ], [ -64.825056, 17.712823 ], [ -64.825, 17.71284 ], [ -64.824914, 17.712866 ], [ -64.824828, 17.712891 ], [ -64.824785, 17.712903 ], [ -64.824659, 17.712941 ], [ -64.824617, 17.712954 ], [ -64.824338, 17.713037 ], [ -64.823507, 17.713286 ], [ -64.82323, 17.71337 ], [ -64.823122, 17.713404 ], [ -64.822805, 17.713506 ], [ -64.822699, 17.713541 ], [ -64.822545, 17.71359 ], [ -64.822083, 17.71374 ], [ -64.82193, 17.71379 ], [ -64.821774, 17.713836 ], [ -64.821306, 17.713974 ], [ -64.82115, 17.71402 ], [ -64.820724, 17.714151 ], [ -64.82065, 17.714175 ], [ -64.82015, 17.71433 ], [ -64.81955, 17.71451 ], [ -64.819452, 17.714542 ], [ -64.81903, 17.71468 ], [ -64.818848, 17.714729 ], [ -64.818482, 17.714842 ], [ -64.817969, 17.715 ], [ -64.817617, 17.715101 ], [ -64.81752, 17.71513 ], [ -64.817376, 17.715175 ], [ -64.81733, 17.71519 ], [ -64.81717, 17.715238 ], [ -64.817009, 17.715286 ], [ -64.816964, 17.715299 ], [ -64.816833, 17.715338 ], [ -64.81679, 17.715352 ], [ -64.816259, 17.715511 ], [ -64.81613, 17.71555 ], [ -64.81546, 17.71576 ], [ -64.814802, 17.715959 ], [ -64.814672, 17.715998 ], [ -64.814143, 17.716158 ], [ -64.814021, 17.716194 ], [ -64.81366, 17.716303 ], [ -64.81354, 17.71634 ], [ -64.812917, 17.716541 ], [ -64.81286, 17.71656 ], [ -64.81157, 17.71694 ], [ -64.81104, 17.717098 ], [ -64.810415, 17.717285 ], [ -64.81033, 17.71731 ], [ -64.810151, 17.717365 ], [ -64.80972, 17.7175 ], [ -64.80936, 17.717605 ], [ -64.809097, 17.717683 ], [ -64.80887, 17.71775 ], [ -64.808449, 17.717877 ], [ -64.80792, 17.71804 ], [ -64.80724, 17.71824 ], [ -64.806512, 17.718463 ], [ -64.80649, 17.71847 ], [ -64.80618, 17.71857 ], [ -64.80587, 17.71867 ], [ -64.80572, 17.71872 ], [ -64.805307, 17.718835 ], [ -64.805013, 17.718916 ], [ -64.803813, 17.715198 ], [ -64.80363, 17.714629 ], [ -64.801027, 17.715534 ], [ -64.799469, 17.716077 ], [ -64.799369, 17.716117 ], [ -64.79898, 17.71628 ], [ -64.79903, 17.71641 ], [ -64.79908, 17.71654 ], [ -64.799094, 17.716583 ], [ -64.7992, 17.71691 ], [ -64.799403, 17.717505 ], [ -64.79944, 17.71761 ], [ -64.799506, 17.717813 ], [ -64.799514, 17.71784 ], [ -64.799541, 17.717922 ], [ -64.79955, 17.71795 ], [ -64.799712, 17.718406 ], [ -64.7998, 17.71865 ], [ -64.80012, 17.71959 ], [ -64.800184, 17.719781 ], [ -64.80023, 17.719915 ], [ -64.80034, 17.72024 ], [ -64.800234, 17.720285 ], [ -64.799916, 17.720422 ], [ -64.799812, 17.720469 ], [ -64.79969, 17.720512 ], [ -64.79954, 17.720567 ], [ -64.799329, 17.720651 ], [ -64.79921, 17.7207 ], [ -64.798595, 17.720885 ], [ -64.79848, 17.72092 ], [ -64.7976, 17.72121 ], [ -64.79678, 17.72145 ], [ -64.796758, 17.721457 ], [ -64.796547, 17.721527 ], [ -64.796515, 17.721439 ], [ -64.795638, 17.719013 ], [ -64.795114, 17.717565 ], [ -64.795051, 17.717392 ], [ -64.79386, 17.7141 ], [ -64.7936, 17.713382 ], [ -64.793581, 17.713329 ], [ -64.793314, 17.712591 ], [ -64.792299, 17.709789 ], [ -64.791911, 17.708741 ], [ -64.791721, 17.70819 ], [ -64.791522, 17.70764 ], [ -64.791287, 17.706991 ], [ -64.791328, 17.707022 ], [ -64.794713, 17.706214 ], [ -64.796654, 17.705752 ], [ -64.799621, 17.705123 ], [ -64.800517, 17.704936 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "010", "TRACTCE10": "970500", "GEOID10": "78010970500", "NAME10": "9705", "NAMELSAD10": "Census Tract 9705", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 6062993, "AWATER10": 0, "INTPTLAT10": "+17.7409509", "INTPTLON10": "-064.7463778" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.73163, 17.74695 ], [ -64.730958, 17.746712 ], [ -64.730625, 17.746411 ], [ -64.73038, 17.74619 ], [ -64.728593, 17.745045 ], [ -64.72801, 17.744685 ], [ -64.72901, 17.743698 ], [ -64.729044, 17.743656 ], [ -64.729178, 17.743651 ], [ -64.7292, 17.74364 ], [ -64.729195, 17.74357 ], [ -64.729189, 17.743483 ], [ -64.729181, 17.743363 ], [ -64.729178, 17.743294 ], [ -64.72931, 17.743205 ], [ -64.729709, 17.743107 ], [ -64.730029, 17.742994 ], [ -64.729916, 17.742613 ], [ -64.72994, 17.742585 ], [ -64.734258, 17.741315 ], [ -64.734098, 17.740831 ], [ -64.73408, 17.74076 ], [ -64.73428, 17.74076 ], [ -64.73441, 17.74071 ], [ -64.734533, 17.740648 ], [ -64.73457, 17.74063 ], [ -64.734809, 17.74057 ], [ -64.73505, 17.7405 ], [ -64.73515, 17.74046 ], [ -64.73685, 17.7399 ], [ -64.736917, 17.739879 ], [ -64.737111, 17.739818 ], [ -64.737699, 17.739637 ], [ -64.73782, 17.7396 ], [ -64.737895, 17.739576 ], [ -64.738088, 17.739512 ], [ -64.73867, 17.739323 ], [ -64.738864, 17.73926 ], [ -64.73911, 17.73918 ], [ -64.739115, 17.739178 ], [ -64.739692, 17.738983 ], [ -64.739519, 17.738461 ], [ -64.738964, 17.736806 ], [ -64.738783, 17.736265 ], [ -64.738727, 17.736087 ], [ -64.738683, 17.735966 ], [ -64.738563, 17.735622 ], [ -64.738316, 17.734837 ], [ -64.737832, 17.733427 ], [ -64.736939, 17.730762 ], [ -64.737046, 17.730731 ], [ -64.73712, 17.73071 ], [ -64.737206, 17.730683 ], [ -64.737393, 17.730624 ], [ -64.737961, 17.730448 ], [ -64.73815, 17.73039 ], [ -64.738294, 17.730349 ], [ -64.738733, 17.73023 ], [ -64.73888, 17.73019 ], [ -64.739033, 17.730134 ], [ -64.739255, 17.730054 ], [ -64.73946, 17.72998 ], [ -64.74033, 17.72972 ], [ -64.740398, 17.729698 ], [ -64.74078, 17.72958 ], [ -64.740818, 17.729567 ], [ -64.740933, 17.729532 ], [ -64.740973, 17.72952 ], [ -64.741134, 17.729469 ], [ -64.741618, 17.72932 ], [ -64.74178, 17.72927 ], [ -64.741962, 17.729218 ], [ -64.742508, 17.729062 ], [ -64.74269, 17.72901 ], [ -64.742754, 17.72899 ], [ -64.742946, 17.72893 ], [ -64.74301, 17.72891 ], [ -64.743131, 17.728869 ], [ -64.743498, 17.728747 ], [ -64.74362, 17.728707 ], [ -64.74391, 17.72861 ], [ -64.744268, 17.728497 ], [ -64.744519, 17.728418 ], [ -64.74458, 17.7284 ], [ -64.74549, 17.7281 ], [ -64.746221, 17.727888 ], [ -64.74625, 17.72788 ], [ -64.74688, 17.72771 ], [ -64.74705, 17.72766 ], [ -64.747175, 17.727623 ], [ -64.74722, 17.72761 ], [ -64.747355, 17.72757 ], [ -64.74749, 17.72753 ], [ -64.747925, 17.727405 ], [ -64.748063, 17.727365 ], [ -64.74836, 17.72728 ], [ -64.749092, 17.727049 ], [ -64.749731, 17.726848 ], [ -64.74979, 17.72683 ], [ -64.75075, 17.72654 ], [ -64.751294, 17.726378 ], [ -64.75203, 17.72616 ], [ -64.752056, 17.72615 ], [ -64.752138, 17.726122 ], [ -64.752166, 17.726113 ], [ -64.752224, 17.726092 ], [ -64.752401, 17.72603 ], [ -64.75246, 17.72601 ], [ -64.75277, 17.725915 ], [ -64.753708, 17.725634 ], [ -64.753968, 17.725555 ], [ -64.754223, 17.72633 ], [ -64.754742, 17.727901 ], [ -64.755136, 17.729096 ], [ -64.755848, 17.731253 ], [ -64.756659, 17.73371 ], [ -64.75731, 17.73567 ], [ -64.757686, 17.736816 ], [ -64.757977, 17.7377 ], [ -64.759378, 17.741961 ], [ -64.758773, 17.74215 ], [ -64.758368, 17.742276 ], [ -64.758387, 17.742429 ], [ -64.758052, 17.74247 ], [ -64.75765, 17.74252 ], [ -64.75723, 17.74267 ], [ -64.757079, 17.742721 ], [ -64.75676, 17.74283 ], [ -64.756668, 17.742823 ], [ -64.756595, 17.742819 ], [ -64.756401, 17.742873 ], [ -64.756313, 17.742899 ], [ -64.75617, 17.742938 ], [ -64.755748, 17.743057 ], [ -64.755607, 17.743098 ], [ -64.755012, 17.743323 ], [ -64.754014, 17.743633 ], [ -64.753761, 17.743712 ], [ -64.753791, 17.743783 ], [ -64.753841, 17.743902 ], [ -64.753903, 17.744051 ], [ -64.753907, 17.744063 ], [ -64.754032, 17.744444 ], [ -64.75406, 17.744565 ], [ -64.754104, 17.744735 ], [ -64.754141, 17.744884 ], [ -64.75419, 17.74508 ], [ -64.75422, 17.74525 ], [ -64.754233, 17.745339 ], [ -64.754256, 17.745492 ], [ -64.75432, 17.745421 ], [ -64.756507, 17.752033 ], [ -64.756686, 17.752575 ], [ -64.756968, 17.753427 ], [ -64.757091, 17.7538 ], [ -64.75719, 17.754098 ], [ -64.75659, 17.75431 ], [ -64.756262, 17.754413 ], [ -64.75599, 17.7545 ], [ -64.755816, 17.754551 ], [ -64.755298, 17.754708 ], [ -64.755127, 17.754761 ], [ -64.754833, 17.754849 ], [ -64.753955, 17.755114 ], [ -64.753662, 17.755203 ], [ -64.751627, 17.75582 ], [ -64.751122, 17.754312 ], [ -64.750929, 17.753733 ], [ -64.75049, 17.75386 ], [ -64.750125, 17.753976 ], [ -64.74999, 17.75402 ], [ -64.749858, 17.75405 ], [ -64.7474, 17.754767 ], [ -64.745492, 17.75534 ], [ -64.745176, 17.755435 ], [ -64.745142, 17.755247 ], [ -64.74499, 17.75474 ], [ -64.744951, 17.754637 ], [ -64.74484, 17.75434 ], [ -64.744838, 17.754328 ], [ -64.74482, 17.75422 ], [ -64.744782, 17.754115 ], [ -64.744669, 17.753802 ], [ -64.744632, 17.753698 ], [ -64.744591, 17.753584 ], [ -64.744586, 17.753573 ], [ -64.74455, 17.75347 ], [ -64.744478, 17.753272 ], [ -64.744451, 17.753198 ], [ -64.744407, 17.753074 ], [ -64.744349, 17.752914 ], [ -64.74425, 17.75264 ], [ -64.744183, 17.752435 ], [ -64.744131, 17.752275 ], [ -64.74409, 17.752152 ], [ -64.74397, 17.751783 ], [ -64.74393, 17.75166 ], [ -64.74389, 17.75152 ], [ -64.743883, 17.751502 ], [ -64.743794, 17.75126 ], [ -64.743733, 17.751031 ], [ -64.74325, 17.74971 ], [ -64.743181, 17.749512 ], [ -64.742976, 17.748921 ], [ -64.742908, 17.748724 ], [ -64.74289, 17.748673 ], [ -64.742836, 17.74852 ], [ -64.74282, 17.74847 ], [ -64.742772, 17.748328 ], [ -64.742628, 17.747904 ], [ -64.74258, 17.747763 ], [ -64.742548, 17.747668 ], [ -64.742452, 17.747384 ], [ -64.74242, 17.74729 ], [ -64.736796, 17.748979 ], [ -64.73304, 17.75014 ], [ -64.733073, 17.750231 ], [ -64.733048, 17.750236 ], [ -64.732978, 17.750255 ], [ -64.732955, 17.750262 ], [ -64.732763, 17.750312 ], [ -64.732744, 17.750318 ], [ -64.732459, 17.750407 ], [ -64.732437, 17.750327 ], [ -64.731984, 17.74872 ], [ -64.732368, 17.748612 ], [ -64.73224, 17.74831 ], [ -64.732204, 17.748254 ], [ -64.732102, 17.748086 ], [ -64.73207, 17.74803 ], [ -64.731905, 17.747853 ], [ -64.73181, 17.74775 ], [ -64.73176, 17.74747 ], [ -64.731686, 17.747183 ], [ -64.73163, 17.74696 ], [ -64.73163, 17.74695 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "010", "TRACTCE10": "971000", "GEOID10": "78010971000", "NAME10": "9710", "NAMELSAD10": "Census Tract 9710", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 36467474, "AWATER10": 188067, "INTPTLAT10": "+17.7449300", "INTPTLON10": "-064.8532861" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.861879, 17.766586 ], [ -64.861724, 17.766615 ], [ -64.861632, 17.766604 ], [ -64.861511, 17.76656 ], [ -64.861449, 17.766516 ], [ -64.861373, 17.766449 ], [ -64.861328, 17.766395 ], [ -64.861328, 17.766345 ], [ -64.861293, 17.7663 ], [ -64.861236, 17.766274 ], [ -64.861, 17.766179 ], [ -64.860908, 17.766135 ], [ -64.860856, 17.766063 ], [ -64.860775, 17.765963 ], [ -64.860765, 17.765933 ], [ -64.860746, 17.765903 ], [ -64.860741, 17.765872 ], [ -64.860707, 17.765839 ], [ -64.860644, 17.765805 ], [ -64.86054, 17.765738 ], [ -64.860471, 17.76575 ], [ -64.860402, 17.765767 ], [ -64.860206, 17.765832 ], [ -64.859937, 17.765877 ], [ -64.859678, 17.765844 ], [ -64.85943, 17.765817 ], [ -64.859178, 17.765778 ], [ -64.859033, 17.765732 ], [ -64.858855, 17.765666 ], [ -64.858632, 17.765569 ], [ -64.858419, 17.765518 ], [ -64.858356, 17.765486 ], [ -64.858184, 17.765442 ], [ -64.858005, 17.765376 ], [ -64.857872, 17.765319 ], [ -64.857718, 17.765247 ], [ -64.857597, 17.765171 ], [ -64.857499, 17.765093 ], [ -64.857464, 17.764994 ], [ -64.857378, 17.764853 ], [ -64.857309, 17.764697 ], [ -64.857258, 17.764571 ], [ -64.857212, 17.764481 ], [ -64.857137, 17.764428 ], [ -64.856999, 17.764373 ], [ -64.856902, 17.76434 ], [ -64.856815, 17.764328 ], [ -64.856717, 17.764295 ], [ -64.856603, 17.764234 ], [ -64.856315, 17.764208 ], [ -64.856154, 17.764218 ], [ -64.855971, 17.764245 ], [ -64.855734, 17.764263 ], [ -64.855521, 17.764262 ], [ -64.855424, 17.7643 ], [ -64.855344, 17.764373 ], [ -64.855228, 17.764443 ], [ -64.855102, 17.764492 ], [ -64.854998, 17.764504 ], [ -64.854913, 17.764499 ], [ -64.85486, 17.764443 ], [ -64.85481, 17.764405 ], [ -64.854694, 17.764306 ], [ -64.854648, 17.764273 ], [ -64.854619, 17.76424 ], [ -64.85459, 17.764179 ], [ -64.854584, 17.76408 ], [ -64.854573, 17.76403 ], [ -64.854545, 17.763992 ], [ -64.854481, 17.763976 ], [ -64.854332, 17.763971 ], [ -64.854288, 17.763978 ], [ -64.854245, 17.763986 ], [ -64.854148, 17.763986 ], [ -64.854084, 17.764025 ], [ -64.854028, 17.76408 ], [ -64.853993, 17.764108 ], [ -64.853941, 17.764129 ], [ -64.853855, 17.764113 ], [ -64.853734, 17.764107 ], [ -64.853631, 17.764097 ], [ -64.853493, 17.764115 ], [ -64.853383, 17.764125 ], [ -64.853257, 17.764118 ], [ -64.853101, 17.764091 ], [ -64.852642, 17.76397 ], [ -64.852539, 17.763954 ], [ -64.852441, 17.763944 ], [ -64.852372, 17.763899 ], [ -64.85232, 17.763854 ], [ -64.852269, 17.763821 ], [ -64.852194, 17.763795 ], [ -64.852113, 17.763778 ], [ -64.852079, 17.763739 ], [ -64.852068, 17.763679 ], [ -64.85205, 17.763634 ], [ -64.852021, 17.763629 ], [ -64.85197, 17.763657 ], [ -64.851946, 17.763738 ], [ -64.851923, 17.763771 ], [ -64.851848, 17.763843 ], [ -64.851832, 17.763882 ], [ -64.851877, 17.763964 ], [ -64.851883, 17.764008 ], [ -64.851872, 17.764046 ], [ -64.851837, 17.764074 ], [ -64.851751, 17.764091 ], [ -64.851441, 17.764098 ], [ -64.851256, 17.764124 ], [ -64.851125, 17.764164 ], [ -64.851021, 17.76419 ], [ -64.850947, 17.76424 ], [ -64.85082, 17.764311 ], [ -64.850751, 17.764323 ], [ -64.848291, 17.764835 ], [ -64.848222, 17.764824 ], [ -64.84817, 17.764786 ], [ -64.848084, 17.764769 ], [ -64.848044, 17.764753 ], [ -64.848026, 17.76472 ], [ -64.848003, 17.764632 ], [ -64.847997, 17.76451 ], [ -64.847975, 17.764377 ], [ -64.847941, 17.7643 ], [ -64.847837, 17.764224 ], [ -64.847699, 17.764208 ], [ -64.847527, 17.764223 ], [ -64.84748, 17.764174 ], [ -64.847414, 17.764011 ], [ -64.847411, 17.764003 ], [ -64.847347, 17.763959 ], [ -64.847268, 17.763936 ], [ -64.84713, 17.763949 ], [ -64.84702, 17.763986 ], [ -64.846953, 17.764019 ], [ -64.846876, 17.764058 ], [ -64.846653, 17.764118 ], [ -64.846617, 17.76414 ], [ -64.846593, 17.764166 ], [ -64.846514, 17.764257 ], [ -64.84644, 17.764285 ], [ -64.846158, 17.764283 ], [ -64.846066, 17.764267 ], [ -64.846015, 17.764262 ], [ -64.845934, 17.764229 ], [ -64.84583, 17.764162 ], [ -64.845705, 17.764064 ], [ -64.845566, 17.763948 ], [ -64.84556, 17.763944 ], [ -64.845509, 17.76391 ], [ -64.845433, 17.763815 ], [ -64.845416, 17.763804 ], [ -64.845417, 17.763786 ], [ -64.845428, 17.763755 ], [ -64.845468, 17.76376 ], [ -64.845485, 17.763777 ], [ -64.845506, 17.763782 ], [ -64.84552, 17.763766 ], [ -64.845526, 17.763734 ], [ -64.845509, 17.763668 ], [ -64.84552, 17.763556 ], [ -64.845532, 17.763496 ], [ -64.845531, 17.763441 ], [ -64.84552, 17.763404 ], [ -64.845451, 17.763276 ], [ -64.845399, 17.763221 ], [ -64.845348, 17.763177 ], [ -64.845313, 17.763128 ], [ -64.845267, 17.763039 ], [ -64.8451, 17.762918 ], [ -64.845076, 17.762908 ], [ -64.844968, 17.762863 ], [ -64.844692, 17.762769 ], [ -64.844584, 17.762746 ], [ -64.84452, 17.762742 ], [ -64.844445, 17.762758 ], [ -64.84437, 17.762769 ], [ -64.844238, 17.762703 ], [ -64.844077, 17.762835 ], [ -64.843899, 17.762962 ], [ -64.843732, 17.76305 ], [ -64.843641, 17.76311 ], [ -64.8436, 17.763149 ], [ -64.843497, 17.763215 ], [ -64.843404, 17.763265 ], [ -64.843325, 17.763352 ], [ -64.843307, 17.763452 ], [ -64.843267, 17.763518 ], [ -64.84318, 17.763579 ], [ -64.843072, 17.763696 ], [ -64.84306, 17.76375 ], [ -64.843025, 17.76387 ], [ -64.84299, 17.763931 ], [ -64.842973, 17.763969 ], [ -64.842933, 17.763975 ], [ -64.842927, 17.763931 ], [ -64.842927, 17.763805 ], [ -64.842924, 17.763716 ], [ -64.842921, 17.763622 ], [ -64.842899, 17.763591 ], [ -64.842916, 17.763534 ], [ -64.842904, 17.76349 ], [ -64.842876, 17.763442 ], [ -64.84287, 17.763397 ], [ -64.842876, 17.763343 ], [ -64.842807, 17.763244 ], [ -64.842738, 17.763211 ], [ -64.842692, 17.763171 ], [ -64.842589, 17.763183 ], [ -64.842502, 17.763154 ], [ -64.84241, 17.763083 ], [ -64.842386, 17.763036 ], [ -64.842306, 17.762879 ], [ -64.842261, 17.762703 ], [ -64.842254, 17.762688 ], [ -64.842221, 17.762588 ], [ -64.842226, 17.762515 ], [ -64.84225, 17.762472 ], [ -64.842278, 17.762438 ], [ -64.842296, 17.762406 ], [ -64.842255, 17.762339 ], [ -64.842181, 17.762295 ], [ -64.842071, 17.762262 ], [ -64.841951, 17.762247 ], [ -64.841852, 17.76224 ], [ -64.841761, 17.76224 ], [ -64.84168, 17.762234 ], [ -64.841582, 17.762185 ], [ -64.841555, 17.762174 ], [ -64.841467, 17.762141 ], [ -64.841399, 17.762119 ], [ -64.841395, 17.762117 ], [ -64.841206, 17.762045 ], [ -64.841111, 17.762009 ], [ -64.841013, 17.761976 ], [ -64.840888, 17.76197 ], [ -64.840801, 17.761981 ], [ -64.840755, 17.761992 ], [ -64.840709, 17.761954 ], [ -64.840695, 17.761947 ], [ -64.840617, 17.761909 ], [ -64.840507, 17.761898 ], [ -64.840444, 17.761882 ], [ -64.84037, 17.761849 ], [ -64.840226, 17.761755 ], [ -64.840123, 17.761739 ], [ -64.840059, 17.761733 ], [ -64.839887, 17.761634 ], [ -64.839823, 17.761623 ], [ -64.839697, 17.761629 ], [ -64.839634, 17.761651 ], [ -64.839524, 17.761645 ], [ -64.839398, 17.761617 ], [ -64.839249, 17.761629 ], [ -64.839164, 17.761661 ], [ -64.839122, 17.761678 ], [ -64.839013, 17.761684 ], [ -64.838835, 17.761706 ], [ -64.838708, 17.761695 ], [ -64.83863, 17.761695 ], [ -64.838432, 17.761695 ], [ -64.838306, 17.761689 ], [ -64.838202, 17.761689 ], [ -64.838105, 17.761694 ], [ -64.838018, 17.761717 ], [ -64.837926, 17.761716 ], [ -64.83761, 17.761678 ], [ -64.837461, 17.761678 ], [ -64.837265, 17.761716 ], [ -64.837104, 17.761722 ], [ -64.837018, 17.761738 ], [ -64.836898, 17.761722 ], [ -64.836788, 17.761722 ], [ -64.836708, 17.7617 ], [ -64.836668, 17.761678 ], [ -64.83661, 17.761595 ], [ -64.836553, 17.761568 ], [ -64.836495, 17.761568 ], [ -64.836426, 17.76159 ], [ -64.836357, 17.761667 ], [ -64.836311, 17.7617 ], [ -64.836248, 17.761711 ], [ -64.836191, 17.761733 ], [ -64.836116, 17.761755 ], [ -64.836001, 17.761749 ], [ -64.835874, 17.761733 ], [ -64.835771, 17.761749 ], [ -64.835553, 17.761832 ], [ -64.83545, 17.761892 ], [ -64.835421, 17.761927 ], [ -64.835346, 17.761953 ], [ -64.835203, 17.761981 ], [ -64.835184, 17.761986 ], [ -64.835076, 17.76202 ], [ -64.834996, 17.762059 ], [ -64.834938, 17.762076 ], [ -64.834869, 17.762081 ], [ -64.8348, 17.762075 ], [ -64.834725, 17.762113 ], [ -64.834657, 17.762157 ], [ -64.834616, 17.762174 ], [ -64.834564, 17.762185 ], [ -64.834536, 17.762213 ], [ -64.834495, 17.762213 ], [ -64.834455, 17.762206 ], [ -64.834427, 17.762234 ], [ -64.83442, 17.762261 ], [ -64.834403, 17.762283 ], [ -64.834357, 17.762317 ], [ -64.834317, 17.762306 ], [ -64.834265, 17.762212 ], [ -64.83426, 17.762179 ], [ -64.834225, 17.762091 ], [ -64.83422, 17.762008 ], [ -64.83419, 17.76197 ], [ -64.834161, 17.76192 ], [ -64.834134, 17.761887 ], [ -64.83411, 17.761876 ], [ -64.834082, 17.76187 ], [ -64.834036, 17.76186 ], [ -64.833926, 17.761859 ], [ -64.8338, 17.761888 ], [ -64.833673, 17.761936 ], [ -64.833559, 17.761991 ], [ -64.833455, 17.762058 ], [ -64.833369, 17.762108 ], [ -64.833127, 17.762196 ], [ -64.832989, 17.76225 ], [ -64.832886, 17.762296 ], [ -64.832742, 17.762388 ], [ -64.83257, 17.762482 ], [ -64.832374, 17.762454 ], [ -64.832293, 17.762498 ], [ -64.832196, 17.762564 ], [ -64.831925, 17.762669 ], [ -64.831788, 17.762735 ], [ -64.831431, 17.762878 ], [ -64.8313, 17.762988 ], [ -64.831201, 17.763087 ], [ -64.831133, 17.763186 ], [ -64.83108, 17.763296 ], [ -64.83107, 17.763386 ], [ -64.831069, 17.763484 ], [ -64.831064, 17.763528 ], [ -64.831046, 17.763594 ], [ -64.830994, 17.763627 ], [ -64.830932, 17.763676 ], [ -64.830845, 17.763711 ], [ -64.830724, 17.763766 ], [ -64.83062, 17.763798 ], [ -64.830528, 17.763831 ], [ -64.830442, 17.763869 ], [ -64.830396, 17.76388 ], [ -64.83035, 17.763869 ], [ -64.830328, 17.763842 ], [ -64.830298, 17.763836 ], [ -64.830252, 17.763842 ], [ -64.830206, 17.763865 ], [ -64.830206, 17.763886 ], [ -64.830184, 17.763886 ], [ -64.830166, 17.76388 ], [ -64.830127, 17.763903 ], [ -64.830113, 17.763929 ], [ -64.83008, 17.763979 ], [ -64.830045, 17.76399 ], [ -64.829971, 17.76399 ], [ -64.829868, 17.764029 ], [ -64.829856, 17.764062 ], [ -64.829822, 17.764111 ], [ -64.829712, 17.764123 ], [ -64.82966, 17.764134 ], [ -64.829637, 17.764167 ], [ -64.829619, 17.764205 ], [ -64.829597, 17.764227 ], [ -64.829419, 17.764172 ], [ -64.829304, 17.7642 ], [ -64.829303, 17.7642 ], [ -64.829179, 17.764244 ], [ -64.829086, 17.764293 ], [ -64.829052, 17.764326 ], [ -64.829035, 17.764383 ], [ -64.828982, 17.764409 ], [ -64.82897, 17.764442 ], [ -64.828924, 17.764409 ], [ -64.828857, 17.764382 ], [ -64.828764, 17.764387 ], [ -64.828677, 17.764409 ], [ -64.828453, 17.764464 ], [ -64.828321, 17.764475 ], [ -64.828091, 17.764513 ], [ -64.827936, 17.764563 ], [ -64.827775, 17.764584 ], [ -64.82762, 17.764624 ], [ -64.827516, 17.764635 ], [ -64.827275, 17.764745 ], [ -64.827033, 17.764838 ], [ -64.826947, 17.764888 ], [ -64.826752, 17.764921 ], [ -64.826625, 17.764954 ], [ -64.826494, 17.765014 ], [ -64.826356, 17.765065 ], [ -64.826223, 17.765087 ], [ -64.826045, 17.76513 ], [ -64.825925, 17.765151 ], [ -64.825924, 17.765152 ], [ -64.825717, 17.765196 ], [ -64.825432, 17.765303 ], [ -64.825216, 17.765392 ], [ -64.825097, 17.765406 ], [ -64.82486, 17.765525 ], [ -64.82459, 17.765654 ], [ -64.8245, 17.765675 ], [ -64.824451, 17.765718 ], [ -64.824281, 17.765791 ], [ -64.824203, 17.765823 ], [ -64.824153, 17.765852 ], [ -64.824063, 17.765906 ], [ -64.823993, 17.765952 ], [ -64.823875, 17.76603 ], [ -64.823792, 17.766085 ], [ -64.823708, 17.766119 ], [ -64.823586, 17.766182 ], [ -64.823289, 17.766217 ], [ -64.823092, 17.766216 ], [ -64.822632, 17.766294 ], [ -64.822472, 17.766375 ], [ -64.822335, 17.76644 ], [ -64.822206, 17.766489 ], [ -64.822044, 17.766548 ], [ -64.821915, 17.766581 ], [ -64.821747, 17.766607 ], [ -64.821729, 17.766614 ], [ -64.821666, 17.766637 ], [ -64.821617, 17.766655 ], [ -64.821574, 17.766679 ], [ -64.821534, 17.766704 ], [ -64.821467, 17.766739 ], [ -64.821431, 17.766764 ], [ -64.821354, 17.766796 ], [ -64.821338, 17.766793 ], [ -64.821136, 17.766844 ], [ -64.820982, 17.766889 ], [ -64.820724, 17.766964 ], [ -64.820462, 17.767018 ], [ -64.820368, 17.767051 ], [ -64.820278, 17.767079 ], [ -64.820187, 17.767103 ], [ -64.820122, 17.767126 ], [ -64.820021, 17.767162 ], [ -64.819946, 17.767189 ], [ -64.819906, 17.767207 ], [ -64.819837, 17.767238 ], [ -64.819744, 17.767279 ], [ -64.81966, 17.767317 ], [ -64.819581, 17.767345 ], [ -64.819485, 17.767376 ], [ -64.819428, 17.767409 ], [ -64.819278, 17.767519 ], [ -64.819129, 17.767668 ], [ -64.819054, 17.767767 ], [ -64.819002, 17.767844 ], [ -64.818923, 17.767922 ], [ -64.818882, 17.768026 ], [ -64.8189, 17.768163 ], [ -64.818865, 17.768236 ], [ -64.818801, 17.768274 ], [ -64.818726, 17.768296 ], [ -64.818611, 17.768351 ], [ -64.818532, 17.768395 ], [ -64.818405, 17.7685 ], [ -64.818335, 17.768549 ], [ -64.818182, 17.768642 ], [ -64.818019, 17.76872 ], [ -64.817887, 17.768791 ], [ -64.817595, 17.768912 ], [ -64.817531, 17.768951 ], [ -64.817428, 17.769033 ], [ -64.817329, 17.769105 ], [ -64.817169, 17.76916 ], [ -64.817042, 17.76921 ], [ -64.81691, 17.769275 ], [ -64.816823, 17.769358 ], [ -64.816726, 17.769397 ], [ -64.816622, 17.769413 ], [ -64.816621, 17.769413 ], [ -64.81663, 17.769249 ], [ -64.81645, 17.769031 ], [ -64.814049, 17.761238 ], [ -64.81554, 17.760775 ], [ -64.817147, 17.760277 ], [ -64.820622, 17.759213 ], [ -64.820085, 17.75761 ], [ -64.819385, 17.755481 ], [ -64.817864, 17.75105 ], [ -64.817156, 17.75127 ], [ -64.814992, 17.751893 ], [ -64.813493, 17.752305 ], [ -64.813206, 17.752385 ], [ -64.813094, 17.752046 ], [ -64.811678, 17.747761 ], [ -64.811188, 17.746309 ], [ -64.810474, 17.744373 ], [ -64.810412, 17.744188 ], [ -64.807735, 17.736193 ], [ -64.80679, 17.73323 ], [ -64.80654, 17.73265 ], [ -64.80648, 17.73249 ], [ -64.806433, 17.732351 ], [ -64.806129, 17.73145 ], [ -64.80603, 17.73115 ], [ -64.805998, 17.731057 ], [ -64.805902, 17.730781 ], [ -64.80587, 17.73069 ], [ -64.80582, 17.730556 ], [ -64.805674, 17.730154 ], [ -64.805627, 17.73002 ], [ -64.80554, 17.72978 ], [ -64.805521, 17.729726 ], [ -64.80529, 17.72907 ], [ -64.805212, 17.72884 ], [ -64.805115, 17.728544 ], [ -64.804942, 17.728025 ], [ -64.808186, 17.727035 ], [ -64.810325, 17.726383 ], [ -64.81037, 17.72637 ], [ -64.811205, 17.726126 ], [ -64.812287, 17.725785 ], [ -64.812962, 17.725589 ], [ -64.81299, 17.72557 ], [ -64.81325, 17.72549 ], [ -64.813542, 17.725409 ], [ -64.81423, 17.72522 ], [ -64.81522, 17.72491 ], [ -64.815663, 17.724777 ], [ -64.81592, 17.7247 ], [ -64.81634, 17.72449 ], [ -64.816494, 17.724447 ], [ -64.81652, 17.72444 ], [ -64.816959, 17.724327 ], [ -64.81703, 17.72431 ], [ -64.817115, 17.724286 ], [ -64.817375, 17.72421 ], [ -64.81783, 17.72408 ], [ -64.818158, 17.723979 ], [ -64.81842, 17.7239 ], [ -64.818467, 17.723884 ], [ -64.818608, 17.723838 ], [ -64.818657, 17.723823 ], [ -64.818743, 17.723795 ], [ -64.819005, 17.72371 ], [ -64.819093, 17.723683 ], [ -64.819276, 17.723623 ], [ -64.81938, 17.72359 ], [ -64.819833, 17.723462 ], [ -64.82002, 17.72341 ], [ -64.820207, 17.723347 ], [ -64.8205, 17.72325 ], [ -64.820777, 17.723174 ], [ -64.82083, 17.72316 ], [ -64.820967, 17.723114 ], [ -64.821161, 17.723049 ], [ -64.82122, 17.72303 ], [ -64.821435, 17.722973 ], [ -64.82172, 17.7229 ], [ -64.821754, 17.722889 ], [ -64.82195, 17.72283 ], [ -64.821956, 17.722827 ], [ -64.821974, 17.722822 ], [ -64.82198, 17.72282 ], [ -64.822016, 17.722937 ], [ -64.82212, 17.72327 ], [ -64.822126, 17.723288 ], [ -64.822167, 17.723404 ], [ -64.82261, 17.72474 ], [ -64.822614, 17.724753 ], [ -64.822627, 17.724794 ], [ -64.822632, 17.724808 ], [ -64.82289, 17.72557 ], [ -64.822896, 17.72558 ], [ -64.822914, 17.72561 ], [ -64.82292, 17.72562 ], [ -64.823162, 17.726372 ], [ -64.82317, 17.7264 ], [ -64.823184, 17.726446 ], [ -64.823258, 17.726668 ], [ -64.823285, 17.726742 ], [ -64.823306, 17.726805 ], [ -64.823369, 17.726995 ], [ -64.823391, 17.727059 ], [ -64.823425, 17.72716 ], [ -64.823527, 17.727464 ], [ -64.823561, 17.727566 ], [ -64.823592, 17.72766 ], [ -64.823688, 17.727945 ], [ -64.82372, 17.72804 ], [ -64.82386, 17.72846 ], [ -64.823947, 17.728743 ], [ -64.82399, 17.72887 ], [ -64.824307, 17.729827 ], [ -64.824506, 17.730464 ], [ -64.824524, 17.730524 ], [ -64.82454, 17.73057 ], [ -64.8246, 17.73069 ], [ -64.824607, 17.730694 ], [ -64.824804, 17.731309 ], [ -64.82525, 17.73112 ], [ -64.825425, 17.731032 ], [ -64.825649, 17.730966 ], [ -64.827628, 17.730371 ], [ -64.827951, 17.730234 ], [ -64.82875, 17.72995 ], [ -64.828826, 17.729879 ], [ -64.82887, 17.72984 ], [ -64.82904, 17.72976 ], [ -64.829102, 17.729748 ], [ -64.829205, 17.72973 ], [ -64.829364, 17.7297 ], [ -64.82948, 17.72968 ], [ -64.829802, 17.729599 ], [ -64.829815, 17.729594 ], [ -64.829913, 17.72956 ], [ -64.829989, 17.729806 ], [ -64.830324, 17.730716 ], [ -64.830469, 17.731175 ], [ -64.830683, 17.731656 ], [ -64.831271, 17.733388 ], [ -64.832685, 17.737843 ], [ -64.837758, 17.736384 ], [ -64.837802, 17.736372 ], [ -64.838114, 17.736282 ], [ -64.839139, 17.735988 ], [ -64.838399, 17.733774 ], [ -64.839622, 17.73342 ], [ -64.844789, 17.731929 ], [ -64.844678, 17.731609 ], [ -64.843788, 17.72897 ], [ -64.842529, 17.725244 ], [ -64.844047, 17.724724 ], [ -64.846426, 17.723911 ], [ -64.847397, 17.723579 ], [ -64.847506, 17.723888 ], [ -64.847593, 17.724132 ], [ -64.848929, 17.72369 ], [ -64.8491, 17.723633 ], [ -64.84942, 17.723527 ], [ -64.850267, 17.723248 ], [ -64.850651, 17.72312 ], [ -64.852106, 17.722639 ], [ -64.853362, 17.722225 ], [ -64.854591, 17.721818 ], [ -64.855073, 17.721659 ], [ -64.8557, 17.721451 ], [ -64.857186, 17.72096 ], [ -64.859166, 17.720306 ], [ -64.864762, 17.71846 ], [ -64.86488, 17.71883 ], [ -64.865045, 17.7194 ], [ -64.865782, 17.721422 ], [ -64.865884, 17.721702 ], [ -64.866003, 17.722086 ], [ -64.866038, 17.72225 ], [ -64.866393, 17.723159 ], [ -64.866549, 17.723618 ], [ -64.867711, 17.72692 ], [ -64.867809, 17.726886 ], [ -64.868537, 17.72664 ], [ -64.870934, 17.725851 ], [ -64.872527, 17.725336 ], [ -64.873043, 17.725167 ], [ -64.873352, 17.725043 ], [ -64.87428, 17.724673 ], [ -64.87459, 17.72455 ], [ -64.874859, 17.724466 ], [ -64.875667, 17.724215 ], [ -64.875937, 17.724132 ], [ -64.876493, 17.723962 ], [ -64.877455, 17.72367 ], [ -64.878169, 17.723464 ], [ -64.878729, 17.723303 ], [ -64.878894, 17.723257 ], [ -64.879095, 17.723193 ], [ -64.88019, 17.722849 ], [ -64.880556, 17.722735 ], [ -64.881438, 17.722511 ], [ -64.881454, 17.722508 ], [ -64.88186, 17.72243 ], [ -64.88259, 17.72219 ], [ -64.88313, 17.72203 ], [ -64.884051, 17.72173 ], [ -64.88427, 17.72166 ], [ -64.88477, 17.72152 ], [ -64.88492, 17.72146 ], [ -64.884974, 17.721433 ], [ -64.885138, 17.721355 ], [ -64.885193, 17.721329 ], [ -64.885192, 17.721346 ], [ -64.885197, 17.721439 ], [ -64.885238, 17.721583 ], [ -64.885255, 17.721671 ], [ -64.88529, 17.721758 ], [ -64.88533, 17.721819 ], [ -64.885347, 17.721869 ], [ -64.885371, 17.721963 ], [ -64.885411, 17.722051 ], [ -64.885462, 17.722193 ], [ -64.885508, 17.72227 ], [ -64.885577, 17.722303 ], [ -64.885629, 17.722342 ], [ -64.885692, 17.722376 ], [ -64.885744, 17.722425 ], [ -64.885767, 17.722474 ], [ -64.885773, 17.722547 ], [ -64.885795, 17.722619 ], [ -64.885836, 17.722894 ], [ -64.885876, 17.723042 ], [ -64.885968, 17.723311 ], [ -64.886025, 17.723537 ], [ -64.886101, 17.723984 ], [ -64.88614, 17.724093 ], [ -64.886152, 17.724126 ], [ -64.886215, 17.724266 ], [ -64.88629, 17.724396 ], [ -64.886325, 17.724475 ], [ -64.886382, 17.724623 ], [ -64.886416, 17.724749 ], [ -64.88648, 17.724898 ], [ -64.886548, 17.725117 ], [ -64.886584, 17.725283 ], [ -64.886623, 17.725426 ], [ -64.886664, 17.725657 ], [ -64.886733, 17.725817 ], [ -64.886865, 17.726028 ], [ -64.88694, 17.726215 ], [ -64.887038, 17.726485 ], [ -64.887101, 17.726703 ], [ -64.887133, 17.726781 ], [ -64.887258, 17.727006 ], [ -64.887372, 17.727123 ], [ -64.887393, 17.727208 ], [ -64.887466, 17.727272 ], [ -64.88746, 17.727359 ], [ -64.887415, 17.727435 ], [ -64.887375, 17.727489 ], [ -64.887352, 17.727596 ], [ -64.887376, 17.727702 ], [ -64.887428, 17.727846 ], [ -64.887488, 17.727992 ], [ -64.887663, 17.728398 ], [ -64.887761, 17.728764 ], [ -64.887829, 17.728924 ], [ -64.887874, 17.72907 ], [ -64.887938, 17.729242 ], [ -64.887959, 17.729485 ], [ -64.887911, 17.729564 ], [ -64.887886, 17.72963 ], [ -64.887925, 17.729743 ], [ -64.888208, 17.730284 ], [ -64.888277, 17.730386 ], [ -64.888455, 17.730593 ], [ -64.888496, 17.730701 ], [ -64.888572, 17.730808 ], [ -64.888597, 17.730865 ], [ -64.888711, 17.731022 ], [ -64.888775, 17.731134 ], [ -64.888848, 17.731322 ], [ -64.888906, 17.731542 ], [ -64.888944, 17.731617 ], [ -64.889061, 17.731867 ], [ -64.889084, 17.731941 ], [ -64.88916, 17.73214 ], [ -64.889187, 17.732198 ], [ -64.889214, 17.732268 ], [ -64.88932, 17.73258 ], [ -64.889389, 17.732864 ], [ -64.88942, 17.733158 ], [ -64.88942, 17.733206 ], [ -64.889397, 17.733242 ], [ -64.889397, 17.733326 ], [ -64.88942, 17.733471 ], [ -64.88942, 17.733572 ], [ -64.889458, 17.733751 ], [ -64.889525, 17.733996 ], [ -64.889556, 17.734132 ], [ -64.889613, 17.734248 ], [ -64.889659, 17.734358 ], [ -64.889689, 17.734491 ], [ -64.889735, 17.734636 ], [ -64.88978, 17.734815 ], [ -64.889833, 17.734926 ], [ -64.889832, 17.735074 ], [ -64.889837, 17.735129 ], [ -64.889757, 17.735311 ], [ -64.889982, 17.735489 ], [ -64.890016, 17.735543 ], [ -64.890084, 17.735735 ], [ -64.89009, 17.735751 ], [ -64.890096, 17.73584 ], [ -64.890132, 17.735951 ], [ -64.890166, 17.736039 ], [ -64.890195, 17.736138 ], [ -64.890252, 17.736205 ], [ -64.890293, 17.736293 ], [ -64.890333, 17.73643 ], [ -64.890379, 17.736536 ], [ -64.890425, 17.736617 ], [ -64.890447, 17.7367 ], [ -64.890486, 17.736736 ], [ -64.890586, 17.736843 ], [ -64.890695, 17.737009 ], [ -64.890781, 17.737162 ], [ -64.890801, 17.737207 ], [ -64.89089, 17.737389 ], [ -64.890942, 17.737488 ], [ -64.890994, 17.737564 ], [ -64.891056, 17.737624 ], [ -64.891106, 17.737663 ], [ -64.891148, 17.737695 ], [ -64.891184, 17.737734 ], [ -64.891206, 17.737827 ], [ -64.891195, 17.737883 ], [ -64.891223, 17.737949 ], [ -64.891246, 17.737982 ], [ -64.891299, 17.738022 ], [ -64.891332, 17.738037 ], [ -64.891378, 17.738086 ], [ -64.891414, 17.738143 ], [ -64.891459, 17.738264 ], [ -64.891512, 17.738345 ], [ -64.891562, 17.738411 ], [ -64.89162, 17.738516 ], [ -64.892575, 17.740135 ], [ -64.89262, 17.740262 ], [ -64.892684, 17.740482 ], [ -64.892706, 17.740608 ], [ -64.892713, 17.740692 ], [ -64.892718, 17.740911 ], [ -64.892753, 17.741074 ], [ -64.892775, 17.741291 ], [ -64.89284, 17.741551 ], [ -64.89288, 17.741657 ], [ -64.892891, 17.741772 ], [ -64.892954, 17.741866 ], [ -64.892989, 17.741893 ], [ -64.893029, 17.741942 ], [ -64.893092, 17.741998 ], [ -64.893144, 17.74202 ], [ -64.89319, 17.742063 ], [ -64.893226, 17.742103 ], [ -64.89323, 17.742108 ], [ -64.893265, 17.742164 ], [ -64.893334, 17.742235 ], [ -64.893408, 17.742343 ], [ -64.893633, 17.742641 ], [ -64.893666, 17.74274 ], [ -64.893656, 17.742767 ], [ -64.893633, 17.742802 ], [ -64.893557, 17.743021 ], [ -64.89354, 17.743087 ], [ -64.89354, 17.743252 ], [ -64.893604, 17.743452 ], [ -64.893656, 17.743578 ], [ -64.893713, 17.743753 ], [ -64.89384, 17.743947 ], [ -64.893932, 17.744079 ], [ -64.894001, 17.744162 ], [ -64.89404, 17.744254 ], [ -64.894109, 17.744348 ], [ -64.89415, 17.74443 ], [ -64.894178, 17.744563 ], [ -64.894182, 17.74458 ], [ -64.894219, 17.744711 ], [ -64.894242, 17.744817 ], [ -64.894271, 17.744982 ], [ -64.894293, 17.745168 ], [ -64.894289, 17.745284 ], [ -64.894293, 17.745455 ], [ -64.894289, 17.745659 ], [ -64.894243, 17.745836 ], [ -64.89418, 17.746182 ], [ -64.894161, 17.746319 ], [ -64.894134, 17.746424 ], [ -64.89414, 17.746596 ], [ -64.894098, 17.746738 ], [ -64.894094, 17.746877 ], [ -64.89407, 17.746997 ], [ -64.894054, 17.747142 ], [ -64.894036, 17.747361 ], [ -64.893984, 17.747505 ], [ -64.893931, 17.747622 ], [ -64.893892, 17.747731 ], [ -64.893823, 17.747878 ], [ -64.893696, 17.748098 ], [ -64.893634, 17.748221 ], [ -64.893517, 17.748348 ], [ -64.893425, 17.748469 ], [ -64.893328, 17.748634 ], [ -64.893283, 17.748732 ], [ -64.893255, 17.748815 ], [ -64.893255, 17.748821 ], [ -64.891632, 17.752489 ], [ -64.891607, 17.752567 ], [ -64.891564, 17.752659 ], [ -64.891525, 17.752741 ], [ -64.891513, 17.752783 ], [ -64.891495, 17.75285 ], [ -64.891473, 17.752889 ], [ -64.891428, 17.752972 ], [ -64.891403, 17.753017 ], [ -64.891394, 17.753057 ], [ -64.891369, 17.753159 ], [ -64.891357, 17.753208 ], [ -64.891323, 17.753275 ], [ -64.891307, 17.753304 ], [ -64.891273, 17.753392 ], [ -64.891246, 17.753414 ], [ -64.891224, 17.753429 ], [ -64.89118, 17.7535 ], [ -64.891133, 17.753557 ], [ -64.891107, 17.753584 ], [ -64.891075, 17.753616 ], [ -64.891037, 17.753708 ], [ -64.89096, 17.753864 ], [ -64.890945, 17.753901 ], [ -64.890941, 17.753937 ], [ -64.890938, 17.754046 ], [ -64.890945, 17.754075 ], [ -64.89092, 17.754176 ], [ -64.890888, 17.754273 ], [ -64.890849, 17.754363 ], [ -64.890793, 17.754492 ], [ -64.890748, 17.754666 ], [ -64.89073, 17.754735 ], [ -64.890644, 17.754927 ], [ -64.890625, 17.754971 ], [ -64.890602, 17.755102 ], [ -64.890595, 17.755341 ], [ -64.890587, 17.755463 ], [ -64.890571, 17.755528 ], [ -64.890556, 17.755594 ], [ -64.890552, 17.755645 ], [ -64.890534, 17.755685 ], [ -64.890515, 17.75574 ], [ -64.89048, 17.755821 ], [ -64.890396, 17.755899 ], [ -64.890368, 17.755956 ], [ -64.890348, 17.755982 ], [ -64.89033, 17.756053 ], [ -64.890311, 17.756126 ], [ -64.890274, 17.756271 ], [ -64.89027, 17.756282 ], [ -64.890236, 17.756378 ], [ -64.890182, 17.756438 ], [ -64.89016, 17.756462 ], [ -64.890095, 17.756556 ], [ -64.890058, 17.756612 ], [ -64.890007, 17.756702 ], [ -64.88996, 17.756809 ], [ -64.889923, 17.756895 ], [ -64.889893, 17.75699 ], [ -64.889893, 17.757068 ], [ -64.889888, 17.757152 ], [ -64.889889, 17.757186 ], [ -64.889854, 17.75729 ], [ -64.889851, 17.757308 ], [ -64.889845, 17.757337 ], [ -64.889826, 17.757436 ], [ -64.889816, 17.757488 ], [ -64.889804, 17.757551 ], [ -64.889801, 17.757566 ], [ -64.889783, 17.75762 ], [ -64.889725, 17.757793 ], [ -64.889714, 17.757883 ], [ -64.889714, 17.757928 ], [ -64.889658, 17.758039 ], [ -64.889595, 17.758177 ], [ -64.889587, 17.758249 ], [ -64.889581, 17.758267 ], [ -64.889568, 17.758303 ], [ -64.889542, 17.758369 ], [ -64.889498, 17.758419 ], [ -64.889481, 17.758438 ], [ -64.889463, 17.758473 ], [ -64.889435, 17.758524 ], [ -64.889417, 17.758701 ], [ -64.889407, 17.758916 ], [ -64.889354, 17.759077 ], [ -64.889331, 17.759265 ], [ -64.889291, 17.759435 ], [ -64.889198, 17.759676 ], [ -64.889108, 17.759832 ], [ -64.889055, 17.759914 ], [ -64.889025, 17.760008 ], [ -64.888952, 17.760152 ], [ -64.888858, 17.760277 ], [ -64.888751, 17.760377 ], [ -64.888664, 17.760497 ], [ -64.888625, 17.760652 ], [ -64.888602, 17.760779 ], [ -64.888504, 17.760911 ], [ -64.881722, 17.767273 ], [ -64.881521, 17.767449 ], [ -64.881268, 17.76756 ], [ -64.880992, 17.767693 ], [ -64.88082, 17.767781 ], [ -64.88059, 17.76788 ], [ -64.880348, 17.768016 ], [ -64.880072, 17.768153 ], [ -64.87996, 17.768222 ], [ -64.879866, 17.768282 ], [ -64.879768, 17.768331 ], [ -64.879653, 17.768375 ], [ -64.879474, 17.768501 ], [ -64.879366, 17.768552 ], [ -64.879257, 17.768596 ], [ -64.879123, 17.768671 ], [ -64.878969, 17.76875 ], [ -64.878727, 17.76893 ], [ -64.878596, 17.769015 ], [ -64.878319, 17.769208 ], [ -64.878199, 17.769328 ], [ -64.878061, 17.769416 ], [ -64.877894, 17.769503 ], [ -64.877705, 17.76957 ], [ -64.877469, 17.76967 ], [ -64.877377, 17.769698 ], [ -64.87725, 17.769731 ], [ -64.877153, 17.76972 ], [ -64.876772, 17.769704 ], [ -64.87664, 17.769691 ], [ -64.876537, 17.769657 ], [ -64.876185, 17.769506 ], [ -64.876026, 17.769417 ], [ -64.875836, 17.769301 ], [ -64.875664, 17.769235 ], [ -64.875445, 17.76914 ], [ -64.875302, 17.769119 ], [ -64.875032, 17.769104 ], [ -64.874876, 17.769141 ], [ -64.874744, 17.769208 ], [ -64.8746, 17.769313 ], [ -64.874495, 17.769411 ], [ -64.874289, 17.769658 ], [ -64.87406, 17.76984 ], [ -64.874048, 17.769862 ], [ -64.874083, 17.769962 ], [ -64.874106, 17.77 ], [ -64.874118, 17.770056 ], [ -64.8741, 17.770127 ], [ -64.874031, 17.770231 ], [ -64.873882, 17.770332 ], [ -64.873761, 17.770446 ], [ -64.873605, 17.770556 ], [ -64.873324, 17.770666 ], [ -64.873313, 17.770671 ], [ -64.873101, 17.770782 ], [ -64.872864, 17.770847 ], [ -64.872709, 17.770881 ], [ -64.872542, 17.770936 ], [ -64.872428, 17.770942 ], [ -64.872353, 17.770938 ], [ -64.872232, 17.770894 ], [ -64.872146, 17.770827 ], [ -64.871962, 17.770766 ], [ -64.871766, 17.77075 ], [ -64.87157, 17.770718 ], [ -64.871473, 17.770696 ], [ -64.871347, 17.770684 ], [ -64.871312, 17.770704 ], [ -64.871283, 17.770739 ], [ -64.871231, 17.77076 ], [ -64.871157, 17.770783 ], [ -64.871059, 17.770784 ], [ -64.870956, 17.770773 ], [ -64.870835, 17.770788 ], [ -64.870778, 17.770766 ], [ -64.867461, 17.769567 ], [ -64.86746, 17.769532 ], [ -64.867472, 17.769515 ], [ -64.867443, 17.769488 ], [ -64.867414, 17.769479 ], [ -64.867369, 17.769473 ], [ -64.867333, 17.769444 ], [ -64.8673, 17.769401 ], [ -64.867283, 17.769336 ], [ -64.867265, 17.769084 ], [ -64.867243, 17.769027 ], [ -64.867208, 17.768966 ], [ -64.867197, 17.768905 ], [ -64.867179, 17.768867 ], [ -64.867201, 17.768824 ], [ -64.867237, 17.768828 ], [ -64.867271, 17.768839 ], [ -64.867306, 17.768861 ], [ -64.867324, 17.768878 ], [ -64.867342, 17.768887 ], [ -64.867362, 17.76889 ], [ -64.867368, 17.768852 ], [ -64.867357, 17.768821 ], [ -64.867357, 17.768792 ], [ -64.867334, 17.768733 ], [ -64.867323, 17.768643 ], [ -64.867312, 17.768586 ], [ -64.867288, 17.768525 ], [ -64.867254, 17.768471 ], [ -64.867178, 17.768422 ], [ -64.867114, 17.768388 ], [ -64.867065, 17.768339 ], [ -64.867012, 17.768256 ], [ -64.866903, 17.76814 ], [ -64.866765, 17.768058 ], [ -64.866626, 17.767987 ], [ -64.866495, 17.767936 ], [ -64.866265, 17.767864 ], [ -64.866179, 17.76781 ], [ -64.866127, 17.76775 ], [ -64.866099, 17.767689 ], [ -64.866001, 17.767661 ], [ -64.865989, 17.767656 ], [ -64.865857, 17.76761 ], [ -64.865708, 17.767566 ], [ -64.865396, 17.767425 ], [ -64.86526, 17.767331 ], [ -64.86512, 17.767209 ], [ -64.865024, 17.767098 ], [ -64.864966, 17.767038 ], [ -64.864886, 17.766989 ], [ -64.864788, 17.766979 ], [ -64.86469, 17.766977 ], [ -64.864656, 17.766951 ], [ -64.864592, 17.766929 ], [ -64.864518, 17.766918 ], [ -64.864431, 17.766923 ], [ -64.864378, 17.766913 ], [ -64.864299, 17.766866 ], [ -64.864162, 17.766818 ], [ -64.864035, 17.766753 ], [ -64.863989, 17.766724 ], [ -64.863965, 17.766718 ], [ -64.86396, 17.766747 ], [ -64.863965, 17.766773 ], [ -64.863937, 17.766775 ], [ -64.863902, 17.766756 ], [ -64.863874, 17.766764 ], [ -64.863828, 17.766758 ], [ -64.863701, 17.766778 ], [ -64.863576, 17.766834 ], [ -64.863397, 17.766852 ], [ -64.86312, 17.766818 ], [ -64.863023, 17.766785 ], [ -64.862965, 17.766756 ], [ -64.862891, 17.766757 ], [ -64.862776, 17.766778 ], [ -64.86269, 17.766786 ], [ -64.862575, 17.766769 ], [ -64.8625, 17.766752 ], [ -64.862401, 17.766715 ], [ -64.862213, 17.766603 ], [ -64.862109, 17.766586 ], [ -64.861983, 17.766576 ], [ -64.861879, 17.766586 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "010", "TRACTCE10": "970900", "GEOID10": "78010970900", "NAME10": "9709", "NAMELSAD10": "Census Tract 9709", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 6687297, "AWATER10": 15265, "INTPTLAT10": "+17.7233485", "INTPTLON10": "-064.8262241" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.829815, 17.729594 ], [ -64.829802, 17.729599 ], [ -64.82948, 17.72968 ], [ -64.829364, 17.7297 ], [ -64.829205, 17.72973 ], [ -64.829102, 17.729748 ], [ -64.82904, 17.72976 ], [ -64.82887, 17.72984 ], [ -64.828826, 17.729879 ], [ -64.82875, 17.72995 ], [ -64.827951, 17.730234 ], [ -64.827628, 17.730371 ], [ -64.825649, 17.730966 ], [ -64.825425, 17.731032 ], [ -64.82525, 17.73112 ], [ -64.824804, 17.731309 ], [ -64.824607, 17.730694 ], [ -64.8246, 17.73069 ], [ -64.82454, 17.73057 ], [ -64.824524, 17.730524 ], [ -64.824506, 17.730464 ], [ -64.824307, 17.729827 ], [ -64.82399, 17.72887 ], [ -64.823947, 17.728743 ], [ -64.82386, 17.72846 ], [ -64.82372, 17.72804 ], [ -64.823688, 17.727945 ], [ -64.823592, 17.72766 ], [ -64.823561, 17.727566 ], [ -64.823527, 17.727464 ], [ -64.823425, 17.72716 ], [ -64.823391, 17.727059 ], [ -64.823369, 17.726995 ], [ -64.823306, 17.726805 ], [ -64.823285, 17.726742 ], [ -64.823258, 17.726668 ], [ -64.823184, 17.726446 ], [ -64.82317, 17.7264 ], [ -64.823162, 17.726372 ], [ -64.82292, 17.72562 ], [ -64.822914, 17.72561 ], [ -64.822896, 17.72558 ], [ -64.82289, 17.72557 ], [ -64.822632, 17.724808 ], [ -64.822627, 17.724794 ], [ -64.822614, 17.724753 ], [ -64.82261, 17.72474 ], [ -64.822167, 17.723404 ], [ -64.822126, 17.723288 ], [ -64.82212, 17.72327 ], [ -64.822016, 17.722937 ], [ -64.82198, 17.72282 ], [ -64.821974, 17.722822 ], [ -64.821956, 17.722827 ], [ -64.82195, 17.72283 ], [ -64.821754, 17.722889 ], [ -64.82172, 17.7229 ], [ -64.821435, 17.722973 ], [ -64.82122, 17.72303 ], [ -64.821161, 17.723049 ], [ -64.820967, 17.723114 ], [ -64.82083, 17.72316 ], [ -64.820777, 17.723174 ], [ -64.8205, 17.72325 ], [ -64.820207, 17.723347 ], [ -64.82002, 17.72341 ], [ -64.819833, 17.723462 ], [ -64.81938, 17.72359 ], [ -64.819276, 17.723623 ], [ -64.819093, 17.723683 ], [ -64.819005, 17.72371 ], [ -64.818743, 17.723795 ], [ -64.818657, 17.723823 ], [ -64.818608, 17.723838 ], [ -64.818467, 17.723884 ], [ -64.81842, 17.7239 ], [ -64.818158, 17.723979 ], [ -64.81783, 17.72408 ], [ -64.817375, 17.72421 ], [ -64.817115, 17.724286 ], [ -64.81703, 17.72431 ], [ -64.816959, 17.724327 ], [ -64.81652, 17.72444 ], [ -64.816494, 17.724447 ], [ -64.81634, 17.72449 ], [ -64.81592, 17.7247 ], [ -64.815663, 17.724777 ], [ -64.81522, 17.72491 ], [ -64.81423, 17.72522 ], [ -64.813542, 17.725409 ], [ -64.81325, 17.72549 ], [ -64.81299, 17.72557 ], [ -64.812962, 17.725589 ], [ -64.812287, 17.725785 ], [ -64.811205, 17.726126 ], [ -64.81037, 17.72637 ], [ -64.810325, 17.726383 ], [ -64.808186, 17.727035 ], [ -64.804942, 17.728025 ], [ -64.804423, 17.726468 ], [ -64.80425, 17.72595 ], [ -64.804174, 17.725719 ], [ -64.80411, 17.72552 ], [ -64.80394, 17.725029 ], [ -64.803863, 17.7248 ], [ -64.803832, 17.724712 ], [ -64.803742, 17.724448 ], [ -64.803712, 17.72436 ], [ -64.803693, 17.724308 ], [ -64.803641, 17.724153 ], [ -64.80363, 17.72412 ], [ -64.803624, 17.724102 ], [ -64.803548, 17.723869 ], [ -64.80341, 17.72344 ], [ -64.803319, 17.723171 ], [ -64.803241, 17.72294 ], [ -64.803169, 17.722729 ], [ -64.803093, 17.722505 ], [ -64.802955, 17.722098 ], [ -64.80294, 17.72205 ], [ -64.802887, 17.721887 ], [ -64.80287, 17.721836 ], [ -64.80282, 17.721685 ], [ -64.802805, 17.721635 ], [ -64.80278, 17.72156 ], [ -64.802746, 17.721454 ], [ -64.802576, 17.720911 ], [ -64.80252, 17.72073 ], [ -64.802439, 17.720541 ], [ -64.80237, 17.72038 ], [ -64.802369, 17.720379 ], [ -64.802239, 17.719959 ], [ -64.80223, 17.71993 ], [ -64.80219, 17.71976 ], [ -64.802223, 17.719749 ], [ -64.802328, 17.71972 ], [ -64.802363, 17.719711 ], [ -64.802502, 17.71967 ], [ -64.80282, 17.71958 ], [ -64.80292, 17.719548 ], [ -64.803059, 17.719505 ], [ -64.80355, 17.71935 ], [ -64.803618, 17.719329 ], [ -64.80431, 17.71912 ], [ -64.8045, 17.71906 ], [ -64.805013, 17.718916 ], [ -64.805307, 17.718835 ], [ -64.80572, 17.71872 ], [ -64.80587, 17.71867 ], [ -64.80618, 17.71857 ], [ -64.80649, 17.71847 ], [ -64.806512, 17.718463 ], [ -64.80724, 17.71824 ], [ -64.80792, 17.71804 ], [ -64.808449, 17.717877 ], [ -64.80887, 17.71775 ], [ -64.809097, 17.717683 ], [ -64.80936, 17.717605 ], [ -64.80972, 17.7175 ], [ -64.810151, 17.717365 ], [ -64.81033, 17.71731 ], [ -64.810415, 17.717285 ], [ -64.81104, 17.717098 ], [ -64.81157, 17.71694 ], [ -64.81286, 17.71656 ], [ -64.812917, 17.716541 ], [ -64.81354, 17.71634 ], [ -64.81366, 17.716303 ], [ -64.814021, 17.716194 ], [ -64.814143, 17.716158 ], [ -64.814672, 17.715998 ], [ -64.814802, 17.715959 ], [ -64.81546, 17.71576 ], [ -64.81613, 17.71555 ], [ -64.816259, 17.715511 ], [ -64.81679, 17.715352 ], [ -64.816833, 17.715338 ], [ -64.816964, 17.715299 ], [ -64.817009, 17.715286 ], [ -64.81717, 17.715238 ], [ -64.81733, 17.71519 ], [ -64.817376, 17.715175 ], [ -64.81752, 17.71513 ], [ -64.817617, 17.715101 ], [ -64.817969, 17.715 ], [ -64.818482, 17.714842 ], [ -64.818848, 17.714729 ], [ -64.81903, 17.71468 ], [ -64.819452, 17.714542 ], [ -64.81955, 17.71451 ], [ -64.82015, 17.71433 ], [ -64.82065, 17.714175 ], [ -64.820724, 17.714151 ], [ -64.82115, 17.71402 ], [ -64.821306, 17.713974 ], [ -64.821774, 17.713836 ], [ -64.82193, 17.71379 ], [ -64.822083, 17.71374 ], [ -64.822545, 17.71359 ], [ -64.822699, 17.713541 ], [ -64.822805, 17.713506 ], [ -64.823122, 17.713404 ], [ -64.82323, 17.71337 ], [ -64.823507, 17.713286 ], [ -64.824338, 17.713037 ], [ -64.824617, 17.712954 ], [ -64.824659, 17.712941 ], [ -64.824785, 17.712903 ], [ -64.824828, 17.712891 ], [ -64.824914, 17.712866 ], [ -64.825, 17.71284 ], [ -64.825056, 17.712823 ], [ -64.825485, 17.712695 ], [ -64.82574, 17.712618 ], [ -64.82597, 17.71255 ], [ -64.82607, 17.712514 ], [ -64.82634, 17.71242 ], [ -64.826374, 17.71241 ], [ -64.826477, 17.712381 ], [ -64.827132, 17.712195 ], [ -64.82726, 17.71216 ], [ -64.82814, 17.7119 ], [ -64.82908, 17.7116 ], [ -64.829088, 17.711597 ], [ -64.82941, 17.711498 ], [ -64.829739, 17.711395 ], [ -64.829929, 17.711335 ], [ -64.830499, 17.711159 ], [ -64.83069, 17.7111 ], [ -64.83126, 17.71091 ], [ -64.831441, 17.710854 ], [ -64.83234, 17.71058 ], [ -64.833715, 17.710173 ], [ -64.83417, 17.71004 ], [ -64.834475, 17.709947 ], [ -64.834531, 17.709929 ], [ -64.834703, 17.709877 ], [ -64.83476, 17.70986 ], [ -64.835082, 17.709758 ], [ -64.836051, 17.709455 ], [ -64.836372, 17.709354 ], [ -64.838195, 17.714669 ], [ -64.838511, 17.715634 ], [ -64.838512, 17.715635 ], [ -64.838569, 17.715767 ], [ -64.838615, 17.715904 ], [ -64.83865, 17.716064 ], [ -64.838651, 17.71608 ], [ -64.838673, 17.716191 ], [ -64.838747, 17.71629 ], [ -64.83877, 17.71635 ], [ -64.838787, 17.716433 ], [ -64.838862, 17.716571 ], [ -64.839124, 17.717398 ], [ -64.839185, 17.717548 ], [ -64.841475, 17.724253 ], [ -64.841885, 17.725465 ], [ -64.842529, 17.725244 ], [ -64.843788, 17.72897 ], [ -64.844678, 17.731609 ], [ -64.844789, 17.731929 ], [ -64.839622, 17.73342 ], [ -64.838399, 17.733774 ], [ -64.839139, 17.735988 ], [ -64.838114, 17.736282 ], [ -64.837802, 17.736372 ], [ -64.837758, 17.736384 ], [ -64.832685, 17.737843 ], [ -64.831271, 17.733388 ], [ -64.830683, 17.731656 ], [ -64.830469, 17.731175 ], [ -64.830324, 17.730716 ], [ -64.829989, 17.729806 ], [ -64.829913, 17.72956 ], [ -64.829815, 17.729594 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "010", "TRACTCE10": "970800", "GEOID10": "78010970800", "NAME10": "9708", "NAMELSAD10": "Census Tract 9708", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 13130799, "AWATER10": 33429, "INTPTLAT10": "+17.7350416", "INTPTLON10": "-064.7928106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.779021, 17.743746 ], [ -64.778858, 17.74337 ], [ -64.77783, 17.740634 ], [ -64.777625, 17.739994 ], [ -64.77701, 17.738074 ], [ -64.776806, 17.737434 ], [ -64.776668, 17.737035 ], [ -64.77653, 17.73671 ], [ -64.776352, 17.736163 ], [ -64.776264, 17.735892 ], [ -64.77603, 17.735169 ], [ -64.775754, 17.734319 ], [ -64.775469, 17.733439 ], [ -64.775205, 17.732622 ], [ -64.775183, 17.732572 ], [ -64.775119, 17.732424 ], [ -64.775098, 17.732375 ], [ -64.77493, 17.7319 ], [ -64.774872, 17.731746 ], [ -64.77484, 17.73166 ], [ -64.77468, 17.73121 ], [ -64.7744, 17.73034 ], [ -64.774237, 17.729844 ], [ -64.77403, 17.72921 ], [ -64.774, 17.7291 ], [ -64.77399, 17.729074 ], [ -64.773861, 17.728673 ], [ -64.77382, 17.72854 ], [ -64.773784, 17.72844 ], [ -64.773675, 17.72814 ], [ -64.77364, 17.72804 ], [ -64.773594, 17.727906 ], [ -64.773455, 17.727504 ], [ -64.77341, 17.72737 ], [ -64.773336, 17.727155 ], [ -64.773115, 17.72651 ], [ -64.773042, 17.726295 ], [ -64.77302, 17.72623 ], [ -64.772846, 17.725664 ], [ -64.77279, 17.72548 ], [ -64.772655, 17.72509 ], [ -64.77252, 17.7247 ], [ -64.772485, 17.72458 ], [ -64.77245, 17.72446 ], [ -64.77222, 17.723815 ], [ -64.772211, 17.723791 ], [ -64.77199, 17.72317 ], [ -64.771958, 17.723084 ], [ -64.771862, 17.722826 ], [ -64.77183, 17.72274 ], [ -64.771775, 17.722584 ], [ -64.771613, 17.722116 ], [ -64.77156, 17.72196 ], [ -64.771508, 17.721804 ], [ -64.77136, 17.721336 ], [ -64.77131, 17.72118 ], [ -64.771259, 17.721038 ], [ -64.771109, 17.720612 ], [ -64.77106, 17.72047 ], [ -64.771251, 17.720397 ], [ -64.77135, 17.72036 ], [ -64.77177, 17.72015 ], [ -64.771805, 17.720128 ], [ -64.77198, 17.72002 ], [ -64.772118, 17.720015 ], [ -64.77226, 17.72001 ], [ -64.772519, 17.719916 ], [ -64.77265, 17.71987 ], [ -64.772717, 17.719847 ], [ -64.772921, 17.719782 ], [ -64.77299, 17.71976 ], [ -64.773106, 17.719722 ], [ -64.7733, 17.71966 ], [ -64.77346, 17.719619 ], [ -64.77358, 17.71959 ], [ -64.773641, 17.719569 ], [ -64.773827, 17.71951 ], [ -64.77389, 17.71949 ], [ -64.774002, 17.719453 ], [ -64.774345, 17.719346 ], [ -64.77446, 17.71931 ], [ -64.77455, 17.719278 ], [ -64.77482, 17.719182 ], [ -64.77491, 17.71915 ], [ -64.775069, 17.719099 ], [ -64.775549, 17.71895 ], [ -64.77571, 17.7189 ], [ -64.775918, 17.718835 ], [ -64.77626, 17.71873 ], [ -64.776548, 17.718654 ], [ -64.77676, 17.7186 ], [ -64.776661, 17.718314 ], [ -64.776366, 17.717456 ], [ -64.77627, 17.71717 ], [ -64.776223, 17.717024 ], [ -64.776084, 17.716586 ], [ -64.77604, 17.71644 ], [ -64.776015, 17.716385 ], [ -64.77599, 17.71633 ], [ -64.775976, 17.716287 ], [ -64.77588, 17.715995 ], [ -64.77582, 17.715816 ], [ -64.77577, 17.71566 ], [ -64.775918, 17.715618 ], [ -64.776362, 17.715492 ], [ -64.77651, 17.71545 ], [ -64.77696, 17.715309 ], [ -64.778312, 17.71489 ], [ -64.778763, 17.71475 ], [ -64.779022, 17.71467 ], [ -64.779467, 17.714535 ], [ -64.77975, 17.71445 ], [ -64.78036, 17.71426 ], [ -64.78059, 17.71416 ], [ -64.78078, 17.71406 ], [ -64.780783, 17.714057 ], [ -64.78106, 17.71389 ], [ -64.781174, 17.713802 ], [ -64.78128, 17.71372 ], [ -64.78147, 17.71356 ], [ -64.78165, 17.71339 ], [ -64.781729, 17.713294 ], [ -64.7818, 17.71321 ], [ -64.78182, 17.713181 ], [ -64.78201, 17.71292 ], [ -64.78257, 17.71206 ], [ -64.782996, 17.711419 ], [ -64.78337, 17.71086 ], [ -64.783415, 17.710791 ], [ -64.783466, 17.710711 ], [ -64.783545, 17.710948 ], [ -64.785152, 17.715782 ], [ -64.78747, 17.715103 ], [ -64.788002, 17.714947 ], [ -64.791198, 17.71401 ], [ -64.791775, 17.713841 ], [ -64.79318, 17.71343 ], [ -64.793229, 17.71345 ], [ -64.79331, 17.71345 ], [ -64.79345, 17.71343 ], [ -64.7936, 17.713382 ], [ -64.79386, 17.7141 ], [ -64.795051, 17.717392 ], [ -64.795114, 17.717565 ], [ -64.795638, 17.719013 ], [ -64.796515, 17.721439 ], [ -64.796547, 17.721527 ], [ -64.796758, 17.721457 ], [ -64.79678, 17.72145 ], [ -64.7976, 17.72121 ], [ -64.79848, 17.72092 ], [ -64.798595, 17.720885 ], [ -64.79921, 17.7207 ], [ -64.799329, 17.720651 ], [ -64.79954, 17.720567 ], [ -64.79969, 17.720512 ], [ -64.799812, 17.720469 ], [ -64.799916, 17.720422 ], [ -64.800234, 17.720285 ], [ -64.80034, 17.72024 ], [ -64.80023, 17.719915 ], [ -64.800184, 17.719781 ], [ -64.80012, 17.71959 ], [ -64.7998, 17.71865 ], [ -64.799712, 17.718406 ], [ -64.79955, 17.71795 ], [ -64.799541, 17.717922 ], [ -64.799514, 17.71784 ], [ -64.799506, 17.717813 ], [ -64.79944, 17.71761 ], [ -64.799403, 17.717505 ], [ -64.7992, 17.71691 ], [ -64.799094, 17.716583 ], [ -64.79908, 17.71654 ], [ -64.79903, 17.71641 ], [ -64.79898, 17.71628 ], [ -64.799369, 17.716117 ], [ -64.799469, 17.716077 ], [ -64.801027, 17.715534 ], [ -64.80363, 17.714629 ], [ -64.803813, 17.715198 ], [ -64.805013, 17.718916 ], [ -64.8045, 17.71906 ], [ -64.80431, 17.71912 ], [ -64.803618, 17.719329 ], [ -64.80355, 17.71935 ], [ -64.803059, 17.719505 ], [ -64.80292, 17.719548 ], [ -64.80282, 17.71958 ], [ -64.802502, 17.71967 ], [ -64.802363, 17.719711 ], [ -64.802328, 17.71972 ], [ -64.802223, 17.719749 ], [ -64.80219, 17.71976 ], [ -64.80223, 17.71993 ], [ -64.802239, 17.719959 ], [ -64.802369, 17.720379 ], [ -64.80237, 17.72038 ], [ -64.802439, 17.720541 ], [ -64.80252, 17.72073 ], [ -64.802576, 17.720911 ], [ -64.802746, 17.721454 ], [ -64.80278, 17.72156 ], [ -64.802805, 17.721635 ], [ -64.80282, 17.721685 ], [ -64.80287, 17.721836 ], [ -64.802887, 17.721887 ], [ -64.80294, 17.72205 ], [ -64.802955, 17.722098 ], [ -64.803093, 17.722505 ], [ -64.803169, 17.722729 ], [ -64.803241, 17.72294 ], [ -64.803319, 17.723171 ], [ -64.80341, 17.72344 ], [ -64.803548, 17.723869 ], [ -64.803624, 17.724102 ], [ -64.80363, 17.72412 ], [ -64.803641, 17.724153 ], [ -64.803693, 17.724308 ], [ -64.803712, 17.72436 ], [ -64.803742, 17.724448 ], [ -64.803832, 17.724712 ], [ -64.803863, 17.7248 ], [ -64.80394, 17.725029 ], [ -64.80411, 17.72552 ], [ -64.804174, 17.725719 ], [ -64.80425, 17.72595 ], [ -64.804423, 17.726468 ], [ -64.804942, 17.728025 ], [ -64.805115, 17.728544 ], [ -64.805212, 17.72884 ], [ -64.80529, 17.72907 ], [ -64.805521, 17.729726 ], [ -64.80554, 17.72978 ], [ -64.805627, 17.73002 ], [ -64.805674, 17.730154 ], [ -64.80582, 17.730556 ], [ -64.80587, 17.73069 ], [ -64.805902, 17.730781 ], [ -64.805998, 17.731057 ], [ -64.80603, 17.73115 ], [ -64.806129, 17.73145 ], [ -64.806433, 17.732351 ], [ -64.80648, 17.73249 ], [ -64.80654, 17.73265 ], [ -64.80679, 17.73323 ], [ -64.807735, 17.736193 ], [ -64.810412, 17.744188 ], [ -64.810474, 17.744373 ], [ -64.811188, 17.746309 ], [ -64.811678, 17.747761 ], [ -64.813094, 17.752046 ], [ -64.813206, 17.752385 ], [ -64.813221, 17.752518 ], [ -64.807317, 17.754328 ], [ -64.80186, 17.756001 ], [ -64.801619, 17.756076 ], [ -64.801572, 17.75609 ], [ -64.799504, 17.756724 ], [ -64.796953, 17.757506 ], [ -64.795592, 17.757923 ], [ -64.795532, 17.757941 ], [ -64.795231, 17.758033 ], [ -64.794948, 17.75812 ], [ -64.791539, 17.759165 ], [ -64.791274, 17.759247 ], [ -64.791144, 17.758809 ], [ -64.79109, 17.758617 ], [ -64.790974, 17.758231 ], [ -64.790951, 17.758154 ], [ -64.790686, 17.757257 ], [ -64.789131, 17.751993 ], [ -64.788882, 17.751155 ], [ -64.788824, 17.750954 ], [ -64.79036, 17.75048 ], [ -64.793123, 17.749608 ], [ -64.793456, 17.749503 ], [ -64.793049, 17.748183 ], [ -64.792826, 17.747458 ], [ -64.792709, 17.747079 ], [ -64.79256, 17.7467 ], [ -64.792326, 17.745973 ], [ -64.79227, 17.7458 ], [ -64.79214, 17.74541 ], [ -64.79206, 17.74517 ], [ -64.792047, 17.745135 ], [ -64.79186, 17.74461 ], [ -64.791764, 17.744325 ], [ -64.79176, 17.744314 ], [ -64.791668, 17.74404 ], [ -64.791659, 17.744018 ], [ -64.791639, 17.743955 ], [ -64.791632, 17.743934 ], [ -64.791619, 17.743897 ], [ -64.791584, 17.74379 ], [ -64.791572, 17.743754 ], [ -64.79152, 17.7436 ], [ -64.791462, 17.743426 ], [ -64.79118, 17.74255 ], [ -64.791141, 17.742442 ], [ -64.79103, 17.742117 ], [ -64.79076, 17.74134 ], [ -64.790749, 17.741343 ], [ -64.790641, 17.741376 ], [ -64.790522, 17.741413 ], [ -64.789427, 17.741747 ], [ -64.78847, 17.74204 ], [ -64.78716, 17.74245 ], [ -64.786142, 17.742749 ], [ -64.78597, 17.7428 ], [ -64.78505, 17.74309 ], [ -64.78482, 17.743164 ], [ -64.784135, 17.743387 ], [ -64.783907, 17.743462 ], [ -64.78379, 17.743499 ], [ -64.78368, 17.743536 ], [ -64.783445, 17.743612 ], [ -64.78333, 17.74365 ], [ -64.783258, 17.743676 ], [ -64.783041, 17.743754 ], [ -64.78297, 17.74378 ], [ -64.78274, 17.743844 ], [ -64.78265, 17.74387 ], [ -64.782056, 17.744057 ], [ -64.78183, 17.74413 ], [ -64.781812, 17.744136 ], [ -64.781758, 17.744154 ], [ -64.78174, 17.74416 ], [ -64.781392, 17.744278 ], [ -64.780347, 17.744635 ], [ -64.78, 17.744754 ], [ -64.779962, 17.744766 ], [ -64.779854, 17.744803 ], [ -64.779818, 17.744816 ], [ -64.779794, 17.744823 ], [ -64.779726, 17.744846 ], [ -64.779704, 17.744855 ], [ -64.77966, 17.74487 ], [ -64.779529, 17.744905 ], [ -64.779416, 17.744935 ], [ -64.779264, 17.744466 ], [ -64.779021, 17.743746 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "010", "TRACTCE10": "971100", "GEOID10": "78010971100", "NAME10": "9711", "NAMELSAD10": "Census Tract 9711", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 9701963, "AWATER10": 3059668, "INTPTLAT10": "+17.7038089", "INTPTLON10": "-064.8805226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.86086, 17.70709 ], [ -64.860769, 17.706857 ], [ -64.860583, 17.706357 ], [ -64.86057, 17.706321 ], [ -64.860535, 17.706214 ], [ -64.860525, 17.706179 ], [ -64.86034, 17.70567 ], [ -64.85923, 17.70228 ], [ -64.859359, 17.702244 ], [ -64.85964, 17.70217 ], [ -64.859751, 17.702132 ], [ -64.85988, 17.70209 ], [ -64.86001, 17.70206 ], [ -64.860014, 17.702058 ], [ -64.860408, 17.701924 ], [ -64.86054, 17.70188 ], [ -64.860586, 17.701864 ], [ -64.86063, 17.70185 ], [ -64.860727, 17.701821 ], [ -64.860774, 17.701807 ], [ -64.860997, 17.701739 ], [ -64.8613, 17.70165 ], [ -64.861667, 17.701525 ], [ -64.86189, 17.70145 ], [ -64.862027, 17.701408 ], [ -64.862442, 17.701282 ], [ -64.86258, 17.70124 ], [ -64.862678, 17.701213 ], [ -64.8628, 17.70118 ], [ -64.862972, 17.701122 ], [ -64.86307, 17.70109 ], [ -64.863136, 17.701067 ], [ -64.863226, 17.701039 ], [ -64.863341, 17.701001 ], [ -64.86341, 17.70098 ], [ -64.863541, 17.700938 ], [ -64.863937, 17.700816 ], [ -64.864069, 17.700775 ], [ -64.864206, 17.700731 ], [ -64.864621, 17.700603 ], [ -64.86476, 17.70056 ], [ -64.864779, 17.700553 ], [ -64.864839, 17.700536 ], [ -64.86486, 17.70053 ], [ -64.865221, 17.700413 ], [ -64.86585, 17.70021 ], [ -64.866307, 17.700064 ], [ -64.86667, 17.69995 ], [ -64.866753, 17.699923 ], [ -64.867006, 17.699845 ], [ -64.86709, 17.69982 ], [ -64.867153, 17.6998 ], [ -64.867346, 17.699743 ], [ -64.86741, 17.699724 ], [ -64.86749, 17.6997 ], [ -64.867543, 17.699681 ], [ -64.86778, 17.6996 ], [ -64.867945, 17.699546 ], [ -64.86808, 17.699504 ], [ -64.868201, 17.699464 ], [ -64.868567, 17.699348 ], [ -64.86869, 17.69931 ], [ -64.869051, 17.699193 ], [ -64.86965, 17.699 ], [ -64.870137, 17.698851 ], [ -64.8705, 17.69874 ], [ -64.870806, 17.698639 ], [ -64.87099, 17.69858 ], [ -64.871729, 17.698354 ], [ -64.87194, 17.69829 ], [ -64.872037, 17.698257 ], [ -64.872226, 17.698192 ], [ -64.87247, 17.69811 ], [ -64.872706, 17.698035 ], [ -64.8728, 17.698004 ], [ -64.872993, 17.697943 ], [ -64.873329, 17.697835 ], [ -64.873412, 17.697809 ], [ -64.8746, 17.69743 ], [ -64.874669, 17.697408 ], [ -64.87509, 17.69728 ], [ -64.875322, 17.697206 ], [ -64.876024, 17.696987 ], [ -64.87608, 17.69697 ], [ -64.87626, 17.69692 ], [ -64.876271, 17.696916 ], [ -64.876302, 17.696906 ], [ -64.876315, 17.696903 ], [ -64.876324, 17.6969 ], [ -64.87635, 17.696892 ], [ -64.87636, 17.69689 ], [ -64.876372, 17.696886 ], [ -64.876407, 17.696875 ], [ -64.87642, 17.696872 ], [ -64.876453, 17.696861 ], [ -64.876554, 17.69683 ], [ -64.876588, 17.696821 ], [ -64.876654, 17.6968 ], [ -64.87669, 17.69679 ], [ -64.876853, 17.696738 ], [ -64.876921, 17.696717 ], [ -64.876956, 17.696705 ], [ -64.877064, 17.696671 ], [ -64.8771, 17.69666 ], [ -64.877117, 17.696655 ], [ -64.877168, 17.696639 ], [ -64.877187, 17.696635 ], [ -64.877202, 17.69663 ], [ -64.877252, 17.696615 ], [ -64.87727, 17.696611 ], [ -64.877312, 17.696598 ], [ -64.877437, 17.696562 ], [ -64.87748, 17.69655 ], [ -64.877797, 17.696432 ], [ -64.87786, 17.69641 ], [ -64.87821, 17.696308 ], [ -64.87826, 17.696294 ], [ -64.87831, 17.69628 ], [ -64.878387, 17.696252 ], [ -64.87853, 17.6962 ], [ -64.878766, 17.696128 ], [ -64.878917, 17.696082 ], [ -64.87909, 17.69603 ], [ -64.879135, 17.696017 ], [ -64.879268, 17.695981 ], [ -64.879315, 17.695969 ], [ -64.879402, 17.695945 ], [ -64.879661, 17.695873 ], [ -64.87975, 17.69585 ], [ -64.879765, 17.695845 ], [ -64.879811, 17.695829 ], [ -64.879827, 17.695825 ], [ -64.879909, 17.695798 ], [ -64.880157, 17.695716 ], [ -64.88024, 17.69569 ], [ -64.880317, 17.695666 ], [ -64.880549, 17.695596 ], [ -64.880627, 17.695573 ], [ -64.880904, 17.695488 ], [ -64.881, 17.69546 ], [ -64.881215, 17.69539 ], [ -64.881735, 17.695224 ], [ -64.88181, 17.6952 ], [ -64.88201, 17.69513 ], [ -64.88198, 17.69505 ], [ -64.881969, 17.695021 ], [ -64.881902, 17.694818 ], [ -64.88186, 17.694694 ], [ -64.881823, 17.694586 ], [ -64.88181, 17.694548 ], [ -64.881772, 17.694437 ], [ -64.88176, 17.6944 ], [ -64.881699, 17.694234 ], [ -64.88159, 17.69393 ], [ -64.881525, 17.693736 ], [ -64.88147, 17.69357 ], [ -64.881455, 17.69353 ], [ -64.881412, 17.69341 ], [ -64.8814, 17.69337 ], [ -64.88137, 17.69329 ], [ -64.881336, 17.693165 ], [ -64.88131, 17.69307 ], [ -64.881264, 17.692937 ], [ -64.88121, 17.69278 ], [ -64.881136, 17.692553 ], [ -64.88107, 17.69235 ], [ -64.881027, 17.692249 ], [ -64.880731, 17.691419 ], [ -64.880565, 17.690954 ], [ -64.88046, 17.69066 ], [ -64.880402, 17.690474 ], [ -64.88022, 17.68988 ], [ -64.880219, 17.689879 ], [ -64.880185, 17.689772 ], [ -64.880165, 17.68971 ], [ -64.88011, 17.68954 ], [ -64.88002, 17.6892 ], [ -64.879966, 17.689041 ], [ -64.87986, 17.68872 ], [ -64.87969, 17.68815 ], [ -64.879487, 17.68756 ], [ -64.87932, 17.68707 ], [ -64.87894, 17.685985 ], [ -64.878576, 17.684966 ], [ -64.878273, 17.684104 ], [ -64.878304, 17.684085 ], [ -64.878397, 17.684027 ], [ -64.878447, 17.68401 ], [ -64.878487, 17.683965 ], [ -64.878524, 17.68396 ], [ -64.878593, 17.683982 ], [ -64.878647, 17.684012 ], [ -64.878677, 17.684152 ], [ -64.878714, 17.684186 ], [ -64.878838, 17.684282 ], [ -64.878876, 17.684319 ], [ -64.87891, 17.684331 ], [ -64.878998, 17.684364 ], [ -64.879066, 17.684423 ], [ -64.879112, 17.684452 ], [ -64.879186, 17.684474 ], [ -64.879239, 17.684463 ], [ -64.879261, 17.684435 ], [ -64.879308, 17.684437 ], [ -64.879335, 17.684481 ], [ -64.879351, 17.684518 ], [ -64.879358, 17.684566 ], [ -64.87936, 17.684594 ], [ -64.879362, 17.684637 ], [ -64.879371, 17.684649 ], [ -64.879388, 17.684674 ], [ -64.879417, 17.684715 ], [ -64.87946, 17.684736 ], [ -64.879563, 17.684788 ], [ -64.879652, 17.684832 ], [ -64.8797, 17.684856 ], [ -64.879708, 17.684858 ], [ -64.879768, 17.68487 ], [ -64.879858, 17.684888 ], [ -64.879883, 17.684893 ], [ -64.879889, 17.684893 ], [ -64.879953, 17.684893 ], [ -64.88003, 17.684893 ], [ -64.880063, 17.684892 ], [ -64.880151, 17.68489 ], [ -64.880254, 17.684895 ], [ -64.880289, 17.684898 ], [ -64.880324, 17.684898 ], [ -64.880363, 17.684908 ], [ -64.880508, 17.684902 ], [ -64.880569, 17.684914 ], [ -64.880582, 17.684914 ], [ -64.88071, 17.684915 ], [ -64.88121, 17.684944 ], [ -64.881371, 17.684954 ], [ -64.881432, 17.68495 ], [ -64.881508, 17.684925 ], [ -64.881607, 17.684872 ], [ -64.881653, 17.684834 ], [ -64.881714, 17.684834 ], [ -64.881744, 17.684851 ], [ -64.881767, 17.684887 ], [ -64.881805, 17.684992 ], [ -64.881844, 17.685049 ], [ -64.881989, 17.685119 ], [ -64.882164, 17.685242 ], [ -64.882329, 17.685295 ], [ -64.882464, 17.685305 ], [ -64.882488, 17.685284 ], [ -64.882507, 17.685234 ], [ -64.88257, 17.685256 ], [ -64.882604, 17.685299 ], [ -64.882606, 17.685387 ], [ -64.882651, 17.685432 ], [ -64.882721, 17.685463 ], [ -64.882773, 17.685499 ], [ -64.882804, 17.685533 ], [ -64.882823, 17.685574 ], [ -64.882834, 17.685621 ], [ -64.882857, 17.685656 ], [ -64.882889, 17.685688 ], [ -64.88292, 17.685709 ], [ -64.882945, 17.685729 ], [ -64.883016, 17.68577 ], [ -64.883121, 17.685815 ], [ -64.883274, 17.685843 ], [ -64.883347, 17.685847 ], [ -64.883454, 17.685853 ], [ -64.883774, 17.685852 ], [ -64.883929, 17.685838 ], [ -64.883943, 17.685834 ], [ -64.884132, 17.685789 ], [ -64.88431, 17.685742 ], [ -64.884489, 17.68569 ], [ -64.884658, 17.685636 ], [ -64.884729, 17.685614 ], [ -64.88488, 17.685554 ], [ -64.884911, 17.685542 ], [ -64.885025, 17.685475 ], [ -64.885217, 17.685361 ], [ -64.88548, 17.685204 ], [ -64.885573, 17.685129 ], [ -64.885904, 17.684865 ], [ -64.886097, 17.684652 ], [ -64.886322, 17.684382 ], [ -64.886436, 17.684286 ], [ -64.886696, 17.684126 ], [ -64.88691, 17.684009 ], [ -64.886961, 17.683981 ], [ -64.887192, 17.683821 ], [ -64.887216, 17.683809 ], [ -64.887344, 17.683748 ], [ -64.887387, 17.683724 ], [ -64.887512, 17.683651 ], [ -64.88774, 17.683545 ], [ -64.887833, 17.683508 ], [ -64.887909, 17.68346 ], [ -64.888121, 17.683357 ], [ -64.888549, 17.683133 ], [ -64.888942, 17.682873 ], [ -64.889058, 17.682777 ], [ -64.88924, 17.682623 ], [ -64.889401, 17.682456 ], [ -64.889557, 17.682301 ], [ -64.889732, 17.682165 ], [ -64.889774, 17.682131 ], [ -64.889982, 17.681949 ], [ -64.890068, 17.681883 ], [ -64.890167, 17.681815 ], [ -64.890381, 17.681666 ], [ -64.890594, 17.681498 ], [ -64.89075, 17.681403 ], [ -64.890823, 17.681358 ], [ -64.89091, 17.681308 ], [ -64.891015, 17.681231 ], [ -64.891101, 17.681167 ], [ -64.891162, 17.681128 ], [ -64.891302, 17.681024 ], [ -64.891336, 17.680992 ], [ -64.891363, 17.680964 ], [ -64.891405, 17.680924 ], [ -64.891481, 17.68085 ], [ -64.891794, 17.680598 ], [ -64.892064, 17.680368 ], [ -64.892218, 17.6802 ], [ -64.89233, 17.680088 ], [ -64.8925, 17.679927 ], [ -64.89263, 17.679808 ], [ -64.892703, 17.679743 ], [ -64.892772, 17.679682 ], [ -64.89287, 17.679597 ], [ -64.892945, 17.67953 ], [ -64.893086, 17.679421 ], [ -64.893263, 17.679302 ], [ -64.893302, 17.67928 ], [ -64.89347, 17.679185 ], [ -64.893515, 17.679157 ], [ -64.893693, 17.679048 ], [ -64.89383, 17.678972 ], [ -64.893874, 17.678948 ], [ -64.894225, 17.678796 ], [ -64.894413, 17.678704 ], [ -64.894503, 17.678651 ], [ -64.894574, 17.67871 ], [ -64.894554, 17.678621 ], [ -64.894566, 17.678614 ], [ -64.894643, 17.678569 ], [ -64.894693, 17.67854 ], [ -64.894793, 17.678491 ], [ -64.894915, 17.678431 ], [ -64.895054, 17.678367 ], [ -64.895136, 17.678333 ], [ -64.895188, 17.678312 ], [ -64.89525, 17.678287 ], [ -64.895385, 17.67823 ], [ -64.895472, 17.678192 ], [ -64.895604, 17.678134 ], [ -64.895706, 17.67808 ], [ -64.895755, 17.678057 ], [ -64.895819, 17.678027 ], [ -64.895951, 17.67795 ], [ -64.895969, 17.677939 ], [ -64.896, 17.677925 ], [ -64.896075, 17.677889 ], [ -64.896138, 17.677858 ], [ -64.896256, 17.6778 ], [ -64.896313, 17.677772 ], [ -64.896361, 17.677748 ], [ -64.896494, 17.677676 ], [ -64.896568, 17.677637 ], [ -64.896586, 17.677627 ], [ -64.896663, 17.677591 ], [ -64.896718, 17.677565 ], [ -64.896766, 17.677543 ], [ -64.896797, 17.677522 ], [ -64.896823, 17.677505 ], [ -64.896897, 17.677456 ], [ -64.89694, 17.677427 ], [ -64.896959, 17.677413 ], [ -64.897025, 17.677363 ], [ -64.897043, 17.67735 ], [ -64.897136, 17.677293 ], [ -64.897213, 17.677245 ], [ -64.897282, 17.6772 ], [ -64.89734, 17.677162 ], [ -64.897373, 17.67714 ], [ -64.897463, 17.677087 ], [ -64.897492, 17.67707 ], [ -64.897519, 17.67705 ], [ -64.897601, 17.676989 ], [ -64.897784, 17.676853 ], [ -64.897834, 17.676811 ], [ -64.897912, 17.676748 ], [ -64.898036, 17.676653 ], [ -64.898111, 17.676596 ], [ -64.898196, 17.676531 ], [ -64.898332, 17.676427 ], [ -64.898387, 17.676383 ], [ -64.898541, 17.67626 ], [ -64.898567, 17.676239 ], [ -64.898614, 17.676205 ], [ -64.898748, 17.676109 ], [ -64.898773, 17.676091 ], [ -64.89878, 17.676085 ], [ -64.898964, 17.675924 ], [ -64.898987, 17.675903 ], [ -64.898999, 17.675891 ], [ -64.899077, 17.675815 ], [ -64.899095, 17.675797 ], [ -64.899119, 17.675775 ], [ -64.899141, 17.675754 ], [ -64.89917, 17.675726 ], [ -64.899201, 17.6757 ], [ -64.899259, 17.675651 ], [ -64.899295, 17.67562 ], [ -64.899306, 17.675608 ], [ -64.899366, 17.675539 ], [ -64.899419, 17.67548 ], [ -64.899455, 17.675442 ], [ -64.899496, 17.675401 ], [ -64.899588, 17.675307 ], [ -64.899609, 17.675285 ], [ -64.899621, 17.67527 ], [ -64.899694, 17.675182 ], [ -64.899712, 17.675159 ], [ -64.899718, 17.675149 ], [ -64.899759, 17.675072 ], [ -64.899785, 17.675024 ], [ -64.899832, 17.674937 ], [ -64.899864, 17.674875 ], [ -64.899892, 17.674818 ], [ -64.899915, 17.674771 ], [ -64.899956, 17.67469 ], [ -64.899982, 17.674644 ], [ -64.900031, 17.674555 ], [ -64.900064, 17.674494 ], [ -64.900083, 17.67446 ], [ -64.900113, 17.674406 ], [ -64.900149, 17.674342 ], [ -64.90017, 17.674306 ], [ -64.900194, 17.674263 ], [ -64.900216, 17.674226 ], [ -64.900229, 17.674206 ], [ -64.90027, 17.674147 ], [ -64.900281, 17.674123 ], [ -64.900326, 17.67403 ], [ -64.900341, 17.674002 ], [ -64.900373, 17.67397 ], [ -64.900449, 17.67394 ], [ -64.900498, 17.673934 ], [ -64.900518, 17.673933 ], [ -64.900543, 17.673931 ], [ -64.900569, 17.673939 ], [ -64.900583, 17.673941 ], [ -64.90068, 17.673968 ], [ -64.900745, 17.673994 ], [ -64.900816, 17.67403 ], [ -64.900867, 17.674069 ], [ -64.900919, 17.67412 ], [ -64.900953, 17.674167 ], [ -64.901037, 17.674301 ], [ -64.901057, 17.674368 ], [ -64.901076, 17.67443 ], [ -64.901132, 17.674538 ], [ -64.901153, 17.674598 ], [ -64.901177, 17.674666 ], [ -64.901187, 17.67469 ], [ -64.901228, 17.674789 ], [ -64.90125, 17.674832 ], [ -64.901301, 17.674934 ], [ -64.901356, 17.675028 ], [ -64.901409, 17.67511 ], [ -64.901446, 17.675164 ], [ -64.901475, 17.675206 ], [ -64.901555, 17.675319 ], [ -64.901589, 17.675356 ], [ -64.901656, 17.675431 ], [ -64.901744, 17.675524 ], [ -64.901775, 17.675562 ], [ -64.901847, 17.675652 ], [ -64.901905, 17.675717 ], [ -64.901982, 17.675804 ], [ -64.902078, 17.675903 ], [ -64.902159, 17.675988 ], [ -64.902277, 17.676145 ], [ -64.902336, 17.676218 ], [ -64.902404, 17.676304 ], [ -64.902446, 17.676361 ], [ -64.902617, 17.676597 ], [ -64.902727, 17.676754 ], [ -64.90281, 17.676878 ], [ -64.902838, 17.67692 ], [ -64.903011, 17.677255 ], [ -64.903064, 17.677359 ], [ -64.903147, 17.677522 ], [ -64.903209, 17.677659 ], [ -64.903268, 17.677788 ], [ -64.903303, 17.677867 ], [ -64.903372, 17.67803 ], [ -64.90339, 17.678072 ], [ -64.903449, 17.678212 ], [ -64.903493, 17.678315 ], [ -64.903521, 17.678382 ], [ -64.903582, 17.678542 ], [ -64.903612, 17.678622 ], [ -64.903622, 17.678646 ], [ -64.903683, 17.678845 ], [ -64.903713, 17.67894 ], [ -64.903741, 17.679037 ], [ -64.903755, 17.679122 ], [ -64.903764, 17.679186 ], [ -64.903774, 17.679247 ], [ -64.903777, 17.679266 ], [ -64.903785, 17.67932 ], [ -64.903794, 17.679381 ], [ -64.903804, 17.679446 ], [ -64.903805, 17.679502 ], [ -64.903806, 17.679529 ], [ -64.903807, 17.679609 ], [ -64.903807, 17.679633 ], [ -64.903808, 17.6797 ], [ -64.903809, 17.679733 ], [ -64.903809, 17.679736 ], [ -64.903808, 17.679739 ], [ -64.903804, 17.679763 ], [ -64.903799, 17.679801 ], [ -64.903789, 17.679864 ], [ -64.903784, 17.679895 ], [ -64.903778, 17.679939 ], [ -64.903777, 17.679945 ], [ -64.903775, 17.679949 ], [ -64.903773, 17.679957 ], [ -64.903752, 17.68002 ], [ -64.903733, 17.68008 ], [ -64.903722, 17.680113 ], [ -64.90372, 17.680116 ], [ -64.903704, 17.680148 ], [ -64.903675, 17.680201 ], [ -64.903636, 17.680275 ], [ -64.903614, 17.680317 ], [ -64.903586, 17.680369 ], [ -64.903579, 17.680384 ], [ -64.903567, 17.680406 ], [ -64.903558, 17.680423 ], [ -64.903553, 17.680428 ], [ -64.903538, 17.680445 ], [ -64.90352, 17.680464 ], [ -64.899138, 17.69021 ], [ -64.893288, 17.703219 ], [ -64.891545, 17.707097 ], [ -64.890047, 17.71043 ], [ -64.889488, 17.711673 ], [ -64.888702, 17.713421 ], [ -64.890311, 17.713312 ], [ -64.89038, 17.71402 ], [ -64.888356, 17.714192 ], [ -64.887519, 17.716052 ], [ -64.886623, 17.718046 ], [ -64.885203, 17.721204 ], [ -64.885193, 17.721329 ], [ -64.885138, 17.721355 ], [ -64.884974, 17.721433 ], [ -64.88492, 17.72146 ], [ -64.88477, 17.72152 ], [ -64.88427, 17.72166 ], [ -64.884051, 17.72173 ], [ -64.88313, 17.72203 ], [ -64.88259, 17.72219 ], [ -64.88186, 17.72243 ], [ -64.881454, 17.722508 ], [ -64.881438, 17.722511 ], [ -64.880556, 17.722735 ], [ -64.88019, 17.722849 ], [ -64.879095, 17.723193 ], [ -64.878894, 17.723257 ], [ -64.878729, 17.723303 ], [ -64.878169, 17.723464 ], [ -64.877455, 17.72367 ], [ -64.876493, 17.723962 ], [ -64.875937, 17.724132 ], [ -64.875667, 17.724215 ], [ -64.874859, 17.724466 ], [ -64.87459, 17.72455 ], [ -64.87428, 17.724673 ], [ -64.873352, 17.725043 ], [ -64.873043, 17.725167 ], [ -64.872527, 17.725336 ], [ -64.870934, 17.725851 ], [ -64.868537, 17.72664 ], [ -64.867809, 17.726886 ], [ -64.867711, 17.72692 ], [ -64.866549, 17.723618 ], [ -64.866393, 17.723159 ], [ -64.866038, 17.72225 ], [ -64.866003, 17.722086 ], [ -64.865884, 17.721702 ], [ -64.865782, 17.721422 ], [ -64.865045, 17.7194 ], [ -64.86488, 17.71883 ], [ -64.864762, 17.71846 ], [ -64.859166, 17.720306 ], [ -64.858224, 17.71763 ], [ -64.858093, 17.717429 ], [ -64.858015, 17.717135 ], [ -64.857522, 17.715571 ], [ -64.857417, 17.715262 ], [ -64.857041, 17.714134 ], [ -64.856905, 17.713655 ], [ -64.85637, 17.712082 ], [ -64.859559, 17.711073 ], [ -64.859671, 17.711042 ], [ -64.861917, 17.710327 ], [ -64.861765, 17.709868 ], [ -64.861522, 17.709029 ], [ -64.86123, 17.70825 ], [ -64.861158, 17.708017 ], [ -64.86109, 17.70784 ], [ -64.86086, 17.70709 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "010", "TRACTCE10": "971500", "GEOID10": "78010971500", "NAME10": "9715", "NAMELSAD10": "Census Tract 9715", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 25440790, "AWATER10": 6674253, "INTPTLAT10": "+17.7106854", "INTPTLON10": "-064.7645941" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.728751, 17.715162 ], [ -64.72863, 17.7152 ], [ -64.725674, 17.716118 ], [ -64.722747, 17.717029 ], [ -64.721278, 17.712435 ], [ -64.720089, 17.708875 ], [ -64.717887, 17.702057 ], [ -64.717406, 17.700558 ], [ -64.717096, 17.699597 ], [ -64.717154, 17.699506 ], [ -64.717211, 17.699423 ], [ -64.717224, 17.699399 ], [ -64.717274, 17.699313 ], [ -64.717303, 17.69923 ], [ -64.717315, 17.699126 ], [ -64.717309, 17.69895 ], [ -64.717297, 17.698883 ], [ -64.7173, 17.698817 ], [ -64.717332, 17.698685 ], [ -64.717378, 17.698586 ], [ -64.717453, 17.698476 ], [ -64.717521, 17.698404 ], [ -64.717574, 17.698362 ], [ -64.740238, 17.687787 ], [ -64.74037, 17.687715 ], [ -64.740416, 17.687706 ], [ -64.740511, 17.687694 ], [ -64.74056, 17.687703 ], [ -64.743199, 17.687111 ], [ -64.749589, 17.685681 ], [ -64.756941, 17.684085 ], [ -64.758579, 17.683729 ], [ -64.759402, 17.683551 ], [ -64.759667, 17.683108 ], [ -64.759927, 17.68286 ], [ -64.760082, 17.68282 ], [ -64.760258, 17.682841 ], [ -64.760538, 17.682676 ], [ -64.76088, 17.682503 ], [ -64.761325, 17.682359 ], [ -64.761542, 17.682412 ], [ -64.761851, 17.682579 ], [ -64.76213, 17.682662 ], [ -64.762378, 17.682663 ], [ -64.762472, 17.682716 ], [ -64.762564, 17.68283 ], [ -64.76276, 17.682851 ], [ -64.763009, 17.682873 ], [ -64.763421, 17.683082 ], [ -64.763503, 17.683144 ], [ -64.763628, 17.683303 ], [ -64.764028, 17.685115 ], [ -64.764071, 17.685527 ], [ -64.764039, 17.685971 ], [ -64.764144, 17.686245 ], [ -64.764282, 17.686382 ], [ -64.764313, 17.686477 ], [ -64.764355, 17.686711 ], [ -64.765622, 17.68902 ], [ -64.765647, 17.689029 ], [ -64.765672, 17.68904 ], [ -64.765729, 17.689085 ], [ -64.76578, 17.689135 ], [ -64.765798, 17.6892 ], [ -64.765806, 17.689234 ], [ -64.765812, 17.689323 ], [ -64.765846, 17.689384 ], [ -64.765869, 17.689424 ], [ -64.765892, 17.689455 ], [ -64.765927, 17.689497 ], [ -64.765955, 17.689541 ], [ -64.766087, 17.689618 ], [ -64.766181, 17.689652 ], [ -64.766263, 17.689681 ], [ -64.766303, 17.689727 ], [ -64.766321, 17.689804 ], [ -64.766363, 17.689813 ], [ -64.766475, 17.689839 ], [ -64.766553, 17.689857 ], [ -64.766627, 17.689887 ], [ -64.766727, 17.689927 ], [ -64.76681, 17.68996 ], [ -64.76712, 17.690061 ], [ -64.767565, 17.69021 ], [ -64.767949, 17.690341 ], [ -64.768324, 17.690477 ], [ -64.768398, 17.690512 ], [ -64.768455, 17.690539 ], [ -64.768563, 17.690586 ], [ -64.768744, 17.69066 ], [ -64.768911, 17.690726 ], [ -64.769099, 17.690797 ], [ -64.769117, 17.690805 ], [ -64.769142, 17.690817 ], [ -64.769191, 17.690841 ], [ -64.769236, 17.690864 ], [ -64.769271, 17.690881 ], [ -64.769285, 17.690882 ], [ -64.769308, 17.690884 ], [ -64.769338, 17.690887 ], [ -64.769366, 17.690899 ], [ -64.769414, 17.690919 ], [ -64.769429, 17.690927 ], [ -64.769444, 17.690938 ], [ -64.769456, 17.69095 ], [ -64.769465, 17.690963 ], [ -64.769475, 17.690983 ], [ -64.769483, 17.690989 ], [ -64.769553, 17.69103 ], [ -64.769639, 17.691081 ], [ -64.769717, 17.691125 ], [ -64.76985, 17.691204 ], [ -64.769951, 17.691246 ], [ -64.770099, 17.691312 ], [ -64.770144, 17.691332 ], [ -64.77021, 17.691352 ], [ -64.770326, 17.691387 ], [ -64.770399, 17.69141 ], [ -64.770532, 17.691451 ], [ -64.770571, 17.691468 ], [ -64.770685, 17.691524 ], [ -64.770789, 17.691569 ], [ -64.770894, 17.691598 ], [ -64.77095, 17.691616 ], [ -64.771065, 17.691647 ], [ -64.771105, 17.691649 ], [ -64.771215, 17.691652 ], [ -64.771272, 17.691652 ], [ -64.771355, 17.691638 ], [ -64.771582, 17.691601 ], [ -64.771684, 17.691611 ], [ -64.780861, 17.69343 ], [ -64.781113, 17.693417 ], [ -64.781234, 17.693413 ], [ -64.787019, 17.694954 ], [ -64.787079, 17.694952 ], [ -64.78711, 17.69499 ], [ -64.787142, 17.694992 ], [ -64.787182, 17.695015 ], [ -64.787218, 17.695096 ], [ -64.78721, 17.69511 ], [ -64.787202, 17.695125 ], [ -64.787206, 17.695151 ], [ -64.787309, 17.695197 ], [ -64.787376, 17.695217 ], [ -64.787399, 17.695242 ], [ -64.78739, 17.695265 ], [ -64.787444, 17.695312 ], [ -64.787531, 17.695349 ], [ -64.787556, 17.695384 ], [ -64.787667, 17.695423 ], [ -64.787724, 17.69543 ], [ -64.787794, 17.695475 ], [ -64.78801, 17.695542 ], [ -64.788049, 17.695599 ], [ -64.788117, 17.6956 ], [ -64.788176, 17.695634 ], [ -64.788285, 17.695649 ], [ -64.788446, 17.695673 ], [ -64.788584, 17.69566 ], [ -64.788729, 17.69574 ], [ -64.788806, 17.695741 ], [ -64.788859, 17.695747 ], [ -64.788909, 17.695729 ], [ -64.788941, 17.695741 ], [ -64.788955, 17.695796 ], [ -64.788998, 17.695814 ], [ -64.78909, 17.695812 ], [ -64.789127, 17.695811 ], [ -64.789158, 17.69581 ], [ -64.789259, 17.695851 ], [ -64.789354, 17.695851 ], [ -64.789417, 17.69583 ], [ -64.789549, 17.69582 ], [ -64.789654, 17.695799 ], [ -64.789807, 17.695793 ], [ -64.789886, 17.695772 ], [ -64.789945, 17.695714 ], [ -64.790103, 17.695709 ], [ -64.790224, 17.695635 ], [ -64.790356, 17.695561 ], [ -64.790519, 17.695508 ], [ -64.790709, 17.695408 ], [ -64.790929, 17.695272 ], [ -64.791195, 17.695124 ], [ -64.791282, 17.695113 ], [ -64.791462, 17.69503 ], [ -64.791633, 17.694924 ], [ -64.791803, 17.694771 ], [ -64.791872, 17.694715 ], [ -64.791985, 17.694625 ], [ -64.792232, 17.694533 ], [ -64.792359, 17.69447 ], [ -64.792733, 17.694208 ], [ -64.793108, 17.693892 ], [ -64.793391, 17.69363 ], [ -64.793502, 17.693573 ], [ -64.793601, 17.693521 ], [ -64.79373, 17.693431 ], [ -64.793814, 17.693377 ], [ -64.793858, 17.693322 ], [ -64.793969, 17.693318 ], [ -64.794043, 17.69334 ], [ -64.794099, 17.693368 ], [ -64.794177, 17.693325 ], [ -64.794248, 17.693306 ], [ -64.794267, 17.693263 ], [ -64.794338, 17.693267 ], [ -64.794369, 17.69322 ], [ -64.794423, 17.693187 ], [ -64.794596, 17.693268 ], [ -64.794608, 17.693286 ], [ -64.794628, 17.693349 ], [ -64.794689, 17.693472 ], [ -64.794826, 17.6935 ], [ -64.794988, 17.693502 ], [ -64.795094, 17.693468 ], [ -64.795155, 17.693468 ], [ -64.795317, 17.693443 ], [ -64.795476, 17.693391 ], [ -64.795573, 17.693345 ], [ -64.795701, 17.693301 ], [ -64.795864, 17.693265 ], [ -64.796077, 17.693263 ], [ -64.796145, 17.69326 ], [ -64.796323, 17.693286 ], [ -64.796799, 17.693354 ], [ -64.796982, 17.69338 ], [ -64.797058, 17.69338 ], [ -64.797264, 17.693367 ], [ -64.797364, 17.693345 ], [ -64.797566, 17.693307 ], [ -64.797873, 17.693227 ], [ -64.798018, 17.693184 ], [ -64.798171, 17.693133 ], [ -64.798363, 17.693118 ], [ -64.798525, 17.693069 ], [ -64.798707, 17.693055 ], [ -64.798837, 17.693063 ], [ -64.80408, 17.692797 ], [ -64.804135, 17.69279 ], [ -64.804183, 17.692758 ], [ -64.80423, 17.692734 ], [ -64.804322, 17.692724 ], [ -64.804401, 17.692724 ], [ -64.804478, 17.692732 ], [ -64.804562, 17.692729 ], [ -64.804631, 17.692726 ], [ -64.804686, 17.69271 ], [ -64.804771, 17.692692 ], [ -64.80481, 17.692684 ], [ -64.804859, 17.692677 ], [ -64.804892, 17.692661 ], [ -64.804926, 17.692644 ], [ -64.804961, 17.692623 ], [ -64.805001, 17.692621 ], [ -64.805045, 17.692623 ], [ -64.805099, 17.692617 ], [ -64.80514, 17.692605 ], [ -64.805153, 17.69258 ], [ -64.805193, 17.69254 ], [ -64.805237, 17.69252 ], [ -64.805267, 17.692487 ], [ -64.805293, 17.69246 ], [ -64.805332, 17.692428 ], [ -64.805375, 17.692412 ], [ -64.805411, 17.692375 ], [ -64.805458, 17.692366 ], [ -64.805496, 17.692359 ], [ -64.805522, 17.692362 ], [ -64.80553, 17.692373 ], [ -64.805562, 17.692381 ], [ -64.805615, 17.692384 ], [ -64.805655, 17.692376 ], [ -64.805713, 17.692358 ], [ -64.805768, 17.692352 ], [ -64.805828, 17.692331 ], [ -64.805928, 17.692289 ], [ -64.806005, 17.692246 ], [ -64.806026, 17.692236 ], [ -64.806163, 17.692225 ], [ -64.806257, 17.692228 ], [ -64.806335, 17.692241 ], [ -64.806411, 17.692254 ], [ -64.806514, 17.692275 ], [ -64.806606, 17.692292 ], [ -64.80671, 17.692308 ], [ -64.806838, 17.692299 ], [ -64.806954, 17.692288 ], [ -64.807065, 17.692273 ], [ -64.807155, 17.692257 ], [ -64.807276, 17.692246 ], [ -64.807366, 17.692209 ], [ -64.807461, 17.692172 ], [ -64.807577, 17.692141 ], [ -64.807677, 17.692093 ], [ -64.807846, 17.692072 ], [ -64.807981, 17.692071 ], [ -64.808082, 17.692048 ], [ -64.808235, 17.692002 ], [ -64.808342, 17.691992 ], [ -64.808464, 17.691946 ], [ -64.80859, 17.691933 ], [ -64.808707, 17.691906 ], [ -64.808827, 17.691888 ], [ -64.808895, 17.691851 ], [ -64.808932, 17.691787 ], [ -64.808943, 17.691724 ], [ -64.808943, 17.691666 ], [ -64.808982, 17.691539 ], [ -64.809097, 17.691513 ], [ -64.80915, 17.691501 ], [ -64.809227, 17.691509 ], [ -64.809261, 17.691476 ], [ -64.809495, 17.691391 ], [ -64.809619, 17.691395 ], [ -64.809743, 17.691352 ], [ -64.809847, 17.691331 ], [ -64.809962, 17.691293 ], [ -64.810081, 17.691248 ], [ -64.810143, 17.691223 ], [ -64.810199, 17.691196 ], [ -64.810328, 17.691175 ], [ -64.810422, 17.691164 ], [ -64.810547, 17.691147 ], [ -64.810622, 17.691141 ], [ -64.810725, 17.691122 ], [ -64.810791, 17.691105 ], [ -64.810854, 17.691081 ], [ -64.81091, 17.691067 ], [ -64.810951, 17.691046 ], [ -64.811014, 17.691021 ], [ -64.811056, 17.690983 ], [ -64.811098, 17.690927 ], [ -64.811101, 17.690872 ], [ -64.811092, 17.690831 ], [ -64.811101, 17.690778 ], [ -64.811105, 17.690711 ], [ -64.811153, 17.690635 ], [ -64.811189, 17.690636 ], [ -64.81119, 17.690633 ], [ -64.811196, 17.690624 ], [ -64.811201, 17.690614 ], [ -64.811215, 17.69059 ], [ -64.81122, 17.690564 ], [ -64.811246, 17.690502 ], [ -64.811277, 17.690461 ], [ -64.811682, 17.690232 ], [ -64.811735, 17.690182 ], [ -64.811806, 17.690131 ], [ -64.811975, 17.690071 ], [ -64.812089, 17.690016 ], [ -64.81222, 17.689953 ], [ -64.812376, 17.689869 ], [ -64.812565, 17.689767 ], [ -64.812706, 17.689735 ], [ -64.812796, 17.689704 ], [ -64.812855, 17.689673 ], [ -64.81291, 17.689641 ], [ -64.812953, 17.689602 ], [ -64.813031, 17.689606 ], [ -64.813138, 17.689579 ], [ -64.813379, 17.689465 ], [ -64.813617, 17.689316 ], [ -64.813679, 17.689273 ], [ -64.813691, 17.689254 ], [ -64.813757, 17.689232 ], [ -64.813814, 17.689201 ], [ -64.813908, 17.689203 ], [ -64.813972, 17.689219 ], [ -64.814054, 17.689271 ], [ -64.814178, 17.689364 ], [ -64.81426, 17.689391 ], [ -64.814317, 17.689397 ], [ -64.814446, 17.689405 ], [ -64.814606, 17.689383 ], [ -64.814692, 17.68936 ], [ -64.814943, 17.689352 ], [ -64.8151, 17.689289 ], [ -64.815248, 17.689226 ], [ -64.815374, 17.689164 ], [ -64.815475, 17.68907 ], [ -64.815585, 17.688984 ], [ -64.815734, 17.68889 ], [ -64.815944, 17.688855 ], [ -64.816094, 17.688874 ], [ -64.816241, 17.688884 ], [ -64.816305, 17.68896 ], [ -64.81646, 17.688998 ], [ -64.816657, 17.689023 ], [ -64.816822, 17.689007 ], [ -64.816978, 17.689007 ], [ -64.817118, 17.688995 ], [ -64.817204, 17.688964 ], [ -64.817309, 17.688927 ], [ -64.817406, 17.688855 ], [ -64.817521, 17.688776 ], [ -64.817769, 17.688686 ], [ -64.817871, 17.688577 ], [ -64.81802, 17.68853 ], [ -64.818146, 17.688472 ], [ -64.818408, 17.688508 ], [ -64.818708, 17.68852 ], [ -64.81892, 17.688527 ], [ -64.819123, 17.688522 ], [ -64.819311, 17.688514 ], [ -64.819538, 17.688506 ], [ -64.819789, 17.68842 ], [ -64.820188, 17.688279 ], [ -64.820392, 17.688107 ], [ -64.82076, 17.687919 ], [ -64.821202, 17.6876 ], [ -64.821717, 17.687177 ], [ -64.822172, 17.686801 ], [ -64.822308, 17.687187 ], [ -64.82232, 17.687221 ], [ -64.822356, 17.687324 ], [ -64.822369, 17.687359 ], [ -64.822929, 17.688843 ], [ -64.824608, 17.693295 ], [ -64.825061, 17.694492 ], [ -64.825134, 17.694688 ], [ -64.82506, 17.694713 ], [ -64.82455, 17.69489 ], [ -64.824496, 17.694902 ], [ -64.824383, 17.69493 ], [ -64.82434, 17.69494 ], [ -64.82416, 17.694997 ], [ -64.82378, 17.69512 ], [ -64.823665, 17.69516 ], [ -64.82355, 17.6952 ], [ -64.823387, 17.695251 ], [ -64.8223, 17.69559 ], [ -64.822238, 17.695609 ], [ -64.823107, 17.698372 ], [ -64.820413, 17.699136 ], [ -64.82079, 17.700338 ], [ -64.810686, 17.703661 ], [ -64.809436, 17.704072 ], [ -64.807924, 17.699614 ], [ -64.805092, 17.700542 ], [ -64.802406, 17.701423 ], [ -64.802262, 17.70147 ], [ -64.799679, 17.70232 ], [ -64.799804, 17.702742 ], [ -64.80047, 17.70473 ], [ -64.80047, 17.7048 ], [ -64.8005, 17.70488 ], [ -64.800517, 17.704936 ], [ -64.799621, 17.705123 ], [ -64.796654, 17.705752 ], [ -64.794713, 17.706214 ], [ -64.791328, 17.707022 ], [ -64.791287, 17.706991 ], [ -64.791522, 17.70764 ], [ -64.791721, 17.70819 ], [ -64.791911, 17.708741 ], [ -64.792299, 17.709789 ], [ -64.793314, 17.712591 ], [ -64.793581, 17.713329 ], [ -64.7936, 17.713382 ], [ -64.79345, 17.71343 ], [ -64.79331, 17.71345 ], [ -64.793229, 17.71345 ], [ -64.79318, 17.71343 ], [ -64.791775, 17.713841 ], [ -64.791198, 17.71401 ], [ -64.788002, 17.714947 ], [ -64.78747, 17.715103 ], [ -64.785152, 17.715782 ], [ -64.783545, 17.710948 ], [ -64.783466, 17.710711 ], [ -64.783415, 17.710791 ], [ -64.78337, 17.71086 ], [ -64.782996, 17.711419 ], [ -64.78257, 17.71206 ], [ -64.78201, 17.71292 ], [ -64.78182, 17.713181 ], [ -64.7818, 17.71321 ], [ -64.781729, 17.713294 ], [ -64.78165, 17.71339 ], [ -64.78147, 17.71356 ], [ -64.78128, 17.71372 ], [ -64.781174, 17.713802 ], [ -64.78106, 17.71389 ], [ -64.780783, 17.714057 ], [ -64.78078, 17.71406 ], [ -64.78059, 17.71416 ], [ -64.78036, 17.71426 ], [ -64.77975, 17.71445 ], [ -64.779467, 17.714535 ], [ -64.779022, 17.71467 ], [ -64.778763, 17.71475 ], [ -64.778312, 17.71489 ], [ -64.77696, 17.715309 ], [ -64.77651, 17.71545 ], [ -64.776362, 17.715492 ], [ -64.775918, 17.715618 ], [ -64.77577, 17.71566 ], [ -64.77582, 17.715816 ], [ -64.77588, 17.715995 ], [ -64.775976, 17.716287 ], [ -64.77599, 17.71633 ], [ -64.776015, 17.716385 ], [ -64.77604, 17.71644 ], [ -64.776084, 17.716586 ], [ -64.776223, 17.717024 ], [ -64.77627, 17.71717 ], [ -64.776366, 17.717456 ], [ -64.776661, 17.718314 ], [ -64.77676, 17.7186 ], [ -64.776548, 17.718654 ], [ -64.77626, 17.71873 ], [ -64.775918, 17.718835 ], [ -64.77571, 17.7189 ], [ -64.775549, 17.71895 ], [ -64.775069, 17.719099 ], [ -64.77491, 17.71915 ], [ -64.77482, 17.719182 ], [ -64.77455, 17.719278 ], [ -64.77446, 17.71931 ], [ -64.774345, 17.719346 ], [ -64.774002, 17.719453 ], [ -64.77389, 17.71949 ], [ -64.773827, 17.71951 ], [ -64.773641, 17.719569 ], [ -64.77358, 17.71959 ], [ -64.77346, 17.719619 ], [ -64.7733, 17.71966 ], [ -64.773106, 17.719722 ], [ -64.77299, 17.71976 ], [ -64.772921, 17.719782 ], [ -64.772717, 17.719847 ], [ -64.77265, 17.71987 ], [ -64.772519, 17.719916 ], [ -64.77226, 17.72001 ], [ -64.772118, 17.720015 ], [ -64.77198, 17.72002 ], [ -64.771805, 17.720128 ], [ -64.77177, 17.72015 ], [ -64.77135, 17.72036 ], [ -64.771251, 17.720397 ], [ -64.77106, 17.72047 ], [ -64.771109, 17.720612 ], [ -64.771259, 17.721038 ], [ -64.77131, 17.72118 ], [ -64.77136, 17.721336 ], [ -64.771508, 17.721804 ], [ -64.77156, 17.72196 ], [ -64.771613, 17.722116 ], [ -64.771775, 17.722584 ], [ -64.77183, 17.72274 ], [ -64.771862, 17.722826 ], [ -64.771958, 17.723084 ], [ -64.77199, 17.72317 ], [ -64.772211, 17.723791 ], [ -64.77222, 17.723815 ], [ -64.77245, 17.72446 ], [ -64.772485, 17.72458 ], [ -64.77252, 17.7247 ], [ -64.772655, 17.72509 ], [ -64.77279, 17.72548 ], [ -64.772846, 17.725664 ], [ -64.77302, 17.72623 ], [ -64.773042, 17.726295 ], [ -64.773115, 17.72651 ], [ -64.773336, 17.727155 ], [ -64.77341, 17.72737 ], [ -64.773455, 17.727504 ], [ -64.773594, 17.727906 ], [ -64.77364, 17.72804 ], [ -64.773675, 17.72814 ], [ -64.773784, 17.72844 ], [ -64.77382, 17.72854 ], [ -64.773624, 17.728597 ], [ -64.773039, 17.72877 ], [ -64.772846, 17.728828 ], [ -64.772698, 17.728871 ], [ -64.772255, 17.729002 ], [ -64.772108, 17.729046 ], [ -64.771728, 17.729157 ], [ -64.77172, 17.72916 ], [ -64.770596, 17.729504 ], [ -64.77022, 17.72962 ], [ -64.770202, 17.729625 ], [ -64.77015, 17.729641 ], [ -64.770133, 17.729647 ], [ -64.770107, 17.729654 ], [ -64.770033, 17.729677 ], [ -64.770009, 17.729685 ], [ -64.76964, 17.729804 ], [ -64.768536, 17.73016 ], [ -64.76817, 17.73028 ], [ -64.767939, 17.730346 ], [ -64.76772, 17.73041 ], [ -64.767249, 17.730557 ], [ -64.76702, 17.73063 ], [ -64.76665, 17.730741 ], [ -64.76563, 17.73105 ], [ -64.765547, 17.731077 ], [ -64.76536, 17.73114 ], [ -64.76573, 17.732256 ], [ -64.768089, 17.739356 ], [ -64.76641, 17.739888 ], [ -64.765403, 17.740209 ], [ -64.765187, 17.740273 ], [ -64.76403, 17.740608 ], [ -64.762283, 17.741117 ], [ -64.762147, 17.740681 ], [ -64.761991, 17.740177 ], [ -64.761955, 17.740061 ], [ -64.761763, 17.739444 ], [ -64.76151, 17.738627 ], [ -64.761495, 17.738579 ], [ -64.760733, 17.736125 ], [ -64.760603, 17.735707 ], [ -64.760228, 17.7345 ], [ -64.75972, 17.732862 ], [ -64.76014, 17.73276 ], [ -64.76079, 17.73256 ], [ -64.760821, 17.732551 ], [ -64.76119, 17.73245 ], [ -64.761369, 17.7324 ], [ -64.761909, 17.732254 ], [ -64.762089, 17.732205 ], [ -64.762107, 17.732199 ], [ -64.762161, 17.732184 ], [ -64.76218, 17.73218 ], [ -64.762198, 17.732167 ], [ -64.76226, 17.732131 ], [ -64.76228, 17.73212 ], [ -64.762324, 17.732103 ], [ -64.762456, 17.732056 ], [ -64.7625, 17.73204 ], [ -64.762451, 17.731819 ], [ -64.762409, 17.731678 ], [ -64.762368, 17.731559 ], [ -64.762209, 17.731141 ], [ -64.76178, 17.73 ], [ -64.761737, 17.729887 ], [ -64.76158, 17.72947 ], [ -64.76093, 17.72764 ], [ -64.76089, 17.72748 ], [ -64.760864, 17.7274 ], [ -64.760793, 17.72716 ], [ -64.76077, 17.72708 ], [ -64.760735, 17.72698 ], [ -64.76063, 17.72668 ], [ -64.760596, 17.72658 ], [ -64.760549, 17.726451 ], [ -64.76055, 17.72645 ], [ -64.76043, 17.72606 ], [ -64.76039, 17.72593 ], [ -64.760374, 17.725894 ], [ -64.760324, 17.725786 ], [ -64.76031, 17.72575 ], [ -64.760197, 17.725404 ], [ -64.76015, 17.72526 ], [ -64.75996, 17.72476 ], [ -64.759833, 17.724375 ], [ -64.75972, 17.72403 ], [ -64.75869, 17.72427 ], [ -64.758571, 17.724299 ], [ -64.75773, 17.72451 ], [ -64.75711, 17.72466 ], [ -64.75652, 17.72483 ], [ -64.75569, 17.72505 ], [ -64.755153, 17.725214 ], [ -64.75504, 17.72525 ], [ -64.75402, 17.72554 ], [ -64.753968, 17.725555 ], [ -64.753708, 17.725634 ], [ -64.75277, 17.725915 ], [ -64.75246, 17.72601 ], [ -64.752401, 17.72603 ], [ -64.752224, 17.726092 ], [ -64.752166, 17.726113 ], [ -64.752138, 17.726122 ], [ -64.752056, 17.72615 ], [ -64.75203, 17.72616 ], [ -64.751294, 17.726378 ], [ -64.75075, 17.72654 ], [ -64.74979, 17.72683 ], [ -64.749731, 17.726848 ], [ -64.749092, 17.727049 ], [ -64.74836, 17.72728 ], [ -64.748063, 17.727365 ], [ -64.747925, 17.727405 ], [ -64.74749, 17.72753 ], [ -64.747355, 17.72757 ], [ -64.74722, 17.72761 ], [ -64.747175, 17.727623 ], [ -64.74705, 17.72766 ], [ -64.74688, 17.72771 ], [ -64.74625, 17.72788 ], [ -64.746221, 17.727888 ], [ -64.74549, 17.7281 ], [ -64.74458, 17.7284 ], [ -64.744519, 17.728418 ], [ -64.744268, 17.728497 ], [ -64.74391, 17.72861 ], [ -64.74362, 17.728707 ], [ -64.743498, 17.728747 ], [ -64.743131, 17.728869 ], [ -64.74301, 17.72891 ], [ -64.742946, 17.72893 ], [ -64.742754, 17.72899 ], [ -64.74269, 17.72901 ], [ -64.742508, 17.729062 ], [ -64.741962, 17.729218 ], [ -64.74178, 17.72927 ], [ -64.741618, 17.72932 ], [ -64.741134, 17.729469 ], [ -64.740973, 17.72952 ], [ -64.740933, 17.729532 ], [ -64.740818, 17.729567 ], [ -64.74078, 17.72958 ], [ -64.740398, 17.729698 ], [ -64.74033, 17.72972 ], [ -64.73946, 17.72998 ], [ -64.739255, 17.730054 ], [ -64.739033, 17.730134 ], [ -64.73888, 17.73019 ], [ -64.738733, 17.73023 ], [ -64.738294, 17.730349 ], [ -64.73815, 17.73039 ], [ -64.737961, 17.730448 ], [ -64.737393, 17.730624 ], [ -64.737206, 17.730683 ], [ -64.73712, 17.73071 ], [ -64.737046, 17.730731 ], [ -64.736939, 17.730762 ], [ -64.736891, 17.730518 ], [ -64.736842, 17.730377 ], [ -64.736763, 17.730141 ], [ -64.736516, 17.729415 ], [ -64.73644, 17.729231 ], [ -64.736329, 17.728901 ], [ -64.736219, 17.728567 ], [ -64.736165, 17.728408 ], [ -64.736136, 17.728324 ], [ -64.736052, 17.728075 ], [ -64.736024, 17.727992 ], [ -64.735986, 17.727883 ], [ -64.735876, 17.727558 ], [ -64.73584, 17.72745 ], [ -64.735788, 17.727302 ], [ -64.735631, 17.726858 ], [ -64.73558, 17.72671 ], [ -64.735527, 17.726599 ], [ -64.73547, 17.72648 ], [ -64.735397, 17.726256 ], [ -64.73536, 17.72614 ], [ -64.735349, 17.726104 ], [ -64.735319, 17.725988 ], [ -64.73522, 17.7256 ], [ -64.735195, 17.725536 ], [ -64.73514, 17.72539 ], [ -64.735102, 17.72527 ], [ -64.734988, 17.724909 ], [ -64.73495, 17.72479 ], [ -64.734911, 17.724697 ], [ -64.734798, 17.724419 ], [ -64.734761, 17.724327 ], [ -64.734737, 17.724267 ], [ -64.734671, 17.724089 ], [ -64.73465, 17.72403 ], [ -64.73462, 17.723939 ], [ -64.734532, 17.723667 ], [ -64.734503, 17.723577 ], [ -64.734436, 17.723372 ], [ -64.734392, 17.723234 ], [ -64.73428, 17.72289 ], [ -64.73424, 17.722756 ], [ -64.73423, 17.72272 ], [ -64.73418, 17.72255 ], [ -64.734111, 17.722346 ], [ -64.734, 17.72202 ], [ -64.733912, 17.721735 ], [ -64.73385, 17.72153 ], [ -64.7338, 17.72135 ], [ -64.733773, 17.721293 ], [ -64.73374, 17.72122 ], [ -64.733526, 17.720587 ], [ -64.73348, 17.72045 ], [ -64.73345, 17.72035 ], [ -64.733384, 17.720166 ], [ -64.733186, 17.719614 ], [ -64.73312, 17.71943 ], [ -64.733059, 17.719246 ], [ -64.732879, 17.718693 ], [ -64.73282, 17.71851 ], [ -64.732755, 17.718322 ], [ -64.732564, 17.717758 ], [ -64.7325, 17.71757 ], [ -64.732476, 17.717491 ], [ -64.732404, 17.717257 ], [ -64.73238, 17.71718 ], [ -64.732326, 17.717028 ], [ -64.732164, 17.716572 ], [ -64.73211, 17.71642 ], [ -64.732063, 17.716282 ], [ -64.731926, 17.715868 ], [ -64.73188, 17.71573 ], [ -64.73182, 17.715551 ], [ -64.731731, 17.715288 ], [ -64.73164, 17.715017 ], [ -64.73158, 17.71484 ], [ -64.731551, 17.714747 ], [ -64.731468, 17.714471 ], [ -64.73144, 17.71438 ], [ -64.731438, 17.714372 ], [ -64.731432, 17.714348 ], [ -64.73143, 17.71434 ], [ -64.731121, 17.714427 ], [ -64.7309, 17.71449 ], [ -64.73026, 17.71469 ], [ -64.730203, 17.714708 ], [ -64.7299, 17.71481 ], [ -64.729749, 17.714857 ], [ -64.72936, 17.71498 ], [ -64.729299, 17.714996 ], [ -64.72915, 17.71504 ], [ -64.729018, 17.71508 ], [ -64.728751, 17.715162 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "010", "TRACTCE10": "971300", "GEOID10": "78010971300", "NAME10": "9713", "NAMELSAD10": "Census Tract 9713", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 9146939, "AWATER10": 107035, "INTPTLAT10": "+17.7013279", "INTPTLON10": "-064.8404074" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.84802, 17.69677 ], [ -64.84837, 17.69667 ], [ -64.84884, 17.69652 ], [ -64.84895, 17.69648 ], [ -64.849043, 17.696452 ], [ -64.849323, 17.696369 ], [ -64.849374, 17.69635 ], [ -64.849945, 17.69613 ], [ -64.850849, 17.69584 ], [ -64.852736, 17.701392 ], [ -64.852985, 17.702127 ], [ -64.853223, 17.702827 ], [ -64.853601, 17.703938 ], [ -64.853633, 17.70405 ], [ -64.85412, 17.70538 ], [ -64.854209, 17.705759 ], [ -64.854298, 17.705921 ], [ -64.85441, 17.706123 ], [ -64.854612, 17.706774 ], [ -64.85637, 17.712082 ], [ -64.856905, 17.713655 ], [ -64.857041, 17.714134 ], [ -64.857417, 17.715262 ], [ -64.857522, 17.715571 ], [ -64.858015, 17.717135 ], [ -64.858093, 17.717429 ], [ -64.858224, 17.71763 ], [ -64.859166, 17.720306 ], [ -64.857186, 17.72096 ], [ -64.8557, 17.721451 ], [ -64.855073, 17.721659 ], [ -64.854591, 17.721818 ], [ -64.853362, 17.722225 ], [ -64.852106, 17.722639 ], [ -64.850651, 17.72312 ], [ -64.850267, 17.723248 ], [ -64.84942, 17.723527 ], [ -64.8491, 17.723633 ], [ -64.848929, 17.72369 ], [ -64.847593, 17.724132 ], [ -64.847506, 17.723888 ], [ -64.847397, 17.723579 ], [ -64.846426, 17.723911 ], [ -64.844047, 17.724724 ], [ -64.842529, 17.725244 ], [ -64.841885, 17.725465 ], [ -64.841475, 17.724253 ], [ -64.839185, 17.717548 ], [ -64.839124, 17.717398 ], [ -64.838862, 17.716571 ], [ -64.838787, 17.716433 ], [ -64.83877, 17.71635 ], [ -64.838747, 17.71629 ], [ -64.838673, 17.716191 ], [ -64.838651, 17.71608 ], [ -64.83865, 17.716064 ], [ -64.838615, 17.715904 ], [ -64.838569, 17.715767 ], [ -64.838512, 17.715635 ], [ -64.838511, 17.715634 ], [ -64.838195, 17.714669 ], [ -64.836372, 17.709354 ], [ -64.836034, 17.708424 ], [ -64.835575, 17.70703 ], [ -64.83545, 17.706706 ], [ -64.835008, 17.705351 ], [ -64.834784, 17.704586 ], [ -64.83452, 17.703738 ], [ -64.834318, 17.703132 ], [ -64.834211, 17.702826 ], [ -64.833801, 17.701639 ], [ -64.833647, 17.701185 ], [ -64.833596, 17.701198 ], [ -64.833445, 17.701239 ], [ -64.833396, 17.701254 ], [ -64.833108, 17.701331 ], [ -64.83308, 17.70134 ], [ -64.83242, 17.70155 ], [ -64.832261, 17.701604 ], [ -64.83198, 17.7017 ], [ -64.831847, 17.701741 ], [ -64.831453, 17.701866 ], [ -64.831323, 17.701908 ], [ -64.83097, 17.70202 ], [ -64.830713, 17.702098 ], [ -64.83002, 17.70231 ], [ -64.82903, 17.70259 ], [ -64.828875, 17.702632 ], [ -64.82826, 17.702801 ], [ -64.82818, 17.702822 ], [ -64.827939, 17.702888 ], [ -64.82786, 17.70291 ], [ -64.82785, 17.702881 ], [ -64.827698, 17.70243 ], [ -64.82745, 17.70169 ], [ -64.827242, 17.701082 ], [ -64.827089, 17.700633 ], [ -64.82705, 17.70052 ], [ -64.82691, 17.700092 ], [ -64.82656, 17.69902 ], [ -64.826375, 17.69847 ], [ -64.82628, 17.69818 ], [ -64.8262, 17.69793 ], [ -64.82616, 17.6978 ], [ -64.826137, 17.697732 ], [ -64.82611, 17.69765 ], [ -64.82603, 17.69743 ], [ -64.82593, 17.697145 ], [ -64.825862, 17.69695 ], [ -64.825313, 17.695316 ], [ -64.825312, 17.695315 ], [ -64.825134, 17.694688 ], [ -64.825061, 17.694492 ], [ -64.824608, 17.693295 ], [ -64.822929, 17.688843 ], [ -64.822369, 17.687359 ], [ -64.822356, 17.687324 ], [ -64.82232, 17.687221 ], [ -64.822308, 17.687187 ], [ -64.822172, 17.686801 ], [ -64.822202, 17.686736 ], [ -64.82225, 17.686677 ], [ -64.822289, 17.686583 ], [ -64.822182, 17.686453 ], [ -64.822145, 17.686359 ], [ -64.822162, 17.686316 ], [ -64.822182, 17.686264 ], [ -64.822132, 17.686215 ], [ -64.822115, 17.686202 ], [ -64.822107, 17.686172 ], [ -64.822154, 17.686161 ], [ -64.822189, 17.686157 ], [ -64.822235, 17.686195 ], [ -64.822263, 17.686196 ], [ -64.822276, 17.686127 ], [ -64.822342, 17.686136 ], [ -64.822384, 17.686131 ], [ -64.822442, 17.686084 ], [ -64.822515, 17.686086 ], [ -64.822554, 17.68605 ], [ -64.830185, 17.683577 ], [ -64.830253, 17.683528 ], [ -64.830333, 17.683478 ], [ -64.830456, 17.683432 ], [ -64.830472, 17.683386 ], [ -64.830551, 17.683342 ], [ -64.830647, 17.683244 ], [ -64.830769, 17.683231 ], [ -64.830841, 17.683197 ], [ -64.830926, 17.683197 ], [ -64.830957, 17.683179 ], [ -64.831102, 17.683116 ], [ -64.831192, 17.683105 ], [ -64.83123, 17.683071 ], [ -64.831299, 17.68306 ], [ -64.83145, 17.682997 ], [ -64.831611, 17.683006 ], [ -64.831702, 17.682921 ], [ -64.83176, 17.682892 ], [ -64.831789, 17.682828 ], [ -64.831867, 17.682829 ], [ -64.831963, 17.682779 ], [ -64.832079, 17.682737 ], [ -64.832161, 17.682657 ], [ -64.832249, 17.682623 ], [ -64.832336, 17.682575 ], [ -64.832397, 17.682562 ], [ -64.832451, 17.682526 ], [ -64.832569, 17.682479 ], [ -64.832585, 17.68247 ], [ -64.832617, 17.682443 ], [ -64.832688, 17.682415 ], [ -64.832779, 17.682362 ], [ -64.832939, 17.68232 ], [ -64.832954, 17.68231 ], [ -64.83297, 17.682308 ], [ -64.832993, 17.682308 ], [ -64.833008, 17.682304 ], [ -64.833023, 17.682295 ], [ -64.833031, 17.68228 ], [ -64.833031, 17.682257 ], [ -64.833008, 17.682209 ], [ -64.833008, 17.682194 ], [ -64.833046, 17.682163 ], [ -64.833054, 17.682148 ], [ -64.833061, 17.682121 ], [ -64.833046, 17.682096 ], [ -64.833023, 17.682079 ], [ -64.833023, 17.682055 ], [ -64.833038, 17.682034 ], [ -64.833052, 17.682025 ], [ -64.833069, 17.68202 ], [ -64.833092, 17.682022 ], [ -64.833099, 17.682034 ], [ -64.833113, 17.682041 ], [ -64.833131, 17.682038 ], [ -64.833153, 17.682034 ], [ -64.833183, 17.682055 ], [ -64.833221, 17.682117 ], [ -64.833252, 17.682129 ], [ -64.833282, 17.682129 ], [ -64.833296, 17.682127 ], [ -64.833316, 17.682125 ], [ -64.833332, 17.682121 ], [ -64.833344, 17.682116 ], [ -64.833351, 17.682104 ], [ -64.833365, 17.682106 ], [ -64.833382, 17.682101 ], [ -64.833394, 17.68209 ], [ -64.833405, 17.682074 ], [ -64.833458, 17.68206 ], [ -64.833473, 17.682062 ], [ -64.833504, 17.682043 ], [ -64.833557, 17.682045 ], [ -64.833572, 17.682035 ], [ -64.833588, 17.682032 ], [ -64.833614, 17.682031 ], [ -64.833641, 17.68203 ], [ -64.833672, 17.682034 ], [ -64.833693, 17.682039 ], [ -64.83371, 17.682055 ], [ -64.833725, 17.682062 ], [ -64.833733, 17.682089 ], [ -64.833733, 17.682129 ], [ -64.83374, 17.682152 ], [ -64.833748, 17.682167 ], [ -64.833755, 17.682178 ], [ -64.833748, 17.682199 ], [ -64.833747, 17.6822 ], [ -64.833733, 17.682213 ], [ -64.833725, 17.682228 ], [ -64.833725, 17.682293 ], [ -64.83371, 17.682335 ], [ -64.83371, 17.682373 ], [ -64.833717, 17.68238 ], [ -64.833735, 17.682407 ], [ -64.833747, 17.682434 ], [ -64.833748, 17.682467 ], [ -64.833771, 17.682501 ], [ -64.83383, 17.682528 ], [ -64.833934, 17.68255 ], [ -64.834017, 17.682556 ], [ -64.834164, 17.682559 ], [ -64.834241, 17.682565 ], [ -64.834348, 17.682561 ], [ -64.8344, 17.682546 ], [ -64.834727, 17.682492 ], [ -64.834776, 17.682471 ], [ -64.834823, 17.682451 ], [ -64.834872, 17.682436 ], [ -64.834938, 17.682396 ], [ -64.834976, 17.682381 ], [ -64.835046, 17.682351 ], [ -64.835136, 17.682316 ], [ -64.83519, 17.682302 ], [ -64.835266, 17.682261 ], [ -64.835581, 17.68203 ], [ -64.835625, 17.681963 ], [ -64.835732, 17.68186 ], [ -64.835754, 17.681801 ], [ -64.835818, 17.681749 ], [ -64.835936, 17.681596 ], [ -64.836044, 17.681524 ], [ -64.836207, 17.681435 ], [ -64.836291, 17.681403 ], [ -64.836372, 17.681315 ], [ -64.836401, 17.681257 ], [ -64.836449, 17.681192 ], [ -64.836464, 17.681149 ], [ -64.83651, 17.681114 ], [ -64.836563, 17.681044 ], [ -64.836617, 17.680994 ], [ -64.83663, 17.680947 ], [ -64.836647, 17.680862 ], [ -64.836693, 17.680794 ], [ -64.836731, 17.680769 ], [ -64.83683, 17.680742 ], [ -64.836845, 17.680717 ], [ -64.836861, 17.680676 ], [ -64.836876, 17.680655 ], [ -64.836967, 17.680622 ], [ -64.837082, 17.68055 ], [ -64.837112, 17.680519 ], [ -64.837151, 17.68046 ], [ -64.837196, 17.680445 ], [ -64.837227, 17.680445 ], [ -64.837273, 17.680418 ], [ -64.837311, 17.680372 ], [ -64.837379, 17.68034 ], [ -64.837399, 17.680286 ], [ -64.837401, 17.680232 ], [ -64.837459, 17.680234 ], [ -64.837539, 17.680286 ], [ -64.837586, 17.680251 ], [ -64.837668, 17.680219 ], [ -64.837791, 17.680199 ], [ -64.837964, 17.680148 ], [ -64.838041, 17.680107 ], [ -64.838043, 17.680068 ], [ -64.838052, 17.680002 ], [ -64.838106, 17.679985 ], [ -64.838158, 17.679995 ], [ -64.838211, 17.680016 ], [ -64.838272, 17.68 ], [ -64.838333, 17.680002 ], [ -64.838379, 17.67996 ], [ -64.83844, 17.679976 ], [ -64.838501, 17.679976 ], [ -64.838652, 17.679914 ], [ -64.83872, 17.679875 ], [ -64.838783, 17.679859 ], [ -64.838821, 17.67984 ], [ -64.838867, 17.679838 ], [ -64.838928, 17.679806 ], [ -64.838951, 17.67979 ], [ -64.838974, 17.679783 ], [ -64.839035, 17.679754 ], [ -64.839058, 17.679749 ], [ -64.839081, 17.679764 ], [ -64.839106, 17.679768 ], [ -64.839208, 17.679768 ], [ -64.839193, 17.679808 ], [ -64.839144, 17.679848 ], [ -64.83912, 17.6799 ], [ -64.839113, 17.679968 ], [ -64.839136, 17.680016 ], [ -64.839136, 17.680073 ], [ -64.839144, 17.680138 ], [ -64.839151, 17.680159 ], [ -64.839205, 17.680244 ], [ -64.839212, 17.680351 ], [ -64.83922, 17.680376 ], [ -64.83927, 17.680422 ], [ -64.839289, 17.680485 ], [ -64.839304, 17.680616 ], [ -64.839357, 17.680696 ], [ -64.839441, 17.680759 ], [ -64.839502, 17.680916 ], [ -64.83951, 17.680977 ], [ -64.83954, 17.681036 ], [ -64.839556, 17.681049 ], [ -64.839556, 17.681072 ], [ -64.839571, 17.681097 ], [ -64.839571, 17.681149 ], [ -64.83952, 17.681302 ], [ -64.839511, 17.681384 ], [ -64.839492, 17.681549 ], [ -64.839487, 17.681566 ], [ -64.839464, 17.681593 ], [ -64.839426, 17.681614 ], [ -64.839411, 17.681631 ], [ -64.839418, 17.681683 ], [ -64.839407, 17.681719 ], [ -64.839388, 17.681789 ], [ -64.839418, 17.681847 ], [ -64.839401, 17.681905 ], [ -64.839252, 17.682203 ], [ -64.839162, 17.682326 ], [ -64.839068, 17.682354 ], [ -64.839001, 17.682389 ], [ -64.83899, 17.682444 ], [ -64.838958, 17.682487 ], [ -64.838896, 17.682503 ], [ -64.838864, 17.682554 ], [ -64.838864, 17.682659 ], [ -64.838923, 17.682781 ], [ -64.839029, 17.683032 ], [ -64.839268, 17.683729 ], [ -64.839315, 17.683835 ], [ -64.839373, 17.683901 ], [ -64.839385, 17.683944 ], [ -64.839366, 17.684003 ], [ -64.839456, 17.68423 ], [ -64.839491, 17.684344 ], [ -64.839509, 17.684471 ], [ -64.83953, 17.684548 ], [ -64.839588, 17.684642 ], [ -64.839659, 17.684724 ], [ -64.839753, 17.68481 ], [ -64.839836, 17.684853 ], [ -64.839887, 17.684885 ], [ -64.839934, 17.684924 ], [ -64.840126, 17.68501 ], [ -64.840157, 17.685069 ], [ -64.8402, 17.6851 ], [ -64.84029, 17.68512 ], [ -64.840369, 17.685151 ], [ -64.840423, 17.685214 ], [ -64.840451, 17.685265 ], [ -64.840478, 17.685308 ], [ -64.84051, 17.68537 ], [ -64.840557, 17.685421 ], [ -64.840588, 17.68546 ], [ -64.840584, 17.685511 ], [ -64.840639, 17.68559 ], [ -64.840643, 17.685649 ], [ -64.840661, 17.68569 ], [ -64.840682, 17.685746 ], [ -64.84069, 17.685821 ], [ -64.840686, 17.685876 ], [ -64.840662, 17.685935 ], [ -64.840682, 17.685982 ], [ -64.840737, 17.686027 ], [ -64.84087, 17.686134 ], [ -64.840937, 17.686158 ], [ -64.841019, 17.686166 ], [ -64.841096, 17.686209 ], [ -64.841163, 17.686263 ], [ -64.841248, 17.686299 ], [ -64.841332, 17.686334 ], [ -64.841531, 17.686477 ], [ -64.842457, 17.689367 ], [ -64.84249, 17.68947 ], [ -64.842577, 17.689696 ], [ -64.84259, 17.68973 ], [ -64.84276, 17.69028 ], [ -64.842856, 17.690616 ], [ -64.84287, 17.69066 ], [ -64.842915, 17.69079 ], [ -64.84296, 17.69092 ], [ -64.843044, 17.691191 ], [ -64.84309, 17.69134 ], [ -64.843307, 17.692002 ], [ -64.843397, 17.692272 ], [ -64.843447, 17.692425 ], [ -64.843598, 17.692884 ], [ -64.84361, 17.69292 ], [ -64.84364, 17.69304 ], [ -64.843676, 17.693145 ], [ -64.84373, 17.6933 ], [ -64.843778, 17.693463 ], [ -64.84381, 17.69357 ], [ -64.84385, 17.6937 ], [ -64.84389, 17.69383 ], [ -64.843895, 17.693846 ], [ -64.84408, 17.69446 ], [ -64.844155, 17.694676 ], [ -64.84425, 17.69495 ], [ -64.844313, 17.695146 ], [ -64.84446, 17.6956 ], [ -64.844509, 17.695735 ], [ -64.84458, 17.69593 ], [ -64.844617, 17.696054 ], [ -64.844729, 17.696426 ], [ -64.844767, 17.696551 ], [ -64.844832, 17.696767 ], [ -64.84486, 17.69686 ], [ -64.845054, 17.697407 ], [ -64.84513, 17.69762 ], [ -64.84668, 17.69718 ], [ -64.84696, 17.6971 ], [ -64.847577, 17.696907 ], [ -64.84802, 17.69677 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "010", "TRACTCE10": "971200", "GEOID10": "78010971200", "NAME10": "9712", "NAMELSAD10": "Census Tract 9712", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 6320168, "AWATER10": 602927, "INTPTLAT10": "+17.6933893", "INTPTLON10": "-064.8597772" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.849043, 17.696452 ], [ -64.84895, 17.69648 ], [ -64.84884, 17.69652 ], [ -64.84837, 17.69667 ], [ -64.84802, 17.69677 ], [ -64.847577, 17.696907 ], [ -64.84696, 17.6971 ], [ -64.84668, 17.69718 ], [ -64.84513, 17.69762 ], [ -64.845054, 17.697407 ], [ -64.84486, 17.69686 ], [ -64.844832, 17.696767 ], [ -64.844767, 17.696551 ], [ -64.844729, 17.696426 ], [ -64.844617, 17.696054 ], [ -64.84458, 17.69593 ], [ -64.844509, 17.695735 ], [ -64.84446, 17.6956 ], [ -64.844313, 17.695146 ], [ -64.84425, 17.69495 ], [ -64.844155, 17.694676 ], [ -64.84408, 17.69446 ], [ -64.843895, 17.693846 ], [ -64.84389, 17.69383 ], [ -64.84385, 17.6937 ], [ -64.84381, 17.69357 ], [ -64.843778, 17.693463 ], [ -64.84373, 17.6933 ], [ -64.843676, 17.693145 ], [ -64.84364, 17.69304 ], [ -64.84361, 17.69292 ], [ -64.843598, 17.692884 ], [ -64.843447, 17.692425 ], [ -64.843397, 17.692272 ], [ -64.843307, 17.692002 ], [ -64.84309, 17.69134 ], [ -64.843044, 17.691191 ], [ -64.84296, 17.69092 ], [ -64.842915, 17.69079 ], [ -64.84287, 17.69066 ], [ -64.842856, 17.690616 ], [ -64.84276, 17.69028 ], [ -64.84259, 17.68973 ], [ -64.842577, 17.689696 ], [ -64.84249, 17.68947 ], [ -64.842457, 17.689367 ], [ -64.841531, 17.686477 ], [ -64.841332, 17.686334 ], [ -64.841248, 17.686299 ], [ -64.841163, 17.686263 ], [ -64.841096, 17.686209 ], [ -64.841019, 17.686166 ], [ -64.840937, 17.686158 ], [ -64.84087, 17.686134 ], [ -64.840737, 17.686027 ], [ -64.840682, 17.685982 ], [ -64.840662, 17.685935 ], [ -64.840686, 17.685876 ], [ -64.84069, 17.685821 ], [ -64.840682, 17.685746 ], [ -64.840661, 17.68569 ], [ -64.840643, 17.685649 ], [ -64.840639, 17.68559 ], [ -64.840584, 17.685511 ], [ -64.840588, 17.68546 ], [ -64.840557, 17.685421 ], [ -64.84051, 17.68537 ], [ -64.840478, 17.685308 ], [ -64.840451, 17.685265 ], [ -64.840423, 17.685214 ], [ -64.840369, 17.685151 ], [ -64.84029, 17.68512 ], [ -64.8402, 17.6851 ], [ -64.840157, 17.685069 ], [ -64.840126, 17.68501 ], [ -64.839934, 17.684924 ], [ -64.839887, 17.684885 ], [ -64.839836, 17.684853 ], [ -64.839753, 17.68481 ], [ -64.839659, 17.684724 ], [ -64.839588, 17.684642 ], [ -64.83953, 17.684548 ], [ -64.839509, 17.684471 ], [ -64.839491, 17.684344 ], [ -64.839456, 17.68423 ], [ -64.839366, 17.684003 ], [ -64.839385, 17.683944 ], [ -64.839373, 17.683901 ], [ -64.839315, 17.683835 ], [ -64.839268, 17.683729 ], [ -64.839029, 17.683032 ], [ -64.838923, 17.682781 ], [ -64.838864, 17.682659 ], [ -64.838864, 17.682554 ], [ -64.838896, 17.682503 ], [ -64.838958, 17.682487 ], [ -64.83899, 17.682444 ], [ -64.839001, 17.682389 ], [ -64.839068, 17.682354 ], [ -64.839162, 17.682326 ], [ -64.839252, 17.682203 ], [ -64.839401, 17.681905 ], [ -64.839418, 17.681847 ], [ -64.839388, 17.681789 ], [ -64.839407, 17.681719 ], [ -64.839418, 17.681683 ], [ -64.839411, 17.681631 ], [ -64.839426, 17.681614 ], [ -64.839464, 17.681593 ], [ -64.839487, 17.681566 ], [ -64.839492, 17.681549 ], [ -64.839511, 17.681384 ], [ -64.83952, 17.681302 ], [ -64.839571, 17.681149 ], [ -64.839571, 17.681097 ], [ -64.839556, 17.681072 ], [ -64.839556, 17.681049 ], [ -64.83954, 17.681036 ], [ -64.83951, 17.680977 ], [ -64.839502, 17.680916 ], [ -64.839441, 17.680759 ], [ -64.839357, 17.680696 ], [ -64.839304, 17.680616 ], [ -64.839289, 17.680485 ], [ -64.83927, 17.680422 ], [ -64.83922, 17.680376 ], [ -64.839212, 17.680351 ], [ -64.839205, 17.680244 ], [ -64.839151, 17.680159 ], [ -64.839144, 17.680138 ], [ -64.839136, 17.680073 ], [ -64.839136, 17.680016 ], [ -64.839113, 17.679968 ], [ -64.83912, 17.6799 ], [ -64.839144, 17.679848 ], [ -64.839193, 17.679808 ], [ -64.839208, 17.679768 ], [ -64.851665, 17.685676 ], [ -64.853965, 17.686767 ], [ -64.854216, 17.686729 ], [ -64.854619, 17.68666 ], [ -64.854759, 17.686643 ], [ -64.854894, 17.686614 ], [ -64.855002, 17.686586 ], [ -64.855138, 17.686545 ], [ -64.855357, 17.686489 ], [ -64.855678, 17.686401 ], [ -64.855712, 17.686378 ], [ -64.855728, 17.686373 ], [ -64.855959, 17.686293 ], [ -64.856127, 17.686193 ], [ -64.85615, 17.686169 ], [ -64.85618, 17.6861 ], [ -64.856233, 17.686046 ], [ -64.856262, 17.686017 ], [ -64.856279, 17.686005 ], [ -64.856307, 17.685984 ], [ -64.85633, 17.685947 ], [ -64.856355, 17.685923 ], [ -64.856414, 17.685879 ], [ -64.856447, 17.685854 ], [ -64.856486, 17.685841 ], [ -64.856539, 17.68582 ], [ -64.856546, 17.685805 ], [ -64.856569, 17.685776 ], [ -64.856623, 17.685755 ], [ -64.856662, 17.685753 ], [ -64.856716, 17.685767 ], [ -64.85677, 17.685763 ], [ -64.856819, 17.685756 ], [ -64.856852, 17.685736 ], [ -64.85689, 17.685715 ], [ -64.85692, 17.685736 ], [ -64.856958, 17.68574 ], [ -64.856996, 17.685724 ], [ -64.857042, 17.685713 ], [ -64.857097, 17.685714 ], [ -64.857134, 17.685724 ], [ -64.857164, 17.68573 ], [ -64.857214, 17.685753 ], [ -64.857225, 17.685751 ], [ -64.857256, 17.68572 ], [ -64.857286, 17.685709 ], [ -64.857514, 17.685713 ], [ -64.85768, 17.685685 ], [ -64.857698, 17.685637 ], [ -64.857737, 17.685625 ], [ -64.857767, 17.685635 ], [ -64.857798, 17.685664 ], [ -64.857852, 17.685764 ], [ -64.85797, 17.685849 ], [ -64.858124, 17.685903 ], [ -64.858208, 17.685932 ], [ -64.858362, 17.68597 ], [ -64.858606, 17.68597 ], [ -64.858795, 17.685946 ], [ -64.858947, 17.685902 ], [ -64.859032, 17.685879 ], [ -64.859604, 17.685682 ], [ -64.859667, 17.685642 ], [ -64.859687, 17.685639 ], [ -64.859697, 17.685625 ], [ -64.859705, 17.685604 ], [ -64.859678, 17.685571 ], [ -64.859667, 17.685564 ], [ -64.859667, 17.685547 ], [ -64.859728, 17.685505 ], [ -64.859774, 17.685537 ], [ -64.859812, 17.685513 ], [ -64.85985, 17.685484 ], [ -64.859888, 17.685446 ], [ -64.859909, 17.685403 ], [ -64.859945, 17.685379 ], [ -64.859957, 17.685379 ], [ -64.85998, 17.685387 ], [ -64.859995, 17.685404 ], [ -64.86001, 17.68541 ], [ -64.860025, 17.685406 ], [ -64.860033, 17.685394 ], [ -64.860037, 17.685374 ], [ -64.860045, 17.685352 ], [ -64.860061, 17.685339 ], [ -64.860094, 17.685333 ], [ -64.860129, 17.685338 ], [ -64.860152, 17.685356 ], [ -64.860155, 17.685379 ], [ -64.86017, 17.68539 ], [ -64.860199, 17.68539 ], [ -64.860224, 17.685383 ], [ -64.860247, 17.685356 ], [ -64.860267, 17.685346 ], [ -64.860285, 17.685346 ], [ -64.860315, 17.685354 ], [ -64.860331, 17.685364 ], [ -64.860361, 17.685368 ], [ -64.860384, 17.685362 ], [ -64.860407, 17.68536 ], [ -64.860567, 17.685274 ], [ -64.860598, 17.68527 ], [ -64.860628, 17.68528 ], [ -64.860628, 17.685339 ], [ -64.860651, 17.685373 ], [ -64.860689, 17.685393 ], [ -64.860738, 17.685401 ], [ -64.861017, 17.685442 ], [ -64.861162, 17.68548 ], [ -64.861215, 17.6855 ], [ -64.861293, 17.685529 ], [ -64.861315, 17.685562 ], [ -64.861315, 17.685595 ], [ -64.861322, 17.685606 ], [ -64.861371, 17.685653 ], [ -64.861414, 17.685694 ], [ -64.861468, 17.685695 ], [ -64.861564, 17.685723 ], [ -64.861633, 17.685732 ], [ -64.861851, 17.685729 ], [ -64.861943, 17.685725 ], [ -64.862286, 17.685667 ], [ -64.862574, 17.685589 ], [ -64.862703, 17.685522 ], [ -64.862788, 17.685466 ], [ -64.862841, 17.685381 ], [ -64.862871, 17.685352 ], [ -64.862894, 17.685354 ], [ -64.862909, 17.685364 ], [ -64.862925, 17.685379 ], [ -64.86294, 17.685387 ], [ -64.862978, 17.685389 ], [ -64.863008, 17.685396 ], [ -64.863138, 17.685514 ], [ -64.863184, 17.685551 ], [ -64.86323, 17.68561 ], [ -64.86352, 17.685907 ], [ -64.863726, 17.686043 ], [ -64.863871, 17.686111 ], [ -64.863977, 17.686148 ], [ -64.864168, 17.686193 ], [ -64.864219, 17.68619 ], [ -64.864412, 17.68622 ], [ -64.864527, 17.686277 ], [ -64.864649, 17.686304 ], [ -64.864786, 17.686298 ], [ -64.865032, 17.686249 ], [ -64.865258, 17.686234 ], [ -64.865351, 17.68623 ], [ -64.86543, 17.686213 ], [ -64.865513, 17.686192 ], [ -64.865625, 17.686144 ], [ -64.865671, 17.686148 ], [ -64.865717, 17.68618 ], [ -64.865801, 17.686201 ], [ -64.865854, 17.686199 ], [ -64.865976, 17.686153 ], [ -64.866014, 17.686169 ], [ -64.866053, 17.686243 ], [ -64.866075, 17.686258 ], [ -64.866144, 17.686272 ], [ -64.86616, 17.686281 ], [ -64.866312, 17.686369 ], [ -64.866342, 17.686399 ], [ -64.866365, 17.686409 ], [ -64.86642, 17.686433 ], [ -64.866508, 17.686445 ], [ -64.866577, 17.68648 ], [ -64.866686, 17.686508 ], [ -64.866887, 17.686514 ], [ -64.866984, 17.686505 ], [ -64.86718, 17.686487 ], [ -64.867239, 17.68647 ], [ -64.867374, 17.68643 ], [ -64.867572, 17.68633 ], [ -64.867636, 17.686297 ], [ -64.867657, 17.686292 ], [ -64.867746, 17.686272 ], [ -64.867868, 17.686329 ], [ -64.867934, 17.686334 ], [ -64.868018, 17.686375 ], [ -64.868059, 17.686378 ], [ -64.868105, 17.686367 ], [ -64.868181, 17.686378 ], [ -64.868212, 17.686367 ], [ -64.86835, 17.686365 ], [ -64.868492, 17.686356 ], [ -64.868528, 17.686349 ], [ -64.868574, 17.686339 ], [ -64.868708, 17.686322 ], [ -64.868765, 17.686326 ], [ -64.868852, 17.686324 ], [ -64.868897, 17.686296 ], [ -64.86901, 17.686287 ], [ -64.869252, 17.686203 ], [ -64.869305, 17.686169 ], [ -64.869364, 17.686134 ], [ -64.869473, 17.686074 ], [ -64.869755, 17.685964 ], [ -64.870092, 17.685809 ], [ -64.870222, 17.685739 ], [ -64.8705, 17.685614 ], [ -64.870569, 17.685589 ], [ -64.870691, 17.685528 ], [ -64.870738, 17.685483 ], [ -64.87079, 17.685432 ], [ -64.870908, 17.685368 ], [ -64.871019, 17.685343 ], [ -64.871073, 17.685344 ], [ -64.871129, 17.685358 ], [ -64.871157, 17.685352 ], [ -64.871157, 17.685331 ], [ -64.871164, 17.685318 ], [ -64.871164, 17.685303 ], [ -64.87118, 17.685303 ], [ -64.871264, 17.685299 ], [ -64.871389, 17.685282 ], [ -64.871447, 17.685266 ], [ -64.871475, 17.685234 ], [ -64.871494, 17.685218 ], [ -64.871537, 17.685204 ], [ -64.871598, 17.685222 ], [ -64.871673, 17.68526 ], [ -64.871699, 17.685333 ], [ -64.871705, 17.685374 ], [ -64.871757, 17.685439 ], [ -64.87181, 17.68545 ], [ -64.871836, 17.685461 ], [ -64.87187, 17.68547 ], [ -64.871928, 17.685505 ], [ -64.871967, 17.685485 ], [ -64.872009, 17.685443 ], [ -64.872041, 17.685468 ], [ -64.872048, 17.685528 ], [ -64.872148, 17.685585 ], [ -64.872197, 17.685582 ], [ -64.872209, 17.685607 ], [ -64.872242, 17.685677 ], [ -64.872296, 17.685723 ], [ -64.872356, 17.685769 ], [ -64.872494, 17.685808 ], [ -64.872786, 17.68583 ], [ -64.873056, 17.685812 ], [ -64.873182, 17.685783 ], [ -64.873307, 17.685742 ], [ -64.873411, 17.685696 ], [ -64.873492, 17.685657 ], [ -64.873606, 17.68561 ], [ -64.873676, 17.685557 ], [ -64.87378, 17.685485 ], [ -64.873835, 17.685344 ], [ -64.873848, 17.68528 ], [ -64.873891, 17.685251 ], [ -64.873985, 17.685221 ], [ -64.874085, 17.685155 ], [ -64.874111, 17.685099 ], [ -64.87414, 17.685062 ], [ -64.874201, 17.685045 ], [ -64.874308, 17.685044 ], [ -64.874346, 17.685007 ], [ -64.874394, 17.684971 ], [ -64.874446, 17.684976 ], [ -64.87453, 17.684934 ], [ -64.874543, 17.684933 ], [ -64.874582, 17.684928 ], [ -64.874599, 17.684922 ], [ -64.874609, 17.684918 ], [ -64.874629, 17.684909 ], [ -64.874681, 17.684874 ], [ -64.874742, 17.684862 ], [ -64.874796, 17.684807 ], [ -64.874826, 17.68479 ], [ -64.874941, 17.684769 ], [ -64.875055, 17.684706 ], [ -64.875147, 17.684694 ], [ -64.875246, 17.684639 ], [ -64.875368, 17.684616 ], [ -64.875452, 17.68459 ], [ -64.875505, 17.684581 ], [ -64.875578, 17.684579 ], [ -64.875619, 17.684569 ], [ -64.875652, 17.684547 ], [ -64.875637, 17.684496 ], [ -64.875684, 17.68447 ], [ -64.875742, 17.684498 ], [ -64.875772, 17.684526 ], [ -64.875823, 17.68453 ], [ -64.875908, 17.684501 ], [ -64.876032, 17.684438 ], [ -64.87623, 17.684373 ], [ -64.876299, 17.684362 ], [ -64.876412, 17.684337 ], [ -64.876496, 17.684323 ], [ -64.876535, 17.68433 ], [ -64.876606, 17.684377 ], [ -64.876663, 17.684433 ], [ -64.876683, 17.684487 ], [ -64.876726, 17.684546 ], [ -64.87681, 17.684559 ], [ -64.876909, 17.684523 ], [ -64.876969, 17.684495 ], [ -64.877072, 17.684449 ], [ -64.877109, 17.684414 ], [ -64.877141, 17.684375 ], [ -64.877155, 17.684373 ], [ -64.877166, 17.684386 ], [ -64.877175, 17.68441 ], [ -64.877189, 17.684439 ], [ -64.877272, 17.684474 ], [ -64.877312, 17.684482 ], [ -64.877377, 17.684489 ], [ -64.877451, 17.684472 ], [ -64.877546, 17.684444 ], [ -64.877632, 17.684418 ], [ -64.877791, 17.684347 ], [ -64.877998, 17.684254 ], [ -64.878113, 17.684187 ], [ -64.878235, 17.684135 ], [ -64.878273, 17.684104 ], [ -64.878576, 17.684966 ], [ -64.87894, 17.685985 ], [ -64.87932, 17.68707 ], [ -64.879487, 17.68756 ], [ -64.87969, 17.68815 ], [ -64.87986, 17.68872 ], [ -64.879966, 17.689041 ], [ -64.88002, 17.6892 ], [ -64.88011, 17.68954 ], [ -64.880165, 17.68971 ], [ -64.880185, 17.689772 ], [ -64.880219, 17.689879 ], [ -64.88022, 17.68988 ], [ -64.880402, 17.690474 ], [ -64.88046, 17.69066 ], [ -64.880565, 17.690954 ], [ -64.880731, 17.691419 ], [ -64.881027, 17.692249 ], [ -64.88107, 17.69235 ], [ -64.881136, 17.692553 ], [ -64.88121, 17.69278 ], [ -64.881264, 17.692937 ], [ -64.88131, 17.69307 ], [ -64.881336, 17.693165 ], [ -64.88137, 17.69329 ], [ -64.8814, 17.69337 ], [ -64.881412, 17.69341 ], [ -64.881455, 17.69353 ], [ -64.88147, 17.69357 ], [ -64.881525, 17.693736 ], [ -64.88159, 17.69393 ], [ -64.881699, 17.694234 ], [ -64.88176, 17.6944 ], [ -64.881772, 17.694437 ], [ -64.88181, 17.694548 ], [ -64.881823, 17.694586 ], [ -64.88186, 17.694694 ], [ -64.881902, 17.694818 ], [ -64.881969, 17.695021 ], [ -64.88198, 17.69505 ], [ -64.88201, 17.69513 ], [ -64.88181, 17.6952 ], [ -64.881735, 17.695224 ], [ -64.881215, 17.69539 ], [ -64.881, 17.69546 ], [ -64.880904, 17.695488 ], [ -64.880627, 17.695573 ], [ -64.880549, 17.695596 ], [ -64.880317, 17.695666 ], [ -64.88024, 17.69569 ], [ -64.880157, 17.695716 ], [ -64.879909, 17.695798 ], [ -64.879827, 17.695825 ], [ -64.879811, 17.695829 ], [ -64.879765, 17.695845 ], [ -64.87975, 17.69585 ], [ -64.879661, 17.695873 ], [ -64.879402, 17.695945 ], [ -64.879315, 17.695969 ], [ -64.879268, 17.695981 ], [ -64.879135, 17.696017 ], [ -64.87909, 17.69603 ], [ -64.878917, 17.696082 ], [ -64.878766, 17.696128 ], [ -64.87853, 17.6962 ], [ -64.878387, 17.696252 ], [ -64.87831, 17.69628 ], [ -64.87826, 17.696294 ], [ -64.87821, 17.696308 ], [ -64.87786, 17.69641 ], [ -64.877797, 17.696432 ], [ -64.87748, 17.69655 ], [ -64.877437, 17.696562 ], [ -64.877312, 17.696598 ], [ -64.87727, 17.696611 ], [ -64.877252, 17.696615 ], [ -64.877202, 17.69663 ], [ -64.877187, 17.696635 ], [ -64.877168, 17.696639 ], [ -64.877117, 17.696655 ], [ -64.8771, 17.69666 ], [ -64.877064, 17.696671 ], [ -64.876956, 17.696705 ], [ -64.876921, 17.696717 ], [ -64.876853, 17.696738 ], [ -64.87669, 17.69679 ], [ -64.876654, 17.6968 ], [ -64.876588, 17.696821 ], [ -64.876554, 17.69683 ], [ -64.876453, 17.696861 ], [ -64.87642, 17.696872 ], [ -64.876407, 17.696875 ], [ -64.876372, 17.696886 ], [ -64.87636, 17.69689 ], [ -64.87635, 17.696892 ], [ -64.876324, 17.6969 ], [ -64.876315, 17.696903 ], [ -64.876302, 17.696906 ], [ -64.876271, 17.696916 ], [ -64.87626, 17.69692 ], [ -64.87608, 17.69697 ], [ -64.876024, 17.696987 ], [ -64.875322, 17.697206 ], [ -64.87509, 17.69728 ], [ -64.874669, 17.697408 ], [ -64.8746, 17.69743 ], [ -64.873412, 17.697809 ], [ -64.873329, 17.697835 ], [ -64.872993, 17.697943 ], [ -64.8728, 17.698004 ], [ -64.872706, 17.698035 ], [ -64.87247, 17.69811 ], [ -64.872226, 17.698192 ], [ -64.872037, 17.698257 ], [ -64.87194, 17.69829 ], [ -64.871729, 17.698354 ], [ -64.87099, 17.69858 ], [ -64.870806, 17.698639 ], [ -64.8705, 17.69874 ], [ -64.870137, 17.698851 ], [ -64.86965, 17.699 ], [ -64.869051, 17.699193 ], [ -64.86869, 17.69931 ], [ -64.868567, 17.699348 ], [ -64.868201, 17.699464 ], [ -64.86808, 17.699504 ], [ -64.867945, 17.699546 ], [ -64.86778, 17.6996 ], [ -64.867543, 17.699681 ], [ -64.86749, 17.6997 ], [ -64.86741, 17.699724 ], [ -64.867346, 17.699743 ], [ -64.867153, 17.6998 ], [ -64.86709, 17.69982 ], [ -64.867006, 17.699845 ], [ -64.866753, 17.699923 ], [ -64.86667, 17.69995 ], [ -64.866307, 17.700064 ], [ -64.86585, 17.70021 ], [ -64.865221, 17.700413 ], [ -64.86486, 17.70053 ], [ -64.864839, 17.700536 ], [ -64.864779, 17.700553 ], [ -64.86476, 17.70056 ], [ -64.864621, 17.700603 ], [ -64.864206, 17.700731 ], [ -64.864069, 17.700775 ], [ -64.863937, 17.700816 ], [ -64.863541, 17.700938 ], [ -64.86341, 17.70098 ], [ -64.863341, 17.701001 ], [ -64.863226, 17.701039 ], [ -64.863136, 17.701067 ], [ -64.86307, 17.70109 ], [ -64.862972, 17.701122 ], [ -64.8628, 17.70118 ], [ -64.862678, 17.701213 ], [ -64.86258, 17.70124 ], [ -64.862442, 17.701282 ], [ -64.862027, 17.701408 ], [ -64.86189, 17.70145 ], [ -64.861667, 17.701525 ], [ -64.8613, 17.70165 ], [ -64.860997, 17.701739 ], [ -64.860774, 17.701807 ], [ -64.860727, 17.701821 ], [ -64.86063, 17.70185 ], [ -64.860586, 17.701864 ], [ -64.86054, 17.70188 ], [ -64.860408, 17.701924 ], [ -64.860014, 17.702058 ], [ -64.86001, 17.70206 ], [ -64.85988, 17.70209 ], [ -64.859751, 17.702132 ], [ -64.85964, 17.70217 ], [ -64.859359, 17.702244 ], [ -64.85923, 17.70228 ], [ -64.86034, 17.70567 ], [ -64.860525, 17.706179 ], [ -64.860535, 17.706214 ], [ -64.86057, 17.706321 ], [ -64.860583, 17.706357 ], [ -64.860769, 17.706857 ], [ -64.86086, 17.70709 ], [ -64.86109, 17.70784 ], [ -64.861158, 17.708017 ], [ -64.86123, 17.70825 ], [ -64.861522, 17.709029 ], [ -64.861765, 17.709868 ], [ -64.861917, 17.710327 ], [ -64.859671, 17.711042 ], [ -64.859559, 17.711073 ], [ -64.85637, 17.712082 ], [ -64.854612, 17.706774 ], [ -64.85441, 17.706123 ], [ -64.854298, 17.705921 ], [ -64.854209, 17.705759 ], [ -64.85412, 17.70538 ], [ -64.853633, 17.70405 ], [ -64.853601, 17.703938 ], [ -64.853223, 17.702827 ], [ -64.852985, 17.702127 ], [ -64.852736, 17.701392 ], [ -64.850849, 17.69584 ], [ -64.849945, 17.69613 ], [ -64.849374, 17.69635 ], [ -64.849323, 17.696369 ], [ -64.849043, 17.696452 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "010", "TRACTCE10": "970700", "GEOID10": "78010970700", "NAME10": "9707", "NAMELSAD10": "Census Tract 9707", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 15749591, "AWATER10": 143654, "INTPTLAT10": "+17.7628575", "INTPTLON10": "-064.7883122" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.806546, 17.778467 ], [ -64.806497, 17.778499 ], [ -64.80638, 17.778516 ], [ -64.806307, 17.778488 ], [ -64.806238, 17.77851 ], [ -64.806157, 17.77856 ], [ -64.806074, 17.778632 ], [ -64.80598, 17.778669 ], [ -64.805882, 17.778724 ], [ -64.805801, 17.778808 ], [ -64.805692, 17.778846 ], [ -64.805571, 17.778912 ], [ -64.805439, 17.778956 ], [ -64.805335, 17.778967 ], [ -64.805215, 17.778945 ], [ -64.805134, 17.778912 ], [ -64.805054, 17.778906 ], [ -64.80491, 17.779056 ], [ -64.804919, 17.779116 ], [ -64.804801, 17.779111 ], [ -64.804526, 17.779192 ], [ -64.804314, 17.779174 ], [ -64.804168, 17.779121 ], [ -64.803881, 17.779192 ], [ -64.803535, 17.779114 ], [ -64.803409, 17.779085 ], [ -64.80334, 17.778999 ], [ -64.803306, 17.778995 ], [ -64.803235, 17.779016 ], [ -64.803189, 17.779041 ], [ -64.803136, 17.778999 ], [ -64.803101, 17.778995 ], [ -64.803052, 17.778989 ], [ -64.803044, 17.778966 ], [ -64.803034, 17.778949 ], [ -64.802999, 17.778943 ], [ -64.802945, 17.778985 ], [ -64.802928, 17.778976 ], [ -64.802914, 17.778929 ], [ -64.802928, 17.77886 ], [ -64.802922, 17.77881 ], [ -64.802823, 17.778776 ], [ -64.802777, 17.778749 ], [ -64.802731, 17.778749 ], [ -64.802716, 17.778795 ], [ -64.802686, 17.77881 ], [ -64.802638, 17.778799 ], [ -64.802571, 17.778783 ], [ -64.802554, 17.778761 ], [ -64.802525, 17.778716 ], [ -64.802503, 17.778705 ], [ -64.802379, 17.778676 ], [ -64.802266, 17.77865 ], [ -64.802203, 17.778642 ], [ -64.802152, 17.778636 ], [ -64.80206, 17.7786 ], [ -64.802032, 17.778594 ], [ -64.801968, 17.778579 ], [ -64.801937, 17.778579 ], [ -64.801762, 17.778581 ], [ -64.801651, 17.778557 ], [ -64.801495, 17.778524 ], [ -64.801436, 17.778519 ], [ -64.801284, 17.778507 ], [ -64.801198, 17.778501 ], [ -64.801107, 17.778484 ], [ -64.800925, 17.77845 ], [ -64.800839, 17.778434 ], [ -64.800778, 17.778432 ], [ -64.800733, 17.77842 ], [ -64.800664, 17.778402 ], [ -64.80057, 17.778395 ], [ -64.800527, 17.778392 ], [ -64.80045, 17.778378 ], [ -64.800397, 17.778367 ], [ -64.800267, 17.778367 ], [ -64.800129, 17.778378 ], [ -64.799832, 17.778402 ], [ -64.799725, 17.77839 ], [ -64.799603, 17.778396 ], [ -64.799535, 17.778392 ], [ -64.799435, 17.778399 ], [ -64.799374, 17.778404 ], [ -64.799348, 17.778402 ], [ -64.799288, 17.778391 ], [ -64.7991, 17.778386 ], [ -64.798935, 17.7784 ], [ -64.798815, 17.77841 ], [ -64.798755, 17.778415 ], [ -64.798726, 17.778417 ], [ -64.798625, 17.778417 ], [ -64.798518, 17.778417 ], [ -64.798357, 17.778417 ], [ -64.798259, 17.778421 ], [ -64.798191, 17.778424 ], [ -64.798093, 17.778428 ], [ -64.797963, 17.778446 ], [ -64.797637, 17.778527 ], [ -64.797482, 17.778566 ], [ -64.797398, 17.778587 ], [ -64.797383, 17.778591 ], [ -64.797218, 17.778605 ], [ -64.797118, 17.778614 ], [ -64.797054, 17.77862 ], [ -64.796972, 17.778628 ], [ -64.796918, 17.778633 ], [ -64.796872, 17.778641 ], [ -64.796751, 17.778665 ], [ -64.79665, 17.778684 ], [ -64.796613, 17.778692 ], [ -64.796535, 17.778714 ], [ -64.796458, 17.778737 ], [ -64.796409, 17.778756 ], [ -64.796371, 17.778763 ], [ -64.796302, 17.778777 ], [ -64.796254, 17.778776 ], [ -64.796167, 17.778804 ], [ -64.796013, 17.778844 ], [ -64.795854, 17.778906 ], [ -64.795796, 17.778925 ], [ -64.795516, 17.778994 ], [ -64.79514, 17.779092 ], [ -64.795033, 17.779125 ], [ -64.794945, 17.77916 ], [ -64.794895, 17.779194 ], [ -64.79481, 17.779222 ], [ -64.794714, 17.779239 ], [ -64.794611, 17.779287 ], [ -64.794541, 17.779294 ], [ -64.794517, 17.779298 ], [ -64.79446, 17.779306 ], [ -64.794398, 17.779315 ], [ -64.794384, 17.779315 ], [ -64.794323, 17.779314 ], [ -64.79422, 17.779311 ], [ -64.794099, 17.77935 ], [ -64.793986, 17.779393 ], [ -64.793903, 17.779436 ], [ -64.793832, 17.77945 ], [ -64.793777, 17.779476 ], [ -64.793708, 17.779497 ], [ -64.793604, 17.779518 ], [ -64.793527, 17.779525 ], [ -64.793413, 17.779528 ], [ -64.793187, 17.779534 ], [ -64.793064, 17.779537 ], [ -64.792687, 17.779569 ], [ -64.792581, 17.779569 ], [ -64.792457, 17.779581 ], [ -64.792291, 17.779581 ], [ -64.792125, 17.779621 ], [ -64.791997, 17.779669 ], [ -64.791937, 17.779707 ], [ -64.791788, 17.779768 ], [ -64.791656, 17.779827 ], [ -64.79155, 17.77987 ], [ -64.791498, 17.779892 ], [ -64.791426, 17.779939 ], [ -64.791336, 17.780011 ], [ -64.791275, 17.780084 ], [ -64.791227, 17.78016 ], [ -64.79119, 17.780236 ], [ -64.791147, 17.780363 ], [ -64.791124, 17.780413 ], [ -64.790821, 17.780857 ], [ -64.790643, 17.781169 ], [ -64.790547, 17.78131 ], [ -64.790464, 17.781401 ], [ -64.79038, 17.781465 ], [ -64.790245, 17.781537 ], [ -64.790029, 17.78164 ], [ -64.789759, 17.78174 ], [ -64.789661, 17.781761 ], [ -64.78966, 17.781761 ], [ -64.789506, 17.781779 ], [ -64.789359, 17.781801 ], [ -64.789196, 17.781817 ], [ -64.788986, 17.781807 ], [ -64.788874, 17.781821 ], [ -64.788851, 17.781824 ], [ -64.788684, 17.781857 ], [ -64.788569, 17.781888 ], [ -64.788339, 17.781934 ], [ -64.788181, 17.781989 ], [ -64.787994, 17.782065 ], [ -64.787793, 17.782131 ], [ -64.787764, 17.782144 ], [ -64.787733, 17.78216 ], [ -64.787692, 17.782176 ], [ -64.787342, 17.782325 ], [ -64.78724, 17.782361 ], [ -64.787204, 17.782375 ], [ -64.787077, 17.782435 ], [ -64.786813, 17.78254 ], [ -64.786681, 17.782573 ], [ -64.786318, 17.782634 ], [ -64.786097, 17.782688 ], [ -64.785911, 17.78272 ], [ -64.785735, 17.78275 ], [ -64.785703, 17.782753 ], [ -64.78556, 17.782772 ], [ -64.785307, 17.782805 ], [ -64.7852, 17.782809 ], [ -64.785175, 17.782809 ], [ -64.785045, 17.782811 ], [ -64.78493, 17.782816 ], [ -64.784755, 17.782816 ], [ -64.784666, 17.782833 ], [ -64.78441, 17.782904 ], [ -64.784238, 17.782966 ], [ -64.784131, 17.783013 ], [ -64.783795, 17.783125 ], [ -64.78364, 17.783164 ], [ -64.783456, 17.78323 ], [ -64.783197, 17.783334 ], [ -64.782863, 17.783527 ], [ -64.782763, 17.783597 ], [ -64.782573, 17.783707 ], [ -64.782525, 17.783727 ], [ -64.782421, 17.783746 ], [ -64.782266, 17.783775 ], [ -64.781949, 17.783764 ], [ -64.781737, 17.783781 ], [ -64.781498, 17.78377 ], [ -64.78107, 17.783784 ], [ -64.781007, 17.783787 ], [ -64.780702, 17.783759 ], [ -64.780506, 17.78373 ], [ -64.780147, 17.78371 ], [ -64.77996, 17.783721 ], [ -64.779759, 17.783754 ], [ -64.779023, 17.783831 ], [ -64.77888, 17.783842 ], [ -64.778759, 17.783828 ], [ -64.778632, 17.783812 ], [ -64.778512, 17.783798 ], [ -64.778408, 17.783776 ], [ -64.778265, 17.783731 ], [ -64.778132, 17.783672 ], [ -64.778034, 17.783639 ], [ -64.77796, 17.783628 ], [ -64.777833, 17.783617 ], [ -64.777761, 17.783584 ], [ -64.777563, 17.783479 ], [ -64.777408, 17.783422 ], [ -64.777264, 17.783418 ], [ -64.777114, 17.783429 ], [ -64.777029, 17.783427 ], [ -64.776965, 17.783396 ], [ -64.776764, 17.783325 ], [ -64.776677, 17.783314 ], [ -64.776603, 17.783297 ], [ -64.776482, 17.783264 ], [ -64.776292, 17.783175 ], [ -64.776022, 17.783116 ], [ -64.775872, 17.783105 ], [ -64.775826, 17.783077 ], [ -64.775798, 17.783055 ], [ -64.775775, 17.783017 ], [ -64.775706, 17.782829 ], [ -64.775654, 17.78273 ], [ -64.775573, 17.782631 ], [ -64.775476, 17.782554 ], [ -64.775378, 17.782499 ], [ -64.7752, 17.782433 ], [ -64.774699, 17.780875 ], [ -64.774312, 17.779757 ], [ -64.771969, 17.772733 ], [ -64.771649, 17.77201 ], [ -64.77163, 17.77195 ], [ -64.77166, 17.77187 ], [ -64.770244, 17.767574 ], [ -64.769671, 17.765868 ], [ -64.767975, 17.760978 ], [ -64.767929, 17.7609 ], [ -64.766858, 17.757874 ], [ -64.768886, 17.757251 ], [ -64.769458, 17.757043 ], [ -64.769801, 17.756943 ], [ -64.770191, 17.756815 ], [ -64.770384, 17.756753 ], [ -64.770441, 17.756734 ], [ -64.770612, 17.756678 ], [ -64.77067, 17.75666 ], [ -64.769842, 17.754168 ], [ -64.769665, 17.753634 ], [ -64.769401, 17.752837 ], [ -64.767945, 17.748448 ], [ -64.76886, 17.74815 ], [ -64.76906, 17.7481 ], [ -64.769065, 17.748097 ], [ -64.769173, 17.748056 ], [ -64.769227, 17.748034 ], [ -64.76934, 17.74799 ], [ -64.769391, 17.747972 ], [ -64.769447, 17.747954 ], [ -64.769629, 17.747892 ], [ -64.76981, 17.74783 ], [ -64.76992, 17.74779 ], [ -64.770089, 17.747749 ], [ -64.77093, 17.74755 ], [ -64.77132, 17.74743 ], [ -64.77151, 17.74733 ], [ -64.77159, 17.7472 ], [ -64.77166, 17.74705 ], [ -64.77172, 17.74699 ], [ -64.7718, 17.74698 ], [ -64.771851, 17.747002 ], [ -64.77189, 17.74702 ], [ -64.772, 17.7471 ], [ -64.77243, 17.74735 ], [ -64.772452, 17.747286 ], [ -64.772518, 17.747094 ], [ -64.77254, 17.74703 ], [ -64.772769, 17.746962 ], [ -64.77346, 17.746758 ], [ -64.77369, 17.74669 ], [ -64.77392, 17.746615 ], [ -64.774613, 17.746391 ], [ -64.77465, 17.74638 ], [ -64.774846, 17.746321 ], [ -64.775217, 17.746208 ], [ -64.776337, 17.745872 ], [ -64.77671, 17.74576 ], [ -64.776965, 17.745677 ], [ -64.777733, 17.745431 ], [ -64.77799, 17.74535 ], [ -64.778158, 17.745299 ], [ -64.77859, 17.74517 ], [ -64.778662, 17.745148 ], [ -64.778831, 17.7451 ], [ -64.779005, 17.745049 ], [ -64.77914, 17.74501 ], [ -64.779416, 17.744935 ], [ -64.779529, 17.744905 ], [ -64.77966, 17.74487 ], [ -64.779704, 17.744855 ], [ -64.779726, 17.744846 ], [ -64.779794, 17.744823 ], [ -64.779818, 17.744816 ], [ -64.779854, 17.744803 ], [ -64.779962, 17.744766 ], [ -64.78, 17.744754 ], [ -64.780347, 17.744635 ], [ -64.781392, 17.744278 ], [ -64.78174, 17.74416 ], [ -64.781758, 17.744154 ], [ -64.781812, 17.744136 ], [ -64.78183, 17.74413 ], [ -64.782056, 17.744057 ], [ -64.78265, 17.74387 ], [ -64.78274, 17.743844 ], [ -64.78297, 17.74378 ], [ -64.783041, 17.743754 ], [ -64.783258, 17.743676 ], [ -64.78333, 17.74365 ], [ -64.783445, 17.743612 ], [ -64.78368, 17.743536 ], [ -64.78379, 17.743499 ], [ -64.783907, 17.743462 ], [ -64.784135, 17.743387 ], [ -64.78482, 17.743164 ], [ -64.78505, 17.74309 ], [ -64.78597, 17.7428 ], [ -64.786142, 17.742749 ], [ -64.78716, 17.74245 ], [ -64.78847, 17.74204 ], [ -64.789427, 17.741747 ], [ -64.790522, 17.741413 ], [ -64.790641, 17.741376 ], [ -64.790749, 17.741343 ], [ -64.79076, 17.74134 ], [ -64.79103, 17.742117 ], [ -64.791141, 17.742442 ], [ -64.79118, 17.74255 ], [ -64.791462, 17.743426 ], [ -64.79152, 17.7436 ], [ -64.791572, 17.743754 ], [ -64.791584, 17.74379 ], [ -64.791619, 17.743897 ], [ -64.791632, 17.743934 ], [ -64.791639, 17.743955 ], [ -64.791659, 17.744018 ], [ -64.791668, 17.74404 ], [ -64.79176, 17.744314 ], [ -64.791764, 17.744325 ], [ -64.79186, 17.74461 ], [ -64.792047, 17.745135 ], [ -64.79206, 17.74517 ], [ -64.79214, 17.74541 ], [ -64.79227, 17.7458 ], [ -64.792326, 17.745973 ], [ -64.79256, 17.7467 ], [ -64.792709, 17.747079 ], [ -64.792826, 17.747458 ], [ -64.793049, 17.748183 ], [ -64.793456, 17.749503 ], [ -64.793123, 17.749608 ], [ -64.79036, 17.75048 ], [ -64.788824, 17.750954 ], [ -64.788882, 17.751155 ], [ -64.789131, 17.751993 ], [ -64.790686, 17.757257 ], [ -64.790951, 17.758154 ], [ -64.790974, 17.758231 ], [ -64.79109, 17.758617 ], [ -64.791144, 17.758809 ], [ -64.791274, 17.759247 ], [ -64.791539, 17.759165 ], [ -64.794948, 17.75812 ], [ -64.795231, 17.758033 ], [ -64.795532, 17.757941 ], [ -64.795592, 17.757923 ], [ -64.796953, 17.757506 ], [ -64.799504, 17.756724 ], [ -64.801572, 17.75609 ], [ -64.801619, 17.756076 ], [ -64.80186, 17.756001 ], [ -64.807317, 17.754328 ], [ -64.813221, 17.752518 ], [ -64.813206, 17.752385 ], [ -64.813493, 17.752305 ], [ -64.814992, 17.751893 ], [ -64.817156, 17.75127 ], [ -64.817864, 17.75105 ], [ -64.819385, 17.755481 ], [ -64.820085, 17.75761 ], [ -64.820622, 17.759213 ], [ -64.817147, 17.760277 ], [ -64.81554, 17.760775 ], [ -64.814049, 17.761238 ], [ -64.81645, 17.769031 ], [ -64.81663, 17.769249 ], [ -64.816621, 17.769413 ], [ -64.808295, 17.777477 ], [ -64.808127, 17.777582 ], [ -64.807998, 17.777664 ], [ -64.807877, 17.777693 ], [ -64.807727, 17.777766 ], [ -64.807508, 17.777903 ], [ -64.807298, 17.777961 ], [ -64.807193, 17.778022 ], [ -64.807014, 17.778048 ], [ -64.80694, 17.778111 ], [ -64.806864, 17.77819 ], [ -64.806809, 17.778379 ], [ -64.80669, 17.778493 ], [ -64.806546, 17.778467 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "010", "TRACTCE10": "970600", "GEOID10": "78010970600", "NAME10": "9706", "NAMELSAD10": "Census Tract 9706", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 13264495, "AWATER10": 833398, "INTPTLAT10": "+17.7604695", "INTPTLON10": "-064.7612609" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.749296, 17.787177 ], [ -64.749226, 17.787131 ], [ -64.749318, 17.787033 ], [ -64.749334, 17.787098 ], [ -64.749296, 17.787177 ] ] ], [ [ [ -64.76093, 17.72764 ], [ -64.76158, 17.72947 ], [ -64.761737, 17.729887 ], [ -64.76178, 17.73 ], [ -64.762209, 17.731141 ], [ -64.762368, 17.731559 ], [ -64.762409, 17.731678 ], [ -64.762451, 17.731819 ], [ -64.7625, 17.73204 ], [ -64.762456, 17.732056 ], [ -64.762324, 17.732103 ], [ -64.76228, 17.73212 ], [ -64.76226, 17.732131 ], [ -64.762198, 17.732167 ], [ -64.76218, 17.73218 ], [ -64.762161, 17.732184 ], [ -64.762107, 17.732199 ], [ -64.762089, 17.732205 ], [ -64.761909, 17.732254 ], [ -64.761369, 17.7324 ], [ -64.76119, 17.73245 ], [ -64.760821, 17.732551 ], [ -64.76079, 17.73256 ], [ -64.76014, 17.73276 ], [ -64.75972, 17.732862 ], [ -64.760228, 17.7345 ], [ -64.760603, 17.735707 ], [ -64.760733, 17.736125 ], [ -64.761495, 17.738579 ], [ -64.76151, 17.738627 ], [ -64.761763, 17.739444 ], [ -64.761955, 17.740061 ], [ -64.761991, 17.740177 ], [ -64.762147, 17.740681 ], [ -64.762283, 17.741117 ], [ -64.76403, 17.740608 ], [ -64.765187, 17.740273 ], [ -64.765403, 17.740209 ], [ -64.76641, 17.739888 ], [ -64.768089, 17.739356 ], [ -64.76573, 17.732256 ], [ -64.76536, 17.73114 ], [ -64.765547, 17.731077 ], [ -64.76563, 17.73105 ], [ -64.76665, 17.730741 ], [ -64.76702, 17.73063 ], [ -64.767249, 17.730557 ], [ -64.76772, 17.73041 ], [ -64.767939, 17.730346 ], [ -64.76817, 17.73028 ], [ -64.768536, 17.73016 ], [ -64.76964, 17.729804 ], [ -64.770009, 17.729685 ], [ -64.770033, 17.729677 ], [ -64.770107, 17.729654 ], [ -64.770133, 17.729647 ], [ -64.77015, 17.729641 ], [ -64.770202, 17.729625 ], [ -64.77022, 17.72962 ], [ -64.770596, 17.729504 ], [ -64.77172, 17.72916 ], [ -64.771728, 17.729157 ], [ -64.772108, 17.729046 ], [ -64.772255, 17.729002 ], [ -64.772698, 17.728871 ], [ -64.772846, 17.728828 ], [ -64.773039, 17.72877 ], [ -64.773624, 17.728597 ], [ -64.77382, 17.72854 ], [ -64.773861, 17.728673 ], [ -64.77399, 17.729074 ], [ -64.774, 17.7291 ], [ -64.77403, 17.72921 ], [ -64.774237, 17.729844 ], [ -64.7744, 17.73034 ], [ -64.77468, 17.73121 ], [ -64.77484, 17.73166 ], [ -64.774872, 17.731746 ], [ -64.77493, 17.7319 ], [ -64.775098, 17.732375 ], [ -64.775119, 17.732424 ], [ -64.775183, 17.732572 ], [ -64.775205, 17.732622 ], [ -64.775469, 17.733439 ], [ -64.775754, 17.734319 ], [ -64.77603, 17.735169 ], [ -64.776264, 17.735892 ], [ -64.776352, 17.736163 ], [ -64.77653, 17.73671 ], [ -64.776668, 17.737035 ], [ -64.776806, 17.737434 ], [ -64.77701, 17.738074 ], [ -64.777625, 17.739994 ], [ -64.77783, 17.740634 ], [ -64.778858, 17.74337 ], [ -64.779021, 17.743746 ], [ -64.779264, 17.744466 ], [ -64.779416, 17.744935 ], [ -64.77914, 17.74501 ], [ -64.779005, 17.745049 ], [ -64.778831, 17.7451 ], [ -64.778662, 17.745148 ], [ -64.77859, 17.74517 ], [ -64.778158, 17.745299 ], [ -64.77799, 17.74535 ], [ -64.777733, 17.745431 ], [ -64.776965, 17.745677 ], [ -64.77671, 17.74576 ], [ -64.776337, 17.745872 ], [ -64.775217, 17.746208 ], [ -64.774846, 17.746321 ], [ -64.77465, 17.74638 ], [ -64.774613, 17.746391 ], [ -64.77392, 17.746615 ], [ -64.77369, 17.74669 ], [ -64.77346, 17.746758 ], [ -64.772769, 17.746962 ], [ -64.77254, 17.74703 ], [ -64.772518, 17.747094 ], [ -64.772452, 17.747286 ], [ -64.77243, 17.74735 ], [ -64.772, 17.7471 ], [ -64.77189, 17.74702 ], [ -64.771851, 17.747002 ], [ -64.7718, 17.74698 ], [ -64.77172, 17.74699 ], [ -64.77166, 17.74705 ], [ -64.77159, 17.7472 ], [ -64.77151, 17.74733 ], [ -64.77132, 17.74743 ], [ -64.77093, 17.74755 ], [ -64.770089, 17.747749 ], [ -64.76992, 17.74779 ], [ -64.76981, 17.74783 ], [ -64.769629, 17.747892 ], [ -64.769447, 17.747954 ], [ -64.769391, 17.747972 ], [ -64.76934, 17.74799 ], [ -64.769227, 17.748034 ], [ -64.769173, 17.748056 ], [ -64.769065, 17.748097 ], [ -64.76906, 17.7481 ], [ -64.76886, 17.74815 ], [ -64.767945, 17.748448 ], [ -64.769401, 17.752837 ], [ -64.769665, 17.753634 ], [ -64.769842, 17.754168 ], [ -64.77067, 17.75666 ], [ -64.770612, 17.756678 ], [ -64.770441, 17.756734 ], [ -64.770384, 17.756753 ], [ -64.770191, 17.756815 ], [ -64.769801, 17.756943 ], [ -64.769458, 17.757043 ], [ -64.768886, 17.757251 ], [ -64.766858, 17.757874 ], [ -64.767929, 17.7609 ], [ -64.767975, 17.760978 ], [ -64.769671, 17.765868 ], [ -64.770244, 17.767574 ], [ -64.77166, 17.77187 ], [ -64.77163, 17.77195 ], [ -64.771649, 17.77201 ], [ -64.771969, 17.772733 ], [ -64.774312, 17.779757 ], [ -64.774699, 17.780875 ], [ -64.7752, 17.782433 ], [ -64.775016, 17.78235 ], [ -64.774786, 17.782268 ], [ -64.774677, 17.782235 ], [ -64.77455, 17.782213 ], [ -64.774337, 17.782224 ], [ -64.774228, 17.782224 ], [ -64.774136, 17.782196 ], [ -64.774073, 17.782169 ], [ -64.77401, 17.782136 ], [ -64.773935, 17.782108 ], [ -64.773843, 17.782086 ], [ -64.773791, 17.782092 ], [ -64.773699, 17.782119 ], [ -64.773607, 17.782175 ], [ -64.773492, 17.782202 ], [ -64.773377, 17.782186 ], [ -64.773268, 17.782142 ], [ -64.77321, 17.782136 ], [ -64.773164, 17.782142 ], [ -64.773113, 17.782125 ], [ -64.773038, 17.782065 ], [ -64.772911, 17.782021 ], [ -64.772837, 17.781976 ], [ -64.772773, 17.781839 ], [ -64.772699, 17.781701 ], [ -64.772612, 17.781629 ], [ -64.772492, 17.781574 ], [ -64.772382, 17.781536 ], [ -64.772221, 17.781459 ], [ -64.772198, 17.781426 ], [ -64.772175, 17.781382 ], [ -64.772129, 17.781316 ], [ -64.772037, 17.781227 ], [ -64.771888, 17.781117 ], [ -64.771652, 17.781002 ], [ -64.77148, 17.780947 ], [ -64.771192, 17.780875 ], [ -64.77098, 17.780837 ], [ -64.770819, 17.78082 ], [ -64.770554, 17.780815 ], [ -64.770468, 17.780809 ], [ -64.770278, 17.780765 ], [ -64.769864, 17.780606 ], [ -64.769703, 17.780573 ], [ -64.769404, 17.78049 ], [ -64.769246, 17.780462 ], [ -64.769002, 17.780419 ], [ -64.768663, 17.78038 ], [ -64.768427, 17.780364 ], [ -64.768111, 17.78032 ], [ -64.768001, 17.780309 ], [ -64.767915, 17.780292 ], [ -64.767633, 17.780254 ], [ -64.767478, 17.780243 ], [ -64.767381, 17.780254 ], [ -64.76711, 17.780276 ], [ -64.767001, 17.780298 ], [ -64.76688, 17.780347 ], [ -64.766581, 17.780496 ], [ -64.766518, 17.78054 ], [ -64.766478, 17.780573 ], [ -64.766392, 17.780634 ], [ -64.766352, 17.780672 ], [ -64.766202, 17.780777 ], [ -64.766156, 17.780805 ], [ -64.766087, 17.78086 ], [ -64.76603, 17.780887 ], [ -64.765978, 17.780915 ], [ -64.765897, 17.780948 ], [ -64.765863, 17.780953 ], [ -64.765679, 17.780964 ], [ -64.765627, 17.780948 ], [ -64.765518, 17.780931 ], [ -64.765403, 17.780898 ], [ -64.765282, 17.780876 ], [ -64.765167, 17.780865 ], [ -64.765157, 17.780865 ], [ -64.765052, 17.780865 ], [ -64.764808, 17.780856 ], [ -64.764736, 17.780854 ], [ -64.764431, 17.780871 ], [ -64.763931, 17.780921 ], [ -64.763765, 17.780942 ], [ -64.763419, 17.780987 ], [ -64.763172, 17.781009 ], [ -64.762994, 17.781048 ], [ -64.76284, 17.781058 ], [ -64.762753, 17.781064 ], [ -64.762505, 17.781097 ], [ -64.762034, 17.781147 ], [ -64.761637, 17.781158 ], [ -64.761636, 17.781158 ], [ -64.75659, 17.782115 ], [ -64.748967, 17.783561 ], [ -64.748806, 17.783616 ], [ -64.748685, 17.783638 ], [ -64.748495, 17.783649 ], [ -64.748351, 17.7836 ], [ -64.748265, 17.7835 ], [ -64.748179, 17.783368 ], [ -64.748116, 17.783225 ], [ -64.74807, 17.783082 ], [ -64.747963, 17.783005 ], [ -64.747914, 17.782751 ], [ -64.747803, 17.782667 ], [ -64.747736, 17.782548 ], [ -64.747702, 17.782493 ], [ -64.74765, 17.782432 ], [ -64.747569, 17.782366 ], [ -64.747483, 17.782322 ], [ -64.747394, 17.782372 ], [ -64.747314, 17.782343 ], [ -64.747351, 17.782184 ], [ -64.747236, 17.782018 ], [ -64.747265, 17.781936 ], [ -64.74719, 17.781771 ], [ -64.747081, 17.781628 ], [ -64.74688, 17.781435 ], [ -64.746758, 17.781309 ], [ -64.746799, 17.781138 ], [ -64.746575, 17.780581 ], [ -64.746548, 17.780532 ], [ -64.746452, 17.780378 ], [ -64.746353, 17.780336 ], [ -64.746279, 17.780242 ], [ -64.746195, 17.780159 ], [ -64.746086, 17.780048 ], [ -64.746017, 17.77998 ], [ -64.745956, 17.77994 ], [ -64.745921, 17.77993 ], [ -64.7459, 17.779948 ], [ -64.745856, 17.779918 ], [ -64.745788, 17.779922 ], [ -64.745766, 17.779926 ], [ -64.745673, 17.779835 ], [ -64.745605, 17.779745 ], [ -64.745574, 17.779712 ], [ -64.745544, 17.77968 ], [ -64.745514, 17.779545 ], [ -64.745442, 17.779368 ], [ -64.745365, 17.779249 ], [ -64.745277, 17.77916 ], [ -64.74522, 17.779114 ], [ -64.745186, 17.779087 ], [ -64.74511, 17.779062 ], [ -64.745049, 17.779062 ], [ -64.744987, 17.779036 ], [ -64.744953, 17.778989 ], [ -64.744907, 17.778911 ], [ -64.744896, 17.778868 ], [ -64.744873, 17.778782 ], [ -64.744827, 17.778574 ], [ -64.74472, 17.778454 ], [ -64.744486, 17.778273 ], [ -64.744286, 17.778095 ], [ -64.74411, 17.777899 ], [ -64.744003, 17.777744 ], [ -64.743942, 17.777657 ], [ -64.743898, 17.777563 ], [ -64.743816, 17.777412 ], [ -64.743782, 17.777344 ], [ -64.743671, 17.777207 ], [ -64.743607, 17.777126 ], [ -64.743574, 17.777098 ], [ -64.743486, 17.777022 ], [ -64.74346, 17.776999 ], [ -64.743397, 17.776902 ], [ -64.743343, 17.77682 ], [ -64.743225, 17.776644 ], [ -64.743189, 17.776604 ], [ -64.743149, 17.77656 ], [ -64.743137, 17.776536 ], [ -64.743109, 17.776477 ], [ -64.743065, 17.776369 ], [ -64.743034, 17.776293 ], [ -64.742994, 17.776228 ], [ -64.742933, 17.776133 ], [ -64.742912, 17.7761 ], [ -64.7429, 17.776085 ], [ -64.742881, 17.776062 ], [ -64.742699, 17.775839 ], [ -64.742595, 17.775706 ], [ -64.742558, 17.775624 ], [ -64.742493, 17.775602 ], [ -64.742459, 17.775601 ], [ -64.742432, 17.7756 ], [ -64.742386, 17.775576 ], [ -64.742365, 17.775542 ], [ -64.742318, 17.775467 ], [ -64.742279, 17.775406 ], [ -64.742235, 17.775349 ], [ -64.74218, 17.775276 ], [ -64.742149, 17.775227 ], [ -64.742084, 17.775153 ], [ -64.741989, 17.775045 ], [ -64.741914, 17.774985 ], [ -64.741856, 17.774938 ], [ -64.741742, 17.774846 ], [ -64.741585, 17.774719 ], [ -64.741522, 17.774676 ], [ -64.741445, 17.774623 ], [ -64.741386, 17.774584 ], [ -64.741352, 17.774549 ], [ -64.741279, 17.774481 ], [ -64.741232, 17.774439 ], [ -64.741169, 17.774383 ], [ -64.741089, 17.774332 ], [ -64.741043, 17.774319 ], [ -64.741018, 17.774322 ], [ -64.740928, 17.774332 ], [ -64.740827, 17.774347 ], [ -64.740777, 17.774419 ], [ -64.740761, 17.774435 ], [ -64.740776, 17.774508 ], [ -64.740758, 17.77452 ], [ -64.740738, 17.774532 ], [ -64.740662, 17.774532 ], [ -64.740635, 17.774545 ], [ -64.740601, 17.774563 ], [ -64.740577, 17.774563 ], [ -64.74056, 17.77456 ], [ -64.740533, 17.774551 ], [ -64.740499, 17.774539 ], [ -64.740474, 17.774544 ], [ -64.740454, 17.774546 ], [ -64.740301, 17.774546 ], [ -64.740242, 17.774565 ], [ -64.740175, 17.774645 ], [ -64.740156, 17.774662 ], [ -64.740075, 17.77473 ], [ -64.740051, 17.77475 ], [ -64.740013, 17.774822 ], [ -64.739948, 17.774872 ], [ -64.73986, 17.77494 ], [ -64.739845, 17.774952 ], [ -64.739769, 17.775042 ], [ -64.739716, 17.77504 ], [ -64.739693, 17.775017 ], [ -64.739655, 17.775005 ], [ -64.739636, 17.775004 ], [ -64.739601, 17.775002 ], [ -64.739558, 17.77502 ], [ -64.739448, 17.774967 ], [ -64.739391, 17.77496 ], [ -64.739332, 17.774906 ], [ -64.739319, 17.774871 ], [ -64.739296, 17.774843 ], [ -64.739303, 17.774825 ], [ -64.739309, 17.7748 ], [ -64.739313, 17.774782 ], [ -64.739296, 17.774733 ], [ -64.739285, 17.774716 ], [ -64.738992, 17.774452 ], [ -64.738854, 17.774342 ], [ -64.738645, 17.774207 ], [ -64.738624, 17.774193 ], [ -64.738514, 17.774133 ], [ -64.738445, 17.774083 ], [ -64.738405, 17.774033 ], [ -64.738359, 17.773989 ], [ -64.738319, 17.773929 ], [ -64.738319, 17.77389 ], [ -64.738335, 17.773869 ], [ -64.738342, 17.773852 ], [ -64.738428, 17.773852 ], [ -64.738457, 17.773863 ], [ -64.738476, 17.773837 ], [ -64.73848, 17.773819 ], [ -64.738464, 17.773795 ], [ -64.738451, 17.773775 ], [ -64.738422, 17.773742 ], [ -64.738394, 17.773686 ], [ -64.738382, 17.773648 ], [ -64.738388, 17.77362 ], [ -64.738411, 17.773593 ], [ -64.738428, 17.773565 ], [ -64.738434, 17.773527 ], [ -64.738428, 17.773505 ], [ -64.738422, 17.773499 ], [ -64.738428, 17.773487 ], [ -64.73844, 17.773472 ], [ -64.738459, 17.773476 ], [ -64.738503, 17.773461 ], [ -64.738514, 17.773444 ], [ -64.738523, 17.773421 ], [ -64.738533, 17.773394 ], [ -64.738525, 17.773362 ], [ -64.73852, 17.773339 ], [ -64.738528, 17.773322 ], [ -64.738543, 17.773301 ], [ -64.738574, 17.773308 ], [ -64.73859, 17.773318 ], [ -64.738612, 17.773334 ], [ -64.738681, 17.773328 ], [ -64.738699, 17.773318 ], [ -64.73875, 17.77329 ], [ -64.738859, 17.773207 ], [ -64.738957, 17.77318 ], [ -64.739129, 17.773174 ], [ -64.739267, 17.773163 ], [ -64.739359, 17.773185 ], [ -64.739434, 17.773174 ], [ -64.739601, 17.773136 ], [ -64.73963, 17.773114 ], [ -64.739662, 17.773039 ], [ -64.739662, 17.772949 ], [ -64.739662, 17.772878 ], [ -64.73966, 17.772797 ], [ -64.739659, 17.772763 ], [ -64.739658, 17.77274 ], [ -64.739657, 17.772721 ], [ -64.739655, 17.772655 ], [ -64.739624, 17.772557 ], [ -64.739561, 17.772491 ], [ -64.739494, 17.77248 ], [ -64.739365, 17.772476 ], [ -64.739281, 17.772474 ], [ -64.739188, 17.772384 ], [ -64.739137, 17.772314 ], [ -64.739106, 17.772232 ], [ -64.739066, 17.772172 ], [ -64.739048, 17.772138 ], [ -64.739043, 17.772128 ], [ -64.73902, 17.772095 ], [ -64.73894, 17.772018 ], [ -64.738888, 17.77199 ], [ -64.738842, 17.771935 ], [ -64.738802, 17.77188 ], [ -64.738767, 17.771814 ], [ -64.738764, 17.771807 ], [ -64.738716, 17.7717 ], [ -64.738651, 17.77166 ], [ -64.738487, 17.771617 ], [ -64.738421, 17.771641 ], [ -64.738402, 17.771748 ], [ -64.738352, 17.771808 ], [ -64.738247, 17.77185 ], [ -64.738121, 17.771828 ], [ -64.73806, 17.771811 ], [ -64.738028, 17.771803 ], [ -64.737914, 17.771748 ], [ -64.737908, 17.771637 ], [ -64.73779, 17.771608 ], [ -64.7378, 17.771553 ], [ -64.73789, 17.771548 ], [ -64.737938, 17.77151 ], [ -64.737892, 17.771414 ], [ -64.737854, 17.771385 ], [ -64.737785, 17.771379 ], [ -64.73774, 17.771334 ], [ -64.737717, 17.771326 ], [ -64.73759, 17.771342 ], [ -64.737534, 17.771307 ], [ -64.737482, 17.771306 ], [ -64.737451, 17.771296 ], [ -64.737416, 17.771263 ], [ -64.737391, 17.77114 ], [ -64.737388, 17.771125 ], [ -64.737387, 17.771104 ], [ -64.737388, 17.771065 ], [ -64.737399, 17.771043 ], [ -64.73741, 17.771 ], [ -64.737422, 17.770966 ], [ -64.737445, 17.770916 ], [ -64.737451, 17.770889 ], [ -64.737451, 17.770855 ], [ -64.737456, 17.770822 ], [ -64.737456, 17.770774 ], [ -64.737451, 17.770756 ], [ -64.737457, 17.770723 ], [ -64.73746, 17.770626 ], [ -64.737462, 17.770624 ], [ -64.737456, 17.770569 ], [ -64.737456, 17.770508 ], [ -64.737445, 17.770404 ], [ -64.737422, 17.770332 ], [ -64.74341, 17.7688 ], [ -64.74335, 17.76863 ], [ -64.743312, 17.76851 ], [ -64.743198, 17.76815 ], [ -64.74316, 17.76803 ], [ -64.743042, 17.767686 ], [ -64.742688, 17.766654 ], [ -64.74257, 17.76631 ], [ -64.742536, 17.76621 ], [ -64.742435, 17.765911 ], [ -64.742402, 17.765812 ], [ -64.742309, 17.765537 ], [ -64.742031, 17.764714 ], [ -64.74194, 17.76444 ], [ -64.741901, 17.764332 ], [ -64.741787, 17.764008 ], [ -64.74175, 17.7639 ], [ -64.741698, 17.763748 ], [ -64.741541, 17.763291 ], [ -64.74149, 17.76314 ], [ -64.741477, 17.763096 ], [ -64.741438, 17.762965 ], [ -64.741425, 17.762922 ], [ -64.741417, 17.762895 ], [ -64.741393, 17.762816 ], [ -64.741386, 17.76279 ], [ -64.741373, 17.762752 ], [ -64.741339, 17.762638 ], [ -64.74133, 17.7626 ], [ -64.741304, 17.762526 ], [ -64.74128, 17.762455 ], [ -64.74123, 17.76231 ], [ -64.741229, 17.762307 ], [ -64.741204, 17.762235 ], [ -64.741175, 17.762152 ], [ -64.74109, 17.761903 ], [ -64.741062, 17.761821 ], [ -64.741038, 17.761752 ], [ -64.741, 17.76164 ], [ -64.740973, 17.761546 ], [ -64.740955, 17.761477 ], [ -64.740944, 17.761437 ], [ -64.740911, 17.761319 ], [ -64.7409, 17.76128 ], [ -64.740832, 17.761088 ], [ -64.740635, 17.760512 ], [ -64.74057, 17.76032 ], [ -64.740544, 17.760223 ], [ -64.740466, 17.759935 ], [ -64.74044, 17.75984 ], [ -64.739957, 17.758338 ], [ -64.739566, 17.757119 ], [ -64.745176, 17.755435 ], [ -64.745492, 17.75534 ], [ -64.7474, 17.754767 ], [ -64.749858, 17.75405 ], [ -64.74999, 17.75402 ], [ -64.750125, 17.753976 ], [ -64.75049, 17.75386 ], [ -64.750929, 17.753733 ], [ -64.751122, 17.754312 ], [ -64.751627, 17.75582 ], [ -64.753662, 17.755203 ], [ -64.753955, 17.755114 ], [ -64.754833, 17.754849 ], [ -64.755127, 17.754761 ], [ -64.755298, 17.754708 ], [ -64.755816, 17.754551 ], [ -64.75599, 17.7545 ], [ -64.756262, 17.754413 ], [ -64.75659, 17.75431 ], [ -64.75719, 17.754098 ], [ -64.757091, 17.7538 ], [ -64.756968, 17.753427 ], [ -64.756686, 17.752575 ], [ -64.756507, 17.752033 ], [ -64.75432, 17.745421 ], [ -64.754256, 17.745492 ], [ -64.754233, 17.745339 ], [ -64.75422, 17.74525 ], [ -64.75419, 17.74508 ], [ -64.754141, 17.744884 ], [ -64.754104, 17.744735 ], [ -64.75406, 17.744565 ], [ -64.754032, 17.744444 ], [ -64.753907, 17.744063 ], [ -64.753903, 17.744051 ], [ -64.753841, 17.743902 ], [ -64.753791, 17.743783 ], [ -64.753761, 17.743712 ], [ -64.754014, 17.743633 ], [ -64.755012, 17.743323 ], [ -64.755607, 17.743098 ], [ -64.755748, 17.743057 ], [ -64.75617, 17.742938 ], [ -64.756313, 17.742899 ], [ -64.756401, 17.742873 ], [ -64.756595, 17.742819 ], [ -64.756668, 17.742823 ], [ -64.75676, 17.74283 ], [ -64.757079, 17.742721 ], [ -64.75723, 17.74267 ], [ -64.75765, 17.74252 ], [ -64.758052, 17.74247 ], [ -64.758387, 17.742429 ], [ -64.758368, 17.742276 ], [ -64.758773, 17.74215 ], [ -64.759378, 17.741961 ], [ -64.757977, 17.7377 ], [ -64.757686, 17.736816 ], [ -64.75731, 17.73567 ], [ -64.756659, 17.73371 ], [ -64.755848, 17.731253 ], [ -64.755136, 17.729096 ], [ -64.754742, 17.727901 ], [ -64.754223, 17.72633 ], [ -64.753968, 17.725555 ], [ -64.75402, 17.72554 ], [ -64.75504, 17.72525 ], [ -64.755153, 17.725214 ], [ -64.75569, 17.72505 ], [ -64.75652, 17.72483 ], [ -64.75711, 17.72466 ], [ -64.75773, 17.72451 ], [ -64.758571, 17.724299 ], [ -64.75869, 17.72427 ], [ -64.75972, 17.72403 ], [ -64.759833, 17.724375 ], [ -64.75996, 17.72476 ], [ -64.76015, 17.72526 ], [ -64.760197, 17.725404 ], [ -64.76031, 17.72575 ], [ -64.760324, 17.725786 ], [ -64.760374, 17.725894 ], [ -64.76039, 17.72593 ], [ -64.76043, 17.72606 ], [ -64.76055, 17.72645 ], [ -64.760549, 17.726451 ], [ -64.760596, 17.72658 ], [ -64.76063, 17.72668 ], [ -64.760735, 17.72698 ], [ -64.76077, 17.72708 ], [ -64.760793, 17.72716 ], [ -64.760864, 17.7274 ], [ -64.76089, 17.72748 ], [ -64.76093, 17.72764 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "010", "TRACTCE10": "970300", "GEOID10": "78010970300", "NAME10": "9703", "NAMELSAD10": "Census Tract 9703", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 5433496, "AWATER10": 0, "INTPTLAT10": "+17.7535799", "INTPTLON10": "-064.7295383" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.717153, 17.7529 ], [ -64.717067, 17.752996 ], [ -64.717041, 17.753027 ], [ -64.717087, 17.75308 ], [ -64.717125, 17.753124 ], [ -64.71712, 17.753143 ], [ -64.717117, 17.753153 ], [ -64.717094, 17.75317 ], [ -64.717056, 17.753166 ], [ -64.717026, 17.753124 ], [ -64.716881, 17.753078 ], [ -64.716699, 17.753058 ], [ -64.716415, 17.752991 ], [ -64.716302, 17.752944 ], [ -64.716145, 17.752862 ], [ -64.715683, 17.752505 ], [ -64.715462, 17.7523 ], [ -64.715346, 17.752168 ], [ -64.715272, 17.752099 ], [ -64.715235, 17.752065 ], [ -64.715158, 17.752027 ], [ -64.714958, 17.751986 ], [ -64.714874, 17.752014 ], [ -64.714813, 17.752014 ], [ -64.714729, 17.75197 ], [ -64.714684, 17.751934 ], [ -64.714636, 17.751883 ], [ -64.714424, 17.751659 ], [ -64.714317, 17.75174 ], [ -64.714285, 17.75177 ], [ -64.714264, 17.751791 ], [ -64.714222, 17.751823 ], [ -64.714129, 17.751894 ], [ -64.714104, 17.751913 ], [ -64.713586, 17.751977 ], [ -64.713579, 17.751969 ], [ -64.713565, 17.751949 ], [ -64.713585, 17.751931 ], [ -64.714207, 17.751419 ], [ -64.714152, 17.751355 ], [ -64.714202, 17.751332 ], [ -64.714252, 17.751305 ], [ -64.714249, 17.751158 ], [ -64.714182, 17.751097 ], [ -64.714118, 17.751089 ], [ -64.71399, 17.750901 ], [ -64.713773, 17.750751 ], [ -64.713716, 17.750699 ], [ -64.713703, 17.75068 ], [ -64.713656, 17.750613 ], [ -64.713545, 17.750511 ], [ -64.713503, 17.750435 ], [ -64.713474, 17.750393 ], [ -64.713438, 17.750345 ], [ -64.713419, 17.750318 ], [ -64.713388, 17.750254 ], [ -64.71338, 17.750244 ], [ -64.713346, 17.750202 ], [ -64.71334, 17.750195 ], [ -64.713283, 17.750134 ], [ -64.713216, 17.750063 ], [ -64.71315, 17.749993 ], [ -64.713112, 17.749954 ], [ -64.713081, 17.749921 ], [ -64.713043, 17.749881 ], [ -64.713002, 17.74985 ], [ -64.712945, 17.749797 ], [ -64.712893, 17.74976 ], [ -64.712844, 17.749726 ], [ -64.712824, 17.749709 ], [ -64.712776, 17.749663 ], [ -64.712758, 17.749646 ], [ -64.712592, 17.749562 ], [ -64.712415, 17.749474 ], [ -64.712281, 17.749421 ], [ -64.712116, 17.74931 ], [ -64.712027, 17.749252 ], [ -64.711948, 17.749188 ], [ -64.71187, 17.749124 ], [ -64.711694, 17.748996 ], [ -64.711533, 17.748878 ], [ -64.711419, 17.74879 ], [ -64.71253, 17.74794 ], [ -64.712678, 17.747819 ], [ -64.713128, 17.74746 ], [ -64.71328, 17.74734 ], [ -64.713441, 17.747199 ], [ -64.713927, 17.74678 ], [ -64.71409, 17.74664 ], [ -64.71434, 17.74646 ], [ -64.714405, 17.746406 ], [ -64.71498, 17.74594 ], [ -64.715327, 17.745676 ], [ -64.71564, 17.74544 ], [ -64.715301, 17.745221 ], [ -64.71513, 17.74511 ], [ -64.714309, 17.744539 ], [ -64.71398, 17.74431 ], [ -64.713718, 17.744106 ], [ -64.71357, 17.74399 ], [ -64.71364, 17.74352 ], [ -64.71396, 17.74301 ], [ -64.714739, 17.742433 ], [ -64.714175, 17.739618 ], [ -64.71448, 17.73972 ], [ -64.71471, 17.73979 ], [ -64.714774, 17.73979 ], [ -64.71496, 17.73979 ], [ -64.71517, 17.7398 ], [ -64.71536, 17.73987 ], [ -64.71564, 17.74 ], [ -64.71619, 17.74024 ], [ -64.71646, 17.74038 ], [ -64.71663, 17.74044 ], [ -64.71676, 17.74045 ], [ -64.71714, 17.74038 ], [ -64.71802, 17.74015 ], [ -64.718441, 17.740046 ], [ -64.71908, 17.73989 ], [ -64.719691, 17.739747 ], [ -64.719809, 17.739719 ], [ -64.71985, 17.73971 ], [ -64.72007, 17.73965 ], [ -64.72016, 17.739604 ], [ -64.72027, 17.73955 ], [ -64.72043, 17.73916 ], [ -64.720462, 17.73907 ], [ -64.72057, 17.73878 ], [ -64.72068, 17.73838 ], [ -64.7207, 17.73823 ], [ -64.720687, 17.738163 ], [ -64.721145, 17.739561 ], [ -64.721476, 17.74057 ], [ -64.722722, 17.744368 ], [ -64.723881, 17.743948 ], [ -64.724089, 17.743883 ], [ -64.725527, 17.743373 ], [ -64.725803, 17.744689 ], [ -64.72745, 17.74418 ], [ -64.728201, 17.743947 ], [ -64.728806, 17.743715 ], [ -64.72895, 17.74366 ], [ -64.729044, 17.743656 ], [ -64.72901, 17.743698 ], [ -64.72801, 17.744685 ], [ -64.728593, 17.745045 ], [ -64.73038, 17.74619 ], [ -64.730625, 17.746411 ], [ -64.730958, 17.746712 ], [ -64.73163, 17.74695 ], [ -64.73163, 17.74696 ], [ -64.731686, 17.747183 ], [ -64.73176, 17.74747 ], [ -64.73181, 17.74775 ], [ -64.731905, 17.747853 ], [ -64.73207, 17.74803 ], [ -64.732102, 17.748086 ], [ -64.732204, 17.748254 ], [ -64.73224, 17.74831 ], [ -64.732368, 17.748612 ], [ -64.731984, 17.74872 ], [ -64.732437, 17.750327 ], [ -64.732459, 17.750407 ], [ -64.732744, 17.750318 ], [ -64.732763, 17.750312 ], [ -64.732955, 17.750262 ], [ -64.732978, 17.750255 ], [ -64.733048, 17.750236 ], [ -64.733073, 17.750231 ], [ -64.73304, 17.75014 ], [ -64.736796, 17.748979 ], [ -64.74242, 17.74729 ], [ -64.742452, 17.747384 ], [ -64.742548, 17.747668 ], [ -64.74258, 17.747763 ], [ -64.742628, 17.747904 ], [ -64.742772, 17.748328 ], [ -64.74282, 17.74847 ], [ -64.742836, 17.74852 ], [ -64.74289, 17.748673 ], [ -64.742908, 17.748724 ], [ -64.742976, 17.748921 ], [ -64.743181, 17.749512 ], [ -64.74325, 17.74971 ], [ -64.743733, 17.751031 ], [ -64.743794, 17.75126 ], [ -64.743883, 17.751502 ], [ -64.74389, 17.75152 ], [ -64.74393, 17.75166 ], [ -64.74397, 17.751783 ], [ -64.74409, 17.752152 ], [ -64.744131, 17.752275 ], [ -64.744183, 17.752435 ], [ -64.74425, 17.75264 ], [ -64.744349, 17.752914 ], [ -64.744407, 17.753074 ], [ -64.744451, 17.753198 ], [ -64.744478, 17.753272 ], [ -64.74455, 17.75347 ], [ -64.744586, 17.753573 ], [ -64.744591, 17.753584 ], [ -64.744632, 17.753698 ], [ -64.744669, 17.753802 ], [ -64.744782, 17.754115 ], [ -64.74482, 17.75422 ], [ -64.744838, 17.754328 ], [ -64.74484, 17.75434 ], [ -64.744951, 17.754637 ], [ -64.74499, 17.75474 ], [ -64.745142, 17.755247 ], [ -64.745176, 17.755435 ], [ -64.739566, 17.757119 ], [ -64.739957, 17.758338 ], [ -64.74044, 17.75984 ], [ -64.740466, 17.759935 ], [ -64.740544, 17.760223 ], [ -64.74057, 17.76032 ], [ -64.740635, 17.760512 ], [ -64.740832, 17.761088 ], [ -64.7409, 17.76128 ], [ -64.740911, 17.761319 ], [ -64.740944, 17.761437 ], [ -64.740955, 17.761477 ], [ -64.740973, 17.761546 ], [ -64.741, 17.76164 ], [ -64.741038, 17.761752 ], [ -64.741062, 17.761821 ], [ -64.74109, 17.761903 ], [ -64.741175, 17.762152 ], [ -64.741204, 17.762235 ], [ -64.741229, 17.762307 ], [ -64.74123, 17.76231 ], [ -64.74128, 17.762455 ], [ -64.741304, 17.762526 ], [ -64.74133, 17.7626 ], [ -64.741339, 17.762638 ], [ -64.741373, 17.762752 ], [ -64.741386, 17.76279 ], [ -64.741393, 17.762816 ], [ -64.741417, 17.762895 ], [ -64.741425, 17.762922 ], [ -64.741438, 17.762965 ], [ -64.741477, 17.763096 ], [ -64.74149, 17.76314 ], [ -64.741541, 17.763291 ], [ -64.741698, 17.763748 ], [ -64.74175, 17.7639 ], [ -64.741787, 17.764008 ], [ -64.741901, 17.764332 ], [ -64.74194, 17.76444 ], [ -64.742031, 17.764714 ], [ -64.742309, 17.765537 ], [ -64.742402, 17.765812 ], [ -64.742435, 17.765911 ], [ -64.742536, 17.76621 ], [ -64.74257, 17.76631 ], [ -64.742688, 17.766654 ], [ -64.743042, 17.767686 ], [ -64.74316, 17.76803 ], [ -64.743198, 17.76815 ], [ -64.743312, 17.76851 ], [ -64.74335, 17.76863 ], [ -64.74341, 17.7688 ], [ -64.737422, 17.770332 ], [ -64.737376, 17.770222 ], [ -64.737318, 17.770117 ], [ -64.737261, 17.770024 ], [ -64.737255, 17.769985 ], [ -64.737255, 17.76982 ], [ -64.737261, 17.769759 ], [ -64.737261, 17.76971 ], [ -64.737244, 17.769677 ], [ -64.737232, 17.769636 ], [ -64.737221, 17.7696 ], [ -64.737192, 17.769479 ], [ -64.737112, 17.769313 ], [ -64.737007, 17.769154 ], [ -64.736934, 17.769055 ], [ -64.736908, 17.769028 ], [ -64.73687, 17.768948 ], [ -64.736862, 17.768818 ], [ -64.736824, 17.768707 ], [ -64.736622, 17.768481 ], [ -64.736546, 17.768367 ], [ -64.736475, 17.768148 ], [ -64.736443, 17.76799 ], [ -64.73629, 17.767712 ], [ -64.736275, 17.767654 ], [ -64.73632, 17.767614 ], [ -64.736302, 17.767581 ], [ -64.736287, 17.767551 ], [ -64.736286, 17.767518 ], [ -64.73624, 17.767472 ], [ -64.736268, 17.767428 ], [ -64.736292, 17.767395 ], [ -64.736281, 17.767216 ], [ -64.736243, 17.767128 ], [ -64.736193, 17.767029 ], [ -64.736086, 17.766916 ], [ -64.735992, 17.766613 ], [ -64.735767, 17.766461 ], [ -64.735664, 17.766401 ], [ -64.735582, 17.766317 ], [ -64.73551, 17.766253 ], [ -64.735347, 17.766108 ], [ -64.734904, 17.765695 ], [ -64.734599, 17.765397 ], [ -64.734496, 17.765287 ], [ -64.734387, 17.765155 ], [ -64.734306, 17.765072 ], [ -64.734185, 17.764973 ], [ -64.734097, 17.764922 ], [ -64.733875, 17.764792 ], [ -64.733754, 17.764692 ], [ -64.733197, 17.764296 ], [ -64.733079, 17.764185 ], [ -64.733004, 17.764115 ], [ -64.732605, 17.763833 ], [ -64.732438, 17.763696 ], [ -64.73234, 17.763591 ], [ -64.732271, 17.763497 ], [ -64.732138, 17.763296 ], [ -64.732049, 17.763141 ], [ -64.731945, 17.762937 ], [ -64.731892, 17.762883 ], [ -64.731776, 17.762694 ], [ -64.731676, 17.762586 ], [ -64.731535, 17.762466 ], [ -64.73139, 17.762412 ], [ -64.731299, 17.762377 ], [ -64.731167, 17.762351 ], [ -64.731045, 17.762344 ], [ -64.730861, 17.762347 ], [ -64.730699, 17.762363 ], [ -64.730569, 17.762382 ], [ -64.730449, 17.762404 ], [ -64.730376, 17.762419 ], [ -64.730118, 17.762464 ], [ -64.729964, 17.762477 ], [ -64.729866, 17.762466 ], [ -64.729788, 17.762431 ], [ -64.729698, 17.762386 ], [ -64.729667, 17.762374 ], [ -64.729466, 17.762263 ], [ -64.729316, 17.762137 ], [ -64.729041, 17.761922 ], [ -64.728903, 17.761823 ], [ -64.728713, 17.761718 ], [ -64.728435, 17.761605 ], [ -64.728228, 17.761497 ], [ -64.728023, 17.761395 ], [ -64.727954, 17.76139 ], [ -64.727833, 17.761367 ], [ -64.727624, 17.76127 ], [ -64.727457, 17.761195 ], [ -64.727224, 17.761098 ], [ -64.727029, 17.761005 ], [ -64.726941, 17.760931 ], [ -64.726774, 17.760824 ], [ -64.726625, 17.760717 ], [ -64.726532, 17.760643 ], [ -64.726384, 17.760526 ], [ -64.726244, 17.76041 ], [ -64.726226, 17.760359 ], [ -64.726128, 17.760331 ], [ -64.726059, 17.760331 ], [ -64.725989, 17.760276 ], [ -64.725933, 17.760229 ], [ -64.725868, 17.76015 ], [ -64.725812, 17.760118 ], [ -64.725724, 17.760076 ], [ -64.72565, 17.76002 ], [ -64.725603, 17.75995 ], [ -64.725552, 17.75989 ], [ -64.725506, 17.759885 ], [ -64.725455, 17.759885 ], [ -64.725343, 17.759825 ], [ -64.72525, 17.759737 ], [ -64.725185, 17.759718 ], [ -64.725134, 17.759653 ], [ -64.725088, 17.759621 ], [ -64.725, 17.759584 ], [ -64.724874, 17.759546 ], [ -64.724739, 17.759477 ], [ -64.724651, 17.759444 ], [ -64.724605, 17.759393 ], [ -64.724558, 17.759328 ], [ -64.724526, 17.759282 ], [ -64.724493, 17.75924 ], [ -64.724428, 17.759207 ], [ -64.724363, 17.759179 ], [ -64.724275, 17.759124 ], [ -64.724219, 17.759068 ], [ -64.724173, 17.758998 ], [ -64.724131, 17.758938 ], [ -64.724103, 17.758836 ], [ -64.724094, 17.758785 ], [ -64.724024, 17.758659 ], [ -64.723968, 17.758566 ], [ -64.723908, 17.758473 ], [ -64.723786, 17.758276 ], [ -64.723683, 17.757797 ], [ -64.723631, 17.757648 ], [ -64.723597, 17.757532 ], [ -64.723569, 17.757485 ], [ -64.723516, 17.757389 ], [ -64.723413, 17.757235 ], [ -64.723258, 17.757059 ], [ -64.723114, 17.756921 ], [ -64.7231, 17.75691 ], [ -64.722984, 17.756765 ], [ -64.722846, 17.756637 ], [ -64.722603, 17.756426 ], [ -64.722481, 17.756314 ], [ -64.722321, 17.756209 ], [ -64.72216, 17.756085 ], [ -64.722041, 17.755971 ], [ -64.721928, 17.755886 ], [ -64.721779, 17.755778 ], [ -64.721593, 17.755686 ], [ -64.721492, 17.755631 ], [ -64.721315, 17.755549 ], [ -64.721189, 17.755513 ], [ -64.721098, 17.755511 ], [ -64.721004, 17.755495 ], [ -64.720942, 17.755469 ], [ -64.720878, 17.755439 ], [ -64.720861, 17.755427 ], [ -64.7208, 17.75542 ], [ -64.720768, 17.755417 ], [ -64.720673, 17.755314 ], [ -64.720491, 17.755028 ], [ -64.720436, 17.754999 ], [ -64.720406, 17.75494 ], [ -64.720413, 17.75488 ], [ -64.72036, 17.754782 ], [ -64.720322, 17.754728 ], [ -64.720238, 17.754614 ], [ -64.720093, 17.754335 ], [ -64.720011, 17.75421 ], [ -64.719917, 17.754082 ], [ -64.719637, 17.75384 ], [ -64.71938, 17.753683 ], [ -64.719238, 17.753582 ], [ -64.719083, 17.753457 ], [ -64.718955, 17.753373 ], [ -64.718833, 17.753303 ], [ -64.71873, 17.753248 ], [ -64.718593, 17.753174 ], [ -64.718546, 17.753149 ], [ -64.718497, 17.753128 ], [ -64.718405, 17.753075 ], [ -64.718314, 17.753024 ], [ -64.71824, 17.752984 ], [ -64.718182, 17.752951 ], [ -64.718157, 17.752937 ], [ -64.718097, 17.752914 ], [ -64.717991, 17.752875 ], [ -64.717847, 17.752821 ], [ -64.717769, 17.752793 ], [ -64.717724, 17.752786 ], [ -64.717631, 17.752771 ], [ -64.717563, 17.752761 ], [ -64.717464, 17.752753 ], [ -64.717339, 17.752748 ], [ -64.717232, 17.752832 ], [ -64.717153, 17.7529 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "010", "TRACTCE10": "970200", "GEOID10": "78010970200", "NAME10": "9702", "NAMELSAD10": "Census Tract 9702", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4930532, "AWATER10": 526405, "INTPTLAT10": "+17.7427791", "INTPTLON10": "-064.6981976" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.70315, 17.748926 ], [ -64.703226, 17.748916 ], [ -64.703335, 17.748944 ], [ -64.703399, 17.74898 ], [ -64.703479, 17.749071 ], [ -64.703519, 17.749126 ], [ -64.703521, 17.749137 ], [ -64.703523, 17.749159 ], [ -64.70353, 17.749228 ], [ -64.703536, 17.749253 ], [ -64.703533, 17.749359 ], [ -64.703517, 17.749463 ], [ -64.703479, 17.749557 ], [ -64.703448, 17.749629 ], [ -64.703415, 17.749704 ], [ -64.703442, 17.749745 ], [ -64.703454, 17.749785 ], [ -64.703459, 17.749839 ], [ -64.703467, 17.749886 ], [ -64.703457, 17.749972 ], [ -64.70341, 17.750058 ], [ -64.703388, 17.750136 ], [ -64.703379, 17.750234 ], [ -64.70336, 17.750331 ], [ -64.703326, 17.750384 ], [ -64.703313, 17.750434 ], [ -64.703301, 17.750484 ], [ -64.703273, 17.750546 ], [ -64.703209, 17.750639 ], [ -64.70317, 17.750631 ], [ -64.70312, 17.750622 ], [ -64.703094, 17.750637 ], [ -64.70305, 17.750644 ], [ -64.702995, 17.750652 ], [ -64.702903, 17.750655 ], [ -64.70285, 17.750656 ], [ -64.702796, 17.750644 ], [ -64.702744, 17.750631 ], [ -64.702701, 17.750618 ], [ -64.70257, 17.750577 ], [ -64.702491, 17.750552 ], [ -64.702405, 17.750527 ], [ -64.702279, 17.750504 ], [ -64.702255, 17.7505 ], [ -64.702197, 17.750531 ], [ -64.702148, 17.750572 ], [ -64.70214, 17.750585 ], [ -64.702115, 17.750627 ], [ -64.7021, 17.750669 ], [ -64.702057, 17.750725 ], [ -64.702011, 17.750734 ], [ -64.701973, 17.750729 ], [ -64.701957, 17.750716 ], [ -64.701902, 17.750672 ], [ -64.701859, 17.750637 ], [ -64.701855, 17.750609 ], [ -64.701851, 17.750578 ], [ -64.701851, 17.750505 ], [ -64.701859, 17.750481 ], [ -64.701879, 17.750429 ], [ -64.701918, 17.750385 ], [ -64.701959, 17.750353 ], [ -64.701973, 17.750299 ], [ -64.701977, 17.750268 ], [ -64.701988, 17.750191 ], [ -64.702042, 17.750107 ], [ -64.702065, 17.749962 ], [ -64.702156, 17.749744 ], [ -64.702172, 17.749663 ], [ -64.702171, 17.749552 ], [ -64.702187, 17.749517 ], [ -64.702179, 17.749437 ], [ -64.702202, 17.749426 ], [ -64.702209, 17.749381 ], [ -64.702194, 17.749361 ], [ -64.702217, 17.749329 ], [ -64.702232, 17.749271 ], [ -64.702271, 17.749172 ], [ -64.702285, 17.749007 ], [ -64.702332, 17.748882 ], [ -64.7024, 17.748816 ], [ -64.702606, 17.748699 ], [ -64.702667, 17.74859 ], [ -64.702728, 17.748556 ], [ -64.702766, 17.748562 ], [ -64.702789, 17.748606 ], [ -64.702848, 17.748578 ], [ -64.702874, 17.748603 ], [ -64.702868, 17.74862 ], [ -64.702853, 17.748647 ], [ -64.702835, 17.748671 ], [ -64.702849, 17.748686 ], [ -64.702852, 17.748707 ], [ -64.702874, 17.748754 ], [ -64.702909, 17.748783 ], [ -64.702978, 17.748839 ], [ -64.703041, 17.748878 ], [ -64.70315, 17.748926 ] ] ], [ [ [ -64.701775, 17.747406 ], [ -64.698506, 17.747787 ], [ -64.698393, 17.747677 ], [ -64.698346, 17.747747 ], [ -64.698303, 17.747719 ], [ -64.698212, 17.747839 ], [ -64.698174, 17.747894 ], [ -64.698151, 17.747927 ], [ -64.697968, 17.747839 ], [ -64.697945, 17.747887 ], [ -64.697929, 17.747923 ], [ -64.697945, 17.747942 ], [ -64.697944, 17.747942 ], [ -64.697868, 17.748085 ], [ -64.697792, 17.74822 ], [ -64.697948, 17.748288 ], [ -64.697983, 17.748302 ], [ -64.697952, 17.748379 ], [ -64.697844, 17.748653 ], [ -64.697807, 17.748747 ], [ -64.697733, 17.748935 ], [ -64.697705, 17.749008 ], [ -64.697647, 17.749156 ], [ -64.697598, 17.749254 ], [ -64.697541, 17.749314 ], [ -64.697511, 17.749357 ], [ -64.697471, 17.749403 ], [ -64.697328, 17.749461 ], [ -64.69721, 17.749512 ], [ -64.697117, 17.749564 ], [ -64.697008, 17.749602 ], [ -64.696914, 17.749642 ], [ -64.696714, 17.749668 ], [ -64.696704, 17.74967 ], [ -64.696569, 17.749659 ], [ -64.696401, 17.749644 ], [ -64.696315, 17.749636 ], [ -64.696197, 17.749617 ], [ -64.696086, 17.749675 ], [ -64.695995, 17.749704 ], [ -64.695968, 17.749711 ], [ -64.695963, 17.749724 ], [ -64.69595, 17.749763 ], [ -64.695948, 17.749777 ], [ -64.695941, 17.749796 ], [ -64.695921, 17.749856 ], [ -64.695917, 17.749876 ], [ -64.695891, 17.749863 ], [ -64.695845, 17.74983 ], [ -64.695787, 17.749819 ], [ -64.695741, 17.749824 ], [ -64.695661, 17.74989 ], [ -64.695529, 17.750066 ], [ -64.695506, 17.750088 ], [ -64.695414, 17.750149 ], [ -64.695356, 17.750165 ], [ -64.695287, 17.75016 ], [ -64.695115, 17.75016 ], [ -64.695034, 17.750176 ], [ -64.694968, 17.750182 ], [ -64.69492, 17.750181 ], [ -64.69485, 17.750149 ], [ -64.69481, 17.750143 ], [ -64.694758, 17.750121 ], [ -64.694674, 17.75011 ], [ -64.694626, 17.750121 ], [ -64.694597, 17.750138 ], [ -64.694517, 17.750198 ], [ -64.694425, 17.750275 ], [ -64.694276, 17.750386 ], [ -64.694207, 17.750413 ], [ -64.694109, 17.750468 ], [ -64.693971, 17.750523 ], [ -64.69389, 17.750567 ], [ -64.69381, 17.750628 ], [ -64.693695, 17.750766 ], [ -64.69362, 17.750837 ], [ -64.693545, 17.750892 ], [ -64.693465, 17.750931 ], [ -64.693287, 17.750947 ], [ -64.693229, 17.750942 ], [ -64.693108, 17.75098 ], [ -64.69305, 17.751012 ], [ -64.692984, 17.751049 ], [ -64.692908, 17.751091 ], [ -64.692861, 17.751129 ], [ -64.692815, 17.751201 ], [ -64.692798, 17.751245 ], [ -64.692787, 17.7513 ], [ -64.692783, 17.751366 ], [ -64.692781, 17.75141 ], [ -64.692821, 17.75152 ], [ -64.692838, 17.751597 ], [ -64.692844, 17.751658 ], [ -64.692844, 17.751729 ], [ -64.692729, 17.752076 ], [ -64.692713, 17.752248 ], [ -64.692689, 17.752319 ], [ -64.692675, 17.752391 ], [ -64.692667, 17.752434 ], [ -64.692564, 17.75259 ], [ -64.692482, 17.752699 ], [ -64.69242, 17.75281 ], [ -64.692338, 17.752908 ], [ -64.692286, 17.753002 ], [ -64.692234, 17.753128 ], [ -64.692171, 17.75331 ], [ -64.692144, 17.7534 ], [ -64.692119, 17.753453 ], [ -64.692093, 17.753574 ], [ -64.692073, 17.753613 ], [ -64.692056, 17.753624 ], [ -64.692016, 17.753624 ], [ -64.691907, 17.753547 ], [ -64.691769, 17.75353 ], [ -64.691545, 17.753475 ], [ -64.691361, 17.753403 ], [ -64.690981, 17.753277 ], [ -64.690843, 17.753233 ], [ -64.690711, 17.753172 ], [ -64.690435, 17.753034 ], [ -64.690257, 17.752924 ], [ -64.690199, 17.752869 ], [ -64.690184, 17.75285 ], [ -64.690142, 17.752797 ], [ -64.69009, 17.752649 ], [ -64.690079, 17.752522 ], [ -64.690079, 17.752461 ], [ -64.690085, 17.752391 ], [ -64.690119, 17.75223 ], [ -64.690125, 17.752169 ], [ -64.690113, 17.752109 ], [ -64.690073, 17.752032 ], [ -64.689987, 17.751982 ], [ -64.689866, 17.751944 ], [ -64.689757, 17.751926 ], [ -64.689683, 17.751904 ], [ -64.689608, 17.751866 ], [ -64.689544, 17.751817 ], [ -64.689498, 17.751773 ], [ -64.689453, 17.75174 ], [ -64.689406, 17.751729 ], [ -64.689326, 17.75174 ], [ -64.689079, 17.751822 ], [ -64.689007, 17.751856 ], [ -64.688958, 17.751905 ], [ -64.688918, 17.75196 ], [ -64.688838, 17.752049 ], [ -64.688775, 17.752105 ], [ -64.688717, 17.752136 ], [ -64.688602, 17.752153 ], [ -64.688435, 17.752164 ], [ -64.688147, 17.752148 ], [ -64.68801, 17.752119 ], [ -64.687458, 17.752108 ], [ -64.687257, 17.75213 ], [ -64.686975, 17.752155 ], [ -64.686716, 17.752207 ], [ -64.686469, 17.752262 ], [ -64.686187, 17.752339 ], [ -64.685992, 17.752411 ], [ -64.685693, 17.752554 ], [ -64.685331, 17.752763 ], [ -64.685205, 17.752842 ], [ -64.684917, 17.752978 ], [ -64.684733, 17.75305 ], [ -64.684445, 17.753099 ], [ -64.684009, 17.753165 ], [ -64.683971, 17.753192 ], [ -64.683924, 17.753222 ], [ -64.683802, 17.753308 ], [ -64.683744, 17.753347 ], [ -64.683692, 17.753374 ], [ -64.683554, 17.753396 ], [ -64.683497, 17.753396 ], [ -64.683422, 17.753413 ], [ -64.68329, 17.753391 ], [ -64.683296, 17.753347 ], [ -64.68329, 17.753303 ], [ -64.683267, 17.753215 ], [ -64.683238, 17.753126 ], [ -64.683198, 17.75306 ], [ -64.683187, 17.752983 ], [ -64.683198, 17.752845 ], [ -64.683227, 17.75273 ], [ -64.683233, 17.752669 ], [ -64.683256, 17.752609 ], [ -64.683261, 17.752537 ], [ -64.683256, 17.752438 ], [ -64.68321, 17.752278 ], [ -64.683141, 17.752135 ], [ -64.683055, 17.752019 ], [ -64.682997, 17.751964 ], [ -64.682785, 17.751832 ], [ -64.682457, 17.751727 ], [ -64.682273, 17.751689 ], [ -64.68206, 17.75165 ], [ -64.681807, 17.751617 ], [ -64.681652, 17.751592 ], [ -64.681606, 17.751583 ], [ -64.681559, 17.75158 ], [ -64.681394, 17.751567 ], [ -64.681146, 17.751584 ], [ -64.680842, 17.751617 ], [ -64.68073, 17.751641 ], [ -64.680669, 17.751655 ], [ -64.680503, 17.751721 ], [ -64.68006, 17.751996 ], [ -64.679968, 17.752002 ], [ -64.679882, 17.752029 ], [ -64.67979, 17.75204 ], [ -64.679744, 17.752018 ], [ -64.679686, 17.751974 ], [ -64.679629, 17.751908 ], [ -64.67956, 17.751721 ], [ -64.67956, 17.751611 ], [ -64.679571, 17.751468 ], [ -64.679571, 17.751374 ], [ -64.679554, 17.751275 ], [ -64.67956, 17.751165 ], [ -64.679646, 17.750889 ], [ -64.67971, 17.750658 ], [ -64.679747, 17.750571 ], [ -64.679784, 17.750482 ], [ -64.679819, 17.750355 ], [ -64.679819, 17.750322 ], [ -64.679808, 17.750258 ], [ -64.679763, 17.750159 ], [ -64.67975, 17.750102 ], [ -64.679756, 17.750063 ], [ -64.679831, 17.749925 ], [ -64.679882, 17.74987 ], [ -64.679969, 17.749755 ], [ -64.679992, 17.749705 ], [ -64.679992, 17.749584 ], [ -64.679974, 17.749501 ], [ -64.680009, 17.749314 ], [ -64.680043, 17.749226 ], [ -64.680103, 17.749156 ], [ -64.680647, 17.748896 ], [ -64.680762, 17.748863 ], [ -64.680828, 17.748864 ], [ -64.680883, 17.748879 ], [ -64.680941, 17.748922 ], [ -64.680995, 17.74895 ], [ -64.681029, 17.748962 ], [ -64.681147, 17.748959 ], [ -64.68132, 17.748934 ], [ -64.681458, 17.748945 ], [ -64.681607, 17.748978 ], [ -64.681722, 17.748989 ], [ -64.681745, 17.749001 ], [ -64.681845, 17.748974 ], [ -64.681912, 17.748948 ], [ -64.681955, 17.748908 ], [ -64.682062, 17.748859 ], [ -64.682188, 17.748791 ], [ -64.682228, 17.748764 ], [ -64.682308, 17.748687 ], [ -64.682356, 17.748633 ], [ -64.68242, 17.748545 ], [ -64.682538, 17.748488 ], [ -64.68259, 17.748483 ], [ -64.682653, 17.748483 ], [ -64.682731, 17.748496 ], [ -64.682776, 17.748518 ], [ -64.68282, 17.748555 ], [ -64.682981, 17.748709 ], [ -64.683148, 17.748891 ], [ -64.683314, 17.749172 ], [ -64.683366, 17.749232 ], [ -64.683418, 17.749282 ], [ -64.68351, 17.749304 ], [ -64.683619, 17.74932 ], [ -64.683734, 17.74932 ], [ -64.683872, 17.749304 ], [ -64.683918, 17.749295 ], [ -64.683993, 17.749278 ], [ -64.684125, 17.749232 ], [ -64.684329, 17.749151 ], [ -64.684395, 17.749133 ], [ -64.684458, 17.749135 ], [ -64.68454, 17.749159 ], [ -64.684587, 17.749207 ], [ -64.68463, 17.74926 ], [ -64.684717, 17.74937 ], [ -64.684837, 17.749469 ], [ -64.685033, 17.749591 ], [ -64.685205, 17.749668 ], [ -64.685383, 17.749723 ], [ -64.68551, 17.749772 ], [ -64.685702, 17.749868 ], [ -64.685843, 17.74996 ], [ -64.686355, 17.750241 ], [ -64.686582, 17.75033 ], [ -64.686791, 17.750384 ], [ -64.686874, 17.750412 ], [ -64.686286, 17.7485 ], [ -64.685693, 17.746567 ], [ -64.685423, 17.74567 ], [ -64.685349, 17.74547 ], [ -64.685175, 17.744993 ], [ -64.684225, 17.742397 ], [ -64.68328, 17.739814 ], [ -64.686578, 17.738833 ], [ -64.686756, 17.738782 ], [ -64.687392, 17.738595 ], [ -64.688152, 17.738373 ], [ -64.688524, 17.738264 ], [ -64.688359, 17.73767 ], [ -64.688255, 17.737277 ], [ -64.687784, 17.735598 ], [ -64.687595, 17.734961 ], [ -64.686213, 17.730398 ], [ -64.686095, 17.730009 ], [ -64.686024, 17.729772 ], [ -64.68658, 17.729578 ], [ -64.686665, 17.729548 ], [ -64.687615, 17.729217 ], [ -64.687986, 17.729088 ], [ -64.691266, 17.727946 ], [ -64.691365, 17.727912 ], [ -64.691399, 17.72802 ], [ -64.691686, 17.728911 ], [ -64.692402, 17.731145 ], [ -64.692868, 17.732554 ], [ -64.693524, 17.731784 ], [ -64.695098, 17.73195 ], [ -64.695572, 17.731989 ], [ -64.69601, 17.733456 ], [ -64.700655, 17.733215 ], [ -64.702118, 17.737237 ], [ -64.706361, 17.735937 ], [ -64.706961, 17.735753 ], [ -64.708402, 17.735313 ], [ -64.709736, 17.734903 ], [ -64.712148, 17.735999 ], [ -64.71335, 17.736544 ], [ -64.714175, 17.739618 ], [ -64.714739, 17.742433 ], [ -64.71396, 17.74301 ], [ -64.71364, 17.74352 ], [ -64.71357, 17.74399 ], [ -64.713718, 17.744106 ], [ -64.71398, 17.74431 ], [ -64.714309, 17.744539 ], [ -64.71513, 17.74511 ], [ -64.715301, 17.745221 ], [ -64.71564, 17.74544 ], [ -64.715327, 17.745676 ], [ -64.71498, 17.74594 ], [ -64.714405, 17.746406 ], [ -64.71434, 17.74646 ], [ -64.71409, 17.74664 ], [ -64.713927, 17.74678 ], [ -64.713441, 17.747199 ], [ -64.71328, 17.74734 ], [ -64.713128, 17.74746 ], [ -64.712678, 17.747819 ], [ -64.71253, 17.74794 ], [ -64.711419, 17.74879 ], [ -64.710685, 17.748039 ], [ -64.710563, 17.747945 ], [ -64.710472, 17.747875 ], [ -64.710356, 17.747787 ], [ -64.710247, 17.747706 ], [ -64.71004, 17.74755 ], [ -64.709995, 17.747515 ], [ -64.709886, 17.747458 ], [ -64.709801, 17.747414 ], [ -64.709725, 17.74735 ], [ -64.709717, 17.747343 ], [ -64.709633, 17.747293 ], [ -64.709583, 17.747256 ], [ -64.70945, 17.747156 ], [ -64.709343, 17.747107 ], [ -64.709259, 17.747047 ], [ -64.709209, 17.747021 ], [ -64.70913, 17.74698 ], [ -64.709038, 17.746931 ], [ -64.708824, 17.74687 ], [ -64.708762, 17.746861 ], [ -64.708672, 17.746861 ], [ -64.708603, 17.746859 ], [ -64.708504, 17.746876 ], [ -64.708428, 17.746907 ], [ -64.708359, 17.746964 ], [ -64.708313, 17.746983 ], [ -64.708321, 17.747042 ], [ -64.708305, 17.747078 ], [ -64.708193, 17.747155 ], [ -64.708138, 17.747185 ], [ -64.708122, 17.74719 ], [ -64.708084, 17.747208 ], [ -64.708023, 17.74725 ], [ -64.708029, 17.74739 ], [ -64.708031, 17.747429 ], [ -64.708008, 17.747446 ], [ -64.707954, 17.747463 ], [ -64.70787, 17.747452 ], [ -64.707764, 17.747416 ], [ -64.707744, 17.747401 ], [ -64.707623, 17.747309 ], [ -64.707558, 17.747263 ], [ -64.707455, 17.747172 ], [ -64.707382, 17.747082 ], [ -64.707283, 17.746941 ], [ -64.707214, 17.746946 ], [ -64.706985, 17.747114 ], [ -64.706871, 17.74716 ], [ -64.706732, 17.747168 ], [ -64.706473, 17.747234 ], [ -64.70638, 17.747253 ], [ -64.706282, 17.747232 ], [ -64.706192, 17.747177 ], [ -64.706081, 17.74717 ], [ -64.705986, 17.747152 ], [ -64.705889, 17.747149 ], [ -64.705864, 17.747149 ], [ -64.705717, 17.747124 ], [ -64.705338, 17.747339 ], [ -64.705272, 17.747346 ], [ -64.70521, 17.747337 ], [ -64.705157, 17.747311 ], [ -64.705153, 17.747306 ], [ -64.705119, 17.747272 ], [ -64.705059, 17.747206 ], [ -64.705, 17.747232 ], [ -64.704949, 17.747261 ], [ -64.70492, 17.747276 ], [ -64.704888, 17.747292 ], [ -64.704825, 17.747304 ], [ -64.704765, 17.747313 ], [ -64.70463, 17.747331 ], [ -64.704567, 17.747306 ], [ -64.704517, 17.747292 ], [ -64.704479, 17.747277 ], [ -64.704472, 17.747275 ], [ -64.704427, 17.747263 ], [ -64.704391, 17.747278 ], [ -64.704336, 17.747299 ], [ -64.704291, 17.747324 ], [ -64.704247, 17.747353 ], [ -64.703949, 17.74744 ], [ -64.703903, 17.74745 ], [ -64.70385, 17.74744 ], [ -64.703781, 17.747351 ], [ -64.703644, 17.747381 ], [ -64.703613, 17.747292 ], [ -64.703547, 17.747331 ], [ -64.703492, 17.747363 ], [ -64.703582, 17.747442 ], [ -64.703482, 17.747482 ], [ -64.703386, 17.747437 ], [ -64.703358, 17.747421 ], [ -64.703294, 17.74738 ], [ -64.703049, 17.747268 ], [ -64.702821, 17.747294 ], [ -64.702667, 17.747217 ], [ -64.702644, 17.747238 ], [ -64.70268, 17.747351 ], [ -64.70268, 17.747382 ], [ -64.702401, 17.747471 ], [ -64.70234, 17.74747 ], [ -64.701845, 17.747427 ], [ -64.701827, 17.747416 ], [ -64.701775, 17.747406 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "010", "TRACTCE10": "970100", "GEOID10": "78010970100", "NAME10": "9701", "NAMELSAD10": "Census Tract 9701", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 28184193, "AWATER10": 3374048, "INTPTLAT10": "+17.7495196", "INTPTLON10": "-064.6291391" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.611276, 17.787063 ], [ -64.611285, 17.787052 ], [ -64.611413, 17.786993 ], [ -64.611538, 17.786942 ], [ -64.611665, 17.786891 ], [ -64.611825, 17.786838 ], [ -64.612004, 17.786793 ], [ -64.612136, 17.786765 ], [ -64.612314, 17.78671 ], [ -64.612504, 17.786618 ], [ -64.612717, 17.786539 ], [ -64.612947, 17.786443 ], [ -64.61312, 17.786349 ], [ -64.613418, 17.786237 ], [ -64.613625, 17.786193 ], [ -64.613935, 17.786112 ], [ -64.614425, 17.78599 ], [ -64.614832, 17.785846 ], [ -64.615115, 17.785733 ], [ -64.615126, 17.785729 ], [ -64.615454, 17.785658 ], [ -64.615644, 17.785641 ], [ -64.615879, 17.78558 ], [ -64.616534, 17.785367 ], [ -64.616736, 17.78528 ], [ -64.617034, 17.785164 ], [ -64.617345, 17.785053 ], [ -64.617885, 17.784915 ], [ -64.618161, 17.784872 ], [ -64.618495, 17.784831 ], [ -64.618765, 17.784815 ], [ -64.619007, 17.784809 ], [ -64.619174, 17.78481 ], [ -64.619443, 17.784805 ], [ -64.619673, 17.78481 ], [ -64.619881, 17.784804 ], [ -64.620059, 17.784786 ], [ -64.620203, 17.78476 ], [ -64.620346, 17.784694 ], [ -64.620415, 17.784628 ], [ -64.620595, 17.784513 ], [ -64.620801, 17.784374 ], [ -64.621088, 17.784116 ], [ -64.621243, 17.783957 ], [ -64.621347, 17.783843 ], [ -64.621502, 17.78369 ], [ -64.621611, 17.783626 ], [ -64.621715, 17.783587 ], [ -64.621852, 17.783592 ], [ -64.622013, 17.783614 ], [ -64.622186, 17.78363 ], [ -64.622329, 17.783697 ], [ -64.622525, 17.783752 ], [ -64.62268, 17.783823 ], [ -64.622842, 17.783928 ], [ -64.622979, 17.784028 ], [ -64.623095, 17.784127 ], [ -64.623228, 17.784287 ], [ -64.623313, 17.784407 ], [ -64.623434, 17.784539 ], [ -64.623543, 17.784688 ], [ -64.623773, 17.784968 ], [ -64.623945, 17.785129 ], [ -64.624054, 17.785216 ], [ -64.624227, 17.785338 ], [ -64.624313, 17.785382 ], [ -64.624439, 17.785432 ], [ -64.624591, 17.785482 ], [ -64.624681, 17.785493 ], [ -64.624843, 17.785535 ], [ -64.62498, 17.785564 ], [ -64.62509, 17.785603 ], [ -64.625222, 17.785636 ], [ -64.625469, 17.785735 ], [ -64.625762, 17.785807 ], [ -64.626016, 17.78586 ], [ -64.626034, 17.785866 ], [ -64.626136, 17.785899 ], [ -64.626423, 17.785972 ], [ -64.626538, 17.786026 ], [ -64.6267, 17.786125 ], [ -64.626889, 17.786284 ], [ -64.627016, 17.786446 ], [ -64.627137, 17.786621 ], [ -64.627332, 17.786935 ], [ -64.627447, 17.787106 ], [ -64.627516, 17.787261 ], [ -64.627516, 17.787381 ], [ -64.627545, 17.787514 ], [ -64.627597, 17.787629 ], [ -64.627672, 17.787769 ], [ -64.627741, 17.787912 ], [ -64.62785, 17.78807 ], [ -64.627919, 17.788184 ], [ -64.628011, 17.788301 ], [ -64.628166, 17.788456 ], [ -64.628281, 17.788581 ], [ -64.628362, 17.788691 ], [ -64.62839, 17.788793 ], [ -64.628402, 17.788935 ], [ -64.628356, 17.789028 ], [ -64.628322, 17.789082 ], [ -64.628206, 17.789129 ], [ -64.62808, 17.789154 ], [ -64.627862, 17.789165 ], [ -64.627562, 17.78914 ], [ -64.62743, 17.78916 ], [ -64.627287, 17.789161 ], [ -64.62716, 17.789187 ], [ -64.627005, 17.789284 ], [ -64.626861, 17.789386 ], [ -64.626683, 17.789561 ], [ -64.626562, 17.789628 ], [ -64.626332, 17.789749 ], [ -64.62601, 17.789845 ], [ -64.625803, 17.789898 ], [ -64.625613, 17.789965 ], [ -64.625234, 17.790036 ], [ -64.625113, 17.790049 ], [ -64.625051, 17.79005 ], [ -64.624964, 17.790052 ], [ -64.624814, 17.790098 ], [ -64.624676, 17.790086 ], [ -64.624423, 17.790109 ], [ -64.624303, 17.790103 ], [ -64.62421, 17.790115 ], [ -64.624138, 17.790131 ], [ -64.624038, 17.790137 ], [ -64.623885, 17.790125 ], [ -64.623607, 17.790063 ], [ -64.623457, 17.790015 ], [ -64.623308, 17.789993 ], [ -64.62317, 17.789947 ], [ -64.622877, 17.78981 ], [ -64.622756, 17.789738 ], [ -64.62266, 17.789647 ], [ -64.622537, 17.789541 ], [ -64.622445, 17.789481 ], [ -64.622353, 17.789464 ], [ -64.622244, 17.789474 ], [ -64.622123, 17.789497 ], [ -64.621939, 17.789569 ], [ -64.62179, 17.789602 ], [ -64.621611, 17.789631 ], [ -64.621485, 17.789634 ], [ -64.621353, 17.789619 ], [ -64.621215, 17.789584 ], [ -64.621054, 17.789563 ], [ -64.620898, 17.789492 ], [ -64.620768, 17.789443 ], [ -64.620623, 17.78937 ], [ -64.62045, 17.789294 ], [ -64.620318, 17.789266 ], [ -64.620157, 17.789204 ], [ -64.619881, 17.789123 ], [ -64.619682, 17.78908 ], [ -64.619455, 17.789013 ], [ -64.619024, 17.788929 ], [ -64.618863, 17.788908 ], [ -64.618714, 17.788868 ], [ -64.618564, 17.788847 ], [ -64.618394, 17.788832 ], [ -64.618256, 17.788805 ], [ -64.618144, 17.788787 ], [ -64.618031, 17.78875 ], [ -64.617865, 17.788722 ], [ -64.617754, 17.788686 ], [ -64.61764, 17.788677 ], [ -64.617535, 17.788627 ], [ -64.617363, 17.788554 ], [ -64.617219, 17.788506 ], [ -64.617092, 17.78848 ], [ -64.616673, 17.788479 ], [ -64.616511, 17.788485 ], [ -64.615839, 17.788467 ], [ -64.615488, 17.788423 ], [ -64.61535, 17.788424 ], [ -64.615178, 17.788412 ], [ -64.614976, 17.788447 ], [ -64.614827, 17.78844 ], [ -64.614574, 17.788451 ], [ -64.614417, 17.788454 ], [ -64.614217, 17.788458 ], [ -64.614062, 17.788452 ], [ -64.613804, 17.788407 ], [ -64.613659, 17.788374 ], [ -64.613487, 17.788303 ], [ -64.613363, 17.788265 ], [ -64.613067, 17.788093 ], [ -64.612926, 17.78805 ], [ -64.612688, 17.787949 ], [ -64.612406, 17.787851 ], [ -64.612239, 17.787785 ], [ -64.612067, 17.78773 ], [ -64.611923, 17.787675 ], [ -64.611791, 17.787608 ], [ -64.611666, 17.787565 ], [ -64.611475, 17.787476 ], [ -64.611316, 17.787367 ], [ -64.611257, 17.787299 ], [ -64.611217, 17.787192 ], [ -64.611262, 17.78708 ], [ -64.611276, 17.787063 ] ] ], [ [ [ -64.665877, 17.768336 ], [ -64.66578, 17.768387 ], [ -64.665561, 17.768409 ], [ -64.665234, 17.768475 ], [ -64.665113, 17.76853 ], [ -64.664826, 17.768707 ], [ -64.664584, 17.768806 ], [ -64.664257, 17.769125 ], [ -64.66417, 17.769108 ], [ -64.664153, 17.769038 ], [ -64.664211, 17.768755 ], [ -64.66428, 17.768635 ], [ -64.66436, 17.768458 ], [ -64.664474, 17.768265 ], [ -64.664653, 17.76789 ], [ -64.664785, 17.767731 ], [ -64.664854, 17.767582 ], [ -64.66494, 17.767346 ], [ -64.664957, 17.767053 ], [ -64.665009, 17.766861 ], [ -64.665212, 17.76648 ], [ -64.665222, 17.766464 ], [ -64.665267, 17.766271 ], [ -64.66532, 17.766018 ], [ -64.665287, 17.765986 ], [ -64.665228, 17.76593 ], [ -64.66521, 17.765671 ], [ -64.665308, 17.765423 ], [ -64.665518, 17.765117 ], [ -64.665739, 17.764795 ], [ -64.665906, 17.764608 ], [ -64.666026, 17.764542 ], [ -64.666101, 17.764635 ], [ -64.666118, 17.764746 ], [ -64.666256, 17.764553 ], [ -64.666348, 17.764475 ], [ -64.666451, 17.764479 ], [ -64.66655, 17.764558 ], [ -64.666698, 17.764755 ], [ -64.666796, 17.764799 ], [ -64.666922, 17.764809 ], [ -64.667043, 17.76486 ], [ -64.667084, 17.764955 ], [ -64.667056, 17.765241 ], [ -64.666946, 17.765762 ], [ -64.666808, 17.766077 ], [ -64.666779, 17.76611 ], [ -64.666751, 17.766144 ], [ -64.66624, 17.766557 ], [ -64.665923, 17.76686 ], [ -64.665779, 17.767123 ], [ -64.665733, 17.767277 ], [ -64.665711, 17.767455 ], [ -64.665779, 17.767582 ], [ -64.665895, 17.767907 ], [ -64.665924, 17.768067 ], [ -64.665929, 17.768216 ], [ -64.665877, 17.768336 ] ] ], [ [ [ -64.57176, 17.757865 ], [ -64.571722, 17.75784 ], [ -64.571647, 17.75778 ], [ -64.571555, 17.757719 ], [ -64.571383, 17.757647 ], [ -64.571307, 17.757633 ], [ -64.571222, 17.757647 ], [ -64.571113, 17.757647 ], [ -64.570814, 17.75762 ], [ -64.570664, 17.757592 ], [ -64.570342, 17.757438 ], [ -64.57029, 17.757404 ], [ -64.570036, 17.757238 ], [ -64.570002, 17.757211 ], [ -64.569969, 17.757184 ], [ -64.569894, 17.757146 ], [ -64.569825, 17.757102 ], [ -64.569739, 17.757102 ], [ -64.569606, 17.757146 ], [ -64.569525, 17.757188 ], [ -64.569468, 17.757234 ], [ -64.569422, 17.757278 ], [ -64.569313, 17.757324 ], [ -64.569244, 17.757383 ], [ -64.569187, 17.757388 ], [ -64.569117, 17.757371 ], [ -64.569008, 17.757353 ], [ -64.568934, 17.757311 ], [ -64.568715, 17.757258 ], [ -64.568543, 17.757201 ], [ -64.568376, 17.757135 ], [ -64.567962, 17.757046 ], [ -64.567807, 17.757002 ], [ -64.567479, 17.757013 ], [ -64.567318, 17.757046 ], [ -64.567002, 17.757079 ], [ -64.566824, 17.757057 ], [ -64.566552, 17.756985 ], [ -64.566443, 17.756929 ], [ -64.56633, 17.756853 ], [ -64.566219, 17.756758 ], [ -64.566134, 17.756671 ], [ -64.566031, 17.756555 ], [ -64.565973, 17.756423 ], [ -64.565922, 17.756346 ], [ -64.565845, 17.755977 ], [ -64.565801, 17.755763 ], [ -64.565782, 17.755712 ], [ -64.565755, 17.755636 ], [ -64.565685, 17.75553 ], [ -64.565583, 17.755437 ], [ -64.565445, 17.755371 ], [ -64.565323, 17.755321 ], [ -64.565238, 17.755272 ], [ -64.565215, 17.755217 ], [ -64.565193, 17.755138 ], [ -64.565232, 17.755079 ], [ -64.565289, 17.755011 ], [ -64.567949, 17.751448 ], [ -64.56795, 17.751448 ], [ -64.567981, 17.7514 ], [ -64.568055, 17.751329 ], [ -64.568106, 17.751301 ], [ -64.56817, 17.751268 ], [ -64.575731, 17.7464 ], [ -64.575811, 17.74635 ], [ -64.575921, 17.746312 ], [ -64.576053, 17.746279 ], [ -64.57623, 17.746249 ], [ -64.576398, 17.746227 ], [ -64.57657, 17.746185 ], [ -64.576697, 17.746141 ], [ -64.576829, 17.746103 ], [ -64.576944, 17.746064 ], [ -64.577064, 17.74597 ], [ -64.57715, 17.745868 ], [ -64.577282, 17.745764 ], [ -64.577392, 17.745706 ], [ -64.577496, 17.745623 ], [ -64.577573, 17.745591 ], [ -64.577616, 17.745574 ], [ -64.57795, 17.745464 ], [ -64.578128, 17.745447 ], [ -64.578226, 17.745425 ], [ -64.578369, 17.7454 ], [ -64.585802, 17.744859 ], [ -64.585917, 17.744853 ], [ -64.598196, 17.745218 ], [ -64.609894, 17.732863 ], [ -64.609933, 17.732834 ], [ -64.62113, 17.731251 ], [ -64.621171, 17.731244 ], [ -64.621246, 17.73123 ], [ -64.621355, 17.73121 ], [ -64.621493, 17.731185 ], [ -64.621637, 17.731188 ], [ -64.621798, 17.73121 ], [ -64.621901, 17.731243 ], [ -64.622069, 17.731267 ], [ -64.62208, 17.731268 ], [ -64.6222, 17.731285 ], [ -64.622315, 17.731309 ], [ -64.622407, 17.731306 ], [ -64.622516, 17.731298 ], [ -64.622718, 17.731199 ], [ -64.622843, 17.731147 ], [ -64.622934, 17.731095 ], [ -64.62297, 17.731076 ], [ -64.623079, 17.731025 ], [ -64.623218, 17.730984 ], [ -64.623602, 17.730921 ], [ -64.623735, 17.730907 ], [ -64.623781, 17.730895 ], [ -64.623844, 17.73084 ], [ -64.623959, 17.730796 ], [ -64.634235, 17.724056 ], [ -64.634368, 17.723948 ], [ -64.634441, 17.723896 ], [ -64.634579, 17.723825 ], [ -64.634815, 17.723683 ], [ -64.634965, 17.723621 ], [ -64.63519, 17.723497 ], [ -64.635257, 17.723456 ], [ -64.635689, 17.723197 ], [ -64.635948, 17.723067 ], [ -64.636177, 17.722933 ], [ -64.63639, 17.722845 ], [ -64.636603, 17.722758 ], [ -64.636764, 17.722684 ], [ -64.636937, 17.722599 ], [ -64.637022, 17.722553 ], [ -64.637166, 17.722453 ], [ -64.637356, 17.722295 ], [ -64.637459, 17.722233 ], [ -64.637644, 17.722169 ], [ -64.637822, 17.722081 ], [ -64.638011, 17.722031 ], [ -64.638143, 17.721979 ], [ -64.638345, 17.721932 ], [ -64.638511, 17.721886 ], [ -64.638695, 17.721855 ], [ -64.638885, 17.721811 ], [ -64.639072, 17.721769 ], [ -64.639167, 17.722026 ], [ -64.63943, 17.722731 ], [ -64.64065, 17.726012 ], [ -64.641115, 17.727261 ], [ -64.643653, 17.734084 ], [ -64.643686, 17.734174 ], [ -64.643879, 17.734685 ], [ -64.644253, 17.735676 ], [ -64.645103, 17.737932 ], [ -64.645556, 17.739134 ], [ -64.645627, 17.739322 ], [ -64.646637, 17.741999 ], [ -64.64731, 17.74179 ], [ -64.649243, 17.741217 ], [ -64.64991, 17.743263 ], [ -64.649917, 17.743285 ], [ -64.649985, 17.743495 ], [ -64.650163, 17.744044 ], [ -64.651061, 17.746811 ], [ -64.651094, 17.746905 ], [ -64.651121, 17.746977 ], [ -64.651385, 17.747803 ], [ -64.651438, 17.747972 ], [ -64.65153, 17.748249 ], [ -64.65174, 17.74889 ], [ -64.651803, 17.749087 ], [ -64.651845, 17.749218 ], [ -64.65189, 17.74936 ], [ -64.651928, 17.749485 ], [ -64.654326, 17.748733 ], [ -64.654739, 17.748592 ], [ -64.65636, 17.74808 ], [ -64.65674, 17.74797 ], [ -64.657213, 17.747822 ], [ -64.657394, 17.747766 ], [ -64.65803, 17.74757 ], [ -64.659363, 17.747161 ], [ -64.66002, 17.74696 ], [ -64.660084, 17.746938 ], [ -64.660247, 17.746884 ], [ -64.659562, 17.744749 ], [ -64.659413, 17.744283 ], [ -64.658565, 17.741643 ], [ -64.658525, 17.741516 ], [ -64.658398, 17.741119 ], [ -64.658281, 17.74075 ], [ -64.657619, 17.738687 ], [ -64.657658, 17.738675 ], [ -64.65771, 17.73866 ], [ -64.65776, 17.73859 ], [ -64.657698, 17.738528 ], [ -64.65768, 17.73851 ], [ -64.657591, 17.738291 ], [ -64.65756, 17.73821 ], [ -64.657495, 17.738025 ], [ -64.657455, 17.737905 ], [ -64.65735, 17.7376 ], [ -64.657349, 17.737599 ], [ -64.6573, 17.737472 ], [ -64.65729, 17.737445 ], [ -64.65723, 17.73729 ], [ -64.657203, 17.737209 ], [ -64.657129, 17.736966 ], [ -64.657105, 17.736885 ], [ -64.65706, 17.73674 ], [ -64.657045, 17.736695 ], [ -64.656861, 17.736128 ], [ -64.6568, 17.73594 ], [ -64.656724, 17.735707 ], [ -64.656496, 17.735012 ], [ -64.65642, 17.73478 ], [ -64.656418, 17.734766 ], [ -64.656412, 17.734724 ], [ -64.65641, 17.73471 ], [ -64.657156, 17.734472 ], [ -64.65773, 17.73429 ], [ -64.65787, 17.73424 ], [ -64.658, 17.73415 ], [ -64.65818, 17.73395 ], [ -64.65833, 17.73381 ], [ -64.65865, 17.73359 ], [ -64.65895, 17.73342 ], [ -64.659172, 17.733353 ], [ -64.65925, 17.73333 ], [ -64.65948, 17.73327 ], [ -64.659938, 17.733195 ], [ -64.660256, 17.733143 ], [ -64.66046, 17.73311 ], [ -64.66064, 17.7331 ], [ -64.66093, 17.73313 ], [ -64.6611, 17.73314 ], [ -64.661219, 17.733132 ], [ -64.66126, 17.73313 ], [ -64.66148, 17.73307 ], [ -64.661532, 17.733057 ], [ -64.661797, 17.732992 ], [ -64.66181, 17.73299 ], [ -64.662112, 17.732892 ], [ -64.662476, 17.732774 ], [ -64.662578, 17.732741 ], [ -64.6628, 17.73267 ], [ -64.66284, 17.73266 ], [ -64.663056, 17.732591 ], [ -64.663199, 17.732545 ], [ -64.663272, 17.732523 ], [ -64.663956, 17.732306 ], [ -64.664278, 17.732203 ], [ -64.66464, 17.73209 ], [ -64.664821, 17.732036 ], [ -64.665364, 17.731874 ], [ -64.665546, 17.731821 ], [ -64.66572, 17.73177 ], [ -64.665977, 17.731685 ], [ -64.667269, 17.731261 ], [ -64.6677, 17.73112 ], [ -64.667736, 17.73124 ], [ -64.667846, 17.731599 ], [ -64.667885, 17.73172 ], [ -64.66794, 17.7319 ], [ -64.667981, 17.73203 ], [ -64.66817, 17.73263 ], [ -64.668278, 17.73296 ], [ -64.66838, 17.73327 ], [ -64.66844, 17.733447 ], [ -64.66862, 17.733978 ], [ -64.668681, 17.734155 ], [ -64.66871, 17.73424 ], [ -64.668713, 17.734249 ], [ -64.668803, 17.734536 ], [ -64.668835, 17.734632 ], [ -64.66887, 17.734746 ], [ -64.66892, 17.7349 ], [ -64.668969, 17.735093 ], [ -64.669, 17.73521 ], [ -64.66907, 17.73537 ], [ -64.66923, 17.73583 ], [ -64.66929, 17.73606 ], [ -64.669336, 17.736214 ], [ -64.66947, 17.73666 ], [ -64.66947, 17.73681 ], [ -64.66938, 17.73698 ], [ -64.66915, 17.73734 ], [ -64.66913, 17.73747 ], [ -64.66918, 17.73757 ], [ -64.6693, 17.73765 ], [ -64.66951, 17.73774 ], [ -64.66971, 17.73781 ], [ -64.6699, 17.73791 ], [ -64.67004, 17.73805 ], [ -64.6701, 17.73815 ], [ -64.67013, 17.73825 ], [ -64.67016, 17.73849 ], [ -64.67018, 17.73871 ], [ -64.67018, 17.738734 ], [ -64.67018, 17.73887 ], [ -64.67015, 17.73904 ], [ -64.66999, 17.73932 ], [ -64.66992, 17.73954 ], [ -64.66995, 17.73962 ], [ -64.67002, 17.73971 ], [ -64.67162, 17.743383 ], [ -64.67192, 17.74328 ], [ -64.67198, 17.74326 ], [ -64.67205, 17.74326 ], [ -64.674962, 17.742363 ], [ -64.675399, 17.742229 ], [ -64.677332, 17.741642 ], [ -64.678132, 17.741404 ], [ -64.678305, 17.741351 ], [ -64.67916, 17.741091 ], [ -64.679469, 17.740996 ], [ -64.680165, 17.740785 ], [ -64.68328, 17.739814 ], [ -64.684225, 17.742397 ], [ -64.685175, 17.744993 ], [ -64.685349, 17.74547 ], [ -64.685423, 17.74567 ], [ -64.685693, 17.746567 ], [ -64.686286, 17.7485 ], [ -64.686874, 17.750412 ], [ -64.686791, 17.750384 ], [ -64.686582, 17.75033 ], [ -64.686355, 17.750241 ], [ -64.685843, 17.74996 ], [ -64.685702, 17.749868 ], [ -64.68551, 17.749772 ], [ -64.685383, 17.749723 ], [ -64.685205, 17.749668 ], [ -64.685033, 17.749591 ], [ -64.684837, 17.749469 ], [ -64.684717, 17.74937 ], [ -64.68463, 17.74926 ], [ -64.684587, 17.749207 ], [ -64.68454, 17.749159 ], [ -64.684458, 17.749135 ], [ -64.684395, 17.749133 ], [ -64.684329, 17.749151 ], [ -64.684125, 17.749232 ], [ -64.683993, 17.749278 ], [ -64.683918, 17.749295 ], [ -64.683872, 17.749304 ], [ -64.683734, 17.74932 ], [ -64.683619, 17.74932 ], [ -64.68351, 17.749304 ], [ -64.683418, 17.749282 ], [ -64.683366, 17.749232 ], [ -64.683314, 17.749172 ], [ -64.683148, 17.748891 ], [ -64.682981, 17.748709 ], [ -64.68282, 17.748555 ], [ -64.682776, 17.748518 ], [ -64.682731, 17.748496 ], [ -64.682653, 17.748483 ], [ -64.68259, 17.748483 ], [ -64.682538, 17.748488 ], [ -64.68242, 17.748545 ], [ -64.682356, 17.748633 ], [ -64.682308, 17.748687 ], [ -64.682228, 17.748764 ], [ -64.682188, 17.748791 ], [ -64.682062, 17.748859 ], [ -64.681955, 17.748908 ], [ -64.681912, 17.748948 ], [ -64.681845, 17.748974 ], [ -64.681745, 17.749001 ], [ -64.681722, 17.748989 ], [ -64.681607, 17.748978 ], [ -64.681458, 17.748945 ], [ -64.68132, 17.748934 ], [ -64.681147, 17.748959 ], [ -64.681029, 17.748962 ], [ -64.680995, 17.74895 ], [ -64.680941, 17.748922 ], [ -64.680883, 17.748879 ], [ -64.680828, 17.748864 ], [ -64.680762, 17.748863 ], [ -64.680647, 17.748896 ], [ -64.680103, 17.749156 ], [ -64.680043, 17.749226 ], [ -64.680009, 17.749314 ], [ -64.679974, 17.749501 ], [ -64.679992, 17.749584 ], [ -64.679992, 17.749705 ], [ -64.679969, 17.749755 ], [ -64.679882, 17.74987 ], [ -64.679831, 17.749925 ], [ -64.679756, 17.750063 ], [ -64.67975, 17.750102 ], [ -64.679763, 17.750159 ], [ -64.679808, 17.750258 ], [ -64.679819, 17.750322 ], [ -64.679819, 17.750355 ], [ -64.679784, 17.750482 ], [ -64.679747, 17.750571 ], [ -64.67971, 17.750658 ], [ -64.679646, 17.750889 ], [ -64.67956, 17.751165 ], [ -64.679554, 17.751275 ], [ -64.679571, 17.751374 ], [ -64.679571, 17.751468 ], [ -64.67956, 17.751611 ], [ -64.67956, 17.751721 ], [ -64.679629, 17.751908 ], [ -64.679686, 17.751974 ], [ -64.679744, 17.752018 ], [ -64.67979, 17.75204 ], [ -64.679882, 17.752029 ], [ -64.679968, 17.752002 ], [ -64.68006, 17.751996 ], [ -64.680503, 17.751721 ], [ -64.680669, 17.751655 ], [ -64.68073, 17.751641 ], [ -64.680842, 17.751617 ], [ -64.681146, 17.751584 ], [ -64.681394, 17.751567 ], [ -64.681559, 17.75158 ], [ -64.681606, 17.751583 ], [ -64.681652, 17.751592 ], [ -64.681807, 17.751617 ], [ -64.68206, 17.75165 ], [ -64.682273, 17.751689 ], [ -64.682457, 17.751727 ], [ -64.682785, 17.751832 ], [ -64.682997, 17.751964 ], [ -64.683055, 17.752019 ], [ -64.683141, 17.752135 ], [ -64.68321, 17.752278 ], [ -64.683256, 17.752438 ], [ -64.683261, 17.752537 ], [ -64.683256, 17.752609 ], [ -64.683233, 17.752669 ], [ -64.683227, 17.75273 ], [ -64.683198, 17.752845 ], [ -64.683187, 17.752983 ], [ -64.683198, 17.75306 ], [ -64.683238, 17.753126 ], [ -64.683267, 17.753215 ], [ -64.68329, 17.753303 ], [ -64.683296, 17.753347 ], [ -64.68329, 17.753391 ], [ -64.683422, 17.753413 ], [ -64.683497, 17.753396 ], [ -64.683554, 17.753396 ], [ -64.683692, 17.753374 ], [ -64.683744, 17.753347 ], [ -64.683802, 17.753308 ], [ -64.683924, 17.753222 ], [ -64.683971, 17.753192 ], [ -64.684009, 17.753165 ], [ -64.684445, 17.753099 ], [ -64.684733, 17.75305 ], [ -64.684917, 17.752978 ], [ -64.685205, 17.752842 ], [ -64.685331, 17.752763 ], [ -64.685693, 17.752554 ], [ -64.685992, 17.752411 ], [ -64.686187, 17.752339 ], [ -64.686469, 17.752262 ], [ -64.686716, 17.752207 ], [ -64.686975, 17.752155 ], [ -64.687257, 17.75213 ], [ -64.687458, 17.752108 ], [ -64.68801, 17.752119 ], [ -64.688147, 17.752148 ], [ -64.688435, 17.752164 ], [ -64.688602, 17.752153 ], [ -64.688717, 17.752136 ], [ -64.688775, 17.752105 ], [ -64.688838, 17.752049 ], [ -64.688918, 17.75196 ], [ -64.688958, 17.751905 ], [ -64.689007, 17.751856 ], [ -64.689079, 17.751822 ], [ -64.689326, 17.75174 ], [ -64.689406, 17.751729 ], [ -64.689453, 17.75174 ], [ -64.689498, 17.751773 ], [ -64.689544, 17.751817 ], [ -64.689608, 17.751866 ], [ -64.689683, 17.751904 ], [ -64.689757, 17.751926 ], [ -64.689866, 17.751944 ], [ -64.689987, 17.751982 ], [ -64.690073, 17.752032 ], [ -64.690113, 17.752109 ], [ -64.690125, 17.752169 ], [ -64.690119, 17.75223 ], [ -64.690085, 17.752391 ], [ -64.690079, 17.752461 ], [ -64.690079, 17.752522 ], [ -64.69009, 17.752649 ], [ -64.690142, 17.752797 ], [ -64.690184, 17.75285 ], [ -64.690199, 17.752869 ], [ -64.690257, 17.752924 ], [ -64.690435, 17.753034 ], [ -64.690711, 17.753172 ], [ -64.690843, 17.753233 ], [ -64.690981, 17.753277 ], [ -64.691361, 17.753403 ], [ -64.691545, 17.753475 ], [ -64.691769, 17.75353 ], [ -64.691907, 17.753547 ], [ -64.692016, 17.753624 ], [ -64.692056, 17.753624 ], [ -64.692073, 17.753613 ], [ -64.692093, 17.753574 ], [ -64.692119, 17.753453 ], [ -64.692144, 17.7534 ], [ -64.692171, 17.75331 ], [ -64.692234, 17.753128 ], [ -64.692286, 17.753002 ], [ -64.692338, 17.752908 ], [ -64.69242, 17.75281 ], [ -64.692482, 17.752699 ], [ -64.692564, 17.75259 ], [ -64.692667, 17.752434 ], [ -64.692675, 17.752391 ], [ -64.692689, 17.752319 ], [ -64.692713, 17.752248 ], [ -64.692729, 17.752076 ], [ -64.692844, 17.751729 ], [ -64.692844, 17.751658 ], [ -64.692838, 17.751597 ], [ -64.692821, 17.75152 ], [ -64.692781, 17.75141 ], [ -64.692783, 17.751366 ], [ -64.692787, 17.7513 ], [ -64.692798, 17.751245 ], [ -64.692815, 17.751201 ], [ -64.692861, 17.751129 ], [ -64.692908, 17.751091 ], [ -64.692984, 17.751049 ], [ -64.69305, 17.751012 ], [ -64.693108, 17.75098 ], [ -64.693229, 17.750942 ], [ -64.693287, 17.750947 ], [ -64.693465, 17.750931 ], [ -64.693545, 17.750892 ], [ -64.69362, 17.750837 ], [ -64.693695, 17.750766 ], [ -64.69381, 17.750628 ], [ -64.69389, 17.750567 ], [ -64.693971, 17.750523 ], [ -64.694109, 17.750468 ], [ -64.694207, 17.750413 ], [ -64.694276, 17.750386 ], [ -64.694425, 17.750275 ], [ -64.694517, 17.750198 ], [ -64.694597, 17.750138 ], [ -64.694626, 17.750121 ], [ -64.694674, 17.75011 ], [ -64.694758, 17.750121 ], [ -64.69481, 17.750143 ], [ -64.69485, 17.750149 ], [ -64.69492, 17.750181 ], [ -64.694968, 17.750182 ], [ -64.695034, 17.750176 ], [ -64.695115, 17.75016 ], [ -64.695287, 17.75016 ], [ -64.695356, 17.750165 ], [ -64.695414, 17.750149 ], [ -64.695506, 17.750088 ], [ -64.695529, 17.750066 ], [ -64.695661, 17.74989 ], [ -64.695741, 17.749824 ], [ -64.695787, 17.749819 ], [ -64.695845, 17.74983 ], [ -64.695891, 17.749863 ], [ -64.695917, 17.749876 ], [ -64.695926, 17.749881 ], [ -64.695927, 17.749882 ], [ -64.695943, 17.74989 ], [ -64.695955, 17.749904 ], [ -64.695958, 17.749908 ], [ -64.695968, 17.749918 ], [ -64.695954, 17.750022 ], [ -64.695908, 17.750188 ], [ -64.695881, 17.750233 ], [ -64.695858, 17.750299 ], [ -64.695828, 17.750347 ], [ -64.695741, 17.750452 ], [ -64.695684, 17.750535 ], [ -64.695615, 17.750617 ], [ -64.695552, 17.750722 ], [ -64.695408, 17.750937 ], [ -64.695392, 17.750963 ], [ -64.695283, 17.751164 ], [ -64.695224, 17.751284 ], [ -64.695172, 17.75141 ], [ -64.695109, 17.751542 ], [ -64.695017, 17.751757 ], [ -64.694961, 17.751858 ], [ -64.694907, 17.751945 ], [ -64.69485, 17.75206 ], [ -64.694804, 17.752165 ], [ -64.694741, 17.752275 ], [ -64.694654, 17.75244 ], [ -64.694557, 17.752611 ], [ -64.694459, 17.752732 ], [ -64.694338, 17.752837 ], [ -64.694212, 17.752969 ], [ -64.694131, 17.75309 ], [ -64.693982, 17.753343 ], [ -64.693924, 17.753459 ], [ -64.693849, 17.753569 ], [ -64.693821, 17.753663 ], [ -64.693798, 17.753723 ], [ -64.693832, 17.7539 ], [ -64.693884, 17.754004 ], [ -64.693918, 17.754043 ], [ -64.693972, 17.754096 ], [ -64.694051, 17.754175 ], [ -64.694211, 17.754373 ], [ -64.694499, 17.754759 ], [ -64.694579, 17.754886 ], [ -64.694596, 17.755018 ], [ -64.69459, 17.7551 ], [ -64.694586, 17.75515 ], [ -64.694585, 17.755152 ], [ -64.694584, 17.755183 ], [ -64.694581, 17.755216 ], [ -64.694573, 17.755244 ], [ -64.694539, 17.755299 ], [ -64.694537, 17.7553 ], [ -64.694514, 17.755324 ], [ -64.694498, 17.755335 ], [ -64.694491, 17.75534 ], [ -64.694464, 17.755359 ], [ -64.694432, 17.75537 ], [ -64.687923, 17.757938 ], [ -64.682156, 17.760215 ], [ -64.682115, 17.760265 ], [ -64.682046, 17.760309 ], [ -64.681966, 17.76032 ], [ -64.681914, 17.760281 ], [ -64.681845, 17.760215 ], [ -64.681737, 17.760095 ], [ -64.681598, 17.759939 ], [ -64.681581, 17.759923 ], [ -64.681483, 17.759879 ], [ -64.681431, 17.759851 ], [ -64.68138, 17.759818 ], [ -64.681242, 17.759769 ], [ -64.681127, 17.759747 ], [ -64.680977, 17.759747 ], [ -64.680834, 17.759758 ], [ -64.680659, 17.759794 ], [ -64.68065, 17.759796 ], [ -64.680644, 17.759785 ], [ -64.680565, 17.759848 ], [ -64.680512, 17.759901 ], [ -64.680362, 17.760104 ], [ -64.680218, 17.760275 ], [ -64.680026, 17.760545 ], [ -64.680023, 17.760551 ], [ -64.679921, 17.760668 ], [ -64.679883, 17.760707 ], [ -64.67985, 17.760738 ], [ -64.679799, 17.760776 ], [ -64.679735, 17.760798 ], [ -64.679734, 17.760797 ], [ -64.672556, 17.762077 ], [ -64.672389, 17.762089 ], [ -64.672388, 17.762088 ], [ -64.67228, 17.762061 ], [ -64.672228, 17.762006 ], [ -64.672205, 17.761978 ], [ -64.672165, 17.761929 ], [ -64.672085, 17.761885 ], [ -64.671981, 17.761797 ], [ -64.671959, 17.76178 ], [ -64.671883, 17.761725 ], [ -64.671797, 17.761648 ], [ -64.671688, 17.761593 ], [ -64.671573, 17.761555 ], [ -64.671475, 17.761505 ], [ -64.671377, 17.761466 ], [ -64.671195, 17.761417 ], [ -64.671193, 17.761417 ], [ -64.671061, 17.761373 ], [ -64.670825, 17.761313 ], [ -64.670819, 17.761312 ], [ -64.670687, 17.761296 ], [ -64.670595, 17.761291 ], [ -64.670526, 17.761261 ], [ -64.670423, 17.761225 ], [ -64.670308, 17.761173 ], [ -64.670272, 17.76115 ], [ -64.670245, 17.761131 ], [ -64.670043, 17.761043 ], [ -64.669957, 17.761026 ], [ -64.669876, 17.76098 ], [ -64.669813, 17.760938 ], [ -64.66975, 17.760856 ], [ -64.669676, 17.76079 ], [ -64.669601, 17.760734 ], [ -64.669537, 17.760701 ], [ -64.669365, 17.760597 ], [ -64.669227, 17.760541 ], [ -64.669146, 17.760516 ], [ -64.669083, 17.760497 ], [ -64.669036, 17.760531 ], [ -64.669071, 17.760569 ], [ -64.669095, 17.760603 ], [ -64.669118, 17.760652 ], [ -64.669152, 17.760702 ], [ -64.669158, 17.760735 ], [ -64.669158, 17.76076 ], [ -64.669138, 17.760775 ], [ -64.669101, 17.760806 ], [ -64.669049, 17.760833 ], [ -64.669009, 17.760862 ], [ -64.668917, 17.760893 ], [ -64.668847, 17.760905 ], [ -64.668785, 17.7609 ], [ -64.668595, 17.7609 ], [ -64.668054, 17.760939 ], [ -64.667997, 17.760939 ], [ -64.667929, 17.760957 ], [ -64.667899, 17.760966 ], [ -64.667727, 17.760967 ], [ -64.667658, 17.760976 ], [ -64.667551, 17.760997 ], [ -64.667427, 17.761023 ], [ -64.667272, 17.761054 ], [ -64.667117, 17.761103 ], [ -64.667019, 17.761126 ], [ -64.667018, 17.761126 ], [ -64.66492, 17.761366 ], [ -64.658339, 17.762119 ], [ -64.658092, 17.762207 ], [ -64.658012, 17.762247 ], [ -64.657943, 17.762274 ], [ -64.657839, 17.762307 ], [ -64.657753, 17.762358 ], [ -64.65769, 17.762378 ], [ -64.657609, 17.762412 ], [ -64.657454, 17.7625 ], [ -64.657315, 17.762602 ], [ -64.657298, 17.762616 ], [ -64.657247, 17.762709 ], [ -64.657161, 17.762906 ], [ -64.657103, 17.763002 ], [ -64.657046, 17.763079 ], [ -64.656989, 17.763135 ], [ -64.65692, 17.763195 ], [ -64.656874, 17.763259 ], [ -64.656848, 17.763282 ], [ -64.656823, 17.763305 ], [ -64.656788, 17.763371 ], [ -64.656748, 17.763377 ], [ -64.656708, 17.763366 ], [ -64.656673, 17.763316 ], [ -64.656598, 17.763267 ], [ -64.656512, 17.763228 ], [ -64.656432, 17.763212 ], [ -64.656271, 17.763212 ], [ -64.655989, 17.763245 ], [ -64.655759, 17.763361 ], [ -64.655523, 17.763493 ], [ -64.655414, 17.763592 ], [ -64.655247, 17.763702 ], [ -64.655201, 17.763757 ], [ -64.655155, 17.763829 ], [ -64.655109, 17.763917 ], [ -64.655162, 17.764226 ], [ -64.655242, 17.764428 ], [ -64.655449, 17.764576 ], [ -64.655552, 17.764628 ], [ -64.65557, 17.76464 ], [ -64.655587, 17.76465 ], [ -64.655633, 17.764683 ], [ -64.655685, 17.764743 ], [ -64.655686, 17.764744 ], [ -64.655731, 17.764804 ], [ -64.655759, 17.764853 ], [ -64.655765, 17.764903 ], [ -64.655742, 17.764936 ], [ -64.655696, 17.764953 ], [ -64.655616, 17.764969 ], [ -64.655564, 17.765008 ], [ -64.655535, 17.765041 ], [ -64.655489, 17.765178 ], [ -64.65546, 17.76527 ], [ -64.655443, 17.765344 ], [ -64.65542, 17.765415 ], [ -64.655414, 17.765485 ], [ -64.655391, 17.765607 ], [ -64.655374, 17.765658 ], [ -64.655374, 17.7657 ], [ -64.655299, 17.76582 ], [ -64.655259, 17.765855 ], [ -64.655195, 17.765844 ], [ -64.655173, 17.765833 ], [ -64.655158, 17.765745 ], [ -64.655156, 17.765729 ], [ -64.655155, 17.765695 ], [ -64.655158, 17.765661 ], [ -64.655166, 17.76558 ], [ -64.655178, 17.765535 ], [ -64.655155, 17.765492 ], [ -64.655109, 17.765497 ], [ -64.65508, 17.765508 ], [ -64.655052, 17.765542 ], [ -64.655041, 17.765606 ], [ -64.655029, 17.765635 ], [ -64.655018, 17.765688 ], [ -64.655017, 17.765694 ], [ -64.654982, 17.765733 ], [ -64.654955, 17.765784 ], [ -64.654919, 17.765787 ], [ -64.654897, 17.765773 ], [ -64.647167, 17.761899 ], [ -64.647121, 17.761895 ], [ -64.647117, 17.761895 ], [ -64.646989, 17.761879 ], [ -64.646945, 17.761874 ], [ -64.640839, 17.759463 ], [ -64.637257, 17.760318 ], [ -64.637211, 17.760307 ], [ -64.637039, 17.760229 ], [ -64.63697, 17.760162 ], [ -64.636873, 17.760082 ], [ -64.636741, 17.759961 ], [ -64.636569, 17.759811 ], [ -64.636547, 17.759785 ], [ -64.636494, 17.759721 ], [ -64.636458, 17.759678 ], [ -64.636332, 17.759585 ], [ -64.636236, 17.759509 ], [ -64.636201, 17.759482 ], [ -64.636159, 17.759459 ], [ -64.63601, 17.759382 ], [ -64.635837, 17.759304 ], [ -64.635688, 17.759271 ], [ -64.635384, 17.759227 ], [ -64.6353, 17.759218 ], [ -64.63501, 17.759189 ], [ -64.634803, 17.759161 ], [ -64.634641, 17.759151 ], [ -64.634446, 17.759124 ], [ -64.634274, 17.759107 ], [ -64.634073, 17.759073 ], [ -64.63374, 17.758986 ], [ -64.633556, 17.758946 ], [ -64.633494, 17.758928 ], [ -64.633385, 17.758896 ], [ -64.63325, 17.758858 ], [ -64.633056, 17.758827 ], [ -64.633049, 17.758826 ], [ -64.632946, 17.758806 ], [ -64.632905, 17.758798 ], [ -64.632637, 17.758794 ], [ -64.632492, 17.758808 ], [ -64.632308, 17.758848 ], [ -64.632172, 17.758893 ], [ -64.632095, 17.75892 ], [ -64.631958, 17.758981 ], [ -64.631802, 17.759028 ], [ -64.631647, 17.759106 ], [ -64.631503, 17.759189 ], [ -64.631388, 17.759249 ], [ -64.631331, 17.759321 ], [ -64.631268, 17.759421 ], [ -64.631227, 17.759525 ], [ -64.631181, 17.759668 ], [ -64.631135, 17.759833 ], [ -64.631147, 17.759982 ], [ -64.631192, 17.760131 ], [ -64.631222, 17.760291 ], [ -64.631228, 17.760424 ], [ -64.631182, 17.76056 ], [ -64.631162, 17.760662 ], [ -64.631153, 17.76071 ], [ -64.631102, 17.760791 ], [ -64.631079, 17.760832 ], [ -64.630998, 17.760948 ], [ -64.630918, 17.761052 ], [ -64.630878, 17.761113 ], [ -64.63078, 17.761185 ], [ -64.630654, 17.761207 ], [ -64.630624, 17.761204 ], [ -64.630534, 17.761198 ], [ -64.630504, 17.761196 ], [ -64.624565, 17.759683 ], [ -64.624502, 17.759693 ], [ -64.624416, 17.759693 ], [ -64.616546, 17.761357 ], [ -64.616368, 17.761335 ], [ -64.616276, 17.761302 ], [ -64.616175, 17.761253 ], [ -64.616126, 17.76123 ], [ -64.615962, 17.7612 ], [ -64.615887, 17.761183 ], [ -64.615747, 17.761153 ], [ -64.615534, 17.761153 ], [ -64.615293, 17.761186 ], [ -64.615062, 17.761184 ], [ -64.612049, 17.761085 ], [ -64.611957, 17.76109 ], [ -64.611831, 17.761041 ], [ -64.599955, 17.757176 ], [ -64.599817, 17.757171 ], [ -64.599656, 17.757154 ], [ -64.599449, 17.757105 ], [ -64.59925, 17.757134 ], [ -64.599038, 17.757166 ], [ -64.598977, 17.757176 ], [ -64.598805, 17.757143 ], [ -64.598673, 17.757072 ], [ -64.598564, 17.756978 ], [ -64.59842, 17.756862 ], [ -64.598316, 17.756794 ], [ -64.59815, 17.756703 ], [ -64.597447, 17.75653 ], [ -64.597234, 17.756525 ], [ -64.597131, 17.756535 ], [ -64.597004, 17.756591 ], [ -64.596866, 17.756689 ], [ -64.596792, 17.756762 ], [ -64.59662, 17.756835 ], [ -64.596499, 17.756882 ], [ -64.596304, 17.756906 ], [ -64.596283, 17.756903 ], [ -64.596086, 17.756879 ], [ -64.595982, 17.756857 ], [ -64.595816, 17.756846 ], [ -64.595527, 17.756883 ], [ -64.595379, 17.756917 ], [ -64.595218, 17.756901 ], [ -64.589831, 17.75771 ], [ -64.5896, 17.757735 ], [ -64.589394, 17.757776 ], [ -64.589298, 17.757789 ], [ -64.589135, 17.757813 ], [ -64.588916, 17.757858 ], [ -64.588727, 17.757864 ], [ -64.588634, 17.757878 ], [ -64.588466, 17.757922 ], [ -64.588434, 17.757931 ], [ -64.588215, 17.758011 ], [ -64.588059, 17.758104 ], [ -64.587945, 17.758217 ], [ -64.587852, 17.758349 ], [ -64.587841, 17.758368 ], [ -64.587686, 17.758469 ], [ -64.587618, 17.758536 ], [ -64.583626, 17.761768 ], [ -64.583579, 17.761801 ], [ -64.583512, 17.761851 ], [ -64.583427, 17.761878 ], [ -64.583373, 17.761896 ], [ -64.583306, 17.761918 ], [ -64.583161, 17.761921 ], [ -64.583007, 17.761913 ], [ -64.574618, 17.760269 ], [ -64.57447, 17.760253 ], [ -64.574354, 17.760207 ], [ -64.574314, 17.760176 ], [ -64.574233, 17.760114 ], [ -64.574172, 17.760063 ], [ -64.574141, 17.760037 ], [ -64.574044, 17.759923 ], [ -64.573898, 17.759766 ], [ -64.573796, 17.759656 ], [ -64.573688, 17.759581 ], [ -64.573602, 17.759493 ], [ -64.573521, 17.759446 ], [ -64.573423, 17.759372 ], [ -64.573262, 17.759229 ], [ -64.573148, 17.759162 ], [ -64.573055, 17.759091 ], [ -64.572951, 17.759016 ], [ -64.572923, 17.758997 ], [ -64.572818, 17.758913 ], [ -64.57265, 17.758748 ], [ -64.572578, 17.758678 ], [ -64.57252, 17.758599 ], [ -64.572481, 17.758545 ], [ -64.57237, 17.758428 ], [ -64.572262, 17.758347 ], [ -64.572103, 17.758179 ], [ -64.571967, 17.758036 ], [ -64.571906, 17.757972 ], [ -64.57182, 17.757906 ], [ -64.57176, 17.757865 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "010", "TRACTCE10": "990000", "GEOID10": "78010990000", "NAME10": "9900", "NAMELSAD10": "Census Tract 9900", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 628047603, "INTPTLAT10": "+17.7618968", "INTPTLON10": "-064.5681786" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.905885, 17.812203 ], [ -64.899298, 17.815463 ], [ -64.89556, 17.816676 ], [ -64.890482, 17.818325 ], [ -64.882729, 17.820339 ], [ -64.87671, 17.821234 ], [ -64.874589, 17.821206 ], [ -64.872486, 17.821537 ], [ -64.869207, 17.821628 ], [ -64.865545, 17.821313 ], [ -64.861566, 17.820996 ], [ -64.85619, 17.819425 ], [ -64.851767, 17.817687 ], [ -64.85001, 17.817175 ], [ -64.846882, 17.816387 ], [ -64.844775, 17.815637 ], [ -64.843445, 17.814754 ], [ -64.842141, 17.81475 ], [ -64.841221, 17.815085 ], [ -64.839017, 17.81697 ], [ -64.834894, 17.820303 ], [ -64.830249, 17.823025 ], [ -64.827202, 17.824569 ], [ -64.822243, 17.826918 ], [ -64.819411, 17.828092 ], [ -64.815808, 17.828925 ], [ -64.812593, 17.829657 ], [ -64.810899, 17.829821 ], [ -64.809494, 17.829444 ], [ -64.806839, 17.83055 ], [ -64.80376, 17.831689 ], [ -64.79807, 17.833055 ], [ -64.789635, 17.834175 ], [ -64.783075, 17.834524 ], [ -64.774903, 17.834056 ], [ -64.769029, 17.832852 ], [ -64.767656, 17.832644 ], [ -64.765149, 17.833142 ], [ -64.764478, 17.833121 ], [ -64.762647, 17.833065 ], [ -64.758443, 17.833929 ], [ -64.749586, 17.835181 ], [ -64.749585, 17.835181 ], [ -64.747072, 17.835179 ], [ -64.743188, 17.834753 ], [ -64.738349, 17.833833 ], [ -64.733545, 17.832843 ], [ -64.729866, 17.831265 ], [ -64.724385, 17.829167 ], [ -64.71851, 17.825924 ], [ -64.713833, 17.822599 ], [ -64.708833, 17.818195 ], [ -64.704255, 17.813584 ], [ -64.700525, 17.809198 ], [ -64.697524, 17.808761 ], [ -64.690002, 17.813249 ], [ -64.686167, 17.815088 ], [ -64.685442, 17.817735 ], [ -64.682012, 17.822715 ], [ -64.678999, 17.826269 ], [ -64.67724, 17.82788 ], [ -64.673278, 17.831512 ], [ -64.668113, 17.835227 ], [ -64.663399, 17.837584 ], [ -64.652347, 17.842383 ], [ -64.647098, 17.843731 ], [ -64.638882, 17.844877 ], [ -64.638881, 17.844877 ], [ -64.632284, 17.844954 ], [ -64.624583, 17.844505 ], [ -64.615186, 17.843985 ], [ -64.612062, 17.843497 ], [ -64.602154, 17.840859 ], [ -64.599372, 17.839864 ], [ -64.592313, 17.837342 ], [ -64.583537, 17.833078 ], [ -64.579983, 17.830908 ], [ -64.574046, 17.827065 ], [ -64.567115, 17.822791 ], [ -64.563736, 17.819608 ], [ -64.558791, 17.814412 ], [ -64.556191, 17.810553 ], [ -64.553169, 17.80848 ], [ -64.546774, 17.804875 ], [ -64.538884, 17.799762 ], [ -64.534192, 17.796282 ], [ -64.529821, 17.793003 ], [ -64.526869, 17.789986 ], [ -64.523061, 17.785019 ], [ -64.520069, 17.779576 ], [ -64.516005, 17.771444 ], [ -64.513178, 17.760407 ], [ -64.512674, 17.757142 ], [ -64.512734, 17.752357 ], [ -64.5136, 17.748029 ], [ -64.514093, 17.747061 ], [ -64.51686, 17.738683 ], [ -64.520297, 17.729863 ], [ -64.524722, 17.722703 ], [ -64.531016, 17.715913 ], [ -64.539776, 17.708714 ], [ -64.548748, 17.703038 ], [ -64.54958, 17.702692 ], [ -64.560964, 17.697967 ], [ -64.571317, 17.695271 ], [ -64.576988, 17.694516 ], [ -64.579239, 17.692749 ], [ -64.584974, 17.689417 ], [ -64.58976, 17.687035 ], [ -64.593596, 17.685367 ], [ -64.596445, 17.683362 ], [ -64.599068, 17.682033 ], [ -64.600879, 17.681116 ], [ -64.606823, 17.677105 ], [ -64.616151, 17.673867 ], [ -64.618059, 17.673033 ], [ -64.618333, 17.672913 ], [ -64.622307, 17.670161 ], [ -64.624585, 17.669307 ], [ -64.628011, 17.667826 ], [ -64.633686, 17.664643 ], [ -64.646836, 17.660238 ], [ -64.654733, 17.659454 ], [ -64.661186, 17.659314 ], [ -64.67014, 17.657041 ], [ -64.674545, 17.655312 ], [ -64.676117, 17.654738 ], [ -64.68096, 17.652973 ], [ -64.687834, 17.650803 ], [ -64.690839, 17.650346 ], [ -64.696118, 17.649545 ], [ -64.698902, 17.648899 ], [ -64.708138, 17.647537 ], [ -64.711098, 17.646723 ], [ -64.716559, 17.643504 ], [ -64.724947, 17.640722 ], [ -64.727978, 17.639874 ], [ -64.734181, 17.638379 ], [ -64.73508, 17.638312 ], [ -64.737459, 17.638138 ], [ -64.740348, 17.636342 ], [ -64.746127, 17.634543 ], [ -64.749589, 17.633696 ], [ -64.75041, 17.633375 ], [ -64.752909, 17.632052 ], [ -64.756436, 17.630646 ], [ -64.759135, 17.630384 ], [ -64.761006, 17.630203 ], [ -64.767565, 17.629931 ], [ -64.772746, 17.629985 ], [ -64.776249, 17.629321 ], [ -64.781228, 17.62779 ], [ -64.788861, 17.625844 ], [ -64.789236, 17.625791 ], [ -64.794596, 17.625044 ], [ -64.799397, 17.624807 ], [ -64.801686, 17.624695 ], [ -64.806518, 17.625159 ], [ -64.811528, 17.625687 ], [ -64.81486, 17.626841 ], [ -64.81759, 17.627787 ], [ -64.82191, 17.629577 ], [ -64.824489, 17.631191 ], [ -64.8257, 17.631544 ], [ -64.83005, 17.630663 ], [ -64.835754, 17.630132 ], [ -64.843842, 17.630104 ], [ -64.851308, 17.631166 ], [ -64.859898, 17.633765 ], [ -64.860341, 17.633992 ], [ -64.86258, 17.635141 ], [ -64.865563, 17.635329 ], [ -64.869341, 17.634152 ], [ -64.870568, 17.633254 ], [ -64.874591, 17.630767 ], [ -64.876796, 17.62938 ], [ -64.885411, 17.625952 ], [ -64.892525, 17.62423 ], [ -64.900361, 17.623468 ], [ -64.908023, 17.623958 ], [ -64.915914, 17.625231 ], [ -64.925838, 17.629043 ], [ -64.935171, 17.635186 ], [ -64.943583, 17.644095 ], [ -64.949714, 17.653274 ], [ -64.953181, 17.661022 ], [ -64.955032, 17.666611 ], [ -64.955582, 17.668772 ], [ -64.956489, 17.672329 ], [ -64.956714, 17.678977 ], [ -64.956384, 17.683652 ], [ -64.954474, 17.691829 ], [ -64.9518, 17.699281 ], [ -64.947927, 17.706344 ], [ -64.943503, 17.712686 ], [ -64.939564, 17.716695 ], [ -64.938938, 17.717534 ], [ -64.940987, 17.722311 ], [ -64.943731, 17.729167 ], [ -64.945424, 17.736822 ], [ -64.946365, 17.744702 ], [ -64.946811, 17.748028 ], [ -64.945446, 17.756633 ], [ -64.943599, 17.762612 ], [ -64.941257, 17.768829 ], [ -64.937283, 17.777548 ], [ -64.934196, 17.784679 ], [ -64.931536, 17.788973 ], [ -64.926787, 17.794962 ], [ -64.924592, 17.797025 ], [ -64.92406, 17.797525 ], [ -64.923528, 17.798025 ], [ -64.920196, 17.801157 ], [ -64.916335, 17.804544 ], [ -64.910561, 17.809017 ], [ -64.905885, 17.812203 ] ], [ [ -64.749318, 17.787033 ], [ -64.749226, 17.787131 ], [ -64.749296, 17.787177 ], [ -64.749334, 17.787098 ], [ -64.749318, 17.787033 ] ], [ [ -64.703479, 17.749071 ], [ -64.703399, 17.74898 ], [ -64.703335, 17.748944 ], [ -64.703226, 17.748916 ], [ -64.70315, 17.748926 ], [ -64.703041, 17.748878 ], [ -64.702978, 17.748839 ], [ -64.702909, 17.748783 ], [ -64.702874, 17.748754 ], [ -64.702852, 17.748707 ], [ -64.702849, 17.748686 ], [ -64.702835, 17.748671 ], [ -64.702853, 17.748647 ], [ -64.702868, 17.74862 ], [ -64.702874, 17.748603 ], [ -64.702848, 17.748578 ], [ -64.702789, 17.748606 ], [ -64.702766, 17.748562 ], [ -64.702728, 17.748556 ], [ -64.702667, 17.74859 ], [ -64.702606, 17.748699 ], [ -64.7024, 17.748816 ], [ -64.702332, 17.748882 ], [ -64.702285, 17.749007 ], [ -64.702271, 17.749172 ], [ -64.702232, 17.749271 ], [ -64.702217, 17.749329 ], [ -64.702194, 17.749361 ], [ -64.702209, 17.749381 ], [ -64.702202, 17.749426 ], [ -64.702179, 17.749437 ], [ -64.702187, 17.749517 ], [ -64.702171, 17.749552 ], [ -64.702172, 17.749663 ], [ -64.702156, 17.749744 ], [ -64.702065, 17.749962 ], [ -64.702042, 17.750107 ], [ -64.701988, 17.750191 ], [ -64.701977, 17.750268 ], [ -64.701973, 17.750299 ], [ -64.701959, 17.750353 ], [ -64.701918, 17.750385 ], [ -64.701879, 17.750429 ], [ -64.701859, 17.750481 ], [ -64.701851, 17.750505 ], [ -64.701851, 17.750578 ], [ -64.701855, 17.750609 ], [ -64.701859, 17.750637 ], [ -64.701902, 17.750672 ], [ -64.701957, 17.750716 ], [ -64.701973, 17.750729 ], [ -64.702011, 17.750734 ], [ -64.702057, 17.750725 ], [ -64.7021, 17.750669 ], [ -64.702115, 17.750627 ], [ -64.70214, 17.750585 ], [ -64.702148, 17.750572 ], [ -64.702197, 17.750531 ], [ -64.702255, 17.7505 ], [ -64.702279, 17.750504 ], [ -64.702405, 17.750527 ], [ -64.702491, 17.750552 ], [ -64.70257, 17.750577 ], [ -64.702701, 17.750618 ], [ -64.702744, 17.750631 ], [ -64.702796, 17.750644 ], [ -64.70285, 17.750656 ], [ -64.702903, 17.750655 ], [ -64.702995, 17.750652 ], [ -64.70305, 17.750644 ], [ -64.703094, 17.750637 ], [ -64.70312, 17.750622 ], [ -64.70317, 17.750631 ], [ -64.703209, 17.750639 ], [ -64.703273, 17.750546 ], [ -64.703301, 17.750484 ], [ -64.703313, 17.750434 ], [ -64.703326, 17.750384 ], [ -64.70336, 17.750331 ], [ -64.703379, 17.750234 ], [ -64.703388, 17.750136 ], [ -64.70341, 17.750058 ], [ -64.703457, 17.749972 ], [ -64.703467, 17.749886 ], [ -64.703459, 17.749839 ], [ -64.703454, 17.749785 ], [ -64.703442, 17.749745 ], [ -64.703415, 17.749704 ], [ -64.703448, 17.749629 ], [ -64.703479, 17.749557 ], [ -64.703517, 17.749463 ], [ -64.703533, 17.749359 ], [ -64.703536, 17.749253 ], [ -64.70353, 17.749228 ], [ -64.703523, 17.749159 ], [ -64.703521, 17.749137 ], [ -64.703519, 17.749126 ], [ -64.703479, 17.749071 ] ], [ [ -64.66417, 17.769108 ], [ -64.664257, 17.769125 ], [ -64.664584, 17.768806 ], [ -64.664826, 17.768707 ], [ -64.665113, 17.76853 ], [ -64.665234, 17.768475 ], [ -64.665561, 17.768409 ], [ -64.66578, 17.768387 ], [ -64.665877, 17.768336 ], [ -64.665929, 17.768216 ], [ -64.665924, 17.768067 ], [ -64.665895, 17.767907 ], [ -64.665779, 17.767582 ], [ -64.665711, 17.767455 ], [ -64.665733, 17.767277 ], [ -64.665779, 17.767123 ], [ -64.665923, 17.76686 ], [ -64.66624, 17.766557 ], [ -64.666751, 17.766144 ], [ -64.666779, 17.76611 ], [ -64.666808, 17.766077 ], [ -64.666946, 17.765762 ], [ -64.667056, 17.765241 ], [ -64.667084, 17.764955 ], [ -64.667043, 17.76486 ], [ -64.666922, 17.764809 ], [ -64.666796, 17.764799 ], [ -64.666698, 17.764755 ], [ -64.66655, 17.764558 ], [ -64.666451, 17.764479 ], [ -64.666348, 17.764475 ], [ -64.666256, 17.764553 ], [ -64.666118, 17.764746 ], [ -64.666101, 17.764635 ], [ -64.666026, 17.764542 ], [ -64.665906, 17.764608 ], [ -64.665739, 17.764795 ], [ -64.665518, 17.765117 ], [ -64.665308, 17.765423 ], [ -64.66521, 17.765671 ], [ -64.665228, 17.76593 ], [ -64.665287, 17.765986 ], [ -64.66532, 17.766018 ], [ -64.665267, 17.766271 ], [ -64.665222, 17.766464 ], [ -64.665212, 17.76648 ], [ -64.665009, 17.766861 ], [ -64.664957, 17.767053 ], [ -64.66494, 17.767346 ], [ -64.664854, 17.767582 ], [ -64.664785, 17.767731 ], [ -64.664653, 17.76789 ], [ -64.664474, 17.768265 ], [ -64.66436, 17.768458 ], [ -64.66428, 17.768635 ], [ -64.664211, 17.768755 ], [ -64.664153, 17.769038 ], [ -64.66417, 17.769108 ] ], [ [ -64.628402, 17.788935 ], [ -64.62839, 17.788793 ], [ -64.628362, 17.788691 ], [ -64.628281, 17.788581 ], [ -64.628166, 17.788456 ], [ -64.628011, 17.788301 ], [ -64.627919, 17.788184 ], [ -64.62785, 17.78807 ], [ -64.627741, 17.787912 ], [ -64.627672, 17.787769 ], [ -64.627597, 17.787629 ], [ -64.627545, 17.787514 ], [ -64.627516, 17.787381 ], [ -64.627516, 17.787261 ], [ -64.627447, 17.787106 ], [ -64.627332, 17.786935 ], [ -64.627137, 17.786621 ], [ -64.627016, 17.786446 ], [ -64.626889, 17.786284 ], [ -64.6267, 17.786125 ], [ -64.626538, 17.786026 ], [ -64.626423, 17.785972 ], [ -64.626136, 17.785899 ], [ -64.626034, 17.785866 ], [ -64.626016, 17.78586 ], [ -64.625762, 17.785807 ], [ -64.625469, 17.785735 ], [ -64.625222, 17.785636 ], [ -64.62509, 17.785603 ], [ -64.62498, 17.785564 ], [ -64.624843, 17.785535 ], [ -64.624681, 17.785493 ], [ -64.624591, 17.785482 ], [ -64.624439, 17.785432 ], [ -64.624313, 17.785382 ], [ -64.624227, 17.785338 ], [ -64.624054, 17.785216 ], [ -64.623945, 17.785129 ], [ -64.623773, 17.784968 ], [ -64.623543, 17.784688 ], [ -64.623434, 17.784539 ], [ -64.623313, 17.784407 ], [ -64.623228, 17.784287 ], [ -64.623095, 17.784127 ], [ -64.622979, 17.784028 ], [ -64.622842, 17.783928 ], [ -64.62268, 17.783823 ], [ -64.622525, 17.783752 ], [ -64.622329, 17.783697 ], [ -64.622186, 17.78363 ], [ -64.622013, 17.783614 ], [ -64.621852, 17.783592 ], [ -64.621715, 17.783587 ], [ -64.621611, 17.783626 ], [ -64.621502, 17.78369 ], [ -64.621347, 17.783843 ], [ -64.621243, 17.783957 ], [ -64.621088, 17.784116 ], [ -64.620801, 17.784374 ], [ -64.620595, 17.784513 ], [ -64.620415, 17.784628 ], [ -64.620346, 17.784694 ], [ -64.620203, 17.78476 ], [ -64.620059, 17.784786 ], [ -64.619881, 17.784804 ], [ -64.619673, 17.78481 ], [ -64.619443, 17.784805 ], [ -64.619174, 17.78481 ], [ -64.619007, 17.784809 ], [ -64.618765, 17.784815 ], [ -64.618495, 17.784831 ], [ -64.618161, 17.784872 ], [ -64.617885, 17.784915 ], [ -64.617345, 17.785053 ], [ -64.617034, 17.785164 ], [ -64.616736, 17.78528 ], [ -64.616534, 17.785367 ], [ -64.615879, 17.78558 ], [ -64.615644, 17.785641 ], [ -64.615454, 17.785658 ], [ -64.615126, 17.785729 ], [ -64.615115, 17.785733 ], [ -64.614832, 17.785846 ], [ -64.614425, 17.78599 ], [ -64.613935, 17.786112 ], [ -64.613625, 17.786193 ], [ -64.613418, 17.786237 ], [ -64.61312, 17.786349 ], [ -64.612947, 17.786443 ], [ -64.612717, 17.786539 ], [ -64.612504, 17.786618 ], [ -64.612314, 17.78671 ], [ -64.612136, 17.786765 ], [ -64.612004, 17.786793 ], [ -64.611825, 17.786838 ], [ -64.611665, 17.786891 ], [ -64.611538, 17.786942 ], [ -64.611413, 17.786993 ], [ -64.611285, 17.787052 ], [ -64.611276, 17.787063 ], [ -64.611262, 17.78708 ], [ -64.611217, 17.787192 ], [ -64.611257, 17.787299 ], [ -64.611316, 17.787367 ], [ -64.611475, 17.787476 ], [ -64.611666, 17.787565 ], [ -64.611791, 17.787608 ], [ -64.611923, 17.787675 ], [ -64.612067, 17.78773 ], [ -64.612239, 17.787785 ], [ -64.612406, 17.787851 ], [ -64.612688, 17.787949 ], [ -64.612926, 17.78805 ], [ -64.613067, 17.788093 ], [ -64.613363, 17.788265 ], [ -64.613487, 17.788303 ], [ -64.613659, 17.788374 ], [ -64.613804, 17.788407 ], [ -64.614062, 17.788452 ], [ -64.614217, 17.788458 ], [ -64.614417, 17.788454 ], [ -64.614574, 17.788451 ], [ -64.614827, 17.78844 ], [ -64.614976, 17.788447 ], [ -64.615178, 17.788412 ], [ -64.61535, 17.788424 ], [ -64.615488, 17.788423 ], [ -64.615839, 17.788467 ], [ -64.616511, 17.788485 ], [ -64.616673, 17.788479 ], [ -64.617092, 17.78848 ], [ -64.617219, 17.788506 ], [ -64.617363, 17.788554 ], [ -64.617535, 17.788627 ], [ -64.61764, 17.788677 ], [ -64.617754, 17.788686 ], [ -64.617865, 17.788722 ], [ -64.618031, 17.78875 ], [ -64.618144, 17.788787 ], [ -64.618256, 17.788805 ], [ -64.618394, 17.788832 ], [ -64.618564, 17.788847 ], [ -64.618714, 17.788868 ], [ -64.618863, 17.788908 ], [ -64.619024, 17.788929 ], [ -64.619455, 17.789013 ], [ -64.619682, 17.78908 ], [ -64.619881, 17.789123 ], [ -64.620157, 17.789204 ], [ -64.620318, 17.789266 ], [ -64.62045, 17.789294 ], [ -64.620623, 17.78937 ], [ -64.620768, 17.789443 ], [ -64.620898, 17.789492 ], [ -64.621054, 17.789563 ], [ -64.621215, 17.789584 ], [ -64.621353, 17.789619 ], [ -64.621485, 17.789634 ], [ -64.621611, 17.789631 ], [ -64.62179, 17.789602 ], [ -64.621939, 17.789569 ], [ -64.622123, 17.789497 ], [ -64.622244, 17.789474 ], [ -64.622353, 17.789464 ], [ -64.622445, 17.789481 ], [ -64.622537, 17.789541 ], [ -64.62266, 17.789647 ], [ -64.622756, 17.789738 ], [ -64.622877, 17.78981 ], [ -64.62317, 17.789947 ], [ -64.623308, 17.789993 ], [ -64.623457, 17.790015 ], [ -64.623607, 17.790063 ], [ -64.623885, 17.790125 ], [ -64.624038, 17.790137 ], [ -64.624138, 17.790131 ], [ -64.62421, 17.790115 ], [ -64.624303, 17.790103 ], [ -64.624423, 17.790109 ], [ -64.624676, 17.790086 ], [ -64.624814, 17.790098 ], [ -64.624964, 17.790052 ], [ -64.625051, 17.79005 ], [ -64.625113, 17.790049 ], [ -64.625234, 17.790036 ], [ -64.625613, 17.789965 ], [ -64.625803, 17.789898 ], [ -64.62601, 17.789845 ], [ -64.626332, 17.789749 ], [ -64.626562, 17.789628 ], [ -64.626683, 17.789561 ], [ -64.626861, 17.789386 ], [ -64.627005, 17.789284 ], [ -64.62716, 17.789187 ], [ -64.627287, 17.789161 ], [ -64.62743, 17.78916 ], [ -64.627562, 17.78914 ], [ -64.627862, 17.789165 ], [ -64.62808, 17.789154 ], [ -64.628206, 17.789129 ], [ -64.628322, 17.789082 ], [ -64.628356, 17.789028 ], [ -64.628402, 17.788935 ] ], [ [ -64.565845, 17.755977 ], [ -64.565922, 17.756346 ], [ -64.565973, 17.756423 ], [ -64.566031, 17.756555 ], [ -64.566134, 17.756671 ], [ -64.566219, 17.756758 ], [ -64.56633, 17.756853 ], [ -64.566443, 17.756929 ], [ -64.566552, 17.756985 ], [ -64.566824, 17.757057 ], [ -64.567002, 17.757079 ], [ -64.567318, 17.757046 ], [ -64.567479, 17.757013 ], [ -64.567807, 17.757002 ], [ -64.567962, 17.757046 ], [ -64.568376, 17.757135 ], [ -64.568543, 17.757201 ], [ -64.568715, 17.757258 ], [ -64.568934, 17.757311 ], [ -64.569008, 17.757353 ], [ -64.569117, 17.757371 ], [ -64.569187, 17.757388 ], [ -64.569244, 17.757383 ], [ -64.569313, 17.757324 ], [ -64.569422, 17.757278 ], [ -64.569468, 17.757234 ], [ -64.569525, 17.757188 ], [ -64.569606, 17.757146 ], [ -64.569739, 17.757102 ], [ -64.569825, 17.757102 ], [ -64.569894, 17.757146 ], [ -64.569969, 17.757184 ], [ -64.570002, 17.757211 ], [ -64.570036, 17.757238 ], [ -64.57029, 17.757404 ], [ -64.570342, 17.757438 ], [ -64.570664, 17.757592 ], [ -64.570814, 17.75762 ], [ -64.571113, 17.757647 ], [ -64.571222, 17.757647 ], [ -64.571307, 17.757633 ], [ -64.571383, 17.757647 ], [ -64.571555, 17.757719 ], [ -64.571647, 17.75778 ], [ -64.571722, 17.75784 ], [ -64.57176, 17.757865 ], [ -64.57182, 17.757906 ], [ -64.571906, 17.757972 ], [ -64.571967, 17.758036 ], [ -64.572103, 17.758179 ], [ -64.572262, 17.758347 ], [ -64.57237, 17.758428 ], [ -64.572481, 17.758545 ], [ -64.57252, 17.758599 ], [ -64.572578, 17.758678 ], [ -64.57265, 17.758748 ], [ -64.572818, 17.758913 ], [ -64.572923, 17.758997 ], [ -64.572951, 17.759016 ], [ -64.573055, 17.759091 ], [ -64.573148, 17.759162 ], [ -64.573262, 17.759229 ], [ -64.573423, 17.759372 ], [ -64.573521, 17.759446 ], [ -64.573602, 17.759493 ], [ -64.573688, 17.759581 ], [ -64.573796, 17.759656 ], [ -64.573898, 17.759766 ], [ -64.574044, 17.759923 ], [ -64.574141, 17.760037 ], [ -64.574172, 17.760063 ], [ -64.574233, 17.760114 ], [ -64.574314, 17.760176 ], [ -64.574354, 17.760207 ], [ -64.57447, 17.760253 ], [ -64.574618, 17.760269 ], [ -64.583007, 17.761913 ], [ -64.583161, 17.761921 ], [ -64.583306, 17.761918 ], [ -64.583373, 17.761896 ], [ -64.583427, 17.761878 ], [ -64.583512, 17.761851 ], [ -64.583579, 17.761801 ], [ -64.583626, 17.761768 ], [ -64.587618, 17.758536 ], [ -64.587686, 17.758469 ], [ -64.587841, 17.758368 ], [ -64.587852, 17.758349 ], [ -64.587945, 17.758217 ], [ -64.588059, 17.758104 ], [ -64.588215, 17.758011 ], [ -64.588434, 17.757931 ], [ -64.588466, 17.757922 ], [ -64.588634, 17.757878 ], [ -64.588727, 17.757864 ], [ -64.588916, 17.757858 ], [ -64.589135, 17.757813 ], [ -64.589298, 17.757789 ], [ -64.589394, 17.757776 ], [ -64.5896, 17.757735 ], [ -64.589831, 17.75771 ], [ -64.595218, 17.756901 ], [ -64.595379, 17.756917 ], [ -64.595527, 17.756883 ], [ -64.595816, 17.756846 ], [ -64.595982, 17.756857 ], [ -64.596086, 17.756879 ], [ -64.596283, 17.756903 ], [ -64.596304, 17.756906 ], [ -64.596499, 17.756882 ], [ -64.59662, 17.756835 ], [ -64.596792, 17.756762 ], [ -64.596866, 17.756689 ], [ -64.597004, 17.756591 ], [ -64.597131, 17.756535 ], [ -64.597234, 17.756525 ], [ -64.597447, 17.75653 ], [ -64.59815, 17.756703 ], [ -64.598316, 17.756794 ], [ -64.59842, 17.756862 ], [ -64.598564, 17.756978 ], [ -64.598673, 17.757072 ], [ -64.598805, 17.757143 ], [ -64.598977, 17.757176 ], [ -64.599038, 17.757166 ], [ -64.59925, 17.757134 ], [ -64.599449, 17.757105 ], [ -64.599656, 17.757154 ], [ -64.599817, 17.757171 ], [ -64.599955, 17.757176 ], [ -64.611831, 17.761041 ], [ -64.611957, 17.76109 ], [ -64.612049, 17.761085 ], [ -64.615062, 17.761184 ], [ -64.615293, 17.761186 ], [ -64.615534, 17.761153 ], [ -64.615747, 17.761153 ], [ -64.615887, 17.761183 ], [ -64.615962, 17.7612 ], [ -64.616126, 17.76123 ], [ -64.616175, 17.761253 ], [ -64.616276, 17.761302 ], [ -64.616368, 17.761335 ], [ -64.616546, 17.761357 ], [ -64.624416, 17.759693 ], [ -64.624502, 17.759693 ], [ -64.624565, 17.759683 ], [ -64.630504, 17.761196 ], [ -64.630534, 17.761198 ], [ -64.630624, 17.761204 ], [ -64.630654, 17.761207 ], [ -64.63078, 17.761185 ], [ -64.630878, 17.761113 ], [ -64.630918, 17.761052 ], [ -64.630998, 17.760948 ], [ -64.631079, 17.760832 ], [ -64.631102, 17.760791 ], [ -64.631153, 17.76071 ], [ -64.631162, 17.760662 ], [ -64.631182, 17.76056 ], [ -64.631228, 17.760424 ], [ -64.631222, 17.760291 ], [ -64.631192, 17.760131 ], [ -64.631147, 17.759982 ], [ -64.631135, 17.759833 ], [ -64.631181, 17.759668 ], [ -64.631227, 17.759525 ], [ -64.631268, 17.759421 ], [ -64.631331, 17.759321 ], [ -64.631388, 17.759249 ], [ -64.631503, 17.759189 ], [ -64.631647, 17.759106 ], [ -64.631802, 17.759028 ], [ -64.631958, 17.758981 ], [ -64.632095, 17.75892 ], [ -64.632172, 17.758893 ], [ -64.632308, 17.758848 ], [ -64.632492, 17.758808 ], [ -64.632637, 17.758794 ], [ -64.632905, 17.758798 ], [ -64.632946, 17.758806 ], [ -64.633049, 17.758826 ], [ -64.633056, 17.758827 ], [ -64.63325, 17.758858 ], [ -64.633385, 17.758896 ], [ -64.633494, 17.758928 ], [ -64.633556, 17.758946 ], [ -64.63374, 17.758986 ], [ -64.634073, 17.759073 ], [ -64.634274, 17.759107 ], [ -64.634446, 17.759124 ], [ -64.634641, 17.759151 ], [ -64.634803, 17.759161 ], [ -64.63501, 17.759189 ], [ -64.6353, 17.759218 ], [ -64.635384, 17.759227 ], [ -64.635688, 17.759271 ], [ -64.635837, 17.759304 ], [ -64.63601, 17.759382 ], [ -64.636159, 17.759459 ], [ -64.636201, 17.759482 ], [ -64.636236, 17.759509 ], [ -64.636332, 17.759585 ], [ -64.636458, 17.759678 ], [ -64.636494, 17.759721 ], [ -64.636547, 17.759785 ], [ -64.636569, 17.759811 ], [ -64.636741, 17.759961 ], [ -64.636873, 17.760082 ], [ -64.63697, 17.760162 ], [ -64.637039, 17.760229 ], [ -64.637211, 17.760307 ], [ -64.637257, 17.760318 ], [ -64.640839, 17.759463 ], [ -64.646945, 17.761874 ], [ -64.646989, 17.761879 ], [ -64.647117, 17.761895 ], [ -64.647121, 17.761895 ], [ -64.647167, 17.761899 ], [ -64.654897, 17.765773 ], [ -64.654919, 17.765787 ], [ -64.654955, 17.765784 ], [ -64.654982, 17.765733 ], [ -64.655017, 17.765694 ], [ -64.655018, 17.765688 ], [ -64.655029, 17.765635 ], [ -64.655041, 17.765606 ], [ -64.655052, 17.765542 ], [ -64.65508, 17.765508 ], [ -64.655109, 17.765497 ], [ -64.655155, 17.765492 ], [ -64.655178, 17.765535 ], [ -64.655166, 17.76558 ], [ -64.655158, 17.765661 ], [ -64.655155, 17.765695 ], [ -64.655156, 17.765729 ], [ -64.655158, 17.765745 ], [ -64.655173, 17.765833 ], [ -64.655195, 17.765844 ], [ -64.655259, 17.765855 ], [ -64.655299, 17.76582 ], [ -64.655374, 17.7657 ], [ -64.655374, 17.765658 ], [ -64.655391, 17.765607 ], [ -64.655414, 17.765485 ], [ -64.65542, 17.765415 ], [ -64.655443, 17.765344 ], [ -64.65546, 17.76527 ], [ -64.655489, 17.765178 ], [ -64.655535, 17.765041 ], [ -64.655564, 17.765008 ], [ -64.655616, 17.764969 ], [ -64.655696, 17.764953 ], [ -64.655742, 17.764936 ], [ -64.655765, 17.764903 ], [ -64.655759, 17.764853 ], [ -64.655731, 17.764804 ], [ -64.655686, 17.764744 ], [ -64.655685, 17.764743 ], [ -64.655633, 17.764683 ], [ -64.655587, 17.76465 ], [ -64.65557, 17.76464 ], [ -64.655552, 17.764628 ], [ -64.655449, 17.764576 ], [ -64.655242, 17.764428 ], [ -64.655162, 17.764226 ], [ -64.655109, 17.763917 ], [ -64.655155, 17.763829 ], [ -64.655201, 17.763757 ], [ -64.655247, 17.763702 ], [ -64.655414, 17.763592 ], [ -64.655523, 17.763493 ], [ -64.655759, 17.763361 ], [ -64.655989, 17.763245 ], [ -64.656271, 17.763212 ], [ -64.656432, 17.763212 ], [ -64.656512, 17.763228 ], [ -64.656598, 17.763267 ], [ -64.656673, 17.763316 ], [ -64.656708, 17.763366 ], [ -64.656748, 17.763377 ], [ -64.656788, 17.763371 ], [ -64.656823, 17.763305 ], [ -64.656848, 17.763282 ], [ -64.656874, 17.763259 ], [ -64.65692, 17.763195 ], [ -64.656989, 17.763135 ], [ -64.657046, 17.763079 ], [ -64.657103, 17.763002 ], [ -64.657161, 17.762906 ], [ -64.657247, 17.762709 ], [ -64.657298, 17.762616 ], [ -64.657315, 17.762602 ], [ -64.657454, 17.7625 ], [ -64.657609, 17.762412 ], [ -64.65769, 17.762378 ], [ -64.657753, 17.762358 ], [ -64.657839, 17.762307 ], [ -64.657943, 17.762274 ], [ -64.658012, 17.762247 ], [ -64.658092, 17.762207 ], [ -64.658339, 17.762119 ], [ -64.66492, 17.761366 ], [ -64.667018, 17.761126 ], [ -64.667019, 17.761126 ], [ -64.667117, 17.761103 ], [ -64.667272, 17.761054 ], [ -64.667427, 17.761023 ], [ -64.667551, 17.760997 ], [ -64.667658, 17.760976 ], [ -64.667727, 17.760967 ], [ -64.667899, 17.760966 ], [ -64.667929, 17.760957 ], [ -64.667997, 17.760939 ], [ -64.668054, 17.760939 ], [ -64.668595, 17.7609 ], [ -64.668785, 17.7609 ], [ -64.668847, 17.760905 ], [ -64.668917, 17.760893 ], [ -64.669009, 17.760862 ], [ -64.669049, 17.760833 ], [ -64.669101, 17.760806 ], [ -64.669138, 17.760775 ], [ -64.669158, 17.76076 ], [ -64.669158, 17.760735 ], [ -64.669152, 17.760702 ], [ -64.669118, 17.760652 ], [ -64.669095, 17.760603 ], [ -64.669071, 17.760569 ], [ -64.669036, 17.760531 ], [ -64.669083, 17.760497 ], [ -64.669146, 17.760516 ], [ -64.669227, 17.760541 ], [ -64.669365, 17.760597 ], [ -64.669537, 17.760701 ], [ -64.669601, 17.760734 ], [ -64.669676, 17.76079 ], [ -64.66975, 17.760856 ], [ -64.669813, 17.760938 ], [ -64.669876, 17.76098 ], [ -64.669957, 17.761026 ], [ -64.670043, 17.761043 ], [ -64.670245, 17.761131 ], [ -64.670272, 17.76115 ], [ -64.670308, 17.761173 ], [ -64.670423, 17.761225 ], [ -64.670526, 17.761261 ], [ -64.670595, 17.761291 ], [ -64.670687, 17.761296 ], [ -64.670819, 17.761312 ], [ -64.670825, 17.761313 ], [ -64.671061, 17.761373 ], [ -64.671193, 17.761417 ], [ -64.671195, 17.761417 ], [ -64.671377, 17.761466 ], [ -64.671475, 17.761505 ], [ -64.671573, 17.761555 ], [ -64.671688, 17.761593 ], [ -64.671797, 17.761648 ], [ -64.671883, 17.761725 ], [ -64.671959, 17.76178 ], [ -64.671981, 17.761797 ], [ -64.672085, 17.761885 ], [ -64.672165, 17.761929 ], [ -64.672205, 17.761978 ], [ -64.672228, 17.762006 ], [ -64.67228, 17.762061 ], [ -64.672388, 17.762088 ], [ -64.672389, 17.762089 ], [ -64.672556, 17.762077 ], [ -64.679734, 17.760797 ], [ -64.679735, 17.760798 ], [ -64.679799, 17.760776 ], [ -64.67985, 17.760738 ], [ -64.679883, 17.760707 ], [ -64.679921, 17.760668 ], [ -64.680023, 17.760551 ], [ -64.680026, 17.760545 ], [ -64.680218, 17.760275 ], [ -64.680362, 17.760104 ], [ -64.680512, 17.759901 ], [ -64.680565, 17.759848 ], [ -64.680644, 17.759785 ], [ -64.68065, 17.759796 ], [ -64.680659, 17.759794 ], [ -64.680834, 17.759758 ], [ -64.680977, 17.759747 ], [ -64.681127, 17.759747 ], [ -64.681242, 17.759769 ], [ -64.68138, 17.759818 ], [ -64.681431, 17.759851 ], [ -64.681483, 17.759879 ], [ -64.681581, 17.759923 ], [ -64.681598, 17.759939 ], [ -64.681737, 17.760095 ], [ -64.681845, 17.760215 ], [ -64.681914, 17.760281 ], [ -64.681966, 17.76032 ], [ -64.682046, 17.760309 ], [ -64.682115, 17.760265 ], [ -64.682156, 17.760215 ], [ -64.687923, 17.757938 ], [ -64.694432, 17.75537 ], [ -64.694464, 17.755359 ], [ -64.694491, 17.75534 ], [ -64.694498, 17.755335 ], [ -64.694514, 17.755324 ], [ -64.694537, 17.7553 ], [ -64.694539, 17.755299 ], [ -64.694573, 17.755244 ], [ -64.694581, 17.755216 ], [ -64.694584, 17.755183 ], [ -64.694585, 17.755152 ], [ -64.694586, 17.75515 ], [ -64.69459, 17.7551 ], [ -64.694596, 17.755018 ], [ -64.694579, 17.754886 ], [ -64.694499, 17.754759 ], [ -64.694211, 17.754373 ], [ -64.694051, 17.754175 ], [ -64.693972, 17.754096 ], [ -64.693918, 17.754043 ], [ -64.693884, 17.754004 ], [ -64.693832, 17.7539 ], [ -64.693798, 17.753723 ], [ -64.693821, 17.753663 ], [ -64.693849, 17.753569 ], [ -64.693924, 17.753459 ], [ -64.693982, 17.753343 ], [ -64.694131, 17.75309 ], [ -64.694212, 17.752969 ], [ -64.694338, 17.752837 ], [ -64.694459, 17.752732 ], [ -64.694557, 17.752611 ], [ -64.694654, 17.75244 ], [ -64.694741, 17.752275 ], [ -64.694804, 17.752165 ], [ -64.69485, 17.75206 ], [ -64.694907, 17.751945 ], [ -64.694961, 17.751858 ], [ -64.695017, 17.751757 ], [ -64.695109, 17.751542 ], [ -64.695172, 17.75141 ], [ -64.695224, 17.751284 ], [ -64.695283, 17.751164 ], [ -64.695392, 17.750963 ], [ -64.695408, 17.750937 ], [ -64.695552, 17.750722 ], [ -64.695615, 17.750617 ], [ -64.695684, 17.750535 ], [ -64.695741, 17.750452 ], [ -64.695828, 17.750347 ], [ -64.695858, 17.750299 ], [ -64.695881, 17.750233 ], [ -64.695908, 17.750188 ], [ -64.695954, 17.750022 ], [ -64.695968, 17.749918 ], [ -64.695958, 17.749908 ], [ -64.695955, 17.749904 ], [ -64.695943, 17.74989 ], [ -64.695927, 17.749882 ], [ -64.695926, 17.749881 ], [ -64.695917, 17.749876 ], [ -64.695921, 17.749856 ], [ -64.695941, 17.749796 ], [ -64.695948, 17.749777 ], [ -64.69595, 17.749763 ], [ -64.695963, 17.749724 ], [ -64.695968, 17.749711 ], [ -64.695995, 17.749704 ], [ -64.696086, 17.749675 ], [ -64.696197, 17.749617 ], [ -64.696315, 17.749636 ], [ -64.696401, 17.749644 ], [ -64.696569, 17.749659 ], [ -64.696704, 17.74967 ], [ -64.696714, 17.749668 ], [ -64.696914, 17.749642 ], [ -64.697008, 17.749602 ], [ -64.697117, 17.749564 ], [ -64.69721, 17.749512 ], [ -64.697328, 17.749461 ], [ -64.697471, 17.749403 ], [ -64.697511, 17.749357 ], [ -64.697541, 17.749314 ], [ -64.697598, 17.749254 ], [ -64.697647, 17.749156 ], [ -64.697705, 17.749008 ], [ -64.697733, 17.748935 ], [ -64.697807, 17.748747 ], [ -64.697844, 17.748653 ], [ -64.697952, 17.748379 ], [ -64.697983, 17.748302 ], [ -64.697948, 17.748288 ], [ -64.697792, 17.74822 ], [ -64.697868, 17.748085 ], [ -64.697944, 17.747942 ], [ -64.697945, 17.747942 ], [ -64.697929, 17.747923 ], [ -64.697945, 17.747887 ], [ -64.697968, 17.747839 ], [ -64.698151, 17.747927 ], [ -64.698174, 17.747894 ], [ -64.698212, 17.747839 ], [ -64.698303, 17.747719 ], [ -64.698346, 17.747747 ], [ -64.698393, 17.747677 ], [ -64.698506, 17.747787 ], [ -64.701775, 17.747406 ], [ -64.701827, 17.747416 ], [ -64.701845, 17.747427 ], [ -64.70234, 17.74747 ], [ -64.702401, 17.747471 ], [ -64.70268, 17.747382 ], [ -64.70268, 17.747351 ], [ -64.702644, 17.747238 ], [ -64.702667, 17.747217 ], [ -64.702821, 17.747294 ], [ -64.703049, 17.747268 ], [ -64.703294, 17.74738 ], [ -64.703358, 17.747421 ], [ -64.703386, 17.747437 ], [ -64.703482, 17.747482 ], [ -64.703582, 17.747442 ], [ -64.703492, 17.747363 ], [ -64.703547, 17.747331 ], [ -64.703613, 17.747292 ], [ -64.703644, 17.747381 ], [ -64.703781, 17.747351 ], [ -64.70385, 17.74744 ], [ -64.703903, 17.74745 ], [ -64.703949, 17.74744 ], [ -64.704247, 17.747353 ], [ -64.704291, 17.747324 ], [ -64.704336, 17.747299 ], [ -64.704391, 17.747278 ], [ -64.704427, 17.747263 ], [ -64.704472, 17.747275 ], [ -64.704479, 17.747277 ], [ -64.704517, 17.747292 ], [ -64.704567, 17.747306 ], [ -64.70463, 17.747331 ], [ -64.704765, 17.747313 ], [ -64.704825, 17.747304 ], [ -64.704888, 17.747292 ], [ -64.70492, 17.747276 ], [ -64.704949, 17.747261 ], [ -64.705, 17.747232 ], [ -64.705059, 17.747206 ], [ -64.705119, 17.747272 ], [ -64.705153, 17.747306 ], [ -64.705157, 17.747311 ], [ -64.70521, 17.747337 ], [ -64.705272, 17.747346 ], [ -64.705338, 17.747339 ], [ -64.705717, 17.747124 ], [ -64.705864, 17.747149 ], [ -64.705889, 17.747149 ], [ -64.705986, 17.747152 ], [ -64.706081, 17.74717 ], [ -64.706192, 17.747177 ], [ -64.706282, 17.747232 ], [ -64.70638, 17.747253 ], [ -64.706473, 17.747234 ], [ -64.706732, 17.747168 ], [ -64.706871, 17.74716 ], [ -64.706985, 17.747114 ], [ -64.707214, 17.746946 ], [ -64.707283, 17.746941 ], [ -64.707382, 17.747082 ], [ -64.707455, 17.747172 ], [ -64.707558, 17.747263 ], [ -64.707623, 17.747309 ], [ -64.707744, 17.747401 ], [ -64.707764, 17.747416 ], [ -64.70787, 17.747452 ], [ -64.707954, 17.747463 ], [ -64.708008, 17.747446 ], [ -64.708031, 17.747429 ], [ -64.708029, 17.74739 ], [ -64.708023, 17.74725 ], [ -64.708084, 17.747208 ], [ -64.708122, 17.74719 ], [ -64.708138, 17.747185 ], [ -64.708193, 17.747155 ], [ -64.708305, 17.747078 ], [ -64.708321, 17.747042 ], [ -64.708313, 17.746983 ], [ -64.708359, 17.746964 ], [ -64.708428, 17.746907 ], [ -64.708504, 17.746876 ], [ -64.708603, 17.746859 ], [ -64.708672, 17.746861 ], [ -64.708762, 17.746861 ], [ -64.708824, 17.74687 ], [ -64.709038, 17.746931 ], [ -64.70913, 17.74698 ], [ -64.709209, 17.747021 ], [ -64.709259, 17.747047 ], [ -64.709343, 17.747107 ], [ -64.70945, 17.747156 ], [ -64.709583, 17.747256 ], [ -64.709633, 17.747293 ], [ -64.709717, 17.747343 ], [ -64.709725, 17.74735 ], [ -64.709801, 17.747414 ], [ -64.709886, 17.747458 ], [ -64.709995, 17.747515 ], [ -64.71004, 17.74755 ], [ -64.710247, 17.747706 ], [ -64.710356, 17.747787 ], [ -64.710472, 17.747875 ], [ -64.710563, 17.747945 ], [ -64.710685, 17.748039 ], [ -64.711419, 17.74879 ], [ -64.711533, 17.748878 ], [ -64.711694, 17.748996 ], [ -64.71187, 17.749124 ], [ -64.711948, 17.749188 ], [ -64.712027, 17.749252 ], [ -64.712116, 17.74931 ], [ -64.712281, 17.749421 ], [ -64.712415, 17.749474 ], [ -64.712592, 17.749562 ], [ -64.712758, 17.749646 ], [ -64.712776, 17.749663 ], [ -64.712824, 17.749709 ], [ -64.712844, 17.749726 ], [ -64.712893, 17.74976 ], [ -64.712945, 17.749797 ], [ -64.713002, 17.74985 ], [ -64.713043, 17.749881 ], [ -64.713081, 17.749921 ], [ -64.713112, 17.749954 ], [ -64.71315, 17.749993 ], [ -64.713216, 17.750063 ], [ -64.713283, 17.750134 ], [ -64.71334, 17.750195 ], [ -64.713346, 17.750202 ], [ -64.71338, 17.750244 ], [ -64.713388, 17.750254 ], [ -64.713419, 17.750318 ], [ -64.713438, 17.750345 ], [ -64.713474, 17.750393 ], [ -64.713503, 17.750435 ], [ -64.713545, 17.750511 ], [ -64.713656, 17.750613 ], [ -64.713703, 17.75068 ], [ -64.713716, 17.750699 ], [ -64.713773, 17.750751 ], [ -64.71399, 17.750901 ], [ -64.714118, 17.751089 ], [ -64.714182, 17.751097 ], [ -64.714249, 17.751158 ], [ -64.714252, 17.751305 ], [ -64.714202, 17.751332 ], [ -64.714152, 17.751355 ], [ -64.714207, 17.751419 ], [ -64.713585, 17.751931 ], [ -64.713565, 17.751949 ], [ -64.713579, 17.751969 ], [ -64.713586, 17.751977 ], [ -64.714104, 17.751913 ], [ -64.714129, 17.751894 ], [ -64.714222, 17.751823 ], [ -64.714264, 17.751791 ], [ -64.714285, 17.75177 ], [ -64.714317, 17.75174 ], [ -64.714424, 17.751659 ], [ -64.714636, 17.751883 ], [ -64.714684, 17.751934 ], [ -64.714729, 17.75197 ], [ -64.714813, 17.752014 ], [ -64.714874, 17.752014 ], [ -64.714958, 17.751986 ], [ -64.715158, 17.752027 ], [ -64.715235, 17.752065 ], [ -64.715272, 17.752099 ], [ -64.715346, 17.752168 ], [ -64.715462, 17.7523 ], [ -64.715683, 17.752505 ], [ -64.716145, 17.752862 ], [ -64.716302, 17.752944 ], [ -64.716415, 17.752991 ], [ -64.716699, 17.753058 ], [ -64.716881, 17.753078 ], [ -64.717026, 17.753124 ], [ -64.717056, 17.753166 ], [ -64.717094, 17.75317 ], [ -64.717117, 17.753153 ], [ -64.71712, 17.753143 ], [ -64.717125, 17.753124 ], [ -64.717087, 17.75308 ], [ -64.717041, 17.753027 ], [ -64.717067, 17.752996 ], [ -64.717153, 17.7529 ], [ -64.717232, 17.752832 ], [ -64.717339, 17.752748 ], [ -64.717464, 17.752753 ], [ -64.717563, 17.752761 ], [ -64.717631, 17.752771 ], [ -64.717724, 17.752786 ], [ -64.717769, 17.752793 ], [ -64.717847, 17.752821 ], [ -64.717991, 17.752875 ], [ -64.718097, 17.752914 ], [ -64.718157, 17.752937 ], [ -64.718182, 17.752951 ], [ -64.71824, 17.752984 ], [ -64.718314, 17.753024 ], [ -64.718405, 17.753075 ], [ -64.718497, 17.753128 ], [ -64.718546, 17.753149 ], [ -64.718593, 17.753174 ], [ -64.71873, 17.753248 ], [ -64.718833, 17.753303 ], [ -64.718955, 17.753373 ], [ -64.719083, 17.753457 ], [ -64.719238, 17.753582 ], [ -64.71938, 17.753683 ], [ -64.719637, 17.75384 ], [ -64.719917, 17.754082 ], [ -64.720011, 17.75421 ], [ -64.720093, 17.754335 ], [ -64.720238, 17.754614 ], [ -64.720322, 17.754728 ], [ -64.72036, 17.754782 ], [ -64.720413, 17.75488 ], [ -64.720406, 17.75494 ], [ -64.720436, 17.754999 ], [ -64.720491, 17.755028 ], [ -64.720673, 17.755314 ], [ -64.720768, 17.755417 ], [ -64.7208, 17.75542 ], [ -64.720861, 17.755427 ], [ -64.720878, 17.755439 ], [ -64.720942, 17.755469 ], [ -64.721004, 17.755495 ], [ -64.721098, 17.755511 ], [ -64.721189, 17.755513 ], [ -64.721315, 17.755549 ], [ -64.721492, 17.755631 ], [ -64.721593, 17.755686 ], [ -64.721779, 17.755778 ], [ -64.721928, 17.755886 ], [ -64.722041, 17.755971 ], [ -64.72216, 17.756085 ], [ -64.722321, 17.756209 ], [ -64.722481, 17.756314 ], [ -64.722603, 17.756426 ], [ -64.722846, 17.756637 ], [ -64.722984, 17.756765 ], [ -64.7231, 17.75691 ], [ -64.723114, 17.756921 ], [ -64.723258, 17.757059 ], [ -64.723413, 17.757235 ], [ -64.723516, 17.757389 ], [ -64.723569, 17.757485 ], [ -64.723597, 17.757532 ], [ -64.723631, 17.757648 ], [ -64.723683, 17.757797 ], [ -64.723786, 17.758276 ], [ -64.723908, 17.758473 ], [ -64.723968, 17.758566 ], [ -64.724024, 17.758659 ], [ -64.724094, 17.758785 ], [ -64.724103, 17.758836 ], [ -64.724131, 17.758938 ], [ -64.724173, 17.758998 ], [ -64.724219, 17.759068 ], [ -64.724275, 17.759124 ], [ -64.724363, 17.759179 ], [ -64.724428, 17.759207 ], [ -64.724493, 17.75924 ], [ -64.724526, 17.759282 ], [ -64.724558, 17.759328 ], [ -64.724605, 17.759393 ], [ -64.724651, 17.759444 ], [ -64.724739, 17.759477 ], [ -64.724874, 17.759546 ], [ -64.725, 17.759584 ], [ -64.725088, 17.759621 ], [ -64.725134, 17.759653 ], [ -64.725185, 17.759718 ], [ -64.72525, 17.759737 ], [ -64.725343, 17.759825 ], [ -64.725455, 17.759885 ], [ -64.725506, 17.759885 ], [ -64.725552, 17.75989 ], [ -64.725603, 17.75995 ], [ -64.72565, 17.76002 ], [ -64.725724, 17.760076 ], [ -64.725812, 17.760118 ], [ -64.725868, 17.76015 ], [ -64.725933, 17.760229 ], [ -64.725989, 17.760276 ], [ -64.726059, 17.760331 ], [ -64.726128, 17.760331 ], [ -64.726226, 17.760359 ], [ -64.726244, 17.76041 ], [ -64.726384, 17.760526 ], [ -64.726532, 17.760643 ], [ -64.726625, 17.760717 ], [ -64.726774, 17.760824 ], [ -64.726941, 17.760931 ], [ -64.727029, 17.761005 ], [ -64.727224, 17.761098 ], [ -64.727457, 17.761195 ], [ -64.727624, 17.76127 ], [ -64.727833, 17.761367 ], [ -64.727954, 17.76139 ], [ -64.728023, 17.761395 ], [ -64.728228, 17.761497 ], [ -64.728435, 17.761605 ], [ -64.728713, 17.761718 ], [ -64.728903, 17.761823 ], [ -64.729041, 17.761922 ], [ -64.729316, 17.762137 ], [ -64.729466, 17.762263 ], [ -64.729667, 17.762374 ], [ -64.729698, 17.762386 ], [ -64.729788, 17.762431 ], [ -64.729866, 17.762466 ], [ -64.729964, 17.762477 ], [ -64.730118, 17.762464 ], [ -64.730376, 17.762419 ], [ -64.730449, 17.762404 ], [ -64.730569, 17.762382 ], [ -64.730699, 17.762363 ], [ -64.730861, 17.762347 ], [ -64.731045, 17.762344 ], [ -64.731167, 17.762351 ], [ -64.731299, 17.762377 ], [ -64.73139, 17.762412 ], [ -64.731535, 17.762466 ], [ -64.731676, 17.762586 ], [ -64.731776, 17.762694 ], [ -64.731892, 17.762883 ], [ -64.731945, 17.762937 ], [ -64.732049, 17.763141 ], [ -64.732138, 17.763296 ], [ -64.732271, 17.763497 ], [ -64.73234, 17.763591 ], [ -64.732438, 17.763696 ], [ -64.732605, 17.763833 ], [ -64.733004, 17.764115 ], [ -64.733079, 17.764185 ], [ -64.733197, 17.764296 ], [ -64.733754, 17.764692 ], [ -64.733875, 17.764792 ], [ -64.734097, 17.764922 ], [ -64.734185, 17.764973 ], [ -64.734306, 17.765072 ], [ -64.734387, 17.765155 ], [ -64.734496, 17.765287 ], [ -64.734599, 17.765397 ], [ -64.734904, 17.765695 ], [ -64.735347, 17.766108 ], [ -64.73551, 17.766253 ], [ -64.735582, 17.766317 ], [ -64.735664, 17.766401 ], [ -64.735767, 17.766461 ], [ -64.735992, 17.766613 ], [ -64.736086, 17.766916 ], [ -64.736193, 17.767029 ], [ -64.736243, 17.767128 ], [ -64.736281, 17.767216 ], [ -64.736292, 17.767395 ], [ -64.736268, 17.767428 ], [ -64.73624, 17.767472 ], [ -64.736286, 17.767518 ], [ -64.736287, 17.767551 ], [ -64.736302, 17.767581 ], [ -64.73632, 17.767614 ], [ -64.736275, 17.767654 ], [ -64.73629, 17.767712 ], [ -64.736443, 17.76799 ], [ -64.736475, 17.768148 ], [ -64.736546, 17.768367 ], [ -64.736622, 17.768481 ], [ -64.736824, 17.768707 ], [ -64.736862, 17.768818 ], [ -64.73687, 17.768948 ], [ -64.736908, 17.769028 ], [ -64.736934, 17.769055 ], [ -64.737007, 17.769154 ], [ -64.737112, 17.769313 ], [ -64.737192, 17.769479 ], [ -64.737221, 17.7696 ], [ -64.737232, 17.769636 ], [ -64.737244, 17.769677 ], [ -64.737261, 17.76971 ], [ -64.737261, 17.769759 ], [ -64.737255, 17.76982 ], [ -64.737255, 17.769985 ], [ -64.737261, 17.770024 ], [ -64.737318, 17.770117 ], [ -64.737376, 17.770222 ], [ -64.737422, 17.770332 ], [ -64.737445, 17.770404 ], [ -64.737456, 17.770508 ], [ -64.737456, 17.770569 ], [ -64.737462, 17.770624 ], [ -64.73746, 17.770626 ], [ -64.737457, 17.770723 ], [ -64.737451, 17.770756 ], [ -64.737456, 17.770774 ], [ -64.737456, 17.770822 ], [ -64.737451, 17.770855 ], [ -64.737451, 17.770889 ], [ -64.737445, 17.770916 ], [ -64.737422, 17.770966 ], [ -64.73741, 17.771 ], [ -64.737399, 17.771043 ], [ -64.737388, 17.771065 ], [ -64.737387, 17.771104 ], [ -64.737388, 17.771125 ], [ -64.737391, 17.77114 ], [ -64.737416, 17.771263 ], [ -64.737451, 17.771296 ], [ -64.737482, 17.771306 ], [ -64.737534, 17.771307 ], [ -64.73759, 17.771342 ], [ -64.737717, 17.771326 ], [ -64.73774, 17.771334 ], [ -64.737785, 17.771379 ], [ -64.737854, 17.771385 ], [ -64.737892, 17.771414 ], [ -64.737938, 17.77151 ], [ -64.73789, 17.771548 ], [ -64.7378, 17.771553 ], [ -64.73779, 17.771608 ], [ -64.737908, 17.771637 ], [ -64.737914, 17.771748 ], [ -64.738028, 17.771803 ], [ -64.73806, 17.771811 ], [ -64.738121, 17.771828 ], [ -64.738247, 17.77185 ], [ -64.738352, 17.771808 ], [ -64.738402, 17.771748 ], [ -64.738421, 17.771641 ], [ -64.738487, 17.771617 ], [ -64.738651, 17.77166 ], [ -64.738716, 17.7717 ], [ -64.738764, 17.771807 ], [ -64.738767, 17.771814 ], [ -64.738802, 17.77188 ], [ -64.738842, 17.771935 ], [ -64.738888, 17.77199 ], [ -64.73894, 17.772018 ], [ -64.73902, 17.772095 ], [ -64.739043, 17.772128 ], [ -64.739048, 17.772138 ], [ -64.739066, 17.772172 ], [ -64.739106, 17.772232 ], [ -64.739137, 17.772314 ], [ -64.739188, 17.772384 ], [ -64.739281, 17.772474 ], [ -64.739365, 17.772476 ], [ -64.739494, 17.77248 ], [ -64.739561, 17.772491 ], [ -64.739624, 17.772557 ], [ -64.739655, 17.772655 ], [ -64.739657, 17.772721 ], [ -64.739658, 17.77274 ], [ -64.739659, 17.772763 ], [ -64.73966, 17.772797 ], [ -64.739662, 17.772878 ], [ -64.739662, 17.772949 ], [ -64.739662, 17.773039 ], [ -64.73963, 17.773114 ], [ -64.739601, 17.773136 ], [ -64.739434, 17.773174 ], [ -64.739359, 17.773185 ], [ -64.739267, 17.773163 ], [ -64.739129, 17.773174 ], [ -64.738957, 17.77318 ], [ -64.738859, 17.773207 ], [ -64.73875, 17.77329 ], [ -64.738699, 17.773318 ], [ -64.738681, 17.773328 ], [ -64.738612, 17.773334 ], [ -64.73859, 17.773318 ], [ -64.738574, 17.773308 ], [ -64.738543, 17.773301 ], [ -64.738528, 17.773322 ], [ -64.73852, 17.773339 ], [ -64.738525, 17.773362 ], [ -64.738533, 17.773394 ], [ -64.738523, 17.773421 ], [ -64.738514, 17.773444 ], [ -64.738503, 17.773461 ], [ -64.738459, 17.773476 ], [ -64.73844, 17.773472 ], [ -64.738428, 17.773487 ], [ -64.738422, 17.773499 ], [ -64.738428, 17.773505 ], [ -64.738434, 17.773527 ], [ -64.738428, 17.773565 ], [ -64.738411, 17.773593 ], [ -64.738388, 17.77362 ], [ -64.738382, 17.773648 ], [ -64.738394, 17.773686 ], [ -64.738422, 17.773742 ], [ -64.738451, 17.773775 ], [ -64.738464, 17.773795 ], [ -64.73848, 17.773819 ], [ -64.738476, 17.773837 ], [ -64.738457, 17.773863 ], [ -64.738428, 17.773852 ], [ -64.738342, 17.773852 ], [ -64.738335, 17.773869 ], [ -64.738319, 17.77389 ], [ -64.738319, 17.773929 ], [ -64.738359, 17.773989 ], [ -64.738405, 17.774033 ], [ -64.738445, 17.774083 ], [ -64.738514, 17.774133 ], [ -64.738624, 17.774193 ], [ -64.738645, 17.774207 ], [ -64.738854, 17.774342 ], [ -64.738992, 17.774452 ], [ -64.739285, 17.774716 ], [ -64.739296, 17.774733 ], [ -64.739313, 17.774782 ], [ -64.739309, 17.7748 ], [ -64.739303, 17.774825 ], [ -64.739296, 17.774843 ], [ -64.739319, 17.774871 ], [ -64.739332, 17.774906 ], [ -64.739391, 17.77496 ], [ -64.739448, 17.774967 ], [ -64.739558, 17.77502 ], [ -64.739601, 17.775002 ], [ -64.739636, 17.775004 ], [ -64.739655, 17.775005 ], [ -64.739693, 17.775017 ], [ -64.739716, 17.77504 ], [ -64.739769, 17.775042 ], [ -64.739845, 17.774952 ], [ -64.73986, 17.77494 ], [ -64.739948, 17.774872 ], [ -64.740013, 17.774822 ], [ -64.740051, 17.77475 ], [ -64.740075, 17.77473 ], [ -64.740156, 17.774662 ], [ -64.740175, 17.774645 ], [ -64.740242, 17.774565 ], [ -64.740301, 17.774546 ], [ -64.740454, 17.774546 ], [ -64.740474, 17.774544 ], [ -64.740499, 17.774539 ], [ -64.740533, 17.774551 ], [ -64.74056, 17.77456 ], [ -64.740577, 17.774563 ], [ -64.740601, 17.774563 ], [ -64.740635, 17.774545 ], [ -64.740662, 17.774532 ], [ -64.740738, 17.774532 ], [ -64.740758, 17.77452 ], [ -64.740776, 17.774508 ], [ -64.740761, 17.774435 ], [ -64.740777, 17.774419 ], [ -64.740827, 17.774347 ], [ -64.740928, 17.774332 ], [ -64.741018, 17.774322 ], [ -64.741043, 17.774319 ], [ -64.741089, 17.774332 ], [ -64.741169, 17.774383 ], [ -64.741232, 17.774439 ], [ -64.741279, 17.774481 ], [ -64.741352, 17.774549 ], [ -64.741386, 17.774584 ], [ -64.741445, 17.774623 ], [ -64.741522, 17.774676 ], [ -64.741585, 17.774719 ], [ -64.741742, 17.774846 ], [ -64.741856, 17.774938 ], [ -64.741914, 17.774985 ], [ -64.741989, 17.775045 ], [ -64.742084, 17.775153 ], [ -64.742149, 17.775227 ], [ -64.74218, 17.775276 ], [ -64.742235, 17.775349 ], [ -64.742279, 17.775406 ], [ -64.742318, 17.775467 ], [ -64.742365, 17.775542 ], [ -64.742386, 17.775576 ], [ -64.742432, 17.7756 ], [ -64.742459, 17.775601 ], [ -64.742493, 17.775602 ], [ -64.742558, 17.775624 ], [ -64.742595, 17.775706 ], [ -64.742699, 17.775839 ], [ -64.742881, 17.776062 ], [ -64.7429, 17.776085 ], [ -64.742912, 17.7761 ], [ -64.742933, 17.776133 ], [ -64.742994, 17.776228 ], [ -64.743034, 17.776293 ], [ -64.743065, 17.776369 ], [ -64.743109, 17.776477 ], [ -64.743137, 17.776536 ], [ -64.743149, 17.77656 ], [ -64.743189, 17.776604 ], [ -64.743225, 17.776644 ], [ -64.743343, 17.77682 ], [ -64.743397, 17.776902 ], [ -64.74346, 17.776999 ], [ -64.743486, 17.777022 ], [ -64.743574, 17.777098 ], [ -64.743607, 17.777126 ], [ -64.743671, 17.777207 ], [ -64.743782, 17.777344 ], [ -64.743816, 17.777412 ], [ -64.743898, 17.777563 ], [ -64.743942, 17.777657 ], [ -64.744003, 17.777744 ], [ -64.74411, 17.777899 ], [ -64.744286, 17.778095 ], [ -64.744486, 17.778273 ], [ -64.74472, 17.778454 ], [ -64.744827, 17.778574 ], [ -64.744873, 17.778782 ], [ -64.744896, 17.778868 ], [ -64.744907, 17.778911 ], [ -64.744953, 17.778989 ], [ -64.744987, 17.779036 ], [ -64.745049, 17.779062 ], [ -64.74511, 17.779062 ], [ -64.745186, 17.779087 ], [ -64.74522, 17.779114 ], [ -64.745277, 17.77916 ], [ -64.745365, 17.779249 ], [ -64.745442, 17.779368 ], [ -64.745514, 17.779545 ], [ -64.745544, 17.77968 ], [ -64.745574, 17.779712 ], [ -64.745605, 17.779745 ], [ -64.745673, 17.779835 ], [ -64.745766, 17.779926 ], [ -64.745788, 17.779922 ], [ -64.745856, 17.779918 ], [ -64.7459, 17.779948 ], [ -64.745921, 17.77993 ], [ -64.745956, 17.77994 ], [ -64.746017, 17.77998 ], [ -64.746086, 17.780048 ], [ -64.746195, 17.780159 ], [ -64.746279, 17.780242 ], [ -64.746353, 17.780336 ], [ -64.746452, 17.780378 ], [ -64.746548, 17.780532 ], [ -64.746575, 17.780581 ], [ -64.746799, 17.781138 ], [ -64.746758, 17.781309 ], [ -64.74688, 17.781435 ], [ -64.747081, 17.781628 ], [ -64.74719, 17.781771 ], [ -64.747265, 17.781936 ], [ -64.747236, 17.782018 ], [ -64.747351, 17.782184 ], [ -64.747314, 17.782343 ], [ -64.747394, 17.782372 ], [ -64.747483, 17.782322 ], [ -64.747569, 17.782366 ], [ -64.74765, 17.782432 ], [ -64.747702, 17.782493 ], [ -64.747736, 17.782548 ], [ -64.747803, 17.782667 ], [ -64.747914, 17.782751 ], [ -64.747963, 17.783005 ], [ -64.74807, 17.783082 ], [ -64.748116, 17.783225 ], [ -64.748179, 17.783368 ], [ -64.748265, 17.7835 ], [ -64.748351, 17.7836 ], [ -64.748495, 17.783649 ], [ -64.748685, 17.783638 ], [ -64.748806, 17.783616 ], [ -64.748967, 17.783561 ], [ -64.75659, 17.782115 ], [ -64.761636, 17.781158 ], [ -64.761637, 17.781158 ], [ -64.762034, 17.781147 ], [ -64.762505, 17.781097 ], [ -64.762753, 17.781064 ], [ -64.76284, 17.781058 ], [ -64.762994, 17.781048 ], [ -64.763172, 17.781009 ], [ -64.763419, 17.780987 ], [ -64.763765, 17.780942 ], [ -64.763931, 17.780921 ], [ -64.764431, 17.780871 ], [ -64.764736, 17.780854 ], [ -64.764808, 17.780856 ], [ -64.765052, 17.780865 ], [ -64.765157, 17.780865 ], [ -64.765167, 17.780865 ], [ -64.765282, 17.780876 ], [ -64.765403, 17.780898 ], [ -64.765518, 17.780931 ], [ -64.765627, 17.780948 ], [ -64.765679, 17.780964 ], [ -64.765863, 17.780953 ], [ -64.765897, 17.780948 ], [ -64.765978, 17.780915 ], [ -64.76603, 17.780887 ], [ -64.766087, 17.78086 ], [ -64.766156, 17.780805 ], [ -64.766202, 17.780777 ], [ -64.766352, 17.780672 ], [ -64.766392, 17.780634 ], [ -64.766478, 17.780573 ], [ -64.766518, 17.78054 ], [ -64.766581, 17.780496 ], [ -64.76688, 17.780347 ], [ -64.767001, 17.780298 ], [ -64.76711, 17.780276 ], [ -64.767381, 17.780254 ], [ -64.767478, 17.780243 ], [ -64.767633, 17.780254 ], [ -64.767915, 17.780292 ], [ -64.768001, 17.780309 ], [ -64.768111, 17.78032 ], [ -64.768427, 17.780364 ], [ -64.768663, 17.78038 ], [ -64.769002, 17.780419 ], [ -64.769246, 17.780462 ], [ -64.769404, 17.78049 ], [ -64.769703, 17.780573 ], [ -64.769864, 17.780606 ], [ -64.770278, 17.780765 ], [ -64.770468, 17.780809 ], [ -64.770554, 17.780815 ], [ -64.770819, 17.78082 ], [ -64.77098, 17.780837 ], [ -64.771192, 17.780875 ], [ -64.77148, 17.780947 ], [ -64.771652, 17.781002 ], [ -64.771888, 17.781117 ], [ -64.772037, 17.781227 ], [ -64.772129, 17.781316 ], [ -64.772175, 17.781382 ], [ -64.772198, 17.781426 ], [ -64.772221, 17.781459 ], [ -64.772382, 17.781536 ], [ -64.772492, 17.781574 ], [ -64.772612, 17.781629 ], [ -64.772699, 17.781701 ], [ -64.772773, 17.781839 ], [ -64.772837, 17.781976 ], [ -64.772911, 17.782021 ], [ -64.773038, 17.782065 ], [ -64.773113, 17.782125 ], [ -64.773164, 17.782142 ], [ -64.77321, 17.782136 ], [ -64.773268, 17.782142 ], [ -64.773377, 17.782186 ], [ -64.773492, 17.782202 ], [ -64.773607, 17.782175 ], [ -64.773699, 17.782119 ], [ -64.773791, 17.782092 ], [ -64.773843, 17.782086 ], [ -64.773935, 17.782108 ], [ -64.77401, 17.782136 ], [ -64.774073, 17.782169 ], [ -64.774136, 17.782196 ], [ -64.774228, 17.782224 ], [ -64.774337, 17.782224 ], [ -64.77455, 17.782213 ], [ -64.774677, 17.782235 ], [ -64.774786, 17.782268 ], [ -64.775016, 17.78235 ], [ -64.7752, 17.782433 ], [ -64.775378, 17.782499 ], [ -64.775476, 17.782554 ], [ -64.775573, 17.782631 ], [ -64.775654, 17.78273 ], [ -64.775706, 17.782829 ], [ -64.775775, 17.783017 ], [ -64.775798, 17.783055 ], [ -64.775826, 17.783077 ], [ -64.775872, 17.783105 ], [ -64.776022, 17.783116 ], [ -64.776292, 17.783175 ], [ -64.776482, 17.783264 ], [ -64.776603, 17.783297 ], [ -64.776677, 17.783314 ], [ -64.776764, 17.783325 ], [ -64.776965, 17.783396 ], [ -64.777029, 17.783427 ], [ -64.777114, 17.783429 ], [ -64.777264, 17.783418 ], [ -64.777408, 17.783422 ], [ -64.777563, 17.783479 ], [ -64.777761, 17.783584 ], [ -64.777833, 17.783617 ], [ -64.77796, 17.783628 ], [ -64.778034, 17.783639 ], [ -64.778132, 17.783672 ], [ -64.778265, 17.783731 ], [ -64.778408, 17.783776 ], [ -64.778512, 17.783798 ], [ -64.778632, 17.783812 ], [ -64.778759, 17.783828 ], [ -64.77888, 17.783842 ], [ -64.779023, 17.783831 ], [ -64.779759, 17.783754 ], [ -64.77996, 17.783721 ], [ -64.780147, 17.78371 ], [ -64.780506, 17.78373 ], [ -64.780702, 17.783759 ], [ -64.781007, 17.783787 ], [ -64.78107, 17.783784 ], [ -64.781498, 17.78377 ], [ -64.781737, 17.783781 ], [ -64.781949, 17.783764 ], [ -64.782266, 17.783775 ], [ -64.782421, 17.783746 ], [ -64.782525, 17.783727 ], [ -64.782573, 17.783707 ], [ -64.782763, 17.783597 ], [ -64.782863, 17.783527 ], [ -64.783197, 17.783334 ], [ -64.783456, 17.78323 ], [ -64.78364, 17.783164 ], [ -64.783795, 17.783125 ], [ -64.784131, 17.783013 ], [ -64.784238, 17.782966 ], [ -64.78441, 17.782904 ], [ -64.784666, 17.782833 ], [ -64.784755, 17.782816 ], [ -64.78493, 17.782816 ], [ -64.785045, 17.782811 ], [ -64.785175, 17.782809 ], [ -64.7852, 17.782809 ], [ -64.785307, 17.782805 ], [ -64.78556, 17.782772 ], [ -64.785703, 17.782753 ], [ -64.785735, 17.78275 ], [ -64.785911, 17.78272 ], [ -64.786097, 17.782688 ], [ -64.786318, 17.782634 ], [ -64.786681, 17.782573 ], [ -64.786813, 17.78254 ], [ -64.787077, 17.782435 ], [ -64.787204, 17.782375 ], [ -64.78724, 17.782361 ], [ -64.787342, 17.782325 ], [ -64.787692, 17.782176 ], [ -64.787733, 17.78216 ], [ -64.787764, 17.782144 ], [ -64.787793, 17.782131 ], [ -64.787994, 17.782065 ], [ -64.788181, 17.781989 ], [ -64.788339, 17.781934 ], [ -64.788569, 17.781888 ], [ -64.788684, 17.781857 ], [ -64.788851, 17.781824 ], [ -64.788874, 17.781821 ], [ -64.788986, 17.781807 ], [ -64.789196, 17.781817 ], [ -64.789359, 17.781801 ], [ -64.789506, 17.781779 ], [ -64.78966, 17.781761 ], [ -64.789661, 17.781761 ], [ -64.789759, 17.78174 ], [ -64.790029, 17.78164 ], [ -64.790245, 17.781537 ], [ -64.79038, 17.781465 ], [ -64.790464, 17.781401 ], [ -64.790547, 17.78131 ], [ -64.790643, 17.781169 ], [ -64.790821, 17.780857 ], [ -64.791124, 17.780413 ], [ -64.791147, 17.780363 ], [ -64.79119, 17.780236 ], [ -64.791227, 17.78016 ], [ -64.791275, 17.780084 ], [ -64.791336, 17.780011 ], [ -64.791426, 17.779939 ], [ -64.791498, 17.779892 ], [ -64.79155, 17.77987 ], [ -64.791656, 17.779827 ], [ -64.791788, 17.779768 ], [ -64.791937, 17.779707 ], [ -64.791997, 17.779669 ], [ -64.792125, 17.779621 ], [ -64.792291, 17.779581 ], [ -64.792457, 17.779581 ], [ -64.792581, 17.779569 ], [ -64.792687, 17.779569 ], [ -64.793064, 17.779537 ], [ -64.793187, 17.779534 ], [ -64.793413, 17.779528 ], [ -64.793527, 17.779525 ], [ -64.793604, 17.779518 ], [ -64.793708, 17.779497 ], [ -64.793777, 17.779476 ], [ -64.793832, 17.77945 ], [ -64.793903, 17.779436 ], [ -64.793986, 17.779393 ], [ -64.794099, 17.77935 ], [ -64.79422, 17.779311 ], [ -64.794323, 17.779314 ], [ -64.794384, 17.779315 ], [ -64.794398, 17.779315 ], [ -64.79446, 17.779306 ], [ -64.794517, 17.779298 ], [ -64.794541, 17.779294 ], [ -64.794611, 17.779287 ], [ -64.794714, 17.779239 ], [ -64.79481, 17.779222 ], [ -64.794895, 17.779194 ], [ -64.794945, 17.77916 ], [ -64.795033, 17.779125 ], [ -64.79514, 17.779092 ], [ -64.795516, 17.778994 ], [ -64.795796, 17.778925 ], [ -64.795854, 17.778906 ], [ -64.796013, 17.778844 ], [ -64.796167, 17.778804 ], [ -64.796254, 17.778776 ], [ -64.796302, 17.778777 ], [ -64.796371, 17.778763 ], [ -64.796409, 17.778756 ], [ -64.796458, 17.778737 ], [ -64.796535, 17.778714 ], [ -64.796613, 17.778692 ], [ -64.79665, 17.778684 ], [ -64.796751, 17.778665 ], [ -64.796872, 17.778641 ], [ -64.796918, 17.778633 ], [ -64.796972, 17.778628 ], [ -64.797054, 17.77862 ], [ -64.797118, 17.778614 ], [ -64.797218, 17.778605 ], [ -64.797383, 17.778591 ], [ -64.797398, 17.778587 ], [ -64.797482, 17.778566 ], [ -64.797637, 17.778527 ], [ -64.797963, 17.778446 ], [ -64.798093, 17.778428 ], [ -64.798191, 17.778424 ], [ -64.798259, 17.778421 ], [ -64.798357, 17.778417 ], [ -64.798518, 17.778417 ], [ -64.798625, 17.778417 ], [ -64.798726, 17.778417 ], [ -64.798755, 17.778415 ], [ -64.798815, 17.77841 ], [ -64.798935, 17.7784 ], [ -64.7991, 17.778386 ], [ -64.799288, 17.778391 ], [ -64.799348, 17.778402 ], [ -64.799374, 17.778404 ], [ -64.799435, 17.778399 ], [ -64.799535, 17.778392 ], [ -64.799603, 17.778396 ], [ -64.799725, 17.77839 ], [ -64.799832, 17.778402 ], [ -64.800129, 17.778378 ], [ -64.800267, 17.778367 ], [ -64.800397, 17.778367 ], [ -64.80045, 17.778378 ], [ -64.800527, 17.778392 ], [ -64.80057, 17.778395 ], [ -64.800664, 17.778402 ], [ -64.800733, 17.77842 ], [ -64.800778, 17.778432 ], [ -64.800839, 17.778434 ], [ -64.800925, 17.77845 ], [ -64.801107, 17.778484 ], [ -64.801198, 17.778501 ], [ -64.801284, 17.778507 ], [ -64.801436, 17.778519 ], [ -64.801495, 17.778524 ], [ -64.801651, 17.778557 ], [ -64.801762, 17.778581 ], [ -64.801937, 17.778579 ], [ -64.801968, 17.778579 ], [ -64.802032, 17.778594 ], [ -64.80206, 17.7786 ], [ -64.802152, 17.778636 ], [ -64.802203, 17.778642 ], [ -64.802266, 17.77865 ], [ -64.802379, 17.778676 ], [ -64.802503, 17.778705 ], [ -64.802525, 17.778716 ], [ -64.802554, 17.778761 ], [ -64.802571, 17.778783 ], [ -64.802638, 17.778799 ], [ -64.802686, 17.77881 ], [ -64.802716, 17.778795 ], [ -64.802731, 17.778749 ], [ -64.802777, 17.778749 ], [ -64.802823, 17.778776 ], [ -64.802922, 17.77881 ], [ -64.802928, 17.77886 ], [ -64.802914, 17.778929 ], [ -64.802928, 17.778976 ], [ -64.802945, 17.778985 ], [ -64.802999, 17.778943 ], [ -64.803034, 17.778949 ], [ -64.803044, 17.778966 ], [ -64.803052, 17.778989 ], [ -64.803101, 17.778995 ], [ -64.803136, 17.778999 ], [ -64.803189, 17.779041 ], [ -64.803235, 17.779016 ], [ -64.803306, 17.778995 ], [ -64.80334, 17.778999 ], [ -64.803409, 17.779085 ], [ -64.803535, 17.779114 ], [ -64.803881, 17.779192 ], [ -64.804168, 17.779121 ], [ -64.804314, 17.779174 ], [ -64.804526, 17.779192 ], [ -64.804801, 17.779111 ], [ -64.804919, 17.779116 ], [ -64.80491, 17.779056 ], [ -64.805054, 17.778906 ], [ -64.805134, 17.778912 ], [ -64.805215, 17.778945 ], [ -64.805335, 17.778967 ], [ -64.805439, 17.778956 ], [ -64.805571, 17.778912 ], [ -64.805692, 17.778846 ], [ -64.805801, 17.778808 ], [ -64.805882, 17.778724 ], [ -64.80598, 17.778669 ], [ -64.806074, 17.778632 ], [ -64.806157, 17.77856 ], [ -64.806238, 17.77851 ], [ -64.806307, 17.778488 ], [ -64.80638, 17.778516 ], [ -64.806497, 17.778499 ], [ -64.806546, 17.778467 ], [ -64.80669, 17.778493 ], [ -64.806809, 17.778379 ], [ -64.806864, 17.77819 ], [ -64.80694, 17.778111 ], [ -64.807014, 17.778048 ], [ -64.807193, 17.778022 ], [ -64.807298, 17.777961 ], [ -64.807508, 17.777903 ], [ -64.807727, 17.777766 ], [ -64.807877, 17.777693 ], [ -64.807998, 17.777664 ], [ -64.808127, 17.777582 ], [ -64.808295, 17.777477 ], [ -64.816621, 17.769413 ], [ -64.816622, 17.769413 ], [ -64.816726, 17.769397 ], [ -64.816823, 17.769358 ], [ -64.81691, 17.769275 ], [ -64.817042, 17.76921 ], [ -64.817169, 17.76916 ], [ -64.817329, 17.769105 ], [ -64.817428, 17.769033 ], [ -64.817531, 17.768951 ], [ -64.817595, 17.768912 ], [ -64.817887, 17.768791 ], [ -64.818019, 17.76872 ], [ -64.818182, 17.768642 ], [ -64.818335, 17.768549 ], [ -64.818405, 17.7685 ], [ -64.818532, 17.768395 ], [ -64.818611, 17.768351 ], [ -64.818726, 17.768296 ], [ -64.818801, 17.768274 ], [ -64.818865, 17.768236 ], [ -64.8189, 17.768163 ], [ -64.818882, 17.768026 ], [ -64.818923, 17.767922 ], [ -64.819002, 17.767844 ], [ -64.819054, 17.767767 ], [ -64.819129, 17.767668 ], [ -64.819278, 17.767519 ], [ -64.819428, 17.767409 ], [ -64.819485, 17.767376 ], [ -64.819581, 17.767345 ], [ -64.81966, 17.767317 ], [ -64.819744, 17.767279 ], [ -64.819837, 17.767238 ], [ -64.819906, 17.767207 ], [ -64.819946, 17.767189 ], [ -64.820021, 17.767162 ], [ -64.820122, 17.767126 ], [ -64.820187, 17.767103 ], [ -64.820278, 17.767079 ], [ -64.820368, 17.767051 ], [ -64.820462, 17.767018 ], [ -64.820724, 17.766964 ], [ -64.820982, 17.766889 ], [ -64.821136, 17.766844 ], [ -64.821338, 17.766793 ], [ -64.821354, 17.766796 ], [ -64.821431, 17.766764 ], [ -64.821467, 17.766739 ], [ -64.821534, 17.766704 ], [ -64.821574, 17.766679 ], [ -64.821617, 17.766655 ], [ -64.821666, 17.766637 ], [ -64.821729, 17.766614 ], [ -64.821747, 17.766607 ], [ -64.821915, 17.766581 ], [ -64.822044, 17.766548 ], [ -64.822206, 17.766489 ], [ -64.822335, 17.76644 ], [ -64.822472, 17.766375 ], [ -64.822632, 17.766294 ], [ -64.823092, 17.766216 ], [ -64.823289, 17.766217 ], [ -64.823586, 17.766182 ], [ -64.823708, 17.766119 ], [ -64.823792, 17.766085 ], [ -64.823875, 17.76603 ], [ -64.823993, 17.765952 ], [ -64.824063, 17.765906 ], [ -64.824153, 17.765852 ], [ -64.824203, 17.765823 ], [ -64.824281, 17.765791 ], [ -64.824451, 17.765718 ], [ -64.8245, 17.765675 ], [ -64.82459, 17.765654 ], [ -64.82486, 17.765525 ], [ -64.825097, 17.765406 ], [ -64.825216, 17.765392 ], [ -64.825432, 17.765303 ], [ -64.825717, 17.765196 ], [ -64.825924, 17.765152 ], [ -64.825925, 17.765151 ], [ -64.826045, 17.76513 ], [ -64.826223, 17.765087 ], [ -64.826356, 17.765065 ], [ -64.826494, 17.765014 ], [ -64.826625, 17.764954 ], [ -64.826752, 17.764921 ], [ -64.826947, 17.764888 ], [ -64.827033, 17.764838 ], [ -64.827275, 17.764745 ], [ -64.827516, 17.764635 ], [ -64.82762, 17.764624 ], [ -64.827775, 17.764584 ], [ -64.827936, 17.764563 ], [ -64.828091, 17.764513 ], [ -64.828321, 17.764475 ], [ -64.828453, 17.764464 ], [ -64.828677, 17.764409 ], [ -64.828764, 17.764387 ], [ -64.828857, 17.764382 ], [ -64.828924, 17.764409 ], [ -64.82897, 17.764442 ], [ -64.828982, 17.764409 ], [ -64.829035, 17.764383 ], [ -64.829052, 17.764326 ], [ -64.829086, 17.764293 ], [ -64.829179, 17.764244 ], [ -64.829303, 17.7642 ], [ -64.829304, 17.7642 ], [ -64.829419, 17.764172 ], [ -64.829597, 17.764227 ], [ -64.829619, 17.764205 ], [ -64.829637, 17.764167 ], [ -64.82966, 17.764134 ], [ -64.829712, 17.764123 ], [ -64.829822, 17.764111 ], [ -64.829856, 17.764062 ], [ -64.829868, 17.764029 ], [ -64.829971, 17.76399 ], [ -64.830045, 17.76399 ], [ -64.83008, 17.763979 ], [ -64.830113, 17.763929 ], [ -64.830127, 17.763903 ], [ -64.830166, 17.76388 ], [ -64.830184, 17.763886 ], [ -64.830206, 17.763886 ], [ -64.830206, 17.763865 ], [ -64.830252, 17.763842 ], [ -64.830298, 17.763836 ], [ -64.830328, 17.763842 ], [ -64.83035, 17.763869 ], [ -64.830396, 17.76388 ], [ -64.830442, 17.763869 ], [ -64.830528, 17.763831 ], [ -64.83062, 17.763798 ], [ -64.830724, 17.763766 ], [ -64.830845, 17.763711 ], [ -64.830932, 17.763676 ], [ -64.830994, 17.763627 ], [ -64.831046, 17.763594 ], [ -64.831064, 17.763528 ], [ -64.831069, 17.763484 ], [ -64.83107, 17.763386 ], [ -64.83108, 17.763296 ], [ -64.831133, 17.763186 ], [ -64.831201, 17.763087 ], [ -64.8313, 17.762988 ], [ -64.831431, 17.762878 ], [ -64.831788, 17.762735 ], [ -64.831925, 17.762669 ], [ -64.832196, 17.762564 ], [ -64.832293, 17.762498 ], [ -64.832374, 17.762454 ], [ -64.83257, 17.762482 ], [ -64.832742, 17.762388 ], [ -64.832886, 17.762296 ], [ -64.832989, 17.76225 ], [ -64.833127, 17.762196 ], [ -64.833369, 17.762108 ], [ -64.833455, 17.762058 ], [ -64.833559, 17.761991 ], [ -64.833673, 17.761936 ], [ -64.8338, 17.761888 ], [ -64.833926, 17.761859 ], [ -64.834036, 17.76186 ], [ -64.834082, 17.76187 ], [ -64.83411, 17.761876 ], [ -64.834134, 17.761887 ], [ -64.834161, 17.76192 ], [ -64.83419, 17.76197 ], [ -64.83422, 17.762008 ], [ -64.834225, 17.762091 ], [ -64.83426, 17.762179 ], [ -64.834265, 17.762212 ], [ -64.834317, 17.762306 ], [ -64.834357, 17.762317 ], [ -64.834403, 17.762283 ], [ -64.83442, 17.762261 ], [ -64.834427, 17.762234 ], [ -64.834455, 17.762206 ], [ -64.834495, 17.762213 ], [ -64.834536, 17.762213 ], [ -64.834564, 17.762185 ], [ -64.834616, 17.762174 ], [ -64.834657, 17.762157 ], [ -64.834725, 17.762113 ], [ -64.8348, 17.762075 ], [ -64.834869, 17.762081 ], [ -64.834938, 17.762076 ], [ -64.834996, 17.762059 ], [ -64.835076, 17.76202 ], [ -64.835184, 17.761986 ], [ -64.835203, 17.761981 ], [ -64.835346, 17.761953 ], [ -64.835421, 17.761927 ], [ -64.83545, 17.761892 ], [ -64.835553, 17.761832 ], [ -64.835771, 17.761749 ], [ -64.835874, 17.761733 ], [ -64.836001, 17.761749 ], [ -64.836116, 17.761755 ], [ -64.836191, 17.761733 ], [ -64.836248, 17.761711 ], [ -64.836311, 17.7617 ], [ -64.836357, 17.761667 ], [ -64.836426, 17.76159 ], [ -64.836495, 17.761568 ], [ -64.836553, 17.761568 ], [ -64.83661, 17.761595 ], [ -64.836668, 17.761678 ], [ -64.836708, 17.7617 ], [ -64.836788, 17.761722 ], [ -64.836898, 17.761722 ], [ -64.837018, 17.761738 ], [ -64.837104, 17.761722 ], [ -64.837265, 17.761716 ], [ -64.837461, 17.761678 ], [ -64.83761, 17.761678 ], [ -64.837926, 17.761716 ], [ -64.838018, 17.761717 ], [ -64.838105, 17.761694 ], [ -64.838202, 17.761689 ], [ -64.838306, 17.761689 ], [ -64.838432, 17.761695 ], [ -64.83863, 17.761695 ], [ -64.838708, 17.761695 ], [ -64.838835, 17.761706 ], [ -64.839013, 17.761684 ], [ -64.839122, 17.761678 ], [ -64.839164, 17.761661 ], [ -64.839249, 17.761629 ], [ -64.839398, 17.761617 ], [ -64.839524, 17.761645 ], [ -64.839634, 17.761651 ], [ -64.839697, 17.761629 ], [ -64.839823, 17.761623 ], [ -64.839887, 17.761634 ], [ -64.840059, 17.761733 ], [ -64.840123, 17.761739 ], [ -64.840226, 17.761755 ], [ -64.84037, 17.761849 ], [ -64.840444, 17.761882 ], [ -64.840507, 17.761898 ], [ -64.840617, 17.761909 ], [ -64.840695, 17.761947 ], [ -64.840709, 17.761954 ], [ -64.840755, 17.761992 ], [ -64.840801, 17.761981 ], [ -64.840888, 17.76197 ], [ -64.841013, 17.761976 ], [ -64.841111, 17.762009 ], [ -64.841206, 17.762045 ], [ -64.841395, 17.762117 ], [ -64.841399, 17.762119 ], [ -64.841467, 17.762141 ], [ -64.841555, 17.762174 ], [ -64.841582, 17.762185 ], [ -64.84168, 17.762234 ], [ -64.841761, 17.76224 ], [ -64.841852, 17.76224 ], [ -64.841951, 17.762247 ], [ -64.842071, 17.762262 ], [ -64.842181, 17.762295 ], [ -64.842255, 17.762339 ], [ -64.842296, 17.762406 ], [ -64.842278, 17.762438 ], [ -64.84225, 17.762472 ], [ -64.842226, 17.762515 ], [ -64.842221, 17.762588 ], [ -64.842254, 17.762688 ], [ -64.842261, 17.762703 ], [ -64.842306, 17.762879 ], [ -64.842386, 17.763036 ], [ -64.84241, 17.763083 ], [ -64.842502, 17.763154 ], [ -64.842589, 17.763183 ], [ -64.842692, 17.763171 ], [ -64.842738, 17.763211 ], [ -64.842807, 17.763244 ], [ -64.842876, 17.763343 ], [ -64.84287, 17.763397 ], [ -64.842876, 17.763442 ], [ -64.842904, 17.76349 ], [ -64.842916, 17.763534 ], [ -64.842899, 17.763591 ], [ -64.842921, 17.763622 ], [ -64.842924, 17.763716 ], [ -64.842927, 17.763805 ], [ -64.842927, 17.763931 ], [ -64.842933, 17.763975 ], [ -64.842973, 17.763969 ], [ -64.84299, 17.763931 ], [ -64.843025, 17.76387 ], [ -64.84306, 17.76375 ], [ -64.843072, 17.763696 ], [ -64.84318, 17.763579 ], [ -64.843267, 17.763518 ], [ -64.843307, 17.763452 ], [ -64.843325, 17.763352 ], [ -64.843404, 17.763265 ], [ -64.843497, 17.763215 ], [ -64.8436, 17.763149 ], [ -64.843641, 17.76311 ], [ -64.843732, 17.76305 ], [ -64.843899, 17.762962 ], [ -64.844077, 17.762835 ], [ -64.844238, 17.762703 ], [ -64.84437, 17.762769 ], [ -64.844445, 17.762758 ], [ -64.84452, 17.762742 ], [ -64.844584, 17.762746 ], [ -64.844692, 17.762769 ], [ -64.844968, 17.762863 ], [ -64.845076, 17.762908 ], [ -64.8451, 17.762918 ], [ -64.845267, 17.763039 ], [ -64.845313, 17.763128 ], [ -64.845348, 17.763177 ], [ -64.845399, 17.763221 ], [ -64.845451, 17.763276 ], [ -64.84552, 17.763404 ], [ -64.845531, 17.763441 ], [ -64.845532, 17.763496 ], [ -64.84552, 17.763556 ], [ -64.845509, 17.763668 ], [ -64.845526, 17.763734 ], [ -64.84552, 17.763766 ], [ -64.845506, 17.763782 ], [ -64.845485, 17.763777 ], [ -64.845468, 17.76376 ], [ -64.845428, 17.763755 ], [ -64.845417, 17.763786 ], [ -64.845416, 17.763804 ], [ -64.845433, 17.763815 ], [ -64.845509, 17.76391 ], [ -64.84556, 17.763944 ], [ -64.845566, 17.763948 ], [ -64.845705, 17.764064 ], [ -64.84583, 17.764162 ], [ -64.845934, 17.764229 ], [ -64.846015, 17.764262 ], [ -64.846066, 17.764267 ], [ -64.846158, 17.764283 ], [ -64.84644, 17.764285 ], [ -64.846514, 17.764257 ], [ -64.846593, 17.764166 ], [ -64.846617, 17.76414 ], [ -64.846653, 17.764118 ], [ -64.846876, 17.764058 ], [ -64.846953, 17.764019 ], [ -64.84702, 17.763986 ], [ -64.84713, 17.763949 ], [ -64.847268, 17.763936 ], [ -64.847347, 17.763959 ], [ -64.847411, 17.764003 ], [ -64.847414, 17.764011 ], [ -64.84748, 17.764174 ], [ -64.847527, 17.764223 ], [ -64.847699, 17.764208 ], [ -64.847837, 17.764224 ], [ -64.847941, 17.7643 ], [ -64.847975, 17.764377 ], [ -64.847997, 17.76451 ], [ -64.848003, 17.764632 ], [ -64.848026, 17.76472 ], [ -64.848044, 17.764753 ], [ -64.848084, 17.764769 ], [ -64.84817, 17.764786 ], [ -64.848222, 17.764824 ], [ -64.848291, 17.764835 ], [ -64.850751, 17.764323 ], [ -64.85082, 17.764311 ], [ -64.850947, 17.76424 ], [ -64.851021, 17.76419 ], [ -64.851125, 17.764164 ], [ -64.851256, 17.764124 ], [ -64.851441, 17.764098 ], [ -64.851751, 17.764091 ], [ -64.851837, 17.764074 ], [ -64.851872, 17.764046 ], [ -64.851883, 17.764008 ], [ -64.851877, 17.763964 ], [ -64.851832, 17.763882 ], [ -64.851848, 17.763843 ], [ -64.851923, 17.763771 ], [ -64.851946, 17.763738 ], [ -64.85197, 17.763657 ], [ -64.852021, 17.763629 ], [ -64.85205, 17.763634 ], [ -64.852068, 17.763679 ], [ -64.852079, 17.763739 ], [ -64.852113, 17.763778 ], [ -64.852194, 17.763795 ], [ -64.852269, 17.763821 ], [ -64.85232, 17.763854 ], [ -64.852372, 17.763899 ], [ -64.852441, 17.763944 ], [ -64.852539, 17.763954 ], [ -64.852642, 17.76397 ], [ -64.853101, 17.764091 ], [ -64.853257, 17.764118 ], [ -64.853383, 17.764125 ], [ -64.853493, 17.764115 ], [ -64.853631, 17.764097 ], [ -64.853734, 17.764107 ], [ -64.853855, 17.764113 ], [ -64.853941, 17.764129 ], [ -64.853993, 17.764108 ], [ -64.854028, 17.76408 ], [ -64.854084, 17.764025 ], [ -64.854148, 17.763986 ], [ -64.854245, 17.763986 ], [ -64.854288, 17.763978 ], [ -64.854332, 17.763971 ], [ -64.854481, 17.763976 ], [ -64.854545, 17.763992 ], [ -64.854573, 17.76403 ], [ -64.854584, 17.76408 ], [ -64.85459, 17.764179 ], [ -64.854619, 17.76424 ], [ -64.854648, 17.764273 ], [ -64.854694, 17.764306 ], [ -64.85481, 17.764405 ], [ -64.85486, 17.764443 ], [ -64.854913, 17.764499 ], [ -64.854998, 17.764504 ], [ -64.855102, 17.764492 ], [ -64.855228, 17.764443 ], [ -64.855344, 17.764373 ], [ -64.855424, 17.7643 ], [ -64.855521, 17.764262 ], [ -64.855734, 17.764263 ], [ -64.855971, 17.764245 ], [ -64.856154, 17.764218 ], [ -64.856315, 17.764208 ], [ -64.856603, 17.764234 ], [ -64.856717, 17.764295 ], [ -64.856815, 17.764328 ], [ -64.856902, 17.76434 ], [ -64.856999, 17.764373 ], [ -64.857137, 17.764428 ], [ -64.857212, 17.764481 ], [ -64.857258, 17.764571 ], [ -64.857309, 17.764697 ], [ -64.857378, 17.764853 ], [ -64.857464, 17.764994 ], [ -64.857499, 17.765093 ], [ -64.857597, 17.765171 ], [ -64.857718, 17.765247 ], [ -64.857872, 17.765319 ], [ -64.858005, 17.765376 ], [ -64.858184, 17.765442 ], [ -64.858356, 17.765486 ], [ -64.858419, 17.765518 ], [ -64.858632, 17.765569 ], [ -64.858855, 17.765666 ], [ -64.859033, 17.765732 ], [ -64.859178, 17.765778 ], [ -64.85943, 17.765817 ], [ -64.859678, 17.765844 ], [ -64.859937, 17.765877 ], [ -64.860206, 17.765832 ], [ -64.860402, 17.765767 ], [ -64.860471, 17.76575 ], [ -64.86054, 17.765738 ], [ -64.860644, 17.765805 ], [ -64.860707, 17.765839 ], [ -64.860741, 17.765872 ], [ -64.860746, 17.765903 ], [ -64.860765, 17.765933 ], [ -64.860775, 17.765963 ], [ -64.860856, 17.766063 ], [ -64.860908, 17.766135 ], [ -64.861, 17.766179 ], [ -64.861236, 17.766274 ], [ -64.861293, 17.7663 ], [ -64.861328, 17.766345 ], [ -64.861328, 17.766395 ], [ -64.861373, 17.766449 ], [ -64.861449, 17.766516 ], [ -64.861511, 17.76656 ], [ -64.861632, 17.766604 ], [ -64.861724, 17.766615 ], [ -64.861879, 17.766586 ], [ -64.861983, 17.766576 ], [ -64.862109, 17.766586 ], [ -64.862213, 17.766603 ], [ -64.862401, 17.766715 ], [ -64.8625, 17.766752 ], [ -64.862575, 17.766769 ], [ -64.86269, 17.766786 ], [ -64.862776, 17.766778 ], [ -64.862891, 17.766757 ], [ -64.862965, 17.766756 ], [ -64.863023, 17.766785 ], [ -64.86312, 17.766818 ], [ -64.863397, 17.766852 ], [ -64.863576, 17.766834 ], [ -64.863701, 17.766778 ], [ -64.863828, 17.766758 ], [ -64.863874, 17.766764 ], [ -64.863902, 17.766756 ], [ -64.863937, 17.766775 ], [ -64.863965, 17.766773 ], [ -64.86396, 17.766747 ], [ -64.863965, 17.766718 ], [ -64.863989, 17.766724 ], [ -64.864035, 17.766753 ], [ -64.864162, 17.766818 ], [ -64.864299, 17.766866 ], [ -64.864378, 17.766913 ], [ -64.864431, 17.766923 ], [ -64.864518, 17.766918 ], [ -64.864592, 17.766929 ], [ -64.864656, 17.766951 ], [ -64.86469, 17.766977 ], [ -64.864788, 17.766979 ], [ -64.864886, 17.766989 ], [ -64.864966, 17.767038 ], [ -64.865024, 17.767098 ], [ -64.86512, 17.767209 ], [ -64.86526, 17.767331 ], [ -64.865396, 17.767425 ], [ -64.865708, 17.767566 ], [ -64.865857, 17.76761 ], [ -64.865989, 17.767656 ], [ -64.866001, 17.767661 ], [ -64.866099, 17.767689 ], [ -64.866127, 17.76775 ], [ -64.866179, 17.76781 ], [ -64.866265, 17.767864 ], [ -64.866495, 17.767936 ], [ -64.866626, 17.767987 ], [ -64.866765, 17.768058 ], [ -64.866903, 17.76814 ], [ -64.867012, 17.768256 ], [ -64.867065, 17.768339 ], [ -64.867114, 17.768388 ], [ -64.867178, 17.768422 ], [ -64.867254, 17.768471 ], [ -64.867288, 17.768525 ], [ -64.867312, 17.768586 ], [ -64.867323, 17.768643 ], [ -64.867334, 17.768733 ], [ -64.867357, 17.768792 ], [ -64.867357, 17.768821 ], [ -64.867368, 17.768852 ], [ -64.867362, 17.76889 ], [ -64.867342, 17.768887 ], [ -64.867324, 17.768878 ], [ -64.867306, 17.768861 ], [ -64.867271, 17.768839 ], [ -64.867237, 17.768828 ], [ -64.867201, 17.768824 ], [ -64.867179, 17.768867 ], [ -64.867197, 17.768905 ], [ -64.867208, 17.768966 ], [ -64.867243, 17.769027 ], [ -64.867265, 17.769084 ], [ -64.867283, 17.769336 ], [ -64.8673, 17.769401 ], [ -64.867333, 17.769444 ], [ -64.867369, 17.769473 ], [ -64.867414, 17.769479 ], [ -64.867443, 17.769488 ], [ -64.867472, 17.769515 ], [ -64.86746, 17.769532 ], [ -64.867461, 17.769567 ], [ -64.870778, 17.770766 ], [ -64.870835, 17.770788 ], [ -64.870956, 17.770773 ], [ -64.871059, 17.770784 ], [ -64.871157, 17.770783 ], [ -64.871231, 17.77076 ], [ -64.871283, 17.770739 ], [ -64.871312, 17.770704 ], [ -64.871347, 17.770684 ], [ -64.871473, 17.770696 ], [ -64.87157, 17.770718 ], [ -64.871766, 17.77075 ], [ -64.871962, 17.770766 ], [ -64.872146, 17.770827 ], [ -64.872232, 17.770894 ], [ -64.872353, 17.770938 ], [ -64.872428, 17.770942 ], [ -64.872542, 17.770936 ], [ -64.872709, 17.770881 ], [ -64.872864, 17.770847 ], [ -64.873101, 17.770782 ], [ -64.873313, 17.770671 ], [ -64.873324, 17.770666 ], [ -64.873605, 17.770556 ], [ -64.873761, 17.770446 ], [ -64.873882, 17.770332 ], [ -64.874031, 17.770231 ], [ -64.8741, 17.770127 ], [ -64.874118, 17.770056 ], [ -64.874106, 17.77 ], [ -64.874083, 17.769962 ], [ -64.874048, 17.769862 ], [ -64.87406, 17.76984 ], [ -64.874289, 17.769658 ], [ -64.874495, 17.769411 ], [ -64.8746, 17.769313 ], [ -64.874744, 17.769208 ], [ -64.874876, 17.769141 ], [ -64.875032, 17.769104 ], [ -64.875302, 17.769119 ], [ -64.875445, 17.76914 ], [ -64.875664, 17.769235 ], [ -64.875836, 17.769301 ], [ -64.876026, 17.769417 ], [ -64.876185, 17.769506 ], [ -64.876537, 17.769657 ], [ -64.87664, 17.769691 ], [ -64.876772, 17.769704 ], [ -64.877153, 17.76972 ], [ -64.87725, 17.769731 ], [ -64.877377, 17.769698 ], [ -64.877469, 17.76967 ], [ -64.877705, 17.76957 ], [ -64.877894, 17.769503 ], [ -64.878061, 17.769416 ], [ -64.878199, 17.769328 ], [ -64.878319, 17.769208 ], [ -64.878596, 17.769015 ], [ -64.878727, 17.76893 ], [ -64.878969, 17.76875 ], [ -64.879123, 17.768671 ], [ -64.879257, 17.768596 ], [ -64.879366, 17.768552 ], [ -64.879474, 17.768501 ], [ -64.879653, 17.768375 ], [ -64.879768, 17.768331 ], [ -64.879866, 17.768282 ], [ -64.87996, 17.768222 ], [ -64.880072, 17.768153 ], [ -64.880348, 17.768016 ], [ -64.88059, 17.76788 ], [ -64.88082, 17.767781 ], [ -64.880992, 17.767693 ], [ -64.881268, 17.76756 ], [ -64.881521, 17.767449 ], [ -64.881722, 17.767273 ], [ -64.888504, 17.760911 ], [ -64.888602, 17.760779 ], [ -64.888625, 17.760652 ], [ -64.888664, 17.760497 ], [ -64.888751, 17.760377 ], [ -64.888858, 17.760277 ], [ -64.888952, 17.760152 ], [ -64.889025, 17.760008 ], [ -64.889055, 17.759914 ], [ -64.889108, 17.759832 ], [ -64.889198, 17.759676 ], [ -64.889291, 17.759435 ], [ -64.889331, 17.759265 ], [ -64.889354, 17.759077 ], [ -64.889407, 17.758916 ], [ -64.889417, 17.758701 ], [ -64.889435, 17.758524 ], [ -64.889463, 17.758473 ], [ -64.889481, 17.758438 ], [ -64.889498, 17.758419 ], [ -64.889542, 17.758369 ], [ -64.889568, 17.758303 ], [ -64.889581, 17.758267 ], [ -64.889587, 17.758249 ], [ -64.889595, 17.758177 ], [ -64.889658, 17.758039 ], [ -64.889714, 17.757928 ], [ -64.889714, 17.757883 ], [ -64.889725, 17.757793 ], [ -64.889783, 17.75762 ], [ -64.889801, 17.757566 ], [ -64.889804, 17.757551 ], [ -64.889816, 17.757488 ], [ -64.889826, 17.757436 ], [ -64.889845, 17.757337 ], [ -64.889851, 17.757308 ], [ -64.889854, 17.75729 ], [ -64.889889, 17.757186 ], [ -64.889888, 17.757152 ], [ -64.889893, 17.757068 ], [ -64.889893, 17.75699 ], [ -64.889923, 17.756895 ], [ -64.88996, 17.756809 ], [ -64.890007, 17.756702 ], [ -64.890058, 17.756612 ], [ -64.890095, 17.756556 ], [ -64.89016, 17.756462 ], [ -64.890182, 17.756438 ], [ -64.890236, 17.756378 ], [ -64.89027, 17.756282 ], [ -64.890274, 17.756271 ], [ -64.890311, 17.756126 ], [ -64.89033, 17.756053 ], [ -64.890348, 17.755982 ], [ -64.890368, 17.755956 ], [ -64.890396, 17.755899 ], [ -64.89048, 17.755821 ], [ -64.890515, 17.75574 ], [ -64.890534, 17.755685 ], [ -64.890552, 17.755645 ], [ -64.890556, 17.755594 ], [ -64.890571, 17.755528 ], [ -64.890587, 17.755463 ], [ -64.890595, 17.755341 ], [ -64.890602, 17.755102 ], [ -64.890625, 17.754971 ], [ -64.890644, 17.754927 ], [ -64.89073, 17.754735 ], [ -64.890748, 17.754666 ], [ -64.890793, 17.754492 ], [ -64.890849, 17.754363 ], [ -64.890888, 17.754273 ], [ -64.89092, 17.754176 ], [ -64.890945, 17.754075 ], [ -64.890938, 17.754046 ], [ -64.890941, 17.753937 ], [ -64.890945, 17.753901 ], [ -64.89096, 17.753864 ], [ -64.891037, 17.753708 ], [ -64.891075, 17.753616 ], [ -64.891107, 17.753584 ], [ -64.891133, 17.753557 ], [ -64.89118, 17.7535 ], [ -64.891224, 17.753429 ], [ -64.891246, 17.753414 ], [ -64.891273, 17.753392 ], [ -64.891307, 17.753304 ], [ -64.891323, 17.753275 ], [ -64.891357, 17.753208 ], [ -64.891369, 17.753159 ], [ -64.891394, 17.753057 ], [ -64.891403, 17.753017 ], [ -64.891428, 17.752972 ], [ -64.891473, 17.752889 ], [ -64.891495, 17.75285 ], [ -64.891513, 17.752783 ], [ -64.891525, 17.752741 ], [ -64.891564, 17.752659 ], [ -64.891607, 17.752567 ], [ -64.891632, 17.752489 ], [ -64.893255, 17.748821 ], [ -64.893255, 17.748815 ], [ -64.893283, 17.748732 ], [ -64.893328, 17.748634 ], [ -64.893425, 17.748469 ], [ -64.893517, 17.748348 ], [ -64.893634, 17.748221 ], [ -64.893696, 17.748098 ], [ -64.893823, 17.747878 ], [ -64.893892, 17.747731 ], [ -64.893931, 17.747622 ], [ -64.893984, 17.747505 ], [ -64.894036, 17.747361 ], [ -64.894054, 17.747142 ], [ -64.89407, 17.746997 ], [ -64.894094, 17.746877 ], [ -64.894098, 17.746738 ], [ -64.89414, 17.746596 ], [ -64.894134, 17.746424 ], [ -64.894161, 17.746319 ], [ -64.89418, 17.746182 ], [ -64.894243, 17.745836 ], [ -64.894289, 17.745659 ], [ -64.894293, 17.745455 ], [ -64.894289, 17.745284 ], [ -64.894293, 17.745168 ], [ -64.894271, 17.744982 ], [ -64.894242, 17.744817 ], [ -64.894219, 17.744711 ], [ -64.894182, 17.74458 ], [ -64.894178, 17.744563 ], [ -64.89415, 17.74443 ], [ -64.894109, 17.744348 ], [ -64.89404, 17.744254 ], [ -64.894001, 17.744162 ], [ -64.893932, 17.744079 ], [ -64.89384, 17.743947 ], [ -64.893713, 17.743753 ], [ -64.893656, 17.743578 ], [ -64.893604, 17.743452 ], [ -64.89354, 17.743252 ], [ -64.89354, 17.743087 ], [ -64.893557, 17.743021 ], [ -64.893633, 17.742802 ], [ -64.893656, 17.742767 ], [ -64.893666, 17.74274 ], [ -64.893633, 17.742641 ], [ -64.893408, 17.742343 ], [ -64.893334, 17.742235 ], [ -64.893265, 17.742164 ], [ -64.89323, 17.742108 ], [ -64.893226, 17.742103 ], [ -64.89319, 17.742063 ], [ -64.893144, 17.74202 ], [ -64.893092, 17.741998 ], [ -64.893029, 17.741942 ], [ -64.892989, 17.741893 ], [ -64.892954, 17.741866 ], [ -64.892891, 17.741772 ], [ -64.89288, 17.741657 ], [ -64.89284, 17.741551 ], [ -64.892775, 17.741291 ], [ -64.892753, 17.741074 ], [ -64.892718, 17.740911 ], [ -64.892713, 17.740692 ], [ -64.892706, 17.740608 ], [ -64.892684, 17.740482 ], [ -64.89262, 17.740262 ], [ -64.892575, 17.740135 ], [ -64.89162, 17.738516 ], [ -64.891562, 17.738411 ], [ -64.891512, 17.738345 ], [ -64.891459, 17.738264 ], [ -64.891414, 17.738143 ], [ -64.891378, 17.738086 ], [ -64.891332, 17.738037 ], [ -64.891299, 17.738022 ], [ -64.891246, 17.737982 ], [ -64.891223, 17.737949 ], [ -64.891195, 17.737883 ], [ -64.891206, 17.737827 ], [ -64.891184, 17.737734 ], [ -64.891148, 17.737695 ], [ -64.891106, 17.737663 ], [ -64.891056, 17.737624 ], [ -64.890994, 17.737564 ], [ -64.890942, 17.737488 ], [ -64.89089, 17.737389 ], [ -64.890801, 17.737207 ], [ -64.890781, 17.737162 ], [ -64.890695, 17.737009 ], [ -64.890586, 17.736843 ], [ -64.890486, 17.736736 ], [ -64.890447, 17.7367 ], [ -64.890425, 17.736617 ], [ -64.890379, 17.736536 ], [ -64.890333, 17.73643 ], [ -64.890293, 17.736293 ], [ -64.890252, 17.736205 ], [ -64.890195, 17.736138 ], [ -64.890166, 17.736039 ], [ -64.890132, 17.735951 ], [ -64.890096, 17.73584 ], [ -64.89009, 17.735751 ], [ -64.890084, 17.735735 ], [ -64.890016, 17.735543 ], [ -64.889982, 17.735489 ], [ -64.889757, 17.735311 ], [ -64.889837, 17.735129 ], [ -64.889832, 17.735074 ], [ -64.889833, 17.734926 ], [ -64.88978, 17.734815 ], [ -64.889735, 17.734636 ], [ -64.889689, 17.734491 ], [ -64.889659, 17.734358 ], [ -64.889613, 17.734248 ], [ -64.889556, 17.734132 ], [ -64.889525, 17.733996 ], [ -64.889458, 17.733751 ], [ -64.88942, 17.733572 ], [ -64.88942, 17.733471 ], [ -64.889397, 17.733326 ], [ -64.889397, 17.733242 ], [ -64.88942, 17.733206 ], [ -64.88942, 17.733158 ], [ -64.889389, 17.732864 ], [ -64.88932, 17.73258 ], [ -64.889214, 17.732268 ], [ -64.889187, 17.732198 ], [ -64.88916, 17.73214 ], [ -64.889084, 17.731941 ], [ -64.889061, 17.731867 ], [ -64.888944, 17.731617 ], [ -64.888906, 17.731542 ], [ -64.888848, 17.731322 ], [ -64.888775, 17.731134 ], [ -64.888711, 17.731022 ], [ -64.888597, 17.730865 ], [ -64.888572, 17.730808 ], [ -64.888496, 17.730701 ], [ -64.888455, 17.730593 ], [ -64.888277, 17.730386 ], [ -64.888208, 17.730284 ], [ -64.887925, 17.729743 ], [ -64.887886, 17.72963 ], [ -64.887911, 17.729564 ], [ -64.887959, 17.729485 ], [ -64.887938, 17.729242 ], [ -64.887874, 17.72907 ], [ -64.887829, 17.728924 ], [ -64.887761, 17.728764 ], [ -64.887663, 17.728398 ], [ -64.887488, 17.727992 ], [ -64.887428, 17.727846 ], [ -64.887376, 17.727702 ], [ -64.887352, 17.727596 ], [ -64.887375, 17.727489 ], [ -64.887415, 17.727435 ], [ -64.88746, 17.727359 ], [ -64.887466, 17.727272 ], [ -64.887393, 17.727208 ], [ -64.887372, 17.727123 ], [ -64.887258, 17.727006 ], [ -64.887133, 17.726781 ], [ -64.887101, 17.726703 ], [ -64.887038, 17.726485 ], [ -64.88694, 17.726215 ], [ -64.886865, 17.726028 ], [ -64.886733, 17.725817 ], [ -64.886664, 17.725657 ], [ -64.886623, 17.725426 ], [ -64.886584, 17.725283 ], [ -64.886548, 17.725117 ], [ -64.88648, 17.724898 ], [ -64.886416, 17.724749 ], [ -64.886382, 17.724623 ], [ -64.886325, 17.724475 ], [ -64.88629, 17.724396 ], [ -64.886215, 17.724266 ], [ -64.886152, 17.724126 ], [ -64.88614, 17.724093 ], [ -64.886101, 17.723984 ], [ -64.886025, 17.723537 ], [ -64.885968, 17.723311 ], [ -64.885876, 17.723042 ], [ -64.885836, 17.722894 ], [ -64.885795, 17.722619 ], [ -64.885773, 17.722547 ], [ -64.885767, 17.722474 ], [ -64.885744, 17.722425 ], [ -64.885692, 17.722376 ], [ -64.885629, 17.722342 ], [ -64.885577, 17.722303 ], [ -64.885508, 17.72227 ], [ -64.885462, 17.722193 ], [ -64.885411, 17.722051 ], [ -64.885371, 17.721963 ], [ -64.885347, 17.721869 ], [ -64.88533, 17.721819 ], [ -64.88529, 17.721758 ], [ -64.885255, 17.721671 ], [ -64.885238, 17.721583 ], [ -64.885197, 17.721439 ], [ -64.885192, 17.721346 ], [ -64.885193, 17.721329 ], [ -64.885203, 17.721204 ], [ -64.886623, 17.718046 ], [ -64.887519, 17.716052 ], [ -64.888356, 17.714192 ], [ -64.89038, 17.71402 ], [ -64.890311, 17.713312 ], [ -64.888702, 17.713421 ], [ -64.889488, 17.711673 ], [ -64.890047, 17.71043 ], [ -64.891545, 17.707097 ], [ -64.893288, 17.703219 ], [ -64.899138, 17.69021 ], [ -64.90352, 17.680464 ], [ -64.903538, 17.680445 ], [ -64.903553, 17.680428 ], [ -64.903558, 17.680423 ], [ -64.903567, 17.680406 ], [ -64.903579, 17.680384 ], [ -64.903586, 17.680369 ], [ -64.903614, 17.680317 ], [ -64.903636, 17.680275 ], [ -64.903675, 17.680201 ], [ -64.903704, 17.680148 ], [ -64.90372, 17.680116 ], [ -64.903722, 17.680113 ], [ -64.903733, 17.68008 ], [ -64.903752, 17.68002 ], [ -64.903773, 17.679957 ], [ -64.903775, 17.679949 ], [ -64.903777, 17.679945 ], [ -64.903778, 17.679939 ], [ -64.903784, 17.679895 ], [ -64.903789, 17.679864 ], [ -64.903799, 17.679801 ], [ -64.903804, 17.679763 ], [ -64.903808, 17.679739 ], [ -64.903809, 17.679736 ], [ -64.903809, 17.679733 ], [ -64.903808, 17.6797 ], [ -64.903807, 17.679633 ], [ -64.903807, 17.679609 ], [ -64.903806, 17.679529 ], [ -64.903805, 17.679502 ], [ -64.903804, 17.679446 ], [ -64.903794, 17.679381 ], [ -64.903785, 17.67932 ], [ -64.903777, 17.679266 ], [ -64.903774, 17.679247 ], [ -64.903764, 17.679186 ], [ -64.903755, 17.679122 ], [ -64.903741, 17.679037 ], [ -64.903713, 17.67894 ], [ -64.903683, 17.678845 ], [ -64.903622, 17.678646 ], [ -64.903612, 17.678622 ], [ -64.903582, 17.678542 ], [ -64.903521, 17.678382 ], [ -64.903493, 17.678315 ], [ -64.903449, 17.678212 ], [ -64.90339, 17.678072 ], [ -64.903372, 17.67803 ], [ -64.903303, 17.677867 ], [ -64.903268, 17.677788 ], [ -64.903209, 17.677659 ], [ -64.903147, 17.677522 ], [ -64.903064, 17.677359 ], [ -64.903011, 17.677255 ], [ -64.902838, 17.67692 ], [ -64.90281, 17.676878 ], [ -64.902727, 17.676754 ], [ -64.902617, 17.676597 ], [ -64.902446, 17.676361 ], [ -64.902404, 17.676304 ], [ -64.902336, 17.676218 ], [ -64.902277, 17.676145 ], [ -64.902159, 17.675988 ], [ -64.902078, 17.675903 ], [ -64.901982, 17.675804 ], [ -64.901905, 17.675717 ], [ -64.901847, 17.675652 ], [ -64.901775, 17.675562 ], [ -64.901744, 17.675524 ], [ -64.901656, 17.675431 ], [ -64.901589, 17.675356 ], [ -64.901555, 17.675319 ], [ -64.901475, 17.675206 ], [ -64.901446, 17.675164 ], [ -64.901409, 17.67511 ], [ -64.901356, 17.675028 ], [ -64.901301, 17.674934 ], [ -64.90125, 17.674832 ], [ -64.901228, 17.674789 ], [ -64.901187, 17.67469 ], [ -64.901177, 17.674666 ], [ -64.901153, 17.674598 ], [ -64.901132, 17.674538 ], [ -64.901076, 17.67443 ], [ -64.901057, 17.674368 ], [ -64.901037, 17.674301 ], [ -64.900953, 17.674167 ], [ -64.900919, 17.67412 ], [ -64.900867, 17.674069 ], [ -64.900816, 17.67403 ], [ -64.900745, 17.673994 ], [ -64.90068, 17.673968 ], [ -64.900583, 17.673941 ], [ -64.900569, 17.673939 ], [ -64.900543, 17.673931 ], [ -64.900518, 17.673933 ], [ -64.900498, 17.673934 ], [ -64.900449, 17.67394 ], [ -64.900373, 17.67397 ], [ -64.900341, 17.674002 ], [ -64.900326, 17.67403 ], [ -64.900281, 17.674123 ], [ -64.90027, 17.674147 ], [ -64.900229, 17.674206 ], [ -64.900216, 17.674226 ], [ -64.900194, 17.674263 ], [ -64.90017, 17.674306 ], [ -64.900149, 17.674342 ], [ -64.900113, 17.674406 ], [ -64.900083, 17.67446 ], [ -64.900064, 17.674494 ], [ -64.900031, 17.674555 ], [ -64.899982, 17.674644 ], [ -64.899956, 17.67469 ], [ -64.899915, 17.674771 ], [ -64.899892, 17.674818 ], [ -64.899864, 17.674875 ], [ -64.899832, 17.674937 ], [ -64.899785, 17.675024 ], [ -64.899759, 17.675072 ], [ -64.899718, 17.675149 ], [ -64.899712, 17.675159 ], [ -64.899694, 17.675182 ], [ -64.899621, 17.67527 ], [ -64.899609, 17.675285 ], [ -64.899588, 17.675307 ], [ -64.899496, 17.675401 ], [ -64.899455, 17.675442 ], [ -64.899419, 17.67548 ], [ -64.899366, 17.675539 ], [ -64.899306, 17.675608 ], [ -64.899295, 17.67562 ], [ -64.899259, 17.675651 ], [ -64.899201, 17.6757 ], [ -64.89917, 17.675726 ], [ -64.899141, 17.675754 ], [ -64.899119, 17.675775 ], [ -64.899095, 17.675797 ], [ -64.899077, 17.675815 ], [ -64.898999, 17.675891 ], [ -64.898987, 17.675903 ], [ -64.898964, 17.675924 ], [ -64.89878, 17.676085 ], [ -64.898773, 17.676091 ], [ -64.898748, 17.676109 ], [ -64.898614, 17.676205 ], [ -64.898567, 17.676239 ], [ -64.898541, 17.67626 ], [ -64.898387, 17.676383 ], [ -64.898332, 17.676427 ], [ -64.898196, 17.676531 ], [ -64.898111, 17.676596 ], [ -64.898036, 17.676653 ], [ -64.897912, 17.676748 ], [ -64.897834, 17.676811 ], [ -64.897784, 17.676853 ], [ -64.897601, 17.676989 ], [ -64.897519, 17.67705 ], [ -64.897492, 17.67707 ], [ -64.897463, 17.677087 ], [ -64.897373, 17.67714 ], [ -64.89734, 17.677162 ], [ -64.897282, 17.6772 ], [ -64.897213, 17.677245 ], [ -64.897136, 17.677293 ], [ -64.897043, 17.67735 ], [ -64.897025, 17.677363 ], [ -64.896959, 17.677413 ], [ -64.89694, 17.677427 ], [ -64.896897, 17.677456 ], [ -64.896823, 17.677505 ], [ -64.896797, 17.677522 ], [ -64.896766, 17.677543 ], [ -64.896718, 17.677565 ], [ -64.896663, 17.677591 ], [ -64.896586, 17.677627 ], [ -64.896568, 17.677637 ], [ -64.896494, 17.677676 ], [ -64.896361, 17.677748 ], [ -64.896313, 17.677772 ], [ -64.896256, 17.6778 ], [ -64.896138, 17.677858 ], [ -64.896075, 17.677889 ], [ -64.896, 17.677925 ], [ -64.895969, 17.677939 ], [ -64.895951, 17.67795 ], [ -64.895819, 17.678027 ], [ -64.895755, 17.678057 ], [ -64.895706, 17.67808 ], [ -64.895604, 17.678134 ], [ -64.895472, 17.678192 ], [ -64.895385, 17.67823 ], [ -64.89525, 17.678287 ], [ -64.895188, 17.678312 ], [ -64.895136, 17.678333 ], [ -64.895054, 17.678367 ], [ -64.894915, 17.678431 ], [ -64.894793, 17.678491 ], [ -64.894693, 17.67854 ], [ -64.894643, 17.678569 ], [ -64.894566, 17.678614 ], [ -64.894554, 17.678621 ], [ -64.894574, 17.67871 ], [ -64.894503, 17.678651 ], [ -64.894413, 17.678704 ], [ -64.894225, 17.678796 ], [ -64.893874, 17.678948 ], [ -64.89383, 17.678972 ], [ -64.893693, 17.679048 ], [ -64.893515, 17.679157 ], [ -64.89347, 17.679185 ], [ -64.893302, 17.67928 ], [ -64.893263, 17.679302 ], [ -64.893086, 17.679421 ], [ -64.892945, 17.67953 ], [ -64.89287, 17.679597 ], [ -64.892772, 17.679682 ], [ -64.892703, 17.679743 ], [ -64.89263, 17.679808 ], [ -64.8925, 17.679927 ], [ -64.89233, 17.680088 ], [ -64.892218, 17.6802 ], [ -64.892064, 17.680368 ], [ -64.891794, 17.680598 ], [ -64.891481, 17.68085 ], [ -64.891405, 17.680924 ], [ -64.891363, 17.680964 ], [ -64.891336, 17.680992 ], [ -64.891302, 17.681024 ], [ -64.891162, 17.681128 ], [ -64.891101, 17.681167 ], [ -64.891015, 17.681231 ], [ -64.89091, 17.681308 ], [ -64.890823, 17.681358 ], [ -64.89075, 17.681403 ], [ -64.890594, 17.681498 ], [ -64.890381, 17.681666 ], [ -64.890167, 17.681815 ], [ -64.890068, 17.681883 ], [ -64.889982, 17.681949 ], [ -64.889774, 17.682131 ], [ -64.889732, 17.682165 ], [ -64.889557, 17.682301 ], [ -64.889401, 17.682456 ], [ -64.88924, 17.682623 ], [ -64.889058, 17.682777 ], [ -64.888942, 17.682873 ], [ -64.888549, 17.683133 ], [ -64.888121, 17.683357 ], [ -64.887909, 17.68346 ], [ -64.887833, 17.683508 ], [ -64.88774, 17.683545 ], [ -64.887512, 17.683651 ], [ -64.887387, 17.683724 ], [ -64.887344, 17.683748 ], [ -64.887216, 17.683809 ], [ -64.887192, 17.683821 ], [ -64.886961, 17.683981 ], [ -64.88691, 17.684009 ], [ -64.886696, 17.684126 ], [ -64.886436, 17.684286 ], [ -64.886322, 17.684382 ], [ -64.886097, 17.684652 ], [ -64.885904, 17.684865 ], [ -64.885573, 17.685129 ], [ -64.88548, 17.685204 ], [ -64.885217, 17.685361 ], [ -64.885025, 17.685475 ], [ -64.884911, 17.685542 ], [ -64.88488, 17.685554 ], [ -64.884729, 17.685614 ], [ -64.884658, 17.685636 ], [ -64.884489, 17.68569 ], [ -64.88431, 17.685742 ], [ -64.884132, 17.685789 ], [ -64.883943, 17.685834 ], [ -64.883929, 17.685838 ], [ -64.883774, 17.685852 ], [ -64.883454, 17.685853 ], [ -64.883347, 17.685847 ], [ -64.883274, 17.685843 ], [ -64.883121, 17.685815 ], [ -64.883016, 17.68577 ], [ -64.882945, 17.685729 ], [ -64.88292, 17.685709 ], [ -64.882889, 17.685688 ], [ -64.882857, 17.685656 ], [ -64.882834, 17.685621 ], [ -64.882823, 17.685574 ], [ -64.882804, 17.685533 ], [ -64.882773, 17.685499 ], [ -64.882721, 17.685463 ], [ -64.882651, 17.685432 ], [ -64.882606, 17.685387 ], [ -64.882604, 17.685299 ], [ -64.88257, 17.685256 ], [ -64.882507, 17.685234 ], [ -64.882488, 17.685284 ], [ -64.882464, 17.685305 ], [ -64.882329, 17.685295 ], [ -64.882164, 17.685242 ], [ -64.881989, 17.685119 ], [ -64.881844, 17.685049 ], [ -64.881805, 17.684992 ], [ -64.881767, 17.684887 ], [ -64.881744, 17.684851 ], [ -64.881714, 17.684834 ], [ -64.881653, 17.684834 ], [ -64.881607, 17.684872 ], [ -64.881508, 17.684925 ], [ -64.881432, 17.68495 ], [ -64.881371, 17.684954 ], [ -64.88121, 17.684944 ], [ -64.88071, 17.684915 ], [ -64.880582, 17.684914 ], [ -64.880569, 17.684914 ], [ -64.880508, 17.684902 ], [ -64.880363, 17.684908 ], [ -64.880324, 17.684898 ], [ -64.880289, 17.684898 ], [ -64.880254, 17.684895 ], [ -64.880151, 17.68489 ], [ -64.880063, 17.684892 ], [ -64.88003, 17.684893 ], [ -64.879953, 17.684893 ], [ -64.879889, 17.684893 ], [ -64.879883, 17.684893 ], [ -64.879858, 17.684888 ], [ -64.879768, 17.68487 ], [ -64.879708, 17.684858 ], [ -64.8797, 17.684856 ], [ -64.879652, 17.684832 ], [ -64.879563, 17.684788 ], [ -64.87946, 17.684736 ], [ -64.879417, 17.684715 ], [ -64.879388, 17.684674 ], [ -64.879371, 17.684649 ], [ -64.879362, 17.684637 ], [ -64.87936, 17.684594 ], [ -64.879358, 17.684566 ], [ -64.879351, 17.684518 ], [ -64.879335, 17.684481 ], [ -64.879308, 17.684437 ], [ -64.879261, 17.684435 ], [ -64.879239, 17.684463 ], [ -64.879186, 17.684474 ], [ -64.879112, 17.684452 ], [ -64.879066, 17.684423 ], [ -64.878998, 17.684364 ], [ -64.87891, 17.684331 ], [ -64.878876, 17.684319 ], [ -64.878838, 17.684282 ], [ -64.878714, 17.684186 ], [ -64.878677, 17.684152 ], [ -64.878647, 17.684012 ], [ -64.878593, 17.683982 ], [ -64.878524, 17.68396 ], [ -64.878487, 17.683965 ], [ -64.878447, 17.68401 ], [ -64.878397, 17.684027 ], [ -64.878304, 17.684085 ], [ -64.878273, 17.684104 ], [ -64.878235, 17.684135 ], [ -64.878113, 17.684187 ], [ -64.877998, 17.684254 ], [ -64.877791, 17.684347 ], [ -64.877632, 17.684418 ], [ -64.877546, 17.684444 ], [ -64.877451, 17.684472 ], [ -64.877377, 17.684489 ], [ -64.877312, 17.684482 ], [ -64.877272, 17.684474 ], [ -64.877189, 17.684439 ], [ -64.877175, 17.68441 ], [ -64.877166, 17.684386 ], [ -64.877155, 17.684373 ], [ -64.877141, 17.684375 ], [ -64.877109, 17.684414 ], [ -64.877072, 17.684449 ], [ -64.876969, 17.684495 ], [ -64.876909, 17.684523 ], [ -64.87681, 17.684559 ], [ -64.876726, 17.684546 ], [ -64.876683, 17.684487 ], [ -64.876663, 17.684433 ], [ -64.876606, 17.684377 ], [ -64.876535, 17.68433 ], [ -64.876496, 17.684323 ], [ -64.876412, 17.684337 ], [ -64.876299, 17.684362 ], [ -64.87623, 17.684373 ], [ -64.876032, 17.684438 ], [ -64.875908, 17.684501 ], [ -64.875823, 17.68453 ], [ -64.875772, 17.684526 ], [ -64.875742, 17.684498 ], [ -64.875684, 17.68447 ], [ -64.875637, 17.684496 ], [ -64.875652, 17.684547 ], [ -64.875619, 17.684569 ], [ -64.875578, 17.684579 ], [ -64.875505, 17.684581 ], [ -64.875452, 17.68459 ], [ -64.875368, 17.684616 ], [ -64.875246, 17.684639 ], [ -64.875147, 17.684694 ], [ -64.875055, 17.684706 ], [ -64.874941, 17.684769 ], [ -64.874826, 17.68479 ], [ -64.874796, 17.684807 ], [ -64.874742, 17.684862 ], [ -64.874681, 17.684874 ], [ -64.874629, 17.684909 ], [ -64.874609, 17.684918 ], [ -64.874599, 17.684922 ], [ -64.874582, 17.684928 ], [ -64.874543, 17.684933 ], [ -64.87453, 17.684934 ], [ -64.874446, 17.684976 ], [ -64.874394, 17.684971 ], [ -64.874346, 17.685007 ], [ -64.874308, 17.685044 ], [ -64.874201, 17.685045 ], [ -64.87414, 17.685062 ], [ -64.874111, 17.685099 ], [ -64.874085, 17.685155 ], [ -64.873985, 17.685221 ], [ -64.873891, 17.685251 ], [ -64.873848, 17.68528 ], [ -64.873835, 17.685344 ], [ -64.87378, 17.685485 ], [ -64.873676, 17.685557 ], [ -64.873606, 17.68561 ], [ -64.873492, 17.685657 ], [ -64.873411, 17.685696 ], [ -64.873307, 17.685742 ], [ -64.873182, 17.685783 ], [ -64.873056, 17.685812 ], [ -64.872786, 17.68583 ], [ -64.872494, 17.685808 ], [ -64.872356, 17.685769 ], [ -64.872296, 17.685723 ], [ -64.872242, 17.685677 ], [ -64.872209, 17.685607 ], [ -64.872197, 17.685582 ], [ -64.872148, 17.685585 ], [ -64.872048, 17.685528 ], [ -64.872041, 17.685468 ], [ -64.872009, 17.685443 ], [ -64.871967, 17.685485 ], [ -64.871928, 17.685505 ], [ -64.87187, 17.68547 ], [ -64.871836, 17.685461 ], [ -64.87181, 17.68545 ], [ -64.871757, 17.685439 ], [ -64.871705, 17.685374 ], [ -64.871699, 17.685333 ], [ -64.871673, 17.68526 ], [ -64.871598, 17.685222 ], [ -64.871537, 17.685204 ], [ -64.871494, 17.685218 ], [ -64.871475, 17.685234 ], [ -64.871447, 17.685266 ], [ -64.871389, 17.685282 ], [ -64.871264, 17.685299 ], [ -64.87118, 17.685303 ], [ -64.871164, 17.685303 ], [ -64.871164, 17.685318 ], [ -64.871157, 17.685331 ], [ -64.871157, 17.685352 ], [ -64.871129, 17.685358 ], [ -64.871073, 17.685344 ], [ -64.871019, 17.685343 ], [ -64.870908, 17.685368 ], [ -64.87079, 17.685432 ], [ -64.870738, 17.685483 ], [ -64.870691, 17.685528 ], [ -64.870569, 17.685589 ], [ -64.8705, 17.685614 ], [ -64.870222, 17.685739 ], [ -64.870092, 17.685809 ], [ -64.869755, 17.685964 ], [ -64.869473, 17.686074 ], [ -64.869364, 17.686134 ], [ -64.869305, 17.686169 ], [ -64.869252, 17.686203 ], [ -64.86901, 17.686287 ], [ -64.868897, 17.686296 ], [ -64.868852, 17.686324 ], [ -64.868765, 17.686326 ], [ -64.868708, 17.686322 ], [ -64.868574, 17.686339 ], [ -64.868528, 17.686349 ], [ -64.868492, 17.686356 ], [ -64.86835, 17.686365 ], [ -64.868212, 17.686367 ], [ -64.868181, 17.686378 ], [ -64.868105, 17.686367 ], [ -64.868059, 17.686378 ], [ -64.868018, 17.686375 ], [ -64.867934, 17.686334 ], [ -64.867868, 17.686329 ], [ -64.867746, 17.686272 ], [ -64.867657, 17.686292 ], [ -64.867636, 17.686297 ], [ -64.867572, 17.68633 ], [ -64.867374, 17.68643 ], [ -64.867239, 17.68647 ], [ -64.86718, 17.686487 ], [ -64.866984, 17.686505 ], [ -64.866887, 17.686514 ], [ -64.866686, 17.686508 ], [ -64.866577, 17.68648 ], [ -64.866508, 17.686445 ], [ -64.86642, 17.686433 ], [ -64.866365, 17.686409 ], [ -64.866342, 17.686399 ], [ -64.866312, 17.686369 ], [ -64.86616, 17.686281 ], [ -64.866144, 17.686272 ], [ -64.866075, 17.686258 ], [ -64.866053, 17.686243 ], [ -64.866014, 17.686169 ], [ -64.865976, 17.686153 ], [ -64.865854, 17.686199 ], [ -64.865801, 17.686201 ], [ -64.865717, 17.68618 ], [ -64.865671, 17.686148 ], [ -64.865625, 17.686144 ], [ -64.865513, 17.686192 ], [ -64.86543, 17.686213 ], [ -64.865351, 17.68623 ], [ -64.865258, 17.686234 ], [ -64.865032, 17.686249 ], [ -64.864786, 17.686298 ], [ -64.864649, 17.686304 ], [ -64.864527, 17.686277 ], [ -64.864412, 17.68622 ], [ -64.864219, 17.68619 ], [ -64.864168, 17.686193 ], [ -64.863977, 17.686148 ], [ -64.863871, 17.686111 ], [ -64.863726, 17.686043 ], [ -64.86352, 17.685907 ], [ -64.86323, 17.68561 ], [ -64.863184, 17.685551 ], [ -64.863138, 17.685514 ], [ -64.863008, 17.685396 ], [ -64.862978, 17.685389 ], [ -64.86294, 17.685387 ], [ -64.862925, 17.685379 ], [ -64.862909, 17.685364 ], [ -64.862894, 17.685354 ], [ -64.862871, 17.685352 ], [ -64.862841, 17.685381 ], [ -64.862788, 17.685466 ], [ -64.862703, 17.685522 ], [ -64.862574, 17.685589 ], [ -64.862286, 17.685667 ], [ -64.861943, 17.685725 ], [ -64.861851, 17.685729 ], [ -64.861633, 17.685732 ], [ -64.861564, 17.685723 ], [ -64.861468, 17.685695 ], [ -64.861414, 17.685694 ], [ -64.861371, 17.685653 ], [ -64.861322, 17.685606 ], [ -64.861315, 17.685595 ], [ -64.861315, 17.685562 ], [ -64.861293, 17.685529 ], [ -64.861215, 17.6855 ], [ -64.861162, 17.68548 ], [ -64.861017, 17.685442 ], [ -64.860738, 17.685401 ], [ -64.860689, 17.685393 ], [ -64.860651, 17.685373 ], [ -64.860628, 17.685339 ], [ -64.860628, 17.68528 ], [ -64.860598, 17.68527 ], [ -64.860567, 17.685274 ], [ -64.860407, 17.68536 ], [ -64.860384, 17.685362 ], [ -64.860361, 17.685368 ], [ -64.860331, 17.685364 ], [ -64.860315, 17.685354 ], [ -64.860285, 17.685346 ], [ -64.860267, 17.685346 ], [ -64.860247, 17.685356 ], [ -64.860224, 17.685383 ], [ -64.860199, 17.68539 ], [ -64.86017, 17.68539 ], [ -64.860155, 17.685379 ], [ -64.860152, 17.685356 ], [ -64.860129, 17.685338 ], [ -64.860094, 17.685333 ], [ -64.860061, 17.685339 ], [ -64.860045, 17.685352 ], [ -64.860037, 17.685374 ], [ -64.860033, 17.685394 ], [ -64.860025, 17.685406 ], [ -64.86001, 17.68541 ], [ -64.859995, 17.685404 ], [ -64.85998, 17.685387 ], [ -64.859957, 17.685379 ], [ -64.859945, 17.685379 ], [ -64.859909, 17.685403 ], [ -64.859888, 17.685446 ], [ -64.85985, 17.685484 ], [ -64.859812, 17.685513 ], [ -64.859774, 17.685537 ], [ -64.859728, 17.685505 ], [ -64.859667, 17.685547 ], [ -64.859667, 17.685564 ], [ -64.859678, 17.685571 ], [ -64.859705, 17.685604 ], [ -64.859697, 17.685625 ], [ -64.859687, 17.685639 ], [ -64.859667, 17.685642 ], [ -64.859604, 17.685682 ], [ -64.859032, 17.685879 ], [ -64.858947, 17.685902 ], [ -64.858795, 17.685946 ], [ -64.858606, 17.68597 ], [ -64.858362, 17.68597 ], [ -64.858208, 17.685932 ], [ -64.858124, 17.685903 ], [ -64.85797, 17.685849 ], [ -64.857852, 17.685764 ], [ -64.857798, 17.685664 ], [ -64.857767, 17.685635 ], [ -64.857737, 17.685625 ], [ -64.857698, 17.685637 ], [ -64.85768, 17.685685 ], [ -64.857514, 17.685713 ], [ -64.857286, 17.685709 ], [ -64.857256, 17.68572 ], [ -64.857225, 17.685751 ], [ -64.857214, 17.685753 ], [ -64.857164, 17.68573 ], [ -64.857134, 17.685724 ], [ -64.857097, 17.685714 ], [ -64.857042, 17.685713 ], [ -64.856996, 17.685724 ], [ -64.856958, 17.68574 ], [ -64.85692, 17.685736 ], [ -64.85689, 17.685715 ], [ -64.856852, 17.685736 ], [ -64.856819, 17.685756 ], [ -64.85677, 17.685763 ], [ -64.856716, 17.685767 ], [ -64.856662, 17.685753 ], [ -64.856623, 17.685755 ], [ -64.856569, 17.685776 ], [ -64.856546, 17.685805 ], [ -64.856539, 17.68582 ], [ -64.856486, 17.685841 ], [ -64.856447, 17.685854 ], [ -64.856414, 17.685879 ], [ -64.856355, 17.685923 ], [ -64.85633, 17.685947 ], [ -64.856307, 17.685984 ], [ -64.856279, 17.686005 ], [ -64.856262, 17.686017 ], [ -64.856233, 17.686046 ], [ -64.85618, 17.6861 ], [ -64.85615, 17.686169 ], [ -64.856127, 17.686193 ], [ -64.855959, 17.686293 ], [ -64.855728, 17.686373 ], [ -64.855712, 17.686378 ], [ -64.855678, 17.686401 ], [ -64.855357, 17.686489 ], [ -64.855138, 17.686545 ], [ -64.855002, 17.686586 ], [ -64.854894, 17.686614 ], [ -64.854759, 17.686643 ], [ -64.854619, 17.68666 ], [ -64.854216, 17.686729 ], [ -64.853965, 17.686767 ], [ -64.851665, 17.685676 ], [ -64.839208, 17.679768 ], [ -64.839106, 17.679768 ], [ -64.839081, 17.679764 ], [ -64.839058, 17.679749 ], [ -64.839035, 17.679754 ], [ -64.838974, 17.679783 ], [ -64.838951, 17.67979 ], [ -64.838928, 17.679806 ], [ -64.838867, 17.679838 ], [ -64.838821, 17.67984 ], [ -64.838783, 17.679859 ], [ -64.83872, 17.679875 ], [ -64.838652, 17.679914 ], [ -64.838501, 17.679976 ], [ -64.83844, 17.679976 ], [ -64.838379, 17.67996 ], [ -64.838333, 17.680002 ], [ -64.838272, 17.68 ], [ -64.838211, 17.680016 ], [ -64.838158, 17.679995 ], [ -64.838106, 17.679985 ], [ -64.838052, 17.680002 ], [ -64.838043, 17.680068 ], [ -64.838041, 17.680107 ], [ -64.837964, 17.680148 ], [ -64.837791, 17.680199 ], [ -64.837668, 17.680219 ], [ -64.837586, 17.680251 ], [ -64.837539, 17.680286 ], [ -64.837459, 17.680234 ], [ -64.837401, 17.680232 ], [ -64.837399, 17.680286 ], [ -64.837379, 17.68034 ], [ -64.837311, 17.680372 ], [ -64.837273, 17.680418 ], [ -64.837227, 17.680445 ], [ -64.837196, 17.680445 ], [ -64.837151, 17.68046 ], [ -64.837112, 17.680519 ], [ -64.837082, 17.68055 ], [ -64.836967, 17.680622 ], [ -64.836876, 17.680655 ], [ -64.836861, 17.680676 ], [ -64.836845, 17.680717 ], [ -64.83683, 17.680742 ], [ -64.836731, 17.680769 ], [ -64.836693, 17.680794 ], [ -64.836647, 17.680862 ], [ -64.83663, 17.680947 ], [ -64.836617, 17.680994 ], [ -64.836563, 17.681044 ], [ -64.83651, 17.681114 ], [ -64.836464, 17.681149 ], [ -64.836449, 17.681192 ], [ -64.836401, 17.681257 ], [ -64.836372, 17.681315 ], [ -64.836291, 17.681403 ], [ -64.836207, 17.681435 ], [ -64.836044, 17.681524 ], [ -64.835936, 17.681596 ], [ -64.835818, 17.681749 ], [ -64.835754, 17.681801 ], [ -64.835732, 17.68186 ], [ -64.835625, 17.681963 ], [ -64.835581, 17.68203 ], [ -64.835266, 17.682261 ], [ -64.83519, 17.682302 ], [ -64.835136, 17.682316 ], [ -64.835046, 17.682351 ], [ -64.834976, 17.682381 ], [ -64.834938, 17.682396 ], [ -64.834872, 17.682436 ], [ -64.834823, 17.682451 ], [ -64.834776, 17.682471 ], [ -64.834727, 17.682492 ], [ -64.8344, 17.682546 ], [ -64.834348, 17.682561 ], [ -64.834241, 17.682565 ], [ -64.834164, 17.682559 ], [ -64.834017, 17.682556 ], [ -64.833934, 17.68255 ], [ -64.83383, 17.682528 ], [ -64.833771, 17.682501 ], [ -64.833748, 17.682467 ], [ -64.833747, 17.682434 ], [ -64.833735, 17.682407 ], [ -64.833717, 17.68238 ], [ -64.83371, 17.682373 ], [ -64.83371, 17.682335 ], [ -64.833725, 17.682293 ], [ -64.833725, 17.682228 ], [ -64.833733, 17.682213 ], [ -64.833747, 17.6822 ], [ -64.833748, 17.682199 ], [ -64.833755, 17.682178 ], [ -64.833748, 17.682167 ], [ -64.83374, 17.682152 ], [ -64.833733, 17.682129 ], [ -64.833733, 17.682089 ], [ -64.833725, 17.682062 ], [ -64.83371, 17.682055 ], [ -64.833693, 17.682039 ], [ -64.833672, 17.682034 ], [ -64.833641, 17.68203 ], [ -64.833614, 17.682031 ], [ -64.833588, 17.682032 ], [ -64.833572, 17.682035 ], [ -64.833557, 17.682045 ], [ -64.833504, 17.682043 ], [ -64.833473, 17.682062 ], [ -64.833458, 17.68206 ], [ -64.833405, 17.682074 ], [ -64.833394, 17.68209 ], [ -64.833382, 17.682101 ], [ -64.833365, 17.682106 ], [ -64.833351, 17.682104 ], [ -64.833344, 17.682116 ], [ -64.833332, 17.682121 ], [ -64.833316, 17.682125 ], [ -64.833296, 17.682127 ], [ -64.833282, 17.682129 ], [ -64.833252, 17.682129 ], [ -64.833221, 17.682117 ], [ -64.833183, 17.682055 ], [ -64.833153, 17.682034 ], [ -64.833131, 17.682038 ], [ -64.833113, 17.682041 ], [ -64.833099, 17.682034 ], [ -64.833092, 17.682022 ], [ -64.833069, 17.68202 ], [ -64.833052, 17.682025 ], [ -64.833038, 17.682034 ], [ -64.833023, 17.682055 ], [ -64.833023, 17.682079 ], [ -64.833046, 17.682096 ], [ -64.833061, 17.682121 ], [ -64.833054, 17.682148 ], [ -64.833046, 17.682163 ], [ -64.833008, 17.682194 ], [ -64.833008, 17.682209 ], [ -64.833031, 17.682257 ], [ -64.833031, 17.68228 ], [ -64.833023, 17.682295 ], [ -64.833008, 17.682304 ], [ -64.832993, 17.682308 ], [ -64.83297, 17.682308 ], [ -64.832954, 17.68231 ], [ -64.832939, 17.68232 ], [ -64.832779, 17.682362 ], [ -64.832688, 17.682415 ], [ -64.832617, 17.682443 ], [ -64.832585, 17.68247 ], [ -64.832569, 17.682479 ], [ -64.832451, 17.682526 ], [ -64.832397, 17.682562 ], [ -64.832336, 17.682575 ], [ -64.832249, 17.682623 ], [ -64.832161, 17.682657 ], [ -64.832079, 17.682737 ], [ -64.831963, 17.682779 ], [ -64.831867, 17.682829 ], [ -64.831789, 17.682828 ], [ -64.83176, 17.682892 ], [ -64.831702, 17.682921 ], [ -64.831611, 17.683006 ], [ -64.83145, 17.682997 ], [ -64.831299, 17.68306 ], [ -64.83123, 17.683071 ], [ -64.831192, 17.683105 ], [ -64.831102, 17.683116 ], [ -64.830957, 17.683179 ], [ -64.830926, 17.683197 ], [ -64.830841, 17.683197 ], [ -64.830769, 17.683231 ], [ -64.830647, 17.683244 ], [ -64.830551, 17.683342 ], [ -64.830472, 17.683386 ], [ -64.830456, 17.683432 ], [ -64.830333, 17.683478 ], [ -64.830253, 17.683528 ], [ -64.830185, 17.683577 ], [ -64.822554, 17.68605 ], [ -64.822515, 17.686086 ], [ -64.822442, 17.686084 ], [ -64.822384, 17.686131 ], [ -64.822342, 17.686136 ], [ -64.822276, 17.686127 ], [ -64.822263, 17.686196 ], [ -64.822235, 17.686195 ], [ -64.822189, 17.686157 ], [ -64.822154, 17.686161 ], [ -64.822107, 17.686172 ], [ -64.822115, 17.686202 ], [ -64.822132, 17.686215 ], [ -64.822182, 17.686264 ], [ -64.822162, 17.686316 ], [ -64.822145, 17.686359 ], [ -64.822182, 17.686453 ], [ -64.822289, 17.686583 ], [ -64.82225, 17.686677 ], [ -64.822202, 17.686736 ], [ -64.822172, 17.686801 ], [ -64.821717, 17.687177 ], [ -64.821202, 17.6876 ], [ -64.82076, 17.687919 ], [ -64.820392, 17.688107 ], [ -64.820188, 17.688279 ], [ -64.819789, 17.68842 ], [ -64.819538, 17.688506 ], [ -64.819311, 17.688514 ], [ -64.819123, 17.688522 ], [ -64.81892, 17.688527 ], [ -64.818708, 17.68852 ], [ -64.818408, 17.688508 ], [ -64.818146, 17.688472 ], [ -64.81802, 17.68853 ], [ -64.817871, 17.688577 ], [ -64.817769, 17.688686 ], [ -64.817521, 17.688776 ], [ -64.817406, 17.688855 ], [ -64.817309, 17.688927 ], [ -64.817204, 17.688964 ], [ -64.817118, 17.688995 ], [ -64.816978, 17.689007 ], [ -64.816822, 17.689007 ], [ -64.816657, 17.689023 ], [ -64.81646, 17.688998 ], [ -64.816305, 17.68896 ], [ -64.816241, 17.688884 ], [ -64.816094, 17.688874 ], [ -64.815944, 17.688855 ], [ -64.815734, 17.68889 ], [ -64.815585, 17.688984 ], [ -64.815475, 17.68907 ], [ -64.815374, 17.689164 ], [ -64.815248, 17.689226 ], [ -64.8151, 17.689289 ], [ -64.814943, 17.689352 ], [ -64.814692, 17.68936 ], [ -64.814606, 17.689383 ], [ -64.814446, 17.689405 ], [ -64.814317, 17.689397 ], [ -64.81426, 17.689391 ], [ -64.814178, 17.689364 ], [ -64.814054, 17.689271 ], [ -64.813972, 17.689219 ], [ -64.813908, 17.689203 ], [ -64.813814, 17.689201 ], [ -64.813757, 17.689232 ], [ -64.813691, 17.689254 ], [ -64.813679, 17.689273 ], [ -64.813617, 17.689316 ], [ -64.813379, 17.689465 ], [ -64.813138, 17.689579 ], [ -64.813031, 17.689606 ], [ -64.812953, 17.689602 ], [ -64.81291, 17.689641 ], [ -64.812855, 17.689673 ], [ -64.812796, 17.689704 ], [ -64.812706, 17.689735 ], [ -64.812565, 17.689767 ], [ -64.812376, 17.689869 ], [ -64.81222, 17.689953 ], [ -64.812089, 17.690016 ], [ -64.811975, 17.690071 ], [ -64.811806, 17.690131 ], [ -64.811735, 17.690182 ], [ -64.811682, 17.690232 ], [ -64.811277, 17.690461 ], [ -64.811246, 17.690502 ], [ -64.81122, 17.690564 ], [ -64.811215, 17.69059 ], [ -64.811201, 17.690614 ], [ -64.811196, 17.690624 ], [ -64.81119, 17.690633 ], [ -64.811189, 17.690636 ], [ -64.811153, 17.690635 ], [ -64.811105, 17.690711 ], [ -64.811101, 17.690778 ], [ -64.811092, 17.690831 ], [ -64.811101, 17.690872 ], [ -64.811098, 17.690927 ], [ -64.811056, 17.690983 ], [ -64.811014, 17.691021 ], [ -64.810951, 17.691046 ], [ -64.81091, 17.691067 ], [ -64.810854, 17.691081 ], [ -64.810791, 17.691105 ], [ -64.810725, 17.691122 ], [ -64.810622, 17.691141 ], [ -64.810547, 17.691147 ], [ -64.810422, 17.691164 ], [ -64.810328, 17.691175 ], [ -64.810199, 17.691196 ], [ -64.810143, 17.691223 ], [ -64.810081, 17.691248 ], [ -64.809962, 17.691293 ], [ -64.809847, 17.691331 ], [ -64.809743, 17.691352 ], [ -64.809619, 17.691395 ], [ -64.809495, 17.691391 ], [ -64.809261, 17.691476 ], [ -64.809227, 17.691509 ], [ -64.80915, 17.691501 ], [ -64.809097, 17.691513 ], [ -64.808982, 17.691539 ], [ -64.808943, 17.691666 ], [ -64.808943, 17.691724 ], [ -64.808932, 17.691787 ], [ -64.808895, 17.691851 ], [ -64.808827, 17.691888 ], [ -64.808707, 17.691906 ], [ -64.80859, 17.691933 ], [ -64.808464, 17.691946 ], [ -64.808342, 17.691992 ], [ -64.808235, 17.692002 ], [ -64.808082, 17.692048 ], [ -64.807981, 17.692071 ], [ -64.807846, 17.692072 ], [ -64.807677, 17.692093 ], [ -64.807577, 17.692141 ], [ -64.807461, 17.692172 ], [ -64.807366, 17.692209 ], [ -64.807276, 17.692246 ], [ -64.807155, 17.692257 ], [ -64.807065, 17.692273 ], [ -64.806954, 17.692288 ], [ -64.806838, 17.692299 ], [ -64.80671, 17.692308 ], [ -64.806606, 17.692292 ], [ -64.806514, 17.692275 ], [ -64.806411, 17.692254 ], [ -64.806335, 17.692241 ], [ -64.806257, 17.692228 ], [ -64.806163, 17.692225 ], [ -64.806026, 17.692236 ], [ -64.806005, 17.692246 ], [ -64.805928, 17.692289 ], [ -64.805828, 17.692331 ], [ -64.805768, 17.692352 ], [ -64.805713, 17.692358 ], [ -64.805655, 17.692376 ], [ -64.805615, 17.692384 ], [ -64.805562, 17.692381 ], [ -64.80553, 17.692373 ], [ -64.805522, 17.692362 ], [ -64.805496, 17.692359 ], [ -64.805458, 17.692366 ], [ -64.805411, 17.692375 ], [ -64.805375, 17.692412 ], [ -64.805332, 17.692428 ], [ -64.805293, 17.69246 ], [ -64.805267, 17.692487 ], [ -64.805237, 17.69252 ], [ -64.805193, 17.69254 ], [ -64.805153, 17.69258 ], [ -64.80514, 17.692605 ], [ -64.805099, 17.692617 ], [ -64.805045, 17.692623 ], [ -64.805001, 17.692621 ], [ -64.804961, 17.692623 ], [ -64.804926, 17.692644 ], [ -64.804892, 17.692661 ], [ -64.804859, 17.692677 ], [ -64.80481, 17.692684 ], [ -64.804771, 17.692692 ], [ -64.804686, 17.69271 ], [ -64.804631, 17.692726 ], [ -64.804562, 17.692729 ], [ -64.804478, 17.692732 ], [ -64.804401, 17.692724 ], [ -64.804322, 17.692724 ], [ -64.80423, 17.692734 ], [ -64.804183, 17.692758 ], [ -64.804135, 17.69279 ], [ -64.80408, 17.692797 ], [ -64.798837, 17.693063 ], [ -64.798707, 17.693055 ], [ -64.798525, 17.693069 ], [ -64.798363, 17.693118 ], [ -64.798171, 17.693133 ], [ -64.798018, 17.693184 ], [ -64.797873, 17.693227 ], [ -64.797566, 17.693307 ], [ -64.797364, 17.693345 ], [ -64.797264, 17.693367 ], [ -64.797058, 17.69338 ], [ -64.796982, 17.69338 ], [ -64.796799, 17.693354 ], [ -64.796323, 17.693286 ], [ -64.796145, 17.69326 ], [ -64.796077, 17.693263 ], [ -64.795864, 17.693265 ], [ -64.795701, 17.693301 ], [ -64.795573, 17.693345 ], [ -64.795476, 17.693391 ], [ -64.795317, 17.693443 ], [ -64.795155, 17.693468 ], [ -64.795094, 17.693468 ], [ -64.794988, 17.693502 ], [ -64.794826, 17.6935 ], [ -64.794689, 17.693472 ], [ -64.794628, 17.693349 ], [ -64.794608, 17.693286 ], [ -64.794596, 17.693268 ], [ -64.794423, 17.693187 ], [ -64.794369, 17.69322 ], [ -64.794338, 17.693267 ], [ -64.794267, 17.693263 ], [ -64.794248, 17.693306 ], [ -64.794177, 17.693325 ], [ -64.794099, 17.693368 ], [ -64.794043, 17.69334 ], [ -64.793969, 17.693318 ], [ -64.793858, 17.693322 ], [ -64.793814, 17.693377 ], [ -64.79373, 17.693431 ], [ -64.793601, 17.693521 ], [ -64.793502, 17.693573 ], [ -64.793391, 17.69363 ], [ -64.793108, 17.693892 ], [ -64.792733, 17.694208 ], [ -64.792359, 17.69447 ], [ -64.792232, 17.694533 ], [ -64.791985, 17.694625 ], [ -64.791872, 17.694715 ], [ -64.791803, 17.694771 ], [ -64.791633, 17.694924 ], [ -64.791462, 17.69503 ], [ -64.791282, 17.695113 ], [ -64.791195, 17.695124 ], [ -64.790929, 17.695272 ], [ -64.790709, 17.695408 ], [ -64.790519, 17.695508 ], [ -64.790356, 17.695561 ], [ -64.790224, 17.695635 ], [ -64.790103, 17.695709 ], [ -64.789945, 17.695714 ], [ -64.789886, 17.695772 ], [ -64.789807, 17.695793 ], [ -64.789654, 17.695799 ], [ -64.789549, 17.69582 ], [ -64.789417, 17.69583 ], [ -64.789354, 17.695851 ], [ -64.789259, 17.695851 ], [ -64.789158, 17.69581 ], [ -64.789127, 17.695811 ], [ -64.78909, 17.695812 ], [ -64.788998, 17.695814 ], [ -64.788955, 17.695796 ], [ -64.788941, 17.695741 ], [ -64.788909, 17.695729 ], [ -64.788859, 17.695747 ], [ -64.788806, 17.695741 ], [ -64.788729, 17.69574 ], [ -64.788584, 17.69566 ], [ -64.788446, 17.695673 ], [ -64.788285, 17.695649 ], [ -64.788176, 17.695634 ], [ -64.788117, 17.6956 ], [ -64.788049, 17.695599 ], [ -64.78801, 17.695542 ], [ -64.787794, 17.695475 ], [ -64.787724, 17.69543 ], [ -64.787667, 17.695423 ], [ -64.787556, 17.695384 ], [ -64.787531, 17.695349 ], [ -64.787444, 17.695312 ], [ -64.78739, 17.695265 ], [ -64.787399, 17.695242 ], [ -64.787376, 17.695217 ], [ -64.787309, 17.695197 ], [ -64.787206, 17.695151 ], [ -64.787202, 17.695125 ], [ -64.78721, 17.69511 ], [ -64.787218, 17.695096 ], [ -64.787182, 17.695015 ], [ -64.787142, 17.694992 ], [ -64.78711, 17.69499 ], [ -64.787079, 17.694952 ], [ -64.787019, 17.694954 ], [ -64.781234, 17.693413 ], [ -64.781113, 17.693417 ], [ -64.780861, 17.69343 ], [ -64.771684, 17.691611 ], [ -64.771582, 17.691601 ], [ -64.771355, 17.691638 ], [ -64.771272, 17.691652 ], [ -64.771215, 17.691652 ], [ -64.771105, 17.691649 ], [ -64.771065, 17.691647 ], [ -64.77095, 17.691616 ], [ -64.770894, 17.691598 ], [ -64.770789, 17.691569 ], [ -64.770685, 17.691524 ], [ -64.770571, 17.691468 ], [ -64.770532, 17.691451 ], [ -64.770399, 17.69141 ], [ -64.770326, 17.691387 ], [ -64.77021, 17.691352 ], [ -64.770144, 17.691332 ], [ -64.770099, 17.691312 ], [ -64.769951, 17.691246 ], [ -64.76985, 17.691204 ], [ -64.769717, 17.691125 ], [ -64.769639, 17.691081 ], [ -64.769553, 17.69103 ], [ -64.769483, 17.690989 ], [ -64.769475, 17.690983 ], [ -64.769465, 17.690963 ], [ -64.769456, 17.69095 ], [ -64.769444, 17.690938 ], [ -64.769429, 17.690927 ], [ -64.769414, 17.690919 ], [ -64.769366, 17.690899 ], [ -64.769338, 17.690887 ], [ -64.769308, 17.690884 ], [ -64.769285, 17.690882 ], [ -64.769271, 17.690881 ], [ -64.769236, 17.690864 ], [ -64.769191, 17.690841 ], [ -64.769142, 17.690817 ], [ -64.769117, 17.690805 ], [ -64.769099, 17.690797 ], [ -64.768911, 17.690726 ], [ -64.768744, 17.69066 ], [ -64.768563, 17.690586 ], [ -64.768455, 17.690539 ], [ -64.768398, 17.690512 ], [ -64.768324, 17.690477 ], [ -64.767949, 17.690341 ], [ -64.767565, 17.69021 ], [ -64.76712, 17.690061 ], [ -64.76681, 17.68996 ], [ -64.766727, 17.689927 ], [ -64.766627, 17.689887 ], [ -64.766553, 17.689857 ], [ -64.766475, 17.689839 ], [ -64.766363, 17.689813 ], [ -64.766321, 17.689804 ], [ -64.766303, 17.689727 ], [ -64.766263, 17.689681 ], [ -64.766181, 17.689652 ], [ -64.766087, 17.689618 ], [ -64.765955, 17.689541 ], [ -64.765927, 17.689497 ], [ -64.765892, 17.689455 ], [ -64.765869, 17.689424 ], [ -64.765846, 17.689384 ], [ -64.765812, 17.689323 ], [ -64.765806, 17.689234 ], [ -64.765798, 17.6892 ], [ -64.76578, 17.689135 ], [ -64.765729, 17.689085 ], [ -64.765672, 17.68904 ], [ -64.765647, 17.689029 ], [ -64.765622, 17.68902 ], [ -64.764355, 17.686711 ], [ -64.764313, 17.686477 ], [ -64.764282, 17.686382 ], [ -64.764144, 17.686245 ], [ -64.764039, 17.685971 ], [ -64.764071, 17.685527 ], [ -64.764028, 17.685115 ], [ -64.763628, 17.683303 ], [ -64.763503, 17.683144 ], [ -64.763421, 17.683082 ], [ -64.763009, 17.682873 ], [ -64.76276, 17.682851 ], [ -64.762564, 17.68283 ], [ -64.762472, 17.682716 ], [ -64.762378, 17.682663 ], [ -64.76213, 17.682662 ], [ -64.761851, 17.682579 ], [ -64.761542, 17.682412 ], [ -64.761325, 17.682359 ], [ -64.76088, 17.682503 ], [ -64.760538, 17.682676 ], [ -64.760258, 17.682841 ], [ -64.760082, 17.68282 ], [ -64.759927, 17.68286 ], [ -64.759667, 17.683108 ], [ -64.759402, 17.683551 ], [ -64.758579, 17.683729 ], [ -64.756941, 17.684085 ], [ -64.749589, 17.685681 ], [ -64.743199, 17.687111 ], [ -64.74056, 17.687703 ], [ -64.740511, 17.687694 ], [ -64.740416, 17.687706 ], [ -64.74037, 17.687715 ], [ -64.740238, 17.687787 ], [ -64.717574, 17.698362 ], [ -64.717521, 17.698404 ], [ -64.717453, 17.698476 ], [ -64.717378, 17.698586 ], [ -64.717332, 17.698685 ], [ -64.7173, 17.698817 ], [ -64.717297, 17.698883 ], [ -64.717309, 17.69895 ], [ -64.717315, 17.699126 ], [ -64.717303, 17.69923 ], [ -64.717274, 17.699313 ], [ -64.717224, 17.699399 ], [ -64.717211, 17.699423 ], [ -64.717154, 17.699506 ], [ -64.717096, 17.699597 ], [ -64.717085, 17.699616 ], [ -64.716998, 17.699737 ], [ -64.716878, 17.699869 ], [ -64.716793, 17.699981 ], [ -64.716614, 17.700152 ], [ -64.716528, 17.700212 ], [ -64.716406, 17.700288 ], [ -64.716297, 17.700348 ], [ -64.716243, 17.70038 ], [ -64.716166, 17.700427 ], [ -64.716077, 17.700465 ], [ -64.716056, 17.700475 ], [ -64.715786, 17.700607 ], [ -64.715671, 17.700668 ], [ -64.715584, 17.700718 ], [ -64.715528, 17.700752 ], [ -64.715461, 17.700783 ], [ -64.715418, 17.7008 ], [ -64.715399, 17.700812 ], [ -64.71538, 17.700821 ], [ -64.715315, 17.700857 ], [ -64.715067, 17.70096 ], [ -64.714941, 17.700998 ], [ -64.714711, 17.701081 ], [ -64.714648, 17.701093 ], [ -64.714602, 17.701103 ], [ -64.71451, 17.701136 ], [ -64.714361, 17.70118 ], [ -64.714257, 17.701219 ], [ -64.714148, 17.701247 ], [ -64.714016, 17.70129 ], [ -64.713921, 17.701314 ], [ -64.713734, 17.701369 ], [ -64.713505, 17.701425 ], [ -64.713412, 17.701444 ], [ -64.713274, 17.701483 ], [ -64.713029, 17.701512 ], [ -64.71298, 17.701516 ], [ -64.712936, 17.701526 ], [ -64.7127, 17.701575 ], [ -64.712653, 17.701583 ], [ -64.712608, 17.701595 ], [ -64.712493, 17.701623 ], [ -64.712343, 17.701653 ], [ -64.712249, 17.701685 ], [ -64.712183, 17.701708 ], [ -64.712103, 17.70175 ], [ -64.702999, 17.703079 ], [ -64.702936, 17.703095 ], [ -64.70274, 17.703183 ], [ -64.702522, 17.703288 ], [ -64.702407, 17.703338 ], [ -64.702316, 17.703368 ], [ -64.702206, 17.703384 ], [ -64.701919, 17.7034 ], [ -64.701786, 17.703421 ], [ -64.701678, 17.703414 ], [ -64.701631, 17.703409 ], [ -64.701223, 17.703348 ], [ -64.701172, 17.703348 ], [ -64.701114, 17.703365 ], [ -64.693561, 17.705278 ], [ -64.693453, 17.70527 ], [ -64.693434, 17.705269 ], [ -64.693292, 17.705271 ], [ -64.693143, 17.705283 ], [ -64.693071, 17.705289 ], [ -64.692402, 17.705376 ], [ -64.692235, 17.705404 ], [ -64.691879, 17.705508 ], [ -64.691775, 17.705548 ], [ -64.691695, 17.705579 ], [ -64.691505, 17.705638 ], [ -64.691338, 17.705672 ], [ -64.691243, 17.705692 ], [ -64.691091, 17.705726 ], [ -64.690867, 17.705786 ], [ -64.690655, 17.70586 ], [ -64.690442, 17.705913 ], [ -64.690423, 17.705916 ], [ -64.69028, 17.705943 ], [ -64.690188, 17.705961 ], [ -64.689637, 17.706051 ], [ -64.68947, 17.706122 ], [ -64.689379, 17.706176 ], [ -64.689286, 17.706216 ], [ -64.689167, 17.706284 ], [ -64.688712, 17.706513 ], [ -64.688556, 17.706574 ], [ -64.688538, 17.70658 ], [ -64.688378, 17.706623 ], [ -64.688, 17.706681 ], [ -64.68793, 17.706692 ], [ -64.687748, 17.706731 ], [ -64.687671, 17.706749 ], [ -64.687538, 17.706791 ], [ -64.68752, 17.706797 ], [ -64.687401, 17.706813 ], [ -64.687258, 17.706833 ], [ -64.687085, 17.706833 ], [ -64.686947, 17.706828 ], [ -64.686775, 17.706807 ], [ -64.686752, 17.706804 ], [ -64.686654, 17.706805 ], [ -64.686635, 17.706806 ], [ -64.686538, 17.706809 ], [ -64.686534, 17.70681 ], [ -64.686293, 17.70685 ], [ -64.686174, 17.706903 ], [ -64.686132, 17.706926 ], [ -64.68604, 17.706976 ], [ -64.685936, 17.707041 ], [ -64.685812, 17.707149 ], [ -64.680424, 17.710561 ], [ -64.680349, 17.710587 ], [ -64.68028, 17.71062 ], [ -64.68013, 17.710719 ], [ -64.680033, 17.710768 ], [ -64.679878, 17.710892 ], [ -64.679759, 17.710981 ], [ -64.679423, 17.711237 ], [ -64.679159, 17.711418 ], [ -64.678995, 17.711517 ], [ -64.678947, 17.711547 ], [ -64.678843, 17.711595 ], [ -64.678723, 17.711635 ], [ -64.67844, 17.71176 ], [ -64.678257, 17.711833 ], [ -64.678095, 17.71187 ], [ -64.678009, 17.711914 ], [ -64.677929, 17.711963 ], [ -64.677624, 17.712134 ], [ -64.677406, 17.712229 ], [ -64.677257, 17.712262 ], [ -64.677101, 17.712306 ], [ -64.676848, 17.712343 ], [ -64.676676, 17.712392 ], [ -64.676417, 17.712434 ], [ -64.676308, 17.712436 ], [ -64.676239, 17.712453 ], [ -64.676158, 17.712508 ], [ -64.676032, 17.712559 ], [ -64.675934, 17.712582 ], [ -64.675872, 17.712576 ], [ -64.675799, 17.712608 ], [ -64.672809, 17.713479 ], [ -64.668803, 17.712913 ], [ -64.668746, 17.712924 ], [ -64.668671, 17.71293 ], [ -64.668544, 17.712953 ], [ -64.668338, 17.712993 ], [ -64.668205, 17.713033 ], [ -64.668136, 17.713072 ], [ -64.668079, 17.713122 ], [ -64.667993, 17.713177 ], [ -64.66789, 17.713233 ], [ -64.667763, 17.713272 ], [ -64.667614, 17.713288 ], [ -64.667315, 17.71331 ], [ -64.667189, 17.713294 ], [ -64.667028, 17.713279 ], [ -64.666947, 17.713272 ], [ -64.666832, 17.71325 ], [ -64.66674, 17.713239 ], [ -64.666654, 17.71325 ], [ -64.666585, 17.713254 ], [ -64.666482, 17.713289 ], [ -64.666436, 17.713327 ], [ -64.666401, 17.713375 ], [ -64.666373, 17.713432 ], [ -64.666332, 17.713459 ], [ -64.666263, 17.713487 ], [ -64.666097, 17.71352 ], [ -64.666011, 17.713514 ], [ -64.665907, 17.713492 ], [ -64.665711, 17.713474 ], [ -64.66566, 17.713487 ], [ -64.665551, 17.713553 ], [ -64.66543, 17.713573 ], [ -64.665366, 17.713603 ], [ -64.665344, 17.713614 ], [ -64.66524, 17.713641 ], [ -64.665108, 17.713686 ], [ -64.665034, 17.713702 ], [ -64.664959, 17.713708 ], [ -64.664843, 17.713726 ], [ -64.664752, 17.713741 ], [ -64.66462, 17.713796 ], [ -64.664562, 17.71384 ], [ -64.639072, 17.721769 ], [ -64.638885, 17.721811 ], [ -64.638695, 17.721855 ], [ -64.638511, 17.721886 ], [ -64.638345, 17.721932 ], [ -64.638143, 17.721979 ], [ -64.638011, 17.722031 ], [ -64.637822, 17.722081 ], [ -64.637644, 17.722169 ], [ -64.637459, 17.722233 ], [ -64.637356, 17.722295 ], [ -64.637166, 17.722453 ], [ -64.637022, 17.722553 ], [ -64.636937, 17.722599 ], [ -64.636764, 17.722684 ], [ -64.636603, 17.722758 ], [ -64.63639, 17.722845 ], [ -64.636177, 17.722933 ], [ -64.635948, 17.723067 ], [ -64.635689, 17.723197 ], [ -64.635257, 17.723456 ], [ -64.63519, 17.723497 ], [ -64.634965, 17.723621 ], [ -64.634815, 17.723683 ], [ -64.634579, 17.723825 ], [ -64.634441, 17.723896 ], [ -64.634368, 17.723948 ], [ -64.634235, 17.724056 ], [ -64.623959, 17.730796 ], [ -64.623844, 17.73084 ], [ -64.623781, 17.730895 ], [ -64.623735, 17.730907 ], [ -64.623602, 17.730921 ], [ -64.623218, 17.730984 ], [ -64.623079, 17.731025 ], [ -64.62297, 17.731076 ], [ -64.622934, 17.731095 ], [ -64.622843, 17.731147 ], [ -64.622718, 17.731199 ], [ -64.622516, 17.731298 ], [ -64.622407, 17.731306 ], [ -64.622315, 17.731309 ], [ -64.6222, 17.731285 ], [ -64.62208, 17.731268 ], [ -64.622069, 17.731267 ], [ -64.621901, 17.731243 ], [ -64.621798, 17.73121 ], [ -64.621637, 17.731188 ], [ -64.621493, 17.731185 ], [ -64.621355, 17.73121 ], [ -64.621246, 17.73123 ], [ -64.621171, 17.731244 ], [ -64.62113, 17.731251 ], [ -64.609933, 17.732834 ], [ -64.609894, 17.732863 ], [ -64.598196, 17.745218 ], [ -64.585917, 17.744853 ], [ -64.585802, 17.744859 ], [ -64.578369, 17.7454 ], [ -64.578226, 17.745425 ], [ -64.578128, 17.745447 ], [ -64.57795, 17.745464 ], [ -64.577616, 17.745574 ], [ -64.577573, 17.745591 ], [ -64.577496, 17.745623 ], [ -64.577392, 17.745706 ], [ -64.577282, 17.745764 ], [ -64.57715, 17.745868 ], [ -64.577064, 17.74597 ], [ -64.576944, 17.746064 ], [ -64.576829, 17.746103 ], [ -64.576697, 17.746141 ], [ -64.57657, 17.746185 ], [ -64.576398, 17.746227 ], [ -64.57623, 17.746249 ], [ -64.576053, 17.746279 ], [ -64.575921, 17.746312 ], [ -64.575811, 17.74635 ], [ -64.575731, 17.7464 ], [ -64.56817, 17.751268 ], [ -64.568106, 17.751301 ], [ -64.568055, 17.751329 ], [ -64.567981, 17.7514 ], [ -64.56795, 17.751448 ], [ -64.567949, 17.751448 ], [ -64.565289, 17.755011 ], [ -64.565232, 17.755079 ], [ -64.565193, 17.755138 ], [ -64.565215, 17.755217 ], [ -64.565238, 17.755272 ], [ -64.565323, 17.755321 ], [ -64.565445, 17.755371 ], [ -64.565583, 17.755437 ], [ -64.565685, 17.75553 ], [ -64.565755, 17.755636 ], [ -64.565782, 17.755712 ], [ -64.565801, 17.755763 ], [ -64.565845, 17.755977 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "020", "TRACTCE10": "950200", "GEOID10": "78020950200", "NAME10": "9502", "NAMELSAD10": "Census Tract 9502", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 7037744, "AWATER10": 2416566, "INTPTLAT10": "+18.3229769", "INTPTLON10": "-064.7782679" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.805023, 18.328346 ], [ -64.805053, 18.328374 ], [ -64.805046, 18.328441 ], [ -64.805007, 18.328475 ], [ -64.804924, 18.328462 ], [ -64.804916, 18.328409 ], [ -64.804985, 18.328407 ], [ -64.804985, 18.328351 ], [ -64.805023, 18.328346 ] ] ], [ [ [ -64.808036, 18.331141 ], [ -64.808002, 18.331196 ], [ -64.807978, 18.331218 ], [ -64.80795, 18.331233 ], [ -64.807903, 18.331234 ], [ -64.807794, 18.331251 ], [ -64.807674, 18.331251 ], [ -64.807621, 18.331273 ], [ -64.807587, 18.331268 ], [ -64.807448, 18.331278 ], [ -64.807334, 18.331223 ], [ -64.80728, 18.331201 ], [ -64.807253, 18.331174 ], [ -64.807206, 18.331108 ], [ -64.807177, 18.331075 ], [ -64.807165, 18.331042 ], [ -64.807131, 18.330954 ], [ -64.807125, 18.330915 ], [ -64.807108, 18.330875 ], [ -64.807084, 18.330783 ], [ -64.807061, 18.330739 ], [ -64.807051, 18.330699 ], [ -64.807033, 18.330667 ], [ -64.807022, 18.330627 ], [ -64.806998, 18.33059 ], [ -64.806992, 18.330557 ], [ -64.806969, 18.330469 ], [ -64.806941, 18.330348 ], [ -64.806917, 18.330309 ], [ -64.806901, 18.330226 ], [ -64.806884, 18.330077 ], [ -64.806877, 18.33005 ], [ -64.806878, 18.330012 ], [ -64.806871, 18.329962 ], [ -64.806871, 18.329907 ], [ -64.806878, 18.329867 ], [ -64.806865, 18.329775 ], [ -64.806865, 18.329736 ], [ -64.806878, 18.329698 ], [ -64.806877, 18.329665 ], [ -64.806889, 18.32963 ], [ -64.806871, 18.329522 ], [ -64.806877, 18.329478 ], [ -64.806877, 18.329433 ], [ -64.806885, 18.32934 ], [ -64.806888, 18.329268 ], [ -64.806883, 18.329234 ], [ -64.806888, 18.329197 ], [ -64.806901, 18.329158 ], [ -64.8069, 18.329107 ], [ -64.8069, 18.32907 ], [ -64.806888, 18.329037 ], [ -64.806889, 18.329002 ], [ -64.806859, 18.328943 ], [ -64.806825, 18.328842 ], [ -64.806779, 18.328762 ], [ -64.80675, 18.328729 ], [ -64.806727, 18.328696 ], [ -64.806722, 18.328665 ], [ -64.806751, 18.328628 ], [ -64.806785, 18.328602 ], [ -64.80682, 18.328596 ], [ -64.806883, 18.328623 ], [ -64.806992, 18.328701 ], [ -64.807033, 18.328734 ], [ -64.807097, 18.328777 ], [ -64.807154, 18.328844 ], [ -64.807172, 18.328877 ], [ -64.8072, 18.328982 ], [ -64.807205, 18.32902 ], [ -64.807246, 18.329103 ], [ -64.807263, 18.329136 ], [ -64.80735, 18.32923 ], [ -64.80739, 18.329257 ], [ -64.807448, 18.329329 ], [ -64.807511, 18.329439 ], [ -64.807609, 18.329692 ], [ -64.807638, 18.329791 ], [ -64.807668, 18.329835 ], [ -64.807677, 18.329869 ], [ -64.807754, 18.330122 ], [ -64.807778, 18.330209 ], [ -64.807788, 18.330268 ], [ -64.807794, 18.330304 ], [ -64.807812, 18.330335 ], [ -64.807823, 18.330403 ], [ -64.807823, 18.33043 ], [ -64.80784, 18.33059 ], [ -64.80788, 18.330694 ], [ -64.807904, 18.330777 ], [ -64.807944, 18.330892 ], [ -64.807955, 18.330953 ], [ -64.807984, 18.331042 ], [ -64.808036, 18.331141 ] ] ], [ [ [ -64.80086, 18.325707 ], [ -64.800955, 18.325773 ], [ -64.800941, 18.32581 ], [ -64.800863, 18.325782 ], [ -64.800781, 18.325741 ], [ -64.800766, 18.325682 ], [ -64.800827, 18.325679 ], [ -64.80086, 18.325707 ] ] ], [ [ [ -64.771578, 18.333631 ], [ -64.771433, 18.333644 ], [ -64.771202, 18.333677 ], [ -64.770966, 18.333666 ], [ -64.77081, 18.333694 ], [ -64.770666, 18.333732 ], [ -64.770533, 18.333749 ], [ -64.770395, 18.333749 ], [ -64.770274, 18.333644 ], [ -64.770257, 18.3336 ], [ -64.770291, 18.333413 ], [ -64.77032, 18.333181 ], [ -64.770349, 18.333016 ], [ -64.770349, 18.332939 ], [ -64.770286, 18.332735 ], [ -64.769911, 18.332162 ], [ -64.769836, 18.332041 ], [ -64.769795, 18.331953 ], [ -64.769755, 18.331788 ], [ -64.769749, 18.33165 ], [ -64.769767, 18.331512 ], [ -64.769796, 18.331369 ], [ -64.769807, 18.331221 ], [ -64.769698, 18.331 ], [ -64.769525, 18.330884 ], [ -64.769386, 18.330785 ], [ -64.769288, 18.330736 ], [ -64.769132, 18.330703 ], [ -64.769046, 18.330692 ], [ -64.768965, 18.330697 ], [ -64.768804, 18.330692 ], [ -64.768694, 18.330741 ], [ -64.768267, 18.330961 ], [ -64.768175, 18.331005 ], [ -64.768106, 18.331016 ], [ -64.768019, 18.331022 ], [ -64.767904, 18.331011 ], [ -64.767806, 18.331011 ], [ -64.767776, 18.330999 ], [ -64.767702, 18.330972 ], [ -64.76757, 18.330901 ], [ -64.767541, 18.33084 ], [ -64.767517, 18.330813 ], [ -64.767454, 18.330741 ], [ -64.767368, 18.330686 ], [ -64.767201, 18.330565 ], [ -64.767085, 18.330493 ], [ -64.766953, 18.330432 ], [ -64.766745, 18.330377 ], [ -64.76652, 18.330355 ], [ -64.766341, 18.330333 ], [ -64.766001, 18.330245 ], [ -64.765776, 18.330195 ], [ -64.765574, 18.33014 ], [ -64.765401, 18.330052 ], [ -64.765228, 18.32998 ], [ -64.764888, 18.32981 ], [ -64.764773, 18.329771 ], [ -64.764715, 18.329727 ], [ -64.764583, 18.329683 ], [ -64.764554, 18.329644 ], [ -64.764542, 18.329584 ], [ -64.764513, 18.329485 ], [ -64.764456, 18.329375 ], [ -64.76441, 18.32927 ], [ -64.764346, 18.329209 ], [ -64.764341, 18.329154 ], [ -64.764306, 18.329076 ], [ -64.764294, 18.329049 ], [ -64.76429, 18.329037 ], [ -64.762407, 18.32789 ], [ -64.761131, 18.327086 ], [ -64.759925, 18.326328 ], [ -64.756316, 18.326182 ], [ -64.756125, 18.317655 ], [ -64.756264, 18.317553 ], [ -64.756317, 18.317493 ], [ -64.756348, 18.317432 ], [ -64.756348, 18.317353 ], [ -64.756332, 18.317276 ], [ -64.756348, 18.31723 ], [ -64.756363, 18.317223 ], [ -64.756386, 18.317186 ], [ -64.756437, 18.317139 ], [ -64.756477, 18.317068 ], [ -64.756447, 18.316975 ], [ -64.756378, 18.316854 ], [ -64.756378, 18.316797 ], [ -64.756371, 18.316776 ], [ -64.756271, 18.316645 ], [ -64.756264, 18.316584 ], [ -64.756279, 18.316566 ], [ -64.756325, 18.316547 ], [ -64.756427, 18.316478 ], [ -64.756477, 18.316467 ], [ -64.756577, 18.316467 ], [ -64.756653, 18.316406 ], [ -64.759313, 18.314853 ], [ -64.759574, 18.3147 ], [ -64.763485, 18.312419 ], [ -64.765284, 18.31137 ], [ -64.765342, 18.31136 ], [ -64.765423, 18.311382 ], [ -64.765475, 18.311365 ], [ -64.765482, 18.311354 ], [ -64.765632, 18.311123 ], [ -64.765625, 18.311051 ], [ -64.765636, 18.310957 ], [ -64.765642, 18.310836 ], [ -64.765677, 18.310778 ], [ -64.765706, 18.310732 ], [ -64.765765, 18.310672 ], [ -64.765832, 18.310665 ], [ -64.76589, 18.310583 ], [ -64.765977, 18.31055 ], [ -64.766115, 18.310523 ], [ -64.776545, 18.310821 ], [ -64.780017, 18.310921 ], [ -64.780196, 18.310905 ], [ -64.780289, 18.310789 ], [ -64.780353, 18.310755 ], [ -64.780444, 18.310784 ], [ -64.780531, 18.310795 ], [ -64.780657, 18.310767 ], [ -64.78079, 18.310718 ], [ -64.780969, 18.31069 ], [ -64.781067, 18.310701 ], [ -64.781171, 18.310734 ], [ -64.781252, 18.310663 ], [ -64.781298, 18.310679 ], [ -64.781327, 18.310656 ], [ -64.781407, 18.310542 ], [ -64.781459, 18.31053 ], [ -64.781574, 18.310679 ], [ -64.781655, 18.31069 ], [ -64.781724, 18.310795 ], [ -64.781828, 18.310883 ], [ -64.782059, 18.310938 ], [ -64.782203, 18.310999 ], [ -64.782336, 18.31107 ], [ -64.782424, 18.311134 ], [ -64.782478, 18.311075 ], [ -64.782516, 18.311056 ], [ -64.782544, 18.311066 ], [ -64.782585, 18.311094 ], [ -64.78257, 18.311119 ], [ -64.782528, 18.311187 ], [ -64.782513, 18.311253 ], [ -64.78254, 18.311273 ], [ -64.782578, 18.311266 ], [ -64.782609, 18.311276 ], [ -64.782639, 18.311285 ], [ -64.782661, 18.311284 ], [ -64.7827, 18.311283 ], [ -64.782722, 18.311259 ], [ -64.782738, 18.311241 ], [ -64.782798, 18.311243 ], [ -64.782865, 18.311226 ], [ -64.782928, 18.311177 ], [ -64.782946, 18.311143 ], [ -64.78299, 18.311136 ], [ -64.783021, 18.31115 ], [ -64.783035, 18.311186 ], [ -64.78474, 18.313445 ], [ -64.788551, 18.314282 ], [ -64.788661, 18.314298 ], [ -64.788745, 18.314358 ], [ -64.788753, 18.314364 ], [ -64.788793, 18.314447 ], [ -64.788868, 18.314535 ], [ -64.789065, 18.314583 ], [ -64.789393, 18.314601 ], [ -64.789468, 18.314596 ], [ -64.789595, 18.314579 ], [ -64.789751, 18.31453 ], [ -64.789965, 18.314503 ], [ -64.790056, 18.314414 ], [ -64.790166, 18.314337 ], [ -64.790339, 18.314331 ], [ -64.790523, 18.314508 ], [ -64.790604, 18.314612 ], [ -64.790628, 18.314617 ], [ -64.790771, 18.314651 ], [ -64.790806, 18.314601 ], [ -64.790904, 18.314436 ], [ -64.790962, 18.314398 ], [ -64.791025, 18.314387 ], [ -64.7911, 18.314392 ], [ -64.791205, 18.314449 ], [ -64.791231, 18.314511 ], [ -64.791238, 18.314524 ], [ -64.791238, 18.314679 ], [ -64.791225, 18.314713 ], [ -64.791204, 18.314772 ], [ -64.791206, 18.314778 ], [ -64.791218, 18.314819 ], [ -64.791253, 18.314945 ], [ -64.791267, 18.314987 ], [ -64.791262, 18.315146 ], [ -64.791232, 18.315268 ], [ -64.791244, 18.315477 ], [ -64.791272, 18.315518 ], [ -64.791325, 18.315593 ], [ -64.79159, 18.316039 ], [ -64.791653, 18.316221 ], [ -64.791711, 18.316336 ], [ -64.791821, 18.31648 ], [ -64.791878, 18.316617 ], [ -64.794613, 18.32007 ], [ -64.794614, 18.320071 ], [ -64.794683, 18.320151 ], [ -64.79472, 18.320257 ], [ -64.794769, 18.320441 ], [ -64.794698, 18.320561 ], [ -64.794593, 18.320602 ], [ -64.79454, 18.32064 ], [ -64.794492, 18.32073 ], [ -64.794497, 18.320831 ], [ -64.794508, 18.320937 ], [ -64.794556, 18.321043 ], [ -64.79454, 18.321134 ], [ -64.794503, 18.321139 ], [ -64.794444, 18.321171 ], [ -64.794434, 18.321197 ], [ -64.794444, 18.321245 ], [ -64.794465, 18.321266 ], [ -64.794519, 18.32133 ], [ -64.794545, 18.321389 ], [ -64.794556, 18.321484 ], [ -64.794566, 18.321543 ], [ -64.794625, 18.321633 ], [ -64.794662, 18.321686 ], [ -64.79472, 18.321782 ], [ -64.794752, 18.321878 ], [ -64.794752, 18.321952 ], [ -64.794779, 18.322021 ], [ -64.794853, 18.322063 ], [ -64.794938, 18.322085 ], [ -64.795124, 18.322136 ], [ -64.795366, 18.322293 ], [ -64.795462, 18.322423 ], [ -64.795534, 18.322547 ], [ -64.795573, 18.322692 ], [ -64.795586, 18.322855 ], [ -64.795579, 18.323034 ], [ -64.795563, 18.323139 ], [ -64.795543, 18.323387 ], [ -64.795542, 18.323398 ], [ -64.795541, 18.323417 ], [ -64.795542, 18.323434 ], [ -64.795544, 18.323446 ], [ -64.795557, 18.323584 ], [ -64.795574, 18.323678 ], [ -64.79563, 18.323844 ], [ -64.795684, 18.324003 ], [ -64.795811, 18.324289 ], [ -64.795936, 18.324613 ], [ -64.796881, 18.325008 ], [ -64.799122, 18.325947 ], [ -64.799174, 18.325961 ], [ -64.799196, 18.326016 ], [ -64.799235, 18.326093 ], [ -64.799236, 18.326094 ], [ -64.799288, 18.326086 ], [ -64.799321, 18.326079 ], [ -64.799357, 18.32613 ], [ -64.799409, 18.326174 ], [ -64.799515, 18.326178 ], [ -64.799614, 18.326237 ], [ -64.79968, 18.326295 ], [ -64.799743, 18.326365 ], [ -64.799794, 18.326508 ], [ -64.799809, 18.326596 ], [ -64.799794, 18.326681 ], [ -64.799746, 18.32671 ], [ -64.799684, 18.326769 ], [ -64.799684, 18.326857 ], [ -64.799669, 18.326927 ], [ -64.799094, 18.329543 ], [ -64.799095, 18.329544 ], [ -64.799095, 18.329626 ], [ -64.799095, 18.329693 ], [ -64.799049, 18.329763 ], [ -64.799011, 18.329813 ], [ -64.798904, 18.329967 ], [ -64.798874, 18.330038 ], [ -64.798882, 18.330099 ], [ -64.798836, 18.330204 ], [ -64.798846, 18.330307 ], [ -64.798889, 18.330469 ], [ -64.798935, 18.330536 ], [ -64.799019, 18.330706 ], [ -64.798789, 18.333089 ], [ -64.798774, 18.333244 ], [ -64.798404, 18.333248 ], [ -64.79812, 18.333251 ], [ -64.795211, 18.33327 ], [ -64.79473, 18.333274 ], [ -64.79418, 18.332692 ], [ -64.794132, 18.33272 ], [ -64.79406, 18.332584 ], [ -64.793968, 18.332573 ], [ -64.793908, 18.332568 ], [ -64.793864, 18.332579 ], [ -64.793835, 18.332583 ], [ -64.793809, 18.332597 ], [ -64.793772, 18.332608 ], [ -64.793728, 18.332619 ], [ -64.793699, 18.33263 ], [ -64.793669, 18.332656 ], [ -64.793636, 18.332656 ], [ -64.793592, 18.332674 ], [ -64.793577, 18.332708 ], [ -64.79353, 18.33273 ], [ -64.793442, 18.332781 ], [ -64.793004, 18.332867 ], [ -64.793008, 18.332893 ], [ -64.79222, 18.33294 ], [ -64.792137, 18.33295 ], [ -64.79207, 18.33296 ], [ -64.792069, 18.33296 ], [ -64.79195, 18.33299 ], [ -64.791903, 18.333013 ], [ -64.79183, 18.33305 ], [ -64.79182, 18.333007 ], [ -64.791818, 18.332995 ], [ -64.791806, 18.332941 ], [ -64.790025, 18.33327 ], [ -64.788584, 18.333146 ], [ -64.788313, 18.333123 ], [ -64.788249, 18.333417 ], [ -64.787848, 18.334605 ], [ -64.787571, 18.33543 ], [ -64.787156, 18.336662 ], [ -64.785012, 18.336432 ], [ -64.784842, 18.336396 ], [ -64.784732, 18.33634 ], [ -64.784571, 18.336287 ], [ -64.784436, 18.336201 ], [ -64.784299, 18.336163 ], [ -64.784217, 18.336121 ], [ -64.784003, 18.33597 ], [ -64.7839, 18.335863 ], [ -64.78309, 18.33595 ], [ -64.781529, 18.336065 ], [ -64.777641, 18.336439 ], [ -64.777532, 18.336453 ], [ -64.777287, 18.33646 ], [ -64.77614, 18.336547 ], [ -64.776139, 18.336757 ], [ -64.77612, 18.337343 ], [ -64.776014, 18.337356 ], [ -64.775397, 18.337419 ], [ -64.7753, 18.33745 ], [ -64.775223, 18.337456 ], [ -64.77519, 18.33746 ], [ -64.77503, 18.33751 ], [ -64.77481, 18.33756 ], [ -64.774739, 18.337568 ], [ -64.774575, 18.337589 ], [ -64.774349, 18.337624 ], [ -64.77425, 18.33764 ], [ -64.77409, 18.33763 ], [ -64.7739, 18.3376 ], [ -64.773668, 18.337615 ], [ -64.77344, 18.33763 ], [ -64.773435, 18.337612 ], [ -64.773422, 18.337559 ], [ -64.773419, 18.337542 ], [ -64.773399, 18.337465 ], [ -64.77338, 18.33738 ], [ -64.773393, 18.337233 ], [ -64.773395, 18.337227 ], [ -64.77334, 18.33718 ], [ -64.77325, 18.33693 ], [ -64.77316, 18.336774 ], [ -64.77313, 18.33672 ], [ -64.773063, 18.336636 ], [ -64.77304, 18.33654 ], [ -64.77303, 18.33634 ], [ -64.77307, 18.33614 ], [ -64.7732, 18.33573 ], [ -64.77323, 18.33554 ], [ -64.773233, 18.335514 ], [ -64.77325, 18.33538 ], [ -64.773251, 18.335184 ], [ -64.773259, 18.335119 ], [ -64.773283, 18.33509 ], [ -64.773296, 18.334962 ], [ -64.773337, 18.33458 ], [ -64.77334, 18.33457 ], [ -64.773354, 18.334371 ], [ -64.773312, 18.334278 ], [ -64.773301, 18.334196 ], [ -64.773322, 18.334093 ], [ -64.77335, 18.33391 ], [ -64.77332, 18.333764 ], [ -64.77331, 18.33371 ], [ -64.772558, 18.333577 ], [ -64.772414, 18.333557 ], [ -64.772251, 18.333532 ], [ -64.772101, 18.33351 ], [ -64.771578, 18.333631 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "020", "TRACTCE10": "950100", "GEOID10": "78020950100", "NAME10": "9501", "NAMELSAD10": "Census Tract 9501", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 43962270, "AWATER10": 21618180, "INTPTLAT10": "+18.3399800", "INTPTLON10": "-064.7228612" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.651818, 18.325952 ], [ -64.651821, 18.326091 ], [ -64.65184, 18.32626 ], [ -64.651787, 18.326382 ], [ -64.651665, 18.326525 ], [ -64.651566, 18.326628 ], [ -64.651474, 18.326723 ], [ -64.651367, 18.326826 ], [ -64.651259, 18.326968 ], [ -64.651227, 18.327207 ], [ -64.651209, 18.327342 ], [ -64.651245, 18.327543 ], [ -64.651268, 18.327663 ], [ -64.651245, 18.327862 ], [ -64.651184, 18.327957 ], [ -64.651039, 18.328001 ], [ -64.650841, 18.327988 ], [ -64.650726, 18.327986 ], [ -64.65062, 18.32799 ], [ -64.650544, 18.32802 ], [ -64.650414, 18.328089 ], [ -64.65033, 18.328173 ], [ -64.650079, 18.328453 ], [ -64.650002, 18.328512 ], [ -64.649811, 18.328547 ], [ -64.649663, 18.328572 ], [ -64.649529, 18.328585 ], [ -64.649475, 18.328562 ], [ -64.649338, 18.328449 ], [ -64.6493, 18.328436 ], [ -64.649162, 18.328447 ], [ -64.649055, 18.328423 ], [ -64.648816, 18.328275 ], [ -64.648661, 18.328155 ], [ -64.648643, 18.328049 ], [ -64.648671, 18.327974 ], [ -64.648719, 18.327828 ], [ -64.648758, 18.327623 ], [ -64.648773, 18.327444 ], [ -64.648773, 18.327387 ], [ -64.648811, 18.327246 ], [ -64.64888, 18.327169 ], [ -64.649002, 18.327035 ], [ -64.649078, 18.326982 ], [ -64.649077, 18.326924 ], [ -64.649116, 18.326977 ], [ -64.649185, 18.327024 ], [ -64.649223, 18.327091 ], [ -64.649317, 18.327185 ], [ -64.649353, 18.327141 ], [ -64.649327, 18.327097 ], [ -64.649336, 18.327013 ], [ -64.649338, 18.326895 ], [ -64.649362, 18.326776 ], [ -64.649372, 18.326685 ], [ -64.649452, 18.326578 ], [ -64.649483, 18.326508 ], [ -64.649529, 18.32629 ], [ -64.649559, 18.326189 ], [ -64.649582, 18.326071 ], [ -64.649574, 18.325974 ], [ -64.649628, 18.325949 ], [ -64.649673, 18.325933 ], [ -64.649673, 18.32588 ], [ -64.649666, 18.325804 ], [ -64.649673, 18.325726 ], [ -64.649701, 18.32564 ], [ -64.649704, 18.3255 ], [ -64.649756, 18.325397 ], [ -64.649788, 18.325287 ], [ -64.649796, 18.325214 ], [ -64.649857, 18.325233 ], [ -64.64991, 18.325241 ], [ -64.649918, 18.325144 ], [ -64.649904, 18.325097 ], [ -64.649934, 18.324936 ], [ -64.649893, 18.324799 ], [ -64.649963, 18.324726 ], [ -64.65011, 18.324606 ], [ -64.650146, 18.324432 ], [ -64.650116, 18.324257 ], [ -64.65023, 18.324118 ], [ -64.650219, 18.324049 ], [ -64.65036, 18.324102 ], [ -64.650444, 18.324162 ], [ -64.650497, 18.324422 ], [ -64.65057, 18.324487 ], [ -64.650665, 18.32452 ], [ -64.65078, 18.32457 ], [ -64.65088, 18.324648 ], [ -64.650925, 18.324768 ], [ -64.651062, 18.324854 ], [ -64.651111, 18.324928 ], [ -64.651169, 18.325054 ], [ -64.651236, 18.325118 ], [ -64.651253, 18.325264 ], [ -64.651284, 18.325366 ], [ -64.651318, 18.325326 ], [ -64.651401, 18.325416 ], [ -64.651443, 18.325518 ], [ -64.651512, 18.325544 ], [ -64.651565, 18.325486 ], [ -64.651661, 18.32559 ], [ -64.651815, 18.325757 ], [ -64.651818, 18.325952 ] ] ], [ [ [ -64.816835, 18.343538 ], [ -64.81674, 18.34346 ], [ -64.816862, 18.343393 ], [ -64.816912, 18.343299 ], [ -64.817029, 18.343271 ], [ -64.817095, 18.343316 ], [ -64.817034, 18.343371 ], [ -64.817012, 18.343449 ], [ -64.817079, 18.343493 ], [ -64.817156, 18.343532 ], [ -64.817162, 18.343626 ], [ -64.817095, 18.343676 ], [ -64.817018, 18.343676 ], [ -64.816923, 18.343649 ], [ -64.816918, 18.343554 ], [ -64.816835, 18.343538 ] ] ], [ [ [ -64.709723, 18.30249 ], [ -64.709687, 18.302446 ], [ -64.709648, 18.302415 ], [ -64.709648, 18.302375 ], [ -64.70964, 18.302324 ], [ -64.709636, 18.302296 ], [ -64.709632, 18.302245 ], [ -64.70964, 18.302194 ], [ -64.709648, 18.302162 ], [ -64.709679, 18.30217 ], [ -64.709711, 18.302182 ], [ -64.709754, 18.302166 ], [ -64.709731, 18.302111 ], [ -64.709723, 18.302083 ], [ -64.70977, 18.302079 ], [ -64.709818, 18.302083 ], [ -64.709853, 18.302067 ], [ -64.709853, 18.30202 ], [ -64.709845, 18.301965 ], [ -64.709845, 18.301933 ], [ -64.709877, 18.301925 ], [ -64.709908, 18.301993 ], [ -64.709944, 18.302044 ], [ -64.70996, 18.302079 ], [ -64.709936, 18.302083 ], [ -64.709936, 18.302107 ], [ -64.709956, 18.302135 ], [ -64.710003, 18.302162 ], [ -64.709999, 18.302217 ], [ -64.710011, 18.302253 ], [ -64.71005, 18.302296 ], [ -64.710074, 18.302312 ], [ -64.710094, 18.302352 ], [ -64.71007, 18.302399 ], [ -64.710031, 18.302411 ], [ -64.710015, 18.302411 ], [ -64.710003, 18.302438 ], [ -64.709971, 18.302486 ], [ -64.709944, 18.302482 ], [ -64.709904, 18.302505 ], [ -64.709861, 18.302505 ], [ -64.709822, 18.302505 ], [ -64.709778, 18.302494 ], [ -64.709723, 18.30249 ] ] ], [ [ [ -64.777122, 18.354334 ], [ -64.776995, 18.35432 ], [ -64.77696, 18.354359 ], [ -64.776886, 18.35437 ], [ -64.776834, 18.35437 ], [ -64.776776, 18.354337 ], [ -64.776759, 18.354293 ], [ -64.776764, 18.354226 ], [ -64.776793, 18.354149 ], [ -64.776764, 18.35405 ], [ -64.776695, 18.353995 ], [ -64.776695, 18.353962 ], [ -64.776753, 18.353929 ], [ -64.776845, 18.353896 ], [ -64.776861, 18.353876 ], [ -64.776891, 18.353846 ], [ -64.776938, 18.35378 ], [ -64.776943, 18.353725 ], [ -64.777036, 18.353692 ], [ -64.777076, 18.353709 ], [ -64.777151, 18.353786 ], [ -64.777237, 18.353827 ], [ -64.777281, 18.353889 ], [ -64.777353, 18.354006 ], [ -64.77737, 18.354037 ], [ -64.777394, 18.354085 ], [ -64.777339, 18.354158 ], [ -64.777348, 18.354188 ], [ -64.777324, 18.354227 ], [ -64.777295, 18.354254 ], [ -64.77718, 18.354287 ], [ -64.777122, 18.354334 ] ] ], [ [ [ -64.79698, 18.355478 ], [ -64.797015, 18.355533 ], [ -64.797072, 18.355577 ], [ -64.797118, 18.355643 ], [ -64.797142, 18.355698 ], [ -64.797159, 18.355902 ], [ -64.797136, 18.355963 ], [ -64.797079, 18.356044 ], [ -64.797021, 18.356079 ], [ -64.797004, 18.356086 ], [ -64.796986, 18.356095 ], [ -64.796945, 18.356084 ], [ -64.796847, 18.356123 ], [ -64.796744, 18.356244 ], [ -64.796657, 18.356315 ], [ -64.796611, 18.356376 ], [ -64.796577, 18.356397 ], [ -64.796536, 18.356403 ], [ -64.796496, 18.356402 ], [ -64.796467, 18.356414 ], [ -64.796415, 18.35637 ], [ -64.796369, 18.35626 ], [ -64.796357, 18.35615 ], [ -64.796363, 18.356095 ], [ -64.796392, 18.356078 ], [ -64.796432, 18.356062 ], [ -64.796443, 18.356056 ], [ -64.796519, 18.356018 ], [ -64.796582, 18.355996 ], [ -64.796618, 18.355974 ], [ -64.79664, 18.35593 ], [ -64.796622, 18.355875 ], [ -64.796622, 18.355831 ], [ -64.796634, 18.355776 ], [ -64.79664, 18.355715 ], [ -64.796761, 18.3555 ], [ -64.796871, 18.355473 ], [ -64.796929, 18.355467 ], [ -64.79698, 18.355478 ] ] ], [ [ [ -64.795433, 18.364202 ], [ -64.795516, 18.364217 ], [ -64.795539, 18.364265 ], [ -64.795364, 18.364299 ], [ -64.795333, 18.364284 ], [ -64.795341, 18.364238 ], [ -64.795433, 18.364202 ] ] ], [ [ [ -64.795852, 18.364181 ], [ -64.79586, 18.364198 ], [ -64.795814, 18.364221 ], [ -64.795806, 18.36421 ], [ -64.795852, 18.364181 ] ] ], [ [ [ -64.795661, 18.364089 ], [ -64.795684, 18.364122 ], [ -64.795631, 18.364141 ], [ -64.795608, 18.364124 ], [ -64.795608, 18.364095 ], [ -64.795661, 18.364089 ] ] ], [ [ [ -64.795867, 18.364076 ], [ -64.795951, 18.364078 ], [ -64.795982, 18.36413 ], [ -64.795852, 18.364122 ], [ -64.795829, 18.364099 ], [ -64.795867, 18.364076 ] ] ], [ [ [ -64.80265, 18.359609 ], [ -64.802719, 18.359647 ], [ -64.802673, 18.359712 ], [ -64.802589, 18.359731 ], [ -64.802543, 18.35971 ], [ -64.802543, 18.35964 ], [ -64.80265, 18.359609 ] ] ], [ [ [ -64.755853, 18.369225 ], [ -64.755997, 18.369242 ], [ -64.756199, 18.369286 ], [ -64.75632, 18.36928 ], [ -64.756466, 18.36931 ], [ -64.756637, 18.369335 ], [ -64.756789, 18.369404 ], [ -64.757035, 18.369429 ], [ -64.757154, 18.369436 ], [ -64.75722, 18.36944 ], [ -64.757375, 18.369462 ], [ -64.757496, 18.369446 ], [ -64.757646, 18.369407 ], [ -64.757929, 18.369396 ], [ -64.758448, 18.369347 ], [ -64.758748, 18.36933 ], [ -64.758956, 18.369325 ], [ -64.759077, 18.36933 ], [ -64.759175, 18.369413 ], [ -64.759181, 18.369485 ], [ -64.759227, 18.369501 ], [ -64.759377, 18.369435 ], [ -64.759435, 18.369452 ], [ -64.759504, 18.369501 ], [ -64.759544, 18.369567 ], [ -64.759573, 18.369639 ], [ -64.759619, 18.369678 ], [ -64.759683, 18.369683 ], [ -64.759758, 18.3697 ], [ -64.759804, 18.369661 ], [ -64.759829, 18.369627 ], [ -64.759844, 18.369589 ], [ -64.759913, 18.369512 ], [ -64.760006, 18.369474 ], [ -64.76019, 18.369435 ], [ -64.760288, 18.36943 ], [ -64.760329, 18.369463 ], [ -64.760386, 18.369496 ], [ -64.760409, 18.36954 ], [ -64.760421, 18.369628 ], [ -64.76038, 18.369716 ], [ -64.760329, 18.36976 ], [ -64.760271, 18.369788 ], [ -64.760052, 18.36998 ], [ -64.759919, 18.37003 ], [ -64.759874, 18.370061 ], [ -64.75978, 18.37008 ], [ -64.759752, 18.370068 ], [ -64.759694, 18.370024 ], [ -64.759682, 18.369997 ], [ -64.759642, 18.369953 ], [ -64.759592, 18.36993 ], [ -64.759515, 18.369947 ], [ -64.759481, 18.36992 ], [ -64.759411, 18.369793 ], [ -64.759384, 18.36978 ], [ -64.759325, 18.369777 ], [ -64.759282, 18.369808 ], [ -64.759263, 18.36981 ], [ -64.75925, 18.369837 ], [ -64.75925, 18.369953 ], [ -64.759264, 18.369991 ], [ -64.759267, 18.369997 ], [ -64.759204, 18.370041 ], [ -64.759146, 18.370074 ], [ -64.759077, 18.370079 ], [ -64.759008, 18.370079 ], [ -64.758927, 18.37009 ], [ -64.758777, 18.370123 ], [ -64.758696, 18.370178 ], [ -64.758523, 18.370217 ], [ -64.758413, 18.370222 ], [ -64.758344, 18.370244 ], [ -64.758263, 18.370277 ], [ -64.758154, 18.370344 ], [ -64.758108, 18.370382 ], [ -64.75805, 18.370476 ], [ -64.758021, 18.370536 ], [ -64.75801, 18.370586 ], [ -64.757912, 18.370668 ], [ -64.757675, 18.371021 ], [ -64.7576, 18.371114 ], [ -64.757433, 18.371219 ], [ -64.757352, 18.37123 ], [ -64.757248, 18.371208 ], [ -64.75719, 18.371202 ], [ -64.757098, 18.371186 ], [ -64.757052, 18.371161 ], [ -64.756965, 18.371142 ], [ -64.75689, 18.371147 ], [ -64.756775, 18.371147 ], [ -64.756613, 18.371131 ], [ -64.756423, 18.371125 ], [ -64.756262, 18.371153 ], [ -64.756152, 18.371131 ], [ -64.756019, 18.371087 ], [ -64.755875, 18.371053 ], [ -64.755783, 18.371017 ], [ -64.755656, 18.371009 ], [ -64.755536, 18.370974 ], [ -64.755402, 18.37091 ], [ -64.755304, 18.370877 ], [ -64.755125, 18.370761 ], [ -64.755102, 18.370734 ], [ -64.755062, 18.370717 ], [ -64.755027, 18.370662 ], [ -64.755039, 18.370616 ], [ -64.75501, 18.370547 ], [ -64.75501, 18.370392 ], [ -64.755018, 18.370293 ], [ -64.755045, 18.37015 ], [ -64.755074, 18.370034 ], [ -64.755056, 18.369946 ], [ -64.755253, 18.369704 ], [ -64.755408, 18.369396 ], [ -64.755497, 18.369296 ], [ -64.755587, 18.369256 ], [ -64.755766, 18.36922 ], [ -64.755853, 18.369225 ] ] ], [ [ [ -64.797678, 18.369142 ], [ -64.797608, 18.369065 ], [ -64.797614, 18.369021 ], [ -64.79766, 18.368999 ], [ -64.797729, 18.368955 ], [ -64.797799, 18.368927 ], [ -64.797891, 18.368867 ], [ -64.797995, 18.368845 ], [ -64.798076, 18.368817 ], [ -64.798168, 18.368762 ], [ -64.798237, 18.368735 ], [ -64.798358, 18.368718 ], [ -64.798606, 18.368602 ], [ -64.798693, 18.368569 ], [ -64.798843, 18.368502 ], [ -64.798941, 18.368487 ], [ -64.799045, 18.368426 ], [ -64.799114, 18.36841 ], [ -64.799287, 18.368338 ], [ -64.799379, 18.368316 ], [ -64.799466, 18.36831 ], [ -64.799581, 18.368283 ], [ -64.799645, 18.368245 ], [ -64.799789, 18.368162 ], [ -64.799962, 18.368074 ], [ -64.8001, 18.367997 ], [ -64.800314, 18.367908 ], [ -64.800504, 18.367881 ], [ -64.800671, 18.367815 ], [ -64.800839, 18.367716 ], [ -64.80104, 18.367644 ], [ -64.801375, 18.367561 ], [ -64.801652, 18.367473 ], [ -64.801917, 18.367396 ], [ -64.80209, 18.367391 ], [ -64.802275, 18.367336 ], [ -64.802465, 18.367308 ], [ -64.802511, 18.367292 ], [ -64.802621, 18.367171 ], [ -64.802811, 18.367159 ], [ -64.802984, 18.367115 ], [ -64.803163, 18.367044 ], [ -64.803336, 18.367033 ], [ -64.803521, 18.366998 ], [ -64.803682, 18.366945 ], [ -64.803878, 18.366862 ], [ -64.804057, 18.366801 ], [ -64.804236, 18.366834 ], [ -64.804398, 18.36685 ], [ -64.804767, 18.366829 ], [ -64.805118, 18.366835 ], [ -64.805291, 18.366857 ], [ -64.805482, 18.366868 ], [ -64.805649, 18.366862 ], [ -64.806019, 18.366832 ], [ -64.806071, 18.366829 ], [ -64.806197, 18.366823 ], [ -64.806364, 18.366763 ], [ -64.806549, 18.366818 ], [ -64.806728, 18.366796 ], [ -64.806895, 18.366801 ], [ -64.807062, 18.366901 ], [ -64.807143, 18.366912 ], [ -64.807253, 18.366978 ], [ -64.807426, 18.366978 ], [ -64.80761, 18.366928 ], [ -64.807698, 18.366911 ], [ -64.807783, 18.366912 ], [ -64.807974, 18.366893 ], [ -64.808095, 18.366895 ], [ -64.808147, 18.366923 ], [ -64.808181, 18.36695 ], [ -64.808204, 18.366983 ], [ -64.80817, 18.367077 ], [ -64.808147, 18.367104 ], [ -64.807968, 18.367192 ], [ -64.807783, 18.36722 ], [ -64.807431, 18.367209 ], [ -64.807247, 18.367214 ], [ -64.807085, 18.367225 ], [ -64.806907, 18.367264 ], [ -64.806728, 18.367374 ], [ -64.806543, 18.367396 ], [ -64.806457, 18.367429 ], [ -64.80637, 18.36749 ], [ -64.806255, 18.3676 ], [ -64.806203, 18.36761 ], [ -64.806138, 18.367603 ], [ -64.806105, 18.3676 ], [ -64.806012, 18.367628 ], [ -64.805834, 18.36771 ], [ -64.805655, 18.367749 ], [ -64.80547, 18.367738 ], [ -64.805332, 18.367776 ], [ -64.805078, 18.367947 ], [ -64.804957, 18.368041 ], [ -64.804778, 18.368107 ], [ -64.804726, 18.368123 ], [ -64.804599, 18.368151 ], [ -64.80423, 18.368267 ], [ -64.804057, 18.368327 ], [ -64.803896, 18.368366 ], [ -64.803515, 18.368448 ], [ -64.803405, 18.368476 ], [ -64.803348, 18.368481 ], [ -64.80318, 18.36852 ], [ -64.803002, 18.368492 ], [ -64.803019, 18.368459 ], [ -64.80299, 18.368355 ], [ -64.802817, 18.368377 ], [ -64.802644, 18.368487 ], [ -64.802403, 18.368546 ], [ -64.802286, 18.368575 ], [ -64.802027, 18.368658 ], [ -64.801929, 18.368768 ], [ -64.80175, 18.368757 ], [ -64.801571, 18.368691 ], [ -64.801386, 18.368696 ], [ -64.801208, 18.368707 ], [ -64.801046, 18.368724 ], [ -64.800844, 18.36874 ], [ -64.800678, 18.368728 ], [ -64.800504, 18.368735 ], [ -64.800325, 18.368762 ], [ -64.800152, 18.368772 ], [ -64.799979, 18.368751 ], [ -64.799789, 18.368834 ], [ -64.799773, 18.368836 ], [ -64.799731, 18.368845 ], [ -64.799696, 18.368839 ], [ -64.799581, 18.368806 ], [ -64.799552, 18.368812 ], [ -64.799466, 18.368817 ], [ -64.799345, 18.368811 ], [ -64.799235, 18.368839 ], [ -64.799016, 18.368878 ], [ -64.798912, 18.368927 ], [ -64.798808, 18.368938 ], [ -64.798606, 18.368982 ], [ -64.798508, 18.36901 ], [ -64.798416, 18.369043 ], [ -64.798341, 18.369104 ], [ -64.798179, 18.369093 ], [ -64.798127, 18.369082 ], [ -64.79807, 18.369076 ], [ -64.798001, 18.369076 ], [ -64.79792, 18.369087 ], [ -64.797787, 18.369142 ], [ -64.797678, 18.369142 ] ] ], [ [ [ -64.794136, 18.369897 ], [ -64.794021, 18.369878 ], [ -64.793876, 18.369882 ], [ -64.7938, 18.369832 ], [ -64.793792, 18.369779 ], [ -64.794052, 18.369705 ], [ -64.794235, 18.369525 ], [ -64.794357, 18.369468 ], [ -64.794532, 18.369487 ], [ -64.794677, 18.369487 ], [ -64.794708, 18.369525 ], [ -64.794593, 18.369567 ], [ -64.794512, 18.369546 ], [ -64.794502, 18.369611 ], [ -64.794273, 18.369745 ], [ -64.794136, 18.369897 ] ] ], [ [ [ -64.817617, 18.342606 ], [ -64.817539, 18.342678 ], [ -64.817428, 18.342667 ], [ -64.817384, 18.342745 ], [ -64.817384, 18.342833 ], [ -64.817345, 18.342928 ], [ -64.817256, 18.343011 ], [ -64.817162, 18.343 ], [ -64.817106, 18.342917 ], [ -64.817073, 18.342817 ], [ -64.817084, 18.342745 ], [ -64.817217, 18.342595 ], [ -64.817389, 18.342567 ], [ -64.817478, 18.342534 ], [ -64.8175, 18.342445 ], [ -64.817606, 18.342462 ], [ -64.817617, 18.342606 ] ] ], [ [ [ -64.790173, 18.3554 ], [ -64.790174, 18.355401 ], [ -64.790157, 18.355472 ], [ -64.790111, 18.355538 ], [ -64.790082, 18.355599 ], [ -64.790038, 18.35564 ], [ -64.789851, 18.355825 ], [ -64.789782, 18.355858 ], [ -64.789667, 18.355858 ], [ -64.789586, 18.355847 ], [ -64.789436, 18.355819 ], [ -64.789356, 18.355823 ], [ -64.789292, 18.355841 ], [ -64.78924, 18.355863 ], [ -64.789187, 18.355846 ], [ -64.789142, 18.355803 ], [ -64.789107, 18.355781 ], [ -64.789061, 18.355731 ], [ -64.789032, 18.355665 ], [ -64.788975, 18.355555 ], [ -64.788951, 18.355445 ], [ -64.788779, 18.355192 ], [ -64.788696, 18.355053 ], [ -64.788693, 18.355048 ], [ -64.78868, 18.354905 ], [ -64.788634, 18.354795 ], [ -64.788634, 18.354712 ], [ -64.788686, 18.354558 ], [ -64.788761, 18.354475 ], [ -64.788859, 18.354398 ], [ -64.788923, 18.35436 ], [ -64.789067, 18.354343 ], [ -64.789257, 18.354398 ], [ -64.789322, 18.354441 ], [ -64.789401, 18.35453 ], [ -64.78954, 18.354712 ], [ -64.789574, 18.354778 ], [ -64.789701, 18.3549 ], [ -64.789782, 18.354999 ], [ -64.789857, 18.355026 ], [ -64.789967, 18.355086 ], [ -64.790024, 18.355131 ], [ -64.790082, 18.355191 ], [ -64.790128, 18.355285 ], [ -64.790173, 18.3554 ] ] ], [ [ [ -64.792547, 18.354259 ], [ -64.792539, 18.354255 ], [ -64.792499, 18.354173 ], [ -64.792481, 18.354068 ], [ -64.792441, 18.353958 ], [ -64.792395, 18.353936 ], [ -64.792343, 18.353936 ], [ -64.79228, 18.353943 ], [ -64.792256, 18.353947 ], [ -64.79221, 18.353963 ], [ -64.792153, 18.353941 ], [ -64.792131, 18.353898 ], [ -64.792066, 18.353776 ], [ -64.792043, 18.353699 ], [ -64.792007, 18.353656 ], [ -64.791968, 18.353611 ], [ -64.79191, 18.353517 ], [ -64.791824, 18.353352 ], [ -64.791813, 18.353268 ], [ -64.79183, 18.353148 ], [ -64.791772, 18.352983 ], [ -64.791774, 18.352898 ], [ -64.791778, 18.352801 ], [ -64.791766, 18.352675 ], [ -64.791764, 18.352625 ], [ -64.79176, 18.352554 ], [ -64.791697, 18.352449 ], [ -64.791639, 18.352306 ], [ -64.791576, 18.352168 ], [ -64.791605, 18.352074 ], [ -64.791726, 18.352008 ], [ -64.791812, 18.352036 ], [ -64.79187, 18.35208 ], [ -64.791997, 18.352091 ], [ -64.792043, 18.352058 ], [ -64.792095, 18.35203 ], [ -64.792141, 18.351953 ], [ -64.792232, 18.351902 ], [ -64.792251, 18.351893 ], [ -64.792326, 18.351909 ], [ -64.792395, 18.351937 ], [ -64.792482, 18.352047 ], [ -64.79262, 18.352273 ], [ -64.792712, 18.35235 ], [ -64.792793, 18.352432 ], [ -64.792874, 18.352465 ], [ -64.792983, 18.352499 ], [ -64.793225, 18.352532 ], [ -64.793341, 18.352532 ], [ -64.793456, 18.352515 ], [ -64.793554, 18.352493 ], [ -64.793641, 18.352488 ], [ -64.79371, 18.352499 ], [ -64.793791, 18.352526 ], [ -64.793883, 18.35257 ], [ -64.793981, 18.352697 ], [ -64.794085, 18.352745 ], [ -64.794315, 18.352895 ], [ -64.794408, 18.352972 ], [ -64.794454, 18.353044 ], [ -64.794465, 18.353198 ], [ -64.794402, 18.353275 ], [ -64.794339, 18.353314 ], [ -64.794281, 18.353325 ], [ -64.7942, 18.353369 ], [ -64.794142, 18.353424 ], [ -64.794102, 18.353484 ], [ -64.794067, 18.353545 ], [ -64.794039, 18.353611 ], [ -64.793993, 18.353743 ], [ -64.793877, 18.353881 ], [ -64.793837, 18.353914 ], [ -64.793791, 18.353931 ], [ -64.793734, 18.353935 ], [ -64.79367, 18.353959 ], [ -64.793618, 18.35398 ], [ -64.793583, 18.354019 ], [ -64.79356, 18.354079 ], [ -64.793548, 18.354134 ], [ -64.793548, 18.354195 ], [ -64.793571, 18.354288 ], [ -64.793519, 18.354344 ], [ -64.793427, 18.354459 ], [ -64.793341, 18.35447 ], [ -64.793254, 18.354514 ], [ -64.793162, 18.354542 ], [ -64.793093, 18.354536 ], [ -64.793035, 18.35452 ], [ -64.792862, 18.35441 ], [ -64.792805, 18.354397 ], [ -64.79276, 18.354367 ], [ -64.792724, 18.354343 ], [ -64.792614, 18.354299 ], [ -64.792596, 18.354288 ], [ -64.792547, 18.354259 ] ] ], [ [ [ -64.813407, 18.361569 ], [ -64.813407, 18.361602 ], [ -64.813401, 18.361635 ], [ -64.813384, 18.361667 ], [ -64.813355, 18.361701 ], [ -64.81332, 18.361729 ], [ -64.813257, 18.361761 ], [ -64.813199, 18.361811 ], [ -64.813159, 18.361834 ], [ -64.81313, 18.361845 ], [ -64.813095, 18.361867 ], [ -64.813009, 18.3619 ], [ -64.812899, 18.361971 ], [ -64.812824, 18.362043 ], [ -64.812772, 18.362098 ], [ -64.812715, 18.362153 ], [ -64.812692, 18.362186 ], [ -64.812657, 18.362213 ], [ -64.812644, 18.362227 ], [ -64.812599, 18.36228 ], [ -64.81257, 18.362329 ], [ -64.812536, 18.362351 ], [ -64.812513, 18.362373 ], [ -64.812438, 18.362417 ], [ -64.812328, 18.362472 ], [ -64.812276, 18.362489 ], [ -64.812242, 18.362494 ], [ -64.812207, 18.362489 ], [ -64.812086, 18.362489 ], [ -64.812034, 18.362483 ], [ -64.811913, 18.362461 ], [ -64.811872, 18.362445 ], [ -64.811838, 18.362439 ], [ -64.811803, 18.362439 ], [ -64.811475, 18.362412 ], [ -64.811307, 18.362417 ], [ -64.811123, 18.362445 ], [ -64.811082, 18.362456 ], [ -64.810777, 18.362572 ], [ -64.81065, 18.362632 ], [ -64.810425, 18.36268 ], [ -64.810246, 18.362648 ], [ -64.810194, 18.362621 ], [ -64.810056, 18.362566 ], [ -64.809877, 18.362555 ], [ -64.809704, 18.362616 ], [ -64.809531, 18.362605 ], [ -64.80934, 18.362555 ], [ -64.809162, 18.362561 ], [ -64.809056, 18.362527 ], [ -64.808989, 18.362506 ], [ -64.808815, 18.362495 ], [ -64.8087, 18.362467 ], [ -64.808631, 18.362428 ], [ -64.808458, 18.362417 ], [ -64.808273, 18.362445 ], [ -64.808106, 18.362434 ], [ -64.807927, 18.36244 ], [ -64.807754, 18.362478 ], [ -64.807702, 18.362484 ], [ -64.807558, 18.362561 ], [ -64.807368, 18.362649 ], [ -64.807201, 18.36272 ], [ -64.807028, 18.362775 ], [ -64.806687, 18.362902 ], [ -64.806508, 18.362979 ], [ -64.806405, 18.363007 ], [ -64.80637, 18.363007 ], [ -64.80633, 18.363012 ], [ -64.806145, 18.363111 ], [ -64.806099, 18.363183 ], [ -64.80596, 18.363315 ], [ -64.805897, 18.363365 ], [ -64.805678, 18.363525 ], [ -64.805609, 18.363558 ], [ -64.805437, 18.363622 ], [ -64.805257, 18.363673 ], [ -64.805164, 18.363695 ], [ -64.804905, 18.363739 ], [ -64.804726, 18.363756 ], [ -64.804559, 18.363778 ], [ -64.804369, 18.363706 ], [ -64.80419, 18.363645 ], [ -64.804017, 18.363613 ], [ -64.803838, 18.363596 ], [ -64.803653, 18.363602 ], [ -64.80348, 18.363646 ], [ -64.803336, 18.363712 ], [ -64.803117, 18.363888 ], [ -64.80299, 18.364059 ], [ -64.802955, 18.364125 ], [ -64.802961, 18.364174 ], [ -64.802956, 18.364239 ], [ -64.802771, 18.364345 ], [ -64.802748, 18.364395 ], [ -64.802678, 18.364582 ], [ -64.802603, 18.364687 ], [ -64.802425, 18.364923 ], [ -64.802269, 18.365083 ], [ -64.802079, 18.365199 ], [ -64.801895, 18.365385 ], [ -64.801825, 18.365436 ], [ -64.801721, 18.365474 ], [ -64.801542, 18.365447 ], [ -64.801369, 18.365331 ], [ -64.801185, 18.36537 ], [ -64.801075, 18.365436 ], [ -64.801, 18.365469 ], [ -64.800821, 18.365513 ], [ -64.800654, 18.365502 ], [ -64.800516, 18.365436 ], [ -64.800469, 18.365397 ], [ -64.800337, 18.365318 ], [ -64.800285, 18.365287 ], [ -64.800118, 18.365281 ], [ -64.799933, 18.365287 ], [ -64.799846, 18.365265 ], [ -64.799771, 18.365232 ], [ -64.799581, 18.365122 ], [ -64.799529, 18.365111 ], [ -64.799414, 18.365061 ], [ -64.799304, 18.365028 ], [ -64.799223, 18.36499 ], [ -64.799154, 18.364934 ], [ -64.799097, 18.364879 ], [ -64.799045, 18.364852 ], [ -64.798964, 18.364835 ], [ -64.798872, 18.364786 ], [ -64.798837, 18.364753 ], [ -64.798808, 18.36467 ], [ -64.798802, 18.36461 ], [ -64.798722, 18.364532 ], [ -64.798618, 18.364466 ], [ -64.798526, 18.364312 ], [ -64.798462, 18.364097 ], [ -64.798456, 18.36402 ], [ -64.798416, 18.363949 ], [ -64.798347, 18.36391 ], [ -64.798168, 18.363794 ], [ -64.798041, 18.363756 ], [ -64.797949, 18.363723 ], [ -64.797863, 18.363673 ], [ -64.797816, 18.36364 ], [ -64.797782, 18.363591 ], [ -64.797776, 18.363558 ], [ -64.797799, 18.363516 ], [ -64.797805, 18.363508 ], [ -64.797834, 18.363447 ], [ -64.797887, 18.363405 ], [ -64.797926, 18.363376 ], [ -64.798024, 18.363343 ], [ -64.798105, 18.36331 ], [ -64.798203, 18.363293 ], [ -64.798329, 18.363282 ], [ -64.798428, 18.3632 ], [ -64.798647, 18.363033 ], [ -64.798768, 18.362952 ], [ -64.7989, 18.362902 ], [ -64.798981, 18.362792 ], [ -64.799019, 18.362724 ], [ -64.799022, 18.36272 ], [ -64.799091, 18.362627 ], [ -64.799155, 18.36255 ], [ -64.799235, 18.362478 ], [ -64.799327, 18.362407 ], [ -64.799425, 18.362368 ], [ -64.799564, 18.362263 ], [ -64.799899, 18.362041 ], [ -64.800071, 18.361938 ], [ -64.800164, 18.361872 ], [ -64.800256, 18.361795 ], [ -64.800331, 18.361696 ], [ -64.800418, 18.361619 ], [ -64.800602, 18.36152 ], [ -64.800792, 18.361432 ], [ -64.800873, 18.36136 ], [ -64.800965, 18.36125 ], [ -64.801069, 18.361184 ], [ -64.801139, 18.361096 ], [ -64.801323, 18.360782 ], [ -64.801375, 18.360677 ], [ -64.801467, 18.360507 ], [ -64.801635, 18.360328 ], [ -64.801669, 18.360314 ], [ -64.801842, 18.360275 ], [ -64.801964, 18.360293 ], [ -64.802096, 18.360314 ], [ -64.8022, 18.360341 ], [ -64.802373, 18.360413 ], [ -64.80273, 18.360644 ], [ -64.802909, 18.360754 ], [ -64.803019, 18.360815 ], [ -64.803094, 18.360848 ], [ -64.803143, 18.360862 ], [ -64.803267, 18.360898 ], [ -64.803446, 18.360969 ], [ -64.80348, 18.360986 ], [ -64.803619, 18.361008 ], [ -64.803706, 18.361012 ], [ -64.803804, 18.361017 ], [ -64.804161, 18.361046 ], [ -64.80434, 18.361068 ], [ -64.804524, 18.361068 ], [ -64.804692, 18.361096 ], [ -64.80487, 18.361101 ], [ -64.805049, 18.361101 ], [ -64.805228, 18.361107 ], [ -64.805465, 18.361099 ], [ -64.805585, 18.361096 ], [ -64.805764, 18.361096 ], [ -64.805937, 18.361079 ], [ -64.806052, 18.361059 ], [ -64.80648, 18.360986 ], [ -64.806583, 18.360964 ], [ -64.806658, 18.360942 ], [ -64.806831, 18.360909 ], [ -64.806884, 18.360891 ], [ -64.807022, 18.360848 ], [ -64.807149, 18.360787 ], [ -64.807183, 18.360776 ], [ -64.807454, 18.360611 ], [ -64.807696, 18.360446 ], [ -64.80787, 18.360281 ], [ -64.807905, 18.360231 ], [ -64.808071, 18.360088 ], [ -64.808193, 18.359928 ], [ -64.808256, 18.359818 ], [ -64.808429, 18.359543 ], [ -64.808567, 18.359416 ], [ -64.808596, 18.359394 ], [ -64.808717, 18.359251 ], [ -64.808735, 18.359221 ], [ -64.808769, 18.359168 ], [ -64.808862, 18.35908 ], [ -64.80896, 18.358909 ], [ -64.809081, 18.358728 ], [ -64.809254, 18.358568 ], [ -64.809261, 18.358563 ], [ -64.809306, 18.358529 ], [ -64.809479, 18.358491 ], [ -64.809652, 18.358469 ], [ -64.809842, 18.358496 ], [ -64.809865, 18.35854 ], [ -64.809978, 18.358847 ], [ -64.810032, 18.358992 ], [ -64.810165, 18.359223 ], [ -64.810379, 18.359493 ], [ -64.810563, 18.359686 ], [ -64.810736, 18.359796 ], [ -64.810921, 18.359889 ], [ -64.811099, 18.359989 ], [ -64.811157, 18.360066 ], [ -64.811463, 18.360231 ], [ -64.811636, 18.360341 ], [ -64.811861, 18.360479 ], [ -64.811936, 18.360528 ], [ -64.812005, 18.360578 ], [ -64.812103, 18.36066 ], [ -64.812144, 18.360713 ], [ -64.812155, 18.360727 ], [ -64.812167, 18.36076 ], [ -64.812207, 18.360831 ], [ -64.812236, 18.360859 ], [ -64.81234, 18.36093 ], [ -64.81238, 18.360941 ], [ -64.812536, 18.361024 ], [ -64.812657, 18.361074 ], [ -64.812698, 18.361084 ], [ -64.812726, 18.361096 ], [ -64.812847, 18.361134 ], [ -64.812882, 18.361156 ], [ -64.812916, 18.361162 ], [ -64.812958, 18.361194 ], [ -64.81298, 18.361211 ], [ -64.813003, 18.361239 ], [ -64.813032, 18.361266 ], [ -64.813043, 18.361288 ], [ -64.813078, 18.361321 ], [ -64.813188, 18.361409 ], [ -64.813216, 18.361437 ], [ -64.813261, 18.361462 ], [ -64.813286, 18.361476 ], [ -64.813356, 18.361514 ], [ -64.813407, 18.361569 ] ] ], [ [ [ -64.826188, 18.360318 ], [ -64.826202, 18.360269 ], [ -64.826234, 18.360136 ], [ -64.826251, 18.360092 ], [ -64.826269, 18.360059 ], [ -64.826284, 18.360013 ], [ -64.826286, 18.360008 ], [ -64.826303, 18.359971 ], [ -64.826361, 18.359866 ], [ -64.826373, 18.359833 ], [ -64.826396, 18.3598 ], [ -64.826413, 18.359767 ], [ -64.826437, 18.359744 ], [ -64.826505, 18.359705 ], [ -64.826557, 18.359701 ], [ -64.826609, 18.359712 ], [ -64.826719, 18.359712 ], [ -64.826771, 18.359706 ], [ -64.826822, 18.359695 ], [ -64.826949, 18.359651 ], [ -64.827036, 18.359629 ], [ -64.827076, 18.359613 ], [ -64.827134, 18.359602 ], [ -64.82722, 18.359569 ], [ -64.827313, 18.359558 ], [ -64.827347, 18.359547 ], [ -64.827405, 18.359536 ], [ -64.827463, 18.359519 ], [ -64.827538, 18.359508 ], [ -64.827716, 18.359453 ], [ -64.827757, 18.359436 ], [ -64.827832, 18.359398 ], [ -64.827953, 18.35936 ], [ -64.828006, 18.359336 ], [ -64.828132, 18.359304 ], [ -64.828184, 18.359282 ], [ -64.828271, 18.359259 ], [ -64.828322, 18.359238 ], [ -64.828362, 18.359216 ], [ -64.828392, 18.359192 ], [ -64.828426, 18.359188 ], [ -64.828461, 18.359165 ], [ -64.828518, 18.359144 ], [ -64.828599, 18.359089 ], [ -64.828628, 18.359061 ], [ -64.828668, 18.359034 ], [ -64.828744, 18.358995 ], [ -64.828789, 18.35894 ], [ -64.828818, 18.358919 ], [ -64.82885, 18.358919 ], [ -64.828945, 18.358908 ], [ -64.828986, 18.358894 ], [ -64.829031, 18.35888 ], [ -64.829063, 18.35888 ], [ -64.829176, 18.358858 ], [ -64.82921, 18.358847 ], [ -64.829245, 18.358847 ], [ -64.829298, 18.358856 ], [ -64.829384, 18.358896 ], [ -64.829435, 18.358913 ], [ -64.829487, 18.358919 ], [ -64.829539, 18.358907 ], [ -64.829615, 18.358878 ], [ -64.829666, 18.358847 ], [ -64.829741, 18.358792 ], [ -64.829776, 18.358776 ], [ -64.829833, 18.35872 ], [ -64.829874, 18.35867 ], [ -64.829902, 18.358621 ], [ -64.829937, 18.358588 ], [ -64.830024, 18.35855 ], [ -64.830093, 18.358526 ], [ -64.830144, 18.358522 ], [ -64.830202, 18.358527 ], [ -64.830254, 18.358527 ], [ -64.830306, 18.358538 ], [ -64.830341, 18.358556 ], [ -64.830502, 18.358576 ], [ -64.830537, 18.358571 ], [ -64.830571, 18.358576 ], [ -64.830676, 18.358554 ], [ -64.830727, 18.358549 ], [ -64.830785, 18.358549 ], [ -64.830837, 18.358555 ], [ -64.830872, 18.358571 ], [ -64.8309, 18.358593 ], [ -64.830987, 18.358632 ], [ -64.831038, 18.358665 ], [ -64.831074, 18.358674 ], [ -64.831125, 18.358703 ], [ -64.831177, 18.358714 ], [ -64.83123, 18.358719 ], [ -64.83131, 18.358719 ], [ -64.831414, 18.358688 ], [ -64.831506, 18.358632 ], [ -64.831538, 18.358617 ], [ -64.831575, 18.358588 ], [ -64.831632, 18.358555 ], [ -64.831684, 18.358538 ], [ -64.831726, 18.358534 ], [ -64.831782, 18.358522 ], [ -64.831869, 18.358522 ], [ -64.831956, 18.358489 ], [ -64.832031, 18.358445 ], [ -64.83218, 18.358312 ], [ -64.832232, 18.358274 ], [ -64.832261, 18.358246 ], [ -64.832296, 18.358235 ], [ -64.832325, 18.358208 ], [ -64.832347, 18.358176 ], [ -64.832382, 18.358142 ], [ -64.832451, 18.358042 ], [ -64.832481, 18.358016 ], [ -64.83255, 18.357993 ], [ -64.832625, 18.357992 ], [ -64.832729, 18.358016 ], [ -64.832781, 18.35802 ], [ -64.832832, 18.358042 ], [ -64.832884, 18.358037 ], [ -64.832942, 18.35802 ], [ -64.833034, 18.357977 ], [ -64.833127, 18.357933 ], [ -64.833173, 18.357905 ], [ -64.833207, 18.357878 ], [ -64.833242, 18.357861 ], [ -64.833271, 18.357832 ], [ -64.833345, 18.357772 ], [ -64.833409, 18.357706 ], [ -64.833438, 18.357668 ], [ -64.833461, 18.357624 ], [ -64.833479, 18.357575 ], [ -64.833501, 18.35753 ], [ -64.833525, 18.357498 ], [ -64.833564, 18.357414 ], [ -64.833618, 18.357343 ], [ -64.833651, 18.357238 ], [ -64.833668, 18.357205 ], [ -64.833692, 18.357173 ], [ -64.83372, 18.357145 ], [ -64.833755, 18.357126 ], [ -64.833859, 18.357106 ], [ -64.833986, 18.357088 ], [ -64.834037, 18.357073 ], [ -64.834216, 18.357012 ], [ -64.834303, 18.357001 ], [ -64.83436, 18.357007 ], [ -64.834412, 18.357007 ], [ -64.834464, 18.357034 ], [ -64.834488, 18.357057 ], [ -64.834487, 18.357106 ], [ -64.834476, 18.357138 ], [ -64.834436, 18.357204 ], [ -64.834395, 18.357255 ], [ -64.83439, 18.357287 ], [ -64.834389, 18.357337 ], [ -64.834401, 18.35737 ], [ -64.834424, 18.357403 ], [ -64.834545, 18.357486 ], [ -64.83458, 18.357495 ], [ -64.834614, 18.357498 ], [ -64.834695, 18.357508 ], [ -64.834736, 18.35752 ], [ -64.834811, 18.357535 ], [ -64.835024, 18.357596 ], [ -64.835081, 18.35759 ], [ -64.83512, 18.357596 ], [ -64.835243, 18.357596 ], [ -64.835279, 18.357607 ], [ -64.835306, 18.357629 ], [ -64.83541, 18.357667 ], [ -64.835456, 18.357689 ], [ -64.835491, 18.357689 ], [ -64.835526, 18.3577 ], [ -64.835583, 18.357711 ], [ -64.835676, 18.357716 ], [ -64.835722, 18.357711 ], [ -64.835751, 18.357718 ], [ -64.835791, 18.357699 ], [ -64.835843, 18.357684 ], [ -64.836005, 18.357612 ], [ -64.836056, 18.357596 ], [ -64.836108, 18.35759 ], [ -64.83616, 18.35759 ], [ -64.83627, 18.357601 ], [ -64.836322, 18.357568 ], [ -64.836408, 18.357497 ], [ -64.836454, 18.357452 ], [ -64.836507, 18.357431 ], [ -64.836581, 18.357414 ], [ -64.836616, 18.35741 ], [ -64.836627, 18.357409 ], [ -64.836662, 18.357397 ], [ -64.836703, 18.357393 ], [ -64.836766, 18.357369 ], [ -64.836823, 18.357353 ], [ -64.836875, 18.357315 ], [ -64.836921, 18.357265 ], [ -64.83694, 18.357239 ], [ -64.836986, 18.357162 ], [ -64.837008, 18.357111 ], [ -64.837014, 18.357062 ], [ -64.837025, 18.357012 ], [ -64.837054, 18.356985 ], [ -64.837106, 18.356973 ], [ -64.837146, 18.356973 ], [ -64.837181, 18.356979 ], [ -64.83729, 18.356962 ], [ -64.837315, 18.356953 ], [ -64.837395, 18.356941 ], [ -64.837446, 18.356918 ], [ -64.837481, 18.356913 ], [ -64.837532, 18.356946 ], [ -64.837556, 18.356973 ], [ -64.837614, 18.357018 ], [ -64.837671, 18.357033 ], [ -64.837711, 18.357031 ], [ -64.837798, 18.357018 ], [ -64.83785, 18.357 ], [ -64.837907, 18.357006 ], [ -64.837942, 18.357001 ], [ -64.837973, 18.357006 ], [ -64.838047, 18.356957 ], [ -64.838104, 18.356884 ], [ -64.838109, 18.356852 ], [ -64.838122, 18.356819 ], [ -64.838155, 18.356769 ], [ -64.838225, 18.356731 ], [ -64.838266, 18.35672 ], [ -64.83834, 18.356692 ], [ -64.838503, 18.356643 ], [ -64.838542, 18.356643 ], [ -64.838581, 18.356632 ], [ -64.838628, 18.356659 ], [ -64.83868, 18.356676 ], [ -64.838716, 18.356675 ], [ -64.838767, 18.356664 ], [ -64.838819, 18.356609 ], [ -64.838906, 18.356565 ], [ -64.838963, 18.356554 ], [ -64.838997, 18.356554 ], [ -64.839032, 18.356571 ], [ -64.839079, 18.356581 ], [ -64.839119, 18.356609 ], [ -64.839169, 18.356637 ], [ -64.839188, 18.356648 ], [ -64.839222, 18.356675 ], [ -64.839408, 18.356763 ], [ -64.839459, 18.356775 ], [ -64.839598, 18.356798 ], [ -64.839632, 18.356797 ], [ -64.839661, 18.356813 ], [ -64.839771, 18.356823 ], [ -64.839822, 18.35684 ], [ -64.83988, 18.356867 ], [ -64.839892, 18.356901 ], [ -64.839886, 18.356934 ], [ -64.839887, 18.356978 ], [ -64.839834, 18.357062 ], [ -64.839776, 18.357116 ], [ -64.839753, 18.357154 ], [ -64.839726, 18.357187 ], [ -64.839707, 18.357226 ], [ -64.839679, 18.357319 ], [ -64.839673, 18.357328 ], [ -64.839632, 18.357397 ], [ -64.839597, 18.357435 ], [ -64.839569, 18.357473 ], [ -64.839512, 18.357519 ], [ -64.839454, 18.35756 ], [ -64.83943, 18.357577 ], [ -64.83935, 18.357629 ], [ -64.839276, 18.357661 ], [ -64.839234, 18.357667 ], [ -64.839194, 18.357682 ], [ -64.839148, 18.35769 ], [ -64.839072, 18.357689 ], [ -64.839038, 18.357683 ], [ -64.838998, 18.357693 ], [ -64.83894, 18.3577 ], [ -64.838889, 18.357694 ], [ -64.838837, 18.357695 ], [ -64.838779, 18.357689 ], [ -64.838727, 18.357689 ], [ -64.838634, 18.357727 ], [ -64.8386, 18.35776 ], [ -64.838462, 18.357839 ], [ -64.838421, 18.357854 ], [ -64.838277, 18.357882 ], [ -64.83819, 18.357893 ], [ -64.838151, 18.357905 ], [ -64.838087, 18.35791 ], [ -64.838046, 18.357926 ], [ -64.838006, 18.357927 ], [ -64.837954, 18.357942 ], [ -64.837913, 18.357937 ], [ -64.837775, 18.357938 ], [ -64.837672, 18.357932 ], [ -64.837591, 18.357937 ], [ -64.837516, 18.357927 ], [ -64.837475, 18.357926 ], [ -64.837441, 18.357914 ], [ -64.837406, 18.357909 ], [ -64.837372, 18.357892 ], [ -64.837331, 18.357887 ], [ -64.837302, 18.357876 ], [ -64.837251, 18.357866 ], [ -64.837106, 18.357783 ], [ -64.837072, 18.357777 ], [ -64.837037, 18.357788 ], [ -64.837014, 18.357816 ], [ -64.837008, 18.357866 ], [ -64.837019, 18.357915 ], [ -64.837054, 18.357975 ], [ -64.8371, 18.358042 ], [ -64.837113, 18.358091 ], [ -64.837077, 18.358124 ], [ -64.836991, 18.358152 ], [ -64.83695, 18.358157 ], [ -64.836911, 18.358174 ], [ -64.836842, 18.358191 ], [ -64.836772, 18.3582 ], [ -64.836734, 18.358212 ], [ -64.836605, 18.358256 ], [ -64.83657, 18.358284 ], [ -64.836454, 18.358356 ], [ -64.836432, 18.358378 ], [ -64.836397, 18.358389 ], [ -64.836253, 18.358483 ], [ -64.836218, 18.358493 ], [ -64.836195, 18.35851 ], [ -64.836154, 18.358532 ], [ -64.836098, 18.358571 ], [ -64.836062, 18.358637 ], [ -64.836051, 18.358725 ], [ -64.836033, 18.358813 ], [ -64.83601, 18.358857 ], [ -64.835982, 18.358895 ], [ -64.835976, 18.358928 ], [ -64.835993, 18.358962 ], [ -64.836045, 18.358978 ], [ -64.83608, 18.358977 ], [ -64.836131, 18.358989 ], [ -64.83616, 18.359 ], [ -64.836149, 18.359033 ], [ -64.836121, 18.359067 ], [ -64.836079, 18.359077 ], [ -64.836045, 18.359094 ], [ -64.835987, 18.359105 ], [ -64.83593, 18.359132 ], [ -64.835901, 18.359165 ], [ -64.835889, 18.359215 ], [ -64.835855, 18.359259 ], [ -64.835798, 18.359253 ], [ -64.835745, 18.359238 ], [ -64.835693, 18.359265 ], [ -64.83567, 18.359281 ], [ -64.835642, 18.359325 ], [ -64.835595, 18.359358 ], [ -64.835503, 18.359331 ], [ -64.835463, 18.359331 ], [ -64.835399, 18.359347 ], [ -64.835365, 18.35933 ], [ -64.835324, 18.35932 ], [ -64.835291, 18.359297 ], [ -64.835255, 18.359281 ], [ -64.835197, 18.359237 ], [ -64.835163, 18.359221 ], [ -64.835128, 18.359232 ], [ -64.835087, 18.359226 ], [ -64.835036, 18.359226 ], [ -64.834904, 18.359253 ], [ -64.834851, 18.359281 ], [ -64.834816, 18.359292 ], [ -64.834782, 18.359292 ], [ -64.834754, 18.359266 ], [ -64.834737, 18.359225 ], [ -64.834718, 18.359193 ], [ -64.834684, 18.359183 ], [ -64.834655, 18.35916 ], [ -64.834615, 18.359177 ], [ -64.83458, 18.359215 ], [ -64.834528, 18.359287 ], [ -64.834511, 18.359325 ], [ -64.8345, 18.359374 ], [ -64.834482, 18.359408 ], [ -64.834476, 18.359446 ], [ -64.834482, 18.359493 ], [ -64.834482, 18.359524 ], [ -64.834459, 18.359557 ], [ -64.834378, 18.359601 ], [ -64.834356, 18.359633 ], [ -64.834355, 18.359683 ], [ -64.834338, 18.359733 ], [ -64.834298, 18.359771 ], [ -64.834246, 18.359795 ], [ -64.834194, 18.359811 ], [ -64.834142, 18.359805 ], [ -64.833986, 18.359754 ], [ -64.833912, 18.359716 ], [ -64.833796, 18.359722 ], [ -64.833698, 18.359712 ], [ -64.833646, 18.3597 ], [ -64.833537, 18.359716 ], [ -64.83349, 18.359739 ], [ -64.83345, 18.35975 ], [ -64.833416, 18.359782 ], [ -64.83338, 18.359799 ], [ -64.83331, 18.359869 ], [ -64.833243, 18.359931 ], [ -64.83319, 18.359904 ], [ -64.833162, 18.359877 ], [ -64.833127, 18.35981 ], [ -64.833087, 18.359788 ], [ -64.833034, 18.359816 ], [ -64.832971, 18.35986 ], [ -64.832942, 18.359888 ], [ -64.832897, 18.359943 ], [ -64.83285, 18.359986 ], [ -64.83281, 18.359998 ], [ -64.832775, 18.360025 ], [ -64.832723, 18.360036 ], [ -64.832671, 18.36003 ], [ -64.832631, 18.360009 ], [ -64.832609, 18.359975 ], [ -64.832561, 18.359942 ], [ -64.832533, 18.359915 ], [ -64.832481, 18.359898 ], [ -64.832446, 18.359893 ], [ -64.832325, 18.359854 ], [ -64.832291, 18.359831 ], [ -64.832239, 18.359782 ], [ -64.832158, 18.359699 ], [ -64.832129, 18.359651 ], [ -64.832106, 18.359623 ], [ -64.832071, 18.359596 ], [ -64.832037, 18.35959 ], [ -64.832002, 18.359574 ], [ -64.831968, 18.359568 ], [ -64.831893, 18.35958 ], [ -64.83184, 18.359596 ], [ -64.831748, 18.359656 ], [ -64.831726, 18.359695 ], [ -64.831703, 18.359778 ], [ -64.831667, 18.359799 ], [ -64.831633, 18.359811 ], [ -64.831546, 18.35981 ], [ -64.831494, 18.359799 ], [ -64.831442, 18.359794 ], [ -64.831392, 18.359804 ], [ -64.831286, 18.359846 ], [ -64.831217, 18.359871 ], [ -64.831183, 18.359888 ], [ -64.831132, 18.359904 ], [ -64.831073, 18.359904 ], [ -64.831004, 18.359888 ], [ -64.830941, 18.359887 ], [ -64.83086, 18.35987 ], [ -64.830785, 18.359866 ], [ -64.830733, 18.359855 ], [ -64.830682, 18.359849 ], [ -64.830641, 18.359849 ], [ -64.830549, 18.359844 ], [ -64.830411, 18.359843 ], [ -64.830318, 18.359848 ], [ -64.830202, 18.35987 ], [ -64.830127, 18.359882 ], [ -64.830041, 18.359911 ], [ -64.830006, 18.359932 ], [ -64.829966, 18.359936 ], [ -64.829862, 18.35997 ], [ -64.829781, 18.360014 ], [ -64.829753, 18.360035 ], [ -64.829712, 18.360054 ], [ -64.829459, 18.360162 ], [ -64.829424, 18.360169 ], [ -64.82939, 18.360168 ], [ -64.829251, 18.360191 ], [ -64.829211, 18.360202 ], [ -64.82917, 18.360202 ], [ -64.82913, 18.360212 ], [ -64.828976, 18.360231 ], [ -64.828951, 18.360235 ], [ -64.828888, 18.360249 ], [ -64.828859, 18.360262 ], [ -64.828818, 18.360262 ], [ -64.828756, 18.360274 ], [ -64.828623, 18.360273 ], [ -64.82857, 18.360258 ], [ -64.828518, 18.360254 ], [ -64.828443, 18.360251 ], [ -64.82841, 18.360269 ], [ -64.828374, 18.360273 ], [ -64.828339, 18.360285 ], [ -64.828283, 18.360313 ], [ -64.82823, 18.360318 ], [ -64.828126, 18.360373 ], [ -64.828091, 18.3604 ], [ -64.827982, 18.360521 ], [ -64.827948, 18.360537 ], [ -64.827878, 18.36056 ], [ -64.827827, 18.360566 ], [ -64.82774, 18.360566 ], [ -64.8277, 18.360571 ], [ -64.827647, 18.360571 ], [ -64.827596, 18.360565 ], [ -64.827527, 18.360571 ], [ -64.827458, 18.36057 ], [ -64.827422, 18.360577 ], [ -64.827382, 18.360571 ], [ -64.827324, 18.360571 ], [ -64.827238, 18.360566 ], [ -64.82714, 18.360571 ], [ -64.827105, 18.36056 ], [ -64.827065, 18.36056 ], [ -64.826955, 18.360548 ], [ -64.826909, 18.360549 ], [ -64.826851, 18.360544 ], [ -64.826742, 18.360522 ], [ -64.826703, 18.360522 ], [ -64.826655, 18.360511 ], [ -64.826616, 18.36051 ], [ -64.826563, 18.360494 ], [ -64.826528, 18.360478 ], [ -64.826472, 18.360464 ], [ -64.826356, 18.360427 ], [ -64.82627, 18.360405 ], [ -64.826234, 18.360389 ], [ -64.826211, 18.360367 ], [ -64.826188, 18.360318 ] ] ], [ [ [ -64.825369, 18.360257 ], [ -64.825277, 18.36034 ], [ -64.825271, 18.360377 ], [ -64.825271, 18.360434 ], [ -64.825249, 18.36046 ], [ -64.825162, 18.36047 ], [ -64.825127, 18.360478 ], [ -64.825093, 18.360498 ], [ -64.825059, 18.360529 ], [ -64.824994, 18.36058 ], [ -64.824959, 18.360588 ], [ -64.824931, 18.360608 ], [ -64.824862, 18.360631 ], [ -64.824786, 18.360648 ], [ -64.824544, 18.360682 ], [ -64.824487, 18.360703 ], [ -64.824417, 18.360709 ], [ -64.824366, 18.360701 ], [ -64.824331, 18.360715 ], [ -64.824297, 18.360718 ], [ -64.82425, 18.360731 ], [ -64.824216, 18.360753 ], [ -64.824194, 18.360782 ], [ -64.824141, 18.360841 ], [ -64.824107, 18.360851 ], [ -64.824071, 18.360851 ], [ -64.823962, 18.360857 ], [ -64.823893, 18.360869 ], [ -64.823858, 18.360885 ], [ -64.823767, 18.360967 ], [ -64.823725, 18.361012 ], [ -64.82365, 18.361045 ], [ -64.823584, 18.361069 ], [ -64.823564, 18.361077 ], [ -64.823495, 18.361087 ], [ -64.823426, 18.361076 ], [ -64.823391, 18.361078 ], [ -64.823357, 18.361066 ], [ -64.823235, 18.361087 ], [ -64.823166, 18.361111 ], [ -64.823114, 18.361093 ], [ -64.823045, 18.361084 ], [ -64.822826, 18.36099 ], [ -64.822785, 18.360979 ], [ -64.822699, 18.360939 ], [ -64.82263, 18.360924 ], [ -64.822555, 18.36089 ], [ -64.822514, 18.36088 ], [ -64.82248, 18.360862 ], [ -64.822352, 18.36083 ], [ -64.822318, 18.360836 ], [ -64.822284, 18.36094 ], [ -64.822266, 18.360974 ], [ -64.822255, 18.361007 ], [ -64.82222, 18.361034 ], [ -64.822168, 18.361034 ], [ -64.822105, 18.360979 ], [ -64.822077, 18.360961 ], [ -64.821978, 18.36088 ], [ -64.821874, 18.360829 ], [ -64.821845, 18.360803 ], [ -64.82181, 18.360786 ], [ -64.821776, 18.360753 ], [ -64.821683, 18.360709 ], [ -64.821666, 18.360676 ], [ -64.82154, 18.360586 ], [ -64.821476, 18.360548 ], [ -64.821435, 18.360544 ], [ -64.821402, 18.360527 ], [ -64.821274, 18.3605 ], [ -64.82124, 18.360499 ], [ -64.821164, 18.360489 ], [ -64.821072, 18.360489 ], [ -64.820969, 18.360461 ], [ -64.820899, 18.360456 ], [ -64.820848, 18.360439 ], [ -64.820778, 18.36044 ], [ -64.820727, 18.360427 ], [ -64.820652, 18.360432 ], [ -64.820524, 18.360451 ], [ -64.820491, 18.360461 ], [ -64.820449, 18.360467 ], [ -64.820415, 18.360482 ], [ -64.820329, 18.360505 ], [ -64.820288, 18.360509 ], [ -64.820201, 18.360511 ], [ -64.820156, 18.360516 ], [ -64.820004, 18.360522 ], [ -64.81997, 18.360528 ], [ -64.819936, 18.36052 ], [ -64.819901, 18.360521 ], [ -64.819798, 18.360515 ], [ -64.819763, 18.360522 ], [ -64.819728, 18.360522 ], [ -64.819694, 18.360517 ], [ -64.81966, 18.3605 ], [ -64.819555, 18.360462 ], [ -64.819486, 18.360462 ], [ -64.819452, 18.360444 ], [ -64.819377, 18.360428 ], [ -64.819301, 18.360423 ], [ -64.81925, 18.360412 ], [ -64.819129, 18.360411 ], [ -64.819094, 18.360418 ], [ -64.81906, 18.360416 ], [ -64.818991, 18.360424 ], [ -64.818955, 18.360434 ], [ -64.818846, 18.360411 ], [ -64.81872, 18.360412 ], [ -64.818639, 18.360422 ], [ -64.818569, 18.360411 ], [ -64.818453, 18.360423 ], [ -64.818419, 18.360422 ], [ -64.818384, 18.360429 ], [ -64.818344, 18.360423 ], [ -64.818298, 18.360423 ], [ -64.818223, 18.360431 ], [ -64.81809, 18.360434 ], [ -64.818021, 18.360451 ], [ -64.817986, 18.360445 ], [ -64.817935, 18.360449 ], [ -64.8179, 18.360456 ], [ -64.817813, 18.360467 ], [ -64.817779, 18.360478 ], [ -64.817744, 18.360484 ], [ -64.81771, 18.360499 ], [ -64.817681, 18.360522 ], [ -64.817594, 18.360533 ], [ -64.817566, 18.360511 ], [ -64.817513, 18.3605 ], [ -64.817438, 18.360544 ], [ -64.817404, 18.360553 ], [ -64.817369, 18.360577 ], [ -64.817294, 18.360611 ], [ -64.81726, 18.360605 ], [ -64.817225, 18.360616 ], [ -64.817191, 18.360614 ], [ -64.817161, 18.3606 ], [ -64.817133, 18.360572 ], [ -64.817081, 18.360506 ], [ -64.817046, 18.360489 ], [ -64.817017, 18.360456 ], [ -64.816981, 18.360435 ], [ -64.816971, 18.360429 ], [ -64.816937, 18.360427 ], [ -64.816821, 18.360396 ], [ -64.816787, 18.360372 ], [ -64.816764, 18.360346 ], [ -64.816735, 18.360323 ], [ -64.816666, 18.360278 ], [ -64.816597, 18.360268 ], [ -64.816412, 18.360269 ], [ -64.816372, 18.360256 ], [ -64.816319, 18.360253 ], [ -64.816283, 18.360241 ], [ -64.81625, 18.360236 ], [ -64.816217, 18.36024 ], [ -64.816124, 18.360317 ], [ -64.816089, 18.36033 ], [ -64.816049, 18.360334 ], [ -64.815962, 18.360319 ], [ -64.815887, 18.360341 ], [ -64.815812, 18.360385 ], [ -64.815783, 18.360412 ], [ -64.815743, 18.360429 ], [ -64.815656, 18.360457 ], [ -64.815621, 18.360473 ], [ -64.81557, 18.360483 ], [ -64.815535, 18.360495 ], [ -64.8155, 18.36049 ], [ -64.815454, 18.360468 ], [ -64.815437, 18.360434 ], [ -64.815425, 18.360396 ], [ -64.815402, 18.360269 ], [ -64.815403, 18.360236 ], [ -64.815357, 18.360049 ], [ -64.815322, 18.359982 ], [ -64.815293, 18.359943 ], [ -64.81527, 18.359922 ], [ -64.815235, 18.359867 ], [ -64.815212, 18.35984 ], [ -64.815193, 18.359811 ], [ -64.815177, 18.359785 ], [ -64.815149, 18.359751 ], [ -64.815131, 18.359719 ], [ -64.815079, 18.359658 ], [ -64.815057, 18.359507 ], [ -64.815062, 18.359405 ], [ -64.81505, 18.359311 ], [ -64.815062, 18.359228 ], [ -64.815086, 18.359162 ], [ -64.815108, 18.359129 ], [ -64.815119, 18.359099 ], [ -64.815154, 18.359063 ], [ -64.815194, 18.358997 ], [ -64.815241, 18.358915 ], [ -64.815288, 18.358848 ], [ -64.815344, 18.358782 ], [ -64.815414, 18.358716 ], [ -64.815442, 18.358683 ], [ -64.815478, 18.358661 ], [ -64.815587, 18.358562 ], [ -64.815656, 18.358507 ], [ -64.815725, 18.358446 ], [ -64.815795, 18.358399 ], [ -64.815864, 18.358342 ], [ -64.815898, 18.35832 ], [ -64.816216, 18.358164 ], [ -64.81625, 18.358156 ], [ -64.816325, 18.358132 ], [ -64.816357, 18.358113 ], [ -64.816365, 18.35811 ], [ -64.816412, 18.358103 ], [ -64.816452, 18.358088 ], [ -64.816489, 18.358088 ], [ -64.816533, 18.358083 ], [ -64.816572, 18.358093 ], [ -64.816643, 18.358087 ], [ -64.81673, 18.358121 ], [ -64.816758, 18.358149 ], [ -64.816803, 18.35821 ], [ -64.816827, 18.358242 ], [ -64.816861, 18.358264 ], [ -64.816931, 18.358292 ], [ -64.816966, 18.358297 ], [ -64.817, 18.358314 ], [ -64.817035, 18.358323 ], [ -64.817069, 18.358342 ], [ -64.817231, 18.358389 ], [ -64.817341, 18.358433 ], [ -64.817502, 18.358495 ], [ -64.817553, 18.358501 ], [ -64.817623, 18.358523 ], [ -64.817675, 18.358529 ], [ -64.817745, 18.358529 ], [ -64.81779, 18.35854 ], [ -64.817812, 18.358566 ], [ -64.817853, 18.358595 ], [ -64.817888, 18.3586 ], [ -64.817975, 18.358584 ], [ -64.818008, 18.358584 ], [ -64.818079, 18.358562 ], [ -64.818136, 18.358567 ], [ -64.8182, 18.358561 ], [ -64.818251, 18.35854 ], [ -64.818332, 18.358516 ], [ -64.818384, 18.358523 ], [ -64.818413, 18.358534 ], [ -64.818443, 18.358538 ], [ -64.818482, 18.358556 ], [ -64.81854, 18.358567 ], [ -64.818574, 18.358584 ], [ -64.818609, 18.358588 ], [ -64.818678, 18.358617 ], [ -64.818713, 18.358622 ], [ -64.818748, 18.358639 ], [ -64.818869, 18.358677 ], [ -64.8189, 18.358682 ], [ -64.818944, 18.358705 ], [ -64.819025, 18.358727 ], [ -64.819134, 18.358765 ], [ -64.819267, 18.358799 ], [ -64.819376, 18.358809 ], [ -64.819411, 18.358821 ], [ -64.819446, 18.35882 ], [ -64.81948, 18.358832 ], [ -64.819521, 18.35883 ], [ -64.81959, 18.358841 ], [ -64.819671, 18.358863 ], [ -64.819716, 18.358887 ], [ -64.819792, 18.358898 ], [ -64.819862, 18.358924 ], [ -64.819895, 18.358931 ], [ -64.81997, 18.358964 ], [ -64.820005, 18.358968 ], [ -64.820045, 18.358991 ], [ -64.820218, 18.359057 ], [ -64.820287, 18.359101 ], [ -64.820328, 18.359101 ], [ -64.820403, 18.359112 ], [ -64.820437, 18.359123 ], [ -64.820559, 18.35914 ], [ -64.820593, 18.35914 ], [ -64.820668, 18.359129 ], [ -64.820737, 18.359107 ], [ -64.820778, 18.359107 ], [ -64.820842, 18.359084 ], [ -64.820876, 18.359079 ], [ -64.821008, 18.359041 ], [ -64.821078, 18.35903 ], [ -64.821118, 18.359013 ], [ -64.821158, 18.359002 ], [ -64.821193, 18.358997 ], [ -64.821263, 18.358978 ], [ -64.821354, 18.358975 ], [ -64.821389, 18.358964 ], [ -64.821424, 18.358964 ], [ -64.821545, 18.358942 ], [ -64.821631, 18.358942 ], [ -64.821747, 18.358919 ], [ -64.82196, 18.358886 ], [ -64.822035, 18.358886 ], [ -64.822104, 18.358875 ], [ -64.822139, 18.358881 ], [ -64.822243, 18.358881 ], [ -64.822277, 18.358875 ], [ -64.822318, 18.358881 ], [ -64.822352, 18.35887 ], [ -64.822399, 18.35887 ], [ -64.822485, 18.358875 ], [ -64.822554, 18.358875 ], [ -64.822641, 18.358886 ], [ -64.822675, 18.358886 ], [ -64.822762, 18.358903 ], [ -64.822831, 18.35893 ], [ -64.822867, 18.358941 ], [ -64.822941, 18.358985 ], [ -64.82297, 18.359007 ], [ -64.823004, 18.359018 ], [ -64.823039, 18.359041 ], [ -64.823096, 18.359085 ], [ -64.823137, 18.359107 ], [ -64.823149, 18.359115 ], [ -64.8232, 18.359151 ], [ -64.823304, 18.3592 ], [ -64.823391, 18.359228 ], [ -64.823454, 18.359261 ], [ -64.823535, 18.359288 ], [ -64.823569, 18.359288 ], [ -64.823604, 18.359305 ], [ -64.823679, 18.359327 ], [ -64.823714, 18.359354 ], [ -64.823748, 18.35936 ], [ -64.823823, 18.359382 ], [ -64.824025, 18.359459 ], [ -64.824094, 18.359481 ], [ -64.824256, 18.359553 ], [ -64.824342, 18.359569 ], [ -64.824377, 18.359563 ], [ -64.824446, 18.359575 ], [ -64.824527, 18.359602 ], [ -64.824561, 18.359608 ], [ -64.824596, 18.359619 ], [ -64.824717, 18.35963 ], [ -64.824775, 18.359646 ], [ -64.824884, 18.359668 ], [ -64.824919, 18.359685 ], [ -64.824954, 18.359685 ], [ -64.824988, 18.359696 ], [ -64.82504, 18.359734 ], [ -64.825057, 18.359767 ], [ -64.825075, 18.359817 ], [ -64.825092, 18.35985 ], [ -64.825115, 18.359916 ], [ -64.825132, 18.359949 ], [ -64.825167, 18.360048 ], [ -64.825185, 18.360074 ], [ -64.82519, 18.360081 ], [ -64.825213, 18.360147 ], [ -64.825248, 18.360164 ], [ -64.825306, 18.36018 ], [ -64.82534, 18.360197 ], [ -64.825369, 18.360226 ], [ -64.825369, 18.360257 ] ] ], [ [ [ -64.770274, 18.333644 ], [ -64.770395, 18.333749 ], [ -64.770533, 18.333749 ], [ -64.770666, 18.333732 ], [ -64.77081, 18.333694 ], [ -64.770966, 18.333666 ], [ -64.771202, 18.333677 ], [ -64.771433, 18.333644 ], [ -64.771578, 18.333631 ], [ -64.772101, 18.33351 ], [ -64.772251, 18.333532 ], [ -64.772414, 18.333557 ], [ -64.772558, 18.333577 ], [ -64.77331, 18.33371 ], [ -64.77332, 18.333764 ], [ -64.77335, 18.33391 ], [ -64.773322, 18.334093 ], [ -64.773301, 18.334196 ], [ -64.773312, 18.334278 ], [ -64.773354, 18.334371 ], [ -64.77334, 18.33457 ], [ -64.773337, 18.33458 ], [ -64.773296, 18.334962 ], [ -64.773283, 18.33509 ], [ -64.773259, 18.335119 ], [ -64.773251, 18.335184 ], [ -64.77325, 18.33538 ], [ -64.773233, 18.335514 ], [ -64.77323, 18.33554 ], [ -64.7732, 18.33573 ], [ -64.77307, 18.33614 ], [ -64.77303, 18.33634 ], [ -64.77304, 18.33654 ], [ -64.773063, 18.336636 ], [ -64.77313, 18.33672 ], [ -64.77316, 18.336774 ], [ -64.77325, 18.33693 ], [ -64.77334, 18.33718 ], [ -64.773395, 18.337227 ], [ -64.773393, 18.337233 ], [ -64.77338, 18.33738 ], [ -64.773399, 18.337465 ], [ -64.773419, 18.337542 ], [ -64.773422, 18.337559 ], [ -64.773435, 18.337612 ], [ -64.77344, 18.33763 ], [ -64.773668, 18.337615 ], [ -64.7739, 18.3376 ], [ -64.77409, 18.33763 ], [ -64.77425, 18.33764 ], [ -64.774349, 18.337624 ], [ -64.774575, 18.337589 ], [ -64.774739, 18.337568 ], [ -64.77481, 18.33756 ], [ -64.77503, 18.33751 ], [ -64.77519, 18.33746 ], [ -64.775223, 18.337456 ], [ -64.7753, 18.33745 ], [ -64.775397, 18.337419 ], [ -64.776014, 18.337356 ], [ -64.77612, 18.337343 ], [ -64.776139, 18.336757 ], [ -64.77614, 18.336547 ], [ -64.777287, 18.33646 ], [ -64.777532, 18.336453 ], [ -64.777641, 18.336439 ], [ -64.781529, 18.336065 ], [ -64.78309, 18.33595 ], [ -64.7839, 18.335863 ], [ -64.784003, 18.33597 ], [ -64.784217, 18.336121 ], [ -64.784299, 18.336163 ], [ -64.784436, 18.336201 ], [ -64.784571, 18.336287 ], [ -64.784732, 18.33634 ], [ -64.784842, 18.336396 ], [ -64.785012, 18.336432 ], [ -64.787156, 18.336662 ], [ -64.787571, 18.33543 ], [ -64.787848, 18.334605 ], [ -64.788249, 18.333417 ], [ -64.788313, 18.333123 ], [ -64.788584, 18.333146 ], [ -64.790025, 18.33327 ], [ -64.791806, 18.332941 ], [ -64.791818, 18.332995 ], [ -64.79182, 18.333007 ], [ -64.79183, 18.33305 ], [ -64.791903, 18.333013 ], [ -64.79195, 18.33299 ], [ -64.792069, 18.33296 ], [ -64.79207, 18.33296 ], [ -64.792137, 18.33295 ], [ -64.79222, 18.33294 ], [ -64.793008, 18.332893 ], [ -64.793004, 18.332867 ], [ -64.793442, 18.332781 ], [ -64.79353, 18.33273 ], [ -64.793577, 18.332708 ], [ -64.793592, 18.332674 ], [ -64.793636, 18.332656 ], [ -64.793669, 18.332656 ], [ -64.793699, 18.33263 ], [ -64.793728, 18.332619 ], [ -64.793772, 18.332608 ], [ -64.793809, 18.332597 ], [ -64.793835, 18.332583 ], [ -64.793864, 18.332579 ], [ -64.793908, 18.332568 ], [ -64.793968, 18.332573 ], [ -64.79406, 18.332584 ], [ -64.794132, 18.33272 ], [ -64.79418, 18.332692 ], [ -64.79473, 18.333274 ], [ -64.795211, 18.33327 ], [ -64.79812, 18.333251 ], [ -64.798404, 18.333248 ], [ -64.798774, 18.333244 ], [ -64.79873, 18.333708 ], [ -64.798615, 18.334906 ], [ -64.798628, 18.334925 ], [ -64.798637, 18.33494 ], [ -64.798637, 18.334961 ], [ -64.798635, 18.334986 ], [ -64.79862, 18.335001 ], [ -64.798615, 18.33501 ], [ -64.798615, 18.335042 ], [ -64.798615, 18.335075 ], [ -64.798613, 18.335109 ], [ -64.798602, 18.335144 ], [ -64.798576, 18.335171 ], [ -64.798553, 18.335192 ], [ -64.798523, 18.335207 ], [ -64.798457, 18.335241 ], [ -64.798416, 18.335255 ], [ -64.798369, 18.335295 ], [ -64.798342, 18.335332 ], [ -64.798302, 18.335392 ], [ -64.798264, 18.335491 ], [ -64.798232, 18.33557 ], [ -64.798225, 18.335638 ], [ -64.798249, 18.335699 ], [ -64.798309, 18.335852 ], [ -64.798326, 18.335888 ], [ -64.798362, 18.33596 ], [ -64.798414, 18.336062 ], [ -64.798429, 18.336121 ], [ -64.798439, 18.336147 ], [ -64.798486, 18.336209 ], [ -64.798511, 18.336237 ], [ -64.798599, 18.336332 ], [ -64.79869, 18.336426 ], [ -64.798721, 18.336452 ], [ -64.798749, 18.336464 ], [ -64.798778, 18.336473 ], [ -64.798806, 18.336477 ], [ -64.798848, 18.33649 ], [ -64.798869, 18.336504 ], [ -64.7989, 18.336535 ], [ -64.798942, 18.336603 ], [ -64.798968, 18.336644 ], [ -64.798996, 18.336691 ], [ -64.799002, 18.336727 ], [ -64.799004, 18.33674 ], [ -64.79899, 18.336811 ], [ -64.798973, 18.336864 ], [ -64.798958, 18.336873 ], [ -64.798937, 18.33688 ], [ -64.798882, 18.336891 ], [ -64.79885, 18.336922 ], [ -64.79882, 18.336945 ], [ -64.798805, 18.336952 ], [ -64.798798, 18.336964 ], [ -64.798729, 18.336987 ], [ -64.798706, 18.337004 ], [ -64.798683, 18.337042 ], [ -64.79866, 18.337074 ], [ -64.798637, 18.337082 ], [ -64.798625, 18.337066 ], [ -64.798599, 18.337048 ], [ -64.798548, 18.337055 ], [ -64.798462, 18.337078 ], [ -64.798407, 18.337088 ], [ -64.798365, 18.337108 ], [ -64.798314, 18.337092 ], [ -64.798279, 18.337086 ], [ -64.798233, 18.337112 ], [ -64.798218, 18.337112 ], [ -64.79818, 18.337061 ], [ -64.798111, 18.33707 ], [ -64.798088, 18.33708 ], [ -64.798042, 18.337132 ], [ -64.797973, 18.337168 ], [ -64.797927, 18.337166 ], [ -64.79789, 18.33717 ], [ -64.797806, 18.337118 ], [ -64.79764, 18.337151 ], [ -64.797558, 18.337188 ], [ -64.797516, 18.337217 ], [ -64.797485, 18.337221 ], [ -64.797425, 18.337258 ], [ -64.797277, 18.337345 ], [ -64.797089, 18.337422 ], [ -64.796954, 18.337495 ], [ -64.796876, 18.337607 ], [ -64.796791, 18.337669 ], [ -64.796722, 18.337772 ], [ -64.796629, 18.3378 ], [ -64.796541, 18.337899 ], [ -64.796501, 18.337941 ], [ -64.796486, 18.337954 ], [ -64.796398, 18.337925 ], [ -64.79635, 18.337936 ], [ -64.796331, 18.337987 ], [ -64.796252, 18.337984 ], [ -64.796166, 18.337987 ], [ -64.796112, 18.337996 ], [ -64.795967, 18.338087 ], [ -64.795914, 18.338137 ], [ -64.795876, 18.338211 ], [ -64.795883, 18.338311 ], [ -64.795816, 18.338343 ], [ -64.795784, 18.338446 ], [ -64.795725, 18.338502 ], [ -64.795638, 18.338563 ], [ -64.795578, 18.338606 ], [ -64.795494, 18.338587 ], [ -64.795487, 18.338581 ], [ -64.795469, 18.338536 ], [ -64.795468, 18.338511 ], [ -64.795364, 18.338467 ], [ -64.79525, 18.338497 ], [ -64.795149, 18.338508 ], [ -64.795044, 18.338554 ], [ -64.794952, 18.338546 ], [ -64.794792, 18.338551 ], [ -64.794662, 18.338579 ], [ -64.794601, 18.338551 ], [ -64.794563, 18.338551 ], [ -64.794517, 18.338567 ], [ -64.794479, 18.338581 ], [ -64.794404, 18.338581 ], [ -64.79435, 18.338591 ], [ -64.794239, 18.338647 ], [ -64.794148, 18.338699 ], [ -64.794097, 18.338731 ], [ -64.794047, 18.338779 ], [ -64.793976, 18.338817 ], [ -64.793707, 18.338949 ], [ -64.793541, 18.339054 ], [ -64.793549, 18.339128 ], [ -64.793564, 18.339165 ], [ -64.793569, 18.339215 ], [ -64.793571, 18.339235 ], [ -64.793541, 18.339262 ], [ -64.793495, 18.339241 ], [ -64.793436, 18.339264 ], [ -64.793375, 18.339311 ], [ -64.793335, 18.339361 ], [ -64.793325, 18.33944 ], [ -64.79332, 18.339481 ], [ -64.793284, 18.339547 ], [ -64.793264, 18.33958 ], [ -64.793221, 18.3396 ], [ -64.790222, 18.3416 ], [ -64.789169, 18.345018 ], [ -64.789169, 18.345062 ], [ -64.789154, 18.345093 ], [ -64.789162, 18.345121 ], [ -64.789177, 18.345148 ], [ -64.789177, 18.345257 ], [ -64.789146, 18.345329 ], [ -64.789093, 18.345369 ], [ -64.789078, 18.345419 ], [ -64.789078, 18.345499 ], [ -64.789093, 18.345581 ], [ -64.78907, 18.345604 ], [ -64.789047, 18.345615 ], [ -64.789001, 18.345741 ], [ -64.788948, 18.3458 ], [ -64.788948, 18.345823 ], [ -64.788956, 18.345871 ], [ -64.78894, 18.34589 ], [ -64.788902, 18.345892 ], [ -64.788864, 18.345907 ], [ -64.788841, 18.345929 ], [ -64.788834, 18.345972 ], [ -64.788811, 18.345985 ], [ -64.788742, 18.346004 ], [ -64.788719, 18.346014 ], [ -64.788689, 18.346045 ], [ -64.788643, 18.346073 ], [ -64.788597, 18.34609 ], [ -64.788521, 18.346142 ], [ -64.788476, 18.346159 ], [ -64.788429, 18.346157 ], [ -64.78833, 18.346172 ], [ -64.788292, 18.346193 ], [ -64.788269, 18.346214 ], [ -64.788231, 18.346226 ], [ -64.788185, 18.34623 ], [ -64.788124, 18.346247 ], [ -64.788086, 18.346287 ], [ -64.78804, 18.346292 ], [ -64.787994, 18.346289 ], [ -64.787955, 18.34635 ], [ -64.78788, 18.346479 ], [ -64.787814, 18.346569 ], [ -64.787722, 18.3467 ], [ -64.787689, 18.346746 ], [ -64.78766, 18.346812 ], [ -64.787628, 18.346891 ], [ -64.78759, 18.346909 ], [ -64.787544, 18.346924 ], [ -64.787506, 18.34692 ], [ -64.78738, 18.346912 ], [ -64.787307, 18.346915 ], [ -64.787239, 18.346962 ], [ -64.787168, 18.347108 ], [ -64.787148, 18.347149 ], [ -64.787051, 18.34738 ], [ -64.786957, 18.34763 ], [ -64.786896, 18.347879 ], [ -64.786884, 18.348164 ], [ -64.786873, 18.348354 ], [ -64.786896, 18.348576 ], [ -64.786957, 18.348825 ], [ -64.787064, 18.349052 ], [ -64.787216, 18.349264 ], [ -64.787325, 18.349404 ], [ -64.787407, 18.34951 ], [ -64.787598, 18.349682 ], [ -64.787682, 18.34973 ], [ -64.787796, 18.34976 ], [ -64.787857, 18.349745 ], [ -64.787886, 18.349719 ], [ -64.787935, 18.349666 ], [ -64.787949, 18.349651 ], [ -64.788002, 18.349653 ], [ -64.78804, 18.349667 ], [ -64.788101, 18.349663 ], [ -64.788147, 18.349644 ], [ -64.788185, 18.349623 ], [ -64.788208, 18.349659 ], [ -64.788273, 18.349942 ], [ -64.788284, 18.349991 ], [ -64.788392, 18.350298 ], [ -64.788429, 18.350403 ], [ -64.788429, 18.350563 ], [ -64.78846, 18.350594 ], [ -64.788452, 18.350624 ], [ -64.78846, 18.350719 ], [ -64.788445, 18.350801 ], [ -64.788437, 18.350861 ], [ -64.788414, 18.350935 ], [ -64.787685, 18.351849 ], [ -64.787231, 18.352419 ], [ -64.787158, 18.352544 ], [ -64.787094, 18.352598 ], [ -64.787041, 18.352638 ], [ -64.786931, 18.352699 ], [ -64.786888, 18.352715 ], [ -64.786899, 18.352759 ], [ -64.786926, 18.352797 ], [ -64.786932, 18.352838 ], [ -64.786919, 18.352863 ], [ -64.786873, 18.352879 ], [ -64.786819, 18.352877 ], [ -64.786751, 18.352947 ], [ -64.786713, 18.352842 ], [ -64.78669, 18.352812 ], [ -64.786667, 18.352835 ], [ -64.786652, 18.352922 ], [ -64.786613, 18.352942 ], [ -64.786491, 18.352964 ], [ -64.786446, 18.352978 ], [ -64.786407, 18.352983 ], [ -64.786369, 18.352983 ], [ -64.786324, 18.352995 ], [ -64.786285, 18.353006 ], [ -64.786255, 18.35301 ], [ -64.786224, 18.353001 ], [ -64.786209, 18.352978 ], [ -64.786209, 18.352942 ], [ -64.786201, 18.352928 ], [ -64.786171, 18.352921 ], [ -64.786148, 18.35293 ], [ -64.786118, 18.352957 ], [ -64.786087, 18.35298 ], [ -64.786057, 18.35297 ], [ -64.786034, 18.352955 ], [ -64.786005, 18.352978 ], [ -64.786003, 18.35298 ], [ -64.785973, 18.352983 ], [ -64.785896, 18.352985 ], [ -64.785866, 18.352993 ], [ -64.785843, 18.352997 ], [ -64.785805, 18.352995 ], [ -64.785789, 18.352982 ], [ -64.785761, 18.352964 ], [ -64.785744, 18.352953 ], [ -64.785688, 18.352937 ], [ -64.785637, 18.352917 ], [ -64.785606, 18.352928 ], [ -64.785583, 18.352951 ], [ -64.785568, 18.352982 ], [ -64.785553, 18.353003 ], [ -64.785507, 18.353022 ], [ -64.785484, 18.353008 ], [ -64.785461, 18.352983 ], [ -64.785385, 18.352989 ], [ -64.785385, 18.353039 ], [ -64.785355, 18.353056 ], [ -64.785324, 18.353058 ], [ -64.785309, 18.353085 ], [ -64.785278, 18.353092 ], [ -64.78524, 18.353106 ], [ -64.785225, 18.353138 ], [ -64.785217, 18.353161 ], [ -64.785225, 18.353199 ], [ -64.785225, 18.35323 ], [ -64.78521, 18.35326 ], [ -64.785187, 18.353294 ], [ -64.785164, 18.353352 ], [ -64.785126, 18.353411 ], [ -64.785126, 18.353441 ], [ -64.785103, 18.353468 ], [ -64.785067, 18.353497 ], [ -64.785044, 18.353517 ], [ -64.785011, 18.35355 ], [ -64.785005, 18.353606 ], [ -64.784996, 18.35363 ], [ -64.784965, 18.353675 ], [ -64.784988, 18.353683 ], [ -64.785031, 18.353735 ], [ -64.785087, 18.353834 ], [ -64.785186, 18.353883 ], [ -64.785301, 18.353921 ], [ -64.785293, 18.35396 ], [ -64.785224, 18.354 ], [ -64.785179, 18.354 ], [ -64.785057, 18.353973 ], [ -64.785003, 18.353925 ], [ -64.784965, 18.353918 ], [ -64.784915, 18.353936 ], [ -64.784873, 18.35391 ], [ -64.784835, 18.353919 ], [ -64.784729, 18.35391 ], [ -64.77729, 18.353489 ], [ -64.777229, 18.353487 ], [ -64.773829, 18.353416 ], [ -64.773769, 18.353416 ], [ -64.773725, 18.353416 ], [ -64.773644, 18.353411 ], [ -64.773589, 18.353411 ], [ -64.773575, 18.353411 ], [ -64.77354, 18.353383 ], [ -64.77047, 18.351587 ], [ -64.768363, 18.354089 ], [ -64.768384, 18.354109 ], [ -64.768442, 18.354187 ], [ -64.768447, 18.354264 ], [ -64.768436, 18.354363 ], [ -64.768453, 18.354429 ], [ -64.768424, 18.35449 ], [ -64.768453, 18.354517 ], [ -64.768511, 18.35455 ], [ -64.768545, 18.354578 ], [ -64.768555, 18.354617 ], [ -64.768574, 18.354688 ], [ -64.768592, 18.35471 ], [ -64.768627, 18.35472 ], [ -64.768793, 18.354798 ], [ -64.768868, 18.354809 ], [ -64.768926, 18.354853 ], [ -64.768984, 18.354908 ], [ -64.769116, 18.355013 ], [ -64.769139, 18.355073 ], [ -64.769157, 18.355173 ], [ -64.769122, 18.355261 ], [ -64.769082, 18.355321 ], [ -64.768972, 18.355415 ], [ -64.768857, 18.355547 ], [ -64.768806, 18.355634 ], [ -64.768736, 18.355767 ], [ -64.768696, 18.355795 ], [ -64.768655, 18.355778 ], [ -64.768619, 18.355772 ], [ -64.768597, 18.355762 ], [ -64.768574, 18.35574 ], [ -64.76847, 18.355646 ], [ -64.768441, 18.355596 ], [ -64.768372, 18.355547 ], [ -64.768332, 18.355481 ], [ -64.768309, 18.355431 ], [ -64.768297, 18.355343 ], [ -64.768326, 18.355112 ], [ -64.768367, 18.355007 ], [ -64.768349, 18.35493 ], [ -64.768349, 18.354924 ], [ -64.768349, 18.354853 ], [ -64.768332, 18.354748 ], [ -64.768303, 18.354677 ], [ -64.768228, 18.354556 ], [ -64.768188, 18.354528 ], [ -64.768148, 18.354478 ], [ -64.768096, 18.354406 ], [ -64.767433, 18.355194 ], [ -64.767427, 18.3552 ], [ -64.767401, 18.355236 ], [ -64.767332, 18.355275 ], [ -64.767326, 18.35528 ], [ -64.76731, 18.355319 ], [ -64.767311, 18.355354 ], [ -64.767295, 18.355388 ], [ -64.76725, 18.355389 ], [ -64.767191, 18.355381 ], [ -64.767174, 18.355379 ], [ -64.767119, 18.355397 ], [ -64.767084, 18.355417 ], [ -64.767068, 18.355433 ], [ -64.767055, 18.355458 ], [ -64.767046, 18.355465 ], [ -64.767009, 18.35546 ], [ -64.766968, 18.355463 ], [ -64.76692, 18.355546 ], [ -64.766811, 18.355622 ], [ -64.766768, 18.355733 ], [ -64.766708, 18.355801 ], [ -64.766692, 18.355826 ], [ -64.766663, 18.355873 ], [ -64.766635, 18.355973 ], [ -64.766629, 18.356079 ], [ -64.766555, 18.356127 ], [ -64.766504, 18.356156 ], [ -64.766455, 18.356168 ], [ -64.766386, 18.356186 ], [ -64.766266, 18.356224 ], [ -64.766207, 18.356239 ], [ -64.754226, 18.368856 ], [ -64.752553, 18.370618 ], [ -64.752508, 18.370697 ], [ -64.752466, 18.370761 ], [ -64.752403, 18.370838 ], [ -64.752388, 18.370926 ], [ -64.75238, 18.371003 ], [ -64.752339, 18.371108 ], [ -64.752311, 18.371159 ], [ -64.752218, 18.371206 ], [ -64.752137, 18.371256 ], [ -64.752074, 18.371333 ], [ -64.75201, 18.371393 ], [ -64.751941, 18.371466 ], [ -64.751889, 18.371543 ], [ -64.75186, 18.371598 ], [ -64.751831, 18.371708 ], [ -64.751791, 18.371796 ], [ -64.751716, 18.371917 ], [ -64.751676, 18.372005 ], [ -64.751568, 18.372167 ], [ -64.751479, 18.372281 ], [ -64.751341, 18.372396 ], [ -64.751217, 18.372444 ], [ -64.751214, 18.372446 ], [ -64.750968, 18.372499 ], [ -64.750879, 18.37255 ], [ -64.75077, 18.3726 ], [ -64.750695, 18.372617 ], [ -64.750614, 18.37262 ], [ -64.750556, 18.372611 ], [ -64.750524, 18.372626 ], [ -64.750487, 18.372661 ], [ -64.750429, 18.37271 ], [ -64.75036, 18.372743 ], [ -64.750291, 18.37279 ], [ -64.750279, 18.372799 ], [ -64.750194, 18.372828 ], [ -64.750092, 18.372834 ], [ -64.749996, 18.37284 ], [ -64.749818, 18.372887 ], [ -64.749759, 18.372907 ], [ -64.74968, 18.372936 ], [ -64.749582, 18.372947 ], [ -64.749559, 18.37295 ], [ -64.749382, 18.372932 ], [ -64.749191, 18.372944 ], [ -64.749008, 18.372976 ], [ -64.748756, 18.372993 ], [ -64.748642, 18.372992 ], [ -64.748512, 18.372974 ], [ -64.748405, 18.372936 ], [ -64.748291, 18.372871 ], [ -64.748184, 18.372849 ], [ -64.7481, 18.372839 ], [ -64.748062, 18.372843 ], [ -64.747871, 18.372911 ], [ -64.747787, 18.372892 ], [ -64.747734, 18.372868 ], [ -64.747688, 18.372822 ], [ -64.747643, 18.372801 ], [ -64.747589, 18.372786 ], [ -64.747528, 18.372774 ], [ -64.747391, 18.372835 ], [ -64.747261, 18.372894 ], [ -64.747185, 18.372936 ], [ -64.747047, 18.372927 ], [ -64.746876, 18.372931 ], [ -64.746609, 18.372968 ], [ -64.74626, 18.372899 ], [ -64.746147, 18.372856 ], [ -64.745994, 18.372872 ], [ -64.745903, 18.372868 ], [ -64.745724, 18.372833 ], [ -64.745602, 18.372834 ], [ -64.745459, 18.372852 ], [ -64.745291, 18.37284 ], [ -64.745089, 18.372812 ], [ -64.744911, 18.372802 ], [ -64.744732, 18.372802 ], [ -64.744576, 18.372785 ], [ -64.744501, 18.37279 ], [ -64.744385, 18.372818 ], [ -64.744252, 18.372856 ], [ -64.744085, 18.372857 ], [ -64.743947, 18.372795 ], [ -64.743797, 18.372763 ], [ -64.74371, 18.37273 ], [ -64.743607, 18.372735 ], [ -64.743503, 18.37272 ], [ -64.74337, 18.372685 ], [ -64.743348, 18.372684 ], [ -64.74303, 18.37267 ], [ -64.742833, 18.37262 ], [ -64.742435, 18.372581 ], [ -64.742265, 18.372536 ], [ -64.742066, 18.372483 ], [ -64.741859, 18.372482 ], [ -64.74168, 18.37245 ], [ -64.741518, 18.372384 ], [ -64.741264, 18.372357 ], [ -64.741051, 18.372241 ], [ -64.740906, 18.372186 ], [ -64.740745, 18.372144 ], [ -64.740701, 18.372131 ], [ -64.740654, 18.372117 ], [ -64.740543, 18.372081 ], [ -64.740439, 18.372026 ], [ -64.740341, 18.371993 ], [ -64.740105, 18.371938 ], [ -64.740053, 18.37195 ], [ -64.739931, 18.371922 ], [ -64.739839, 18.371884 ], [ -64.739759, 18.371878 ], [ -64.739609, 18.371877 ], [ -64.739482, 18.371872 ], [ -64.739412, 18.371888 ], [ -64.73932, 18.371894 ], [ -64.739245, 18.371883 ], [ -64.738998, 18.371894 ], [ -64.738893, 18.371888 ], [ -64.738813, 18.3719 ], [ -64.738744, 18.371906 ], [ -64.738674, 18.371899 ], [ -64.738582, 18.371844 ], [ -64.738547, 18.371813 ], [ -64.738414, 18.371746 ], [ -64.738328, 18.371697 ], [ -64.738259, 18.371668 ], [ -64.738074, 18.371532 ], [ -64.737988, 18.371438 ], [ -64.737912, 18.3714 ], [ -64.737849, 18.37136 ], [ -64.737774, 18.371327 ], [ -64.737693, 18.371293 ], [ -64.737624, 18.371263 ], [ -64.737474, 18.371217 ], [ -64.737416, 18.371163 ], [ -64.737318, 18.371135 ], [ -64.737099, 18.371085 ], [ -64.737002, 18.371081 ], [ -64.736911, 18.371051 ], [ -64.736799, 18.371015 ], [ -64.736695, 18.370987 ], [ -64.736517, 18.370982 ], [ -64.736447, 18.371003 ], [ -64.736343, 18.371008 ], [ -64.736269, 18.371031 ], [ -64.736194, 18.371037 ], [ -64.736055, 18.371085 ], [ -64.735939, 18.371114 ], [ -64.73587, 18.371125 ], [ -64.735807, 18.371142 ], [ -64.735806, 18.371141 ], [ -64.7258, 18.368993 ], [ -64.720428, 18.36784 ], [ -64.720359, 18.367841 ], [ -64.713483, 18.367413 ], [ -64.713412, 18.367401 ], [ -64.71331, 18.367385 ], [ -64.713073, 18.367385 ], [ -64.712957, 18.36739 ], [ -64.712825, 18.367378 ], [ -64.712734, 18.367336 ], [ -64.712634, 18.367307 ], [ -64.712508, 18.367297 ], [ -64.712369, 18.36728 ], [ -64.712285, 18.367275 ], [ -64.71215, 18.367246 ], [ -64.711977, 18.367191 ], [ -64.711792, 18.367159 ], [ -64.711619, 18.367143 ], [ -64.711458, 18.367065 ], [ -64.71136, 18.367027 ], [ -64.711204, 18.36695 ], [ -64.711077, 18.366872 ], [ -64.710794, 18.366515 ], [ -64.710725, 18.366405 ], [ -64.710656, 18.366316 ], [ -64.710569, 18.366217 ], [ -64.710489, 18.366134 ], [ -64.710361, 18.366025 ], [ -64.710264, 18.365903 ], [ -64.710131, 18.365798 ], [ -64.70997, 18.365721 ], [ -64.709808, 18.365672 ], [ -64.709721, 18.365594 ], [ -64.709496, 18.36554 ], [ -64.709369, 18.365502 ], [ -64.709271, 18.36549 ], [ -64.709127, 18.365462 ], [ -64.709017, 18.365425 ], [ -64.708919, 18.365397 ], [ -64.708695, 18.365375 ], [ -64.70864, 18.365363 ], [ -64.708614, 18.365358 ], [ -64.708181, 18.365231 ], [ -64.708037, 18.365205 ], [ -64.707916, 18.365154 ], [ -64.707824, 18.365094 ], [ -64.707621, 18.36499 ], [ -64.707483, 18.364928 ], [ -64.707431, 18.36489 ], [ -64.707373, 18.364836 ], [ -64.702816, 18.36189 ], [ -64.702747, 18.361866 ], [ -64.702649, 18.361839 ], [ -64.702495, 18.361752 ], [ -64.702372, 18.361614 ], [ -64.702257, 18.361569 ], [ -64.702143, 18.361494 ], [ -64.702038, 18.361454 ], [ -64.701935, 18.36139 ], [ -64.701676, 18.361263 ], [ -64.701537, 18.361214 ], [ -64.701392, 18.361184 ], [ -64.701126, 18.361108 ], [ -64.70103, 18.361116 ], [ -64.700936, 18.361123 ], [ -64.700826, 18.361167 ], [ -64.700688, 18.3612 ], [ -64.700607, 18.361205 ], [ -64.700552, 18.361218 ], [ -64.70048, 18.361236 ], [ -64.700395, 18.361279 ], [ -64.700273, 18.36137 ], [ -64.700206, 18.361418 ], [ -64.700146, 18.36146 ], [ -64.700065, 18.36153 ], [ -64.700003, 18.361599 ], [ -64.699963, 18.361632 ], [ -64.699882, 18.361659 ], [ -64.69979, 18.361698 ], [ -64.699707, 18.361757 ], [ -64.699574, 18.361808 ], [ -64.699499, 18.361825 ], [ -64.699442, 18.36183 ], [ -64.699212, 18.361872 ], [ -64.699121, 18.361886 ], [ -64.698986, 18.361906 ], [ -64.69883, 18.361907 ], [ -64.698502, 18.361883 ], [ -64.698377, 18.361891 ], [ -64.698043, 18.361902 ], [ -64.697734, 18.361913 ], [ -64.697186, 18.361941 ], [ -64.696957, 18.361948 ], [ -64.696685, 18.361956 ], [ -64.696096, 18.361996 ], [ -64.69582, 18.362004 ], [ -64.695398, 18.362055 ], [ -64.694937, 18.362098 ], [ -64.694793, 18.362104 ], [ -64.694656, 18.362106 ], [ -64.69447, 18.362109 ], [ -64.694337, 18.362121 ], [ -64.69421, 18.362101 ], [ -64.694095, 18.362106 ], [ -64.693835, 18.36206 ], [ -64.693755, 18.362027 ], [ -64.693624, 18.361979 ], [ -64.693535, 18.361934 ], [ -64.693439, 18.361875 ], [ -64.693329, 18.361814 ], [ -64.693237, 18.36177 ], [ -64.693125, 18.361725 ], [ -64.693058, 18.361688 ], [ -64.69297, 18.361648 ], [ -64.692849, 18.361608 ], [ -64.69278, 18.361575 ], [ -64.692647, 18.361554 ], [ -64.69251, 18.361517 ], [ -64.692393, 18.361499 ], [ -64.69226, 18.361472 ], [ -64.692093, 18.361445 ], [ -64.691788, 18.36136 ], [ -64.691672, 18.361311 ], [ -64.691574, 18.361278 ], [ -64.691418, 18.361258 ], [ -64.691292, 18.361229 ], [ -64.691199, 18.361242 ], [ -64.691095, 18.361251 ], [ -64.690987, 18.361242 ], [ -64.690913, 18.361191 ], [ -64.690807, 18.361096 ], [ -64.690726, 18.360992 ], [ -64.690668, 18.36086 ], [ -64.690578, 18.360741 ], [ -64.690513, 18.360623 ], [ -64.690393, 18.360526 ], [ -64.690295, 18.360471 ], [ -64.690098, 18.360352 ], [ -64.690026, 18.360314 ], [ -64.689919, 18.360259 ], [ -64.689769, 18.360172 ], [ -64.689672, 18.360107 ], [ -64.689613, 18.360056 ], [ -64.689503, 18.360012 ], [ -64.689423, 18.359967 ], [ -64.689321, 18.359936 ], [ -64.689204, 18.359885 ], [ -64.688886, 18.359775 ], [ -64.688753, 18.359709 ], [ -64.688673, 18.359649 ], [ -64.688575, 18.359566 ], [ -64.688455, 18.35943 ], [ -64.688326, 18.359324 ], [ -64.688201, 18.359232 ], [ -64.688066, 18.359159 ], [ -64.687925, 18.359104 ], [ -64.68778, 18.359028 ], [ -64.687619, 18.358956 ], [ -64.687486, 18.358863 ], [ -64.687398, 18.358822 ], [ -64.687335, 18.358746 ], [ -64.679849, 18.353946 ], [ -64.674132, 18.350281 ], [ -64.673965, 18.350258 ], [ -64.673855, 18.350213 ], [ -64.673735, 18.350171 ], [ -64.673602, 18.350109 ], [ -64.673492, 18.350038 ], [ -64.673382, 18.34996 ], [ -64.673284, 18.349886 ], [ -64.673186, 18.349813 ], [ -64.673111, 18.349784 ], [ -64.673013, 18.349762 ], [ -64.672932, 18.349756 ], [ -64.672844, 18.349773 ], [ -64.672713, 18.349801 ], [ -64.67258, 18.34985 ], [ -64.672349, 18.349879 ], [ -64.672201, 18.349869 ], [ -64.67203, 18.349875 ], [ -64.671977, 18.34987 ], [ -64.671856, 18.349808 ], [ -64.671803, 18.34975 ], [ -64.671677, 18.349616 ], [ -64.671619, 18.349392 ], [ -64.671588, 18.34912 ], [ -64.671593, 18.348936 ], [ -64.671526, 18.348847 ], [ -64.671409, 18.348726 ], [ -64.671253, 18.348565 ], [ -64.671029, 18.348449 ], [ -64.670842, 18.348512 ], [ -64.67069, 18.348633 ], [ -64.670493, 18.348749 ], [ -64.670292, 18.348829 ], [ -64.670051, 18.348874 ], [ -64.669756, 18.348874 ], [ -64.669537, 18.348829 ], [ -64.669084, 18.348687 ], [ -64.66904, 18.348663 ], [ -64.669039, 18.348662 ], [ -64.665211, 18.345628 ], [ -64.665067, 18.345583 ], [ -64.664992, 18.345539 ], [ -64.664835, 18.34546 ], [ -64.664455, 18.345297 ], [ -64.664161, 18.345243 ], [ -64.663923, 18.345201 ], [ -64.663734, 18.345192 ], [ -64.663567, 18.345165 ], [ -64.663527, 18.345159 ], [ -64.663365, 18.345155 ], [ -64.66314, 18.34515 ], [ -64.662792, 18.345142 ], [ -64.662494, 18.34506 ], [ -64.662389, 18.34502 ], [ -64.662268, 18.344892 ], [ -64.662235, 18.344806 ], [ -64.66216, 18.34468 ], [ -64.662112, 18.344646 ], [ -64.662057, 18.344612 ], [ -64.661998, 18.344575 ], [ -64.661951, 18.344507 ], [ -64.661945, 18.344427 ], [ -64.661951, 18.344305 ], [ -64.661951, 18.34419 ], [ -64.661923, 18.344096 ], [ -64.661837, 18.343947 ], [ -64.661686, 18.343823 ], [ -64.661506, 18.343738 ], [ -64.661362, 18.34371 ], [ -64.661178, 18.343683 ], [ -64.660833, 18.343606 ], [ -64.660741, 18.343595 ], [ -64.660649, 18.343512 ], [ -64.660608, 18.343358 ], [ -64.660718, 18.343083 ], [ -64.660953, 18.342821 ], [ -64.66107, 18.342736 ], [ -64.661174, 18.342653 ], [ -64.661259, 18.342557 ], [ -64.661333, 18.342398 ], [ -64.661386, 18.34208 ], [ -64.66141, 18.341843 ], [ -64.661421, 18.341662 ], [ -64.661392, 18.341442 ], [ -64.661291, 18.341256 ], [ -64.661273, 18.341221 ], [ -64.661053, 18.34088 ], [ -64.660925, 18.340701 ], [ -64.660792, 18.340503 ], [ -64.660717, 18.340348 ], [ -64.660574, 18.34002 ], [ -64.66054, 18.339905 ], [ -64.660521, 18.339825 ], [ -64.660521, 18.339776 ], [ -64.660534, 18.339745 ], [ -64.660555, 18.339716 ], [ -64.661774, 18.334378 ], [ -64.661792, 18.334287 ], [ -64.661824, 18.334214 ], [ -64.661849, 18.334122 ], [ -64.661855, 18.334083 ], [ -64.661878, 18.334071 ], [ -64.661894, 18.33406 ], [ -64.661929, 18.334019 ], [ -64.661982, 18.333907 ], [ -64.661994, 18.33383 ], [ -64.661986, 18.333769 ], [ -64.661994, 18.333736 ], [ -64.661993, 18.3337 ], [ -64.662022, 18.333637 ], [ -64.662092, 18.333554 ], [ -64.662125, 18.333539 ], [ -64.662143, 18.333533 ], [ -64.662207, 18.333516 ], [ -64.697077, 18.303051 ], [ -64.701425, 18.299252 ], [ -64.701391, 18.299219 ], [ -64.701385, 18.299114 ], [ -64.701402, 18.299019 ], [ -64.701593, 18.298833 ], [ -64.701691, 18.298773 ], [ -64.701794, 18.298718 ], [ -64.701858, 18.298657 ], [ -64.702077, 18.298701 ], [ -64.702272, 18.298754 ], [ -64.702405, 18.298755 ], [ -64.702544, 18.298762 ], [ -64.70263, 18.298734 ], [ -64.702647, 18.298705 ], [ -64.702606, 18.298645 ], [ -64.702596, 18.298508 ], [ -64.702538, 18.298448 ], [ -64.702573, 18.298382 ], [ -64.702648, 18.298349 ], [ -64.702694, 18.298343 ], [ -64.702705, 18.298303 ], [ -64.702751, 18.2982 ], [ -64.702855, 18.298189 ], [ -64.702994, 18.298189 ], [ -64.70312, 18.298205 ], [ -64.703195, 18.298271 ], [ -64.703216, 18.298317 ], [ -64.703239, 18.298315 ], [ -64.703262, 18.298328 ], [ -64.703308, 18.298325 ], [ -64.703323, 18.298361 ], [ -64.703285, 18.298367 ], [ -64.703278, 18.298393 ], [ -64.703285, 18.298407 ], [ -64.703362, 18.29846 ], [ -64.7034, 18.298471 ], [ -64.703468, 18.298523 ], [ -64.703522, 18.298534 ], [ -64.703537, 18.298517 ], [ -64.70359, 18.29858 ], [ -64.70363, 18.298594 ], [ -64.703645, 18.298632 ], [ -64.703634, 18.298734 ], [ -64.703604, 18.298767 ], [ -64.703541, 18.298782 ], [ -64.703478, 18.298816 ], [ -64.703401, 18.298854 ], [ -64.703333, 18.298878 ], [ -64.703343, 18.298946 ], [ -64.70343, 18.299004 ], [ -64.703507, 18.299052 ], [ -64.70357, 18.2991 ], [ -64.703608, 18.299216 ], [ -64.703541, 18.29925 ], [ -64.703517, 18.299303 ], [ -64.703541, 18.299395 ], [ -64.703555, 18.2995 ], [ -64.70356, 18.299593 ], [ -64.703483, 18.299684 ], [ -64.703401, 18.299737 ], [ -64.703377, 18.299805 ], [ -64.703377, 18.299844 ], [ -64.70342, 18.299882 ], [ -64.703449, 18.299921 ], [ -64.703444, 18.300051 ], [ -64.703444, 18.300172 ], [ -64.703464, 18.300375 ], [ -64.703251, 18.300693 ], [ -64.703227, 18.300857 ], [ -64.703227, 18.301123 ], [ -64.703217, 18.301369 ], [ -64.703217, 18.30161 ], [ -64.703174, 18.301914 ], [ -64.703145, 18.30216 ], [ -64.703126, 18.302339 ], [ -64.703087, 18.302517 ], [ -64.703073, 18.302706 ], [ -64.703073, 18.302942 ], [ -64.703077, 18.303135 ], [ -64.703087, 18.303265 ], [ -64.703198, 18.303512 ], [ -64.703328, 18.303685 ], [ -64.703488, 18.303869 ], [ -64.703608, 18.304014 ], [ -64.703758, 18.304105 ], [ -64.703904, 18.304237 ], [ -64.704004, 18.304272 ], [ -64.704105, 18.304329 ], [ -64.704245, 18.304377 ], [ -64.704399, 18.304408 ], [ -64.704539, 18.304439 ], [ -64.704626, 18.304447 ], [ -64.704683, 18.304417 ], [ -64.704731, 18.30436 ], [ -64.704801, 18.304325 ], [ -64.704836, 18.304329 ], [ -64.704863, 18.304399 ], [ -64.704959, 18.30439 ], [ -64.705012, 18.304342 ], [ -64.70502, 18.304272 ], [ -64.705029, 18.304211 ], [ -64.705095, 18.304207 ], [ -64.705156, 18.304158 ], [ -64.705187, 18.304106 ], [ -64.705248, 18.304101 ], [ -64.705345, 18.30411 ], [ -64.705388, 18.30408 ], [ -64.705449, 18.304049 ], [ -64.705541, 18.304093 ], [ -64.705637, 18.304151 ], [ -64.705675, 18.304175 ], [ -64.70573, 18.304163 ], [ -64.705844, 18.304176 ], [ -64.70587, 18.304294 ], [ -64.711384, 18.305886 ], [ -64.711621, 18.305957 ], [ -64.711673, 18.306019 ], [ -64.711681, 18.306095 ], [ -64.711701, 18.306249 ], [ -64.711759, 18.306278 ], [ -64.711803, 18.306261 ], [ -64.711841, 18.306228 ], [ -64.711899, 18.306187 ], [ -64.711967, 18.306192 ], [ -64.712071, 18.306196 ], [ -64.712116, 18.306112 ], [ -64.712179, 18.306084 ], [ -64.71222, 18.306172 ], [ -64.712322, 18.306136 ], [ -64.712361, 18.30617 ], [ -64.712433, 18.306222 ], [ -64.712491, 18.306298 ], [ -64.712511, 18.306313 ], [ -64.712538, 18.306333 ], [ -64.712566, 18.306311 ], [ -64.71263, 18.306284 ], [ -64.712675, 18.306294 ], [ -64.712682, 18.306355 ], [ -64.712815, 18.306383 ], [ -64.712832, 18.306399 ], [ -64.720229, 18.307487 ], [ -64.721297, 18.307246 ], [ -64.721349, 18.307273 ], [ -64.721412, 18.307328 ], [ -64.721528, 18.30745 ], [ -64.721689, 18.307564 ], [ -64.721735, 18.307631 ], [ -64.721735, 18.307679 ], [ -64.721672, 18.307725 ], [ -64.721672, 18.307731 ], [ -64.721701, 18.307863 ], [ -64.721706, 18.307918 ], [ -64.721931, 18.307978 ], [ -64.722006, 18.307911 ], [ -64.722109, 18.308017 ], [ -64.73222, 18.313985 ], [ -64.732284, 18.31404 ], [ -64.732318, 18.314117 ], [ -64.732347, 18.314215 ], [ -64.732381, 18.314309 ], [ -64.732387, 18.314386 ], [ -64.73237, 18.314414 ], [ -64.732313, 18.314479 ], [ -64.732261, 18.314633 ], [ -64.732266, 18.314667 ], [ -64.732284, 18.314701 ], [ -64.732295, 18.31475 ], [ -64.73229, 18.314844 ], [ -64.732318, 18.315008 ], [ -64.73248, 18.31513 ], [ -64.732501, 18.315133 ], [ -64.732532, 18.315139 ], [ -64.732601, 18.315124 ], [ -64.732664, 18.315086 ], [ -64.732739, 18.315058 ], [ -64.732826, 18.315069 ], [ -64.732901, 18.315057 ], [ -64.73297, 18.315036 ], [ -64.733177, 18.314937 ], [ -64.733321, 18.314874 ], [ -64.73346, 18.314821 ], [ -64.733587, 18.314847 ], [ -64.733731, 18.314871 ], [ -64.733835, 18.314946 ], [ -64.734037, 18.315069 ], [ -64.734124, 18.315161 ], [ -64.734239, 18.315355 ], [ -64.734331, 18.31546 ], [ -64.7344, 18.315576 ], [ -64.734533, 18.315735 ], [ -64.734579, 18.315857 ], [ -64.734614, 18.315917 ], [ -64.734666, 18.315972 ], [ -64.734736, 18.316003 ], [ -64.734816, 18.316038 ], [ -64.734891, 18.316038 ], [ -64.734954, 18.316075 ], [ -64.734983, 18.316132 ], [ -64.735035, 18.316181 ], [ -64.735127, 18.316236 ], [ -64.735231, 18.316242 ], [ -64.735317, 18.316225 ], [ -64.735381, 18.316236 ], [ -64.735432, 18.316213 ], [ -64.73553, 18.316207 ], [ -64.735605, 18.316238 ], [ -64.735664, 18.316262 ], [ -64.735733, 18.316319 ], [ -64.735848, 18.316401 ], [ -64.735935, 18.316426 ], [ -64.736108, 18.316474 ], [ -64.736298, 18.316528 ], [ -64.736448, 18.316576 ], [ -64.73654, 18.31661 ], [ -64.73665, 18.316665 ], [ -64.736742, 18.316691 ], [ -64.736788, 18.316717 ], [ -64.736834, 18.316743 ], [ -64.737088, 18.316812 ], [ -64.737192, 18.316847 ], [ -64.737255, 18.316842 ], [ -64.737324, 18.316781 ], [ -64.737318, 18.31672 ], [ -64.737341, 18.316654 ], [ -64.737394, 18.316577 ], [ -64.737434, 18.316555 ], [ -64.737497, 18.316561 ], [ -64.737532, 18.31655 ], [ -64.737532, 18.316484 ], [ -64.737543, 18.316417 ], [ -64.737576, 18.316407 ], [ -64.756279, 18.316566 ], [ -64.756264, 18.316584 ], [ -64.756271, 18.316645 ], [ -64.756371, 18.316776 ], [ -64.756378, 18.316797 ], [ -64.756378, 18.316854 ], [ -64.756447, 18.316975 ], [ -64.756477, 18.317068 ], [ -64.756437, 18.317139 ], [ -64.756386, 18.317186 ], [ -64.756363, 18.317223 ], [ -64.756348, 18.31723 ], [ -64.756332, 18.317276 ], [ -64.756348, 18.317353 ], [ -64.756348, 18.317432 ], [ -64.756317, 18.317493 ], [ -64.756264, 18.317553 ], [ -64.756125, 18.317655 ], [ -64.756316, 18.326182 ], [ -64.759925, 18.326328 ], [ -64.761131, 18.327086 ], [ -64.762407, 18.32789 ], [ -64.76429, 18.329037 ], [ -64.764294, 18.329049 ], [ -64.764306, 18.329076 ], [ -64.764341, 18.329154 ], [ -64.764346, 18.329209 ], [ -64.76441, 18.32927 ], [ -64.764456, 18.329375 ], [ -64.764513, 18.329485 ], [ -64.764542, 18.329584 ], [ -64.764554, 18.329644 ], [ -64.764583, 18.329683 ], [ -64.764715, 18.329727 ], [ -64.764773, 18.329771 ], [ -64.764888, 18.32981 ], [ -64.765228, 18.32998 ], [ -64.765401, 18.330052 ], [ -64.765574, 18.33014 ], [ -64.765776, 18.330195 ], [ -64.766001, 18.330245 ], [ -64.766341, 18.330333 ], [ -64.76652, 18.330355 ], [ -64.766745, 18.330377 ], [ -64.766953, 18.330432 ], [ -64.767085, 18.330493 ], [ -64.767201, 18.330565 ], [ -64.767368, 18.330686 ], [ -64.767454, 18.330741 ], [ -64.767517, 18.330813 ], [ -64.767541, 18.33084 ], [ -64.76757, 18.330901 ], [ -64.767702, 18.330972 ], [ -64.767776, 18.330999 ], [ -64.767806, 18.331011 ], [ -64.767904, 18.331011 ], [ -64.768019, 18.331022 ], [ -64.768106, 18.331016 ], [ -64.768175, 18.331005 ], [ -64.768267, 18.330961 ], [ -64.768694, 18.330741 ], [ -64.768804, 18.330692 ], [ -64.768965, 18.330697 ], [ -64.769046, 18.330692 ], [ -64.769132, 18.330703 ], [ -64.769288, 18.330736 ], [ -64.769386, 18.330785 ], [ -64.769525, 18.330884 ], [ -64.769698, 18.331 ], [ -64.769807, 18.331221 ], [ -64.769796, 18.331369 ], [ -64.769767, 18.331512 ], [ -64.769749, 18.33165 ], [ -64.769755, 18.331788 ], [ -64.769795, 18.331953 ], [ -64.769836, 18.332041 ], [ -64.769911, 18.332162 ], [ -64.770286, 18.332735 ], [ -64.770349, 18.332939 ], [ -64.770349, 18.333016 ], [ -64.77032, 18.333181 ], [ -64.770291, 18.333413 ], [ -64.770257, 18.3336 ], [ -64.770274, 18.333644 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "020", "TRACTCE10": "990000", "GEOID10": "78020990000", "NAME10": "9900", "NAMELSAD10": "Census Tract 9900", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 162633173, "INTPTLAT10": "+18.2884422", "INTPTLON10": "-064.6892357" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.751484, 18.37742 ], [ -64.749581, 18.377307 ], [ -64.749052, 18.377069 ], [ -64.747325, 18.377671 ], [ -64.746057, 18.377903 ], [ -64.743986, 18.378113 ], [ -64.743804, 18.378131 ], [ -64.743489, 18.378046 ], [ -64.742981, 18.377908 ], [ -64.741783, 18.377583 ], [ -64.741025, 18.377378 ], [ -64.738812, 18.376255 ], [ -64.738811, 18.376255 ], [ -64.73765, 18.376217 ], [ -64.734715, 18.376866 ], [ -64.72983, 18.377945 ], [ -64.728117, 18.375978 ], [ -64.727025, 18.374725 ], [ -64.720022, 18.374395 ], [ -64.718914, 18.373921 ], [ -64.718827, 18.373884 ], [ -64.712491, 18.373758 ], [ -64.711584, 18.373754 ], [ -64.710894, 18.373752 ], [ -64.710203, 18.373749 ], [ -64.709372, 18.373746 ], [ -64.708197, 18.373742 ], [ -64.706957, 18.373297 ], [ -64.706215, 18.373032 ], [ -64.706175, 18.373018 ], [ -64.706147, 18.373008 ], [ -64.701893, 18.371138 ], [ -64.701604, 18.370636 ], [ -64.698375, 18.371038 ], [ -64.696598, 18.371245 ], [ -64.691101, 18.371884 ], [ -64.687522, 18.372761 ], [ -64.683497, 18.372576 ], [ -64.683293, 18.372567 ], [ -64.681191, 18.371982 ], [ -64.675249, 18.367463 ], [ -64.672113, 18.366484 ], [ -64.668481, 18.365577 ], [ -64.66436, 18.365685 ], [ -64.661941, 18.365304 ], [ -64.658667, 18.36473 ], [ -64.649678, 18.364514 ], [ -64.645202, 18.364456 ], [ -64.640437, 18.363997 ], [ -64.639144, 18.35519 ], [ -64.64307, 18.345618 ], [ -64.643689, 18.344107 ], [ -64.642731, 18.339478 ], [ -64.639633, 18.324501 ], [ -64.639032, 18.321598 ], [ -64.638524, 18.320492 ], [ -64.637735, 18.319759 ], [ -64.639478, 18.317326 ], [ -64.651225, 18.300915 ], [ -64.663855, 18.285376 ], [ -64.663856, 18.285376 ], [ -64.661301, 18.267359 ], [ -64.664259, 18.261271 ], [ -64.671238, 18.256154 ], [ -64.674924, 18.254129 ], [ -64.678229, 18.252316 ], [ -64.681666, 18.251575 ], [ -64.68804, 18.249898 ], [ -64.694489, 18.248758 ], [ -64.699955, 18.248761 ], [ -64.700879, 18.248761 ], [ -64.707907, 18.248725 ], [ -64.714838, 18.249565 ], [ -64.720174, 18.25069 ], [ -64.724198, 18.251963 ], [ -64.729475, 18.254131 ], [ -64.731735, 18.255572 ], [ -64.734049, 18.257048 ], [ -64.736549, 18.258571 ], [ -64.740747, 18.259471 ], [ -64.74321, 18.260725 ], [ -64.746954, 18.262337 ], [ -64.748736, 18.263059 ], [ -64.74958, 18.262744 ], [ -64.750715, 18.262492 ], [ -64.753282, 18.261902 ], [ -64.754137, 18.261707 ], [ -64.757769, 18.260855 ], [ -64.76408, 18.260431 ], [ -64.764539, 18.26042 ], [ -64.768336, 18.260333 ], [ -64.773377, 18.269354 ], [ -64.788504, 18.296418 ], [ -64.79302, 18.304498 ], [ -64.793547, 18.30544 ], [ -64.793837, 18.305962 ], [ -64.794714, 18.307528 ], [ -64.795006, 18.308051 ], [ -64.795259, 18.308504 ], [ -64.79602, 18.309866 ], [ -64.796275, 18.31032 ], [ -64.796994, 18.311609 ], [ -64.799156, 18.315476 ], [ -64.799878, 18.316765 ], [ -64.799997, 18.316854 ], [ -64.800354, 18.317121 ], [ -64.800474, 18.31721 ], [ -64.806113, 18.321421 ], [ -64.818922, 18.330989 ], [ -64.82303, 18.334057 ], [ -64.831677, 18.340515 ], [ -64.840701, 18.347255 ], [ -64.84371, 18.349502 ], [ -64.843717, 18.355988 ], [ -64.843718, 18.356866 ], [ -64.84372, 18.358321 ], [ -64.843723, 18.361365 ], [ -64.843739, 18.373009 ], [ -64.84373, 18.393713 ], [ -64.841355, 18.393708 ], [ -64.830617, 18.395202 ], [ -64.830275, 18.395391 ], [ -64.823015, 18.399402 ], [ -64.816674, 18.402906 ], [ -64.800329, 18.407595 ], [ -64.785001, 18.403802 ], [ -64.778005, 18.386209 ], [ -64.771871, 18.383438 ], [ -64.768165, 18.381764 ], [ -64.756923, 18.376686 ], [ -64.751962, 18.377449 ], [ -64.751484, 18.37742 ] ], [ [ -64.795852, 18.364181 ], [ -64.795806, 18.36421 ], [ -64.795814, 18.364221 ], [ -64.79586, 18.364198 ], [ -64.795852, 18.364181 ] ], [ [ -64.795661, 18.364089 ], [ -64.795608, 18.364095 ], [ -64.795608, 18.364124 ], [ -64.795631, 18.364141 ], [ -64.795684, 18.364122 ], [ -64.795661, 18.364089 ] ], [ [ -64.795867, 18.364076 ], [ -64.795829, 18.364099 ], [ -64.795852, 18.364122 ], [ -64.795982, 18.36413 ], [ -64.795951, 18.364078 ], [ -64.795867, 18.364076 ] ], [ [ -64.805023, 18.328346 ], [ -64.804985, 18.328351 ], [ -64.804985, 18.328407 ], [ -64.804916, 18.328409 ], [ -64.804924, 18.328462 ], [ -64.805007, 18.328475 ], [ -64.805046, 18.328441 ], [ -64.805053, 18.328374 ], [ -64.805023, 18.328346 ] ], [ [ -64.80086, 18.325707 ], [ -64.800827, 18.325679 ], [ -64.800766, 18.325682 ], [ -64.800781, 18.325741 ], [ -64.800863, 18.325782 ], [ -64.800941, 18.32581 ], [ -64.800955, 18.325773 ], [ -64.80086, 18.325707 ] ], [ [ -64.795433, 18.364202 ], [ -64.795341, 18.364238 ], [ -64.795333, 18.364284 ], [ -64.795364, 18.364299 ], [ -64.795539, 18.364265 ], [ -64.795516, 18.364217 ], [ -64.795433, 18.364202 ] ], [ [ -64.80265, 18.359609 ], [ -64.802543, 18.35964 ], [ -64.802543, 18.35971 ], [ -64.802589, 18.359731 ], [ -64.802673, 18.359712 ], [ -64.802719, 18.359647 ], [ -64.80265, 18.359609 ] ], [ [ -64.816835, 18.343538 ], [ -64.816918, 18.343554 ], [ -64.816923, 18.343649 ], [ -64.817018, 18.343676 ], [ -64.817095, 18.343676 ], [ -64.817162, 18.343626 ], [ -64.817156, 18.343532 ], [ -64.817079, 18.343493 ], [ -64.817012, 18.343449 ], [ -64.817034, 18.343371 ], [ -64.817095, 18.343316 ], [ -64.817029, 18.343271 ], [ -64.816912, 18.343299 ], [ -64.816862, 18.343393 ], [ -64.81674, 18.34346 ], [ -64.816835, 18.343538 ] ], [ [ -64.817256, 18.343011 ], [ -64.817345, 18.342928 ], [ -64.817384, 18.342833 ], [ -64.817384, 18.342745 ], [ -64.817428, 18.342667 ], [ -64.817539, 18.342678 ], [ -64.817617, 18.342606 ], [ -64.817606, 18.342462 ], [ -64.8175, 18.342445 ], [ -64.817478, 18.342534 ], [ -64.817389, 18.342567 ], [ -64.817217, 18.342595 ], [ -64.817084, 18.342745 ], [ -64.817073, 18.342817 ], [ -64.817106, 18.342917 ], [ -64.817162, 18.343 ], [ -64.817256, 18.343011 ] ], [ [ -64.7938, 18.369832 ], [ -64.793876, 18.369882 ], [ -64.794021, 18.369878 ], [ -64.794136, 18.369897 ], [ -64.794273, 18.369745 ], [ -64.794502, 18.369611 ], [ -64.794512, 18.369546 ], [ -64.794593, 18.369567 ], [ -64.794708, 18.369525 ], [ -64.794677, 18.369487 ], [ -64.794532, 18.369487 ], [ -64.794357, 18.369468 ], [ -64.794235, 18.369525 ], [ -64.794052, 18.369705 ], [ -64.793792, 18.369779 ], [ -64.7938, 18.369832 ] ], [ [ -64.709877, 18.301925 ], [ -64.709845, 18.301933 ], [ -64.709845, 18.301965 ], [ -64.709853, 18.30202 ], [ -64.709853, 18.302067 ], [ -64.709818, 18.302083 ], [ -64.70977, 18.302079 ], [ -64.709723, 18.302083 ], [ -64.709731, 18.302111 ], [ -64.709754, 18.302166 ], [ -64.709711, 18.302182 ], [ -64.709679, 18.30217 ], [ -64.709648, 18.302162 ], [ -64.70964, 18.302194 ], [ -64.709632, 18.302245 ], [ -64.709636, 18.302296 ], [ -64.70964, 18.302324 ], [ -64.709648, 18.302375 ], [ -64.709648, 18.302415 ], [ -64.709687, 18.302446 ], [ -64.709723, 18.30249 ], [ -64.709778, 18.302494 ], [ -64.709822, 18.302505 ], [ -64.709861, 18.302505 ], [ -64.709904, 18.302505 ], [ -64.709944, 18.302482 ], [ -64.709971, 18.302486 ], [ -64.710003, 18.302438 ], [ -64.710015, 18.302411 ], [ -64.710031, 18.302411 ], [ -64.71007, 18.302399 ], [ -64.710094, 18.302352 ], [ -64.710074, 18.302312 ], [ -64.71005, 18.302296 ], [ -64.710011, 18.302253 ], [ -64.709999, 18.302217 ], [ -64.710003, 18.302162 ], [ -64.709956, 18.302135 ], [ -64.709936, 18.302107 ], [ -64.709936, 18.302083 ], [ -64.70996, 18.302079 ], [ -64.709944, 18.302044 ], [ -64.709908, 18.301993 ], [ -64.709877, 18.301925 ] ], [ [ -64.777151, 18.353786 ], [ -64.777076, 18.353709 ], [ -64.777036, 18.353692 ], [ -64.776943, 18.353725 ], [ -64.776938, 18.35378 ], [ -64.776891, 18.353846 ], [ -64.776861, 18.353876 ], [ -64.776845, 18.353896 ], [ -64.776753, 18.353929 ], [ -64.776695, 18.353962 ], [ -64.776695, 18.353995 ], [ -64.776764, 18.35405 ], [ -64.776793, 18.354149 ], [ -64.776764, 18.354226 ], [ -64.776759, 18.354293 ], [ -64.776776, 18.354337 ], [ -64.776834, 18.35437 ], [ -64.776886, 18.35437 ], [ -64.77696, 18.354359 ], [ -64.776995, 18.35432 ], [ -64.777122, 18.354334 ], [ -64.77718, 18.354287 ], [ -64.777295, 18.354254 ], [ -64.777324, 18.354227 ], [ -64.777348, 18.354188 ], [ -64.777339, 18.354158 ], [ -64.777394, 18.354085 ], [ -64.77737, 18.354037 ], [ -64.777353, 18.354006 ], [ -64.777281, 18.353889 ], [ -64.777237, 18.353827 ], [ -64.777151, 18.353786 ] ], [ [ -64.796577, 18.356397 ], [ -64.796611, 18.356376 ], [ -64.796657, 18.356315 ], [ -64.796744, 18.356244 ], [ -64.796847, 18.356123 ], [ -64.796945, 18.356084 ], [ -64.796986, 18.356095 ], [ -64.797004, 18.356086 ], [ -64.797021, 18.356079 ], [ -64.797079, 18.356044 ], [ -64.797136, 18.355963 ], [ -64.797159, 18.355902 ], [ -64.797142, 18.355698 ], [ -64.797118, 18.355643 ], [ -64.797072, 18.355577 ], [ -64.797015, 18.355533 ], [ -64.79698, 18.355478 ], [ -64.796929, 18.355467 ], [ -64.796871, 18.355473 ], [ -64.796761, 18.3555 ], [ -64.79664, 18.355715 ], [ -64.796634, 18.355776 ], [ -64.796622, 18.355831 ], [ -64.796622, 18.355875 ], [ -64.79664, 18.35593 ], [ -64.796618, 18.355974 ], [ -64.796582, 18.355996 ], [ -64.796519, 18.356018 ], [ -64.796443, 18.356056 ], [ -64.796432, 18.356062 ], [ -64.796392, 18.356078 ], [ -64.796363, 18.356095 ], [ -64.796357, 18.35615 ], [ -64.796369, 18.35626 ], [ -64.796415, 18.35637 ], [ -64.796467, 18.356414 ], [ -64.796496, 18.356402 ], [ -64.796536, 18.356403 ], [ -64.796577, 18.356397 ] ], [ [ -64.790157, 18.355472 ], [ -64.790174, 18.355401 ], [ -64.790173, 18.3554 ], [ -64.790128, 18.355285 ], [ -64.790082, 18.355191 ], [ -64.790024, 18.355131 ], [ -64.789967, 18.355086 ], [ -64.789857, 18.355026 ], [ -64.789782, 18.354999 ], [ -64.789701, 18.3549 ], [ -64.789574, 18.354778 ], [ -64.78954, 18.354712 ], [ -64.789401, 18.35453 ], [ -64.789322, 18.354441 ], [ -64.789257, 18.354398 ], [ -64.789067, 18.354343 ], [ -64.788923, 18.35436 ], [ -64.788859, 18.354398 ], [ -64.788761, 18.354475 ], [ -64.788686, 18.354558 ], [ -64.788634, 18.354712 ], [ -64.788634, 18.354795 ], [ -64.78868, 18.354905 ], [ -64.788693, 18.355048 ], [ -64.788696, 18.355053 ], [ -64.788779, 18.355192 ], [ -64.788951, 18.355445 ], [ -64.788975, 18.355555 ], [ -64.789032, 18.355665 ], [ -64.789061, 18.355731 ], [ -64.789107, 18.355781 ], [ -64.789142, 18.355803 ], [ -64.789187, 18.355846 ], [ -64.78924, 18.355863 ], [ -64.789292, 18.355841 ], [ -64.789356, 18.355823 ], [ -64.789436, 18.355819 ], [ -64.789586, 18.355847 ], [ -64.789667, 18.355858 ], [ -64.789782, 18.355858 ], [ -64.789851, 18.355825 ], [ -64.790038, 18.35564 ], [ -64.790082, 18.355599 ], [ -64.790111, 18.355538 ], [ -64.790157, 18.355472 ] ], [ [ -64.807448, 18.331278 ], [ -64.807587, 18.331268 ], [ -64.807621, 18.331273 ], [ -64.807674, 18.331251 ], [ -64.807794, 18.331251 ], [ -64.807903, 18.331234 ], [ -64.80795, 18.331233 ], [ -64.807978, 18.331218 ], [ -64.808002, 18.331196 ], [ -64.808036, 18.331141 ], [ -64.807984, 18.331042 ], [ -64.807955, 18.330953 ], [ -64.807944, 18.330892 ], [ -64.807904, 18.330777 ], [ -64.80788, 18.330694 ], [ -64.80784, 18.33059 ], [ -64.807823, 18.33043 ], [ -64.807823, 18.330403 ], [ -64.807812, 18.330335 ], [ -64.807794, 18.330304 ], [ -64.807788, 18.330268 ], [ -64.807778, 18.330209 ], [ -64.807754, 18.330122 ], [ -64.807677, 18.329869 ], [ -64.807668, 18.329835 ], [ -64.807638, 18.329791 ], [ -64.807609, 18.329692 ], [ -64.807511, 18.329439 ], [ -64.807448, 18.329329 ], [ -64.80739, 18.329257 ], [ -64.80735, 18.32923 ], [ -64.807263, 18.329136 ], [ -64.807246, 18.329103 ], [ -64.807205, 18.32902 ], [ -64.8072, 18.328982 ], [ -64.807172, 18.328877 ], [ -64.807154, 18.328844 ], [ -64.807097, 18.328777 ], [ -64.807033, 18.328734 ], [ -64.806992, 18.328701 ], [ -64.806883, 18.328623 ], [ -64.80682, 18.328596 ], [ -64.806785, 18.328602 ], [ -64.806751, 18.328628 ], [ -64.806722, 18.328665 ], [ -64.806727, 18.328696 ], [ -64.80675, 18.328729 ], [ -64.806779, 18.328762 ], [ -64.806825, 18.328842 ], [ -64.806859, 18.328943 ], [ -64.806889, 18.329002 ], [ -64.806888, 18.329037 ], [ -64.8069, 18.32907 ], [ -64.8069, 18.329107 ], [ -64.806901, 18.329158 ], [ -64.806888, 18.329197 ], [ -64.806883, 18.329234 ], [ -64.806888, 18.329268 ], [ -64.806885, 18.32934 ], [ -64.806877, 18.329433 ], [ -64.806877, 18.329478 ], [ -64.806871, 18.329522 ], [ -64.806889, 18.32963 ], [ -64.806877, 18.329665 ], [ -64.806878, 18.329698 ], [ -64.806865, 18.329736 ], [ -64.806865, 18.329775 ], [ -64.806878, 18.329867 ], [ -64.806871, 18.329907 ], [ -64.806871, 18.329962 ], [ -64.806878, 18.330012 ], [ -64.806877, 18.33005 ], [ -64.806884, 18.330077 ], [ -64.806901, 18.330226 ], [ -64.806917, 18.330309 ], [ -64.806941, 18.330348 ], [ -64.806969, 18.330469 ], [ -64.806992, 18.330557 ], [ -64.806998, 18.33059 ], [ -64.807022, 18.330627 ], [ -64.807033, 18.330667 ], [ -64.807051, 18.330699 ], [ -64.807061, 18.330739 ], [ -64.807084, 18.330783 ], [ -64.807108, 18.330875 ], [ -64.807125, 18.330915 ], [ -64.807131, 18.330954 ], [ -64.807165, 18.331042 ], [ -64.807177, 18.331075 ], [ -64.807206, 18.331108 ], [ -64.807253, 18.331174 ], [ -64.80728, 18.331201 ], [ -64.807334, 18.331223 ], [ -64.807448, 18.331278 ] ], [ [ -64.792131, 18.353898 ], [ -64.792153, 18.353941 ], [ -64.79221, 18.353963 ], [ -64.792256, 18.353947 ], [ -64.79228, 18.353943 ], [ -64.792343, 18.353936 ], [ -64.792395, 18.353936 ], [ -64.792441, 18.353958 ], [ -64.792481, 18.354068 ], [ -64.792499, 18.354173 ], [ -64.792539, 18.354255 ], [ -64.792547, 18.354259 ], [ -64.792596, 18.354288 ], [ -64.792614, 18.354299 ], [ -64.792724, 18.354343 ], [ -64.79276, 18.354367 ], [ -64.792805, 18.354397 ], [ -64.792862, 18.35441 ], [ -64.793035, 18.35452 ], [ -64.793093, 18.354536 ], [ -64.793162, 18.354542 ], [ -64.793254, 18.354514 ], [ -64.793341, 18.35447 ], [ -64.793427, 18.354459 ], [ -64.793519, 18.354344 ], [ -64.793571, 18.354288 ], [ -64.793548, 18.354195 ], [ -64.793548, 18.354134 ], [ -64.79356, 18.354079 ], [ -64.793583, 18.354019 ], [ -64.793618, 18.35398 ], [ -64.79367, 18.353959 ], [ -64.793734, 18.353935 ], [ -64.793791, 18.353931 ], [ -64.793837, 18.353914 ], [ -64.793877, 18.353881 ], [ -64.793993, 18.353743 ], [ -64.794039, 18.353611 ], [ -64.794067, 18.353545 ], [ -64.794102, 18.353484 ], [ -64.794142, 18.353424 ], [ -64.7942, 18.353369 ], [ -64.794281, 18.353325 ], [ -64.794339, 18.353314 ], [ -64.794402, 18.353275 ], [ -64.794465, 18.353198 ], [ -64.794454, 18.353044 ], [ -64.794408, 18.352972 ], [ -64.794315, 18.352895 ], [ -64.794085, 18.352745 ], [ -64.793981, 18.352697 ], [ -64.793883, 18.35257 ], [ -64.793791, 18.352526 ], [ -64.79371, 18.352499 ], [ -64.793641, 18.352488 ], [ -64.793554, 18.352493 ], [ -64.793456, 18.352515 ], [ -64.793341, 18.352532 ], [ -64.793225, 18.352532 ], [ -64.792983, 18.352499 ], [ -64.792874, 18.352465 ], [ -64.792793, 18.352432 ], [ -64.792712, 18.35235 ], [ -64.79262, 18.352273 ], [ -64.792482, 18.352047 ], [ -64.792395, 18.351937 ], [ -64.792326, 18.351909 ], [ -64.792251, 18.351893 ], [ -64.792232, 18.351902 ], [ -64.792141, 18.351953 ], [ -64.792095, 18.35203 ], [ -64.792043, 18.352058 ], [ -64.791997, 18.352091 ], [ -64.79187, 18.35208 ], [ -64.791812, 18.352036 ], [ -64.791726, 18.352008 ], [ -64.791605, 18.352074 ], [ -64.791576, 18.352168 ], [ -64.791639, 18.352306 ], [ -64.791697, 18.352449 ], [ -64.79176, 18.352554 ], [ -64.791764, 18.352625 ], [ -64.791766, 18.352675 ], [ -64.791778, 18.352801 ], [ -64.791774, 18.352898 ], [ -64.791772, 18.352983 ], [ -64.79183, 18.353148 ], [ -64.791813, 18.353268 ], [ -64.791824, 18.353352 ], [ -64.79191, 18.353517 ], [ -64.791968, 18.353611 ], [ -64.792007, 18.353656 ], [ -64.792043, 18.353699 ], [ -64.792066, 18.353776 ], [ -64.792131, 18.353898 ] ], [ [ -64.759619, 18.369678 ], [ -64.759573, 18.369639 ], [ -64.759544, 18.369567 ], [ -64.759504, 18.369501 ], [ -64.759435, 18.369452 ], [ -64.759377, 18.369435 ], [ -64.759227, 18.369501 ], [ -64.759181, 18.369485 ], [ -64.759175, 18.369413 ], [ -64.759077, 18.36933 ], [ -64.758956, 18.369325 ], [ -64.758748, 18.36933 ], [ -64.758448, 18.369347 ], [ -64.757929, 18.369396 ], [ -64.757646, 18.369407 ], [ -64.757496, 18.369446 ], [ -64.757375, 18.369462 ], [ -64.75722, 18.36944 ], [ -64.757154, 18.369436 ], [ -64.757035, 18.369429 ], [ -64.756789, 18.369404 ], [ -64.756637, 18.369335 ], [ -64.756466, 18.36931 ], [ -64.75632, 18.36928 ], [ -64.756199, 18.369286 ], [ -64.755997, 18.369242 ], [ -64.755853, 18.369225 ], [ -64.755766, 18.36922 ], [ -64.755587, 18.369256 ], [ -64.755497, 18.369296 ], [ -64.755408, 18.369396 ], [ -64.755253, 18.369704 ], [ -64.755056, 18.369946 ], [ -64.755074, 18.370034 ], [ -64.755045, 18.37015 ], [ -64.755018, 18.370293 ], [ -64.75501, 18.370392 ], [ -64.75501, 18.370547 ], [ -64.755039, 18.370616 ], [ -64.755027, 18.370662 ], [ -64.755062, 18.370717 ], [ -64.755102, 18.370734 ], [ -64.755125, 18.370761 ], [ -64.755304, 18.370877 ], [ -64.755402, 18.37091 ], [ -64.755536, 18.370974 ], [ -64.755656, 18.371009 ], [ -64.755783, 18.371017 ], [ -64.755875, 18.371053 ], [ -64.756019, 18.371087 ], [ -64.756152, 18.371131 ], [ -64.756262, 18.371153 ], [ -64.756423, 18.371125 ], [ -64.756613, 18.371131 ], [ -64.756775, 18.371147 ], [ -64.75689, 18.371147 ], [ -64.756965, 18.371142 ], [ -64.757052, 18.371161 ], [ -64.757098, 18.371186 ], [ -64.75719, 18.371202 ], [ -64.757248, 18.371208 ], [ -64.757352, 18.37123 ], [ -64.757433, 18.371219 ], [ -64.7576, 18.371114 ], [ -64.757675, 18.371021 ], [ -64.757912, 18.370668 ], [ -64.75801, 18.370586 ], [ -64.758021, 18.370536 ], [ -64.75805, 18.370476 ], [ -64.758108, 18.370382 ], [ -64.758154, 18.370344 ], [ -64.758263, 18.370277 ], [ -64.758344, 18.370244 ], [ -64.758413, 18.370222 ], [ -64.758523, 18.370217 ], [ -64.758696, 18.370178 ], [ -64.758777, 18.370123 ], [ -64.758927, 18.37009 ], [ -64.759008, 18.370079 ], [ -64.759077, 18.370079 ], [ -64.759146, 18.370074 ], [ -64.759204, 18.370041 ], [ -64.759267, 18.369997 ], [ -64.759264, 18.369991 ], [ -64.75925, 18.369953 ], [ -64.75925, 18.369837 ], [ -64.759263, 18.36981 ], [ -64.759282, 18.369808 ], [ -64.759325, 18.369777 ], [ -64.759384, 18.36978 ], [ -64.759411, 18.369793 ], [ -64.759481, 18.36992 ], [ -64.759515, 18.369947 ], [ -64.759592, 18.36993 ], [ -64.759642, 18.369953 ], [ -64.759682, 18.369997 ], [ -64.759694, 18.370024 ], [ -64.759752, 18.370068 ], [ -64.75978, 18.37008 ], [ -64.759874, 18.370061 ], [ -64.759919, 18.37003 ], [ -64.760052, 18.36998 ], [ -64.760271, 18.369788 ], [ -64.760329, 18.36976 ], [ -64.76038, 18.369716 ], [ -64.760421, 18.369628 ], [ -64.760409, 18.36954 ], [ -64.760386, 18.369496 ], [ -64.760329, 18.369463 ], [ -64.760288, 18.36943 ], [ -64.76019, 18.369435 ], [ -64.760006, 18.369474 ], [ -64.759913, 18.369512 ], [ -64.759844, 18.369589 ], [ -64.759829, 18.369627 ], [ -64.759804, 18.369661 ], [ -64.759758, 18.3697 ], [ -64.759683, 18.369683 ], [ -64.759619, 18.369678 ] ], [ [ -64.649904, 18.325097 ], [ -64.649918, 18.325144 ], [ -64.64991, 18.325241 ], [ -64.649857, 18.325233 ], [ -64.649796, 18.325214 ], [ -64.649788, 18.325287 ], [ -64.649756, 18.325397 ], [ -64.649704, 18.3255 ], [ -64.649701, 18.32564 ], [ -64.649673, 18.325726 ], [ -64.649666, 18.325804 ], [ -64.649673, 18.32588 ], [ -64.649673, 18.325933 ], [ -64.649628, 18.325949 ], [ -64.649574, 18.325974 ], [ -64.649582, 18.326071 ], [ -64.649559, 18.326189 ], [ -64.649529, 18.32629 ], [ -64.649483, 18.326508 ], [ -64.649452, 18.326578 ], [ -64.649372, 18.326685 ], [ -64.649362, 18.326776 ], [ -64.649338, 18.326895 ], [ -64.649336, 18.327013 ], [ -64.649327, 18.327097 ], [ -64.649353, 18.327141 ], [ -64.649317, 18.327185 ], [ -64.649223, 18.327091 ], [ -64.649185, 18.327024 ], [ -64.649116, 18.326977 ], [ -64.649077, 18.326924 ], [ -64.649078, 18.326982 ], [ -64.649002, 18.327035 ], [ -64.64888, 18.327169 ], [ -64.648811, 18.327246 ], [ -64.648773, 18.327387 ], [ -64.648773, 18.327444 ], [ -64.648758, 18.327623 ], [ -64.648719, 18.327828 ], [ -64.648671, 18.327974 ], [ -64.648643, 18.328049 ], [ -64.648661, 18.328155 ], [ -64.648816, 18.328275 ], [ -64.649055, 18.328423 ], [ -64.649162, 18.328447 ], [ -64.6493, 18.328436 ], [ -64.649338, 18.328449 ], [ -64.649475, 18.328562 ], [ -64.649529, 18.328585 ], [ -64.649663, 18.328572 ], [ -64.649811, 18.328547 ], [ -64.650002, 18.328512 ], [ -64.650079, 18.328453 ], [ -64.65033, 18.328173 ], [ -64.650414, 18.328089 ], [ -64.650544, 18.32802 ], [ -64.65062, 18.32799 ], [ -64.650726, 18.327986 ], [ -64.650841, 18.327988 ], [ -64.651039, 18.328001 ], [ -64.651184, 18.327957 ], [ -64.651245, 18.327862 ], [ -64.651268, 18.327663 ], [ -64.651245, 18.327543 ], [ -64.651209, 18.327342 ], [ -64.651227, 18.327207 ], [ -64.651259, 18.326968 ], [ -64.651367, 18.326826 ], [ -64.651474, 18.326723 ], [ -64.651566, 18.326628 ], [ -64.651665, 18.326525 ], [ -64.651787, 18.326382 ], [ -64.65184, 18.32626 ], [ -64.651821, 18.326091 ], [ -64.651818, 18.325952 ], [ -64.651815, 18.325757 ], [ -64.651661, 18.32559 ], [ -64.651565, 18.325486 ], [ -64.651512, 18.325544 ], [ -64.651443, 18.325518 ], [ -64.651401, 18.325416 ], [ -64.651318, 18.325326 ], [ -64.651284, 18.325366 ], [ -64.651253, 18.325264 ], [ -64.651236, 18.325118 ], [ -64.651169, 18.325054 ], [ -64.651111, 18.324928 ], [ -64.651062, 18.324854 ], [ -64.650925, 18.324768 ], [ -64.65088, 18.324648 ], [ -64.65078, 18.32457 ], [ -64.650665, 18.32452 ], [ -64.65057, 18.324487 ], [ -64.650497, 18.324422 ], [ -64.650444, 18.324162 ], [ -64.65036, 18.324102 ], [ -64.650219, 18.324049 ], [ -64.65023, 18.324118 ], [ -64.650116, 18.324257 ], [ -64.650146, 18.324432 ], [ -64.65011, 18.324606 ], [ -64.649963, 18.324726 ], [ -64.649893, 18.324799 ], [ -64.649934, 18.324936 ], [ -64.649904, 18.325097 ] ], [ [ -64.797608, 18.369065 ], [ -64.797678, 18.369142 ], [ -64.797787, 18.369142 ], [ -64.79792, 18.369087 ], [ -64.798001, 18.369076 ], [ -64.79807, 18.369076 ], [ -64.798127, 18.369082 ], [ -64.798179, 18.369093 ], [ -64.798341, 18.369104 ], [ -64.798416, 18.369043 ], [ -64.798508, 18.36901 ], [ -64.798606, 18.368982 ], [ -64.798808, 18.368938 ], [ -64.798912, 18.368927 ], [ -64.799016, 18.368878 ], [ -64.799235, 18.368839 ], [ -64.799345, 18.368811 ], [ -64.799466, 18.368817 ], [ -64.799552, 18.368812 ], [ -64.799581, 18.368806 ], [ -64.799696, 18.368839 ], [ -64.799731, 18.368845 ], [ -64.799773, 18.368836 ], [ -64.799789, 18.368834 ], [ -64.799979, 18.368751 ], [ -64.800152, 18.368772 ], [ -64.800325, 18.368762 ], [ -64.800504, 18.368735 ], [ -64.800678, 18.368728 ], [ -64.800844, 18.36874 ], [ -64.801046, 18.368724 ], [ -64.801208, 18.368707 ], [ -64.801386, 18.368696 ], [ -64.801571, 18.368691 ], [ -64.80175, 18.368757 ], [ -64.801929, 18.368768 ], [ -64.802027, 18.368658 ], [ -64.802286, 18.368575 ], [ -64.802403, 18.368546 ], [ -64.802644, 18.368487 ], [ -64.802817, 18.368377 ], [ -64.80299, 18.368355 ], [ -64.803019, 18.368459 ], [ -64.803002, 18.368492 ], [ -64.80318, 18.36852 ], [ -64.803348, 18.368481 ], [ -64.803405, 18.368476 ], [ -64.803515, 18.368448 ], [ -64.803896, 18.368366 ], [ -64.804057, 18.368327 ], [ -64.80423, 18.368267 ], [ -64.804599, 18.368151 ], [ -64.804726, 18.368123 ], [ -64.804778, 18.368107 ], [ -64.804957, 18.368041 ], [ -64.805078, 18.367947 ], [ -64.805332, 18.367776 ], [ -64.80547, 18.367738 ], [ -64.805655, 18.367749 ], [ -64.805834, 18.36771 ], [ -64.806012, 18.367628 ], [ -64.806105, 18.3676 ], [ -64.806138, 18.367603 ], [ -64.806203, 18.36761 ], [ -64.806255, 18.3676 ], [ -64.80637, 18.36749 ], [ -64.806457, 18.367429 ], [ -64.806543, 18.367396 ], [ -64.806728, 18.367374 ], [ -64.806907, 18.367264 ], [ -64.807085, 18.367225 ], [ -64.807247, 18.367214 ], [ -64.807431, 18.367209 ], [ -64.807783, 18.36722 ], [ -64.807968, 18.367192 ], [ -64.808147, 18.367104 ], [ -64.80817, 18.367077 ], [ -64.808204, 18.366983 ], [ -64.808181, 18.36695 ], [ -64.808147, 18.366923 ], [ -64.808095, 18.366895 ], [ -64.807974, 18.366893 ], [ -64.807783, 18.366912 ], [ -64.807698, 18.366911 ], [ -64.80761, 18.366928 ], [ -64.807426, 18.366978 ], [ -64.807253, 18.366978 ], [ -64.807143, 18.366912 ], [ -64.807062, 18.366901 ], [ -64.806895, 18.366801 ], [ -64.806728, 18.366796 ], [ -64.806549, 18.366818 ], [ -64.806364, 18.366763 ], [ -64.806197, 18.366823 ], [ -64.806071, 18.366829 ], [ -64.806019, 18.366832 ], [ -64.805649, 18.366862 ], [ -64.805482, 18.366868 ], [ -64.805291, 18.366857 ], [ -64.805118, 18.366835 ], [ -64.804767, 18.366829 ], [ -64.804398, 18.36685 ], [ -64.804236, 18.366834 ], [ -64.804057, 18.366801 ], [ -64.803878, 18.366862 ], [ -64.803682, 18.366945 ], [ -64.803521, 18.366998 ], [ -64.803336, 18.367033 ], [ -64.803163, 18.367044 ], [ -64.802984, 18.367115 ], [ -64.802811, 18.367159 ], [ -64.802621, 18.367171 ], [ -64.802511, 18.367292 ], [ -64.802465, 18.367308 ], [ -64.802275, 18.367336 ], [ -64.80209, 18.367391 ], [ -64.801917, 18.367396 ], [ -64.801652, 18.367473 ], [ -64.801375, 18.367561 ], [ -64.80104, 18.367644 ], [ -64.800839, 18.367716 ], [ -64.800671, 18.367815 ], [ -64.800504, 18.367881 ], [ -64.800314, 18.367908 ], [ -64.8001, 18.367997 ], [ -64.799962, 18.368074 ], [ -64.799789, 18.368162 ], [ -64.799645, 18.368245 ], [ -64.799581, 18.368283 ], [ -64.799466, 18.36831 ], [ -64.799379, 18.368316 ], [ -64.799287, 18.368338 ], [ -64.799114, 18.36841 ], [ -64.799045, 18.368426 ], [ -64.798941, 18.368487 ], [ -64.798843, 18.368502 ], [ -64.798693, 18.368569 ], [ -64.798606, 18.368602 ], [ -64.798358, 18.368718 ], [ -64.798237, 18.368735 ], [ -64.798168, 18.368762 ], [ -64.798076, 18.368817 ], [ -64.797995, 18.368845 ], [ -64.797891, 18.368867 ], [ -64.797799, 18.368927 ], [ -64.797729, 18.368955 ], [ -64.79766, 18.368999 ], [ -64.797614, 18.369021 ], [ -64.797608, 18.369065 ] ], [ [ -64.815454, 18.360468 ], [ -64.8155, 18.36049 ], [ -64.815535, 18.360495 ], [ -64.81557, 18.360483 ], [ -64.815621, 18.360473 ], [ -64.815656, 18.360457 ], [ -64.815743, 18.360429 ], [ -64.815783, 18.360412 ], [ -64.815812, 18.360385 ], [ -64.815887, 18.360341 ], [ -64.815962, 18.360319 ], [ -64.816049, 18.360334 ], [ -64.816089, 18.36033 ], [ -64.816124, 18.360317 ], [ -64.816217, 18.36024 ], [ -64.81625, 18.360236 ], [ -64.816283, 18.360241 ], [ -64.816319, 18.360253 ], [ -64.816372, 18.360256 ], [ -64.816412, 18.360269 ], [ -64.816597, 18.360268 ], [ -64.816666, 18.360278 ], [ -64.816735, 18.360323 ], [ -64.816764, 18.360346 ], [ -64.816787, 18.360372 ], [ -64.816821, 18.360396 ], [ -64.816937, 18.360427 ], [ -64.816971, 18.360429 ], [ -64.816981, 18.360435 ], [ -64.817017, 18.360456 ], [ -64.817046, 18.360489 ], [ -64.817081, 18.360506 ], [ -64.817133, 18.360572 ], [ -64.817161, 18.3606 ], [ -64.817191, 18.360614 ], [ -64.817225, 18.360616 ], [ -64.81726, 18.360605 ], [ -64.817294, 18.360611 ], [ -64.817369, 18.360577 ], [ -64.817404, 18.360553 ], [ -64.817438, 18.360544 ], [ -64.817513, 18.3605 ], [ -64.817566, 18.360511 ], [ -64.817594, 18.360533 ], [ -64.817681, 18.360522 ], [ -64.81771, 18.360499 ], [ -64.817744, 18.360484 ], [ -64.817779, 18.360478 ], [ -64.817813, 18.360467 ], [ -64.8179, 18.360456 ], [ -64.817935, 18.360449 ], [ -64.817986, 18.360445 ], [ -64.818021, 18.360451 ], [ -64.81809, 18.360434 ], [ -64.818223, 18.360431 ], [ -64.818298, 18.360423 ], [ -64.818344, 18.360423 ], [ -64.818384, 18.360429 ], [ -64.818419, 18.360422 ], [ -64.818453, 18.360423 ], [ -64.818569, 18.360411 ], [ -64.818639, 18.360422 ], [ -64.81872, 18.360412 ], [ -64.818846, 18.360411 ], [ -64.818955, 18.360434 ], [ -64.818991, 18.360424 ], [ -64.81906, 18.360416 ], [ -64.819094, 18.360418 ], [ -64.819129, 18.360411 ], [ -64.81925, 18.360412 ], [ -64.819301, 18.360423 ], [ -64.819377, 18.360428 ], [ -64.819452, 18.360444 ], [ -64.819486, 18.360462 ], [ -64.819555, 18.360462 ], [ -64.81966, 18.3605 ], [ -64.819694, 18.360517 ], [ -64.819728, 18.360522 ], [ -64.819763, 18.360522 ], [ -64.819798, 18.360515 ], [ -64.819901, 18.360521 ], [ -64.819936, 18.36052 ], [ -64.81997, 18.360528 ], [ -64.820004, 18.360522 ], [ -64.820156, 18.360516 ], [ -64.820201, 18.360511 ], [ -64.820288, 18.360509 ], [ -64.820329, 18.360505 ], [ -64.820415, 18.360482 ], [ -64.820449, 18.360467 ], [ -64.820491, 18.360461 ], [ -64.820524, 18.360451 ], [ -64.820652, 18.360432 ], [ -64.820727, 18.360427 ], [ -64.820778, 18.36044 ], [ -64.820848, 18.360439 ], [ -64.820899, 18.360456 ], [ -64.820969, 18.360461 ], [ -64.821072, 18.360489 ], [ -64.821164, 18.360489 ], [ -64.82124, 18.360499 ], [ -64.821274, 18.3605 ], [ -64.821402, 18.360527 ], [ -64.821435, 18.360544 ], [ -64.821476, 18.360548 ], [ -64.82154, 18.360586 ], [ -64.821666, 18.360676 ], [ -64.821683, 18.360709 ], [ -64.821776, 18.360753 ], [ -64.82181, 18.360786 ], [ -64.821845, 18.360803 ], [ -64.821874, 18.360829 ], [ -64.821978, 18.36088 ], [ -64.822077, 18.360961 ], [ -64.822105, 18.360979 ], [ -64.822168, 18.361034 ], [ -64.82222, 18.361034 ], [ -64.822255, 18.361007 ], [ -64.822266, 18.360974 ], [ -64.822284, 18.36094 ], [ -64.822318, 18.360836 ], [ -64.822352, 18.36083 ], [ -64.82248, 18.360862 ], [ -64.822514, 18.36088 ], [ -64.822555, 18.36089 ], [ -64.82263, 18.360924 ], [ -64.822699, 18.360939 ], [ -64.822785, 18.360979 ], [ -64.822826, 18.36099 ], [ -64.823045, 18.361084 ], [ -64.823114, 18.361093 ], [ -64.823166, 18.361111 ], [ -64.823235, 18.361087 ], [ -64.823357, 18.361066 ], [ -64.823391, 18.361078 ], [ -64.823426, 18.361076 ], [ -64.823495, 18.361087 ], [ -64.823564, 18.361077 ], [ -64.823584, 18.361069 ], [ -64.82365, 18.361045 ], [ -64.823725, 18.361012 ], [ -64.823767, 18.360967 ], [ -64.823858, 18.360885 ], [ -64.823893, 18.360869 ], [ -64.823962, 18.360857 ], [ -64.824071, 18.360851 ], [ -64.824107, 18.360851 ], [ -64.824141, 18.360841 ], [ -64.824194, 18.360782 ], [ -64.824216, 18.360753 ], [ -64.82425, 18.360731 ], [ -64.824297, 18.360718 ], [ -64.824331, 18.360715 ], [ -64.824366, 18.360701 ], [ -64.824417, 18.360709 ], [ -64.824487, 18.360703 ], [ -64.824544, 18.360682 ], [ -64.824786, 18.360648 ], [ -64.824862, 18.360631 ], [ -64.824931, 18.360608 ], [ -64.824959, 18.360588 ], [ -64.824994, 18.36058 ], [ -64.825059, 18.360529 ], [ -64.825093, 18.360498 ], [ -64.825127, 18.360478 ], [ -64.825162, 18.36047 ], [ -64.825249, 18.36046 ], [ -64.825271, 18.360434 ], [ -64.825271, 18.360377 ], [ -64.825277, 18.36034 ], [ -64.825369, 18.360257 ], [ -64.825369, 18.360226 ], [ -64.82534, 18.360197 ], [ -64.825306, 18.36018 ], [ -64.825248, 18.360164 ], [ -64.825213, 18.360147 ], [ -64.82519, 18.360081 ], [ -64.825185, 18.360074 ], [ -64.825167, 18.360048 ], [ -64.825132, 18.359949 ], [ -64.825115, 18.359916 ], [ -64.825092, 18.35985 ], [ -64.825075, 18.359817 ], [ -64.825057, 18.359767 ], [ -64.82504, 18.359734 ], [ -64.824988, 18.359696 ], [ -64.824954, 18.359685 ], [ -64.824919, 18.359685 ], [ -64.824884, 18.359668 ], [ -64.824775, 18.359646 ], [ -64.824717, 18.35963 ], [ -64.824596, 18.359619 ], [ -64.824561, 18.359608 ], [ -64.824527, 18.359602 ], [ -64.824446, 18.359575 ], [ -64.824377, 18.359563 ], [ -64.824342, 18.359569 ], [ -64.824256, 18.359553 ], [ -64.824094, 18.359481 ], [ -64.824025, 18.359459 ], [ -64.823823, 18.359382 ], [ -64.823748, 18.35936 ], [ -64.823714, 18.359354 ], [ -64.823679, 18.359327 ], [ -64.823604, 18.359305 ], [ -64.823569, 18.359288 ], [ -64.823535, 18.359288 ], [ -64.823454, 18.359261 ], [ -64.823391, 18.359228 ], [ -64.823304, 18.3592 ], [ -64.8232, 18.359151 ], [ -64.823149, 18.359115 ], [ -64.823137, 18.359107 ], [ -64.823096, 18.359085 ], [ -64.823039, 18.359041 ], [ -64.823004, 18.359018 ], [ -64.82297, 18.359007 ], [ -64.822941, 18.358985 ], [ -64.822867, 18.358941 ], [ -64.822831, 18.35893 ], [ -64.822762, 18.358903 ], [ -64.822675, 18.358886 ], [ -64.822641, 18.358886 ], [ -64.822554, 18.358875 ], [ -64.822485, 18.358875 ], [ -64.822399, 18.35887 ], [ -64.822352, 18.35887 ], [ -64.822318, 18.358881 ], [ -64.822277, 18.358875 ], [ -64.822243, 18.358881 ], [ -64.822139, 18.358881 ], [ -64.822104, 18.358875 ], [ -64.822035, 18.358886 ], [ -64.82196, 18.358886 ], [ -64.821747, 18.358919 ], [ -64.821631, 18.358942 ], [ -64.821545, 18.358942 ], [ -64.821424, 18.358964 ], [ -64.821389, 18.358964 ], [ -64.821354, 18.358975 ], [ -64.821263, 18.358978 ], [ -64.821193, 18.358997 ], [ -64.821158, 18.359002 ], [ -64.821118, 18.359013 ], [ -64.821078, 18.35903 ], [ -64.821008, 18.359041 ], [ -64.820876, 18.359079 ], [ -64.820842, 18.359084 ], [ -64.820778, 18.359107 ], [ -64.820737, 18.359107 ], [ -64.820668, 18.359129 ], [ -64.820593, 18.35914 ], [ -64.820559, 18.35914 ], [ -64.820437, 18.359123 ], [ -64.820403, 18.359112 ], [ -64.820328, 18.359101 ], [ -64.820287, 18.359101 ], [ -64.820218, 18.359057 ], [ -64.820045, 18.358991 ], [ -64.820005, 18.358968 ], [ -64.81997, 18.358964 ], [ -64.819895, 18.358931 ], [ -64.819862, 18.358924 ], [ -64.819792, 18.358898 ], [ -64.819716, 18.358887 ], [ -64.819671, 18.358863 ], [ -64.81959, 18.358841 ], [ -64.819521, 18.35883 ], [ -64.81948, 18.358832 ], [ -64.819446, 18.35882 ], [ -64.819411, 18.358821 ], [ -64.819376, 18.358809 ], [ -64.819267, 18.358799 ], [ -64.819134, 18.358765 ], [ -64.819025, 18.358727 ], [ -64.818944, 18.358705 ], [ -64.8189, 18.358682 ], [ -64.818869, 18.358677 ], [ -64.818748, 18.358639 ], [ -64.818713, 18.358622 ], [ -64.818678, 18.358617 ], [ -64.818609, 18.358588 ], [ -64.818574, 18.358584 ], [ -64.81854, 18.358567 ], [ -64.818482, 18.358556 ], [ -64.818443, 18.358538 ], [ -64.818413, 18.358534 ], [ -64.818384, 18.358523 ], [ -64.818332, 18.358516 ], [ -64.818251, 18.35854 ], [ -64.8182, 18.358561 ], [ -64.818136, 18.358567 ], [ -64.818079, 18.358562 ], [ -64.818008, 18.358584 ], [ -64.817975, 18.358584 ], [ -64.817888, 18.3586 ], [ -64.817853, 18.358595 ], [ -64.817812, 18.358566 ], [ -64.81779, 18.35854 ], [ -64.817745, 18.358529 ], [ -64.817675, 18.358529 ], [ -64.817623, 18.358523 ], [ -64.817553, 18.358501 ], [ -64.817502, 18.358495 ], [ -64.817341, 18.358433 ], [ -64.817231, 18.358389 ], [ -64.817069, 18.358342 ], [ -64.817035, 18.358323 ], [ -64.817, 18.358314 ], [ -64.816966, 18.358297 ], [ -64.816931, 18.358292 ], [ -64.816861, 18.358264 ], [ -64.816827, 18.358242 ], [ -64.816803, 18.35821 ], [ -64.816758, 18.358149 ], [ -64.81673, 18.358121 ], [ -64.816643, 18.358087 ], [ -64.816572, 18.358093 ], [ -64.816533, 18.358083 ], [ -64.816489, 18.358088 ], [ -64.816452, 18.358088 ], [ -64.816412, 18.358103 ], [ -64.816365, 18.35811 ], [ -64.816357, 18.358113 ], [ -64.816325, 18.358132 ], [ -64.81625, 18.358156 ], [ -64.816216, 18.358164 ], [ -64.815898, 18.35832 ], [ -64.815864, 18.358342 ], [ -64.815795, 18.358399 ], [ -64.815725, 18.358446 ], [ -64.815656, 18.358507 ], [ -64.815587, 18.358562 ], [ -64.815478, 18.358661 ], [ -64.815442, 18.358683 ], [ -64.815414, 18.358716 ], [ -64.815344, 18.358782 ], [ -64.815288, 18.358848 ], [ -64.815241, 18.358915 ], [ -64.815194, 18.358997 ], [ -64.815154, 18.359063 ], [ -64.815119, 18.359099 ], [ -64.815108, 18.359129 ], [ -64.815086, 18.359162 ], [ -64.815062, 18.359228 ], [ -64.81505, 18.359311 ], [ -64.815062, 18.359405 ], [ -64.815057, 18.359507 ], [ -64.815079, 18.359658 ], [ -64.815131, 18.359719 ], [ -64.815149, 18.359751 ], [ -64.815177, 18.359785 ], [ -64.815193, 18.359811 ], [ -64.815212, 18.35984 ], [ -64.815235, 18.359867 ], [ -64.81527, 18.359922 ], [ -64.815293, 18.359943 ], [ -64.815322, 18.359982 ], [ -64.815357, 18.360049 ], [ -64.815403, 18.360236 ], [ -64.815402, 18.360269 ], [ -64.815425, 18.360396 ], [ -64.815437, 18.360434 ], [ -64.815454, 18.360468 ] ], [ [ -64.826284, 18.360013 ], [ -64.826269, 18.360059 ], [ -64.826251, 18.360092 ], [ -64.826234, 18.360136 ], [ -64.826202, 18.360269 ], [ -64.826188, 18.360318 ], [ -64.826211, 18.360367 ], [ -64.826234, 18.360389 ], [ -64.82627, 18.360405 ], [ -64.826356, 18.360427 ], [ -64.826472, 18.360464 ], [ -64.826528, 18.360478 ], [ -64.826563, 18.360494 ], [ -64.826616, 18.36051 ], [ -64.826655, 18.360511 ], [ -64.826703, 18.360522 ], [ -64.826742, 18.360522 ], [ -64.826851, 18.360544 ], [ -64.826909, 18.360549 ], [ -64.826955, 18.360548 ], [ -64.827065, 18.36056 ], [ -64.827105, 18.36056 ], [ -64.82714, 18.360571 ], [ -64.827238, 18.360566 ], [ -64.827324, 18.360571 ], [ -64.827382, 18.360571 ], [ -64.827422, 18.360577 ], [ -64.827458, 18.36057 ], [ -64.827527, 18.360571 ], [ -64.827596, 18.360565 ], [ -64.827647, 18.360571 ], [ -64.8277, 18.360571 ], [ -64.82774, 18.360566 ], [ -64.827827, 18.360566 ], [ -64.827878, 18.36056 ], [ -64.827948, 18.360537 ], [ -64.827982, 18.360521 ], [ -64.828091, 18.3604 ], [ -64.828126, 18.360373 ], [ -64.82823, 18.360318 ], [ -64.828283, 18.360313 ], [ -64.828339, 18.360285 ], [ -64.828374, 18.360273 ], [ -64.82841, 18.360269 ], [ -64.828443, 18.360251 ], [ -64.828518, 18.360254 ], [ -64.82857, 18.360258 ], [ -64.828623, 18.360273 ], [ -64.828756, 18.360274 ], [ -64.828818, 18.360262 ], [ -64.828859, 18.360262 ], [ -64.828888, 18.360249 ], [ -64.828951, 18.360235 ], [ -64.828976, 18.360231 ], [ -64.82913, 18.360212 ], [ -64.82917, 18.360202 ], [ -64.829211, 18.360202 ], [ -64.829251, 18.360191 ], [ -64.82939, 18.360168 ], [ -64.829424, 18.360169 ], [ -64.829459, 18.360162 ], [ -64.829712, 18.360054 ], [ -64.829753, 18.360035 ], [ -64.829781, 18.360014 ], [ -64.829862, 18.35997 ], [ -64.829966, 18.359936 ], [ -64.830006, 18.359932 ], [ -64.830041, 18.359911 ], [ -64.830127, 18.359882 ], [ -64.830202, 18.35987 ], [ -64.830318, 18.359848 ], [ -64.830411, 18.359843 ], [ -64.830549, 18.359844 ], [ -64.830641, 18.359849 ], [ -64.830682, 18.359849 ], [ -64.830733, 18.359855 ], [ -64.830785, 18.359866 ], [ -64.83086, 18.35987 ], [ -64.830941, 18.359887 ], [ -64.831004, 18.359888 ], [ -64.831073, 18.359904 ], [ -64.831132, 18.359904 ], [ -64.831183, 18.359888 ], [ -64.831217, 18.359871 ], [ -64.831286, 18.359846 ], [ -64.831392, 18.359804 ], [ -64.831442, 18.359794 ], [ -64.831494, 18.359799 ], [ -64.831546, 18.35981 ], [ -64.831633, 18.359811 ], [ -64.831667, 18.359799 ], [ -64.831703, 18.359778 ], [ -64.831726, 18.359695 ], [ -64.831748, 18.359656 ], [ -64.83184, 18.359596 ], [ -64.831893, 18.35958 ], [ -64.831968, 18.359568 ], [ -64.832002, 18.359574 ], [ -64.832037, 18.35959 ], [ -64.832071, 18.359596 ], [ -64.832106, 18.359623 ], [ -64.832129, 18.359651 ], [ -64.832158, 18.359699 ], [ -64.832239, 18.359782 ], [ -64.832291, 18.359831 ], [ -64.832325, 18.359854 ], [ -64.832446, 18.359893 ], [ -64.832481, 18.359898 ], [ -64.832533, 18.359915 ], [ -64.832561, 18.359942 ], [ -64.832609, 18.359975 ], [ -64.832631, 18.360009 ], [ -64.832671, 18.36003 ], [ -64.832723, 18.360036 ], [ -64.832775, 18.360025 ], [ -64.83281, 18.359998 ], [ -64.83285, 18.359986 ], [ -64.832897, 18.359943 ], [ -64.832942, 18.359888 ], [ -64.832971, 18.35986 ], [ -64.833034, 18.359816 ], [ -64.833087, 18.359788 ], [ -64.833127, 18.35981 ], [ -64.833162, 18.359877 ], [ -64.83319, 18.359904 ], [ -64.833243, 18.359931 ], [ -64.83331, 18.359869 ], [ -64.83338, 18.359799 ], [ -64.833416, 18.359782 ], [ -64.83345, 18.35975 ], [ -64.83349, 18.359739 ], [ -64.833537, 18.359716 ], [ -64.833646, 18.3597 ], [ -64.833698, 18.359712 ], [ -64.833796, 18.359722 ], [ -64.833912, 18.359716 ], [ -64.833986, 18.359754 ], [ -64.834142, 18.359805 ], [ -64.834194, 18.359811 ], [ -64.834246, 18.359795 ], [ -64.834298, 18.359771 ], [ -64.834338, 18.359733 ], [ -64.834355, 18.359683 ], [ -64.834356, 18.359633 ], [ -64.834378, 18.359601 ], [ -64.834459, 18.359557 ], [ -64.834482, 18.359524 ], [ -64.834482, 18.359493 ], [ -64.834476, 18.359446 ], [ -64.834482, 18.359408 ], [ -64.8345, 18.359374 ], [ -64.834511, 18.359325 ], [ -64.834528, 18.359287 ], [ -64.83458, 18.359215 ], [ -64.834615, 18.359177 ], [ -64.834655, 18.35916 ], [ -64.834684, 18.359183 ], [ -64.834718, 18.359193 ], [ -64.834737, 18.359225 ], [ -64.834754, 18.359266 ], [ -64.834782, 18.359292 ], [ -64.834816, 18.359292 ], [ -64.834851, 18.359281 ], [ -64.834904, 18.359253 ], [ -64.835036, 18.359226 ], [ -64.835087, 18.359226 ], [ -64.835128, 18.359232 ], [ -64.835163, 18.359221 ], [ -64.835197, 18.359237 ], [ -64.835255, 18.359281 ], [ -64.835291, 18.359297 ], [ -64.835324, 18.35932 ], [ -64.835365, 18.35933 ], [ -64.835399, 18.359347 ], [ -64.835463, 18.359331 ], [ -64.835503, 18.359331 ], [ -64.835595, 18.359358 ], [ -64.835642, 18.359325 ], [ -64.83567, 18.359281 ], [ -64.835693, 18.359265 ], [ -64.835745, 18.359238 ], [ -64.835798, 18.359253 ], [ -64.835855, 18.359259 ], [ -64.835889, 18.359215 ], [ -64.835901, 18.359165 ], [ -64.83593, 18.359132 ], [ -64.835987, 18.359105 ], [ -64.836045, 18.359094 ], [ -64.836079, 18.359077 ], [ -64.836121, 18.359067 ], [ -64.836149, 18.359033 ], [ -64.83616, 18.359 ], [ -64.836131, 18.358989 ], [ -64.83608, 18.358977 ], [ -64.836045, 18.358978 ], [ -64.835993, 18.358962 ], [ -64.835976, 18.358928 ], [ -64.835982, 18.358895 ], [ -64.83601, 18.358857 ], [ -64.836033, 18.358813 ], [ -64.836051, 18.358725 ], [ -64.836062, 18.358637 ], [ -64.836098, 18.358571 ], [ -64.836154, 18.358532 ], [ -64.836195, 18.35851 ], [ -64.836218, 18.358493 ], [ -64.836253, 18.358483 ], [ -64.836397, 18.358389 ], [ -64.836432, 18.358378 ], [ -64.836454, 18.358356 ], [ -64.83657, 18.358284 ], [ -64.836605, 18.358256 ], [ -64.836734, 18.358212 ], [ -64.836772, 18.3582 ], [ -64.836842, 18.358191 ], [ -64.836911, 18.358174 ], [ -64.83695, 18.358157 ], [ -64.836991, 18.358152 ], [ -64.837077, 18.358124 ], [ -64.837113, 18.358091 ], [ -64.8371, 18.358042 ], [ -64.837054, 18.357975 ], [ -64.837019, 18.357915 ], [ -64.837008, 18.357866 ], [ -64.837014, 18.357816 ], [ -64.837037, 18.357788 ], [ -64.837072, 18.357777 ], [ -64.837106, 18.357783 ], [ -64.837251, 18.357866 ], [ -64.837302, 18.357876 ], [ -64.837331, 18.357887 ], [ -64.837372, 18.357892 ], [ -64.837406, 18.357909 ], [ -64.837441, 18.357914 ], [ -64.837475, 18.357926 ], [ -64.837516, 18.357927 ], [ -64.837591, 18.357937 ], [ -64.837672, 18.357932 ], [ -64.837775, 18.357938 ], [ -64.837913, 18.357937 ], [ -64.837954, 18.357942 ], [ -64.838006, 18.357927 ], [ -64.838046, 18.357926 ], [ -64.838087, 18.35791 ], [ -64.838151, 18.357905 ], [ -64.83819, 18.357893 ], [ -64.838277, 18.357882 ], [ -64.838421, 18.357854 ], [ -64.838462, 18.357839 ], [ -64.8386, 18.35776 ], [ -64.838634, 18.357727 ], [ -64.838727, 18.357689 ], [ -64.838779, 18.357689 ], [ -64.838837, 18.357695 ], [ -64.838889, 18.357694 ], [ -64.83894, 18.3577 ], [ -64.838998, 18.357693 ], [ -64.839038, 18.357683 ], [ -64.839072, 18.357689 ], [ -64.839148, 18.35769 ], [ -64.839194, 18.357682 ], [ -64.839234, 18.357667 ], [ -64.839276, 18.357661 ], [ -64.83935, 18.357629 ], [ -64.83943, 18.357577 ], [ -64.839454, 18.35756 ], [ -64.839512, 18.357519 ], [ -64.839569, 18.357473 ], [ -64.839597, 18.357435 ], [ -64.839632, 18.357397 ], [ -64.839673, 18.357328 ], [ -64.839679, 18.357319 ], [ -64.839707, 18.357226 ], [ -64.839726, 18.357187 ], [ -64.839753, 18.357154 ], [ -64.839776, 18.357116 ], [ -64.839834, 18.357062 ], [ -64.839887, 18.356978 ], [ -64.839886, 18.356934 ], [ -64.839892, 18.356901 ], [ -64.83988, 18.356867 ], [ -64.839822, 18.35684 ], [ -64.839771, 18.356823 ], [ -64.839661, 18.356813 ], [ -64.839632, 18.356797 ], [ -64.839598, 18.356798 ], [ -64.839459, 18.356775 ], [ -64.839408, 18.356763 ], [ -64.839222, 18.356675 ], [ -64.839188, 18.356648 ], [ -64.839169, 18.356637 ], [ -64.839119, 18.356609 ], [ -64.839079, 18.356581 ], [ -64.839032, 18.356571 ], [ -64.838997, 18.356554 ], [ -64.838963, 18.356554 ], [ -64.838906, 18.356565 ], [ -64.838819, 18.356609 ], [ -64.838767, 18.356664 ], [ -64.838716, 18.356675 ], [ -64.83868, 18.356676 ], [ -64.838628, 18.356659 ], [ -64.838581, 18.356632 ], [ -64.838542, 18.356643 ], [ -64.838503, 18.356643 ], [ -64.83834, 18.356692 ], [ -64.838266, 18.35672 ], [ -64.838225, 18.356731 ], [ -64.838155, 18.356769 ], [ -64.838122, 18.356819 ], [ -64.838109, 18.356852 ], [ -64.838104, 18.356884 ], [ -64.838047, 18.356957 ], [ -64.837973, 18.357006 ], [ -64.837942, 18.357001 ], [ -64.837907, 18.357006 ], [ -64.83785, 18.357 ], [ -64.837798, 18.357018 ], [ -64.837711, 18.357031 ], [ -64.837671, 18.357033 ], [ -64.837614, 18.357018 ], [ -64.837556, 18.356973 ], [ -64.837532, 18.356946 ], [ -64.837481, 18.356913 ], [ -64.837446, 18.356918 ], [ -64.837395, 18.356941 ], [ -64.837315, 18.356953 ], [ -64.83729, 18.356962 ], [ -64.837181, 18.356979 ], [ -64.837146, 18.356973 ], [ -64.837106, 18.356973 ], [ -64.837054, 18.356985 ], [ -64.837025, 18.357012 ], [ -64.837014, 18.357062 ], [ -64.837008, 18.357111 ], [ -64.836986, 18.357162 ], [ -64.83694, 18.357239 ], [ -64.836921, 18.357265 ], [ -64.836875, 18.357315 ], [ -64.836823, 18.357353 ], [ -64.836766, 18.357369 ], [ -64.836703, 18.357393 ], [ -64.836662, 18.357397 ], [ -64.836627, 18.357409 ], [ -64.836616, 18.35741 ], [ -64.836581, 18.357414 ], [ -64.836507, 18.357431 ], [ -64.836454, 18.357452 ], [ -64.836408, 18.357497 ], [ -64.836322, 18.357568 ], [ -64.83627, 18.357601 ], [ -64.83616, 18.35759 ], [ -64.836108, 18.35759 ], [ -64.836056, 18.357596 ], [ -64.836005, 18.357612 ], [ -64.835843, 18.357684 ], [ -64.835791, 18.357699 ], [ -64.835751, 18.357718 ], [ -64.835722, 18.357711 ], [ -64.835676, 18.357716 ], [ -64.835583, 18.357711 ], [ -64.835526, 18.3577 ], [ -64.835491, 18.357689 ], [ -64.835456, 18.357689 ], [ -64.83541, 18.357667 ], [ -64.835306, 18.357629 ], [ -64.835279, 18.357607 ], [ -64.835243, 18.357596 ], [ -64.83512, 18.357596 ], [ -64.835081, 18.35759 ], [ -64.835024, 18.357596 ], [ -64.834811, 18.357535 ], [ -64.834736, 18.35752 ], [ -64.834695, 18.357508 ], [ -64.834614, 18.357498 ], [ -64.83458, 18.357495 ], [ -64.834545, 18.357486 ], [ -64.834424, 18.357403 ], [ -64.834401, 18.35737 ], [ -64.834389, 18.357337 ], [ -64.83439, 18.357287 ], [ -64.834395, 18.357255 ], [ -64.834436, 18.357204 ], [ -64.834476, 18.357138 ], [ -64.834487, 18.357106 ], [ -64.834488, 18.357057 ], [ -64.834464, 18.357034 ], [ -64.834412, 18.357007 ], [ -64.83436, 18.357007 ], [ -64.834303, 18.357001 ], [ -64.834216, 18.357012 ], [ -64.834037, 18.357073 ], [ -64.833986, 18.357088 ], [ -64.833859, 18.357106 ], [ -64.833755, 18.357126 ], [ -64.83372, 18.357145 ], [ -64.833692, 18.357173 ], [ -64.833668, 18.357205 ], [ -64.833651, 18.357238 ], [ -64.833618, 18.357343 ], [ -64.833564, 18.357414 ], [ -64.833525, 18.357498 ], [ -64.833501, 18.35753 ], [ -64.833479, 18.357575 ], [ -64.833461, 18.357624 ], [ -64.833438, 18.357668 ], [ -64.833409, 18.357706 ], [ -64.833345, 18.357772 ], [ -64.833271, 18.357832 ], [ -64.833242, 18.357861 ], [ -64.833207, 18.357878 ], [ -64.833173, 18.357905 ], [ -64.833127, 18.357933 ], [ -64.833034, 18.357977 ], [ -64.832942, 18.35802 ], [ -64.832884, 18.358037 ], [ -64.832832, 18.358042 ], [ -64.832781, 18.35802 ], [ -64.832729, 18.358016 ], [ -64.832625, 18.357992 ], [ -64.83255, 18.357993 ], [ -64.832481, 18.358016 ], [ -64.832451, 18.358042 ], [ -64.832382, 18.358142 ], [ -64.832347, 18.358176 ], [ -64.832325, 18.358208 ], [ -64.832296, 18.358235 ], [ -64.832261, 18.358246 ], [ -64.832232, 18.358274 ], [ -64.83218, 18.358312 ], [ -64.832031, 18.358445 ], [ -64.831956, 18.358489 ], [ -64.831869, 18.358522 ], [ -64.831782, 18.358522 ], [ -64.831726, 18.358534 ], [ -64.831684, 18.358538 ], [ -64.831632, 18.358555 ], [ -64.831575, 18.358588 ], [ -64.831538, 18.358617 ], [ -64.831506, 18.358632 ], [ -64.831414, 18.358688 ], [ -64.83131, 18.358719 ], [ -64.83123, 18.358719 ], [ -64.831177, 18.358714 ], [ -64.831125, 18.358703 ], [ -64.831074, 18.358674 ], [ -64.831038, 18.358665 ], [ -64.830987, 18.358632 ], [ -64.8309, 18.358593 ], [ -64.830872, 18.358571 ], [ -64.830837, 18.358555 ], [ -64.830785, 18.358549 ], [ -64.830727, 18.358549 ], [ -64.830676, 18.358554 ], [ -64.830571, 18.358576 ], [ -64.830537, 18.358571 ], [ -64.830502, 18.358576 ], [ -64.830341, 18.358556 ], [ -64.830306, 18.358538 ], [ -64.830254, 18.358527 ], [ -64.830202, 18.358527 ], [ -64.830144, 18.358522 ], [ -64.830093, 18.358526 ], [ -64.830024, 18.35855 ], [ -64.829937, 18.358588 ], [ -64.829902, 18.358621 ], [ -64.829874, 18.35867 ], [ -64.829833, 18.35872 ], [ -64.829776, 18.358776 ], [ -64.829741, 18.358792 ], [ -64.829666, 18.358847 ], [ -64.829615, 18.358878 ], [ -64.829539, 18.358907 ], [ -64.829487, 18.358919 ], [ -64.829435, 18.358913 ], [ -64.829384, 18.358896 ], [ -64.829298, 18.358856 ], [ -64.829245, 18.358847 ], [ -64.82921, 18.358847 ], [ -64.829176, 18.358858 ], [ -64.829063, 18.35888 ], [ -64.829031, 18.35888 ], [ -64.828986, 18.358894 ], [ -64.828945, 18.358908 ], [ -64.82885, 18.358919 ], [ -64.828818, 18.358919 ], [ -64.828789, 18.35894 ], [ -64.828744, 18.358995 ], [ -64.828668, 18.359034 ], [ -64.828628, 18.359061 ], [ -64.828599, 18.359089 ], [ -64.828518, 18.359144 ], [ -64.828461, 18.359165 ], [ -64.828426, 18.359188 ], [ -64.828392, 18.359192 ], [ -64.828362, 18.359216 ], [ -64.828322, 18.359238 ], [ -64.828271, 18.359259 ], [ -64.828184, 18.359282 ], [ -64.828132, 18.359304 ], [ -64.828006, 18.359336 ], [ -64.827953, 18.35936 ], [ -64.827832, 18.359398 ], [ -64.827757, 18.359436 ], [ -64.827716, 18.359453 ], [ -64.827538, 18.359508 ], [ -64.827463, 18.359519 ], [ -64.827405, 18.359536 ], [ -64.827347, 18.359547 ], [ -64.827313, 18.359558 ], [ -64.82722, 18.359569 ], [ -64.827134, 18.359602 ], [ -64.827076, 18.359613 ], [ -64.827036, 18.359629 ], [ -64.826949, 18.359651 ], [ -64.826822, 18.359695 ], [ -64.826771, 18.359706 ], [ -64.826719, 18.359712 ], [ -64.826609, 18.359712 ], [ -64.826557, 18.359701 ], [ -64.826505, 18.359705 ], [ -64.826437, 18.359744 ], [ -64.826413, 18.359767 ], [ -64.826396, 18.3598 ], [ -64.826373, 18.359833 ], [ -64.826361, 18.359866 ], [ -64.826303, 18.359971 ], [ -64.826286, 18.360008 ], [ -64.826284, 18.360013 ] ], [ [ -64.812328, 18.362472 ], [ -64.812438, 18.362417 ], [ -64.812513, 18.362373 ], [ -64.812536, 18.362351 ], [ -64.81257, 18.362329 ], [ -64.812599, 18.36228 ], [ -64.812644, 18.362227 ], [ -64.812657, 18.362213 ], [ -64.812692, 18.362186 ], [ -64.812715, 18.362153 ], [ -64.812772, 18.362098 ], [ -64.812824, 18.362043 ], [ -64.812899, 18.361971 ], [ -64.813009, 18.3619 ], [ -64.813095, 18.361867 ], [ -64.81313, 18.361845 ], [ -64.813159, 18.361834 ], [ -64.813199, 18.361811 ], [ -64.813257, 18.361761 ], [ -64.81332, 18.361729 ], [ -64.813355, 18.361701 ], [ -64.813384, 18.361667 ], [ -64.813401, 18.361635 ], [ -64.813407, 18.361602 ], [ -64.813407, 18.361569 ], [ -64.813356, 18.361514 ], [ -64.813286, 18.361476 ], [ -64.813261, 18.361462 ], [ -64.813216, 18.361437 ], [ -64.813188, 18.361409 ], [ -64.813078, 18.361321 ], [ -64.813043, 18.361288 ], [ -64.813032, 18.361266 ], [ -64.813003, 18.361239 ], [ -64.81298, 18.361211 ], [ -64.812958, 18.361194 ], [ -64.812916, 18.361162 ], [ -64.812882, 18.361156 ], [ -64.812847, 18.361134 ], [ -64.812726, 18.361096 ], [ -64.812698, 18.361084 ], [ -64.812657, 18.361074 ], [ -64.812536, 18.361024 ], [ -64.81238, 18.360941 ], [ -64.81234, 18.36093 ], [ -64.812236, 18.360859 ], [ -64.812207, 18.360831 ], [ -64.812167, 18.36076 ], [ -64.812155, 18.360727 ], [ -64.812144, 18.360713 ], [ -64.812103, 18.36066 ], [ -64.812005, 18.360578 ], [ -64.811936, 18.360528 ], [ -64.811861, 18.360479 ], [ -64.811636, 18.360341 ], [ -64.811463, 18.360231 ], [ -64.811157, 18.360066 ], [ -64.811099, 18.359989 ], [ -64.810921, 18.359889 ], [ -64.810736, 18.359796 ], [ -64.810563, 18.359686 ], [ -64.810379, 18.359493 ], [ -64.810165, 18.359223 ], [ -64.810032, 18.358992 ], [ -64.809978, 18.358847 ], [ -64.809865, 18.35854 ], [ -64.809842, 18.358496 ], [ -64.809652, 18.358469 ], [ -64.809479, 18.358491 ], [ -64.809306, 18.358529 ], [ -64.809261, 18.358563 ], [ -64.809254, 18.358568 ], [ -64.809081, 18.358728 ], [ -64.80896, 18.358909 ], [ -64.808862, 18.35908 ], [ -64.808769, 18.359168 ], [ -64.808735, 18.359221 ], [ -64.808717, 18.359251 ], [ -64.808596, 18.359394 ], [ -64.808567, 18.359416 ], [ -64.808429, 18.359543 ], [ -64.808256, 18.359818 ], [ -64.808193, 18.359928 ], [ -64.808071, 18.360088 ], [ -64.807905, 18.360231 ], [ -64.80787, 18.360281 ], [ -64.807696, 18.360446 ], [ -64.807454, 18.360611 ], [ -64.807183, 18.360776 ], [ -64.807149, 18.360787 ], [ -64.807022, 18.360848 ], [ -64.806884, 18.360891 ], [ -64.806831, 18.360909 ], [ -64.806658, 18.360942 ], [ -64.806583, 18.360964 ], [ -64.80648, 18.360986 ], [ -64.806052, 18.361059 ], [ -64.805937, 18.361079 ], [ -64.805764, 18.361096 ], [ -64.805585, 18.361096 ], [ -64.805465, 18.361099 ], [ -64.805228, 18.361107 ], [ -64.805049, 18.361101 ], [ -64.80487, 18.361101 ], [ -64.804692, 18.361096 ], [ -64.804524, 18.361068 ], [ -64.80434, 18.361068 ], [ -64.804161, 18.361046 ], [ -64.803804, 18.361017 ], [ -64.803706, 18.361012 ], [ -64.803619, 18.361008 ], [ -64.80348, 18.360986 ], [ -64.803446, 18.360969 ], [ -64.803267, 18.360898 ], [ -64.803143, 18.360862 ], [ -64.803094, 18.360848 ], [ -64.803019, 18.360815 ], [ -64.802909, 18.360754 ], [ -64.80273, 18.360644 ], [ -64.802373, 18.360413 ], [ -64.8022, 18.360341 ], [ -64.802096, 18.360314 ], [ -64.801964, 18.360293 ], [ -64.801842, 18.360275 ], [ -64.801669, 18.360314 ], [ -64.801635, 18.360328 ], [ -64.801467, 18.360507 ], [ -64.801375, 18.360677 ], [ -64.801323, 18.360782 ], [ -64.801139, 18.361096 ], [ -64.801069, 18.361184 ], [ -64.800965, 18.36125 ], [ -64.800873, 18.36136 ], [ -64.800792, 18.361432 ], [ -64.800602, 18.36152 ], [ -64.800418, 18.361619 ], [ -64.800331, 18.361696 ], [ -64.800256, 18.361795 ], [ -64.800164, 18.361872 ], [ -64.800071, 18.361938 ], [ -64.799899, 18.362041 ], [ -64.799564, 18.362263 ], [ -64.799425, 18.362368 ], [ -64.799327, 18.362407 ], [ -64.799235, 18.362478 ], [ -64.799155, 18.36255 ], [ -64.799091, 18.362627 ], [ -64.799022, 18.36272 ], [ -64.799019, 18.362724 ], [ -64.798981, 18.362792 ], [ -64.7989, 18.362902 ], [ -64.798768, 18.362952 ], [ -64.798647, 18.363033 ], [ -64.798428, 18.3632 ], [ -64.798329, 18.363282 ], [ -64.798203, 18.363293 ], [ -64.798105, 18.36331 ], [ -64.798024, 18.363343 ], [ -64.797926, 18.363376 ], [ -64.797887, 18.363405 ], [ -64.797834, 18.363447 ], [ -64.797805, 18.363508 ], [ -64.797799, 18.363516 ], [ -64.797776, 18.363558 ], [ -64.797782, 18.363591 ], [ -64.797816, 18.36364 ], [ -64.797863, 18.363673 ], [ -64.797949, 18.363723 ], [ -64.798041, 18.363756 ], [ -64.798168, 18.363794 ], [ -64.798347, 18.36391 ], [ -64.798416, 18.363949 ], [ -64.798456, 18.36402 ], [ -64.798462, 18.364097 ], [ -64.798526, 18.364312 ], [ -64.798618, 18.364466 ], [ -64.798722, 18.364532 ], [ -64.798802, 18.36461 ], [ -64.798808, 18.36467 ], [ -64.798837, 18.364753 ], [ -64.798872, 18.364786 ], [ -64.798964, 18.364835 ], [ -64.799045, 18.364852 ], [ -64.799097, 18.364879 ], [ -64.799154, 18.364934 ], [ -64.799223, 18.36499 ], [ -64.799304, 18.365028 ], [ -64.799414, 18.365061 ], [ -64.799529, 18.365111 ], [ -64.799581, 18.365122 ], [ -64.799771, 18.365232 ], [ -64.799846, 18.365265 ], [ -64.799933, 18.365287 ], [ -64.800118, 18.365281 ], [ -64.800285, 18.365287 ], [ -64.800337, 18.365318 ], [ -64.800469, 18.365397 ], [ -64.800516, 18.365436 ], [ -64.800654, 18.365502 ], [ -64.800821, 18.365513 ], [ -64.801, 18.365469 ], [ -64.801075, 18.365436 ], [ -64.801185, 18.36537 ], [ -64.801369, 18.365331 ], [ -64.801542, 18.365447 ], [ -64.801721, 18.365474 ], [ -64.801825, 18.365436 ], [ -64.801895, 18.365385 ], [ -64.802079, 18.365199 ], [ -64.802269, 18.365083 ], [ -64.802425, 18.364923 ], [ -64.802603, 18.364687 ], [ -64.802678, 18.364582 ], [ -64.802748, 18.364395 ], [ -64.802771, 18.364345 ], [ -64.802956, 18.364239 ], [ -64.802961, 18.364174 ], [ -64.802955, 18.364125 ], [ -64.80299, 18.364059 ], [ -64.803117, 18.363888 ], [ -64.803336, 18.363712 ], [ -64.80348, 18.363646 ], [ -64.803653, 18.363602 ], [ -64.803838, 18.363596 ], [ -64.804017, 18.363613 ], [ -64.80419, 18.363645 ], [ -64.804369, 18.363706 ], [ -64.804559, 18.363778 ], [ -64.804726, 18.363756 ], [ -64.804905, 18.363739 ], [ -64.805164, 18.363695 ], [ -64.805257, 18.363673 ], [ -64.805437, 18.363622 ], [ -64.805609, 18.363558 ], [ -64.805678, 18.363525 ], [ -64.805897, 18.363365 ], [ -64.80596, 18.363315 ], [ -64.806099, 18.363183 ], [ -64.806145, 18.363111 ], [ -64.80633, 18.363012 ], [ -64.80637, 18.363007 ], [ -64.806405, 18.363007 ], [ -64.806508, 18.362979 ], [ -64.806687, 18.362902 ], [ -64.807028, 18.362775 ], [ -64.807201, 18.36272 ], [ -64.807368, 18.362649 ], [ -64.807558, 18.362561 ], [ -64.807702, 18.362484 ], [ -64.807754, 18.362478 ], [ -64.807927, 18.36244 ], [ -64.808106, 18.362434 ], [ -64.808273, 18.362445 ], [ -64.808458, 18.362417 ], [ -64.808631, 18.362428 ], [ -64.8087, 18.362467 ], [ -64.808815, 18.362495 ], [ -64.808989, 18.362506 ], [ -64.809056, 18.362527 ], [ -64.809162, 18.362561 ], [ -64.80934, 18.362555 ], [ -64.809531, 18.362605 ], [ -64.809704, 18.362616 ], [ -64.809877, 18.362555 ], [ -64.810056, 18.362566 ], [ -64.810194, 18.362621 ], [ -64.810246, 18.362648 ], [ -64.810425, 18.36268 ], [ -64.81065, 18.362632 ], [ -64.810777, 18.362572 ], [ -64.811082, 18.362456 ], [ -64.811123, 18.362445 ], [ -64.811307, 18.362417 ], [ -64.811475, 18.362412 ], [ -64.811803, 18.362439 ], [ -64.811838, 18.362439 ], [ -64.811872, 18.362445 ], [ -64.811913, 18.362461 ], [ -64.812034, 18.362483 ], [ -64.812086, 18.362489 ], [ -64.812207, 18.362489 ], [ -64.812242, 18.362494 ], [ -64.812276, 18.362489 ], [ -64.812328, 18.362472 ] ], [ [ -64.798789, 18.333089 ], [ -64.799019, 18.330706 ], [ -64.798935, 18.330536 ], [ -64.798889, 18.330469 ], [ -64.798846, 18.330307 ], [ -64.798836, 18.330204 ], [ -64.798882, 18.330099 ], [ -64.798874, 18.330038 ], [ -64.798904, 18.329967 ], [ -64.799011, 18.329813 ], [ -64.799049, 18.329763 ], [ -64.799095, 18.329693 ], [ -64.799095, 18.329626 ], [ -64.799095, 18.329544 ], [ -64.799094, 18.329543 ], [ -64.799669, 18.326927 ], [ -64.799684, 18.326857 ], [ -64.799684, 18.326769 ], [ -64.799746, 18.32671 ], [ -64.799794, 18.326681 ], [ -64.799809, 18.326596 ], [ -64.799794, 18.326508 ], [ -64.799743, 18.326365 ], [ -64.79968, 18.326295 ], [ -64.799614, 18.326237 ], [ -64.799515, 18.326178 ], [ -64.799409, 18.326174 ], [ -64.799357, 18.32613 ], [ -64.799321, 18.326079 ], [ -64.799288, 18.326086 ], [ -64.799236, 18.326094 ], [ -64.799235, 18.326093 ], [ -64.799196, 18.326016 ], [ -64.799174, 18.325961 ], [ -64.799122, 18.325947 ], [ -64.796881, 18.325008 ], [ -64.795936, 18.324613 ], [ -64.795811, 18.324289 ], [ -64.795684, 18.324003 ], [ -64.79563, 18.323844 ], [ -64.795574, 18.323678 ], [ -64.795557, 18.323584 ], [ -64.795544, 18.323446 ], [ -64.795542, 18.323434 ], [ -64.795541, 18.323417 ], [ -64.795542, 18.323398 ], [ -64.795543, 18.323387 ], [ -64.795563, 18.323139 ], [ -64.795579, 18.323034 ], [ -64.795586, 18.322855 ], [ -64.795573, 18.322692 ], [ -64.795534, 18.322547 ], [ -64.795462, 18.322423 ], [ -64.795366, 18.322293 ], [ -64.795124, 18.322136 ], [ -64.794938, 18.322085 ], [ -64.794853, 18.322063 ], [ -64.794779, 18.322021 ], [ -64.794752, 18.321952 ], [ -64.794752, 18.321878 ], [ -64.79472, 18.321782 ], [ -64.794662, 18.321686 ], [ -64.794625, 18.321633 ], [ -64.794566, 18.321543 ], [ -64.794556, 18.321484 ], [ -64.794545, 18.321389 ], [ -64.794519, 18.32133 ], [ -64.794465, 18.321266 ], [ -64.794444, 18.321245 ], [ -64.794434, 18.321197 ], [ -64.794444, 18.321171 ], [ -64.794503, 18.321139 ], [ -64.79454, 18.321134 ], [ -64.794556, 18.321043 ], [ -64.794508, 18.320937 ], [ -64.794497, 18.320831 ], [ -64.794492, 18.32073 ], [ -64.79454, 18.32064 ], [ -64.794593, 18.320602 ], [ -64.794698, 18.320561 ], [ -64.794769, 18.320441 ], [ -64.79472, 18.320257 ], [ -64.794683, 18.320151 ], [ -64.794614, 18.320071 ], [ -64.794613, 18.32007 ], [ -64.791878, 18.316617 ], [ -64.791821, 18.31648 ], [ -64.791711, 18.316336 ], [ -64.791653, 18.316221 ], [ -64.79159, 18.316039 ], [ -64.791325, 18.315593 ], [ -64.791272, 18.315518 ], [ -64.791244, 18.315477 ], [ -64.791232, 18.315268 ], [ -64.791262, 18.315146 ], [ -64.791267, 18.314987 ], [ -64.791253, 18.314945 ], [ -64.791218, 18.314819 ], [ -64.791206, 18.314778 ], [ -64.791204, 18.314772 ], [ -64.791225, 18.314713 ], [ -64.791238, 18.314679 ], [ -64.791238, 18.314524 ], [ -64.791231, 18.314511 ], [ -64.791205, 18.314449 ], [ -64.7911, 18.314392 ], [ -64.791025, 18.314387 ], [ -64.790962, 18.314398 ], [ -64.790904, 18.314436 ], [ -64.790806, 18.314601 ], [ -64.790771, 18.314651 ], [ -64.790628, 18.314617 ], [ -64.790604, 18.314612 ], [ -64.790523, 18.314508 ], [ -64.790339, 18.314331 ], [ -64.790166, 18.314337 ], [ -64.790056, 18.314414 ], [ -64.789965, 18.314503 ], [ -64.789751, 18.31453 ], [ -64.789595, 18.314579 ], [ -64.789468, 18.314596 ], [ -64.789393, 18.314601 ], [ -64.789065, 18.314583 ], [ -64.788868, 18.314535 ], [ -64.788793, 18.314447 ], [ -64.788753, 18.314364 ], [ -64.788745, 18.314358 ], [ -64.788661, 18.314298 ], [ -64.788551, 18.314282 ], [ -64.78474, 18.313445 ], [ -64.783035, 18.311186 ], [ -64.783021, 18.31115 ], [ -64.78299, 18.311136 ], [ -64.782946, 18.311143 ], [ -64.782928, 18.311177 ], [ -64.782865, 18.311226 ], [ -64.782798, 18.311243 ], [ -64.782738, 18.311241 ], [ -64.782722, 18.311259 ], [ -64.7827, 18.311283 ], [ -64.782661, 18.311284 ], [ -64.782639, 18.311285 ], [ -64.782609, 18.311276 ], [ -64.782578, 18.311266 ], [ -64.78254, 18.311273 ], [ -64.782513, 18.311253 ], [ -64.782528, 18.311187 ], [ -64.78257, 18.311119 ], [ -64.782585, 18.311094 ], [ -64.782544, 18.311066 ], [ -64.782516, 18.311056 ], [ -64.782478, 18.311075 ], [ -64.782424, 18.311134 ], [ -64.782336, 18.31107 ], [ -64.782203, 18.310999 ], [ -64.782059, 18.310938 ], [ -64.781828, 18.310883 ], [ -64.781724, 18.310795 ], [ -64.781655, 18.31069 ], [ -64.781574, 18.310679 ], [ -64.781459, 18.31053 ], [ -64.781407, 18.310542 ], [ -64.781327, 18.310656 ], [ -64.781298, 18.310679 ], [ -64.781252, 18.310663 ], [ -64.781171, 18.310734 ], [ -64.781067, 18.310701 ], [ -64.780969, 18.31069 ], [ -64.78079, 18.310718 ], [ -64.780657, 18.310767 ], [ -64.780531, 18.310795 ], [ -64.780444, 18.310784 ], [ -64.780353, 18.310755 ], [ -64.780289, 18.310789 ], [ -64.780196, 18.310905 ], [ -64.780017, 18.310921 ], [ -64.776545, 18.310821 ], [ -64.766115, 18.310523 ], [ -64.765977, 18.31055 ], [ -64.76589, 18.310583 ], [ -64.765832, 18.310665 ], [ -64.765765, 18.310672 ], [ -64.765706, 18.310732 ], [ -64.765677, 18.310778 ], [ -64.765642, 18.310836 ], [ -64.765636, 18.310957 ], [ -64.765625, 18.311051 ], [ -64.765632, 18.311123 ], [ -64.765482, 18.311354 ], [ -64.765475, 18.311365 ], [ -64.765423, 18.311382 ], [ -64.765342, 18.31136 ], [ -64.765284, 18.31137 ], [ -64.763485, 18.312419 ], [ -64.759574, 18.3147 ], [ -64.759313, 18.314853 ], [ -64.756653, 18.316406 ], [ -64.756577, 18.316467 ], [ -64.756477, 18.316467 ], [ -64.756427, 18.316478 ], [ -64.756325, 18.316547 ], [ -64.756279, 18.316566 ], [ -64.737576, 18.316407 ], [ -64.737543, 18.316417 ], [ -64.737532, 18.316484 ], [ -64.737532, 18.31655 ], [ -64.737497, 18.316561 ], [ -64.737434, 18.316555 ], [ -64.737394, 18.316577 ], [ -64.737341, 18.316654 ], [ -64.737318, 18.31672 ], [ -64.737324, 18.316781 ], [ -64.737255, 18.316842 ], [ -64.737192, 18.316847 ], [ -64.737088, 18.316812 ], [ -64.736834, 18.316743 ], [ -64.736788, 18.316717 ], [ -64.736742, 18.316691 ], [ -64.73665, 18.316665 ], [ -64.73654, 18.31661 ], [ -64.736448, 18.316576 ], [ -64.736298, 18.316528 ], [ -64.736108, 18.316474 ], [ -64.735935, 18.316426 ], [ -64.735848, 18.316401 ], [ -64.735733, 18.316319 ], [ -64.735664, 18.316262 ], [ -64.735605, 18.316238 ], [ -64.73553, 18.316207 ], [ -64.735432, 18.316213 ], [ -64.735381, 18.316236 ], [ -64.735317, 18.316225 ], [ -64.735231, 18.316242 ], [ -64.735127, 18.316236 ], [ -64.735035, 18.316181 ], [ -64.734983, 18.316132 ], [ -64.734954, 18.316075 ], [ -64.734891, 18.316038 ], [ -64.734816, 18.316038 ], [ -64.734736, 18.316003 ], [ -64.734666, 18.315972 ], [ -64.734614, 18.315917 ], [ -64.734579, 18.315857 ], [ -64.734533, 18.315735 ], [ -64.7344, 18.315576 ], [ -64.734331, 18.31546 ], [ -64.734239, 18.315355 ], [ -64.734124, 18.315161 ], [ -64.734037, 18.315069 ], [ -64.733835, 18.314946 ], [ -64.733731, 18.314871 ], [ -64.733587, 18.314847 ], [ -64.73346, 18.314821 ], [ -64.733321, 18.314874 ], [ -64.733177, 18.314937 ], [ -64.73297, 18.315036 ], [ -64.732901, 18.315057 ], [ -64.732826, 18.315069 ], [ -64.732739, 18.315058 ], [ -64.732664, 18.315086 ], [ -64.732601, 18.315124 ], [ -64.732532, 18.315139 ], [ -64.732501, 18.315133 ], [ -64.73248, 18.31513 ], [ -64.732318, 18.315008 ], [ -64.73229, 18.314844 ], [ -64.732295, 18.31475 ], [ -64.732284, 18.314701 ], [ -64.732266, 18.314667 ], [ -64.732261, 18.314633 ], [ -64.732313, 18.314479 ], [ -64.73237, 18.314414 ], [ -64.732387, 18.314386 ], [ -64.732381, 18.314309 ], [ -64.732347, 18.314215 ], [ -64.732318, 18.314117 ], [ -64.732284, 18.31404 ], [ -64.73222, 18.313985 ], [ -64.722109, 18.308017 ], [ -64.722006, 18.307911 ], [ -64.721931, 18.307978 ], [ -64.721706, 18.307918 ], [ -64.721701, 18.307863 ], [ -64.721672, 18.307731 ], [ -64.721672, 18.307725 ], [ -64.721735, 18.307679 ], [ -64.721735, 18.307631 ], [ -64.721689, 18.307564 ], [ -64.721528, 18.30745 ], [ -64.721412, 18.307328 ], [ -64.721349, 18.307273 ], [ -64.721297, 18.307246 ], [ -64.720229, 18.307487 ], [ -64.712832, 18.306399 ], [ -64.712815, 18.306383 ], [ -64.712682, 18.306355 ], [ -64.712675, 18.306294 ], [ -64.71263, 18.306284 ], [ -64.712566, 18.306311 ], [ -64.712538, 18.306333 ], [ -64.712511, 18.306313 ], [ -64.712491, 18.306298 ], [ -64.712433, 18.306222 ], [ -64.712361, 18.30617 ], [ -64.712322, 18.306136 ], [ -64.71222, 18.306172 ], [ -64.712179, 18.306084 ], [ -64.712116, 18.306112 ], [ -64.712071, 18.306196 ], [ -64.711967, 18.306192 ], [ -64.711899, 18.306187 ], [ -64.711841, 18.306228 ], [ -64.711803, 18.306261 ], [ -64.711759, 18.306278 ], [ -64.711701, 18.306249 ], [ -64.711681, 18.306095 ], [ -64.711673, 18.306019 ], [ -64.711621, 18.305957 ], [ -64.711384, 18.305886 ], [ -64.70587, 18.304294 ], [ -64.705844, 18.304176 ], [ -64.70573, 18.304163 ], [ -64.705675, 18.304175 ], [ -64.705637, 18.304151 ], [ -64.705541, 18.304093 ], [ -64.705449, 18.304049 ], [ -64.705388, 18.30408 ], [ -64.705345, 18.30411 ], [ -64.705248, 18.304101 ], [ -64.705187, 18.304106 ], [ -64.705156, 18.304158 ], [ -64.705095, 18.304207 ], [ -64.705029, 18.304211 ], [ -64.70502, 18.304272 ], [ -64.705012, 18.304342 ], [ -64.704959, 18.30439 ], [ -64.704863, 18.304399 ], [ -64.704836, 18.304329 ], [ -64.704801, 18.304325 ], [ -64.704731, 18.30436 ], [ -64.704683, 18.304417 ], [ -64.704626, 18.304447 ], [ -64.704539, 18.304439 ], [ -64.704399, 18.304408 ], [ -64.704245, 18.304377 ], [ -64.704105, 18.304329 ], [ -64.704004, 18.304272 ], [ -64.703904, 18.304237 ], [ -64.703758, 18.304105 ], [ -64.703608, 18.304014 ], [ -64.703488, 18.303869 ], [ -64.703328, 18.303685 ], [ -64.703198, 18.303512 ], [ -64.703087, 18.303265 ], [ -64.703077, 18.303135 ], [ -64.703073, 18.302942 ], [ -64.703073, 18.302706 ], [ -64.703087, 18.302517 ], [ -64.703126, 18.302339 ], [ -64.703145, 18.30216 ], [ -64.703174, 18.301914 ], [ -64.703217, 18.30161 ], [ -64.703217, 18.301369 ], [ -64.703227, 18.301123 ], [ -64.703227, 18.300857 ], [ -64.703251, 18.300693 ], [ -64.703464, 18.300375 ], [ -64.703444, 18.300172 ], [ -64.703444, 18.300051 ], [ -64.703449, 18.299921 ], [ -64.70342, 18.299882 ], [ -64.703377, 18.299844 ], [ -64.703377, 18.299805 ], [ -64.703401, 18.299737 ], [ -64.703483, 18.299684 ], [ -64.70356, 18.299593 ], [ -64.703555, 18.2995 ], [ -64.703541, 18.299395 ], [ -64.703517, 18.299303 ], [ -64.703541, 18.29925 ], [ -64.703608, 18.299216 ], [ -64.70357, 18.2991 ], [ -64.703507, 18.299052 ], [ -64.70343, 18.299004 ], [ -64.703343, 18.298946 ], [ -64.703333, 18.298878 ], [ -64.703401, 18.298854 ], [ -64.703478, 18.298816 ], [ -64.703541, 18.298782 ], [ -64.703604, 18.298767 ], [ -64.703634, 18.298734 ], [ -64.703645, 18.298632 ], [ -64.70363, 18.298594 ], [ -64.70359, 18.29858 ], [ -64.703537, 18.298517 ], [ -64.703522, 18.298534 ], [ -64.703468, 18.298523 ], [ -64.7034, 18.298471 ], [ -64.703362, 18.29846 ], [ -64.703285, 18.298407 ], [ -64.703278, 18.298393 ], [ -64.703285, 18.298367 ], [ -64.703323, 18.298361 ], [ -64.703308, 18.298325 ], [ -64.703262, 18.298328 ], [ -64.703239, 18.298315 ], [ -64.703216, 18.298317 ], [ -64.703195, 18.298271 ], [ -64.70312, 18.298205 ], [ -64.702994, 18.298189 ], [ -64.702855, 18.298189 ], [ -64.702751, 18.2982 ], [ -64.702705, 18.298303 ], [ -64.702694, 18.298343 ], [ -64.702648, 18.298349 ], [ -64.702573, 18.298382 ], [ -64.702538, 18.298448 ], [ -64.702596, 18.298508 ], [ -64.702606, 18.298645 ], [ -64.702647, 18.298705 ], [ -64.70263, 18.298734 ], [ -64.702544, 18.298762 ], [ -64.702405, 18.298755 ], [ -64.702272, 18.298754 ], [ -64.702077, 18.298701 ], [ -64.701858, 18.298657 ], [ -64.701794, 18.298718 ], [ -64.701691, 18.298773 ], [ -64.701593, 18.298833 ], [ -64.701402, 18.299019 ], [ -64.701385, 18.299114 ], [ -64.701391, 18.299219 ], [ -64.701425, 18.299252 ], [ -64.697077, 18.303051 ], [ -64.662207, 18.333516 ], [ -64.662143, 18.333533 ], [ -64.662125, 18.333539 ], [ -64.662092, 18.333554 ], [ -64.662022, 18.333637 ], [ -64.661993, 18.3337 ], [ -64.661994, 18.333736 ], [ -64.661986, 18.333769 ], [ -64.661994, 18.33383 ], [ -64.661982, 18.333907 ], [ -64.661929, 18.334019 ], [ -64.661894, 18.33406 ], [ -64.661878, 18.334071 ], [ -64.661855, 18.334083 ], [ -64.661849, 18.334122 ], [ -64.661824, 18.334214 ], [ -64.661792, 18.334287 ], [ -64.661774, 18.334378 ], [ -64.660555, 18.339716 ], [ -64.660534, 18.339745 ], [ -64.660521, 18.339776 ], [ -64.660521, 18.339825 ], [ -64.66054, 18.339905 ], [ -64.660574, 18.34002 ], [ -64.660717, 18.340348 ], [ -64.660792, 18.340503 ], [ -64.660925, 18.340701 ], [ -64.661053, 18.34088 ], [ -64.661273, 18.341221 ], [ -64.661291, 18.341256 ], [ -64.661392, 18.341442 ], [ -64.661421, 18.341662 ], [ -64.66141, 18.341843 ], [ -64.661386, 18.34208 ], [ -64.661333, 18.342398 ], [ -64.661259, 18.342557 ], [ -64.661174, 18.342653 ], [ -64.66107, 18.342736 ], [ -64.660953, 18.342821 ], [ -64.660718, 18.343083 ], [ -64.660608, 18.343358 ], [ -64.660649, 18.343512 ], [ -64.660741, 18.343595 ], [ -64.660833, 18.343606 ], [ -64.661178, 18.343683 ], [ -64.661362, 18.34371 ], [ -64.661506, 18.343738 ], [ -64.661686, 18.343823 ], [ -64.661837, 18.343947 ], [ -64.661923, 18.344096 ], [ -64.661951, 18.34419 ], [ -64.661951, 18.344305 ], [ -64.661945, 18.344427 ], [ -64.661951, 18.344507 ], [ -64.661998, 18.344575 ], [ -64.662057, 18.344612 ], [ -64.662112, 18.344646 ], [ -64.66216, 18.34468 ], [ -64.662235, 18.344806 ], [ -64.662268, 18.344892 ], [ -64.662389, 18.34502 ], [ -64.662494, 18.34506 ], [ -64.662792, 18.345142 ], [ -64.66314, 18.34515 ], [ -64.663365, 18.345155 ], [ -64.663527, 18.345159 ], [ -64.663567, 18.345165 ], [ -64.663734, 18.345192 ], [ -64.663923, 18.345201 ], [ -64.664161, 18.345243 ], [ -64.664455, 18.345297 ], [ -64.664835, 18.34546 ], [ -64.664992, 18.345539 ], [ -64.665067, 18.345583 ], [ -64.665211, 18.345628 ], [ -64.669039, 18.348662 ], [ -64.66904, 18.348663 ], [ -64.669084, 18.348687 ], [ -64.669537, 18.348829 ], [ -64.669756, 18.348874 ], [ -64.670051, 18.348874 ], [ -64.670292, 18.348829 ], [ -64.670493, 18.348749 ], [ -64.67069, 18.348633 ], [ -64.670842, 18.348512 ], [ -64.671029, 18.348449 ], [ -64.671253, 18.348565 ], [ -64.671409, 18.348726 ], [ -64.671526, 18.348847 ], [ -64.671593, 18.348936 ], [ -64.671588, 18.34912 ], [ -64.671619, 18.349392 ], [ -64.671677, 18.349616 ], [ -64.671803, 18.34975 ], [ -64.671856, 18.349808 ], [ -64.671977, 18.34987 ], [ -64.67203, 18.349875 ], [ -64.672201, 18.349869 ], [ -64.672349, 18.349879 ], [ -64.67258, 18.34985 ], [ -64.672713, 18.349801 ], [ -64.672844, 18.349773 ], [ -64.672932, 18.349756 ], [ -64.673013, 18.349762 ], [ -64.673111, 18.349784 ], [ -64.673186, 18.349813 ], [ -64.673284, 18.349886 ], [ -64.673382, 18.34996 ], [ -64.673492, 18.350038 ], [ -64.673602, 18.350109 ], [ -64.673735, 18.350171 ], [ -64.673855, 18.350213 ], [ -64.673965, 18.350258 ], [ -64.674132, 18.350281 ], [ -64.679849, 18.353946 ], [ -64.687335, 18.358746 ], [ -64.687398, 18.358822 ], [ -64.687486, 18.358863 ], [ -64.687619, 18.358956 ], [ -64.68778, 18.359028 ], [ -64.687925, 18.359104 ], [ -64.688066, 18.359159 ], [ -64.688201, 18.359232 ], [ -64.688326, 18.359324 ], [ -64.688455, 18.35943 ], [ -64.688575, 18.359566 ], [ -64.688673, 18.359649 ], [ -64.688753, 18.359709 ], [ -64.688886, 18.359775 ], [ -64.689204, 18.359885 ], [ -64.689321, 18.359936 ], [ -64.689423, 18.359967 ], [ -64.689503, 18.360012 ], [ -64.689613, 18.360056 ], [ -64.689672, 18.360107 ], [ -64.689769, 18.360172 ], [ -64.689919, 18.360259 ], [ -64.690026, 18.360314 ], [ -64.690098, 18.360352 ], [ -64.690295, 18.360471 ], [ -64.690393, 18.360526 ], [ -64.690513, 18.360623 ], [ -64.690578, 18.360741 ], [ -64.690668, 18.36086 ], [ -64.690726, 18.360992 ], [ -64.690807, 18.361096 ], [ -64.690913, 18.361191 ], [ -64.690987, 18.361242 ], [ -64.691095, 18.361251 ], [ -64.691199, 18.361242 ], [ -64.691292, 18.361229 ], [ -64.691418, 18.361258 ], [ -64.691574, 18.361278 ], [ -64.691672, 18.361311 ], [ -64.691788, 18.36136 ], [ -64.692093, 18.361445 ], [ -64.69226, 18.361472 ], [ -64.692393, 18.361499 ], [ -64.69251, 18.361517 ], [ -64.692647, 18.361554 ], [ -64.69278, 18.361575 ], [ -64.692849, 18.361608 ], [ -64.69297, 18.361648 ], [ -64.693058, 18.361688 ], [ -64.693125, 18.361725 ], [ -64.693237, 18.36177 ], [ -64.693329, 18.361814 ], [ -64.693439, 18.361875 ], [ -64.693535, 18.361934 ], [ -64.693624, 18.361979 ], [ -64.693755, 18.362027 ], [ -64.693835, 18.36206 ], [ -64.694095, 18.362106 ], [ -64.69421, 18.362101 ], [ -64.694337, 18.362121 ], [ -64.69447, 18.362109 ], [ -64.694656, 18.362106 ], [ -64.694793, 18.362104 ], [ -64.694937, 18.362098 ], [ -64.695398, 18.362055 ], [ -64.69582, 18.362004 ], [ -64.696096, 18.361996 ], [ -64.696685, 18.361956 ], [ -64.696957, 18.361948 ], [ -64.697186, 18.361941 ], [ -64.697734, 18.361913 ], [ -64.698043, 18.361902 ], [ -64.698377, 18.361891 ], [ -64.698502, 18.361883 ], [ -64.69883, 18.361907 ], [ -64.698986, 18.361906 ], [ -64.699121, 18.361886 ], [ -64.699212, 18.361872 ], [ -64.699442, 18.36183 ], [ -64.699499, 18.361825 ], [ -64.699574, 18.361808 ], [ -64.699707, 18.361757 ], [ -64.69979, 18.361698 ], [ -64.699882, 18.361659 ], [ -64.699963, 18.361632 ], [ -64.700003, 18.361599 ], [ -64.700065, 18.36153 ], [ -64.700146, 18.36146 ], [ -64.700206, 18.361418 ], [ -64.700273, 18.36137 ], [ -64.700395, 18.361279 ], [ -64.70048, 18.361236 ], [ -64.700552, 18.361218 ], [ -64.700607, 18.361205 ], [ -64.700688, 18.3612 ], [ -64.700826, 18.361167 ], [ -64.700936, 18.361123 ], [ -64.70103, 18.361116 ], [ -64.701126, 18.361108 ], [ -64.701392, 18.361184 ], [ -64.701537, 18.361214 ], [ -64.701676, 18.361263 ], [ -64.701935, 18.36139 ], [ -64.702038, 18.361454 ], [ -64.702143, 18.361494 ], [ -64.702257, 18.361569 ], [ -64.702372, 18.361614 ], [ -64.702495, 18.361752 ], [ -64.702649, 18.361839 ], [ -64.702747, 18.361866 ], [ -64.702816, 18.36189 ], [ -64.707373, 18.364836 ], [ -64.707431, 18.36489 ], [ -64.707483, 18.364928 ], [ -64.707621, 18.36499 ], [ -64.707824, 18.365094 ], [ -64.707916, 18.365154 ], [ -64.708037, 18.365205 ], [ -64.708181, 18.365231 ], [ -64.708614, 18.365358 ], [ -64.70864, 18.365363 ], [ -64.708695, 18.365375 ], [ -64.708919, 18.365397 ], [ -64.709017, 18.365425 ], [ -64.709127, 18.365462 ], [ -64.709271, 18.36549 ], [ -64.709369, 18.365502 ], [ -64.709496, 18.36554 ], [ -64.709721, 18.365594 ], [ -64.709808, 18.365672 ], [ -64.70997, 18.365721 ], [ -64.710131, 18.365798 ], [ -64.710264, 18.365903 ], [ -64.710361, 18.366025 ], [ -64.710489, 18.366134 ], [ -64.710569, 18.366217 ], [ -64.710656, 18.366316 ], [ -64.710725, 18.366405 ], [ -64.710794, 18.366515 ], [ -64.711077, 18.366872 ], [ -64.711204, 18.36695 ], [ -64.71136, 18.367027 ], [ -64.711458, 18.367065 ], [ -64.711619, 18.367143 ], [ -64.711792, 18.367159 ], [ -64.711977, 18.367191 ], [ -64.71215, 18.367246 ], [ -64.712285, 18.367275 ], [ -64.712369, 18.36728 ], [ -64.712508, 18.367297 ], [ -64.712634, 18.367307 ], [ -64.712734, 18.367336 ], [ -64.712825, 18.367378 ], [ -64.712957, 18.36739 ], [ -64.713073, 18.367385 ], [ -64.71331, 18.367385 ], [ -64.713412, 18.367401 ], [ -64.713483, 18.367413 ], [ -64.720359, 18.367841 ], [ -64.720428, 18.36784 ], [ -64.7258, 18.368993 ], [ -64.735806, 18.371141 ], [ -64.735807, 18.371142 ], [ -64.73587, 18.371125 ], [ -64.735939, 18.371114 ], [ -64.736055, 18.371085 ], [ -64.736194, 18.371037 ], [ -64.736269, 18.371031 ], [ -64.736343, 18.371008 ], [ -64.736447, 18.371003 ], [ -64.736517, 18.370982 ], [ -64.736695, 18.370987 ], [ -64.736799, 18.371015 ], [ -64.736911, 18.371051 ], [ -64.737002, 18.371081 ], [ -64.737099, 18.371085 ], [ -64.737318, 18.371135 ], [ -64.737416, 18.371163 ], [ -64.737474, 18.371217 ], [ -64.737624, 18.371263 ], [ -64.737693, 18.371293 ], [ -64.737774, 18.371327 ], [ -64.737849, 18.37136 ], [ -64.737912, 18.3714 ], [ -64.737988, 18.371438 ], [ -64.738074, 18.371532 ], [ -64.738259, 18.371668 ], [ -64.738328, 18.371697 ], [ -64.738414, 18.371746 ], [ -64.738547, 18.371813 ], [ -64.738582, 18.371844 ], [ -64.738674, 18.371899 ], [ -64.738744, 18.371906 ], [ -64.738813, 18.3719 ], [ -64.738893, 18.371888 ], [ -64.738998, 18.371894 ], [ -64.739245, 18.371883 ], [ -64.73932, 18.371894 ], [ -64.739412, 18.371888 ], [ -64.739482, 18.371872 ], [ -64.739609, 18.371877 ], [ -64.739759, 18.371878 ], [ -64.739839, 18.371884 ], [ -64.739931, 18.371922 ], [ -64.740053, 18.37195 ], [ -64.740105, 18.371938 ], [ -64.740341, 18.371993 ], [ -64.740439, 18.372026 ], [ -64.740543, 18.372081 ], [ -64.740654, 18.372117 ], [ -64.740701, 18.372131 ], [ -64.740745, 18.372144 ], [ -64.740906, 18.372186 ], [ -64.741051, 18.372241 ], [ -64.741264, 18.372357 ], [ -64.741518, 18.372384 ], [ -64.74168, 18.37245 ], [ -64.741859, 18.372482 ], [ -64.742066, 18.372483 ], [ -64.742265, 18.372536 ], [ -64.742435, 18.372581 ], [ -64.742833, 18.37262 ], [ -64.74303, 18.37267 ], [ -64.743348, 18.372684 ], [ -64.74337, 18.372685 ], [ -64.743503, 18.37272 ], [ -64.743607, 18.372735 ], [ -64.74371, 18.37273 ], [ -64.743797, 18.372763 ], [ -64.743947, 18.372795 ], [ -64.744085, 18.372857 ], [ -64.744252, 18.372856 ], [ -64.744385, 18.372818 ], [ -64.744501, 18.37279 ], [ -64.744576, 18.372785 ], [ -64.744732, 18.372802 ], [ -64.744911, 18.372802 ], [ -64.745089, 18.372812 ], [ -64.745291, 18.37284 ], [ -64.745459, 18.372852 ], [ -64.745602, 18.372834 ], [ -64.745724, 18.372833 ], [ -64.745903, 18.372868 ], [ -64.745994, 18.372872 ], [ -64.746147, 18.372856 ], [ -64.74626, 18.372899 ], [ -64.746609, 18.372968 ], [ -64.746876, 18.372931 ], [ -64.747047, 18.372927 ], [ -64.747185, 18.372936 ], [ -64.747261, 18.372894 ], [ -64.747391, 18.372835 ], [ -64.747528, 18.372774 ], [ -64.747589, 18.372786 ], [ -64.747643, 18.372801 ], [ -64.747688, 18.372822 ], [ -64.747734, 18.372868 ], [ -64.747787, 18.372892 ], [ -64.747871, 18.372911 ], [ -64.748062, 18.372843 ], [ -64.7481, 18.372839 ], [ -64.748184, 18.372849 ], [ -64.748291, 18.372871 ], [ -64.748405, 18.372936 ], [ -64.748512, 18.372974 ], [ -64.748642, 18.372992 ], [ -64.748756, 18.372993 ], [ -64.749008, 18.372976 ], [ -64.749191, 18.372944 ], [ -64.749382, 18.372932 ], [ -64.749559, 18.37295 ], [ -64.749582, 18.372947 ], [ -64.74968, 18.372936 ], [ -64.749759, 18.372907 ], [ -64.749818, 18.372887 ], [ -64.749996, 18.37284 ], [ -64.750092, 18.372834 ], [ -64.750194, 18.372828 ], [ -64.750279, 18.372799 ], [ -64.750291, 18.37279 ], [ -64.75036, 18.372743 ], [ -64.750429, 18.37271 ], [ -64.750487, 18.372661 ], [ -64.750524, 18.372626 ], [ -64.750556, 18.372611 ], [ -64.750614, 18.37262 ], [ -64.750695, 18.372617 ], [ -64.75077, 18.3726 ], [ -64.750879, 18.37255 ], [ -64.750968, 18.372499 ], [ -64.751214, 18.372446 ], [ -64.751217, 18.372444 ], [ -64.751341, 18.372396 ], [ -64.751479, 18.372281 ], [ -64.751568, 18.372167 ], [ -64.751676, 18.372005 ], [ -64.751716, 18.371917 ], [ -64.751791, 18.371796 ], [ -64.751831, 18.371708 ], [ -64.75186, 18.371598 ], [ -64.751889, 18.371543 ], [ -64.751941, 18.371466 ], [ -64.75201, 18.371393 ], [ -64.752074, 18.371333 ], [ -64.752137, 18.371256 ], [ -64.752218, 18.371206 ], [ -64.752311, 18.371159 ], [ -64.752339, 18.371108 ], [ -64.75238, 18.371003 ], [ -64.752388, 18.370926 ], [ -64.752403, 18.370838 ], [ -64.752466, 18.370761 ], [ -64.752508, 18.370697 ], [ -64.752553, 18.370618 ], [ -64.754226, 18.368856 ], [ -64.766207, 18.356239 ], [ -64.766266, 18.356224 ], [ -64.766386, 18.356186 ], [ -64.766455, 18.356168 ], [ -64.766504, 18.356156 ], [ -64.766555, 18.356127 ], [ -64.766629, 18.356079 ], [ -64.766635, 18.355973 ], [ -64.766663, 18.355873 ], [ -64.766692, 18.355826 ], [ -64.766708, 18.355801 ], [ -64.766768, 18.355733 ], [ -64.766811, 18.355622 ], [ -64.76692, 18.355546 ], [ -64.766968, 18.355463 ], [ -64.767009, 18.35546 ], [ -64.767046, 18.355465 ], [ -64.767055, 18.355458 ], [ -64.767068, 18.355433 ], [ -64.767084, 18.355417 ], [ -64.767119, 18.355397 ], [ -64.767174, 18.355379 ], [ -64.767191, 18.355381 ], [ -64.76725, 18.355389 ], [ -64.767295, 18.355388 ], [ -64.767311, 18.355354 ], [ -64.76731, 18.355319 ], [ -64.767326, 18.35528 ], [ -64.767332, 18.355275 ], [ -64.767401, 18.355236 ], [ -64.767427, 18.3552 ], [ -64.767433, 18.355194 ], [ -64.768096, 18.354406 ], [ -64.768148, 18.354478 ], [ -64.768188, 18.354528 ], [ -64.768228, 18.354556 ], [ -64.768303, 18.354677 ], [ -64.768332, 18.354748 ], [ -64.768349, 18.354853 ], [ -64.768349, 18.354924 ], [ -64.768349, 18.35493 ], [ -64.768367, 18.355007 ], [ -64.768326, 18.355112 ], [ -64.768297, 18.355343 ], [ -64.768309, 18.355431 ], [ -64.768332, 18.355481 ], [ -64.768372, 18.355547 ], [ -64.768441, 18.355596 ], [ -64.76847, 18.355646 ], [ -64.768574, 18.35574 ], [ -64.768597, 18.355762 ], [ -64.768619, 18.355772 ], [ -64.768655, 18.355778 ], [ -64.768696, 18.355795 ], [ -64.768736, 18.355767 ], [ -64.768806, 18.355634 ], [ -64.768857, 18.355547 ], [ -64.768972, 18.355415 ], [ -64.769082, 18.355321 ], [ -64.769122, 18.355261 ], [ -64.769157, 18.355173 ], [ -64.769139, 18.355073 ], [ -64.769116, 18.355013 ], [ -64.768984, 18.354908 ], [ -64.768926, 18.354853 ], [ -64.768868, 18.354809 ], [ -64.768793, 18.354798 ], [ -64.768627, 18.35472 ], [ -64.768592, 18.35471 ], [ -64.768574, 18.354688 ], [ -64.768555, 18.354617 ], [ -64.768545, 18.354578 ], [ -64.768511, 18.35455 ], [ -64.768453, 18.354517 ], [ -64.768424, 18.35449 ], [ -64.768453, 18.354429 ], [ -64.768436, 18.354363 ], [ -64.768447, 18.354264 ], [ -64.768442, 18.354187 ], [ -64.768384, 18.354109 ], [ -64.768363, 18.354089 ], [ -64.77047, 18.351587 ], [ -64.77354, 18.353383 ], [ -64.773575, 18.353411 ], [ -64.773589, 18.353411 ], [ -64.773644, 18.353411 ], [ -64.773725, 18.353416 ], [ -64.773769, 18.353416 ], [ -64.773829, 18.353416 ], [ -64.777229, 18.353487 ], [ -64.77729, 18.353489 ], [ -64.784729, 18.35391 ], [ -64.784835, 18.353919 ], [ -64.784873, 18.35391 ], [ -64.784915, 18.353936 ], [ -64.784965, 18.353918 ], [ -64.785003, 18.353925 ], [ -64.785057, 18.353973 ], [ -64.785179, 18.354 ], [ -64.785224, 18.354 ], [ -64.785293, 18.35396 ], [ -64.785301, 18.353921 ], [ -64.785186, 18.353883 ], [ -64.785087, 18.353834 ], [ -64.785031, 18.353735 ], [ -64.784988, 18.353683 ], [ -64.784965, 18.353675 ], [ -64.784996, 18.35363 ], [ -64.785005, 18.353606 ], [ -64.785011, 18.35355 ], [ -64.785044, 18.353517 ], [ -64.785067, 18.353497 ], [ -64.785103, 18.353468 ], [ -64.785126, 18.353441 ], [ -64.785126, 18.353411 ], [ -64.785164, 18.353352 ], [ -64.785187, 18.353294 ], [ -64.78521, 18.35326 ], [ -64.785225, 18.35323 ], [ -64.785225, 18.353199 ], [ -64.785217, 18.353161 ], [ -64.785225, 18.353138 ], [ -64.78524, 18.353106 ], [ -64.785278, 18.353092 ], [ -64.785309, 18.353085 ], [ -64.785324, 18.353058 ], [ -64.785355, 18.353056 ], [ -64.785385, 18.353039 ], [ -64.785385, 18.352989 ], [ -64.785461, 18.352983 ], [ -64.785484, 18.353008 ], [ -64.785507, 18.353022 ], [ -64.785553, 18.353003 ], [ -64.785568, 18.352982 ], [ -64.785583, 18.352951 ], [ -64.785606, 18.352928 ], [ -64.785637, 18.352917 ], [ -64.785688, 18.352937 ], [ -64.785744, 18.352953 ], [ -64.785761, 18.352964 ], [ -64.785789, 18.352982 ], [ -64.785805, 18.352995 ], [ -64.785843, 18.352997 ], [ -64.785866, 18.352993 ], [ -64.785896, 18.352985 ], [ -64.785973, 18.352983 ], [ -64.786003, 18.35298 ], [ -64.786005, 18.352978 ], [ -64.786034, 18.352955 ], [ -64.786057, 18.35297 ], [ -64.786087, 18.35298 ], [ -64.786118, 18.352957 ], [ -64.786148, 18.35293 ], [ -64.786171, 18.352921 ], [ -64.786201, 18.352928 ], [ -64.786209, 18.352942 ], [ -64.786209, 18.352978 ], [ -64.786224, 18.353001 ], [ -64.786255, 18.35301 ], [ -64.786285, 18.353006 ], [ -64.786324, 18.352995 ], [ -64.786369, 18.352983 ], [ -64.786407, 18.352983 ], [ -64.786446, 18.352978 ], [ -64.786491, 18.352964 ], [ -64.786613, 18.352942 ], [ -64.786652, 18.352922 ], [ -64.786667, 18.352835 ], [ -64.78669, 18.352812 ], [ -64.786713, 18.352842 ], [ -64.786751, 18.352947 ], [ -64.786819, 18.352877 ], [ -64.786873, 18.352879 ], [ -64.786919, 18.352863 ], [ -64.786932, 18.352838 ], [ -64.786926, 18.352797 ], [ -64.786899, 18.352759 ], [ -64.786888, 18.352715 ], [ -64.786931, 18.352699 ], [ -64.787041, 18.352638 ], [ -64.787094, 18.352598 ], [ -64.787158, 18.352544 ], [ -64.787231, 18.352419 ], [ -64.787685, 18.351849 ], [ -64.788414, 18.350935 ], [ -64.788437, 18.350861 ], [ -64.788445, 18.350801 ], [ -64.78846, 18.350719 ], [ -64.788452, 18.350624 ], [ -64.78846, 18.350594 ], [ -64.788429, 18.350563 ], [ -64.788429, 18.350403 ], [ -64.788392, 18.350298 ], [ -64.788284, 18.349991 ], [ -64.788273, 18.349942 ], [ -64.788208, 18.349659 ], [ -64.788185, 18.349623 ], [ -64.788147, 18.349644 ], [ -64.788101, 18.349663 ], [ -64.78804, 18.349667 ], [ -64.788002, 18.349653 ], [ -64.787949, 18.349651 ], [ -64.787935, 18.349666 ], [ -64.787886, 18.349719 ], [ -64.787857, 18.349745 ], [ -64.787796, 18.34976 ], [ -64.787682, 18.34973 ], [ -64.787598, 18.349682 ], [ -64.787407, 18.34951 ], [ -64.787325, 18.349404 ], [ -64.787216, 18.349264 ], [ -64.787064, 18.349052 ], [ -64.786957, 18.348825 ], [ -64.786896, 18.348576 ], [ -64.786873, 18.348354 ], [ -64.786884, 18.348164 ], [ -64.786896, 18.347879 ], [ -64.786957, 18.34763 ], [ -64.787051, 18.34738 ], [ -64.787148, 18.347149 ], [ -64.787168, 18.347108 ], [ -64.787239, 18.346962 ], [ -64.787307, 18.346915 ], [ -64.78738, 18.346912 ], [ -64.787506, 18.34692 ], [ -64.787544, 18.346924 ], [ -64.78759, 18.346909 ], [ -64.787628, 18.346891 ], [ -64.78766, 18.346812 ], [ -64.787689, 18.346746 ], [ -64.787722, 18.3467 ], [ -64.787814, 18.346569 ], [ -64.78788, 18.346479 ], [ -64.787955, 18.34635 ], [ -64.787994, 18.346289 ], [ -64.78804, 18.346292 ], [ -64.788086, 18.346287 ], [ -64.788124, 18.346247 ], [ -64.788185, 18.34623 ], [ -64.788231, 18.346226 ], [ -64.788269, 18.346214 ], [ -64.788292, 18.346193 ], [ -64.78833, 18.346172 ], [ -64.788429, 18.346157 ], [ -64.788476, 18.346159 ], [ -64.788521, 18.346142 ], [ -64.788597, 18.34609 ], [ -64.788643, 18.346073 ], [ -64.788689, 18.346045 ], [ -64.788719, 18.346014 ], [ -64.788742, 18.346004 ], [ -64.788811, 18.345985 ], [ -64.788834, 18.345972 ], [ -64.788841, 18.345929 ], [ -64.788864, 18.345907 ], [ -64.788902, 18.345892 ], [ -64.78894, 18.34589 ], [ -64.788956, 18.345871 ], [ -64.788948, 18.345823 ], [ -64.788948, 18.3458 ], [ -64.789001, 18.345741 ], [ -64.789047, 18.345615 ], [ -64.78907, 18.345604 ], [ -64.789093, 18.345581 ], [ -64.789078, 18.345499 ], [ -64.789078, 18.345419 ], [ -64.789093, 18.345369 ], [ -64.789146, 18.345329 ], [ -64.789177, 18.345257 ], [ -64.789177, 18.345148 ], [ -64.789162, 18.345121 ], [ -64.789154, 18.345093 ], [ -64.789169, 18.345062 ], [ -64.789169, 18.345018 ], [ -64.790222, 18.3416 ], [ -64.793221, 18.3396 ], [ -64.793264, 18.33958 ], [ -64.793284, 18.339547 ], [ -64.79332, 18.339481 ], [ -64.793325, 18.33944 ], [ -64.793335, 18.339361 ], [ -64.793375, 18.339311 ], [ -64.793436, 18.339264 ], [ -64.793495, 18.339241 ], [ -64.793541, 18.339262 ], [ -64.793571, 18.339235 ], [ -64.793569, 18.339215 ], [ -64.793564, 18.339165 ], [ -64.793549, 18.339128 ], [ -64.793541, 18.339054 ], [ -64.793707, 18.338949 ], [ -64.793976, 18.338817 ], [ -64.794047, 18.338779 ], [ -64.794097, 18.338731 ], [ -64.794148, 18.338699 ], [ -64.794239, 18.338647 ], [ -64.79435, 18.338591 ], [ -64.794404, 18.338581 ], [ -64.794479, 18.338581 ], [ -64.794517, 18.338567 ], [ -64.794563, 18.338551 ], [ -64.794601, 18.338551 ], [ -64.794662, 18.338579 ], [ -64.794792, 18.338551 ], [ -64.794952, 18.338546 ], [ -64.795044, 18.338554 ], [ -64.795149, 18.338508 ], [ -64.79525, 18.338497 ], [ -64.795364, 18.338467 ], [ -64.795468, 18.338511 ], [ -64.795469, 18.338536 ], [ -64.795487, 18.338581 ], [ -64.795494, 18.338587 ], [ -64.795578, 18.338606 ], [ -64.795638, 18.338563 ], [ -64.795725, 18.338502 ], [ -64.795784, 18.338446 ], [ -64.795816, 18.338343 ], [ -64.795883, 18.338311 ], [ -64.795876, 18.338211 ], [ -64.795914, 18.338137 ], [ -64.795967, 18.338087 ], [ -64.796112, 18.337996 ], [ -64.796166, 18.337987 ], [ -64.796252, 18.337984 ], [ -64.796331, 18.337987 ], [ -64.79635, 18.337936 ], [ -64.796398, 18.337925 ], [ -64.796486, 18.337954 ], [ -64.796501, 18.337941 ], [ -64.796541, 18.337899 ], [ -64.796629, 18.3378 ], [ -64.796722, 18.337772 ], [ -64.796791, 18.337669 ], [ -64.796876, 18.337607 ], [ -64.796954, 18.337495 ], [ -64.797089, 18.337422 ], [ -64.797277, 18.337345 ], [ -64.797425, 18.337258 ], [ -64.797485, 18.337221 ], [ -64.797516, 18.337217 ], [ -64.797558, 18.337188 ], [ -64.79764, 18.337151 ], [ -64.797806, 18.337118 ], [ -64.79789, 18.33717 ], [ -64.797927, 18.337166 ], [ -64.797973, 18.337168 ], [ -64.798042, 18.337132 ], [ -64.798088, 18.33708 ], [ -64.798111, 18.33707 ], [ -64.79818, 18.337061 ], [ -64.798218, 18.337112 ], [ -64.798233, 18.337112 ], [ -64.798279, 18.337086 ], [ -64.798314, 18.337092 ], [ -64.798365, 18.337108 ], [ -64.798407, 18.337088 ], [ -64.798462, 18.337078 ], [ -64.798548, 18.337055 ], [ -64.798599, 18.337048 ], [ -64.798625, 18.337066 ], [ -64.798637, 18.337082 ], [ -64.79866, 18.337074 ], [ -64.798683, 18.337042 ], [ -64.798706, 18.337004 ], [ -64.798729, 18.336987 ], [ -64.798798, 18.336964 ], [ -64.798805, 18.336952 ], [ -64.79882, 18.336945 ], [ -64.79885, 18.336922 ], [ -64.798882, 18.336891 ], [ -64.798937, 18.33688 ], [ -64.798958, 18.336873 ], [ -64.798973, 18.336864 ], [ -64.79899, 18.336811 ], [ -64.799004, 18.33674 ], [ -64.799002, 18.336727 ], [ -64.798996, 18.336691 ], [ -64.798968, 18.336644 ], [ -64.798942, 18.336603 ], [ -64.7989, 18.336535 ], [ -64.798869, 18.336504 ], [ -64.798848, 18.33649 ], [ -64.798806, 18.336477 ], [ -64.798778, 18.336473 ], [ -64.798749, 18.336464 ], [ -64.798721, 18.336452 ], [ -64.79869, 18.336426 ], [ -64.798599, 18.336332 ], [ -64.798511, 18.336237 ], [ -64.798486, 18.336209 ], [ -64.798439, 18.336147 ], [ -64.798429, 18.336121 ], [ -64.798414, 18.336062 ], [ -64.798362, 18.33596 ], [ -64.798326, 18.335888 ], [ -64.798309, 18.335852 ], [ -64.798249, 18.335699 ], [ -64.798225, 18.335638 ], [ -64.798232, 18.33557 ], [ -64.798264, 18.335491 ], [ -64.798302, 18.335392 ], [ -64.798342, 18.335332 ], [ -64.798369, 18.335295 ], [ -64.798416, 18.335255 ], [ -64.798457, 18.335241 ], [ -64.798523, 18.335207 ], [ -64.798553, 18.335192 ], [ -64.798576, 18.335171 ], [ -64.798602, 18.335144 ], [ -64.798613, 18.335109 ], [ -64.798615, 18.335075 ], [ -64.798615, 18.335042 ], [ -64.798615, 18.33501 ], [ -64.79862, 18.335001 ], [ -64.798635, 18.334986 ], [ -64.798637, 18.334961 ], [ -64.798637, 18.33494 ], [ -64.798628, 18.334925 ], [ -64.798615, 18.334906 ], [ -64.79873, 18.333708 ], [ -64.798774, 18.333244 ], [ -64.798789, 18.333089 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "030", "TRACTCE10": "961100", "GEOID10": "78030961100", "NAME10": "9611", "NAMELSAD10": "Census Tract 9611", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3514337, "AWATER10": 0, "INTPTLAT10": "+18.3382865", "INTPTLON10": "-064.9139743" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.92645, 18.33021 ], [ -64.926514, 18.330313 ], [ -64.926155, 18.330515 ], [ -64.924669, 18.331423 ], [ -64.924587, 18.33147 ], [ -64.920371, 18.334057 ], [ -64.919574, 18.334522 ], [ -64.919415, 18.334618 ], [ -64.91967, 18.335009 ], [ -64.919884, 18.335318 ], [ -64.919998, 18.335506 ], [ -64.920059, 18.335573 ], [ -64.920021, 18.335661 ], [ -64.920173, 18.335792 ], [ -64.920815, 18.336437 ], [ -64.921211, 18.336769 ], [ -64.921707, 18.337004 ], [ -64.922238, 18.337222 ], [ -64.922595, 18.33737 ], [ -64.922818, 18.337478 ], [ -64.92236, 18.33857 ], [ -64.922326, 18.338602 ], [ -64.922224, 18.338698 ], [ -64.92219, 18.33873 ], [ -64.922129, 18.338814 ], [ -64.922115, 18.338835 ], [ -64.92204, 18.33894 ], [ -64.921948, 18.339069 ], [ -64.92192, 18.33911 ], [ -64.92188, 18.339146 ], [ -64.92182, 18.3392 ], [ -64.921792, 18.339228 ], [ -64.921548, 18.339488 ], [ -64.92151, 18.33953 ], [ -64.921474, 18.339581 ], [ -64.92139, 18.3397 ], [ -64.92133, 18.33987 ], [ -64.92133, 18.339923 ], [ -64.92133, 18.33998 ], [ -64.92135, 18.34016 ], [ -64.92146, 18.34086 ], [ -64.92145, 18.34102 ], [ -64.92144, 18.34105 ], [ -64.92138, 18.34124 ], [ -64.921385, 18.34133 ], [ -64.92139, 18.34142 ], [ -64.921398, 18.341444 ], [ -64.92142, 18.341516 ], [ -64.92143, 18.34154 ], [ -64.921527, 18.341636 ], [ -64.922025, 18.342086 ], [ -64.922711, 18.342705 ], [ -64.92299, 18.342957 ], [ -64.922936, 18.343356 ], [ -64.922622, 18.344731 ], [ -64.922277, 18.346306 ], [ -64.92227, 18.346341 ], [ -64.922154, 18.347066 ], [ -64.921958, 18.347826 ], [ -64.921938, 18.347908 ], [ -64.921854, 18.348248 ], [ -64.921841, 18.348303 ], [ -64.921435, 18.349973 ], [ -64.921372, 18.350295 ], [ -64.92136, 18.350362 ], [ -64.920952, 18.350256 ], [ -64.92047, 18.35013 ], [ -64.92014, 18.35003 ], [ -64.9197, 18.34989 ], [ -64.919405, 18.349807 ], [ -64.91927, 18.34977 ], [ -64.91918, 18.34974 ], [ -64.91914, 18.34969 ], [ -64.9191, 18.34961 ], [ -64.91901, 18.34957 ], [ -64.91897, 18.34954 ], [ -64.918882, 18.349453 ], [ -64.918599, 18.349144 ], [ -64.917683, 18.34874 ], [ -64.915906, 18.347649 ], [ -64.915039, 18.347109 ], [ -64.914177, 18.346955 ], [ -64.912856, 18.346894 ], [ -64.911182, 18.346656 ], [ -64.910011, 18.346505 ], [ -64.909732, 18.344742 ], [ -64.909729, 18.344733 ], [ -64.909708, 18.344645 ], [ -64.908677, 18.344431 ], [ -64.908528, 18.344332 ], [ -64.908438, 18.344272 ], [ -64.9082, 18.344179 ], [ -64.908028, 18.344179 ], [ -64.90785, 18.344179 ], [ -64.907568, 18.344106 ], [ -64.907379, 18.344124 ], [ -64.907033, 18.344173 ], [ -64.906793, 18.344228 ], [ -64.906682, 18.344231 ], [ -64.906492, 18.344219 ], [ -64.906113, 18.344112 ], [ -64.905921, 18.344033 ], [ -64.905728, 18.343981 ], [ -64.905502, 18.343969 ], [ -64.905209, 18.34399 ], [ -64.904759, 18.344012 ], [ -64.904697, 18.343838 ], [ -64.904619, 18.343575 ], [ -64.90412, 18.342017 ], [ -64.904139, 18.341913 ], [ -64.904195, 18.341617 ], [ -64.904469, 18.340167 ], [ -64.904876, 18.338436 ], [ -64.905306, 18.336053 ], [ -64.90537, 18.335699 ], [ -64.905379, 18.335665 ], [ -64.9054, 18.335593 ], [ -64.905438, 18.335424 ], [ -64.905446, 18.335377 ], [ -64.905452, 18.335327 ], [ -64.905457, 18.335277 ], [ -64.905461, 18.335227 ], [ -64.905462, 18.335185 ], [ -64.905463, 18.335146 ], [ -64.90546, 18.335054 ], [ -64.90546, 18.335014 ], [ -64.905461, 18.334977 ], [ -64.905465, 18.334914 ], [ -64.905467, 18.334889 ], [ -64.905474, 18.33482 ], [ -64.90548, 18.334726 ], [ -64.905484, 18.334637 ], [ -64.905485, 18.334551 ], [ -64.905491, 18.334401 ], [ -64.905497, 18.334367 ], [ -64.9055, 18.334334 ], [ -64.905502, 18.3343 ], [ -64.905502, 18.334267 ], [ -64.905514, 18.334159 ], [ -64.905525, 18.33405 ], [ -64.905529, 18.334021 ], [ -64.905534, 18.333994 ], [ -64.90554, 18.333965 ], [ -64.905547, 18.333938 ], [ -64.905557, 18.33391 ], [ -64.905567, 18.333882 ], [ -64.905576, 18.333856 ], [ -64.905589, 18.333831 ], [ -64.905607, 18.333782 ], [ -64.905626, 18.333734 ], [ -64.90564, 18.333708 ], [ -64.905646, 18.333699 ], [ -64.905652, 18.33369 ], [ -64.905658, 18.333679 ], [ -64.905662, 18.333669 ], [ -64.905665, 18.333657 ], [ -64.905666, 18.333645 ], [ -64.905668, 18.333635 ], [ -64.905666, 18.333622 ], [ -64.90567, 18.333604 ], [ -64.905671, 18.333587 ], [ -64.905679, 18.333571 ], [ -64.905686, 18.333555 ], [ -64.905694, 18.33354 ], [ -64.905752, 18.333409 ], [ -64.90581, 18.33328 ], [ -64.905815, 18.333266 ], [ -64.905823, 18.333238 ], [ -64.905829, 18.333211 ], [ -64.905834, 18.333184 ], [ -64.905838, 18.333155 ], [ -64.905874, 18.333024 ], [ -64.90591, 18.332889 ], [ -64.905916, 18.332854 ], [ -64.905924, 18.33282 ], [ -64.905932, 18.332785 ], [ -64.905941, 18.332751 ], [ -64.905953, 18.332715 ], [ -64.905966, 18.332676 ], [ -64.905986, 18.332637 ], [ -64.906003, 18.332597 ], [ -64.90602, 18.332557 ], [ -64.906035, 18.332518 ], [ -64.906045, 18.332484 ], [ -64.906054, 18.33245 ], [ -64.90606, 18.332421 ], [ -64.906071, 18.332368 ], [ -64.906081, 18.332318 ], [ -64.906093, 18.332266 ], [ -64.906108, 18.332217 ], [ -64.906125, 18.332163 ], [ -64.906144, 18.332108 ], [ -64.906159, 18.332078 ], [ -64.906169, 18.332053 ], [ -64.906178, 18.332027 ], [ -64.906188, 18.332 ], [ -64.906195, 18.331965 ], [ -64.9062, 18.331931 ], [ -64.906205, 18.331896 ], [ -64.906206, 18.331862 ], [ -64.906206, 18.331839 ], [ -64.906215, 18.331813 ], [ -64.906222, 18.331788 ], [ -64.906228, 18.331761 ], [ -64.906234, 18.331734 ], [ -64.906234, 18.331706 ], [ -64.906236, 18.331676 ], [ -64.906238, 18.331647 ], [ -64.906242, 18.331617 ], [ -64.90625, 18.331577 ], [ -64.906259, 18.331539 ], [ -64.906273, 18.331477 ], [ -64.906282, 18.331416 ], [ -64.906293, 18.331356 ], [ -64.906305, 18.331304 ], [ -64.906319, 18.331249 ], [ -64.906328, 18.331229 ], [ -64.906335, 18.331209 ], [ -64.906343, 18.331188 ], [ -64.90635, 18.331167 ], [ -64.906358, 18.331134 ], [ -64.906363, 18.331101 ], [ -64.906367, 18.331063 ], [ -64.906368, 18.331036 ], [ -64.906367, 18.331009 ], [ -64.906374, 18.330912 ], [ -64.906379, 18.330818 ], [ -64.906391, 18.330701 ], [ -64.906397, 18.330585 ], [ -64.906405, 18.330479 ], [ -64.906408, 18.330375 ], [ -64.906397, 18.330296 ], [ -64.906386, 18.330217 ], [ -64.906369, 18.330139 ], [ -64.906352, 18.330061 ], [ -64.906332, 18.329989 ], [ -64.906307, 18.329918 ], [ -64.906285, 18.329851 ], [ -64.906254, 18.329774 ], [ -64.906242, 18.329739 ], [ -64.906228, 18.329696 ], [ -64.906217, 18.329649 ], [ -64.906212, 18.329618 ], [ -64.906208, 18.329587 ], [ -64.906205, 18.329555 ], [ -64.906203, 18.329523 ], [ -64.9062, 18.329492 ], [ -64.9062, 18.32946 ], [ -64.906204, 18.329426 ], [ -64.906206, 18.329394 ], [ -64.906197, 18.329384 ], [ -64.906186, 18.329372 ], [ -64.906178, 18.329361 ], [ -64.906171, 18.329347 ], [ -64.906165, 18.329335 ], [ -64.90616, 18.32932 ], [ -64.906155, 18.329307 ], [ -64.906155, 18.329291 ], [ -64.906154, 18.32928 ], [ -64.906155, 18.329267 ], [ -64.906155, 18.329251 ], [ -64.906161, 18.329235 ], [ -64.906161, 18.329215 ], [ -64.906159, 18.329188 ], [ -64.906155, 18.32916 ], [ -64.90615, 18.329133 ], [ -64.906144, 18.329105 ], [ -64.906142, 18.329057 ], [ -64.906138, 18.328949 ], [ -64.906138, 18.328841 ], [ -64.906138, 18.328736 ], [ -64.906138, 18.328628 ], [ -64.906137, 18.32852 ], [ -64.906135, 18.328462 ], [ -64.906133, 18.328415 ], [ -64.906136, 18.32834 ], [ -64.906147, 18.328161 ], [ -64.906155, 18.327979 ], [ -64.90616, 18.327903 ], [ -64.906166, 18.327827 ], [ -64.906167, 18.32774 ], [ -64.906167, 18.32765 ], [ -64.906165, 18.327561 ], [ -64.906163, 18.327471 ], [ -64.906347, 18.327477 ], [ -64.906741, 18.32749 ], [ -64.907459, 18.327481 ], [ -64.908497, 18.32744 ], [ -64.908786, 18.32752 ], [ -64.90908, 18.32762 ], [ -64.909403, 18.327755 ], [ -64.909493, 18.327796 ], [ -64.909707, 18.327915 ], [ -64.909741, 18.327933 ], [ -64.909777, 18.32795 ], [ -64.909814, 18.327967 ], [ -64.909853, 18.327981 ], [ -64.909897, 18.327996 ], [ -64.909976, 18.328017 ], [ -64.910033, 18.328029 ], [ -64.910065, 18.328036 ], [ -64.910104, 18.328048 ], [ -64.910143, 18.328061 ], [ -64.910779, 18.328329 ], [ -64.91078, 18.32833 ], [ -64.91094, 18.32841 ], [ -64.91107, 18.32848 ], [ -64.91147, 18.32868 ], [ -64.91159, 18.32873 ], [ -64.91168, 18.32875 ], [ -64.91177, 18.32875 ], [ -64.912054, 18.328946 ], [ -64.913094, 18.330077 ], [ -64.915812, 18.329728 ], [ -64.917728, 18.329244 ], [ -64.917973, 18.329161 ], [ -64.918458, 18.329009 ], [ -64.91939, 18.329852 ], [ -64.920306, 18.33016 ], [ -64.920249, 18.330285 ], [ -64.920163, 18.330474 ], [ -64.920792, 18.331195 ], [ -64.920852, 18.331191 ], [ -64.92087, 18.33119 ], [ -64.92102, 18.33123 ], [ -64.921154, 18.331276 ], [ -64.921207, 18.331294 ], [ -64.92131, 18.33133 ], [ -64.921373, 18.331345 ], [ -64.921429, 18.33136 ], [ -64.92147, 18.33137 ], [ -64.92158, 18.33138 ], [ -64.92168, 18.33137 ], [ -64.92174, 18.33134 ], [ -64.92181, 18.33129 ], [ -64.921819, 18.331275 ], [ -64.9219, 18.33115 ], [ -64.92199, 18.33098 ], [ -64.92222, 18.33065 ], [ -64.922313, 18.330525 ], [ -64.922585, 18.330192 ], [ -64.922827, 18.330032 ], [ -64.92291, 18.33 ], [ -64.923007, 18.32995 ], [ -64.923203, 18.330031 ], [ -64.923553, 18.330177 ], [ -64.9238, 18.33023 ], [ -64.924004, 18.330411 ], [ -64.924526, 18.330784 ], [ -64.924507, 18.330864 ], [ -64.924469, 18.330965 ], [ -64.924522, 18.331009 ], [ -64.924538, 18.330992 ], [ -64.924659, 18.331098 ], [ -64.924805, 18.331226 ], [ -64.925874, 18.330585 ], [ -64.92588, 18.330412 ], [ -64.926003, 18.330339 ], [ -64.926081, 18.33043 ], [ -64.92645, 18.33021 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "030", "TRACTCE10": "960700", "GEOID10": "78030960700", "NAME10": "9607", "NAMELSAD10": "Census Tract 9607", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 5587427, "AWATER10": 6861039, "INTPTLAT10": "+18.3174242", "INTPTLON10": "-064.8432282" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.812705, 18.294835 ], [ -64.812759, 18.294908 ], [ -64.812667, 18.294935 ], [ -64.812652, 18.294858 ], [ -64.812705, 18.294835 ] ] ], [ [ [ -64.812454, 18.294498 ], [ -64.812553, 18.294546 ], [ -64.812553, 18.29461 ], [ -64.812454, 18.29457 ], [ -64.812454, 18.294498 ] ] ], [ [ [ -64.812072, 18.294559 ], [ -64.812126, 18.294492 ], [ -64.812164, 18.294553 ], [ -64.81211, 18.294589 ], [ -64.812072, 18.294559 ] ] ], [ [ [ -64.816177, 18.293945 ], [ -64.816139, 18.293973 ], [ -64.816116, 18.293933 ], [ -64.816154, 18.293863 ], [ -64.816197, 18.293833 ], [ -64.816207, 18.293876 ], [ -64.816216, 18.293944 ], [ -64.816177, 18.293945 ] ] ], [ [ [ -64.816345, 18.29384 ], [ -64.816293, 18.293814 ], [ -64.81636, 18.293775 ], [ -64.816423, 18.29378 ], [ -64.81639, 18.293836 ], [ -64.816345, 18.29384 ] ] ], [ [ [ -64.845375, 18.303949 ], [ -64.845413, 18.303876 ], [ -64.845481, 18.303873 ], [ -64.845512, 18.303939 ], [ -64.845475, 18.304007 ], [ -64.845413, 18.303995 ], [ -64.845375, 18.303949 ] ] ], [ [ [ -64.847686, 18.303688 ], [ -64.847656, 18.303563 ], [ -64.84774, 18.30356 ], [ -64.847785, 18.303632 ], [ -64.84775, 18.303709 ], [ -64.847686, 18.303688 ] ] ], [ [ [ -64.82671, 18.297305 ], [ -64.828263, 18.297486 ], [ -64.828304, 18.297521 ], [ -64.828339, 18.297556 ], [ -64.828419, 18.297511 ], [ -64.828442, 18.297542 ], [ -64.828497, 18.297585 ], [ -64.828543, 18.297591 ], [ -64.828613, 18.297578 ], [ -64.828683, 18.297604 ], [ -64.82874, 18.297648 ], [ -64.828804, 18.297655 ], [ -64.828832, 18.297664 ], [ -64.828871, 18.297728 ], [ -64.828951, 18.297744 ], [ -64.829068, 18.297801 ], [ -64.829119, 18.297823 ], [ -64.829205, 18.297833 ], [ -64.829272, 18.297912 ], [ -64.833695, 18.300787 ], [ -64.836259, 18.302512 ], [ -64.836349, 18.302572 ], [ -64.836389, 18.302587 ], [ -64.836383, 18.302605 ], [ -64.83648, 18.302696 ], [ -64.845924, 18.311592 ], [ -64.857063, 18.308437 ], [ -64.862282, 18.30696 ], [ -64.862242, 18.307027 ], [ -64.862248, 18.307076 ], [ -64.862299, 18.307171 ], [ -64.862294, 18.307203 ], [ -64.862259, 18.307219 ], [ -64.862224, 18.307253 ], [ -64.86219, 18.307269 ], [ -64.862185, 18.307282 ], [ -64.862167, 18.307335 ], [ -64.862167, 18.307343 ], [ -64.862167, 18.307368 ], [ -64.86219, 18.307417 ], [ -64.8622, 18.308008 ], [ -64.862232, 18.3097 ], [ -64.862375, 18.317449 ], [ -64.862428, 18.317478 ], [ -64.862701, 18.317498 ], [ -64.862732, 18.317482 ], [ -64.862801, 18.317505 ], [ -64.862836, 18.317508 ], [ -64.862889, 18.317511 ], [ -64.862941, 18.3175 ], [ -64.863052, 18.317473 ], [ -64.863111, 18.317424 ], [ -64.863135, 18.317394 ], [ -64.863153, 18.317371 ], [ -64.863139, 18.317355 ], [ -64.863146, 18.317312 ], [ -64.863169, 18.31729 ], [ -64.863197, 18.317286 ], [ -64.86322, 18.317305 ], [ -64.863224, 18.317321 ], [ -64.863205, 18.317343 ], [ -64.863228, 18.317379 ], [ -64.863266, 18.317396 ], [ -64.863306, 18.317406 ], [ -64.863358, 18.317484 ], [ -64.863381, 18.317538 ], [ -64.863441, 18.317583 ], [ -64.863487, 18.317598 ], [ -64.863529, 18.317602 ], [ -64.863602, 18.317602 ], [ -64.863708, 18.31757 ], [ -64.863853, 18.317526 ], [ -64.864006, 18.317455 ], [ -64.864219, 18.317293 ], [ -64.864382, 18.317114 ], [ -64.864508, 18.317002 ], [ -64.864656, 18.316897 ], [ -64.864753, 18.316764 ], [ -64.864815, 18.316666 ], [ -64.86481, 18.316627 ], [ -64.864823, 18.316562 ], [ -64.86483, 18.31654 ], [ -64.864744, 18.316486 ], [ -64.864723, 18.316483 ], [ -64.864693, 18.31642 ], [ -64.864704, 18.316326 ], [ -64.864774, 18.316273 ], [ -64.864868, 18.31625 ], [ -64.86485, 18.316186 ], [ -64.864815, 18.31617 ], [ -64.864807, 18.316139 ], [ -64.864815, 18.316069 ], [ -64.864839, 18.316026 ], [ -64.864895, 18.31599 ], [ -64.864914, 18.315996 ], [ -64.864914, 18.316025 ], [ -64.864971, 18.316007 ], [ -64.864996, 18.316 ], [ -64.865013, 18.315994 ], [ -64.865034, 18.315965 ], [ -64.865032, 18.315942 ], [ -64.865003, 18.315935 ], [ -64.86496, 18.315935 ], [ -64.864964, 18.315879 ], [ -64.864957, 18.315833 ], [ -64.864952, 18.315802 ], [ -64.864998, 18.315727 ], [ -64.865074, 18.315693 ], [ -64.865115, 18.315569 ], [ -64.865166, 18.315559 ], [ -64.865204, 18.315582 ], [ -64.865234, 18.315577 ], [ -64.865265, 18.315584 ], [ -64.865282, 18.315612 ], [ -64.865303, 18.315647 ], [ -64.865319, 18.315646 ], [ -64.865349, 18.315643 ], [ -64.865364, 18.31567 ], [ -64.865409, 18.315697 ], [ -64.86544, 18.315716 ], [ -64.865468, 18.315771 ], [ -64.865556, 18.31589 ], [ -64.865616, 18.315933 ], [ -64.865705, 18.315972 ], [ -64.865767, 18.31598 ], [ -64.865831, 18.315944 ], [ -64.86586, 18.315986 ], [ -64.865907, 18.316009 ], [ -64.865982, 18.316 ], [ -64.866009, 18.315999 ], [ -64.866054, 18.316028 ], [ -64.866079, 18.316039 ], [ -64.868349, 18.317852 ], [ -64.869286, 18.3186 ], [ -64.869324, 18.318638 ], [ -64.869377, 18.318729 ], [ -64.869438, 18.318769 ], [ -64.869534, 18.318733 ], [ -64.869629, 18.31868 ], [ -64.869781, 18.318621 ], [ -64.87002, 18.318604 ], [ -64.870041, 18.318604 ], [ -64.870064, 18.3186 ], [ -64.87014, 18.318607 ], [ -64.870302, 18.318612 ], [ -64.870476, 18.318642 ], [ -64.87069, 18.318742 ], [ -64.870716, 18.31875 ], [ -64.870737, 18.318736 ], [ -64.870745, 18.318722 ], [ -64.87075, 18.318712 ], [ -64.870781, 18.318708 ], [ -64.870807, 18.318707 ], [ -64.87083, 18.318725 ], [ -64.870861, 18.318751 ], [ -64.87088, 18.318762 ], [ -64.870886, 18.318798 ], [ -64.870899, 18.318837 ], [ -64.87094, 18.318861 ], [ -64.870987, 18.318888 ], [ -64.871008, 18.318854 ], [ -64.87103, 18.318835 ], [ -64.871055, 18.318842 ], [ -64.871103, 18.318854 ], [ -64.871247, 18.31889 ], [ -64.871307, 18.318905 ], [ -64.871424, 18.318889 ], [ -64.871479, 18.318889 ], [ -64.871605, 18.318898 ], [ -64.871681, 18.318897 ], [ -64.871773, 18.318932 ], [ -64.87182, 18.318937 ], [ -64.871872, 18.318935 ], [ -64.871912, 18.318923 ], [ -64.871964, 18.318907 ], [ -64.872002, 18.318871 ], [ -64.872017, 18.318857 ], [ -64.872057, 18.318857 ], [ -64.872116, 18.318857 ], [ -64.872177, 18.318823 ], [ -64.872269, 18.318737 ], [ -64.872278, 18.318695 ], [ -64.872284, 18.318665 ], [ -64.87226, 18.318638 ], [ -64.872238, 18.318613 ], [ -64.872185, 18.318533 ], [ -64.8722, 18.318438 ], [ -64.872154, 18.318306 ], [ -64.872194, 18.318232 ], [ -64.872291, 18.318112 ], [ -64.87236, 18.318029 ], [ -64.872437, 18.318027 ], [ -64.872498, 18.318008 ], [ -64.872978, 18.31773 ], [ -64.873225, 18.317531 ], [ -64.873329, 18.317448 ], [ -64.873388, 18.317356 ], [ -64.873618, 18.31718 ], [ -64.87365, 18.317081 ], [ -64.873764, 18.317024 ], [ -64.873825, 18.31702 ], [ -64.874006, 18.316975 ], [ -64.874359, 18.316904 ], [ -64.874496, 18.316948 ], [ -64.874625, 18.31696 ], [ -64.874802, 18.316919 ], [ -64.87485, 18.316905 ], [ -64.87485, 18.316855 ], [ -64.87487, 18.316788 ], [ -64.874886, 18.316736 ], [ -64.874889, 18.316622 ], [ -64.874908, 18.316498 ], [ -64.874931, 18.316437 ], [ -64.874985, 18.316368 ], [ -64.875031, 18.316328 ], [ -64.875088, 18.316272 ], [ -64.875121, 18.316229 ], [ -64.875137, 18.316208 ], [ -64.875259, 18.316147 ], [ -64.875366, 18.316132 ], [ -64.875534, 18.316204 ], [ -64.87574, 18.316273 ], [ -64.875824, 18.31637 ], [ -64.875893, 18.316427 ], [ -64.875893, 18.316471 ], [ -64.875893, 18.316551 ], [ -64.875916, 18.316587 ], [ -64.875952, 18.316605 ], [ -64.876015, 18.316635 ], [ -64.876105, 18.316655 ], [ -64.87616, 18.316668 ], [ -64.876266, 18.316713 ], [ -64.876335, 18.316723 ], [ -64.876543, 18.316652 ], [ -64.87677, 18.316586 ], [ -64.876945, 18.316565 ], [ -64.877182, 18.316565 ], [ -64.877451, 18.316618 ], [ -64.877571, 18.316641 ], [ -64.877651, 18.316682 ], [ -64.877686, 18.3167 ], [ -64.877829, 18.31675 ], [ -64.877968, 18.316689 ], [ -64.878059, 18.316669 ], [ -64.878227, 18.316757 ], [ -64.878204, 18.316664 ], [ -64.878235, 18.316582 ], [ -64.878288, 18.316519 ], [ -64.878317, 18.316501 ], [ -64.878435, 18.316498 ], [ -64.878502, 18.316513 ], [ -64.878578, 18.316483 ], [ -64.878757, 18.316541 ], [ -64.878876, 18.316594 ], [ -64.878987, 18.316637 ], [ -64.879089, 18.316669 ], [ -64.879128, 18.316708 ], [ -64.879341, 18.316753 ], [ -64.879395, 18.316738 ], [ -64.879478, 18.316742 ], [ -64.879527, 18.316763 ], [ -64.879799, 18.316877 ], [ -64.880144, 18.316979 ], [ -64.880199, 18.316978 ], [ -64.880283, 18.317041 ], [ -64.880358, 18.317111 ], [ -64.880405, 18.317164 ], [ -64.880487, 18.317201 ], [ -64.880534, 18.317197 ], [ -64.880628, 18.317185 ], [ -64.880671, 18.31715 ], [ -64.880735, 18.317137 ], [ -64.880835, 18.317158 ], [ -64.880903, 18.317133 ], [ -64.880989, 18.317111 ], [ -64.881055, 18.31708 ], [ -64.881114, 18.317076 ], [ -64.881192, 18.317064 ], [ -64.881289, 18.317072 ], [ -64.881341, 18.317095 ], [ -64.881396, 18.317081 ], [ -64.881472, 18.317088 ], [ -64.880232, 18.319044 ], [ -64.88025, 18.31941 ], [ -64.880348, 18.31941 ], [ -64.880175, 18.320085 ], [ -64.880278, 18.320255 ], [ -64.880506, 18.320595 ], [ -64.880095, 18.321149 ], [ -64.880008, 18.321133 ], [ -64.880033, 18.321249 ], [ -64.88005, 18.32132 ], [ -64.88008, 18.32139 ], [ -64.88014, 18.32148 ], [ -64.88017, 18.32157 ], [ -64.880175, 18.321641 ], [ -64.88018, 18.32171 ], [ -64.880188, 18.321918 ], [ -64.87931, 18.32284 ], [ -64.879256, 18.322891 ], [ -64.87858, 18.32367 ], [ -64.878564, 18.323731 ], [ -64.877263, 18.323635 ], [ -64.877263, 18.323593 ], [ -64.87726, 18.323553 ], [ -64.87728, 18.323402 ], [ -64.877235, 18.323399 ], [ -64.876515, 18.323358 ], [ -64.87492, 18.323901 ], [ -64.873716, 18.324315 ], [ -64.873703, 18.324321 ], [ -64.873638, 18.324354 ], [ -64.873576, 18.324365 ], [ -64.873128, 18.32445 ], [ -64.870135, 18.325014 ], [ -64.86678, 18.32549 ], [ -64.86677, 18.32569 ], [ -64.86678, 18.32592 ], [ -64.866772, 18.326368 ], [ -64.86677, 18.32652 ], [ -64.86674, 18.32715 ], [ -64.86674, 18.3276 ], [ -64.866739, 18.3276 ], [ -64.86673, 18.32793 ], [ -64.86671, 18.32828 ], [ -64.86673, 18.32864 ], [ -64.86675, 18.32895 ], [ -64.86675, 18.32919 ], [ -64.86676, 18.3294 ], [ -64.86676, 18.32961 ], [ -64.86675, 18.32978 ], [ -64.86675, 18.32991 ], [ -64.866749, 18.32991 ], [ -64.866861, 18.332942 ], [ -64.866861, 18.333622 ], [ -64.866862, 18.333855 ], [ -64.861354, 18.333761 ], [ -64.861457, 18.3329 ], [ -64.861532, 18.3322 ], [ -64.861447, 18.332192 ], [ -64.86152, 18.331432 ], [ -64.861574, 18.331433 ], [ -64.86156, 18.33086 ], [ -64.861562, 18.330766 ], [ -64.86157, 18.330485 ], [ -64.86157, 18.33048 ], [ -64.86157, 18.330402 ], [ -64.86157, 18.33018 ], [ -64.86157, 18.330153 ], [ -64.86157, 18.330125 ], [ -64.86157, 18.33007 ], [ -64.86158, 18.32997 ], [ -64.861594, 18.32989 ], [ -64.86164, 18.32966 ], [ -64.86164, 18.329649 ], [ -64.861481, 18.329629 ], [ -64.860628, 18.329507 ], [ -64.860204, 18.329447 ], [ -64.859152, 18.329298 ], [ -64.857793, 18.329174 ], [ -64.857756, 18.329171 ], [ -64.852829, 18.328812 ], [ -64.850804, 18.328665 ], [ -64.850825, 18.328516 ], [ -64.851083, 18.326233 ], [ -64.851001, 18.325867 ], [ -64.850855, 18.325944 ], [ -64.850672, 18.326029 ], [ -64.850567, 18.326043 ], [ -64.850452, 18.326006 ], [ -64.850278, 18.326078 ], [ -64.850208, 18.326078 ], [ -64.849912, 18.326184 ], [ -64.849919, 18.326162 ], [ -64.849961, 18.326134 ], [ -64.849806, 18.325902 ], [ -64.849285, 18.326148 ], [ -64.849412, 18.326402 ], [ -64.849307, 18.326465 ], [ -64.849215, 18.326571 ], [ -64.849131, 18.326522 ], [ -64.849053, 18.326543 ], [ -64.848955, 18.326606 ], [ -64.848701, 18.326522 ], [ -64.848659, 18.326599 ], [ -64.848835, 18.326669 ], [ -64.848877, 18.326719 ], [ -64.848891, 18.32681 ], [ -64.848727, 18.326997 ], [ -64.848623, 18.327208 ], [ -64.848602, 18.327335 ], [ -64.848538, 18.32744 ], [ -64.848503, 18.327567 ], [ -64.848433, 18.327666 ], [ -64.848345, 18.327778 ], [ -64.848243, 18.327842 ], [ -64.848112, 18.327919 ], [ -64.847925, 18.327963 ], [ -64.847711, 18.327975 ], [ -64.847658, 18.327975 ], [ -64.847591, 18.328007 ], [ -64.847475, 18.328049 ], [ -64.847208, 18.328106 ], [ -64.847092, 18.32813 ], [ -64.846981, 18.328176 ], [ -64.84681, 18.328179 ], [ -64.84669, 18.328204 ], [ -64.846609, 18.328246 ], [ -64.846369, 18.328314 ], [ -64.846134, 18.328334 ], [ -64.846007, 18.328396 ], [ -64.845972, 18.328463 ], [ -64.845919, 18.328482 ], [ -64.845891, 18.328616 ], [ -64.8458, 18.328686 ], [ -64.845743, 18.328771 ], [ -64.845743, 18.32882 ], [ -64.845694, 18.328841 ], [ -64.845666, 18.328869 ], [ -64.84561, 18.328919 ], [ -64.84556, 18.328961 ], [ -64.845553, 18.329038 ], [ -64.845469, 18.329088 ], [ -64.845384, 18.329144 ], [ -64.845335, 18.329193 ], [ -64.845293, 18.329271 ], [ -64.845215, 18.329292 ], [ -64.845159, 18.329299 ], [ -64.845159, 18.329348 ], [ -64.845103, 18.329418 ], [ -64.845075, 18.329461 ], [ -64.844997, 18.329489 ], [ -64.844948, 18.329503 ], [ -64.844941, 18.329587 ], [ -64.844948, 18.329651 ], [ -64.844969, 18.329714 ], [ -64.844997, 18.32977 ], [ -64.845032, 18.329834 ], [ -64.845054, 18.329954 ], [ -64.845011, 18.330094 ], [ -64.844948, 18.330122 ], [ -64.844941, 18.330151 ], [ -64.844948, 18.330228 ], [ -64.844969, 18.33027 ], [ -64.844955, 18.330334 ], [ -64.844911, 18.330485 ], [ -64.838602, 18.328339 ], [ -64.834387, 18.326905 ], [ -64.833303, 18.326537 ], [ -64.833282, 18.32655 ], [ -64.833246, 18.326524 ], [ -64.833244, 18.326468 ], [ -64.833272, 18.326423 ], [ -64.83332, 18.326377 ], [ -64.833329, 18.326349 ], [ -64.833301, 18.326325 ], [ -64.83329, 18.326307 ], [ -64.833296, 18.326296 ], [ -64.833311, 18.326271 ], [ -64.833343, 18.326273 ], [ -64.833375, 18.326289 ], [ -64.833405, 18.326294 ], [ -64.833417, 18.326286 ], [ -64.833406, 18.326256 ], [ -64.833395, 18.326221 ], [ -64.833318, 18.32604 ], [ -64.833215, 18.325904 ], [ -64.833069, 18.325739 ], [ -64.832885, 18.325564 ], [ -64.832769, 18.325433 ], [ -64.832664, 18.325335 ], [ -64.832566, 18.325281 ], [ -64.832459, 18.325267 ], [ -64.832394, 18.325234 ], [ -64.832239, 18.325168 ], [ -64.832192, 18.325132 ], [ -64.832126, 18.325042 ], [ -64.832034, 18.324947 ], [ -64.831982, 18.324915 ], [ -64.831833, 18.324764 ], [ -64.826044, 18.316925 ], [ -64.826044, 18.316892 ], [ -64.826079, 18.316831 ], [ -64.826085, 18.316798 ], [ -64.825888, 18.316677 ], [ -64.825859, 18.31665 ], [ -64.825871, 18.3166 ], [ -64.822918, 18.313467 ], [ -64.822878, 18.313439 ], [ -64.82289, 18.313389 ], [ -64.82289, 18.31334 ], [ -64.822895, 18.313307 ], [ -64.82288, 18.313262 ], [ -64.822861, 18.313224 ], [ -64.82278, 18.313136 ], [ -64.822768, 18.313103 ], [ -64.82274, 18.313054 ], [ -64.822734, 18.313021 ], [ -64.822735, 18.31297 ], [ -64.822745, 18.312938 ], [ -64.822745, 18.312855 ], [ -64.822749, 18.312834 ], [ -64.822768, 18.31274 ], [ -64.822761, 18.312705 ], [ -64.822745, 18.312624 ], [ -64.822711, 18.312548 ], [ -64.822654, 18.312363 ], [ -64.822636, 18.312332 ], [ -64.822636, 18.31225 ], [ -64.822642, 18.312217 ], [ -64.822624, 18.312051 ], [ -64.821033, 18.306418 ], [ -64.82101, 18.306336 ], [ -64.821014, 18.306287 ], [ -64.814564, 18.296219 ], [ -64.814513, 18.296122 ], [ -64.814497, 18.296071 ], [ -64.814436, 18.295989 ], [ -64.814344, 18.295989 ], [ -64.814292, 18.295984 ], [ -64.814183, 18.295891 ], [ -64.8141, 18.295789 ], [ -64.814072, 18.29575 ], [ -64.814089, 18.295689 ], [ -64.814113, 18.295639 ], [ -64.814124, 18.295606 ], [ -64.81413, 18.295557 ], [ -64.81413, 18.295403 ], [ -64.814147, 18.29532 ], [ -64.814159, 18.295287 ], [ -64.814205, 18.295243 ], [ -64.814239, 18.295232 ], [ -64.814326, 18.295215 ], [ -64.814361, 18.295226 ], [ -64.814395, 18.295226 ], [ -64.814603, 18.295254 ], [ -64.814633, 18.295264 ], [ -64.814637, 18.295265 ], [ -64.814689, 18.29526 ], [ -64.814747, 18.29526 ], [ -64.814799, 18.295243 ], [ -64.814874, 18.29523 ], [ -64.814926, 18.295232 ], [ -64.81496, 18.295224 ], [ -64.815139, 18.295226 ], [ -64.81526, 18.295259 ], [ -64.815295, 18.295276 ], [ -64.815358, 18.295318 ], [ -64.815392, 18.295331 ], [ -64.815427, 18.295353 ], [ -64.815502, 18.295364 ], [ -64.815537, 18.295357 ], [ -64.815594, 18.295353 ], [ -64.815698, 18.295331 ], [ -64.815704, 18.295282 ], [ -64.815698, 18.295248 ], [ -64.81571, 18.295181 ], [ -64.815738, 18.29516 ], [ -64.815773, 18.295166 ], [ -64.815808, 18.295177 ], [ -64.815842, 18.295199 ], [ -64.815865, 18.295226 ], [ -64.81586, 18.295276 ], [ -64.815842, 18.295309 ], [ -64.815831, 18.295342 ], [ -64.815836, 18.295375 ], [ -64.815848, 18.295414 ], [ -64.815883, 18.295419 ], [ -64.815958, 18.295375 ], [ -64.816009, 18.295359 ], [ -64.816079, 18.295381 ], [ -64.81613, 18.295381 ], [ -64.816165, 18.295375 ], [ -64.816217, 18.295359 ], [ -64.816298, 18.295265 ], [ -64.816327, 18.295215 ], [ -64.81635, 18.2951 ], [ -64.81635, 18.295067 ], [ -64.816355, 18.295034 ], [ -64.816355, 18.294984 ], [ -64.816367, 18.294933 ], [ -64.816396, 18.294907 ], [ -64.816425, 18.294874 ], [ -64.816513, 18.294508 ], [ -64.81651, 18.294391 ], [ -64.816574, 18.294255 ], [ -64.816711, 18.294212 ], [ -64.816742, 18.29425 ], [ -64.816647, 18.294345 ], [ -64.816643, 18.294462 ], [ -64.816797, 18.294511 ], [ -64.816817, 18.294526 ], [ -64.816803, 18.294561 ], [ -64.816701, 18.294654 ], [ -64.816681, 18.294758 ], [ -64.816724, 18.294802 ], [ -64.816759, 18.294824 ], [ -64.81684, 18.294841 ], [ -64.816894, 18.294841 ], [ -64.816926, 18.294841 ], [ -64.816961, 18.294835 ], [ -64.816995, 18.294835 ], [ -64.817046, 18.294841 ], [ -64.817105, 18.294841 ], [ -64.817145, 18.294852 ], [ -64.817232, 18.294863 ], [ -64.817249, 18.294896 ], [ -64.817232, 18.294945 ], [ -64.817209, 18.294977 ], [ -64.817197, 18.295011 ], [ -64.817233, 18.295043 ], [ -64.817266, 18.29505 ], [ -64.817302, 18.295044 ], [ -64.817439, 18.295006 ], [ -64.817474, 18.295 ], [ -64.817509, 18.294999 ], [ -64.817601, 18.29501 ], [ -64.817653, 18.295034 ], [ -64.817682, 18.295062 ], [ -64.822094, 18.297024 ], [ -64.822141, 18.297028 ], [ -64.822162, 18.297031 ], [ -64.822183, 18.297039 ], [ -64.822203, 18.297002 ], [ -64.822257, 18.296965 ], [ -64.822336, 18.296955 ], [ -64.82243, 18.296956 ], [ -64.82671, 18.297305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "030", "TRACTCE10": "960300", "GEOID10": "78030960300", "NAME10": "9603", "NAMELSAD10": "Census Tract 9603", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1773539, "AWATER10": 0, "INTPTLAT10": "+18.3459014", "INTPTLON10": "-064.8906166" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.893483, 18.350582 ], [ -64.892945, 18.350517 ], [ -64.891971, 18.350354 ], [ -64.891166, 18.350253 ], [ -64.889747, 18.350006 ], [ -64.889745, 18.34999 ], [ -64.889739, 18.349945 ], [ -64.889737, 18.34993 ], [ -64.889554, 18.349963 ], [ -64.889406, 18.349949 ], [ -64.888704, 18.349884 ], [ -64.888419, 18.349814 ], [ -64.888322, 18.349791 ], [ -64.88806, 18.34972 ], [ -64.887844, 18.349688 ], [ -64.887809, 18.349682 ], [ -64.887624, 18.349669 ], [ -64.887366, 18.349645 ], [ -64.88716, 18.349633 ], [ -64.887075, 18.349632 ], [ -64.886964, 18.349631 ], [ -64.88682, 18.34965 ], [ -64.886741, 18.349669 ], [ -64.886685, 18.349684 ], [ -64.88666, 18.34969 ], [ -64.886542, 18.349726 ], [ -64.886506, 18.349736 ], [ -64.88643, 18.34976 ], [ -64.88622, 18.34982 ], [ -64.886172, 18.349827 ], [ -64.88595, 18.34986 ], [ -64.8858, 18.34987 ], [ -64.885767, 18.349875 ], [ -64.88566, 18.34989 ], [ -64.88554, 18.34993 ], [ -64.885386, 18.349958 ], [ -64.88527, 18.34998 ], [ -64.885213, 18.34998 ], [ -64.88513, 18.34998 ], [ -64.885122, 18.349979 ], [ -64.885087, 18.349975 ], [ -64.884984, 18.349963 ], [ -64.88495, 18.34996 ], [ -64.884882, 18.34995 ], [ -64.884876, 18.349949 ], [ -64.88482, 18.34994 ], [ -64.88468, 18.34988 ], [ -64.884669, 18.349874 ], [ -64.884603, 18.349842 ], [ -64.88452, 18.3498 ], [ -64.884457, 18.349774 ], [ -64.8844, 18.34975 ], [ -64.88421, 18.34966 ], [ -64.88407, 18.34961 ], [ -64.884022, 18.34958 ], [ -64.88394, 18.34953 ], [ -64.88388, 18.34951 ], [ -64.883847, 18.349486 ], [ -64.88381, 18.34946 ], [ -64.883765, 18.349425 ], [ -64.883751, 18.349414 ], [ -64.88372, 18.34939 ], [ -64.88364, 18.3493 ], [ -64.88354, 18.34921 ], [ -64.88339, 18.34911 ], [ -64.88328, 18.34902 ], [ -64.88316, 18.34895 ], [ -64.88282, 18.34878 ], [ -64.88262, 18.34865 ], [ -64.88254, 18.34858 ], [ -64.882444, 18.348527 ], [ -64.88243, 18.34852 ], [ -64.88222, 18.34837 ], [ -64.88215, 18.3483 ], [ -64.88207, 18.34821 ], [ -64.88198, 18.3481 ], [ -64.88188, 18.34794 ], [ -64.88157, 18.34737 ], [ -64.88147, 18.34716 ], [ -64.88134, 18.34687 ], [ -64.8813, 18.3468 ], [ -64.88124, 18.34671 ], [ -64.88109, 18.34656 ], [ -64.88087, 18.34628 ], [ -64.88079, 18.34615 ], [ -64.88071, 18.34597 ], [ -64.88062, 18.34585 ], [ -64.88053, 18.34572 ], [ -64.88043, 18.34556 ], [ -64.88026, 18.34531 ], [ -64.879906, 18.34468 ], [ -64.8799, 18.34467 ], [ -64.87988, 18.34459 ], [ -64.87988, 18.34453 ], [ -64.8799, 18.34448 ], [ -64.87994, 18.34444 ], [ -64.87999, 18.34441 ], [ -64.88015, 18.34439 ], [ -64.8804, 18.34443 ], [ -64.88058, 18.34443 ], [ -64.88067, 18.34441 ], [ -64.88076, 18.34438 ], [ -64.88085, 18.34434 ], [ -64.88114, 18.34415 ], [ -64.8812, 18.34409 ], [ -64.88122, 18.34404 ], [ -64.881223, 18.344021 ], [ -64.88123, 18.34398 ], [ -64.88124, 18.34386 ], [ -64.88122, 18.34371 ], [ -64.88119, 18.34358 ], [ -64.881182, 18.343557 ], [ -64.881143, 18.343406 ], [ -64.88113, 18.34336 ], [ -64.88112, 18.34328 ], [ -64.881119, 18.343275 ], [ -64.88112, 18.34321 ], [ -64.88115, 18.34315 ], [ -64.881319, 18.342946 ], [ -64.88135, 18.34291 ], [ -64.88138, 18.34283 ], [ -64.881398, 18.342821 ], [ -64.881455, 18.342795 ], [ -64.881474, 18.342787 ], [ -64.881499, 18.342775 ], [ -64.881574, 18.342741 ], [ -64.8816, 18.34273 ], [ -64.881654, 18.342704 ], [ -64.881817, 18.342627 ], [ -64.881872, 18.342602 ], [ -64.881879, 18.342597 ], [ -64.881906, 18.342584 ], [ -64.881915, 18.342581 ], [ -64.881924, 18.342576 ], [ -64.88195, 18.342564 ], [ -64.88196, 18.34256 ], [ -64.882048, 18.342522 ], [ -64.882312, 18.342407 ], [ -64.8824, 18.34237 ], [ -64.882459, 18.342342 ], [ -64.882639, 18.342257 ], [ -64.8827, 18.34223 ], [ -64.883116, 18.342042 ], [ -64.8837, 18.34178 ], [ -64.88418, 18.34157 ], [ -64.884367, 18.341482 ], [ -64.88444, 18.34145 ], [ -64.88461, 18.34136 ], [ -64.88476, 18.34125 ], [ -64.884767, 18.341244 ], [ -64.884791, 18.341225 ], [ -64.8848, 18.34122 ], [ -64.88509, 18.34099 ], [ -64.885171, 18.34093 ], [ -64.8852, 18.34091 ], [ -64.8853, 18.34087 ], [ -64.88553, 18.34076 ], [ -64.88575, 18.34066 ], [ -64.88596, 18.34058 ], [ -64.88631, 18.34039 ], [ -64.886433, 18.340304 ], [ -64.88663, 18.34017 ], [ -64.88671, 18.34011 ], [ -64.88684, 18.34008 ], [ -64.886979, 18.340064 ], [ -64.88702, 18.34006 ], [ -64.887399, 18.340045 ], [ -64.88754, 18.34004 ], [ -64.887542, 18.340098 ], [ -64.88755, 18.34026 ], [ -64.88755, 18.340275 ], [ -64.88755, 18.340334 ], [ -64.88755, 18.340344 ], [ -64.88755, 18.340374 ], [ -64.88755, 18.340385 ], [ -64.88755, 18.34042 ], [ -64.887569, 18.340517 ], [ -64.88757, 18.34052 ], [ -64.88769, 18.34072 ], [ -64.887775, 18.340845 ], [ -64.887784, 18.340858 ], [ -64.88786, 18.34097 ], [ -64.887871, 18.340984 ], [ -64.887904, 18.341029 ], [ -64.887915, 18.341044 ], [ -64.887936, 18.341072 ], [ -64.888002, 18.34116 ], [ -64.888025, 18.341189 ], [ -64.888058, 18.341234 ], [ -64.88807, 18.34125 ], [ -64.888157, 18.341373 ], [ -64.88819, 18.34142 ], [ -64.888683, 18.341553 ], [ -64.888717, 18.34156 ], [ -64.889219, 18.341685 ], [ -64.890201, 18.341817 ], [ -64.890843, 18.341835 ], [ -64.891059, 18.341844 ], [ -64.891183, 18.341875 ], [ -64.891323, 18.341849 ], [ -64.892363, 18.341974 ], [ -64.89245, 18.341984 ], [ -64.893353, 18.342044 ], [ -64.894772, 18.342019 ], [ -64.895861, 18.342676 ], [ -64.896326, 18.342965 ], [ -64.896514, 18.343082 ], [ -64.896834, 18.34328 ], [ -64.89736, 18.343551 ], [ -64.897586, 18.3436 ], [ -64.897822, 18.343718 ], [ -64.898235, 18.343914 ], [ -64.898444, 18.344096 ], [ -64.898475, 18.344123 ], [ -64.899094, 18.344511 ], [ -64.899178, 18.34446 ], [ -64.899926, 18.343926 ], [ -64.90081, 18.343466 ], [ -64.900666, 18.343807 ], [ -64.90054, 18.344109 ], [ -64.902145, 18.344891 ], [ -64.900962, 18.346212 ], [ -64.900836, 18.347267 ], [ -64.90072, 18.34769 ], [ -64.90072, 18.34771 ], [ -64.90062, 18.34819 ], [ -64.90049, 18.34821 ], [ -64.90036, 18.34826 ], [ -64.900378, 18.348314 ], [ -64.900261, 18.348767 ], [ -64.900023, 18.348936 ], [ -64.900136, 18.349054 ], [ -64.900232, 18.349316 ], [ -64.89795, 18.349765 ], [ -64.897286, 18.349896 ], [ -64.896462, 18.350202 ], [ -64.896001, 18.350337 ], [ -64.89574, 18.350381 ], [ -64.894979, 18.350508 ], [ -64.894206, 18.350638 ], [ -64.893922, 18.350621 ], [ -64.893483, 18.350582 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "030", "TRACTCE10": "990000", "GEOID10": "78030990000", "NAME10": "9900", "NAMELSAD10": "Census Tract 9900", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 687441131, "INTPTLAT10": "+18.3261610", "INTPTLON10": "-064.9736115" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.150699, 18.302845 ], [ -65.144809, 18.312886 ], [ -65.137689, 18.320558 ], [ -65.139409, 18.328385 ], [ -65.139418, 18.328533 ], [ -65.139929, 18.336291 ], [ -65.139928, 18.336291 ], [ -65.135138, 18.350855 ], [ -65.130347, 18.361537 ], [ -65.12862, 18.363869 ], [ -65.124595, 18.36931 ], [ -65.124247, 18.37005 ], [ -65.123205, 18.37227 ], [ -65.122859, 18.373011 ], [ -65.117427, 18.380233 ], [ -65.116772, 18.383849 ], [ -65.116274, 18.386603 ], [ -65.114887, 18.391445 ], [ -65.113057, 18.395758 ], [ -65.11376, 18.406875 ], [ -65.112215, 18.418827 ], [ -65.107299, 18.428609 ], [ -65.100413, 18.439544 ], [ -65.091791, 18.447102 ], [ -65.080567, 18.452807 ], [ -65.060665, 18.459747 ], [ -65.041522, 18.459102 ], [ -65.030382, 18.455376 ], [ -65.017299, 18.449323 ], [ -65.007769, 18.440703 ], [ -65.002464, 18.444213 ], [ -64.99959, 18.445526 ], [ -64.99392, 18.447489 ], [ -64.987505, 18.449721 ], [ -64.982389, 18.450708 ], [ -64.974926, 18.451279 ], [ -64.969182, 18.450947 ], [ -64.959589, 18.449075 ], [ -64.950455, 18.446294 ], [ -64.948171, 18.44895 ], [ -64.946098, 18.451304 ], [ -64.942692, 18.454157 ], [ -64.93848, 18.456837 ], [ -64.933043, 18.459612 ], [ -64.928228, 18.461695 ], [ -64.927642, 18.461949 ], [ -64.921051, 18.463806 ], [ -64.920962, 18.463815 ], [ -64.914498, 18.464481 ], [ -64.907595, 18.464984 ], [ -64.899855, 18.46447 ], [ -64.898343, 18.464124 ], [ -64.895024, 18.463364 ], [ -64.891033, 18.46216 ], [ -64.874587, 18.410694 ], [ -64.874587, 18.410693 ], [ -64.874587, 18.409739 ], [ -64.87384, 18.40683 ], [ -64.873912, 18.406255 ], [ -64.873344, 18.405598 ], [ -64.872765, 18.404929 ], [ -64.864976, 18.395927 ], [ -64.864444, 18.395746 ], [ -64.860229, 18.394319 ], [ -64.85995, 18.394225 ], [ -64.85738, 18.394132 ], [ -64.848788, 18.393822 ], [ -64.845924, 18.393719 ], [ -64.845485, 18.393717 ], [ -64.844167, 18.393714 ], [ -64.84373, 18.393713 ], [ -64.843739, 18.373009 ], [ -64.843723, 18.361365 ], [ -64.84372, 18.358321 ], [ -64.843718, 18.356866 ], [ -64.843717, 18.355988 ], [ -64.84371, 18.349502 ], [ -64.840701, 18.347255 ], [ -64.831677, 18.340515 ], [ -64.82303, 18.334057 ], [ -64.818922, 18.330989 ], [ -64.806113, 18.321421 ], [ -64.800474, 18.31721 ], [ -64.800354, 18.317121 ], [ -64.799997, 18.316854 ], [ -64.799878, 18.316765 ], [ -64.799156, 18.315476 ], [ -64.796994, 18.311609 ], [ -64.796275, 18.31032 ], [ -64.79602, 18.309866 ], [ -64.795259, 18.308504 ], [ -64.795006, 18.308051 ], [ -64.794714, 18.307528 ], [ -64.793837, 18.305962 ], [ -64.793547, 18.30544 ], [ -64.79302, 18.304498 ], [ -64.788504, 18.296418 ], [ -64.773377, 18.269354 ], [ -64.768336, 18.260333 ], [ -64.770741, 18.260278 ], [ -64.77342, 18.260506 ], [ -64.773802, 18.260139 ], [ -64.776354, 18.257701 ], [ -64.778759, 18.255469 ], [ -64.782891, 18.252693 ], [ -64.786987, 18.250559 ], [ -64.787409, 18.250364 ], [ -64.792518, 18.248013 ], [ -64.801289, 18.245106 ], [ -64.800419, 18.241084 ], [ -64.799514, 18.236487 ], [ -64.799261, 18.229322 ], [ -64.799436, 18.227648 ], [ -64.799965, 18.222597 ], [ -64.802773, 18.213372 ], [ -64.806891, 18.205163 ], [ -64.811816, 18.198713 ], [ -64.818517, 18.192061 ], [ -64.824852, 18.187977 ], [ -64.833353, 18.183456 ], [ -64.841668, 18.180928 ], [ -64.849552, 18.179683 ], [ -64.854924, 18.179622 ], [ -64.858035, 18.179587 ], [ -64.864985, 18.18091 ], [ -64.86938, 18.182434 ], [ -64.872534, 18.183484 ], [ -64.874586, 18.184525 ], [ -64.879309, 18.187247 ], [ -64.880154, 18.187743 ], [ -64.886403, 18.191412 ], [ -64.887699, 18.192505 ], [ -64.889752, 18.194236 ], [ -64.895499, 18.200487 ], [ -64.899775, 18.206525 ], [ -64.90296, 18.212995 ], [ -64.903357, 18.213956 ], [ -64.90524, 18.218514 ], [ -64.905925, 18.222466 ], [ -64.905984, 18.222808 ], [ -64.905987, 18.222845 ], [ -64.906126, 18.223989 ], [ -64.906151, 18.224193 ], [ -64.906326, 18.224234 ], [ -64.913228, 18.225858 ], [ -64.914855, 18.22648 ], [ -64.921034, 18.228843 ], [ -64.926904, 18.232593 ], [ -64.933714, 18.23797 ], [ -64.936539, 18.241132 ], [ -64.939602, 18.244557 ], [ -64.942061, 18.24801 ], [ -64.942061, 18.248011 ], [ -64.943769, 18.251446 ], [ -64.945419, 18.254556 ], [ -64.946472, 18.257223 ], [ -64.948372, 18.25683 ], [ -64.954317, 18.256123 ], [ -64.957726, 18.256091 ], [ -64.960964, 18.25606 ], [ -64.9674, 18.256737 ], [ -64.969756, 18.256616 ], [ -64.973943, 18.256134 ], [ -64.978022, 18.256359 ], [ -64.978718, 18.25652 ], [ -64.980414, 18.256912 ], [ -64.98481, 18.256161 ], [ -64.989242, 18.255175 ], [ -64.993605, 18.25375 ], [ -64.997861, 18.252493 ], [ -64.999592, 18.252692 ], [ -65.008572, 18.251564 ], [ -65.013825, 18.251933 ], [ -65.019821, 18.252355 ], [ -65.031565, 18.256277 ], [ -65.041061, 18.262441 ], [ -65.048581, 18.266777 ], [ -65.050194, 18.269129 ], [ -65.050899, 18.266372 ], [ -65.052793, 18.262359 ], [ -65.05664, 18.255918 ], [ -65.057748, 18.254163 ], [ -65.060107, 18.251537 ], [ -65.061919, 18.249555 ], [ -65.06334, 18.248043 ], [ -65.065329, 18.246097 ], [ -65.067732, 18.243908 ], [ -65.072015, 18.240929 ], [ -65.0768, 18.238195 ], [ -65.080953, 18.236482 ], [ -65.084325, 18.235373 ], [ -65.085813, 18.235085 ], [ -65.093401, 18.233615 ], [ -65.100831, 18.232629 ], [ -65.117267, 18.234772 ], [ -65.13122, 18.241757 ], [ -65.142622, 18.250789 ], [ -65.147723, 18.259085 ], [ -65.151885, 18.268911 ], [ -65.154118, 18.277425 ], [ -65.153879, 18.281145 ], [ -65.153644, 18.293139 ], [ -65.150699, 18.302845 ] ], [ [ -65.08567, 18.334615 ], [ -65.08567, 18.334583 ], [ -65.085635, 18.334576 ], [ -65.085617, 18.334592 ], [ -65.085624, 18.334613 ], [ -65.085647, 18.33463 ], [ -65.08567, 18.334615 ] ], [ [ -65.072769, 18.341827 ], [ -65.072761, 18.341793 ], [ -65.072738, 18.341785 ], [ -65.072708, 18.3418 ], [ -65.072715, 18.34184 ], [ -65.072746, 18.341846 ], [ -65.072769, 18.341827 ] ], [ [ -64.974464, 18.306802 ], [ -64.9744, 18.306801 ], [ -64.974394, 18.306843 ], [ -64.974459, 18.306878 ], [ -64.974464, 18.306802 ] ], [ [ -64.918159, 18.31314 ], [ -64.918113, 18.313133 ], [ -64.918106, 18.313171 ], [ -64.918136, 18.313209 ], [ -64.918192, 18.313186 ], [ -64.918159, 18.31314 ] ], [ [ -64.812126, 18.294492 ], [ -64.812072, 18.294559 ], [ -64.81211, 18.294589 ], [ -64.812164, 18.294553 ], [ -64.812126, 18.294492 ] ], [ [ -64.971168, 18.30886 ], [ -64.97113, 18.308815 ], [ -64.971061, 18.308858 ], [ -64.971107, 18.308906 ], [ -64.971168, 18.30886 ] ], [ [ -64.81636, 18.293775 ], [ -64.816293, 18.293814 ], [ -64.816345, 18.29384 ], [ -64.81639, 18.293836 ], [ -64.816423, 18.29378 ], [ -64.81636, 18.293775 ] ], [ [ -64.812759, 18.294908 ], [ -64.812705, 18.294835 ], [ -64.812652, 18.294858 ], [ -64.812667, 18.294935 ], [ -64.812759, 18.294908 ] ], [ [ -64.812553, 18.29461 ], [ -64.812553, 18.294546 ], [ -64.812454, 18.294498 ], [ -64.812454, 18.29457 ], [ -64.812553, 18.29461 ] ], [ [ -64.971099, 18.309082 ], [ -64.971076, 18.309026 ], [ -64.971031, 18.309017 ], [ -64.970993, 18.309057 ], [ -64.971023, 18.309122 ], [ -64.971054, 18.309127 ], [ -64.971099, 18.309082 ] ], [ [ -64.816216, 18.293944 ], [ -64.816207, 18.293876 ], [ -64.816197, 18.293833 ], [ -64.816154, 18.293863 ], [ -64.816116, 18.293933 ], [ -64.816139, 18.293973 ], [ -64.816177, 18.293945 ], [ -64.816216, 18.293944 ] ], [ [ -64.858458, 18.346527 ], [ -64.858429, 18.346411 ], [ -64.858304, 18.346546 ], [ -64.858391, 18.346566 ], [ -64.858458, 18.346527 ] ], [ [ -64.845512, 18.303939 ], [ -64.845481, 18.303873 ], [ -64.845413, 18.303876 ], [ -64.845375, 18.303949 ], [ -64.845413, 18.303995 ], [ -64.845475, 18.304007 ], [ -64.845512, 18.303939 ] ], [ [ -64.847785, 18.303632 ], [ -64.84774, 18.30356 ], [ -64.847656, 18.303563 ], [ -64.847686, 18.303688 ], [ -64.84775, 18.303709 ], [ -64.847785, 18.303632 ] ], [ [ -65.084709, 18.334781 ], [ -65.084693, 18.334768 ], [ -65.084655, 18.334777 ], [ -65.084617, 18.334802 ], [ -65.084594, 18.334836 ], [ -65.084541, 18.334909 ], [ -65.084541, 18.334943 ], [ -65.084556, 18.334983 ], [ -65.084594, 18.334985 ], [ -65.084625, 18.334968 ], [ -65.084655, 18.334856 ], [ -65.084701, 18.3348 ], [ -65.084709, 18.334781 ] ], [ [ -64.957528, 18.306268 ], [ -64.957558, 18.306211 ], [ -64.957582, 18.30614 ], [ -64.95748, 18.3061 ], [ -64.957418, 18.306122 ], [ -64.957409, 18.306202 ], [ -64.957528, 18.306268 ] ], [ [ -64.957528, 18.306268 ], [ -64.957468, 18.306287 ], [ -64.957442, 18.306312 ], [ -64.957402, 18.306312 ], [ -64.957345, 18.306287 ], [ -64.957304, 18.306307 ], [ -64.957309, 18.306362 ], [ -64.957309, 18.306456 ], [ -64.95729, 18.306465 ], [ -64.957275, 18.306477 ], [ -64.95724, 18.306467 ], [ -64.957217, 18.306433 ], [ -64.9572, 18.306385 ], [ -64.957171, 18.306356 ], [ -64.957132, 18.306351 ], [ -64.957102, 18.306356 ], [ -64.957063, 18.306374 ], [ -64.957062, 18.306439 ], [ -64.957044, 18.306489 ], [ -64.95701, 18.306511 ], [ -64.957, 18.306495 ], [ -64.956975, 18.306478 ], [ -64.956883, 18.306475 ], [ -64.956815, 18.306483 ], [ -64.95671, 18.306511 ], [ -64.9566, 18.306533 ], [ -64.956525, 18.306527 ], [ -64.956468, 18.3065 ], [ -64.956427, 18.306434 ], [ -64.9564, 18.306417 ], [ -64.95637, 18.306423 ], [ -64.956323, 18.306419 ], [ -64.956262, 18.306401 ], [ -64.95611, 18.306307 ], [ -64.956041, 18.306329 ], [ -64.955949, 18.306406 ], [ -64.955897, 18.306461 ], [ -64.955845, 18.306478 ], [ -64.955801, 18.306478 ], [ -64.955758, 18.306456 ], [ -64.955735, 18.306439 ], [ -64.955736, 18.306421 ], [ -64.955764, 18.306373 ], [ -64.955805, 18.306324 ], [ -64.955828, 18.306302 ], [ -64.955828, 18.306264 ], [ -64.955793, 18.306224 ], [ -64.955741, 18.306235 ], [ -64.955666, 18.306257 ], [ -64.955603, 18.306313 ], [ -64.955551, 18.306368 ], [ -64.955464, 18.306412 ], [ -64.955441, 18.306472 ], [ -64.95545, 18.30653 ], [ -64.955459, 18.30656 ], [ -64.955459, 18.30661 ], [ -64.955453, 18.306654 ], [ -64.955395, 18.306699 ], [ -64.955361, 18.306753 ], [ -64.955389, 18.30683 ], [ -64.955372, 18.30688 ], [ -64.955327, 18.306897 ], [ -64.95524, 18.30688 ], [ -64.955211, 18.306836 ], [ -64.955189, 18.306788 ], [ -64.955147, 18.306775 ], [ -64.955128, 18.306779 ], [ -64.955095, 18.306792 ], [ -64.955067, 18.306819 ], [ -64.955034, 18.306909 ], [ -64.955016, 18.30697 ], [ -64.955007, 18.306986 ], [ -64.954993, 18.307024 ], [ -64.95498, 18.307045 ], [ -64.954842, 18.307111 ], [ -64.95482, 18.307178 ], [ -64.954813, 18.307238 ], [ -64.95479, 18.307276 ], [ -64.954709, 18.307315 ], [ -64.954648, 18.30731 ], [ -64.954572, 18.307289 ], [ -64.954526, 18.307289 ], [ -64.95445, 18.307348 ], [ -64.954398, 18.307348 ], [ -64.954323, 18.307282 ], [ -64.954288, 18.307282 ], [ -64.954236, 18.307304 ], [ -64.954196, 18.307359 ], [ -64.95414, 18.307377 ], [ -64.95411, 18.307359 ], [ -64.954075, 18.307326 ], [ -64.954035, 18.307304 ], [ -64.953983, 18.307321 ], [ -64.953931, 18.307343 ], [ -64.953896, 18.307376 ], [ -64.953879, 18.307431 ], [ -64.953827, 18.30748 ], [ -64.95376, 18.307504 ], [ -64.953677, 18.307475 ], [ -64.953631, 18.30748 ], [ -64.953585, 18.307555 ], [ -64.953597, 18.307635 ], [ -64.953597, 18.30769 ], [ -64.953568, 18.307742 ], [ -64.953573, 18.307888 ], [ -64.953579, 18.307955 ], [ -64.953547, 18.30801 ], [ -64.953492, 18.30806 ], [ -64.953429, 18.308138 ], [ -64.953412, 18.308229 ], [ -64.953389, 18.308279 ], [ -64.953299, 18.308352 ], [ -64.953256, 18.308373 ], [ -64.953228, 18.308411 ], [ -64.953176, 18.308455 ], [ -64.953147, 18.308534 ], [ -64.953141, 18.308653 ], [ -64.953124, 18.308731 ], [ -64.953124, 18.308808 ], [ -64.953095, 18.308918 ], [ -64.953095, 18.308962 ], [ -64.953072, 18.309 ], [ -64.953041, 18.309034 ], [ -64.953009, 18.309039 ], [ -64.952974, 18.309023 ], [ -64.95293, 18.30904 ], [ -64.952934, 18.309094 ], [ -64.952963, 18.309246 ], [ -64.95298, 18.309361 ], [ -64.952986, 18.309463 ], [ -64.952963, 18.309579 ], [ -64.952939, 18.30965 ], [ -64.952918, 18.309772 ], [ -64.952899, 18.309838 ], [ -64.95287, 18.309898 ], [ -64.952878, 18.30996 ], [ -64.952899, 18.310047 ], [ -64.952895, 18.310113 ], [ -64.952859, 18.310196 ], [ -64.952836, 18.310285 ], [ -64.95283, 18.310377 ], [ -64.952847, 18.31046 ], [ -64.952876, 18.310515 ], [ -64.952922, 18.310559 ], [ -64.952992, 18.310614 ], [ -64.953028, 18.310654 ], [ -64.95302, 18.310675 ], [ -64.952982, 18.310693 ], [ -64.952907, 18.31084 ], [ -64.952882, 18.310994 ], [ -64.952855, 18.311074 ], [ -64.952796, 18.311115 ], [ -64.952749, 18.311082 ], [ -64.952744, 18.311049 ], [ -64.952705, 18.311034 ], [ -64.952663, 18.311044 ], [ -64.95264, 18.311149 ], [ -64.952617, 18.31122 ], [ -64.952576, 18.31127 ], [ -64.952588, 18.311347 ], [ -64.952703, 18.311352 ], [ -64.952732, 18.311374 ], [ -64.952721, 18.311468 ], [ -64.952703, 18.311512 ], [ -64.952646, 18.311617 ], [ -64.952594, 18.311661 ], [ -64.952548, 18.311677 ], [ -64.95249, 18.311677 ], [ -64.952432, 18.311683 ], [ -64.952421, 18.311738 ], [ -64.952438, 18.311765 ], [ -64.952473, 18.311793 ], [ -64.952502, 18.311853 ], [ -64.952496, 18.311897 ], [ -64.952479, 18.311919 ], [ -64.952461, 18.311975 ], [ -64.952496, 18.312019 ], [ -64.95253, 18.312046 ], [ -64.952525, 18.312074 ], [ -64.952509, 18.312095 ], [ -64.952473, 18.312101 ], [ -64.952427, 18.312162 ], [ -64.952375, 18.312211 ], [ -64.952329, 18.3122 ], [ -64.952231, 18.312217 ], [ -64.952231, 18.312283 ], [ -64.952254, 18.312311 ], [ -64.952271, 18.312355 ], [ -64.95226, 18.31241 ], [ -64.952215, 18.312449 ], [ -64.952118, 18.312515 ], [ -64.952081, 18.312525 ], [ -64.952017, 18.312575 ], [ -64.951994, 18.312613 ], [ -64.951983, 18.312663 ], [ -64.951977, 18.312732 ], [ -64.951977, 18.312801 ], [ -64.952017, 18.312856 ], [ -64.952046, 18.312905 ], [ -64.952081, 18.313071 ], [ -64.952063, 18.313155 ], [ -64.952046, 18.313269 ], [ -64.952023, 18.313753 ], [ -64.951989, 18.313979 ], [ -64.95192, 18.314244 ], [ -64.951851, 18.314425 ], [ -64.951735, 18.314641 ], [ -64.951649, 18.314849 ], [ -64.951516, 18.315097 ], [ -64.951447, 18.315428 ], [ -64.951392, 18.315725 ], [ -64.951366, 18.315863 ], [ -64.951326, 18.3161 ], [ -64.951297, 18.316353 ], [ -64.951295, 18.316361 ], [ -64.951263, 18.316606 ], [ -64.951218, 18.316872 ], [ -64.951217, 18.317008 ], [ -64.951205, 18.317124 ], [ -64.942657, 18.317796 ], [ -64.942598, 18.317801 ], [ -64.942521, 18.317797 ], [ -64.942452, 18.317835 ], [ -64.942385, 18.31799 ], [ -64.942343, 18.318022 ], [ -64.942285, 18.318 ], [ -64.942245, 18.317941 ], [ -64.942158, 18.31794 ], [ -64.942078, 18.317967 ], [ -64.941999, 18.317968 ], [ -64.941945, 18.31794 ], [ -64.941928, 18.317907 ], [ -64.941895, 18.317825 ], [ -64.941858, 18.317791 ], [ -64.941787, 18.317822 ], [ -64.941772, 18.317841 ], [ -64.941731, 18.317841 ], [ -64.941708, 18.317791 ], [ -64.941675, 18.317757 ], [ -64.941653, 18.317803 ], [ -64.941616, 18.317824 ], [ -64.941576, 18.317835 ], [ -64.941553, 18.317819 ], [ -64.941553, 18.317791 ], [ -64.941547, 18.317764 ], [ -64.941478, 18.317725 ], [ -64.941478, 18.317698 ], [ -64.941497, 18.317687 ], [ -64.941495, 18.317653 ], [ -64.941485, 18.317615 ], [ -64.941437, 18.317571 ], [ -64.941328, 18.317549 ], [ -64.941287, 18.317494 ], [ -64.941253, 18.317461 ], [ -64.941172, 18.317433 ], [ -64.941126, 18.317428 ], [ -64.94108, 18.317389 ], [ -64.941005, 18.31734 ], [ -64.940959, 18.317329 ], [ -64.940907, 18.317323 ], [ -64.940857, 18.31735 ], [ -64.940787, 18.317396 ], [ -64.940711, 18.317461 ], [ -64.940644, 18.317495 ], [ -64.940624, 18.317505 ], [ -64.940595, 18.317494 ], [ -64.940578, 18.317472 ], [ -64.940567, 18.317439 ], [ -64.940572, 18.317411 ], [ -64.940591, 18.317362 ], [ -64.940624, 18.317307 ], [ -64.940636, 18.317257 ], [ -64.940625, 18.317192 ], [ -64.940601, 18.317169 ], [ -64.940574, 18.317163 ], [ -64.940532, 18.317174 ], [ -64.940486, 18.317202 ], [ -64.940399, 18.317284 ], [ -64.940348, 18.317318 ], [ -64.940278, 18.317351 ], [ -64.940251, 18.31737 ], [ -64.940226, 18.317389 ], [ -64.94018, 18.317411 ], [ -64.94014, 18.317439 ], [ -64.940118, 18.317477 ], [ -64.940111, 18.31751 ], [ -64.933006, 18.322445 ], [ -64.933035, 18.322488 ], [ -64.933044, 18.322502 ], [ -64.933038, 18.322515 ], [ -64.933024, 18.322541 ], [ -64.933022, 18.322546 ], [ -64.933007, 18.322531 ], [ -64.932999, 18.322523 ], [ -64.932976, 18.32247 ], [ -64.932938, 18.32247 ], [ -64.927219, 18.320881 ], [ -64.923097, 18.319736 ], [ -64.922897, 18.319726 ], [ -64.92284, 18.319723 ], [ -64.922783, 18.319703 ], [ -64.922733, 18.319669 ], [ -64.922677, 18.319619 ], [ -64.92259, 18.319636 ], [ -64.922537, 18.319669 ], [ -64.9225, 18.319726 ], [ -64.9224, 18.319736 ], [ -64.922277, 18.319694 ], [ -64.922213, 18.319719 ], [ -64.92214, 18.319676 ], [ -64.922083, 18.319669 ], [ -64.922027, 18.319719 ], [ -64.921983, 18.319763 ], [ -64.92189, 18.319749 ], [ -64.92186, 18.319729 ], [ -64.921753, 18.319716 ], [ -64.921613, 18.319696 ], [ -64.921483, 18.319654 ], [ -64.921286, 18.319644 ], [ -64.917704, 18.318708 ], [ -64.917374, 18.318644 ], [ -64.917038, 18.318707 ], [ -64.916862, 18.318722 ], [ -64.916535, 18.318682 ], [ -64.916376, 18.318348 ], [ -64.916306, 18.318296 ], [ -64.916255, 18.318296 ], [ -64.916138, 18.318264 ], [ -64.916067, 18.318227 ], [ -64.915898, 18.318158 ], [ -64.915771, 18.318144 ], [ -64.915682, 18.318084 ], [ -64.915604, 18.317998 ], [ -64.91555, 18.317917 ], [ -64.915504, 18.317867 ], [ -64.915451, 18.317856 ], [ -64.915398, 18.317871 ], [ -64.915306, 18.317841 ], [ -64.915245, 18.317774 ], [ -64.915192, 18.317745 ], [ -64.9133, 18.316563 ], [ -64.913223, 18.316507 ], [ -64.913155, 18.316519 ], [ -64.913116, 18.31654 ], [ -64.913025, 18.316572 ], [ -64.912926, 18.316578 ], [ -64.912849, 18.316607 ], [ -64.912766, 18.316706 ], [ -64.912689, 18.316706 ], [ -64.912643, 18.316683 ], [ -64.912575, 18.31661 ], [ -64.912549, 18.316565 ], [ -64.912476, 18.316484 ], [ -64.912354, 18.316446 ], [ -64.91216, 18.316456 ], [ -64.912086, 18.316441 ], [ -64.912, 18.316389 ], [ -64.911884, 18.316307 ], [ -64.911835, 18.316295 ], [ -64.911744, 18.316222 ], [ -64.911634, 18.316172 ], [ -64.911531, 18.315935 ], [ -64.911454, 18.315748 ], [ -64.911407, 18.315612 ], [ -64.911354, 18.315458 ], [ -64.911301, 18.315308 ], [ -64.911154, 18.315195 ], [ -64.910964, 18.315148 ], [ -64.910904, 18.315148 ], [ -64.910841, 18.315192 ], [ -64.910777, 18.315155 ], [ -64.910697, 18.315118 ], [ -64.910647, 18.315108 ], [ -64.910617, 18.315115 ], [ -64.910524, 18.315095 ], [ -64.910467, 18.315075 ], [ -64.910424, 18.315042 ], [ -64.910391, 18.315042 ], [ -64.910307, 18.315005 ], [ -64.910251, 18.314992 ], [ -64.910217, 18.314925 ], [ -64.910177, 18.314855 ], [ -64.910137, 18.314845 ], [ -64.910071, 18.314782 ], [ -64.910071, 18.314698 ], [ -64.910104, 18.314652 ], [ -64.910064, 18.314585 ], [ -64.906272, 18.311099 ], [ -64.90617, 18.310981 ], [ -64.906156, 18.310954 ], [ -64.906143, 18.310874 ], [ -64.906063, 18.310874 ], [ -64.90589, 18.310881 ], [ -64.905756, 18.310801 ], [ -64.905636, 18.310787 ], [ -64.899431, 18.30989 ], [ -64.89869, 18.309688 ], [ -64.898563, 18.309679 ], [ -64.898543, 18.309686 ], [ -64.898449, 18.309739 ], [ -64.898356, 18.309693 ], [ -64.898269, 18.309673 ], [ -64.898195, 18.309693 ], [ -64.898189, 18.309766 ], [ -64.898135, 18.3098 ], [ -64.898055, 18.309813 ], [ -64.897988, 18.309846 ], [ -64.897968, 18.309913 ], [ -64.897895, 18.30998 ], [ -64.897801, 18.31 ], [ -64.897761, 18.309993 ], [ -64.897674, 18.309967 ], [ -64.897534, 18.309927 ], [ -64.897427, 18.30996 ], [ -64.897307, 18.31004 ], [ -64.897323, 18.310178 ], [ -64.894687, 18.311555 ], [ -64.888447, 18.31067 ], [ -64.888267, 18.310704 ], [ -64.888234, 18.31072 ], [ -64.888148, 18.310736 ], [ -64.888049, 18.310745 ], [ -64.887957, 18.310747 ], [ -64.887923, 18.310736 ], [ -64.8879, 18.310736 ], [ -64.887865, 18.310736 ], [ -64.88783, 18.310731 ], [ -64.88768, 18.310687 ], [ -64.887617, 18.310674 ], [ -64.887549, 18.310647 ], [ -64.887487, 18.310604 ], [ -64.887392, 18.310505 ], [ -64.887369, 18.310472 ], [ -64.887352, 18.310433 ], [ -64.887306, 18.3104 ], [ -64.887179, 18.310368 ], [ -64.88711, 18.31036 ], [ -64.887075, 18.310351 ], [ -64.887023, 18.310318 ], [ -64.886989, 18.310235 ], [ -64.887006, 18.310119 ], [ -64.88702, 18.310087 ], [ -64.887006, 18.310004 ], [ -64.886966, 18.30991 ], [ -64.886943, 18.309877 ], [ -64.886914, 18.309822 ], [ -64.886891, 18.309789 ], [ -64.886856, 18.309723 ], [ -64.886741, 18.30958 ], [ -64.886712, 18.309535 ], [ -64.886689, 18.309508 ], [ -64.886668, 18.309473 ], [ -64.886639, 18.309438 ], [ -64.886561, 18.309222 ], [ -64.88654, 18.309174 ], [ -64.886516, 18.309139 ], [ -64.886501, 18.309105 ], [ -64.886476, 18.309073 ], [ -64.886415, 18.309034 ], [ -64.886378, 18.309029 ], [ -64.886326, 18.309029 ], [ -64.88626, 18.30904 ], [ -64.886222, 18.309056 ], [ -64.886188, 18.309083 ], [ -64.886153, 18.309089 ], [ -64.886118, 18.309078 ], [ -64.88608, 18.309048 ], [ -64.886043, 18.309045 ], [ -64.885968, 18.309062 ], [ -64.885917, 18.309085 ], [ -64.88585, 18.309099 ], [ -64.885781, 18.309078 ], [ -64.885744, 18.309056 ], [ -64.885658, 18.308966 ], [ -64.885599, 18.308913 ], [ -64.885572, 18.308878 ], [ -64.885509, 18.308815 ], [ -64.885376, 18.308729 ], [ -64.885324, 18.308676 ], [ -64.885311, 18.308643 ], [ -64.885308, 18.308609 ], [ -64.885323, 18.30856 ], [ -64.885323, 18.308527 ], [ -64.885343, 18.308493 ], [ -64.885387, 18.308458 ], [ -64.885392, 18.308428 ], [ -64.885382, 18.308396 ], [ -64.885346, 18.308379 ], [ -64.885318, 18.308354 ], [ -64.885198, 18.308275 ], [ -64.885147, 18.308274 ], [ -64.885109, 18.30829 ], [ -64.885086, 18.308362 ], [ -64.885081, 18.308395 ], [ -64.885081, 18.308445 ], [ -64.88506, 18.308577 ], [ -64.88504, 18.30861 ], [ -64.885008, 18.308632 ], [ -64.884971, 18.308637 ], [ -64.884936, 18.308633 ], [ -64.884844, 18.308604 ], [ -64.884758, 18.308593 ], [ -64.884726, 18.308594 ], [ -64.884689, 18.308604 ], [ -64.884635, 18.308625 ], [ -64.884602, 18.308639 ], [ -64.884539, 18.308654 ], [ -64.884446, 18.308688 ], [ -64.88438, 18.308691 ], [ -64.88432, 18.30867 ], [ -64.884296, 18.308648 ], [ -64.884259, 18.308637 ], [ -64.884222, 18.308615 ], [ -64.884044, 18.308455 ], [ -64.884031, 18.308422 ], [ -64.883947, 18.308305 ], [ -64.883899, 18.308246 ], [ -64.883886, 18.308219 ], [ -64.883864, 18.308174 ], [ -64.883854, 18.30814 ], [ -64.883755, 18.308051 ], [ -64.88372, 18.308031 ], [ -64.883633, 18.308004 ], [ -64.883515, 18.308014 ], [ -64.88342, 18.308003 ], [ -64.883386, 18.307993 ], [ -64.883353, 18.307961 ], [ -64.883322, 18.307949 ], [ -64.883291, 18.307945 ], [ -64.883254, 18.307964 ], [ -64.880117, 18.306252 ], [ -64.880076, 18.306218 ], [ -64.880042, 18.306197 ], [ -64.879984, 18.306186 ], [ -64.879846, 18.306176 ], [ -64.879817, 18.306174 ], [ -64.879705, 18.306133 ], [ -64.879489, 18.306053 ], [ -64.879448, 18.306048 ], [ -64.879356, 18.306004 ], [ -64.879344, 18.30597 ], [ -64.879287, 18.305893 ], [ -64.879229, 18.305789 ], [ -64.879218, 18.305761 ], [ -64.87919, 18.305715 ], [ -64.879183, 18.305705 ], [ -64.879098, 18.305594 ], [ -64.87904, 18.305506 ], [ -64.879008, 18.305476 ], [ -64.878959, 18.305429 ], [ -64.87889, 18.305373 ], [ -64.87885, 18.305351 ], [ -64.878814, 18.30532 ], [ -64.878746, 18.305275 ], [ -64.878664, 18.305161 ], [ -64.878624, 18.305034 ], [ -64.878618, 18.304984 ], [ -64.878618, 18.304942 ], [ -64.878618, 18.304929 ], [ -64.878624, 18.304885 ], [ -64.878624, 18.304792 ], [ -64.87863, 18.304753 ], [ -64.878647, 18.304693 ], [ -64.878653, 18.304654 ], [ -64.878682, 18.304538 ], [ -64.87871, 18.304472 ], [ -64.878728, 18.304439 ], [ -64.878754, 18.304411 ], [ -64.878811, 18.304311 ], [ -64.878837, 18.30423 ], [ -64.878855, 18.304197 ], [ -64.878876, 18.30413 ], [ -64.878884, 18.304081 ], [ -64.878884, 18.304043 ], [ -64.878901, 18.303905 ], [ -64.878901, 18.303845 ], [ -64.878907, 18.3038 ], [ -64.878895, 18.303696 ], [ -64.878872, 18.30358 ], [ -64.878872, 18.303547 ], [ -64.878878, 18.303514 ], [ -64.878878, 18.303459 ], [ -64.878866, 18.303426 ], [ -64.878861, 18.303387 ], [ -64.878849, 18.303338 ], [ -64.878849, 18.303305 ], [ -64.878878, 18.303217 ], [ -64.878872, 18.303162 ], [ -64.878892, 18.303063 ], [ -64.878895, 18.30298 ], [ -64.878902, 18.302923 ], [ -64.878907, 18.302897 ], [ -64.878893, 18.302827 ], [ -64.878867, 18.302793 ], [ -64.878844, 18.302771 ], [ -64.878809, 18.302759 ], [ -64.878772, 18.302759 ], [ -64.87874, 18.302754 ], [ -64.8787, 18.302737 ], [ -64.878659, 18.302726 ], [ -64.878638, 18.30271 ], [ -64.87855, 18.302689 ], [ -64.878481, 18.302689 ], [ -64.878348, 18.302727 ], [ -64.87834, 18.302728 ], [ -64.878215, 18.302743 ], [ -64.878158, 18.302738 ], [ -64.87806, 18.302743 ], [ -64.877922, 18.302772 ], [ -64.877801, 18.302832 ], [ -64.877675, 18.302926 ], [ -64.877634, 18.302976 ], [ -64.87759, 18.303013 ], [ -64.877575, 18.303035 ], [ -64.87754, 18.303062 ], [ -64.877528, 18.303078 ], [ -64.877512, 18.303106 ], [ -64.877398, 18.303229 ], [ -64.877295, 18.303314 ], [ -64.877224, 18.30336 ], [ -64.877189, 18.303394 ], [ -64.877126, 18.303433 ], [ -64.877091, 18.303447 ], [ -64.877057, 18.303477 ], [ -64.877021, 18.303491 ], [ -64.876967, 18.303526 ], [ -64.876935, 18.303541 ], [ -64.876879, 18.303517 ], [ -64.876831, 18.303497 ], [ -64.87671, 18.303475 ], [ -64.876676, 18.303475 ], [ -64.876641, 18.303492 ], [ -64.876583, 18.303536 ], [ -64.876532, 18.303529 ], [ -64.876485, 18.303503 ], [ -64.876456, 18.30348 ], [ -64.87637, 18.303486 ], [ -64.876301, 18.303508 ], [ -64.876267, 18.303536 ], [ -64.876231, 18.303558 ], [ -64.87621, 18.303591 ], [ -64.87618, 18.303695 ], [ -64.876174, 18.303739 ], [ -64.876179, 18.303778 ], [ -64.876162, 18.303849 ], [ -64.876168, 18.303882 ], [ -64.87617, 18.303922 ], [ -64.876179, 18.303948 ], [ -64.876156, 18.303998 ], [ -64.876128, 18.304025 ], [ -64.876099, 18.30406 ], [ -64.876064, 18.304069 ], [ -64.876007, 18.304098 ], [ -64.875966, 18.304102 ], [ -64.87592, 18.304119 ], [ -64.875862, 18.304124 ], [ -64.875718, 18.304186 ], [ -64.87567, 18.304183 ], [ -64.875632, 18.304163 ], [ -64.875606, 18.304136 ], [ -64.875569, 18.304107 ], [ -64.87554, 18.304073 ], [ -64.875505, 18.304047 ], [ -64.875473, 18.304032 ], [ -64.87543, 18.304014 ], [ -64.875384, 18.303985 ], [ -64.875251, 18.303931 ], [ -64.875061, 18.303871 ], [ -64.875001, 18.303863 ], [ -64.874974, 18.303855 ], [ -64.874911, 18.303849 ], [ -64.874732, 18.30386 ], [ -64.874698, 18.303872 ], [ -64.874629, 18.303884 ], [ -64.874585, 18.303894 ], [ -64.874516, 18.303938 ], [ -64.874482, 18.303954 ], [ -64.87442, 18.303993 ], [ -64.874391, 18.304012 ], [ -64.874309, 18.304051 ], [ -64.874245, 18.304081 ], [ -64.874147, 18.30412 ], [ -64.874084, 18.304136 ], [ -64.874028, 18.304136 ], [ -64.873929, 18.304153 ], [ -64.873894, 18.304164 ], [ -64.873879, 18.30417 ], [ -64.870284, 18.304259 ], [ -64.870228, 18.304263 ], [ -64.870225, 18.304264 ], [ -64.870198, 18.304287 ], [ -64.870124, 18.304319 ], [ -64.870055, 18.304319 ], [ -64.870019, 18.304314 ], [ -64.869985, 18.304298 ], [ -64.869933, 18.304298 ], [ -64.869876, 18.304319 ], [ -64.867376, 18.305368 ], [ -64.865835, 18.306016 ], [ -64.865799, 18.306017 ], [ -64.865747, 18.306029 ], [ -64.865707, 18.306051 ], [ -64.865673, 18.306076 ], [ -64.865598, 18.306208 ], [ -64.865563, 18.306232 ], [ -64.865528, 18.306232 ], [ -64.865476, 18.306238 ], [ -64.865424, 18.306249 ], [ -64.865373, 18.306254 ], [ -64.865338, 18.306243 ], [ -64.865327, 18.306215 ], [ -64.865326, 18.306183 ], [ -64.865269, 18.306166 ], [ -64.865224, 18.306171 ], [ -64.865188, 18.306183 ], [ -64.865143, 18.306204 ], [ -64.865004, 18.306304 ], [ -64.864929, 18.306348 ], [ -64.864855, 18.306396 ], [ -64.864825, 18.306425 ], [ -64.864791, 18.306435 ], [ -64.864779, 18.30647 ], [ -64.864727, 18.306508 ], [ -64.864669, 18.306574 ], [ -64.864548, 18.306701 ], [ -64.864515, 18.306761 ], [ -64.864446, 18.306766 ], [ -64.864312, 18.306701 ], [ -64.864267, 18.306689 ], [ -64.864162, 18.306629 ], [ -64.864128, 18.306606 ], [ -64.864065, 18.306578 ], [ -64.864029, 18.306569 ], [ -64.86399, 18.306551 ], [ -64.86396, 18.306541 ], [ -64.863909, 18.306541 ], [ -64.863873, 18.306563 ], [ -64.863874, 18.306595 ], [ -64.863868, 18.306629 ], [ -64.863834, 18.306673 ], [ -64.863765, 18.306694 ], [ -64.863651, 18.306682 ], [ -64.863557, 18.306673 ], [ -64.863487, 18.306679 ], [ -64.863435, 18.306696 ], [ -64.863389, 18.306723 ], [ -64.863356, 18.30675 ], [ -64.863245, 18.30674 ], [ -64.863194, 18.306726 ], [ -64.863062, 18.306721 ], [ -64.862941, 18.306745 ], [ -64.86287, 18.30679 ], [ -64.862818, 18.306828 ], [ -64.862767, 18.306856 ], [ -64.86268, 18.306866 ], [ -64.862645, 18.306872 ], [ -64.862594, 18.30687 ], [ -64.862559, 18.306883 ], [ -64.862468, 18.306887 ], [ -64.862384, 18.306907 ], [ -64.862351, 18.306916 ], [ -64.862282, 18.30696 ], [ -64.857063, 18.308437 ], [ -64.845924, 18.311592 ], [ -64.83648, 18.302696 ], [ -64.836383, 18.302605 ], [ -64.836389, 18.302587 ], [ -64.836349, 18.302572 ], [ -64.836259, 18.302512 ], [ -64.833695, 18.300787 ], [ -64.829272, 18.297912 ], [ -64.829205, 18.297833 ], [ -64.829119, 18.297823 ], [ -64.829068, 18.297801 ], [ -64.828951, 18.297744 ], [ -64.828871, 18.297728 ], [ -64.828832, 18.297664 ], [ -64.828804, 18.297655 ], [ -64.82874, 18.297648 ], [ -64.828683, 18.297604 ], [ -64.828613, 18.297578 ], [ -64.828543, 18.297591 ], [ -64.828497, 18.297585 ], [ -64.828442, 18.297542 ], [ -64.828419, 18.297511 ], [ -64.828339, 18.297556 ], [ -64.828304, 18.297521 ], [ -64.828263, 18.297486 ], [ -64.82671, 18.297305 ], [ -64.82243, 18.296956 ], [ -64.822336, 18.296955 ], [ -64.822257, 18.296965 ], [ -64.822203, 18.297002 ], [ -64.822183, 18.297039 ], [ -64.822162, 18.297031 ], [ -64.822141, 18.297028 ], [ -64.822094, 18.297024 ], [ -64.817682, 18.295062 ], [ -64.817653, 18.295034 ], [ -64.817601, 18.29501 ], [ -64.817509, 18.294999 ], [ -64.817474, 18.295 ], [ -64.817439, 18.295006 ], [ -64.817302, 18.295044 ], [ -64.817266, 18.29505 ], [ -64.817233, 18.295043 ], [ -64.817197, 18.295011 ], [ -64.817209, 18.294977 ], [ -64.817232, 18.294945 ], [ -64.817249, 18.294896 ], [ -64.817232, 18.294863 ], [ -64.817145, 18.294852 ], [ -64.817105, 18.294841 ], [ -64.817046, 18.294841 ], [ -64.816995, 18.294835 ], [ -64.816961, 18.294835 ], [ -64.816926, 18.294841 ], [ -64.816894, 18.294841 ], [ -64.81684, 18.294841 ], [ -64.816759, 18.294824 ], [ -64.816724, 18.294802 ], [ -64.816681, 18.294758 ], [ -64.816701, 18.294654 ], [ -64.816803, 18.294561 ], [ -64.816817, 18.294526 ], [ -64.816797, 18.294511 ], [ -64.816643, 18.294462 ], [ -64.816647, 18.294345 ], [ -64.816742, 18.29425 ], [ -64.816711, 18.294212 ], [ -64.816574, 18.294255 ], [ -64.81651, 18.294391 ], [ -64.816513, 18.294508 ], [ -64.816425, 18.294874 ], [ -64.816396, 18.294907 ], [ -64.816367, 18.294933 ], [ -64.816355, 18.294984 ], [ -64.816355, 18.295034 ], [ -64.81635, 18.295067 ], [ -64.81635, 18.2951 ], [ -64.816327, 18.295215 ], [ -64.816298, 18.295265 ], [ -64.816217, 18.295359 ], [ -64.816165, 18.295375 ], [ -64.81613, 18.295381 ], [ -64.816079, 18.295381 ], [ -64.816009, 18.295359 ], [ -64.815958, 18.295375 ], [ -64.815883, 18.295419 ], [ -64.815848, 18.295414 ], [ -64.815836, 18.295375 ], [ -64.815831, 18.295342 ], [ -64.815842, 18.295309 ], [ -64.81586, 18.295276 ], [ -64.815865, 18.295226 ], [ -64.815842, 18.295199 ], [ -64.815808, 18.295177 ], [ -64.815773, 18.295166 ], [ -64.815738, 18.29516 ], [ -64.81571, 18.295181 ], [ -64.815698, 18.295248 ], [ -64.815704, 18.295282 ], [ -64.815698, 18.295331 ], [ -64.815594, 18.295353 ], [ -64.815537, 18.295357 ], [ -64.815502, 18.295364 ], [ -64.815427, 18.295353 ], [ -64.815392, 18.295331 ], [ -64.815358, 18.295318 ], [ -64.815295, 18.295276 ], [ -64.81526, 18.295259 ], [ -64.815139, 18.295226 ], [ -64.81496, 18.295224 ], [ -64.814926, 18.295232 ], [ -64.814874, 18.29523 ], [ -64.814799, 18.295243 ], [ -64.814747, 18.29526 ], [ -64.814689, 18.29526 ], [ -64.814637, 18.295265 ], [ -64.814633, 18.295264 ], [ -64.814603, 18.295254 ], [ -64.814395, 18.295226 ], [ -64.814361, 18.295226 ], [ -64.814326, 18.295215 ], [ -64.814239, 18.295232 ], [ -64.814205, 18.295243 ], [ -64.814159, 18.295287 ], [ -64.814147, 18.29532 ], [ -64.81413, 18.295403 ], [ -64.81413, 18.295557 ], [ -64.814124, 18.295606 ], [ -64.814113, 18.295639 ], [ -64.814089, 18.295689 ], [ -64.814072, 18.29575 ], [ -64.8141, 18.295789 ], [ -64.814183, 18.295891 ], [ -64.814292, 18.295984 ], [ -64.814344, 18.295989 ], [ -64.814436, 18.295989 ], [ -64.814497, 18.296071 ], [ -64.814513, 18.296122 ], [ -64.814564, 18.296219 ], [ -64.821014, 18.306287 ], [ -64.82101, 18.306336 ], [ -64.821033, 18.306418 ], [ -64.822624, 18.312051 ], [ -64.822642, 18.312217 ], [ -64.822636, 18.31225 ], [ -64.822636, 18.312332 ], [ -64.822654, 18.312363 ], [ -64.822711, 18.312548 ], [ -64.822745, 18.312624 ], [ -64.822761, 18.312705 ], [ -64.822768, 18.31274 ], [ -64.822749, 18.312834 ], [ -64.822745, 18.312855 ], [ -64.822745, 18.312938 ], [ -64.822735, 18.31297 ], [ -64.822734, 18.313021 ], [ -64.82274, 18.313054 ], [ -64.822768, 18.313103 ], [ -64.82278, 18.313136 ], [ -64.822861, 18.313224 ], [ -64.82288, 18.313262 ], [ -64.822895, 18.313307 ], [ -64.82289, 18.31334 ], [ -64.82289, 18.313389 ], [ -64.822878, 18.313439 ], [ -64.822918, 18.313467 ], [ -64.825871, 18.3166 ], [ -64.825859, 18.31665 ], [ -64.825888, 18.316677 ], [ -64.826085, 18.316798 ], [ -64.826079, 18.316831 ], [ -64.826044, 18.316892 ], [ -64.826044, 18.316925 ], [ -64.831833, 18.324764 ], [ -64.831982, 18.324915 ], [ -64.832034, 18.324947 ], [ -64.832126, 18.325042 ], [ -64.832192, 18.325132 ], [ -64.832239, 18.325168 ], [ -64.832394, 18.325234 ], [ -64.832459, 18.325267 ], [ -64.832566, 18.325281 ], [ -64.832664, 18.325335 ], [ -64.832769, 18.325433 ], [ -64.832885, 18.325564 ], [ -64.833069, 18.325739 ], [ -64.833215, 18.325904 ], [ -64.833318, 18.32604 ], [ -64.833395, 18.326221 ], [ -64.833406, 18.326256 ], [ -64.833417, 18.326286 ], [ -64.833405, 18.326294 ], [ -64.833375, 18.326289 ], [ -64.833343, 18.326273 ], [ -64.833311, 18.326271 ], [ -64.833296, 18.326296 ], [ -64.83329, 18.326307 ], [ -64.833301, 18.326325 ], [ -64.833329, 18.326349 ], [ -64.83332, 18.326377 ], [ -64.833272, 18.326423 ], [ -64.833244, 18.326468 ], [ -64.833246, 18.326524 ], [ -64.833282, 18.32655 ], [ -64.833303, 18.326537 ], [ -64.834387, 18.326905 ], [ -64.838602, 18.328339 ], [ -64.844911, 18.330485 ], [ -64.844982, 18.330581 ], [ -64.84505, 18.330671 ], [ -64.845068, 18.330742 ], [ -64.845117, 18.330855 ], [ -64.845152, 18.330918 ], [ -64.84518, 18.330988 ], [ -64.845237, 18.330995 ], [ -64.845265, 18.331017 ], [ -64.845286, 18.33108 ], [ -64.845328, 18.331171 ], [ -64.84537, 18.331235 ], [ -64.845314, 18.331277 ], [ -64.845356, 18.331291 ], [ -64.845455, 18.331263 ], [ -64.845535, 18.331323 ], [ -64.845518, 18.331362 ], [ -64.845567, 18.331495 ], [ -64.845659, 18.331552 ], [ -64.845708, 18.331678 ], [ -64.8458, 18.331756 ], [ -64.845891, 18.331763 ], [ -64.845955, 18.331763 ], [ -64.846025, 18.331854 ], [ -64.846088, 18.331904 ], [ -64.846145, 18.331911 ], [ -64.846229, 18.331946 ], [ -64.846257, 18.331988 ], [ -64.846293, 18.33203 ], [ -64.846335, 18.332129 ], [ -64.846426, 18.332192 ], [ -64.846504, 18.332206 ], [ -64.846567, 18.332206 ], [ -64.846616, 18.33227 ], [ -64.846687, 18.332284 ], [ -64.846722, 18.332298 ], [ -64.846771, 18.332375 ], [ -64.847496, 18.33322 ], [ -64.848012, 18.335256 ], [ -64.848066, 18.335483 ], [ -64.848064, 18.335492 ], [ -64.848064, 18.335547 ], [ -64.848088, 18.335575 ], [ -64.849928, 18.339132 ], [ -64.849957, 18.339204 ], [ -64.849987, 18.339253 ], [ -64.849997, 18.339286 ], [ -64.85002, 18.33933 ], [ -64.850032, 18.339352 ], [ -64.850078, 18.339385 ], [ -64.850088, 18.33939 ], [ -64.850311, 18.33949 ], [ -64.850445, 18.339565 ], [ -64.850654, 18.339657 ], [ -64.850796, 18.339791 ], [ -64.850939, 18.339908 ], [ -64.851089, 18.340059 ], [ -64.851106, 18.340118 ], [ -64.851106, 18.340218 ], [ -64.851131, 18.340268 ], [ -64.851181, 18.340302 ], [ -64.851265, 18.340344 ], [ -64.851366, 18.34036 ], [ -64.851508, 18.340302 ], [ -64.85155, 18.340134 ], [ -64.851625, 18.340009 ], [ -64.851742, 18.339925 ], [ -64.851943, 18.339833 ], [ -64.852119, 18.339741 ], [ -64.852178, 18.339741 ], [ -64.852504, 18.339766 ], [ -64.852663, 18.339758 ], [ -64.852981, 18.339708 ], [ -64.853216, 18.339641 ], [ -64.853473, 18.339543 ], [ -64.857435, 18.339892 ], [ -64.857585, 18.340042 ], [ -64.857806, 18.340181 ], [ -64.858071, 18.340388 ], [ -64.858389, 18.340586 ], [ -64.858552, 18.340764 ], [ -64.858757, 18.340888 ], [ -64.858908, 18.340946 ], [ -64.859193, 18.341089 ], [ -64.859259, 18.341316 ], [ -64.85931, 18.341398 ], [ -64.859416, 18.341438 ], [ -64.85976, 18.341707 ], [ -64.859953, 18.341918 ], [ -64.860072, 18.341993 ], [ -64.860206, 18.342118 ], [ -64.860473, 18.34242 ], [ -64.860823, 18.342869 ], [ -64.860905, 18.343009 ], [ -64.861269, 18.343625 ], [ -64.861557, 18.3443 ], [ -64.861622, 18.344437 ], [ -64.861564, 18.344575 ], [ -64.861584, 18.34472 ], [ -64.862603, 18.349321 ], [ -64.862618, 18.349388 ], [ -64.862625, 18.349441 ], [ -64.851766, 18.355092 ], [ -64.85168, 18.355064 ], [ -64.851611, 18.355054 ], [ -64.851571, 18.355053 ], [ -64.851502, 18.355076 ], [ -64.851363, 18.355153 ], [ -64.851335, 18.35518 ], [ -64.851294, 18.355202 ], [ -64.851161, 18.355323 ], [ -64.851141, 18.355346 ], [ -64.851092, 18.355412 ], [ -64.851064, 18.35544 ], [ -64.851017, 18.355478 ], [ -64.850902, 18.355593 ], [ -64.850775, 18.355687 ], [ -64.85074, 18.355703 ], [ -64.85059, 18.355814 ], [ -64.850557, 18.355847 ], [ -64.850473, 18.355881 ], [ -64.850423, 18.355907 ], [ -64.850385, 18.35592 ], [ -64.850342, 18.35594 ], [ -64.850303, 18.355951 ], [ -64.850267, 18.355968 ], [ -64.85024, 18.35599 ], [ -64.850169, 18.356007 ], [ -64.850147, 18.356029 ], [ -64.849996, 18.356106 ], [ -64.849968, 18.356133 ], [ -64.849911, 18.35616 ], [ -64.849881, 18.356188 ], [ -64.849847, 18.356199 ], [ -64.849673, 18.356354 ], [ -64.849645, 18.356386 ], [ -64.849524, 18.356444 ], [ -64.84938, 18.356509 ], [ -64.849322, 18.356514 ], [ -64.849213, 18.356542 ], [ -64.849177, 18.356547 ], [ -64.849091, 18.356585 ], [ -64.849042, 18.356594 ], [ -64.84901, 18.356607 ], [ -64.848976, 18.356612 ], [ -64.848935, 18.356629 ], [ -64.8489, 18.356635 ], [ -64.848792, 18.356679 ], [ -64.848745, 18.356684 ], [ -64.848618, 18.356728 ], [ -64.848589, 18.356732 ], [ -64.848583, 18.356734 ], [ -64.848468, 18.356784 ], [ -64.848422, 18.356794 ], [ -64.848301, 18.356861 ], [ -64.848227, 18.356915 ], [ -64.848145, 18.356941 ], [ -64.848116, 18.356954 ], [ -64.848024, 18.356965 ], [ -64.84799, 18.356976 ], [ -64.847917, 18.356983 ], [ -64.847868, 18.356993 ], [ -64.847765, 18.357026 ], [ -64.847712, 18.357065 ], [ -64.847684, 18.357092 ], [ -64.847626, 18.357125 ], [ -64.847606, 18.357145 ], [ -64.847551, 18.357202 ], [ -64.847517, 18.357247 ], [ -64.847502, 18.35727 ], [ -64.847453, 18.357346 ], [ -64.847447, 18.357368 ], [ -64.847389, 18.357439 ], [ -64.847361, 18.357478 ], [ -64.847355, 18.357527 ], [ -64.847384, 18.357556 ], [ -64.847393, 18.357557 ], [ -64.847421, 18.35756 ], [ -64.847488, 18.357566 ], [ -64.847558, 18.357565 ], [ -64.847643, 18.357555 ], [ -64.847679, 18.35756 ], [ -64.84773, 18.35756 ], [ -64.847765, 18.357566 ], [ -64.847799, 18.357566 ], [ -64.847834, 18.357572 ], [ -64.847892, 18.357621 ], [ -64.847962, 18.357707 ], [ -64.847978, 18.357753 ], [ -64.84803, 18.357818 ], [ -64.848082, 18.357841 ], [ -64.848203, 18.357841 ], [ -64.848237, 18.357852 ], [ -64.848273, 18.357852 ], [ -64.848324, 18.357858 ], [ -64.848354, 18.357869 ], [ -64.848388, 18.357919 ], [ -64.848376, 18.357968 ], [ -64.848382, 18.358001 ], [ -64.848371, 18.358034 ], [ -64.848337, 18.358233 ], [ -64.848341, 18.358375 ], [ -64.848325, 18.35843 ], [ -64.848308, 18.358568 ], [ -64.84831, 18.358591 ], [ -64.848319, 18.358651 ], [ -64.848318, 18.358684 ], [ -64.848325, 18.358734 ], [ -64.84833, 18.358766 ], [ -64.848324, 18.358799 ], [ -64.848295, 18.358838 ], [ -64.848233, 18.358882 ], [ -64.848197, 18.35892 ], [ -64.848192, 18.358953 ], [ -64.848169, 18.359019 ], [ -64.848181, 18.359109 ], [ -64.84818, 18.359141 ], [ -64.848198, 18.359174 ], [ -64.848238, 18.359229 ], [ -64.848267, 18.359257 ], [ -64.848319, 18.359284 ], [ -64.848404, 18.359336 ], [ -64.848441, 18.359355 ], [ -64.848532, 18.359433 ], [ -64.848607, 18.359477 ], [ -64.848758, 18.359609 ], [ -64.848809, 18.359658 ], [ -64.848838, 18.359697 ], [ -64.848884, 18.359735 ], [ -64.848913, 18.359818 ], [ -64.84893, 18.359846 ], [ -64.848965, 18.359873 ], [ -64.84904, 18.359912 ], [ -64.849086, 18.359956 ], [ -64.849126, 18.360027 ], [ -64.849149, 18.360082 ], [ -64.849167, 18.360115 ], [ -64.84919, 18.360143 ], [ -64.849219, 18.360225 ], [ -64.849276, 18.360341 ], [ -64.849433, 18.360562 ], [ -64.849478, 18.360589 ], [ -64.849565, 18.360633 ], [ -64.849618, 18.360649 ], [ -64.849646, 18.360666 ], [ -64.849773, 18.360704 ], [ -64.849889, 18.360721 ], [ -64.850004, 18.360753 ], [ -64.850165, 18.360765 ], [ -64.850286, 18.360781 ], [ -64.850391, 18.360815 ], [ -64.850442, 18.360842 ], [ -64.850441, 18.360892 ], [ -64.850436, 18.360926 ], [ -64.850447, 18.360974 ], [ -64.850516, 18.36104 ], [ -64.850603, 18.361068 ], [ -64.850638, 18.361068 ], [ -64.850726, 18.361085 ], [ -64.850759, 18.361101 ], [ -64.85084, 18.361117 ], [ -64.850909, 18.361117 ], [ -64.851002, 18.361112 ], [ -64.851047, 18.361112 ], [ -64.851116, 18.361123 ], [ -64.851186, 18.361117 ], [ -64.851238, 18.361117 ], [ -64.851273, 18.361123 ], [ -64.851307, 18.361117 ], [ -64.851342, 18.361118 ], [ -64.851399, 18.361101 ], [ -64.851428, 18.361079 ], [ -64.851445, 18.361047 ], [ -64.851451, 18.361013 ], [ -64.851491, 18.360897 ], [ -64.851521, 18.36087 ], [ -64.85159, 18.360831 ], [ -64.851744, 18.360779 ], [ -64.85178, 18.360765 ], [ -64.851861, 18.360704 ], [ -64.851924, 18.360626 ], [ -64.851958, 18.360599 ], [ -64.851969, 18.360568 ], [ -64.852, 18.360517 ], [ -64.85201, 18.360484 ], [ -64.852011, 18.360452 ], [ -64.852028, 18.360402 ], [ -64.852056, 18.360373 ], [ -64.852086, 18.360351 ], [ -64.852131, 18.360335 ], [ -64.852172, 18.360379 ], [ -64.852293, 18.360478 ], [ -64.852351, 18.360495 ], [ -64.852379, 18.360517 ], [ -64.852489, 18.360549 ], [ -64.852582, 18.360554 ], [ -64.85261, 18.360561 ], [ -64.852709, 18.360549 ], [ -64.852858, 18.360539 ], [ -64.852927, 18.360516 ], [ -64.85296, 18.360522 ], [ -64.852968, 18.360566 ], [ -64.852945, 18.360599 ], [ -64.85294, 18.360632 ], [ -64.85295, 18.360685 ], [ -64.85295, 18.360715 ], [ -64.852939, 18.360747 ], [ -64.852916, 18.360781 ], [ -64.852882, 18.360798 ], [ -64.852829, 18.360814 ], [ -64.852801, 18.360841 ], [ -64.852754, 18.360874 ], [ -64.852731, 18.360902 ], [ -64.852709, 18.360946 ], [ -64.852697, 18.360979 ], [ -64.852703, 18.361012 ], [ -64.852697, 18.361062 ], [ -64.852698, 18.361095 ], [ -64.852674, 18.361134 ], [ -64.852662, 18.361166 ], [ -64.852656, 18.361199 ], [ -64.852656, 18.361282 ], [ -64.852639, 18.361315 ], [ -64.852692, 18.361387 ], [ -64.85272, 18.361436 ], [ -64.852801, 18.361508 ], [ -64.852835, 18.361524 ], [ -64.852888, 18.36159 ], [ -64.852911, 18.361617 ], [ -64.852945, 18.361645 ], [ -64.852968, 18.361673 ], [ -64.853003, 18.361739 ], [ -64.853008, 18.361772 ], [ -64.853008, 18.361827 ], [ -64.853003, 18.361887 ], [ -64.853037, 18.362108 ], [ -64.853061, 18.36218 ], [ -64.853072, 18.362229 ], [ -64.853073, 18.362262 ], [ -64.853101, 18.362329 ], [ -64.853133, 18.362368 ], [ -64.853136, 18.362372 ], [ -64.853176, 18.362405 ], [ -64.853228, 18.362422 ], [ -64.853262, 18.362427 ], [ -64.853296, 18.362449 ], [ -64.853349, 18.362466 ], [ -64.853384, 18.362494 ], [ -64.853413, 18.362527 ], [ -64.85343, 18.362577 ], [ -64.853436, 18.362609 ], [ -64.853436, 18.362642 ], [ -64.853442, 18.362692 ], [ -64.853419, 18.362764 ], [ -64.853465, 18.362791 ], [ -64.8535, 18.362868 ], [ -64.853511, 18.362895 ], [ -64.853556, 18.362928 ], [ -64.853586, 18.362961 ], [ -64.853614, 18.363006 ], [ -64.853655, 18.363044 ], [ -64.853707, 18.363055 ], [ -64.85373, 18.363 ], [ -64.853735, 18.362962 ], [ -64.853725, 18.362879 ], [ -64.853736, 18.362846 ], [ -64.853737, 18.362806 ], [ -64.853747, 18.362736 ], [ -64.853765, 18.362686 ], [ -64.85377, 18.362653 ], [ -64.85377, 18.362621 ], [ -64.853788, 18.362472 ], [ -64.853799, 18.362422 ], [ -64.853799, 18.362306 ], [ -64.85377, 18.362229 ], [ -64.853747, 18.362196 ], [ -64.853735, 18.362163 ], [ -64.853712, 18.362129 ], [ -64.85369, 18.362079 ], [ -64.853701, 18.362047 ], [ -64.853725, 18.36202 ], [ -64.853776, 18.361992 ], [ -64.853811, 18.361981 ], [ -64.853845, 18.361959 ], [ -64.853886, 18.361949 ], [ -64.85392, 18.361932 ], [ -64.854012, 18.361915 ], [ -64.854052, 18.361898 ], [ -64.854093, 18.361888 ], [ -64.854163, 18.36186 ], [ -64.854237, 18.361783 ], [ -64.854248, 18.361751 ], [ -64.85426, 18.361656 ], [ -64.854272, 18.361617 ], [ -64.854271, 18.361551 ], [ -64.854256, 18.361521 ], [ -64.854244, 18.361446 ], [ -64.85422, 18.361397 ], [ -64.854197, 18.361363 ], [ -64.854064, 18.361276 ], [ -64.854012, 18.361221 ], [ -64.853989, 18.361188 ], [ -64.853983, 18.361155 ], [ -64.853966, 18.361116 ], [ -64.853977, 18.361034 ], [ -64.853972, 18.360998 ], [ -64.853983, 18.360957 ], [ -64.854029, 18.36088 ], [ -64.854058, 18.360841 ], [ -64.854069, 18.360805 ], [ -64.854058, 18.360775 ], [ -64.854024, 18.360764 ], [ -64.853983, 18.360736 ], [ -64.853943, 18.360726 ], [ -64.853891, 18.360698 ], [ -64.853856, 18.360687 ], [ -64.853821, 18.360687 ], [ -64.853798, 18.360654 ], [ -64.853804, 18.360621 ], [ -64.853868, 18.360583 ], [ -64.853908, 18.360566 ], [ -64.853995, 18.36055 ], [ -64.854092, 18.360516 ], [ -64.854162, 18.36051 ], [ -64.854185, 18.360455 ], [ -64.854173, 18.36034 ], [ -64.854191, 18.360306 ], [ -64.8543, 18.360274 ], [ -64.854341, 18.36028 ], [ -64.854427, 18.360334 ], [ -64.854513, 18.360356 ], [ -64.854555, 18.36035 ], [ -64.854588, 18.360351 ], [ -64.854704, 18.360317 ], [ -64.854744, 18.360312 ], [ -64.854906, 18.360263 ], [ -64.854975, 18.360235 ], [ -64.855027, 18.360229 ], [ -64.855096, 18.360262 ], [ -64.855131, 18.360267 ], [ -64.855379, 18.360235 ], [ -64.855454, 18.360207 ], [ -64.855494, 18.360196 ], [ -64.855523, 18.36018 ], [ -64.85561, 18.360152 ], [ -64.855655, 18.360152 ], [ -64.855766, 18.360115 ], [ -64.855806, 18.360096 ], [ -64.855881, 18.360075 ], [ -64.855961, 18.360063 ], [ -64.856013, 18.360064 ], [ -64.856055, 18.360059 ], [ -64.856163, 18.360064 ], [ -64.856198, 18.36007 ], [ -64.856279, 18.360069 ], [ -64.85633, 18.360053 ], [ -64.856556, 18.360003 ], [ -64.856631, 18.359993 ], [ -64.856682, 18.359965 ], [ -64.856728, 18.359838 ], [ -64.856797, 18.359766 ], [ -64.856959, 18.359683 ], [ -64.857034, 18.359666 ], [ -64.857068, 18.359662 ], [ -64.857102, 18.359672 ], [ -64.857161, 18.359678 ], [ -64.857231, 18.359705 ], [ -64.857276, 18.359744 ], [ -64.857293, 18.359777 ], [ -64.857322, 18.35981 ], [ -64.857426, 18.359866 ], [ -64.857502, 18.359872 ], [ -64.857559, 18.359898 ], [ -64.857594, 18.359921 ], [ -64.857663, 18.359936 ], [ -64.857703, 18.359959 ], [ -64.857778, 18.359985 ], [ -64.857813, 18.359998 ], [ -64.857859, 18.360008 ], [ -64.857939, 18.360069 ], [ -64.857986, 18.360107 ], [ -64.858026, 18.360146 ], [ -64.858067, 18.360201 ], [ -64.858084, 18.360251 ], [ -64.85809, 18.360284 ], [ -64.858136, 18.360317 ], [ -64.858222, 18.360317 ], [ -64.858263, 18.360323 ], [ -64.858297, 18.360322 ], [ -64.858333, 18.360311 ], [ -64.858418, 18.360314 ], [ -64.858505, 18.360327 ], [ -64.858753, 18.360306 ], [ -64.858937, 18.360303 ], [ -64.859047, 18.360288 ], [ -64.859099, 18.360294 ], [ -64.859139, 18.360294 ], [ -64.859208, 18.360267 ], [ -64.859324, 18.360233 ], [ -64.859376, 18.360201 ], [ -64.859479, 18.360107 ], [ -64.85952, 18.360062 ], [ -64.859595, 18.359997 ], [ -64.859635, 18.35998 ], [ -64.859722, 18.359914 ], [ -64.859786, 18.359877 ], [ -64.859843, 18.359865 ], [ -64.859878, 18.359864 ], [ -64.860039, 18.359908 ], [ -64.860166, 18.359958 ], [ -64.860206, 18.35998 ], [ -64.860235, 18.360002 ], [ -64.860271, 18.360007 ], [ -64.860483, 18.360101 ], [ -64.860588, 18.360129 ], [ -64.860725, 18.36014 ], [ -64.860761, 18.36014 ], [ -64.860794, 18.360145 ], [ -64.86083, 18.36014 ], [ -64.860869, 18.36014 ], [ -64.860909, 18.360129 ], [ -64.860944, 18.360112 ], [ -64.861025, 18.360099 ], [ -64.861146, 18.360074 ], [ -64.861182, 18.360069 ], [ -64.861268, 18.360071 ], [ -64.861308, 18.360074 ], [ -64.861354, 18.360085 ], [ -64.86143, 18.360084 ], [ -64.861539, 18.360094 ], [ -64.861626, 18.360127 ], [ -64.861671, 18.360139 ], [ -64.861746, 18.360167 ], [ -64.861816, 18.360177 ], [ -64.861867, 18.360194 ], [ -64.861908, 18.360199 ], [ -64.861983, 18.360216 ], [ -64.862053, 18.360223 ], [ -64.862104, 18.360233 ], [ -64.862138, 18.360249 ], [ -64.862151, 18.360283 ], [ -64.862144, 18.360315 ], [ -64.862145, 18.360348 ], [ -64.862156, 18.360398 ], [ -64.86222, 18.36042 ], [ -64.862248, 18.360387 ], [ -64.8623, 18.360365 ], [ -64.862335, 18.36037 ], [ -64.86237, 18.360382 ], [ -64.862421, 18.360381 ], [ -64.862491, 18.360392 ], [ -64.862572, 18.360391 ], [ -64.862606, 18.360381 ], [ -64.862641, 18.360382 ], [ -64.862692, 18.360376 ], [ -64.862727, 18.360376 ], [ -64.862767, 18.36037 ], [ -64.862808, 18.360371 ], [ -64.862848, 18.360387 ], [ -64.862842, 18.36042 ], [ -64.862813, 18.360469 ], [ -64.862831, 18.360497 ], [ -64.862894, 18.360514 ], [ -64.86305, 18.360486 ], [ -64.863125, 18.360502 ], [ -64.863166, 18.360508 ], [ -64.8632, 18.360508 ], [ -64.863374, 18.360542 ], [ -64.863448, 18.360545 ], [ -64.863557, 18.360568 ], [ -64.863599, 18.360569 ], [ -64.86365, 18.360579 ], [ -64.863759, 18.360579 ], [ -64.863846, 18.36059 ], [ -64.863886, 18.36059 ], [ -64.863968, 18.360613 ], [ -64.864007, 18.360618 ], [ -64.864043, 18.360628 ], [ -64.864076, 18.360629 ], [ -64.864112, 18.360641 ], [ -64.864169, 18.360645 ], [ -64.864279, 18.360673 ], [ -64.864319, 18.360673 ], [ -64.864354, 18.360661 ], [ -64.864394, 18.360656 ], [ -64.864418, 18.360629 ], [ -64.864411, 18.360579 ], [ -64.864418, 18.360545 ], [ -64.864446, 18.360508 ], [ -64.864503, 18.360474 ], [ -64.864596, 18.360469 ], [ -64.864631, 18.360457 ], [ -64.864706, 18.360468 ], [ -64.864745, 18.360491 ], [ -64.864816, 18.360561 ], [ -64.864867, 18.36059 ], [ -64.864907, 18.360584 ], [ -64.864942, 18.360567 ], [ -64.864976, 18.36054 ], [ -64.865017, 18.360496 ], [ -64.865098, 18.36043 ], [ -64.865138, 18.360392 ], [ -64.865173, 18.36038 ], [ -64.865224, 18.360375 ], [ -64.865335, 18.360414 ], [ -64.865409, 18.360496 ], [ -64.865427, 18.360528 ], [ -64.865432, 18.360595 ], [ -64.865455, 18.360639 ], [ -64.865496, 18.360695 ], [ -64.865537, 18.360733 ], [ -64.865663, 18.36075 ], [ -64.86571, 18.360761 ], [ -64.865715, 18.360821 ], [ -64.865726, 18.360854 ], [ -64.865813, 18.360886 ], [ -64.865847, 18.360931 ], [ -64.865865, 18.360964 ], [ -64.865893, 18.360992 ], [ -64.865945, 18.361014 ], [ -64.865974, 18.360948 ], [ -64.866004, 18.36092 ], [ -64.866055, 18.360909 ], [ -64.866107, 18.360904 ], [ -64.866177, 18.360921 ], [ -64.866263, 18.360952 ], [ -64.866423, 18.361 ], [ -64.866568, 18.361041 ], [ -64.866724, 18.361038 ], [ -64.866811, 18.36103 ], [ -64.866886, 18.361029 ], [ -64.866937, 18.361035 ], [ -64.866971, 18.361046 ], [ -64.867012, 18.361052 ], [ -64.867122, 18.361101 ], [ -64.867174, 18.361134 ], [ -64.86729, 18.361172 ], [ -64.867324, 18.36119 ], [ -64.867365, 18.361189 ], [ -64.867653, 18.36125 ], [ -64.867723, 18.36126 ], [ -64.867756, 18.361261 ], [ -64.867791, 18.361284 ], [ -64.867879, 18.361387 ], [ -64.86793, 18.361426 ], [ -64.86797, 18.361443 ], [ -64.868155, 18.361464 ], [ -64.868212, 18.361492 ], [ -64.868248, 18.361515 ], [ -64.868346, 18.361613 ], [ -64.868391, 18.361652 ], [ -64.868467, 18.361691 ], [ -64.868524, 18.361657 ], [ -64.868558, 18.361652 ], [ -64.868594, 18.361656 ], [ -64.868681, 18.36171 ], [ -64.868754, 18.361762 ], [ -64.868795, 18.361784 ], [ -64.868876, 18.361811 ], [ -64.868911, 18.361816 ], [ -64.869067, 18.361861 ], [ -64.869187, 18.361921 ], [ -64.8692, 18.361955 ], [ -64.869199, 18.361987 ], [ -64.869204, 18.36202 ], [ -64.869188, 18.36207 ], [ -64.869164, 18.362103 ], [ -64.869118, 18.362186 ], [ -64.869113, 18.362218 ], [ -64.86906, 18.362279 ], [ -64.869016, 18.362369 ], [ -64.868961, 18.362478 ], [ -64.868951, 18.362522 ], [ -64.868934, 18.362554 ], [ -64.868929, 18.362622 ], [ -64.868934, 18.362671 ], [ -64.86898, 18.362736 ], [ -64.869049, 18.362764 ], [ -64.86916, 18.362764 ], [ -64.869246, 18.362774 ], [ -64.869316, 18.362813 ], [ -64.869361, 18.362863 ], [ -64.869396, 18.362886 ], [ -64.869442, 18.362925 ], [ -64.869488, 18.36295 ], [ -64.869673, 18.36309 ], [ -64.869719, 18.363105 ], [ -64.86977, 18.363138 ], [ -64.869909, 18.363194 ], [ -64.869967, 18.363222 ], [ -64.870036, 18.363244 ], [ -64.870088, 18.363248 ], [ -64.870128, 18.36327 ], [ -64.870198, 18.363288 ], [ -64.870237, 18.363303 ], [ -64.870273, 18.363305 ], [ -64.870342, 18.363332 ], [ -64.870433, 18.363342 ], [ -64.870607, 18.363386 ], [ -64.870664, 18.363391 ], [ -64.870757, 18.363413 ], [ -64.870827, 18.363392 ], [ -64.870826, 18.363342 ], [ -64.870803, 18.363276 ], [ -64.870785, 18.363243 ], [ -64.87074, 18.363199 ], [ -64.870692, 18.363161 ], [ -64.870665, 18.363139 ], [ -64.870641, 18.363126 ], [ -64.870578, 18.363094 ], [ -64.870526, 18.363061 ], [ -64.870508, 18.363028 ], [ -64.870498, 18.362996 ], [ -64.870491, 18.362956 ], [ -64.870492, 18.362918 ], [ -64.870475, 18.362824 ], [ -64.870427, 18.362758 ], [ -64.870393, 18.362725 ], [ -64.870353, 18.362675 ], [ -64.870341, 18.362642 ], [ -64.870336, 18.36261 ], [ -64.870335, 18.362563 ], [ -64.870329, 18.362527 ], [ -64.870335, 18.362461 ], [ -64.870319, 18.362301 ], [ -64.8703, 18.36218 ], [ -64.870278, 18.362107 ], [ -64.870272, 18.36207 ], [ -64.870231, 18.361998 ], [ -64.870214, 18.361959 ], [ -64.870168, 18.361888 ], [ -64.870127, 18.361838 ], [ -64.870127, 18.361805 ], [ -64.870139, 18.361772 ], [ -64.870157, 18.36174 ], [ -64.87022, 18.361712 ], [ -64.870254, 18.36169 ], [ -64.870284, 18.361662 ], [ -64.870312, 18.361612 ], [ -64.870336, 18.36158 ], [ -64.870346, 18.361552 ], [ -64.870371, 18.361519 ], [ -64.870398, 18.361469 ], [ -64.870421, 18.361365 ], [ -64.870445, 18.361231 ], [ -64.870462, 18.361199 ], [ -64.87052, 18.361138 ], [ -64.870566, 18.361072 ], [ -64.870606, 18.361023 ], [ -64.870646, 18.360996 ], [ -64.870681, 18.360978 ], [ -64.870768, 18.360962 ], [ -64.870837, 18.360934 ], [ -64.870953, 18.360863 ], [ -64.870998, 18.360847 ], [ -64.871044, 18.360825 ], [ -64.871079, 18.360803 ], [ -64.871195, 18.360763 ], [ -64.871246, 18.360753 ], [ -64.87128, 18.360742 ], [ -64.871355, 18.36073 ], [ -64.871443, 18.360709 ], [ -64.871557, 18.360692 ], [ -64.871587, 18.36068 ], [ -64.871632, 18.360681 ], [ -64.871748, 18.360648 ], [ -64.871783, 18.360632 ], [ -64.871875, 18.360621 ], [ -64.871921, 18.360621 ], [ -64.871996, 18.360615 ], [ -64.872151, 18.360648 ], [ -64.872239, 18.360681 ], [ -64.872331, 18.360759 ], [ -64.872382, 18.360775 ], [ -64.872418, 18.360792 ], [ -64.87251, 18.360795 ], [ -64.872579, 18.360786 ], [ -64.872676, 18.360742 ], [ -64.872775, 18.360702 ], [ -64.87282, 18.36067 ], [ -64.872891, 18.360636 ], [ -64.873023, 18.360614 ], [ -64.873057, 18.360604 ], [ -64.873092, 18.360609 ], [ -64.873149, 18.360598 ], [ -64.873212, 18.360604 ], [ -64.873248, 18.360599 ], [ -64.873299, 18.360604 ], [ -64.873334, 18.360615 ], [ -64.873375, 18.360615 ], [ -64.873444, 18.360626 ], [ -64.873495, 18.360626 ], [ -64.873571, 18.360643 ], [ -64.873709, 18.360648 ], [ -64.873842, 18.360624 ], [ -64.873985, 18.360625 ], [ -64.874044, 18.360654 ], [ -64.874055, 18.360697 ], [ -64.874078, 18.360724 ], [ -64.874119, 18.360734 ], [ -64.874212, 18.36074 ], [ -64.874287, 18.360759 ], [ -64.874331, 18.360763 ], [ -64.874367, 18.360774 ], [ -64.874401, 18.360773 ], [ -64.874565, 18.360814 ], [ -64.874585, 18.360818 ], [ -64.874611, 18.360817 ], [ -64.874686, 18.360828 ], [ -64.874812, 18.360867 ], [ -64.875049, 18.360911 ], [ -64.875086, 18.360908 ], [ -64.875118, 18.360916 ], [ -64.875149, 18.360896 ], [ -64.875199, 18.360878 ], [ -64.875236, 18.360871 ], [ -64.875395, 18.36082 ], [ -64.87543, 18.360817 ], [ -64.875466, 18.360798 ], [ -64.875513, 18.360793 ], [ -64.875557, 18.360778 ], [ -64.875672, 18.360727 ], [ -64.875707, 18.360723 ], [ -64.875793, 18.360694 ], [ -64.875828, 18.360685 ], [ -64.875864, 18.360661 ], [ -64.875937, 18.360628 ], [ -64.876018, 18.360558 ], [ -64.876064, 18.360508 ], [ -64.876058, 18.360481 ], [ -64.876029, 18.360444 ], [ -64.879697, 18.354556 ], [ -64.879699, 18.354561 ], [ -64.879769, 18.354587 ], [ -64.879809, 18.354606 ], [ -64.879846, 18.354609 ], [ -64.880016, 18.354673 ], [ -64.880051, 18.354694 ], [ -64.880107, 18.354695 ], [ -64.88014, 18.354677 ], [ -64.880207, 18.354666 ], [ -64.880272, 18.354691 ], [ -64.880374, 18.354765 ], [ -64.880461, 18.35481 ], [ -64.880513, 18.354832 ], [ -64.880553, 18.354854 ], [ -64.880686, 18.354903 ], [ -64.88074, 18.354928 ], [ -64.88082, 18.354945 ], [ -64.88087, 18.354947 ], [ -64.880922, 18.354964 ], [ -64.881034, 18.354979 ], [ -64.88116, 18.355005 ], [ -64.881165, 18.355005 ], [ -64.881247, 18.355006 ], [ -64.881303, 18.355013 ], [ -64.88134, 18.355012 ], [ -64.881384, 18.355016 ], [ -64.88147, 18.355052 ], [ -64.881591, 18.355129 ], [ -64.881643, 18.355157 ], [ -64.88173, 18.355179 ], [ -64.881818, 18.355177 ], [ -64.881868, 18.355162 ], [ -64.881899, 18.355128 ], [ -64.881949, 18.355107 ], [ -64.881966, 18.355077 ], [ -64.881997, 18.35501 ], [ -64.882137, 18.355005 ], [ -64.882251, 18.354985 ], [ -64.8823, 18.354975 ], [ -64.882352, 18.354975 ], [ -64.882388, 18.354993 ], [ -64.882439, 18.35503 ], [ -64.882486, 18.355044 ], [ -64.882525, 18.355063 ], [ -64.882658, 18.355074 ], [ -64.8827, 18.355071 ], [ -64.882745, 18.355074 ], [ -64.882883, 18.355061 ], [ -64.882952, 18.355045 ], [ -64.882998, 18.355047 ], [ -64.883056, 18.355039 ], [ -64.883189, 18.354997 ], [ -64.883223, 18.354997 ], [ -64.883266, 18.354984 ], [ -64.883352, 18.354979 ], [ -64.883408, 18.354986 ], [ -64.883443, 18.355036 ], [ -64.883479, 18.355057 ], [ -64.88357, 18.35509 ], [ -64.883604, 18.355124 ], [ -64.883663, 18.355161 ], [ -64.883679, 18.355212 ], [ -64.883655, 18.355244 ], [ -64.883606, 18.355281 ], [ -64.883581, 18.355333 ], [ -64.883581, 18.355366 ], [ -64.883587, 18.355416 ], [ -64.883621, 18.355449 ], [ -64.883679, 18.355493 ], [ -64.883704, 18.355532 ], [ -64.883697, 18.355582 ], [ -64.883667, 18.355631 ], [ -64.883685, 18.355714 ], [ -64.883702, 18.355752 ], [ -64.883783, 18.355813 ], [ -64.883834, 18.355846 ], [ -64.883886, 18.355868 ], [ -64.886455, 18.358204 ], [ -64.890674, 18.36204 ], [ -64.890724, 18.362069 ], [ -64.890739, 18.362076 ], [ -64.89077, 18.36207 ], [ -64.89081, 18.362079 ], [ -64.891008, 18.362205 ], [ -64.891106, 18.362272 ], [ -64.891136, 18.362307 ], [ -64.891178, 18.362322 ], [ -64.891243, 18.362331 ], [ -64.891357, 18.362362 ], [ -64.891388, 18.36236 ], [ -64.891426, 18.362379 ], [ -64.891491, 18.362404 ], [ -64.891525, 18.362415 ], [ -64.89164, 18.362517 ], [ -64.891674, 18.36256 ], [ -64.891692, 18.362574 ], [ -64.891724, 18.362616 ], [ -64.891762, 18.362637 ], [ -64.89179, 18.362642 ], [ -64.891898, 18.362682 ], [ -64.891945, 18.362709 ], [ -64.892075, 18.362747 ], [ -64.892146, 18.362762 ], [ -64.892281, 18.362829 ], [ -64.892319, 18.362843 ], [ -64.892349, 18.362835 ], [ -64.892399, 18.362853 ], [ -64.892444, 18.362888 ], [ -64.892457, 18.362897 ], [ -64.892518, 18.362934 ], [ -64.892632, 18.362975 ], [ -64.892654, 18.36298 ], [ -64.892719, 18.36298 ], [ -64.899463, 18.363082 ], [ -64.899539, 18.363095 ], [ -64.899584, 18.363069 ], [ -64.899648, 18.363102 ], [ -64.899769, 18.36314 ], [ -64.899857, 18.363145 ], [ -64.899884, 18.363146 ], [ -64.899948, 18.363124 ], [ -64.9, 18.363162 ], [ -64.900014, 18.363199 ], [ -64.900023, 18.363228 ], [ -64.90004, 18.363267 ], [ -64.900063, 18.363295 ], [ -64.900149, 18.363339 ], [ -64.900215, 18.363386 ], [ -64.900271, 18.363427 ], [ -64.900369, 18.363526 ], [ -64.900426, 18.363603 ], [ -64.90047, 18.363642 ], [ -64.900472, 18.363642 ], [ -64.900594, 18.363691 ], [ -64.900646, 18.363752 ], [ -64.900761, 18.36379 ], [ -64.900945, 18.363801 ], [ -64.901061, 18.363851 ], [ -64.901159, 18.363901 ], [ -64.901228, 18.363917 ], [ -64.901303, 18.363901 ], [ -64.901413, 18.36389 ], [ -64.901476, 18.363917 ], [ -64.901528, 18.363912 ], [ -64.901563, 18.363879 ], [ -64.901666, 18.36389 ], [ -64.901735, 18.363967 ], [ -64.901799, 18.364027 ], [ -64.901851, 18.364055 ], [ -64.90195, 18.36406 ], [ -64.901995, 18.364016 ], [ -64.902059, 18.363994 ], [ -64.902134, 18.364044 ], [ -64.902185, 18.36411 ], [ -64.902209, 18.364198 ], [ -64.902226, 18.364314 ], [ -64.902255, 18.364424 ], [ -64.902285, 18.364503 ], [ -64.902312, 18.364573 ], [ -64.902439, 18.364659 ], [ -64.902474, 18.364683 ], [ -64.902583, 18.364738 ], [ -64.902722, 18.364881 ], [ -64.902785, 18.36492 ], [ -64.902837, 18.364947 ], [ -64.90301, 18.364936 ], [ -64.90312, 18.364969 ], [ -64.903212, 18.365013 ], [ -64.903293, 18.365019 ], [ -64.90335, 18.364958 ], [ -64.903408, 18.364848 ], [ -64.903426, 18.364801 ], [ -64.903431, 18.364793 ], [ -64.903477, 18.364782 ], [ -64.903523, 18.364799 ], [ -64.903547, 18.364854 ], [ -64.903546, 18.364903 ], [ -64.903535, 18.36498 ], [ -64.903535, 18.365024 ], [ -64.903552, 18.365068 ], [ -64.90365, 18.365151 ], [ -64.903679, 18.365184 ], [ -64.903795, 18.3653 ], [ -64.903887, 18.365316 ], [ -64.903933, 18.365294 ], [ -64.904071, 18.365217 ], [ -64.904315, 18.365207 ], [ -64.904337, 18.365206 ], [ -64.904492, 18.365234 ], [ -64.904495, 18.365235 ], [ -64.904642, 18.365283 ], [ -64.904752, 18.3653 ], [ -64.904965, 18.365272 ], [ -64.905039, 18.365283 ], [ -64.905109, 18.365294 ], [ -64.905223, 18.36529 ], [ -64.90526, 18.365289 ], [ -64.905358, 18.365267 ], [ -64.905473, 18.365228 ], [ -64.905571, 18.365234 ], [ -64.90558, 18.365238 ], [ -64.90564, 18.365267 ], [ -64.905732, 18.365289 ], [ -64.905784, 18.365344 ], [ -64.905877, 18.365383 ], [ -64.905952, 18.365344 ], [ -64.906009, 18.365229 ], [ -64.906079, 18.365146 ], [ -64.906205, 18.365058 ], [ -64.906287, 18.3651 ], [ -64.906309, 18.365201 ], [ -64.906304, 18.36524 ], [ -64.906312, 18.365293 ], [ -64.906315, 18.365311 ], [ -64.906373, 18.365361 ], [ -64.906442, 18.365388 ], [ -64.906534, 18.365405 ], [ -64.906635, 18.365434 ], [ -64.90665, 18.365438 ], [ -64.906759, 18.365476 ], [ -64.906903, 18.365537 ], [ -64.906996, 18.365565 ], [ -64.907065, 18.365532 ], [ -64.907163, 18.365521 ], [ -64.907296, 18.365543 ], [ -64.907423, 18.365598 ], [ -64.90759, 18.365719 ], [ -64.907654, 18.365772 ], [ -64.907728, 18.365746 ], [ -64.907755, 18.365696 ], [ -64.907769, 18.365669 ], [ -64.907781, 18.365661 ], [ -64.907815, 18.365642 ], [ -64.907878, 18.365625 ], [ -64.90793, 18.365625 ], [ -64.908016, 18.365664 ], [ -64.908109, 18.365697 ], [ -64.90819, 18.365741 ], [ -64.908282, 18.365824 ], [ -64.908386, 18.365901 ], [ -64.908432, 18.365956 ], [ -64.908478, 18.365967 ], [ -64.908547, 18.365956 ], [ -64.908593, 18.365917 ], [ -64.908639, 18.365884 ], [ -64.908772, 18.36584 ], [ -64.90887, 18.36584 ], [ -64.909032, 18.36589 ], [ -64.909245, 18.365994 ], [ -64.909366, 18.366033 ], [ -64.909435, 18.36605 ], [ -64.909522, 18.366005 ], [ -64.909568, 18.365967 ], [ -64.909614, 18.365939 ], [ -64.909706, 18.365934 ], [ -64.909822, 18.365934 ], [ -64.910053, 18.365967 ], [ -64.910185, 18.366022 ], [ -64.910237, 18.365984 ], [ -64.910226, 18.365923 ], [ -64.910238, 18.365889 ], [ -64.910283, 18.365873 ], [ -64.910335, 18.365868 ], [ -64.910468, 18.365879 ], [ -64.910554, 18.365895 ], [ -64.910624, 18.365918 ], [ -64.91071, 18.365907 ], [ -64.910762, 18.365868 ], [ -64.910815, 18.36584 ], [ -64.9109, 18.365807 ], [ -64.910975, 18.365807 ], [ -64.911045, 18.365813 ], [ -64.911149, 18.365785 ], [ -64.911247, 18.365752 ], [ -64.911295, 18.365744 ], [ -64.911322, 18.365741 ], [ -64.911425, 18.365758 ], [ -64.911575, 18.365807 ], [ -64.911668, 18.365868 ], [ -64.9118, 18.366077 ], [ -64.911818, 18.366138 ], [ -64.911898, 18.366232 ], [ -64.91206, 18.366303 ], [ -64.913827, 18.367346 ], [ -64.915239, 18.368102 ], [ -64.915326, 18.368145 ], [ -64.915407, 18.368195 ], [ -64.915488, 18.368195 ], [ -64.915538, 18.36822 ], [ -64.915581, 18.368282 ], [ -64.915625, 18.368332 ], [ -64.915706, 18.368394 ], [ -64.915756, 18.36845 ], [ -64.915812, 18.368462 ], [ -64.915855, 18.368469 ], [ -64.915905, 18.368456 ], [ -64.915923, 18.368413 ], [ -64.915961, 18.3684 ], [ -64.916017, 18.368456 ], [ -64.916066, 18.368487 ], [ -64.916129, 18.368456 ], [ -64.916172, 18.368456 ], [ -64.916253, 18.368481 ], [ -64.916272, 18.368525 ], [ -64.916334, 18.368563 ], [ -64.916427, 18.368568 ], [ -64.916483, 18.368562 ], [ -64.916533, 18.368587 ], [ -64.916614, 18.368574 ], [ -64.916682, 18.368537 ], [ -64.916726, 18.368581 ], [ -64.916775, 18.368593 ], [ -64.916825, 18.368637 ], [ -64.916912, 18.368693 ], [ -64.916974, 18.36873 ], [ -64.917024, 18.368792 ], [ -64.917092, 18.368817 ], [ -64.917142, 18.368842 ], [ -64.917242, 18.368836 ], [ -64.917273, 18.368798 ], [ -64.917298, 18.368724 ], [ -64.91731, 18.368624 ], [ -64.917335, 18.368568 ], [ -64.917416, 18.368568 ], [ -64.917553, 18.368693 ], [ -64.917646, 18.368773 ], [ -64.917758, 18.36886 ], [ -64.917783, 18.368941 ], [ -64.917783, 18.369035 ], [ -64.917863, 18.36914 ], [ -64.917937, 18.3692 ], [ -64.917983, 18.369211 ], [ -64.918, 18.369239 ], [ -64.918019, 18.369245 ], [ -64.918044, 18.369451 ], [ -64.918156, 18.369557 ], [ -64.918268, 18.369656 ], [ -64.918361, 18.36975 ], [ -64.918531, 18.369861 ], [ -64.918646, 18.36995 ], [ -64.918773, 18.369988 ], [ -64.918831, 18.36995 ], [ -64.918889, 18.369867 ], [ -64.918941, 18.369823 ], [ -64.91905, 18.369812 ], [ -64.919179, 18.369864 ], [ -64.919241, 18.369889 ], [ -64.919332, 18.369929 ], [ -64.919402, 18.369944 ], [ -64.919448, 18.369922 ], [ -64.919526, 18.369916 ], [ -64.919615, 18.369922 ], [ -64.919692, 18.369964 ], [ -64.919754, 18.37002 ], [ -64.919801, 18.370074 ], [ -64.919887, 18.37017 ], [ -64.919931, 18.370234 ], [ -64.919949, 18.370261 ], [ -64.920009, 18.370325 ], [ -64.920063, 18.370358 ], [ -64.920155, 18.370365 ], [ -64.920217, 18.370347 ], [ -64.920292, 18.370365 ], [ -64.920329, 18.370372 ], [ -64.920354, 18.370372 ], [ -64.92041, 18.370372 ], [ -64.920453, 18.37039 ], [ -64.920491, 18.370409 ], [ -64.920546, 18.370434 ], [ -64.920615, 18.370471 ], [ -64.920718, 18.370514 ], [ -64.920745, 18.370496 ], [ -64.920863, 18.370496 ], [ -64.920869, 18.370483 ], [ -64.920919, 18.370483 ], [ -64.920956, 18.370483 ], [ -64.921019, 18.370496 ], [ -64.921062, 18.370496 ], [ -64.921087, 18.370471 ], [ -64.921081, 18.370409 ], [ -64.921081, 18.37039 ], [ -64.92113, 18.370372 ], [ -64.921186, 18.370341 ], [ -64.921186, 18.370285 ], [ -64.921205, 18.370254 ], [ -64.921236, 18.370247 ], [ -64.92136, 18.370254 ], [ -64.921447, 18.370359 ], [ -64.921497, 18.370428 ], [ -64.92159, 18.370552 ], [ -64.921609, 18.370638 ], [ -64.921665, 18.370707 ], [ -64.921895, 18.370838 ], [ -64.922, 18.370931 ], [ -64.922112, 18.371086 ], [ -64.922154, 18.371193 ], [ -64.922277, 18.371327 ], [ -64.922342, 18.371404 ], [ -64.922435, 18.371422 ], [ -64.922448, 18.371446 ], [ -64.922448, 18.371509 ], [ -64.922456, 18.371553 ], [ -64.922547, 18.371596 ], [ -64.92259, 18.371639 ], [ -64.922621, 18.371682 ], [ -64.922696, 18.371726 ], [ -64.922733, 18.371751 ], [ -64.922839, 18.371813 ], [ -64.922876, 18.371844 ], [ -64.922907, 18.371844 ], [ -64.923, 18.371832 ], [ -64.923007, 18.371776 ], [ -64.923038, 18.371738 ], [ -64.923087, 18.371707 ], [ -64.923125, 18.371651 ], [ -64.92315, 18.371645 ], [ -64.923181, 18.371645 ], [ -64.923193, 18.371732 ], [ -64.923168, 18.371788 ], [ -64.923143, 18.371825 ], [ -64.923136, 18.371925 ], [ -64.923133, 18.37192 ], [ -64.923081, 18.371925 ], [ -64.9231, 18.371962 ], [ -64.923112, 18.371987 ], [ -64.923134, 18.372021 ], [ -64.923137, 18.372099 ], [ -64.923131, 18.37213 ], [ -64.923125, 18.372164 ], [ -64.923168, 18.372198 ], [ -64.923174, 18.372211 ], [ -64.923187, 18.372235 ], [ -64.923176, 18.37226 ], [ -64.923192, 18.37229 ], [ -64.923174, 18.372385 ], [ -64.923174, 18.372461 ], [ -64.92317, 18.372509 ], [ -64.923163, 18.372582 ], [ -64.923123, 18.372603 ], [ -64.92309, 18.372663 ], [ -64.923109, 18.372693 ], [ -64.923137, 18.372732 ], [ -64.923137, 18.372751 ], [ -64.923186, 18.372786 ], [ -64.923177, 18.37283 ], [ -64.923169, 18.372867 ], [ -64.923251, 18.372933 ], [ -64.92327, 18.372948 ], [ -64.923317, 18.372906 ], [ -64.923379, 18.372913 ], [ -64.923386, 18.37295 ], [ -64.923386, 18.372981 ], [ -64.923348, 18.37308 ], [ -64.923379, 18.373111 ], [ -64.923504, 18.373192 ], [ -64.923616, 18.373224 ], [ -64.923702, 18.373186 ], [ -64.923814, 18.373124 ], [ -64.923876, 18.373161 ], [ -64.923883, 18.373217 ], [ -64.923901, 18.373285 ], [ -64.923939, 18.373354 ], [ -64.923994, 18.373391 ], [ -64.924044, 18.373434 ], [ -64.924088, 18.373472 ], [ -64.924181, 18.373497 ], [ -64.924206, 18.37359 ], [ -64.924262, 18.373602 ], [ -64.92433, 18.373596 ], [ -64.924349, 18.373521 ], [ -64.924417, 18.373521 ], [ -64.924479, 18.373521 ], [ -64.924492, 18.373478 ], [ -64.924529, 18.373515 ], [ -64.924554, 18.373534 ], [ -64.924591, 18.373546 ], [ -64.924591, 18.373565 ], [ -64.92456, 18.373615 ], [ -64.924535, 18.373664 ], [ -64.924454, 18.373726 ], [ -64.924467, 18.373801 ], [ -64.924492, 18.373888 ], [ -64.924541, 18.374031 ], [ -64.924554, 18.374105 ], [ -64.924647, 18.374211 ], [ -64.924684, 18.374211 ], [ -64.924746, 18.374149 ], [ -64.924822, 18.374186 ], [ -64.924833, 18.374236 ], [ -64.924944, 18.374283 ], [ -64.92502, 18.374279 ], [ -64.925082, 18.374298 ], [ -64.925119, 18.37436 ], [ -64.925162, 18.374385 ], [ -64.925293, 18.374429 ], [ -64.92533, 18.374478 ], [ -64.925417, 18.374553 ], [ -64.925436, 18.374615 ], [ -64.925554, 18.374646 ], [ -64.925554, 18.374677 ], [ -64.925557, 18.374772 ], [ -64.925554, 18.374839 ], [ -64.925554, 18.374888 ], [ -64.925579, 18.374975 ], [ -64.925684, 18.375019 ], [ -64.925753, 18.375013 ], [ -64.92584, 18.375025 ], [ -64.925902, 18.375118 ], [ -64.926055, 18.375169 ], [ -64.926076, 18.375162 ], [ -64.926077, 18.375158 ], [ -64.926088, 18.375135 ], [ -64.926114, 18.375137 ], [ -64.926135, 18.375169 ], [ -64.926139, 18.375204 ], [ -64.926164, 18.375224 ], [ -64.926195, 18.375221 ], [ -64.92625, 18.375216 ], [ -64.926273, 18.375201 ], [ -64.926288, 18.375178 ], [ -64.926289, 18.375155 ], [ -64.926268, 18.37511 ], [ -64.926261, 18.375088 ], [ -64.926251, 18.375059 ], [ -64.926264, 18.375048 ], [ -64.92628, 18.37506 ], [ -64.926296, 18.375072 ], [ -64.926322, 18.375075 ], [ -64.926337, 18.375051 ], [ -64.92638, 18.374996 ], [ -64.926435, 18.374993 ], [ -64.926458, 18.37502 ], [ -64.926445, 18.375048 ], [ -64.926441, 18.375083 ], [ -64.926449, 18.375109 ], [ -64.926485, 18.375139 ], [ -64.926516, 18.375142 ], [ -64.926532, 18.375126 ], [ -64.926532, 18.375106 ], [ -64.926539, 18.375081 ], [ -64.926549, 18.375056 ], [ -64.926563, 18.375043 ], [ -64.926572, 18.375045 ], [ -64.926584, 18.375062 ], [ -64.926601, 18.375091 ], [ -64.926629, 18.375104 ], [ -64.926682, 18.37512 ], [ -64.926735, 18.375125 ], [ -64.926799, 18.37512 ], [ -64.926848, 18.375142 ], [ -64.926948, 18.375156 ], [ -64.927015, 18.375158 ], [ -64.927052, 18.375138 ], [ -64.927059, 18.375098 ], [ -64.927024, 18.375051 ], [ -64.927018, 18.375038 ], [ -64.927021, 18.37501 ], [ -64.92704, 18.375007 ], [ -64.927061, 18.374988 ], [ -64.927074, 18.374951 ], [ -64.927095, 18.374945 ], [ -64.927142, 18.374951 ], [ -64.927189, 18.374967 ], [ -64.92721, 18.375004 ], [ -64.927226, 18.375029 ], [ -64.927331, 18.375072 ], [ -64.927375, 18.375094 ], [ -64.927443, 18.375122 ], [ -64.927518, 18.375128 ], [ -64.927537, 18.375187 ], [ -64.927495, 18.375226 ], [ -64.927496, 18.375252 ], [ -64.927512, 18.375284 ], [ -64.92756, 18.375322 ], [ -64.927553, 18.37539 ], [ -64.927613, 18.375433 ], [ -64.927608, 18.375467 ], [ -64.927601, 18.375545 ], [ -64.927638, 18.37557 ], [ -64.927691, 18.375583 ], [ -64.9277, 18.375657 ], [ -64.927663, 18.375701 ], [ -64.927644, 18.375756 ], [ -64.927601, 18.375806 ], [ -64.927601, 18.375868 ], [ -64.927626, 18.375912 ], [ -64.927694, 18.375918 ], [ -64.9277, 18.375875 ], [ -64.9277, 18.375825 ], [ -64.927731, 18.375794 ], [ -64.927769, 18.375775 ], [ -64.927794, 18.375812 ], [ -64.927806, 18.375899 ], [ -64.927806, 18.375918 ], [ -64.927812, 18.375924 ], [ -64.927874, 18.375949 ], [ -64.927893, 18.375968 ], [ -64.927893, 18.376024 ], [ -64.927912, 18.376055 ], [ -64.927955, 18.376086 ], [ -64.927936, 18.376117 ], [ -64.927955, 18.376154 ], [ -64.927968, 18.376216 ], [ -64.92798, 18.376254 ], [ -64.928017, 18.376285 ], [ -64.928048, 18.376372 ], [ -64.928104, 18.376347 ], [ -64.928129, 18.376291 ], [ -64.928148, 18.376309 ], [ -64.92816, 18.376378 ], [ -64.92816, 18.376427 ], [ -64.92821, 18.376403 ], [ -64.928249, 18.376364 ], [ -64.928329, 18.376477 ], [ -64.928378, 18.376608 ], [ -64.928409, 18.376626 ], [ -64.928477, 18.376639 ], [ -64.92852, 18.376651 ], [ -64.928564, 18.376676 ], [ -64.928589, 18.376726 ], [ -64.92867, 18.376744 ], [ -64.92875, 18.376782 ], [ -64.928806, 18.376813 ], [ -64.928875, 18.376819 ], [ -64.928912, 18.376844 ], [ -64.928968, 18.376844 ], [ -64.929024, 18.376844 ], [ -64.929098, 18.376887 ], [ -64.929167, 18.376819 ], [ -64.929191, 18.376775 ], [ -64.929219, 18.376732 ], [ -64.92921, 18.376632 ], [ -64.929185, 18.376608 ], [ -64.929185, 18.37657 ], [ -64.929136, 18.376527 ], [ -64.929073, 18.376415 ], [ -64.929136, 18.376409 ], [ -64.929173, 18.376452 ], [ -64.929247, 18.376521 ], [ -64.929372, 18.376682 ], [ -64.929477, 18.376726 ], [ -64.92962, 18.376775 ], [ -64.929639, 18.376813 ], [ -64.929775, 18.376893 ], [ -64.929838, 18.376968 ], [ -64.929906, 18.37698 ], [ -64.930024, 18.376943 ], [ -64.930049, 18.376856 ], [ -64.930086, 18.376775 ], [ -64.930105, 18.376688 ], [ -64.930142, 18.376695 ], [ -64.930241, 18.376719 ], [ -64.930285, 18.376732 ], [ -64.930291, 18.376806 ], [ -64.930378, 18.376831 ], [ -64.930328, 18.376893 ], [ -64.930229, 18.376918 ], [ -64.930229, 18.376956 ], [ -64.930285, 18.376974 ], [ -64.930341, 18.376974 ], [ -64.930397, 18.376974 ], [ -64.930428, 18.377005 ], [ -64.930446, 18.377036 ], [ -64.930477, 18.377055 ], [ -64.930571, 18.377055 ], [ -64.930571, 18.377074 ], [ -64.930608, 18.377098 ], [ -64.930614, 18.377105 ], [ -64.930602, 18.377154 ], [ -64.930602, 18.377216 ], [ -64.930633, 18.377291 ], [ -64.930651, 18.377347 ], [ -64.930664, 18.37739 ], [ -64.930645, 18.37739 ], [ -64.930589, 18.37739 ], [ -64.930552, 18.37739 ], [ -64.930552, 18.37744 ], [ -64.930583, 18.377459 ], [ -64.930608, 18.377477 ], [ -64.930658, 18.37749 ], [ -64.930695, 18.377515 ], [ -64.930707, 18.37754 ], [ -64.930738, 18.377602 ], [ -64.930788, 18.377633 ], [ -64.930825, 18.377633 ], [ -64.930863, 18.377633 ], [ -64.930881, 18.377602 ], [ -64.930869, 18.377546 ], [ -64.930832, 18.377496 ], [ -64.930794, 18.377465 ], [ -64.930813, 18.377465 ], [ -64.930856, 18.377477 ], [ -64.930875, 18.37749 ], [ -64.930919, 18.377571 ], [ -64.930999, 18.377633 ], [ -64.931139, 18.377731 ], [ -64.931267, 18.377762 ], [ -64.931293, 18.377764 ], [ -64.931341, 18.377768 ], [ -64.931503, 18.3778 ], [ -64.931613, 18.377851 ], [ -64.931688, 18.3779 ], [ -64.931732, 18.377924 ], [ -64.931832, 18.377978 ], [ -64.931874, 18.377996 ], [ -64.931988, 18.378044 ], [ -64.932095, 18.378058 ], [ -64.932184, 18.378071 ], [ -64.93231, 18.37807 ], [ -64.932403, 18.378064 ], [ -64.93249, 18.37812 ], [ -64.932581, 18.378241 ], [ -64.932665, 18.378341 ], [ -64.932674, 18.378351 ], [ -64.932755, 18.378395 ], [ -64.932818, 18.378406 ], [ -64.932864, 18.378449 ], [ -64.93285, 18.378489 ], [ -64.932876, 18.3785 ], [ -64.932914, 18.3785 ], [ -64.932962, 18.378441 ], [ -64.932967, 18.378372 ], [ -64.933058, 18.378441 ], [ -64.933074, 18.37842 ], [ -64.933127, 18.378356 ], [ -64.933218, 18.378271 ], [ -64.933261, 18.378329 ], [ -64.933298, 18.378393 ], [ -64.933421, 18.378409 ], [ -64.933442, 18.378292 ], [ -64.933453, 18.378191 ], [ -64.933538, 18.378196 ], [ -64.933586, 18.37826 ], [ -64.933613, 18.37826 ], [ -64.933725, 18.378361 ], [ -64.933864, 18.378367 ], [ -64.934013, 18.378436 ], [ -64.934146, 18.378447 ], [ -64.934253, 18.378543 ], [ -64.934312, 18.378607 ], [ -64.934328, 18.37865 ], [ -64.934403, 18.378644 ], [ -64.934365, 18.37873 ], [ -64.934381, 18.378842 ], [ -64.934547, 18.378842 ], [ -64.93468, 18.3789 ], [ -64.934733, 18.378932 ], [ -64.93476, 18.379002 ], [ -64.93484, 18.37906 ], [ -64.93492, 18.379055 ], [ -64.935006, 18.379044 ], [ -64.935027, 18.379092 ], [ -64.935064, 18.379151 ], [ -64.935107, 18.379082 ], [ -64.935128, 18.379114 ], [ -64.935203, 18.379087 ], [ -64.935219, 18.37914 ], [ -64.935256, 18.379172 ], [ -64.935395, 18.379183 ], [ -64.935481, 18.379183 ], [ -64.935593, 18.379285 ], [ -64.935561, 18.379327 ], [ -64.935603, 18.379375 ], [ -64.935651, 18.379407 ], [ -64.93579, 18.379557 ], [ -64.935833, 18.379503 ], [ -64.935918, 18.379509 ], [ -64.935977, 18.379535 ], [ -64.935993, 18.379594 ], [ -64.935966, 18.379653 ], [ -64.935988, 18.379695 ], [ -64.936068, 18.379765 ], [ -64.936089, 18.379829 ], [ -64.93618, 18.379877 ], [ -64.936245, 18.379875 ], [ -64.936293, 18.379918 ], [ -64.936441, 18.380054 ], [ -64.936619, 18.380059 ], [ -64.936683, 18.380087 ], [ -64.936723, 18.380114 ], [ -64.936741, 18.380186 ], [ -64.936752, 18.380267 ], [ -64.936804, 18.38035 ], [ -64.936851, 18.380373 ], [ -64.936885, 18.380372 ], [ -64.936938, 18.380362 ], [ -64.936977, 18.380362 ], [ -64.937006, 18.380439 ], [ -64.936995, 18.380615 ], [ -64.937024, 18.380692 ], [ -64.937065, 18.380703 ], [ -64.937121, 18.380675 ], [ -64.93718, 18.380681 ], [ -64.937237, 18.380719 ], [ -64.937318, 18.380813 ], [ -64.937399, 18.380864 ], [ -64.937444, 18.38094 ], [ -64.937445, 18.381017 ], [ -64.937416, 18.381067 ], [ -64.937393, 18.381133 ], [ -64.93741, 18.381187 ], [ -64.937444, 18.381227 ], [ -64.937496, 18.38126 ], [ -64.937594, 18.381313 ], [ -64.93775, 18.381517 ], [ -64.937797, 18.381584 ], [ -64.937808, 18.381673 ], [ -64.937804, 18.381725 ], [ -64.937809, 18.381749 ], [ -64.937837, 18.381776 ], [ -64.937918, 18.381816 ], [ -64.938056, 18.381941 ], [ -64.938137, 18.381992 ], [ -64.938183, 18.382014 ], [ -64.938224, 18.382014 ], [ -64.938263, 18.381998 ], [ -64.938315, 18.381986 ], [ -64.938373, 18.381997 ], [ -64.938431, 18.382041 ], [ -64.9385, 18.382102 ], [ -64.938575, 18.38215 ], [ -64.938673, 18.382179 ], [ -64.938869, 18.382206 ], [ -64.938944, 18.382201 ], [ -64.939065, 18.382202 ], [ -64.939066, 18.382202 ], [ -64.939221, 18.38225 ], [ -64.939383, 18.382323 ], [ -64.939475, 18.382387 ], [ -64.93955, 18.38247 ], [ -64.939666, 18.382559 ], [ -64.939753, 18.382586 ], [ -64.939769, 18.382597 ], [ -64.939821, 18.382691 ], [ -64.939841, 18.382718 ], [ -64.939844, 18.382736 ], [ -64.939896, 18.382758 ], [ -64.939937, 18.38274 ], [ -64.93996, 18.382735 ], [ -64.94, 18.382746 ], [ -64.940138, 18.382889 ], [ -64.94019, 18.382927 ], [ -64.940254, 18.382933 ], [ -64.940306, 18.38295 ], [ -64.940334, 18.383049 ], [ -64.940415, 18.383144 ], [ -64.940461, 18.383154 ], [ -64.940519, 18.383147 ], [ -64.940577, 18.383236 ], [ -64.940589, 18.383264 ], [ -64.940618, 18.383286 ], [ -64.940658, 18.383263 ], [ -64.940675, 18.383242 ], [ -64.940686, 18.383213 ], [ -64.940675, 18.383187 ], [ -64.940698, 18.383155 ], [ -64.940756, 18.383169 ], [ -64.940831, 18.383225 ], [ -64.940877, 18.383236 ], [ -64.940905, 18.38322 ], [ -64.940924, 18.383214 ], [ -64.942458, 18.382437 ], [ -64.948935, 18.379162 ], [ -64.952656, 18.377165 ], [ -64.952945, 18.376993 ], [ -64.957657, 18.373404 ], [ -64.958254, 18.372917 ], [ -64.95851, 18.372708 ], [ -64.960106, 18.371409 ], [ -64.961752, 18.373008 ], [ -64.961783, 18.373011 ], [ -64.961777, 18.373031 ], [ -64.965599, 18.376743 ], [ -64.96555, 18.377156 ], [ -64.965631, 18.377879 ], [ -64.965874, 18.378271 ], [ -64.966228, 18.378413 ], [ -64.966469, 18.378653 ], [ -64.966392, 18.378881 ], [ -64.966268, 18.379251 ], [ -64.966309, 18.379666 ], [ -64.966454, 18.379938 ], [ -64.9675, 18.380769 ], [ -64.968071, 18.381098 ], [ -64.968208, 18.38163 ], [ -64.967825, 18.382085 ], [ -64.967499, 18.382408 ], [ -64.967314, 18.382713 ], [ -64.967705, 18.383266 ], [ -64.967674, 18.383537 ], [ -64.9674, 18.384043 ], [ -64.967339, 18.384405 ], [ -64.967358, 18.392648 ], [ -64.967311, 18.392625 ], [ -64.967231, 18.392643 ], [ -64.967132, 18.392879 ], [ -64.966979, 18.393076 ], [ -64.967024, 18.393187 ], [ -64.967143, 18.393099 ], [ -64.967276, 18.393054 ], [ -64.967359, 18.392953 ], [ -64.967482, 18.39271 ], [ -64.967574, 18.392756 ], [ -64.967447, 18.392947 ], [ -64.967407, 18.393136 ], [ -64.967377, 18.393254 ], [ -64.96736, 18.393388 ], [ -64.967366, 18.393488 ], [ -64.967378, 18.393576 ], [ -64.96739, 18.393615 ], [ -64.967413, 18.393631 ], [ -64.967459, 18.393637 ], [ -64.967499, 18.393624 ], [ -64.967522, 18.393598 ], [ -64.967539, 18.393562 ], [ -64.967557, 18.393576 ], [ -64.967573, 18.393607 ], [ -64.967591, 18.393664 ], [ -64.967597, 18.393725 ], [ -64.967632, 18.393769 ], [ -64.967701, 18.393773 ], [ -64.967736, 18.39378 ], [ -64.967753, 18.393788 ], [ -64.967776, 18.393818 ], [ -64.967776, 18.393846 ], [ -64.967788, 18.39389 ], [ -64.967811, 18.393923 ], [ -64.967856, 18.39395 ], [ -64.967949, 18.393953 ], [ -64.967989, 18.393923 ], [ -64.968018, 18.393873 ], [ -64.968047, 18.393835 ], [ -64.96807, 18.393824 ], [ -64.968098, 18.393824 ], [ -64.968128, 18.393884 ], [ -64.968145, 18.393945 ], [ -64.968186, 18.394005 ], [ -64.968278, 18.394038 ], [ -64.968289, 18.394066 ], [ -64.96829, 18.394204 ], [ -64.96833, 18.394297 ], [ -64.968382, 18.39433 ], [ -64.968451, 18.394391 ], [ -64.968491, 18.394501 ], [ -64.968538, 18.394551 ], [ -64.968572, 18.394647 ], [ -64.968567, 18.394743 ], [ -64.968538, 18.394815 ], [ -64.968543, 18.394903 ], [ -64.968561, 18.394947 ], [ -64.96859, 18.39498 ], [ -64.968636, 18.39499 ], [ -64.968676, 18.395013 ], [ -64.968722, 18.395072 ], [ -64.968769, 18.395151 ], [ -64.968832, 18.395211 ], [ -64.968913, 18.395261 ], [ -64.969034, 18.39531 ], [ -64.969149, 18.395338 ], [ -64.969212, 18.39537 ], [ -64.969288, 18.395419 ], [ -64.969432, 18.395503 ], [ -64.969507, 18.395558 ], [ -64.969622, 18.395727 ], [ -64.969656, 18.395826 ], [ -64.969708, 18.39592 ], [ -64.96987, 18.396037 ], [ -64.969945, 18.396058 ], [ -64.969985, 18.39608 ], [ -64.969986, 18.396131 ], [ -64.969968, 18.396202 ], [ -64.96998, 18.396302 ], [ -64.97002, 18.396373 ], [ -64.970118, 18.396505 ], [ -64.970159, 18.396555 ], [ -64.970193, 18.396552 ], [ -64.97024, 18.39656 ], [ -64.970263, 18.396547 ], [ -64.970297, 18.396555 ], [ -64.970326, 18.396576 ], [ -64.970389, 18.396597 ], [ -64.97043, 18.396577 ], [ -64.970482, 18.396593 ], [ -64.970505, 18.396643 ], [ -64.970528, 18.396654 ], [ -64.970643, 18.396663 ], [ -64.970643, 18.396708 ], [ -64.97066, 18.396784 ], [ -64.970706, 18.396822 ], [ -64.970776, 18.396863 ], [ -64.970886, 18.396907 ], [ -64.970967, 18.396918 ], [ -64.971041, 18.396972 ], [ -64.971128, 18.397064 ], [ -64.971336, 18.397249 ], [ -64.971394, 18.39732 ], [ -64.971434, 18.397403 ], [ -64.971474, 18.397507 ], [ -64.971474, 18.397595 ], [ -64.971498, 18.397677 ], [ -64.971521, 18.397849 ], [ -64.971549, 18.397909 ], [ -64.971572, 18.397931 ], [ -64.971596, 18.397937 ], [ -64.971624, 18.397958 ], [ -64.971659, 18.397997 ], [ -64.971653, 18.398041 ], [ -64.97159, 18.398124 ], [ -64.971446, 18.398289 ], [ -64.971394, 18.398366 ], [ -64.971365, 18.39846 ], [ -64.971394, 18.398526 ], [ -64.971457, 18.398576 ], [ -64.971532, 18.398587 ], [ -64.971625, 18.398565 ], [ -64.971694, 18.398532 ], [ -64.971751, 18.398482 ], [ -64.971803, 18.398421 ], [ -64.971832, 18.398394 ], [ -64.971878, 18.398394 ], [ -64.971913, 18.398421 ], [ -64.971947, 18.398499 ], [ -64.971965, 18.39857 ], [ -64.972034, 18.398779 ], [ -64.972069, 18.398851 ], [ -64.972103, 18.398895 ], [ -64.972155, 18.398917 ], [ -64.97219, 18.398944 ], [ -64.972219, 18.398986 ], [ -64.972225, 18.399044 ], [ -64.972334, 18.399175 ], [ -64.972403, 18.399235 ], [ -64.972611, 18.399446 ], [ -64.972675, 18.399545 ], [ -64.972686, 18.399605 ], [ -64.972669, 18.399633 ], [ -64.972571, 18.39966 ], [ -64.972502, 18.399671 ], [ -64.972444, 18.399727 ], [ -64.972455, 18.399782 ], [ -64.972519, 18.39983 ], [ -64.972519, 18.399864 ], [ -64.972525, 18.399897 ], [ -64.972536, 18.399925 ], [ -64.972588, 18.39993 ], [ -64.972611, 18.399969 ], [ -64.972594, 18.400002 ], [ -64.972565, 18.400079 ], [ -64.972571, 18.400156 ], [ -64.972611, 18.400228 ], [ -64.972727, 18.400354 ], [ -64.972796, 18.400448 ], [ -64.972951, 18.400577 ], [ -64.972998, 18.400613 ], [ -64.973032, 18.400624 ], [ -64.97305, 18.400613 ], [ -64.973055, 18.400595 ], [ -64.97305, 18.400569 ], [ -64.973032, 18.400547 ], [ -64.973027, 18.400519 ], [ -64.973032, 18.4005 ], [ -64.973073, 18.400492 ], [ -64.973119, 18.400503 ], [ -64.973332, 18.400673 ], [ -64.973405, 18.400748 ], [ -64.973494, 18.400839 ], [ -64.973794, 18.401114 ], [ -64.973973, 18.401246 ], [ -64.974083, 18.401334 ], [ -64.974129, 18.401329 ], [ -64.974135, 18.401296 ], [ -64.974106, 18.401252 ], [ -64.974059, 18.401197 ], [ -64.974031, 18.401141 ], [ -64.974042, 18.401114 ], [ -64.974088, 18.401086 ], [ -64.974146, 18.401097 ], [ -64.974233, 18.401169 ], [ -64.974383, 18.401329 ], [ -64.974446, 18.401345 ], [ -64.974515, 18.401323 ], [ -64.974694, 18.401296 ], [ -64.974775, 18.401334 ], [ -64.97489, 18.401455 ], [ -64.975034, 18.401576 ], [ -64.975114, 18.401653 ], [ -64.975213, 18.401708 ], [ -64.975323, 18.401786 ], [ -64.975346, 18.401824 ], [ -64.975404, 18.401857 ], [ -64.975418, 18.401844 ], [ -64.975432, 18.401805 ], [ -64.975415, 18.401764 ], [ -64.975265, 18.401543 ], [ -64.975121, 18.401384 ], [ -64.975046, 18.401273 ], [ -64.975011, 18.401158 ], [ -64.975034, 18.4011 ], [ -64.97508, 18.40107 ], [ -64.975127, 18.401026 ], [ -64.975121, 18.400965 ], [ -64.975075, 18.400938 ], [ -64.975034, 18.400901 ], [ -64.974982, 18.400832 ], [ -64.975029, 18.400739 ], [ -64.975017, 18.400723 ], [ -64.974977, 18.400701 ], [ -64.974959, 18.400673 ], [ -64.974959, 18.400646 ], [ -64.974982, 18.400596 ], [ -64.975017, 18.400567 ], [ -64.975034, 18.400525 ], [ -64.975034, 18.400481 ], [ -64.975005, 18.400441 ], [ -64.974971, 18.400381 ], [ -64.974925, 18.400315 ], [ -64.974896, 18.400255 ], [ -64.974798, 18.4001 ], [ -64.974775, 18.399908 ], [ -64.974815, 18.399798 ], [ -64.97478, 18.399687 ], [ -64.974751, 18.399665 ], [ -64.974607, 18.399467 ], [ -64.974596, 18.39944 ], [ -64.974607, 18.399401 ], [ -64.974636, 18.399396 ], [ -64.974838, 18.399434 ], [ -64.974913, 18.39939 ], [ -64.974919, 18.399307 ], [ -64.975084, 18.39508 ], [ -64.975085, 18.395078 ], [ -64.975085, 18.395007 ], [ -64.975091, 18.394957 ], [ -64.975998, 18.386135 ], [ -64.976067, 18.385912 ], [ -64.976073, 18.385691 ], [ -64.978152, 18.3813 ], [ -64.982265, 18.372616 ], [ -64.983978, 18.372489 ], [ -64.990251, 18.372026 ], [ -64.990721, 18.371991 ], [ -64.990739, 18.371995 ], [ -64.990785, 18.371987 ], [ -64.999654, 18.369799 ], [ -65.000571, 18.369572 ], [ -65.006027, 18.368228 ], [ -65.006096, 18.368234 ], [ -65.006131, 18.368206 ], [ -65.006153, 18.368157 ], [ -65.006154, 18.368112 ], [ -65.006177, 18.368069 ], [ -65.0062, 18.367992 ], [ -65.00624, 18.367937 ], [ -65.006304, 18.36787 ], [ -65.006327, 18.367821 ], [ -65.006396, 18.367794 ], [ -65.006442, 18.367854 ], [ -65.006436, 18.367876 ], [ -65.006442, 18.36797 ], [ -65.006471, 18.368003 ], [ -65.006534, 18.368036 ], [ -65.006626, 18.368113 ], [ -65.006667, 18.368124 ], [ -65.006702, 18.368118 ], [ -65.006736, 18.368124 ], [ -65.006776, 18.368069 ], [ -65.006828, 18.368031 ], [ -65.006996, 18.367837 ], [ -65.010959, 18.362816 ], [ -65.013797, 18.361831 ], [ -65.013855, 18.361776 ], [ -65.013918, 18.361737 ], [ -65.013987, 18.361748 ], [ -65.014039, 18.361787 ], [ -65.014058, 18.361787 ], [ -65.014108, 18.361776 ], [ -65.014334, 18.361666 ], [ -65.014403, 18.361644 ], [ -65.014501, 18.36166 ], [ -65.014576, 18.36165 ], [ -65.014628, 18.361633 ], [ -65.014708, 18.361589 ], [ -65.014743, 18.361556 ], [ -65.014847, 18.361523 ], [ -65.014962, 18.361529 ], [ -65.015089, 18.3616 ], [ -65.015112, 18.361672 ], [ -65.015158, 18.361721 ], [ -65.015199, 18.361732 ], [ -65.015227, 18.361716 ], [ -65.015314, 18.361694 ], [ -65.015401, 18.361705 ], [ -65.015447, 18.361744 ], [ -65.01547, 18.361771 ], [ -65.015475, 18.361793 ], [ -65.01551, 18.361804 ], [ -65.015548, 18.361811 ], [ -65.015568, 18.361815 ], [ -65.015597, 18.361787 ], [ -65.01562, 18.361699 ], [ -65.015718, 18.361435 ], [ -65.015764, 18.361407 ], [ -65.015798, 18.361413 ], [ -65.015868, 18.36149 ], [ -65.015937, 18.361512 ], [ -65.016029, 18.361456 ], [ -65.016069, 18.361452 ], [ -65.016164, 18.361478 ], [ -65.016168, 18.361479 ], [ -65.016208, 18.361474 ], [ -65.016375, 18.361484 ], [ -65.016427, 18.361474 ], [ -65.016531, 18.361479 ], [ -65.016658, 18.361479 ], [ -65.016773, 18.361468 ], [ -65.017085, 18.361391 ], [ -65.01716, 18.361358 ], [ -65.017367, 18.361303 ], [ -65.017442, 18.36127 ], [ -65.017909, 18.36111 ], [ -65.017967, 18.361111 ], [ -65.020026, 18.361414 ], [ -65.020072, 18.361425 ], [ -65.020147, 18.36137 ], [ -65.020182, 18.361358 ], [ -65.020349, 18.361364 ], [ -65.02047, 18.361391 ], [ -65.02058, 18.361425 ], [ -65.020597, 18.361446 ], [ -65.020643, 18.361562 ], [ -65.020684, 18.36159 ], [ -65.020703, 18.361585 ], [ -65.020735, 18.36159 ], [ -65.020776, 18.361574 ], [ -65.020804, 18.361557 ], [ -65.02088, 18.361469 ], [ -65.020914, 18.361475 ], [ -65.020966, 18.361441 ], [ -65.020952, 18.36141 ], [ -65.020955, 18.361392 ], [ -65.020908, 18.361358 ], [ -65.020897, 18.361331 ], [ -65.020874, 18.361309 ], [ -65.020874, 18.361276 ], [ -65.020937, 18.361188 ], [ -65.021001, 18.361194 ], [ -65.021145, 18.361182 ], [ -65.021168, 18.361194 ], [ -65.021232, 18.36127 ], [ -65.021324, 18.361309 ], [ -65.021347, 18.361309 ], [ -65.02141, 18.361342 ], [ -65.021445, 18.361342 ], [ -65.021479, 18.361359 ], [ -65.021543, 18.36137 ], [ -65.021589, 18.361369 ], [ -65.02167, 18.361343 ], [ -65.021756, 18.361332 ], [ -65.022004, 18.361365 ], [ -65.022068, 18.361387 ], [ -65.022119, 18.36138 ], [ -65.022327, 18.361397 ], [ -65.022373, 18.361391 ], [ -65.022523, 18.361409 ], [ -65.022621, 18.361392 ], [ -65.02269, 18.361387 ], [ -65.022754, 18.361403 ], [ -65.022766, 18.361425 ], [ -65.022806, 18.361447 ], [ -65.022864, 18.361518 ], [ -65.022898, 18.361541 ], [ -65.022967, 18.361546 ], [ -65.023031, 18.36153 ], [ -65.023123, 18.36153 ], [ -65.023244, 18.361536 ], [ -65.023268, 18.361543 ], [ -65.023313, 18.361558 ], [ -65.0234, 18.361618 ], [ -65.023469, 18.3617 ], [ -65.023503, 18.361717 ], [ -65.023556, 18.361722 ], [ -65.023584, 18.361717 ], [ -65.023746, 18.361651 ], [ -65.023827, 18.361684 ], [ -65.023844, 18.361701 ], [ -65.023839, 18.361722 ], [ -65.023843, 18.36174 ], [ -65.023833, 18.361761 ], [ -65.023786, 18.361816 ], [ -65.023659, 18.361882 ], [ -65.023619, 18.361982 ], [ -65.023625, 18.362036 ], [ -65.023642, 18.362086 ], [ -65.023677, 18.36213 ], [ -65.023757, 18.362169 ], [ -65.02385, 18.362168 ], [ -65.023896, 18.362108 ], [ -65.023908, 18.36207 ], [ -65.023936, 18.362042 ], [ -65.023936, 18.362014 ], [ -65.023954, 18.361992 ], [ -65.024028, 18.361943 ], [ -65.024098, 18.361927 ], [ -65.024126, 18.36191 ], [ -65.024132, 18.361882 ], [ -65.024115, 18.361811 ], [ -65.024052, 18.361705 ], [ -65.024069, 18.361673 ], [ -65.02411, 18.361639 ], [ -65.024207, 18.361602 ], [ -65.024311, 18.361574 ], [ -65.024432, 18.361563 ], [ -65.024588, 18.361525 ], [ -65.024796, 18.361431 ], [ -65.024911, 18.361409 ], [ -65.025021, 18.361431 ], [ -65.025044, 18.361448 ], [ -65.025055, 18.361431 ], [ -65.025148, 18.361436 ], [ -65.025222, 18.361393 ], [ -65.025257, 18.361398 ], [ -65.02528, 18.36142 ], [ -65.025263, 18.361514 ], [ -65.025268, 18.361618 ], [ -65.02528, 18.361657 ], [ -65.025326, 18.361718 ], [ -65.025586, 18.361943 ], [ -65.02573, 18.362026 ], [ -65.02577, 18.362054 ], [ -65.025903, 18.362108 ], [ -65.025955, 18.362109 ], [ -65.026059, 18.362025 ], [ -65.026116, 18.361993 ], [ -65.026243, 18.36202 ], [ -65.026537, 18.362047 ], [ -65.026681, 18.362026 ], [ -65.026802, 18.361977 ], [ -65.026843, 18.361982 ], [ -65.026901, 18.361971 ], [ -65.027022, 18.361977 ], [ -65.027195, 18.362004 ], [ -65.027333, 18.361982 ], [ -65.027378, 18.361943 ], [ -65.027379, 18.361943 ], [ -65.027385, 18.361867 ], [ -65.027356, 18.361783 ], [ -65.027356, 18.361662 ], [ -65.027316, 18.361575 ], [ -65.027155, 18.361497 ], [ -65.027258, 18.361453 ], [ -65.027334, 18.361431 ], [ -65.027362, 18.361376 ], [ -65.027362, 18.361304 ], [ -65.027333, 18.361294 ], [ -65.027338, 18.361274 ], [ -65.027322, 18.361227 ], [ -65.027333, 18.3612 ], [ -65.027322, 18.361173 ], [ -65.027339, 18.361156 ], [ -65.027454, 18.361194 ], [ -65.027489, 18.361195 ], [ -65.027553, 18.361211 ], [ -65.027581, 18.361206 ], [ -65.027616, 18.361173 ], [ -65.027633, 18.361134 ], [ -65.027633, 18.361085 ], [ -65.027581, 18.360996 ], [ -65.027541, 18.360958 ], [ -65.027535, 18.360892 ], [ -65.02757, 18.360864 ], [ -65.027599, 18.360892 ], [ -65.027674, 18.360897 ], [ -65.027801, 18.360881 ], [ -65.027916, 18.360842 ], [ -65.027962, 18.360742 ], [ -65.027991, 18.360611 ], [ -65.027985, 18.36055 ], [ -65.027916, 18.360362 ], [ -65.027899, 18.360347 ], [ -65.027853, 18.360247 ], [ -65.027858, 18.360165 ], [ -65.02787, 18.360104 ], [ -65.027887, 18.360077 ], [ -65.027922, 18.360054 ], [ -65.028037, 18.360011 ], [ -65.028112, 18.36 ], [ -65.028181, 18.359978 ], [ -65.028233, 18.359983 ], [ -65.028389, 18.360016 ], [ -65.028447, 18.36005 ], [ -65.028475, 18.360076 ], [ -65.02851, 18.360087 ], [ -65.028602, 18.36006 ], [ -65.028637, 18.360039 ], [ -65.028735, 18.360016 ], [ -65.028793, 18.360044 ], [ -65.028822, 18.360043 ], [ -65.02885, 18.360077 ], [ -65.028897, 18.360082 ], [ -65.028971, 18.360143 ], [ -65.029052, 18.360176 ], [ -65.02915, 18.360231 ], [ -65.029208, 18.360247 ], [ -65.029248, 18.36027 ], [ -65.029346, 18.360248 ], [ -65.029364, 18.360209 ], [ -65.029346, 18.360187 ], [ -65.029346, 18.36011 ], [ -65.029329, 18.360022 ], [ -65.029341, 18.35995 ], [ -65.029369, 18.359912 ], [ -65.029496, 18.359966 ], [ -65.029554, 18.359879 ], [ -65.029589, 18.359906 ], [ -65.029865, 18.36006 ], [ -65.029946, 18.360121 ], [ -65.030039, 18.360143 ], [ -65.030125, 18.360176 ], [ -65.030142, 18.360209 ], [ -65.030183, 18.360231 ], [ -65.030223, 18.360308 ], [ -65.030342, 18.36036 ], [ -65.03035, 18.360364 ], [ -65.030407, 18.360407 ], [ -65.030407, 18.360435 ], [ -65.030436, 18.360485 ], [ -65.030459, 18.360506 ], [ -65.030488, 18.360495 ], [ -65.030529, 18.360512 ], [ -65.030598, 18.360501 ], [ -65.03073, 18.360506 ], [ -65.030771, 18.360484 ], [ -65.030788, 18.360435 ], [ -65.030863, 18.360456 ], [ -65.030921, 18.360441 ], [ -65.031013, 18.360369 ], [ -65.031082, 18.360242 ], [ -65.031134, 18.360292 ], [ -65.03118, 18.36032 ], [ -65.031203, 18.360347 ], [ -65.031319, 18.360385 ], [ -65.031359, 18.36038 ], [ -65.031388, 18.360385 ], [ -65.031422, 18.360364 ], [ -65.031434, 18.360336 ], [ -65.031457, 18.360325 ], [ -65.031578, 18.360353 ], [ -65.031676, 18.360347 ], [ -65.031757, 18.36039 ], [ -65.031803, 18.360402 ], [ -65.031843, 18.360396 ], [ -65.031878, 18.360369 ], [ -65.03193, 18.360341 ], [ -65.031971, 18.360314 ], [ -65.032016, 18.360325 ], [ -65.032086, 18.360375 ], [ -65.032172, 18.360364 ], [ -65.032172, 18.360308 ], [ -65.032213, 18.360265 ], [ -65.032242, 18.360209 ], [ -65.032282, 18.360187 ], [ -65.032397, 18.360176 ], [ -65.03242, 18.360177 ], [ -65.032518, 18.360121 ], [ -65.032565, 18.360071 ], [ -65.032668, 18.359989 ], [ -65.03276, 18.359978 ], [ -65.03279, 18.359989 ], [ -65.032824, 18.360017 ], [ -65.03287, 18.360105 ], [ -65.032957, 18.360121 ], [ -65.03306, 18.360094 ], [ -65.033095, 18.360072 ], [ -65.033153, 18.360061 ], [ -65.033222, 18.360066 ], [ -65.033291, 18.360056 ], [ -65.03332, 18.360061 ], [ -65.033354, 18.360049 ], [ -65.033505, 18.360027 ], [ -65.033643, 18.36005 ], [ -65.046216, 18.361196 ], [ -65.04625, 18.361202 ], [ -65.04632, 18.36119 ], [ -65.046585, 18.361047 ], [ -65.046792, 18.361025 ], [ -65.046885, 18.361053 ], [ -65.046925, 18.361047 ], [ -65.046971, 18.361069 ], [ -65.047023, 18.361129 ], [ -65.047057, 18.361207 ], [ -65.047098, 18.361367 ], [ -65.047104, 18.361405 ], [ -65.047098, 18.361433 ], [ -65.047121, 18.361461 ], [ -65.04948, 18.362884 ], [ -65.049722, 18.36303 ], [ -65.049988, 18.363106 ], [ -65.050022, 18.363102 ], [ -65.050316, 18.363184 ], [ -65.050414, 18.363217 ], [ -65.050506, 18.363278 ], [ -65.050564, 18.363327 ], [ -65.050588, 18.363388 ], [ -65.050581, 18.363526 ], [ -65.050558, 18.363581 ], [ -65.050558, 18.363619 ], [ -65.050622, 18.363735 ], [ -65.050702, 18.363834 ], [ -65.051049, 18.36406 ], [ -65.051095, 18.364082 ], [ -65.051181, 18.364104 ], [ -65.051204, 18.36412 ], [ -65.051372, 18.364148 ], [ -65.051452, 18.364126 ], [ -65.051487, 18.364093 ], [ -65.051522, 18.364043 ], [ -65.051522, 18.364016 ], [ -65.051545, 18.363966 ], [ -65.051562, 18.363889 ], [ -65.051568, 18.363812 ], [ -65.051585, 18.363745 ], [ -65.051666, 18.363537 ], [ -65.051671, 18.363508 ], [ -65.051631, 18.363481 ], [ -65.051608, 18.363476 ], [ -65.051562, 18.363438 ], [ -65.051533, 18.363388 ], [ -65.051527, 18.363311 ], [ -65.05151, 18.363289 ], [ -65.051481, 18.363206 ], [ -65.051475, 18.363151 ], [ -65.051516, 18.363019 ], [ -65.051493, 18.363002 ], [ -65.051464, 18.362914 ], [ -65.051498, 18.362744 ], [ -65.051516, 18.3627 ], [ -65.05155, 18.362672 ], [ -65.051556, 18.362639 ], [ -65.051579, 18.362617 ], [ -65.051608, 18.362617 ], [ -65.051926, 18.362732 ], [ -65.051989, 18.362832 ], [ -65.052006, 18.362881 ], [ -65.052046, 18.36293 ], [ -65.05207, 18.362941 ], [ -65.052156, 18.362936 ], [ -65.052191, 18.362886 ], [ -65.052225, 18.362859 ], [ -65.05226, 18.362815 ], [ -65.052323, 18.362815 ], [ -65.052381, 18.362843 ], [ -65.05245, 18.362887 ], [ -65.052554, 18.362936 ], [ -65.052652, 18.362942 ], [ -65.052756, 18.362936 ], [ -65.052813, 18.362964 ], [ -65.0529, 18.363046 ], [ -65.052946, 18.363052 ], [ -65.052987, 18.363024 ], [ -65.052986, 18.362986 ], [ -65.05294, 18.362886 ], [ -65.052911, 18.362859 ], [ -65.052911, 18.362821 ], [ -65.052946, 18.362793 ], [ -65.053182, 18.362787 ], [ -65.053269, 18.36277 ], [ -65.053407, 18.36276 ], [ -65.053563, 18.362809 ], [ -65.053615, 18.362875 ], [ -65.053632, 18.36293 ], [ -65.053656, 18.362964 ], [ -65.053719, 18.363162 ], [ -65.053754, 18.363184 ], [ -65.053765, 18.363228 ], [ -65.05384, 18.363338 ], [ -65.053938, 18.363564 ], [ -65.053984, 18.363607 ], [ -65.053978, 18.363636 ], [ -65.05403, 18.363696 ], [ -65.054063, 18.363785 ], [ -65.054071, 18.363806 ], [ -65.054071, 18.363862 ], [ -65.054082, 18.363889 ], [ -65.054169, 18.363972 ], [ -65.054226, 18.363999 ], [ -65.054359, 18.363994 ], [ -65.054388, 18.364005 ], [ -65.054619, 18.364027 ], [ -65.054763, 18.364005 ], [ -65.05493, 18.363955 ], [ -65.055132, 18.363917 ], [ -65.05519, 18.363872 ], [ -65.055207, 18.363833 ], [ -65.055259, 18.363784 ], [ -65.055278, 18.363779 ], [ -65.055322, 18.363779 ], [ -65.055466, 18.363827 ], [ -65.055397, 18.363922 ], [ -65.055386, 18.363977 ], [ -65.055478, 18.36401 ], [ -65.055582, 18.36402 ], [ -65.055628, 18.364016 ], [ -65.055651, 18.364005 ], [ -65.05568, 18.363972 ], [ -65.055668, 18.363958 ], [ -65.055662, 18.363917 ], [ -65.05568, 18.363894 ], [ -65.05576, 18.363883 ], [ -65.055997, 18.363971 ], [ -65.056101, 18.363961 ], [ -65.056135, 18.363966 ], [ -65.056166, 18.363955 ], [ -65.05617, 18.363954 ], [ -65.056262, 18.363911 ], [ -65.05632, 18.363845 ], [ -65.05636, 18.363757 ], [ -65.056384, 18.363734 ], [ -65.056436, 18.363551 ], [ -65.056441, 18.363537 ], [ -65.056505, 18.363431 ], [ -65.056533, 18.363404 ], [ -65.056545, 18.363371 ], [ -65.056574, 18.363349 ], [ -65.056581, 18.363332 ], [ -65.05662, 18.363304 ], [ -65.056712, 18.363311 ], [ -65.056759, 18.363299 ], [ -65.056764, 18.363267 ], [ -65.056799, 18.363212 ], [ -65.056856, 18.363228 ], [ -65.056902, 18.363217 ], [ -65.056902, 18.363151 ], [ -65.056856, 18.363085 ], [ -65.056741, 18.362996 ], [ -65.056712, 18.362991 ], [ -65.056666, 18.362957 ], [ -65.056626, 18.362953 ], [ -65.056586, 18.362974 ], [ -65.056539, 18.362986 ], [ -65.056424, 18.36298 ], [ -65.056372, 18.362936 ], [ -65.056343, 18.362804 ], [ -65.056303, 18.362777 ], [ -65.056153, 18.362678 ], [ -65.056043, 18.362512 ], [ -65.055951, 18.362451 ], [ -65.055928, 18.362446 ], [ -65.05591, 18.362418 ], [ -65.055864, 18.362385 ], [ -65.055853, 18.36234 ], [ -65.055795, 18.362225 ], [ -65.055674, 18.362121 ], [ -65.055582, 18.362098 ], [ -65.055558, 18.362077 ], [ -65.05553, 18.361994 ], [ -65.055466, 18.361895 ], [ -65.055322, 18.361911 ], [ -65.055317, 18.361908 ], [ -65.05444, 18.361433 ], [ -65.054278, 18.361345 ], [ -65.054249, 18.361311 ], [ -65.054226, 18.361306 ], [ -65.054157, 18.361218 ], [ -65.05414, 18.36118 ], [ -65.054134, 18.361114 ], [ -65.054117, 18.36108 ], [ -65.054117, 18.361059 ], [ -65.054088, 18.361003 ], [ -65.054059, 18.36097 ], [ -65.053984, 18.360943 ], [ -65.053874, 18.360954 ], [ -65.053765, 18.36103 ], [ -65.053736, 18.361037 ], [ -65.053626, 18.361036 ], [ -65.053598, 18.361003 ], [ -65.053575, 18.360992 ], [ -65.053546, 18.360954 ], [ -65.053488, 18.360678 ], [ -65.053436, 18.360585 ], [ -65.053379, 18.360502 ], [ -65.053368, 18.360491 ], [ -65.053361, 18.360485 ], [ -65.053309, 18.36048 ], [ -65.053206, 18.360513 ], [ -65.053062, 18.360463 ], [ -65.052963, 18.360398 ], [ -65.052906, 18.360337 ], [ -65.052929, 18.360293 ], [ -65.052923, 18.360259 ], [ -65.052969, 18.360161 ], [ -65.052992, 18.360099 ], [ -65.053001, 18.359976 ], [ -65.053009, 18.359875 ], [ -65.052992, 18.359803 ], [ -65.052952, 18.359742 ], [ -65.052937, 18.359731 ], [ -65.052871, 18.359726 ], [ -65.052756, 18.359786 ], [ -65.052716, 18.35978 ], [ -65.052663, 18.359753 ], [ -65.052606, 18.359643 ], [ -65.052577, 18.359626 ], [ -65.05256, 18.359638 ], [ -65.052537, 18.359638 ], [ -65.05249, 18.359698 ], [ -65.052467, 18.359709 ], [ -65.052267, 18.359557 ], [ -65.052265, 18.359555 ], [ -65.052144, 18.359423 ], [ -65.052133, 18.359318 ], [ -65.052179, 18.359126 ], [ -65.052156, 18.359086 ], [ -65.052087, 18.359037 ], [ -65.046164, 18.356531 ], [ -65.046135, 18.35652 ], [ -65.046071, 18.356565 ], [ -65.046048, 18.356565 ], [ -65.045922, 18.356487 ], [ -65.045893, 18.356455 ], [ -65.0458, 18.356405 ], [ -65.045749, 18.356366 ], [ -65.045697, 18.356344 ], [ -65.045628, 18.356328 ], [ -65.045604, 18.356306 ], [ -65.045547, 18.356301 ], [ -65.045489, 18.356311 ], [ -65.045443, 18.356342 ], [ -65.045426, 18.356355 ], [ -65.045374, 18.356377 ], [ -65.045316, 18.356421 ], [ -65.045282, 18.356427 ], [ -65.045235, 18.356416 ], [ -65.045201, 18.356399 ], [ -65.045108, 18.356405 ], [ -65.045068, 18.356399 ], [ -65.044993, 18.356366 ], [ -65.044947, 18.356339 ], [ -65.044866, 18.35625 ], [ -65.044768, 18.356091 ], [ -65.044751, 18.356042 ], [ -65.044762, 18.35597 ], [ -65.044751, 18.355942 ], [ -65.044751, 18.35586 ], [ -65.04478, 18.355744 ], [ -65.04474, 18.355684 ], [ -65.041974, 18.352487 ], [ -65.04192, 18.352405 ], [ -65.041879, 18.352323 ], [ -65.041852, 18.352282 ], [ -65.041811, 18.352276 ], [ -65.041811, 18.352357 ], [ -65.041804, 18.352446 ], [ -65.041715, 18.352453 ], [ -65.041702, 18.352494 ], [ -65.041654, 18.352528 ], [ -65.041538, 18.352521 ], [ -65.041476, 18.352566 ], [ -65.041436, 18.352596 ], [ -65.041306, 18.352582 ], [ -65.041231, 18.352555 ], [ -65.041129, 18.352521 ], [ -65.041075, 18.352603 ], [ -65.04102, 18.352691 ], [ -65.040782, 18.352651 ], [ -65.040516, 18.352453 ], [ -65.040312, 18.35227 ], [ -65.040236, 18.352097 ], [ -65.040237, 18.351992 ], [ -65.040193, 18.351939 ], [ -65.040232, 18.35191 ], [ -65.04026, 18.351872 ], [ -65.040272, 18.351796 ], [ -65.04039, 18.351733 ], [ -65.0405, 18.35169 ], [ -65.0406, 18.351628 ], [ -65.040601, 18.351628 ], [ -65.040754, 18.351537 ], [ -65.040821, 18.351513 ], [ -65.040888, 18.35147 ], [ -65.040883, 18.351422 ], [ -65.040835, 18.351374 ], [ -65.040687, 18.351388 ], [ -65.040538, 18.351407 ], [ -65.040418, 18.351479 ], [ -65.040323, 18.35147 ], [ -65.040256, 18.351518 ], [ -65.040155, 18.351513 ], [ -65.040175, 18.351437 ], [ -65.040133, 18.351428 ], [ -65.040126, 18.35135 ], [ -65.040107, 18.351278 ], [ -65.040066, 18.351249 ], [ -65.040054, 18.351223 ], [ -65.040054, 18.351158 ], [ -65.039915, 18.351125 ], [ -65.039937, 18.351046 ], [ -65.039971, 18.351024 ], [ -65.040009, 18.350989 ], [ -65.040059, 18.350967 ], [ -65.040039, 18.350953 ], [ -65.039987, 18.350895 ], [ -65.039998, 18.350872 ], [ -65.039941, 18.350814 ], [ -65.039773, 18.350824 ], [ -65.039634, 18.350927 ], [ -65.039562, 18.35096 ], [ -65.039425, 18.35096 ], [ -65.039318, 18.350882 ], [ -65.039226, 18.350827 ], [ -65.039174, 18.350735 ], [ -65.039154, 18.350666 ], [ -65.039086, 18.350593 ], [ -65.039046, 18.350544 ], [ -65.039037, 18.350483 ], [ -65.039021, 18.3504 ], [ -65.038885, 18.350299 ], [ -65.038901, 18.350245 ], [ -65.038853, 18.35017 ], [ -65.038662, 18.350033 ], [ -65.03856, 18.349965 ], [ -65.038451, 18.34987 ], [ -65.038328, 18.349836 ], [ -65.038239, 18.349761 ], [ -65.038226, 18.349686 ], [ -65.03828, 18.349597 ], [ -65.038158, 18.349481 ], [ -65.038042, 18.349447 ], [ -65.037953, 18.34942 ], [ -65.037919, 18.349352 ], [ -65.037919, 18.349297 ], [ -65.037851, 18.34927 ], [ -65.037769, 18.34927 ], [ -65.037681, 18.34927 ], [ -65.037598, 18.349341 ], [ -65.037449, 18.349202 ], [ -65.037469, 18.3491 ], [ -65.037503, 18.348956 ], [ -65.037422, 18.348841 ], [ -65.037401, 18.348684 ], [ -65.037278, 18.348561 ], [ -65.037129, 18.348541 ], [ -65.037129, 18.348452 ], [ -65.03721, 18.348357 ], [ -65.036985, 18.34835 ], [ -65.036631, 18.348377 ], [ -65.036464, 18.348497 ], [ -65.03629, 18.348452 ], [ -65.036249, 18.348289 ], [ -65.036101, 18.348152 ], [ -65.036031, 18.348204 ], [ -65.036005, 18.348267 ], [ -65.035946, 18.348289 ], [ -65.035868, 18.348222 ], [ -65.035827, 18.34816 ], [ -65.035761, 18.348097 ], [ -65.035676, 18.348056 ], [ -65.035631, 18.348012 ], [ -65.035609, 18.347927 ], [ -65.035605, 18.347864 ], [ -65.035602, 18.347823 ], [ -65.035533, 18.347722 ], [ -65.035398, 18.347642 ], [ -65.035312, 18.347507 ], [ -65.035191, 18.347424 ], [ -65.035175, 18.347373 ], [ -65.035136, 18.347335 ], [ -65.035062, 18.347332 ], [ -65.035021, 18.347354 ], [ -65.034962, 18.34738 ], [ -65.034896, 18.347357 ], [ -65.034862, 18.347258 ], [ -65.034785, 18.347121 ], [ -65.034722, 18.347043 ], [ -65.034696, 18.346966 ], [ -65.034647, 18.346859 ], [ -65.034589, 18.346803 ], [ -65.034548, 18.346799 ], [ -65.034515, 18.346799 ], [ -65.034448, 18.346795 ], [ -65.034404, 18.346773 ], [ -65.034374, 18.346744 ], [ -65.034349, 18.346699 ], [ -65.034367, 18.346648 ], [ -65.034371, 18.346625 ], [ -65.034371, 18.346607 ], [ -65.034354, 18.346574 ], [ -65.034252, 18.346529 ], [ -65.034188, 18.346533 ], [ -65.034093, 18.346529 ], [ -65.034029, 18.346493 ], [ -65.033994, 18.346422 ], [ -65.033898, 18.346341 ], [ -65.033809, 18.346289 ], [ -65.029308, 18.342906 ], [ -65.02914, 18.342763 ], [ -65.029024, 18.342707 ], [ -65.028985, 18.342668 ], [ -65.028963, 18.342602 ], [ -65.028913, 18.342579 ], [ -65.028874, 18.342552 ], [ -65.028807, 18.342535 ], [ -65.028757, 18.342474 ], [ -65.028746, 18.342357 ], [ -65.028696, 18.34229 ], [ -65.028668, 18.342235 ], [ -65.028607, 18.342168 ], [ -65.028513, 18.34219 ], [ -65.028451, 18.342196 ], [ -65.028379, 18.342129 ], [ -65.028307, 18.342113 ], [ -65.028262, 18.342057 ], [ -65.028212, 18.342018 ], [ -65.02809, 18.342001 ], [ -65.028018, 18.341974 ], [ -65.02799, 18.341907 ], [ -65.027924, 18.341896 ], [ -65.02784, 18.341918 ], [ -65.027729, 18.341907 ], [ -65.027618, 18.341846 ], [ -65.027518, 18.341751 ], [ -65.027451, 18.341712 ], [ -65.027346, 18.34169 ], [ -65.027273, 18.34164 ], [ -65.027162, 18.341601 ], [ -65.027068, 18.341535 ], [ -65.027068, 18.341457 ], [ -65.02709, 18.341379 ], [ -65.027023, 18.341329 ], [ -65.026851, 18.341168 ], [ -65.02674, 18.341123 ], [ -65.026629, 18.341101 ], [ -65.026523, 18.341123 ], [ -65.026473, 18.341146 ], [ -65.026407, 18.341151 ], [ -65.026318, 18.341151 ], [ -65.026212, 18.34114 ], [ -65.026123, 18.341157 ], [ -65.026051, 18.341162 ], [ -65.025945, 18.341162 ], [ -65.025851, 18.341212 ], [ -65.025806, 18.341229 ], [ -65.025723, 18.341257 ], [ -65.025651, 18.341251 ], [ -65.025573, 18.341201 ], [ -65.025445, 18.341185 ], [ -65.025284, 18.341168 ], [ -65.025145, 18.341168 ], [ -65.025106, 18.341207 ], [ -65.025028, 18.341251 ], [ -65.024984, 18.341304 ], [ -65.024891, 18.341303 ], [ -65.024776, 18.341418 ], [ -65.024718, 18.34144 ], [ -65.024678, 18.341446 ], [ -65.024643, 18.341418 ], [ -65.02458, 18.341391 ], [ -65.024545, 18.341363 ], [ -65.024268, 18.34133 ], [ -65.024194, 18.341297 ], [ -65.023986, 18.341253 ], [ -65.023853, 18.341203 ], [ -65.023748, 18.341182 ], [ -65.023628, 18.341159 ], [ -65.023519, 18.341154 ], [ -65.023467, 18.341159 ], [ -65.023334, 18.341197 ], [ -65.023259, 18.341204 ], [ -65.023173, 18.341231 ], [ -65.023029, 18.341264 ], [ -65.022734, 18.341292 ], [ -65.022486, 18.341341 ], [ -65.022435, 18.341363 ], [ -65.022388, 18.341369 ], [ -65.011437, 18.342187 ], [ -65.011379, 18.342236 ], [ -65.011301, 18.342226 ], [ -65.011276, 18.342255 ], [ -65.011227, 18.342265 ], [ -65.011174, 18.342324 ], [ -65.011105, 18.342358 ], [ -65.011105, 18.342392 ], [ -65.011066, 18.342417 ], [ -65.011042, 18.342378 ], [ -65.010993, 18.342402 ], [ -65.010954, 18.342441 ], [ -65.010905, 18.342466 ], [ -65.010866, 18.342456 ], [ -65.010807, 18.342471 ], [ -65.010748, 18.342544 ], [ -65.010724, 18.342578 ], [ -65.010695, 18.342573 ], [ -65.010659, 18.342583 ], [ -65.010572, 18.34271 ], [ -65.010555, 18.342853 ], [ -65.010509, 18.342997 ], [ -65.010457, 18.343112 ], [ -65.010437, 18.343211 ], [ -65.010422, 18.343288 ], [ -65.010399, 18.343349 ], [ -65.010364, 18.343388 ], [ -65.010318, 18.34342 ], [ -65.01029, 18.343431 ], [ -65.010226, 18.343475 ], [ -65.010203, 18.343502 ], [ -65.010076, 18.343552 ], [ -65.01003, 18.343597 ], [ -65.010007, 18.343641 ], [ -65.009944, 18.343706 ], [ -65.009822, 18.34396 ], [ -65.009707, 18.344026 ], [ -65.009666, 18.344026 ], [ -65.009482, 18.344081 ], [ -65.009234, 18.344197 ], [ -65.009147, 18.344214 ], [ -65.00913, 18.344218 ], [ -65.00902, 18.344218 ], [ -65.008911, 18.344202 ], [ -65.008692, 18.344213 ], [ -65.008605, 18.344224 ], [ -65.008334, 18.34429 ], [ -65.008104, 18.34434 ], [ -65.007492, 18.344469 ], [ -65.005657, 18.344859 ], [ -65.005046, 18.34499 ], [ -65.004989, 18.344999 ], [ -65.004931, 18.345044 ], [ -65.004897, 18.345132 ], [ -65.004885, 18.345308 ], [ -65.004828, 18.345429 ], [ -65.004764, 18.345495 ], [ -65.004707, 18.345534 ], [ -65.004572, 18.345601 ], [ -65.004447, 18.345644 ], [ -65.00428, 18.345676 ], [ -65.004222, 18.345677 ], [ -65.00417, 18.345649 ], [ -65.004136, 18.345652 ], [ -65.004118, 18.345655 ], [ -65.00398, 18.345731 ], [ -65.003899, 18.345798 ], [ -65.003541, 18.346001 ], [ -65.003334, 18.346062 ], [ -65.003022, 18.346128 ], [ -65.00298, 18.34614 ], [ -65.00285, 18.346177 ], [ -65.002826, 18.346161 ], [ -65.002757, 18.346167 ], [ -65.002659, 18.346161 ], [ -65.002538, 18.346139 ], [ -65.002423, 18.346127 ], [ -65.002334, 18.346112 ], [ -65.002137, 18.346115 ], [ -65.002093, 18.34609 ], [ -65.002134, 18.346045 ], [ -65.00219, 18.346018 ], [ -65.002207, 18.345932 ], [ -65.002159, 18.345898 ], [ -65.002109, 18.345887 ], [ -65.002134, 18.345851 ], [ -65.002131, 18.345801 ], [ -65.002059, 18.345773 ], [ -65.001934, 18.345818 ], [ -65.001879, 18.34592 ], [ -65.001845, 18.345976 ], [ -65.001773, 18.345984 ], [ -65.001801, 18.345915 ], [ -65.001798, 18.345862 ], [ -65.001709, 18.345826 ], [ -65.001609, 18.345876 ], [ -65.001581, 18.345976 ], [ -65.001537, 18.34604 ], [ -65.001512, 18.346107 ], [ -65.001484, 18.346015 ], [ -65.001429, 18.346009 ], [ -65.001396, 18.346061 ], [ -65.001363, 18.346094 ], [ -65.001311, 18.346146 ], [ -64.999592, 18.346039 ], [ -64.985996, 18.345194 ], [ -64.984176, 18.337584 ], [ -64.9842, 18.33744 ], [ -64.984169, 18.336803 ], [ -64.984176, 18.336697 ], [ -64.984138, 18.33625 ], [ -64.984029, 18.335914 ], [ -64.983902, 18.335649 ], [ -64.983635, 18.335428 ], [ -64.983372, 18.33533 ], [ -64.98317, 18.335283 ], [ -64.983009, 18.335253 ], [ -64.982837, 18.335276 ], [ -64.981748, 18.335299 ], [ -64.981099, 18.335324 ], [ -64.980611, 18.33533 ], [ -64.980384, 18.335332 ], [ -64.980128, 18.335355 ], [ -64.979938, 18.335352 ], [ -64.979575, 18.335359 ], [ -64.979126, 18.335386 ], [ -64.977539, 18.335436 ], [ -64.976504, 18.335466 ], [ -64.975769, 18.335487 ], [ -64.975075, 18.335484 ], [ -64.97477, 18.3353 ], [ -64.974626, 18.335125 ], [ -64.974578, 18.335029 ], [ -64.974514, 18.33489 ], [ -64.974472, 18.334766 ], [ -64.974426, 18.334679 ], [ -64.974417, 18.334637 ], [ -64.974403, 18.334574 ], [ -64.974369, 18.334517 ], [ -64.974324, 18.334443 ], [ -64.974291, 18.334358 ], [ -64.974266, 18.334288 ], [ -64.974276, 18.33424 ], [ -64.974266, 18.334158 ], [ -64.974261, 18.334137 ], [ -64.974243, 18.334061 ], [ -64.974219, 18.334008 ], [ -64.974175, 18.333963 ], [ -64.974167, 18.333952 ], [ -64.974078, 18.333867 ], [ -64.974045, 18.33383 ], [ -64.974023, 18.333743 ], [ -64.973993, 18.333692 ], [ -64.973951, 18.333644 ], [ -64.973928, 18.33352 ], [ -64.973892, 18.333456 ], [ -64.973849, 18.333351 ], [ -64.973787, 18.333242 ], [ -64.973732, 18.333153 ], [ -64.973692, 18.333041 ], [ -64.973656, 18.332943 ], [ -64.973564, 18.332762 ], [ -64.973564, 18.332731 ], [ -64.973564, 18.332668 ], [ -64.973539, 18.332632 ], [ -64.973516, 18.332599 ], [ -64.973465, 18.332521 ], [ -64.973389, 18.332336 ], [ -64.973404, 18.332199 ], [ -64.973383, 18.332091 ], [ -64.973366, 18.331999 ], [ -64.97329, 18.331797 ], [ -64.973176, 18.331496 ], [ -64.973129, 18.331373 ], [ -64.973099, 18.331285 ], [ -64.973069, 18.331237 ], [ -64.973038, 18.331188 ], [ -64.972989, 18.331067 ], [ -64.972961, 18.331011 ], [ -64.972914, 18.330987 ], [ -64.972862, 18.330961 ], [ -64.972865, 18.330936 ], [ -64.97287, 18.330881 ], [ -64.972866, 18.33086 ], [ -64.972868, 18.330838 ], [ -64.97283, 18.330814 ], [ -64.972794, 18.33078 ], [ -64.97279, 18.330761 ], [ -64.972778, 18.330698 ], [ -64.972782, 18.33066 ], [ -64.972786, 18.330612 ], [ -64.972771, 18.33054 ], [ -64.972667, 18.330366 ], [ -64.972658, 18.330294 ], [ -64.972626, 18.330213 ], [ -64.972606, 18.330161 ], [ -64.972606, 18.330079 ], [ -64.972635, 18.329974 ], [ -64.972648, 18.329908 ], [ -64.972623, 18.329869 ], [ -64.972612, 18.329842 ], [ -64.972602, 18.329777 ], [ -64.972612, 18.329704 ], [ -64.972606, 18.329627 ], [ -64.972554, 18.329572 ], [ -64.972479, 18.329507 ], [ -64.972416, 18.329468 ], [ -64.972369, 18.32939 ], [ -64.972387, 18.329335 ], [ -64.972346, 18.329313 ], [ -64.972289, 18.329263 ], [ -64.97225, 18.329194 ], [ -64.972219, 18.329181 ], [ -64.97218, 18.32921 ], [ -64.97215, 18.329214 ], [ -64.972121, 18.329181 ], [ -64.972116, 18.329137 ], [ -64.972088, 18.329094 ], [ -64.972052, 18.329082 ], [ -64.964774, 18.3248 ], [ -64.964705, 18.324757 ], [ -64.96463, 18.324736 ], [ -64.964515, 18.324744 ], [ -64.964307, 18.324772 ], [ -64.964211, 18.324773 ], [ -64.964, 18.324731 ], [ -64.963984, 18.324728 ], [ -64.963888, 18.32474 ], [ -64.963828, 18.324728 ], [ -64.96373, 18.324629 ], [ -64.96369, 18.324513 ], [ -64.963638, 18.324414 ], [ -64.963586, 18.324359 ], [ -64.963524, 18.324349 ], [ -64.963507, 18.324349 ], [ -64.960882, 18.321148 ], [ -64.958792, 18.318549 ], [ -64.960034, 18.315451 ], [ -64.960096, 18.315393 ], [ -64.960205, 18.315195 ], [ -64.960247, 18.315135 ], [ -64.960252, 18.315128 ], [ -64.960304, 18.315069 ], [ -64.960367, 18.315024 ], [ -64.960517, 18.314947 ], [ -64.960609, 18.314876 ], [ -64.960644, 18.314837 ], [ -64.960672, 18.314738 ], [ -64.960649, 18.314677 ], [ -64.960558, 18.314507 ], [ -64.960551, 18.314397 ], [ -64.960586, 18.314297 ], [ -64.96066, 18.314217 ], [ -64.960741, 18.314132 ], [ -64.960829, 18.314079 ], [ -64.960938, 18.314 ], [ -64.960967, 18.313975 ], [ -64.960989, 18.313956 ], [ -64.961034, 18.313922 ], [ -64.961055, 18.313907 ], [ -64.961122, 18.31384 ], [ -64.961174, 18.313774 ], [ -64.961194, 18.313727 ], [ -64.96122, 18.313669 ], [ -64.96122, 18.313647 ], [ -64.961222, 18.313564 ], [ -64.961224, 18.3135 ], [ -64.961226, 18.3134 ], [ -64.961209, 18.313317 ], [ -64.961208, 18.313311 ], [ -64.96117, 18.313245 ], [ -64.960388, 18.309793 ], [ -64.9604, 18.309787 ], [ -64.960412, 18.309759 ], [ -64.960412, 18.309706 ], [ -64.960365, 18.309567 ], [ -64.960291, 18.309457 ], [ -64.960181, 18.309341 ], [ -64.960135, 18.309302 ], [ -64.960089, 18.309275 ], [ -64.960043, 18.30922 ], [ -64.960022, 18.309177 ], [ -64.959991, 18.309159 ], [ -64.959923, 18.309156 ], [ -64.959876, 18.309093 ], [ -64.959895, 18.309039 ], [ -64.959904, 18.308966 ], [ -64.959968, 18.308878 ], [ -64.959985, 18.308829 ], [ -64.959985, 18.308752 ], [ -64.960002, 18.308625 ], [ -64.960083, 18.308526 ], [ -64.960118, 18.308443 ], [ -64.960141, 18.308361 ], [ -64.960215, 18.308148 ], [ -64.96024, 18.308102 ], [ -64.960239, 18.308038 ], [ -64.960221, 18.30792 ], [ -64.960233, 18.307818 ], [ -64.960258, 18.307711 ], [ -64.960238, 18.307668 ], [ -64.960177, 18.307624 ], [ -64.960135, 18.307623 ], [ -64.960083, 18.307642 ], [ -64.960031, 18.307645 ], [ -64.959981, 18.307619 ], [ -64.959945, 18.307612 ], [ -64.959866, 18.307614 ], [ -64.959806, 18.30763 ], [ -64.959702, 18.307617 ], [ -64.959523, 18.307581 ], [ -64.959328, 18.307513 ], [ -64.959168, 18.307447 ], [ -64.959067, 18.307393 ], [ -64.958987, 18.307336 ], [ -64.958895, 18.307289 ], [ -64.958797, 18.307276 ], [ -64.958689, 18.307298 ], [ -64.958595, 18.307295 ], [ -64.958538, 18.307281 ], [ -64.958497, 18.307243 ], [ -64.958434, 18.307193 ], [ -64.958347, 18.3071 ], [ -64.958226, 18.306979 ], [ -64.958193, 18.306901 ], [ -64.958197, 18.306863 ], [ -64.958194, 18.306797 ], [ -64.958157, 18.306747 ], [ -64.958106, 18.306692 ], [ -64.95807, 18.306637 ], [ -64.958036, 18.306576 ], [ -64.958007, 18.306539 ], [ -64.957828, 18.306406 ], [ -64.957778, 18.306306 ], [ -64.957701, 18.306246 ], [ -64.957628, 18.306282 ], [ -64.957598, 18.306301 ], [ -64.957528, 18.306268 ] ], [ [ -64.942657, 18.317796 ], [ -64.942708, 18.317765 ], [ -64.942737, 18.317667 ], [ -64.942733, 18.317546 ], [ -64.94271, 18.317487 ], [ -64.942562, 18.317417 ], [ -64.942476, 18.317483 ], [ -64.94244, 18.317563 ], [ -64.94246, 18.317632 ], [ -64.942547, 18.317663 ], [ -64.94255, 18.317726 ], [ -64.942553, 18.317771 ], [ -64.942657, 18.317796 ] ], [ [ -64.876018, 18.360558 ], [ -64.87579, 18.360775 ], [ -64.875891, 18.360889 ], [ -64.876058, 18.360943 ], [ -64.876251, 18.360872 ], [ -64.876433, 18.360791 ], [ -64.876463, 18.360779 ], [ -64.876453, 18.36067 ], [ -64.876348, 18.360521 ], [ -64.876181, 18.360525 ], [ -64.876125, 18.360527 ], [ -64.876018, 18.360558 ] ], [ [ -65.049331, 18.344582 ], [ -65.049325, 18.344566 ], [ -65.049313, 18.344515 ], [ -65.049261, 18.344482 ], [ -65.049238, 18.344471 ], [ -65.049148, 18.344479 ], [ -65.049128, 18.344482 ], [ -65.049111, 18.34451 ], [ -65.049113, 18.344528 ], [ -65.049157, 18.34457 ], [ -65.049203, 18.344592 ], [ -65.049301, 18.344615 ], [ -65.049331, 18.344582 ] ], [ [ -65.009498, 18.30181 ], [ -65.009476, 18.301767 ], [ -65.009404, 18.301767 ], [ -65.009359, 18.301764 ], [ -65.009348, 18.301754 ], [ -65.009351, 18.301725 ], [ -65.009335, 18.301693 ], [ -65.009298, 18.301685 ], [ -65.009279, 18.301701 ], [ -65.009253, 18.301732 ], [ -65.009247, 18.301783 ], [ -65.009253, 18.301823 ], [ -65.009269, 18.301855 ], [ -65.009314, 18.301866 ], [ -65.009332, 18.301895 ], [ -65.009378, 18.301908 ], [ -65.009426, 18.301882 ], [ -65.009498, 18.30186 ], [ -65.009498, 18.30181 ] ], [ [ -64.908212, 18.309197 ], [ -64.908209, 18.30918 ], [ -64.908204, 18.309155 ], [ -64.908148, 18.309141 ], [ -64.908076, 18.30915 ], [ -64.908062, 18.309197 ], [ -64.908012, 18.309238 ], [ -64.90799, 18.309252 ], [ -64.907907, 18.309277 ], [ -64.907874, 18.309277 ], [ -64.90784, 18.309299 ], [ -64.907829, 18.309338 ], [ -64.907843, 18.309374 ], [ -64.907874, 18.309394 ], [ -64.907904, 18.309407 ], [ -64.907918, 18.309407 ], [ -64.907971, 18.309407 ], [ -64.908018, 18.309407 ], [ -64.908037, 18.309394 ], [ -64.908043, 18.30938 ], [ -64.908045, 18.309358 ], [ -64.908054, 18.309352 ], [ -64.908059, 18.309335 ], [ -64.908048, 18.309324 ], [ -64.908068, 18.309321 ], [ -64.908098, 18.309321 ], [ -64.908123, 18.309326 ], [ -64.90814, 18.309291 ], [ -64.90814, 18.309269 ], [ -64.908156, 18.309247 ], [ -64.908179, 18.309227 ], [ -64.908187, 18.309213 ], [ -64.908212, 18.309197 ] ], [ [ -65.071807, 18.341299 ], [ -65.071784, 18.341251 ], [ -65.071792, 18.341192 ], [ -65.071739, 18.341157 ], [ -65.071609, 18.341182 ], [ -65.071578, 18.341199 ], [ -65.071548, 18.34122 ], [ -65.071533, 18.341245 ], [ -65.07154, 18.34127 ], [ -65.071617, 18.341339 ], [ -65.071617, 18.341409 ], [ -65.071624, 18.341501 ], [ -65.071655, 18.341495 ], [ -65.071693, 18.341447 ], [ -65.071723, 18.341434 ], [ -65.071739, 18.341392 ], [ -65.071754, 18.341354 ], [ -65.0718, 18.341335 ], [ -65.071807, 18.341299 ] ], [ [ -64.953712, 18.377301 ], [ -64.953712, 18.377246 ], [ -64.953712, 18.37714 ], [ -64.953705, 18.377052 ], [ -64.953701, 18.376942 ], [ -64.953687, 18.376861 ], [ -64.953625, 18.376821 ], [ -64.953562, 18.376869 ], [ -64.953559, 18.376931 ], [ -64.953551, 18.37703 ], [ -64.953548, 18.377099 ], [ -64.953614, 18.377172 ], [ -64.953654, 18.377238 ], [ -64.953679, 18.37729 ], [ -64.953712, 18.377301 ] ], [ [ -64.90287, 18.409927 ], [ -64.902745, 18.40981 ], [ -64.902586, 18.409814 ], [ -64.902519, 18.409819 ], [ -64.90251, 18.409983 ], [ -64.902763, 18.410138 ], [ -64.902854, 18.410076 ], [ -64.90287, 18.409927 ] ], [ [ -65.07122, 18.340938 ], [ -65.071205, 18.340906 ], [ -65.071159, 18.340894 ], [ -65.071136, 18.340902 ], [ -65.071128, 18.340944 ], [ -65.071044, 18.341037 ], [ -65.071014, 18.341075 ], [ -65.07096, 18.341083 ], [ -65.070915, 18.341102 ], [ -65.070899, 18.341136 ], [ -65.070877, 18.341203 ], [ -65.070831, 18.341199 ], [ -65.070693, 18.341201 ], [ -65.070663, 18.341215 ], [ -65.07064, 18.341245 ], [ -65.070655, 18.341411 ], [ -65.070732, 18.341457 ], [ -65.070793, 18.341438 ], [ -65.070808, 18.341381 ], [ -65.070854, 18.341335 ], [ -65.070899, 18.341272 ], [ -65.070938, 18.341241 ], [ -65.070976, 18.341201 ], [ -65.071022, 18.341167 ], [ -65.071105, 18.341089 ], [ -65.071189, 18.341012 ], [ -65.071212, 18.340978 ], [ -65.07122, 18.340938 ] ], [ [ -64.901349, 18.384624 ], [ -64.901163, 18.384464 ], [ -64.901003, 18.384446 ], [ -64.900844, 18.384243 ], [ -64.900693, 18.384296 ], [ -64.900977, 18.384677 ], [ -64.901083, 18.385032 ], [ -64.901331, 18.384854 ], [ -64.901349, 18.384624 ] ], [ [ -65.064382, 18.377932 ], [ -65.064273, 18.377769 ], [ -65.064002, 18.377751 ], [ -65.063815, 18.377896 ], [ -65.063822, 18.378164 ], [ -65.064127, 18.378222 ], [ -65.064322, 18.378118 ], [ -65.064382, 18.377932 ] ], [ [ -64.908392, 18.309787 ], [ -64.908389, 18.309765 ], [ -64.908384, 18.309743 ], [ -64.9084, 18.309712 ], [ -64.908403, 18.309682 ], [ -64.908398, 18.309671 ], [ -64.908367, 18.309679 ], [ -64.908345, 18.309657 ], [ -64.908317, 18.309643 ], [ -64.908287, 18.309638 ], [ -64.908259, 18.309613 ], [ -64.908237, 18.309596 ], [ -64.90819, 18.309593 ], [ -64.908148, 18.309579 ], [ -64.908126, 18.30956 ], [ -64.908106, 18.309554 ], [ -64.908076, 18.309549 ], [ -64.908065, 18.309552 ], [ -64.908057, 18.309599 ], [ -64.90804, 18.309626 ], [ -64.907987, 18.309651 ], [ -64.907968, 18.30966 ], [ -64.907962, 18.30971 ], [ -64.907962, 18.309735 ], [ -64.907962, 18.30976 ], [ -64.90796, 18.309798 ], [ -64.907965, 18.309823 ], [ -64.907951, 18.309859 ], [ -64.907923, 18.309884 ], [ -64.907904, 18.309907 ], [ -64.907879, 18.309943 ], [ -64.907868, 18.309951 ], [ -64.907838, 18.309968 ], [ -64.907835, 18.309987 ], [ -64.907846, 18.310026 ], [ -64.907871, 18.310048 ], [ -64.90789, 18.310101 ], [ -64.907887, 18.310159 ], [ -64.907887, 18.310198 ], [ -64.907899, 18.310225 ], [ -64.907921, 18.310242 ], [ -64.907954, 18.31025 ], [ -64.907979, 18.310248 ], [ -64.908004, 18.310256 ], [ -64.908032, 18.310273 ], [ -64.908057, 18.310281 ], [ -64.908082, 18.310267 ], [ -64.908087, 18.310256 ], [ -64.908101, 18.310248 ], [ -64.90812, 18.310231 ], [ -64.908162, 18.310223 ], [ -64.908184, 18.310212 ], [ -64.908215, 18.310195 ], [ -64.908217, 18.310181 ], [ -64.908245, 18.310148 ], [ -64.908267, 18.310142 ], [ -64.908267, 18.310117 ], [ -64.908287, 18.310114 ], [ -64.908287, 18.310092 ], [ -64.90832, 18.310092 ], [ -64.908328, 18.310056 ], [ -64.90832, 18.310029 ], [ -64.908295, 18.310009 ], [ -64.908309, 18.309995 ], [ -64.908326, 18.309968 ], [ -64.908317, 18.309934 ], [ -64.908331, 18.309909 ], [ -64.908339, 18.309873 ], [ -64.908337, 18.30984 ], [ -64.908353, 18.309812 ], [ -64.908364, 18.309809 ], [ -64.908384, 18.309809 ], [ -64.908392, 18.309787 ] ], [ [ -64.845247, 18.33693 ], [ -64.845156, 18.336919 ], [ -64.845078, 18.336919 ], [ -64.84497, 18.336972 ], [ -64.844901, 18.337016 ], [ -64.844795, 18.337085 ], [ -64.844701, 18.337116 ], [ -64.84464, 18.337152 ], [ -64.844524, 18.337188 ], [ -64.844466, 18.337224 ], [ -64.84441, 18.337235 ], [ -64.844405, 18.337274 ], [ -64.844357, 18.337293 ], [ -64.844324, 18.337304 ], [ -64.844282, 18.337332 ], [ -64.844282, 18.337377 ], [ -64.844277, 18.337399 ], [ -64.844258, 18.337462 ], [ -64.844235, 18.337496 ], [ -64.844174, 18.337496 ], [ -64.844111, 18.337496 ], [ -64.844072, 18.337537 ], [ -64.844086, 18.337601 ], [ -64.844141, 18.337618 ], [ -64.844155, 18.337607 ], [ -64.844158, 18.337626 ], [ -64.844194, 18.337659 ], [ -64.84423, 18.337665 ], [ -64.844271, 18.337662 ], [ -64.844307, 18.337657 ], [ -64.844316, 18.33764 ], [ -64.844341, 18.337651 ], [ -64.844385, 18.337645 ], [ -64.84441, 18.33764 ], [ -64.844449, 18.337637 ], [ -64.844468, 18.337623 ], [ -64.844468, 18.337612 ], [ -64.84449, 18.337607 ], [ -64.844493, 18.33759 ], [ -64.844493, 18.337554 ], [ -64.844513, 18.337548 ], [ -64.844546, 18.337548 ], [ -64.844585, 18.337521 ], [ -64.844604, 18.337554 ], [ -64.844643, 18.33756 ], [ -64.844679, 18.33756 ], [ -64.844721, 18.33756 ], [ -64.844723, 18.337529 ], [ -64.844693, 18.337512 ], [ -64.844685, 18.337482 ], [ -64.844704, 18.337468 ], [ -64.844723, 18.337438 ], [ -64.844732, 18.337399 ], [ -64.844768, 18.337407 ], [ -64.844812, 18.337421 ], [ -64.844812, 18.337388 ], [ -64.844807, 18.337343 ], [ -64.844818, 18.33734 ], [ -64.844851, 18.337368 ], [ -64.844879, 18.337399 ], [ -64.844906, 18.337418 ], [ -64.844926, 18.337415 ], [ -64.844931, 18.337399 ], [ -64.844948, 18.337399 ], [ -64.844931, 18.337379 ], [ -64.84492, 18.337349 ], [ -64.844917, 18.337335 ], [ -64.844948, 18.337338 ], [ -64.844976, 18.337349 ], [ -64.844995, 18.337338 ], [ -64.845017, 18.33734 ], [ -64.845048, 18.337332 ], [ -64.845051, 18.337296 ], [ -64.845039, 18.337277 ], [ -64.845059, 18.337268 ], [ -64.845103, 18.337266 ], [ -64.845103, 18.337243 ], [ -64.845095, 18.337196 ], [ -64.845095, 18.337169 ], [ -64.845112, 18.337141 ], [ -64.84512, 18.337146 ], [ -64.845142, 18.337171 ], [ -64.845156, 18.337144 ], [ -64.845164, 18.337116 ], [ -64.845175, 18.337102 ], [ -64.845198, 18.337091 ], [ -64.845203, 18.337074 ], [ -64.845211, 18.337041 ], [ -64.845236, 18.337024 ], [ -64.845245, 18.336999 ], [ -64.845264, 18.336972 ], [ -64.845247, 18.33693 ] ], [ [ -65.10131, 18.283287 ], [ -65.101249, 18.28321 ], [ -65.101234, 18.283163 ], [ -65.101188, 18.283105 ], [ -65.101089, 18.283048 ], [ -65.100975, 18.283004 ], [ -65.100708, 18.282869 ], [ -65.100639, 18.282802 ], [ -65.100593, 18.282796 ], [ -65.100486, 18.282823 ], [ -65.100318, 18.282812 ], [ -65.100257, 18.282844 ], [ -65.100204, 18.282909 ], [ -65.100204, 18.282964 ], [ -65.100212, 18.283037 ], [ -65.100265, 18.283151 ], [ -65.100318, 18.283185 ], [ -65.100448, 18.28321 ], [ -65.100524, 18.283237 ], [ -65.100512, 18.283269 ], [ -65.100379, 18.283363 ], [ -65.100357, 18.283397 ], [ -65.100364, 18.283416 ], [ -65.100379, 18.283435 ], [ -65.10044, 18.283468 ], [ -65.100608, 18.283519 ], [ -65.100883, 18.283552 ], [ -65.100975, 18.283548 ], [ -65.100997, 18.283546 ], [ -65.101043, 18.283504 ], [ -65.101104, 18.283493 ], [ -65.101127, 18.283498 ], [ -65.10115, 18.283519 ], [ -65.101203, 18.283531 ], [ -65.101234, 18.283504 ], [ -65.101242, 18.283468 ], [ -65.101219, 18.283397 ], [ -65.101211, 18.283363 ], [ -65.101249, 18.283359 ], [ -65.10128, 18.283365 ], [ -65.10131, 18.283369 ], [ -65.101325, 18.283357 ], [ -65.101333, 18.283327 ], [ -65.10131, 18.283287 ] ], [ [ -64.905367, 18.412804 ], [ -64.905273, 18.412782 ], [ -64.905103, 18.41276 ], [ -64.905044, 18.412671 ], [ -64.904944, 18.412658 ], [ -64.904742, 18.412596 ], [ -64.904625, 18.412709 ], [ -64.904483, 18.412733 ], [ -64.904412, 18.412795 ], [ -64.904334, 18.412839 ], [ -64.90427, 18.412995 ], [ -64.904208, 18.412933 ], [ -64.904088, 18.412895 ], [ -64.904075, 18.412948 ], [ -64.904057, 18.41317 ], [ -64.904142, 18.413314 ], [ -64.904463, 18.413347 ], [ -64.904625, 18.413283 ], [ -64.904722, 18.413365 ], [ -64.9048, 18.413365 ], [ -64.904986, 18.413343 ], [ -64.905006, 18.413249 ], [ -64.904984, 18.413152 ], [ -64.904964, 18.413021 ], [ -64.905066, 18.412899 ], [ -64.905199, 18.412941 ], [ -64.905307, 18.41289 ], [ -64.905364, 18.412853 ], [ -64.905367, 18.412804 ] ], [ [ -64.991412, 18.385292 ], [ -64.991307, 18.385172 ], [ -64.991154, 18.385168 ], [ -64.991015, 18.385158 ], [ -64.990881, 18.385168 ], [ -64.990633, 18.385201 ], [ -64.990475, 18.385058 ], [ -64.99025, 18.385015 ], [ -64.989993, 18.384884 ], [ -64.989853, 18.384914 ], [ -64.989762, 18.385086 ], [ -64.989958, 18.385235 ], [ -64.990044, 18.385268 ], [ -64.990082, 18.385345 ], [ -64.990293, 18.385397 ], [ -64.990379, 18.385498 ], [ -64.990508, 18.385694 ], [ -64.990647, 18.385799 ], [ -64.990881, 18.385813 ], [ -64.991045, 18.385698 ], [ -64.991364, 18.385474 ], [ -64.991412, 18.385292 ] ], [ [ -65.050202, 18.409279 ], [ -65.050163, 18.409231 ], [ -65.050148, 18.409225 ], [ -65.050071, 18.40921 ], [ -65.049995, 18.409195 ], [ -65.049873, 18.409084 ], [ -65.049835, 18.409019 ], [ -65.049783, 18.408953 ], [ -65.049738, 18.408897 ], [ -65.049706, 18.408855 ], [ -65.049706, 18.408833 ], [ -65.049706, 18.40881 ], [ -65.049716, 18.40879 ], [ -65.049745, 18.408777 ], [ -65.049759, 18.408714 ], [ -65.049767, 18.408596 ], [ -65.049784, 18.408558 ], [ -65.049805, 18.40851 ], [ -65.049812, 18.408455 ], [ -65.049833, 18.408388 ], [ -65.04985, 18.408334 ], [ -65.049867, 18.40828 ], [ -65.049881, 18.408236 ], [ -65.049885, 18.408212 ], [ -65.04991, 18.408177 ], [ -65.049904, 18.408104 ], [ -65.049926, 18.408064 ], [ -65.04995, 18.40802 ], [ -65.04996, 18.407973 ], [ -65.049929, 18.40792 ], [ -65.049916, 18.407859 ], [ -65.049914, 18.407797 ], [ -65.049918, 18.407753 ], [ -65.049926, 18.40771 ], [ -65.049939, 18.407671 ], [ -65.04995, 18.407615 ], [ -65.04995, 18.407585 ], [ -65.049942, 18.407562 ], [ -65.04988, 18.407504 ], [ -65.04982, 18.407463 ], [ -65.049792, 18.407449 ], [ -65.04976, 18.407431 ], [ -65.049705, 18.407411 ], [ -65.049636, 18.40739 ], [ -65.049606, 18.407381 ], [ -65.049477, 18.407433 ], [ -65.049444, 18.407705 ], [ -65.049328, 18.407872 ], [ -65.049294, 18.407948 ], [ -65.049294, 18.40802 ], [ -65.049271, 18.408033 ], [ -65.049229, 18.408027 ], [ -65.049205, 18.408047 ], [ -65.049179, 18.408115 ], [ -65.049196, 18.408149 ], [ -65.049214, 18.408206 ], [ -65.049232, 18.40826 ], [ -65.049232, 18.408308 ], [ -65.049202, 18.408344 ], [ -65.049154, 18.408378 ], [ -65.049128, 18.40843 ], [ -65.0491, 18.408471 ], [ -65.049122, 18.408578 ], [ -65.049144, 18.408661 ], [ -65.049154, 18.408683 ], [ -65.049114, 18.40878 ], [ -65.049103, 18.408813 ], [ -65.049111, 18.408882 ], [ -65.049118, 18.408976 ], [ -65.049126, 18.409067 ], [ -65.049149, 18.409094 ], [ -65.049174, 18.409098 ], [ -65.049255, 18.4091 ], [ -65.049324, 18.4091 ], [ -65.04934, 18.409049 ], [ -65.049347, 18.409033 ], [ -65.049415, 18.40904 ], [ -65.049485, 18.409074 ], [ -65.04953, 18.409101 ], [ -65.049545, 18.409079 ], [ -65.049545, 18.409058 ], [ -65.049545, 18.409036 ], [ -65.049588, 18.409029 ], [ -65.049637, 18.409002 ], [ -65.049725, 18.409087 ], [ -65.049758, 18.409181 ], [ -65.049812, 18.409286 ], [ -65.049889, 18.409386 ], [ -65.049997, 18.4094 ], [ -65.050069, 18.409381 ], [ -65.050121, 18.40935 ], [ -65.050147, 18.409328 ], [ -65.050171, 18.409307 ], [ -65.050202, 18.409279 ] ], [ [ -65.058242, 18.351374 ], [ -65.058237, 18.351329 ], [ -65.058242, 18.351275 ], [ -65.058184, 18.35124 ], [ -65.058179, 18.351141 ], [ -65.058193, 18.351106 ], [ -65.058246, 18.351048 ], [ -65.058259, 18.350967 ], [ -65.058282, 18.350936 ], [ -65.058295, 18.350905 ], [ -65.058264, 18.350842 ], [ -65.058255, 18.350816 ], [ -65.058277, 18.350762 ], [ -65.058255, 18.350713 ], [ -65.058237, 18.350673 ], [ -65.058237, 18.350592 ], [ -65.058224, 18.350561 ], [ -65.058224, 18.350534 ], [ -65.058224, 18.350512 ], [ -65.058206, 18.350463 ], [ -65.058133, 18.350425 ], [ -65.058112, 18.350365 ], [ -65.058123, 18.35032 ], [ -65.058126, 18.350284 ], [ -65.058049, 18.350268 ], [ -65.05801, 18.35024 ], [ -65.058072, 18.350226 ], [ -65.058076, 18.350159 ], [ -65.057992, 18.350132 ], [ -65.057889, 18.35015 ], [ -65.057782, 18.350146 ], [ -65.05779, 18.350044 ], [ -65.057827, 18.349972 ], [ -65.057819, 18.349899 ], [ -65.057791, 18.349842 ], [ -65.057688, 18.349807 ], [ -65.05767, 18.349789 ], [ -65.057603, 18.349784 ], [ -65.057626, 18.349735 ], [ -65.057693, 18.349731 ], [ -65.057773, 18.349717 ], [ -65.057768, 18.349619 ], [ -65.057764, 18.349548 ], [ -65.057715, 18.349494 ], [ -65.057657, 18.349494 ], [ -65.057631, 18.349495 ], [ -65.057602, 18.349431 ], [ -65.057496, 18.349401 ], [ -65.057478, 18.349463 ], [ -65.057474, 18.349499 ], [ -65.057443, 18.349503 ], [ -65.05742, 18.34949 ], [ -65.057318, 18.349476 ], [ -65.057246, 18.349476 ], [ -65.057233, 18.34949 ], [ -65.057193, 18.349512 ], [ -65.057211, 18.349552 ], [ -65.057184, 18.349601 ], [ -65.057139, 18.349606 ], [ -65.057135, 18.349637 ], [ -65.05713, 18.349695 ], [ -65.057086, 18.349717 ], [ -65.057081, 18.349744 ], [ -65.05708, 18.349839 ], [ -65.057077, 18.349892 ], [ -65.057157, 18.349887 ], [ -65.057202, 18.349856 ], [ -65.057225, 18.349851 ], [ -65.057206, 18.349892 ], [ -65.057206, 18.349941 ], [ -65.057184, 18.349994 ], [ -65.057148, 18.350057 ], [ -65.057144, 18.350106 ], [ -65.057183, 18.35014 ], [ -65.057211, 18.350124 ], [ -65.057251, 18.350097 ], [ -65.057282, 18.350075 ], [ -65.0573, 18.350048 ], [ -65.057313, 18.350075 ], [ -65.057309, 18.350124 ], [ -65.0573, 18.350191 ], [ -65.0573, 18.3502 ], [ -65.057251, 18.350288 ], [ -65.057237, 18.350414 ], [ -65.057242, 18.350454 ], [ -65.057282, 18.350494 ], [ -65.057327, 18.350485 ], [ -65.057353, 18.350445 ], [ -65.057394, 18.350458 ], [ -65.05738, 18.350521 ], [ -65.057371, 18.350583 ], [ -65.057402, 18.350606 ], [ -65.05746, 18.35061 ], [ -65.057504, 18.350587 ], [ -65.057524, 18.35056 ], [ -65.057581, 18.350552 ], [ -65.057639, 18.350552 ], [ -65.057652, 18.350566 ], [ -65.057657, 18.350659 ], [ -65.057639, 18.350699 ], [ -65.057635, 18.350784 ], [ -65.057626, 18.350833 ], [ -65.057599, 18.3509 ], [ -65.057554, 18.350958 ], [ -65.057534, 18.351034 ], [ -65.05754, 18.351116 ], [ -65.057588, 18.351179 ], [ -65.057657, 18.351199 ], [ -65.057719, 18.351177 ], [ -65.057742, 18.35111 ], [ -65.057768, 18.351146 ], [ -65.057764, 18.351226 ], [ -65.057737, 18.351271 ], [ -65.057719, 18.351325 ], [ -65.057749, 18.351353 ], [ -65.057802, 18.351403 ], [ -65.0578, 18.35144 ], [ -65.0578, 18.351521 ], [ -65.057818, 18.351588 ], [ -65.05792, 18.351619 ], [ -65.058027, 18.351623 ], [ -65.05809, 18.351615 ], [ -65.058166, 18.35157 ], [ -65.058179, 18.351467 ], [ -65.058219, 18.351427 ], [ -65.058242, 18.351374 ] ], [ [ -64.909712, 18.414943 ], [ -64.909678, 18.414852 ], [ -64.909673, 18.414755 ], [ -64.90961, 18.414704 ], [ -64.909616, 18.414596 ], [ -64.909604, 18.414401 ], [ -64.909285, 18.414219 ], [ -64.908875, 18.414128 ], [ -64.908619, 18.413849 ], [ -64.908237, 18.413718 ], [ -64.908152, 18.413986 ], [ -64.908169, 18.414043 ], [ -64.908135, 18.414123 ], [ -64.908021, 18.414185 ], [ -64.907941, 18.414248 ], [ -64.907947, 18.414356 ], [ -64.907884, 18.41443 ], [ -64.907833, 18.414544 ], [ -64.907867, 18.414658 ], [ -64.907867, 18.414772 ], [ -64.907873, 18.414806 ], [ -64.907924, 18.414897 ], [ -64.907947, 18.414983 ], [ -64.907969, 18.415011 ], [ -64.908067, 18.414956 ], [ -64.908066, 18.41488 ], [ -64.908112, 18.414886 ], [ -64.908106, 18.414943 ], [ -64.908106, 18.415 ], [ -64.908162, 18.414995 ], [ -64.90822, 18.414977 ], [ -64.908243, 18.41492 ], [ -64.908317, 18.414886 ], [ -64.90834, 18.414972 ], [ -64.908459, 18.415034 ], [ -64.908493, 18.414943 ], [ -64.908511, 18.414846 ], [ -64.908522, 18.414749 ], [ -64.908573, 18.414812 ], [ -64.90867, 18.414892 ], [ -64.90867, 18.414778 ], [ -64.90867, 18.414687 ], [ -64.90875, 18.414641 ], [ -64.908818, 18.414664 ], [ -64.908864, 18.414772 ], [ -64.908835, 18.414829 ], [ -64.908818, 18.414909 ], [ -64.908841, 18.414972 ], [ -64.908887, 18.41508 ], [ -64.908961, 18.414983 ], [ -64.909, 18.414943 ], [ -64.908995, 18.415023 ], [ -64.908926, 18.415177 ], [ -64.908909, 18.415268 ], [ -64.909103, 18.415382 ], [ -64.909177, 18.415319 ], [ -64.909162, 18.415266 ], [ -64.909154, 18.415188 ], [ -64.909131, 18.41512 ], [ -64.909131, 18.415074 ], [ -64.909143, 18.415 ], [ -64.909188, 18.415 ], [ -64.909295, 18.415005 ], [ -64.909354, 18.414994 ], [ -64.909456, 18.414977 ], [ -64.909502, 18.414943 ], [ -64.909536, 18.414972 ], [ -64.909599, 18.415017 ], [ -64.909684, 18.415091 ], [ -64.909712, 18.415034 ], [ -64.909712, 18.414943 ] ], [ [ -64.990409, 18.316877 ], [ -64.990374, 18.316777 ], [ -64.990279, 18.316686 ], [ -64.990197, 18.316622 ], [ -64.990154, 18.316526 ], [ -64.990184, 18.316423 ], [ -64.990192, 18.316332 ], [ -64.990097, 18.316202 ], [ -64.990011, 18.316128 ], [ -64.989929, 18.316046 ], [ -64.989907, 18.315959 ], [ -64.989911, 18.315864 ], [ -64.989881, 18.315778 ], [ -64.98982, 18.31573 ], [ -64.989764, 18.315648 ], [ -64.989764, 18.3156 ], [ -64.989704, 18.315566 ], [ -64.989682, 18.315605 ], [ -64.989647, 18.315587 ], [ -64.989617, 18.315579 ], [ -64.989587, 18.315613 ], [ -64.989578, 18.315717 ], [ -64.989543, 18.315739 ], [ -64.989513, 18.315721 ], [ -64.989466, 18.315726 ], [ -64.989461, 18.315709 ], [ -64.989431, 18.3157 ], [ -64.989357, 18.315717 ], [ -64.988652, 18.31769 ], [ -64.988626, 18.317777 ], [ -64.988682, 18.317816 ], [ -64.988803, 18.317872 ], [ -64.988816, 18.317889 ], [ -64.988925, 18.317876 ], [ -64.990214, 18.317266 ], [ -64.990236, 18.317236 ], [ -64.990244, 18.317197 ], [ -64.99024, 18.317158 ], [ -64.990283, 18.317102 ], [ -64.99034, 18.317063 ], [ -64.990392, 18.316981 ], [ -64.990409, 18.316877 ] ], [ [ -64.853713, 18.232212 ], [ -64.853698, 18.232173 ], [ -64.85366, 18.232143 ], [ -64.853683, 18.232074 ], [ -64.853637, 18.232051 ], [ -64.853591, 18.232074 ], [ -64.853553, 18.232109 ], [ -64.853485, 18.232112 ], [ -64.853358, 18.232094 ], [ -64.853324, 18.232044 ], [ -64.853332, 18.232023 ], [ -64.853462, 18.232019 ], [ -64.8535, 18.231981 ], [ -64.853515, 18.231922 ], [ -64.853507, 18.231868 ], [ -64.853446, 18.231832 ], [ -64.85334, 18.231826 ], [ -64.853302, 18.231805 ], [ -64.853286, 18.231685 ], [ -64.853195, 18.23167 ], [ -64.853134, 18.231637 ], [ -64.853126, 18.231613 ], [ -64.853195, 18.231544 ], [ -64.853157, 18.231534 ], [ -64.853149, 18.231496 ], [ -64.853164, 18.231397 ], [ -64.853065, 18.231357 ], [ -64.853034, 18.231332 ], [ -64.853042, 18.231279 ], [ -64.853019, 18.231227 ], [ -64.852989, 18.231191 ], [ -64.852951, 18.23117 ], [ -64.852935, 18.231128 ], [ -64.852951, 18.231092 ], [ -64.852897, 18.230936 ], [ -64.852851, 18.230892 ], [ -64.85279, 18.230817 ], [ -64.852767, 18.230798 ], [ -64.852706, 18.230792 ], [ -64.852607, 18.230737 ], [ -64.852592, 18.23071 ], [ -64.852554, 18.230714 ], [ -64.852485, 18.230653 ], [ -64.852462, 18.230617 ], [ -64.852401, 18.230588 ], [ -64.852294, 18.230567 ], [ -64.852073, 18.230567 ], [ -64.852035, 18.23056 ], [ -64.852005, 18.230495 ], [ -64.851974, 18.230476 ], [ -64.851959, 18.230449 ], [ -64.851936, 18.230434 ], [ -64.851913, 18.23043 ], [ -64.851898, 18.230445 ], [ -64.851898, 18.23048 ], [ -64.85189, 18.230495 ], [ -64.851852, 18.230501 ], [ -64.851776, 18.230461 ], [ -64.851753, 18.230466 ], [ -64.851661, 18.230436 ], [ -64.851615, 18.230434 ], [ -64.851585, 18.230409 ], [ -64.851554, 18.230419 ], [ -64.851524, 18.23044 ], [ -64.85147, 18.230403 ], [ -64.851425, 18.23039 ], [ -64.851387, 18.230352 ], [ -64.851272, 18.230304 ], [ -64.851181, 18.230339 ], [ -64.851158, 18.230325 ], [ -64.851135, 18.230348 ], [ -64.851158, 18.230363 ], [ -64.851127, 18.230377 ], [ -64.851074, 18.230417 ], [ -64.851066, 18.230491 ], [ -64.851066, 18.23055 ], [ -64.850944, 18.230455 ], [ -64.850883, 18.230451 ], [ -64.850845, 18.230466 ], [ -64.850837, 18.230512 ], [ -64.850883, 18.230573 ], [ -64.850898, 18.2306 ], [ -64.850929, 18.230627 ], [ -64.850883, 18.230648 ], [ -64.850822, 18.23069 ], [ -64.850822, 18.230747 ], [ -64.850847, 18.230833 ], [ -64.850822, 18.23088 ], [ -64.850891, 18.230989 ], [ -64.850967, 18.231037 ], [ -64.850975, 18.23105 ], [ -64.850967, 18.231067 ], [ -64.850944, 18.231109 ], [ -64.850936, 18.231218 ], [ -64.850975, 18.231369 ], [ -64.851005, 18.23143 ], [ -64.851043, 18.231496 ], [ -64.851058, 18.231512 ], [ -64.851112, 18.231517 ], [ -64.851119, 18.231595 ], [ -64.851127, 18.231639 ], [ -64.851234, 18.231744 ], [ -64.85128, 18.23184 ], [ -64.851333, 18.231889 ], [ -64.851318, 18.231925 ], [ -64.851325, 18.231948 ], [ -64.851371, 18.231992 ], [ -64.851394, 18.232051 ], [ -64.851432, 18.232101 ], [ -64.851486, 18.232196 ], [ -64.851577, 18.232288 ], [ -64.851669, 18.232229 ], [ -64.851715, 18.232229 ], [ -64.851745, 18.23221 ], [ -64.851776, 18.23221 ], [ -64.851821, 18.232233 ], [ -64.851814, 18.232273 ], [ -64.851791, 18.232294 ], [ -64.851821, 18.232345 ], [ -64.85189, 18.232414 ], [ -64.851882, 18.23244 ], [ -64.85186, 18.232454 ], [ -64.851882, 18.232513 ], [ -64.851898, 18.232538 ], [ -64.851921, 18.232549 ], [ -64.852012, 18.232505 ], [ -64.852073, 18.232534 ], [ -64.852157, 18.232604 ], [ -64.85234, 18.232694 ], [ -64.852523, 18.232707 ], [ -64.852569, 18.232692 ], [ -64.852584, 18.232673 ], [ -64.852775, 18.232666 ], [ -64.852851, 18.232604 ], [ -64.85289, 18.23258 ], [ -64.852958, 18.232593 ], [ -64.853012, 18.232574 ], [ -64.853096, 18.23245 ], [ -64.853164, 18.232404 ], [ -64.853202, 18.232398 ], [ -64.853225, 18.232355 ], [ -64.853248, 18.232355 ], [ -64.853332, 18.232387 ], [ -64.853363, 18.232372 ], [ -64.853416, 18.232326 ], [ -64.853446, 18.232315 ], [ -64.8535, 18.232337 ], [ -64.853523, 18.232316 ], [ -64.853538, 18.232259 ], [ -64.853607, 18.232309 ], [ -64.853675, 18.232337 ], [ -64.853713, 18.232326 ], [ -64.853713, 18.232212 ] ], [ [ -65.062508, 18.404273 ], [ -65.062508, 18.404245 ], [ -65.062496, 18.404224 ], [ -65.062363, 18.404036 ], [ -65.062344, 18.404026 ], [ -65.062262, 18.40398 ], [ -65.062179, 18.403855 ], [ -65.062085, 18.403732 ], [ -65.062018, 18.403689 ], [ -65.061944, 18.403633 ], [ -65.061779, 18.403524 ], [ -65.061746, 18.403477 ], [ -65.061707, 18.40344 ], [ -65.061562, 18.40344 ], [ -65.06147, 18.403403 ], [ -65.061429, 18.403279 ], [ -65.061378, 18.403225 ], [ -65.061272, 18.403242 ], [ -65.061222, 18.403304 ], [ -65.061172, 18.403313 ], [ -65.061119, 18.403248 ], [ -65.061014, 18.40319 ], [ -65.060932, 18.403162 ], [ -65.06077, 18.403034 ], [ -65.060625, 18.403084 ], [ -65.060471, 18.402962 ], [ -65.060333, 18.402945 ], [ -65.06021, 18.402925 ], [ -65.060005, 18.403023 ], [ -65.060017, 18.403063 ], [ -65.060079, 18.403094 ], [ -65.060089, 18.403137 ], [ -65.060023, 18.40325 ], [ -65.059962, 18.403197 ], [ -65.059759, 18.403238 ], [ -65.059759, 18.403321 ], [ -65.059699, 18.403348 ], [ -65.059657, 18.403366 ], [ -65.059511, 18.40343 ], [ -65.059371, 18.403491 ], [ -65.059151, 18.403517 ], [ -65.059019, 18.403548 ], [ -65.058921, 18.403576 ], [ -65.058835, 18.403501 ], [ -65.058818, 18.403435 ], [ -65.058756, 18.40338 ], [ -65.058674, 18.403298 ], [ -65.058639, 18.403226 ], [ -65.058633, 18.403187 ], [ -65.058593, 18.403149 ], [ -65.058587, 18.403127 ], [ -65.058553, 18.403105 ], [ -65.058533, 18.403109 ], [ -65.058524, 18.403126 ], [ -65.058506, 18.403132 ], [ -65.058489, 18.403148 ], [ -65.058472, 18.403176 ], [ -65.058471, 18.403176 ], [ -65.058426, 18.403165 ], [ -65.058333, 18.403121 ], [ -65.058253, 18.403055 ], [ -65.058143, 18.403044 ], [ -65.058051, 18.403082 ], [ -65.057941, 18.403204 ], [ -65.057923, 18.403198 ], [ -65.05786, 18.403204 ], [ -65.057826, 18.403254 ], [ -65.057826, 18.403275 ], [ -65.057791, 18.403275 ], [ -65.057768, 18.403292 ], [ -65.057739, 18.403275 ], [ -65.057687, 18.403281 ], [ -65.057595, 18.403253 ], [ -65.057537, 18.403259 ], [ -65.057503, 18.403248 ], [ -65.057484, 18.403249 ], [ -65.057457, 18.40327 ], [ -65.057434, 18.403297 ], [ -65.057451, 18.403353 ], [ -65.057485, 18.403385 ], [ -65.057503, 18.403423 ], [ -65.057508, 18.403452 ], [ -65.057497, 18.403496 ], [ -65.057514, 18.403567 ], [ -65.057572, 18.403589 ], [ -65.057635, 18.4036 ], [ -65.057716, 18.403595 ], [ -65.057791, 18.403605 ], [ -65.057889, 18.403634 ], [ -65.057958, 18.403671 ], [ -65.057977, 18.403672 ], [ -65.058011, 18.403704 ], [ -65.057993, 18.403777 ], [ -65.057963, 18.403811 ], [ -65.057912, 18.403869 ], [ -65.057895, 18.403903 ], [ -65.057878, 18.403914 ], [ -65.057889, 18.403958 ], [ -65.05793, 18.404012 ], [ -65.057981, 18.404063 ], [ -65.058068, 18.404107 ], [ -65.058172, 18.404096 ], [ -65.058235, 18.404123 ], [ -65.058276, 18.404123 ], [ -65.058305, 18.404118 ], [ -65.058328, 18.404124 ], [ -65.058357, 18.404146 ], [ -65.058361, 18.404286 ], [ -65.058251, 18.404384 ], [ -65.058189, 18.404534 ], [ -65.058205, 18.404613 ], [ -65.058189, 18.404657 ], [ -65.058189, 18.404707 ], [ -65.058271, 18.404916 ], [ -65.058296, 18.404943 ], [ -65.05835, 18.404966 ], [ -65.058388, 18.404966 ], [ -65.058426, 18.404934 ], [ -65.058479, 18.404949 ], [ -65.058495, 18.404943 ], [ -65.058502, 18.404959 ], [ -65.058502, 18.405047 ], [ -65.058479, 18.40506 ], [ -65.058483, 18.405117 ], [ -65.058487, 18.405148 ], [ -65.058578, 18.40513 ], [ -65.05859, 18.405135 ], [ -65.058624, 18.405125 ], [ -65.05864, 18.40513 ], [ -65.058701, 18.405125 ], [ -65.058747, 18.405184 ], [ -65.058769, 18.405285 ], [ -65.05883, 18.405445 ], [ -65.058868, 18.405638 ], [ -65.058891, 18.405691 ], [ -65.058907, 18.406067 ], [ -65.05896, 18.406105 ], [ -65.05899, 18.406113 ], [ -65.059082, 18.406195 ], [ -65.059196, 18.406195 ], [ -65.059204, 18.406212 ], [ -65.059242, 18.406233 ], [ -65.059265, 18.406233 ], [ -65.059292, 18.406219 ], [ -65.059321, 18.406206 ], [ -65.059341, 18.406143 ], [ -65.059331, 18.406115 ], [ -65.059349, 18.406017 ], [ -65.059319, 18.405912 ], [ -65.059326, 18.405886 ], [ -65.059319, 18.405842 ], [ -65.059334, 18.405748 ], [ -65.059356, 18.405668 ], [ -65.05938, 18.405632 ], [ -65.059418, 18.405542 ], [ -65.059433, 18.405533 ], [ -65.059441, 18.40551 ], [ -65.059495, 18.405484 ], [ -65.059525, 18.405445 ], [ -65.059528, 18.405354 ], [ -65.059502, 18.405317 ], [ -65.059512, 18.40526 ], [ -65.059532, 18.405273 ], [ -65.05957, 18.405279 ], [ -65.059647, 18.405258 ], [ -65.059677, 18.405182 ], [ -65.059708, 18.405165 ], [ -65.05983, 18.405149 ], [ -65.059898, 18.405121 ], [ -65.059898, 18.405066 ], [ -65.059929, 18.405022 ], [ -65.059967, 18.405005 ], [ -65.059998, 18.405005 ], [ -65.060025, 18.404984 ], [ -65.060036, 18.404964 ], [ -65.060032, 18.404947 ], [ -65.060055, 18.404911 ], [ -65.060094, 18.404888 ], [ -65.060188, 18.404976 ], [ -65.060212, 18.404991 ], [ -65.060272, 18.405039 ], [ -65.060297, 18.405042 ], [ -65.060379, 18.405025 ], [ -65.060425, 18.404938 ], [ -65.060486, 18.404932 ], [ -65.060523, 18.40501 ], [ -65.060547, 18.40506 ], [ -65.060569, 18.405089 ], [ -65.060631, 18.40517 ], [ -65.060707, 18.405212 ], [ -65.060753, 18.40523 ], [ -65.060829, 18.405224 ], [ -65.060905, 18.405195 ], [ -65.060921, 18.40517 ], [ -65.060921, 18.405115 ], [ -65.060921, 18.405081 ], [ -65.060934, 18.405065 ], [ -65.060966, 18.405048 ], [ -65.060996, 18.405061 ], [ -65.061043, 18.405081 ], [ -65.061058, 18.405098 ], [ -65.061096, 18.405226 ], [ -65.061119, 18.405247 ], [ -65.061136, 18.405275 ], [ -65.061172, 18.405283 ], [ -65.061188, 18.405279 ], [ -65.061195, 18.405247 ], [ -65.061203, 18.405066 ], [ -65.061249, 18.404999 ], [ -65.061272, 18.404979 ], [ -65.061287, 18.404966 ], [ -65.061394, 18.40473 ], [ -65.061447, 18.404701 ], [ -65.061523, 18.404634 ], [ -65.061536, 18.404607 ], [ -65.061554, 18.404543 ], [ -65.061567, 18.404517 ], [ -65.061612, 18.404516 ], [ -65.06163, 18.404514 ], [ -65.061676, 18.404526 ], [ -65.061722, 18.404497 ], [ -65.061844, 18.404453 ], [ -65.061882, 18.4044 ], [ -65.06189, 18.404348 ], [ -65.061928, 18.404266 ], [ -65.061981, 18.404282 ], [ -65.062012, 18.404316 ], [ -65.062027, 18.404354 ], [ -65.062012, 18.4044 ], [ -65.062059, 18.404491 ], [ -65.062116, 18.404558 ], [ -65.062147, 18.404598 ], [ -65.06218, 18.404608 ], [ -65.062228, 18.404607 ], [ -65.062248, 18.404613 ], [ -65.062271, 18.404596 ], [ -65.06229, 18.404528 ], [ -65.062317, 18.404503 ], [ -65.062332, 18.404482 ], [ -65.062332, 18.404448 ], [ -65.062398, 18.404416 ], [ -65.062474, 18.404372 ], [ -65.062507, 18.404302 ], [ -65.062508, 18.404273 ] ], [ [ -65.064315, 18.379849 ], [ -65.064257, 18.37981 ], [ -65.064165, 18.379766 ], [ -65.064142, 18.379744 ], [ -65.064131, 18.379722 ], [ -65.064136, 18.3797 ], [ -65.064177, 18.379618 ], [ -65.064188, 18.379568 ], [ -65.064184, 18.379559 ], [ -65.064165, 18.379502 ], [ -65.064113, 18.379447 ], [ -65.064009, 18.379403 ], [ -65.063958, 18.379396 ], [ -65.063888, 18.379309 ], [ -65.063865, 18.379249 ], [ -65.063871, 18.379231 ], [ -65.063864, 18.379214 ], [ -65.063819, 18.379154 ], [ -65.06379, 18.379133 ], [ -65.063785, 18.37911 ], [ -65.063802, 18.379039 ], [ -65.06371, 18.379027 ], [ -65.063658, 18.379034 ], [ -65.063525, 18.378984 ], [ -65.06349, 18.378946 ], [ -65.063461, 18.378896 ], [ -65.063467, 18.378835 ], [ -65.063444, 18.378781 ], [ -65.063369, 18.378709 ], [ -65.063323, 18.378615 ], [ -65.063352, 18.378609 ], [ -65.063346, 18.378571 ], [ -65.063306, 18.378466 ], [ -65.063317, 18.378417 ], [ -65.063306, 18.378373 ], [ -65.063288, 18.378351 ], [ -65.063156, 18.378318 ], [ -65.063058, 18.378312 ], [ -65.062948, 18.37828 ], [ -65.062879, 18.378291 ], [ -65.062804, 18.378284 ], [ -65.062729, 18.378302 ], [ -65.062406, 18.378236 ], [ -65.06236, 18.378213 ], [ -65.062227, 18.378191 ], [ -65.062043, 18.378092 ], [ -65.061921, 18.378087 ], [ -65.061754, 18.378146 ], [ -65.061702, 18.378131 ], [ -65.061512, 18.378087 ], [ -65.061466, 18.378108 ], [ -65.061425, 18.378114 ], [ -65.061397, 18.378147 ], [ -65.061345, 18.378141 ], [ -65.061304, 18.378147 ], [ -65.061218, 18.378131 ], [ -65.061143, 18.378197 ], [ -65.06112, 18.378241 ], [ -65.061097, 18.378317 ], [ -65.061062, 18.378357 ], [ -65.06097, 18.378395 ], [ -65.06086, 18.378421 ], [ -65.060722, 18.378483 ], [ -65.060676, 18.378538 ], [ -65.060601, 18.37856 ], [ -65.060566, 18.378582 ], [ -65.060543, 18.378615 ], [ -65.060526, 18.378676 ], [ -65.060531, 18.37872 ], [ -65.060549, 18.378748 ], [ -65.060554, 18.378766 ], [ -65.060595, 18.378781 ], [ -65.060624, 18.378812 ], [ -65.060658, 18.378907 ], [ -65.060658, 18.378979 ], [ -65.06063, 18.379028 ], [ -65.060595, 18.379044 ], [ -65.06056, 18.379084 ], [ -65.060468, 18.379342 ], [ -65.060422, 18.379409 ], [ -65.060422, 18.379436 ], [ -65.060404, 18.379453 ], [ -65.060456, 18.37953 ], [ -65.060456, 18.379552 ], [ -65.060428, 18.379629 ], [ -65.060428, 18.379662 ], [ -65.060445, 18.379695 ], [ -65.060479, 18.379722 ], [ -65.060485, 18.37974 ], [ -65.060456, 18.37981 ], [ -65.060351, 18.379944 ], [ -65.060301, 18.380009 ], [ -65.060266, 18.380064 ], [ -65.06018, 18.380256 ], [ -65.060174, 18.380312 ], [ -65.060151, 18.380344 ], [ -65.06011, 18.380345 ], [ -65.060047, 18.380378 ], [ -65.060013, 18.380438 ], [ -65.060001, 18.380499 ], [ -65.059989, 18.380515 ], [ -65.059903, 18.380565 ], [ -65.059839, 18.38057 ], [ -65.059666, 18.380543 ], [ -65.059614, 18.380543 ], [ -65.05958, 18.380554 ], [ -65.059562, 18.380548 ], [ -65.059545, 18.38056 ], [ -65.059516, 18.380631 ], [ -65.059528, 18.380647 ], [ -65.059488, 18.380686 ], [ -65.059447, 18.380659 ], [ -65.059389, 18.380675 ], [ -65.059337, 18.380741 ], [ -65.059239, 18.380917 ], [ -65.059188, 18.380967 ], [ -65.059188, 18.380995 ], [ -65.059159, 18.381005 ], [ -65.05917, 18.381066 ], [ -65.059263, 18.381093 ], [ -65.059297, 18.38116 ], [ -65.059349, 18.381182 ], [ -65.05936, 18.38121 ], [ -65.059378, 18.381297 ], [ -65.059389, 18.381353 ], [ -65.059407, 18.381374 ], [ -65.059435, 18.38138 ], [ -65.059493, 18.381413 ], [ -65.059505, 18.381435 ], [ -65.059482, 18.381501 ], [ -65.059482, 18.381529 ], [ -65.059499, 18.381567 ], [ -65.059534, 18.38159 ], [ -65.059597, 18.381606 ], [ -65.059776, 18.381572 ], [ -65.059845, 18.3816 ], [ -65.059844, 18.381618 ], [ -65.059787, 18.381677 ], [ -65.059741, 18.381699 ], [ -65.059712, 18.381738 ], [ -65.05973, 18.381787 ], [ -65.059753, 18.381809 ], [ -65.059839, 18.381826 ], [ -65.059897, 18.381821 ], [ -65.060145, 18.381875 ], [ -65.060243, 18.38187 ], [ -65.060404, 18.381798 ], [ -65.060497, 18.381782 ], [ -65.060583, 18.381787 ], [ -65.06063, 18.381782 ], [ -65.060825, 18.381721 ], [ -65.060993, 18.38171 ], [ -65.061206, 18.381683 ], [ -65.061258, 18.381639 ], [ -65.061327, 18.381557 ], [ -65.061368, 18.38149 ], [ -65.061402, 18.381468 ], [ -65.061454, 18.381463 ], [ -65.061501, 18.381473 ], [ -65.061541, 18.381452 ], [ -65.061656, 18.38143 ], [ -65.061708, 18.381435 ], [ -65.061743, 18.381413 ], [ -65.061789, 18.381418 ], [ -65.061846, 18.381408 ], [ -65.061962, 18.381407 ], [ -65.061997, 18.38138 ], [ -65.062014, 18.381341 ], [ -65.062008, 18.381297 ], [ -65.061893, 18.38111 ], [ -65.061904, 18.381077 ], [ -65.061985, 18.381011 ], [ -65.062055, 18.380962 ], [ -65.062123, 18.380939 ], [ -65.062106, 18.380917 ], [ -65.062112, 18.380895 ], [ -65.062175, 18.380862 ], [ -65.062233, 18.380846 ], [ -65.062279, 18.380852 ], [ -65.062297, 18.380846 ], [ -65.062371, 18.380868 ], [ -65.062412, 18.38089 ], [ -65.062498, 18.38089 ], [ -65.062562, 18.380879 ], [ -65.062579, 18.38085 ], [ -65.062614, 18.380851 ], [ -65.062683, 18.380812 ], [ -65.062746, 18.380807 ], [ -65.062896, 18.380835 ], [ -65.063098, 18.38085 ], [ -65.063167, 18.380829 ], [ -65.063231, 18.380824 ], [ -65.063415, 18.380741 ], [ -65.063606, 18.380631 ], [ -65.063721, 18.380592 ], [ -65.06379, 18.380548 ], [ -65.063888, 18.380521 ], [ -65.063934, 18.380492 ], [ -65.063992, 18.380455 ], [ -65.064113, 18.380245 ], [ -65.064096, 18.380205 ], [ -65.064159, 18.380146 ], [ -65.064171, 18.380124 ], [ -65.064206, 18.380108 ], [ -65.064246, 18.380102 ], [ -65.064269, 18.38008 ], [ -65.064321, 18.380003 ], [ -65.064321, 18.379959 ], [ -65.064338, 18.37991 ], [ -65.064315, 18.379849 ] ], [ [ -65.002856, 18.304621 ], [ -65.002839, 18.304451 ], [ -65.002769, 18.304297 ], [ -65.002735, 18.304241 ], [ -65.002522, 18.304038 ], [ -65.00245, 18.303977 ], [ -65.002377, 18.303916 ], [ -65.00236, 18.303878 ], [ -65.002366, 18.303652 ], [ -65.002314, 18.303575 ], [ -65.002257, 18.303552 ], [ -65.002216, 18.303547 ], [ -65.002193, 18.303553 ], [ -65.002147, 18.303592 ], [ -65.00202, 18.303773 ], [ -65.001922, 18.303812 ], [ -65.001864, 18.303817 ], [ -65.001709, 18.303858 ], [ -65.001594, 18.303889 ], [ -65.001472, 18.303949 ], [ -65.001369, 18.303987 ], [ -65.001339, 18.303955 ], [ -65.00133, 18.303924 ], [ -65.001322, 18.303894 ], [ -65.001317, 18.303822 ], [ -65.001294, 18.303779 ], [ -65.001248, 18.303723 ], [ -65.001207, 18.303707 ], [ -65.000939, 18.303669 ], [ -65.0007, 18.303635 ], [ -65.00055, 18.30364 ], [ -65.000521, 18.303673 ], [ -65.000538, 18.303728 ], [ -65.000613, 18.303872 ], [ -65.000665, 18.303938 ], [ -65.000677, 18.303977 ], [ -65.000671, 18.303999 ], [ -65.000637, 18.304004 ], [ -65.000596, 18.303999 ], [ -65.000561, 18.303977 ], [ -65.000486, 18.303949 ], [ -65.000337, 18.303933 ], [ -65.000169, 18.303955 ], [ -65.0001, 18.303971 ], [ -65.00005, 18.304003 ], [ -64.999933, 18.304136 ], [ -64.999864, 18.304274 ], [ -64.99971, 18.304263 ], [ -64.999639, 18.304258 ], [ -64.999593, 18.304262 ], [ -64.99963, 18.304403 ], [ -64.999662, 18.304505 ], [ -64.999592, 18.304615 ], [ -64.999528, 18.304662 ], [ -64.999414, 18.304654 ], [ -64.999315, 18.30456 ], [ -64.99922, 18.304554 ], [ -64.999056, 18.304513 ], [ -64.998969, 18.304379 ], [ -64.998914, 18.304429 ], [ -64.998804, 18.30456 ], [ -64.998654, 18.304647 ], [ -64.998498, 18.304681 ], [ -64.998379, 18.304678 ], [ -64.99833, 18.304783 ], [ -64.998268, 18.304914 ], [ -64.998034, 18.30505 ], [ -64.997952, 18.305083 ], [ -64.999626, 18.308464 ], [ -64.999662, 18.308591 ], [ -64.999667, 18.308611 ], [ -64.999683, 18.308668 ], [ -64.999689, 18.308671 ], [ -64.99977, 18.308712 ], [ -64.999897, 18.308734 ], [ -64.999931, 18.308756 ], [ -65.000001, 18.308761 ], [ -65.000081, 18.308784 ], [ -65.000096, 18.308796 ], [ -65.000127, 18.308801 ], [ -65.00015, 18.308823 ], [ -65.000202, 18.30885 ], [ -65.00026, 18.308955 ], [ -65.00026, 18.308992 ], [ -65.000306, 18.30912 ], [ -65.000309, 18.309153 ], [ -65.000312, 18.309181 ], [ -65.000335, 18.309203 ], [ -65.000508, 18.309263 ], [ -65.000581, 18.309263 ], [ -65.00064, 18.309263 ], [ -65.000755, 18.309241 ], [ -65.000756, 18.309241 ], [ -65.000934, 18.309197 ], [ -65.000969, 18.309148 ], [ -65.000986, 18.309076 ], [ -65.001038, 18.309043 ], [ -65.00105, 18.308993 ], [ -65.001044, 18.308972 ], [ -65.001056, 18.308932 ], [ -65.001079, 18.308917 ], [ -65.001188, 18.308911 ], [ -65.001205, 18.3089 ], [ -65.002773, 18.304833 ], [ -65.002804, 18.304754 ], [ -65.002856, 18.304621 ] ], [ [ -64.910371, 18.411336 ], [ -64.910372, 18.41121 ], [ -64.910377, 18.411192 ], [ -64.910377, 18.411127 ], [ -64.910343, 18.411105 ], [ -64.910297, 18.411056 ], [ -64.91025, 18.410956 ], [ -64.910246, 18.410886 ], [ -64.910209, 18.410725 ], [ -64.910066, 18.410389 ], [ -64.910026, 18.410274 ], [ -64.909933, 18.409938 ], [ -64.909865, 18.409778 ], [ -64.909818, 18.40969 ], [ -64.909731, 18.40958 ], [ -64.909628, 18.409485 ], [ -64.909542, 18.409404 ], [ -64.909432, 18.409311 ], [ -64.909352, 18.409228 ], [ -64.909306, 18.409149 ], [ -64.909264, 18.409039 ], [ -64.909264, 18.408985 ], [ -64.909251, 18.408942 ], [ -64.909195, 18.408748 ], [ -64.909079, 18.408506 ], [ -64.909056, 18.408472 ], [ -64.909034, 18.408411 ], [ -64.909034, 18.408303 ], [ -64.908987, 18.408263 ], [ -64.908975, 18.408197 ], [ -64.908987, 18.408126 ], [ -64.909027, 18.40801 ], [ -64.90901, 18.407911 ], [ -64.909009, 18.40791 ], [ -64.908981, 18.407812 ], [ -64.908907, 18.407729 ], [ -64.908773, 18.407608 ], [ -64.908671, 18.407564 ], [ -64.908619, 18.407531 ], [ -64.908577, 18.407525 ], [ -64.908503, 18.40747 ], [ -64.90844, 18.407444 ], [ -64.908377, 18.407449 ], [ -64.908312, 18.407465 ], [ -64.908226, 18.407459 ], [ -64.90818, 18.407426 ], [ -64.908139, 18.40737 ], [ -64.908046, 18.407332 ], [ -64.907939, 18.407304 ], [ -64.907833, 18.407283 ], [ -64.907765, 18.407265 ], [ -64.907689, 18.407223 ], [ -64.907666, 18.407178 ], [ -64.907643, 18.407145 ], [ -64.907643, 18.40709 ], [ -64.907603, 18.407019 ], [ -64.907546, 18.406992 ], [ -64.907494, 18.40702 ], [ -64.907435, 18.407041 ], [ -64.907383, 18.407024 ], [ -64.907343, 18.406941 ], [ -64.907298, 18.406903 ], [ -64.907298, 18.40687 ], [ -64.907275, 18.406864 ], [ -64.90724, 18.406864 ], [ -64.90721, 18.40687 ], [ -64.907175, 18.406859 ], [ -64.907136, 18.406831 ], [ -64.907073, 18.40676 ], [ -64.906957, 18.406605 ], [ -64.90679, 18.406473 ], [ -64.906722, 18.406445 ], [ -64.906639, 18.40643 ], [ -64.906559, 18.406407 ], [ -64.906403, 18.406396 ], [ -64.90627, 18.406391 ], [ -64.90615, 18.406418 ], [ -64.906051, 18.40639 ], [ -64.90597, 18.406352 ], [ -64.905854, 18.406275 ], [ -64.90579, 18.406215 ], [ -64.905791, 18.406215 ], [ -64.905716, 18.406143 ], [ -64.905602, 18.406081 ], [ -64.905446, 18.405983 ], [ -64.905318, 18.405951 ], [ -64.905146, 18.405928 ], [ -64.904961, 18.40595 ], [ -64.904575, 18.406021 ], [ -64.904574, 18.406021 ], [ -64.904424, 18.406082 ], [ -64.904246, 18.406148 ], [ -64.904084, 18.406241 ], [ -64.903831, 18.406435 ], [ -64.903714, 18.406544 ], [ -64.903622, 18.406654 ], [ -64.903559, 18.406798 ], [ -64.903512, 18.40688 ], [ -64.903484, 18.406974 ], [ -64.903448, 18.407062 ], [ -64.903397, 18.407122 ], [ -64.903346, 18.407161 ], [ -64.903304, 18.407183 ], [ -64.903252, 18.407205 ], [ -64.903196, 18.407243 ], [ -64.903138, 18.407271 ], [ -64.90315, 18.407409 ], [ -64.903127, 18.407513 ], [ -64.90305, 18.407546 ], [ -64.903011, 18.407557 ], [ -64.902924, 18.407645 ], [ -64.902839, 18.407778 ], [ -64.902774, 18.407916 ], [ -64.902751, 18.408093 ], [ -64.902711, 18.40824 ], [ -64.90266, 18.408566 ], [ -64.902682, 18.408726 ], [ -64.902716, 18.408863 ], [ -64.902723, 18.408901 ], [ -64.902739, 18.408974 ], [ -64.902779, 18.409039 ], [ -64.902827, 18.409099 ], [ -64.902861, 18.409171 ], [ -64.902854, 18.409259 ], [ -64.902767, 18.409457 ], [ -64.902739, 18.409534 ], [ -64.902733, 18.409602 ], [ -64.902768, 18.409667 ], [ -64.90282, 18.409723 ], [ -64.902835, 18.409742 ], [ -64.902879, 18.409794 ], [ -64.903021, 18.409854 ], [ -64.903096, 18.409898 ], [ -64.903212, 18.409986 ], [ -64.903235, 18.410036 ], [ -64.903229, 18.410129 ], [ -64.903258, 18.410184 ], [ -64.903298, 18.410245 ], [ -64.903386, 18.41035 ], [ -64.9035, 18.410427 ], [ -64.903587, 18.410471 ], [ -64.903634, 18.410505 ], [ -64.903788, 18.410559 ], [ -64.903864, 18.410559 ], [ -64.903956, 18.410553 ], [ -64.904008, 18.410526 ], [ -64.904055, 18.410482 ], [ -64.904118, 18.410455 ], [ -64.90424, 18.410442 ], [ -64.904377, 18.410482 ], [ -64.904418, 18.410499 ], [ -64.904446, 18.410554 ], [ -64.904469, 18.410614 ], [ -64.904488, 18.410675 ], [ -64.904488, 18.410736 ], [ -64.904528, 18.410778 ], [ -64.904596, 18.410796 ], [ -64.904648, 18.410823 ], [ -64.904689, 18.410835 ], [ -64.904753, 18.410895 ], [ -64.904759, 18.41095 ], [ -64.904747, 18.410994 ], [ -64.904696, 18.411054 ], [ -64.904648, 18.411088 ], [ -64.904591, 18.411115 ], [ -64.904533, 18.411137 ], [ -64.904505, 18.411181 ], [ -64.904446, 18.411236 ], [ -64.90444, 18.411292 ], [ -64.904452, 18.41133 ], [ -64.904475, 18.411363 ], [ -64.904523, 18.411413 ], [ -64.904516, 18.411463 ], [ -64.904482, 18.41149 ], [ -64.90444, 18.41149 ], [ -64.904382, 18.411528 ], [ -64.904354, 18.411577 ], [ -64.904349, 18.411611 ], [ -64.90436, 18.411645 ], [ -64.904423, 18.411655 ], [ -64.904458, 18.411678 ], [ -64.904511, 18.411705 ], [ -64.904545, 18.41176 ], [ -64.904603, 18.411837 ], [ -64.904713, 18.411931 ], [ -64.904799, 18.411963 ], [ -64.904908, 18.411981 ], [ -64.905018, 18.411975 ], [ -64.905103, 18.41198 ], [ -64.905173, 18.411969 ], [ -64.905215, 18.411975 ], [ -64.905266, 18.411996 ], [ -64.905312, 18.412024 ], [ -64.905341, 18.412161 ], [ -64.905369, 18.412218 ], [ -64.905428, 18.412233 ], [ -64.905497, 18.412261 ], [ -64.905578, 18.412277 ], [ -64.905651, 18.412267 ], [ -64.905722, 18.4122 ], [ -64.905762, 18.412119 ], [ -64.905808, 18.412046 ], [ -64.905878, 18.412002 ], [ -64.905912, 18.412019 ], [ -64.905935, 18.412068 ], [ -64.905935, 18.412086 ], [ -64.905975, 18.412162 ], [ -64.906015, 18.412206 ], [ -64.906062, 18.412233 ], [ -64.906154, 18.412267 ], [ -64.906252, 18.412278 ], [ -64.906368, 18.412272 ], [ -64.906454, 18.412278 ], [ -64.906465, 18.412344 ], [ -64.906488, 18.412415 ], [ -64.906523, 18.412448 ], [ -64.906587, 18.412448 ], [ -64.906679, 18.412454 ], [ -64.906736, 18.412465 ], [ -64.90679, 18.412497 ], [ -64.906818, 18.412537 ], [ -64.90687, 18.412553 ], [ -64.90691, 18.412542 ], [ -64.906932, 18.412526 ], [ -64.906955, 18.412498 ], [ -64.906996, 18.412465 ], [ -64.907032, 18.412443 ], [ -64.907089, 18.412432 ], [ -64.907169, 18.412426 ], [ -64.907309, 18.412449 ], [ -64.907366, 18.412453 ], [ -64.907417, 18.412487 ], [ -64.907435, 18.412515 ], [ -64.907435, 18.412554 ], [ -64.907429, 18.412592 ], [ -64.90744, 18.412669 ], [ -64.907475, 18.412675 ], [ -64.907534, 18.412636 ], [ -64.907682, 18.412592 ], [ -64.907799, 18.412592 ], [ -64.907953, 18.412608 ], [ -64.908115, 18.412619 ], [ -64.908237, 18.412652 ], [ -64.908346, 18.412658 ], [ -64.908405, 18.412641 ], [ -64.908451, 18.412603 ], [ -64.908479, 18.412586 ], [ -64.908559, 18.412586 ], [ -64.908657, 18.412603 ], [ -64.908785, 18.412631 ], [ -64.908952, 18.412625 ], [ -64.908998, 18.412619 ], [ -64.909032, 18.412581 ], [ -64.909026, 18.412531 ], [ -64.908998, 18.41246 ], [ -64.909003, 18.412421 ], [ -64.909073, 18.412377 ], [ -64.909109, 18.412349 ], [ -64.909126, 18.4123 ], [ -64.909126, 18.412267 ], [ -64.90914, 18.412256 ], [ -64.909178, 18.412249 ], [ -64.909252, 18.412212 ], [ -64.909269, 18.412197 ], [ -64.909363, 18.412112 ], [ -64.90938, 18.412074 ], [ -64.909374, 18.412025 ], [ -64.909386, 18.411965 ], [ -64.909426, 18.411953 ], [ -64.909611, 18.411965 ], [ -64.909662, 18.412003 ], [ -64.909702, 18.412003 ], [ -64.909736, 18.411953 ], [ -64.909771, 18.411942 ], [ -64.909811, 18.411947 ], [ -64.909858, 18.41192 ], [ -64.909835, 18.411843 ], [ -64.909858, 18.411849 ], [ -64.909916, 18.411854 ], [ -64.909944, 18.411832 ], [ -64.909921, 18.411772 ], [ -64.909898, 18.411722 ], [ -64.90991, 18.411705 ], [ -64.910013, 18.411628 ], [ -64.910055, 18.41159 ], [ -64.910067, 18.411563 ], [ -64.910112, 18.411524 ], [ -64.910129, 18.411513 ], [ -64.910267, 18.411502 ], [ -64.910332, 18.41149 ], [ -64.910377, 18.411403 ], [ -64.910371, 18.411336 ] ], [ [ -64.898896, 18.277179 ], [ -64.89889, 18.277011 ], [ -64.898889, 18.27701 ], [ -64.896884, 18.274345 ], [ -64.896419, 18.274186 ], [ -64.896418, 18.274186 ], [ -64.888188, 18.27394 ], [ -64.888102, 18.273939 ], [ -64.88805, 18.273955 ], [ -64.887979, 18.273988 ], [ -64.887944, 18.273999 ], [ -64.887892, 18.273993 ], [ -64.88784, 18.273982 ], [ -64.887765, 18.273959 ], [ -64.88773, 18.273942 ], [ -64.88761, 18.273933 ], [ -64.887523, 18.273955 ], [ -64.887421, 18.273996 ], [ -64.887386, 18.27399 ], [ -64.887362, 18.273958 ], [ -64.887327, 18.273937 ], [ -64.887252, 18.273932 ], [ -64.887114, 18.273953 ], [ -64.887056, 18.273966 ], [ -64.886987, 18.27397 ], [ -64.886848, 18.27396 ], [ -64.886814, 18.27395 ], [ -64.88678, 18.27395 ], [ -64.886746, 18.273955 ], [ -64.886694, 18.273976 ], [ -64.886659, 18.274021 ], [ -64.886665, 18.274071 ], [ -64.886683, 18.274122 ], [ -64.886722, 18.274201 ], [ -64.886716, 18.274235 ], [ -64.886647, 18.274245 ], [ -64.886606, 18.274283 ], [ -64.886589, 18.274316 ], [ -64.886571, 18.274391 ], [ -64.886554, 18.274465 ], [ -64.886544, 18.274561 ], [ -64.886445, 18.274614 ], [ -64.886433, 18.274663 ], [ -64.886427, 18.274718 ], [ -64.886393, 18.274818 ], [ -64.886358, 18.274889 ], [ -64.886319, 18.274941 ], [ -64.886295, 18.274961 ], [ -64.886272, 18.274994 ], [ -64.886231, 18.275021 ], [ -64.886209, 18.275056 ], [ -64.886214, 18.275087 ], [ -64.886208, 18.275142 ], [ -64.886197, 18.275175 ], [ -64.886197, 18.275208 ], [ -64.886168, 18.275335 ], [ -64.886127, 18.275429 ], [ -64.886099, 18.275462 ], [ -64.886075, 18.2755 ], [ -64.886053, 18.275523 ], [ -64.886018, 18.275561 ], [ -64.885983, 18.275577 ], [ -64.885954, 18.275599 ], [ -64.885926, 18.275632 ], [ -64.885891, 18.27566 ], [ -64.885863, 18.275695 ], [ -64.885822, 18.275721 ], [ -64.885753, 18.275781 ], [ -64.885706, 18.275847 ], [ -64.885701, 18.27588 ], [ -64.885706, 18.275908 ], [ -64.885718, 18.275941 ], [ -64.885724, 18.275985 ], [ -64.885707, 18.276032 ], [ -64.885683, 18.276067 ], [ -64.885666, 18.2761 ], [ -64.885654, 18.276134 ], [ -64.885637, 18.276167 ], [ -64.885614, 18.276233 ], [ -64.885603, 18.276282 ], [ -64.885608, 18.276332 ], [ -64.885621, 18.276368 ], [ -64.885667, 18.276455 ], [ -64.885679, 18.276489 ], [ -64.885697, 18.276521 ], [ -64.885738, 18.276564 ], [ -64.885807, 18.276586 ], [ -64.885942, 18.276614 ], [ -64.885998, 18.276641 ], [ -64.886049, 18.276674 ], [ -64.886084, 18.276692 ], [ -64.886124, 18.276719 ], [ -64.886159, 18.276752 ], [ -64.886219, 18.276794 ], [ -64.886274, 18.276845 ], [ -64.886309, 18.276861 ], [ -64.886361, 18.276878 ], [ -64.886413, 18.276882 ], [ -64.89143, 18.278818 ], [ -64.891917, 18.279137 ], [ -64.892548, 18.279569 ], [ -64.892913, 18.279568 ], [ -64.893214, 18.279682 ], [ -64.893423, 18.27962 ], [ -64.893662, 18.279802 ], [ -64.89682, 18.278271 ], [ -64.897189, 18.278029 ], [ -64.897203, 18.277812 ], [ -64.897248, 18.277662 ], [ -64.897466, 18.277566 ], [ -64.897788, 18.277497 ], [ -64.898039, 18.277586 ], [ -64.898211, 18.277582 ], [ -64.898396, 18.277461 ], [ -64.898746, 18.277301 ], [ -64.898896, 18.277179 ] ], [ [ -65.085457, 18.336748 ], [ -65.085457, 18.336709 ], [ -65.085438, 18.336705 ], [ -65.085428, 18.336649 ], [ -65.085341, 18.336445 ], [ -65.085307, 18.336395 ], [ -65.085266, 18.336307 ], [ -65.08522, 18.336246 ], [ -65.085186, 18.336142 ], [ -65.085191, 18.336109 ], [ -65.085209, 18.33608 ], [ -65.085278, 18.336038 ], [ -65.085359, 18.335955 ], [ -65.085411, 18.335872 ], [ -65.085422, 18.335823 ], [ -65.085387, 18.335772 ], [ -65.085388, 18.33575 ], [ -65.085364, 18.335713 ], [ -65.085364, 18.335679 ], [ -65.085422, 18.335624 ], [ -65.085462, 18.335541 ], [ -65.085439, 18.335475 ], [ -65.08541, 18.335437 ], [ -65.085347, 18.335366 ], [ -65.085266, 18.3353 ], [ -65.085222, 18.335275 ], [ -65.085128, 18.335223 ], [ -65.085053, 18.335168 ], [ -65.084914, 18.335113 ], [ -65.084851, 18.335096 ], [ -65.084713, 18.335035 ], [ -65.084655, 18.335047 ], [ -65.08443, 18.335162 ], [ -65.084384, 18.335168 ], [ -65.084297, 18.335201 ], [ -65.084222, 18.335206 ], [ -65.084171, 18.335223 ], [ -65.084119, 18.33526 ], [ -65.084078, 18.335316 ], [ -65.08413, 18.33546 ], [ -65.084124, 18.335504 ], [ -65.084101, 18.335553 ], [ -65.084073, 18.335581 ], [ -65.084038, 18.335586 ], [ -65.084026, 18.335614 ], [ -65.084007, 18.335618 ], [ -65.083957, 18.335619 ], [ -65.0839, 18.335685 ], [ -65.0839, 18.335762 ], [ -65.083929, 18.335801 ], [ -65.083929, 18.335823 ], [ -65.083894, 18.335845 ], [ -65.083669, 18.335906 ], [ -65.083554, 18.335921 ], [ -65.083469, 18.335941 ], [ -65.083, 18.336054 ], [ -65.082954, 18.336071 ], [ -65.082839, 18.336137 ], [ -65.082677, 18.336258 ], [ -65.082562, 18.336319 ], [ -65.082516, 18.336351 ], [ -65.08206, 18.336462 ], [ -65.08168, 18.336593 ], [ -65.081587, 18.336644 ], [ -65.081311, 18.336677 ], [ -65.08119, 18.336611 ], [ -65.081143, 18.336523 ], [ -65.081138, 18.336462 ], [ -65.08112, 18.336445 ], [ -65.08108, 18.336451 ], [ -65.081017, 18.336545 ], [ -65.080844, 18.336699 ], [ -65.080694, 18.336787 ], [ -65.08055, 18.336886 ], [ -65.080446, 18.336924 ], [ -65.080359, 18.336936 ], [ -65.080296, 18.336957 ], [ -65.080215, 18.336947 ], [ -65.08015, 18.336956 ], [ -65.080146, 18.336957 ], [ -65.079921, 18.336974 ], [ -65.079846, 18.336958 ], [ -65.079719, 18.336986 ], [ -65.079638, 18.336986 ], [ -65.079414, 18.336947 ], [ -65.079327, 18.336909 ], [ -65.079241, 18.336837 ], [ -65.079229, 18.336787 ], [ -65.079252, 18.336732 ], [ -65.079223, 18.336567 ], [ -65.078981, 18.336446 ], [ -65.07886, 18.336418 ], [ -65.078785, 18.336418 ], [ -65.078716, 18.336396 ], [ -65.078703, 18.336382 ], [ -65.078693, 18.336363 ], [ -65.078704, 18.336336 ], [ -65.078751, 18.33628 ], [ -65.078779, 18.336193 ], [ -65.07875, 18.336143 ], [ -65.078704, 18.336116 ], [ -65.078664, 18.336103 ], [ -65.078456, 18.336099 ], [ -65.078352, 18.336138 ], [ -65.078312, 18.336143 ], [ -65.078249, 18.336176 ], [ -65.07822, 18.336171 ], [ -65.078191, 18.336187 ], [ -65.07818, 18.336215 ], [ -65.078105, 18.33628 ], [ -65.078087, 18.336313 ], [ -65.078018, 18.336314 ], [ -65.078001, 18.336335 ], [ -65.077793, 18.336286 ], [ -65.077753, 18.336281 ], [ -65.077701, 18.336292 ], [ -65.077511, 18.33644 ], [ -65.077476, 18.336507 ], [ -65.077361, 18.33665 ], [ -65.077326, 18.336705 ], [ -65.077286, 18.336798 ], [ -65.077245, 18.336836 ], [ -65.077084, 18.337101 ], [ -65.07705, 18.337228 ], [ -65.077061, 18.337382 ], [ -65.077096, 18.337432 ], [ -65.077153, 18.337465 ], [ -65.077182, 18.337491 ], [ -65.077217, 18.337504 ], [ -65.077269, 18.337493 ], [ -65.077303, 18.337504 ], [ -65.077338, 18.337569 ], [ -65.077355, 18.337636 ], [ -65.077419, 18.337713 ], [ -65.077436, 18.337779 ], [ -65.077384, 18.337943 ], [ -65.077373, 18.338087 ], [ -65.077344, 18.338197 ], [ -65.077263, 18.338418 ], [ -65.077119, 18.338594 ], [ -65.076836, 18.339051 ], [ -65.076767, 18.339133 ], [ -65.076646, 18.339238 ], [ -65.07652, 18.339304 ], [ -65.076375, 18.339354 ], [ -65.076265, 18.33937 ], [ -65.075873, 18.339393 ], [ -65.075666, 18.339321 ], [ -65.075631, 18.339304 ], [ -65.075579, 18.33926 ], [ -65.075556, 18.339222 ], [ -65.075481, 18.339151 ], [ -65.075441, 18.339018 ], [ -65.075447, 18.338974 ], [ -65.075395, 18.338892 ], [ -65.075331, 18.338864 ], [ -65.07513, 18.338859 ], [ -65.075066, 18.338798 ], [ -65.075055, 18.338743 ], [ -65.074985, 18.33876 ], [ -65.074928, 18.338826 ], [ -65.074766, 18.339145 ], [ -65.074709, 18.339234 ], [ -65.074622, 18.339305 ], [ -65.074536, 18.33936 ], [ -65.074459, 18.339398 ], [ -65.074363, 18.339448 ], [ -65.074265, 18.339541 ], [ -65.074241, 18.33958 ], [ -65.07423, 18.33963 ], [ -65.07423, 18.339679 ], [ -65.074276, 18.339778 ], [ -65.07427, 18.339795 ], [ -65.074282, 18.339812 ], [ -65.074282, 18.339889 ], [ -65.074271, 18.339922 ], [ -65.074282, 18.339944 ], [ -65.074357, 18.340004 ], [ -65.074466, 18.340004 ], [ -65.074542, 18.340026 ], [ -65.074616, 18.340087 ], [ -65.074645, 18.340137 ], [ -65.074668, 18.34023 ], [ -65.074674, 18.340527 ], [ -65.07464, 18.340731 ], [ -65.074547, 18.340874 ], [ -65.074363, 18.341094 ], [ -65.074248, 18.341205 ], [ -65.074028, 18.341364 ], [ -65.073861, 18.341518 ], [ -65.073706, 18.341733 ], [ -65.073665, 18.341816 ], [ -65.073679, 18.341875 ], [ -65.073683, 18.341893 ], [ -65.073677, 18.341926 ], [ -65.073694, 18.341981 ], [ -65.073763, 18.342014 ], [ -65.073792, 18.342019 ], [ -65.07385, 18.342014 ], [ -65.073902, 18.342036 ], [ -65.073965, 18.342097 ], [ -65.074121, 18.342311 ], [ -65.074207, 18.342388 ], [ -65.074277, 18.342471 ], [ -65.074421, 18.342664 ], [ -65.074501, 18.34284 ], [ -65.074507, 18.342857 ], [ -65.074594, 18.343088 ], [ -65.074605, 18.343176 ], [ -65.074565, 18.34333 ], [ -65.074548, 18.343352 ], [ -65.074553, 18.343407 ], [ -65.074599, 18.343446 ], [ -65.074675, 18.343423 ], [ -65.074703, 18.34344 ], [ -65.074738, 18.34344 ], [ -65.074779, 18.343506 ], [ -65.074784, 18.343594 ], [ -65.074859, 18.343644 ], [ -65.074894, 18.343638 ], [ -65.07491, 18.343649 ], [ -65.074934, 18.343671 ], [ -65.074986, 18.343809 ], [ -65.075107, 18.343886 ], [ -65.075188, 18.343902 ], [ -65.07528, 18.343892 ], [ -65.075338, 18.343908 ], [ -65.075378, 18.343931 ], [ -65.075407, 18.34399 ], [ -65.075401, 18.34404 ], [ -65.075378, 18.344156 ], [ -65.075321, 18.344343 ], [ -65.075246, 18.344525 ], [ -65.075227, 18.344555 ], [ -65.075182, 18.344624 ], [ -65.075136, 18.344674 ], [ -65.075038, 18.344734 ], [ -65.074715, 18.345021 ], [ -65.074704, 18.345054 ], [ -65.074675, 18.345087 ], [ -65.074663, 18.345208 ], [ -65.074681, 18.345268 ], [ -65.074686, 18.345389 ], [ -65.074669, 18.345428 ], [ -65.074664, 18.34545 ], [ -65.074485, 18.345511 ], [ -65.074473, 18.345555 ], [ -65.074473, 18.345643 ], [ -65.074456, 18.345775 ], [ -65.074462, 18.345824 ], [ -65.07449, 18.345873 ], [ -65.074499, 18.345876 ], [ -65.074508, 18.345879 ], [ -65.074548, 18.345874 ], [ -65.074583, 18.345846 ], [ -65.074646, 18.345819 ], [ -65.07475, 18.345792 ], [ -65.074779, 18.345797 ], [ -65.074825, 18.34583 ], [ -65.074842, 18.345857 ], [ -65.074848, 18.345962 ], [ -65.07486, 18.346061 ], [ -65.074854, 18.346089 ], [ -65.0749, 18.346227 ], [ -65.074946, 18.346315 ], [ -65.074969, 18.346337 ], [ -65.074986, 18.346402 ], [ -65.074969, 18.346441 ], [ -65.074903, 18.346469 ], [ -65.074877, 18.34648 ], [ -65.074877, 18.346524 ], [ -65.074923, 18.346656 ], [ -65.074963, 18.346711 ], [ -65.074992, 18.34675 ], [ -65.075044, 18.346788 ], [ -65.075108, 18.346804 ], [ -65.075125, 18.346788 ], [ -65.075137, 18.346755 ], [ -65.075136, 18.346722 ], [ -65.075159, 18.346699 ], [ -65.0752, 18.346683 ], [ -65.075217, 18.346717 ], [ -65.075217, 18.346777 ], [ -65.07524, 18.346849 ], [ -65.075275, 18.346909 ], [ -65.075309, 18.346937 ], [ -65.075373, 18.346925 ], [ -65.07539, 18.346915 ], [ -65.07539, 18.346881 ], [ -65.075385, 18.346854 ], [ -65.075436, 18.34681 ], [ -65.075534, 18.346788 ], [ -65.075638, 18.346788 ], [ -65.075892, 18.346843 ], [ -65.075921, 18.346838 ], [ -65.075926, 18.34681 ], [ -65.075909, 18.346788 ], [ -65.075927, 18.346766 ], [ -65.075949, 18.346755 ], [ -65.076001, 18.346749 ], [ -65.076077, 18.346628 ], [ -65.076082, 18.346595 ], [ -65.076065, 18.346562 ], [ -65.076047, 18.346474 ], [ -65.076024, 18.346414 ], [ -65.076024, 18.346353 ], [ -65.076042, 18.346298 ], [ -65.076082, 18.346221 ], [ -65.07614, 18.346155 ], [ -65.076226, 18.346088 ], [ -65.076244, 18.346039 ], [ -65.076232, 18.345951 ], [ -65.076243, 18.345929 ], [ -65.076261, 18.345913 ], [ -65.076324, 18.345918 ], [ -65.076445, 18.345912 ], [ -65.076532, 18.345879 ], [ -65.076612, 18.345824 ], [ -65.076832, 18.345577 ], [ -65.076947, 18.34551 ], [ -65.07697, 18.345532 ], [ -65.076999, 18.345538 ], [ -65.077103, 18.345511 ], [ -65.077172, 18.345554 ], [ -65.077235, 18.345566 ], [ -65.077259, 18.345521 ], [ -65.077229, 18.345488 ], [ -65.077201, 18.345428 ], [ -65.077218, 18.345367 ], [ -65.077235, 18.345246 ], [ -65.077224, 18.345197 ], [ -65.077235, 18.345152 ], [ -65.077253, 18.345114 ], [ -65.077276, 18.345092 ], [ -65.077299, 18.345086 ], [ -65.077333, 18.345053 ], [ -65.07738, 18.345042 ], [ -65.077402, 18.345009 ], [ -65.077402, 18.344976 ], [ -65.077374, 18.344905 ], [ -65.077374, 18.344849 ], [ -65.077397, 18.344839 ], [ -65.077477, 18.344761 ], [ -65.077506, 18.34475 ], [ -65.077535, 18.34469 ], [ -65.077575, 18.344553 ], [ -65.077627, 18.34453 ], [ -65.077691, 18.34453 ], [ -65.077731, 18.344541 ], [ -65.07776, 18.344536 ], [ -65.077852, 18.344552 ], [ -65.078014, 18.344524 ], [ -65.078089, 18.344525 ], [ -65.078124, 18.34454 ], [ -65.07814, 18.344547 ], [ -65.078198, 18.344585 ], [ -65.07821, 18.344613 ], [ -65.078256, 18.34464 ], [ -65.078285, 18.34459 ], [ -65.078319, 18.344558 ], [ -65.07836, 18.344535 ], [ -65.078406, 18.344558 ], [ -65.078556, 18.344519 ], [ -65.078579, 18.344496 ], [ -65.078573, 18.344387 ], [ -65.078579, 18.344364 ], [ -65.078607, 18.344337 ], [ -65.078803, 18.344194 ], [ -65.078988, 18.344073 ], [ -65.079132, 18.344051 ], [ -65.07923, 18.344023 ], [ -65.079248, 18.343984 ], [ -65.079213, 18.343924 ], [ -65.07919, 18.343903 ], [ -65.079219, 18.343869 ], [ -65.079237, 18.343863 ], [ -65.079253, 18.343836 ], [ -65.079276, 18.343825 ], [ -65.079322, 18.343781 ], [ -65.079351, 18.343714 ], [ -65.079351, 18.343693 ], [ -65.079386, 18.343676 ], [ -65.079415, 18.343677 ], [ -65.07945, 18.343687 ], [ -65.079467, 18.343704 ], [ -65.079553, 18.343687 ], [ -65.079628, 18.343627 ], [ -65.079686, 18.343517 ], [ -65.079789, 18.343434 ], [ -65.079818, 18.343401 ], [ -65.079818, 18.343367 ], [ -65.079841, 18.34334 ], [ -65.079836, 18.343208 ], [ -65.079818, 18.343164 ], [ -65.079778, 18.343109 ], [ -65.079766, 18.34306 ], [ -65.079697, 18.342921 ], [ -65.079639, 18.342828 ], [ -65.07964, 18.34281 ], [ -65.079674, 18.342751 ], [ -65.079663, 18.342641 ], [ -65.079651, 18.342619 ], [ -65.079668, 18.342586 ], [ -65.079709, 18.342586 ], [ -65.079847, 18.342652 ], [ -65.07991, 18.342695 ], [ -65.079951, 18.342679 ], [ -65.080009, 18.342696 ], [ -65.080158, 18.342812 ], [ -65.080291, 18.342845 ], [ -65.080361, 18.342899 ], [ -65.080372, 18.342955 ], [ -65.080429, 18.342994 ], [ -65.080505, 18.343004 ], [ -65.080574, 18.342988 ], [ -65.080608, 18.342966 ], [ -65.080666, 18.342955 ], [ -65.08073, 18.3429 ], [ -65.080787, 18.342872 ], [ -65.080949, 18.342739 ], [ -65.081041, 18.342608 ], [ -65.081121, 18.342465 ], [ -65.081162, 18.342426 ], [ -65.081173, 18.342388 ], [ -65.081168, 18.342272 ], [ -65.081127, 18.34214 ], [ -65.081093, 18.342068 ], [ -65.081075, 18.342013 ], [ -65.081081, 18.341986 ], [ -65.081058, 18.341952 ], [ -65.081058, 18.341925 ], [ -65.081087, 18.341881 ], [ -65.081133, 18.341859 ], [ -65.081167, 18.341864 ], [ -65.081191, 18.341887 ], [ -65.081231, 18.341903 ], [ -65.081363, 18.341935 ], [ -65.081531, 18.341997 ], [ -65.081594, 18.341991 ], [ -65.081618, 18.34198 ], [ -65.081692, 18.341974 ], [ -65.081882, 18.341886 ], [ -65.082154, 18.341693 ], [ -65.082309, 18.341561 ], [ -65.08235, 18.341517 ], [ -65.08239, 18.341391 ], [ -65.082396, 18.341336 ], [ -65.08239, 18.341275 ], [ -65.08235, 18.341126 ], [ -65.082309, 18.34106 ], [ -65.082257, 18.341021 ], [ -65.082182, 18.340988 ], [ -65.082159, 18.340973 ], [ -65.08209, 18.340961 ], [ -65.082072, 18.340944 ], [ -65.082055, 18.340841 ], [ -65.082038, 18.34079 ], [ -65.082032, 18.340724 ], [ -65.082009, 18.340647 ], [ -65.081957, 18.340548 ], [ -65.08194, 18.340526 ], [ -65.081761, 18.340438 ], [ -65.081703, 18.340394 ], [ -65.081646, 18.340306 ], [ -65.081605, 18.340278 ], [ -65.081571, 18.34024 ], [ -65.081588, 18.340179 ], [ -65.081779, 18.34013 ], [ -65.081825, 18.34008 ], [ -65.081836, 18.340053 ], [ -65.081824, 18.339926 ], [ -65.08179, 18.339849 ], [ -65.081773, 18.339783 ], [ -65.081795, 18.339684 ], [ -65.081819, 18.339639 ], [ -65.081865, 18.339618 ], [ -65.081882, 18.33959 ], [ -65.081888, 18.339546 ], [ -65.08194, 18.33953 ], [ -65.08198, 18.339535 ], [ -65.082038, 18.339524 ], [ -65.082055, 18.339491 ], [ -65.082049, 18.339419 ], [ -65.082038, 18.339392 ], [ -65.082044, 18.339364 ], [ -65.082136, 18.339254 ], [ -65.082148, 18.339216 ], [ -65.082107, 18.339028 ], [ -65.082124, 18.338973 ], [ -65.082147, 18.338963 ], [ -65.082163, 18.338973 ], [ -65.08224, 18.338979 ], [ -65.082286, 18.339001 ], [ -65.082309, 18.338989 ], [ -65.082349, 18.33899 ], [ -65.082389, 18.338974 ], [ -65.082436, 18.338985 ], [ -65.082453, 18.339001 ], [ -65.082499, 18.339018 ], [ -65.082551, 18.339072 ], [ -65.082597, 18.339066 ], [ -65.082632, 18.339056 ], [ -65.082649, 18.339023 ], [ -65.082707, 18.338974 ], [ -65.082724, 18.338896 ], [ -65.082735, 18.338736 ], [ -65.082764, 18.33867 ], [ -65.082839, 18.338627 ], [ -65.082978, 18.338615 ], [ -65.083012, 18.338621 ], [ -65.083041, 18.338631 ], [ -65.083301, 18.338791 ], [ -65.083427, 18.338835 ], [ -65.083462, 18.338841 ], [ -65.083485, 18.338835 ], [ -65.083508, 18.338814 ], [ -65.083543, 18.338753 ], [ -65.08356, 18.338675 ], [ -65.083583, 18.338648 ], [ -65.083589, 18.338604 ], [ -65.083647, 18.338543 ], [ -65.08367, 18.338538 ], [ -65.08375, 18.338587 ], [ -65.083825, 18.338676 ], [ -65.0839, 18.33873 ], [ -65.084004, 18.33877 ], [ -65.08405, 18.338769 ], [ -65.084258, 18.338918 ], [ -65.084321, 18.338946 ], [ -65.084356, 18.338978 ], [ -65.084396, 18.338995 ], [ -65.084415, 18.33899 ], [ -65.084448, 18.338995 ], [ -65.084552, 18.339055 ], [ -65.084638, 18.339084 ], [ -65.084684, 18.339062 ], [ -65.084685, 18.339062 ], [ -65.084702, 18.339033 ], [ -65.084719, 18.338984 ], [ -65.084742, 18.338896 ], [ -65.08469, 18.338725 ], [ -65.08469, 18.338643 ], [ -65.084713, 18.338582 ], [ -65.084731, 18.338422 ], [ -65.084707, 18.338373 ], [ -65.084656, 18.338136 ], [ -65.084655, 18.338052 ], [ -65.084632, 18.33802 ], [ -65.084638, 18.337921 ], [ -65.084661, 18.33786 ], [ -65.084684, 18.337816 ], [ -65.08484, 18.337651 ], [ -65.084851, 18.337534 ], [ -65.08484, 18.337497 ], [ -65.084823, 18.33748 ], [ -65.08488, 18.337431 ], [ -65.084978, 18.337369 ], [ -65.085013, 18.337364 ], [ -65.08514, 18.337282 ], [ -65.08522, 18.337244 ], [ -65.085244, 18.337216 ], [ -65.085249, 18.337207 ], [ -65.085284, 18.337149 ], [ -65.085282, 18.337131 ], [ -65.085232, 18.337056 ], [ -65.08522, 18.337022 ], [ -65.085232, 18.337001 ], [ -65.08533, 18.337012 ], [ -65.085353, 18.337006 ], [ -65.085382, 18.336985 ], [ -65.085411, 18.336919 ], [ -65.085405, 18.336842 ], [ -65.085439, 18.336798 ], [ -65.085457, 18.336748 ] ], [ [ -64.91749, 18.404295 ], [ -64.917455, 18.404266 ], [ -64.917386, 18.404255 ], [ -64.917323, 18.404211 ], [ -64.917305, 18.404118 ], [ -64.9173, 18.404073 ], [ -64.917288, 18.404018 ], [ -64.917248, 18.404001 ], [ -64.917178, 18.403991 ], [ -64.917086, 18.403963 ], [ -64.916971, 18.403941 ], [ -64.916896, 18.403919 ], [ -64.916815, 18.40387 ], [ -64.916746, 18.403841 ], [ -64.916636, 18.403804 ], [ -64.916584, 18.40382 ], [ -64.916509, 18.40381 ], [ -64.916383, 18.403716 ], [ -64.91614, 18.403479 ], [ -64.9161, 18.403391 ], [ -64.916082, 18.403291 ], [ -64.916106, 18.403186 ], [ -64.916117, 18.402983 ], [ -64.916111, 18.402861 ], [ -64.9161, 18.402741 ], [ -64.916105, 18.402669 ], [ -64.9161, 18.402585 ], [ -64.916071, 18.402516 ], [ -64.916008, 18.402444 ], [ -64.915956, 18.402395 ], [ -64.91591, 18.402361 ], [ -64.915835, 18.40234 ], [ -64.915736, 18.402289 ], [ -64.91569, 18.40225 ], [ -64.915673, 18.402201 ], [ -64.915662, 18.402129 ], [ -64.915667, 18.402085 ], [ -64.915697, 18.402041 ], [ -64.915742, 18.402008 ], [ -64.91584, 18.401965 ], [ -64.915858, 18.401915 ], [ -64.915835, 18.401888 ], [ -64.915771, 18.401843 ], [ -64.915715, 18.401811 ], [ -64.915708, 18.401794 ], [ -64.91576, 18.401783 ], [ -64.915805, 18.401705 ], [ -64.915783, 18.401661 ], [ -64.915564, 18.401606 ], [ -64.915281, 18.401546 ], [ -64.915027, 18.401529 ], [ -64.914623, 18.401473 ], [ -64.91433, 18.401453 ], [ -64.914133, 18.401441 ], [ -64.914029, 18.401413 ], [ -64.913983, 18.401386 ], [ -64.913965, 18.401353 ], [ -64.91396, 18.40132 ], [ -64.91396, 18.40127 ], [ -64.913937, 18.401216 ], [ -64.913914, 18.401194 ], [ -64.913867, 18.401138 ], [ -64.913856, 18.401104 ], [ -64.91385, 18.40105 ], [ -64.91381, 18.401022 ], [ -64.913769, 18.401006 ], [ -64.913689, 18.400934 ], [ -64.913671, 18.400895 ], [ -64.913655, 18.400846 ], [ -64.913602, 18.400824 ], [ -64.913515, 18.400813 ], [ -64.91347, 18.400834 ], [ -64.913389, 18.400896 ], [ -64.913331, 18.40095 ], [ -64.913296, 18.400967 ], [ -64.913262, 18.400972 ], [ -64.91321, 18.400957 ], [ -64.912962, 18.400686 ], [ -64.912869, 18.400642 ], [ -64.912754, 18.400555 ], [ -64.912679, 18.400445 ], [ -64.912494, 18.400135 ], [ -64.912345, 18.39985 ], [ -64.912327, 18.399712 ], [ -64.912333, 18.399568 ], [ -64.912403, 18.399298 ], [ -64.912553, 18.398958 ], [ -64.912599, 18.398786 ], [ -64.912639, 18.398676 ], [ -64.912697, 18.398599 ], [ -64.91276, 18.398533 ], [ -64.912835, 18.398483 ], [ -64.912916, 18.398412 ], [ -64.912973, 18.398335 ], [ -64.912991, 18.398253 ], [ -64.912996, 18.398165 ], [ -64.913152, 18.397922 ], [ -64.91321, 18.397783 ], [ -64.913262, 18.397625 ], [ -64.913302, 18.397464 ], [ -64.913314, 18.397316 ], [ -64.913325, 18.397233 ], [ -64.913355, 18.397118 ], [ -64.913389, 18.397041 ], [ -64.913423, 18.396948 ], [ -64.913412, 18.396837 ], [ -64.913395, 18.396738 ], [ -64.913355, 18.396644 ], [ -64.913331, 18.396556 ], [ -64.91328, 18.396446 ], [ -64.913251, 18.396331 ], [ -64.913303, 18.39615 ], [ -64.913331, 18.396088 ], [ -64.91332, 18.395939 ], [ -64.913303, 18.395863 ], [ -64.913262, 18.395791 ], [ -64.913118, 18.395603 ], [ -64.912841, 18.395074 ], [ -64.912737, 18.394893 ], [ -64.912692, 18.394771 ], [ -64.91268, 18.394689 ], [ -64.912686, 18.394629 ], [ -64.91272, 18.394552 ], [ -64.912738, 18.394479 ], [ -64.912743, 18.394402 ], [ -64.912692, 18.394299 ], [ -64.912622, 18.394228 ], [ -64.91257, 18.394165 ], [ -64.912432, 18.394078 ], [ -64.912386, 18.394061 ], [ -64.912345, 18.394 ], [ -64.912316, 18.393946 ], [ -64.912328, 18.39389 ], [ -64.912328, 18.393824 ], [ -64.912299, 18.393764 ], [ -64.91227, 18.393753 ], [ -64.912167, 18.39378 ], [ -64.912068, 18.39387 ], [ -64.912017, 18.393886 ], [ -64.911982, 18.393846 ], [ -64.911884, 18.393675 ], [ -64.911815, 18.393587 ], [ -64.91174, 18.393521 ], [ -64.911653, 18.393483 ], [ -64.911417, 18.393449 ], [ -64.911261, 18.393351 ], [ -64.911203, 18.393273 ], [ -64.911128, 18.393109 ], [ -64.911111, 18.393025 ], [ -64.911117, 18.392915 ], [ -64.911175, 18.392752 ], [ -64.911197, 18.392675 ], [ -64.911197, 18.39258 ], [ -64.911181, 18.392442 ], [ -64.911152, 18.39237 ], [ -64.911054, 18.392238 ], [ -64.911013, 18.392205 ], [ -64.910984, 18.392189 ], [ -64.910961, 18.392151 ], [ -64.910961, 18.392085 ], [ -64.910984, 18.39204 ], [ -64.910996, 18.39199 ], [ -64.910967, 18.391918 ], [ -64.910898, 18.391831 ], [ -64.910869, 18.391777 ], [ -64.910881, 18.391731 ], [ -64.910915, 18.391654 ], [ -64.910938, 18.391584 ], [ -64.910944, 18.391505 ], [ -64.910915, 18.391451 ], [ -64.910869, 18.391429 ], [ -64.910829, 18.391364 ], [ -64.910822, 18.391296 ], [ -64.910794, 18.391242 ], [ -64.910748, 18.391193 ], [ -64.910633, 18.391099 ], [ -64.910546, 18.390994 ], [ -64.910471, 18.390911 ], [ -64.910361, 18.390802 ], [ -64.910252, 18.390769 ], [ -64.910119, 18.390752 ], [ -64.910027, 18.390762 ], [ -64.9099, 18.390757 ], [ -64.909785, 18.390762 ], [ -64.909738, 18.390751 ], [ -64.909646, 18.390707 ], [ -64.90945, 18.390691 ], [ -64.909225, 18.390714 ], [ -64.90915, 18.390696 ], [ -64.909064, 18.390624 ], [ -64.90896, 18.390508 ], [ -64.908891, 18.390464 ], [ -64.908769, 18.390431 ], [ -64.908683, 18.390398 ], [ -64.908637, 18.390354 ], [ -64.908609, 18.390334 ], [ -64.908573, 18.390299 ], [ -64.908527, 18.390221 ], [ -64.908504, 18.390134 ], [ -64.908481, 18.390073 ], [ -64.908435, 18.390035 ], [ -64.908412, 18.389952 ], [ -64.908441, 18.38987 ], [ -64.90851, 18.389799 ], [ -64.908568, 18.389699 ], [ -64.908579, 18.3896 ], [ -64.908545, 18.389508 ], [ -64.908498, 18.389418 ], [ -64.908481, 18.389364 ], [ -64.908475, 18.38928 ], [ -64.908591, 18.388872 ], [ -64.908574, 18.38874 ], [ -64.908527, 18.38857 ], [ -64.908464, 18.388449 ], [ -64.90836, 18.388339 ], [ -64.908239, 18.38825 ], [ -64.908129, 18.388263 ], [ -64.908014, 18.388239 ], [ -64.907968, 18.388168 ], [ -64.907974, 18.38809 ], [ -64.907945, 18.387903 ], [ -64.907893, 18.387838 ], [ -64.907789, 18.387783 ], [ -64.907708, 18.387662 ], [ -64.90772, 18.387578 ], [ -64.907674, 18.387446 ], [ -64.90765, 18.387414 ], [ -64.907593, 18.387387 ], [ -64.907535, 18.387374 ], [ -64.907466, 18.387409 ], [ -64.907414, 18.387391 ], [ -64.907299, 18.387286 ], [ -64.907247, 18.387259 ], [ -64.907206, 18.387265 ], [ -64.907126, 18.387254 ], [ -64.90697, 18.387315 ], [ -64.906785, 18.38738 ], [ -64.90663, 18.387458 ], [ -64.906572, 18.387474 ], [ -64.906521, 18.387479 ], [ -64.90648, 18.387479 ], [ -64.906451, 18.387469 ], [ -64.90641, 18.387397 ], [ -64.906399, 18.387336 ], [ -64.906359, 18.387321 ], [ -64.906284, 18.387315 ], [ -64.90622, 18.387336 ], [ -64.905972, 18.387446 ], [ -64.90581, 18.387563 ], [ -64.905712, 18.387639 ], [ -64.905608, 18.38771 ], [ -64.905539, 18.387772 ], [ -64.905528, 18.387826 ], [ -64.905497, 18.387892 ], [ -64.905464, 18.387897 ], [ -64.905435, 18.387876 ], [ -64.905401, 18.387832 ], [ -64.905338, 18.387816 ], [ -64.905245, 18.387842 ], [ -64.90517, 18.387915 ], [ -64.899666, 18.39217 ], [ -64.899587, 18.392238 ], [ -64.899569, 18.392244 ], [ -64.899533, 18.392274 ], [ -64.899378, 18.392429 ], [ -64.899314, 18.392545 ], [ -64.899262, 18.392672 ], [ -64.899257, 18.392754 ], [ -64.89928, 18.392853 ], [ -64.899268, 18.392902 ], [ -64.899245, 18.392957 ], [ -64.899199, 18.39303 ], [ -64.899152, 18.393255 ], [ -64.899176, 18.393421 ], [ -64.899216, 18.39352 ], [ -64.899245, 18.393668 ], [ -64.899314, 18.393763 ], [ -64.8994, 18.39385 ], [ -64.899481, 18.393955 ], [ -64.899585, 18.394042 ], [ -64.899816, 18.394187 ], [ -64.899891, 18.394224 ], [ -64.899966, 18.394312 ], [ -64.900046, 18.394422 ], [ -64.900093, 18.3945 ], [ -64.900167, 18.394644 ], [ -64.900237, 18.39477 ], [ -64.900283, 18.394956 ], [ -64.900393, 18.395326 ], [ -64.900496, 18.395573 ], [ -64.900658, 18.395827 ], [ -64.900692, 18.39597 ], [ -64.900704, 18.39619 ], [ -64.900773, 18.396377 ], [ -64.901027, 18.396896 ], [ -64.901159, 18.397143 ], [ -64.901298, 18.397281 ], [ -64.901465, 18.397429 ], [ -64.901603, 18.397562 ], [ -64.90173, 18.397788 ], [ -64.901892, 18.398041 ], [ -64.901961, 18.398173 ], [ -64.902042, 18.398261 ], [ -64.902497, 18.398592 ], [ -64.902641, 18.398806 ], [ -64.902688, 18.398929 ], [ -64.902763, 18.399126 ], [ -64.902785, 18.399335 ], [ -64.902878, 18.399588 ], [ -64.902999, 18.399826 ], [ -64.903161, 18.400023 ], [ -64.903385, 18.400233 ], [ -64.90376, 18.400497 ], [ -64.904095, 18.400779 ], [ -64.904285, 18.400965 ], [ -64.904441, 18.401164 ], [ -64.904551, 18.401335 ], [ -64.904602, 18.401472 ], [ -64.904631, 18.401582 ], [ -64.904637, 18.401687 ], [ -64.904603, 18.401836 ], [ -64.904649, 18.401969 ], [ -64.904706, 18.402063 ], [ -64.904822, 18.402188 ], [ -64.904914, 18.402315 ], [ -64.905133, 18.402592 ], [ -64.905284, 18.402773 ], [ -64.905456, 18.402904 ], [ -64.905692, 18.403075 ], [ -64.906079, 18.403262 ], [ -64.906367, 18.403356 ], [ -64.906829, 18.403539 ], [ -64.907262, 18.403666 ], [ -64.907406, 18.403752 ], [ -64.907527, 18.403852 ], [ -64.907637, 18.403956 ], [ -64.907734, 18.404067 ], [ -64.907822, 18.404121 ], [ -64.907948, 18.404182 ], [ -64.908035, 18.404209 ], [ -64.908277, 18.40426 ], [ -64.908496, 18.404282 ], [ -64.90875, 18.40432 ], [ -64.908958, 18.404309 ], [ -64.909061, 18.404342 ], [ -64.909131, 18.404386 ], [ -64.909194, 18.404441 ], [ -64.909246, 18.40448 ], [ -64.909332, 18.404524 ], [ -64.909437, 18.404556 ], [ -64.909482, 18.40453 ], [ -64.909557, 18.404585 ], [ -64.909563, 18.404667 ], [ -64.909586, 18.404706 ], [ -64.909667, 18.404739 ], [ -64.90984, 18.404772 ], [ -64.910007, 18.40481 ], [ -64.9101, 18.404822 ], [ -64.910279, 18.404772 ], [ -64.910365, 18.40475 ], [ -64.910417, 18.404722 ], [ -64.910464, 18.404734 ], [ -64.910509, 18.404755 ], [ -64.910544, 18.404816 ], [ -64.910551, 18.40487 ], [ -64.910567, 18.404915 ], [ -64.910637, 18.404983 ], [ -64.910723, 18.405025 ], [ -64.910821, 18.405047 ], [ -64.911006, 18.405038 ], [ -64.911092, 18.405041 ], [ -64.911179, 18.405069 ], [ -64.911236, 18.405092 ], [ -64.911306, 18.405114 ], [ -64.91134, 18.405152 ], [ -64.911392, 18.405235 ], [ -64.911415, 18.405262 ], [ -64.911438, 18.405268 ], [ -64.911478, 18.405256 ], [ -64.911571, 18.405208 ], [ -64.911652, 18.405234 ], [ -64.911698, 18.405262 ], [ -64.911721, 18.405306 ], [ -64.911721, 18.405356 ], [ -64.911727, 18.405416 ], [ -64.911744, 18.405455 ], [ -64.911796, 18.405505 ], [ -64.911853, 18.405532 ], [ -64.911888, 18.405555 ], [ -64.911958, 18.405565 ], [ -64.912003, 18.405593 ], [ -64.912107, 18.405587 ], [ -64.912159, 18.405571 ], [ -64.912229, 18.405592 ], [ -64.912257, 18.40562 ], [ -64.912269, 18.405664 ], [ -64.912292, 18.405698 ], [ -64.912321, 18.405709 ], [ -64.91235, 18.405715 ], [ -64.912379, 18.405697 ], [ -64.912378, 18.405626 ], [ -64.912373, 18.405593 ], [ -64.91239, 18.405539 ], [ -64.912442, 18.405538 ], [ -64.9125, 18.405553 ], [ -64.91254, 18.405571 ], [ -64.912586, 18.405609 ], [ -64.912655, 18.405619 ], [ -64.912701, 18.40562 ], [ -64.912829, 18.405588 ], [ -64.912869, 18.405565 ], [ -64.912909, 18.405554 ], [ -64.912967, 18.405549 ], [ -64.913019, 18.405539 ], [ -64.913059, 18.405516 ], [ -64.913083, 18.405477 ], [ -64.9131, 18.405433 ], [ -64.913157, 18.405373 ], [ -64.913371, 18.405339 ], [ -64.913469, 18.405352 ], [ -64.913469, 18.405384 ], [ -64.913463, 18.40541 ], [ -64.913469, 18.40544 ], [ -64.913504, 18.405478 ], [ -64.913538, 18.405493 ], [ -64.913578, 18.405505 ], [ -64.913608, 18.405553 ], [ -64.913596, 18.405594 ], [ -64.913631, 18.405644 ], [ -64.913677, 18.405666 ], [ -64.913792, 18.40567 ], [ -64.913867, 18.405693 ], [ -64.91392, 18.405697 ], [ -64.913937, 18.405735 ], [ -64.913897, 18.40579 ], [ -64.913896, 18.405808 ], [ -64.913892, 18.405826 ], [ -64.913919, 18.405846 ], [ -64.913959, 18.405863 ], [ -64.914, 18.405857 ], [ -64.914069, 18.405824 ], [ -64.914092, 18.405819 ], [ -64.914121, 18.405824 ], [ -64.914149, 18.405852 ], [ -64.914167, 18.405864 ], [ -64.914196, 18.405834 ], [ -64.914242, 18.405813 ], [ -64.91426, 18.405819 ], [ -64.914282, 18.405852 ], [ -64.914282, 18.405874 ], [ -64.914299, 18.405912 ], [ -64.914352, 18.40595 ], [ -64.91438, 18.405957 ], [ -64.914409, 18.405946 ], [ -64.914438, 18.405918 ], [ -64.914461, 18.405879 ], [ -64.914531, 18.405831 ], [ -64.914692, 18.405802 ], [ -64.914767, 18.405764 ], [ -64.914871, 18.405753 ], [ -64.914929, 18.405779 ], [ -64.915049, 18.405863 ], [ -64.91509, 18.405868 ], [ -64.915153, 18.405863 ], [ -64.915228, 18.405846 ], [ -64.915321, 18.405841 ], [ -64.915413, 18.405885 ], [ -64.915489, 18.405896 ], [ -64.915586, 18.40588 ], [ -64.915684, 18.405852 ], [ -64.916025, 18.405741 ], [ -64.916347, 18.405609 ], [ -64.916417, 18.405554 ], [ -64.91644, 18.405522 ], [ -64.916452, 18.405473 ], [ -64.916452, 18.405439 ], [ -64.916469, 18.405324 ], [ -64.916486, 18.405296 ], [ -64.916556, 18.405264 ], [ -64.916619, 18.405225 ], [ -64.916665, 18.405209 ], [ -64.916683, 18.405159 ], [ -64.916688, 18.405114 ], [ -64.916642, 18.405032 ], [ -64.916619, 18.404976 ], [ -64.916613, 18.404944 ], [ -64.916636, 18.404933 ], [ -64.916665, 18.404933 ], [ -64.91674, 18.404955 ], [ -64.91689, 18.404983 ], [ -64.917104, 18.40496 ], [ -64.91719, 18.404955 ], [ -64.917259, 18.404923 ], [ -64.9173, 18.404884 ], [ -64.917323, 18.404762 ], [ -64.917317, 18.404712 ], [ -64.917282, 18.404575 ], [ -64.917311, 18.404493 ], [ -64.917282, 18.404414 ], [ -64.917236, 18.404354 ], [ -64.917213, 18.404332 ], [ -64.917242, 18.404295 ], [ -64.917265, 18.404295 ], [ -64.917281, 18.404285 ], [ -64.917305, 18.404299 ], [ -64.917346, 18.404337 ], [ -64.917438, 18.404387 ], [ -64.917513, 18.404344 ], [ -64.91749, 18.404295 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "030", "TRACTCE10": "960200", "GEOID10": "78030960200", "NAME10": "9602", "NAMELSAD10": "Census Tract 9602", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 7002737, "AWATER10": 28670, "INTPTLAT10": "+18.3334120", "INTPTLON10": "-064.8882263" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.88142, 18.325678 ], [ -64.881925, 18.326558 ], [ -64.882427, 18.327506 ], [ -64.882873, 18.328463 ], [ -64.88289, 18.328496 ], [ -64.882913, 18.328529 ], [ -64.882942, 18.328546 ], [ -64.882959, 18.328579 ], [ -64.882999, 18.32864 ], [ -64.883017, 18.32875 ], [ -64.883034, 18.328783 ], [ -64.883051, 18.328865 ], [ -64.883063, 18.328898 ], [ -64.883069, 18.328931 ], [ -64.883078, 18.328958 ], [ -64.883084, 18.328964 ], [ -64.883103, 18.328983 ], [ -64.88311, 18.32899 ], [ -64.88313, 18.32887 ], [ -64.883222, 18.328677 ], [ -64.883369, 18.328477 ], [ -64.883572, 18.328256 ], [ -64.883839, 18.32803 ], [ -64.884224, 18.327794 ], [ -64.884277, 18.327767 ], [ -64.884333, 18.327742 ], [ -64.884389, 18.327718 ], [ -64.884443, 18.327696 ], [ -64.884471, 18.327673 ], [ -64.884499, 18.327652 ], [ -64.88453, 18.327629 ], [ -64.884561, 18.327609 ], [ -64.884591, 18.32759 ], [ -64.88462, 18.327571 ], [ -64.884654, 18.327554 ], [ -64.884688, 18.327536 ], [ -64.884721, 18.327521 ], [ -64.884755, 18.327505 ], [ -64.884793, 18.32749 ], [ -64.884827, 18.327478 ], [ -64.884842, 18.327479 ], [ -64.88486, 18.32748 ], [ -64.884876, 18.327479 ], [ -64.884894, 18.327477 ], [ -64.884912, 18.327474 ], [ -64.884927, 18.32747 ], [ -64.884944, 18.327464 ], [ -64.884958, 18.327458 ], [ -64.884972, 18.327452 ], [ -64.884984, 18.327444 ], [ -64.884997, 18.327436 ], [ -64.885009, 18.327427 ], [ -64.88502, 18.327418 ], [ -64.885031, 18.327407 ], [ -64.885041, 18.327396 ], [ -64.885051, 18.327384 ], [ -64.885091, 18.327369 ], [ -64.885131, 18.327353 ], [ -64.88517, 18.327335 ], [ -64.885209, 18.327317 ], [ -64.885247, 18.327298 ], [ -64.885282, 18.327279 ], [ -64.885318, 18.327257 ], [ -64.885355, 18.327235 ], [ -64.885416, 18.327194 ], [ -64.885475, 18.32715 ], [ -64.88557, 18.327055 ], [ -64.88567, 18.32696 ], [ -64.885768, 18.326869 ], [ -64.885873, 18.326779 ], [ -64.885948, 18.326716 ], [ -64.886025, 18.326655 ], [ -64.886101, 18.326594 ], [ -64.886179, 18.326537 ], [ -64.886272, 18.32647 ], [ -64.886367, 18.326405 ], [ -64.886463, 18.326341 ], [ -64.886559, 18.326281 ], [ -64.886658, 18.326221 ], [ -64.886758, 18.326163 ], [ -64.886858, 18.326108 ], [ -64.886961, 18.326054 ], [ -64.887046, 18.32601 ], [ -64.887131, 18.32597 ], [ -64.887215, 18.32593 ], [ -64.887305, 18.325891 ], [ -64.88742, 18.325843 ], [ -64.887534, 18.325797 ], [ -64.88763, 18.325752 ], [ -64.887727, 18.325709 ], [ -64.887823, 18.325666 ], [ -64.887921, 18.325624 ], [ -64.888009, 18.325588 ], [ -64.888092, 18.325555 ], [ -64.888261, 18.325489 ], [ -64.888397, 18.325439 ], [ -64.888536, 18.325392 ], [ -64.888673, 18.325346 ], [ -64.888813, 18.325302 ], [ -64.888953, 18.325261 ], [ -64.889093, 18.325221 ], [ -64.889235, 18.325184 ], [ -64.88938, 18.325148 ], [ -64.889408, 18.325144 ], [ -64.889481, 18.325137 ], [ -64.889517, 18.325135 ], [ -64.889557, 18.325136 ], [ -64.889599, 18.32514 ], [ -64.88964, 18.325147 ], [ -64.88968, 18.325156 ], [ -64.88972, 18.325168 ], [ -64.890069, 18.325326 ], [ -64.89093, 18.325761 ], [ -64.890969, 18.325784 ], [ -64.891013, 18.325805 ], [ -64.891046, 18.325819 ], [ -64.891079, 18.325831 ], [ -64.891113, 18.325842 ], [ -64.891148, 18.325852 ], [ -64.891183, 18.32586 ], [ -64.891217, 18.325866 ], [ -64.891254, 18.325872 ], [ -64.891289, 18.325875 ], [ -64.891324, 18.325877 ], [ -64.891527, 18.32584 ], [ -64.891733, 18.325789 ], [ -64.89187, 18.325762 ], [ -64.892162, 18.32572 ], [ -64.892302, 18.325703 ], [ -64.89237, 18.325707 ], [ -64.892675, 18.325759 ], [ -64.892922, 18.325811 ], [ -64.893024, 18.325824 ], [ -64.893269, 18.325816 ], [ -64.893589, 18.325797 ], [ -64.894068, 18.325748 ], [ -64.894358, 18.325704 ], [ -64.894816, 18.325611 ], [ -64.894941, 18.325582 ], [ -64.894937, 18.32528 ], [ -64.895079, 18.32485 ], [ -64.895125, 18.324679 ], [ -64.89511, 18.32451 ], [ -64.895086, 18.324405 ], [ -64.894944, 18.324085 ], [ -64.894919, 18.323909 ], [ -64.89497, 18.323722 ], [ -64.895121, 18.323582 ], [ -64.899876, 18.324688 ], [ -64.899466, 18.325548 ], [ -64.90006, 18.325891 ], [ -64.90015, 18.32594 ], [ -64.90024, 18.32599 ], [ -64.900408, 18.326124 ], [ -64.90044, 18.32615 ], [ -64.90056, 18.32623 ], [ -64.90076, 18.32635 ], [ -64.901382, 18.326834 ], [ -64.901878, 18.327152 ], [ -64.901944, 18.327178 ], [ -64.902007, 18.327202 ], [ -64.902101, 18.327234 ], [ -64.90218, 18.327259 ], [ -64.902258, 18.327283 ], [ -64.902337, 18.327306 ], [ -64.902416, 18.327327 ], [ -64.902461, 18.327345 ], [ -64.902506, 18.32736 ], [ -64.90255, 18.327371 ], [ -64.902601, 18.327381 ], [ -64.902654, 18.327389 ], [ -64.902709, 18.327394 ], [ -64.902755, 18.327397 ], [ -64.902801, 18.327397 ], [ -64.90295, 18.32741 ], [ -64.903262, 18.327396 ], [ -64.903397, 18.327394 ], [ -64.903504, 18.327395 ], [ -64.903665, 18.327409 ], [ -64.904386, 18.327435 ], [ -64.905395, 18.327492 ], [ -64.905574, 18.327508 ], [ -64.906098, 18.327468 ], [ -64.906163, 18.327471 ], [ -64.906165, 18.327561 ], [ -64.906167, 18.32765 ], [ -64.906167, 18.32774 ], [ -64.906166, 18.327827 ], [ -64.90616, 18.327903 ], [ -64.906155, 18.327979 ], [ -64.906147, 18.328161 ], [ -64.906136, 18.32834 ], [ -64.906133, 18.328415 ], [ -64.906135, 18.328462 ], [ -64.906137, 18.32852 ], [ -64.906138, 18.328628 ], [ -64.906138, 18.328736 ], [ -64.906138, 18.328841 ], [ -64.906138, 18.328949 ], [ -64.906142, 18.329057 ], [ -64.906144, 18.329105 ], [ -64.90615, 18.329133 ], [ -64.906155, 18.32916 ], [ -64.906159, 18.329188 ], [ -64.906161, 18.329215 ], [ -64.906161, 18.329235 ], [ -64.906155, 18.329251 ], [ -64.906155, 18.329267 ], [ -64.906154, 18.32928 ], [ -64.906155, 18.329291 ], [ -64.906155, 18.329307 ], [ -64.90616, 18.32932 ], [ -64.906165, 18.329335 ], [ -64.906171, 18.329347 ], [ -64.906178, 18.329361 ], [ -64.906186, 18.329372 ], [ -64.906197, 18.329384 ], [ -64.906206, 18.329394 ], [ -64.906204, 18.329426 ], [ -64.9062, 18.32946 ], [ -64.9062, 18.329492 ], [ -64.906203, 18.329523 ], [ -64.906205, 18.329555 ], [ -64.906208, 18.329587 ], [ -64.906212, 18.329618 ], [ -64.906217, 18.329649 ], [ -64.906228, 18.329696 ], [ -64.906242, 18.329739 ], [ -64.906254, 18.329774 ], [ -64.906285, 18.329851 ], [ -64.906307, 18.329918 ], [ -64.906332, 18.329989 ], [ -64.906352, 18.330061 ], [ -64.906369, 18.330139 ], [ -64.906386, 18.330217 ], [ -64.906397, 18.330296 ], [ -64.906408, 18.330375 ], [ -64.906405, 18.330479 ], [ -64.906397, 18.330585 ], [ -64.906391, 18.330701 ], [ -64.906379, 18.330818 ], [ -64.906374, 18.330912 ], [ -64.906367, 18.331009 ], [ -64.906368, 18.331036 ], [ -64.906367, 18.331063 ], [ -64.906363, 18.331101 ], [ -64.906358, 18.331134 ], [ -64.90635, 18.331167 ], [ -64.906343, 18.331188 ], [ -64.906335, 18.331209 ], [ -64.906328, 18.331229 ], [ -64.906319, 18.331249 ], [ -64.906305, 18.331304 ], [ -64.906293, 18.331356 ], [ -64.906282, 18.331416 ], [ -64.906273, 18.331477 ], [ -64.906259, 18.331539 ], [ -64.90625, 18.331577 ], [ -64.906242, 18.331617 ], [ -64.906238, 18.331647 ], [ -64.906236, 18.331676 ], [ -64.906234, 18.331706 ], [ -64.906234, 18.331734 ], [ -64.906228, 18.331761 ], [ -64.906222, 18.331788 ], [ -64.906215, 18.331813 ], [ -64.906206, 18.331839 ], [ -64.906206, 18.331862 ], [ -64.906205, 18.331896 ], [ -64.9062, 18.331931 ], [ -64.906195, 18.331965 ], [ -64.906188, 18.332 ], [ -64.906178, 18.332027 ], [ -64.906169, 18.332053 ], [ -64.906159, 18.332078 ], [ -64.906144, 18.332108 ], [ -64.906125, 18.332163 ], [ -64.906108, 18.332217 ], [ -64.906093, 18.332266 ], [ -64.906081, 18.332318 ], [ -64.906071, 18.332368 ], [ -64.90606, 18.332421 ], [ -64.906054, 18.33245 ], [ -64.906045, 18.332484 ], [ -64.906035, 18.332518 ], [ -64.90602, 18.332557 ], [ -64.906003, 18.332597 ], [ -64.905986, 18.332637 ], [ -64.905966, 18.332676 ], [ -64.905953, 18.332715 ], [ -64.905941, 18.332751 ], [ -64.905932, 18.332785 ], [ -64.905924, 18.33282 ], [ -64.905916, 18.332854 ], [ -64.90591, 18.332889 ], [ -64.905874, 18.333024 ], [ -64.905838, 18.333155 ], [ -64.905834, 18.333184 ], [ -64.905829, 18.333211 ], [ -64.905823, 18.333238 ], [ -64.905815, 18.333266 ], [ -64.90581, 18.33328 ], [ -64.905752, 18.333409 ], [ -64.905694, 18.33354 ], [ -64.905686, 18.333555 ], [ -64.905679, 18.333571 ], [ -64.905671, 18.333587 ], [ -64.90567, 18.333604 ], [ -64.905666, 18.333622 ], [ -64.905668, 18.333635 ], [ -64.905666, 18.333645 ], [ -64.905665, 18.333657 ], [ -64.905662, 18.333669 ], [ -64.905658, 18.333679 ], [ -64.905652, 18.33369 ], [ -64.905646, 18.333699 ], [ -64.90564, 18.333708 ], [ -64.905626, 18.333734 ], [ -64.905607, 18.333782 ], [ -64.905589, 18.333831 ], [ -64.905576, 18.333856 ], [ -64.905567, 18.333882 ], [ -64.905557, 18.33391 ], [ -64.905547, 18.333938 ], [ -64.90554, 18.333965 ], [ -64.905534, 18.333994 ], [ -64.905529, 18.334021 ], [ -64.905525, 18.33405 ], [ -64.905514, 18.334159 ], [ -64.905502, 18.334267 ], [ -64.905502, 18.3343 ], [ -64.9055, 18.334334 ], [ -64.905497, 18.334367 ], [ -64.905491, 18.334401 ], [ -64.905485, 18.334551 ], [ -64.905484, 18.334637 ], [ -64.90548, 18.334726 ], [ -64.905474, 18.33482 ], [ -64.905467, 18.334889 ], [ -64.905465, 18.334914 ], [ -64.905461, 18.334977 ], [ -64.90546, 18.335014 ], [ -64.90546, 18.335054 ], [ -64.905463, 18.335146 ], [ -64.905462, 18.335185 ], [ -64.905461, 18.335227 ], [ -64.905457, 18.335277 ], [ -64.905452, 18.335327 ], [ -64.905446, 18.335377 ], [ -64.905438, 18.335424 ], [ -64.9054, 18.335593 ], [ -64.905379, 18.335665 ], [ -64.90537, 18.335699 ], [ -64.905306, 18.336053 ], [ -64.904876, 18.338436 ], [ -64.904469, 18.340167 ], [ -64.904195, 18.341617 ], [ -64.904139, 18.341913 ], [ -64.90412, 18.342017 ], [ -64.904619, 18.343575 ], [ -64.904697, 18.343838 ], [ -64.904759, 18.344012 ], [ -64.904694, 18.344011 ], [ -64.904418, 18.343999 ], [ -64.904227, 18.343997 ], [ -64.903808, 18.343994 ], [ -64.90366, 18.343954 ], [ -64.903227, 18.343899 ], [ -64.903076, 18.343846 ], [ -64.902983, 18.343819 ], [ -64.902686, 18.343791 ], [ -64.902139, 18.343684 ], [ -64.901806, 18.343647 ], [ -64.901752, 18.343641 ], [ -64.901602, 18.343627 ], [ -64.901393, 18.343605 ], [ -64.901144, 18.343574 ], [ -64.90081, 18.343466 ], [ -64.899926, 18.343926 ], [ -64.899178, 18.34446 ], [ -64.899094, 18.344511 ], [ -64.898475, 18.344123 ], [ -64.898444, 18.344096 ], [ -64.898235, 18.343914 ], [ -64.897822, 18.343718 ], [ -64.897586, 18.3436 ], [ -64.89736, 18.343551 ], [ -64.896834, 18.34328 ], [ -64.896514, 18.343082 ], [ -64.896326, 18.342965 ], [ -64.895861, 18.342676 ], [ -64.894772, 18.342019 ], [ -64.893353, 18.342044 ], [ -64.89245, 18.341984 ], [ -64.892363, 18.341974 ], [ -64.891323, 18.341849 ], [ -64.891183, 18.341875 ], [ -64.891059, 18.341844 ], [ -64.890843, 18.341835 ], [ -64.890201, 18.341817 ], [ -64.889219, 18.341685 ], [ -64.888717, 18.34156 ], [ -64.888683, 18.341553 ], [ -64.88819, 18.34142 ], [ -64.888157, 18.341373 ], [ -64.88807, 18.34125 ], [ -64.888058, 18.341234 ], [ -64.888025, 18.341189 ], [ -64.888002, 18.34116 ], [ -64.887936, 18.341072 ], [ -64.887915, 18.341044 ], [ -64.887904, 18.341029 ], [ -64.887871, 18.340984 ], [ -64.88786, 18.34097 ], [ -64.887784, 18.340858 ], [ -64.887775, 18.340845 ], [ -64.88769, 18.34072 ], [ -64.88757, 18.34052 ], [ -64.887569, 18.340517 ], [ -64.88755, 18.34042 ], [ -64.88755, 18.340385 ], [ -64.88755, 18.340374 ], [ -64.88755, 18.340344 ], [ -64.88755, 18.340334 ], [ -64.88755, 18.340275 ], [ -64.88755, 18.34026 ], [ -64.887542, 18.340098 ], [ -64.88754, 18.34004 ], [ -64.887399, 18.340045 ], [ -64.88702, 18.34006 ], [ -64.886979, 18.340064 ], [ -64.88684, 18.34008 ], [ -64.88671, 18.34011 ], [ -64.88663, 18.34017 ], [ -64.886433, 18.340304 ], [ -64.88631, 18.34039 ], [ -64.88596, 18.34058 ], [ -64.88575, 18.34066 ], [ -64.88553, 18.34076 ], [ -64.8853, 18.34087 ], [ -64.8852, 18.34091 ], [ -64.885171, 18.34093 ], [ -64.88509, 18.34099 ], [ -64.8848, 18.34122 ], [ -64.884791, 18.341225 ], [ -64.884767, 18.341244 ], [ -64.88476, 18.34125 ], [ -64.88461, 18.34136 ], [ -64.88444, 18.34145 ], [ -64.884367, 18.341482 ], [ -64.88418, 18.34157 ], [ -64.8837, 18.34178 ], [ -64.883116, 18.342042 ], [ -64.8827, 18.34223 ], [ -64.882639, 18.342257 ], [ -64.882459, 18.342342 ], [ -64.8824, 18.34237 ], [ -64.882312, 18.342407 ], [ -64.882048, 18.342522 ], [ -64.88196, 18.34256 ], [ -64.88195, 18.342564 ], [ -64.881924, 18.342576 ], [ -64.881915, 18.342581 ], [ -64.881906, 18.342584 ], [ -64.881879, 18.342597 ], [ -64.881872, 18.342602 ], [ -64.881817, 18.342627 ], [ -64.881654, 18.342704 ], [ -64.8816, 18.34273 ], [ -64.881574, 18.342741 ], [ -64.881499, 18.342775 ], [ -64.881474, 18.342787 ], [ -64.881455, 18.342795 ], [ -64.881398, 18.342821 ], [ -64.88138, 18.34283 ], [ -64.88135, 18.34291 ], [ -64.881319, 18.342946 ], [ -64.88115, 18.34315 ], [ -64.88112, 18.34321 ], [ -64.881119, 18.343275 ], [ -64.88112, 18.34328 ], [ -64.88113, 18.34336 ], [ -64.881143, 18.343406 ], [ -64.881182, 18.343557 ], [ -64.88119, 18.34358 ], [ -64.88122, 18.34371 ], [ -64.88124, 18.34386 ], [ -64.88123, 18.34398 ], [ -64.881223, 18.344021 ], [ -64.88122, 18.34404 ], [ -64.8812, 18.34409 ], [ -64.88114, 18.34415 ], [ -64.88085, 18.34434 ], [ -64.88076, 18.34438 ], [ -64.88067, 18.34441 ], [ -64.88058, 18.34443 ], [ -64.8804, 18.34443 ], [ -64.88015, 18.34439 ], [ -64.87999, 18.34441 ], [ -64.87994, 18.34444 ], [ -64.8799, 18.34448 ], [ -64.879445, 18.344506 ], [ -64.87907, 18.34446 ], [ -64.87904, 18.34439 ], [ -64.878969, 18.34429 ], [ -64.87887, 18.34422 ], [ -64.87878, 18.34422 ], [ -64.87869, 18.34423 ], [ -64.87859, 18.34427 ], [ -64.87851, 18.34433 ], [ -64.878429, 18.34436 ], [ -64.87837, 18.34435 ], [ -64.878424, 18.344269 ], [ -64.878445, 18.344237 ], [ -64.878478, 18.344188 ], [ -64.877948, 18.343308 ], [ -64.87639, 18.340351 ], [ -64.876344, 18.340283 ], [ -64.87629, 18.340298 ], [ -64.876249, 18.340259 ], [ -64.87621, 18.34018 ], [ -64.87613, 18.34007 ], [ -64.87606, 18.33995 ], [ -64.876059, 18.339949 ], [ -64.876035, 18.3399 ], [ -64.87601, 18.33985 ], [ -64.876009, 18.339849 ], [ -64.875875, 18.339595 ], [ -64.87587, 18.339587 ], [ -64.87574, 18.33934 ], [ -64.87546, 18.33881 ], [ -64.87534, 18.33875 ], [ -64.87524, 18.33871 ], [ -64.8751, 18.33868 ], [ -64.875052, 18.33868 ], [ -64.87497, 18.33868 ], [ -64.87486, 18.33867 ], [ -64.87475, 18.33863 ], [ -64.87463, 18.33854 ], [ -64.87448, 18.3384 ], [ -64.87433, 18.33829 ], [ -64.874288, 18.338267 ], [ -64.87418, 18.33821 ], [ -64.874162, 18.338201 ], [ -64.874121, 18.33818 ], [ -64.873999, 18.33812 ], [ -64.8737, 18.33799 ], [ -64.87316, 18.33769 ], [ -64.87284, 18.3375 ], [ -64.872569, 18.33735 ], [ -64.87226, 18.33715 ], [ -64.8721, 18.33702 ], [ -64.872, 18.33693 ], [ -64.871977, 18.336837 ], [ -64.87197, 18.33681 ], [ -64.87195, 18.33669 ], [ -64.87195, 18.33662 ], [ -64.87197, 18.3365 ], [ -64.87189, 18.33645 ], [ -64.87181, 18.33642 ], [ -64.871769, 18.336209 ], [ -64.871706, 18.335704 ], [ -64.871674, 18.33559 ], [ -64.871584, 18.335358 ], [ -64.871472, 18.335085 ], [ -64.871353, 18.335019 ], [ -64.87119, 18.334933 ], [ -64.870825, 18.334742 ], [ -64.870787, 18.334721 ], [ -64.870734, 18.334691 ], [ -64.870611, 18.334626 ], [ -64.870549, 18.334594 ], [ -64.870526, 18.334583 ], [ -64.870262, 18.334441 ], [ -64.870132, 18.334375 ], [ -64.869997, 18.334299 ], [ -64.869856, 18.334225 ], [ -64.869665, 18.334122 ], [ -64.869254, 18.333896 ], [ -64.866862, 18.333855 ], [ -64.866861, 18.333622 ], [ -64.866861, 18.332942 ], [ -64.866749, 18.32991 ], [ -64.86675, 18.32991 ], [ -64.86675, 18.32978 ], [ -64.86676, 18.32961 ], [ -64.86676, 18.3294 ], [ -64.86675, 18.32919 ], [ -64.86675, 18.32895 ], [ -64.86673, 18.32864 ], [ -64.86671, 18.32828 ], [ -64.86673, 18.32793 ], [ -64.866739, 18.3276 ], [ -64.86674, 18.3276 ], [ -64.86674, 18.32715 ], [ -64.86677, 18.32652 ], [ -64.866772, 18.326368 ], [ -64.86678, 18.32592 ], [ -64.86677, 18.32569 ], [ -64.86678, 18.32549 ], [ -64.870135, 18.325014 ], [ -64.873128, 18.32445 ], [ -64.873576, 18.324365 ], [ -64.873638, 18.324354 ], [ -64.873703, 18.324321 ], [ -64.873716, 18.324315 ], [ -64.87492, 18.323901 ], [ -64.876515, 18.323358 ], [ -64.877235, 18.323399 ], [ -64.87728, 18.323402 ], [ -64.87726, 18.323553 ], [ -64.877263, 18.323593 ], [ -64.877263, 18.323635 ], [ -64.878564, 18.323731 ], [ -64.878881, 18.323754 ], [ -64.878801, 18.323874 ], [ -64.879044, 18.32397 ], [ -64.879622, 18.324243 ], [ -64.88011, 18.324516 ], [ -64.880291, 18.324619 ], [ -64.8806, 18.32487 ], [ -64.881121, 18.325408 ], [ -64.88142, 18.325678 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "030", "TRACTCE10": "960900", "GEOID10": "78030960900", "NAME10": "9609", "NAMELSAD10": "Census Tract 9609", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 8151097, "AWATER10": 3041657, "INTPTLAT10": "+18.3251552", "INTPTLON10": "-064.8843562" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.851272, 18.230304 ], [ -64.851387, 18.230352 ], [ -64.851425, 18.23039 ], [ -64.85147, 18.230403 ], [ -64.851524, 18.23044 ], [ -64.851554, 18.230419 ], [ -64.851585, 18.230409 ], [ -64.851615, 18.230434 ], [ -64.851661, 18.230436 ], [ -64.851753, 18.230466 ], [ -64.851776, 18.230461 ], [ -64.851852, 18.230501 ], [ -64.85189, 18.230495 ], [ -64.851898, 18.23048 ], [ -64.851898, 18.230445 ], [ -64.851913, 18.23043 ], [ -64.851936, 18.230434 ], [ -64.851959, 18.230449 ], [ -64.851974, 18.230476 ], [ -64.852005, 18.230495 ], [ -64.852035, 18.23056 ], [ -64.852073, 18.230567 ], [ -64.852294, 18.230567 ], [ -64.852401, 18.230588 ], [ -64.852462, 18.230617 ], [ -64.852485, 18.230653 ], [ -64.852554, 18.230714 ], [ -64.852592, 18.23071 ], [ -64.852607, 18.230737 ], [ -64.852706, 18.230792 ], [ -64.852767, 18.230798 ], [ -64.85279, 18.230817 ], [ -64.852851, 18.230892 ], [ -64.852897, 18.230936 ], [ -64.852951, 18.231092 ], [ -64.852935, 18.231128 ], [ -64.852951, 18.23117 ], [ -64.852989, 18.231191 ], [ -64.853019, 18.231227 ], [ -64.853042, 18.231279 ], [ -64.853034, 18.231332 ], [ -64.853065, 18.231357 ], [ -64.853164, 18.231397 ], [ -64.853149, 18.231496 ], [ -64.853157, 18.231534 ], [ -64.853195, 18.231544 ], [ -64.853126, 18.231613 ], [ -64.853134, 18.231637 ], [ -64.853195, 18.23167 ], [ -64.853286, 18.231685 ], [ -64.853302, 18.231805 ], [ -64.85334, 18.231826 ], [ -64.853446, 18.231832 ], [ -64.853507, 18.231868 ], [ -64.853515, 18.231922 ], [ -64.8535, 18.231981 ], [ -64.853462, 18.232019 ], [ -64.853332, 18.232023 ], [ -64.853324, 18.232044 ], [ -64.853358, 18.232094 ], [ -64.853485, 18.232112 ], [ -64.853553, 18.232109 ], [ -64.853591, 18.232074 ], [ -64.853637, 18.232051 ], [ -64.853683, 18.232074 ], [ -64.85366, 18.232143 ], [ -64.853698, 18.232173 ], [ -64.853713, 18.232212 ], [ -64.853713, 18.232326 ], [ -64.853675, 18.232337 ], [ -64.853607, 18.232309 ], [ -64.853538, 18.232259 ], [ -64.853523, 18.232316 ], [ -64.8535, 18.232337 ], [ -64.853446, 18.232315 ], [ -64.853416, 18.232326 ], [ -64.853363, 18.232372 ], [ -64.853332, 18.232387 ], [ -64.853248, 18.232355 ], [ -64.853225, 18.232355 ], [ -64.853202, 18.232398 ], [ -64.853164, 18.232404 ], [ -64.853096, 18.23245 ], [ -64.853012, 18.232574 ], [ -64.852958, 18.232593 ], [ -64.85289, 18.23258 ], [ -64.852851, 18.232604 ], [ -64.852775, 18.232666 ], [ -64.852584, 18.232673 ], [ -64.852569, 18.232692 ], [ -64.852523, 18.232707 ], [ -64.85234, 18.232694 ], [ -64.852157, 18.232604 ], [ -64.852073, 18.232534 ], [ -64.852012, 18.232505 ], [ -64.851921, 18.232549 ], [ -64.851898, 18.232538 ], [ -64.851882, 18.232513 ], [ -64.85186, 18.232454 ], [ -64.851882, 18.23244 ], [ -64.85189, 18.232414 ], [ -64.851821, 18.232345 ], [ -64.851791, 18.232294 ], [ -64.851814, 18.232273 ], [ -64.851821, 18.232233 ], [ -64.851776, 18.23221 ], [ -64.851745, 18.23221 ], [ -64.851715, 18.232229 ], [ -64.851669, 18.232229 ], [ -64.851577, 18.232288 ], [ -64.851486, 18.232196 ], [ -64.851432, 18.232101 ], [ -64.851394, 18.232051 ], [ -64.851371, 18.231992 ], [ -64.851325, 18.231948 ], [ -64.851318, 18.231925 ], [ -64.851333, 18.231889 ], [ -64.85128, 18.23184 ], [ -64.851234, 18.231744 ], [ -64.851127, 18.231639 ], [ -64.851119, 18.231595 ], [ -64.851112, 18.231517 ], [ -64.851058, 18.231512 ], [ -64.851043, 18.231496 ], [ -64.851005, 18.23143 ], [ -64.850975, 18.231369 ], [ -64.850936, 18.231218 ], [ -64.850944, 18.231109 ], [ -64.850967, 18.231067 ], [ -64.850975, 18.23105 ], [ -64.850967, 18.231037 ], [ -64.850891, 18.230989 ], [ -64.850822, 18.23088 ], [ -64.850847, 18.230833 ], [ -64.850822, 18.230747 ], [ -64.850822, 18.23069 ], [ -64.850883, 18.230648 ], [ -64.850929, 18.230627 ], [ -64.850898, 18.2306 ], [ -64.850883, 18.230573 ], [ -64.850837, 18.230512 ], [ -64.850845, 18.230466 ], [ -64.850883, 18.230451 ], [ -64.850944, 18.230455 ], [ -64.851066, 18.23055 ], [ -64.851066, 18.230491 ], [ -64.851074, 18.230417 ], [ -64.851127, 18.230377 ], [ -64.851158, 18.230363 ], [ -64.851135, 18.230348 ], [ -64.851158, 18.230325 ], [ -64.851181, 18.230339 ], [ -64.851272, 18.230304 ] ] ], [ [ [ -64.9084, 18.309712 ], [ -64.908384, 18.309743 ], [ -64.908389, 18.309765 ], [ -64.908392, 18.309787 ], [ -64.908384, 18.309809 ], [ -64.908364, 18.309809 ], [ -64.908353, 18.309812 ], [ -64.908337, 18.30984 ], [ -64.908339, 18.309873 ], [ -64.908331, 18.309909 ], [ -64.908317, 18.309934 ], [ -64.908326, 18.309968 ], [ -64.908309, 18.309995 ], [ -64.908295, 18.310009 ], [ -64.90832, 18.310029 ], [ -64.908328, 18.310056 ], [ -64.90832, 18.310092 ], [ -64.908287, 18.310092 ], [ -64.908287, 18.310114 ], [ -64.908267, 18.310117 ], [ -64.908267, 18.310142 ], [ -64.908245, 18.310148 ], [ -64.908217, 18.310181 ], [ -64.908215, 18.310195 ], [ -64.908184, 18.310212 ], [ -64.908162, 18.310223 ], [ -64.90812, 18.310231 ], [ -64.908101, 18.310248 ], [ -64.908087, 18.310256 ], [ -64.908082, 18.310267 ], [ -64.908057, 18.310281 ], [ -64.908032, 18.310273 ], [ -64.908004, 18.310256 ], [ -64.907979, 18.310248 ], [ -64.907954, 18.31025 ], [ -64.907921, 18.310242 ], [ -64.907899, 18.310225 ], [ -64.907887, 18.310198 ], [ -64.907887, 18.310159 ], [ -64.90789, 18.310101 ], [ -64.907871, 18.310048 ], [ -64.907846, 18.310026 ], [ -64.907835, 18.309987 ], [ -64.907838, 18.309968 ], [ -64.907868, 18.309951 ], [ -64.907879, 18.309943 ], [ -64.907904, 18.309907 ], [ -64.907923, 18.309884 ], [ -64.907951, 18.309859 ], [ -64.907965, 18.309823 ], [ -64.90796, 18.309798 ], [ -64.907962, 18.30976 ], [ -64.907962, 18.309735 ], [ -64.907962, 18.30971 ], [ -64.907968, 18.30966 ], [ -64.907987, 18.309651 ], [ -64.90804, 18.309626 ], [ -64.908057, 18.309599 ], [ -64.908065, 18.309552 ], [ -64.908076, 18.309549 ], [ -64.908106, 18.309554 ], [ -64.908126, 18.30956 ], [ -64.908148, 18.309579 ], [ -64.90819, 18.309593 ], [ -64.908237, 18.309596 ], [ -64.908259, 18.309613 ], [ -64.908287, 18.309638 ], [ -64.908317, 18.309643 ], [ -64.908345, 18.309657 ], [ -64.908367, 18.309679 ], [ -64.908398, 18.309671 ], [ -64.908403, 18.309682 ], [ -64.9084, 18.309712 ] ] ], [ [ [ -64.908204, 18.309155 ], [ -64.908209, 18.30918 ], [ -64.908212, 18.309197 ], [ -64.908187, 18.309213 ], [ -64.908179, 18.309227 ], [ -64.908156, 18.309247 ], [ -64.90814, 18.309269 ], [ -64.90814, 18.309291 ], [ -64.908123, 18.309326 ], [ -64.908098, 18.309321 ], [ -64.908068, 18.309321 ], [ -64.908048, 18.309324 ], [ -64.908059, 18.309335 ], [ -64.908054, 18.309352 ], [ -64.908045, 18.309358 ], [ -64.908043, 18.30938 ], [ -64.908037, 18.309394 ], [ -64.908018, 18.309407 ], [ -64.907971, 18.309407 ], [ -64.907918, 18.309407 ], [ -64.907904, 18.309407 ], [ -64.907874, 18.309394 ], [ -64.907843, 18.309374 ], [ -64.907829, 18.309338 ], [ -64.90784, 18.309299 ], [ -64.907874, 18.309277 ], [ -64.907907, 18.309277 ], [ -64.90799, 18.309252 ], [ -64.908012, 18.309238 ], [ -64.908062, 18.309197 ], [ -64.908076, 18.30915 ], [ -64.908148, 18.309141 ], [ -64.908204, 18.309155 ] ] ], [ [ [ -64.89143, 18.278818 ], [ -64.886413, 18.276882 ], [ -64.886361, 18.276878 ], [ -64.886309, 18.276861 ], [ -64.886274, 18.276845 ], [ -64.886219, 18.276794 ], [ -64.886159, 18.276752 ], [ -64.886124, 18.276719 ], [ -64.886084, 18.276692 ], [ -64.886049, 18.276674 ], [ -64.885998, 18.276641 ], [ -64.885942, 18.276614 ], [ -64.885807, 18.276586 ], [ -64.885738, 18.276564 ], [ -64.885697, 18.276521 ], [ -64.885679, 18.276489 ], [ -64.885667, 18.276455 ], [ -64.885621, 18.276368 ], [ -64.885608, 18.276332 ], [ -64.885603, 18.276282 ], [ -64.885614, 18.276233 ], [ -64.885637, 18.276167 ], [ -64.885654, 18.276134 ], [ -64.885666, 18.2761 ], [ -64.885683, 18.276067 ], [ -64.885707, 18.276032 ], [ -64.885724, 18.275985 ], [ -64.885718, 18.275941 ], [ -64.885706, 18.275908 ], [ -64.885701, 18.27588 ], [ -64.885706, 18.275847 ], [ -64.885753, 18.275781 ], [ -64.885822, 18.275721 ], [ -64.885863, 18.275695 ], [ -64.885891, 18.27566 ], [ -64.885926, 18.275632 ], [ -64.885954, 18.275599 ], [ -64.885983, 18.275577 ], [ -64.886018, 18.275561 ], [ -64.886053, 18.275523 ], [ -64.886075, 18.2755 ], [ -64.886099, 18.275462 ], [ -64.886127, 18.275429 ], [ -64.886168, 18.275335 ], [ -64.886197, 18.275208 ], [ -64.886197, 18.275175 ], [ -64.886208, 18.275142 ], [ -64.886214, 18.275087 ], [ -64.886209, 18.275056 ], [ -64.886231, 18.275021 ], [ -64.886272, 18.274994 ], [ -64.886295, 18.274961 ], [ -64.886319, 18.274941 ], [ -64.886358, 18.274889 ], [ -64.886393, 18.274818 ], [ -64.886427, 18.274718 ], [ -64.886433, 18.274663 ], [ -64.886445, 18.274614 ], [ -64.886544, 18.274561 ], [ -64.886554, 18.274465 ], [ -64.886571, 18.274391 ], [ -64.886589, 18.274316 ], [ -64.886606, 18.274283 ], [ -64.886647, 18.274245 ], [ -64.886716, 18.274235 ], [ -64.886722, 18.274201 ], [ -64.886683, 18.274122 ], [ -64.886665, 18.274071 ], [ -64.886659, 18.274021 ], [ -64.886694, 18.273976 ], [ -64.886746, 18.273955 ], [ -64.88678, 18.27395 ], [ -64.886814, 18.27395 ], [ -64.886848, 18.27396 ], [ -64.886987, 18.27397 ], [ -64.887056, 18.273966 ], [ -64.887114, 18.273953 ], [ -64.887252, 18.273932 ], [ -64.887327, 18.273937 ], [ -64.887362, 18.273958 ], [ -64.887386, 18.27399 ], [ -64.887421, 18.273996 ], [ -64.887523, 18.273955 ], [ -64.88761, 18.273933 ], [ -64.88773, 18.273942 ], [ -64.887765, 18.273959 ], [ -64.88784, 18.273982 ], [ -64.887892, 18.273993 ], [ -64.887944, 18.273999 ], [ -64.887979, 18.273988 ], [ -64.88805, 18.273955 ], [ -64.888102, 18.273939 ], [ -64.888188, 18.27394 ], [ -64.896418, 18.274186 ], [ -64.896419, 18.274186 ], [ -64.896884, 18.274345 ], [ -64.898889, 18.27701 ], [ -64.89889, 18.277011 ], [ -64.898896, 18.277179 ], [ -64.898746, 18.277301 ], [ -64.898396, 18.277461 ], [ -64.898211, 18.277582 ], [ -64.898039, 18.277586 ], [ -64.897788, 18.277497 ], [ -64.897466, 18.277566 ], [ -64.897248, 18.277662 ], [ -64.897203, 18.277812 ], [ -64.897189, 18.278029 ], [ -64.89682, 18.278271 ], [ -64.893662, 18.279802 ], [ -64.893423, 18.27962 ], [ -64.893214, 18.279682 ], [ -64.892913, 18.279568 ], [ -64.892548, 18.279569 ], [ -64.891917, 18.279137 ], [ -64.89143, 18.278818 ] ] ], [ [ [ -64.881472, 18.317088 ], [ -64.881396, 18.317081 ], [ -64.881341, 18.317095 ], [ -64.881289, 18.317072 ], [ -64.881192, 18.317064 ], [ -64.881114, 18.317076 ], [ -64.881055, 18.31708 ], [ -64.880989, 18.317111 ], [ -64.880903, 18.317133 ], [ -64.880835, 18.317158 ], [ -64.880735, 18.317137 ], [ -64.880671, 18.31715 ], [ -64.880628, 18.317185 ], [ -64.880534, 18.317197 ], [ -64.880487, 18.317201 ], [ -64.880405, 18.317164 ], [ -64.880358, 18.317111 ], [ -64.880283, 18.317041 ], [ -64.880199, 18.316978 ], [ -64.880144, 18.316979 ], [ -64.879799, 18.316877 ], [ -64.879527, 18.316763 ], [ -64.879478, 18.316742 ], [ -64.879395, 18.316738 ], [ -64.879341, 18.316753 ], [ -64.879128, 18.316708 ], [ -64.879089, 18.316669 ], [ -64.878987, 18.316637 ], [ -64.878876, 18.316594 ], [ -64.878757, 18.316541 ], [ -64.878578, 18.316483 ], [ -64.878502, 18.316513 ], [ -64.878435, 18.316498 ], [ -64.878317, 18.316501 ], [ -64.878288, 18.316519 ], [ -64.878235, 18.316582 ], [ -64.878204, 18.316664 ], [ -64.878227, 18.316757 ], [ -64.878059, 18.316669 ], [ -64.877968, 18.316689 ], [ -64.877829, 18.31675 ], [ -64.877686, 18.3167 ], [ -64.877651, 18.316682 ], [ -64.877571, 18.316641 ], [ -64.877451, 18.316618 ], [ -64.877182, 18.316565 ], [ -64.876945, 18.316565 ], [ -64.87677, 18.316586 ], [ -64.876543, 18.316652 ], [ -64.876335, 18.316723 ], [ -64.876266, 18.316713 ], [ -64.87616, 18.316668 ], [ -64.876105, 18.316655 ], [ -64.876015, 18.316635 ], [ -64.875952, 18.316605 ], [ -64.875916, 18.316587 ], [ -64.875893, 18.316551 ], [ -64.875893, 18.316471 ], [ -64.875893, 18.316427 ], [ -64.875824, 18.31637 ], [ -64.87574, 18.316273 ], [ -64.875534, 18.316204 ], [ -64.875366, 18.316132 ], [ -64.875259, 18.316147 ], [ -64.875137, 18.316208 ], [ -64.875121, 18.316229 ], [ -64.875088, 18.316272 ], [ -64.875031, 18.316328 ], [ -64.874985, 18.316368 ], [ -64.874931, 18.316437 ], [ -64.874908, 18.316498 ], [ -64.874889, 18.316622 ], [ -64.874886, 18.316736 ], [ -64.87487, 18.316788 ], [ -64.87485, 18.316855 ], [ -64.87485, 18.316905 ], [ -64.874802, 18.316919 ], [ -64.874625, 18.31696 ], [ -64.874496, 18.316948 ], [ -64.874359, 18.316904 ], [ -64.874006, 18.316975 ], [ -64.873825, 18.31702 ], [ -64.873764, 18.317024 ], [ -64.87365, 18.317081 ], [ -64.873618, 18.31718 ], [ -64.873388, 18.317356 ], [ -64.873329, 18.317448 ], [ -64.873225, 18.317531 ], [ -64.872978, 18.31773 ], [ -64.872498, 18.318008 ], [ -64.872437, 18.318027 ], [ -64.87236, 18.318029 ], [ -64.872291, 18.318112 ], [ -64.872194, 18.318232 ], [ -64.872154, 18.318306 ], [ -64.8722, 18.318438 ], [ -64.872185, 18.318533 ], [ -64.872238, 18.318613 ], [ -64.87226, 18.318638 ], [ -64.872284, 18.318665 ], [ -64.872278, 18.318695 ], [ -64.872269, 18.318737 ], [ -64.872177, 18.318823 ], [ -64.872116, 18.318857 ], [ -64.872057, 18.318857 ], [ -64.872017, 18.318857 ], [ -64.872002, 18.318871 ], [ -64.871964, 18.318907 ], [ -64.871912, 18.318923 ], [ -64.871872, 18.318935 ], [ -64.87182, 18.318937 ], [ -64.871773, 18.318932 ], [ -64.871681, 18.318897 ], [ -64.871605, 18.318898 ], [ -64.871479, 18.318889 ], [ -64.871424, 18.318889 ], [ -64.871307, 18.318905 ], [ -64.871247, 18.31889 ], [ -64.871103, 18.318854 ], [ -64.871055, 18.318842 ], [ -64.87103, 18.318835 ], [ -64.871008, 18.318854 ], [ -64.870987, 18.318888 ], [ -64.87094, 18.318861 ], [ -64.870899, 18.318837 ], [ -64.870886, 18.318798 ], [ -64.87088, 18.318762 ], [ -64.870861, 18.318751 ], [ -64.87083, 18.318725 ], [ -64.870807, 18.318707 ], [ -64.870781, 18.318708 ], [ -64.87075, 18.318712 ], [ -64.870745, 18.318722 ], [ -64.870737, 18.318736 ], [ -64.870716, 18.31875 ], [ -64.87069, 18.318742 ], [ -64.870476, 18.318642 ], [ -64.870302, 18.318612 ], [ -64.87014, 18.318607 ], [ -64.870064, 18.3186 ], [ -64.870041, 18.318604 ], [ -64.87002, 18.318604 ], [ -64.869781, 18.318621 ], [ -64.869629, 18.31868 ], [ -64.869534, 18.318733 ], [ -64.869438, 18.318769 ], [ -64.869377, 18.318729 ], [ -64.869324, 18.318638 ], [ -64.869286, 18.3186 ], [ -64.868349, 18.317852 ], [ -64.866079, 18.316039 ], [ -64.866054, 18.316028 ], [ -64.866009, 18.315999 ], [ -64.865982, 18.316 ], [ -64.865907, 18.316009 ], [ -64.86586, 18.315986 ], [ -64.865831, 18.315944 ], [ -64.865767, 18.31598 ], [ -64.865705, 18.315972 ], [ -64.865616, 18.315933 ], [ -64.865556, 18.31589 ], [ -64.865468, 18.315771 ], [ -64.86544, 18.315716 ], [ -64.865409, 18.315697 ], [ -64.865364, 18.31567 ], [ -64.865349, 18.315643 ], [ -64.865319, 18.315646 ], [ -64.865303, 18.315647 ], [ -64.865282, 18.315612 ], [ -64.865265, 18.315584 ], [ -64.865234, 18.315577 ], [ -64.865204, 18.315582 ], [ -64.865166, 18.315559 ], [ -64.865115, 18.315569 ], [ -64.865074, 18.315693 ], [ -64.864998, 18.315727 ], [ -64.864952, 18.315802 ], [ -64.864957, 18.315833 ], [ -64.864964, 18.315879 ], [ -64.86496, 18.315935 ], [ -64.865003, 18.315935 ], [ -64.865032, 18.315942 ], [ -64.865034, 18.315965 ], [ -64.865013, 18.315994 ], [ -64.864996, 18.316 ], [ -64.864971, 18.316007 ], [ -64.864914, 18.316025 ], [ -64.864914, 18.315996 ], [ -64.864895, 18.31599 ], [ -64.864839, 18.316026 ], [ -64.864815, 18.316069 ], [ -64.864807, 18.316139 ], [ -64.864815, 18.31617 ], [ -64.86485, 18.316186 ], [ -64.864868, 18.31625 ], [ -64.864774, 18.316273 ], [ -64.864704, 18.316326 ], [ -64.864693, 18.31642 ], [ -64.864723, 18.316483 ], [ -64.864744, 18.316486 ], [ -64.86483, 18.31654 ], [ -64.864823, 18.316562 ], [ -64.86481, 18.316627 ], [ -64.864815, 18.316666 ], [ -64.864753, 18.316764 ], [ -64.864656, 18.316897 ], [ -64.864508, 18.317002 ], [ -64.864382, 18.317114 ], [ -64.864219, 18.317293 ], [ -64.864006, 18.317455 ], [ -64.863853, 18.317526 ], [ -64.863708, 18.31757 ], [ -64.863602, 18.317602 ], [ -64.863529, 18.317602 ], [ -64.863487, 18.317598 ], [ -64.863441, 18.317583 ], [ -64.863381, 18.317538 ], [ -64.863358, 18.317484 ], [ -64.863306, 18.317406 ], [ -64.863266, 18.317396 ], [ -64.863228, 18.317379 ], [ -64.863205, 18.317343 ], [ -64.863224, 18.317321 ], [ -64.86322, 18.317305 ], [ -64.863197, 18.317286 ], [ -64.863169, 18.31729 ], [ -64.863146, 18.317312 ], [ -64.863139, 18.317355 ], [ -64.863153, 18.317371 ], [ -64.863135, 18.317394 ], [ -64.863111, 18.317424 ], [ -64.863052, 18.317473 ], [ -64.862941, 18.3175 ], [ -64.862889, 18.317511 ], [ -64.862836, 18.317508 ], [ -64.862801, 18.317505 ], [ -64.862732, 18.317482 ], [ -64.862701, 18.317498 ], [ -64.862428, 18.317478 ], [ -64.862375, 18.317449 ], [ -64.862232, 18.3097 ], [ -64.8622, 18.308008 ], [ -64.86219, 18.307417 ], [ -64.862167, 18.307368 ], [ -64.862167, 18.307343 ], [ -64.862167, 18.307335 ], [ -64.862185, 18.307282 ], [ -64.86219, 18.307269 ], [ -64.862224, 18.307253 ], [ -64.862259, 18.307219 ], [ -64.862294, 18.307203 ], [ -64.862299, 18.307171 ], [ -64.862248, 18.307076 ], [ -64.862242, 18.307027 ], [ -64.862282, 18.30696 ], [ -64.862351, 18.306916 ], [ -64.862384, 18.306907 ], [ -64.862468, 18.306887 ], [ -64.862559, 18.306883 ], [ -64.862594, 18.30687 ], [ -64.862645, 18.306872 ], [ -64.86268, 18.306866 ], [ -64.862767, 18.306856 ], [ -64.862818, 18.306828 ], [ -64.86287, 18.30679 ], [ -64.862941, 18.306745 ], [ -64.863062, 18.306721 ], [ -64.863194, 18.306726 ], [ -64.863245, 18.30674 ], [ -64.863356, 18.30675 ], [ -64.863389, 18.306723 ], [ -64.863435, 18.306696 ], [ -64.863487, 18.306679 ], [ -64.863557, 18.306673 ], [ -64.863651, 18.306682 ], [ -64.863765, 18.306694 ], [ -64.863834, 18.306673 ], [ -64.863868, 18.306629 ], [ -64.863874, 18.306595 ], [ -64.863873, 18.306563 ], [ -64.863909, 18.306541 ], [ -64.86396, 18.306541 ], [ -64.86399, 18.306551 ], [ -64.864029, 18.306569 ], [ -64.864065, 18.306578 ], [ -64.864128, 18.306606 ], [ -64.864162, 18.306629 ], [ -64.864267, 18.306689 ], [ -64.864312, 18.306701 ], [ -64.864446, 18.306766 ], [ -64.864515, 18.306761 ], [ -64.864548, 18.306701 ], [ -64.864669, 18.306574 ], [ -64.864727, 18.306508 ], [ -64.864779, 18.30647 ], [ -64.864791, 18.306435 ], [ -64.864825, 18.306425 ], [ -64.864855, 18.306396 ], [ -64.864929, 18.306348 ], [ -64.865004, 18.306304 ], [ -64.865143, 18.306204 ], [ -64.865188, 18.306183 ], [ -64.865224, 18.306171 ], [ -64.865269, 18.306166 ], [ -64.865326, 18.306183 ], [ -64.865327, 18.306215 ], [ -64.865338, 18.306243 ], [ -64.865373, 18.306254 ], [ -64.865424, 18.306249 ], [ -64.865476, 18.306238 ], [ -64.865528, 18.306232 ], [ -64.865563, 18.306232 ], [ -64.865598, 18.306208 ], [ -64.865673, 18.306076 ], [ -64.865707, 18.306051 ], [ -64.865747, 18.306029 ], [ -64.865799, 18.306017 ], [ -64.865835, 18.306016 ], [ -64.867376, 18.305368 ], [ -64.869876, 18.304319 ], [ -64.869933, 18.304298 ], [ -64.869985, 18.304298 ], [ -64.870019, 18.304314 ], [ -64.870055, 18.304319 ], [ -64.870124, 18.304319 ], [ -64.870198, 18.304287 ], [ -64.870225, 18.304264 ], [ -64.870228, 18.304263 ], [ -64.870284, 18.304259 ], [ -64.873879, 18.30417 ], [ -64.873894, 18.304164 ], [ -64.873929, 18.304153 ], [ -64.874028, 18.304136 ], [ -64.874084, 18.304136 ], [ -64.874147, 18.30412 ], [ -64.874245, 18.304081 ], [ -64.874309, 18.304051 ], [ -64.874391, 18.304012 ], [ -64.87442, 18.303993 ], [ -64.874482, 18.303954 ], [ -64.874516, 18.303938 ], [ -64.874585, 18.303894 ], [ -64.874629, 18.303884 ], [ -64.874698, 18.303872 ], [ -64.874732, 18.30386 ], [ -64.874911, 18.303849 ], [ -64.874974, 18.303855 ], [ -64.875001, 18.303863 ], [ -64.875061, 18.303871 ], [ -64.875251, 18.303931 ], [ -64.875384, 18.303985 ], [ -64.87543, 18.304014 ], [ -64.875473, 18.304032 ], [ -64.875505, 18.304047 ], [ -64.87554, 18.304073 ], [ -64.875569, 18.304107 ], [ -64.875606, 18.304136 ], [ -64.875632, 18.304163 ], [ -64.87567, 18.304183 ], [ -64.875718, 18.304186 ], [ -64.875862, 18.304124 ], [ -64.87592, 18.304119 ], [ -64.875966, 18.304102 ], [ -64.876007, 18.304098 ], [ -64.876064, 18.304069 ], [ -64.876099, 18.30406 ], [ -64.876128, 18.304025 ], [ -64.876156, 18.303998 ], [ -64.876179, 18.303948 ], [ -64.87617, 18.303922 ], [ -64.876168, 18.303882 ], [ -64.876162, 18.303849 ], [ -64.876179, 18.303778 ], [ -64.876174, 18.303739 ], [ -64.87618, 18.303695 ], [ -64.87621, 18.303591 ], [ -64.876231, 18.303558 ], [ -64.876267, 18.303536 ], [ -64.876301, 18.303508 ], [ -64.87637, 18.303486 ], [ -64.876456, 18.30348 ], [ -64.876485, 18.303503 ], [ -64.876532, 18.303529 ], [ -64.876583, 18.303536 ], [ -64.876641, 18.303492 ], [ -64.876676, 18.303475 ], [ -64.87671, 18.303475 ], [ -64.876831, 18.303497 ], [ -64.876879, 18.303517 ], [ -64.876935, 18.303541 ], [ -64.876967, 18.303526 ], [ -64.877021, 18.303491 ], [ -64.877057, 18.303477 ], [ -64.877091, 18.303447 ], [ -64.877126, 18.303433 ], [ -64.877189, 18.303394 ], [ -64.877224, 18.30336 ], [ -64.877295, 18.303314 ], [ -64.877398, 18.303229 ], [ -64.877512, 18.303106 ], [ -64.877528, 18.303078 ], [ -64.87754, 18.303062 ], [ -64.877575, 18.303035 ], [ -64.87759, 18.303013 ], [ -64.877634, 18.302976 ], [ -64.877675, 18.302926 ], [ -64.877801, 18.302832 ], [ -64.877922, 18.302772 ], [ -64.87806, 18.302743 ], [ -64.878158, 18.302738 ], [ -64.878215, 18.302743 ], [ -64.87834, 18.302728 ], [ -64.878348, 18.302727 ], [ -64.878481, 18.302689 ], [ -64.87855, 18.302689 ], [ -64.878638, 18.30271 ], [ -64.878659, 18.302726 ], [ -64.8787, 18.302737 ], [ -64.87874, 18.302754 ], [ -64.878772, 18.302759 ], [ -64.878809, 18.302759 ], [ -64.878844, 18.302771 ], [ -64.878867, 18.302793 ], [ -64.878893, 18.302827 ], [ -64.878907, 18.302897 ], [ -64.878902, 18.302923 ], [ -64.878895, 18.30298 ], [ -64.878892, 18.303063 ], [ -64.878872, 18.303162 ], [ -64.878878, 18.303217 ], [ -64.878849, 18.303305 ], [ -64.878849, 18.303338 ], [ -64.878861, 18.303387 ], [ -64.878866, 18.303426 ], [ -64.878878, 18.303459 ], [ -64.878878, 18.303514 ], [ -64.878872, 18.303547 ], [ -64.878872, 18.30358 ], [ -64.878895, 18.303696 ], [ -64.878907, 18.3038 ], [ -64.878901, 18.303845 ], [ -64.878901, 18.303905 ], [ -64.878884, 18.304043 ], [ -64.878884, 18.304081 ], [ -64.878876, 18.30413 ], [ -64.878855, 18.304197 ], [ -64.878837, 18.30423 ], [ -64.878811, 18.304311 ], [ -64.878754, 18.304411 ], [ -64.878728, 18.304439 ], [ -64.87871, 18.304472 ], [ -64.878682, 18.304538 ], [ -64.878653, 18.304654 ], [ -64.878647, 18.304693 ], [ -64.87863, 18.304753 ], [ -64.878624, 18.304792 ], [ -64.878624, 18.304885 ], [ -64.878618, 18.304929 ], [ -64.878618, 18.304942 ], [ -64.878618, 18.304984 ], [ -64.878624, 18.305034 ], [ -64.878664, 18.305161 ], [ -64.878746, 18.305275 ], [ -64.878814, 18.30532 ], [ -64.87885, 18.305351 ], [ -64.87889, 18.305373 ], [ -64.878959, 18.305429 ], [ -64.879008, 18.305476 ], [ -64.87904, 18.305506 ], [ -64.879098, 18.305594 ], [ -64.879183, 18.305705 ], [ -64.87919, 18.305715 ], [ -64.879218, 18.305761 ], [ -64.879229, 18.305789 ], [ -64.879287, 18.305893 ], [ -64.879344, 18.30597 ], [ -64.879356, 18.306004 ], [ -64.879448, 18.306048 ], [ -64.879489, 18.306053 ], [ -64.879705, 18.306133 ], [ -64.879817, 18.306174 ], [ -64.879846, 18.306176 ], [ -64.879984, 18.306186 ], [ -64.880042, 18.306197 ], [ -64.880076, 18.306218 ], [ -64.880117, 18.306252 ], [ -64.883254, 18.307964 ], [ -64.883291, 18.307945 ], [ -64.883322, 18.307949 ], [ -64.883353, 18.307961 ], [ -64.883386, 18.307993 ], [ -64.88342, 18.308003 ], [ -64.883515, 18.308014 ], [ -64.883633, 18.308004 ], [ -64.88372, 18.308031 ], [ -64.883755, 18.308051 ], [ -64.883854, 18.30814 ], [ -64.883864, 18.308174 ], [ -64.883886, 18.308219 ], [ -64.883899, 18.308246 ], [ -64.883947, 18.308305 ], [ -64.884031, 18.308422 ], [ -64.884044, 18.308455 ], [ -64.884222, 18.308615 ], [ -64.884259, 18.308637 ], [ -64.884296, 18.308648 ], [ -64.88432, 18.30867 ], [ -64.88438, 18.308691 ], [ -64.884446, 18.308688 ], [ -64.884539, 18.308654 ], [ -64.884602, 18.308639 ], [ -64.884635, 18.308625 ], [ -64.884689, 18.308604 ], [ -64.884726, 18.308594 ], [ -64.884758, 18.308593 ], [ -64.884844, 18.308604 ], [ -64.884936, 18.308633 ], [ -64.884971, 18.308637 ], [ -64.885008, 18.308632 ], [ -64.88504, 18.30861 ], [ -64.88506, 18.308577 ], [ -64.885081, 18.308445 ], [ -64.885081, 18.308395 ], [ -64.885086, 18.308362 ], [ -64.885109, 18.30829 ], [ -64.885147, 18.308274 ], [ -64.885198, 18.308275 ], [ -64.885318, 18.308354 ], [ -64.885346, 18.308379 ], [ -64.885382, 18.308396 ], [ -64.885392, 18.308428 ], [ -64.885387, 18.308458 ], [ -64.885343, 18.308493 ], [ -64.885323, 18.308527 ], [ -64.885323, 18.30856 ], [ -64.885308, 18.308609 ], [ -64.885311, 18.308643 ], [ -64.885324, 18.308676 ], [ -64.885376, 18.308729 ], [ -64.885509, 18.308815 ], [ -64.885572, 18.308878 ], [ -64.885599, 18.308913 ], [ -64.885658, 18.308966 ], [ -64.885744, 18.309056 ], [ -64.885781, 18.309078 ], [ -64.88585, 18.309099 ], [ -64.885917, 18.309085 ], [ -64.885968, 18.309062 ], [ -64.886043, 18.309045 ], [ -64.88608, 18.309048 ], [ -64.886118, 18.309078 ], [ -64.886153, 18.309089 ], [ -64.886188, 18.309083 ], [ -64.886222, 18.309056 ], [ -64.88626, 18.30904 ], [ -64.886326, 18.309029 ], [ -64.886378, 18.309029 ], [ -64.886415, 18.309034 ], [ -64.886476, 18.309073 ], [ -64.886501, 18.309105 ], [ -64.886516, 18.309139 ], [ -64.88654, 18.309174 ], [ -64.886561, 18.309222 ], [ -64.886639, 18.309438 ], [ -64.886668, 18.309473 ], [ -64.886689, 18.309508 ], [ -64.886712, 18.309535 ], [ -64.886741, 18.30958 ], [ -64.886856, 18.309723 ], [ -64.886891, 18.309789 ], [ -64.886914, 18.309822 ], [ -64.886943, 18.309877 ], [ -64.886966, 18.30991 ], [ -64.887006, 18.310004 ], [ -64.88702, 18.310087 ], [ -64.887006, 18.310119 ], [ -64.886989, 18.310235 ], [ -64.887023, 18.310318 ], [ -64.887075, 18.310351 ], [ -64.88711, 18.31036 ], [ -64.887179, 18.310368 ], [ -64.887306, 18.3104 ], [ -64.887352, 18.310433 ], [ -64.887369, 18.310472 ], [ -64.887392, 18.310505 ], [ -64.887487, 18.310604 ], [ -64.887549, 18.310647 ], [ -64.887617, 18.310674 ], [ -64.88768, 18.310687 ], [ -64.88783, 18.310731 ], [ -64.887865, 18.310736 ], [ -64.8879, 18.310736 ], [ -64.887923, 18.310736 ], [ -64.887957, 18.310747 ], [ -64.888049, 18.310745 ], [ -64.888148, 18.310736 ], [ -64.888234, 18.31072 ], [ -64.888267, 18.310704 ], [ -64.888447, 18.31067 ], [ -64.894687, 18.311555 ], [ -64.897323, 18.310178 ], [ -64.897307, 18.31004 ], [ -64.897427, 18.30996 ], [ -64.897534, 18.309927 ], [ -64.897674, 18.309967 ], [ -64.897761, 18.309993 ], [ -64.897801, 18.31 ], [ -64.897895, 18.30998 ], [ -64.897968, 18.309913 ], [ -64.897988, 18.309846 ], [ -64.898055, 18.309813 ], [ -64.898135, 18.3098 ], [ -64.898189, 18.309766 ], [ -64.898195, 18.309693 ], [ -64.898269, 18.309673 ], [ -64.898356, 18.309693 ], [ -64.898449, 18.309739 ], [ -64.898543, 18.309686 ], [ -64.898563, 18.309679 ], [ -64.89869, 18.309688 ], [ -64.899431, 18.30989 ], [ -64.905636, 18.310787 ], [ -64.905756, 18.310801 ], [ -64.90589, 18.310881 ], [ -64.906063, 18.310874 ], [ -64.906143, 18.310874 ], [ -64.906156, 18.310954 ], [ -64.90617, 18.310981 ], [ -64.906272, 18.311099 ], [ -64.910064, 18.314585 ], [ -64.910104, 18.314652 ], [ -64.910071, 18.314698 ], [ -64.910071, 18.314782 ], [ -64.910137, 18.314845 ], [ -64.910177, 18.314855 ], [ -64.910217, 18.314925 ], [ -64.910251, 18.314992 ], [ -64.910307, 18.315005 ], [ -64.910391, 18.315042 ], [ -64.910424, 18.315042 ], [ -64.910467, 18.315075 ], [ -64.910524, 18.315095 ], [ -64.910617, 18.315115 ], [ -64.910647, 18.315108 ], [ -64.910697, 18.315118 ], [ -64.910777, 18.315155 ], [ -64.910841, 18.315192 ], [ -64.910904, 18.315148 ], [ -64.910964, 18.315148 ], [ -64.911154, 18.315195 ], [ -64.911301, 18.315308 ], [ -64.911354, 18.315458 ], [ -64.911407, 18.315612 ], [ -64.911454, 18.315748 ], [ -64.911531, 18.315935 ], [ -64.911634, 18.316172 ], [ -64.911744, 18.316222 ], [ -64.911835, 18.316295 ], [ -64.911884, 18.316307 ], [ -64.912, 18.316389 ], [ -64.912086, 18.316441 ], [ -64.91216, 18.316456 ], [ -64.912354, 18.316446 ], [ -64.912476, 18.316484 ], [ -64.912549, 18.316565 ], [ -64.912575, 18.31661 ], [ -64.912643, 18.316683 ], [ -64.912689, 18.316706 ], [ -64.912766, 18.316706 ], [ -64.912849, 18.316607 ], [ -64.912926, 18.316578 ], [ -64.913025, 18.316572 ], [ -64.913116, 18.31654 ], [ -64.913155, 18.316519 ], [ -64.913223, 18.316507 ], [ -64.9133, 18.316563 ], [ -64.915192, 18.317745 ], [ -64.915245, 18.317774 ], [ -64.915306, 18.317841 ], [ -64.915398, 18.317871 ], [ -64.915451, 18.317856 ], [ -64.915504, 18.317867 ], [ -64.91555, 18.317917 ], [ -64.915604, 18.317998 ], [ -64.915682, 18.318084 ], [ -64.915771, 18.318144 ], [ -64.915898, 18.318158 ], [ -64.916067, 18.318227 ], [ -64.916138, 18.318264 ], [ -64.916255, 18.318296 ], [ -64.916306, 18.318296 ], [ -64.916376, 18.318348 ], [ -64.916535, 18.318682 ], [ -64.916862, 18.318722 ], [ -64.917038, 18.318707 ], [ -64.917374, 18.318644 ], [ -64.917704, 18.318708 ], [ -64.921286, 18.319644 ], [ -64.921483, 18.319654 ], [ -64.921613, 18.319696 ], [ -64.921753, 18.319716 ], [ -64.92186, 18.319729 ], [ -64.92189, 18.319749 ], [ -64.921983, 18.319763 ], [ -64.922027, 18.319719 ], [ -64.922083, 18.319669 ], [ -64.92214, 18.319676 ], [ -64.922213, 18.319719 ], [ -64.922277, 18.319694 ], [ -64.9224, 18.319736 ], [ -64.9225, 18.319726 ], [ -64.922537, 18.319669 ], [ -64.92259, 18.319636 ], [ -64.922677, 18.319619 ], [ -64.922733, 18.319669 ], [ -64.922783, 18.319703 ], [ -64.92284, 18.319723 ], [ -64.922897, 18.319726 ], [ -64.923097, 18.319736 ], [ -64.927219, 18.320881 ], [ -64.927292, 18.321412 ], [ -64.9287, 18.328192 ], [ -64.928827, 18.328851 ], [ -64.92645, 18.33021 ], [ -64.926081, 18.33043 ], [ -64.926003, 18.330339 ], [ -64.92588, 18.330412 ], [ -64.925874, 18.330585 ], [ -64.924805, 18.331226 ], [ -64.924659, 18.331098 ], [ -64.924538, 18.330992 ], [ -64.924522, 18.331009 ], [ -64.924469, 18.330965 ], [ -64.924507, 18.330864 ], [ -64.924526, 18.330784 ], [ -64.924004, 18.330411 ], [ -64.9238, 18.33023 ], [ -64.923553, 18.330177 ], [ -64.923203, 18.330031 ], [ -64.923007, 18.32995 ], [ -64.92291, 18.33 ], [ -64.922827, 18.330032 ], [ -64.922585, 18.330192 ], [ -64.922313, 18.330525 ], [ -64.92222, 18.33065 ], [ -64.92199, 18.33098 ], [ -64.9219, 18.33115 ], [ -64.921819, 18.331275 ], [ -64.92181, 18.33129 ], [ -64.92174, 18.33134 ], [ -64.92168, 18.33137 ], [ -64.92158, 18.33138 ], [ -64.92147, 18.33137 ], [ -64.921429, 18.33136 ], [ -64.921373, 18.331345 ], [ -64.92131, 18.33133 ], [ -64.921207, 18.331294 ], [ -64.921154, 18.331276 ], [ -64.92102, 18.33123 ], [ -64.92087, 18.33119 ], [ -64.920852, 18.331191 ], [ -64.920792, 18.331195 ], [ -64.920163, 18.330474 ], [ -64.920249, 18.330285 ], [ -64.920306, 18.33016 ], [ -64.91939, 18.329852 ], [ -64.918458, 18.329009 ], [ -64.917973, 18.329161 ], [ -64.917728, 18.329244 ], [ -64.915812, 18.329728 ], [ -64.913094, 18.330077 ], [ -64.912054, 18.328946 ], [ -64.91177, 18.32875 ], [ -64.91168, 18.32875 ], [ -64.91159, 18.32873 ], [ -64.91147, 18.32868 ], [ -64.91107, 18.32848 ], [ -64.91094, 18.32841 ], [ -64.91078, 18.32833 ], [ -64.910779, 18.328329 ], [ -64.910143, 18.328061 ], [ -64.910104, 18.328048 ], [ -64.910065, 18.328036 ], [ -64.910033, 18.328029 ], [ -64.909976, 18.328017 ], [ -64.909897, 18.327996 ], [ -64.909853, 18.327981 ], [ -64.909814, 18.327967 ], [ -64.909777, 18.32795 ], [ -64.909741, 18.327933 ], [ -64.909707, 18.327915 ], [ -64.909493, 18.327796 ], [ -64.909403, 18.327755 ], [ -64.90908, 18.32762 ], [ -64.908786, 18.32752 ], [ -64.908497, 18.32744 ], [ -64.907459, 18.327481 ], [ -64.906741, 18.32749 ], [ -64.906347, 18.327477 ], [ -64.906163, 18.327471 ], [ -64.906098, 18.327468 ], [ -64.905574, 18.327508 ], [ -64.905395, 18.327492 ], [ -64.904386, 18.327435 ], [ -64.903665, 18.327409 ], [ -64.903504, 18.327395 ], [ -64.903397, 18.327394 ], [ -64.903262, 18.327396 ], [ -64.90295, 18.32741 ], [ -64.902801, 18.327397 ], [ -64.902755, 18.327397 ], [ -64.902709, 18.327394 ], [ -64.902654, 18.327389 ], [ -64.902601, 18.327381 ], [ -64.90255, 18.327371 ], [ -64.902506, 18.32736 ], [ -64.902461, 18.327345 ], [ -64.902416, 18.327327 ], [ -64.902337, 18.327306 ], [ -64.902258, 18.327283 ], [ -64.90218, 18.327259 ], [ -64.902101, 18.327234 ], [ -64.902007, 18.327202 ], [ -64.901944, 18.327178 ], [ -64.901878, 18.327152 ], [ -64.901382, 18.326834 ], [ -64.90076, 18.32635 ], [ -64.90056, 18.32623 ], [ -64.90044, 18.32615 ], [ -64.900408, 18.326124 ], [ -64.90024, 18.32599 ], [ -64.90015, 18.32594 ], [ -64.90006, 18.325891 ], [ -64.899466, 18.325548 ], [ -64.899876, 18.324688 ], [ -64.895121, 18.323582 ], [ -64.89497, 18.323722 ], [ -64.894919, 18.323909 ], [ -64.894944, 18.324085 ], [ -64.895086, 18.324405 ], [ -64.89511, 18.32451 ], [ -64.895125, 18.324679 ], [ -64.895079, 18.32485 ], [ -64.894937, 18.32528 ], [ -64.894941, 18.325582 ], [ -64.894816, 18.325611 ], [ -64.894358, 18.325704 ], [ -64.894068, 18.325748 ], [ -64.893589, 18.325797 ], [ -64.893269, 18.325816 ], [ -64.893024, 18.325824 ], [ -64.892922, 18.325811 ], [ -64.892675, 18.325759 ], [ -64.89237, 18.325707 ], [ -64.892302, 18.325703 ], [ -64.892162, 18.32572 ], [ -64.89187, 18.325762 ], [ -64.891733, 18.325789 ], [ -64.891527, 18.32584 ], [ -64.891324, 18.325877 ], [ -64.891289, 18.325875 ], [ -64.891254, 18.325872 ], [ -64.891217, 18.325866 ], [ -64.891183, 18.32586 ], [ -64.891148, 18.325852 ], [ -64.891113, 18.325842 ], [ -64.891079, 18.325831 ], [ -64.891046, 18.325819 ], [ -64.891013, 18.325805 ], [ -64.890969, 18.325784 ], [ -64.89093, 18.325761 ], [ -64.890069, 18.325326 ], [ -64.88972, 18.325168 ], [ -64.88968, 18.325156 ], [ -64.88964, 18.325147 ], [ -64.889599, 18.32514 ], [ -64.889557, 18.325136 ], [ -64.889517, 18.325135 ], [ -64.889481, 18.325137 ], [ -64.889408, 18.325144 ], [ -64.88938, 18.325148 ], [ -64.889235, 18.325184 ], [ -64.889093, 18.325221 ], [ -64.888953, 18.325261 ], [ -64.888813, 18.325302 ], [ -64.888673, 18.325346 ], [ -64.888536, 18.325392 ], [ -64.888397, 18.325439 ], [ -64.888261, 18.325489 ], [ -64.888092, 18.325555 ], [ -64.888009, 18.325588 ], [ -64.887921, 18.325624 ], [ -64.887823, 18.325666 ], [ -64.887727, 18.325709 ], [ -64.88763, 18.325752 ], [ -64.887534, 18.325797 ], [ -64.88742, 18.325843 ], [ -64.887305, 18.325891 ], [ -64.887215, 18.32593 ], [ -64.887131, 18.32597 ], [ -64.887046, 18.32601 ], [ -64.886961, 18.326054 ], [ -64.886858, 18.326108 ], [ -64.886758, 18.326163 ], [ -64.886658, 18.326221 ], [ -64.886559, 18.326281 ], [ -64.886463, 18.326341 ], [ -64.886367, 18.326405 ], [ -64.886272, 18.32647 ], [ -64.886179, 18.326537 ], [ -64.886101, 18.326594 ], [ -64.886025, 18.326655 ], [ -64.885948, 18.326716 ], [ -64.885873, 18.326779 ], [ -64.885768, 18.326869 ], [ -64.88567, 18.32696 ], [ -64.88557, 18.327055 ], [ -64.885475, 18.32715 ], [ -64.885416, 18.327194 ], [ -64.885355, 18.327235 ], [ -64.885318, 18.327257 ], [ -64.885282, 18.327279 ], [ -64.885247, 18.327298 ], [ -64.885209, 18.327317 ], [ -64.88517, 18.327335 ], [ -64.885131, 18.327353 ], [ -64.885091, 18.327369 ], [ -64.885051, 18.327384 ], [ -64.885041, 18.327396 ], [ -64.885031, 18.327407 ], [ -64.88502, 18.327418 ], [ -64.885009, 18.327427 ], [ -64.884997, 18.327436 ], [ -64.884984, 18.327444 ], [ -64.884972, 18.327452 ], [ -64.884958, 18.327458 ], [ -64.884944, 18.327464 ], [ -64.884927, 18.32747 ], [ -64.884912, 18.327474 ], [ -64.884894, 18.327477 ], [ -64.884876, 18.327479 ], [ -64.88486, 18.32748 ], [ -64.884842, 18.327479 ], [ -64.884827, 18.327478 ], [ -64.884793, 18.32749 ], [ -64.884755, 18.327505 ], [ -64.884721, 18.327521 ], [ -64.884688, 18.327536 ], [ -64.884654, 18.327554 ], [ -64.88462, 18.327571 ], [ -64.884591, 18.32759 ], [ -64.884561, 18.327609 ], [ -64.88453, 18.327629 ], [ -64.884499, 18.327652 ], [ -64.884471, 18.327673 ], [ -64.884443, 18.327696 ], [ -64.884389, 18.327718 ], [ -64.884333, 18.327742 ], [ -64.884277, 18.327767 ], [ -64.884224, 18.327794 ], [ -64.883839, 18.32803 ], [ -64.883572, 18.328256 ], [ -64.883369, 18.328477 ], [ -64.883222, 18.328677 ], [ -64.88313, 18.32887 ], [ -64.88311, 18.32899 ], [ -64.883103, 18.328983 ], [ -64.883084, 18.328964 ], [ -64.883078, 18.328958 ], [ -64.883069, 18.328931 ], [ -64.883063, 18.328898 ], [ -64.883051, 18.328865 ], [ -64.883034, 18.328783 ], [ -64.883017, 18.32875 ], [ -64.882999, 18.32864 ], [ -64.882959, 18.328579 ], [ -64.882942, 18.328546 ], [ -64.882913, 18.328529 ], [ -64.88289, 18.328496 ], [ -64.882873, 18.328463 ], [ -64.882427, 18.327506 ], [ -64.881925, 18.326558 ], [ -64.88142, 18.325678 ], [ -64.881121, 18.325408 ], [ -64.8806, 18.32487 ], [ -64.880291, 18.324619 ], [ -64.88011, 18.324516 ], [ -64.879622, 18.324243 ], [ -64.879044, 18.32397 ], [ -64.878801, 18.323874 ], [ -64.878881, 18.323754 ], [ -64.878564, 18.323731 ], [ -64.87858, 18.32367 ], [ -64.879256, 18.322891 ], [ -64.87931, 18.32284 ], [ -64.880188, 18.321918 ], [ -64.88018, 18.32171 ], [ -64.880175, 18.321641 ], [ -64.88017, 18.32157 ], [ -64.88014, 18.32148 ], [ -64.88008, 18.32139 ], [ -64.88005, 18.32132 ], [ -64.880033, 18.321249 ], [ -64.880008, 18.321133 ], [ -64.880095, 18.321149 ], [ -64.880506, 18.320595 ], [ -64.880278, 18.320255 ], [ -64.880175, 18.320085 ], [ -64.880348, 18.31941 ], [ -64.88025, 18.31941 ], [ -64.880232, 18.319044 ], [ -64.881472, 18.317088 ] ] ], [ [ [ -64.918136, 18.313209 ], [ -64.918106, 18.313171 ], [ -64.918113, 18.313133 ], [ -64.918159, 18.31314 ], [ -64.918192, 18.313186 ], [ -64.918136, 18.313209 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "030", "TRACTCE10": "960600", "GEOID10": "78030960600", "NAME10": "9606", "NAMELSAD10": "Census Tract 9606", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3179348, "AWATER10": 0, "INTPTLAT10": "+18.3488541", "INTPTLON10": "-064.9500144" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.938801, 18.345113 ], [ -64.938543, 18.343851 ], [ -64.938497, 18.343629 ], [ -64.938525, 18.34351 ], [ -64.938547, 18.343428 ], [ -64.938862, 18.343399 ], [ -64.938926, 18.343395 ], [ -64.939317, 18.343449 ], [ -64.93992, 18.343483 ], [ -64.94031, 18.343425 ], [ -64.940347, 18.34342 ], [ -64.941728, 18.343268 ], [ -64.942141, 18.343212 ], [ -64.94246, 18.343166 ], [ -64.942516, 18.343157 ], [ -64.942605, 18.343188 ], [ -64.943046, 18.343346 ], [ -64.943675, 18.34357 ], [ -64.943874, 18.343641 ], [ -64.944438, 18.343842 ], [ -64.945036, 18.344056 ], [ -64.945671, 18.344282 ], [ -64.946226, 18.34448 ], [ -64.946528, 18.344588 ], [ -64.946757, 18.344669 ], [ -64.947224, 18.344836 ], [ -64.94738, 18.344891 ], [ -64.948085, 18.345143 ], [ -64.947996, 18.343744 ], [ -64.948006, 18.343113 ], [ -64.947998, 18.343044 ], [ -64.947983, 18.342875 ], [ -64.947983, 18.342716 ], [ -64.947968, 18.34244 ], [ -64.947952, 18.342381 ], [ -64.947922, 18.342299 ], [ -64.947884, 18.342236 ], [ -64.947858, 18.341921 ], [ -64.947755, 18.341005 ], [ -64.947723, 18.340601 ], [ -64.947655, 18.340006 ], [ -64.947625, 18.339711 ], [ -64.947548, 18.339063 ], [ -64.947466, 18.338329 ], [ -64.947423, 18.337776 ], [ -64.947417, 18.337706 ], [ -64.94748, 18.3377 ], [ -64.948081, 18.337627 ], [ -64.94831, 18.3376 ], [ -64.948745, 18.337548 ], [ -64.94916, 18.3375 ], [ -64.94964, 18.33741 ], [ -64.950031, 18.337293 ], [ -64.95011, 18.33727 ], [ -64.95037, 18.33722 ], [ -64.95046, 18.33724 ], [ -64.950625, 18.33723 ], [ -64.95079, 18.33722 ], [ -64.950886, 18.337213 ], [ -64.95123, 18.33719 ], [ -64.95177, 18.33711 ], [ -64.952162, 18.33706 ], [ -64.95217, 18.33706 ], [ -64.95224, 18.33705 ], [ -64.95233, 18.33705 ], [ -64.95246, 18.337055 ], [ -64.95259, 18.33706 ], [ -64.952704, 18.33706 ], [ -64.95273, 18.33706 ], [ -64.953046, 18.337069 ], [ -64.953005, 18.337309 ], [ -64.95291, 18.33758 ], [ -64.9529, 18.33763 ], [ -64.95291, 18.33772 ], [ -64.952935, 18.337782 ], [ -64.95296, 18.33784 ], [ -64.95305, 18.338 ], [ -64.953282, 18.338303 ], [ -64.95341, 18.33847 ], [ -64.953486, 18.338607 ], [ -64.953487, 18.338608 ], [ -64.953721, 18.339022 ], [ -64.9538, 18.33916 ], [ -64.953849, 18.339269 ], [ -64.953996, 18.339597 ], [ -64.954046, 18.339707 ], [ -64.95425, 18.34016 ], [ -64.95436, 18.34037 ], [ -64.954362, 18.340373 ], [ -64.954574, 18.340716 ], [ -64.95462, 18.34079 ], [ -64.9547, 18.34095 ], [ -64.95476, 18.34132 ], [ -64.95474, 18.34147 ], [ -64.95469, 18.34166 ], [ -64.95459, 18.34201 ], [ -64.95451, 18.34225 ], [ -64.95447, 18.34241 ], [ -64.954471, 18.34245 ], [ -64.95448, 18.34255 ], [ -64.95453, 18.34268 ], [ -64.95459, 18.34282 ], [ -64.954782, 18.343109 ], [ -64.95483, 18.34318 ], [ -64.954846, 18.343209 ], [ -64.954886, 18.343281 ], [ -64.95494, 18.34338 ], [ -64.955011, 18.343528 ], [ -64.95505, 18.34361 ], [ -64.955062, 18.343637 ], [ -64.955071, 18.343659 ], [ -64.955087, 18.343696 ], [ -64.9551, 18.343727 ], [ -64.95511, 18.34375 ], [ -64.95514, 18.34382 ], [ -64.9552, 18.34394 ], [ -64.955206, 18.343947 ], [ -64.95535, 18.34411 ], [ -64.95557, 18.34425 ], [ -64.955741, 18.344315 ], [ -64.95583, 18.34435 ], [ -64.95594, 18.34441 ], [ -64.95595, 18.34442 ], [ -64.95598, 18.34445 ], [ -64.95599, 18.34446 ], [ -64.95603, 18.34453 ], [ -64.956045, 18.344568 ], [ -64.9561, 18.3447 ], [ -64.95613, 18.34476 ], [ -64.95613, 18.34486 ], [ -64.95612, 18.344918 ], [ -64.95612, 18.34493 ], [ -64.95608, 18.34497 ], [ -64.95605, 18.34501 ], [ -64.956047, 18.345013 ], [ -64.95599, 18.34506 ], [ -64.95591, 18.3451 ], [ -64.955888, 18.345103 ], [ -64.95579, 18.34512 ], [ -64.95558, 18.34512 ], [ -64.955333, 18.345108 ], [ -64.95515, 18.3451 ], [ -64.95515, 18.34519 ], [ -64.95516, 18.3452 ], [ -64.95526, 18.3453 ], [ -64.955273, 18.34531 ], [ -64.9555, 18.34549 ], [ -64.95565, 18.34562 ], [ -64.95576, 18.34566 ], [ -64.955944, 18.345669 ], [ -64.95595, 18.34567 ], [ -64.95606, 18.34572 ], [ -64.95613, 18.34578 ], [ -64.95615, 18.34582 ], [ -64.95618, 18.34587 ], [ -64.95632, 18.346186 ], [ -64.95642, 18.34641 ], [ -64.95656, 18.34669 ], [ -64.95682, 18.34709 ], [ -64.956929, 18.347233 ], [ -64.95714, 18.34751 ], [ -64.957185, 18.347546 ], [ -64.95724, 18.34759 ], [ -64.957317, 18.347613 ], [ -64.95734, 18.34762 ], [ -64.95775, 18.34762 ], [ -64.957769, 18.347622 ], [ -64.95792, 18.34764 ], [ -64.958177, 18.347707 ], [ -64.95838, 18.34776 ], [ -64.95855, 18.34781 ], [ -64.95863, 18.34789 ], [ -64.95871, 18.34802 ], [ -64.958729, 18.348059 ], [ -64.958772, 18.34815 ], [ -64.95889, 18.34839 ], [ -64.95903, 18.34863 ], [ -64.95915, 18.34878 ], [ -64.959226, 18.348881 ], [ -64.95933, 18.34902 ], [ -64.95944, 18.3492 ], [ -64.95957, 18.34939 ], [ -64.95986, 18.34971 ], [ -64.96005, 18.34999 ], [ -64.96023, 18.35018 ], [ -64.96034, 18.350271 ], [ -64.96052, 18.35042 ], [ -64.960658, 18.35055 ], [ -64.9607, 18.35059 ], [ -64.96076, 18.35069 ], [ -64.96093, 18.35087 ], [ -64.960975, 18.35089 ], [ -64.96109, 18.35094 ], [ -64.9614, 18.35098 ], [ -64.96168, 18.35107 ], [ -64.961785, 18.351095 ], [ -64.961837, 18.351107 ], [ -64.962033, 18.351155 ], [ -64.962127, 18.351177 ], [ -64.96214, 18.35118 ], [ -64.962212, 18.351205 ], [ -64.962321, 18.351244 ], [ -64.96234, 18.35125 ], [ -64.96245, 18.35132 ], [ -64.96252, 18.35142 ], [ -64.962528, 18.351432 ], [ -64.96269, 18.35168 ], [ -64.96276, 18.35175 ], [ -64.96284, 18.35179 ], [ -64.96294, 18.3518 ], [ -64.96303, 18.35178 ], [ -64.963261, 18.351694 ], [ -64.96338, 18.35165 ], [ -64.96358, 18.35163 ], [ -64.963804, 18.351617 ], [ -64.963934, 18.35161 ], [ -64.964042, 18.354184 ], [ -64.964106, 18.354601 ], [ -64.963953, 18.354554 ], [ -64.96386, 18.354514 ], [ -64.963666, 18.354419 ], [ -64.963573, 18.354374 ], [ -64.963518, 18.354359 ], [ -64.963469, 18.354359 ], [ -64.963438, 18.35437 ], [ -64.963426, 18.354377 ], [ -64.962272, 18.354228 ], [ -64.961782, 18.354131 ], [ -64.960142, 18.353397 ], [ -64.959529, 18.353014 ], [ -64.959391, 18.352941 ], [ -64.959349, 18.352914 ], [ -64.957862, 18.352111 ], [ -64.957496, 18.352002 ], [ -64.957467, 18.352032 ], [ -64.957466, 18.352032 ], [ -64.956769, 18.351941 ], [ -64.956697, 18.351932 ], [ -64.956656, 18.351989 ], [ -64.956582, 18.352004 ], [ -64.955202, 18.352186 ], [ -64.955116, 18.352197 ], [ -64.954913, 18.35222 ], [ -64.954915, 18.352421 ], [ -64.954935, 18.353815 ], [ -64.954935, 18.35387 ], [ -64.954936, 18.354173 ], [ -64.954938, 18.355766 ], [ -64.954942, 18.356251 ], [ -64.954967, 18.356716 ], [ -64.954948, 18.357247 ], [ -64.954666, 18.358419 ], [ -64.954511, 18.358341 ], [ -64.954161, 18.35827 ], [ -64.954092, 18.358265 ], [ -64.953974, 18.358255 ], [ -64.953956, 18.358251 ], [ -64.953854, 18.358203 ], [ -64.9537, 18.358134 ], [ -64.953602, 18.358081 ], [ -64.953492, 18.358025 ], [ -64.953447, 18.358004 ], [ -64.953421, 18.357994 ], [ -64.95335, 18.357973 ], [ -64.953419, 18.358162 ], [ -64.953318, 18.358375 ], [ -64.95318, 18.358668 ], [ -64.953185, 18.358763 ], [ -64.953192, 18.358855 ], [ -64.953199, 18.358946 ], [ -64.95321, 18.359038 ], [ -64.95322, 18.359121 ], [ -64.953232, 18.359207 ], [ -64.953244, 18.35929 ], [ -64.953259, 18.359368 ], [ -64.953269, 18.359432 ], [ -64.953286, 18.359577 ], [ -64.953293, 18.359668 ], [ -64.953297, 18.359757 ], [ -64.953299, 18.35984 ], [ -64.953298, 18.359928 ], [ -64.953194, 18.35999 ], [ -64.953096, 18.360052 ], [ -64.952996, 18.360118 ], [ -64.952899, 18.360184 ], [ -64.9528, 18.360257 ], [ -64.952704, 18.360331 ], [ -64.952608, 18.360408 ], [ -64.952516, 18.360487 ], [ -64.952381, 18.360584 ], [ -64.951104, 18.36149 ], [ -64.951276, 18.360228 ], [ -64.951038, 18.360294 ], [ -64.95102, 18.3603 ], [ -64.950885, 18.3603 ], [ -64.950813, 18.359742 ], [ -64.950809, 18.359682 ], [ -64.950815, 18.359351 ], [ -64.950852, 18.35733 ], [ -64.949996, 18.357332 ], [ -64.949996, 18.357378 ], [ -64.949715, 18.357631 ], [ -64.949687, 18.357491 ], [ -64.949681, 18.357462 ], [ -64.949679, 18.357436 ], [ -64.949675, 18.357397 ], [ -64.949674, 18.357361 ], [ -64.949674, 18.357328 ], [ -64.949676, 18.357316 ], [ -64.949676, 18.357305 ], [ -64.949675, 18.357287 ], [ -64.94967, 18.357271 ], [ -64.949664, 18.357258 ], [ -64.949655, 18.357244 ], [ -64.949644, 18.357233 ], [ -64.949636, 18.357227 ], [ -64.949625, 18.357221 ], [ -64.949616, 18.357216 ], [ -64.949606, 18.357213 ], [ -64.949591, 18.35721 ], [ -64.949579, 18.357209 ], [ -64.949557, 18.357206 ], [ -64.949523, 18.357198 ], [ -64.9495, 18.357192 ], [ -64.949479, 18.357185 ], [ -64.949459, 18.357177 ], [ -64.949432, 18.357166 ], [ -64.949413, 18.357159 ], [ -64.949386, 18.357153 ], [ -64.949357, 18.35715 ], [ -64.949337, 18.35715 ], [ -64.949318, 18.357152 ], [ -64.949298, 18.357156 ], [ -64.949279, 18.357161 ], [ -64.949262, 18.357167 ], [ -64.949245, 18.357175 ], [ -64.949174, 18.357215 ], [ -64.949158, 18.357215 ], [ -64.94915, 18.357209 ], [ -64.949133, 18.357182 ], [ -64.948903, 18.356918 ], [ -64.948888, 18.356966 ], [ -64.948687, 18.357137 ], [ -64.948333, 18.357199 ], [ -64.947658, 18.35697 ], [ -64.947041, 18.356717 ], [ -64.946974, 18.356704 ], [ -64.946252, 18.356457 ], [ -64.94477, 18.355374 ], [ -64.944699, 18.355324 ], [ -64.94455, 18.355218 ], [ -64.944507, 18.355156 ], [ -64.944459, 18.355086 ], [ -64.943672, 18.35461 ], [ -64.941953, 18.354392 ], [ -64.941879, 18.354046 ], [ -64.941542, 18.352983 ], [ -64.941283, 18.351586 ], [ -64.941091, 18.350564 ], [ -64.940982, 18.35033 ], [ -64.94031, 18.348896 ], [ -64.940228, 18.348636 ], [ -64.939829, 18.347988 ], [ -64.939392, 18.34722 ], [ -64.939084, 18.34636 ], [ -64.93902, 18.346181 ], [ -64.938869, 18.345429 ], [ -64.938862, 18.34541 ], [ -64.938801, 18.345113 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "030", "TRACTCE10": "961200", "GEOID10": "78030961200", "NAME10": "9612", "NAMELSAD10": "Census Tract 9612", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1012992, "AWATER10": 804452, "INTPTLAT10": "+18.3385881", "INTPTLON10": "-064.9258425" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.92645, 18.33021 ], [ -64.928827, 18.328851 ], [ -64.929679, 18.334125 ], [ -64.930484, 18.339592 ], [ -64.930604, 18.339599 ], [ -64.931257, 18.339637 ], [ -64.931396, 18.339645 ], [ -64.931389, 18.339718 ], [ -64.930838, 18.339696 ], [ -64.930519, 18.339684 ], [ -64.930498, 18.339781 ], [ -64.93045, 18.340094 ], [ -64.930359, 18.340076 ], [ -64.930344, 18.340103 ], [ -64.930599, 18.340336 ], [ -64.930649, 18.340378 ], [ -64.930801, 18.340536 ], [ -64.930862, 18.340574 ], [ -64.930992, 18.340562 ], [ -64.931183, 18.340531 ], [ -64.931177, 18.340654 ], [ -64.931169, 18.340804 ], [ -64.93114, 18.341404 ], [ -64.931122, 18.341794 ], [ -64.931068, 18.34186 ], [ -64.9311, 18.34216 ], [ -64.931102, 18.342232 ], [ -64.931112, 18.342449 ], [ -64.931116, 18.342522 ], [ -64.931117, 18.342563 ], [ -64.931123, 18.342688 ], [ -64.931125, 18.34273 ], [ -64.931129, 18.34285 ], [ -64.931137, 18.34305 ], [ -64.931208, 18.343189 ], [ -64.931252, 18.34333 ], [ -64.931254, 18.343468 ], [ -64.931256, 18.343531 ], [ -64.931258, 18.343582 ], [ -64.931258, 18.343599 ], [ -64.93126, 18.34365 ], [ -64.931259, 18.343651 ], [ -64.931259, 18.343669 ], [ -64.931257, 18.343703 ], [ -64.931255, 18.343742 ], [ -64.931251, 18.343805 ], [ -64.931251, 18.343814 ], [ -64.93125, 18.34384 ], [ -64.931253, 18.343975 ], [ -64.931255, 18.34406 ], [ -64.93126, 18.34428 ], [ -64.931259, 18.34428 ], [ -64.931248, 18.34438 ], [ -64.931246, 18.344398 ], [ -64.931232, 18.344515 ], [ -64.931229, 18.34453 ], [ -64.931224, 18.344575 ], [ -64.931223, 18.344591 ], [ -64.931183, 18.34511 ], [ -64.931198, 18.345425 ], [ -64.931212, 18.345527 ], [ -64.931233, 18.345681 ], [ -64.93124, 18.34573 ], [ -64.93126, 18.34582 ], [ -64.931318, 18.345848 ], [ -64.93184, 18.3461 ], [ -64.931876, 18.346116 ], [ -64.932065, 18.346201 ], [ -64.93228, 18.34628 ], [ -64.93242, 18.34631 ], [ -64.932586, 18.346377 ], [ -64.932606, 18.347356 ], [ -64.932607, 18.347385 ], [ -64.932666, 18.3474 ], [ -64.932726, 18.347418 ], [ -64.932709, 18.347822 ], [ -64.932317, 18.347957 ], [ -64.932253, 18.347979 ], [ -64.931862, 18.348115 ], [ -64.931551, 18.348224 ], [ -64.931544, 18.348229 ], [ -64.931526, 18.348244 ], [ -64.93152, 18.34825 ], [ -64.931454, 18.348292 ], [ -64.93129, 18.3484 ], [ -64.931258, 18.348422 ], [ -64.931194, 18.348468 ], [ -64.931146, 18.3485 ], [ -64.931008, 18.348599 ], [ -64.93098, 18.34862 ], [ -64.930963, 18.348634 ], [ -64.930822, 18.348752 ], [ -64.93079, 18.34878 ], [ -64.93067, 18.34885 ], [ -64.930634, 18.348861 ], [ -64.929512, 18.348739 ], [ -64.929324, 18.3488 ], [ -64.9292, 18.348706 ], [ -64.928884, 18.348672 ], [ -64.927719, 18.34855 ], [ -64.92593, 18.34834 ], [ -64.925859, 18.348342 ], [ -64.925636, 18.348322 ], [ -64.925141, 18.348273 ], [ -64.92407, 18.34817 ], [ -64.92372, 18.34812 ], [ -64.923557, 18.348079 ], [ -64.923322, 18.348065 ], [ -64.923172, 18.348067 ], [ -64.923113, 18.348049 ], [ -64.922977, 18.348028 ], [ -64.921938, 18.347908 ], [ -64.921958, 18.347826 ], [ -64.922154, 18.347066 ], [ -64.92227, 18.346341 ], [ -64.922277, 18.346306 ], [ -64.922622, 18.344731 ], [ -64.922936, 18.343356 ], [ -64.92299, 18.342957 ], [ -64.922711, 18.342705 ], [ -64.922025, 18.342086 ], [ -64.921527, 18.341636 ], [ -64.92143, 18.34154 ], [ -64.92142, 18.341516 ], [ -64.921398, 18.341444 ], [ -64.92139, 18.34142 ], [ -64.921385, 18.34133 ], [ -64.92138, 18.34124 ], [ -64.92144, 18.34105 ], [ -64.92145, 18.34102 ], [ -64.92146, 18.34086 ], [ -64.92135, 18.34016 ], [ -64.92133, 18.33998 ], [ -64.92133, 18.339923 ], [ -64.92133, 18.33987 ], [ -64.92139, 18.3397 ], [ -64.921474, 18.339581 ], [ -64.92151, 18.33953 ], [ -64.921548, 18.339488 ], [ -64.921792, 18.339228 ], [ -64.92182, 18.3392 ], [ -64.92188, 18.339146 ], [ -64.92192, 18.33911 ], [ -64.921948, 18.339069 ], [ -64.92204, 18.33894 ], [ -64.922115, 18.338835 ], [ -64.922129, 18.338814 ], [ -64.92219, 18.33873 ], [ -64.922224, 18.338698 ], [ -64.922326, 18.338602 ], [ -64.92236, 18.33857 ], [ -64.922818, 18.337478 ], [ -64.922595, 18.33737 ], [ -64.922238, 18.337222 ], [ -64.921707, 18.337004 ], [ -64.921211, 18.336769 ], [ -64.920815, 18.336437 ], [ -64.920173, 18.335792 ], [ -64.920021, 18.335661 ], [ -64.920059, 18.335573 ], [ -64.919998, 18.335506 ], [ -64.919884, 18.335318 ], [ -64.91967, 18.335009 ], [ -64.919415, 18.334618 ], [ -64.919574, 18.334522 ], [ -64.920371, 18.334057 ], [ -64.924587, 18.33147 ], [ -64.924669, 18.331423 ], [ -64.926155, 18.330515 ], [ -64.926514, 18.330313 ], [ -64.92645, 18.33021 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "030", "TRACTCE10": "961000", "GEOID10": "78030961000", "NAME10": "9610", "NAMELSAD10": "Census Tract 9610", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2100816, "AWATER10": 2362526, "INTPTLAT10": "+18.3293485", "INTPTLON10": "-064.9347420" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.928827, 18.328851 ], [ -64.9287, 18.328192 ], [ -64.927292, 18.321412 ], [ -64.927219, 18.320881 ], [ -64.932938, 18.32247 ], [ -64.932976, 18.32247 ], [ -64.932999, 18.322523 ], [ -64.933007, 18.322531 ], [ -64.933022, 18.322546 ], [ -64.933024, 18.322541 ], [ -64.933038, 18.322515 ], [ -64.933044, 18.322502 ], [ -64.933035, 18.322488 ], [ -64.933006, 18.322445 ], [ -64.940111, 18.31751 ], [ -64.940117, 18.317538 ], [ -64.94014, 18.317549 ], [ -64.940176, 18.317556 ], [ -64.940215, 18.317554 ], [ -64.940239, 18.317571 ], [ -64.940238, 18.317604 ], [ -64.940215, 18.317637 ], [ -64.940186, 18.317703 ], [ -64.940169, 18.317753 ], [ -64.940169, 18.317797 ], [ -64.940203, 18.317846 ], [ -64.940226, 18.317863 ], [ -64.940263, 18.31787 ], [ -64.940315, 18.317896 ], [ -64.940325, 18.317962 ], [ -64.940307, 18.318006 ], [ -64.94028, 18.318046 ], [ -64.940221, 18.318116 ], [ -64.940209, 18.318166 ], [ -64.940232, 18.318221 ], [ -64.940267, 18.318281 ], [ -64.94027, 18.318295 ], [ -64.94028, 18.318336 ], [ -64.940273, 18.318372 ], [ -64.940274, 18.3184 ], [ -64.940278, 18.318469 ], [ -64.940302, 18.31848 ], [ -64.940335, 18.31848 ], [ -64.940351, 18.318487 ], [ -64.940392, 18.318506 ], [ -64.940411, 18.318507 ], [ -64.940423, 18.318524 ], [ -64.940434, 18.318535 ], [ -64.940447, 18.318547 ], [ -64.940456, 18.318581 ], [ -64.940457, 18.318584 ], [ -64.940452, 18.318598 ], [ -64.940446, 18.318617 ], [ -64.940405, 18.318666 ], [ -64.940371, 18.318711 ], [ -64.940348, 18.318755 ], [ -64.940342, 18.318778 ], [ -64.940336, 18.318804 ], [ -64.940336, 18.318865 ], [ -64.940348, 18.318948 ], [ -64.94044, 18.319141 ], [ -64.940457, 18.319171 ], [ -64.940486, 18.319223 ], [ -64.941155, 18.320897 ], [ -64.941161, 18.320958 ], [ -64.941169, 18.320975 ], [ -64.941238, 18.321019 ], [ -64.941259, 18.321035 ], [ -64.941265, 18.321068 ], [ -64.941247, 18.321107 ], [ -64.941203, 18.3211 ], [ -64.941178, 18.321134 ], [ -64.941161, 18.3212 ], [ -64.941195, 18.32125 ], [ -64.941247, 18.321288 ], [ -64.941294, 18.321299 ], [ -64.941322, 18.321321 ], [ -64.941307, 18.321343 ], [ -64.94127, 18.321365 ], [ -64.941253, 18.32141 ], [ -64.941242, 18.321459 ], [ -64.941242, 18.32152 ], [ -64.941265, 18.32158 ], [ -64.941294, 18.32163 ], [ -64.941284, 18.321673 ], [ -64.94127, 18.321707 ], [ -64.941253, 18.321734 ], [ -64.941242, 18.321789 ], [ -64.941253, 18.32185 ], [ -64.941288, 18.321905 ], [ -64.941328, 18.321966 ], [ -64.941318, 18.322027 ], [ -64.941253, 18.322087 ], [ -64.941236, 18.322142 ], [ -64.941253, 18.322192 ], [ -64.941893, 18.324576 ], [ -64.941934, 18.324653 ], [ -64.941957, 18.324659 ], [ -64.941982, 18.324682 ], [ -64.942015, 18.32473 ], [ -64.941988, 18.32477 ], [ -64.941969, 18.324791 ], [ -64.941963, 18.324846 ], [ -64.941963, 18.324901 ], [ -64.941941, 18.324952 ], [ -64.941917, 18.324973 ], [ -64.941922, 18.325072 ], [ -64.941946, 18.325105 ], [ -64.941963, 18.325116 ], [ -64.941992, 18.32516 ], [ -64.942026, 18.325243 ], [ -64.941997, 18.325298 ], [ -64.942003, 18.325342 ], [ -64.942057, 18.325392 ], [ -64.942182, 18.325408 ], [ -64.942236, 18.325425 ], [ -64.942257, 18.325485 ], [ -64.942263, 18.325498 ], [ -64.942286, 18.325535 ], [ -64.94232, 18.325584 ], [ -64.942384, 18.32565 ], [ -64.942418, 18.325716 ], [ -64.942453, 18.325749 ], [ -64.942459, 18.325837 ], [ -64.942407, 18.326014 ], [ -64.942374, 18.326092 ], [ -64.94231, 18.32617 ], [ -64.94224, 18.326223 ], [ -64.942165, 18.326267 ], [ -64.941964, 18.326329 ], [ -64.941866, 18.326373 ], [ -64.94178, 18.326455 ], [ -64.941761, 18.326482 ], [ -64.941738, 18.326537 ], [ -64.941744, 18.326564 ], [ -64.941761, 18.326586 ], [ -64.941844, 18.326592 ], [ -64.941934, 18.326575 ], [ -64.942021, 18.326586 ], [ -64.942045, 18.326626 ], [ -64.942026, 18.326658 ], [ -64.942003, 18.326724 ], [ -64.942015, 18.326779 ], [ -64.942003, 18.326856 ], [ -64.941969, 18.326906 ], [ -64.941907, 18.326951 ], [ -64.941876, 18.326955 ], [ -64.94183, 18.32701 ], [ -64.941813, 18.327055 ], [ -64.941842, 18.327099 ], [ -64.94189, 18.327123 ], [ -64.941975, 18.327148 ], [ -64.942119, 18.327181 ], [ -64.942217, 18.327231 ], [ -64.942269, 18.327275 ], [ -64.942293, 18.327335 ], [ -64.94231, 18.32743 ], [ -64.942309, 18.327572 ], [ -64.942332, 18.327605 ], [ -64.94242, 18.327626 ], [ -64.942471, 18.327622 ], [ -64.942535, 18.32769 ], [ -64.942517, 18.327721 ], [ -64.942557, 18.327754 ], [ -64.942609, 18.327761 ], [ -64.942667, 18.327787 ], [ -64.942622, 18.327815 ], [ -64.942592, 18.32782 ], [ -64.942588, 18.327878 ], [ -64.942626, 18.32793 ], [ -64.942661, 18.327941 ], [ -64.942661, 18.327991 ], [ -64.942707, 18.328029 ], [ -64.942729, 18.328029 ], [ -64.94424, 18.329586 ], [ -64.944247, 18.329637 ], [ -64.944293, 18.329726 ], [ -64.944345, 18.329797 ], [ -64.944561, 18.33178 ], [ -64.944778, 18.333759 ], [ -64.944808, 18.333791 ], [ -64.944817, 18.333799 ], [ -64.944821, 18.333821 ], [ -64.944824, 18.333841 ], [ -64.944812, 18.333866 ], [ -64.944797, 18.333897 ], [ -64.944772, 18.333942 ], [ -64.944722, 18.333986 ], [ -64.944678, 18.334065 ], [ -64.944615, 18.334155 ], [ -64.944591, 18.334203 ], [ -64.94458, 18.334225 ], [ -64.944664, 18.334265 ], [ -64.944715, 18.334308 ], [ -64.944785, 18.334371 ], [ -64.944837, 18.334436 ], [ -64.944892, 18.334491 ], [ -64.94496, 18.334595 ], [ -64.94501, 18.334655 ], [ -64.945063, 18.33472 ], [ -64.945116, 18.334784 ], [ -64.945145, 18.33482 ], [ -64.945145, 18.334843 ], [ -64.945106, 18.334877 ], [ -64.945064, 18.334915 ], [ -64.945053, 18.334925 ], [ -64.945093, 18.334978 ], [ -64.945145, 18.335047 ], [ -64.945206, 18.335005 ], [ -64.945251, 18.334984 ], [ -64.945313, 18.335062 ], [ -64.945369, 18.33513 ], [ -64.945427, 18.335191 ], [ -64.945541, 18.335295 ], [ -64.945625, 18.335372 ], [ -64.945708, 18.335438 ], [ -64.945812, 18.335511 ], [ -64.945884, 18.335561 ], [ -64.94599, 18.335609 ], [ -64.946097, 18.335668 ], [ -64.946221, 18.335716 ], [ -64.946373, 18.335775 ], [ -64.946466, 18.335798 ], [ -64.946636, 18.335839 ], [ -64.946745, 18.33585 ], [ -64.946873, 18.335877 ], [ -64.946959, 18.335876 ], [ -64.947137, 18.3359 ], [ -64.94727, 18.335899 ], [ -64.947278, 18.335989 ], [ -64.947417, 18.337706 ], [ -64.947423, 18.337776 ], [ -64.947466, 18.338329 ], [ -64.947548, 18.339063 ], [ -64.947625, 18.339711 ], [ -64.947655, 18.340006 ], [ -64.947723, 18.340601 ], [ -64.947755, 18.341005 ], [ -64.947858, 18.341921 ], [ -64.947884, 18.342236 ], [ -64.947922, 18.342299 ], [ -64.947952, 18.342381 ], [ -64.947968, 18.34244 ], [ -64.947983, 18.342716 ], [ -64.947983, 18.342875 ], [ -64.947998, 18.343044 ], [ -64.948006, 18.343113 ], [ -64.947996, 18.343744 ], [ -64.948085, 18.345143 ], [ -64.94738, 18.344891 ], [ -64.947224, 18.344836 ], [ -64.946757, 18.344669 ], [ -64.946528, 18.344588 ], [ -64.946226, 18.34448 ], [ -64.945671, 18.344282 ], [ -64.945036, 18.344056 ], [ -64.944438, 18.343842 ], [ -64.943874, 18.343641 ], [ -64.943675, 18.34357 ], [ -64.943046, 18.343346 ], [ -64.942605, 18.343188 ], [ -64.942516, 18.343157 ], [ -64.94246, 18.343166 ], [ -64.942141, 18.343212 ], [ -64.941728, 18.343268 ], [ -64.940347, 18.34342 ], [ -64.94031, 18.343425 ], [ -64.93992, 18.343483 ], [ -64.939317, 18.343449 ], [ -64.938926, 18.343395 ], [ -64.938862, 18.343399 ], [ -64.938547, 18.343428 ], [ -64.938525, 18.34351 ], [ -64.938497, 18.343629 ], [ -64.938543, 18.343851 ], [ -64.938801, 18.345113 ], [ -64.938862, 18.34541 ], [ -64.938869, 18.345429 ], [ -64.93902, 18.346181 ], [ -64.939084, 18.34636 ], [ -64.939392, 18.34722 ], [ -64.939829, 18.347988 ], [ -64.938569, 18.347754 ], [ -64.938131, 18.347822 ], [ -64.93741, 18.346784 ], [ -64.93733, 18.346646 ], [ -64.937386, 18.346611 ], [ -64.937387, 18.346577 ], [ -64.937343, 18.346536 ], [ -64.93729, 18.346504 ], [ -64.937277, 18.346496 ], [ -64.937188, 18.346456 ], [ -64.9371, 18.346418 ], [ -64.937019, 18.346369 ], [ -64.936897, 18.346407 ], [ -64.93616, 18.346655 ], [ -64.935825, 18.346769 ], [ -64.935395, 18.34692 ], [ -64.934821, 18.347108 ], [ -64.934192, 18.34732 ], [ -64.933758, 18.347467 ], [ -64.932709, 18.347822 ], [ -64.932726, 18.347418 ], [ -64.932666, 18.3474 ], [ -64.932607, 18.347385 ], [ -64.932606, 18.347356 ], [ -64.932586, 18.346377 ], [ -64.93242, 18.34631 ], [ -64.93228, 18.34628 ], [ -64.932065, 18.346201 ], [ -64.931876, 18.346116 ], [ -64.93184, 18.3461 ], [ -64.931318, 18.345848 ], [ -64.93126, 18.34582 ], [ -64.93124, 18.34573 ], [ -64.931233, 18.345681 ], [ -64.931212, 18.345527 ], [ -64.931198, 18.345425 ], [ -64.931183, 18.34511 ], [ -64.931223, 18.344591 ], [ -64.931224, 18.344575 ], [ -64.931229, 18.34453 ], [ -64.931232, 18.344515 ], [ -64.931246, 18.344398 ], [ -64.931248, 18.34438 ], [ -64.931259, 18.34428 ], [ -64.93126, 18.34428 ], [ -64.931255, 18.34406 ], [ -64.931253, 18.343975 ], [ -64.93125, 18.34384 ], [ -64.931251, 18.343814 ], [ -64.931251, 18.343805 ], [ -64.931255, 18.343742 ], [ -64.931257, 18.343703 ], [ -64.931259, 18.343669 ], [ -64.931259, 18.343651 ], [ -64.93126, 18.34365 ], [ -64.931258, 18.343599 ], [ -64.931258, 18.343582 ], [ -64.931256, 18.343531 ], [ -64.931254, 18.343468 ], [ -64.931252, 18.34333 ], [ -64.931208, 18.343189 ], [ -64.931137, 18.34305 ], [ -64.931129, 18.34285 ], [ -64.931125, 18.34273 ], [ -64.931123, 18.342688 ], [ -64.931117, 18.342563 ], [ -64.931116, 18.342522 ], [ -64.931112, 18.342449 ], [ -64.931102, 18.342232 ], [ -64.9311, 18.34216 ], [ -64.931068, 18.34186 ], [ -64.931122, 18.341794 ], [ -64.93114, 18.341404 ], [ -64.931169, 18.340804 ], [ -64.931177, 18.340654 ], [ -64.931183, 18.340531 ], [ -64.930992, 18.340562 ], [ -64.930862, 18.340574 ], [ -64.930801, 18.340536 ], [ -64.930649, 18.340378 ], [ -64.930599, 18.340336 ], [ -64.930344, 18.340103 ], [ -64.930359, 18.340076 ], [ -64.93045, 18.340094 ], [ -64.930498, 18.339781 ], [ -64.930519, 18.339684 ], [ -64.930838, 18.339696 ], [ -64.931389, 18.339718 ], [ -64.931396, 18.339645 ], [ -64.931257, 18.339637 ], [ -64.930604, 18.339599 ], [ -64.930484, 18.339592 ], [ -64.929679, 18.334125 ], [ -64.928827, 18.328851 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "030", "TRACTCE10": "960800", "GEOID10": "78030960800", "NAME10": "9608", "NAMELSAD10": "Census Tract 9608", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 7634785, "AWATER10": 3687734, "INTPTLAT10": "+18.3350093", "INTPTLON10": "-064.9607059" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.942708, 18.317765 ], [ -64.942657, 18.317796 ], [ -64.942553, 18.317771 ], [ -64.94255, 18.317726 ], [ -64.942547, 18.317663 ], [ -64.94246, 18.317632 ], [ -64.94244, 18.317563 ], [ -64.942476, 18.317483 ], [ -64.942562, 18.317417 ], [ -64.94271, 18.317487 ], [ -64.942733, 18.317546 ], [ -64.942737, 18.317667 ], [ -64.942708, 18.317765 ] ] ], [ [ [ -64.957558, 18.306211 ], [ -64.957528, 18.306268 ], [ -64.957409, 18.306202 ], [ -64.957418, 18.306122 ], [ -64.95748, 18.3061 ], [ -64.957582, 18.30614 ], [ -64.957558, 18.306211 ] ] ], [ [ [ -64.985996, 18.345194 ], [ -64.985793, 18.345225 ], [ -64.985749, 18.345216 ], [ -64.985714, 18.345179 ], [ -64.985679, 18.345146 ], [ -64.985635, 18.345102 ], [ -64.985525, 18.345054 ], [ -64.985376, 18.345054 ], [ -64.985258, 18.345155 ], [ -64.985245, 18.345194 ], [ -64.985228, 18.345234 ], [ -64.985162, 18.345278 ], [ -64.985109, 18.345374 ], [ -64.985123, 18.345488 ], [ -64.985131, 18.345588 ], [ -64.985136, 18.345698 ], [ -64.985109, 18.34579 ], [ -64.985079, 18.345838 ], [ -64.985039, 18.345904 ], [ -64.984978, 18.345961 ], [ -64.984869, 18.345996 ], [ -64.98472, 18.346066 ], [ -64.984518, 18.346105 ], [ -64.984365, 18.346153 ], [ -64.984212, 18.346158 ], [ -64.983953, 18.346162 ], [ -64.983647, 18.346158 ], [ -64.98338, 18.34614 ], [ -64.983191, 18.346127 ], [ -64.982872, 18.346009 ], [ -64.982688, 18.345917 ], [ -64.98246, 18.345812 ], [ -64.9822, 18.345744 ], [ -64.982042, 18.345707 ], [ -64.981935, 18.34572 ], [ -64.981786, 18.345725 ], [ -64.981637, 18.345733 ], [ -64.981505, 18.34576 ], [ -64.981382, 18.345795 ], [ -64.98125, 18.34579 ], [ -64.981097, 18.345747 ], [ -64.980952, 18.345637 ], [ -64.980825, 18.345553 ], [ -64.98068, 18.345457 ], [ -64.980588, 18.3454 ], [ -64.980447, 18.345316 ], [ -64.980187, 18.345276 ], [ -64.979826, 18.345767 ], [ -64.979732, 18.345895 ], [ -64.978182, 18.348006 ], [ -64.977074, 18.349456 ], [ -64.976067, 18.348432 ], [ -64.975648, 18.348258 ], [ -64.975837, 18.347789 ], [ -64.974051, 18.347047 ], [ -64.972948, 18.346589 ], [ -64.972805, 18.347184 ], [ -64.972751, 18.347413 ], [ -64.971168, 18.347795 ], [ -64.97112, 18.35347 ], [ -64.970888, 18.353427 ], [ -64.970662, 18.354467 ], [ -64.970608, 18.354656 ], [ -64.970526, 18.355005 ], [ -64.970749, 18.356946 ], [ -64.970738, 18.356947 ], [ -64.970407, 18.357005 ], [ -64.970348, 18.356907 ], [ -64.97029, 18.35681 ], [ -64.970235, 18.356758 ], [ -64.97006, 18.35659 ], [ -64.96962, 18.35615 ], [ -64.96945, 18.35601 ], [ -64.969292, 18.355935 ], [ -64.96926, 18.35592 ], [ -64.96899, 18.35582 ], [ -64.968915, 18.355795 ], [ -64.96884, 18.35577 ], [ -64.968755, 18.355735 ], [ -64.96867, 18.3557 ], [ -64.96842, 18.35555 ], [ -64.96813, 18.35543 ], [ -64.968053, 18.355408 ], [ -64.96778, 18.35533 ], [ -64.96741, 18.35527 ], [ -64.967117, 18.355187 ], [ -64.96688, 18.35512 ], [ -64.96652, 18.35505 ], [ -64.966187, 18.355019 ], [ -64.965498, 18.354955 ], [ -64.965339, 18.354941 ], [ -64.96521, 18.354925 ], [ -64.965039, 18.354894 ], [ -64.964914, 18.354865 ], [ -64.964743, 18.354818 ], [ -64.96465, 18.354788 ], [ -64.964552, 18.354756 ], [ -64.96454, 18.354751 ], [ -64.964339, 18.354678 ], [ -64.964214, 18.354636 ], [ -64.964135, 18.35461 ], [ -64.964106, 18.354601 ], [ -64.964042, 18.354184 ], [ -64.963934, 18.35161 ], [ -64.963804, 18.351617 ], [ -64.96358, 18.35163 ], [ -64.96338, 18.35165 ], [ -64.963261, 18.351694 ], [ -64.96303, 18.35178 ], [ -64.96294, 18.3518 ], [ -64.96284, 18.35179 ], [ -64.96276, 18.35175 ], [ -64.96269, 18.35168 ], [ -64.962528, 18.351432 ], [ -64.96252, 18.35142 ], [ -64.96245, 18.35132 ], [ -64.96234, 18.35125 ], [ -64.962321, 18.351244 ], [ -64.962212, 18.351205 ], [ -64.96214, 18.35118 ], [ -64.962127, 18.351177 ], [ -64.962033, 18.351155 ], [ -64.961837, 18.351107 ], [ -64.961785, 18.351095 ], [ -64.96168, 18.35107 ], [ -64.9614, 18.35098 ], [ -64.96109, 18.35094 ], [ -64.960975, 18.35089 ], [ -64.96093, 18.35087 ], [ -64.96076, 18.35069 ], [ -64.9607, 18.35059 ], [ -64.960658, 18.35055 ], [ -64.96052, 18.35042 ], [ -64.96034, 18.350271 ], [ -64.96023, 18.35018 ], [ -64.96005, 18.34999 ], [ -64.95986, 18.34971 ], [ -64.95957, 18.34939 ], [ -64.95944, 18.3492 ], [ -64.95933, 18.34902 ], [ -64.959226, 18.348881 ], [ -64.95915, 18.34878 ], [ -64.95903, 18.34863 ], [ -64.95889, 18.34839 ], [ -64.958772, 18.34815 ], [ -64.958729, 18.348059 ], [ -64.95871, 18.34802 ], [ -64.95863, 18.34789 ], [ -64.95855, 18.34781 ], [ -64.95838, 18.34776 ], [ -64.958177, 18.347707 ], [ -64.95792, 18.34764 ], [ -64.957769, 18.347622 ], [ -64.95775, 18.34762 ], [ -64.95734, 18.34762 ], [ -64.957317, 18.347613 ], [ -64.95724, 18.34759 ], [ -64.957185, 18.347546 ], [ -64.95714, 18.34751 ], [ -64.956929, 18.347233 ], [ -64.95682, 18.34709 ], [ -64.95656, 18.34669 ], [ -64.95642, 18.34641 ], [ -64.95632, 18.346186 ], [ -64.95618, 18.34587 ], [ -64.95615, 18.34582 ], [ -64.95613, 18.34578 ], [ -64.95606, 18.34572 ], [ -64.95595, 18.34567 ], [ -64.955944, 18.345669 ], [ -64.95576, 18.34566 ], [ -64.95565, 18.34562 ], [ -64.9555, 18.34549 ], [ -64.955273, 18.34531 ], [ -64.95526, 18.3453 ], [ -64.95516, 18.3452 ], [ -64.95515, 18.34519 ], [ -64.95515, 18.3451 ], [ -64.955333, 18.345108 ], [ -64.95558, 18.34512 ], [ -64.95579, 18.34512 ], [ -64.955888, 18.345103 ], [ -64.95591, 18.3451 ], [ -64.95599, 18.34506 ], [ -64.956047, 18.345013 ], [ -64.95605, 18.34501 ], [ -64.95608, 18.34497 ], [ -64.95612, 18.34493 ], [ -64.95612, 18.344918 ], [ -64.95613, 18.34486 ], [ -64.95613, 18.34476 ], [ -64.9561, 18.3447 ], [ -64.956045, 18.344568 ], [ -64.95603, 18.34453 ], [ -64.95599, 18.34446 ], [ -64.95598, 18.34445 ], [ -64.95595, 18.34442 ], [ -64.95594, 18.34441 ], [ -64.95583, 18.34435 ], [ -64.955741, 18.344315 ], [ -64.95557, 18.34425 ], [ -64.95535, 18.34411 ], [ -64.955206, 18.343947 ], [ -64.9552, 18.34394 ], [ -64.95514, 18.34382 ], [ -64.95511, 18.34375 ], [ -64.9551, 18.343727 ], [ -64.955087, 18.343696 ], [ -64.955071, 18.343659 ], [ -64.955062, 18.343637 ], [ -64.95505, 18.34361 ], [ -64.955011, 18.343528 ], [ -64.95494, 18.34338 ], [ -64.954886, 18.343281 ], [ -64.954846, 18.343209 ], [ -64.95483, 18.34318 ], [ -64.954782, 18.343109 ], [ -64.95459, 18.34282 ], [ -64.95453, 18.34268 ], [ -64.95448, 18.34255 ], [ -64.954471, 18.34245 ], [ -64.95447, 18.34241 ], [ -64.95451, 18.34225 ], [ -64.95459, 18.34201 ], [ -64.95469, 18.34166 ], [ -64.95474, 18.34147 ], [ -64.95476, 18.34132 ], [ -64.9547, 18.34095 ], [ -64.95462, 18.34079 ], [ -64.954574, 18.340716 ], [ -64.954362, 18.340373 ], [ -64.95436, 18.34037 ], [ -64.95425, 18.34016 ], [ -64.954046, 18.339707 ], [ -64.953996, 18.339597 ], [ -64.953849, 18.339269 ], [ -64.9538, 18.33916 ], [ -64.953721, 18.339022 ], [ -64.953487, 18.338608 ], [ -64.953486, 18.338607 ], [ -64.95341, 18.33847 ], [ -64.953282, 18.338303 ], [ -64.95305, 18.338 ], [ -64.95296, 18.33784 ], [ -64.952935, 18.337782 ], [ -64.95291, 18.33772 ], [ -64.9529, 18.33763 ], [ -64.95291, 18.33758 ], [ -64.953005, 18.337309 ], [ -64.953046, 18.337069 ], [ -64.95273, 18.33706 ], [ -64.952704, 18.33706 ], [ -64.95259, 18.33706 ], [ -64.95246, 18.337055 ], [ -64.95233, 18.33705 ], [ -64.95224, 18.33705 ], [ -64.95217, 18.33706 ], [ -64.952162, 18.33706 ], [ -64.95177, 18.33711 ], [ -64.95123, 18.33719 ], [ -64.950886, 18.337213 ], [ -64.95079, 18.33722 ], [ -64.950625, 18.33723 ], [ -64.95046, 18.33724 ], [ -64.95037, 18.33722 ], [ -64.95011, 18.33727 ], [ -64.950031, 18.337293 ], [ -64.94964, 18.33741 ], [ -64.94916, 18.3375 ], [ -64.948745, 18.337548 ], [ -64.94831, 18.3376 ], [ -64.948081, 18.337627 ], [ -64.94748, 18.3377 ], [ -64.947417, 18.337706 ], [ -64.947278, 18.335989 ], [ -64.94727, 18.335899 ], [ -64.947137, 18.3359 ], [ -64.946959, 18.335876 ], [ -64.946873, 18.335877 ], [ -64.946745, 18.33585 ], [ -64.946636, 18.335839 ], [ -64.946466, 18.335798 ], [ -64.946373, 18.335775 ], [ -64.946221, 18.335716 ], [ -64.946097, 18.335668 ], [ -64.94599, 18.335609 ], [ -64.945884, 18.335561 ], [ -64.945812, 18.335511 ], [ -64.945708, 18.335438 ], [ -64.945625, 18.335372 ], [ -64.945541, 18.335295 ], [ -64.945427, 18.335191 ], [ -64.945369, 18.33513 ], [ -64.945313, 18.335062 ], [ -64.945251, 18.334984 ], [ -64.945206, 18.335005 ], [ -64.945145, 18.335047 ], [ -64.945093, 18.334978 ], [ -64.945053, 18.334925 ], [ -64.945064, 18.334915 ], [ -64.945106, 18.334877 ], [ -64.945145, 18.334843 ], [ -64.945145, 18.33482 ], [ -64.945116, 18.334784 ], [ -64.945063, 18.33472 ], [ -64.94501, 18.334655 ], [ -64.94496, 18.334595 ], [ -64.944892, 18.334491 ], [ -64.944837, 18.334436 ], [ -64.944785, 18.334371 ], [ -64.944715, 18.334308 ], [ -64.944664, 18.334265 ], [ -64.94458, 18.334225 ], [ -64.944591, 18.334203 ], [ -64.944615, 18.334155 ], [ -64.944678, 18.334065 ], [ -64.944722, 18.333986 ], [ -64.944772, 18.333942 ], [ -64.944797, 18.333897 ], [ -64.944812, 18.333866 ], [ -64.944824, 18.333841 ], [ -64.944821, 18.333821 ], [ -64.944817, 18.333799 ], [ -64.944808, 18.333791 ], [ -64.944778, 18.333759 ], [ -64.944561, 18.33178 ], [ -64.944345, 18.329797 ], [ -64.944293, 18.329726 ], [ -64.944247, 18.329637 ], [ -64.94424, 18.329586 ], [ -64.942729, 18.328029 ], [ -64.942707, 18.328029 ], [ -64.942661, 18.327991 ], [ -64.942661, 18.327941 ], [ -64.942626, 18.32793 ], [ -64.942588, 18.327878 ], [ -64.942592, 18.32782 ], [ -64.942622, 18.327815 ], [ -64.942667, 18.327787 ], [ -64.942609, 18.327761 ], [ -64.942557, 18.327754 ], [ -64.942517, 18.327721 ], [ -64.942535, 18.32769 ], [ -64.942471, 18.327622 ], [ -64.94242, 18.327626 ], [ -64.942332, 18.327605 ], [ -64.942309, 18.327572 ], [ -64.94231, 18.32743 ], [ -64.942293, 18.327335 ], [ -64.942269, 18.327275 ], [ -64.942217, 18.327231 ], [ -64.942119, 18.327181 ], [ -64.941975, 18.327148 ], [ -64.94189, 18.327123 ], [ -64.941842, 18.327099 ], [ -64.941813, 18.327055 ], [ -64.94183, 18.32701 ], [ -64.941876, 18.326955 ], [ -64.941907, 18.326951 ], [ -64.941969, 18.326906 ], [ -64.942003, 18.326856 ], [ -64.942015, 18.326779 ], [ -64.942003, 18.326724 ], [ -64.942026, 18.326658 ], [ -64.942045, 18.326626 ], [ -64.942021, 18.326586 ], [ -64.941934, 18.326575 ], [ -64.941844, 18.326592 ], [ -64.941761, 18.326586 ], [ -64.941744, 18.326564 ], [ -64.941738, 18.326537 ], [ -64.941761, 18.326482 ], [ -64.94178, 18.326455 ], [ -64.941866, 18.326373 ], [ -64.941964, 18.326329 ], [ -64.942165, 18.326267 ], [ -64.94224, 18.326223 ], [ -64.94231, 18.32617 ], [ -64.942374, 18.326092 ], [ -64.942407, 18.326014 ], [ -64.942459, 18.325837 ], [ -64.942453, 18.325749 ], [ -64.942418, 18.325716 ], [ -64.942384, 18.32565 ], [ -64.94232, 18.325584 ], [ -64.942286, 18.325535 ], [ -64.942263, 18.325498 ], [ -64.942257, 18.325485 ], [ -64.942236, 18.325425 ], [ -64.942182, 18.325408 ], [ -64.942057, 18.325392 ], [ -64.942003, 18.325342 ], [ -64.941997, 18.325298 ], [ -64.942026, 18.325243 ], [ -64.941992, 18.32516 ], [ -64.941963, 18.325116 ], [ -64.941946, 18.325105 ], [ -64.941922, 18.325072 ], [ -64.941917, 18.324973 ], [ -64.941941, 18.324952 ], [ -64.941963, 18.324901 ], [ -64.941963, 18.324846 ], [ -64.941969, 18.324791 ], [ -64.941988, 18.32477 ], [ -64.942015, 18.32473 ], [ -64.941982, 18.324682 ], [ -64.941957, 18.324659 ], [ -64.941934, 18.324653 ], [ -64.941893, 18.324576 ], [ -64.941253, 18.322192 ], [ -64.941236, 18.322142 ], [ -64.941253, 18.322087 ], [ -64.941318, 18.322027 ], [ -64.941328, 18.321966 ], [ -64.941288, 18.321905 ], [ -64.941253, 18.32185 ], [ -64.941242, 18.321789 ], [ -64.941253, 18.321734 ], [ -64.94127, 18.321707 ], [ -64.941284, 18.321673 ], [ -64.941294, 18.32163 ], [ -64.941265, 18.32158 ], [ -64.941242, 18.32152 ], [ -64.941242, 18.321459 ], [ -64.941253, 18.32141 ], [ -64.94127, 18.321365 ], [ -64.941307, 18.321343 ], [ -64.941322, 18.321321 ], [ -64.941294, 18.321299 ], [ -64.941247, 18.321288 ], [ -64.941195, 18.32125 ], [ -64.941161, 18.3212 ], [ -64.941178, 18.321134 ], [ -64.941203, 18.3211 ], [ -64.941247, 18.321107 ], [ -64.941265, 18.321068 ], [ -64.941259, 18.321035 ], [ -64.941238, 18.321019 ], [ -64.941169, 18.320975 ], [ -64.941161, 18.320958 ], [ -64.941155, 18.320897 ], [ -64.940486, 18.319223 ], [ -64.940457, 18.319171 ], [ -64.94044, 18.319141 ], [ -64.940348, 18.318948 ], [ -64.940336, 18.318865 ], [ -64.940336, 18.318804 ], [ -64.940342, 18.318778 ], [ -64.940348, 18.318755 ], [ -64.940371, 18.318711 ], [ -64.940405, 18.318666 ], [ -64.940446, 18.318617 ], [ -64.940452, 18.318598 ], [ -64.940457, 18.318584 ], [ -64.940456, 18.318581 ], [ -64.940447, 18.318547 ], [ -64.940434, 18.318535 ], [ -64.940423, 18.318524 ], [ -64.940411, 18.318507 ], [ -64.940392, 18.318506 ], [ -64.940351, 18.318487 ], [ -64.940335, 18.31848 ], [ -64.940302, 18.31848 ], [ -64.940278, 18.318469 ], [ -64.940274, 18.3184 ], [ -64.940273, 18.318372 ], [ -64.94028, 18.318336 ], [ -64.94027, 18.318295 ], [ -64.940267, 18.318281 ], [ -64.940232, 18.318221 ], [ -64.940209, 18.318166 ], [ -64.940221, 18.318116 ], [ -64.94028, 18.318046 ], [ -64.940307, 18.318006 ], [ -64.940325, 18.317962 ], [ -64.940315, 18.317896 ], [ -64.940263, 18.31787 ], [ -64.940226, 18.317863 ], [ -64.940203, 18.317846 ], [ -64.940169, 18.317797 ], [ -64.940169, 18.317753 ], [ -64.940186, 18.317703 ], [ -64.940215, 18.317637 ], [ -64.940238, 18.317604 ], [ -64.940239, 18.317571 ], [ -64.940215, 18.317554 ], [ -64.940176, 18.317556 ], [ -64.94014, 18.317549 ], [ -64.940117, 18.317538 ], [ -64.940111, 18.31751 ], [ -64.940118, 18.317477 ], [ -64.94014, 18.317439 ], [ -64.94018, 18.317411 ], [ -64.940226, 18.317389 ], [ -64.940251, 18.31737 ], [ -64.940278, 18.317351 ], [ -64.940348, 18.317318 ], [ -64.940399, 18.317284 ], [ -64.940486, 18.317202 ], [ -64.940532, 18.317174 ], [ -64.940574, 18.317163 ], [ -64.940601, 18.317169 ], [ -64.940625, 18.317192 ], [ -64.940636, 18.317257 ], [ -64.940624, 18.317307 ], [ -64.940591, 18.317362 ], [ -64.940572, 18.317411 ], [ -64.940567, 18.317439 ], [ -64.940578, 18.317472 ], [ -64.940595, 18.317494 ], [ -64.940624, 18.317505 ], [ -64.940644, 18.317495 ], [ -64.940711, 18.317461 ], [ -64.940787, 18.317396 ], [ -64.940857, 18.31735 ], [ -64.940907, 18.317323 ], [ -64.940959, 18.317329 ], [ -64.941005, 18.31734 ], [ -64.94108, 18.317389 ], [ -64.941126, 18.317428 ], [ -64.941172, 18.317433 ], [ -64.941253, 18.317461 ], [ -64.941287, 18.317494 ], [ -64.941328, 18.317549 ], [ -64.941437, 18.317571 ], [ -64.941485, 18.317615 ], [ -64.941495, 18.317653 ], [ -64.941497, 18.317687 ], [ -64.941478, 18.317698 ], [ -64.941478, 18.317725 ], [ -64.941547, 18.317764 ], [ -64.941553, 18.317791 ], [ -64.941553, 18.317819 ], [ -64.941576, 18.317835 ], [ -64.941616, 18.317824 ], [ -64.941653, 18.317803 ], [ -64.941675, 18.317757 ], [ -64.941708, 18.317791 ], [ -64.941731, 18.317841 ], [ -64.941772, 18.317841 ], [ -64.941787, 18.317822 ], [ -64.941858, 18.317791 ], [ -64.941895, 18.317825 ], [ -64.941928, 18.317907 ], [ -64.941945, 18.31794 ], [ -64.941999, 18.317968 ], [ -64.942078, 18.317967 ], [ -64.942158, 18.31794 ], [ -64.942245, 18.317941 ], [ -64.942285, 18.318 ], [ -64.942343, 18.318022 ], [ -64.942385, 18.31799 ], [ -64.942452, 18.317835 ], [ -64.942521, 18.317797 ], [ -64.942598, 18.317801 ], [ -64.942657, 18.317796 ], [ -64.951205, 18.317124 ], [ -64.951217, 18.317008 ], [ -64.951218, 18.316872 ], [ -64.951263, 18.316606 ], [ -64.951295, 18.316361 ], [ -64.951297, 18.316353 ], [ -64.951326, 18.3161 ], [ -64.951366, 18.315863 ], [ -64.951392, 18.315725 ], [ -64.951447, 18.315428 ], [ -64.951516, 18.315097 ], [ -64.951649, 18.314849 ], [ -64.951735, 18.314641 ], [ -64.951851, 18.314425 ], [ -64.95192, 18.314244 ], [ -64.951989, 18.313979 ], [ -64.952023, 18.313753 ], [ -64.952046, 18.313269 ], [ -64.952063, 18.313155 ], [ -64.952081, 18.313071 ], [ -64.952046, 18.312905 ], [ -64.952017, 18.312856 ], [ -64.951977, 18.312801 ], [ -64.951977, 18.312732 ], [ -64.951983, 18.312663 ], [ -64.951994, 18.312613 ], [ -64.952017, 18.312575 ], [ -64.952081, 18.312525 ], [ -64.952118, 18.312515 ], [ -64.952215, 18.312449 ], [ -64.95226, 18.31241 ], [ -64.952271, 18.312355 ], [ -64.952254, 18.312311 ], [ -64.952231, 18.312283 ], [ -64.952231, 18.312217 ], [ -64.952329, 18.3122 ], [ -64.952375, 18.312211 ], [ -64.952427, 18.312162 ], [ -64.952473, 18.312101 ], [ -64.952509, 18.312095 ], [ -64.952525, 18.312074 ], [ -64.95253, 18.312046 ], [ -64.952496, 18.312019 ], [ -64.952461, 18.311975 ], [ -64.952479, 18.311919 ], [ -64.952496, 18.311897 ], [ -64.952502, 18.311853 ], [ -64.952473, 18.311793 ], [ -64.952438, 18.311765 ], [ -64.952421, 18.311738 ], [ -64.952432, 18.311683 ], [ -64.95249, 18.311677 ], [ -64.952548, 18.311677 ], [ -64.952594, 18.311661 ], [ -64.952646, 18.311617 ], [ -64.952703, 18.311512 ], [ -64.952721, 18.311468 ], [ -64.952732, 18.311374 ], [ -64.952703, 18.311352 ], [ -64.952588, 18.311347 ], [ -64.952576, 18.31127 ], [ -64.952617, 18.31122 ], [ -64.95264, 18.311149 ], [ -64.952663, 18.311044 ], [ -64.952705, 18.311034 ], [ -64.952744, 18.311049 ], [ -64.952749, 18.311082 ], [ -64.952796, 18.311115 ], [ -64.952855, 18.311074 ], [ -64.952882, 18.310994 ], [ -64.952907, 18.31084 ], [ -64.952982, 18.310693 ], [ -64.95302, 18.310675 ], [ -64.953028, 18.310654 ], [ -64.952992, 18.310614 ], [ -64.952922, 18.310559 ], [ -64.952876, 18.310515 ], [ -64.952847, 18.31046 ], [ -64.95283, 18.310377 ], [ -64.952836, 18.310285 ], [ -64.952859, 18.310196 ], [ -64.952895, 18.310113 ], [ -64.952899, 18.310047 ], [ -64.952878, 18.30996 ], [ -64.95287, 18.309898 ], [ -64.952899, 18.309838 ], [ -64.952918, 18.309772 ], [ -64.952939, 18.30965 ], [ -64.952963, 18.309579 ], [ -64.952986, 18.309463 ], [ -64.95298, 18.309361 ], [ -64.952963, 18.309246 ], [ -64.952934, 18.309094 ], [ -64.95293, 18.30904 ], [ -64.952974, 18.309023 ], [ -64.953009, 18.309039 ], [ -64.953041, 18.309034 ], [ -64.953072, 18.309 ], [ -64.953095, 18.308962 ], [ -64.953095, 18.308918 ], [ -64.953124, 18.308808 ], [ -64.953124, 18.308731 ], [ -64.953141, 18.308653 ], [ -64.953147, 18.308534 ], [ -64.953176, 18.308455 ], [ -64.953228, 18.308411 ], [ -64.953256, 18.308373 ], [ -64.953299, 18.308352 ], [ -64.953389, 18.308279 ], [ -64.953412, 18.308229 ], [ -64.953429, 18.308138 ], [ -64.953492, 18.30806 ], [ -64.953547, 18.30801 ], [ -64.953579, 18.307955 ], [ -64.953573, 18.307888 ], [ -64.953568, 18.307742 ], [ -64.953597, 18.30769 ], [ -64.953597, 18.307635 ], [ -64.953585, 18.307555 ], [ -64.953631, 18.30748 ], [ -64.953677, 18.307475 ], [ -64.95376, 18.307504 ], [ -64.953827, 18.30748 ], [ -64.953879, 18.307431 ], [ -64.953896, 18.307376 ], [ -64.953931, 18.307343 ], [ -64.953983, 18.307321 ], [ -64.954035, 18.307304 ], [ -64.954075, 18.307326 ], [ -64.95411, 18.307359 ], [ -64.95414, 18.307377 ], [ -64.954196, 18.307359 ], [ -64.954236, 18.307304 ], [ -64.954288, 18.307282 ], [ -64.954323, 18.307282 ], [ -64.954398, 18.307348 ], [ -64.95445, 18.307348 ], [ -64.954526, 18.307289 ], [ -64.954572, 18.307289 ], [ -64.954648, 18.30731 ], [ -64.954709, 18.307315 ], [ -64.95479, 18.307276 ], [ -64.954813, 18.307238 ], [ -64.95482, 18.307178 ], [ -64.954842, 18.307111 ], [ -64.95498, 18.307045 ], [ -64.954993, 18.307024 ], [ -64.955007, 18.306986 ], [ -64.955016, 18.30697 ], [ -64.955034, 18.306909 ], [ -64.955067, 18.306819 ], [ -64.955095, 18.306792 ], [ -64.955128, 18.306779 ], [ -64.955147, 18.306775 ], [ -64.955189, 18.306788 ], [ -64.955211, 18.306836 ], [ -64.95524, 18.30688 ], [ -64.955327, 18.306897 ], [ -64.955372, 18.30688 ], [ -64.955389, 18.30683 ], [ -64.955361, 18.306753 ], [ -64.955395, 18.306699 ], [ -64.955453, 18.306654 ], [ -64.955459, 18.30661 ], [ -64.955459, 18.30656 ], [ -64.95545, 18.30653 ], [ -64.955441, 18.306472 ], [ -64.955464, 18.306412 ], [ -64.955551, 18.306368 ], [ -64.955603, 18.306313 ], [ -64.955666, 18.306257 ], [ -64.955741, 18.306235 ], [ -64.955793, 18.306224 ], [ -64.955828, 18.306264 ], [ -64.955828, 18.306302 ], [ -64.955805, 18.306324 ], [ -64.955764, 18.306373 ], [ -64.955736, 18.306421 ], [ -64.955735, 18.306439 ], [ -64.955758, 18.306456 ], [ -64.955801, 18.306478 ], [ -64.955845, 18.306478 ], [ -64.955897, 18.306461 ], [ -64.955949, 18.306406 ], [ -64.956041, 18.306329 ], [ -64.95611, 18.306307 ], [ -64.956262, 18.306401 ], [ -64.956323, 18.306419 ], [ -64.95637, 18.306423 ], [ -64.9564, 18.306417 ], [ -64.956427, 18.306434 ], [ -64.956468, 18.3065 ], [ -64.956525, 18.306527 ], [ -64.9566, 18.306533 ], [ -64.95671, 18.306511 ], [ -64.956815, 18.306483 ], [ -64.956883, 18.306475 ], [ -64.956975, 18.306478 ], [ -64.957, 18.306495 ], [ -64.95701, 18.306511 ], [ -64.957044, 18.306489 ], [ -64.957062, 18.306439 ], [ -64.957063, 18.306374 ], [ -64.957102, 18.306356 ], [ -64.957132, 18.306351 ], [ -64.957171, 18.306356 ], [ -64.9572, 18.306385 ], [ -64.957217, 18.306433 ], [ -64.95724, 18.306467 ], [ -64.957275, 18.306477 ], [ -64.95729, 18.306465 ], [ -64.957309, 18.306456 ], [ -64.957309, 18.306362 ], [ -64.957304, 18.306307 ], [ -64.957345, 18.306287 ], [ -64.957402, 18.306312 ], [ -64.957442, 18.306312 ], [ -64.957468, 18.306287 ], [ -64.957528, 18.306268 ], [ -64.957598, 18.306301 ], [ -64.957628, 18.306282 ], [ -64.957701, 18.306246 ], [ -64.957778, 18.306306 ], [ -64.957828, 18.306406 ], [ -64.958007, 18.306539 ], [ -64.958036, 18.306576 ], [ -64.95807, 18.306637 ], [ -64.958106, 18.306692 ], [ -64.958157, 18.306747 ], [ -64.958194, 18.306797 ], [ -64.958197, 18.306863 ], [ -64.958193, 18.306901 ], [ -64.958226, 18.306979 ], [ -64.958347, 18.3071 ], [ -64.958434, 18.307193 ], [ -64.958497, 18.307243 ], [ -64.958538, 18.307281 ], [ -64.958595, 18.307295 ], [ -64.958689, 18.307298 ], [ -64.958797, 18.307276 ], [ -64.958895, 18.307289 ], [ -64.958987, 18.307336 ], [ -64.959067, 18.307393 ], [ -64.959168, 18.307447 ], [ -64.959328, 18.307513 ], [ -64.959523, 18.307581 ], [ -64.959702, 18.307617 ], [ -64.959806, 18.30763 ], [ -64.959866, 18.307614 ], [ -64.959945, 18.307612 ], [ -64.959981, 18.307619 ], [ -64.960031, 18.307645 ], [ -64.960083, 18.307642 ], [ -64.960135, 18.307623 ], [ -64.960177, 18.307624 ], [ -64.960238, 18.307668 ], [ -64.960258, 18.307711 ], [ -64.960233, 18.307818 ], [ -64.960221, 18.30792 ], [ -64.960239, 18.308038 ], [ -64.96024, 18.308102 ], [ -64.960215, 18.308148 ], [ -64.960141, 18.308361 ], [ -64.960118, 18.308443 ], [ -64.960083, 18.308526 ], [ -64.960002, 18.308625 ], [ -64.959985, 18.308752 ], [ -64.959985, 18.308829 ], [ -64.959968, 18.308878 ], [ -64.959904, 18.308966 ], [ -64.959895, 18.309039 ], [ -64.959876, 18.309093 ], [ -64.959923, 18.309156 ], [ -64.959991, 18.309159 ], [ -64.960022, 18.309177 ], [ -64.960043, 18.30922 ], [ -64.960089, 18.309275 ], [ -64.960135, 18.309302 ], [ -64.960181, 18.309341 ], [ -64.960291, 18.309457 ], [ -64.960365, 18.309567 ], [ -64.960412, 18.309706 ], [ -64.960412, 18.309759 ], [ -64.9604, 18.309787 ], [ -64.960388, 18.309793 ], [ -64.96117, 18.313245 ], [ -64.961208, 18.313311 ], [ -64.961209, 18.313317 ], [ -64.961226, 18.3134 ], [ -64.961224, 18.3135 ], [ -64.961222, 18.313564 ], [ -64.96122, 18.313647 ], [ -64.96122, 18.313669 ], [ -64.961194, 18.313727 ], [ -64.961174, 18.313774 ], [ -64.961122, 18.31384 ], [ -64.961055, 18.313907 ], [ -64.961034, 18.313922 ], [ -64.960989, 18.313956 ], [ -64.960967, 18.313975 ], [ -64.960938, 18.314 ], [ -64.960829, 18.314079 ], [ -64.960741, 18.314132 ], [ -64.96066, 18.314217 ], [ -64.960586, 18.314297 ], [ -64.960551, 18.314397 ], [ -64.960558, 18.314507 ], [ -64.960649, 18.314677 ], [ -64.960672, 18.314738 ], [ -64.960644, 18.314837 ], [ -64.960609, 18.314876 ], [ -64.960517, 18.314947 ], [ -64.960367, 18.315024 ], [ -64.960304, 18.315069 ], [ -64.960252, 18.315128 ], [ -64.960247, 18.315135 ], [ -64.960205, 18.315195 ], [ -64.960096, 18.315393 ], [ -64.960034, 18.315451 ], [ -64.958792, 18.318549 ], [ -64.960882, 18.321148 ], [ -64.963507, 18.324349 ], [ -64.963524, 18.324349 ], [ -64.963586, 18.324359 ], [ -64.963638, 18.324414 ], [ -64.96369, 18.324513 ], [ -64.96373, 18.324629 ], [ -64.963828, 18.324728 ], [ -64.963888, 18.32474 ], [ -64.963984, 18.324728 ], [ -64.964, 18.324731 ], [ -64.964211, 18.324773 ], [ -64.964307, 18.324772 ], [ -64.964515, 18.324744 ], [ -64.96463, 18.324736 ], [ -64.964705, 18.324757 ], [ -64.964774, 18.3248 ], [ -64.972052, 18.329082 ], [ -64.972088, 18.329094 ], [ -64.972116, 18.329137 ], [ -64.972121, 18.329181 ], [ -64.97215, 18.329214 ], [ -64.97218, 18.32921 ], [ -64.972219, 18.329181 ], [ -64.97225, 18.329194 ], [ -64.972289, 18.329263 ], [ -64.972346, 18.329313 ], [ -64.972387, 18.329335 ], [ -64.972369, 18.32939 ], [ -64.972416, 18.329468 ], [ -64.972479, 18.329507 ], [ -64.972554, 18.329572 ], [ -64.972606, 18.329627 ], [ -64.972612, 18.329704 ], [ -64.972602, 18.329777 ], [ -64.972612, 18.329842 ], [ -64.972623, 18.329869 ], [ -64.972648, 18.329908 ], [ -64.972635, 18.329974 ], [ -64.972606, 18.330079 ], [ -64.972606, 18.330161 ], [ -64.972626, 18.330213 ], [ -64.972658, 18.330294 ], [ -64.972667, 18.330366 ], [ -64.972771, 18.33054 ], [ -64.972786, 18.330612 ], [ -64.972782, 18.33066 ], [ -64.972778, 18.330698 ], [ -64.97279, 18.330761 ], [ -64.972794, 18.33078 ], [ -64.97283, 18.330814 ], [ -64.972868, 18.330838 ], [ -64.972866, 18.33086 ], [ -64.97287, 18.330881 ], [ -64.972865, 18.330936 ], [ -64.972862, 18.330961 ], [ -64.972914, 18.330987 ], [ -64.972961, 18.331011 ], [ -64.972989, 18.331067 ], [ -64.973038, 18.331188 ], [ -64.973069, 18.331237 ], [ -64.973099, 18.331285 ], [ -64.973129, 18.331373 ], [ -64.973176, 18.331496 ], [ -64.97329, 18.331797 ], [ -64.973366, 18.331999 ], [ -64.973383, 18.332091 ], [ -64.973404, 18.332199 ], [ -64.973389, 18.332336 ], [ -64.973465, 18.332521 ], [ -64.973516, 18.332599 ], [ -64.973539, 18.332632 ], [ -64.973564, 18.332668 ], [ -64.973564, 18.332731 ], [ -64.973564, 18.332762 ], [ -64.973656, 18.332943 ], [ -64.973692, 18.333041 ], [ -64.973732, 18.333153 ], [ -64.973787, 18.333242 ], [ -64.973849, 18.333351 ], [ -64.973892, 18.333456 ], [ -64.973928, 18.33352 ], [ -64.973951, 18.333644 ], [ -64.973993, 18.333692 ], [ -64.974023, 18.333743 ], [ -64.974045, 18.33383 ], [ -64.974078, 18.333867 ], [ -64.974167, 18.333952 ], [ -64.974175, 18.333963 ], [ -64.974219, 18.334008 ], [ -64.974243, 18.334061 ], [ -64.974261, 18.334137 ], [ -64.974266, 18.334158 ], [ -64.974276, 18.33424 ], [ -64.974266, 18.334288 ], [ -64.974291, 18.334358 ], [ -64.974324, 18.334443 ], [ -64.974369, 18.334517 ], [ -64.974403, 18.334574 ], [ -64.974417, 18.334637 ], [ -64.974426, 18.334679 ], [ -64.974472, 18.334766 ], [ -64.974514, 18.33489 ], [ -64.974578, 18.335029 ], [ -64.974626, 18.335125 ], [ -64.97477, 18.3353 ], [ -64.975075, 18.335484 ], [ -64.975769, 18.335487 ], [ -64.976504, 18.335466 ], [ -64.977539, 18.335436 ], [ -64.979126, 18.335386 ], [ -64.979575, 18.335359 ], [ -64.979938, 18.335352 ], [ -64.980128, 18.335355 ], [ -64.980384, 18.335332 ], [ -64.980611, 18.33533 ], [ -64.981099, 18.335324 ], [ -64.981748, 18.335299 ], [ -64.982837, 18.335276 ], [ -64.983009, 18.335253 ], [ -64.98317, 18.335283 ], [ -64.983372, 18.33533 ], [ -64.983635, 18.335428 ], [ -64.983902, 18.335649 ], [ -64.984029, 18.335914 ], [ -64.984138, 18.33625 ], [ -64.984176, 18.336697 ], [ -64.984169, 18.336803 ], [ -64.9842, 18.33744 ], [ -64.984176, 18.337584 ], [ -64.985996, 18.345194 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "030", "TRACTCE10": "960500", "GEOID10": "78030960500", "NAME10": "9605", "NAMELSAD10": "Census Tract 9605", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 23339486, "AWATER10": 10577533, "INTPTLAT10": "+18.3648273", "INTPTLON10": "-064.9866685" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.049261, 18.344482 ], [ -65.049313, 18.344515 ], [ -65.049325, 18.344566 ], [ -65.049331, 18.344582 ], [ -65.049301, 18.344615 ], [ -65.049203, 18.344592 ], [ -65.049157, 18.34457 ], [ -65.049113, 18.344528 ], [ -65.049111, 18.34451 ], [ -65.049128, 18.344482 ], [ -65.049148, 18.344479 ], [ -65.049238, 18.344471 ], [ -65.049261, 18.344482 ] ] ], [ [ [ -65.057251, 18.350288 ], [ -65.0573, 18.3502 ], [ -65.0573, 18.350191 ], [ -65.057309, 18.350124 ], [ -65.057313, 18.350075 ], [ -65.0573, 18.350048 ], [ -65.057282, 18.350075 ], [ -65.057251, 18.350097 ], [ -65.057211, 18.350124 ], [ -65.057183, 18.35014 ], [ -65.057144, 18.350106 ], [ -65.057148, 18.350057 ], [ -65.057184, 18.349994 ], [ -65.057206, 18.349941 ], [ -65.057206, 18.349892 ], [ -65.057225, 18.349851 ], [ -65.057202, 18.349856 ], [ -65.057157, 18.349887 ], [ -65.057077, 18.349892 ], [ -65.05708, 18.349839 ], [ -65.057081, 18.349744 ], [ -65.057086, 18.349717 ], [ -65.05713, 18.349695 ], [ -65.057135, 18.349637 ], [ -65.057139, 18.349606 ], [ -65.057184, 18.349601 ], [ -65.057211, 18.349552 ], [ -65.057193, 18.349512 ], [ -65.057233, 18.34949 ], [ -65.057246, 18.349476 ], [ -65.057318, 18.349476 ], [ -65.05742, 18.34949 ], [ -65.057443, 18.349503 ], [ -65.057474, 18.349499 ], [ -65.057478, 18.349463 ], [ -65.057496, 18.349401 ], [ -65.057602, 18.349431 ], [ -65.057631, 18.349495 ], [ -65.057657, 18.349494 ], [ -65.057715, 18.349494 ], [ -65.057764, 18.349548 ], [ -65.057768, 18.349619 ], [ -65.057773, 18.349717 ], [ -65.057693, 18.349731 ], [ -65.057626, 18.349735 ], [ -65.057603, 18.349784 ], [ -65.05767, 18.349789 ], [ -65.057688, 18.349807 ], [ -65.057791, 18.349842 ], [ -65.057819, 18.349899 ], [ -65.057827, 18.349972 ], [ -65.05779, 18.350044 ], [ -65.057782, 18.350146 ], [ -65.057889, 18.35015 ], [ -65.057992, 18.350132 ], [ -65.058076, 18.350159 ], [ -65.058072, 18.350226 ], [ -65.05801, 18.35024 ], [ -65.058049, 18.350268 ], [ -65.058126, 18.350284 ], [ -65.058123, 18.35032 ], [ -65.058112, 18.350365 ], [ -65.058133, 18.350425 ], [ -65.058206, 18.350463 ], [ -65.058224, 18.350512 ], [ -65.058224, 18.350534 ], [ -65.058224, 18.350561 ], [ -65.058237, 18.350592 ], [ -65.058237, 18.350673 ], [ -65.058255, 18.350713 ], [ -65.058277, 18.350762 ], [ -65.058255, 18.350816 ], [ -65.058264, 18.350842 ], [ -65.058295, 18.350905 ], [ -65.058282, 18.350936 ], [ -65.058259, 18.350967 ], [ -65.058246, 18.351048 ], [ -65.058193, 18.351106 ], [ -65.058179, 18.351141 ], [ -65.058184, 18.35124 ], [ -65.058242, 18.351275 ], [ -65.058237, 18.351329 ], [ -65.058242, 18.351374 ], [ -65.058219, 18.351427 ], [ -65.058179, 18.351467 ], [ -65.058166, 18.35157 ], [ -65.05809, 18.351615 ], [ -65.058027, 18.351623 ], [ -65.05792, 18.351619 ], [ -65.057818, 18.351588 ], [ -65.0578, 18.351521 ], [ -65.0578, 18.35144 ], [ -65.057802, 18.351403 ], [ -65.057749, 18.351353 ], [ -65.057719, 18.351325 ], [ -65.057737, 18.351271 ], [ -65.057764, 18.351226 ], [ -65.057768, 18.351146 ], [ -65.057742, 18.35111 ], [ -65.057719, 18.351177 ], [ -65.057657, 18.351199 ], [ -65.057588, 18.351179 ], [ -65.05754, 18.351116 ], [ -65.057534, 18.351034 ], [ -65.057554, 18.350958 ], [ -65.057599, 18.3509 ], [ -65.057626, 18.350833 ], [ -65.057635, 18.350784 ], [ -65.057639, 18.350699 ], [ -65.057657, 18.350659 ], [ -65.057652, 18.350566 ], [ -65.057639, 18.350552 ], [ -65.057581, 18.350552 ], [ -65.057524, 18.35056 ], [ -65.057504, 18.350587 ], [ -65.05746, 18.35061 ], [ -65.057402, 18.350606 ], [ -65.057371, 18.350583 ], [ -65.05738, 18.350521 ], [ -65.057394, 18.350458 ], [ -65.057353, 18.350445 ], [ -65.057327, 18.350485 ], [ -65.057282, 18.350494 ], [ -65.057242, 18.350454 ], [ -65.057237, 18.350414 ], [ -65.057251, 18.350288 ] ] ], [ [ [ -65.063822, 18.378164 ], [ -65.063815, 18.377896 ], [ -65.064002, 18.377751 ], [ -65.064273, 18.377769 ], [ -65.064382, 18.377932 ], [ -65.064322, 18.378118 ], [ -65.064127, 18.378222 ], [ -65.063822, 18.378164 ] ] ], [ [ [ -64.971054, 18.309127 ], [ -64.971023, 18.309122 ], [ -64.970993, 18.309057 ], [ -64.971031, 18.309017 ], [ -64.971076, 18.309026 ], [ -64.971099, 18.309082 ], [ -64.971054, 18.309127 ] ] ], [ [ [ -64.971107, 18.308906 ], [ -64.971061, 18.308858 ], [ -64.97113, 18.308815 ], [ -64.971168, 18.30886 ], [ -64.971107, 18.308906 ] ] ], [ [ [ -64.974459, 18.306878 ], [ -64.974394, 18.306843 ], [ -64.9744, 18.306801 ], [ -64.974464, 18.306802 ], [ -64.974459, 18.306878 ] ] ], [ [ [ -64.988682, 18.317816 ], [ -64.988626, 18.317777 ], [ -64.988652, 18.31769 ], [ -64.989357, 18.315717 ], [ -64.989431, 18.3157 ], [ -64.989461, 18.315709 ], [ -64.989466, 18.315726 ], [ -64.989513, 18.315721 ], [ -64.989543, 18.315739 ], [ -64.989578, 18.315717 ], [ -64.989587, 18.315613 ], [ -64.989617, 18.315579 ], [ -64.989647, 18.315587 ], [ -64.989682, 18.315605 ], [ -64.989704, 18.315566 ], [ -64.989764, 18.3156 ], [ -64.989764, 18.315648 ], [ -64.98982, 18.31573 ], [ -64.989881, 18.315778 ], [ -64.989911, 18.315864 ], [ -64.989907, 18.315959 ], [ -64.989929, 18.316046 ], [ -64.990011, 18.316128 ], [ -64.990097, 18.316202 ], [ -64.990192, 18.316332 ], [ -64.990184, 18.316423 ], [ -64.990154, 18.316526 ], [ -64.990197, 18.316622 ], [ -64.990279, 18.316686 ], [ -64.990374, 18.316777 ], [ -64.990409, 18.316877 ], [ -64.990392, 18.316981 ], [ -64.99034, 18.317063 ], [ -64.990283, 18.317102 ], [ -64.99024, 18.317158 ], [ -64.990244, 18.317197 ], [ -64.990236, 18.317236 ], [ -64.990214, 18.317266 ], [ -64.988925, 18.317876 ], [ -64.988816, 18.317889 ], [ -64.988803, 18.317872 ], [ -64.988682, 18.317816 ] ] ], [ [ [ -65.071159, 18.340894 ], [ -65.071205, 18.340906 ], [ -65.07122, 18.340938 ], [ -65.071212, 18.340978 ], [ -65.071189, 18.341012 ], [ -65.071105, 18.341089 ], [ -65.071022, 18.341167 ], [ -65.070976, 18.341201 ], [ -65.070938, 18.341241 ], [ -65.070899, 18.341272 ], [ -65.070854, 18.341335 ], [ -65.070808, 18.341381 ], [ -65.070793, 18.341438 ], [ -65.070732, 18.341457 ], [ -65.070655, 18.341411 ], [ -65.07064, 18.341245 ], [ -65.070663, 18.341215 ], [ -65.070693, 18.341201 ], [ -65.070831, 18.341199 ], [ -65.070877, 18.341203 ], [ -65.070899, 18.341136 ], [ -65.070915, 18.341102 ], [ -65.07096, 18.341083 ], [ -65.071014, 18.341075 ], [ -65.071044, 18.341037 ], [ -65.071128, 18.340944 ], [ -65.071136, 18.340902 ], [ -65.071159, 18.340894 ] ] ], [ [ [ -65.071739, 18.341157 ], [ -65.071792, 18.341192 ], [ -65.071784, 18.341251 ], [ -65.071807, 18.341299 ], [ -65.0718, 18.341335 ], [ -65.071754, 18.341354 ], [ -65.071739, 18.341392 ], [ -65.071723, 18.341434 ], [ -65.071693, 18.341447 ], [ -65.071655, 18.341495 ], [ -65.071624, 18.341501 ], [ -65.071617, 18.341409 ], [ -65.071617, 18.341339 ], [ -65.07154, 18.34127 ], [ -65.071533, 18.341245 ], [ -65.071548, 18.34122 ], [ -65.071578, 18.341199 ], [ -65.071609, 18.341182 ], [ -65.071739, 18.341157 ] ] ], [ [ [ -65.072738, 18.341785 ], [ -65.072761, 18.341793 ], [ -65.072769, 18.341827 ], [ -65.072746, 18.341846 ], [ -65.072715, 18.34184 ], [ -65.072708, 18.3418 ], [ -65.072738, 18.341785 ] ] ], [ [ [ -65.084693, 18.334768 ], [ -65.084709, 18.334781 ], [ -65.084701, 18.3348 ], [ -65.084655, 18.334856 ], [ -65.084625, 18.334968 ], [ -65.084594, 18.334985 ], [ -65.084556, 18.334983 ], [ -65.084541, 18.334943 ], [ -65.084541, 18.334909 ], [ -65.084594, 18.334836 ], [ -65.084617, 18.334802 ], [ -65.084655, 18.334777 ], [ -65.084693, 18.334768 ] ] ], [ [ [ -65.085647, 18.33463 ], [ -65.085624, 18.334613 ], [ -65.085617, 18.334592 ], [ -65.085635, 18.334576 ], [ -65.08567, 18.334583 ], [ -65.08567, 18.334615 ], [ -65.085647, 18.33463 ] ] ], [ [ [ -64.990881, 18.385168 ], [ -64.991015, 18.385158 ], [ -64.991154, 18.385168 ], [ -64.991307, 18.385172 ], [ -64.991412, 18.385292 ], [ -64.991364, 18.385474 ], [ -64.991045, 18.385698 ], [ -64.990881, 18.385813 ], [ -64.990647, 18.385799 ], [ -64.990508, 18.385694 ], [ -64.990379, 18.385498 ], [ -64.990293, 18.385397 ], [ -64.990082, 18.385345 ], [ -64.990044, 18.385268 ], [ -64.989958, 18.385235 ], [ -64.989762, 18.385086 ], [ -64.989853, 18.384914 ], [ -64.989993, 18.384884 ], [ -64.99025, 18.385015 ], [ -64.990475, 18.385058 ], [ -64.990633, 18.385201 ], [ -64.990881, 18.385168 ] ] ], [ [ [ -65.085364, 18.335679 ], [ -65.085364, 18.335713 ], [ -65.085388, 18.33575 ], [ -65.085387, 18.335772 ], [ -65.085422, 18.335823 ], [ -65.085411, 18.335872 ], [ -65.085359, 18.335955 ], [ -65.085278, 18.336038 ], [ -65.085209, 18.33608 ], [ -65.085191, 18.336109 ], [ -65.085186, 18.336142 ], [ -65.08522, 18.336246 ], [ -65.085266, 18.336307 ], [ -65.085307, 18.336395 ], [ -65.085341, 18.336445 ], [ -65.085428, 18.336649 ], [ -65.085438, 18.336705 ], [ -65.085457, 18.336709 ], [ -65.085457, 18.336748 ], [ -65.085439, 18.336798 ], [ -65.085405, 18.336842 ], [ -65.085411, 18.336919 ], [ -65.085382, 18.336985 ], [ -65.085353, 18.337006 ], [ -65.08533, 18.337012 ], [ -65.085232, 18.337001 ], [ -65.08522, 18.337022 ], [ -65.085232, 18.337056 ], [ -65.085282, 18.337131 ], [ -65.085284, 18.337149 ], [ -65.085249, 18.337207 ], [ -65.085244, 18.337216 ], [ -65.08522, 18.337244 ], [ -65.08514, 18.337282 ], [ -65.085013, 18.337364 ], [ -65.084978, 18.337369 ], [ -65.08488, 18.337431 ], [ -65.084823, 18.33748 ], [ -65.08484, 18.337497 ], [ -65.084851, 18.337534 ], [ -65.08484, 18.337651 ], [ -65.084684, 18.337816 ], [ -65.084661, 18.33786 ], [ -65.084638, 18.337921 ], [ -65.084632, 18.33802 ], [ -65.084655, 18.338052 ], [ -65.084656, 18.338136 ], [ -65.084707, 18.338373 ], [ -65.084731, 18.338422 ], [ -65.084713, 18.338582 ], [ -65.08469, 18.338643 ], [ -65.08469, 18.338725 ], [ -65.084742, 18.338896 ], [ -65.084719, 18.338984 ], [ -65.084702, 18.339033 ], [ -65.084685, 18.339062 ], [ -65.084684, 18.339062 ], [ -65.084638, 18.339084 ], [ -65.084552, 18.339055 ], [ -65.084448, 18.338995 ], [ -65.084415, 18.33899 ], [ -65.084396, 18.338995 ], [ -65.084356, 18.338978 ], [ -65.084321, 18.338946 ], [ -65.084258, 18.338918 ], [ -65.08405, 18.338769 ], [ -65.084004, 18.33877 ], [ -65.0839, 18.33873 ], [ -65.083825, 18.338676 ], [ -65.08375, 18.338587 ], [ -65.08367, 18.338538 ], [ -65.083647, 18.338543 ], [ -65.083589, 18.338604 ], [ -65.083583, 18.338648 ], [ -65.08356, 18.338675 ], [ -65.083543, 18.338753 ], [ -65.083508, 18.338814 ], [ -65.083485, 18.338835 ], [ -65.083462, 18.338841 ], [ -65.083427, 18.338835 ], [ -65.083301, 18.338791 ], [ -65.083041, 18.338631 ], [ -65.083012, 18.338621 ], [ -65.082978, 18.338615 ], [ -65.082839, 18.338627 ], [ -65.082764, 18.33867 ], [ -65.082735, 18.338736 ], [ -65.082724, 18.338896 ], [ -65.082707, 18.338974 ], [ -65.082649, 18.339023 ], [ -65.082632, 18.339056 ], [ -65.082597, 18.339066 ], [ -65.082551, 18.339072 ], [ -65.082499, 18.339018 ], [ -65.082453, 18.339001 ], [ -65.082436, 18.338985 ], [ -65.082389, 18.338974 ], [ -65.082349, 18.33899 ], [ -65.082309, 18.338989 ], [ -65.082286, 18.339001 ], [ -65.08224, 18.338979 ], [ -65.082163, 18.338973 ], [ -65.082147, 18.338963 ], [ -65.082124, 18.338973 ], [ -65.082107, 18.339028 ], [ -65.082148, 18.339216 ], [ -65.082136, 18.339254 ], [ -65.082044, 18.339364 ], [ -65.082038, 18.339392 ], [ -65.082049, 18.339419 ], [ -65.082055, 18.339491 ], [ -65.082038, 18.339524 ], [ -65.08198, 18.339535 ], [ -65.08194, 18.33953 ], [ -65.081888, 18.339546 ], [ -65.081882, 18.33959 ], [ -65.081865, 18.339618 ], [ -65.081819, 18.339639 ], [ -65.081795, 18.339684 ], [ -65.081773, 18.339783 ], [ -65.08179, 18.339849 ], [ -65.081824, 18.339926 ], [ -65.081836, 18.340053 ], [ -65.081825, 18.34008 ], [ -65.081779, 18.34013 ], [ -65.081588, 18.340179 ], [ -65.081571, 18.34024 ], [ -65.081605, 18.340278 ], [ -65.081646, 18.340306 ], [ -65.081703, 18.340394 ], [ -65.081761, 18.340438 ], [ -65.08194, 18.340526 ], [ -65.081957, 18.340548 ], [ -65.082009, 18.340647 ], [ -65.082032, 18.340724 ], [ -65.082038, 18.34079 ], [ -65.082055, 18.340841 ], [ -65.082072, 18.340944 ], [ -65.08209, 18.340961 ], [ -65.082159, 18.340973 ], [ -65.082182, 18.340988 ], [ -65.082257, 18.341021 ], [ -65.082309, 18.34106 ], [ -65.08235, 18.341126 ], [ -65.08239, 18.341275 ], [ -65.082396, 18.341336 ], [ -65.08239, 18.341391 ], [ -65.08235, 18.341517 ], [ -65.082309, 18.341561 ], [ -65.082154, 18.341693 ], [ -65.081882, 18.341886 ], [ -65.081692, 18.341974 ], [ -65.081618, 18.34198 ], [ -65.081594, 18.341991 ], [ -65.081531, 18.341997 ], [ -65.081363, 18.341935 ], [ -65.081231, 18.341903 ], [ -65.081191, 18.341887 ], [ -65.081167, 18.341864 ], [ -65.081133, 18.341859 ], [ -65.081087, 18.341881 ], [ -65.081058, 18.341925 ], [ -65.081058, 18.341952 ], [ -65.081081, 18.341986 ], [ -65.081075, 18.342013 ], [ -65.081093, 18.342068 ], [ -65.081127, 18.34214 ], [ -65.081168, 18.342272 ], [ -65.081173, 18.342388 ], [ -65.081162, 18.342426 ], [ -65.081121, 18.342465 ], [ -65.081041, 18.342608 ], [ -65.080949, 18.342739 ], [ -65.080787, 18.342872 ], [ -65.08073, 18.3429 ], [ -65.080666, 18.342955 ], [ -65.080608, 18.342966 ], [ -65.080574, 18.342988 ], [ -65.080505, 18.343004 ], [ -65.080429, 18.342994 ], [ -65.080372, 18.342955 ], [ -65.080361, 18.342899 ], [ -65.080291, 18.342845 ], [ -65.080158, 18.342812 ], [ -65.080009, 18.342696 ], [ -65.079951, 18.342679 ], [ -65.07991, 18.342695 ], [ -65.079847, 18.342652 ], [ -65.079709, 18.342586 ], [ -65.079668, 18.342586 ], [ -65.079651, 18.342619 ], [ -65.079663, 18.342641 ], [ -65.079674, 18.342751 ], [ -65.07964, 18.34281 ], [ -65.079639, 18.342828 ], [ -65.079697, 18.342921 ], [ -65.079766, 18.34306 ], [ -65.079778, 18.343109 ], [ -65.079818, 18.343164 ], [ -65.079836, 18.343208 ], [ -65.079841, 18.34334 ], [ -65.079818, 18.343367 ], [ -65.079818, 18.343401 ], [ -65.079789, 18.343434 ], [ -65.079686, 18.343517 ], [ -65.079628, 18.343627 ], [ -65.079553, 18.343687 ], [ -65.079467, 18.343704 ], [ -65.07945, 18.343687 ], [ -65.079415, 18.343677 ], [ -65.079386, 18.343676 ], [ -65.079351, 18.343693 ], [ -65.079351, 18.343714 ], [ -65.079322, 18.343781 ], [ -65.079276, 18.343825 ], [ -65.079253, 18.343836 ], [ -65.079237, 18.343863 ], [ -65.079219, 18.343869 ], [ -65.07919, 18.343903 ], [ -65.079213, 18.343924 ], [ -65.079248, 18.343984 ], [ -65.07923, 18.344023 ], [ -65.079132, 18.344051 ], [ -65.078988, 18.344073 ], [ -65.078803, 18.344194 ], [ -65.078607, 18.344337 ], [ -65.078579, 18.344364 ], [ -65.078573, 18.344387 ], [ -65.078579, 18.344496 ], [ -65.078556, 18.344519 ], [ -65.078406, 18.344558 ], [ -65.07836, 18.344535 ], [ -65.078319, 18.344558 ], [ -65.078285, 18.34459 ], [ -65.078256, 18.34464 ], [ -65.07821, 18.344613 ], [ -65.078198, 18.344585 ], [ -65.07814, 18.344547 ], [ -65.078124, 18.34454 ], [ -65.078089, 18.344525 ], [ -65.078014, 18.344524 ], [ -65.077852, 18.344552 ], [ -65.07776, 18.344536 ], [ -65.077731, 18.344541 ], [ -65.077691, 18.34453 ], [ -65.077627, 18.34453 ], [ -65.077575, 18.344553 ], [ -65.077535, 18.34469 ], [ -65.077506, 18.34475 ], [ -65.077477, 18.344761 ], [ -65.077397, 18.344839 ], [ -65.077374, 18.344849 ], [ -65.077374, 18.344905 ], [ -65.077402, 18.344976 ], [ -65.077402, 18.345009 ], [ -65.07738, 18.345042 ], [ -65.077333, 18.345053 ], [ -65.077299, 18.345086 ], [ -65.077276, 18.345092 ], [ -65.077253, 18.345114 ], [ -65.077235, 18.345152 ], [ -65.077224, 18.345197 ], [ -65.077235, 18.345246 ], [ -65.077218, 18.345367 ], [ -65.077201, 18.345428 ], [ -65.077229, 18.345488 ], [ -65.077259, 18.345521 ], [ -65.077235, 18.345566 ], [ -65.077172, 18.345554 ], [ -65.077103, 18.345511 ], [ -65.076999, 18.345538 ], [ -65.07697, 18.345532 ], [ -65.076947, 18.34551 ], [ -65.076832, 18.345577 ], [ -65.076612, 18.345824 ], [ -65.076532, 18.345879 ], [ -65.076445, 18.345912 ], [ -65.076324, 18.345918 ], [ -65.076261, 18.345913 ], [ -65.076243, 18.345929 ], [ -65.076232, 18.345951 ], [ -65.076244, 18.346039 ], [ -65.076226, 18.346088 ], [ -65.07614, 18.346155 ], [ -65.076082, 18.346221 ], [ -65.076042, 18.346298 ], [ -65.076024, 18.346353 ], [ -65.076024, 18.346414 ], [ -65.076047, 18.346474 ], [ -65.076065, 18.346562 ], [ -65.076082, 18.346595 ], [ -65.076077, 18.346628 ], [ -65.076001, 18.346749 ], [ -65.075949, 18.346755 ], [ -65.075927, 18.346766 ], [ -65.075909, 18.346788 ], [ -65.075926, 18.34681 ], [ -65.075921, 18.346838 ], [ -65.075892, 18.346843 ], [ -65.075638, 18.346788 ], [ -65.075534, 18.346788 ], [ -65.075436, 18.34681 ], [ -65.075385, 18.346854 ], [ -65.07539, 18.346881 ], [ -65.07539, 18.346915 ], [ -65.075373, 18.346925 ], [ -65.075309, 18.346937 ], [ -65.075275, 18.346909 ], [ -65.07524, 18.346849 ], [ -65.075217, 18.346777 ], [ -65.075217, 18.346717 ], [ -65.0752, 18.346683 ], [ -65.075159, 18.346699 ], [ -65.075136, 18.346722 ], [ -65.075137, 18.346755 ], [ -65.075125, 18.346788 ], [ -65.075108, 18.346804 ], [ -65.075044, 18.346788 ], [ -65.074992, 18.34675 ], [ -65.074963, 18.346711 ], [ -65.074923, 18.346656 ], [ -65.074877, 18.346524 ], [ -65.074877, 18.34648 ], [ -65.074903, 18.346469 ], [ -65.074969, 18.346441 ], [ -65.074986, 18.346402 ], [ -65.074969, 18.346337 ], [ -65.074946, 18.346315 ], [ -65.0749, 18.346227 ], [ -65.074854, 18.346089 ], [ -65.07486, 18.346061 ], [ -65.074848, 18.345962 ], [ -65.074842, 18.345857 ], [ -65.074825, 18.34583 ], [ -65.074779, 18.345797 ], [ -65.07475, 18.345792 ], [ -65.074646, 18.345819 ], [ -65.074583, 18.345846 ], [ -65.074548, 18.345874 ], [ -65.074508, 18.345879 ], [ -65.074499, 18.345876 ], [ -65.07449, 18.345873 ], [ -65.074462, 18.345824 ], [ -65.074456, 18.345775 ], [ -65.074473, 18.345643 ], [ -65.074473, 18.345555 ], [ -65.074485, 18.345511 ], [ -65.074664, 18.34545 ], [ -65.074669, 18.345428 ], [ -65.074686, 18.345389 ], [ -65.074681, 18.345268 ], [ -65.074663, 18.345208 ], [ -65.074675, 18.345087 ], [ -65.074704, 18.345054 ], [ -65.074715, 18.345021 ], [ -65.075038, 18.344734 ], [ -65.075136, 18.344674 ], [ -65.075182, 18.344624 ], [ -65.075227, 18.344555 ], [ -65.075246, 18.344525 ], [ -65.075321, 18.344343 ], [ -65.075378, 18.344156 ], [ -65.075401, 18.34404 ], [ -65.075407, 18.34399 ], [ -65.075378, 18.343931 ], [ -65.075338, 18.343908 ], [ -65.07528, 18.343892 ], [ -65.075188, 18.343902 ], [ -65.075107, 18.343886 ], [ -65.074986, 18.343809 ], [ -65.074934, 18.343671 ], [ -65.07491, 18.343649 ], [ -65.074894, 18.343638 ], [ -65.074859, 18.343644 ], [ -65.074784, 18.343594 ], [ -65.074779, 18.343506 ], [ -65.074738, 18.34344 ], [ -65.074703, 18.34344 ], [ -65.074675, 18.343423 ], [ -65.074599, 18.343446 ], [ -65.074553, 18.343407 ], [ -65.074548, 18.343352 ], [ -65.074565, 18.34333 ], [ -65.074605, 18.343176 ], [ -65.074594, 18.343088 ], [ -65.074507, 18.342857 ], [ -65.074501, 18.34284 ], [ -65.074421, 18.342664 ], [ -65.074277, 18.342471 ], [ -65.074207, 18.342388 ], [ -65.074121, 18.342311 ], [ -65.073965, 18.342097 ], [ -65.073902, 18.342036 ], [ -65.07385, 18.342014 ], [ -65.073792, 18.342019 ], [ -65.073763, 18.342014 ], [ -65.073694, 18.341981 ], [ -65.073677, 18.341926 ], [ -65.073683, 18.341893 ], [ -65.073679, 18.341875 ], [ -65.073665, 18.341816 ], [ -65.073706, 18.341733 ], [ -65.073861, 18.341518 ], [ -65.074028, 18.341364 ], [ -65.074248, 18.341205 ], [ -65.074363, 18.341094 ], [ -65.074547, 18.340874 ], [ -65.07464, 18.340731 ], [ -65.074674, 18.340527 ], [ -65.074668, 18.34023 ], [ -65.074645, 18.340137 ], [ -65.074616, 18.340087 ], [ -65.074542, 18.340026 ], [ -65.074466, 18.340004 ], [ -65.074357, 18.340004 ], [ -65.074282, 18.339944 ], [ -65.074271, 18.339922 ], [ -65.074282, 18.339889 ], [ -65.074282, 18.339812 ], [ -65.07427, 18.339795 ], [ -65.074276, 18.339778 ], [ -65.07423, 18.339679 ], [ -65.07423, 18.33963 ], [ -65.074241, 18.33958 ], [ -65.074265, 18.339541 ], [ -65.074363, 18.339448 ], [ -65.074459, 18.339398 ], [ -65.074536, 18.33936 ], [ -65.074622, 18.339305 ], [ -65.074709, 18.339234 ], [ -65.074766, 18.339145 ], [ -65.074928, 18.338826 ], [ -65.074985, 18.33876 ], [ -65.075055, 18.338743 ], [ -65.075066, 18.338798 ], [ -65.07513, 18.338859 ], [ -65.075331, 18.338864 ], [ -65.075395, 18.338892 ], [ -65.075447, 18.338974 ], [ -65.075441, 18.339018 ], [ -65.075481, 18.339151 ], [ -65.075556, 18.339222 ], [ -65.075579, 18.33926 ], [ -65.075631, 18.339304 ], [ -65.075666, 18.339321 ], [ -65.075873, 18.339393 ], [ -65.076265, 18.33937 ], [ -65.076375, 18.339354 ], [ -65.07652, 18.339304 ], [ -65.076646, 18.339238 ], [ -65.076767, 18.339133 ], [ -65.076836, 18.339051 ], [ -65.077119, 18.338594 ], [ -65.077263, 18.338418 ], [ -65.077344, 18.338197 ], [ -65.077373, 18.338087 ], [ -65.077384, 18.337943 ], [ -65.077436, 18.337779 ], [ -65.077419, 18.337713 ], [ -65.077355, 18.337636 ], [ -65.077338, 18.337569 ], [ -65.077303, 18.337504 ], [ -65.077269, 18.337493 ], [ -65.077217, 18.337504 ], [ -65.077182, 18.337491 ], [ -65.077153, 18.337465 ], [ -65.077096, 18.337432 ], [ -65.077061, 18.337382 ], [ -65.07705, 18.337228 ], [ -65.077084, 18.337101 ], [ -65.077245, 18.336836 ], [ -65.077286, 18.336798 ], [ -65.077326, 18.336705 ], [ -65.077361, 18.33665 ], [ -65.077476, 18.336507 ], [ -65.077511, 18.33644 ], [ -65.077701, 18.336292 ], [ -65.077753, 18.336281 ], [ -65.077793, 18.336286 ], [ -65.078001, 18.336335 ], [ -65.078018, 18.336314 ], [ -65.078087, 18.336313 ], [ -65.078105, 18.33628 ], [ -65.07818, 18.336215 ], [ -65.078191, 18.336187 ], [ -65.07822, 18.336171 ], [ -65.078249, 18.336176 ], [ -65.078312, 18.336143 ], [ -65.078352, 18.336138 ], [ -65.078456, 18.336099 ], [ -65.078664, 18.336103 ], [ -65.078704, 18.336116 ], [ -65.07875, 18.336143 ], [ -65.078779, 18.336193 ], [ -65.078751, 18.33628 ], [ -65.078704, 18.336336 ], [ -65.078693, 18.336363 ], [ -65.078703, 18.336382 ], [ -65.078716, 18.336396 ], [ -65.078785, 18.336418 ], [ -65.07886, 18.336418 ], [ -65.078981, 18.336446 ], [ -65.079223, 18.336567 ], [ -65.079252, 18.336732 ], [ -65.079229, 18.336787 ], [ -65.079241, 18.336837 ], [ -65.079327, 18.336909 ], [ -65.079414, 18.336947 ], [ -65.079638, 18.336986 ], [ -65.079719, 18.336986 ], [ -65.079846, 18.336958 ], [ -65.079921, 18.336974 ], [ -65.080146, 18.336957 ], [ -65.08015, 18.336956 ], [ -65.080215, 18.336947 ], [ -65.080296, 18.336957 ], [ -65.080359, 18.336936 ], [ -65.080446, 18.336924 ], [ -65.08055, 18.336886 ], [ -65.080694, 18.336787 ], [ -65.080844, 18.336699 ], [ -65.081017, 18.336545 ], [ -65.08108, 18.336451 ], [ -65.08112, 18.336445 ], [ -65.081138, 18.336462 ], [ -65.081143, 18.336523 ], [ -65.08119, 18.336611 ], [ -65.081311, 18.336677 ], [ -65.081587, 18.336644 ], [ -65.08168, 18.336593 ], [ -65.08206, 18.336462 ], [ -65.082516, 18.336351 ], [ -65.082562, 18.336319 ], [ -65.082677, 18.336258 ], [ -65.082839, 18.336137 ], [ -65.082954, 18.336071 ], [ -65.083, 18.336054 ], [ -65.083469, 18.335941 ], [ -65.083554, 18.335921 ], [ -65.083669, 18.335906 ], [ -65.083894, 18.335845 ], [ -65.083929, 18.335823 ], [ -65.083929, 18.335801 ], [ -65.0839, 18.335762 ], [ -65.0839, 18.335685 ], [ -65.083957, 18.335619 ], [ -65.084007, 18.335618 ], [ -65.084026, 18.335614 ], [ -65.084038, 18.335586 ], [ -65.084073, 18.335581 ], [ -65.084101, 18.335553 ], [ -65.084124, 18.335504 ], [ -65.08413, 18.33546 ], [ -65.084078, 18.335316 ], [ -65.084119, 18.33526 ], [ -65.084171, 18.335223 ], [ -65.084222, 18.335206 ], [ -65.084297, 18.335201 ], [ -65.084384, 18.335168 ], [ -65.08443, 18.335162 ], [ -65.084655, 18.335047 ], [ -65.084713, 18.335035 ], [ -65.084851, 18.335096 ], [ -65.084914, 18.335113 ], [ -65.085053, 18.335168 ], [ -65.085128, 18.335223 ], [ -65.085222, 18.335275 ], [ -65.085266, 18.3353 ], [ -65.085347, 18.335366 ], [ -65.08541, 18.335437 ], [ -65.085439, 18.335475 ], [ -65.085462, 18.335541 ], [ -65.085422, 18.335624 ], [ -65.085364, 18.335679 ] ] ], [ [ [ -65.050202, 18.409279 ], [ -65.050171, 18.409307 ], [ -65.050147, 18.409328 ], [ -65.050121, 18.40935 ], [ -65.050069, 18.409381 ], [ -65.049997, 18.4094 ], [ -65.049889, 18.409386 ], [ -65.049812, 18.409286 ], [ -65.049758, 18.409181 ], [ -65.049725, 18.409087 ], [ -65.049637, 18.409002 ], [ -65.049588, 18.409029 ], [ -65.049545, 18.409036 ], [ -65.049545, 18.409058 ], [ -65.049545, 18.409079 ], [ -65.04953, 18.409101 ], [ -65.049485, 18.409074 ], [ -65.049415, 18.40904 ], [ -65.049347, 18.409033 ], [ -65.04934, 18.409049 ], [ -65.049324, 18.4091 ], [ -65.049255, 18.4091 ], [ -65.049174, 18.409098 ], [ -65.049149, 18.409094 ], [ -65.049126, 18.409067 ], [ -65.049118, 18.408976 ], [ -65.049111, 18.408882 ], [ -65.049103, 18.408813 ], [ -65.049114, 18.40878 ], [ -65.049154, 18.408683 ], [ -65.049144, 18.408661 ], [ -65.049122, 18.408578 ], [ -65.0491, 18.408471 ], [ -65.049128, 18.40843 ], [ -65.049154, 18.408378 ], [ -65.049202, 18.408344 ], [ -65.049232, 18.408308 ], [ -65.049232, 18.40826 ], [ -65.049214, 18.408206 ], [ -65.049196, 18.408149 ], [ -65.049179, 18.408115 ], [ -65.049205, 18.408047 ], [ -65.049229, 18.408027 ], [ -65.049271, 18.408033 ], [ -65.049294, 18.40802 ], [ -65.049294, 18.407948 ], [ -65.049328, 18.407872 ], [ -65.049444, 18.407705 ], [ -65.049477, 18.407433 ], [ -65.049606, 18.407381 ], [ -65.049636, 18.40739 ], [ -65.049705, 18.407411 ], [ -65.04976, 18.407431 ], [ -65.049792, 18.407449 ], [ -65.04982, 18.407463 ], [ -65.04988, 18.407504 ], [ -65.049942, 18.407562 ], [ -65.04995, 18.407585 ], [ -65.04995, 18.407615 ], [ -65.049939, 18.407671 ], [ -65.049926, 18.40771 ], [ -65.049918, 18.407753 ], [ -65.049914, 18.407797 ], [ -65.049916, 18.407859 ], [ -65.049929, 18.40792 ], [ -65.04996, 18.407973 ], [ -65.04995, 18.40802 ], [ -65.049926, 18.408064 ], [ -65.049904, 18.408104 ], [ -65.04991, 18.408177 ], [ -65.049885, 18.408212 ], [ -65.049881, 18.408236 ], [ -65.049867, 18.40828 ], [ -65.04985, 18.408334 ], [ -65.049833, 18.408388 ], [ -65.049812, 18.408455 ], [ -65.049805, 18.40851 ], [ -65.049784, 18.408558 ], [ -65.049767, 18.408596 ], [ -65.049759, 18.408714 ], [ -65.049745, 18.408777 ], [ -65.049716, 18.40879 ], [ -65.049706, 18.40881 ], [ -65.049706, 18.408833 ], [ -65.049706, 18.408855 ], [ -65.049738, 18.408897 ], [ -65.049783, 18.408953 ], [ -65.049835, 18.409019 ], [ -65.049873, 18.409084 ], [ -65.049995, 18.409195 ], [ -65.050071, 18.40921 ], [ -65.050148, 18.409225 ], [ -65.050163, 18.409231 ], [ -65.050202, 18.409279 ] ] ], [ [ [ -65.064338, 18.37991 ], [ -65.064321, 18.379959 ], [ -65.064321, 18.380003 ], [ -65.064269, 18.38008 ], [ -65.064246, 18.380102 ], [ -65.064206, 18.380108 ], [ -65.064171, 18.380124 ], [ -65.064159, 18.380146 ], [ -65.064096, 18.380205 ], [ -65.064113, 18.380245 ], [ -65.063992, 18.380455 ], [ -65.063934, 18.380492 ], [ -65.063888, 18.380521 ], [ -65.06379, 18.380548 ], [ -65.063721, 18.380592 ], [ -65.063606, 18.380631 ], [ -65.063415, 18.380741 ], [ -65.063231, 18.380824 ], [ -65.063167, 18.380829 ], [ -65.063098, 18.38085 ], [ -65.062896, 18.380835 ], [ -65.062746, 18.380807 ], [ -65.062683, 18.380812 ], [ -65.062614, 18.380851 ], [ -65.062579, 18.38085 ], [ -65.062562, 18.380879 ], [ -65.062498, 18.38089 ], [ -65.062412, 18.38089 ], [ -65.062371, 18.380868 ], [ -65.062297, 18.380846 ], [ -65.062279, 18.380852 ], [ -65.062233, 18.380846 ], [ -65.062175, 18.380862 ], [ -65.062112, 18.380895 ], [ -65.062106, 18.380917 ], [ -65.062123, 18.380939 ], [ -65.062055, 18.380962 ], [ -65.061985, 18.381011 ], [ -65.061904, 18.381077 ], [ -65.061893, 18.38111 ], [ -65.062008, 18.381297 ], [ -65.062014, 18.381341 ], [ -65.061997, 18.38138 ], [ -65.061962, 18.381407 ], [ -65.061846, 18.381408 ], [ -65.061789, 18.381418 ], [ -65.061743, 18.381413 ], [ -65.061708, 18.381435 ], [ -65.061656, 18.38143 ], [ -65.061541, 18.381452 ], [ -65.061501, 18.381473 ], [ -65.061454, 18.381463 ], [ -65.061402, 18.381468 ], [ -65.061368, 18.38149 ], [ -65.061327, 18.381557 ], [ -65.061258, 18.381639 ], [ -65.061206, 18.381683 ], [ -65.060993, 18.38171 ], [ -65.060825, 18.381721 ], [ -65.06063, 18.381782 ], [ -65.060583, 18.381787 ], [ -65.060497, 18.381782 ], [ -65.060404, 18.381798 ], [ -65.060243, 18.38187 ], [ -65.060145, 18.381875 ], [ -65.059897, 18.381821 ], [ -65.059839, 18.381826 ], [ -65.059753, 18.381809 ], [ -65.05973, 18.381787 ], [ -65.059712, 18.381738 ], [ -65.059741, 18.381699 ], [ -65.059787, 18.381677 ], [ -65.059844, 18.381618 ], [ -65.059845, 18.3816 ], [ -65.059776, 18.381572 ], [ -65.059597, 18.381606 ], [ -65.059534, 18.38159 ], [ -65.059499, 18.381567 ], [ -65.059482, 18.381529 ], [ -65.059482, 18.381501 ], [ -65.059505, 18.381435 ], [ -65.059493, 18.381413 ], [ -65.059435, 18.38138 ], [ -65.059407, 18.381374 ], [ -65.059389, 18.381353 ], [ -65.059378, 18.381297 ], [ -65.05936, 18.38121 ], [ -65.059349, 18.381182 ], [ -65.059297, 18.38116 ], [ -65.059263, 18.381093 ], [ -65.05917, 18.381066 ], [ -65.059159, 18.381005 ], [ -65.059188, 18.380995 ], [ -65.059188, 18.380967 ], [ -65.059239, 18.380917 ], [ -65.059337, 18.380741 ], [ -65.059389, 18.380675 ], [ -65.059447, 18.380659 ], [ -65.059488, 18.380686 ], [ -65.059528, 18.380647 ], [ -65.059516, 18.380631 ], [ -65.059545, 18.38056 ], [ -65.059562, 18.380548 ], [ -65.05958, 18.380554 ], [ -65.059614, 18.380543 ], [ -65.059666, 18.380543 ], [ -65.059839, 18.38057 ], [ -65.059903, 18.380565 ], [ -65.059989, 18.380515 ], [ -65.060001, 18.380499 ], [ -65.060013, 18.380438 ], [ -65.060047, 18.380378 ], [ -65.06011, 18.380345 ], [ -65.060151, 18.380344 ], [ -65.060174, 18.380312 ], [ -65.06018, 18.380256 ], [ -65.060266, 18.380064 ], [ -65.060301, 18.380009 ], [ -65.060351, 18.379944 ], [ -65.060456, 18.37981 ], [ -65.060485, 18.37974 ], [ -65.060479, 18.379722 ], [ -65.060445, 18.379695 ], [ -65.060428, 18.379662 ], [ -65.060428, 18.379629 ], [ -65.060456, 18.379552 ], [ -65.060456, 18.37953 ], [ -65.060404, 18.379453 ], [ -65.060422, 18.379436 ], [ -65.060422, 18.379409 ], [ -65.060468, 18.379342 ], [ -65.06056, 18.379084 ], [ -65.060595, 18.379044 ], [ -65.06063, 18.379028 ], [ -65.060658, 18.378979 ], [ -65.060658, 18.378907 ], [ -65.060624, 18.378812 ], [ -65.060595, 18.378781 ], [ -65.060554, 18.378766 ], [ -65.060549, 18.378748 ], [ -65.060531, 18.37872 ], [ -65.060526, 18.378676 ], [ -65.060543, 18.378615 ], [ -65.060566, 18.378582 ], [ -65.060601, 18.37856 ], [ -65.060676, 18.378538 ], [ -65.060722, 18.378483 ], [ -65.06086, 18.378421 ], [ -65.06097, 18.378395 ], [ -65.061062, 18.378357 ], [ -65.061097, 18.378317 ], [ -65.06112, 18.378241 ], [ -65.061143, 18.378197 ], [ -65.061218, 18.378131 ], [ -65.061304, 18.378147 ], [ -65.061345, 18.378141 ], [ -65.061397, 18.378147 ], [ -65.061425, 18.378114 ], [ -65.061466, 18.378108 ], [ -65.061512, 18.378087 ], [ -65.061702, 18.378131 ], [ -65.061754, 18.378146 ], [ -65.061921, 18.378087 ], [ -65.062043, 18.378092 ], [ -65.062227, 18.378191 ], [ -65.06236, 18.378213 ], [ -65.062406, 18.378236 ], [ -65.062729, 18.378302 ], [ -65.062804, 18.378284 ], [ -65.062879, 18.378291 ], [ -65.062948, 18.37828 ], [ -65.063058, 18.378312 ], [ -65.063156, 18.378318 ], [ -65.063288, 18.378351 ], [ -65.063306, 18.378373 ], [ -65.063317, 18.378417 ], [ -65.063306, 18.378466 ], [ -65.063346, 18.378571 ], [ -65.063352, 18.378609 ], [ -65.063323, 18.378615 ], [ -65.063369, 18.378709 ], [ -65.063444, 18.378781 ], [ -65.063467, 18.378835 ], [ -65.063461, 18.378896 ], [ -65.06349, 18.378946 ], [ -65.063525, 18.378984 ], [ -65.063658, 18.379034 ], [ -65.06371, 18.379027 ], [ -65.063802, 18.379039 ], [ -65.063785, 18.37911 ], [ -65.06379, 18.379133 ], [ -65.063819, 18.379154 ], [ -65.063864, 18.379214 ], [ -65.063871, 18.379231 ], [ -65.063865, 18.379249 ], [ -65.063888, 18.379309 ], [ -65.063958, 18.379396 ], [ -65.064009, 18.379403 ], [ -65.064113, 18.379447 ], [ -65.064165, 18.379502 ], [ -65.064184, 18.379559 ], [ -65.064188, 18.379568 ], [ -65.064177, 18.379618 ], [ -65.064136, 18.3797 ], [ -65.064131, 18.379722 ], [ -65.064142, 18.379744 ], [ -65.064165, 18.379766 ], [ -65.064257, 18.37981 ], [ -65.064315, 18.379849 ], [ -65.064338, 18.37991 ] ] ], [ [ [ -65.101234, 18.283504 ], [ -65.101203, 18.283531 ], [ -65.10115, 18.283519 ], [ -65.101127, 18.283498 ], [ -65.101104, 18.283493 ], [ -65.101043, 18.283504 ], [ -65.100997, 18.283546 ], [ -65.100975, 18.283548 ], [ -65.100883, 18.283552 ], [ -65.100608, 18.283519 ], [ -65.10044, 18.283468 ], [ -65.100379, 18.283435 ], [ -65.100364, 18.283416 ], [ -65.100357, 18.283397 ], [ -65.100379, 18.283363 ], [ -65.100512, 18.283269 ], [ -65.100524, 18.283237 ], [ -65.100448, 18.28321 ], [ -65.100318, 18.283185 ], [ -65.100265, 18.283151 ], [ -65.100212, 18.283037 ], [ -65.100204, 18.282964 ], [ -65.100204, 18.282909 ], [ -65.100257, 18.282844 ], [ -65.100318, 18.282812 ], [ -65.100486, 18.282823 ], [ -65.100593, 18.282796 ], [ -65.100639, 18.282802 ], [ -65.100708, 18.282869 ], [ -65.100975, 18.283004 ], [ -65.101089, 18.283048 ], [ -65.101188, 18.283105 ], [ -65.101234, 18.283163 ], [ -65.101249, 18.28321 ], [ -65.10131, 18.283287 ], [ -65.101333, 18.283327 ], [ -65.101325, 18.283357 ], [ -65.10131, 18.283369 ], [ -65.10128, 18.283365 ], [ -65.101249, 18.283359 ], [ -65.101211, 18.283363 ], [ -65.101219, 18.283397 ], [ -65.101242, 18.283468 ], [ -65.101234, 18.283504 ] ] ], [ [ [ -65.062507, 18.404302 ], [ -65.062474, 18.404372 ], [ -65.062398, 18.404416 ], [ -65.062332, 18.404448 ], [ -65.062332, 18.404482 ], [ -65.062317, 18.404503 ], [ -65.06229, 18.404528 ], [ -65.062271, 18.404596 ], [ -65.062248, 18.404613 ], [ -65.062228, 18.404607 ], [ -65.06218, 18.404608 ], [ -65.062147, 18.404598 ], [ -65.062116, 18.404558 ], [ -65.062059, 18.404491 ], [ -65.062012, 18.4044 ], [ -65.062027, 18.404354 ], [ -65.062012, 18.404316 ], [ -65.061981, 18.404282 ], [ -65.061928, 18.404266 ], [ -65.06189, 18.404348 ], [ -65.061882, 18.4044 ], [ -65.061844, 18.404453 ], [ -65.061722, 18.404497 ], [ -65.061676, 18.404526 ], [ -65.06163, 18.404514 ], [ -65.061612, 18.404516 ], [ -65.061567, 18.404517 ], [ -65.061554, 18.404543 ], [ -65.061536, 18.404607 ], [ -65.061523, 18.404634 ], [ -65.061447, 18.404701 ], [ -65.061394, 18.40473 ], [ -65.061287, 18.404966 ], [ -65.061272, 18.404979 ], [ -65.061249, 18.404999 ], [ -65.061203, 18.405066 ], [ -65.061195, 18.405247 ], [ -65.061188, 18.405279 ], [ -65.061172, 18.405283 ], [ -65.061136, 18.405275 ], [ -65.061119, 18.405247 ], [ -65.061096, 18.405226 ], [ -65.061058, 18.405098 ], [ -65.061043, 18.405081 ], [ -65.060996, 18.405061 ], [ -65.060966, 18.405048 ], [ -65.060934, 18.405065 ], [ -65.060921, 18.405081 ], [ -65.060921, 18.405115 ], [ -65.060921, 18.40517 ], [ -65.060905, 18.405195 ], [ -65.060829, 18.405224 ], [ -65.060753, 18.40523 ], [ -65.060707, 18.405212 ], [ -65.060631, 18.40517 ], [ -65.060569, 18.405089 ], [ -65.060547, 18.40506 ], [ -65.060523, 18.40501 ], [ -65.060486, 18.404932 ], [ -65.060425, 18.404938 ], [ -65.060379, 18.405025 ], [ -65.060297, 18.405042 ], [ -65.060272, 18.405039 ], [ -65.060212, 18.404991 ], [ -65.060188, 18.404976 ], [ -65.060094, 18.404888 ], [ -65.060055, 18.404911 ], [ -65.060032, 18.404947 ], [ -65.060036, 18.404964 ], [ -65.060025, 18.404984 ], [ -65.059998, 18.405005 ], [ -65.059967, 18.405005 ], [ -65.059929, 18.405022 ], [ -65.059898, 18.405066 ], [ -65.059898, 18.405121 ], [ -65.05983, 18.405149 ], [ -65.059708, 18.405165 ], [ -65.059677, 18.405182 ], [ -65.059647, 18.405258 ], [ -65.05957, 18.405279 ], [ -65.059532, 18.405273 ], [ -65.059512, 18.40526 ], [ -65.059502, 18.405317 ], [ -65.059528, 18.405354 ], [ -65.059525, 18.405445 ], [ -65.059495, 18.405484 ], [ -65.059441, 18.40551 ], [ -65.059433, 18.405533 ], [ -65.059418, 18.405542 ], [ -65.05938, 18.405632 ], [ -65.059356, 18.405668 ], [ -65.059334, 18.405748 ], [ -65.059319, 18.405842 ], [ -65.059326, 18.405886 ], [ -65.059319, 18.405912 ], [ -65.059349, 18.406017 ], [ -65.059331, 18.406115 ], [ -65.059341, 18.406143 ], [ -65.059321, 18.406206 ], [ -65.059292, 18.406219 ], [ -65.059265, 18.406233 ], [ -65.059242, 18.406233 ], [ -65.059204, 18.406212 ], [ -65.059196, 18.406195 ], [ -65.059082, 18.406195 ], [ -65.05899, 18.406113 ], [ -65.05896, 18.406105 ], [ -65.058907, 18.406067 ], [ -65.058891, 18.405691 ], [ -65.058868, 18.405638 ], [ -65.05883, 18.405445 ], [ -65.058769, 18.405285 ], [ -65.058747, 18.405184 ], [ -65.058701, 18.405125 ], [ -65.05864, 18.40513 ], [ -65.058624, 18.405125 ], [ -65.05859, 18.405135 ], [ -65.058578, 18.40513 ], [ -65.058487, 18.405148 ], [ -65.058483, 18.405117 ], [ -65.058479, 18.40506 ], [ -65.058502, 18.405047 ], [ -65.058502, 18.404959 ], [ -65.058495, 18.404943 ], [ -65.058479, 18.404949 ], [ -65.058426, 18.404934 ], [ -65.058388, 18.404966 ], [ -65.05835, 18.404966 ], [ -65.058296, 18.404943 ], [ -65.058271, 18.404916 ], [ -65.058189, 18.404707 ], [ -65.058189, 18.404657 ], [ -65.058205, 18.404613 ], [ -65.058189, 18.404534 ], [ -65.058251, 18.404384 ], [ -65.058361, 18.404286 ], [ -65.058357, 18.404146 ], [ -65.058328, 18.404124 ], [ -65.058305, 18.404118 ], [ -65.058276, 18.404123 ], [ -65.058235, 18.404123 ], [ -65.058172, 18.404096 ], [ -65.058068, 18.404107 ], [ -65.057981, 18.404063 ], [ -65.05793, 18.404012 ], [ -65.057889, 18.403958 ], [ -65.057878, 18.403914 ], [ -65.057895, 18.403903 ], [ -65.057912, 18.403869 ], [ -65.057963, 18.403811 ], [ -65.057993, 18.403777 ], [ -65.058011, 18.403704 ], [ -65.057977, 18.403672 ], [ -65.057958, 18.403671 ], [ -65.057889, 18.403634 ], [ -65.057791, 18.403605 ], [ -65.057716, 18.403595 ], [ -65.057635, 18.4036 ], [ -65.057572, 18.403589 ], [ -65.057514, 18.403567 ], [ -65.057497, 18.403496 ], [ -65.057508, 18.403452 ], [ -65.057503, 18.403423 ], [ -65.057485, 18.403385 ], [ -65.057451, 18.403353 ], [ -65.057434, 18.403297 ], [ -65.057457, 18.40327 ], [ -65.057484, 18.403249 ], [ -65.057503, 18.403248 ], [ -65.057537, 18.403259 ], [ -65.057595, 18.403253 ], [ -65.057687, 18.403281 ], [ -65.057739, 18.403275 ], [ -65.057768, 18.403292 ], [ -65.057791, 18.403275 ], [ -65.057826, 18.403275 ], [ -65.057826, 18.403254 ], [ -65.05786, 18.403204 ], [ -65.057923, 18.403198 ], [ -65.057941, 18.403204 ], [ -65.058051, 18.403082 ], [ -65.058143, 18.403044 ], [ -65.058253, 18.403055 ], [ -65.058333, 18.403121 ], [ -65.058426, 18.403165 ], [ -65.058471, 18.403176 ], [ -65.058472, 18.403176 ], [ -65.058489, 18.403148 ], [ -65.058506, 18.403132 ], [ -65.058524, 18.403126 ], [ -65.058533, 18.403109 ], [ -65.058553, 18.403105 ], [ -65.058587, 18.403127 ], [ -65.058593, 18.403149 ], [ -65.058633, 18.403187 ], [ -65.058639, 18.403226 ], [ -65.058674, 18.403298 ], [ -65.058756, 18.40338 ], [ -65.058818, 18.403435 ], [ -65.058835, 18.403501 ], [ -65.058921, 18.403576 ], [ -65.059019, 18.403548 ], [ -65.059151, 18.403517 ], [ -65.059371, 18.403491 ], [ -65.059511, 18.40343 ], [ -65.059657, 18.403366 ], [ -65.059699, 18.403348 ], [ -65.059759, 18.403321 ], [ -65.059759, 18.403238 ], [ -65.059962, 18.403197 ], [ -65.060023, 18.40325 ], [ -65.060089, 18.403137 ], [ -65.060079, 18.403094 ], [ -65.060017, 18.403063 ], [ -65.060005, 18.403023 ], [ -65.06021, 18.402925 ], [ -65.060333, 18.402945 ], [ -65.060471, 18.402962 ], [ -65.060625, 18.403084 ], [ -65.06077, 18.403034 ], [ -65.060932, 18.403162 ], [ -65.061014, 18.40319 ], [ -65.061119, 18.403248 ], [ -65.061172, 18.403313 ], [ -65.061222, 18.403304 ], [ -65.061272, 18.403242 ], [ -65.061378, 18.403225 ], [ -65.061429, 18.403279 ], [ -65.06147, 18.403403 ], [ -65.061562, 18.40344 ], [ -65.061707, 18.40344 ], [ -65.061746, 18.403477 ], [ -65.061779, 18.403524 ], [ -65.061944, 18.403633 ], [ -65.062018, 18.403689 ], [ -65.062085, 18.403732 ], [ -65.062179, 18.403855 ], [ -65.062262, 18.40398 ], [ -65.062344, 18.404026 ], [ -65.062363, 18.404036 ], [ -65.062496, 18.404224 ], [ -65.062508, 18.404245 ], [ -65.062508, 18.404273 ], [ -65.062507, 18.404302 ] ] ], [ [ [ -65.002804, 18.304754 ], [ -65.002773, 18.304833 ], [ -65.001205, 18.3089 ], [ -65.001188, 18.308911 ], [ -65.001079, 18.308917 ], [ -65.001056, 18.308932 ], [ -65.001044, 18.308972 ], [ -65.00105, 18.308993 ], [ -65.001038, 18.309043 ], [ -65.000986, 18.309076 ], [ -65.000969, 18.309148 ], [ -65.000934, 18.309197 ], [ -65.000756, 18.309241 ], [ -65.000755, 18.309241 ], [ -65.00064, 18.309263 ], [ -65.000581, 18.309263 ], [ -65.000508, 18.309263 ], [ -65.000335, 18.309203 ], [ -65.000312, 18.309181 ], [ -65.000309, 18.309153 ], [ -65.000306, 18.30912 ], [ -65.00026, 18.308992 ], [ -65.00026, 18.308955 ], [ -65.000202, 18.30885 ], [ -65.00015, 18.308823 ], [ -65.000127, 18.308801 ], [ -65.000096, 18.308796 ], [ -65.000081, 18.308784 ], [ -65.000001, 18.308761 ], [ -64.999931, 18.308756 ], [ -64.999897, 18.308734 ], [ -64.99977, 18.308712 ], [ -64.999689, 18.308671 ], [ -64.999683, 18.308668 ], [ -64.999667, 18.308611 ], [ -64.999662, 18.308591 ], [ -64.999626, 18.308464 ], [ -64.997952, 18.305083 ], [ -64.998034, 18.30505 ], [ -64.998268, 18.304914 ], [ -64.99833, 18.304783 ], [ -64.998379, 18.304678 ], [ -64.998498, 18.304681 ], [ -64.998654, 18.304647 ], [ -64.998804, 18.30456 ], [ -64.998914, 18.304429 ], [ -64.998969, 18.304379 ], [ -64.999056, 18.304513 ], [ -64.99922, 18.304554 ], [ -64.999315, 18.30456 ], [ -64.999414, 18.304654 ], [ -64.999528, 18.304662 ], [ -64.999592, 18.304615 ], [ -64.999662, 18.304505 ], [ -64.99963, 18.304403 ], [ -64.999593, 18.304262 ], [ -64.999639, 18.304258 ], [ -64.99971, 18.304263 ], [ -64.999864, 18.304274 ], [ -64.999933, 18.304136 ], [ -65.00005, 18.304003 ], [ -65.0001, 18.303971 ], [ -65.000169, 18.303955 ], [ -65.000337, 18.303933 ], [ -65.000486, 18.303949 ], [ -65.000561, 18.303977 ], [ -65.000596, 18.303999 ], [ -65.000637, 18.304004 ], [ -65.000671, 18.303999 ], [ -65.000677, 18.303977 ], [ -65.000665, 18.303938 ], [ -65.000613, 18.303872 ], [ -65.000538, 18.303728 ], [ -65.000521, 18.303673 ], [ -65.00055, 18.30364 ], [ -65.0007, 18.303635 ], [ -65.000939, 18.303669 ], [ -65.001207, 18.303707 ], [ -65.001248, 18.303723 ], [ -65.001294, 18.303779 ], [ -65.001317, 18.303822 ], [ -65.001322, 18.303894 ], [ -65.00133, 18.303924 ], [ -65.001339, 18.303955 ], [ -65.001369, 18.303987 ], [ -65.001472, 18.303949 ], [ -65.001594, 18.303889 ], [ -65.001709, 18.303858 ], [ -65.001864, 18.303817 ], [ -65.001922, 18.303812 ], [ -65.00202, 18.303773 ], [ -65.002147, 18.303592 ], [ -65.002193, 18.303553 ], [ -65.002216, 18.303547 ], [ -65.002257, 18.303552 ], [ -65.002314, 18.303575 ], [ -65.002366, 18.303652 ], [ -65.00236, 18.303878 ], [ -65.002377, 18.303916 ], [ -65.00245, 18.303977 ], [ -65.002522, 18.304038 ], [ -65.002735, 18.304241 ], [ -65.002769, 18.304297 ], [ -65.002839, 18.304451 ], [ -65.002856, 18.304621 ], [ -65.002804, 18.304754 ] ] ], [ [ [ -65.009498, 18.30186 ], [ -65.009426, 18.301882 ], [ -65.009378, 18.301908 ], [ -65.009332, 18.301895 ], [ -65.009314, 18.301866 ], [ -65.009269, 18.301855 ], [ -65.009253, 18.301823 ], [ -65.009247, 18.301783 ], [ -65.009253, 18.301732 ], [ -65.009279, 18.301701 ], [ -65.009298, 18.301685 ], [ -65.009335, 18.301693 ], [ -65.009351, 18.301725 ], [ -65.009348, 18.301754 ], [ -65.009359, 18.301764 ], [ -65.009404, 18.301767 ], [ -65.009476, 18.301767 ], [ -65.009498, 18.30181 ], [ -65.009498, 18.30186 ] ] ], [ [ [ -64.92562, 18.369944 ], [ -64.923006, 18.367474 ], [ -64.922748, 18.367147 ], [ -64.922489, 18.36681 ], [ -64.922332, 18.366623 ], [ -64.922188, 18.366475 ], [ -64.922177, 18.366458 ], [ -64.922096, 18.366326 ], [ -64.922038, 18.366199 ], [ -64.921992, 18.366056 ], [ -64.922033, 18.365983 ], [ -64.922027, 18.365919 ], [ -64.922027, 18.365775 ], [ -64.922016, 18.365658 ], [ -64.922073, 18.365401 ], [ -64.922252, 18.365048 ], [ -64.92235, 18.364867 ], [ -64.92242, 18.364773 ], [ -64.922529, 18.364597 ], [ -64.922569, 18.364476 ], [ -64.922667, 18.364322 ], [ -64.922806, 18.364129 ], [ -64.922991, 18.36386 ], [ -64.92329, 18.363522 ], [ -64.923405, 18.363363 ], [ -64.923526, 18.36322 ], [ -64.923613, 18.363099 ], [ -64.9237, 18.362967 ], [ -64.923752, 18.362784 ], [ -64.923835, 18.362606 ], [ -64.923867, 18.362543 ], [ -64.923965, 18.362285 ], [ -64.924139, 18.361915 ], [ -64.924311, 18.361623 ], [ -64.924524, 18.361298 ], [ -64.924616, 18.361169 ], [ -64.92498, 18.360659 ], [ -64.925193, 18.360368 ], [ -64.925299, 18.360255 ], [ -64.925424, 18.360124 ], [ -64.925661, 18.359916 ], [ -64.925807, 18.359779 ], [ -64.925881, 18.359711 ], [ -64.926041, 18.359569 ], [ -64.926255, 18.35942 ], [ -64.926445, 18.359294 ], [ -64.926635, 18.359178 ], [ -64.926826, 18.359052 ], [ -64.927016, 18.358952 ], [ -64.92719, 18.358869 ], [ -64.927299, 18.358826 ], [ -64.927454, 18.358798 ], [ -64.927564, 18.358793 ], [ -64.927656, 18.358771 ], [ -64.927795, 18.358782 ], [ -64.927962, 18.358842 ], [ -64.928147, 18.358914 ], [ -64.928273, 18.359013 ], [ -64.928384, 18.359146 ], [ -64.928521, 18.359266 ], [ -64.928637, 18.359382 ], [ -64.928718, 18.359531 ], [ -64.928781, 18.359663 ], [ -64.928822, 18.359726 ], [ -64.928857, 18.359778 ], [ -64.928948, 18.359889 ], [ -64.929035, 18.359949 ], [ -64.9293, 18.360015 ], [ -64.929386, 18.360043 ], [ -64.929513, 18.360136 ], [ -64.929577, 18.360192 ], [ -64.929663, 18.360247 ], [ -64.92972, 18.360267 ], [ -64.929831, 18.360307 ], [ -64.929894, 18.360335 ], [ -64.929969, 18.360346 ], [ -64.930038, 18.36034 ], [ -64.930084, 18.360324 ], [ -64.930102, 18.360335 ], [ -64.930102, 18.360302 ], [ -64.930096, 18.360271 ], [ -64.930107, 18.360219 ], [ -64.930165, 18.360186 ], [ -64.931033, 18.357286 ], [ -64.93138, 18.35613 ], [ -64.931725, 18.354887 ], [ -64.932016, 18.35395 ], [ -64.932187, 18.353877 ], [ -64.93215, 18.35378 ], [ -64.932131, 18.353697 ], [ -64.932108, 18.35359 ], [ -64.932097, 18.353541 ], [ -64.93209, 18.35351 ], [ -64.932041, 18.353404 ], [ -64.932021, 18.35336 ], [ -64.93197, 18.35325 ], [ -64.931903, 18.353154 ], [ -64.93162, 18.35275 ], [ -64.93158, 18.35268 ], [ -64.93156, 18.35263 ], [ -64.93155, 18.35258 ], [ -64.93155, 18.352545 ], [ -64.93155, 18.35254 ], [ -64.93157, 18.3525 ], [ -64.931674, 18.352344 ], [ -64.93169, 18.35252 ], [ -64.931859, 18.35267 ], [ -64.93231, 18.35307 ], [ -64.93256, 18.3533 ], [ -64.93269, 18.35337 ], [ -64.932809, 18.353393 ], [ -64.9331, 18.35345 ], [ -64.933205, 18.353475 ], [ -64.933463, 18.353536 ], [ -64.93406, 18.35368 ], [ -64.934236, 18.353729 ], [ -64.93431, 18.35375 ], [ -64.934486, 18.353818 ], [ -64.934516, 18.353829 ], [ -64.934607, 18.353865 ], [ -64.93462, 18.35387 ], [ -64.934638, 18.353878 ], [ -64.93473, 18.353915 ], [ -64.934925, 18.353995 ], [ -64.935788, 18.354348 ], [ -64.936076, 18.354466 ], [ -64.93616, 18.3545 ], [ -64.936526, 18.354679 ], [ -64.936628, 18.354456 ], [ -64.936954, 18.353755 ], [ -64.93696, 18.35376 ], [ -64.93708, 18.35381 ], [ -64.93736, 18.35387 ], [ -64.9381, 18.35401 ], [ -64.938379, 18.354058 ], [ -64.938855, 18.35414 ], [ -64.938857, 18.3541 ], [ -64.938806, 18.353701 ], [ -64.938826, 18.353221 ], [ -64.938826, 18.353203 ], [ -64.938827, 18.35286 ], [ -64.93929, 18.352855 ], [ -64.939312, 18.352853 ], [ -64.939629, 18.352862 ], [ -64.940385, 18.352857 ], [ -64.940848, 18.352923 ], [ -64.941497, 18.352996 ], [ -64.941542, 18.352983 ], [ -64.941879, 18.354046 ], [ -64.941953, 18.354392 ], [ -64.943672, 18.35461 ], [ -64.944459, 18.355086 ], [ -64.944507, 18.355156 ], [ -64.94455, 18.355218 ], [ -64.944699, 18.355324 ], [ -64.94477, 18.355374 ], [ -64.946252, 18.356457 ], [ -64.946974, 18.356704 ], [ -64.947041, 18.356717 ], [ -64.947658, 18.35697 ], [ -64.948333, 18.357199 ], [ -64.948687, 18.357137 ], [ -64.948888, 18.356966 ], [ -64.948903, 18.356918 ], [ -64.949133, 18.357182 ], [ -64.94915, 18.357209 ], [ -64.949158, 18.357215 ], [ -64.949174, 18.357215 ], [ -64.949245, 18.357175 ], [ -64.949262, 18.357167 ], [ -64.949279, 18.357161 ], [ -64.949298, 18.357156 ], [ -64.949318, 18.357152 ], [ -64.949337, 18.35715 ], [ -64.949357, 18.35715 ], [ -64.949386, 18.357153 ], [ -64.949413, 18.357159 ], [ -64.949432, 18.357166 ], [ -64.949459, 18.357177 ], [ -64.949479, 18.357185 ], [ -64.9495, 18.357192 ], [ -64.949523, 18.357198 ], [ -64.949557, 18.357206 ], [ -64.949579, 18.357209 ], [ -64.949591, 18.35721 ], [ -64.949606, 18.357213 ], [ -64.949616, 18.357216 ], [ -64.949625, 18.357221 ], [ -64.949636, 18.357227 ], [ -64.949644, 18.357233 ], [ -64.949655, 18.357244 ], [ -64.949664, 18.357258 ], [ -64.94967, 18.357271 ], [ -64.949675, 18.357287 ], [ -64.949676, 18.357305 ], [ -64.949676, 18.357316 ], [ -64.949674, 18.357328 ], [ -64.949674, 18.357361 ], [ -64.949675, 18.357397 ], [ -64.949679, 18.357436 ], [ -64.949681, 18.357462 ], [ -64.949687, 18.357491 ], [ -64.949715, 18.357631 ], [ -64.949996, 18.357378 ], [ -64.949996, 18.357332 ], [ -64.950852, 18.35733 ], [ -64.950815, 18.359351 ], [ -64.950809, 18.359682 ], [ -64.950813, 18.359742 ], [ -64.950885, 18.3603 ], [ -64.95102, 18.3603 ], [ -64.951038, 18.360294 ], [ -64.951276, 18.360228 ], [ -64.951104, 18.36149 ], [ -64.952381, 18.360584 ], [ -64.952516, 18.360487 ], [ -64.952608, 18.360408 ], [ -64.952704, 18.360331 ], [ -64.9528, 18.360257 ], [ -64.952899, 18.360184 ], [ -64.952996, 18.360118 ], [ -64.953096, 18.360052 ], [ -64.953194, 18.35999 ], [ -64.953298, 18.359928 ], [ -64.953299, 18.35984 ], [ -64.953297, 18.359757 ], [ -64.953293, 18.359668 ], [ -64.953286, 18.359577 ], [ -64.953269, 18.359432 ], [ -64.953259, 18.359368 ], [ -64.953244, 18.35929 ], [ -64.953232, 18.359207 ], [ -64.95322, 18.359121 ], [ -64.95321, 18.359038 ], [ -64.953199, 18.358946 ], [ -64.953192, 18.358855 ], [ -64.953185, 18.358763 ], [ -64.95318, 18.358668 ], [ -64.953318, 18.358375 ], [ -64.953419, 18.358162 ], [ -64.95335, 18.357973 ], [ -64.953421, 18.357994 ], [ -64.953447, 18.358004 ], [ -64.953492, 18.358025 ], [ -64.953602, 18.358081 ], [ -64.9537, 18.358134 ], [ -64.953854, 18.358203 ], [ -64.953956, 18.358251 ], [ -64.953974, 18.358255 ], [ -64.954092, 18.358265 ], [ -64.954161, 18.35827 ], [ -64.954511, 18.358341 ], [ -64.954666, 18.358419 ], [ -64.954948, 18.357247 ], [ -64.954967, 18.356716 ], [ -64.954942, 18.356251 ], [ -64.954938, 18.355766 ], [ -64.954936, 18.354173 ], [ -64.954935, 18.35387 ], [ -64.954935, 18.353815 ], [ -64.954915, 18.352421 ], [ -64.954913, 18.35222 ], [ -64.955116, 18.352197 ], [ -64.955202, 18.352186 ], [ -64.956582, 18.352004 ], [ -64.956656, 18.351989 ], [ -64.956697, 18.351932 ], [ -64.956769, 18.351941 ], [ -64.957466, 18.352032 ], [ -64.957467, 18.352032 ], [ -64.957496, 18.352002 ], [ -64.957862, 18.352111 ], [ -64.959349, 18.352914 ], [ -64.959391, 18.352941 ], [ -64.959529, 18.353014 ], [ -64.960142, 18.353397 ], [ -64.961782, 18.354131 ], [ -64.962272, 18.354228 ], [ -64.963426, 18.354377 ], [ -64.963438, 18.35437 ], [ -64.963469, 18.354359 ], [ -64.963518, 18.354359 ], [ -64.963573, 18.354374 ], [ -64.963666, 18.354419 ], [ -64.96386, 18.354514 ], [ -64.963953, 18.354554 ], [ -64.964106, 18.354601 ], [ -64.964135, 18.35461 ], [ -64.964214, 18.354636 ], [ -64.964339, 18.354678 ], [ -64.96454, 18.354751 ], [ -64.964552, 18.354756 ], [ -64.96465, 18.354788 ], [ -64.964743, 18.354818 ], [ -64.964914, 18.354865 ], [ -64.965039, 18.354894 ], [ -64.96521, 18.354925 ], [ -64.965339, 18.354941 ], [ -64.965498, 18.354955 ], [ -64.966187, 18.355019 ], [ -64.96652, 18.35505 ], [ -64.96688, 18.35512 ], [ -64.967117, 18.355187 ], [ -64.96741, 18.35527 ], [ -64.96778, 18.35533 ], [ -64.968053, 18.355408 ], [ -64.96813, 18.35543 ], [ -64.96842, 18.35555 ], [ -64.96867, 18.3557 ], [ -64.968755, 18.355735 ], [ -64.96884, 18.35577 ], [ -64.968915, 18.355795 ], [ -64.96899, 18.35582 ], [ -64.96926, 18.35592 ], [ -64.969292, 18.355935 ], [ -64.96945, 18.35601 ], [ -64.96962, 18.35615 ], [ -64.97006, 18.35659 ], [ -64.970235, 18.356758 ], [ -64.97029, 18.35681 ], [ -64.970348, 18.356907 ], [ -64.970407, 18.357005 ], [ -64.970738, 18.356947 ], [ -64.970749, 18.356946 ], [ -64.970526, 18.355005 ], [ -64.970608, 18.354656 ], [ -64.970662, 18.354467 ], [ -64.970888, 18.353427 ], [ -64.97112, 18.35347 ], [ -64.971168, 18.347795 ], [ -64.972751, 18.347413 ], [ -64.972805, 18.347184 ], [ -64.972948, 18.346589 ], [ -64.974051, 18.347047 ], [ -64.975837, 18.347789 ], [ -64.975648, 18.348258 ], [ -64.976067, 18.348432 ], [ -64.977074, 18.349456 ], [ -64.978182, 18.348006 ], [ -64.979732, 18.345895 ], [ -64.979826, 18.345767 ], [ -64.980187, 18.345276 ], [ -64.980447, 18.345316 ], [ -64.980588, 18.3454 ], [ -64.98068, 18.345457 ], [ -64.980825, 18.345553 ], [ -64.980952, 18.345637 ], [ -64.981097, 18.345747 ], [ -64.98125, 18.34579 ], [ -64.981382, 18.345795 ], [ -64.981505, 18.34576 ], [ -64.981637, 18.345733 ], [ -64.981786, 18.345725 ], [ -64.981935, 18.34572 ], [ -64.982042, 18.345707 ], [ -64.9822, 18.345744 ], [ -64.98246, 18.345812 ], [ -64.982688, 18.345917 ], [ -64.982872, 18.346009 ], [ -64.983191, 18.346127 ], [ -64.98338, 18.34614 ], [ -64.983647, 18.346158 ], [ -64.983953, 18.346162 ], [ -64.984212, 18.346158 ], [ -64.984365, 18.346153 ], [ -64.984518, 18.346105 ], [ -64.98472, 18.346066 ], [ -64.984869, 18.345996 ], [ -64.984978, 18.345961 ], [ -64.985039, 18.345904 ], [ -64.985079, 18.345838 ], [ -64.985109, 18.34579 ], [ -64.985136, 18.345698 ], [ -64.985131, 18.345588 ], [ -64.985123, 18.345488 ], [ -64.985109, 18.345374 ], [ -64.985162, 18.345278 ], [ -64.985228, 18.345234 ], [ -64.985245, 18.345194 ], [ -64.985258, 18.345155 ], [ -64.985376, 18.345054 ], [ -64.985525, 18.345054 ], [ -64.985635, 18.345102 ], [ -64.985679, 18.345146 ], [ -64.985714, 18.345179 ], [ -64.985749, 18.345216 ], [ -64.985793, 18.345225 ], [ -64.985996, 18.345194 ], [ -64.999592, 18.346039 ], [ -65.001311, 18.346146 ], [ -65.001363, 18.346094 ], [ -65.001396, 18.346061 ], [ -65.001429, 18.346009 ], [ -65.001484, 18.346015 ], [ -65.001512, 18.346107 ], [ -65.001537, 18.34604 ], [ -65.001581, 18.345976 ], [ -65.001609, 18.345876 ], [ -65.001709, 18.345826 ], [ -65.001798, 18.345862 ], [ -65.001801, 18.345915 ], [ -65.001773, 18.345984 ], [ -65.001845, 18.345976 ], [ -65.001879, 18.34592 ], [ -65.001934, 18.345818 ], [ -65.002059, 18.345773 ], [ -65.002131, 18.345801 ], [ -65.002134, 18.345851 ], [ -65.002109, 18.345887 ], [ -65.002159, 18.345898 ], [ -65.002207, 18.345932 ], [ -65.00219, 18.346018 ], [ -65.002134, 18.346045 ], [ -65.002093, 18.34609 ], [ -65.002137, 18.346115 ], [ -65.002334, 18.346112 ], [ -65.002423, 18.346127 ], [ -65.002538, 18.346139 ], [ -65.002659, 18.346161 ], [ -65.002757, 18.346167 ], [ -65.002826, 18.346161 ], [ -65.00285, 18.346177 ], [ -65.00298, 18.34614 ], [ -65.003022, 18.346128 ], [ -65.003334, 18.346062 ], [ -65.003541, 18.346001 ], [ -65.003899, 18.345798 ], [ -65.00398, 18.345731 ], [ -65.004118, 18.345655 ], [ -65.004136, 18.345652 ], [ -65.00417, 18.345649 ], [ -65.004222, 18.345677 ], [ -65.00428, 18.345676 ], [ -65.004447, 18.345644 ], [ -65.004572, 18.345601 ], [ -65.004707, 18.345534 ], [ -65.004764, 18.345495 ], [ -65.004828, 18.345429 ], [ -65.004885, 18.345308 ], [ -65.004897, 18.345132 ], [ -65.004931, 18.345044 ], [ -65.004989, 18.344999 ], [ -65.005046, 18.34499 ], [ -65.005657, 18.344859 ], [ -65.007492, 18.344469 ], [ -65.008104, 18.34434 ], [ -65.008334, 18.34429 ], [ -65.008605, 18.344224 ], [ -65.008692, 18.344213 ], [ -65.008911, 18.344202 ], [ -65.00902, 18.344218 ], [ -65.00913, 18.344218 ], [ -65.009147, 18.344214 ], [ -65.009234, 18.344197 ], [ -65.009482, 18.344081 ], [ -65.009666, 18.344026 ], [ -65.009707, 18.344026 ], [ -65.009822, 18.34396 ], [ -65.009944, 18.343706 ], [ -65.010007, 18.343641 ], [ -65.01003, 18.343597 ], [ -65.010076, 18.343552 ], [ -65.010203, 18.343502 ], [ -65.010226, 18.343475 ], [ -65.01029, 18.343431 ], [ -65.010318, 18.34342 ], [ -65.010364, 18.343388 ], [ -65.010399, 18.343349 ], [ -65.010422, 18.343288 ], [ -65.010437, 18.343211 ], [ -65.010457, 18.343112 ], [ -65.010509, 18.342997 ], [ -65.010555, 18.342853 ], [ -65.010572, 18.34271 ], [ -65.010659, 18.342583 ], [ -65.010695, 18.342573 ], [ -65.010724, 18.342578 ], [ -65.010748, 18.342544 ], [ -65.010807, 18.342471 ], [ -65.010866, 18.342456 ], [ -65.010905, 18.342466 ], [ -65.010954, 18.342441 ], [ -65.010993, 18.342402 ], [ -65.011042, 18.342378 ], [ -65.011066, 18.342417 ], [ -65.011105, 18.342392 ], [ -65.011105, 18.342358 ], [ -65.011174, 18.342324 ], [ -65.011227, 18.342265 ], [ -65.011276, 18.342255 ], [ -65.011301, 18.342226 ], [ -65.011379, 18.342236 ], [ -65.011437, 18.342187 ], [ -65.022388, 18.341369 ], [ -65.022435, 18.341363 ], [ -65.022486, 18.341341 ], [ -65.022734, 18.341292 ], [ -65.023029, 18.341264 ], [ -65.023173, 18.341231 ], [ -65.023259, 18.341204 ], [ -65.023334, 18.341197 ], [ -65.023467, 18.341159 ], [ -65.023519, 18.341154 ], [ -65.023628, 18.341159 ], [ -65.023748, 18.341182 ], [ -65.023853, 18.341203 ], [ -65.023986, 18.341253 ], [ -65.024194, 18.341297 ], [ -65.024268, 18.34133 ], [ -65.024545, 18.341363 ], [ -65.02458, 18.341391 ], [ -65.024643, 18.341418 ], [ -65.024678, 18.341446 ], [ -65.024718, 18.34144 ], [ -65.024776, 18.341418 ], [ -65.024891, 18.341303 ], [ -65.024984, 18.341304 ], [ -65.025028, 18.341251 ], [ -65.025106, 18.341207 ], [ -65.025145, 18.341168 ], [ -65.025284, 18.341168 ], [ -65.025445, 18.341185 ], [ -65.025573, 18.341201 ], [ -65.025651, 18.341251 ], [ -65.025723, 18.341257 ], [ -65.025806, 18.341229 ], [ -65.025851, 18.341212 ], [ -65.025945, 18.341162 ], [ -65.026051, 18.341162 ], [ -65.026123, 18.341157 ], [ -65.026212, 18.34114 ], [ -65.026318, 18.341151 ], [ -65.026407, 18.341151 ], [ -65.026473, 18.341146 ], [ -65.026523, 18.341123 ], [ -65.026629, 18.341101 ], [ -65.02674, 18.341123 ], [ -65.026851, 18.341168 ], [ -65.027023, 18.341329 ], [ -65.02709, 18.341379 ], [ -65.027068, 18.341457 ], [ -65.027068, 18.341535 ], [ -65.027162, 18.341601 ], [ -65.027273, 18.34164 ], [ -65.027346, 18.34169 ], [ -65.027451, 18.341712 ], [ -65.027518, 18.341751 ], [ -65.027618, 18.341846 ], [ -65.027729, 18.341907 ], [ -65.02784, 18.341918 ], [ -65.027924, 18.341896 ], [ -65.02799, 18.341907 ], [ -65.028018, 18.341974 ], [ -65.02809, 18.342001 ], [ -65.028212, 18.342018 ], [ -65.028262, 18.342057 ], [ -65.028307, 18.342113 ], [ -65.028379, 18.342129 ], [ -65.028451, 18.342196 ], [ -65.028513, 18.34219 ], [ -65.028607, 18.342168 ], [ -65.028668, 18.342235 ], [ -65.028696, 18.34229 ], [ -65.028746, 18.342357 ], [ -65.028757, 18.342474 ], [ -65.028807, 18.342535 ], [ -65.028874, 18.342552 ], [ -65.028913, 18.342579 ], [ -65.028963, 18.342602 ], [ -65.028985, 18.342668 ], [ -65.029024, 18.342707 ], [ -65.02914, 18.342763 ], [ -65.029308, 18.342906 ], [ -65.033809, 18.346289 ], [ -65.033898, 18.346341 ], [ -65.033994, 18.346422 ], [ -65.034029, 18.346493 ], [ -65.034093, 18.346529 ], [ -65.034188, 18.346533 ], [ -65.034252, 18.346529 ], [ -65.034354, 18.346574 ], [ -65.034371, 18.346607 ], [ -65.034371, 18.346625 ], [ -65.034367, 18.346648 ], [ -65.034349, 18.346699 ], [ -65.034374, 18.346744 ], [ -65.034404, 18.346773 ], [ -65.034448, 18.346795 ], [ -65.034515, 18.346799 ], [ -65.034548, 18.346799 ], [ -65.034589, 18.346803 ], [ -65.034647, 18.346859 ], [ -65.034696, 18.346966 ], [ -65.034722, 18.347043 ], [ -65.034785, 18.347121 ], [ -65.034862, 18.347258 ], [ -65.034896, 18.347357 ], [ -65.034962, 18.34738 ], [ -65.035021, 18.347354 ], [ -65.035062, 18.347332 ], [ -65.035136, 18.347335 ], [ -65.035175, 18.347373 ], [ -65.035191, 18.347424 ], [ -65.035312, 18.347507 ], [ -65.035398, 18.347642 ], [ -65.035533, 18.347722 ], [ -65.035602, 18.347823 ], [ -65.035605, 18.347864 ], [ -65.035609, 18.347927 ], [ -65.035631, 18.348012 ], [ -65.035676, 18.348056 ], [ -65.035761, 18.348097 ], [ -65.035827, 18.34816 ], [ -65.035868, 18.348222 ], [ -65.035946, 18.348289 ], [ -65.036005, 18.348267 ], [ -65.036031, 18.348204 ], [ -65.036101, 18.348152 ], [ -65.036249, 18.348289 ], [ -65.03629, 18.348452 ], [ -65.036464, 18.348497 ], [ -65.036631, 18.348377 ], [ -65.036985, 18.34835 ], [ -65.03721, 18.348357 ], [ -65.037129, 18.348452 ], [ -65.037129, 18.348541 ], [ -65.037278, 18.348561 ], [ -65.037401, 18.348684 ], [ -65.037422, 18.348841 ], [ -65.037503, 18.348956 ], [ -65.037469, 18.3491 ], [ -65.037449, 18.349202 ], [ -65.037598, 18.349341 ], [ -65.037681, 18.34927 ], [ -65.037769, 18.34927 ], [ -65.037851, 18.34927 ], [ -65.037919, 18.349297 ], [ -65.037919, 18.349352 ], [ -65.037953, 18.34942 ], [ -65.038042, 18.349447 ], [ -65.038158, 18.349481 ], [ -65.03828, 18.349597 ], [ -65.038226, 18.349686 ], [ -65.038239, 18.349761 ], [ -65.038328, 18.349836 ], [ -65.038451, 18.34987 ], [ -65.03856, 18.349965 ], [ -65.038662, 18.350033 ], [ -65.038853, 18.35017 ], [ -65.038901, 18.350245 ], [ -65.038885, 18.350299 ], [ -65.039021, 18.3504 ], [ -65.039037, 18.350483 ], [ -65.039046, 18.350544 ], [ -65.039086, 18.350593 ], [ -65.039154, 18.350666 ], [ -65.039174, 18.350735 ], [ -65.039226, 18.350827 ], [ -65.039318, 18.350882 ], [ -65.039425, 18.35096 ], [ -65.039562, 18.35096 ], [ -65.039634, 18.350927 ], [ -65.039773, 18.350824 ], [ -65.039941, 18.350814 ], [ -65.039998, 18.350872 ], [ -65.039987, 18.350895 ], [ -65.040039, 18.350953 ], [ -65.040059, 18.350967 ], [ -65.040009, 18.350989 ], [ -65.039971, 18.351024 ], [ -65.039937, 18.351046 ], [ -65.039915, 18.351125 ], [ -65.040054, 18.351158 ], [ -65.040054, 18.351223 ], [ -65.040066, 18.351249 ], [ -65.040107, 18.351278 ], [ -65.040126, 18.35135 ], [ -65.040133, 18.351428 ], [ -65.040175, 18.351437 ], [ -65.040155, 18.351513 ], [ -65.040256, 18.351518 ], [ -65.040323, 18.35147 ], [ -65.040418, 18.351479 ], [ -65.040538, 18.351407 ], [ -65.040687, 18.351388 ], [ -65.040835, 18.351374 ], [ -65.040883, 18.351422 ], [ -65.040888, 18.35147 ], [ -65.040821, 18.351513 ], [ -65.040754, 18.351537 ], [ -65.040601, 18.351628 ], [ -65.0406, 18.351628 ], [ -65.0405, 18.35169 ], [ -65.04039, 18.351733 ], [ -65.040272, 18.351796 ], [ -65.04026, 18.351872 ], [ -65.040232, 18.35191 ], [ -65.040193, 18.351939 ], [ -65.040237, 18.351992 ], [ -65.040236, 18.352097 ], [ -65.040312, 18.35227 ], [ -65.040516, 18.352453 ], [ -65.040782, 18.352651 ], [ -65.04102, 18.352691 ], [ -65.041075, 18.352603 ], [ -65.041129, 18.352521 ], [ -65.041231, 18.352555 ], [ -65.041306, 18.352582 ], [ -65.041436, 18.352596 ], [ -65.041476, 18.352566 ], [ -65.041538, 18.352521 ], [ -65.041654, 18.352528 ], [ -65.041702, 18.352494 ], [ -65.041715, 18.352453 ], [ -65.041804, 18.352446 ], [ -65.041811, 18.352357 ], [ -65.041811, 18.352276 ], [ -65.041852, 18.352282 ], [ -65.041879, 18.352323 ], [ -65.04192, 18.352405 ], [ -65.041974, 18.352487 ], [ -65.04474, 18.355684 ], [ -65.04478, 18.355744 ], [ -65.044751, 18.35586 ], [ -65.044751, 18.355942 ], [ -65.044762, 18.35597 ], [ -65.044751, 18.356042 ], [ -65.044768, 18.356091 ], [ -65.044866, 18.35625 ], [ -65.044947, 18.356339 ], [ -65.044993, 18.356366 ], [ -65.045068, 18.356399 ], [ -65.045108, 18.356405 ], [ -65.045201, 18.356399 ], [ -65.045235, 18.356416 ], [ -65.045282, 18.356427 ], [ -65.045316, 18.356421 ], [ -65.045374, 18.356377 ], [ -65.045426, 18.356355 ], [ -65.045443, 18.356342 ], [ -65.045489, 18.356311 ], [ -65.045547, 18.356301 ], [ -65.045604, 18.356306 ], [ -65.045628, 18.356328 ], [ -65.045697, 18.356344 ], [ -65.045749, 18.356366 ], [ -65.0458, 18.356405 ], [ -65.045893, 18.356455 ], [ -65.045922, 18.356487 ], [ -65.046048, 18.356565 ], [ -65.046071, 18.356565 ], [ -65.046135, 18.35652 ], [ -65.046164, 18.356531 ], [ -65.052087, 18.359037 ], [ -65.052156, 18.359086 ], [ -65.052179, 18.359126 ], [ -65.052133, 18.359318 ], [ -65.052144, 18.359423 ], [ -65.052265, 18.359555 ], [ -65.052267, 18.359557 ], [ -65.052467, 18.359709 ], [ -65.05249, 18.359698 ], [ -65.052537, 18.359638 ], [ -65.05256, 18.359638 ], [ -65.052577, 18.359626 ], [ -65.052606, 18.359643 ], [ -65.052663, 18.359753 ], [ -65.052716, 18.35978 ], [ -65.052756, 18.359786 ], [ -65.052871, 18.359726 ], [ -65.052937, 18.359731 ], [ -65.052952, 18.359742 ], [ -65.052992, 18.359803 ], [ -65.053009, 18.359875 ], [ -65.053001, 18.359976 ], [ -65.052992, 18.360099 ], [ -65.052969, 18.360161 ], [ -65.052923, 18.360259 ], [ -65.052929, 18.360293 ], [ -65.052906, 18.360337 ], [ -65.052963, 18.360398 ], [ -65.053062, 18.360463 ], [ -65.053206, 18.360513 ], [ -65.053309, 18.36048 ], [ -65.053361, 18.360485 ], [ -65.053368, 18.360491 ], [ -65.053379, 18.360502 ], [ -65.053436, 18.360585 ], [ -65.053488, 18.360678 ], [ -65.053546, 18.360954 ], [ -65.053575, 18.360992 ], [ -65.053598, 18.361003 ], [ -65.053626, 18.361036 ], [ -65.053736, 18.361037 ], [ -65.053765, 18.36103 ], [ -65.053874, 18.360954 ], [ -65.053984, 18.360943 ], [ -65.054059, 18.36097 ], [ -65.054088, 18.361003 ], [ -65.054117, 18.361059 ], [ -65.054117, 18.36108 ], [ -65.054134, 18.361114 ], [ -65.05414, 18.36118 ], [ -65.054157, 18.361218 ], [ -65.054226, 18.361306 ], [ -65.054249, 18.361311 ], [ -65.054278, 18.361345 ], [ -65.05444, 18.361433 ], [ -65.055317, 18.361908 ], [ -65.055322, 18.361911 ], [ -65.055466, 18.361895 ], [ -65.05553, 18.361994 ], [ -65.055558, 18.362077 ], [ -65.055582, 18.362098 ], [ -65.055674, 18.362121 ], [ -65.055795, 18.362225 ], [ -65.055853, 18.36234 ], [ -65.055864, 18.362385 ], [ -65.05591, 18.362418 ], [ -65.055928, 18.362446 ], [ -65.055951, 18.362451 ], [ -65.056043, 18.362512 ], [ -65.056153, 18.362678 ], [ -65.056303, 18.362777 ], [ -65.056343, 18.362804 ], [ -65.056372, 18.362936 ], [ -65.056424, 18.36298 ], [ -65.056539, 18.362986 ], [ -65.056586, 18.362974 ], [ -65.056626, 18.362953 ], [ -65.056666, 18.362957 ], [ -65.056712, 18.362991 ], [ -65.056741, 18.362996 ], [ -65.056856, 18.363085 ], [ -65.056902, 18.363151 ], [ -65.056902, 18.363217 ], [ -65.056856, 18.363228 ], [ -65.056799, 18.363212 ], [ -65.056764, 18.363267 ], [ -65.056759, 18.363299 ], [ -65.056712, 18.363311 ], [ -65.05662, 18.363304 ], [ -65.056581, 18.363332 ], [ -65.056574, 18.363349 ], [ -65.056545, 18.363371 ], [ -65.056533, 18.363404 ], [ -65.056505, 18.363431 ], [ -65.056441, 18.363537 ], [ -65.056436, 18.363551 ], [ -65.056384, 18.363734 ], [ -65.05636, 18.363757 ], [ -65.05632, 18.363845 ], [ -65.056262, 18.363911 ], [ -65.05617, 18.363954 ], [ -65.056166, 18.363955 ], [ -65.056135, 18.363966 ], [ -65.056101, 18.363961 ], [ -65.055997, 18.363971 ], [ -65.05576, 18.363883 ], [ -65.05568, 18.363894 ], [ -65.055662, 18.363917 ], [ -65.055668, 18.363958 ], [ -65.05568, 18.363972 ], [ -65.055651, 18.364005 ], [ -65.055628, 18.364016 ], [ -65.055582, 18.36402 ], [ -65.055478, 18.36401 ], [ -65.055386, 18.363977 ], [ -65.055397, 18.363922 ], [ -65.055466, 18.363827 ], [ -65.055322, 18.363779 ], [ -65.055278, 18.363779 ], [ -65.055259, 18.363784 ], [ -65.055207, 18.363833 ], [ -65.05519, 18.363872 ], [ -65.055132, 18.363917 ], [ -65.05493, 18.363955 ], [ -65.054763, 18.364005 ], [ -65.054619, 18.364027 ], [ -65.054388, 18.364005 ], [ -65.054359, 18.363994 ], [ -65.054226, 18.363999 ], [ -65.054169, 18.363972 ], [ -65.054082, 18.363889 ], [ -65.054071, 18.363862 ], [ -65.054071, 18.363806 ], [ -65.054063, 18.363785 ], [ -65.05403, 18.363696 ], [ -65.053978, 18.363636 ], [ -65.053984, 18.363607 ], [ -65.053938, 18.363564 ], [ -65.05384, 18.363338 ], [ -65.053765, 18.363228 ], [ -65.053754, 18.363184 ], [ -65.053719, 18.363162 ], [ -65.053656, 18.362964 ], [ -65.053632, 18.36293 ], [ -65.053615, 18.362875 ], [ -65.053563, 18.362809 ], [ -65.053407, 18.36276 ], [ -65.053269, 18.36277 ], [ -65.053182, 18.362787 ], [ -65.052946, 18.362793 ], [ -65.052911, 18.362821 ], [ -65.052911, 18.362859 ], [ -65.05294, 18.362886 ], [ -65.052986, 18.362986 ], [ -65.052987, 18.363024 ], [ -65.052946, 18.363052 ], [ -65.0529, 18.363046 ], [ -65.052813, 18.362964 ], [ -65.052756, 18.362936 ], [ -65.052652, 18.362942 ], [ -65.052554, 18.362936 ], [ -65.05245, 18.362887 ], [ -65.052381, 18.362843 ], [ -65.052323, 18.362815 ], [ -65.05226, 18.362815 ], [ -65.052225, 18.362859 ], [ -65.052191, 18.362886 ], [ -65.052156, 18.362936 ], [ -65.05207, 18.362941 ], [ -65.052046, 18.36293 ], [ -65.052006, 18.362881 ], [ -65.051989, 18.362832 ], [ -65.051926, 18.362732 ], [ -65.051608, 18.362617 ], [ -65.051579, 18.362617 ], [ -65.051556, 18.362639 ], [ -65.05155, 18.362672 ], [ -65.051516, 18.3627 ], [ -65.051498, 18.362744 ], [ -65.051464, 18.362914 ], [ -65.051493, 18.363002 ], [ -65.051516, 18.363019 ], [ -65.051475, 18.363151 ], [ -65.051481, 18.363206 ], [ -65.05151, 18.363289 ], [ -65.051527, 18.363311 ], [ -65.051533, 18.363388 ], [ -65.051562, 18.363438 ], [ -65.051608, 18.363476 ], [ -65.051631, 18.363481 ], [ -65.051671, 18.363508 ], [ -65.051666, 18.363537 ], [ -65.051585, 18.363745 ], [ -65.051568, 18.363812 ], [ -65.051562, 18.363889 ], [ -65.051545, 18.363966 ], [ -65.051522, 18.364016 ], [ -65.051522, 18.364043 ], [ -65.051487, 18.364093 ], [ -65.051452, 18.364126 ], [ -65.051372, 18.364148 ], [ -65.051204, 18.36412 ], [ -65.051181, 18.364104 ], [ -65.051095, 18.364082 ], [ -65.051049, 18.36406 ], [ -65.050702, 18.363834 ], [ -65.050622, 18.363735 ], [ -65.050558, 18.363619 ], [ -65.050558, 18.363581 ], [ -65.050581, 18.363526 ], [ -65.050588, 18.363388 ], [ -65.050564, 18.363327 ], [ -65.050506, 18.363278 ], [ -65.050414, 18.363217 ], [ -65.050316, 18.363184 ], [ -65.050022, 18.363102 ], [ -65.049988, 18.363106 ], [ -65.049722, 18.36303 ], [ -65.04948, 18.362884 ], [ -65.047121, 18.361461 ], [ -65.047098, 18.361433 ], [ -65.047104, 18.361405 ], [ -65.047098, 18.361367 ], [ -65.047057, 18.361207 ], [ -65.047023, 18.361129 ], [ -65.046971, 18.361069 ], [ -65.046925, 18.361047 ], [ -65.046885, 18.361053 ], [ -65.046792, 18.361025 ], [ -65.046585, 18.361047 ], [ -65.04632, 18.36119 ], [ -65.04625, 18.361202 ], [ -65.046216, 18.361196 ], [ -65.033643, 18.36005 ], [ -65.033505, 18.360027 ], [ -65.033354, 18.360049 ], [ -65.03332, 18.360061 ], [ -65.033291, 18.360056 ], [ -65.033222, 18.360066 ], [ -65.033153, 18.360061 ], [ -65.033095, 18.360072 ], [ -65.03306, 18.360094 ], [ -65.032957, 18.360121 ], [ -65.03287, 18.360105 ], [ -65.032824, 18.360017 ], [ -65.03279, 18.359989 ], [ -65.03276, 18.359978 ], [ -65.032668, 18.359989 ], [ -65.032565, 18.360071 ], [ -65.032518, 18.360121 ], [ -65.03242, 18.360177 ], [ -65.032397, 18.360176 ], [ -65.032282, 18.360187 ], [ -65.032242, 18.360209 ], [ -65.032213, 18.360265 ], [ -65.032172, 18.360308 ], [ -65.032172, 18.360364 ], [ -65.032086, 18.360375 ], [ -65.032016, 18.360325 ], [ -65.031971, 18.360314 ], [ -65.03193, 18.360341 ], [ -65.031878, 18.360369 ], [ -65.031843, 18.360396 ], [ -65.031803, 18.360402 ], [ -65.031757, 18.36039 ], [ -65.031676, 18.360347 ], [ -65.031578, 18.360353 ], [ -65.031457, 18.360325 ], [ -65.031434, 18.360336 ], [ -65.031422, 18.360364 ], [ -65.031388, 18.360385 ], [ -65.031359, 18.36038 ], [ -65.031319, 18.360385 ], [ -65.031203, 18.360347 ], [ -65.03118, 18.36032 ], [ -65.031134, 18.360292 ], [ -65.031082, 18.360242 ], [ -65.031013, 18.360369 ], [ -65.030921, 18.360441 ], [ -65.030863, 18.360456 ], [ -65.030788, 18.360435 ], [ -65.030771, 18.360484 ], [ -65.03073, 18.360506 ], [ -65.030598, 18.360501 ], [ -65.030529, 18.360512 ], [ -65.030488, 18.360495 ], [ -65.030459, 18.360506 ], [ -65.030436, 18.360485 ], [ -65.030407, 18.360435 ], [ -65.030407, 18.360407 ], [ -65.03035, 18.360364 ], [ -65.030342, 18.36036 ], [ -65.030223, 18.360308 ], [ -65.030183, 18.360231 ], [ -65.030142, 18.360209 ], [ -65.030125, 18.360176 ], [ -65.030039, 18.360143 ], [ -65.029946, 18.360121 ], [ -65.029865, 18.36006 ], [ -65.029589, 18.359906 ], [ -65.029554, 18.359879 ], [ -65.029496, 18.359966 ], [ -65.029369, 18.359912 ], [ -65.029341, 18.35995 ], [ -65.029329, 18.360022 ], [ -65.029346, 18.36011 ], [ -65.029346, 18.360187 ], [ -65.029364, 18.360209 ], [ -65.029346, 18.360248 ], [ -65.029248, 18.36027 ], [ -65.029208, 18.360247 ], [ -65.02915, 18.360231 ], [ -65.029052, 18.360176 ], [ -65.028971, 18.360143 ], [ -65.028897, 18.360082 ], [ -65.02885, 18.360077 ], [ -65.028822, 18.360043 ], [ -65.028793, 18.360044 ], [ -65.028735, 18.360016 ], [ -65.028637, 18.360039 ], [ -65.028602, 18.36006 ], [ -65.02851, 18.360087 ], [ -65.028475, 18.360076 ], [ -65.028447, 18.36005 ], [ -65.028389, 18.360016 ], [ -65.028233, 18.359983 ], [ -65.028181, 18.359978 ], [ -65.028112, 18.36 ], [ -65.028037, 18.360011 ], [ -65.027922, 18.360054 ], [ -65.027887, 18.360077 ], [ -65.02787, 18.360104 ], [ -65.027858, 18.360165 ], [ -65.027853, 18.360247 ], [ -65.027899, 18.360347 ], [ -65.027916, 18.360362 ], [ -65.027985, 18.36055 ], [ -65.027991, 18.360611 ], [ -65.027962, 18.360742 ], [ -65.027916, 18.360842 ], [ -65.027801, 18.360881 ], [ -65.027674, 18.360897 ], [ -65.027599, 18.360892 ], [ -65.02757, 18.360864 ], [ -65.027535, 18.360892 ], [ -65.027541, 18.360958 ], [ -65.027581, 18.360996 ], [ -65.027633, 18.361085 ], [ -65.027633, 18.361134 ], [ -65.027616, 18.361173 ], [ -65.027581, 18.361206 ], [ -65.027553, 18.361211 ], [ -65.027489, 18.361195 ], [ -65.027454, 18.361194 ], [ -65.027339, 18.361156 ], [ -65.027322, 18.361173 ], [ -65.027333, 18.3612 ], [ -65.027322, 18.361227 ], [ -65.027338, 18.361274 ], [ -65.027333, 18.361294 ], [ -65.027362, 18.361304 ], [ -65.027362, 18.361376 ], [ -65.027334, 18.361431 ], [ -65.027258, 18.361453 ], [ -65.027155, 18.361497 ], [ -65.027316, 18.361575 ], [ -65.027356, 18.361662 ], [ -65.027356, 18.361783 ], [ -65.027385, 18.361867 ], [ -65.027379, 18.361943 ], [ -65.027378, 18.361943 ], [ -65.027333, 18.361982 ], [ -65.027195, 18.362004 ], [ -65.027022, 18.361977 ], [ -65.026901, 18.361971 ], [ -65.026843, 18.361982 ], [ -65.026802, 18.361977 ], [ -65.026681, 18.362026 ], [ -65.026537, 18.362047 ], [ -65.026243, 18.36202 ], [ -65.026116, 18.361993 ], [ -65.026059, 18.362025 ], [ -65.025955, 18.362109 ], [ -65.025903, 18.362108 ], [ -65.02577, 18.362054 ], [ -65.02573, 18.362026 ], [ -65.025586, 18.361943 ], [ -65.025326, 18.361718 ], [ -65.02528, 18.361657 ], [ -65.025268, 18.361618 ], [ -65.025263, 18.361514 ], [ -65.02528, 18.36142 ], [ -65.025257, 18.361398 ], [ -65.025222, 18.361393 ], [ -65.025148, 18.361436 ], [ -65.025055, 18.361431 ], [ -65.025044, 18.361448 ], [ -65.025021, 18.361431 ], [ -65.024911, 18.361409 ], [ -65.024796, 18.361431 ], [ -65.024588, 18.361525 ], [ -65.024432, 18.361563 ], [ -65.024311, 18.361574 ], [ -65.024207, 18.361602 ], [ -65.02411, 18.361639 ], [ -65.024069, 18.361673 ], [ -65.024052, 18.361705 ], [ -65.024115, 18.361811 ], [ -65.024132, 18.361882 ], [ -65.024126, 18.36191 ], [ -65.024098, 18.361927 ], [ -65.024028, 18.361943 ], [ -65.023954, 18.361992 ], [ -65.023936, 18.362014 ], [ -65.023936, 18.362042 ], [ -65.023908, 18.36207 ], [ -65.023896, 18.362108 ], [ -65.02385, 18.362168 ], [ -65.023757, 18.362169 ], [ -65.023677, 18.36213 ], [ -65.023642, 18.362086 ], [ -65.023625, 18.362036 ], [ -65.023619, 18.361982 ], [ -65.023659, 18.361882 ], [ -65.023786, 18.361816 ], [ -65.023833, 18.361761 ], [ -65.023843, 18.36174 ], [ -65.023839, 18.361722 ], [ -65.023844, 18.361701 ], [ -65.023827, 18.361684 ], [ -65.023746, 18.361651 ], [ -65.023584, 18.361717 ], [ -65.023556, 18.361722 ], [ -65.023503, 18.361717 ], [ -65.023469, 18.3617 ], [ -65.0234, 18.361618 ], [ -65.023313, 18.361558 ], [ -65.023268, 18.361543 ], [ -65.023244, 18.361536 ], [ -65.023123, 18.36153 ], [ -65.023031, 18.36153 ], [ -65.022967, 18.361546 ], [ -65.022898, 18.361541 ], [ -65.022864, 18.361518 ], [ -65.022806, 18.361447 ], [ -65.022766, 18.361425 ], [ -65.022754, 18.361403 ], [ -65.02269, 18.361387 ], [ -65.022621, 18.361392 ], [ -65.022523, 18.361409 ], [ -65.022373, 18.361391 ], [ -65.022327, 18.361397 ], [ -65.022119, 18.36138 ], [ -65.022068, 18.361387 ], [ -65.022004, 18.361365 ], [ -65.021756, 18.361332 ], [ -65.02167, 18.361343 ], [ -65.021589, 18.361369 ], [ -65.021543, 18.36137 ], [ -65.021479, 18.361359 ], [ -65.021445, 18.361342 ], [ -65.02141, 18.361342 ], [ -65.021347, 18.361309 ], [ -65.021324, 18.361309 ], [ -65.021232, 18.36127 ], [ -65.021168, 18.361194 ], [ -65.021145, 18.361182 ], [ -65.021001, 18.361194 ], [ -65.020937, 18.361188 ], [ -65.020874, 18.361276 ], [ -65.020874, 18.361309 ], [ -65.020897, 18.361331 ], [ -65.020908, 18.361358 ], [ -65.020955, 18.361392 ], [ -65.020952, 18.36141 ], [ -65.020966, 18.361441 ], [ -65.020914, 18.361475 ], [ -65.02088, 18.361469 ], [ -65.020804, 18.361557 ], [ -65.020776, 18.361574 ], [ -65.020735, 18.36159 ], [ -65.020703, 18.361585 ], [ -65.020684, 18.36159 ], [ -65.020643, 18.361562 ], [ -65.020597, 18.361446 ], [ -65.02058, 18.361425 ], [ -65.02047, 18.361391 ], [ -65.020349, 18.361364 ], [ -65.020182, 18.361358 ], [ -65.020147, 18.36137 ], [ -65.020072, 18.361425 ], [ -65.020026, 18.361414 ], [ -65.017967, 18.361111 ], [ -65.017909, 18.36111 ], [ -65.017442, 18.36127 ], [ -65.017367, 18.361303 ], [ -65.01716, 18.361358 ], [ -65.017085, 18.361391 ], [ -65.016773, 18.361468 ], [ -65.016658, 18.361479 ], [ -65.016531, 18.361479 ], [ -65.016427, 18.361474 ], [ -65.016375, 18.361484 ], [ -65.016208, 18.361474 ], [ -65.016168, 18.361479 ], [ -65.016164, 18.361478 ], [ -65.016069, 18.361452 ], [ -65.016029, 18.361456 ], [ -65.015937, 18.361512 ], [ -65.015868, 18.36149 ], [ -65.015798, 18.361413 ], [ -65.015764, 18.361407 ], [ -65.015718, 18.361435 ], [ -65.01562, 18.361699 ], [ -65.015597, 18.361787 ], [ -65.015568, 18.361815 ], [ -65.015548, 18.361811 ], [ -65.01551, 18.361804 ], [ -65.015475, 18.361793 ], [ -65.01547, 18.361771 ], [ -65.015447, 18.361744 ], [ -65.015401, 18.361705 ], [ -65.015314, 18.361694 ], [ -65.015227, 18.361716 ], [ -65.015199, 18.361732 ], [ -65.015158, 18.361721 ], [ -65.015112, 18.361672 ], [ -65.015089, 18.3616 ], [ -65.014962, 18.361529 ], [ -65.014847, 18.361523 ], [ -65.014743, 18.361556 ], [ -65.014708, 18.361589 ], [ -65.014628, 18.361633 ], [ -65.014576, 18.36165 ], [ -65.014501, 18.36166 ], [ -65.014403, 18.361644 ], [ -65.014334, 18.361666 ], [ -65.014108, 18.361776 ], [ -65.014058, 18.361787 ], [ -65.014039, 18.361787 ], [ -65.013987, 18.361748 ], [ -65.013918, 18.361737 ], [ -65.013855, 18.361776 ], [ -65.013797, 18.361831 ], [ -65.010959, 18.362816 ], [ -65.006996, 18.367837 ], [ -65.006828, 18.368031 ], [ -65.006776, 18.368069 ], [ -65.006736, 18.368124 ], [ -65.006702, 18.368118 ], [ -65.006667, 18.368124 ], [ -65.006626, 18.368113 ], [ -65.006534, 18.368036 ], [ -65.006471, 18.368003 ], [ -65.006442, 18.36797 ], [ -65.006436, 18.367876 ], [ -65.006442, 18.367854 ], [ -65.006396, 18.367794 ], [ -65.006327, 18.367821 ], [ -65.006304, 18.36787 ], [ -65.00624, 18.367937 ], [ -65.0062, 18.367992 ], [ -65.006177, 18.368069 ], [ -65.006154, 18.368112 ], [ -65.006153, 18.368157 ], [ -65.006131, 18.368206 ], [ -65.006096, 18.368234 ], [ -65.006027, 18.368228 ], [ -65.000571, 18.369572 ], [ -64.999654, 18.369799 ], [ -64.990785, 18.371987 ], [ -64.990739, 18.371995 ], [ -64.990721, 18.371991 ], [ -64.990251, 18.372026 ], [ -64.983978, 18.372489 ], [ -64.982265, 18.372616 ], [ -64.978152, 18.3813 ], [ -64.976073, 18.385691 ], [ -64.976067, 18.385912 ], [ -64.975998, 18.386135 ], [ -64.975091, 18.394957 ], [ -64.975085, 18.395007 ], [ -64.975085, 18.395078 ], [ -64.975084, 18.39508 ], [ -64.974919, 18.399307 ], [ -64.974913, 18.39939 ], [ -64.974838, 18.399434 ], [ -64.974636, 18.399396 ], [ -64.974607, 18.399401 ], [ -64.974596, 18.39944 ], [ -64.974607, 18.399467 ], [ -64.974751, 18.399665 ], [ -64.97478, 18.399687 ], [ -64.974815, 18.399798 ], [ -64.974775, 18.399908 ], [ -64.974798, 18.4001 ], [ -64.974896, 18.400255 ], [ -64.974925, 18.400315 ], [ -64.974971, 18.400381 ], [ -64.975005, 18.400441 ], [ -64.975034, 18.400481 ], [ -64.975034, 18.400525 ], [ -64.975017, 18.400567 ], [ -64.974982, 18.400596 ], [ -64.974959, 18.400646 ], [ -64.974959, 18.400673 ], [ -64.974977, 18.400701 ], [ -64.975017, 18.400723 ], [ -64.975029, 18.400739 ], [ -64.974982, 18.400832 ], [ -64.975034, 18.400901 ], [ -64.975075, 18.400938 ], [ -64.975121, 18.400965 ], [ -64.975127, 18.401026 ], [ -64.97508, 18.40107 ], [ -64.975034, 18.4011 ], [ -64.975011, 18.401158 ], [ -64.975046, 18.401273 ], [ -64.975121, 18.401384 ], [ -64.975265, 18.401543 ], [ -64.975415, 18.401764 ], [ -64.975432, 18.401805 ], [ -64.975418, 18.401844 ], [ -64.975404, 18.401857 ], [ -64.975346, 18.401824 ], [ -64.975323, 18.401786 ], [ -64.975213, 18.401708 ], [ -64.975114, 18.401653 ], [ -64.975034, 18.401576 ], [ -64.97489, 18.401455 ], [ -64.974775, 18.401334 ], [ -64.974694, 18.401296 ], [ -64.974515, 18.401323 ], [ -64.974446, 18.401345 ], [ -64.974383, 18.401329 ], [ -64.974233, 18.401169 ], [ -64.974146, 18.401097 ], [ -64.974088, 18.401086 ], [ -64.974042, 18.401114 ], [ -64.974031, 18.401141 ], [ -64.974059, 18.401197 ], [ -64.974106, 18.401252 ], [ -64.974135, 18.401296 ], [ -64.974129, 18.401329 ], [ -64.974083, 18.401334 ], [ -64.973973, 18.401246 ], [ -64.973794, 18.401114 ], [ -64.973494, 18.400839 ], [ -64.973405, 18.400748 ], [ -64.973332, 18.400673 ], [ -64.973119, 18.400503 ], [ -64.973073, 18.400492 ], [ -64.973032, 18.4005 ], [ -64.973027, 18.400519 ], [ -64.973032, 18.400547 ], [ -64.97305, 18.400569 ], [ -64.973055, 18.400595 ], [ -64.97305, 18.400613 ], [ -64.973032, 18.400624 ], [ -64.972998, 18.400613 ], [ -64.972951, 18.400577 ], [ -64.972796, 18.400448 ], [ -64.972727, 18.400354 ], [ -64.972611, 18.400228 ], [ -64.972571, 18.400156 ], [ -64.972565, 18.400079 ], [ -64.972594, 18.400002 ], [ -64.972611, 18.399969 ], [ -64.972588, 18.39993 ], [ -64.972536, 18.399925 ], [ -64.972525, 18.399897 ], [ -64.972519, 18.399864 ], [ -64.972519, 18.39983 ], [ -64.972455, 18.399782 ], [ -64.972444, 18.399727 ], [ -64.972502, 18.399671 ], [ -64.972571, 18.39966 ], [ -64.972669, 18.399633 ], [ -64.972686, 18.399605 ], [ -64.972675, 18.399545 ], [ -64.972611, 18.399446 ], [ -64.972403, 18.399235 ], [ -64.972334, 18.399175 ], [ -64.972225, 18.399044 ], [ -64.972219, 18.398986 ], [ -64.97219, 18.398944 ], [ -64.972155, 18.398917 ], [ -64.972103, 18.398895 ], [ -64.972069, 18.398851 ], [ -64.972034, 18.398779 ], [ -64.971965, 18.39857 ], [ -64.971947, 18.398499 ], [ -64.971913, 18.398421 ], [ -64.971878, 18.398394 ], [ -64.971832, 18.398394 ], [ -64.971803, 18.398421 ], [ -64.971751, 18.398482 ], [ -64.971694, 18.398532 ], [ -64.971625, 18.398565 ], [ -64.971532, 18.398587 ], [ -64.971457, 18.398576 ], [ -64.971394, 18.398526 ], [ -64.971365, 18.39846 ], [ -64.971394, 18.398366 ], [ -64.971446, 18.398289 ], [ -64.97159, 18.398124 ], [ -64.971653, 18.398041 ], [ -64.971659, 18.397997 ], [ -64.971624, 18.397958 ], [ -64.971596, 18.397937 ], [ -64.971572, 18.397931 ], [ -64.971549, 18.397909 ], [ -64.971521, 18.397849 ], [ -64.971498, 18.397677 ], [ -64.971474, 18.397595 ], [ -64.971474, 18.397507 ], [ -64.971434, 18.397403 ], [ -64.971394, 18.39732 ], [ -64.971336, 18.397249 ], [ -64.971128, 18.397064 ], [ -64.971041, 18.396972 ], [ -64.970967, 18.396918 ], [ -64.970886, 18.396907 ], [ -64.970776, 18.396863 ], [ -64.970706, 18.396822 ], [ -64.97066, 18.396784 ], [ -64.970643, 18.396708 ], [ -64.970643, 18.396663 ], [ -64.970528, 18.396654 ], [ -64.970505, 18.396643 ], [ -64.970482, 18.396593 ], [ -64.97043, 18.396577 ], [ -64.970389, 18.396597 ], [ -64.970326, 18.396576 ], [ -64.970297, 18.396555 ], [ -64.970263, 18.396547 ], [ -64.97024, 18.39656 ], [ -64.970193, 18.396552 ], [ -64.970159, 18.396555 ], [ -64.970118, 18.396505 ], [ -64.97002, 18.396373 ], [ -64.96998, 18.396302 ], [ -64.969968, 18.396202 ], [ -64.969986, 18.396131 ], [ -64.969985, 18.39608 ], [ -64.969945, 18.396058 ], [ -64.96987, 18.396037 ], [ -64.969708, 18.39592 ], [ -64.969656, 18.395826 ], [ -64.969622, 18.395727 ], [ -64.969507, 18.395558 ], [ -64.969432, 18.395503 ], [ -64.969288, 18.395419 ], [ -64.969212, 18.39537 ], [ -64.969149, 18.395338 ], [ -64.969034, 18.39531 ], [ -64.968913, 18.395261 ], [ -64.968832, 18.395211 ], [ -64.968769, 18.395151 ], [ -64.968722, 18.395072 ], [ -64.968676, 18.395013 ], [ -64.968636, 18.39499 ], [ -64.96859, 18.39498 ], [ -64.968561, 18.394947 ], [ -64.968543, 18.394903 ], [ -64.968538, 18.394815 ], [ -64.968567, 18.394743 ], [ -64.968572, 18.394647 ], [ -64.968538, 18.394551 ], [ -64.968491, 18.394501 ], [ -64.968451, 18.394391 ], [ -64.968382, 18.39433 ], [ -64.96833, 18.394297 ], [ -64.96829, 18.394204 ], [ -64.968289, 18.394066 ], [ -64.968278, 18.394038 ], [ -64.968186, 18.394005 ], [ -64.968145, 18.393945 ], [ -64.968128, 18.393884 ], [ -64.968098, 18.393824 ], [ -64.96807, 18.393824 ], [ -64.968047, 18.393835 ], [ -64.968018, 18.393873 ], [ -64.967989, 18.393923 ], [ -64.967949, 18.393953 ], [ -64.967856, 18.39395 ], [ -64.967811, 18.393923 ], [ -64.967788, 18.39389 ], [ -64.967776, 18.393846 ], [ -64.967776, 18.393818 ], [ -64.967753, 18.393788 ], [ -64.967736, 18.39378 ], [ -64.967701, 18.393773 ], [ -64.967632, 18.393769 ], [ -64.967597, 18.393725 ], [ -64.967591, 18.393664 ], [ -64.967573, 18.393607 ], [ -64.967557, 18.393576 ], [ -64.967539, 18.393562 ], [ -64.967522, 18.393598 ], [ -64.967499, 18.393624 ], [ -64.967459, 18.393637 ], [ -64.967413, 18.393631 ], [ -64.96739, 18.393615 ], [ -64.967378, 18.393576 ], [ -64.967366, 18.393488 ], [ -64.96736, 18.393388 ], [ -64.967377, 18.393254 ], [ -64.967407, 18.393136 ], [ -64.967447, 18.392947 ], [ -64.967574, 18.392756 ], [ -64.967482, 18.39271 ], [ -64.967359, 18.392953 ], [ -64.967276, 18.393054 ], [ -64.967143, 18.393099 ], [ -64.967024, 18.393187 ], [ -64.966979, 18.393076 ], [ -64.967132, 18.392879 ], [ -64.967231, 18.392643 ], [ -64.967311, 18.392625 ], [ -64.967358, 18.392648 ], [ -64.967339, 18.384405 ], [ -64.9674, 18.384043 ], [ -64.967674, 18.383537 ], [ -64.967705, 18.383266 ], [ -64.967314, 18.382713 ], [ -64.967499, 18.382408 ], [ -64.967825, 18.382085 ], [ -64.968208, 18.38163 ], [ -64.968071, 18.381098 ], [ -64.9675, 18.380769 ], [ -64.966454, 18.379938 ], [ -64.966309, 18.379666 ], [ -64.966268, 18.379251 ], [ -64.966392, 18.378881 ], [ -64.966469, 18.378653 ], [ -64.966228, 18.378413 ], [ -64.965874, 18.378271 ], [ -64.965631, 18.377879 ], [ -64.96555, 18.377156 ], [ -64.965599, 18.376743 ], [ -64.961777, 18.373031 ], [ -64.961783, 18.373011 ], [ -64.961752, 18.373008 ], [ -64.960106, 18.371409 ], [ -64.95851, 18.372708 ], [ -64.958254, 18.372917 ], [ -64.957657, 18.373404 ], [ -64.952945, 18.376993 ], [ -64.952656, 18.377165 ], [ -64.948935, 18.379162 ], [ -64.942458, 18.382437 ], [ -64.940924, 18.383214 ], [ -64.940894, 18.383136 ], [ -64.940846, 18.383099 ], [ -64.940825, 18.383049 ], [ -64.94082, 18.383005 ], [ -64.940825, 18.382977 ], [ -64.940859, 18.382922 ], [ -64.940947, 18.38284 ], [ -64.940963, 18.382806 ], [ -64.940957, 18.382729 ], [ -64.94094, 18.382691 ], [ -64.940918, 18.382675 ], [ -64.940888, 18.382673 ], [ -64.94086, 18.382664 ], [ -64.940825, 18.382642 ], [ -64.940785, 18.382592 ], [ -64.940721, 18.382461 ], [ -64.940686, 18.382416 ], [ -64.940583, 18.382338 ], [ -64.940381, 18.382299 ], [ -64.940306, 18.382277 ], [ -64.940225, 18.382125 ], [ -64.940222, 18.382119 ], [ -64.940202, 18.382075 ], [ -64.940128, 18.382003 ], [ -64.940058, 18.381979 ], [ -64.940018, 18.381986 ], [ -64.939977, 18.381976 ], [ -64.939931, 18.381942 ], [ -64.939902, 18.381904 ], [ -64.93985, 18.381887 ], [ -64.939798, 18.381876 ], [ -64.939728, 18.381843 ], [ -64.939654, 18.38176 ], [ -64.939573, 18.381684 ], [ -64.939487, 18.381633 ], [ -64.939411, 18.381622 ], [ -64.939333, 18.381626 ], [ -64.939303, 18.381606 ], [ -64.939285, 18.381574 ], [ -64.939313, 18.381506 ], [ -64.939319, 18.381413 ], [ -64.939261, 18.381319 ], [ -64.939019, 18.381082 ], [ -64.938944, 18.381056 ], [ -64.938863, 18.381016 ], [ -64.9388, 18.380944 ], [ -64.93872, 18.380891 ], [ -64.938667, 18.380869 ], [ -64.938621, 18.380863 ], [ -64.938593, 18.380863 ], [ -64.938564, 18.380875 ], [ -64.938549, 18.380894 ], [ -64.93853, 18.380896 ], [ -64.938511, 18.380891 ], [ -64.938419, 18.380797 ], [ -64.938338, 18.380757 ], [ -64.938269, 18.380765 ], [ -64.938223, 18.380713 ], [ -64.938229, 18.380659 ], [ -64.938246, 18.380616 ], [ -64.938298, 18.380543 ], [ -64.938287, 18.380432 ], [ -64.9382, 18.380379 ], [ -64.938039, 18.380417 ], [ -64.938005, 18.3804 ], [ -64.93801, 18.380367 ], [ -64.937952, 18.380334 ], [ -64.937907, 18.380334 ], [ -64.937866, 18.380344 ], [ -64.937814, 18.380345 ], [ -64.937791, 18.380295 ], [ -64.937744, 18.38028 ], [ -64.937705, 18.38029 ], [ -64.937681, 18.380285 ], [ -64.937652, 18.380251 ], [ -64.937629, 18.380197 ], [ -64.937606, 18.379927 ], [ -64.937554, 18.379801 ], [ -64.937484, 18.379679 ], [ -64.937438, 18.379589 ], [ -64.937382, 18.379552 ], [ -64.937376, 18.37953 ], [ -64.937375, 18.37948 ], [ -64.937392, 18.379409 ], [ -64.937352, 18.379322 ], [ -64.937307, 18.379299 ], [ -64.937277, 18.37927 ], [ -64.937237, 18.379221 ], [ -64.937208, 18.379167 ], [ -64.937168, 18.37915 ], [ -64.937087, 18.379067 ], [ -64.937006, 18.378991 ], [ -64.936844, 18.378819 ], [ -64.936735, 18.378709 ], [ -64.93669, 18.378633 ], [ -64.936677, 18.37861 ], [ -64.936642, 18.378523 ], [ -64.936585, 18.378313 ], [ -64.93655, 18.378207 ], [ -64.936533, 18.378104 ], [ -64.936499, 18.378005 ], [ -64.936273, 18.37774 ], [ -64.936078, 18.377564 ], [ -64.935794, 18.377262 ], [ -64.935615, 18.377111 ], [ -64.935558, 18.377063 ], [ -64.93539, 18.376921 ], [ -64.935334, 18.376874 ], [ -64.935224, 18.376782 ], [ -64.934641, 18.376436 ], [ -64.934509, 18.376392 ], [ -64.934271, 18.376263 ], [ -64.934203, 18.376237 ], [ -64.934127, 18.376199 ], [ -64.934041, 18.376155 ], [ -64.933926, 18.376012 ], [ -64.933839, 18.375891 ], [ -64.933672, 18.375752 ], [ -64.933413, 18.375588 ], [ -64.93328, 18.37546 ], [ -64.933159, 18.375333 ], [ -64.932928, 18.375042 ], [ -64.932773, 18.374894 ], [ -64.932599, 18.374756 ], [ -64.932513, 18.374734 ], [ -64.93245, 18.374712 ], [ -64.932363, 18.374645 ], [ -64.932282, 18.374529 ], [ -64.932155, 18.374469 ], [ -64.932034, 18.374436 ], [ -64.931884, 18.374271 ], [ -64.93133, 18.373782 ], [ -64.930972, 18.373593 ], [ -64.930969, 18.373591 ], [ -64.930661, 18.373468 ], [ -64.93039, 18.373378 ], [ -64.930176, 18.373285 ], [ -64.930015, 18.373208 ], [ -64.929841, 18.373104 ], [ -64.929709, 18.373021 ], [ -64.929588, 18.372929 ], [ -64.92937, 18.372797 ], [ -64.929259, 18.372731 ], [ -64.929116, 18.372626 ], [ -64.928954, 18.372549 ], [ -64.928798, 18.372487 ], [ -64.92866, 18.372412 ], [ -64.928585, 18.372361 ], [ -64.928473, 18.372222 ], [ -64.928406, 18.372145 ], [ -64.928382, 18.372117 ], [ -64.928302, 18.372026 ], [ -64.928246, 18.371936 ], [ -64.928233, 18.371916 ], [ -64.928134, 18.371797 ], [ -64.928118, 18.371778 ], [ -64.927835, 18.371531 ], [ -64.927616, 18.371354 ], [ -64.927448, 18.371177 ], [ -64.927039, 18.37082 ], [ -64.926739, 18.370589 ], [ -64.926568, 18.37049 ], [ -64.926272, 18.370319 ], [ -64.926041, 18.370202 ], [ -64.925828, 18.370049 ], [ -64.92562, 18.369944 ] ] ], [ [ [ -64.953614, 18.377172 ], [ -64.953548, 18.377099 ], [ -64.953551, 18.37703 ], [ -64.953559, 18.376931 ], [ -64.953562, 18.376869 ], [ -64.953625, 18.376821 ], [ -64.953687, 18.376861 ], [ -64.953701, 18.376942 ], [ -64.953705, 18.377052 ], [ -64.953712, 18.37714 ], [ -64.953712, 18.377246 ], [ -64.953712, 18.377301 ], [ -64.953679, 18.37729 ], [ -64.953654, 18.377238 ], [ -64.953614, 18.377172 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "030", "TRACTCE10": "960400", "GEOID10": "78030960400", "NAME10": "9604", "NAMELSAD10": "Census Tract 9604", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 11702326, "AWATER10": 413658, "INTPTLAT10": "+18.3622700", "INTPTLON10": "-064.9097605" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.909684, 18.415091 ], [ -64.909599, 18.415017 ], [ -64.909536, 18.414972 ], [ -64.909502, 18.414943 ], [ -64.909456, 18.414977 ], [ -64.909354, 18.414994 ], [ -64.909295, 18.415005 ], [ -64.909188, 18.415 ], [ -64.909143, 18.415 ], [ -64.909131, 18.415074 ], [ -64.909131, 18.41512 ], [ -64.909154, 18.415188 ], [ -64.909162, 18.415266 ], [ -64.909177, 18.415319 ], [ -64.909103, 18.415382 ], [ -64.908909, 18.415268 ], [ -64.908926, 18.415177 ], [ -64.908995, 18.415023 ], [ -64.909, 18.414943 ], [ -64.908961, 18.414983 ], [ -64.908887, 18.41508 ], [ -64.908841, 18.414972 ], [ -64.908818, 18.414909 ], [ -64.908835, 18.414829 ], [ -64.908864, 18.414772 ], [ -64.908818, 18.414664 ], [ -64.90875, 18.414641 ], [ -64.90867, 18.414687 ], [ -64.90867, 18.414778 ], [ -64.90867, 18.414892 ], [ -64.908573, 18.414812 ], [ -64.908522, 18.414749 ], [ -64.908511, 18.414846 ], [ -64.908493, 18.414943 ], [ -64.908459, 18.415034 ], [ -64.90834, 18.414972 ], [ -64.908317, 18.414886 ], [ -64.908243, 18.41492 ], [ -64.90822, 18.414977 ], [ -64.908162, 18.414995 ], [ -64.908106, 18.415 ], [ -64.908106, 18.414943 ], [ -64.908112, 18.414886 ], [ -64.908066, 18.41488 ], [ -64.908067, 18.414956 ], [ -64.907969, 18.415011 ], [ -64.907947, 18.414983 ], [ -64.907924, 18.414897 ], [ -64.907873, 18.414806 ], [ -64.907867, 18.414772 ], [ -64.907867, 18.414658 ], [ -64.907833, 18.414544 ], [ -64.907884, 18.41443 ], [ -64.907947, 18.414356 ], [ -64.907941, 18.414248 ], [ -64.908021, 18.414185 ], [ -64.908135, 18.414123 ], [ -64.908169, 18.414043 ], [ -64.908152, 18.413986 ], [ -64.908237, 18.413718 ], [ -64.908619, 18.413849 ], [ -64.908875, 18.414128 ], [ -64.909285, 18.414219 ], [ -64.909604, 18.414401 ], [ -64.909616, 18.414596 ], [ -64.90961, 18.414704 ], [ -64.909673, 18.414755 ], [ -64.909678, 18.414852 ], [ -64.909712, 18.414943 ], [ -64.909712, 18.415034 ], [ -64.909684, 18.415091 ] ] ], [ [ [ -64.908346, 18.412658 ], [ -64.908237, 18.412652 ], [ -64.908115, 18.412619 ], [ -64.907953, 18.412608 ], [ -64.907799, 18.412592 ], [ -64.907682, 18.412592 ], [ -64.907534, 18.412636 ], [ -64.907475, 18.412675 ], [ -64.90744, 18.412669 ], [ -64.907429, 18.412592 ], [ -64.907435, 18.412554 ], [ -64.907435, 18.412515 ], [ -64.907417, 18.412487 ], [ -64.907366, 18.412453 ], [ -64.907309, 18.412449 ], [ -64.907169, 18.412426 ], [ -64.907089, 18.412432 ], [ -64.907032, 18.412443 ], [ -64.906996, 18.412465 ], [ -64.906955, 18.412498 ], [ -64.906932, 18.412526 ], [ -64.90691, 18.412542 ], [ -64.90687, 18.412553 ], [ -64.906818, 18.412537 ], [ -64.90679, 18.412497 ], [ -64.906736, 18.412465 ], [ -64.906679, 18.412454 ], [ -64.906587, 18.412448 ], [ -64.906523, 18.412448 ], [ -64.906488, 18.412415 ], [ -64.906465, 18.412344 ], [ -64.906454, 18.412278 ], [ -64.906368, 18.412272 ], [ -64.906252, 18.412278 ], [ -64.906154, 18.412267 ], [ -64.906062, 18.412233 ], [ -64.906015, 18.412206 ], [ -64.905975, 18.412162 ], [ -64.905935, 18.412086 ], [ -64.905935, 18.412068 ], [ -64.905912, 18.412019 ], [ -64.905878, 18.412002 ], [ -64.905808, 18.412046 ], [ -64.905762, 18.412119 ], [ -64.905722, 18.4122 ], [ -64.905651, 18.412267 ], [ -64.905578, 18.412277 ], [ -64.905497, 18.412261 ], [ -64.905428, 18.412233 ], [ -64.905369, 18.412218 ], [ -64.905341, 18.412161 ], [ -64.905312, 18.412024 ], [ -64.905266, 18.411996 ], [ -64.905215, 18.411975 ], [ -64.905173, 18.411969 ], [ -64.905103, 18.41198 ], [ -64.905018, 18.411975 ], [ -64.904908, 18.411981 ], [ -64.904799, 18.411963 ], [ -64.904713, 18.411931 ], [ -64.904603, 18.411837 ], [ -64.904545, 18.41176 ], [ -64.904511, 18.411705 ], [ -64.904458, 18.411678 ], [ -64.904423, 18.411655 ], [ -64.90436, 18.411645 ], [ -64.904349, 18.411611 ], [ -64.904354, 18.411577 ], [ -64.904382, 18.411528 ], [ -64.90444, 18.41149 ], [ -64.904482, 18.41149 ], [ -64.904516, 18.411463 ], [ -64.904523, 18.411413 ], [ -64.904475, 18.411363 ], [ -64.904452, 18.41133 ], [ -64.90444, 18.411292 ], [ -64.904446, 18.411236 ], [ -64.904505, 18.411181 ], [ -64.904533, 18.411137 ], [ -64.904591, 18.411115 ], [ -64.904648, 18.411088 ], [ -64.904696, 18.411054 ], [ -64.904747, 18.410994 ], [ -64.904759, 18.41095 ], [ -64.904753, 18.410895 ], [ -64.904689, 18.410835 ], [ -64.904648, 18.410823 ], [ -64.904596, 18.410796 ], [ -64.904528, 18.410778 ], [ -64.904488, 18.410736 ], [ -64.904488, 18.410675 ], [ -64.904469, 18.410614 ], [ -64.904446, 18.410554 ], [ -64.904418, 18.410499 ], [ -64.904377, 18.410482 ], [ -64.90424, 18.410442 ], [ -64.904118, 18.410455 ], [ -64.904055, 18.410482 ], [ -64.904008, 18.410526 ], [ -64.903956, 18.410553 ], [ -64.903864, 18.410559 ], [ -64.903788, 18.410559 ], [ -64.903634, 18.410505 ], [ -64.903587, 18.410471 ], [ -64.9035, 18.410427 ], [ -64.903386, 18.41035 ], [ -64.903298, 18.410245 ], [ -64.903258, 18.410184 ], [ -64.903229, 18.410129 ], [ -64.903235, 18.410036 ], [ -64.903212, 18.409986 ], [ -64.903096, 18.409898 ], [ -64.903021, 18.409854 ], [ -64.902879, 18.409794 ], [ -64.902835, 18.409742 ], [ -64.90282, 18.409723 ], [ -64.902768, 18.409667 ], [ -64.902733, 18.409602 ], [ -64.902739, 18.409534 ], [ -64.902767, 18.409457 ], [ -64.902854, 18.409259 ], [ -64.902861, 18.409171 ], [ -64.902827, 18.409099 ], [ -64.902779, 18.409039 ], [ -64.902739, 18.408974 ], [ -64.902723, 18.408901 ], [ -64.902716, 18.408863 ], [ -64.902682, 18.408726 ], [ -64.90266, 18.408566 ], [ -64.902711, 18.40824 ], [ -64.902751, 18.408093 ], [ -64.902774, 18.407916 ], [ -64.902839, 18.407778 ], [ -64.902924, 18.407645 ], [ -64.903011, 18.407557 ], [ -64.90305, 18.407546 ], [ -64.903127, 18.407513 ], [ -64.90315, 18.407409 ], [ -64.903138, 18.407271 ], [ -64.903196, 18.407243 ], [ -64.903252, 18.407205 ], [ -64.903304, 18.407183 ], [ -64.903346, 18.407161 ], [ -64.903397, 18.407122 ], [ -64.903448, 18.407062 ], [ -64.903484, 18.406974 ], [ -64.903512, 18.40688 ], [ -64.903559, 18.406798 ], [ -64.903622, 18.406654 ], [ -64.903714, 18.406544 ], [ -64.903831, 18.406435 ], [ -64.904084, 18.406241 ], [ -64.904246, 18.406148 ], [ -64.904424, 18.406082 ], [ -64.904574, 18.406021 ], [ -64.904575, 18.406021 ], [ -64.904961, 18.40595 ], [ -64.905146, 18.405928 ], [ -64.905318, 18.405951 ], [ -64.905446, 18.405983 ], [ -64.905602, 18.406081 ], [ -64.905716, 18.406143 ], [ -64.905791, 18.406215 ], [ -64.90579, 18.406215 ], [ -64.905854, 18.406275 ], [ -64.90597, 18.406352 ], [ -64.906051, 18.40639 ], [ -64.90615, 18.406418 ], [ -64.90627, 18.406391 ], [ -64.906403, 18.406396 ], [ -64.906559, 18.406407 ], [ -64.906639, 18.40643 ], [ -64.906722, 18.406445 ], [ -64.90679, 18.406473 ], [ -64.906957, 18.406605 ], [ -64.907073, 18.40676 ], [ -64.907136, 18.406831 ], [ -64.907175, 18.406859 ], [ -64.90721, 18.40687 ], [ -64.90724, 18.406864 ], [ -64.907275, 18.406864 ], [ -64.907298, 18.40687 ], [ -64.907298, 18.406903 ], [ -64.907343, 18.406941 ], [ -64.907383, 18.407024 ], [ -64.907435, 18.407041 ], [ -64.907494, 18.40702 ], [ -64.907546, 18.406992 ], [ -64.907603, 18.407019 ], [ -64.907643, 18.40709 ], [ -64.907643, 18.407145 ], [ -64.907666, 18.407178 ], [ -64.907689, 18.407223 ], [ -64.907765, 18.407265 ], [ -64.907833, 18.407283 ], [ -64.907939, 18.407304 ], [ -64.908046, 18.407332 ], [ -64.908139, 18.40737 ], [ -64.90818, 18.407426 ], [ -64.908226, 18.407459 ], [ -64.908312, 18.407465 ], [ -64.908377, 18.407449 ], [ -64.90844, 18.407444 ], [ -64.908503, 18.40747 ], [ -64.908577, 18.407525 ], [ -64.908619, 18.407531 ], [ -64.908671, 18.407564 ], [ -64.908773, 18.407608 ], [ -64.908907, 18.407729 ], [ -64.908981, 18.407812 ], [ -64.909009, 18.40791 ], [ -64.90901, 18.407911 ], [ -64.909027, 18.40801 ], [ -64.908987, 18.408126 ], [ -64.908975, 18.408197 ], [ -64.908987, 18.408263 ], [ -64.909034, 18.408303 ], [ -64.909034, 18.408411 ], [ -64.909056, 18.408472 ], [ -64.909079, 18.408506 ], [ -64.909195, 18.408748 ], [ -64.909251, 18.408942 ], [ -64.909264, 18.408985 ], [ -64.909264, 18.409039 ], [ -64.909306, 18.409149 ], [ -64.909352, 18.409228 ], [ -64.909432, 18.409311 ], [ -64.909542, 18.409404 ], [ -64.909628, 18.409485 ], [ -64.909731, 18.40958 ], [ -64.909818, 18.40969 ], [ -64.909865, 18.409778 ], [ -64.909933, 18.409938 ], [ -64.910026, 18.410274 ], [ -64.910066, 18.410389 ], [ -64.910209, 18.410725 ], [ -64.910246, 18.410886 ], [ -64.91025, 18.410956 ], [ -64.910297, 18.411056 ], [ -64.910343, 18.411105 ], [ -64.910377, 18.411127 ], [ -64.910377, 18.411192 ], [ -64.910372, 18.41121 ], [ -64.910371, 18.411336 ], [ -64.910377, 18.411403 ], [ -64.910332, 18.41149 ], [ -64.910267, 18.411502 ], [ -64.910129, 18.411513 ], [ -64.910112, 18.411524 ], [ -64.910067, 18.411563 ], [ -64.910055, 18.41159 ], [ -64.910013, 18.411628 ], [ -64.90991, 18.411705 ], [ -64.909898, 18.411722 ], [ -64.909921, 18.411772 ], [ -64.909944, 18.411832 ], [ -64.909916, 18.411854 ], [ -64.909858, 18.411849 ], [ -64.909835, 18.411843 ], [ -64.909858, 18.41192 ], [ -64.909811, 18.411947 ], [ -64.909771, 18.411942 ], [ -64.909736, 18.411953 ], [ -64.909702, 18.412003 ], [ -64.909662, 18.412003 ], [ -64.909611, 18.411965 ], [ -64.909426, 18.411953 ], [ -64.909386, 18.411965 ], [ -64.909374, 18.412025 ], [ -64.90938, 18.412074 ], [ -64.909363, 18.412112 ], [ -64.909269, 18.412197 ], [ -64.909252, 18.412212 ], [ -64.909178, 18.412249 ], [ -64.90914, 18.412256 ], [ -64.909126, 18.412267 ], [ -64.909126, 18.4123 ], [ -64.909109, 18.412349 ], [ -64.909073, 18.412377 ], [ -64.909003, 18.412421 ], [ -64.908998, 18.41246 ], [ -64.909026, 18.412531 ], [ -64.909032, 18.412581 ], [ -64.908998, 18.412619 ], [ -64.908952, 18.412625 ], [ -64.908785, 18.412631 ], [ -64.908657, 18.412603 ], [ -64.908559, 18.412586 ], [ -64.908479, 18.412586 ], [ -64.908451, 18.412603 ], [ -64.908405, 18.412641 ], [ -64.908346, 18.412658 ] ] ], [ [ [ -64.900693, 18.384296 ], [ -64.900844, 18.384243 ], [ -64.901003, 18.384446 ], [ -64.901163, 18.384464 ], [ -64.901349, 18.384624 ], [ -64.901331, 18.384854 ], [ -64.901083, 18.385032 ], [ -64.900977, 18.384677 ], [ -64.900693, 18.384296 ] ] ], [ [ [ -64.90251, 18.409983 ], [ -64.902519, 18.409819 ], [ -64.902586, 18.409814 ], [ -64.902745, 18.40981 ], [ -64.90287, 18.409927 ], [ -64.902854, 18.410076 ], [ -64.902763, 18.410138 ], [ -64.90251, 18.409983 ] ] ], [ [ [ -64.905364, 18.412853 ], [ -64.905307, 18.41289 ], [ -64.905199, 18.412941 ], [ -64.905066, 18.412899 ], [ -64.904964, 18.413021 ], [ -64.904984, 18.413152 ], [ -64.905006, 18.413249 ], [ -64.904986, 18.413343 ], [ -64.9048, 18.413365 ], [ -64.904722, 18.413365 ], [ -64.904625, 18.413283 ], [ -64.904463, 18.413347 ], [ -64.904142, 18.413314 ], [ -64.904057, 18.41317 ], [ -64.904075, 18.412948 ], [ -64.904088, 18.412895 ], [ -64.904208, 18.412933 ], [ -64.90427, 18.412995 ], [ -64.904334, 18.412839 ], [ -64.904412, 18.412795 ], [ -64.904483, 18.412733 ], [ -64.904625, 18.412709 ], [ -64.904742, 18.412596 ], [ -64.904944, 18.412658 ], [ -64.905044, 18.412671 ], [ -64.905103, 18.41276 ], [ -64.905273, 18.412782 ], [ -64.905367, 18.412804 ], [ -64.905364, 18.412853 ] ] ], [ [ [ -64.9173, 18.404884 ], [ -64.917259, 18.404923 ], [ -64.91719, 18.404955 ], [ -64.917104, 18.40496 ], [ -64.91689, 18.404983 ], [ -64.91674, 18.404955 ], [ -64.916665, 18.404933 ], [ -64.916636, 18.404933 ], [ -64.916613, 18.404944 ], [ -64.916619, 18.404976 ], [ -64.916642, 18.405032 ], [ -64.916688, 18.405114 ], [ -64.916683, 18.405159 ], [ -64.916665, 18.405209 ], [ -64.916619, 18.405225 ], [ -64.916556, 18.405264 ], [ -64.916486, 18.405296 ], [ -64.916469, 18.405324 ], [ -64.916452, 18.405439 ], [ -64.916452, 18.405473 ], [ -64.91644, 18.405522 ], [ -64.916417, 18.405554 ], [ -64.916347, 18.405609 ], [ -64.916025, 18.405741 ], [ -64.915684, 18.405852 ], [ -64.915586, 18.40588 ], [ -64.915489, 18.405896 ], [ -64.915413, 18.405885 ], [ -64.915321, 18.405841 ], [ -64.915228, 18.405846 ], [ -64.915153, 18.405863 ], [ -64.91509, 18.405868 ], [ -64.915049, 18.405863 ], [ -64.914929, 18.405779 ], [ -64.914871, 18.405753 ], [ -64.914767, 18.405764 ], [ -64.914692, 18.405802 ], [ -64.914531, 18.405831 ], [ -64.914461, 18.405879 ], [ -64.914438, 18.405918 ], [ -64.914409, 18.405946 ], [ -64.91438, 18.405957 ], [ -64.914352, 18.40595 ], [ -64.914299, 18.405912 ], [ -64.914282, 18.405874 ], [ -64.914282, 18.405852 ], [ -64.91426, 18.405819 ], [ -64.914242, 18.405813 ], [ -64.914196, 18.405834 ], [ -64.914167, 18.405864 ], [ -64.914149, 18.405852 ], [ -64.914121, 18.405824 ], [ -64.914092, 18.405819 ], [ -64.914069, 18.405824 ], [ -64.914, 18.405857 ], [ -64.913959, 18.405863 ], [ -64.913919, 18.405846 ], [ -64.913892, 18.405826 ], [ -64.913896, 18.405808 ], [ -64.913897, 18.40579 ], [ -64.913937, 18.405735 ], [ -64.91392, 18.405697 ], [ -64.913867, 18.405693 ], [ -64.913792, 18.40567 ], [ -64.913677, 18.405666 ], [ -64.913631, 18.405644 ], [ -64.913596, 18.405594 ], [ -64.913608, 18.405553 ], [ -64.913578, 18.405505 ], [ -64.913538, 18.405493 ], [ -64.913504, 18.405478 ], [ -64.913469, 18.40544 ], [ -64.913463, 18.40541 ], [ -64.913469, 18.405384 ], [ -64.913469, 18.405352 ], [ -64.913371, 18.405339 ], [ -64.913157, 18.405373 ], [ -64.9131, 18.405433 ], [ -64.913083, 18.405477 ], [ -64.913059, 18.405516 ], [ -64.913019, 18.405539 ], [ -64.912967, 18.405549 ], [ -64.912909, 18.405554 ], [ -64.912869, 18.405565 ], [ -64.912829, 18.405588 ], [ -64.912701, 18.40562 ], [ -64.912655, 18.405619 ], [ -64.912586, 18.405609 ], [ -64.91254, 18.405571 ], [ -64.9125, 18.405553 ], [ -64.912442, 18.405538 ], [ -64.91239, 18.405539 ], [ -64.912373, 18.405593 ], [ -64.912378, 18.405626 ], [ -64.912379, 18.405697 ], [ -64.91235, 18.405715 ], [ -64.912321, 18.405709 ], [ -64.912292, 18.405698 ], [ -64.912269, 18.405664 ], [ -64.912257, 18.40562 ], [ -64.912229, 18.405592 ], [ -64.912159, 18.405571 ], [ -64.912107, 18.405587 ], [ -64.912003, 18.405593 ], [ -64.911958, 18.405565 ], [ -64.911888, 18.405555 ], [ -64.911853, 18.405532 ], [ -64.911796, 18.405505 ], [ -64.911744, 18.405455 ], [ -64.911727, 18.405416 ], [ -64.911721, 18.405356 ], [ -64.911721, 18.405306 ], [ -64.911698, 18.405262 ], [ -64.911652, 18.405234 ], [ -64.911571, 18.405208 ], [ -64.911478, 18.405256 ], [ -64.911438, 18.405268 ], [ -64.911415, 18.405262 ], [ -64.911392, 18.405235 ], [ -64.91134, 18.405152 ], [ -64.911306, 18.405114 ], [ -64.911236, 18.405092 ], [ -64.911179, 18.405069 ], [ -64.911092, 18.405041 ], [ -64.911006, 18.405038 ], [ -64.910821, 18.405047 ], [ -64.910723, 18.405025 ], [ -64.910637, 18.404983 ], [ -64.910567, 18.404915 ], [ -64.910551, 18.40487 ], [ -64.910544, 18.404816 ], [ -64.910509, 18.404755 ], [ -64.910464, 18.404734 ], [ -64.910417, 18.404722 ], [ -64.910365, 18.40475 ], [ -64.910279, 18.404772 ], [ -64.9101, 18.404822 ], [ -64.910007, 18.40481 ], [ -64.90984, 18.404772 ], [ -64.909667, 18.404739 ], [ -64.909586, 18.404706 ], [ -64.909563, 18.404667 ], [ -64.909557, 18.404585 ], [ -64.909482, 18.40453 ], [ -64.909437, 18.404556 ], [ -64.909332, 18.404524 ], [ -64.909246, 18.40448 ], [ -64.909194, 18.404441 ], [ -64.909131, 18.404386 ], [ -64.909061, 18.404342 ], [ -64.908958, 18.404309 ], [ -64.90875, 18.40432 ], [ -64.908496, 18.404282 ], [ -64.908277, 18.40426 ], [ -64.908035, 18.404209 ], [ -64.907948, 18.404182 ], [ -64.907822, 18.404121 ], [ -64.907734, 18.404067 ], [ -64.907637, 18.403956 ], [ -64.907527, 18.403852 ], [ -64.907406, 18.403752 ], [ -64.907262, 18.403666 ], [ -64.906829, 18.403539 ], [ -64.906367, 18.403356 ], [ -64.906079, 18.403262 ], [ -64.905692, 18.403075 ], [ -64.905456, 18.402904 ], [ -64.905284, 18.402773 ], [ -64.905133, 18.402592 ], [ -64.904914, 18.402315 ], [ -64.904822, 18.402188 ], [ -64.904706, 18.402063 ], [ -64.904649, 18.401969 ], [ -64.904603, 18.401836 ], [ -64.904637, 18.401687 ], [ -64.904631, 18.401582 ], [ -64.904602, 18.401472 ], [ -64.904551, 18.401335 ], [ -64.904441, 18.401164 ], [ -64.904285, 18.400965 ], [ -64.904095, 18.400779 ], [ -64.90376, 18.400497 ], [ -64.903385, 18.400233 ], [ -64.903161, 18.400023 ], [ -64.902999, 18.399826 ], [ -64.902878, 18.399588 ], [ -64.902785, 18.399335 ], [ -64.902763, 18.399126 ], [ -64.902688, 18.398929 ], [ -64.902641, 18.398806 ], [ -64.902497, 18.398592 ], [ -64.902042, 18.398261 ], [ -64.901961, 18.398173 ], [ -64.901892, 18.398041 ], [ -64.90173, 18.397788 ], [ -64.901603, 18.397562 ], [ -64.901465, 18.397429 ], [ -64.901298, 18.397281 ], [ -64.901159, 18.397143 ], [ -64.901027, 18.396896 ], [ -64.900773, 18.396377 ], [ -64.900704, 18.39619 ], [ -64.900692, 18.39597 ], [ -64.900658, 18.395827 ], [ -64.900496, 18.395573 ], [ -64.900393, 18.395326 ], [ -64.900283, 18.394956 ], [ -64.900237, 18.39477 ], [ -64.900167, 18.394644 ], [ -64.900093, 18.3945 ], [ -64.900046, 18.394422 ], [ -64.899966, 18.394312 ], [ -64.899891, 18.394224 ], [ -64.899816, 18.394187 ], [ -64.899585, 18.394042 ], [ -64.899481, 18.393955 ], [ -64.8994, 18.39385 ], [ -64.899314, 18.393763 ], [ -64.899245, 18.393668 ], [ -64.899216, 18.39352 ], [ -64.899176, 18.393421 ], [ -64.899152, 18.393255 ], [ -64.899199, 18.39303 ], [ -64.899245, 18.392957 ], [ -64.899268, 18.392902 ], [ -64.89928, 18.392853 ], [ -64.899257, 18.392754 ], [ -64.899262, 18.392672 ], [ -64.899314, 18.392545 ], [ -64.899378, 18.392429 ], [ -64.899533, 18.392274 ], [ -64.899569, 18.392244 ], [ -64.899587, 18.392238 ], [ -64.899666, 18.39217 ], [ -64.90517, 18.387915 ], [ -64.905245, 18.387842 ], [ -64.905338, 18.387816 ], [ -64.905401, 18.387832 ], [ -64.905435, 18.387876 ], [ -64.905464, 18.387897 ], [ -64.905497, 18.387892 ], [ -64.905528, 18.387826 ], [ -64.905539, 18.387772 ], [ -64.905608, 18.38771 ], [ -64.905712, 18.387639 ], [ -64.90581, 18.387563 ], [ -64.905972, 18.387446 ], [ -64.90622, 18.387336 ], [ -64.906284, 18.387315 ], [ -64.906359, 18.387321 ], [ -64.906399, 18.387336 ], [ -64.90641, 18.387397 ], [ -64.906451, 18.387469 ], [ -64.90648, 18.387479 ], [ -64.906521, 18.387479 ], [ -64.906572, 18.387474 ], [ -64.90663, 18.387458 ], [ -64.906785, 18.38738 ], [ -64.90697, 18.387315 ], [ -64.907126, 18.387254 ], [ -64.907206, 18.387265 ], [ -64.907247, 18.387259 ], [ -64.907299, 18.387286 ], [ -64.907414, 18.387391 ], [ -64.907466, 18.387409 ], [ -64.907535, 18.387374 ], [ -64.907593, 18.387387 ], [ -64.90765, 18.387414 ], [ -64.907674, 18.387446 ], [ -64.90772, 18.387578 ], [ -64.907708, 18.387662 ], [ -64.907789, 18.387783 ], [ -64.907893, 18.387838 ], [ -64.907945, 18.387903 ], [ -64.907974, 18.38809 ], [ -64.907968, 18.388168 ], [ -64.908014, 18.388239 ], [ -64.908129, 18.388263 ], [ -64.908239, 18.38825 ], [ -64.90836, 18.388339 ], [ -64.908464, 18.388449 ], [ -64.908527, 18.38857 ], [ -64.908574, 18.38874 ], [ -64.908591, 18.388872 ], [ -64.908475, 18.38928 ], [ -64.908481, 18.389364 ], [ -64.908498, 18.389418 ], [ -64.908545, 18.389508 ], [ -64.908579, 18.3896 ], [ -64.908568, 18.389699 ], [ -64.90851, 18.389799 ], [ -64.908441, 18.38987 ], [ -64.908412, 18.389952 ], [ -64.908435, 18.390035 ], [ -64.908481, 18.390073 ], [ -64.908504, 18.390134 ], [ -64.908527, 18.390221 ], [ -64.908573, 18.390299 ], [ -64.908609, 18.390334 ], [ -64.908637, 18.390354 ], [ -64.908683, 18.390398 ], [ -64.908769, 18.390431 ], [ -64.908891, 18.390464 ], [ -64.90896, 18.390508 ], [ -64.909064, 18.390624 ], [ -64.90915, 18.390696 ], [ -64.909225, 18.390714 ], [ -64.90945, 18.390691 ], [ -64.909646, 18.390707 ], [ -64.909738, 18.390751 ], [ -64.909785, 18.390762 ], [ -64.9099, 18.390757 ], [ -64.910027, 18.390762 ], [ -64.910119, 18.390752 ], [ -64.910252, 18.390769 ], [ -64.910361, 18.390802 ], [ -64.910471, 18.390911 ], [ -64.910546, 18.390994 ], [ -64.910633, 18.391099 ], [ -64.910748, 18.391193 ], [ -64.910794, 18.391242 ], [ -64.910822, 18.391296 ], [ -64.910829, 18.391364 ], [ -64.910869, 18.391429 ], [ -64.910915, 18.391451 ], [ -64.910944, 18.391505 ], [ -64.910938, 18.391584 ], [ -64.910915, 18.391654 ], [ -64.910881, 18.391731 ], [ -64.910869, 18.391777 ], [ -64.910898, 18.391831 ], [ -64.910967, 18.391918 ], [ -64.910996, 18.39199 ], [ -64.910984, 18.39204 ], [ -64.910961, 18.392085 ], [ -64.910961, 18.392151 ], [ -64.910984, 18.392189 ], [ -64.911013, 18.392205 ], [ -64.911054, 18.392238 ], [ -64.911152, 18.39237 ], [ -64.911181, 18.392442 ], [ -64.911197, 18.39258 ], [ -64.911197, 18.392675 ], [ -64.911175, 18.392752 ], [ -64.911117, 18.392915 ], [ -64.911111, 18.393025 ], [ -64.911128, 18.393109 ], [ -64.911203, 18.393273 ], [ -64.911261, 18.393351 ], [ -64.911417, 18.393449 ], [ -64.911653, 18.393483 ], [ -64.91174, 18.393521 ], [ -64.911815, 18.393587 ], [ -64.911884, 18.393675 ], [ -64.911982, 18.393846 ], [ -64.912017, 18.393886 ], [ -64.912068, 18.39387 ], [ -64.912167, 18.39378 ], [ -64.91227, 18.393753 ], [ -64.912299, 18.393764 ], [ -64.912328, 18.393824 ], [ -64.912328, 18.39389 ], [ -64.912316, 18.393946 ], [ -64.912345, 18.394 ], [ -64.912386, 18.394061 ], [ -64.912432, 18.394078 ], [ -64.91257, 18.394165 ], [ -64.912622, 18.394228 ], [ -64.912692, 18.394299 ], [ -64.912743, 18.394402 ], [ -64.912738, 18.394479 ], [ -64.91272, 18.394552 ], [ -64.912686, 18.394629 ], [ -64.91268, 18.394689 ], [ -64.912692, 18.394771 ], [ -64.912737, 18.394893 ], [ -64.912841, 18.395074 ], [ -64.913118, 18.395603 ], [ -64.913262, 18.395791 ], [ -64.913303, 18.395863 ], [ -64.91332, 18.395939 ], [ -64.913331, 18.396088 ], [ -64.913303, 18.39615 ], [ -64.913251, 18.396331 ], [ -64.91328, 18.396446 ], [ -64.913331, 18.396556 ], [ -64.913355, 18.396644 ], [ -64.913395, 18.396738 ], [ -64.913412, 18.396837 ], [ -64.913423, 18.396948 ], [ -64.913389, 18.397041 ], [ -64.913355, 18.397118 ], [ -64.913325, 18.397233 ], [ -64.913314, 18.397316 ], [ -64.913302, 18.397464 ], [ -64.913262, 18.397625 ], [ -64.91321, 18.397783 ], [ -64.913152, 18.397922 ], [ -64.912996, 18.398165 ], [ -64.912991, 18.398253 ], [ -64.912973, 18.398335 ], [ -64.912916, 18.398412 ], [ -64.912835, 18.398483 ], [ -64.91276, 18.398533 ], [ -64.912697, 18.398599 ], [ -64.912639, 18.398676 ], [ -64.912599, 18.398786 ], [ -64.912553, 18.398958 ], [ -64.912403, 18.399298 ], [ -64.912333, 18.399568 ], [ -64.912327, 18.399712 ], [ -64.912345, 18.39985 ], [ -64.912494, 18.400135 ], [ -64.912679, 18.400445 ], [ -64.912754, 18.400555 ], [ -64.912869, 18.400642 ], [ -64.912962, 18.400686 ], [ -64.91321, 18.400957 ], [ -64.913262, 18.400972 ], [ -64.913296, 18.400967 ], [ -64.913331, 18.40095 ], [ -64.913389, 18.400896 ], [ -64.91347, 18.400834 ], [ -64.913515, 18.400813 ], [ -64.913602, 18.400824 ], [ -64.913655, 18.400846 ], [ -64.913671, 18.400895 ], [ -64.913689, 18.400934 ], [ -64.913769, 18.401006 ], [ -64.91381, 18.401022 ], [ -64.91385, 18.40105 ], [ -64.913856, 18.401104 ], [ -64.913867, 18.401138 ], [ -64.913914, 18.401194 ], [ -64.913937, 18.401216 ], [ -64.91396, 18.40127 ], [ -64.91396, 18.40132 ], [ -64.913965, 18.401353 ], [ -64.913983, 18.401386 ], [ -64.914029, 18.401413 ], [ -64.914133, 18.401441 ], [ -64.91433, 18.401453 ], [ -64.914623, 18.401473 ], [ -64.915027, 18.401529 ], [ -64.915281, 18.401546 ], [ -64.915564, 18.401606 ], [ -64.915783, 18.401661 ], [ -64.915805, 18.401705 ], [ -64.91576, 18.401783 ], [ -64.915708, 18.401794 ], [ -64.915715, 18.401811 ], [ -64.915771, 18.401843 ], [ -64.915835, 18.401888 ], [ -64.915858, 18.401915 ], [ -64.91584, 18.401965 ], [ -64.915742, 18.402008 ], [ -64.915697, 18.402041 ], [ -64.915667, 18.402085 ], [ -64.915662, 18.402129 ], [ -64.915673, 18.402201 ], [ -64.91569, 18.40225 ], [ -64.915736, 18.402289 ], [ -64.915835, 18.40234 ], [ -64.91591, 18.402361 ], [ -64.915956, 18.402395 ], [ -64.916008, 18.402444 ], [ -64.916071, 18.402516 ], [ -64.9161, 18.402585 ], [ -64.916105, 18.402669 ], [ -64.9161, 18.402741 ], [ -64.916111, 18.402861 ], [ -64.916117, 18.402983 ], [ -64.916106, 18.403186 ], [ -64.916082, 18.403291 ], [ -64.9161, 18.403391 ], [ -64.91614, 18.403479 ], [ -64.916383, 18.403716 ], [ -64.916509, 18.40381 ], [ -64.916584, 18.40382 ], [ -64.916636, 18.403804 ], [ -64.916746, 18.403841 ], [ -64.916815, 18.40387 ], [ -64.916896, 18.403919 ], [ -64.916971, 18.403941 ], [ -64.917086, 18.403963 ], [ -64.917178, 18.403991 ], [ -64.917248, 18.404001 ], [ -64.917288, 18.404018 ], [ -64.9173, 18.404073 ], [ -64.917305, 18.404118 ], [ -64.917323, 18.404211 ], [ -64.917386, 18.404255 ], [ -64.917455, 18.404266 ], [ -64.91749, 18.404295 ], [ -64.917513, 18.404344 ], [ -64.917438, 18.404387 ], [ -64.917346, 18.404337 ], [ -64.917305, 18.404299 ], [ -64.917281, 18.404285 ], [ -64.917265, 18.404295 ], [ -64.917242, 18.404295 ], [ -64.917213, 18.404332 ], [ -64.917236, 18.404354 ], [ -64.917282, 18.404414 ], [ -64.917311, 18.404493 ], [ -64.917282, 18.404575 ], [ -64.917317, 18.404712 ], [ -64.917323, 18.404762 ], [ -64.9173, 18.404884 ] ] ], [ [ [ -64.922748, 18.367147 ], [ -64.923006, 18.367474 ], [ -64.92562, 18.369944 ], [ -64.925828, 18.370049 ], [ -64.926041, 18.370202 ], [ -64.926272, 18.370319 ], [ -64.926568, 18.37049 ], [ -64.926739, 18.370589 ], [ -64.927039, 18.37082 ], [ -64.927448, 18.371177 ], [ -64.927616, 18.371354 ], [ -64.927835, 18.371531 ], [ -64.928118, 18.371778 ], [ -64.928134, 18.371797 ], [ -64.928233, 18.371916 ], [ -64.928246, 18.371936 ], [ -64.928302, 18.372026 ], [ -64.928382, 18.372117 ], [ -64.928406, 18.372145 ], [ -64.928473, 18.372222 ], [ -64.928585, 18.372361 ], [ -64.92866, 18.372412 ], [ -64.928798, 18.372487 ], [ -64.928954, 18.372549 ], [ -64.929116, 18.372626 ], [ -64.929259, 18.372731 ], [ -64.92937, 18.372797 ], [ -64.929588, 18.372929 ], [ -64.929709, 18.373021 ], [ -64.929841, 18.373104 ], [ -64.930015, 18.373208 ], [ -64.930176, 18.373285 ], [ -64.93039, 18.373378 ], [ -64.930661, 18.373468 ], [ -64.930969, 18.373591 ], [ -64.930972, 18.373593 ], [ -64.93133, 18.373782 ], [ -64.931884, 18.374271 ], [ -64.932034, 18.374436 ], [ -64.932155, 18.374469 ], [ -64.932282, 18.374529 ], [ -64.932363, 18.374645 ], [ -64.93245, 18.374712 ], [ -64.932513, 18.374734 ], [ -64.932599, 18.374756 ], [ -64.932773, 18.374894 ], [ -64.932928, 18.375042 ], [ -64.933159, 18.375333 ], [ -64.93328, 18.37546 ], [ -64.933413, 18.375588 ], [ -64.933672, 18.375752 ], [ -64.933839, 18.375891 ], [ -64.933926, 18.376012 ], [ -64.934041, 18.376155 ], [ -64.934127, 18.376199 ], [ -64.934203, 18.376237 ], [ -64.934271, 18.376263 ], [ -64.934509, 18.376392 ], [ -64.934641, 18.376436 ], [ -64.935224, 18.376782 ], [ -64.935334, 18.376874 ], [ -64.93539, 18.376921 ], [ -64.935558, 18.377063 ], [ -64.935615, 18.377111 ], [ -64.935794, 18.377262 ], [ -64.936078, 18.377564 ], [ -64.936273, 18.37774 ], [ -64.936499, 18.378005 ], [ -64.936533, 18.378104 ], [ -64.93655, 18.378207 ], [ -64.936585, 18.378313 ], [ -64.936642, 18.378523 ], [ -64.936677, 18.37861 ], [ -64.93669, 18.378633 ], [ -64.936735, 18.378709 ], [ -64.936844, 18.378819 ], [ -64.937006, 18.378991 ], [ -64.937087, 18.379067 ], [ -64.937168, 18.37915 ], [ -64.937208, 18.379167 ], [ -64.937237, 18.379221 ], [ -64.937277, 18.37927 ], [ -64.937307, 18.379299 ], [ -64.937352, 18.379322 ], [ -64.937392, 18.379409 ], [ -64.937375, 18.37948 ], [ -64.937376, 18.37953 ], [ -64.937382, 18.379552 ], [ -64.937438, 18.379589 ], [ -64.937484, 18.379679 ], [ -64.937554, 18.379801 ], [ -64.937606, 18.379927 ], [ -64.937629, 18.380197 ], [ -64.937652, 18.380251 ], [ -64.937681, 18.380285 ], [ -64.937705, 18.38029 ], [ -64.937744, 18.38028 ], [ -64.937791, 18.380295 ], [ -64.937814, 18.380345 ], [ -64.937866, 18.380344 ], [ -64.937907, 18.380334 ], [ -64.937952, 18.380334 ], [ -64.93801, 18.380367 ], [ -64.938005, 18.3804 ], [ -64.938039, 18.380417 ], [ -64.9382, 18.380379 ], [ -64.938287, 18.380432 ], [ -64.938298, 18.380543 ], [ -64.938246, 18.380616 ], [ -64.938229, 18.380659 ], [ -64.938223, 18.380713 ], [ -64.938269, 18.380765 ], [ -64.938338, 18.380757 ], [ -64.938419, 18.380797 ], [ -64.938511, 18.380891 ], [ -64.93853, 18.380896 ], [ -64.938549, 18.380894 ], [ -64.938564, 18.380875 ], [ -64.938593, 18.380863 ], [ -64.938621, 18.380863 ], [ -64.938667, 18.380869 ], [ -64.93872, 18.380891 ], [ -64.9388, 18.380944 ], [ -64.938863, 18.381016 ], [ -64.938944, 18.381056 ], [ -64.939019, 18.381082 ], [ -64.939261, 18.381319 ], [ -64.939319, 18.381413 ], [ -64.939313, 18.381506 ], [ -64.939285, 18.381574 ], [ -64.939303, 18.381606 ], [ -64.939333, 18.381626 ], [ -64.939411, 18.381622 ], [ -64.939487, 18.381633 ], [ -64.939573, 18.381684 ], [ -64.939654, 18.38176 ], [ -64.939728, 18.381843 ], [ -64.939798, 18.381876 ], [ -64.93985, 18.381887 ], [ -64.939902, 18.381904 ], [ -64.939931, 18.381942 ], [ -64.939977, 18.381976 ], [ -64.940018, 18.381986 ], [ -64.940058, 18.381979 ], [ -64.940128, 18.382003 ], [ -64.940202, 18.382075 ], [ -64.940222, 18.382119 ], [ -64.940225, 18.382125 ], [ -64.940306, 18.382277 ], [ -64.940381, 18.382299 ], [ -64.940583, 18.382338 ], [ -64.940686, 18.382416 ], [ -64.940721, 18.382461 ], [ -64.940785, 18.382592 ], [ -64.940825, 18.382642 ], [ -64.94086, 18.382664 ], [ -64.940888, 18.382673 ], [ -64.940918, 18.382675 ], [ -64.94094, 18.382691 ], [ -64.940957, 18.382729 ], [ -64.940963, 18.382806 ], [ -64.940947, 18.38284 ], [ -64.940859, 18.382922 ], [ -64.940825, 18.382977 ], [ -64.94082, 18.383005 ], [ -64.940825, 18.383049 ], [ -64.940846, 18.383099 ], [ -64.940894, 18.383136 ], [ -64.940924, 18.383214 ], [ -64.940905, 18.38322 ], [ -64.940877, 18.383236 ], [ -64.940831, 18.383225 ], [ -64.940756, 18.383169 ], [ -64.940698, 18.383155 ], [ -64.940675, 18.383187 ], [ -64.940686, 18.383213 ], [ -64.940675, 18.383242 ], [ -64.940658, 18.383263 ], [ -64.940618, 18.383286 ], [ -64.940589, 18.383264 ], [ -64.940577, 18.383236 ], [ -64.940519, 18.383147 ], [ -64.940461, 18.383154 ], [ -64.940415, 18.383144 ], [ -64.940334, 18.383049 ], [ -64.940306, 18.38295 ], [ -64.940254, 18.382933 ], [ -64.94019, 18.382927 ], [ -64.940138, 18.382889 ], [ -64.94, 18.382746 ], [ -64.93996, 18.382735 ], [ -64.939937, 18.38274 ], [ -64.939896, 18.382758 ], [ -64.939844, 18.382736 ], [ -64.939841, 18.382718 ], [ -64.939821, 18.382691 ], [ -64.939769, 18.382597 ], [ -64.939753, 18.382586 ], [ -64.939666, 18.382559 ], [ -64.93955, 18.38247 ], [ -64.939475, 18.382387 ], [ -64.939383, 18.382323 ], [ -64.939221, 18.38225 ], [ -64.939066, 18.382202 ], [ -64.939065, 18.382202 ], [ -64.938944, 18.382201 ], [ -64.938869, 18.382206 ], [ -64.938673, 18.382179 ], [ -64.938575, 18.38215 ], [ -64.9385, 18.382102 ], [ -64.938431, 18.382041 ], [ -64.938373, 18.381997 ], [ -64.938315, 18.381986 ], [ -64.938263, 18.381998 ], [ -64.938224, 18.382014 ], [ -64.938183, 18.382014 ], [ -64.938137, 18.381992 ], [ -64.938056, 18.381941 ], [ -64.937918, 18.381816 ], [ -64.937837, 18.381776 ], [ -64.937809, 18.381749 ], [ -64.937804, 18.381725 ], [ -64.937808, 18.381673 ], [ -64.937797, 18.381584 ], [ -64.93775, 18.381517 ], [ -64.937594, 18.381313 ], [ -64.937496, 18.38126 ], [ -64.937444, 18.381227 ], [ -64.93741, 18.381187 ], [ -64.937393, 18.381133 ], [ -64.937416, 18.381067 ], [ -64.937445, 18.381017 ], [ -64.937444, 18.38094 ], [ -64.937399, 18.380864 ], [ -64.937318, 18.380813 ], [ -64.937237, 18.380719 ], [ -64.93718, 18.380681 ], [ -64.937121, 18.380675 ], [ -64.937065, 18.380703 ], [ -64.937024, 18.380692 ], [ -64.936995, 18.380615 ], [ -64.937006, 18.380439 ], [ -64.936977, 18.380362 ], [ -64.936938, 18.380362 ], [ -64.936885, 18.380372 ], [ -64.936851, 18.380373 ], [ -64.936804, 18.38035 ], [ -64.936752, 18.380267 ], [ -64.936741, 18.380186 ], [ -64.936723, 18.380114 ], [ -64.936683, 18.380087 ], [ -64.936619, 18.380059 ], [ -64.936441, 18.380054 ], [ -64.936293, 18.379918 ], [ -64.936245, 18.379875 ], [ -64.93618, 18.379877 ], [ -64.936089, 18.379829 ], [ -64.936068, 18.379765 ], [ -64.935988, 18.379695 ], [ -64.935966, 18.379653 ], [ -64.935993, 18.379594 ], [ -64.935977, 18.379535 ], [ -64.935918, 18.379509 ], [ -64.935833, 18.379503 ], [ -64.93579, 18.379557 ], [ -64.935651, 18.379407 ], [ -64.935603, 18.379375 ], [ -64.935561, 18.379327 ], [ -64.935593, 18.379285 ], [ -64.935481, 18.379183 ], [ -64.935395, 18.379183 ], [ -64.935256, 18.379172 ], [ -64.935219, 18.37914 ], [ -64.935203, 18.379087 ], [ -64.935128, 18.379114 ], [ -64.935107, 18.379082 ], [ -64.935064, 18.379151 ], [ -64.935027, 18.379092 ], [ -64.935006, 18.379044 ], [ -64.93492, 18.379055 ], [ -64.93484, 18.37906 ], [ -64.93476, 18.379002 ], [ -64.934733, 18.378932 ], [ -64.93468, 18.3789 ], [ -64.934547, 18.378842 ], [ -64.934381, 18.378842 ], [ -64.934365, 18.37873 ], [ -64.934403, 18.378644 ], [ -64.934328, 18.37865 ], [ -64.934312, 18.378607 ], [ -64.934253, 18.378543 ], [ -64.934146, 18.378447 ], [ -64.934013, 18.378436 ], [ -64.933864, 18.378367 ], [ -64.933725, 18.378361 ], [ -64.933613, 18.37826 ], [ -64.933586, 18.37826 ], [ -64.933538, 18.378196 ], [ -64.933453, 18.378191 ], [ -64.933442, 18.378292 ], [ -64.933421, 18.378409 ], [ -64.933298, 18.378393 ], [ -64.933261, 18.378329 ], [ -64.933218, 18.378271 ], [ -64.933127, 18.378356 ], [ -64.933074, 18.37842 ], [ -64.933058, 18.378441 ], [ -64.932967, 18.378372 ], [ -64.932962, 18.378441 ], [ -64.932914, 18.3785 ], [ -64.932876, 18.3785 ], [ -64.93285, 18.378489 ], [ -64.932864, 18.378449 ], [ -64.932818, 18.378406 ], [ -64.932755, 18.378395 ], [ -64.932674, 18.378351 ], [ -64.932665, 18.378341 ], [ -64.932581, 18.378241 ], [ -64.93249, 18.37812 ], [ -64.932403, 18.378064 ], [ -64.93231, 18.37807 ], [ -64.932184, 18.378071 ], [ -64.932095, 18.378058 ], [ -64.931988, 18.378044 ], [ -64.931874, 18.377996 ], [ -64.931832, 18.377978 ], [ -64.931732, 18.377924 ], [ -64.931688, 18.3779 ], [ -64.931613, 18.377851 ], [ -64.931503, 18.3778 ], [ -64.931341, 18.377768 ], [ -64.931293, 18.377764 ], [ -64.931267, 18.377762 ], [ -64.931139, 18.377731 ], [ -64.930999, 18.377633 ], [ -64.930919, 18.377571 ], [ -64.930875, 18.37749 ], [ -64.930856, 18.377477 ], [ -64.930813, 18.377465 ], [ -64.930794, 18.377465 ], [ -64.930832, 18.377496 ], [ -64.930869, 18.377546 ], [ -64.930881, 18.377602 ], [ -64.930863, 18.377633 ], [ -64.930825, 18.377633 ], [ -64.930788, 18.377633 ], [ -64.930738, 18.377602 ], [ -64.930707, 18.37754 ], [ -64.930695, 18.377515 ], [ -64.930658, 18.37749 ], [ -64.930608, 18.377477 ], [ -64.930583, 18.377459 ], [ -64.930552, 18.37744 ], [ -64.930552, 18.37739 ], [ -64.930589, 18.37739 ], [ -64.930645, 18.37739 ], [ -64.930664, 18.37739 ], [ -64.930651, 18.377347 ], [ -64.930633, 18.377291 ], [ -64.930602, 18.377216 ], [ -64.930602, 18.377154 ], [ -64.930614, 18.377105 ], [ -64.930608, 18.377098 ], [ -64.930571, 18.377074 ], [ -64.930571, 18.377055 ], [ -64.930477, 18.377055 ], [ -64.930446, 18.377036 ], [ -64.930428, 18.377005 ], [ -64.930397, 18.376974 ], [ -64.930341, 18.376974 ], [ -64.930285, 18.376974 ], [ -64.930229, 18.376956 ], [ -64.930229, 18.376918 ], [ -64.930328, 18.376893 ], [ -64.930378, 18.376831 ], [ -64.930291, 18.376806 ], [ -64.930285, 18.376732 ], [ -64.930241, 18.376719 ], [ -64.930142, 18.376695 ], [ -64.930105, 18.376688 ], [ -64.930086, 18.376775 ], [ -64.930049, 18.376856 ], [ -64.930024, 18.376943 ], [ -64.929906, 18.37698 ], [ -64.929838, 18.376968 ], [ -64.929775, 18.376893 ], [ -64.929639, 18.376813 ], [ -64.92962, 18.376775 ], [ -64.929477, 18.376726 ], [ -64.929372, 18.376682 ], [ -64.929247, 18.376521 ], [ -64.929173, 18.376452 ], [ -64.929136, 18.376409 ], [ -64.929073, 18.376415 ], [ -64.929136, 18.376527 ], [ -64.929185, 18.37657 ], [ -64.929185, 18.376608 ], [ -64.92921, 18.376632 ], [ -64.929219, 18.376732 ], [ -64.929191, 18.376775 ], [ -64.929167, 18.376819 ], [ -64.929098, 18.376887 ], [ -64.929024, 18.376844 ], [ -64.928968, 18.376844 ], [ -64.928912, 18.376844 ], [ -64.928875, 18.376819 ], [ -64.928806, 18.376813 ], [ -64.92875, 18.376782 ], [ -64.92867, 18.376744 ], [ -64.928589, 18.376726 ], [ -64.928564, 18.376676 ], [ -64.92852, 18.376651 ], [ -64.928477, 18.376639 ], [ -64.928409, 18.376626 ], [ -64.928378, 18.376608 ], [ -64.928329, 18.376477 ], [ -64.928249, 18.376364 ], [ -64.92821, 18.376403 ], [ -64.92816, 18.376427 ], [ -64.92816, 18.376378 ], [ -64.928148, 18.376309 ], [ -64.928129, 18.376291 ], [ -64.928104, 18.376347 ], [ -64.928048, 18.376372 ], [ -64.928017, 18.376285 ], [ -64.92798, 18.376254 ], [ -64.927968, 18.376216 ], [ -64.927955, 18.376154 ], [ -64.927936, 18.376117 ], [ -64.927955, 18.376086 ], [ -64.927912, 18.376055 ], [ -64.927893, 18.376024 ], [ -64.927893, 18.375968 ], [ -64.927874, 18.375949 ], [ -64.927812, 18.375924 ], [ -64.927806, 18.375918 ], [ -64.927806, 18.375899 ], [ -64.927794, 18.375812 ], [ -64.927769, 18.375775 ], [ -64.927731, 18.375794 ], [ -64.9277, 18.375825 ], [ -64.9277, 18.375875 ], [ -64.927694, 18.375918 ], [ -64.927626, 18.375912 ], [ -64.927601, 18.375868 ], [ -64.927601, 18.375806 ], [ -64.927644, 18.375756 ], [ -64.927663, 18.375701 ], [ -64.9277, 18.375657 ], [ -64.927691, 18.375583 ], [ -64.927638, 18.37557 ], [ -64.927601, 18.375545 ], [ -64.927608, 18.375467 ], [ -64.927613, 18.375433 ], [ -64.927553, 18.37539 ], [ -64.92756, 18.375322 ], [ -64.927512, 18.375284 ], [ -64.927496, 18.375252 ], [ -64.927495, 18.375226 ], [ -64.927537, 18.375187 ], [ -64.927518, 18.375128 ], [ -64.927443, 18.375122 ], [ -64.927375, 18.375094 ], [ -64.927331, 18.375072 ], [ -64.927226, 18.375029 ], [ -64.92721, 18.375004 ], [ -64.927189, 18.374967 ], [ -64.927142, 18.374951 ], [ -64.927095, 18.374945 ], [ -64.927074, 18.374951 ], [ -64.927061, 18.374988 ], [ -64.92704, 18.375007 ], [ -64.927021, 18.37501 ], [ -64.927018, 18.375038 ], [ -64.927024, 18.375051 ], [ -64.927059, 18.375098 ], [ -64.927052, 18.375138 ], [ -64.927015, 18.375158 ], [ -64.926948, 18.375156 ], [ -64.926848, 18.375142 ], [ -64.926799, 18.37512 ], [ -64.926735, 18.375125 ], [ -64.926682, 18.37512 ], [ -64.926629, 18.375104 ], [ -64.926601, 18.375091 ], [ -64.926584, 18.375062 ], [ -64.926572, 18.375045 ], [ -64.926563, 18.375043 ], [ -64.926549, 18.375056 ], [ -64.926539, 18.375081 ], [ -64.926532, 18.375106 ], [ -64.926532, 18.375126 ], [ -64.926516, 18.375142 ], [ -64.926485, 18.375139 ], [ -64.926449, 18.375109 ], [ -64.926441, 18.375083 ], [ -64.926445, 18.375048 ], [ -64.926458, 18.37502 ], [ -64.926435, 18.374993 ], [ -64.92638, 18.374996 ], [ -64.926337, 18.375051 ], [ -64.926322, 18.375075 ], [ -64.926296, 18.375072 ], [ -64.92628, 18.37506 ], [ -64.926264, 18.375048 ], [ -64.926251, 18.375059 ], [ -64.926261, 18.375088 ], [ -64.926268, 18.37511 ], [ -64.926289, 18.375155 ], [ -64.926288, 18.375178 ], [ -64.926273, 18.375201 ], [ -64.92625, 18.375216 ], [ -64.926195, 18.375221 ], [ -64.926164, 18.375224 ], [ -64.926139, 18.375204 ], [ -64.926135, 18.375169 ], [ -64.926114, 18.375137 ], [ -64.926088, 18.375135 ], [ -64.926077, 18.375158 ], [ -64.926076, 18.375162 ], [ -64.926055, 18.375169 ], [ -64.925902, 18.375118 ], [ -64.92584, 18.375025 ], [ -64.925753, 18.375013 ], [ -64.925684, 18.375019 ], [ -64.925579, 18.374975 ], [ -64.925554, 18.374888 ], [ -64.925554, 18.374839 ], [ -64.925557, 18.374772 ], [ -64.925554, 18.374677 ], [ -64.925554, 18.374646 ], [ -64.925436, 18.374615 ], [ -64.925417, 18.374553 ], [ -64.92533, 18.374478 ], [ -64.925293, 18.374429 ], [ -64.925162, 18.374385 ], [ -64.925119, 18.37436 ], [ -64.925082, 18.374298 ], [ -64.92502, 18.374279 ], [ -64.924944, 18.374283 ], [ -64.924833, 18.374236 ], [ -64.924822, 18.374186 ], [ -64.924746, 18.374149 ], [ -64.924684, 18.374211 ], [ -64.924647, 18.374211 ], [ -64.924554, 18.374105 ], [ -64.924541, 18.374031 ], [ -64.924492, 18.373888 ], [ -64.924467, 18.373801 ], [ -64.924454, 18.373726 ], [ -64.924535, 18.373664 ], [ -64.92456, 18.373615 ], [ -64.924591, 18.373565 ], [ -64.924591, 18.373546 ], [ -64.924554, 18.373534 ], [ -64.924529, 18.373515 ], [ -64.924492, 18.373478 ], [ -64.924479, 18.373521 ], [ -64.924417, 18.373521 ], [ -64.924349, 18.373521 ], [ -64.92433, 18.373596 ], [ -64.924262, 18.373602 ], [ -64.924206, 18.37359 ], [ -64.924181, 18.373497 ], [ -64.924088, 18.373472 ], [ -64.924044, 18.373434 ], [ -64.923994, 18.373391 ], [ -64.923939, 18.373354 ], [ -64.923901, 18.373285 ], [ -64.923883, 18.373217 ], [ -64.923876, 18.373161 ], [ -64.923814, 18.373124 ], [ -64.923702, 18.373186 ], [ -64.923616, 18.373224 ], [ -64.923504, 18.373192 ], [ -64.923379, 18.373111 ], [ -64.923348, 18.37308 ], [ -64.923386, 18.372981 ], [ -64.923386, 18.37295 ], [ -64.923379, 18.372913 ], [ -64.923317, 18.372906 ], [ -64.92327, 18.372948 ], [ -64.923251, 18.372933 ], [ -64.923169, 18.372867 ], [ -64.923177, 18.37283 ], [ -64.923186, 18.372786 ], [ -64.923137, 18.372751 ], [ -64.923137, 18.372732 ], [ -64.923109, 18.372693 ], [ -64.92309, 18.372663 ], [ -64.923123, 18.372603 ], [ -64.923163, 18.372582 ], [ -64.92317, 18.372509 ], [ -64.923174, 18.372461 ], [ -64.923174, 18.372385 ], [ -64.923192, 18.37229 ], [ -64.923176, 18.37226 ], [ -64.923187, 18.372235 ], [ -64.923174, 18.372211 ], [ -64.923168, 18.372198 ], [ -64.923125, 18.372164 ], [ -64.923131, 18.37213 ], [ -64.923137, 18.372099 ], [ -64.923134, 18.372021 ], [ -64.923112, 18.371987 ], [ -64.9231, 18.371962 ], [ -64.923081, 18.371925 ], [ -64.923133, 18.37192 ], [ -64.923136, 18.371925 ], [ -64.923143, 18.371825 ], [ -64.923168, 18.371788 ], [ -64.923193, 18.371732 ], [ -64.923181, 18.371645 ], [ -64.92315, 18.371645 ], [ -64.923125, 18.371651 ], [ -64.923087, 18.371707 ], [ -64.923038, 18.371738 ], [ -64.923007, 18.371776 ], [ -64.923, 18.371832 ], [ -64.922907, 18.371844 ], [ -64.922876, 18.371844 ], [ -64.922839, 18.371813 ], [ -64.922733, 18.371751 ], [ -64.922696, 18.371726 ], [ -64.922621, 18.371682 ], [ -64.92259, 18.371639 ], [ -64.922547, 18.371596 ], [ -64.922456, 18.371553 ], [ -64.922448, 18.371509 ], [ -64.922448, 18.371446 ], [ -64.922435, 18.371422 ], [ -64.922342, 18.371404 ], [ -64.922277, 18.371327 ], [ -64.922154, 18.371193 ], [ -64.922112, 18.371086 ], [ -64.922, 18.370931 ], [ -64.921895, 18.370838 ], [ -64.921665, 18.370707 ], [ -64.921609, 18.370638 ], [ -64.92159, 18.370552 ], [ -64.921497, 18.370428 ], [ -64.921447, 18.370359 ], [ -64.92136, 18.370254 ], [ -64.921236, 18.370247 ], [ -64.921205, 18.370254 ], [ -64.921186, 18.370285 ], [ -64.921186, 18.370341 ], [ -64.92113, 18.370372 ], [ -64.921081, 18.37039 ], [ -64.921081, 18.370409 ], [ -64.921087, 18.370471 ], [ -64.921062, 18.370496 ], [ -64.921019, 18.370496 ], [ -64.920956, 18.370483 ], [ -64.920919, 18.370483 ], [ -64.920869, 18.370483 ], [ -64.920863, 18.370496 ], [ -64.920745, 18.370496 ], [ -64.920718, 18.370514 ], [ -64.920615, 18.370471 ], [ -64.920546, 18.370434 ], [ -64.920491, 18.370409 ], [ -64.920453, 18.37039 ], [ -64.92041, 18.370372 ], [ -64.920354, 18.370372 ], [ -64.920329, 18.370372 ], [ -64.920292, 18.370365 ], [ -64.920217, 18.370347 ], [ -64.920155, 18.370365 ], [ -64.920063, 18.370358 ], [ -64.920009, 18.370325 ], [ -64.919949, 18.370261 ], [ -64.919931, 18.370234 ], [ -64.919887, 18.37017 ], [ -64.919801, 18.370074 ], [ -64.919754, 18.37002 ], [ -64.919692, 18.369964 ], [ -64.919615, 18.369922 ], [ -64.919526, 18.369916 ], [ -64.919448, 18.369922 ], [ -64.919402, 18.369944 ], [ -64.919332, 18.369929 ], [ -64.919241, 18.369889 ], [ -64.919179, 18.369864 ], [ -64.91905, 18.369812 ], [ -64.918941, 18.369823 ], [ -64.918889, 18.369867 ], [ -64.918831, 18.36995 ], [ -64.918773, 18.369988 ], [ -64.918646, 18.36995 ], [ -64.918531, 18.369861 ], [ -64.918361, 18.36975 ], [ -64.918268, 18.369656 ], [ -64.918156, 18.369557 ], [ -64.918044, 18.369451 ], [ -64.918019, 18.369245 ], [ -64.918, 18.369239 ], [ -64.917983, 18.369211 ], [ -64.917937, 18.3692 ], [ -64.917863, 18.36914 ], [ -64.917783, 18.369035 ], [ -64.917783, 18.368941 ], [ -64.917758, 18.36886 ], [ -64.917646, 18.368773 ], [ -64.917553, 18.368693 ], [ -64.917416, 18.368568 ], [ -64.917335, 18.368568 ], [ -64.91731, 18.368624 ], [ -64.917298, 18.368724 ], [ -64.917273, 18.368798 ], [ -64.917242, 18.368836 ], [ -64.917142, 18.368842 ], [ -64.917092, 18.368817 ], [ -64.917024, 18.368792 ], [ -64.916974, 18.36873 ], [ -64.916912, 18.368693 ], [ -64.916825, 18.368637 ], [ -64.916775, 18.368593 ], [ -64.916726, 18.368581 ], [ -64.916682, 18.368537 ], [ -64.916614, 18.368574 ], [ -64.916533, 18.368587 ], [ -64.916483, 18.368562 ], [ -64.916427, 18.368568 ], [ -64.916334, 18.368563 ], [ -64.916272, 18.368525 ], [ -64.916253, 18.368481 ], [ -64.916172, 18.368456 ], [ -64.916129, 18.368456 ], [ -64.916066, 18.368487 ], [ -64.916017, 18.368456 ], [ -64.915961, 18.3684 ], [ -64.915923, 18.368413 ], [ -64.915905, 18.368456 ], [ -64.915855, 18.368469 ], [ -64.915812, 18.368462 ], [ -64.915756, 18.36845 ], [ -64.915706, 18.368394 ], [ -64.915625, 18.368332 ], [ -64.915581, 18.368282 ], [ -64.915538, 18.36822 ], [ -64.915488, 18.368195 ], [ -64.915407, 18.368195 ], [ -64.915326, 18.368145 ], [ -64.915239, 18.368102 ], [ -64.913827, 18.367346 ], [ -64.91206, 18.366303 ], [ -64.911898, 18.366232 ], [ -64.911818, 18.366138 ], [ -64.9118, 18.366077 ], [ -64.911668, 18.365868 ], [ -64.911575, 18.365807 ], [ -64.911425, 18.365758 ], [ -64.911322, 18.365741 ], [ -64.911295, 18.365744 ], [ -64.911247, 18.365752 ], [ -64.911149, 18.365785 ], [ -64.911045, 18.365813 ], [ -64.910975, 18.365807 ], [ -64.9109, 18.365807 ], [ -64.910815, 18.36584 ], [ -64.910762, 18.365868 ], [ -64.91071, 18.365907 ], [ -64.910624, 18.365918 ], [ -64.910554, 18.365895 ], [ -64.910468, 18.365879 ], [ -64.910335, 18.365868 ], [ -64.910283, 18.365873 ], [ -64.910238, 18.365889 ], [ -64.910226, 18.365923 ], [ -64.910237, 18.365984 ], [ -64.910185, 18.366022 ], [ -64.910053, 18.365967 ], [ -64.909822, 18.365934 ], [ -64.909706, 18.365934 ], [ -64.909614, 18.365939 ], [ -64.909568, 18.365967 ], [ -64.909522, 18.366005 ], [ -64.909435, 18.36605 ], [ -64.909366, 18.366033 ], [ -64.909245, 18.365994 ], [ -64.909032, 18.36589 ], [ -64.90887, 18.36584 ], [ -64.908772, 18.36584 ], [ -64.908639, 18.365884 ], [ -64.908593, 18.365917 ], [ -64.908547, 18.365956 ], [ -64.908478, 18.365967 ], [ -64.908432, 18.365956 ], [ -64.908386, 18.365901 ], [ -64.908282, 18.365824 ], [ -64.90819, 18.365741 ], [ -64.908109, 18.365697 ], [ -64.908016, 18.365664 ], [ -64.90793, 18.365625 ], [ -64.907878, 18.365625 ], [ -64.907815, 18.365642 ], [ -64.907781, 18.365661 ], [ -64.907769, 18.365669 ], [ -64.907755, 18.365696 ], [ -64.907728, 18.365746 ], [ -64.907654, 18.365772 ], [ -64.90759, 18.365719 ], [ -64.907423, 18.365598 ], [ -64.907296, 18.365543 ], [ -64.907163, 18.365521 ], [ -64.907065, 18.365532 ], [ -64.906996, 18.365565 ], [ -64.906903, 18.365537 ], [ -64.906759, 18.365476 ], [ -64.90665, 18.365438 ], [ -64.906635, 18.365434 ], [ -64.906534, 18.365405 ], [ -64.906442, 18.365388 ], [ -64.906373, 18.365361 ], [ -64.906315, 18.365311 ], [ -64.906312, 18.365293 ], [ -64.906304, 18.36524 ], [ -64.906309, 18.365201 ], [ -64.906287, 18.3651 ], [ -64.906205, 18.365058 ], [ -64.906079, 18.365146 ], [ -64.906009, 18.365229 ], [ -64.905952, 18.365344 ], [ -64.905877, 18.365383 ], [ -64.905784, 18.365344 ], [ -64.905732, 18.365289 ], [ -64.90564, 18.365267 ], [ -64.90558, 18.365238 ], [ -64.905571, 18.365234 ], [ -64.905473, 18.365228 ], [ -64.905358, 18.365267 ], [ -64.90526, 18.365289 ], [ -64.905223, 18.36529 ], [ -64.905109, 18.365294 ], [ -64.905039, 18.365283 ], [ -64.904965, 18.365272 ], [ -64.904752, 18.3653 ], [ -64.904642, 18.365283 ], [ -64.904495, 18.365235 ], [ -64.904492, 18.365234 ], [ -64.904337, 18.365206 ], [ -64.904315, 18.365207 ], [ -64.904071, 18.365217 ], [ -64.903933, 18.365294 ], [ -64.903887, 18.365316 ], [ -64.903795, 18.3653 ], [ -64.903679, 18.365184 ], [ -64.90365, 18.365151 ], [ -64.903552, 18.365068 ], [ -64.903535, 18.365024 ], [ -64.903535, 18.36498 ], [ -64.903546, 18.364903 ], [ -64.903547, 18.364854 ], [ -64.903523, 18.364799 ], [ -64.903477, 18.364782 ], [ -64.903431, 18.364793 ], [ -64.903426, 18.364801 ], [ -64.903408, 18.364848 ], [ -64.90335, 18.364958 ], [ -64.903293, 18.365019 ], [ -64.903212, 18.365013 ], [ -64.90312, 18.364969 ], [ -64.90301, 18.364936 ], [ -64.902837, 18.364947 ], [ -64.902785, 18.36492 ], [ -64.902722, 18.364881 ], [ -64.902583, 18.364738 ], [ -64.902474, 18.364683 ], [ -64.902439, 18.364659 ], [ -64.902312, 18.364573 ], [ -64.902285, 18.364503 ], [ -64.902255, 18.364424 ], [ -64.902226, 18.364314 ], [ -64.902209, 18.364198 ], [ -64.902185, 18.36411 ], [ -64.902134, 18.364044 ], [ -64.902059, 18.363994 ], [ -64.901995, 18.364016 ], [ -64.90195, 18.36406 ], [ -64.901851, 18.364055 ], [ -64.901799, 18.364027 ], [ -64.901735, 18.363967 ], [ -64.901666, 18.36389 ], [ -64.901563, 18.363879 ], [ -64.901528, 18.363912 ], [ -64.901476, 18.363917 ], [ -64.901413, 18.36389 ], [ -64.901303, 18.363901 ], [ -64.901228, 18.363917 ], [ -64.901159, 18.363901 ], [ -64.901061, 18.363851 ], [ -64.900945, 18.363801 ], [ -64.900761, 18.36379 ], [ -64.900646, 18.363752 ], [ -64.900594, 18.363691 ], [ -64.900472, 18.363642 ], [ -64.90047, 18.363642 ], [ -64.900426, 18.363603 ], [ -64.900369, 18.363526 ], [ -64.900271, 18.363427 ], [ -64.900215, 18.363386 ], [ -64.900149, 18.363339 ], [ -64.900063, 18.363295 ], [ -64.90004, 18.363267 ], [ -64.900023, 18.363228 ], [ -64.900014, 18.363199 ], [ -64.9, 18.363162 ], [ -64.899948, 18.363124 ], [ -64.899884, 18.363146 ], [ -64.899857, 18.363145 ], [ -64.899769, 18.36314 ], [ -64.899648, 18.363102 ], [ -64.899584, 18.363069 ], [ -64.899539, 18.363095 ], [ -64.899463, 18.363082 ], [ -64.892719, 18.36298 ], [ -64.892654, 18.36298 ], [ -64.892632, 18.362975 ], [ -64.892518, 18.362934 ], [ -64.892457, 18.362897 ], [ -64.892444, 18.362888 ], [ -64.892399, 18.362853 ], [ -64.892349, 18.362835 ], [ -64.892319, 18.362843 ], [ -64.892281, 18.362829 ], [ -64.892146, 18.362762 ], [ -64.892075, 18.362747 ], [ -64.891945, 18.362709 ], [ -64.891898, 18.362682 ], [ -64.89179, 18.362642 ], [ -64.891762, 18.362637 ], [ -64.891724, 18.362616 ], [ -64.891692, 18.362574 ], [ -64.891674, 18.36256 ], [ -64.89164, 18.362517 ], [ -64.891525, 18.362415 ], [ -64.891491, 18.362404 ], [ -64.891426, 18.362379 ], [ -64.891388, 18.36236 ], [ -64.891357, 18.362362 ], [ -64.891243, 18.362331 ], [ -64.891178, 18.362322 ], [ -64.891136, 18.362307 ], [ -64.891106, 18.362272 ], [ -64.891008, 18.362205 ], [ -64.89081, 18.362079 ], [ -64.89077, 18.36207 ], [ -64.890739, 18.362076 ], [ -64.890724, 18.362069 ], [ -64.890674, 18.36204 ], [ -64.886455, 18.358204 ], [ -64.887571, 18.356807 ], [ -64.889435, 18.354476 ], [ -64.889422, 18.353903 ], [ -64.889325, 18.350529 ], [ -64.8893, 18.35051 ], [ -64.88919, 18.35046 ], [ -64.88907, 18.3504 ], [ -64.8889, 18.35026 ], [ -64.888835, 18.3502 ], [ -64.88876, 18.35013 ], [ -64.8885, 18.34994 ], [ -64.888408, 18.349901 ], [ -64.88836, 18.34988 ], [ -64.88817, 18.34979 ], [ -64.888143, 18.349772 ], [ -64.88806, 18.34972 ], [ -64.888322, 18.349791 ], [ -64.888419, 18.349814 ], [ -64.888704, 18.349884 ], [ -64.889406, 18.349949 ], [ -64.889554, 18.349963 ], [ -64.889737, 18.34993 ], [ -64.889739, 18.349945 ], [ -64.889745, 18.34999 ], [ -64.889747, 18.350006 ], [ -64.891166, 18.350253 ], [ -64.891971, 18.350354 ], [ -64.892945, 18.350517 ], [ -64.893483, 18.350582 ], [ -64.893922, 18.350621 ], [ -64.894206, 18.350638 ], [ -64.894979, 18.350508 ], [ -64.89574, 18.350381 ], [ -64.896001, 18.350337 ], [ -64.896462, 18.350202 ], [ -64.897286, 18.349896 ], [ -64.89795, 18.349765 ], [ -64.900232, 18.349316 ], [ -64.900136, 18.349054 ], [ -64.900023, 18.348936 ], [ -64.900261, 18.348767 ], [ -64.900378, 18.348314 ], [ -64.90036, 18.34826 ], [ -64.90049, 18.34821 ], [ -64.90062, 18.34819 ], [ -64.90072, 18.34771 ], [ -64.90072, 18.34769 ], [ -64.900836, 18.347267 ], [ -64.900962, 18.346212 ], [ -64.902145, 18.344891 ], [ -64.90054, 18.344109 ], [ -64.900666, 18.343807 ], [ -64.90081, 18.343466 ], [ -64.901144, 18.343574 ], [ -64.901393, 18.343605 ], [ -64.901602, 18.343627 ], [ -64.901752, 18.343641 ], [ -64.901806, 18.343647 ], [ -64.902139, 18.343684 ], [ -64.902686, 18.343791 ], [ -64.902983, 18.343819 ], [ -64.903076, 18.343846 ], [ -64.903227, 18.343899 ], [ -64.90366, 18.343954 ], [ -64.903808, 18.343994 ], [ -64.904227, 18.343997 ], [ -64.904418, 18.343999 ], [ -64.904694, 18.344011 ], [ -64.904759, 18.344012 ], [ -64.905209, 18.34399 ], [ -64.905502, 18.343969 ], [ -64.905728, 18.343981 ], [ -64.905921, 18.344033 ], [ -64.906113, 18.344112 ], [ -64.906492, 18.344219 ], [ -64.906682, 18.344231 ], [ -64.906793, 18.344228 ], [ -64.907033, 18.344173 ], [ -64.907379, 18.344124 ], [ -64.907568, 18.344106 ], [ -64.90785, 18.344179 ], [ -64.908028, 18.344179 ], [ -64.9082, 18.344179 ], [ -64.908438, 18.344272 ], [ -64.908528, 18.344332 ], [ -64.908677, 18.344431 ], [ -64.909708, 18.344645 ], [ -64.909729, 18.344733 ], [ -64.909732, 18.344742 ], [ -64.910011, 18.346505 ], [ -64.911182, 18.346656 ], [ -64.912856, 18.346894 ], [ -64.914177, 18.346955 ], [ -64.915039, 18.347109 ], [ -64.915906, 18.347649 ], [ -64.917683, 18.34874 ], [ -64.918599, 18.349144 ], [ -64.918882, 18.349453 ], [ -64.91897, 18.34954 ], [ -64.91901, 18.34957 ], [ -64.9191, 18.34961 ], [ -64.91914, 18.34969 ], [ -64.91918, 18.34974 ], [ -64.91927, 18.34977 ], [ -64.919405, 18.349807 ], [ -64.9197, 18.34989 ], [ -64.92014, 18.35003 ], [ -64.92047, 18.35013 ], [ -64.920952, 18.350256 ], [ -64.92136, 18.350362 ], [ -64.921372, 18.350295 ], [ -64.921435, 18.349973 ], [ -64.921841, 18.348303 ], [ -64.921854, 18.348248 ], [ -64.921938, 18.347908 ], [ -64.922977, 18.348028 ], [ -64.923113, 18.348049 ], [ -64.923172, 18.348067 ], [ -64.923322, 18.348065 ], [ -64.923557, 18.348079 ], [ -64.92372, 18.34812 ], [ -64.92407, 18.34817 ], [ -64.925141, 18.348273 ], [ -64.925636, 18.348322 ], [ -64.925859, 18.348342 ], [ -64.92593, 18.34834 ], [ -64.927719, 18.34855 ], [ -64.928884, 18.348672 ], [ -64.9292, 18.348706 ], [ -64.929324, 18.3488 ], [ -64.929512, 18.348739 ], [ -64.930634, 18.348861 ], [ -64.93067, 18.34885 ], [ -64.93079, 18.34878 ], [ -64.930822, 18.348752 ], [ -64.930963, 18.348634 ], [ -64.93098, 18.34862 ], [ -64.931008, 18.348599 ], [ -64.931146, 18.3485 ], [ -64.931194, 18.348468 ], [ -64.931258, 18.348422 ], [ -64.93129, 18.3484 ], [ -64.931454, 18.348292 ], [ -64.93152, 18.34825 ], [ -64.931526, 18.348244 ], [ -64.931544, 18.348229 ], [ -64.931551, 18.348224 ], [ -64.931862, 18.348115 ], [ -64.932253, 18.347979 ], [ -64.932317, 18.347957 ], [ -64.932709, 18.347822 ], [ -64.933758, 18.347467 ], [ -64.934192, 18.34732 ], [ -64.934821, 18.347108 ], [ -64.935395, 18.34692 ], [ -64.935825, 18.346769 ], [ -64.93616, 18.346655 ], [ -64.936897, 18.346407 ], [ -64.937019, 18.346369 ], [ -64.9371, 18.346418 ], [ -64.937188, 18.346456 ], [ -64.937277, 18.346496 ], [ -64.93729, 18.346504 ], [ -64.937343, 18.346536 ], [ -64.937387, 18.346577 ], [ -64.937386, 18.346611 ], [ -64.93733, 18.346646 ], [ -64.93741, 18.346784 ], [ -64.938131, 18.347822 ], [ -64.938569, 18.347754 ], [ -64.939829, 18.347988 ], [ -64.940228, 18.348636 ], [ -64.94031, 18.348896 ], [ -64.940982, 18.35033 ], [ -64.941091, 18.350564 ], [ -64.941283, 18.351586 ], [ -64.941542, 18.352983 ], [ -64.941497, 18.352996 ], [ -64.940848, 18.352923 ], [ -64.940385, 18.352857 ], [ -64.939629, 18.352862 ], [ -64.939312, 18.352853 ], [ -64.93929, 18.352855 ], [ -64.938827, 18.35286 ], [ -64.938826, 18.353203 ], [ -64.938826, 18.353221 ], [ -64.938806, 18.353701 ], [ -64.938857, 18.3541 ], [ -64.938855, 18.35414 ], [ -64.938379, 18.354058 ], [ -64.9381, 18.35401 ], [ -64.93736, 18.35387 ], [ -64.93708, 18.35381 ], [ -64.93696, 18.35376 ], [ -64.936954, 18.353755 ], [ -64.936628, 18.354456 ], [ -64.936526, 18.354679 ], [ -64.93616, 18.3545 ], [ -64.936076, 18.354466 ], [ -64.935788, 18.354348 ], [ -64.934925, 18.353995 ], [ -64.93473, 18.353915 ], [ -64.934638, 18.353878 ], [ -64.93462, 18.35387 ], [ -64.934607, 18.353865 ], [ -64.934516, 18.353829 ], [ -64.934486, 18.353818 ], [ -64.93431, 18.35375 ], [ -64.934236, 18.353729 ], [ -64.93406, 18.35368 ], [ -64.933463, 18.353536 ], [ -64.933205, 18.353475 ], [ -64.9331, 18.35345 ], [ -64.932809, 18.353393 ], [ -64.93269, 18.35337 ], [ -64.93256, 18.3533 ], [ -64.93231, 18.35307 ], [ -64.931859, 18.35267 ], [ -64.93169, 18.35252 ], [ -64.931674, 18.352344 ], [ -64.93157, 18.3525 ], [ -64.93155, 18.35254 ], [ -64.93155, 18.352545 ], [ -64.93155, 18.35258 ], [ -64.93156, 18.35263 ], [ -64.93158, 18.35268 ], [ -64.93162, 18.35275 ], [ -64.931903, 18.353154 ], [ -64.93197, 18.35325 ], [ -64.932021, 18.35336 ], [ -64.932041, 18.353404 ], [ -64.93209, 18.35351 ], [ -64.932097, 18.353541 ], [ -64.932108, 18.35359 ], [ -64.932131, 18.353697 ], [ -64.93215, 18.35378 ], [ -64.932187, 18.353877 ], [ -64.932016, 18.35395 ], [ -64.931725, 18.354887 ], [ -64.93138, 18.35613 ], [ -64.931033, 18.357286 ], [ -64.930165, 18.360186 ], [ -64.930107, 18.360219 ], [ -64.930096, 18.360271 ], [ -64.930102, 18.360302 ], [ -64.930102, 18.360335 ], [ -64.930084, 18.360324 ], [ -64.930038, 18.36034 ], [ -64.929969, 18.360346 ], [ -64.929894, 18.360335 ], [ -64.929831, 18.360307 ], [ -64.92972, 18.360267 ], [ -64.929663, 18.360247 ], [ -64.929577, 18.360192 ], [ -64.929513, 18.360136 ], [ -64.929386, 18.360043 ], [ -64.9293, 18.360015 ], [ -64.929035, 18.359949 ], [ -64.928948, 18.359889 ], [ -64.928857, 18.359778 ], [ -64.928822, 18.359726 ], [ -64.928781, 18.359663 ], [ -64.928718, 18.359531 ], [ -64.928637, 18.359382 ], [ -64.928521, 18.359266 ], [ -64.928384, 18.359146 ], [ -64.928273, 18.359013 ], [ -64.928147, 18.358914 ], [ -64.927962, 18.358842 ], [ -64.927795, 18.358782 ], [ -64.927656, 18.358771 ], [ -64.927564, 18.358793 ], [ -64.927454, 18.358798 ], [ -64.927299, 18.358826 ], [ -64.92719, 18.358869 ], [ -64.927016, 18.358952 ], [ -64.926826, 18.359052 ], [ -64.926635, 18.359178 ], [ -64.926445, 18.359294 ], [ -64.926255, 18.35942 ], [ -64.926041, 18.359569 ], [ -64.925881, 18.359711 ], [ -64.925807, 18.359779 ], [ -64.925661, 18.359916 ], [ -64.925424, 18.360124 ], [ -64.925299, 18.360255 ], [ -64.925193, 18.360368 ], [ -64.92498, 18.360659 ], [ -64.924616, 18.361169 ], [ -64.924524, 18.361298 ], [ -64.924311, 18.361623 ], [ -64.924139, 18.361915 ], [ -64.923965, 18.362285 ], [ -64.923867, 18.362543 ], [ -64.923835, 18.362606 ], [ -64.923752, 18.362784 ], [ -64.9237, 18.362967 ], [ -64.923613, 18.363099 ], [ -64.923526, 18.36322 ], [ -64.923405, 18.363363 ], [ -64.92329, 18.363522 ], [ -64.922991, 18.36386 ], [ -64.922806, 18.364129 ], [ -64.922667, 18.364322 ], [ -64.922569, 18.364476 ], [ -64.922529, 18.364597 ], [ -64.92242, 18.364773 ], [ -64.92235, 18.364867 ], [ -64.922252, 18.365048 ], [ -64.922073, 18.365401 ], [ -64.922016, 18.365658 ], [ -64.922027, 18.365775 ], [ -64.922027, 18.365919 ], [ -64.922033, 18.365983 ], [ -64.921992, 18.366056 ], [ -64.922038, 18.366199 ], [ -64.922096, 18.366326 ], [ -64.922177, 18.366458 ], [ -64.922188, 18.366475 ], [ -64.922332, 18.366623 ], [ -64.922489, 18.36681 ], [ -64.922748, 18.367147 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "78", "COUNTYFP10": "030", "TRACTCE10": "960100", "GEOID10": "78030960100", "NAME10": "9601", "NAMELSAD10": "Census Tract 9601", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 6095830, "AWATER10": 2729151, "INTPTLAT10": "+18.3490494", "INTPTLON10": "-064.8657330" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.845264, 18.336972 ], [ -64.845245, 18.336999 ], [ -64.845236, 18.337024 ], [ -64.845211, 18.337041 ], [ -64.845203, 18.337074 ], [ -64.845198, 18.337091 ], [ -64.845175, 18.337102 ], [ -64.845164, 18.337116 ], [ -64.845156, 18.337144 ], [ -64.845142, 18.337171 ], [ -64.84512, 18.337146 ], [ -64.845112, 18.337141 ], [ -64.845095, 18.337169 ], [ -64.845095, 18.337196 ], [ -64.845103, 18.337243 ], [ -64.845103, 18.337266 ], [ -64.845059, 18.337268 ], [ -64.845039, 18.337277 ], [ -64.845051, 18.337296 ], [ -64.845048, 18.337332 ], [ -64.845017, 18.33734 ], [ -64.844995, 18.337338 ], [ -64.844976, 18.337349 ], [ -64.844948, 18.337338 ], [ -64.844917, 18.337335 ], [ -64.84492, 18.337349 ], [ -64.844931, 18.337379 ], [ -64.844948, 18.337399 ], [ -64.844931, 18.337399 ], [ -64.844926, 18.337415 ], [ -64.844906, 18.337418 ], [ -64.844879, 18.337399 ], [ -64.844851, 18.337368 ], [ -64.844818, 18.33734 ], [ -64.844807, 18.337343 ], [ -64.844812, 18.337388 ], [ -64.844812, 18.337421 ], [ -64.844768, 18.337407 ], [ -64.844732, 18.337399 ], [ -64.844723, 18.337438 ], [ -64.844704, 18.337468 ], [ -64.844685, 18.337482 ], [ -64.844693, 18.337512 ], [ -64.844723, 18.337529 ], [ -64.844721, 18.33756 ], [ -64.844679, 18.33756 ], [ -64.844643, 18.33756 ], [ -64.844604, 18.337554 ], [ -64.844585, 18.337521 ], [ -64.844546, 18.337548 ], [ -64.844513, 18.337548 ], [ -64.844493, 18.337554 ], [ -64.844493, 18.33759 ], [ -64.84449, 18.337607 ], [ -64.844468, 18.337612 ], [ -64.844468, 18.337623 ], [ -64.844449, 18.337637 ], [ -64.84441, 18.33764 ], [ -64.844385, 18.337645 ], [ -64.844341, 18.337651 ], [ -64.844316, 18.33764 ], [ -64.844307, 18.337657 ], [ -64.844271, 18.337662 ], [ -64.84423, 18.337665 ], [ -64.844194, 18.337659 ], [ -64.844158, 18.337626 ], [ -64.844155, 18.337607 ], [ -64.844141, 18.337618 ], [ -64.844086, 18.337601 ], [ -64.844072, 18.337537 ], [ -64.844111, 18.337496 ], [ -64.844174, 18.337496 ], [ -64.844235, 18.337496 ], [ -64.844258, 18.337462 ], [ -64.844277, 18.337399 ], [ -64.844282, 18.337377 ], [ -64.844282, 18.337332 ], [ -64.844324, 18.337304 ], [ -64.844357, 18.337293 ], [ -64.844405, 18.337274 ], [ -64.84441, 18.337235 ], [ -64.844466, 18.337224 ], [ -64.844524, 18.337188 ], [ -64.84464, 18.337152 ], [ -64.844701, 18.337116 ], [ -64.844795, 18.337085 ], [ -64.844901, 18.337016 ], [ -64.84497, 18.336972 ], [ -64.845078, 18.336919 ], [ -64.845156, 18.336919 ], [ -64.845247, 18.33693 ], [ -64.845264, 18.336972 ] ] ], [ [ [ -64.858458, 18.346527 ], [ -64.858391, 18.346566 ], [ -64.858304, 18.346546 ], [ -64.858429, 18.346411 ], [ -64.858458, 18.346527 ] ] ], [ [ [ -64.876463, 18.360779 ], [ -64.876433, 18.360791 ], [ -64.876251, 18.360872 ], [ -64.876058, 18.360943 ], [ -64.875891, 18.360889 ], [ -64.87579, 18.360775 ], [ -64.876018, 18.360558 ], [ -64.876125, 18.360527 ], [ -64.876181, 18.360525 ], [ -64.876348, 18.360521 ], [ -64.876453, 18.36067 ], [ -64.876463, 18.360779 ] ] ], [ [ [ -64.889435, 18.354476 ], [ -64.887571, 18.356807 ], [ -64.886455, 18.358204 ], [ -64.883886, 18.355868 ], [ -64.883834, 18.355846 ], [ -64.883783, 18.355813 ], [ -64.883702, 18.355752 ], [ -64.883685, 18.355714 ], [ -64.883667, 18.355631 ], [ -64.883697, 18.355582 ], [ -64.883704, 18.355532 ], [ -64.883679, 18.355493 ], [ -64.883621, 18.355449 ], [ -64.883587, 18.355416 ], [ -64.883581, 18.355366 ], [ -64.883581, 18.355333 ], [ -64.883606, 18.355281 ], [ -64.883655, 18.355244 ], [ -64.883679, 18.355212 ], [ -64.883663, 18.355161 ], [ -64.883604, 18.355124 ], [ -64.88357, 18.35509 ], [ -64.883479, 18.355057 ], [ -64.883443, 18.355036 ], [ -64.883408, 18.354986 ], [ -64.883352, 18.354979 ], [ -64.883266, 18.354984 ], [ -64.883223, 18.354997 ], [ -64.883189, 18.354997 ], [ -64.883056, 18.355039 ], [ -64.882998, 18.355047 ], [ -64.882952, 18.355045 ], [ -64.882883, 18.355061 ], [ -64.882745, 18.355074 ], [ -64.8827, 18.355071 ], [ -64.882658, 18.355074 ], [ -64.882525, 18.355063 ], [ -64.882486, 18.355044 ], [ -64.882439, 18.35503 ], [ -64.882388, 18.354993 ], [ -64.882352, 18.354975 ], [ -64.8823, 18.354975 ], [ -64.882251, 18.354985 ], [ -64.882137, 18.355005 ], [ -64.881997, 18.35501 ], [ -64.881966, 18.355077 ], [ -64.881949, 18.355107 ], [ -64.881899, 18.355128 ], [ -64.881868, 18.355162 ], [ -64.881818, 18.355177 ], [ -64.88173, 18.355179 ], [ -64.881643, 18.355157 ], [ -64.881591, 18.355129 ], [ -64.88147, 18.355052 ], [ -64.881384, 18.355016 ], [ -64.88134, 18.355012 ], [ -64.881303, 18.355013 ], [ -64.881247, 18.355006 ], [ -64.881165, 18.355005 ], [ -64.88116, 18.355005 ], [ -64.881034, 18.354979 ], [ -64.880922, 18.354964 ], [ -64.88087, 18.354947 ], [ -64.88082, 18.354945 ], [ -64.88074, 18.354928 ], [ -64.880686, 18.354903 ], [ -64.880553, 18.354854 ], [ -64.880513, 18.354832 ], [ -64.880461, 18.35481 ], [ -64.880374, 18.354765 ], [ -64.880272, 18.354691 ], [ -64.880207, 18.354666 ], [ -64.88014, 18.354677 ], [ -64.880107, 18.354695 ], [ -64.880051, 18.354694 ], [ -64.880016, 18.354673 ], [ -64.879846, 18.354609 ], [ -64.879809, 18.354606 ], [ -64.879769, 18.354587 ], [ -64.879699, 18.354561 ], [ -64.879697, 18.354556 ], [ -64.876029, 18.360444 ], [ -64.876058, 18.360481 ], [ -64.876064, 18.360508 ], [ -64.876018, 18.360558 ], [ -64.875937, 18.360628 ], [ -64.875864, 18.360661 ], [ -64.875828, 18.360685 ], [ -64.875793, 18.360694 ], [ -64.875707, 18.360723 ], [ -64.875672, 18.360727 ], [ -64.875557, 18.360778 ], [ -64.875513, 18.360793 ], [ -64.875466, 18.360798 ], [ -64.87543, 18.360817 ], [ -64.875395, 18.36082 ], [ -64.875236, 18.360871 ], [ -64.875199, 18.360878 ], [ -64.875149, 18.360896 ], [ -64.875118, 18.360916 ], [ -64.875086, 18.360908 ], [ -64.875049, 18.360911 ], [ -64.874812, 18.360867 ], [ -64.874686, 18.360828 ], [ -64.874611, 18.360817 ], [ -64.874585, 18.360818 ], [ -64.874565, 18.360814 ], [ -64.874401, 18.360773 ], [ -64.874367, 18.360774 ], [ -64.874331, 18.360763 ], [ -64.874287, 18.360759 ], [ -64.874212, 18.36074 ], [ -64.874119, 18.360734 ], [ -64.874078, 18.360724 ], [ -64.874055, 18.360697 ], [ -64.874044, 18.360654 ], [ -64.873985, 18.360625 ], [ -64.873842, 18.360624 ], [ -64.873709, 18.360648 ], [ -64.873571, 18.360643 ], [ -64.873495, 18.360626 ], [ -64.873444, 18.360626 ], [ -64.873375, 18.360615 ], [ -64.873334, 18.360615 ], [ -64.873299, 18.360604 ], [ -64.873248, 18.360599 ], [ -64.873212, 18.360604 ], [ -64.873149, 18.360598 ], [ -64.873092, 18.360609 ], [ -64.873057, 18.360604 ], [ -64.873023, 18.360614 ], [ -64.872891, 18.360636 ], [ -64.87282, 18.36067 ], [ -64.872775, 18.360702 ], [ -64.872676, 18.360742 ], [ -64.872579, 18.360786 ], [ -64.87251, 18.360795 ], [ -64.872418, 18.360792 ], [ -64.872382, 18.360775 ], [ -64.872331, 18.360759 ], [ -64.872239, 18.360681 ], [ -64.872151, 18.360648 ], [ -64.871996, 18.360615 ], [ -64.871921, 18.360621 ], [ -64.871875, 18.360621 ], [ -64.871783, 18.360632 ], [ -64.871748, 18.360648 ], [ -64.871632, 18.360681 ], [ -64.871587, 18.36068 ], [ -64.871557, 18.360692 ], [ -64.871443, 18.360709 ], [ -64.871355, 18.36073 ], [ -64.87128, 18.360742 ], [ -64.871246, 18.360753 ], [ -64.871195, 18.360763 ], [ -64.871079, 18.360803 ], [ -64.871044, 18.360825 ], [ -64.870998, 18.360847 ], [ -64.870953, 18.360863 ], [ -64.870837, 18.360934 ], [ -64.870768, 18.360962 ], [ -64.870681, 18.360978 ], [ -64.870646, 18.360996 ], [ -64.870606, 18.361023 ], [ -64.870566, 18.361072 ], [ -64.87052, 18.361138 ], [ -64.870462, 18.361199 ], [ -64.870445, 18.361231 ], [ -64.870421, 18.361365 ], [ -64.870398, 18.361469 ], [ -64.870371, 18.361519 ], [ -64.870346, 18.361552 ], [ -64.870336, 18.36158 ], [ -64.870312, 18.361612 ], [ -64.870284, 18.361662 ], [ -64.870254, 18.36169 ], [ -64.87022, 18.361712 ], [ -64.870157, 18.36174 ], [ -64.870139, 18.361772 ], [ -64.870127, 18.361805 ], [ -64.870127, 18.361838 ], [ -64.870168, 18.361888 ], [ -64.870214, 18.361959 ], [ -64.870231, 18.361998 ], [ -64.870272, 18.36207 ], [ -64.870278, 18.362107 ], [ -64.8703, 18.36218 ], [ -64.870319, 18.362301 ], [ -64.870335, 18.362461 ], [ -64.870329, 18.362527 ], [ -64.870335, 18.362563 ], [ -64.870336, 18.36261 ], [ -64.870341, 18.362642 ], [ -64.870353, 18.362675 ], [ -64.870393, 18.362725 ], [ -64.870427, 18.362758 ], [ -64.870475, 18.362824 ], [ -64.870492, 18.362918 ], [ -64.870491, 18.362956 ], [ -64.870498, 18.362996 ], [ -64.870508, 18.363028 ], [ -64.870526, 18.363061 ], [ -64.870578, 18.363094 ], [ -64.870641, 18.363126 ], [ -64.870665, 18.363139 ], [ -64.870692, 18.363161 ], [ -64.87074, 18.363199 ], [ -64.870785, 18.363243 ], [ -64.870803, 18.363276 ], [ -64.870826, 18.363342 ], [ -64.870827, 18.363392 ], [ -64.870757, 18.363413 ], [ -64.870664, 18.363391 ], [ -64.870607, 18.363386 ], [ -64.870433, 18.363342 ], [ -64.870342, 18.363332 ], [ -64.870273, 18.363305 ], [ -64.870237, 18.363303 ], [ -64.870198, 18.363288 ], [ -64.870128, 18.36327 ], [ -64.870088, 18.363248 ], [ -64.870036, 18.363244 ], [ -64.869967, 18.363222 ], [ -64.869909, 18.363194 ], [ -64.86977, 18.363138 ], [ -64.869719, 18.363105 ], [ -64.869673, 18.36309 ], [ -64.869488, 18.36295 ], [ -64.869442, 18.362925 ], [ -64.869396, 18.362886 ], [ -64.869361, 18.362863 ], [ -64.869316, 18.362813 ], [ -64.869246, 18.362774 ], [ -64.86916, 18.362764 ], [ -64.869049, 18.362764 ], [ -64.86898, 18.362736 ], [ -64.868934, 18.362671 ], [ -64.868929, 18.362622 ], [ -64.868934, 18.362554 ], [ -64.868951, 18.362522 ], [ -64.868961, 18.362478 ], [ -64.869016, 18.362369 ], [ -64.86906, 18.362279 ], [ -64.869113, 18.362218 ], [ -64.869118, 18.362186 ], [ -64.869164, 18.362103 ], [ -64.869188, 18.36207 ], [ -64.869204, 18.36202 ], [ -64.869199, 18.361987 ], [ -64.8692, 18.361955 ], [ -64.869187, 18.361921 ], [ -64.869067, 18.361861 ], [ -64.868911, 18.361816 ], [ -64.868876, 18.361811 ], [ -64.868795, 18.361784 ], [ -64.868754, 18.361762 ], [ -64.868681, 18.36171 ], [ -64.868594, 18.361656 ], [ -64.868558, 18.361652 ], [ -64.868524, 18.361657 ], [ -64.868467, 18.361691 ], [ -64.868391, 18.361652 ], [ -64.868346, 18.361613 ], [ -64.868248, 18.361515 ], [ -64.868212, 18.361492 ], [ -64.868155, 18.361464 ], [ -64.86797, 18.361443 ], [ -64.86793, 18.361426 ], [ -64.867879, 18.361387 ], [ -64.867791, 18.361284 ], [ -64.867756, 18.361261 ], [ -64.867723, 18.36126 ], [ -64.867653, 18.36125 ], [ -64.867365, 18.361189 ], [ -64.867324, 18.36119 ], [ -64.86729, 18.361172 ], [ -64.867174, 18.361134 ], [ -64.867122, 18.361101 ], [ -64.867012, 18.361052 ], [ -64.866971, 18.361046 ], [ -64.866937, 18.361035 ], [ -64.866886, 18.361029 ], [ -64.866811, 18.36103 ], [ -64.866724, 18.361038 ], [ -64.866568, 18.361041 ], [ -64.866423, 18.361 ], [ -64.866263, 18.360952 ], [ -64.866177, 18.360921 ], [ -64.866107, 18.360904 ], [ -64.866055, 18.360909 ], [ -64.866004, 18.36092 ], [ -64.865974, 18.360948 ], [ -64.865945, 18.361014 ], [ -64.865893, 18.360992 ], [ -64.865865, 18.360964 ], [ -64.865847, 18.360931 ], [ -64.865813, 18.360886 ], [ -64.865726, 18.360854 ], [ -64.865715, 18.360821 ], [ -64.86571, 18.360761 ], [ -64.865663, 18.36075 ], [ -64.865537, 18.360733 ], [ -64.865496, 18.360695 ], [ -64.865455, 18.360639 ], [ -64.865432, 18.360595 ], [ -64.865427, 18.360528 ], [ -64.865409, 18.360496 ], [ -64.865335, 18.360414 ], [ -64.865224, 18.360375 ], [ -64.865173, 18.36038 ], [ -64.865138, 18.360392 ], [ -64.865098, 18.36043 ], [ -64.865017, 18.360496 ], [ -64.864976, 18.36054 ], [ -64.864942, 18.360567 ], [ -64.864907, 18.360584 ], [ -64.864867, 18.36059 ], [ -64.864816, 18.360561 ], [ -64.864745, 18.360491 ], [ -64.864706, 18.360468 ], [ -64.864631, 18.360457 ], [ -64.864596, 18.360469 ], [ -64.864503, 18.360474 ], [ -64.864446, 18.360508 ], [ -64.864418, 18.360545 ], [ -64.864411, 18.360579 ], [ -64.864418, 18.360629 ], [ -64.864394, 18.360656 ], [ -64.864354, 18.360661 ], [ -64.864319, 18.360673 ], [ -64.864279, 18.360673 ], [ -64.864169, 18.360645 ], [ -64.864112, 18.360641 ], [ -64.864076, 18.360629 ], [ -64.864043, 18.360628 ], [ -64.864007, 18.360618 ], [ -64.863968, 18.360613 ], [ -64.863886, 18.36059 ], [ -64.863846, 18.36059 ], [ -64.863759, 18.360579 ], [ -64.86365, 18.360579 ], [ -64.863599, 18.360569 ], [ -64.863557, 18.360568 ], [ -64.863448, 18.360545 ], [ -64.863374, 18.360542 ], [ -64.8632, 18.360508 ], [ -64.863166, 18.360508 ], [ -64.863125, 18.360502 ], [ -64.86305, 18.360486 ], [ -64.862894, 18.360514 ], [ -64.862831, 18.360497 ], [ -64.862813, 18.360469 ], [ -64.862842, 18.36042 ], [ -64.862848, 18.360387 ], [ -64.862808, 18.360371 ], [ -64.862767, 18.36037 ], [ -64.862727, 18.360376 ], [ -64.862692, 18.360376 ], [ -64.862641, 18.360382 ], [ -64.862606, 18.360381 ], [ -64.862572, 18.360391 ], [ -64.862491, 18.360392 ], [ -64.862421, 18.360381 ], [ -64.86237, 18.360382 ], [ -64.862335, 18.36037 ], [ -64.8623, 18.360365 ], [ -64.862248, 18.360387 ], [ -64.86222, 18.36042 ], [ -64.862156, 18.360398 ], [ -64.862145, 18.360348 ], [ -64.862144, 18.360315 ], [ -64.862151, 18.360283 ], [ -64.862138, 18.360249 ], [ -64.862104, 18.360233 ], [ -64.862053, 18.360223 ], [ -64.861983, 18.360216 ], [ -64.861908, 18.360199 ], [ -64.861867, 18.360194 ], [ -64.861816, 18.360177 ], [ -64.861746, 18.360167 ], [ -64.861671, 18.360139 ], [ -64.861626, 18.360127 ], [ -64.861539, 18.360094 ], [ -64.86143, 18.360084 ], [ -64.861354, 18.360085 ], [ -64.861308, 18.360074 ], [ -64.861268, 18.360071 ], [ -64.861182, 18.360069 ], [ -64.861146, 18.360074 ], [ -64.861025, 18.360099 ], [ -64.860944, 18.360112 ], [ -64.860909, 18.360129 ], [ -64.860869, 18.36014 ], [ -64.86083, 18.36014 ], [ -64.860794, 18.360145 ], [ -64.860761, 18.36014 ], [ -64.860725, 18.36014 ], [ -64.860588, 18.360129 ], [ -64.860483, 18.360101 ], [ -64.860271, 18.360007 ], [ -64.860235, 18.360002 ], [ -64.860206, 18.35998 ], [ -64.860166, 18.359958 ], [ -64.860039, 18.359908 ], [ -64.859878, 18.359864 ], [ -64.859843, 18.359865 ], [ -64.859786, 18.359877 ], [ -64.859722, 18.359914 ], [ -64.859635, 18.35998 ], [ -64.859595, 18.359997 ], [ -64.85952, 18.360062 ], [ -64.859479, 18.360107 ], [ -64.859376, 18.360201 ], [ -64.859324, 18.360233 ], [ -64.859208, 18.360267 ], [ -64.859139, 18.360294 ], [ -64.859099, 18.360294 ], [ -64.859047, 18.360288 ], [ -64.858937, 18.360303 ], [ -64.858753, 18.360306 ], [ -64.858505, 18.360327 ], [ -64.858418, 18.360314 ], [ -64.858333, 18.360311 ], [ -64.858297, 18.360322 ], [ -64.858263, 18.360323 ], [ -64.858222, 18.360317 ], [ -64.858136, 18.360317 ], [ -64.85809, 18.360284 ], [ -64.858084, 18.360251 ], [ -64.858067, 18.360201 ], [ -64.858026, 18.360146 ], [ -64.857986, 18.360107 ], [ -64.857939, 18.360069 ], [ -64.857859, 18.360008 ], [ -64.857813, 18.359998 ], [ -64.857778, 18.359985 ], [ -64.857703, 18.359959 ], [ -64.857663, 18.359936 ], [ -64.857594, 18.359921 ], [ -64.857559, 18.359898 ], [ -64.857502, 18.359872 ], [ -64.857426, 18.359866 ], [ -64.857322, 18.35981 ], [ -64.857293, 18.359777 ], [ -64.857276, 18.359744 ], [ -64.857231, 18.359705 ], [ -64.857161, 18.359678 ], [ -64.857102, 18.359672 ], [ -64.857068, 18.359662 ], [ -64.857034, 18.359666 ], [ -64.856959, 18.359683 ], [ -64.856797, 18.359766 ], [ -64.856728, 18.359838 ], [ -64.856682, 18.359965 ], [ -64.856631, 18.359993 ], [ -64.856556, 18.360003 ], [ -64.85633, 18.360053 ], [ -64.856279, 18.360069 ], [ -64.856198, 18.36007 ], [ -64.856163, 18.360064 ], [ -64.856055, 18.360059 ], [ -64.856013, 18.360064 ], [ -64.855961, 18.360063 ], [ -64.855881, 18.360075 ], [ -64.855806, 18.360096 ], [ -64.855766, 18.360115 ], [ -64.855655, 18.360152 ], [ -64.85561, 18.360152 ], [ -64.855523, 18.36018 ], [ -64.855494, 18.360196 ], [ -64.855454, 18.360207 ], [ -64.855379, 18.360235 ], [ -64.855131, 18.360267 ], [ -64.855096, 18.360262 ], [ -64.855027, 18.360229 ], [ -64.854975, 18.360235 ], [ -64.854906, 18.360263 ], [ -64.854744, 18.360312 ], [ -64.854704, 18.360317 ], [ -64.854588, 18.360351 ], [ -64.854555, 18.36035 ], [ -64.854513, 18.360356 ], [ -64.854427, 18.360334 ], [ -64.854341, 18.36028 ], [ -64.8543, 18.360274 ], [ -64.854191, 18.360306 ], [ -64.854173, 18.36034 ], [ -64.854185, 18.360455 ], [ -64.854162, 18.36051 ], [ -64.854092, 18.360516 ], [ -64.853995, 18.36055 ], [ -64.853908, 18.360566 ], [ -64.853868, 18.360583 ], [ -64.853804, 18.360621 ], [ -64.853798, 18.360654 ], [ -64.853821, 18.360687 ], [ -64.853856, 18.360687 ], [ -64.853891, 18.360698 ], [ -64.853943, 18.360726 ], [ -64.853983, 18.360736 ], [ -64.854024, 18.360764 ], [ -64.854058, 18.360775 ], [ -64.854069, 18.360805 ], [ -64.854058, 18.360841 ], [ -64.854029, 18.36088 ], [ -64.853983, 18.360957 ], [ -64.853972, 18.360998 ], [ -64.853977, 18.361034 ], [ -64.853966, 18.361116 ], [ -64.853983, 18.361155 ], [ -64.853989, 18.361188 ], [ -64.854012, 18.361221 ], [ -64.854064, 18.361276 ], [ -64.854197, 18.361363 ], [ -64.85422, 18.361397 ], [ -64.854244, 18.361446 ], [ -64.854256, 18.361521 ], [ -64.854271, 18.361551 ], [ -64.854272, 18.361617 ], [ -64.85426, 18.361656 ], [ -64.854248, 18.361751 ], [ -64.854237, 18.361783 ], [ -64.854163, 18.36186 ], [ -64.854093, 18.361888 ], [ -64.854052, 18.361898 ], [ -64.854012, 18.361915 ], [ -64.85392, 18.361932 ], [ -64.853886, 18.361949 ], [ -64.853845, 18.361959 ], [ -64.853811, 18.361981 ], [ -64.853776, 18.361992 ], [ -64.853725, 18.36202 ], [ -64.853701, 18.362047 ], [ -64.85369, 18.362079 ], [ -64.853712, 18.362129 ], [ -64.853735, 18.362163 ], [ -64.853747, 18.362196 ], [ -64.85377, 18.362229 ], [ -64.853799, 18.362306 ], [ -64.853799, 18.362422 ], [ -64.853788, 18.362472 ], [ -64.85377, 18.362621 ], [ -64.85377, 18.362653 ], [ -64.853765, 18.362686 ], [ -64.853747, 18.362736 ], [ -64.853737, 18.362806 ], [ -64.853736, 18.362846 ], [ -64.853725, 18.362879 ], [ -64.853735, 18.362962 ], [ -64.85373, 18.363 ], [ -64.853707, 18.363055 ], [ -64.853655, 18.363044 ], [ -64.853614, 18.363006 ], [ -64.853586, 18.362961 ], [ -64.853556, 18.362928 ], [ -64.853511, 18.362895 ], [ -64.8535, 18.362868 ], [ -64.853465, 18.362791 ], [ -64.853419, 18.362764 ], [ -64.853442, 18.362692 ], [ -64.853436, 18.362642 ], [ -64.853436, 18.362609 ], [ -64.85343, 18.362577 ], [ -64.853413, 18.362527 ], [ -64.853384, 18.362494 ], [ -64.853349, 18.362466 ], [ -64.853296, 18.362449 ], [ -64.853262, 18.362427 ], [ -64.853228, 18.362422 ], [ -64.853176, 18.362405 ], [ -64.853136, 18.362372 ], [ -64.853133, 18.362368 ], [ -64.853101, 18.362329 ], [ -64.853073, 18.362262 ], [ -64.853072, 18.362229 ], [ -64.853061, 18.36218 ], [ -64.853037, 18.362108 ], [ -64.853003, 18.361887 ], [ -64.853008, 18.361827 ], [ -64.853008, 18.361772 ], [ -64.853003, 18.361739 ], [ -64.852968, 18.361673 ], [ -64.852945, 18.361645 ], [ -64.852911, 18.361617 ], [ -64.852888, 18.36159 ], [ -64.852835, 18.361524 ], [ -64.852801, 18.361508 ], [ -64.85272, 18.361436 ], [ -64.852692, 18.361387 ], [ -64.852639, 18.361315 ], [ -64.852656, 18.361282 ], [ -64.852656, 18.361199 ], [ -64.852662, 18.361166 ], [ -64.852674, 18.361134 ], [ -64.852698, 18.361095 ], [ -64.852697, 18.361062 ], [ -64.852703, 18.361012 ], [ -64.852697, 18.360979 ], [ -64.852709, 18.360946 ], [ -64.852731, 18.360902 ], [ -64.852754, 18.360874 ], [ -64.852801, 18.360841 ], [ -64.852829, 18.360814 ], [ -64.852882, 18.360798 ], [ -64.852916, 18.360781 ], [ -64.852939, 18.360747 ], [ -64.85295, 18.360715 ], [ -64.85295, 18.360685 ], [ -64.85294, 18.360632 ], [ -64.852945, 18.360599 ], [ -64.852968, 18.360566 ], [ -64.85296, 18.360522 ], [ -64.852927, 18.360516 ], [ -64.852858, 18.360539 ], [ -64.852709, 18.360549 ], [ -64.85261, 18.360561 ], [ -64.852582, 18.360554 ], [ -64.852489, 18.360549 ], [ -64.852379, 18.360517 ], [ -64.852351, 18.360495 ], [ -64.852293, 18.360478 ], [ -64.852172, 18.360379 ], [ -64.852131, 18.360335 ], [ -64.852086, 18.360351 ], [ -64.852056, 18.360373 ], [ -64.852028, 18.360402 ], [ -64.852011, 18.360452 ], [ -64.85201, 18.360484 ], [ -64.852, 18.360517 ], [ -64.851969, 18.360568 ], [ -64.851958, 18.360599 ], [ -64.851924, 18.360626 ], [ -64.851861, 18.360704 ], [ -64.85178, 18.360765 ], [ -64.851744, 18.360779 ], [ -64.85159, 18.360831 ], [ -64.851521, 18.36087 ], [ -64.851491, 18.360897 ], [ -64.851451, 18.361013 ], [ -64.851445, 18.361047 ], [ -64.851428, 18.361079 ], [ -64.851399, 18.361101 ], [ -64.851342, 18.361118 ], [ -64.851307, 18.361117 ], [ -64.851273, 18.361123 ], [ -64.851238, 18.361117 ], [ -64.851186, 18.361117 ], [ -64.851116, 18.361123 ], [ -64.851047, 18.361112 ], [ -64.851002, 18.361112 ], [ -64.850909, 18.361117 ], [ -64.85084, 18.361117 ], [ -64.850759, 18.361101 ], [ -64.850726, 18.361085 ], [ -64.850638, 18.361068 ], [ -64.850603, 18.361068 ], [ -64.850516, 18.36104 ], [ -64.850447, 18.360974 ], [ -64.850436, 18.360926 ], [ -64.850441, 18.360892 ], [ -64.850442, 18.360842 ], [ -64.850391, 18.360815 ], [ -64.850286, 18.360781 ], [ -64.850165, 18.360765 ], [ -64.850004, 18.360753 ], [ -64.849889, 18.360721 ], [ -64.849773, 18.360704 ], [ -64.849646, 18.360666 ], [ -64.849618, 18.360649 ], [ -64.849565, 18.360633 ], [ -64.849478, 18.360589 ], [ -64.849433, 18.360562 ], [ -64.849276, 18.360341 ], [ -64.849219, 18.360225 ], [ -64.84919, 18.360143 ], [ -64.849167, 18.360115 ], [ -64.849149, 18.360082 ], [ -64.849126, 18.360027 ], [ -64.849086, 18.359956 ], [ -64.84904, 18.359912 ], [ -64.848965, 18.359873 ], [ -64.84893, 18.359846 ], [ -64.848913, 18.359818 ], [ -64.848884, 18.359735 ], [ -64.848838, 18.359697 ], [ -64.848809, 18.359658 ], [ -64.848758, 18.359609 ], [ -64.848607, 18.359477 ], [ -64.848532, 18.359433 ], [ -64.848441, 18.359355 ], [ -64.848404, 18.359336 ], [ -64.848319, 18.359284 ], [ -64.848267, 18.359257 ], [ -64.848238, 18.359229 ], [ -64.848198, 18.359174 ], [ -64.84818, 18.359141 ], [ -64.848181, 18.359109 ], [ -64.848169, 18.359019 ], [ -64.848192, 18.358953 ], [ -64.848197, 18.35892 ], [ -64.848233, 18.358882 ], [ -64.848295, 18.358838 ], [ -64.848324, 18.358799 ], [ -64.84833, 18.358766 ], [ -64.848325, 18.358734 ], [ -64.848318, 18.358684 ], [ -64.848319, 18.358651 ], [ -64.84831, 18.358591 ], [ -64.848308, 18.358568 ], [ -64.848325, 18.35843 ], [ -64.848341, 18.358375 ], [ -64.848337, 18.358233 ], [ -64.848371, 18.358034 ], [ -64.848382, 18.358001 ], [ -64.848376, 18.357968 ], [ -64.848388, 18.357919 ], [ -64.848354, 18.357869 ], [ -64.848324, 18.357858 ], [ -64.848273, 18.357852 ], [ -64.848237, 18.357852 ], [ -64.848203, 18.357841 ], [ -64.848082, 18.357841 ], [ -64.84803, 18.357818 ], [ -64.847978, 18.357753 ], [ -64.847962, 18.357707 ], [ -64.847892, 18.357621 ], [ -64.847834, 18.357572 ], [ -64.847799, 18.357566 ], [ -64.847765, 18.357566 ], [ -64.84773, 18.35756 ], [ -64.847679, 18.35756 ], [ -64.847643, 18.357555 ], [ -64.847558, 18.357565 ], [ -64.847488, 18.357566 ], [ -64.847421, 18.35756 ], [ -64.847393, 18.357557 ], [ -64.847384, 18.357556 ], [ -64.847355, 18.357527 ], [ -64.847361, 18.357478 ], [ -64.847389, 18.357439 ], [ -64.847447, 18.357368 ], [ -64.847453, 18.357346 ], [ -64.847502, 18.35727 ], [ -64.847517, 18.357247 ], [ -64.847551, 18.357202 ], [ -64.847606, 18.357145 ], [ -64.847626, 18.357125 ], [ -64.847684, 18.357092 ], [ -64.847712, 18.357065 ], [ -64.847765, 18.357026 ], [ -64.847868, 18.356993 ], [ -64.847917, 18.356983 ], [ -64.84799, 18.356976 ], [ -64.848024, 18.356965 ], [ -64.848116, 18.356954 ], [ -64.848145, 18.356941 ], [ -64.848227, 18.356915 ], [ -64.848301, 18.356861 ], [ -64.848422, 18.356794 ], [ -64.848468, 18.356784 ], [ -64.848583, 18.356734 ], [ -64.848589, 18.356732 ], [ -64.848618, 18.356728 ], [ -64.848745, 18.356684 ], [ -64.848792, 18.356679 ], [ -64.8489, 18.356635 ], [ -64.848935, 18.356629 ], [ -64.848976, 18.356612 ], [ -64.84901, 18.356607 ], [ -64.849042, 18.356594 ], [ -64.849091, 18.356585 ], [ -64.849177, 18.356547 ], [ -64.849213, 18.356542 ], [ -64.849322, 18.356514 ], [ -64.84938, 18.356509 ], [ -64.849524, 18.356444 ], [ -64.849645, 18.356386 ], [ -64.849673, 18.356354 ], [ -64.849847, 18.356199 ], [ -64.849881, 18.356188 ], [ -64.849911, 18.35616 ], [ -64.849968, 18.356133 ], [ -64.849996, 18.356106 ], [ -64.850147, 18.356029 ], [ -64.850169, 18.356007 ], [ -64.85024, 18.35599 ], [ -64.850267, 18.355968 ], [ -64.850303, 18.355951 ], [ -64.850342, 18.35594 ], [ -64.850385, 18.35592 ], [ -64.850423, 18.355907 ], [ -64.850473, 18.355881 ], [ -64.850557, 18.355847 ], [ -64.85059, 18.355814 ], [ -64.85074, 18.355703 ], [ -64.850775, 18.355687 ], [ -64.850902, 18.355593 ], [ -64.851017, 18.355478 ], [ -64.851064, 18.35544 ], [ -64.851092, 18.355412 ], [ -64.851141, 18.355346 ], [ -64.851161, 18.355323 ], [ -64.851294, 18.355202 ], [ -64.851335, 18.35518 ], [ -64.851363, 18.355153 ], [ -64.851502, 18.355076 ], [ -64.851571, 18.355053 ], [ -64.851611, 18.355054 ], [ -64.85168, 18.355064 ], [ -64.851766, 18.355092 ], [ -64.862625, 18.349441 ], [ -64.862618, 18.349388 ], [ -64.862603, 18.349321 ], [ -64.861584, 18.34472 ], [ -64.861564, 18.344575 ], [ -64.861622, 18.344437 ], [ -64.861557, 18.3443 ], [ -64.861269, 18.343625 ], [ -64.860905, 18.343009 ], [ -64.860823, 18.342869 ], [ -64.860473, 18.34242 ], [ -64.860206, 18.342118 ], [ -64.860072, 18.341993 ], [ -64.859953, 18.341918 ], [ -64.85976, 18.341707 ], [ -64.859416, 18.341438 ], [ -64.85931, 18.341398 ], [ -64.859259, 18.341316 ], [ -64.859193, 18.341089 ], [ -64.858908, 18.340946 ], [ -64.858757, 18.340888 ], [ -64.858552, 18.340764 ], [ -64.858389, 18.340586 ], [ -64.858071, 18.340388 ], [ -64.857806, 18.340181 ], [ -64.857585, 18.340042 ], [ -64.857435, 18.339892 ], [ -64.853473, 18.339543 ], [ -64.853216, 18.339641 ], [ -64.852981, 18.339708 ], [ -64.852663, 18.339758 ], [ -64.852504, 18.339766 ], [ -64.852178, 18.339741 ], [ -64.852119, 18.339741 ], [ -64.851943, 18.339833 ], [ -64.851742, 18.339925 ], [ -64.851625, 18.340009 ], [ -64.85155, 18.340134 ], [ -64.851508, 18.340302 ], [ -64.851366, 18.34036 ], [ -64.851265, 18.340344 ], [ -64.851181, 18.340302 ], [ -64.851131, 18.340268 ], [ -64.851106, 18.340218 ], [ -64.851106, 18.340118 ], [ -64.851089, 18.340059 ], [ -64.850939, 18.339908 ], [ -64.850796, 18.339791 ], [ -64.850654, 18.339657 ], [ -64.850445, 18.339565 ], [ -64.850311, 18.33949 ], [ -64.850088, 18.33939 ], [ -64.850078, 18.339385 ], [ -64.850032, 18.339352 ], [ -64.85002, 18.33933 ], [ -64.849997, 18.339286 ], [ -64.849987, 18.339253 ], [ -64.849957, 18.339204 ], [ -64.849928, 18.339132 ], [ -64.848088, 18.335575 ], [ -64.848064, 18.335547 ], [ -64.848064, 18.335492 ], [ -64.848066, 18.335483 ], [ -64.848012, 18.335256 ], [ -64.847496, 18.33322 ], [ -64.846771, 18.332375 ], [ -64.846722, 18.332298 ], [ -64.846687, 18.332284 ], [ -64.846616, 18.33227 ], [ -64.846567, 18.332206 ], [ -64.846504, 18.332206 ], [ -64.846426, 18.332192 ], [ -64.846335, 18.332129 ], [ -64.846293, 18.33203 ], [ -64.846257, 18.331988 ], [ -64.846229, 18.331946 ], [ -64.846145, 18.331911 ], [ -64.846088, 18.331904 ], [ -64.846025, 18.331854 ], [ -64.845955, 18.331763 ], [ -64.845891, 18.331763 ], [ -64.8458, 18.331756 ], [ -64.845708, 18.331678 ], [ -64.845659, 18.331552 ], [ -64.845567, 18.331495 ], [ -64.845518, 18.331362 ], [ -64.845535, 18.331323 ], [ -64.845455, 18.331263 ], [ -64.845356, 18.331291 ], [ -64.845314, 18.331277 ], [ -64.84537, 18.331235 ], [ -64.845328, 18.331171 ], [ -64.845286, 18.33108 ], [ -64.845265, 18.331017 ], [ -64.845237, 18.330995 ], [ -64.84518, 18.330988 ], [ -64.845152, 18.330918 ], [ -64.845117, 18.330855 ], [ -64.845068, 18.330742 ], [ -64.84505, 18.330671 ], [ -64.844982, 18.330581 ], [ -64.844911, 18.330485 ], [ -64.844955, 18.330334 ], [ -64.844969, 18.33027 ], [ -64.844948, 18.330228 ], [ -64.844941, 18.330151 ], [ -64.844948, 18.330122 ], [ -64.845011, 18.330094 ], [ -64.845054, 18.329954 ], [ -64.845032, 18.329834 ], [ -64.844997, 18.32977 ], [ -64.844969, 18.329714 ], [ -64.844948, 18.329651 ], [ -64.844941, 18.329587 ], [ -64.844948, 18.329503 ], [ -64.844997, 18.329489 ], [ -64.845075, 18.329461 ], [ -64.845103, 18.329418 ], [ -64.845159, 18.329348 ], [ -64.845159, 18.329299 ], [ -64.845215, 18.329292 ], [ -64.845293, 18.329271 ], [ -64.845335, 18.329193 ], [ -64.845384, 18.329144 ], [ -64.845469, 18.329088 ], [ -64.845553, 18.329038 ], [ -64.84556, 18.328961 ], [ -64.84561, 18.328919 ], [ -64.845666, 18.328869 ], [ -64.845694, 18.328841 ], [ -64.845743, 18.32882 ], [ -64.845743, 18.328771 ], [ -64.8458, 18.328686 ], [ -64.845891, 18.328616 ], [ -64.845919, 18.328482 ], [ -64.845972, 18.328463 ], [ -64.846007, 18.328396 ], [ -64.846134, 18.328334 ], [ -64.846369, 18.328314 ], [ -64.846609, 18.328246 ], [ -64.84669, 18.328204 ], [ -64.84681, 18.328179 ], [ -64.846981, 18.328176 ], [ -64.847092, 18.32813 ], [ -64.847208, 18.328106 ], [ -64.847475, 18.328049 ], [ -64.847591, 18.328007 ], [ -64.847658, 18.327975 ], [ -64.847711, 18.327975 ], [ -64.847925, 18.327963 ], [ -64.848112, 18.327919 ], [ -64.848243, 18.327842 ], [ -64.848345, 18.327778 ], [ -64.848433, 18.327666 ], [ -64.848503, 18.327567 ], [ -64.848538, 18.32744 ], [ -64.848602, 18.327335 ], [ -64.848623, 18.327208 ], [ -64.848727, 18.326997 ], [ -64.848891, 18.32681 ], [ -64.848877, 18.326719 ], [ -64.848835, 18.326669 ], [ -64.848659, 18.326599 ], [ -64.848701, 18.326522 ], [ -64.848955, 18.326606 ], [ -64.849053, 18.326543 ], [ -64.849131, 18.326522 ], [ -64.849215, 18.326571 ], [ -64.849307, 18.326465 ], [ -64.849412, 18.326402 ], [ -64.849285, 18.326148 ], [ -64.849806, 18.325902 ], [ -64.849961, 18.326134 ], [ -64.849919, 18.326162 ], [ -64.849912, 18.326184 ], [ -64.850208, 18.326078 ], [ -64.850278, 18.326078 ], [ -64.850452, 18.326006 ], [ -64.850567, 18.326043 ], [ -64.850672, 18.326029 ], [ -64.850855, 18.325944 ], [ -64.851001, 18.325867 ], [ -64.851083, 18.326233 ], [ -64.850825, 18.328516 ], [ -64.850804, 18.328665 ], [ -64.852829, 18.328812 ], [ -64.857756, 18.329171 ], [ -64.857793, 18.329174 ], [ -64.859152, 18.329298 ], [ -64.860204, 18.329447 ], [ -64.860628, 18.329507 ], [ -64.861481, 18.329629 ], [ -64.86164, 18.329649 ], [ -64.86164, 18.32966 ], [ -64.861594, 18.32989 ], [ -64.86158, 18.32997 ], [ -64.86157, 18.33007 ], [ -64.86157, 18.330125 ], [ -64.86157, 18.330153 ], [ -64.86157, 18.33018 ], [ -64.86157, 18.330402 ], [ -64.86157, 18.33048 ], [ -64.86157, 18.330485 ], [ -64.861562, 18.330766 ], [ -64.86156, 18.33086 ], [ -64.861574, 18.331433 ], [ -64.86152, 18.331432 ], [ -64.861447, 18.332192 ], [ -64.861532, 18.3322 ], [ -64.861457, 18.3329 ], [ -64.861354, 18.333761 ], [ -64.866862, 18.333855 ], [ -64.869254, 18.333896 ], [ -64.869665, 18.334122 ], [ -64.869856, 18.334225 ], [ -64.869997, 18.334299 ], [ -64.870132, 18.334375 ], [ -64.870262, 18.334441 ], [ -64.870526, 18.334583 ], [ -64.870549, 18.334594 ], [ -64.870611, 18.334626 ], [ -64.870734, 18.334691 ], [ -64.870787, 18.334721 ], [ -64.870825, 18.334742 ], [ -64.87119, 18.334933 ], [ -64.871353, 18.335019 ], [ -64.871472, 18.335085 ], [ -64.871584, 18.335358 ], [ -64.871674, 18.33559 ], [ -64.871706, 18.335704 ], [ -64.871769, 18.336209 ], [ -64.87181, 18.33642 ], [ -64.87189, 18.33645 ], [ -64.87197, 18.3365 ], [ -64.87195, 18.33662 ], [ -64.87195, 18.33669 ], [ -64.87197, 18.33681 ], [ -64.871977, 18.336837 ], [ -64.872, 18.33693 ], [ -64.8721, 18.33702 ], [ -64.87226, 18.33715 ], [ -64.872569, 18.33735 ], [ -64.87284, 18.3375 ], [ -64.87316, 18.33769 ], [ -64.8737, 18.33799 ], [ -64.873999, 18.33812 ], [ -64.874121, 18.33818 ], [ -64.874162, 18.338201 ], [ -64.87418, 18.33821 ], [ -64.874288, 18.338267 ], [ -64.87433, 18.33829 ], [ -64.87448, 18.3384 ], [ -64.87463, 18.33854 ], [ -64.87475, 18.33863 ], [ -64.87486, 18.33867 ], [ -64.87497, 18.33868 ], [ -64.875052, 18.33868 ], [ -64.8751, 18.33868 ], [ -64.87524, 18.33871 ], [ -64.87534, 18.33875 ], [ -64.87546, 18.33881 ], [ -64.87574, 18.33934 ], [ -64.87587, 18.339587 ], [ -64.875875, 18.339595 ], [ -64.876009, 18.339849 ], [ -64.87601, 18.33985 ], [ -64.876035, 18.3399 ], [ -64.876059, 18.339949 ], [ -64.87606, 18.33995 ], [ -64.87613, 18.34007 ], [ -64.87621, 18.34018 ], [ -64.876249, 18.340259 ], [ -64.87629, 18.340298 ], [ -64.876344, 18.340283 ], [ -64.87639, 18.340351 ], [ -64.877948, 18.343308 ], [ -64.878478, 18.344188 ], [ -64.878445, 18.344237 ], [ -64.878424, 18.344269 ], [ -64.87837, 18.34435 ], [ -64.878429, 18.34436 ], [ -64.87851, 18.34433 ], [ -64.87859, 18.34427 ], [ -64.87869, 18.34423 ], [ -64.87878, 18.34422 ], [ -64.87887, 18.34422 ], [ -64.878969, 18.34429 ], [ -64.87904, 18.34439 ], [ -64.87907, 18.34446 ], [ -64.879445, 18.344506 ], [ -64.8799, 18.34448 ], [ -64.87988, 18.34453 ], [ -64.87988, 18.34459 ], [ -64.8799, 18.34467 ], [ -64.879906, 18.34468 ], [ -64.88026, 18.34531 ], [ -64.88043, 18.34556 ], [ -64.88053, 18.34572 ], [ -64.88062, 18.34585 ], [ -64.88071, 18.34597 ], [ -64.88079, 18.34615 ], [ -64.88087, 18.34628 ], [ -64.88109, 18.34656 ], [ -64.88124, 18.34671 ], [ -64.8813, 18.3468 ], [ -64.88134, 18.34687 ], [ -64.88147, 18.34716 ], [ -64.88157, 18.34737 ], [ -64.88188, 18.34794 ], [ -64.88198, 18.3481 ], [ -64.88207, 18.34821 ], [ -64.88215, 18.3483 ], [ -64.88222, 18.34837 ], [ -64.88243, 18.34852 ], [ -64.882444, 18.348527 ], [ -64.88254, 18.34858 ], [ -64.88262, 18.34865 ], [ -64.88282, 18.34878 ], [ -64.88316, 18.34895 ], [ -64.88328, 18.34902 ], [ -64.88339, 18.34911 ], [ -64.88354, 18.34921 ], [ -64.88364, 18.3493 ], [ -64.88372, 18.34939 ], [ -64.883751, 18.349414 ], [ -64.883765, 18.349425 ], [ -64.88381, 18.34946 ], [ -64.883847, 18.349486 ], [ -64.88388, 18.34951 ], [ -64.88394, 18.34953 ], [ -64.884022, 18.34958 ], [ -64.88407, 18.34961 ], [ -64.88421, 18.34966 ], [ -64.8844, 18.34975 ], [ -64.884457, 18.349774 ], [ -64.88452, 18.3498 ], [ -64.884603, 18.349842 ], [ -64.884669, 18.349874 ], [ -64.88468, 18.34988 ], [ -64.88482, 18.34994 ], [ -64.884876, 18.349949 ], [ -64.884882, 18.34995 ], [ -64.88495, 18.34996 ], [ -64.884984, 18.349963 ], [ -64.885087, 18.349975 ], [ -64.885122, 18.349979 ], [ -64.88513, 18.34998 ], [ -64.885213, 18.34998 ], [ -64.88527, 18.34998 ], [ -64.885386, 18.349958 ], [ -64.88554, 18.34993 ], [ -64.88566, 18.34989 ], [ -64.885767, 18.349875 ], [ -64.8858, 18.34987 ], [ -64.88595, 18.34986 ], [ -64.886172, 18.349827 ], [ -64.88622, 18.34982 ], [ -64.88643, 18.34976 ], [ -64.886506, 18.349736 ], [ -64.886542, 18.349726 ], [ -64.88666, 18.34969 ], [ -64.886685, 18.349684 ], [ -64.886741, 18.349669 ], [ -64.88682, 18.34965 ], [ -64.886964, 18.349631 ], [ -64.887075, 18.349632 ], [ -64.88716, 18.349633 ], [ -64.887366, 18.349645 ], [ -64.887624, 18.349669 ], [ -64.887809, 18.349682 ], [ -64.887844, 18.349688 ], [ -64.88806, 18.34972 ], [ -64.888143, 18.349772 ], [ -64.88817, 18.34979 ], [ -64.88836, 18.34988 ], [ -64.888408, 18.349901 ], [ -64.8885, 18.34994 ], [ -64.88876, 18.35013 ], [ -64.888835, 18.3502 ], [ -64.8889, 18.35026 ], [ -64.88907, 18.3504 ], [ -64.88919, 18.35046 ], [ -64.8893, 18.35051 ], [ -64.889325, 18.350529 ], [ -64.889422, 18.353903 ], [ -64.889435, 18.354476 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "950401", "GEOID10": "66010950401", "NAME10": "9504.01", "NAMELSAD10": "Census Tract 9504.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3012167, "AWATER10": 0, "INTPTLAT10": "+13.5634095", "INTPTLON10": "+144.8537892" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.857479, 13.569921 ], [ 144.857678, 13.56997 ], [ 144.85829, 13.57012 ], [ 144.85906, 13.5703 ], [ 144.85929, 13.57033 ], [ 144.85953, 13.57024 ], [ 144.859644, 13.570185 ], [ 144.85972, 13.57015 ], [ 144.86025, 13.56988 ], [ 144.860567, 13.569691 ], [ 144.86062, 13.56966 ], [ 144.860773, 13.569576 ], [ 144.86093, 13.56949 ], [ 144.86141, 13.56932 ], [ 144.861579, 13.569253 ], [ 144.86177, 13.56918 ], [ 144.86193, 13.56914 ], [ 144.86235, 13.56895 ], [ 144.862653, 13.568839 ], [ 144.86301, 13.56871 ], [ 144.86368, 13.5685 ], [ 144.86429, 13.56828 ], [ 144.86437, 13.56818 ], [ 144.86441, 13.56801 ], [ 144.86443, 13.56777 ], [ 144.864426, 13.56769 ], [ 144.86441, 13.56737 ], [ 144.864361, 13.567104 ], [ 144.86435, 13.56704 ], [ 144.864126, 13.562714 ], [ 144.864213, 13.562029 ], [ 144.8642, 13.56003 ], [ 144.8642, 13.55977 ], [ 144.86415, 13.55969 ], [ 144.86413, 13.55955 ], [ 144.864139, 13.559326 ], [ 144.86415, 13.55908 ], [ 144.864157, 13.557949 ], [ 144.86416, 13.55749 ], [ 144.863702, 13.557492 ], [ 144.862328, 13.557498 ], [ 144.86187, 13.5575 ], [ 144.861715, 13.557498 ], [ 144.861251, 13.557494 ], [ 144.861097, 13.557493 ], [ 144.860783, 13.55749 ], [ 144.859843, 13.557482 ], [ 144.85953, 13.55748 ], [ 144.859516, 13.55748 ], [ 144.859474, 13.55748 ], [ 144.85946, 13.55748 ], [ 144.859391, 13.55748 ], [ 144.859184, 13.55748 ], [ 144.859115, 13.55748 ], [ 144.85905, 13.55748 ], [ 144.858858, 13.55748 ], [ 144.858794, 13.55748 ], [ 144.858702, 13.55748 ], [ 144.858428, 13.55748 ], [ 144.858337, 13.55748 ], [ 144.857977, 13.55748 ], [ 144.856897, 13.55748 ], [ 144.856537, 13.55748 ], [ 144.856225, 13.55748 ], [ 144.85613, 13.55748 ], [ 144.855291, 13.557487 ], [ 144.85498, 13.55749 ], [ 144.854791, 13.55749 ], [ 144.85446, 13.55749 ], [ 144.854227, 13.557484 ], [ 144.85404, 13.55748 ], [ 144.853927, 13.55748 ], [ 144.85359, 13.557482 ], [ 144.853478, 13.557483 ], [ 144.853411, 13.557483 ], [ 144.853212, 13.557483 ], [ 144.853146, 13.557484 ], [ 144.85303, 13.557484 ], [ 144.852685, 13.557486 ], [ 144.85257, 13.557487 ], [ 144.852293, 13.557487 ], [ 144.852137, 13.557488 ], [ 144.85192, 13.55749 ], [ 144.851773, 13.557488 ], [ 144.851501, 13.557486 ], [ 144.851247, 13.557484 ], [ 144.850841, 13.557482 ], [ 144.85041, 13.55748 ], [ 144.850398, 13.557477 ], [ 144.850362, 13.557471 ], [ 144.85035, 13.55747 ], [ 144.85022, 13.55748 ], [ 144.850174, 13.55748 ], [ 144.849647, 13.557483 ], [ 144.849472, 13.557484 ], [ 144.849287, 13.557484 ], [ 144.848734, 13.557488 ], [ 144.84855, 13.55749 ], [ 144.848482, 13.55749 ], [ 144.848278, 13.55749 ], [ 144.84821, 13.55749 ], [ 144.848045, 13.55749 ], [ 144.847553, 13.55749 ], [ 144.847389, 13.55749 ], [ 144.847313, 13.55749 ], [ 144.847085, 13.55749 ], [ 144.84701, 13.55749 ], [ 144.846864, 13.55749 ], [ 144.846503, 13.55749 ], [ 144.846426, 13.55749 ], [ 144.84628, 13.55749 ], [ 144.846217, 13.55749 ], [ 144.84603, 13.55749 ], [ 144.845968, 13.55749 ], [ 144.845911, 13.55749 ], [ 144.84574, 13.55749 ], [ 144.845684, 13.55749 ], [ 144.845625, 13.55749 ], [ 144.84545, 13.55749 ], [ 144.845392, 13.55749 ], [ 144.845311, 13.55749 ], [ 144.84512, 13.55749 ], [ 144.84507, 13.55749 ], [ 144.84499, 13.55749 ], [ 144.8449, 13.55749 ], [ 144.844794, 13.55749 ], [ 144.84445, 13.55749 ], [ 144.844206, 13.55749 ], [ 144.84401, 13.55749 ], [ 144.843876, 13.557488 ], [ 144.843474, 13.557482 ], [ 144.84334, 13.55748 ], [ 144.843142, 13.557478 ], [ 144.842549, 13.557472 ], [ 144.842352, 13.557471 ], [ 144.842319, 13.55747 ], [ 144.842222, 13.55747 ], [ 144.84219, 13.55747 ], [ 144.842011, 13.557474 ], [ 144.84182, 13.55748 ], [ 144.841474, 13.557488 ], [ 144.841296, 13.557493 ], [ 144.841182, 13.557495 ], [ 144.84099, 13.5575 ], [ 144.840842, 13.557516 ], [ 144.84073, 13.55753 ], [ 144.840824, 13.557706 ], [ 144.841106, 13.558234 ], [ 144.8412, 13.55841 ], [ 144.841259, 13.558515 ], [ 144.841437, 13.558833 ], [ 144.841497, 13.558939 ], [ 144.841562, 13.559056 ], [ 144.84176, 13.559409 ], [ 144.8418, 13.55948 ], [ 144.84182, 13.55953 ], [ 144.841928, 13.559748 ], [ 144.842252, 13.560402 ], [ 144.84236, 13.56062 ], [ 144.8424, 13.5607 ], [ 144.842493, 13.560871 ], [ 144.842903, 13.56162 ], [ 144.84304, 13.56187 ], [ 144.843051, 13.561894 ], [ 144.843087, 13.561966 ], [ 144.843099, 13.561991 ], [ 144.84329, 13.56238 ], [ 144.843397, 13.562586 ], [ 144.843703, 13.563174 ], [ 144.84381, 13.56338 ], [ 144.84413, 13.56398 ], [ 144.84421, 13.56412 ], [ 144.844329, 13.564355 ], [ 144.84463, 13.56495 ], [ 144.844656, 13.564997 ], [ 144.844737, 13.56514 ], [ 144.844764, 13.565188 ], [ 144.844799, 13.56525 ], [ 144.844904, 13.565437 ], [ 144.84494, 13.5655 ], [ 144.845128, 13.565876 ], [ 144.84541, 13.56644 ], [ 144.84571, 13.566998 ], [ 144.84591, 13.56737 ], [ 144.84611, 13.56782 ], [ 144.846314, 13.568202 ], [ 144.846931, 13.56936 ], [ 144.84714, 13.56975 ], [ 144.847612, 13.570658 ], [ 144.84804, 13.57148 ], [ 144.848091, 13.571578 ], [ 144.848244, 13.571875 ], [ 144.848296, 13.571974 ], [ 144.848347, 13.572073 ], [ 144.84847, 13.57231 ], [ 144.848504, 13.572372 ], [ 144.848558, 13.572471 ], [ 144.848622, 13.572462 ], [ 144.848815, 13.572439 ], [ 144.84888, 13.572432 ], [ 144.849704, 13.571872 ], [ 144.849919, 13.571736 ], [ 144.850162, 13.571498 ], [ 144.850392, 13.571089 ], [ 144.850561, 13.570759 ], [ 144.850813, 13.570279 ], [ 144.85103, 13.570015 ], [ 144.851342, 13.569818 ], [ 144.851853, 13.569606 ], [ 144.852643, 13.569245 ], [ 144.85349, 13.56895 ], [ 144.853547, 13.568974 ], [ 144.85363, 13.56901 ], [ 144.853726, 13.569033 ], [ 144.853787, 13.569049 ], [ 144.85419, 13.56915 ], [ 144.8542, 13.569152 ], [ 144.85506, 13.56935 ], [ 144.855446, 13.569446 ], [ 144.85586, 13.56955 ], [ 144.856092, 13.569602 ], [ 144.856788, 13.569758 ], [ 144.85702, 13.56981 ], [ 144.857479, 13.569921 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "951901", "GEOID10": "66010951901", "NAME10": "9519.01", "NAMELSAD10": "Census Tract 9519.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1135163, "AWATER10": 0, "INTPTLAT10": "+13.5124768", "INTPTLON10": "+144.8141771" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.81719, 13.50794 ], [ 144.81685, 13.50791 ], [ 144.81669, 13.507867 ], [ 144.81659, 13.50784 ], [ 144.816022, 13.507593 ], [ 144.81567, 13.50744 ], [ 144.815288, 13.507282 ], [ 144.815124, 13.507215 ], [ 144.81482, 13.50709 ], [ 144.814782, 13.507074 ], [ 144.814667, 13.507026 ], [ 144.81463, 13.50701 ], [ 144.814531, 13.506973 ], [ 144.814235, 13.506862 ], [ 144.814137, 13.506826 ], [ 144.814085, 13.506806 ], [ 144.813931, 13.506749 ], [ 144.81388, 13.50673 ], [ 144.813672, 13.506658 ], [ 144.813047, 13.506442 ], [ 144.81284, 13.50637 ], [ 144.812694, 13.50632 ], [ 144.812255, 13.50617 ], [ 144.81211, 13.50612 ], [ 144.812098, 13.506115 ], [ 144.812062, 13.506103 ], [ 144.81205, 13.5061 ], [ 144.811992, 13.506082 ], [ 144.811818, 13.506027 ], [ 144.81176, 13.50601 ], [ 144.811709, 13.50599 ], [ 144.811557, 13.505933 ], [ 144.811507, 13.505914 ], [ 144.811483, 13.505905 ], [ 144.811413, 13.505878 ], [ 144.81139, 13.50587 ], [ 144.811183, 13.505802 ], [ 144.81087, 13.5057 ], [ 144.810565, 13.505592 ], [ 144.81036, 13.50552 ], [ 144.809987, 13.505404 ], [ 144.80978, 13.50534 ], [ 144.80944, 13.50524 ], [ 144.80909, 13.50515 ], [ 144.808858, 13.505095 ], [ 144.80879, 13.50508 ], [ 144.80848, 13.50516 ], [ 144.808405, 13.505267 ], [ 144.8085, 13.50534 ], [ 144.80858, 13.50542 ], [ 144.80873, 13.50557 ], [ 144.80895, 13.50586 ], [ 144.809014, 13.505967 ], [ 144.809135, 13.506168 ], [ 144.80916, 13.50621 ], [ 144.809261, 13.506432 ], [ 144.80937, 13.50667 ], [ 144.809505, 13.507273 ], [ 144.80957, 13.50756 ], [ 144.809644, 13.507882 ], [ 144.809804, 13.508572 ], [ 144.809868, 13.508848 ], [ 144.809943, 13.50917 ], [ 144.809982, 13.50934 ], [ 144.8101, 13.50985 ], [ 144.81014, 13.51002 ], [ 144.810244, 13.510485 ], [ 144.81039, 13.51113 ], [ 144.810405, 13.511194 ], [ 144.81056, 13.51185 ], [ 144.810566, 13.511879 ], [ 144.810671, 13.512345 ], [ 144.810683, 13.5124 ], [ 144.810721, 13.512568 ], [ 144.810734, 13.512624 ], [ 144.810757, 13.512726 ], [ 144.810826, 13.513035 ], [ 144.810849, 13.513138 ], [ 144.810883, 13.51329 ], [ 144.81091, 13.51341 ], [ 144.81094, 13.51351 ], [ 144.810994, 13.513747 ], [ 144.81103, 13.5139 ], [ 144.81106, 13.51401 ], [ 144.811061, 13.514016 ], [ 144.81112, 13.51424 ], [ 144.81113, 13.5143 ], [ 144.811145, 13.514367 ], [ 144.811173, 13.514485 ], [ 144.811178, 13.514507 ], [ 144.811193, 13.514574 ], [ 144.811199, 13.514597 ], [ 144.81121, 13.514645 ], [ 144.811244, 13.514791 ], [ 144.811256, 13.51484 ], [ 144.811263, 13.514873 ], [ 144.811287, 13.514972 ], [ 144.811295, 13.515006 ], [ 144.811334, 13.515175 ], [ 144.811453, 13.515683 ], [ 144.811493, 13.515853 ], [ 144.811498, 13.515876 ], [ 144.811514, 13.515946 ], [ 144.81152, 13.51597 ], [ 144.811539, 13.516056 ], [ 144.811598, 13.516315 ], [ 144.811618, 13.516402 ], [ 144.811629, 13.516453 ], [ 144.811664, 13.516606 ], [ 144.811676, 13.516657 ], [ 144.811702, 13.516774 ], [ 144.811782, 13.517128 ], [ 144.811809, 13.517246 ], [ 144.811853, 13.51756 ], [ 144.811926, 13.517764 ], [ 144.81198, 13.518 ], [ 144.81207, 13.51841 ], [ 144.81217, 13.51876 ], [ 144.81222, 13.51888 ], [ 144.81225, 13.51895 ], [ 144.81234, 13.5191 ], [ 144.812424, 13.519269 ], [ 144.81247, 13.51936 ], [ 144.8126, 13.51955 ], [ 144.812729, 13.519703 ], [ 144.81276, 13.51974 ], [ 144.812836, 13.519827 ], [ 144.81291, 13.51991 ], [ 144.8131, 13.52009 ], [ 144.813193, 13.520167 ], [ 144.81327, 13.52023 ], [ 144.813324, 13.520267 ], [ 144.813402, 13.52032 ], [ 144.81346, 13.52036 ], [ 144.813557, 13.520408 ], [ 144.813652, 13.520456 ], [ 144.81366, 13.52046 ], [ 144.813733, 13.520506 ], [ 144.81377, 13.52053 ], [ 144.813826, 13.520556 ], [ 144.81394, 13.52061 ], [ 144.81412, 13.520681 ], [ 144.81422, 13.52072 ], [ 144.814301, 13.520748 ], [ 144.814546, 13.520835 ], [ 144.814621, 13.520864 ], [ 144.814784, 13.520919 ], [ 144.815253, 13.521084 ], [ 144.81541, 13.52114 ], [ 144.81544, 13.52104 ], [ 144.81552, 13.52085 ], [ 144.81569, 13.52036 ], [ 144.81579, 13.52027 ], [ 144.815884, 13.520011 ], [ 144.815948, 13.519833 ], [ 144.81599, 13.51972 ], [ 144.815998, 13.519696 ], [ 144.816022, 13.519624 ], [ 144.81603, 13.5196 ], [ 144.816136, 13.519304 ], [ 144.816272, 13.518926 ], [ 144.8163, 13.51885 ], [ 144.81632, 13.51864 ], [ 144.816401, 13.518404 ], [ 144.816504, 13.518108 ], [ 144.816536, 13.518013 ], [ 144.816636, 13.517728 ], [ 144.816669, 13.517633 ], [ 144.816686, 13.51758 ], [ 144.816741, 13.517422 ], [ 144.81676, 13.51737 ], [ 144.816778, 13.517314 ], [ 144.81679, 13.51728 ], [ 144.816846, 13.517153 ], [ 144.81687, 13.5171 ], [ 144.81701, 13.51677 ], [ 144.817036, 13.516734 ], [ 144.81712, 13.51662 ], [ 144.81748, 13.515616 ], [ 144.817616, 13.515238 ], [ 144.817655, 13.515126 ], [ 144.817775, 13.514794 ], [ 144.817815, 13.514683 ], [ 144.817835, 13.514624 ], [ 144.817898, 13.514448 ], [ 144.81792, 13.51439 ], [ 144.81796, 13.51428 ], [ 144.818023, 13.514115 ], [ 144.818214, 13.51362 ], [ 144.818278, 13.513456 ], [ 144.818442, 13.513029 ], [ 144.81845, 13.51301 ], [ 144.818581, 13.51265 ], [ 144.818745, 13.5122 ], [ 144.818832, 13.511961 ], [ 144.818913, 13.511739 ], [ 144.81907, 13.51131 ], [ 144.819096, 13.51124 ], [ 144.819174, 13.51103 ], [ 144.8192, 13.51096 ], [ 144.819237, 13.510754 ], [ 144.81924, 13.51074 ], [ 144.81939, 13.51027 ], [ 144.81943, 13.510157 ], [ 144.8195, 13.50996 ], [ 144.819552, 13.50982 ], [ 144.81971, 13.509402 ], [ 144.81973, 13.50935 ], [ 144.81892, 13.50902 ], [ 144.8188, 13.509 ], [ 144.81873, 13.50924 ], [ 144.81864, 13.50932 ], [ 144.818624, 13.509304 ], [ 144.81843, 13.50911 ], [ 144.818184, 13.508872 ], [ 144.81782, 13.50852 ], [ 144.81751, 13.50823 ], [ 144.817444, 13.508162 ], [ 144.81727, 13.50798 ], [ 144.81719, 13.50794 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "950702", "GEOID10": "66010950702", "NAME10": "9507.02", "NAMELSAD10": "Census Tract 9507.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 8964699, "AWATER10": 0, "INTPTLAT10": "+13.5408565", "INTPTLON10": "+144.8659421" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.864415, 13.526494 ], [ 144.864434, 13.526684 ], [ 144.864662, 13.528895 ], [ 144.864941, 13.531599 ], [ 144.865035, 13.532279 ], [ 144.865025, 13.532693 ], [ 144.862267, 13.532158 ], [ 144.859897, 13.531699 ], [ 144.859566, 13.531693 ], [ 144.859454, 13.531691 ], [ 144.85894, 13.53134 ], [ 144.8589, 13.53122 ], [ 144.858863, 13.531168 ], [ 144.85885, 13.53115 ], [ 144.85851, 13.53095 ], [ 144.858373, 13.530881 ], [ 144.85833, 13.53086 ], [ 144.85823, 13.53076 ], [ 144.85814, 13.53078 ], [ 144.858124, 13.530774 ], [ 144.85802, 13.53074 ], [ 144.857833, 13.530633 ], [ 144.85774, 13.53058 ], [ 144.857653, 13.530526 ], [ 144.85761, 13.5305 ], [ 144.85745, 13.53041 ], [ 144.857384, 13.530385 ], [ 144.85729, 13.53035 ], [ 144.857192, 13.53034 ], [ 144.85719, 13.53034 ], [ 144.8569, 13.530347 ], [ 144.856803, 13.53035 ], [ 144.856694, 13.530352 ], [ 144.856368, 13.53036 ], [ 144.85626, 13.530364 ], [ 144.856123, 13.530367 ], [ 144.855713, 13.530377 ], [ 144.85562, 13.53038 ], [ 144.855577, 13.530378 ], [ 144.855475, 13.530374 ], [ 144.855171, 13.530363 ], [ 144.85507, 13.53036 ], [ 144.854826, 13.53036 ], [ 144.854094, 13.53036 ], [ 144.85385, 13.53036 ], [ 144.853726, 13.53036 ], [ 144.853354, 13.53036 ], [ 144.85323, 13.53036 ], [ 144.853146, 13.53036 ], [ 144.852894, 13.53036 ], [ 144.85281, 13.53036 ], [ 144.852714, 13.53036 ], [ 144.852426, 13.53036 ], [ 144.85233, 13.53036 ], [ 144.8522, 13.530359 ], [ 144.85181, 13.530358 ], [ 144.851681, 13.530358 ], [ 144.851557, 13.530357 ], [ 144.851188, 13.530355 ], [ 144.851065, 13.530355 ], [ 144.850873, 13.530354 ], [ 144.850297, 13.530352 ], [ 144.850105, 13.530352 ], [ 144.850018, 13.530351 ], [ 144.849756, 13.53035 ], [ 144.84967, 13.53035 ], [ 144.849579, 13.530351 ], [ 144.849309, 13.530358 ], [ 144.84922, 13.53036 ], [ 144.849271, 13.530475 ], [ 144.849424, 13.53082 ], [ 144.849475, 13.530936 ], [ 144.849559, 13.531127 ], [ 144.84973, 13.53151 ], [ 144.849809, 13.531702 ], [ 144.84989, 13.531896 ], [ 144.849922, 13.531972 ], [ 144.850018, 13.532203 ], [ 144.85005, 13.53228 ], [ 144.85012, 13.532428 ], [ 144.85033, 13.532872 ], [ 144.8504, 13.53302 ], [ 144.850433, 13.533093 ], [ 144.850533, 13.533312 ], [ 144.850567, 13.533386 ], [ 144.850593, 13.533443 ], [ 144.850671, 13.533616 ], [ 144.850698, 13.533674 ], [ 144.850722, 13.533728 ], [ 144.850796, 13.53389 ], [ 144.850821, 13.533945 ], [ 144.850868, 13.534049 ], [ 144.851012, 13.534364 ], [ 144.85106, 13.534469 ], [ 144.85109, 13.534535 ], [ 144.85118, 13.534733 ], [ 144.85121, 13.5348 ], [ 144.851292, 13.534985 ], [ 144.851538, 13.535541 ], [ 144.85162, 13.535727 ], [ 144.85171, 13.53593 ], [ 144.851749, 13.536016 ], [ 144.851962, 13.536479 ], [ 144.852147, 13.536881 ], [ 144.85228, 13.53717 ], [ 144.852292, 13.537196 ], [ 144.852327, 13.537274 ], [ 144.85234, 13.5373 ], [ 144.852405, 13.53744 ], [ 144.852601, 13.537863 ], [ 144.852667, 13.538004 ], [ 144.852731, 13.538142 ], [ 144.85287, 13.53844 ], [ 144.852923, 13.538557 ], [ 144.852986, 13.538696 ], [ 144.853001, 13.53873 ], [ 144.853048, 13.538833 ], [ 144.853064, 13.538868 ], [ 144.853111, 13.538972 ], [ 144.853158, 13.539078 ], [ 144.853252, 13.539285 ], [ 144.8533, 13.53939 ], [ 144.853321, 13.53944 ], [ 144.853385, 13.53959 ], [ 144.853407, 13.539641 ], [ 144.853426, 13.539687 ], [ 144.853486, 13.539825 ], [ 144.853506, 13.539872 ], [ 144.853523, 13.539914 ], [ 144.853577, 13.54004 ], [ 144.853595, 13.540082 ], [ 144.853609, 13.540114 ], [ 144.853651, 13.540213 ], [ 144.853666, 13.540246 ], [ 144.85368, 13.54028 ], [ 144.853725, 13.540385 ], [ 144.85374, 13.54042 ], [ 144.853782, 13.540508 ], [ 144.853908, 13.540773 ], [ 144.853951, 13.540862 ], [ 144.854014, 13.540995 ], [ 144.854206, 13.541396 ], [ 144.85427, 13.54153 ], [ 144.854284, 13.54156 ], [ 144.854326, 13.54165 ], [ 144.85434, 13.54168 ], [ 144.854352, 13.541707 ], [ 144.854389, 13.541789 ], [ 144.854402, 13.541817 ], [ 144.854459, 13.541943 ], [ 144.854631, 13.542324 ], [ 144.854689, 13.542451 ], [ 144.854708, 13.542494 ], [ 144.854727, 13.542535 ], [ 144.854767, 13.542624 ], [ 144.85477, 13.54263 ], [ 144.854781, 13.54267 ], [ 144.854791, 13.54271 ], [ 144.854823, 13.542831 ], [ 144.854834, 13.542872 ], [ 144.854845, 13.542913 ], [ 144.854878, 13.543038 ], [ 144.85489, 13.54308 ], [ 144.854926, 13.543245 ], [ 144.85494, 13.54331 ], [ 144.85498, 13.54357 ], [ 144.85499, 13.54375 ], [ 144.855, 13.54392 ], [ 144.854998, 13.544038 ], [ 144.854995, 13.544394 ], [ 144.854994, 13.544513 ], [ 144.854991, 13.544756 ], [ 144.85499, 13.54494 ], [ 144.855003, 13.545486 ], [ 144.85501, 13.54573 ], [ 144.855008, 13.545774 ], [ 144.855006, 13.545908 ], [ 144.855006, 13.545953 ], [ 144.855005, 13.545995 ], [ 144.855003, 13.546121 ], [ 144.855003, 13.546164 ], [ 144.854999, 13.546385 ], [ 144.85499, 13.54696 ], [ 144.854987, 13.547048 ], [ 144.854983, 13.54728 ], [ 144.854961, 13.547427 ], [ 144.854984, 13.547595 ], [ 144.854996, 13.548093 ], [ 144.855, 13.54826 ], [ 144.854998, 13.548333 ], [ 144.854994, 13.548552 ], [ 144.854993, 13.548626 ], [ 144.854992, 13.548658 ], [ 144.85499, 13.548757 ], [ 144.85499, 13.54879 ], [ 144.85499, 13.548825 ], [ 144.85499, 13.548931 ], [ 144.85499, 13.548967 ], [ 144.85499, 13.548999 ], [ 144.85499, 13.549097 ], [ 144.85499, 13.54913 ], [ 144.854991, 13.549237 ], [ 144.854998, 13.549562 ], [ 144.855, 13.54967 ], [ 144.855, 13.549759 ], [ 144.855, 13.550028 ], [ 144.855, 13.550118 ], [ 144.855, 13.550163 ], [ 144.855, 13.5503 ], [ 144.855, 13.550346 ], [ 144.855, 13.550432 ], [ 144.855, 13.550693 ], [ 144.855, 13.55078 ], [ 144.855004, 13.550861 ], [ 144.855018, 13.551105 ], [ 144.855023, 13.551187 ], [ 144.85503, 13.551317 ], [ 144.855052, 13.551709 ], [ 144.855066, 13.551772 ], [ 144.855053, 13.551839 ], [ 144.855076, 13.552558 ], [ 144.85507, 13.552616 ], [ 144.855072, 13.552817 ], [ 144.855073, 13.552884 ], [ 144.855073, 13.552973 ], [ 144.855076, 13.553243 ], [ 144.855077, 13.553333 ], [ 144.855077, 13.553415 ], [ 144.85508, 13.5536 ], [ 144.855076, 13.553661 ], [ 144.855073, 13.553744 ], [ 144.85507, 13.553801 ], [ 144.855062, 13.553972 ], [ 144.85506, 13.55403 ], [ 144.855058, 13.554261 ], [ 144.855052, 13.554958 ], [ 144.85505, 13.55519 ], [ 144.855052, 13.555279 ], [ 144.855058, 13.555546 ], [ 144.855061, 13.555636 ], [ 144.855062, 13.555714 ], [ 144.855068, 13.555951 ], [ 144.85507, 13.55603 ], [ 144.855066, 13.556087 ], [ 144.855058, 13.556261 ], [ 144.855055, 13.556319 ], [ 144.855053, 13.556349 ], [ 144.85505, 13.55641 ], [ 144.855046, 13.556439 ], [ 144.855043, 13.556469 ], [ 144.855039, 13.556492 ], [ 144.855031, 13.556564 ], [ 144.855029, 13.556588 ], [ 144.855026, 13.556604 ], [ 144.855021, 13.556653 ], [ 144.85502, 13.55667 ], [ 144.855014, 13.55673 ], [ 144.854996, 13.55691 ], [ 144.85499, 13.55697 ], [ 144.854984, 13.55703 ], [ 144.854966, 13.55721 ], [ 144.85496, 13.55727 ], [ 144.85497, 13.557313 ], [ 144.85498, 13.55735 ], [ 144.85498, 13.557445 ], [ 144.85498, 13.55749 ], [ 144.855291, 13.557487 ], [ 144.85613, 13.55748 ], [ 144.856225, 13.55748 ], [ 144.856537, 13.55748 ], [ 144.856897, 13.55748 ], [ 144.857977, 13.55748 ], [ 144.858337, 13.55748 ], [ 144.858428, 13.55748 ], [ 144.858702, 13.55748 ], [ 144.858794, 13.55748 ], [ 144.858858, 13.55748 ], [ 144.85905, 13.55748 ], [ 144.859115, 13.55748 ], [ 144.859184, 13.55748 ], [ 144.859391, 13.55748 ], [ 144.85946, 13.55748 ], [ 144.859474, 13.55748 ], [ 144.859516, 13.55748 ], [ 144.85953, 13.55748 ], [ 144.859843, 13.557482 ], [ 144.860783, 13.55749 ], [ 144.861097, 13.557493 ], [ 144.861251, 13.557494 ], [ 144.861715, 13.557498 ], [ 144.86187, 13.5575 ], [ 144.862328, 13.557498 ], [ 144.863702, 13.557492 ], [ 144.86416, 13.55749 ], [ 144.864253, 13.557491 ], [ 144.864532, 13.557495 ], [ 144.864625, 13.557497 ], [ 144.86543, 13.55751 ], [ 144.865481, 13.557509 ], [ 144.867594, 13.5575 ], [ 144.86782, 13.5575 ], [ 144.868053, 13.557504 ], [ 144.86876, 13.55752 ], [ 144.86888, 13.55743 ], [ 144.868936, 13.557515 ], [ 144.86894, 13.55752 ], [ 144.86893, 13.55769 ], [ 144.868931, 13.557821 ], [ 144.868933, 13.557924 ], [ 144.868934, 13.558069 ], [ 144.868939, 13.558505 ], [ 144.86894, 13.55854 ], [ 144.86893, 13.55865 ], [ 144.868928, 13.558869 ], [ 144.868923, 13.559339 ], [ 144.868921, 13.559529 ], [ 144.86892, 13.55975 ], [ 144.86913, 13.55979 ], [ 144.86934, 13.55979 ], [ 144.869504, 13.559782 ], [ 144.86956, 13.55978 ], [ 144.87044, 13.55978 ], [ 144.871271, 13.55977 ], [ 144.8713, 13.55977 ], [ 144.87186, 13.55975 ], [ 144.872301, 13.559768 ], [ 144.873626, 13.559825 ], [ 144.874068, 13.559844 ], [ 144.874592, 13.559461 ], [ 144.875713, 13.558642 ], [ 144.87623, 13.55525 ], [ 144.87674, 13.55187 ], [ 144.876816, 13.551108 ], [ 144.876932, 13.550607 ], [ 144.877162, 13.549623 ], [ 144.877169, 13.549597 ], [ 144.877332, 13.548996 ], [ 144.87737, 13.548514 ], [ 144.877423, 13.54809 ], [ 144.877434, 13.547733 ], [ 144.877608, 13.547495 ], [ 144.877836, 13.547203 ], [ 144.877809, 13.546037 ], [ 144.877791, 13.545925 ], [ 144.877549, 13.544394 ], [ 144.877151, 13.542503 ], [ 144.876646, 13.539713 ], [ 144.875375, 13.53292 ], [ 144.875221, 13.532125 ], [ 144.875168, 13.531847 ], [ 144.874889, 13.5304 ], [ 144.874914, 13.530168 ], [ 144.874918, 13.530107 ], [ 144.874932, 13.529926 ], [ 144.874938, 13.529866 ], [ 144.874988, 13.529448 ], [ 144.875139, 13.528197 ], [ 144.87519, 13.52778 ], [ 144.875115, 13.527031 ], [ 144.875099, 13.526868 ], [ 144.875084, 13.526727 ], [ 144.875094, 13.526491 ], [ 144.875096, 13.526437 ], [ 144.875132, 13.525541 ], [ 144.875253, 13.524596 ], [ 144.87506, 13.523816 ], [ 144.875178, 13.523384 ], [ 144.875521, 13.522977 ], [ 144.875587, 13.522794 ], [ 144.8756, 13.52273 ], [ 144.875863, 13.521874 ], [ 144.87593, 13.52166 ], [ 144.87605, 13.52126 ], [ 144.875996, 13.521243 ], [ 144.875837, 13.521192 ], [ 144.875785, 13.521175 ], [ 144.874932, 13.520901 ], [ 144.87368, 13.5205 ], [ 144.872373, 13.520088 ], [ 144.87152, 13.51982 ], [ 144.871366, 13.51977 ], [ 144.870904, 13.51962 ], [ 144.870751, 13.519571 ], [ 144.870396, 13.519456 ], [ 144.869958, 13.519314 ], [ 144.86973, 13.51924 ], [ 144.869333, 13.519112 ], [ 144.868979, 13.518999 ], [ 144.868575, 13.518869 ], [ 144.867363, 13.518479 ], [ 144.867169, 13.518417 ], [ 144.86696, 13.51835 ], [ 144.866866, 13.518317 ], [ 144.866584, 13.518221 ], [ 144.86649, 13.51819 ], [ 144.86621, 13.51811 ], [ 144.865994, 13.518036 ], [ 144.864521, 13.517537 ], [ 144.86403, 13.517371 ], [ 144.863954, 13.517345 ], [ 144.863728, 13.517268 ], [ 144.86369, 13.51911 ], [ 144.863815, 13.519729 ], [ 144.863839, 13.520309 ], [ 144.86396, 13.5215 ], [ 144.864194, 13.524067 ], [ 144.8643, 13.525226 ], [ 144.864407, 13.526407 ], [ 144.864415, 13.526494 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "950701", "GEOID10": "66010950701", "NAME10": "9507.01", "NAMELSAD10": "Census Tract 9507.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3408994, "AWATER10": 0, "INTPTLAT10": "+13.5228084", "INTPTLON10": "+144.8550003" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.864434, 13.526684 ], [ 144.864415, 13.526494 ], [ 144.864407, 13.526407 ], [ 144.8643, 13.525226 ], [ 144.864194, 13.524067 ], [ 144.86396, 13.5215 ], [ 144.863839, 13.520309 ], [ 144.863815, 13.519729 ], [ 144.86369, 13.51911 ], [ 144.863728, 13.517268 ], [ 144.863653, 13.517243 ], [ 144.863548, 13.517207 ], [ 144.86329, 13.51712 ], [ 144.863235, 13.517102 ], [ 144.863131, 13.517069 ], [ 144.863032, 13.517037 ], [ 144.862736, 13.516941 ], [ 144.862638, 13.51691 ], [ 144.862548, 13.516881 ], [ 144.86233, 13.51681 ], [ 144.86228, 13.516795 ], [ 144.86219, 13.51677 ], [ 144.862066, 13.51673 ], [ 144.861694, 13.516609 ], [ 144.86157, 13.51657 ], [ 144.86137, 13.516502 ], [ 144.86077, 13.516298 ], [ 144.86057, 13.51623 ], [ 144.86048, 13.5162 ], [ 144.86021, 13.51611 ], [ 144.86012, 13.51608 ], [ 144.859994, 13.516036 ], [ 144.859616, 13.515903 ], [ 144.85949, 13.51586 ], [ 144.859226, 13.515775 ], [ 144.85855, 13.51556 ], [ 144.858435, 13.515526 ], [ 144.85817, 13.51545 ], [ 144.85769, 13.5153 ], [ 144.857565, 13.51527 ], [ 144.85702, 13.51514 ], [ 144.85629, 13.515 ], [ 144.856039, 13.514967 ], [ 144.855708, 13.514924 ], [ 144.85567, 13.51492 ], [ 144.85508, 13.51487 ], [ 144.854305, 13.514865 ], [ 144.85337, 13.51486 ], [ 144.85288, 13.51486 ], [ 144.85256, 13.51486 ], [ 144.85213, 13.51487 ], [ 144.851981, 13.514872 ], [ 144.85156, 13.51488 ], [ 144.851207, 13.514883 ], [ 144.851164, 13.514883 ], [ 144.851035, 13.514884 ], [ 144.850993, 13.514885 ], [ 144.85051, 13.51489 ], [ 144.850497, 13.514889 ], [ 144.84968, 13.51487 ], [ 144.84932, 13.51485 ], [ 144.849013, 13.514818 ], [ 144.84884, 13.5148 ], [ 144.84852, 13.51477 ], [ 144.84838, 13.51476 ], [ 144.848091, 13.514724 ], [ 144.846807, 13.514567 ], [ 144.84658, 13.51454 ], [ 144.846379, 13.514517 ], [ 144.846335, 13.514511 ], [ 144.846205, 13.514496 ], [ 144.846162, 13.514492 ], [ 144.846094, 13.514484 ], [ 144.845893, 13.51446 ], [ 144.845826, 13.514453 ], [ 144.84568, 13.514436 ], [ 144.84536, 13.5144 ], [ 144.845242, 13.514388 ], [ 144.845097, 13.514375 ], [ 144.844791, 13.514346 ], [ 144.84451, 13.51432 ], [ 144.843875, 13.514283 ], [ 144.84364, 13.51427 ], [ 144.84365, 13.51434 ], [ 144.843662, 13.514418 ], [ 144.843698, 13.514651 ], [ 144.84371, 13.51473 ], [ 144.843746, 13.514899 ], [ 144.843854, 13.515409 ], [ 144.84389, 13.51558 ], [ 144.844032, 13.516204 ], [ 144.844458, 13.518075 ], [ 144.8446, 13.5187 ], [ 144.844674, 13.51904 ], [ 144.844895, 13.52006 ], [ 144.84497, 13.5204 ], [ 144.845052, 13.520748 ], [ 144.845298, 13.521792 ], [ 144.84538, 13.52214 ], [ 144.845437, 13.522406 ], [ 144.84559, 13.52312 ], [ 144.845619, 13.523202 ], [ 144.84571, 13.52346 ], [ 144.84581, 13.52371 ], [ 144.845895, 13.523856 ], [ 144.84595, 13.52395 ], [ 144.84618, 13.52429 ], [ 144.8462, 13.52432 ], [ 144.84651, 13.5248 ], [ 144.846615, 13.524956 ], [ 144.84686, 13.52532 ], [ 144.846946, 13.525458 ], [ 144.847203, 13.525871 ], [ 144.84729, 13.52601 ], [ 144.847427, 13.526318 ], [ 144.84769, 13.52691 ], [ 144.84783, 13.527248 ], [ 144.84796, 13.52756 ], [ 144.848002, 13.527648 ], [ 144.848129, 13.527914 ], [ 144.848172, 13.528003 ], [ 144.848199, 13.52806 ], [ 144.848236, 13.528136 ], [ 144.848282, 13.528232 ], [ 144.84831, 13.52829 ], [ 144.84837, 13.52842 ], [ 144.848427, 13.52854 ], [ 144.8486, 13.5289 ], [ 144.848772, 13.529296 ], [ 144.848883, 13.529551 ], [ 144.8489, 13.52959 ], [ 144.84895, 13.529712 ], [ 144.849152, 13.530198 ], [ 144.84922, 13.53036 ], [ 144.849309, 13.530358 ], [ 144.849579, 13.530351 ], [ 144.84967, 13.53035 ], [ 144.849756, 13.53035 ], [ 144.850018, 13.530351 ], [ 144.850105, 13.530352 ], [ 144.850297, 13.530352 ], [ 144.850873, 13.530354 ], [ 144.851065, 13.530355 ], [ 144.851188, 13.530355 ], [ 144.851557, 13.530357 ], [ 144.851681, 13.530358 ], [ 144.85181, 13.530358 ], [ 144.8522, 13.530359 ], [ 144.85233, 13.53036 ], [ 144.852426, 13.53036 ], [ 144.852714, 13.53036 ], [ 144.85281, 13.53036 ], [ 144.852894, 13.53036 ], [ 144.853146, 13.53036 ], [ 144.85323, 13.53036 ], [ 144.853354, 13.53036 ], [ 144.853726, 13.53036 ], [ 144.85385, 13.53036 ], [ 144.854094, 13.53036 ], [ 144.854826, 13.53036 ], [ 144.85507, 13.53036 ], [ 144.855171, 13.530363 ], [ 144.855475, 13.530374 ], [ 144.855577, 13.530378 ], [ 144.85562, 13.53038 ], [ 144.855713, 13.530377 ], [ 144.856123, 13.530367 ], [ 144.85626, 13.530364 ], [ 144.856368, 13.53036 ], [ 144.856694, 13.530352 ], [ 144.856803, 13.53035 ], [ 144.8569, 13.530347 ], [ 144.85719, 13.53034 ], [ 144.857192, 13.53034 ], [ 144.85729, 13.53035 ], [ 144.857384, 13.530385 ], [ 144.85745, 13.53041 ], [ 144.85761, 13.5305 ], [ 144.857653, 13.530526 ], [ 144.85774, 13.53058 ], [ 144.857833, 13.530633 ], [ 144.85802, 13.53074 ], [ 144.858124, 13.530774 ], [ 144.85814, 13.53078 ], [ 144.85823, 13.53076 ], [ 144.85833, 13.53086 ], [ 144.858373, 13.530881 ], [ 144.85851, 13.53095 ], [ 144.85885, 13.53115 ], [ 144.858863, 13.531168 ], [ 144.8589, 13.53122 ], [ 144.85894, 13.53134 ], [ 144.859454, 13.531691 ], [ 144.859566, 13.531693 ], [ 144.859897, 13.531699 ], [ 144.862267, 13.532158 ], [ 144.865025, 13.532693 ], [ 144.865035, 13.532279 ], [ 144.864941, 13.531599 ], [ 144.864662, 13.528895 ], [ 144.864434, 13.526684 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "950801", "GEOID10": "66010950801", "NAME10": "9508.01", "NAMELSAD10": "Census Tract 9508.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3515251, "AWATER10": 0, "INTPTLAT10": "+13.5490347", "INTPTLON10": "+144.8455748" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.854983, 13.54728 ], [ 144.854987, 13.547048 ], [ 144.85499, 13.54696 ], [ 144.854999, 13.546385 ], [ 144.855003, 13.546164 ], [ 144.855003, 13.546121 ], [ 144.855005, 13.545995 ], [ 144.855006, 13.545953 ], [ 144.855006, 13.545908 ], [ 144.855008, 13.545774 ], [ 144.85501, 13.54573 ], [ 144.855003, 13.545486 ], [ 144.85499, 13.54494 ], [ 144.854991, 13.544756 ], [ 144.854994, 13.544513 ], [ 144.854995, 13.544394 ], [ 144.854998, 13.544038 ], [ 144.855, 13.54392 ], [ 144.85499, 13.54375 ], [ 144.85498, 13.54357 ], [ 144.85494, 13.54331 ], [ 144.854926, 13.543245 ], [ 144.85489, 13.54308 ], [ 144.854878, 13.543038 ], [ 144.854845, 13.542913 ], [ 144.854834, 13.542872 ], [ 144.854823, 13.542831 ], [ 144.854791, 13.54271 ], [ 144.854781, 13.54267 ], [ 144.85477, 13.54263 ], [ 144.854767, 13.542624 ], [ 144.854727, 13.542535 ], [ 144.854708, 13.542494 ], [ 144.854689, 13.542451 ], [ 144.854631, 13.542324 ], [ 144.854459, 13.541943 ], [ 144.854402, 13.541817 ], [ 144.854389, 13.541789 ], [ 144.854352, 13.541707 ], [ 144.85434, 13.54168 ], [ 144.854326, 13.54165 ], [ 144.854284, 13.54156 ], [ 144.85427, 13.54153 ], [ 144.854203, 13.541567 ], [ 144.85411, 13.54162 ], [ 144.853989, 13.541644 ], [ 144.85396, 13.54165 ], [ 144.853913, 13.541652 ], [ 144.85372, 13.541658 ], [ 144.853141, 13.541678 ], [ 144.85309, 13.54168 ], [ 144.852949, 13.541678 ], [ 144.852875, 13.541676 ], [ 144.852656, 13.541673 ], [ 144.852583, 13.541672 ], [ 144.852528, 13.541671 ], [ 144.852364, 13.541668 ], [ 144.85231, 13.541667 ], [ 144.852225, 13.541665 ], [ 144.851974, 13.541661 ], [ 144.85189, 13.54166 ], [ 144.851876, 13.54166 ], [ 144.851834, 13.54166 ], [ 144.85182, 13.54166 ], [ 144.85171, 13.541659 ], [ 144.85138, 13.541656 ], [ 144.85127, 13.541656 ], [ 144.851181, 13.541655 ], [ 144.850915, 13.541653 ], [ 144.850827, 13.541653 ], [ 144.850743, 13.541652 ], [ 144.850493, 13.54165 ], [ 144.85041, 13.54165 ], [ 144.850292, 13.54165 ], [ 144.849938, 13.54165 ], [ 144.849821, 13.54165 ], [ 144.849764, 13.54165 ], [ 144.849596, 13.54165 ], [ 144.84954, 13.54165 ], [ 144.849455, 13.54165 ], [ 144.849202, 13.54165 ], [ 144.849118, 13.54165 ], [ 144.849047, 13.54165 ], [ 144.848833, 13.54165 ], [ 144.848763, 13.54165 ], [ 144.848336, 13.54165 ], [ 144.84809, 13.54165 ], [ 144.847971, 13.541649 ], [ 144.847614, 13.541646 ], [ 144.847496, 13.541645 ], [ 144.847399, 13.541644 ], [ 144.847108, 13.541641 ], [ 144.847012, 13.541641 ], [ 144.846955, 13.54164 ], [ 144.84695, 13.54164 ], [ 144.846785, 13.541641 ], [ 144.846729, 13.541642 ], [ 144.846632, 13.541642 ], [ 144.846341, 13.541645 ], [ 144.846245, 13.541646 ], [ 144.846161, 13.541646 ], [ 144.845992, 13.541648 ], [ 144.845913, 13.541649 ], [ 144.84583, 13.54165 ], [ 144.845764, 13.54165 ], [ 144.845692, 13.54165 ], [ 144.845281, 13.541652 ], [ 144.845145, 13.541654 ], [ 144.84505, 13.541654 ], [ 144.844766, 13.541656 ], [ 144.844672, 13.541657 ], [ 144.844559, 13.541657 ], [ 144.844222, 13.541659 ], [ 144.84411, 13.54166 ], [ 144.844087, 13.54166 ], [ 144.84402, 13.54166 ], [ 144.843998, 13.541661 ], [ 144.843903, 13.541662 ], [ 144.843621, 13.541665 ], [ 144.843527, 13.541667 ], [ 144.843473, 13.541667 ], [ 144.843313, 13.541669 ], [ 144.84326, 13.54167 ], [ 144.842848, 13.541664 ], [ 144.841612, 13.541646 ], [ 144.8412, 13.54164 ], [ 144.840969, 13.541642 ], [ 144.840279, 13.541647 ], [ 144.84005, 13.54165 ], [ 144.839817, 13.541656 ], [ 144.839121, 13.541673 ], [ 144.83889, 13.54168 ], [ 144.838688, 13.541673 ], [ 144.838085, 13.541655 ], [ 144.837884, 13.54165 ], [ 144.837695, 13.541652 ], [ 144.837273, 13.541658 ], [ 144.837129, 13.54166 ], [ 144.836941, 13.541664 ], [ 144.83658, 13.54167 ], [ 144.836488, 13.54167 ], [ 144.836214, 13.54167 ], [ 144.836123, 13.54167 ], [ 144.835713, 13.54167 ], [ 144.83547, 13.54167 ], [ 144.835312, 13.541668 ], [ 144.835132, 13.541666 ], [ 144.834484, 13.541662 ], [ 144.83422, 13.54166 ], [ 144.83408, 13.5417 ], [ 144.833971, 13.541767 ], [ 144.8334, 13.54184 ], [ 144.83322, 13.54184 ], [ 144.833254, 13.541987 ], [ 144.833306, 13.54221 ], [ 144.83337, 13.54248 ], [ 144.833517, 13.543126 ], [ 144.83358, 13.5434 ], [ 144.83377, 13.54417 ], [ 144.834089, 13.545028 ], [ 144.83432, 13.54565 ], [ 144.83446, 13.54601 ], [ 144.834563, 13.546261 ], [ 144.834643, 13.546457 ], [ 144.83469, 13.54657 ], [ 144.835138, 13.547466 ], [ 144.83525, 13.54769 ], [ 144.8355, 13.548174 ], [ 144.835816, 13.548788 ], [ 144.8359, 13.54895 ], [ 144.83622, 13.54956 ], [ 144.836332, 13.549776 ], [ 144.836371, 13.549851 ], [ 144.836668, 13.550424 ], [ 144.83678, 13.55064 ], [ 144.836837, 13.550755 ], [ 144.837011, 13.551102 ], [ 144.83703, 13.55114 ], [ 144.837073, 13.551216 ], [ 144.837102, 13.551268 ], [ 144.837192, 13.551427 ], [ 144.837223, 13.55148 ], [ 144.837247, 13.551522 ], [ 144.837319, 13.551648 ], [ 144.837343, 13.551691 ], [ 144.837368, 13.551736 ], [ 144.837446, 13.551872 ], [ 144.837472, 13.551918 ], [ 144.837652, 13.552235 ], [ 144.83816, 13.55313 ], [ 144.838193, 13.553186 ], [ 144.8383, 13.55337 ], [ 144.83838, 13.5535 ], [ 144.838417, 13.553563 ], [ 144.838528, 13.553755 ], [ 144.838566, 13.553819 ], [ 144.838662, 13.553985 ], [ 144.838953, 13.554483 ], [ 144.83905, 13.55465 ], [ 144.839138, 13.554804 ], [ 144.839405, 13.555267 ], [ 144.83943, 13.55531 ], [ 144.839495, 13.555422 ], [ 144.839742, 13.555843 ], [ 144.840483, 13.557108 ], [ 144.84073, 13.55753 ], [ 144.840842, 13.557516 ], [ 144.84099, 13.5575 ], [ 144.841182, 13.557495 ], [ 144.841296, 13.557493 ], [ 144.841474, 13.557488 ], [ 144.84182, 13.55748 ], [ 144.842011, 13.557474 ], [ 144.84219, 13.55747 ], [ 144.842222, 13.55747 ], [ 144.842319, 13.55747 ], [ 144.842352, 13.557471 ], [ 144.842549, 13.557472 ], [ 144.843142, 13.557478 ], [ 144.84334, 13.55748 ], [ 144.843474, 13.557482 ], [ 144.843876, 13.557488 ], [ 144.84401, 13.55749 ], [ 144.844206, 13.55749 ], [ 144.84445, 13.55749 ], [ 144.844794, 13.55749 ], [ 144.8449, 13.55749 ], [ 144.84499, 13.55749 ], [ 144.84507, 13.55749 ], [ 144.84512, 13.55749 ], [ 144.845311, 13.55749 ], [ 144.845392, 13.55749 ], [ 144.84545, 13.55749 ], [ 144.845625, 13.55749 ], [ 144.845684, 13.55749 ], [ 144.84574, 13.55749 ], [ 144.845911, 13.55749 ], [ 144.845968, 13.55749 ], [ 144.84603, 13.55749 ], [ 144.846217, 13.55749 ], [ 144.84628, 13.55749 ], [ 144.846426, 13.55749 ], [ 144.846503, 13.55749 ], [ 144.846864, 13.55749 ], [ 144.84701, 13.55749 ], [ 144.847085, 13.55749 ], [ 144.847313, 13.55749 ], [ 144.847389, 13.55749 ], [ 144.847553, 13.55749 ], [ 144.848045, 13.55749 ], [ 144.84821, 13.55749 ], [ 144.848278, 13.55749 ], [ 144.848482, 13.55749 ], [ 144.84855, 13.55749 ], [ 144.848734, 13.557488 ], [ 144.849287, 13.557484 ], [ 144.849472, 13.557484 ], [ 144.849647, 13.557483 ], [ 144.850174, 13.55748 ], [ 144.85022, 13.55748 ], [ 144.85035, 13.55747 ], [ 144.850362, 13.557471 ], [ 144.850398, 13.557477 ], [ 144.85041, 13.55748 ], [ 144.850841, 13.557482 ], [ 144.851247, 13.557484 ], [ 144.851501, 13.557486 ], [ 144.851773, 13.557488 ], [ 144.85192, 13.55749 ], [ 144.852137, 13.557488 ], [ 144.852293, 13.557487 ], [ 144.85257, 13.557487 ], [ 144.852685, 13.557486 ], [ 144.85303, 13.557484 ], [ 144.853146, 13.557484 ], [ 144.853212, 13.557483 ], [ 144.853411, 13.557483 ], [ 144.853478, 13.557483 ], [ 144.85359, 13.557482 ], [ 144.853927, 13.55748 ], [ 144.85404, 13.55748 ], [ 144.854227, 13.557484 ], [ 144.85446, 13.55749 ], [ 144.854791, 13.55749 ], [ 144.85498, 13.55749 ], [ 144.85498, 13.557445 ], [ 144.85498, 13.55735 ], [ 144.85497, 13.557313 ], [ 144.85496, 13.55727 ], [ 144.854966, 13.55721 ], [ 144.854984, 13.55703 ], [ 144.85499, 13.55697 ], [ 144.854996, 13.55691 ], [ 144.855014, 13.55673 ], [ 144.85502, 13.55667 ], [ 144.855021, 13.556653 ], [ 144.855026, 13.556604 ], [ 144.855029, 13.556588 ], [ 144.855031, 13.556564 ], [ 144.855039, 13.556492 ], [ 144.855043, 13.556469 ], [ 144.855046, 13.556439 ], [ 144.85505, 13.55641 ], [ 144.855053, 13.556349 ], [ 144.855055, 13.556319 ], [ 144.855058, 13.556261 ], [ 144.855066, 13.556087 ], [ 144.85507, 13.55603 ], [ 144.855068, 13.555951 ], [ 144.855062, 13.555714 ], [ 144.855061, 13.555636 ], [ 144.855058, 13.555546 ], [ 144.855052, 13.555279 ], [ 144.85505, 13.55519 ], [ 144.855052, 13.554958 ], [ 144.855058, 13.554261 ], [ 144.85506, 13.55403 ], [ 144.855062, 13.553972 ], [ 144.85507, 13.553801 ], [ 144.855073, 13.553744 ], [ 144.855076, 13.553661 ], [ 144.85508, 13.5536 ], [ 144.855077, 13.553415 ], [ 144.855077, 13.553333 ], [ 144.855076, 13.553243 ], [ 144.855073, 13.552973 ], [ 144.855073, 13.552884 ], [ 144.855072, 13.552817 ], [ 144.85507, 13.552616 ], [ 144.855076, 13.552558 ], [ 144.855053, 13.551839 ], [ 144.855066, 13.551772 ], [ 144.855052, 13.551709 ], [ 144.85503, 13.551317 ], [ 144.855023, 13.551187 ], [ 144.855018, 13.551105 ], [ 144.855004, 13.550861 ], [ 144.855, 13.55078 ], [ 144.855, 13.550693 ], [ 144.855, 13.550432 ], [ 144.855, 13.550346 ], [ 144.855, 13.5503 ], [ 144.855, 13.550163 ], [ 144.855, 13.550118 ], [ 144.855, 13.550028 ], [ 144.855, 13.549759 ], [ 144.855, 13.54967 ], [ 144.854998, 13.549562 ], [ 144.854991, 13.549237 ], [ 144.85499, 13.54913 ], [ 144.85499, 13.549097 ], [ 144.85499, 13.548999 ], [ 144.85499, 13.548967 ], [ 144.85499, 13.548931 ], [ 144.85499, 13.548825 ], [ 144.85499, 13.54879 ], [ 144.85499, 13.548757 ], [ 144.854992, 13.548658 ], [ 144.854993, 13.548626 ], [ 144.854994, 13.548552 ], [ 144.854998, 13.548333 ], [ 144.855, 13.54826 ], [ 144.854996, 13.548093 ], [ 144.854984, 13.547595 ], [ 144.854961, 13.547427 ], [ 144.854983, 13.54728 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "953102", "GEOID10": "66010953102", "NAME10": "9531.02", "NAMELSAD10": "Census Tract 9531.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 5226656, "AWATER10": 0, "INTPTLAT10": "+13.4485625", "INTPTLON10": "+144.7760812" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.78511, 13.446387 ], [ 144.7853, 13.444413 ], [ 144.785396, 13.443643 ], [ 144.785467, 13.443085 ], [ 144.785627, 13.441844 ], [ 144.785749, 13.440882 ], [ 144.786129, 13.440904 ], [ 144.788097, 13.440783 ], [ 144.788113, 13.440828 ], [ 144.78851, 13.4408 ], [ 144.78866, 13.440784 ], [ 144.7888, 13.44077 ], [ 144.78911, 13.44073 ], [ 144.789112, 13.440729 ], [ 144.789263, 13.440714 ], [ 144.789344, 13.440705 ], [ 144.78959, 13.44068 ], [ 144.7896, 13.44068 ], [ 144.789617, 13.440675 ], [ 144.78967, 13.44066 ], [ 144.78965, 13.4406 ], [ 144.789639, 13.440507 ], [ 144.78962, 13.44033 ], [ 144.789593, 13.440039 ], [ 144.78959, 13.44 ], [ 144.78961, 13.43993 ], [ 144.78963, 13.43989 ], [ 144.78968, 13.43996 ], [ 144.78979, 13.44002 ], [ 144.78996, 13.44007 ], [ 144.790733, 13.439755 ], [ 144.791224, 13.43916 ], [ 144.79151, 13.4391 ], [ 144.791583, 13.439082 ], [ 144.79172, 13.43905 ], [ 144.79178, 13.43907 ], [ 144.791779, 13.438866 ], [ 144.792216, 13.438766 ], [ 144.792377, 13.438514 ], [ 144.792551, 13.437905 ], [ 144.79249, 13.437894 ], [ 144.79247, 13.437891 ], [ 144.792453, 13.437887 ], [ 144.792402, 13.437878 ], [ 144.792385, 13.437875 ], [ 144.792367, 13.437872 ], [ 144.792317, 13.437863 ], [ 144.7923, 13.43786 ], [ 144.792232, 13.437846 ], [ 144.792028, 13.437807 ], [ 144.791961, 13.437795 ], [ 144.79188, 13.43778 ], [ 144.791809, 13.437764 ], [ 144.791357, 13.437665 ], [ 144.791207, 13.437633 ], [ 144.791139, 13.437618 ], [ 144.790937, 13.437574 ], [ 144.79087, 13.43756 ], [ 144.79061, 13.437505 ], [ 144.78983, 13.437344 ], [ 144.78957, 13.43729 ], [ 144.789353, 13.437248 ], [ 144.788705, 13.437122 ], [ 144.78849, 13.43708 ], [ 144.788361, 13.437053 ], [ 144.787978, 13.436975 ], [ 144.78785, 13.43695 ], [ 144.787807, 13.436941 ], [ 144.787682, 13.436917 ], [ 144.78764, 13.43691 ], [ 144.787496, 13.43688 ], [ 144.787064, 13.436789 ], [ 144.78692, 13.43676 ], [ 144.786726, 13.436721 ], [ 144.78636, 13.43665 ], [ 144.786145, 13.436603 ], [ 144.785952, 13.436562 ], [ 144.785867, 13.436543 ], [ 144.785615, 13.436489 ], [ 144.785531, 13.436471 ], [ 144.785263, 13.436412 ], [ 144.78525, 13.43641 ], [ 144.78484, 13.43631 ], [ 144.78453, 13.43617 ], [ 144.784491, 13.436149 ], [ 144.78425, 13.43602 ], [ 144.784223, 13.436 ], [ 144.784143, 13.435943 ], [ 144.784117, 13.435925 ], [ 144.784073, 13.435893 ], [ 144.783943, 13.4358 ], [ 144.7839, 13.43577 ], [ 144.783807, 13.435696 ], [ 144.78353, 13.435477 ], [ 144.78347, 13.43543 ], [ 144.783437, 13.435405 ], [ 144.783395, 13.435373 ], [ 144.783271, 13.435278 ], [ 144.78323, 13.435247 ], [ 144.783139, 13.435177 ], [ 144.783082, 13.435133 ], [ 144.78296, 13.43504 ], [ 144.782862, 13.434979 ], [ 144.782766, 13.434919 ], [ 144.782739, 13.434902 ], [ 144.78267, 13.43486 ], [ 144.782658, 13.434854 ], [ 144.78263, 13.43484 ], [ 144.78261, 13.434828 ], [ 144.782551, 13.434795 ], [ 144.782532, 13.434785 ], [ 144.782493, 13.434764 ], [ 144.78245, 13.43474 ], [ 144.782375, 13.43471 ], [ 144.782335, 13.434694 ], [ 144.782297, 13.434678 ], [ 144.782183, 13.434633 ], [ 144.78215, 13.43462 ], [ 144.782145, 13.434619 ], [ 144.782124, 13.434613 ], [ 144.782064, 13.434595 ], [ 144.782044, 13.43459 ], [ 144.781996, 13.434576 ], [ 144.781907, 13.434549 ], [ 144.781853, 13.434534 ], [ 144.781806, 13.434521 ], [ 144.78156, 13.43445 ], [ 144.781537, 13.434444 ], [ 144.78098, 13.43432 ], [ 144.780715, 13.434292 ], [ 144.7806, 13.43428 ], [ 144.78044, 13.43425 ], [ 144.780401, 13.434242 ], [ 144.780286, 13.434218 ], [ 144.780248, 13.434211 ], [ 144.780188, 13.434198 ], [ 144.780009, 13.434162 ], [ 144.77995, 13.43415 ], [ 144.77986, 13.434214 ], [ 144.77966, 13.43436 ], [ 144.779591, 13.434407 ], [ 144.7795, 13.43447 ], [ 144.779403, 13.434538 ], [ 144.77933, 13.43459 ], [ 144.779096, 13.434717 ], [ 144.778993, 13.434774 ], [ 144.778943, 13.434801 ], [ 144.77889, 13.43483 ], [ 144.778791, 13.434876 ], [ 144.77874, 13.4349 ], [ 144.778675, 13.434932 ], [ 144.778481, 13.435029 ], [ 144.77848, 13.43503 ], [ 144.77843, 13.43508 ], [ 144.778246, 13.435216 ], [ 144.77804, 13.43537 ], [ 144.7778, 13.43568 ], [ 144.777785, 13.435712 ], [ 144.77769, 13.43592 ], [ 144.777618, 13.43608 ], [ 144.777466, 13.43683 ], [ 144.777466, 13.43686 ], [ 144.7774, 13.43712 ], [ 144.777362, 13.437289 ], [ 144.777248, 13.4378 ], [ 144.77721, 13.43797 ], [ 144.777186, 13.438076 ], [ 144.777149, 13.43824 ], [ 144.77697, 13.43905 ], [ 144.77691, 13.43932 ], [ 144.7769, 13.43935 ], [ 144.776873, 13.439483 ], [ 144.776776, 13.439978 ], [ 144.77676, 13.44006 ], [ 144.77673, 13.44014 ], [ 144.776708, 13.440196 ], [ 144.776642, 13.440364 ], [ 144.77662, 13.44042 ], [ 144.77658, 13.440489 ], [ 144.77646, 13.4407 ], [ 144.77642, 13.44077 ], [ 144.776346, 13.440865 ], [ 144.77615, 13.44112 ], [ 144.776119, 13.441148 ], [ 144.77603, 13.44123 ], [ 144.775946, 13.441299 ], [ 144.77585, 13.44138 ], [ 144.775688, 13.441496 ], [ 144.7756, 13.44156 ], [ 144.775568, 13.44158 ], [ 144.775472, 13.44164 ], [ 144.77544, 13.44166 ], [ 144.775225, 13.441818 ], [ 144.77521, 13.44183 ], [ 144.77477, 13.44212 ], [ 144.774541, 13.442234 ], [ 144.77447, 13.44227 ], [ 144.77429, 13.44232 ], [ 144.77419, 13.44235 ], [ 144.774155, 13.442358 ], [ 144.77385, 13.44243 ], [ 144.773747, 13.442447 ], [ 144.77361, 13.44247 ], [ 144.773501, 13.442483 ], [ 144.773177, 13.442526 ], [ 144.77307, 13.44254 ], [ 144.772891, 13.442564 ], [ 144.772358, 13.442636 ], [ 144.77218, 13.44266 ], [ 144.77215, 13.442665 ], [ 144.77213, 13.44267 ], [ 144.77206, 13.442679 ], [ 144.772031, 13.442683 ], [ 144.771988, 13.442688 ], [ 144.771862, 13.442704 ], [ 144.77182, 13.44271 ], [ 144.771803, 13.442711 ], [ 144.771755, 13.442718 ], [ 144.77174, 13.44272 ], [ 144.771708, 13.442723 ], [ 144.771613, 13.442736 ], [ 144.771582, 13.44274 ], [ 144.771503, 13.442749 ], [ 144.771268, 13.44278 ], [ 144.77119, 13.44279 ], [ 144.771111, 13.442799 ], [ 144.770877, 13.442828 ], [ 144.770799, 13.442838 ], [ 144.770697, 13.44285 ], [ 144.770391, 13.442887 ], [ 144.77029, 13.4429 ], [ 144.770242, 13.442906 ], [ 144.770098, 13.442924 ], [ 144.77005, 13.44293 ], [ 144.769996, 13.442936 ], [ 144.769836, 13.442957 ], [ 144.769783, 13.442964 ], [ 144.769733, 13.44297 ], [ 144.769585, 13.442989 ], [ 144.76958, 13.44299 ], [ 144.769536, 13.442993 ], [ 144.769514, 13.442994 ], [ 144.769451, 13.442998 ], [ 144.76943, 13.443 ], [ 144.769412, 13.443002 ], [ 144.769358, 13.44301 ], [ 144.769341, 13.443013 ], [ 144.769324, 13.443015 ], [ 144.769273, 13.443023 ], [ 144.769257, 13.443026 ], [ 144.769211, 13.443032 ], [ 144.769075, 13.443053 ], [ 144.76903, 13.44306 ], [ 144.76882, 13.4431 ], [ 144.768793, 13.443108 ], [ 144.76849, 13.44321 ], [ 144.76826, 13.44331 ], [ 144.768122, 13.443384 ], [ 144.76791, 13.4435 ], [ 144.767662, 13.443657 ], [ 144.767328, 13.443892 ], [ 144.767248, 13.443945 ], [ 144.767009, 13.444106 ], [ 144.76693, 13.44416 ], [ 144.766865, 13.444204 ], [ 144.766671, 13.44434 ], [ 144.766607, 13.444386 ], [ 144.766565, 13.444414 ], [ 144.766441, 13.444501 ], [ 144.7664, 13.44453 ], [ 144.766287, 13.444607 ], [ 144.765951, 13.444841 ], [ 144.765839, 13.444919 ], [ 144.765647, 13.445052 ], [ 144.76555, 13.44512 ], [ 144.76507, 13.445446 ], [ 144.764878, 13.445577 ], [ 144.764856, 13.445591 ], [ 144.764791, 13.445635 ], [ 144.76477, 13.44565 ], [ 144.764728, 13.44568 ], [ 144.764602, 13.44577 ], [ 144.76456, 13.4458 ], [ 144.764376, 13.445924 ], [ 144.763828, 13.446299 ], [ 144.763645, 13.446425 ], [ 144.763505, 13.44652 ], [ 144.76336, 13.44662 ], [ 144.763075, 13.446785 ], [ 144.76293, 13.44687 ], [ 144.762863, 13.446909 ], [ 144.762666, 13.447029 ], [ 144.7626, 13.44707 ], [ 144.762518, 13.447116 ], [ 144.762272, 13.447254 ], [ 144.76219, 13.4473 ], [ 144.761975, 13.447419 ], [ 144.76133, 13.447778 ], [ 144.76131, 13.44779 ], [ 144.76113, 13.44792 ], [ 144.7608, 13.44817 ], [ 144.760743, 13.448221 ], [ 144.76039, 13.44854 ], [ 144.7601, 13.44887 ], [ 144.75988, 13.44915 ], [ 144.75981, 13.44926 ], [ 144.759768, 13.449316 ], [ 144.75957, 13.44959 ], [ 144.75949, 13.44972 ], [ 144.759347, 13.449919 ], [ 144.758921, 13.45052 ], [ 144.75878, 13.45072 ], [ 144.758714, 13.450814 ], [ 144.7586, 13.45098 ], [ 144.758533, 13.451107 ], [ 144.75848, 13.45121 ], [ 144.758443, 13.451336 ], [ 144.75841, 13.45145 ], [ 144.75834, 13.45166 ], [ 144.758338, 13.451716 ], [ 144.758334, 13.451848 ], [ 144.75833, 13.45198 ], [ 144.758333, 13.452079 ], [ 144.75834, 13.45224 ], [ 144.75837, 13.45243 ], [ 144.75845, 13.45269 ], [ 144.758487, 13.45275 ], [ 144.75858, 13.4529 ], [ 144.75862, 13.45294 ], [ 144.75871, 13.45308 ], [ 144.758752, 13.453129 ], [ 144.75897, 13.45338 ], [ 144.759208, 13.453654 ], [ 144.75936, 13.45383 ], [ 144.759412, 13.453892 ], [ 144.759568, 13.454078 ], [ 144.75962, 13.45414 ], [ 144.759656, 13.454181 ], [ 144.759764, 13.454304 ], [ 144.7598, 13.454346 ], [ 144.759948, 13.454217 ], [ 144.760043, 13.454212 ], [ 144.760166, 13.45421 ], [ 144.760508, 13.454186 ], [ 144.76058, 13.454189 ], [ 144.760677, 13.454181 ], [ 144.760788, 13.454141 ], [ 144.76084, 13.45411 ], [ 144.76097, 13.454092 ], [ 144.761137, 13.454045 ], [ 144.761237, 13.454094 ], [ 144.761351, 13.454108 ], [ 144.761578, 13.454169 ], [ 144.761717, 13.454203 ], [ 144.761751, 13.454203 ], [ 144.761791, 13.454203 ], [ 144.761835, 13.454168 ], [ 144.76187, 13.454053 ], [ 144.761938, 13.45384 ], [ 144.762085, 13.453429 ], [ 144.762201, 13.453192 ], [ 144.762371, 13.45298 ], [ 144.762507, 13.452834 ], [ 144.762768, 13.452634 ], [ 144.762895, 13.452587 ], [ 144.763011, 13.452568 ], [ 144.763178, 13.45257 ], [ 144.763407, 13.452598 ], [ 144.763511, 13.452648 ], [ 144.7636, 13.452612 ], [ 144.763776, 13.452492 ], [ 144.763982, 13.452335 ], [ 144.764221, 13.452163 ], [ 144.764452, 13.452002 ], [ 144.764592, 13.45196 ], [ 144.76477, 13.451996 ], [ 144.764982, 13.452028 ], [ 144.765287, 13.452089 ], [ 144.765556, 13.452123 ], [ 144.765661, 13.452088 ], [ 144.765778, 13.452062 ], [ 144.765962, 13.451932 ], [ 144.766103, 13.451841 ], [ 144.76634, 13.451748 ], [ 144.766449, 13.451831 ], [ 144.766561, 13.451908 ], [ 144.76656, 13.452053 ], [ 144.766495, 13.452193 ], [ 144.766429, 13.452347 ], [ 144.766396, 13.452496 ], [ 144.76637, 13.452667 ], [ 144.76634, 13.452942 ], [ 144.766426, 13.453085 ], [ 144.766496, 13.453177 ], [ 144.766571, 13.45325 ], [ 144.766807, 13.453374 ], [ 144.766947, 13.453451 ], [ 144.767182, 13.453655 ], [ 144.767295, 13.453814 ], [ 144.767349, 13.453982 ], [ 144.767428, 13.454177 ], [ 144.767521, 13.454369 ], [ 144.767662, 13.454525 ], [ 144.767816, 13.454685 ], [ 144.767954, 13.454877 ], [ 144.768082, 13.455165 ], [ 144.76817, 13.455459 ], [ 144.768216, 13.45567 ], [ 144.768238, 13.455765 ], [ 144.76828, 13.45609 ], [ 144.768293, 13.456183 ], [ 144.76831, 13.45631 ], [ 144.76819, 13.4565 ], [ 144.76818, 13.45671 ], [ 144.76823, 13.45684 ], [ 144.76836, 13.45698 ], [ 144.76855, 13.45702 ], [ 144.76879, 13.45695 ], [ 144.76902, 13.45693 ], [ 144.76927, 13.45702 ], [ 144.769283, 13.457027 ], [ 144.76982, 13.45731 ], [ 144.77031, 13.45738 ], [ 144.77059, 13.4575 ], [ 144.770697, 13.457597 ], [ 144.770804, 13.457724 ], [ 144.77108, 13.45805 ], [ 144.771194, 13.458543 ], [ 144.77124, 13.45874 ], [ 144.771275, 13.458844 ], [ 144.77129, 13.45889 ], [ 144.771321, 13.458937 ], [ 144.77137, 13.45901 ], [ 144.77152, 13.45916 ], [ 144.771532, 13.459173 ], [ 144.771604, 13.459251 ], [ 144.771717, 13.459374 ], [ 144.772056, 13.459746 ], [ 144.77217, 13.45987 ], [ 144.772257, 13.459965 ], [ 144.77239, 13.46011 ], [ 144.772509, 13.460259 ], [ 144.77259, 13.46036 ], [ 144.772723, 13.460348 ], [ 144.773124, 13.460313 ], [ 144.77316, 13.46031 ], [ 144.773259, 13.460306 ], [ 144.773395, 13.460299 ], [ 144.773803, 13.460281 ], [ 144.77383, 13.46028 ], [ 144.77394, 13.46028 ], [ 144.77401, 13.46028 ], [ 144.77407, 13.46033 ], [ 144.77413, 13.46027 ], [ 144.774273, 13.460403 ], [ 144.774311, 13.461108 ], [ 144.774929, 13.461124 ], [ 144.775181, 13.460964 ], [ 144.776326, 13.460273 ], [ 144.776956, 13.460551 ], [ 144.777043, 13.460579 ], [ 144.777279, 13.461264 ], [ 144.777491, 13.461293 ], [ 144.777707, 13.461171 ], [ 144.778547, 13.461632 ], [ 144.779094, 13.46197 ], [ 144.78002, 13.46173 ], [ 144.780382, 13.461696 ], [ 144.781322, 13.461258 ], [ 144.781374, 13.460899 ], [ 144.781943, 13.460229 ], [ 144.782373, 13.459721 ], [ 144.784055, 13.458871 ], [ 144.784187, 13.458743 ], [ 144.784295, 13.454557 ], [ 144.784658, 13.450877 ], [ 144.784984, 13.447434 ], [ 144.78504, 13.44714 ], [ 144.785056, 13.446955 ], [ 144.785108, 13.446413 ], [ 144.78511, 13.446387 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "953101", "GEOID10": "66010953101", "NAME10": "9531.01", "NAMELSAD10": "Census Tract 9531.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 9451504, "AWATER10": 0, "INTPTLAT10": "+13.4382134", "INTPTLON10": "+144.7666247" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.77691, 13.43932 ], [ 144.77697, 13.43905 ], [ 144.777149, 13.43824 ], [ 144.777186, 13.438076 ], [ 144.77721, 13.43797 ], [ 144.777248, 13.4378 ], [ 144.777362, 13.437289 ], [ 144.7774, 13.43712 ], [ 144.777466, 13.43686 ], [ 144.777466, 13.43683 ], [ 144.777618, 13.43608 ], [ 144.77769, 13.43592 ], [ 144.777785, 13.435712 ], [ 144.7778, 13.43568 ], [ 144.77804, 13.43537 ], [ 144.778246, 13.435216 ], [ 144.77843, 13.43508 ], [ 144.77848, 13.43503 ], [ 144.778481, 13.435029 ], [ 144.778675, 13.434932 ], [ 144.77874, 13.4349 ], [ 144.778791, 13.434876 ], [ 144.77889, 13.43483 ], [ 144.778943, 13.434801 ], [ 144.778993, 13.434774 ], [ 144.779096, 13.434717 ], [ 144.77933, 13.43459 ], [ 144.779403, 13.434538 ], [ 144.7795, 13.43447 ], [ 144.779591, 13.434407 ], [ 144.77966, 13.43436 ], [ 144.77986, 13.434214 ], [ 144.77995, 13.43415 ], [ 144.780009, 13.434162 ], [ 144.780188, 13.434198 ], [ 144.780248, 13.434211 ], [ 144.780286, 13.434218 ], [ 144.780401, 13.434242 ], [ 144.78044, 13.43425 ], [ 144.7806, 13.43428 ], [ 144.780715, 13.434292 ], [ 144.78098, 13.43432 ], [ 144.781537, 13.434444 ], [ 144.78156, 13.43445 ], [ 144.781806, 13.434521 ], [ 144.781853, 13.434534 ], [ 144.781907, 13.434549 ], [ 144.781996, 13.434576 ], [ 144.782044, 13.43459 ], [ 144.782064, 13.434595 ], [ 144.782124, 13.434613 ], [ 144.782145, 13.434619 ], [ 144.78215, 13.43462 ], [ 144.782183, 13.434633 ], [ 144.782297, 13.434678 ], [ 144.782335, 13.434694 ], [ 144.782375, 13.43471 ], [ 144.78245, 13.43474 ], [ 144.782493, 13.434764 ], [ 144.782532, 13.434785 ], [ 144.782551, 13.434795 ], [ 144.78261, 13.434828 ], [ 144.78263, 13.43484 ], [ 144.782658, 13.434854 ], [ 144.78267, 13.43486 ], [ 144.782739, 13.434902 ], [ 144.782766, 13.434919 ], [ 144.782862, 13.434979 ], [ 144.78296, 13.43504 ], [ 144.783082, 13.435133 ], [ 144.783139, 13.435177 ], [ 144.78323, 13.435247 ], [ 144.783271, 13.435278 ], [ 144.783395, 13.435373 ], [ 144.783437, 13.435405 ], [ 144.78347, 13.43543 ], [ 144.78353, 13.435477 ], [ 144.783807, 13.435696 ], [ 144.7839, 13.43577 ], [ 144.783943, 13.4358 ], [ 144.784073, 13.435893 ], [ 144.784117, 13.435925 ], [ 144.784143, 13.435943 ], [ 144.784223, 13.436 ], [ 144.78425, 13.43602 ], [ 144.784491, 13.436149 ], [ 144.78453, 13.43617 ], [ 144.78484, 13.43631 ], [ 144.78525, 13.43641 ], [ 144.785263, 13.436412 ], [ 144.785531, 13.436471 ], [ 144.785615, 13.436489 ], [ 144.785867, 13.436543 ], [ 144.785952, 13.436562 ], [ 144.786145, 13.436603 ], [ 144.78636, 13.43665 ], [ 144.786726, 13.436721 ], [ 144.78692, 13.43676 ], [ 144.787064, 13.436789 ], [ 144.787496, 13.43688 ], [ 144.78764, 13.43691 ], [ 144.787682, 13.436917 ], [ 144.787807, 13.436941 ], [ 144.78785, 13.43695 ], [ 144.787978, 13.436975 ], [ 144.788361, 13.437053 ], [ 144.78849, 13.43708 ], [ 144.788705, 13.437122 ], [ 144.789353, 13.437248 ], [ 144.78957, 13.43729 ], [ 144.78983, 13.437344 ], [ 144.79061, 13.437505 ], [ 144.79087, 13.43756 ], [ 144.790937, 13.437574 ], [ 144.791139, 13.437618 ], [ 144.791207, 13.437633 ], [ 144.791357, 13.437665 ], [ 144.791809, 13.437764 ], [ 144.79188, 13.43778 ], [ 144.791961, 13.437795 ], [ 144.792028, 13.437807 ], [ 144.792232, 13.437846 ], [ 144.7923, 13.43786 ], [ 144.79234, 13.437738 ], [ 144.79246, 13.437372 ], [ 144.7925, 13.43725 ], [ 144.792508, 13.437223 ], [ 144.792532, 13.437143 ], [ 144.792541, 13.437117 ], [ 144.792553, 13.437075 ], [ 144.792592, 13.436948 ], [ 144.792605, 13.436907 ], [ 144.79261, 13.43689 ], [ 144.792627, 13.436841 ], [ 144.79267, 13.43672 ], [ 144.792675, 13.436639 ], [ 144.79268, 13.43657 ], [ 144.792671, 13.436471 ], [ 144.792666, 13.436407 ], [ 144.792673, 13.436358 ], [ 144.792659, 13.436159 ], [ 144.792607, 13.43614 ], [ 144.79253, 13.43515 ], [ 144.792516, 13.4347 ], [ 144.792513, 13.433536 ], [ 144.792515, 13.433237 ], [ 144.79256, 13.431807 ], [ 144.792572, 13.431311 ], [ 144.792604, 13.430449 ], [ 144.792693, 13.428087 ], [ 144.792782, 13.426506 ], [ 144.792622, 13.426491 ], [ 144.792614, 13.426491 ], [ 144.792411, 13.426461 ], [ 144.792195, 13.426377 ], [ 144.792164, 13.426358 ], [ 144.792027, 13.426276 ], [ 144.791951, 13.426231 ], [ 144.791707, 13.426064 ], [ 144.79153, 13.425905 ], [ 144.791293, 13.425773 ], [ 144.791133, 13.425662 ], [ 144.790979, 13.425619 ], [ 144.79084, 13.42557 ], [ 144.790701, 13.425552 ], [ 144.790665, 13.425548 ], [ 144.790434, 13.425525 ], [ 144.79032, 13.425518 ], [ 144.790302, 13.425516 ], [ 144.790248, 13.425513 ], [ 144.79023, 13.425512 ], [ 144.790196, 13.42551 ], [ 144.790007, 13.425522 ], [ 144.789846, 13.4255 ], [ 144.78969, 13.425454 ], [ 144.78965, 13.425443 ], [ 144.789391, 13.425441 ], [ 144.789188, 13.42546 ], [ 144.78909, 13.425424 ], [ 144.788978, 13.42543 ], [ 144.788859, 13.425409 ], [ 144.788548, 13.425296 ], [ 144.788493, 13.425241 ], [ 144.788255, 13.42517 ], [ 144.788118, 13.425119 ], [ 144.787613, 13.424932 ], [ 144.787604, 13.42493 ], [ 144.787348, 13.424861 ], [ 144.787166, 13.424825 ], [ 144.786964, 13.424761 ], [ 144.786698, 13.424697 ], [ 144.786574, 13.424643 ], [ 144.78644, 13.424585 ], [ 144.786203, 13.424474 ], [ 144.785876, 13.424224 ], [ 144.785769, 13.424072 ], [ 144.785665, 13.423962 ], [ 144.785547, 13.42381 ], [ 144.785381, 13.423609 ], [ 144.785256, 13.423451 ], [ 144.785166, 13.42332 ], [ 144.785062, 13.423271 ], [ 144.784978, 13.423188 ], [ 144.78484, 13.423042 ], [ 144.784708, 13.422925 ], [ 144.784576, 13.422725 ], [ 144.784465, 13.4226 ], [ 144.784404, 13.422428 ], [ 144.784401, 13.422387 ], [ 144.784398, 13.422346 ], [ 144.784344, 13.422058 ], [ 144.784276, 13.421906 ], [ 144.784213, 13.42183 ], [ 144.784102, 13.421768 ], [ 144.783984, 13.421657 ], [ 144.783947, 13.421626 ], [ 144.783822, 13.421776 ], [ 144.783706, 13.421923 ], [ 144.7836, 13.422054 ], [ 144.783465, 13.422201 ], [ 144.783291, 13.422388 ], [ 144.783128, 13.422517 ], [ 144.782867, 13.42272 ], [ 144.782671, 13.422802 ], [ 144.782218, 13.42292 ], [ 144.781908, 13.42296 ], [ 144.78175, 13.422972 ], [ 144.78154, 13.422922 ], [ 144.781411, 13.422838 ], [ 144.781389, 13.422679 ], [ 144.781324, 13.422202 ], [ 144.781303, 13.422044 ], [ 144.781272, 13.421879 ], [ 144.781151, 13.421678 ], [ 144.781095, 13.421592 ], [ 144.781062, 13.421548 ], [ 144.780953, 13.421311 ], [ 144.780765, 13.421066 ], [ 144.780743, 13.421036 ], [ 144.780652, 13.420935 ], [ 144.780443, 13.420821 ], [ 144.780234, 13.420698 ], [ 144.779911, 13.420536 ], [ 144.779702, 13.420432 ], [ 144.779411, 13.420279 ], [ 144.779227, 13.420202 ], [ 144.778955, 13.420103 ], [ 144.778752, 13.42004 ], [ 144.778701, 13.420036 ], [ 144.778443, 13.420031 ], [ 144.778144, 13.420106 ], [ 144.77788, 13.420199 ], [ 144.777812, 13.420346 ], [ 144.777841, 13.42048 ], [ 144.777931, 13.420673 ], [ 144.77801, 13.420772 ], [ 144.778143, 13.420893 ], [ 144.77821, 13.421053 ], [ 144.778315, 13.421239 ], [ 144.778358, 13.421391 ], [ 144.778337, 13.421586 ], [ 144.778242, 13.421877 ], [ 144.778064, 13.422163 ], [ 144.778007, 13.422182 ], [ 144.777936, 13.422149 ], [ 144.777825, 13.42207 ], [ 144.77777, 13.421984 ], [ 144.777789, 13.421852 ], [ 144.777698, 13.421675 ], [ 144.777477, 13.421455 ], [ 144.777052, 13.421503 ], [ 144.776771, 13.421619 ], [ 144.776666, 13.421693 ], [ 144.776729, 13.421821 ], [ 144.7769, 13.422013 ], [ 144.777069, 13.422314 ], [ 144.777076, 13.422706 ], [ 144.776852, 13.423217 ], [ 144.776717, 13.423338 ], [ 144.776657, 13.423347 ], [ 144.776574, 13.423281 ], [ 144.776623, 13.423198 ], [ 144.776701, 13.42301 ], [ 144.776674, 13.422889 ], [ 144.776532, 13.422775 ], [ 144.775975, 13.422722 ], [ 144.775263, 13.422803 ], [ 144.774901, 13.422706 ], [ 144.774748, 13.422696 ], [ 144.774659, 13.42277 ], [ 144.774651, 13.422973 ], [ 144.774907, 13.423125 ], [ 144.77513, 13.423463 ], [ 144.775127, 13.423692 ], [ 144.775024, 13.423843 ], [ 144.77489, 13.423893 ], [ 144.77467, 13.423843 ], [ 144.774652, 13.423721 ], [ 144.774521, 13.423572 ], [ 144.774373, 13.423529 ], [ 144.774217, 13.42342 ], [ 144.773815, 13.423482 ], [ 144.773496, 13.423813 ], [ 144.773334, 13.42401 ], [ 144.773151, 13.423999 ], [ 144.773059, 13.423921 ], [ 144.773049, 13.42381 ], [ 144.773136, 13.423718 ], [ 144.773298, 13.423625 ], [ 144.773474, 13.423475 ], [ 144.77354, 13.423347 ], [ 144.773446, 13.423188 ], [ 144.773002, 13.423214 ], [ 144.772324, 13.423475 ], [ 144.772175, 13.423644 ], [ 144.772061, 13.423834 ], [ 144.771976, 13.423858 ], [ 144.771875, 13.423857 ], [ 144.771788, 13.424005 ], [ 144.771555, 13.424413 ], [ 144.771243, 13.424599 ], [ 144.77093, 13.42468 ], [ 144.770837, 13.424679 ], [ 144.770743, 13.424518 ], [ 144.770744, 13.424434 ], [ 144.770831, 13.424304 ], [ 144.770927, 13.424259 ], [ 144.771069, 13.424261 ], [ 144.771185, 13.424177 ], [ 144.771204, 13.424102 ], [ 144.771026, 13.423961 ], [ 144.770911, 13.423891 ], [ 144.770634, 13.423891 ], [ 144.770486, 13.424027 ], [ 144.770469, 13.424199 ], [ 144.770449, 13.424345 ], [ 144.770401, 13.424394 ], [ 144.770285, 13.424322 ], [ 144.770031, 13.424119 ], [ 144.769936, 13.424073 ], [ 144.76949, 13.424214 ], [ 144.769302, 13.424404 ], [ 144.769345, 13.424634 ], [ 144.769405, 13.42476 ], [ 144.769403, 13.424825 ], [ 144.769308, 13.424927 ], [ 144.769193, 13.424945 ], [ 144.768963, 13.425111 ], [ 144.768677, 13.425071 ], [ 144.768592, 13.425024 ], [ 144.768548, 13.424904 ], [ 144.768527, 13.424807 ], [ 144.768441, 13.424798 ], [ 144.768349, 13.424891 ], [ 144.768315, 13.425058 ], [ 144.768362, 13.425077 ], [ 144.768551, 13.425238 ], [ 144.768757, 13.425396 ], [ 144.768883, 13.425507 ], [ 144.768997, 13.425776 ], [ 144.769029, 13.426204 ], [ 144.769068, 13.42636 ], [ 144.769102, 13.426532 ], [ 144.768966, 13.426683 ], [ 144.768479, 13.426741 ], [ 144.768089, 13.426775 ], [ 144.767896, 13.426931 ], [ 144.767725, 13.426984 ], [ 144.767381, 13.426956 ], [ 144.76711, 13.426988 ], [ 144.766922, 13.427045 ], [ 144.76675, 13.427024 ], [ 144.766494, 13.426863 ], [ 144.766317, 13.426728 ], [ 144.766215, 13.426659 ], [ 144.76602, 13.426523 ], [ 144.765932, 13.426405 ], [ 144.765796, 13.426394 ], [ 144.765653, 13.426475 ], [ 144.765682, 13.426621 ], [ 144.765878, 13.426754 ], [ 144.765968, 13.426829 ], [ 144.765944, 13.4269 ], [ 144.76588, 13.426917 ], [ 144.765671, 13.426964 ], [ 144.765592, 13.427068 ], [ 144.765366, 13.427251 ], [ 144.765173, 13.427256 ], [ 144.76504, 13.427112 ], [ 144.764904, 13.42716 ], [ 144.764852, 13.427416 ], [ 144.764667, 13.427841 ], [ 144.764729, 13.428163 ], [ 144.764928, 13.428342 ], [ 144.765087, 13.428649 ], [ 144.765047, 13.428838 ], [ 144.764883, 13.428964 ], [ 144.764751, 13.429099 ], [ 144.764726, 13.429358 ], [ 144.764855, 13.429478 ], [ 144.764946, 13.429697 ], [ 144.764922, 13.429935 ], [ 144.764724, 13.430142 ], [ 144.764486, 13.430199 ], [ 144.764302, 13.430093 ], [ 144.764206, 13.429992 ], [ 144.764158, 13.429796 ], [ 144.764121, 13.429652 ], [ 144.763991, 13.42956 ], [ 144.763828, 13.429619 ], [ 144.7638, 13.429745 ], [ 144.763826, 13.429869 ], [ 144.763878, 13.430065 ], [ 144.763862, 13.430209 ], [ 144.763806, 13.430374 ], [ 144.763736, 13.430479 ], [ 144.763719, 13.430607 ], [ 144.763735, 13.430756 ], [ 144.763802, 13.430804 ], [ 144.763856, 13.43082 ], [ 144.763916, 13.430949 ], [ 144.763908, 13.430979 ], [ 144.763938, 13.431085 ], [ 144.763976, 13.431176 ], [ 144.763876, 13.431238 ], [ 144.763774, 13.431287 ], [ 144.763495, 13.431466 ], [ 144.763183, 13.43178 ], [ 144.762903, 13.432042 ], [ 144.762816, 13.432275 ], [ 144.762848, 13.432676 ], [ 144.762717, 13.43284 ], [ 144.76251, 13.432861 ], [ 144.762303, 13.432776 ], [ 144.762258, 13.43273 ], [ 144.762297, 13.432572 ], [ 144.762354, 13.432415 ], [ 144.762382, 13.432342 ], [ 144.762445, 13.432253 ], [ 144.762468, 13.432182 ], [ 144.762502, 13.432084 ], [ 144.762502, 13.432056 ], [ 144.76249, 13.431991 ], [ 144.762455, 13.431918 ], [ 144.762412, 13.431842 ], [ 144.762353, 13.431754 ], [ 144.762277, 13.431678 ], [ 144.762169, 13.431598 ], [ 144.762029, 13.431498 ], [ 144.761921, 13.431452 ], [ 144.761806, 13.431458 ], [ 144.761728, 13.43151 ], [ 144.761689, 13.431555 ], [ 144.761665, 13.431623 ], [ 144.761664, 13.431721 ], [ 144.761679, 13.431812 ], [ 144.761709, 13.43188 ], [ 144.761786, 13.431956 ], [ 144.761947, 13.432056 ], [ 144.762012, 13.43216 ], [ 144.762052, 13.432298 ], [ 144.76202, 13.432335 ], [ 144.761913, 13.432395 ], [ 144.761844, 13.432365 ], [ 144.761736, 13.432274 ], [ 144.761652, 13.43225 ], [ 144.761544, 13.432279 ], [ 144.761359, 13.432262 ], [ 144.761259, 13.432223 ], [ 144.761175, 13.432132 ], [ 144.761136, 13.432034 ], [ 144.761069, 13.43192 ], [ 144.761007, 13.431912 ], [ 144.760891, 13.431926 ], [ 144.760845, 13.431963 ], [ 144.760736, 13.43203 ], [ 144.760712, 13.43209 ], [ 144.760712, 13.432167 ], [ 144.760681, 13.432223 ], [ 144.760664, 13.432271 ], [ 144.760603, 13.432278 ], [ 144.760548, 13.43233 ], [ 144.760462, 13.432473 ], [ 144.760431, 13.432533 ], [ 144.760423, 13.432641 ], [ 144.7605, 13.432652 ], [ 144.760608, 13.432662 ], [ 144.76063, 13.432678 ], [ 144.760668, 13.432775 ], [ 144.760682, 13.43283 ], [ 144.760636, 13.432887 ], [ 144.760526, 13.4331 ], [ 144.76047, 13.433304 ], [ 144.760499, 13.43337 ], [ 144.760438, 13.433583 ], [ 144.760435, 13.433711 ], [ 144.760339, 13.434042 ], [ 144.760254, 13.43423 ], [ 144.760105, 13.434393 ], [ 144.759916, 13.43441 ], [ 144.759692, 13.434437 ], [ 144.759393, 13.43457 ], [ 144.759289, 13.434744 ], [ 144.759191, 13.435047 ], [ 144.759061, 13.435481 ], [ 144.758913, 13.435585 ], [ 144.758775, 13.435546 ], [ 144.758521, 13.435529 ], [ 144.758122, 13.435577 ], [ 144.757569, 13.435807 ], [ 144.757105, 13.435954 ], [ 144.756916, 13.436112 ], [ 144.756887, 13.436326 ], [ 144.757023, 13.436535 ], [ 144.75703, 13.436974 ], [ 144.756962, 13.437229 ], [ 144.756776, 13.437394 ], [ 144.756714, 13.437393 ], [ 144.756554, 13.43718 ], [ 144.756309, 13.436974 ], [ 144.75611, 13.436882 ], [ 144.756073, 13.436685 ], [ 144.755921, 13.436427 ], [ 144.755736, 13.436365 ], [ 144.755512, 13.436416 ], [ 144.755442, 13.436461 ], [ 144.755332, 13.436576 ], [ 144.755325, 13.436671 ], [ 144.755385, 13.43683 ], [ 144.755468, 13.436982 ], [ 144.755452, 13.437125 ], [ 144.755333, 13.437173 ], [ 144.755297, 13.437116 ], [ 144.755174, 13.437077 ], [ 144.755061, 13.437134 ], [ 144.75483, 13.437162 ], [ 144.754543, 13.437073 ], [ 144.754232, 13.437076 ], [ 144.754087, 13.437045 ], [ 144.754098, 13.436824 ], [ 144.754238, 13.436623 ], [ 144.754472, 13.436239 ], [ 144.754497, 13.436082 ], [ 144.754328, 13.436081 ], [ 144.754133, 13.436223 ], [ 144.754, 13.436252 ], [ 144.753732, 13.436249 ], [ 144.753417, 13.436178 ], [ 144.7532, 13.436001 ], [ 144.753188, 13.435847 ], [ 144.753397, 13.435756 ], [ 144.753497, 13.435602 ], [ 144.75336, 13.435388 ], [ 144.752525, 13.435082 ], [ 144.752243, 13.434982 ], [ 144.75163, 13.434718 ], [ 144.751484, 13.43473 ], [ 144.751318, 13.434844 ], [ 144.75124, 13.43501 ], [ 144.751222, 13.435235 ], [ 144.751332, 13.435308 ], [ 144.75153, 13.435269 ], [ 144.751552, 13.435264 ], [ 144.751619, 13.435382 ], [ 144.751595, 13.435571 ], [ 144.751363, 13.435819 ], [ 144.750992, 13.436037 ], [ 144.750806, 13.436042 ], [ 144.750783, 13.435926 ], [ 144.750961, 13.435757 ], [ 144.751004, 13.435633 ], [ 144.750655, 13.435378 ], [ 144.750082, 13.43499 ], [ 144.749732, 13.434822 ], [ 144.749429, 13.4348 ], [ 144.749145, 13.434663 ], [ 144.748929, 13.434538 ], [ 144.748862, 13.434481 ], [ 144.748657, 13.434541 ], [ 144.74847, 13.434754 ], [ 144.748277, 13.43484 ], [ 144.748397, 13.440363 ], [ 144.748417, 13.44094 ], [ 144.74816, 13.442939 ], [ 144.748129, 13.444301 ], [ 144.747985, 13.444652 ], [ 144.747542, 13.444751 ], [ 144.746583, 13.444859 ], [ 144.74618, 13.444835 ], [ 144.745288, 13.44498 ], [ 144.743136, 13.445031 ], [ 144.744547, 13.445906 ], [ 144.746196, 13.446926 ], [ 144.74099, 13.45505 ], [ 144.740387, 13.456034 ], [ 144.742945, 13.45632 ], [ 144.74386, 13.456381 ], [ 144.745545, 13.456496 ], [ 144.746596, 13.456558 ], [ 144.74729, 13.4566 ], [ 144.74782, 13.45666 ], [ 144.74809, 13.45671 ], [ 144.74869, 13.45689 ], [ 144.74901, 13.45699 ], [ 144.74915, 13.45699 ], [ 144.749703, 13.457029 ], [ 144.74971, 13.45703 ], [ 144.75, 13.45707 ], [ 144.75008, 13.45706 ], [ 144.75023, 13.457 ], [ 144.75044, 13.45687 ], [ 144.7506, 13.4568 ], [ 144.75069, 13.4568 ], [ 144.750738, 13.456816 ], [ 144.75087, 13.45686 ], [ 144.750881, 13.456865 ], [ 144.750927, 13.456888 ], [ 144.75124, 13.45704 ], [ 144.75142, 13.45708 ], [ 144.75174, 13.45713 ], [ 144.751954, 13.457111 ], [ 144.751981, 13.457108 ], [ 144.75208, 13.4571 ], [ 144.752526, 13.456733 ], [ 144.75294, 13.45639 ], [ 144.75312, 13.45631 ], [ 144.7533, 13.45629 ], [ 144.75359, 13.45636 ], [ 144.754, 13.45649 ], [ 144.754836, 13.456717 ], [ 144.75503, 13.45677 ], [ 144.75519, 13.45681 ], [ 144.75528, 13.45678 ], [ 144.75548, 13.45665 ], [ 144.75573, 13.45648 ], [ 144.7558, 13.45647 ], [ 144.75634, 13.45656 ], [ 144.75644, 13.45657 ], [ 144.75657, 13.45655 ], [ 144.756621, 13.456507 ], [ 144.756762, 13.456389 ], [ 144.757284, 13.455843 ], [ 144.75764, 13.455815 ], [ 144.757909, 13.456089 ], [ 144.758035, 13.456214 ], [ 144.758266, 13.45611 ], [ 144.758991, 13.455806 ], [ 144.759038, 13.455771 ], [ 144.759122, 13.455708 ], [ 144.759515, 13.455419 ], [ 144.75967, 13.45519 ], [ 144.759688, 13.455019 ], [ 144.759718, 13.454737 ], [ 144.759747, 13.454507 ], [ 144.759757, 13.454432 ], [ 144.7598, 13.454346 ], [ 144.759764, 13.454304 ], [ 144.759656, 13.454181 ], [ 144.75962, 13.45414 ], [ 144.759568, 13.454078 ], [ 144.759412, 13.453892 ], [ 144.75936, 13.45383 ], [ 144.759208, 13.453654 ], [ 144.75897, 13.45338 ], [ 144.758752, 13.453129 ], [ 144.75871, 13.45308 ], [ 144.75862, 13.45294 ], [ 144.75858, 13.4529 ], [ 144.758487, 13.45275 ], [ 144.75845, 13.45269 ], [ 144.75837, 13.45243 ], [ 144.75834, 13.45224 ], [ 144.758333, 13.452079 ], [ 144.75833, 13.45198 ], [ 144.758334, 13.451848 ], [ 144.758338, 13.451716 ], [ 144.75834, 13.45166 ], [ 144.75841, 13.45145 ], [ 144.758443, 13.451336 ], [ 144.75848, 13.45121 ], [ 144.758533, 13.451107 ], [ 144.7586, 13.45098 ], [ 144.758714, 13.450814 ], [ 144.75878, 13.45072 ], [ 144.758921, 13.45052 ], [ 144.759347, 13.449919 ], [ 144.75949, 13.44972 ], [ 144.75957, 13.44959 ], [ 144.759768, 13.449316 ], [ 144.75981, 13.44926 ], [ 144.75988, 13.44915 ], [ 144.7601, 13.44887 ], [ 144.76039, 13.44854 ], [ 144.760743, 13.448221 ], [ 144.7608, 13.44817 ], [ 144.76113, 13.44792 ], [ 144.76131, 13.44779 ], [ 144.76133, 13.447778 ], [ 144.761975, 13.447419 ], [ 144.76219, 13.4473 ], [ 144.762272, 13.447254 ], [ 144.762518, 13.447116 ], [ 144.7626, 13.44707 ], [ 144.762666, 13.447029 ], [ 144.762863, 13.446909 ], [ 144.76293, 13.44687 ], [ 144.763075, 13.446785 ], [ 144.76336, 13.44662 ], [ 144.763505, 13.44652 ], [ 144.763645, 13.446425 ], [ 144.763828, 13.446299 ], [ 144.764376, 13.445924 ], [ 144.76456, 13.4458 ], [ 144.764602, 13.44577 ], [ 144.764728, 13.44568 ], [ 144.76477, 13.44565 ], [ 144.764791, 13.445635 ], [ 144.764856, 13.445591 ], [ 144.764878, 13.445577 ], [ 144.76507, 13.445446 ], [ 144.76555, 13.44512 ], [ 144.765647, 13.445052 ], [ 144.765839, 13.444919 ], [ 144.765951, 13.444841 ], [ 144.766287, 13.444607 ], [ 144.7664, 13.44453 ], [ 144.766441, 13.444501 ], [ 144.766565, 13.444414 ], [ 144.766607, 13.444386 ], [ 144.766671, 13.44434 ], [ 144.766865, 13.444204 ], [ 144.76693, 13.44416 ], [ 144.767009, 13.444106 ], [ 144.767248, 13.443945 ], [ 144.767328, 13.443892 ], [ 144.767662, 13.443657 ], [ 144.76791, 13.4435 ], [ 144.768122, 13.443384 ], [ 144.76826, 13.44331 ], [ 144.76849, 13.44321 ], [ 144.768793, 13.443108 ], [ 144.76882, 13.4431 ], [ 144.76903, 13.44306 ], [ 144.769075, 13.443053 ], [ 144.769211, 13.443032 ], [ 144.769257, 13.443026 ], [ 144.769273, 13.443023 ], [ 144.769324, 13.443015 ], [ 144.769341, 13.443013 ], [ 144.769358, 13.44301 ], [ 144.769412, 13.443002 ], [ 144.76943, 13.443 ], [ 144.769451, 13.442998 ], [ 144.769514, 13.442994 ], [ 144.769536, 13.442993 ], [ 144.76958, 13.44299 ], [ 144.769585, 13.442989 ], [ 144.769733, 13.44297 ], [ 144.769783, 13.442964 ], [ 144.769836, 13.442957 ], [ 144.769996, 13.442936 ], [ 144.77005, 13.44293 ], [ 144.770098, 13.442924 ], [ 144.770242, 13.442906 ], [ 144.77029, 13.4429 ], [ 144.770391, 13.442887 ], [ 144.770697, 13.44285 ], [ 144.770799, 13.442838 ], [ 144.770877, 13.442828 ], [ 144.771111, 13.442799 ], [ 144.77119, 13.44279 ], [ 144.771268, 13.44278 ], [ 144.771503, 13.442749 ], [ 144.771582, 13.44274 ], [ 144.771613, 13.442736 ], [ 144.771708, 13.442723 ], [ 144.77174, 13.44272 ], [ 144.771755, 13.442718 ], [ 144.771803, 13.442711 ], [ 144.77182, 13.44271 ], [ 144.771862, 13.442704 ], [ 144.771988, 13.442688 ], [ 144.772031, 13.442683 ], [ 144.77206, 13.442679 ], [ 144.77213, 13.44267 ], [ 144.77215, 13.442665 ], [ 144.77218, 13.44266 ], [ 144.772358, 13.442636 ], [ 144.772891, 13.442564 ], [ 144.77307, 13.44254 ], [ 144.773177, 13.442526 ], [ 144.773501, 13.442483 ], [ 144.77361, 13.44247 ], [ 144.773747, 13.442447 ], [ 144.77385, 13.44243 ], [ 144.774155, 13.442358 ], [ 144.77419, 13.44235 ], [ 144.77429, 13.44232 ], [ 144.77447, 13.44227 ], [ 144.774541, 13.442234 ], [ 144.77477, 13.44212 ], [ 144.77521, 13.44183 ], [ 144.775225, 13.441818 ], [ 144.77544, 13.44166 ], [ 144.775472, 13.44164 ], [ 144.775568, 13.44158 ], [ 144.7756, 13.44156 ], [ 144.775688, 13.441496 ], [ 144.77585, 13.44138 ], [ 144.775946, 13.441299 ], [ 144.77603, 13.44123 ], [ 144.776119, 13.441148 ], [ 144.77615, 13.44112 ], [ 144.776346, 13.440865 ], [ 144.77642, 13.44077 ], [ 144.77646, 13.4407 ], [ 144.77658, 13.440489 ], [ 144.77662, 13.44042 ], [ 144.776642, 13.440364 ], [ 144.776708, 13.440196 ], [ 144.77673, 13.44014 ], [ 144.77676, 13.44006 ], [ 144.776776, 13.439978 ], [ 144.776873, 13.439483 ], [ 144.7769, 13.43935 ], [ 144.77691, 13.43932 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "950501", "GEOID10": "66010950501", "NAME10": "9505.01", "NAMELSAD10": "Census Tract 9505.01", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2536385, "AWATER10": 0, "INTPTLAT10": "+13.5773957", "INTPTLON10": "+144.8803520" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.875945, 13.572023 ], [ 144.875943, 13.575566 ], [ 144.875863, 13.575615 ], [ 144.874621, 13.576361 ], [ 144.873904, 13.576795 ], [ 144.873449, 13.577085 ], [ 144.873339, 13.577136 ], [ 144.873256, 13.577586 ], [ 144.872944, 13.579397 ], [ 144.872404, 13.582487 ], [ 144.872066, 13.584387 ], [ 144.87181, 13.58583 ], [ 144.872284, 13.585535 ], [ 144.872643, 13.585313 ], [ 144.87276, 13.58524 ], [ 144.872877, 13.585183 ], [ 144.87311, 13.58507 ], [ 144.87338, 13.58501 ], [ 144.87358, 13.58497 ], [ 144.873644, 13.58496 ], [ 144.87391, 13.58492 ], [ 144.874155, 13.584911 ], [ 144.8742, 13.58491 ], [ 144.8745, 13.58493 ], [ 144.874885, 13.58499 ], [ 144.87507, 13.58502 ], [ 144.875127, 13.585032 ], [ 144.875271, 13.585061 ], [ 144.875705, 13.58515 ], [ 144.87585, 13.58518 ], [ 144.875927, 13.585196 ], [ 144.87616, 13.585245 ], [ 144.87623, 13.58526 ], [ 144.876238, 13.585262 ], [ 144.876341, 13.58528 ], [ 144.876652, 13.585336 ], [ 144.876756, 13.585355 ], [ 144.877084, 13.585414 ], [ 144.87739, 13.58547 ], [ 144.87767, 13.58549 ], [ 144.87795, 13.58548 ], [ 144.878078, 13.585463 ], [ 144.87841, 13.58542 ], [ 144.878588, 13.585374 ], [ 144.879122, 13.585236 ], [ 144.8793, 13.58519 ], [ 144.879642, 13.585106 ], [ 144.880668, 13.584854 ], [ 144.88101, 13.58477 ], [ 144.881376, 13.584677 ], [ 144.881467, 13.584655 ], [ 144.88193, 13.58454 ], [ 144.882841, 13.58432 ], [ 144.8833, 13.58421 ], [ 144.883468, 13.58417 ], [ 144.883974, 13.584052 ], [ 144.884143, 13.584014 ], [ 144.884207, 13.583999 ], [ 144.884399, 13.583954 ], [ 144.884464, 13.58394 ], [ 144.884538, 13.583922 ], [ 144.884763, 13.58387 ], [ 144.884838, 13.583853 ], [ 144.88511, 13.58379 ], [ 144.885475, 13.583697 ], [ 144.885801, 13.583614 ], [ 144.88713, 13.58328 ], [ 144.887383, 13.583217 ], [ 144.88802, 13.58306 ], [ 144.88843, 13.58292 ], [ 144.88867, 13.5828 ], [ 144.88887, 13.58266 ], [ 144.88918, 13.58246 ], [ 144.88947, 13.58219 ], [ 144.88976, 13.58185 ], [ 144.889952, 13.581632 ], [ 144.89101, 13.58044 ], [ 144.89181, 13.57953 ], [ 144.8913, 13.57905 ], [ 144.89095, 13.57875 ], [ 144.89072, 13.57862 ], [ 144.89038, 13.57848 ], [ 144.8897, 13.57824 ], [ 144.88924, 13.57806 ], [ 144.88891, 13.57782 ], [ 144.88857, 13.57751 ], [ 144.88817, 13.57698 ], [ 144.88803, 13.57681 ], [ 144.88679, 13.5758 ], [ 144.88576, 13.57495 ], [ 144.8846, 13.57398 ], [ 144.88426, 13.57372 ], [ 144.88351, 13.57304 ], [ 144.88268, 13.57238 ], [ 144.88235, 13.57208 ], [ 144.88206, 13.57192 ], [ 144.88181, 13.57183 ], [ 144.8816, 13.57178 ], [ 144.88136, 13.57178 ], [ 144.88098, 13.57179 ], [ 144.88074, 13.57186 ], [ 144.88062, 13.57178 ], [ 144.88044, 13.57176 ], [ 144.88035, 13.57169 ], [ 144.88029, 13.57153 ], [ 144.88025, 13.57136 ], [ 144.88016, 13.57115 ], [ 144.87998, 13.5707 ], [ 144.87974, 13.57008 ], [ 144.87966, 13.57001 ], [ 144.87933, 13.56994 ], [ 144.87912, 13.56987 ], [ 144.87891, 13.56984 ], [ 144.87889, 13.56984 ], [ 144.87893, 13.569532 ], [ 144.87895, 13.569386 ], [ 144.878913, 13.569132 ], [ 144.878986, 13.56903 ], [ 144.879306, 13.569031 ], [ 144.87977, 13.569065 ], [ 144.879902, 13.569158 ], [ 144.879912, 13.569154 ], [ 144.880057, 13.569112 ], [ 144.880204, 13.568983 ], [ 144.881153, 13.567124 ], [ 144.881096, 13.566862 ], [ 144.880693, 13.565608 ], [ 144.880407, 13.564716 ], [ 144.880526, 13.564597 ], [ 144.880576, 13.564548 ], [ 144.88064, 13.564494 ], [ 144.880711, 13.564456 ], [ 144.88068, 13.56443 ], [ 144.88049, 13.56432 ], [ 144.880438, 13.564309 ], [ 144.88034, 13.56429 ], [ 144.8801, 13.5643 ], [ 144.87991, 13.56432 ], [ 144.87977, 13.56437 ], [ 144.87963, 13.5644 ], [ 144.87952, 13.56441 ], [ 144.879516, 13.564409 ], [ 144.879204, 13.56439 ], [ 144.8792, 13.56439 ], [ 144.87896, 13.56441 ], [ 144.87875, 13.56441 ], [ 144.878688, 13.564404 ], [ 144.87853, 13.56439 ], [ 144.877139, 13.56434 ], [ 144.876623, 13.564322 ], [ 144.876521, 13.564318 ], [ 144.876215, 13.564307 ], [ 144.876113, 13.564304 ], [ 144.875767, 13.564269 ], [ 144.875879, 13.566099 ], [ 144.875938, 13.567409 ], [ 144.875938, 13.567625 ], [ 144.875948, 13.568373 ], [ 144.875953, 13.56863 ], [ 144.875945, 13.569419 ], [ 144.875948, 13.569481 ], [ 144.875945, 13.572023 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "955800", "GEOID10": "66010955800", "NAME10": "9558", "NAMELSAD10": "Census Tract 9558", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 9468242, "AWATER10": 0, "INTPTLAT10": "+13.5396504", "INTPTLON10": "+144.8986299" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.91509, 13.55167 ], [ 144.914945, 13.55114 ], [ 144.91491, 13.55101 ], [ 144.914531, 13.549544 ], [ 144.91451, 13.54946 ], [ 144.914469, 13.549311 ], [ 144.914387, 13.549015 ], [ 144.9142, 13.54834 ], [ 144.914139, 13.54816 ], [ 144.91407, 13.54785 ], [ 144.914067, 13.547838 ], [ 144.913821, 13.546879 ], [ 144.91374, 13.54656 ], [ 144.913675, 13.546316 ], [ 144.913483, 13.545585 ], [ 144.91342, 13.545342 ], [ 144.913372, 13.545159 ], [ 144.913228, 13.544612 ], [ 144.91318, 13.54443 ], [ 144.913173, 13.544406 ], [ 144.913152, 13.544335 ], [ 144.913145, 13.544312 ], [ 144.913103, 13.544173 ], [ 144.91301, 13.54386 ], [ 144.912959, 13.543766 ], [ 144.91289, 13.54364 ], [ 144.91273, 13.54349 ], [ 144.912479, 13.543301 ], [ 144.91241, 13.54325 ], [ 144.91213, 13.5431 ], [ 144.91188, 13.54301 ], [ 144.911014, 13.542672 ], [ 144.91065, 13.54253 ], [ 144.910525, 13.542463 ], [ 144.910464, 13.54243 ], [ 144.910281, 13.542332 ], [ 144.91022, 13.5423 ], [ 144.90999, 13.54212 ], [ 144.90977, 13.54189 ], [ 144.90958, 13.54163 ], [ 144.909577, 13.541625 ], [ 144.90947, 13.54137 ], [ 144.90939, 13.54094 ], [ 144.90916, 13.5393 ], [ 144.909075, 13.538865 ], [ 144.90904, 13.53868 ], [ 144.90899, 13.5385 ], [ 144.90886, 13.53824 ], [ 144.908706, 13.538016 ], [ 144.908593, 13.537852 ], [ 144.90855, 13.53779 ], [ 144.90837, 13.53759 ], [ 144.90824, 13.53743 ], [ 144.908208, 13.537401 ], [ 144.90806, 13.53727 ], [ 144.907965, 13.537198 ], [ 144.907683, 13.536983 ], [ 144.907589, 13.536912 ], [ 144.907481, 13.53683 ], [ 144.90727, 13.53667 ], [ 144.907173, 13.536568 ], [ 144.90708, 13.53647 ], [ 144.90695, 13.5363 ], [ 144.906903, 13.536198 ], [ 144.90685, 13.53608 ], [ 144.906517, 13.535299 ], [ 144.90639, 13.535 ], [ 144.90628, 13.53475 ], [ 144.906225, 13.534652 ], [ 144.90605, 13.53434 ], [ 144.90583, 13.53399 ], [ 144.90565, 13.53374 ], [ 144.905601, 13.53368 ], [ 144.90536, 13.53338 ], [ 144.905256, 13.533225 ], [ 144.90508, 13.53296 ], [ 144.904973, 13.532746 ], [ 144.90489, 13.53258 ], [ 144.904811, 13.532433 ], [ 144.90466, 13.53215 ], [ 144.904579, 13.531989 ], [ 144.904505, 13.531841 ], [ 144.9044, 13.531631 ], [ 144.90424, 13.53131 ], [ 144.904091, 13.531 ], [ 144.90399, 13.53079 ], [ 144.903956, 13.530726 ], [ 144.903856, 13.530535 ], [ 144.903823, 13.530472 ], [ 144.903778, 13.530386 ], [ 144.90365, 13.53014 ], [ 144.903644, 13.530129 ], [ 144.903603, 13.530042 ], [ 144.903585, 13.530005 ], [ 144.903531, 13.529893 ], [ 144.903514, 13.529857 ], [ 144.903496, 13.529819 ], [ 144.903442, 13.529705 ], [ 144.903424, 13.529668 ], [ 144.90341, 13.529639 ], [ 144.903369, 13.529555 ], [ 144.903356, 13.529527 ], [ 144.903342, 13.529499 ], [ 144.903303, 13.529417 ], [ 144.90329, 13.52939 ], [ 144.903258, 13.529326 ], [ 144.903165, 13.529136 ], [ 144.903135, 13.529073 ], [ 144.903108, 13.529018 ], [ 144.903029, 13.528856 ], [ 144.903003, 13.528802 ], [ 144.902981, 13.528757 ], [ 144.902916, 13.528625 ], [ 144.902895, 13.528581 ], [ 144.902888, 13.528567 ], [ 144.90288, 13.52855 ], [ 144.902869, 13.528526 ], [ 144.902863, 13.528513 ], [ 144.902852, 13.52849 ], [ 144.90282, 13.528423 ], [ 144.90281, 13.528401 ], [ 144.902792, 13.528362 ], [ 144.902738, 13.528248 ], [ 144.90272, 13.52821 ], [ 144.902701, 13.528174 ], [ 144.902647, 13.528065 ], [ 144.90263, 13.52803 ], [ 144.902613, 13.528008 ], [ 144.902563, 13.527944 ], [ 144.902547, 13.527923 ], [ 144.902532, 13.527903 ], [ 144.902487, 13.527845 ], [ 144.902473, 13.527826 ], [ 144.902459, 13.527808 ], [ 144.902417, 13.527755 ], [ 144.902404, 13.527738 ], [ 144.90236, 13.52768 ], [ 144.902342, 13.527662 ], [ 144.90225, 13.52757 ], [ 144.902129, 13.527457 ], [ 144.9021, 13.52743 ], [ 144.90205, 13.527402 ], [ 144.902007, 13.527377 ], [ 144.901879, 13.527305 ], [ 144.901837, 13.527282 ], [ 144.901799, 13.527261 ], [ 144.90169, 13.5272 ], [ 144.901686, 13.527198 ], [ 144.901647, 13.527182 ], [ 144.901617, 13.527169 ], [ 144.901529, 13.527132 ], [ 144.9015, 13.52712 ], [ 144.901454, 13.527099 ], [ 144.901316, 13.52704 ], [ 144.90127, 13.52702 ], [ 144.901168, 13.526974 ], [ 144.900862, 13.526836 ], [ 144.90076, 13.52679 ], [ 144.900728, 13.52677 ], [ 144.900632, 13.52671 ], [ 144.9006, 13.52669 ], [ 144.900584, 13.526684 ], [ 144.900539, 13.526667 ], [ 144.900524, 13.526662 ], [ 144.900517, 13.526659 ], [ 144.900496, 13.526652 ], [ 144.90049, 13.52665 ], [ 144.900422, 13.52662 ], [ 144.900218, 13.52653 ], [ 144.90015, 13.5265 ], [ 144.900121, 13.526486 ], [ 144.900034, 13.526445 ], [ 144.900005, 13.526432 ], [ 144.899954, 13.526408 ], [ 144.899801, 13.526336 ], [ 144.899751, 13.526312 ], [ 144.899694, 13.526285 ], [ 144.899526, 13.526206 ], [ 144.89947, 13.52618 ], [ 144.899453, 13.526172 ], [ 144.899405, 13.526148 ], [ 144.899389, 13.526141 ], [ 144.899137, 13.52602 ], [ 144.898893, 13.525904 ], [ 144.898381, 13.52566 ], [ 144.89813, 13.52554 ], [ 144.898052, 13.525503 ], [ 144.897876, 13.525419 ], [ 144.89735, 13.52517 ], [ 144.897115, 13.525064 ], [ 144.89686, 13.52495 ], [ 144.896828, 13.524935 ], [ 144.896732, 13.524891 ], [ 144.8967, 13.524877 ], [ 144.896396, 13.524739 ], [ 144.8962, 13.52465 ], [ 144.89585, 13.52444 ], [ 144.895564, 13.524193 ], [ 144.89556, 13.52419 ], [ 144.89536, 13.52393 ], [ 144.895045, 13.523516 ], [ 144.89489, 13.523312 ], [ 144.89466, 13.52301 ], [ 144.894109, 13.522267 ], [ 144.89406, 13.5222 ], [ 144.893796, 13.521853 ], [ 144.893596, 13.52159 ], [ 144.893245, 13.521128 ], [ 144.892999, 13.520802 ], [ 144.8928, 13.52054 ], [ 144.892608, 13.520294 ], [ 144.892032, 13.519556 ], [ 144.89184, 13.51931 ], [ 144.891792, 13.519238 ], [ 144.89172, 13.51913 ], [ 144.891642, 13.519026 ], [ 144.89159, 13.518958 ], [ 144.891434, 13.518751 ], [ 144.890966, 13.518132 ], [ 144.89081, 13.517926 ], [ 144.890401, 13.517385 ], [ 144.88943, 13.5161 ], [ 144.889173, 13.515766 ], [ 144.88876, 13.51523 ], [ 144.888512, 13.5149 ], [ 144.88801, 13.51423 ], [ 144.887768, 13.513912 ], [ 144.887518, 13.513585 ], [ 144.887442, 13.513486 ], [ 144.887215, 13.513189 ], [ 144.88714, 13.51309 ], [ 144.886959, 13.512852 ], [ 144.886418, 13.512138 ], [ 144.886238, 13.5119 ], [ 144.885567, 13.511016 ], [ 144.88485, 13.51007 ], [ 144.88419, 13.50918 ], [ 144.883571, 13.508353 ], [ 144.88318, 13.50783 ], [ 144.882904, 13.507467 ], [ 144.882899, 13.507461 ], [ 144.882887, 13.507445 ], [ 144.882883, 13.50744 ], [ 144.882812, 13.507452 ], [ 144.882601, 13.50749 ], [ 144.882531, 13.507504 ], [ 144.882951, 13.507916 ], [ 144.882961, 13.507985 ], [ 144.883267, 13.509938 ], [ 144.883369, 13.510589 ], [ 144.883096, 13.513846 ], [ 144.883076, 13.514091 ], [ 144.882824, 13.522745 ], [ 144.882812, 13.523021 ], [ 144.882868, 13.524874 ], [ 144.88299, 13.52501 ], [ 144.883046, 13.52508 ], [ 144.883214, 13.52529 ], [ 144.88327, 13.52536 ], [ 144.883336, 13.525447 ], [ 144.883534, 13.525712 ], [ 144.8836, 13.5258 ], [ 144.883696, 13.525938 ], [ 144.88383, 13.52613 ], [ 144.883978, 13.526358 ], [ 144.88407, 13.5265 ], [ 144.884108, 13.526562 ], [ 144.884222, 13.526748 ], [ 144.88426, 13.52681 ], [ 144.884347, 13.526962 ], [ 144.88438, 13.52702 ], [ 144.884568, 13.527439 ], [ 144.88464, 13.5276 ], [ 144.884725, 13.527749 ], [ 144.8848, 13.52788 ], [ 144.884949, 13.528213 ], [ 144.88502, 13.52837 ], [ 144.885045, 13.528431 ], [ 144.88512, 13.528616 ], [ 144.885146, 13.528678 ], [ 144.885157, 13.528705 ], [ 144.88519, 13.528788 ], [ 144.885202, 13.528816 ], [ 144.885231, 13.528888 ], [ 144.88532, 13.529107 ], [ 144.88535, 13.52918 ], [ 144.885375, 13.529244 ], [ 144.885451, 13.529438 ], [ 144.885477, 13.529503 ], [ 144.885511, 13.52959 ], [ 144.885615, 13.529852 ], [ 144.88565, 13.52994 ], [ 144.885784, 13.530267 ], [ 144.886186, 13.531251 ], [ 144.88632, 13.53158 ], [ 144.886398, 13.531774 ], [ 144.886632, 13.532356 ], [ 144.88671, 13.53255 ], [ 144.88672, 13.532576 ], [ 144.88675, 13.532654 ], [ 144.88676, 13.53268 ], [ 144.8868, 13.532779 ], [ 144.88692, 13.53308 ], [ 144.88696, 13.53318 ], [ 144.886975, 13.533219 ], [ 144.887023, 13.533336 ], [ 144.887039, 13.533375 ], [ 144.887093, 13.533508 ], [ 144.887117, 13.533567 ], [ 144.887255, 13.533906 ], [ 144.88731, 13.53404 ], [ 144.887334, 13.534101 ], [ 144.887406, 13.534287 ], [ 144.88743, 13.53435 ], [ 144.887535, 13.534599 ], [ 144.88759, 13.53473 ], [ 144.88773, 13.535 ], [ 144.88779, 13.53511 ], [ 144.887898, 13.535327 ], [ 144.88802, 13.53557 ], [ 144.888044, 13.535618 ], [ 144.888116, 13.535762 ], [ 144.88814, 13.53581 ], [ 144.88815, 13.53583 ], [ 144.88818, 13.53589 ], [ 144.88819, 13.53591 ], [ 144.88835, 13.536259 ], [ 144.88858, 13.53676 ], [ 144.888842, 13.537303 ], [ 144.88901, 13.53765 ], [ 144.888984, 13.537695 ], [ 144.889193, 13.538173 ], [ 144.889655, 13.539257 ], [ 144.88981, 13.53962 ], [ 144.889824, 13.539654 ], [ 144.889943, 13.539953 ], [ 144.8903, 13.54085 ], [ 144.89042, 13.54115 ], [ 144.890434, 13.541182 ], [ 144.890476, 13.541279 ], [ 144.89049, 13.541312 ], [ 144.890561, 13.541478 ], [ 144.8907, 13.5418 ], [ 144.890772, 13.541981 ], [ 144.89084, 13.54215 ], [ 144.890866, 13.542216 ], [ 144.890944, 13.542415 ], [ 144.89097, 13.542482 ], [ 144.891082, 13.542769 ], [ 144.891418, 13.543632 ], [ 144.89153, 13.54392 ], [ 144.891724, 13.544413 ], [ 144.892306, 13.545895 ], [ 144.8925, 13.54639 ], [ 144.892535, 13.546482 ], [ 144.892642, 13.54676 ], [ 144.892678, 13.546853 ], [ 144.892767, 13.547087 ], [ 144.893037, 13.547789 ], [ 144.893127, 13.548024 ], [ 144.89316, 13.54811 ], [ 144.893234, 13.548299 ], [ 144.893561, 13.549124 ], [ 144.89367, 13.5494 ], [ 144.893703, 13.549488 ], [ 144.893805, 13.549752 ], [ 144.89384, 13.54984 ], [ 144.893968, 13.550176 ], [ 144.894352, 13.551184 ], [ 144.89448, 13.55152 ], [ 144.89467, 13.551973 ], [ 144.8948, 13.55228 ], [ 144.895219, 13.553342 ], [ 144.895321, 13.553602 ], [ 144.8954, 13.5538 ], [ 144.895443, 13.55391 ], [ 144.895519, 13.554106 ], [ 144.895572, 13.554241 ], [ 144.895615, 13.554352 ], [ 144.895766, 13.554741 ], [ 144.896221, 13.55591 ], [ 144.89626, 13.55601 ], [ 144.896375, 13.556299 ], [ 144.896432, 13.556443 ], [ 144.896604, 13.556878 ], [ 144.896662, 13.557023 ], [ 144.896681, 13.557072 ], [ 144.89674, 13.55722 ], [ 144.89676, 13.55727 ], [ 144.89683, 13.557451 ], [ 144.89704, 13.557997 ], [ 144.89711, 13.55818 ], [ 144.897147, 13.558273 ], [ 144.897261, 13.558553 ], [ 144.897299, 13.558647 ], [ 144.897383, 13.558855 ], [ 144.897635, 13.559481 ], [ 144.897654, 13.559529 ], [ 144.89772, 13.55969 ], [ 144.897782, 13.559861 ], [ 144.897968, 13.560377 ], [ 144.89803, 13.56055 ], [ 144.898045, 13.560588 ], [ 144.898093, 13.560703 ], [ 144.898109, 13.560742 ], [ 144.89812, 13.560768 ], [ 144.898153, 13.560848 ], [ 144.898164, 13.560875 ], [ 144.898175, 13.560903 ], [ 144.898211, 13.56099 ], [ 144.898223, 13.561019 ], [ 144.898231, 13.56104 ], [ 144.898258, 13.561104 ], [ 144.898267, 13.561126 ], [ 144.898299, 13.561204 ], [ 144.89833, 13.56128 ], [ 144.898393, 13.561441 ], [ 144.898425, 13.56152 ], [ 144.898531, 13.561789 ], [ 144.89885, 13.562599 ], [ 144.89889, 13.5627 ], [ 144.89896, 13.56273 ], [ 144.899001, 13.562828 ], [ 144.903736, 13.561232 ], [ 144.906442, 13.560317 ], [ 144.906689, 13.56023 ], [ 144.907431, 13.55997 ], [ 144.907694, 13.559898 ], [ 144.909449, 13.559294 ], [ 144.913617, 13.557908 ], [ 144.914759, 13.557528 ], [ 144.91653, 13.55694 ], [ 144.916499, 13.556864 ], [ 144.91645, 13.55674 ], [ 144.916409, 13.556636 ], [ 144.91638, 13.55656 ], [ 144.916307, 13.556275 ], [ 144.91609, 13.555422 ], [ 144.916018, 13.555138 ], [ 144.916002, 13.555076 ], [ 144.915955, 13.554891 ], [ 144.91594, 13.55483 ], [ 144.915859, 13.554527 ], [ 144.915773, 13.5542 ], [ 144.915619, 13.55362 ], [ 144.91554, 13.553318 ], [ 144.915511, 13.553212 ], [ 144.915427, 13.552895 ], [ 144.9154, 13.55279 ], [ 144.91537, 13.552684 ], [ 144.91528, 13.552366 ], [ 144.91525, 13.55226 ], [ 144.915217, 13.552142 ], [ 144.915121, 13.551788 ], [ 144.91509, 13.55167 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "955900", "GEOID10": "66010955900", "NAME10": "9559", "NAMELSAD10": "Census Tract 9559", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1796777, "AWATER10": 0, "INTPTLAT10": "+13.4989135", "INTPTLON10": "+144.7759231" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.771083, 13.493386 ], [ 144.770994, 13.493071 ], [ 144.771004, 13.492795 ], [ 144.770827, 13.492727 ], [ 144.770736, 13.492539 ], [ 144.77065, 13.492363 ], [ 144.770506, 13.492322 ], [ 144.770387, 13.492315 ], [ 144.770138, 13.492294 ], [ 144.769941, 13.492313 ], [ 144.769741, 13.492389 ], [ 144.769659, 13.492525 ], [ 144.769863, 13.492766 ], [ 144.769912, 13.493051 ], [ 144.77002, 13.49314 ], [ 144.770176, 13.493163 ], [ 144.770453, 13.493169 ], [ 144.770699, 13.493258 ], [ 144.770875, 13.493331 ], [ 144.771083, 13.493386 ] ] ], [ [ [ 144.771288, 13.494891 ], [ 144.771227, 13.494929 ], [ 144.771197, 13.494962 ], [ 144.771163, 13.494957 ], [ 144.77109, 13.494961 ], [ 144.771045, 13.49499 ], [ 144.771035, 13.495028 ], [ 144.771064, 13.495066 ], [ 144.771062, 13.495067 ], [ 144.771035, 13.495085 ], [ 144.770971, 13.495099 ], [ 144.770908, 13.495094 ], [ 144.770849, 13.495074 ], [ 144.770786, 13.495073 ], [ 144.770732, 13.495097 ], [ 144.770726, 13.495135 ], [ 144.770673, 13.495125 ], [ 144.770619, 13.495139 ], [ 144.770575, 13.495167 ], [ 144.770394, 13.495142 ], [ 144.770311, 13.495122 ], [ 144.770243, 13.495121 ], [ 144.770194, 13.495126 ], [ 144.77012, 13.495158 ], [ 144.770076, 13.495153 ], [ 144.770047, 13.495158 ], [ 144.770041, 13.495172 ], [ 144.770007, 13.495253 ], [ 144.769987, 13.49532 ], [ 144.769927, 13.49541 ], [ 144.769951, 13.495468 ], [ 144.769946, 13.495506 ], [ 144.769926, 13.495539 ], [ 144.769921, 13.495563 ], [ 144.769891, 13.495601 ], [ 144.769871, 13.495649 ], [ 144.769876, 13.495701 ], [ 144.769851, 13.495735 ], [ 144.769836, 13.495768 ], [ 144.769836, 13.495806 ], [ 144.76986, 13.495859 ], [ 144.769859, 13.495916 ], [ 144.769824, 13.495991 ], [ 144.769824, 13.495993 ], [ 144.769804, 13.496059 ], [ 144.769774, 13.49614 ], [ 144.769743, 13.496264 ], [ 144.769753, 13.496331 ], [ 144.769796, 13.496399 ], [ 144.76978, 13.496494 ], [ 144.769799, 13.496566 ], [ 144.769833, 13.496614 ], [ 144.769861, 13.49672 ], [ 144.769878, 13.496815 ], [ 144.769894, 13.496906 ], [ 144.769912, 13.497084 ], [ 144.76996, 13.497165 ], [ 144.769974, 13.497266 ], [ 144.769979, 13.497332 ], [ 144.769968, 13.497362 ], [ 144.769963, 13.497405 ], [ 144.769953, 13.497448 ], [ 144.769945, 13.497517 ], [ 144.769942, 13.497548 ], [ 144.769917, 13.49761 ], [ 144.769888, 13.497653 ], [ 144.769887, 13.497701 ], [ 144.769926, 13.497749 ], [ 144.769889, 13.497806 ], [ 144.769854, 13.497825 ], [ 144.76982, 13.497849 ], [ 144.769814, 13.497906 ], [ 144.769795, 13.49793 ], [ 144.769779, 13.49796 ], [ 144.769775, 13.497968 ], [ 144.769769, 13.498039 ], [ 144.769768, 13.498116 ], [ 144.769778, 13.498183 ], [ 144.769792, 13.498236 ], [ 144.769767, 13.498288 ], [ 144.769737, 13.498336 ], [ 144.769707, 13.498364 ], [ 144.769688, 13.498362 ], [ 144.769658, 13.498378 ], [ 144.769646, 13.498401 ], [ 144.769614, 13.498473 ], [ 144.769593, 13.498535 ], [ 144.769578, 13.498611 ], [ 144.769582, 13.498669 ], [ 144.769558, 13.498697 ], [ 144.769509, 13.498716 ], [ 144.769503, 13.498769 ], [ 144.769453, 13.498897 ], [ 144.769424, 13.498921 ], [ 144.769394, 13.498988 ], [ 144.769364, 13.499069 ], [ 144.769326, 13.49915 ], [ 144.769262, 13.499264 ], [ 144.769247, 13.499326 ], [ 144.769241, 13.499369 ], [ 144.76924, 13.499507 ], [ 144.769186, 13.49955 ], [ 144.769166, 13.499626 ], [ 144.769151, 13.49965 ], [ 144.769121, 13.499659 ], [ 144.769111, 13.499678 ], [ 144.769106, 13.499721 ], [ 144.769111, 13.499745 ], [ 144.769128, 13.499762 ], [ 144.76913, 13.499765 ], [ 144.769203, 13.499813 ], [ 144.769256, 13.499833 ], [ 144.769261, 13.499857 ], [ 144.769261, 13.49989 ], [ 144.769256, 13.499909 ], [ 144.76926, 13.499938 ], [ 144.769314, 13.499943 ], [ 144.769328, 13.499991 ], [ 144.769357, 13.500039 ], [ 144.769357, 13.500106 ], [ 144.769371, 13.500137 ], [ 144.769361, 13.500154 ], [ 144.769361, 13.500183 ], [ 144.76937, 13.500235 ], [ 144.769365, 13.500254 ], [ 144.769384, 13.500283 ], [ 144.769403, 13.500288 ], [ 144.769433, 13.500322 ], [ 144.769496, 13.500335 ], [ 144.769506, 13.500337 ], [ 144.76952, 13.500385 ], [ 144.76951, 13.500414 ], [ 144.769505, 13.500447 ], [ 144.769543, 13.500524 ], [ 144.769572, 13.500548 ], [ 144.769609, 13.500558 ], [ 144.769623, 13.500591 ], [ 144.769637, 13.500639 ], [ 144.769637, 13.500705 ], [ 144.769646, 13.500721 ], [ 144.769666, 13.500721 ], [ 144.769748, 13.500803 ], [ 144.769753, 13.500836 ], [ 144.769772, 13.500856 ], [ 144.769821, 13.500885 ], [ 144.769821, 13.50091 ], [ 144.769816, 13.500928 ], [ 144.769859, 13.500957 ], [ 144.769888, 13.501 ], [ 144.769898, 13.501024 ], [ 144.769897, 13.501067 ], [ 144.769907, 13.501101 ], [ 144.769926, 13.50113 ], [ 144.769931, 13.501154 ], [ 144.769921, 13.501182 ], [ 144.769915, 13.50122 ], [ 144.769925, 13.501254 ], [ 144.769937, 13.501268 ], [ 144.769959, 13.501293 ], [ 144.770017, 13.501374 ], [ 144.770046, 13.501408 ], [ 144.770064, 13.50149 ], [ 144.770098, 13.501523 ], [ 144.770152, 13.501529 ], [ 144.770191, 13.501543 ], [ 144.770239, 13.501596 ], [ 144.770249, 13.501639 ], [ 144.770244, 13.501678 ], [ 144.770273, 13.501707 ], [ 144.770316, 13.50174 ], [ 144.770335, 13.501769 ], [ 144.770328, 13.501841 ], [ 144.770342, 13.501884 ], [ 144.77039, 13.501932 ], [ 144.770419, 13.501995 ], [ 144.770437, 13.502119 ], [ 144.770417, 13.502186 ], [ 144.770406, 13.502286 ], [ 144.770381, 13.502361 ], [ 144.770381, 13.502363 ], [ 144.770357, 13.502396 ], [ 144.770366, 13.502434 ], [ 144.77039, 13.502449 ], [ 144.770464, 13.502449 ], [ 144.770566, 13.502465 ], [ 144.770615, 13.502484 ], [ 144.770644, 13.502513 ], [ 144.770653, 13.502552 ], [ 144.770667, 13.502666 ], [ 144.770632, 13.502704 ], [ 144.770622, 13.502762 ], [ 144.770626, 13.502805 ], [ 144.77068, 13.502843 ], [ 144.770709, 13.502868 ], [ 144.770727, 13.502987 ], [ 144.770742, 13.503002 ], [ 144.7708, 13.503002 ], [ 144.770908, 13.503037 ], [ 144.770932, 13.503094 ], [ 144.770936, 13.503128 ], [ 144.770936, 13.503176 ], [ 144.77095, 13.503204 ], [ 144.771008, 13.503253 ], [ 144.771018, 13.50331 ], [ 144.771034, 13.50332 ], [ 144.77114, 13.503321 ], [ 144.771178, 13.50334 ], [ 144.771183, 13.503369 ], [ 144.771207, 13.503408 ], [ 144.771236, 13.503437 ], [ 144.771246, 13.50347 ], [ 144.771245, 13.503513 ], [ 144.771279, 13.503561 ], [ 144.771313, 13.503595 ], [ 144.771357, 13.503615 ], [ 144.7714, 13.503658 ], [ 144.771444, 13.503716 ], [ 144.771492, 13.50375 ], [ 144.771516, 13.503802 ], [ 144.771511, 13.503855 ], [ 144.771481, 13.503903 ], [ 144.771505, 13.503927 ], [ 144.771559, 13.503927 ], [ 144.771628, 13.503904 ], [ 144.771682, 13.503852 ], [ 144.771726, 13.503862 ], [ 144.77177, 13.503853 ], [ 144.77177, 13.503871 ], [ 144.77176, 13.503909 ], [ 144.771784, 13.503928 ], [ 144.771818, 13.503928 ], [ 144.771837, 13.503962 ], [ 144.771862, 13.503981 ], [ 144.771944, 13.504006 ], [ 144.771949, 13.504049 ], [ 144.771944, 13.504087 ], [ 144.771963, 13.504145 ], [ 144.77205, 13.504193 ], [ 144.772084, 13.504208 ], [ 144.772084, 13.504256 ], [ 144.772093, 13.504299 ], [ 144.772071, 13.504342 ], [ 144.772114, 13.50438 ], [ 144.772114, 13.504414 ], [ 144.772153, 13.504443 ], [ 144.772177, 13.504467 ], [ 144.772236, 13.504472 ], [ 144.772265, 13.504511 ], [ 144.772216, 13.504539 ], [ 144.772196, 13.504568 ], [ 144.772239, 13.504606 ], [ 144.772268, 13.504626 ], [ 144.77242, 13.504641 ], [ 144.772441, 13.50463 ], [ 144.772489, 13.504608 ], [ 144.772542, 13.504609 ], [ 144.77262, 13.504662 ], [ 144.772629, 13.504696 ], [ 144.772629, 13.504729 ], [ 144.772658, 13.504753 ], [ 144.772693, 13.504735 ], [ 144.772741, 13.504754 ], [ 144.772765, 13.504788 ], [ 144.772814, 13.504836 ], [ 144.772848, 13.504889 ], [ 144.772886, 13.504918 ], [ 144.77297, 13.504904 ], [ 144.773009, 13.504862 ], [ 144.773048, 13.504881 ], [ 144.773023, 13.504905 ], [ 144.773023, 13.504938 ], [ 144.773047, 13.504962 ], [ 144.773101, 13.504973 ], [ 144.773135, 13.504949 ], [ 144.773155, 13.50493 ], [ 144.773184, 13.504935 ], [ 144.773194, 13.504978 ], [ 144.773213, 13.505026 ], [ 144.773232, 13.505045 ], [ 144.773286, 13.505055 ], [ 144.773334, 13.505123 ], [ 144.773353, 13.505209 ], [ 144.773352, 13.50521 ], [ 144.773347, 13.505247 ], [ 144.773362, 13.505281 ], [ 144.773396, 13.505281 ], [ 144.773465, 13.505253 ], [ 144.773482, 13.505261 ], [ 144.773518, 13.505292 ], [ 144.773524, 13.505311 ], [ 144.773542, 13.505369 ], [ 144.773571, 13.505374 ], [ 144.773578, 13.505455 ], [ 144.773573, 13.505484 ], [ 144.773592, 13.505508 ], [ 144.773621, 13.505527 ], [ 144.773626, 13.505551 ], [ 144.77362, 13.50558 ], [ 144.773645, 13.505604 ], [ 144.773698, 13.505628 ], [ 144.773722, 13.505662 ], [ 144.773751, 13.505686 ], [ 144.773751, 13.505777 ], [ 144.773775, 13.505801 ], [ 144.773813, 13.505868 ], [ 144.773852, 13.505907 ], [ 144.773852, 13.50594 ], [ 144.773876, 13.506003 ], [ 144.773934, 13.506022 ], [ 144.773997, 13.506028 ], [ 144.774027, 13.506018 ], [ 144.774076, 13.506019 ], [ 144.77411, 13.506038 ], [ 144.774124, 13.506062 ], [ 144.774139, 13.506101 ], [ 144.774182, 13.506144 ], [ 144.774187, 13.506178 ], [ 144.77422, 13.506264 ], [ 144.774278, 13.506288 ], [ 144.774307, 13.506332 ], [ 144.774307, 13.50637 ], [ 144.774312, 13.506394 ], [ 144.774399, 13.506447 ], [ 144.7745, 13.506485 ], [ 144.774579, 13.506516 ], [ 144.774638, 13.506516 ], [ 144.774697, 13.506498 ], [ 144.774726, 13.506498 ], [ 144.77475, 13.506532 ], [ 144.774769, 13.506575 ], [ 144.774813, 13.50659 ], [ 144.774896, 13.506605 ], [ 144.775004, 13.506606 ], [ 144.775048, 13.506616 ], [ 144.775057, 13.506663 ], [ 144.775086, 13.506692 ], [ 144.775139, 13.506726 ], [ 144.775188, 13.506736 ], [ 144.775256, 13.506742 ], [ 144.7753, 13.506742 ], [ 144.775359, 13.506728 ], [ 144.775408, 13.506734 ], [ 144.775452, 13.506763 ], [ 144.775549, 13.506763 ], [ 144.775598, 13.506769 ], [ 144.775627, 13.506793 ], [ 144.775657, 13.506807 ], [ 144.775705, 13.506837 ], [ 144.775769, 13.506823 ], [ 144.775808, 13.506823 ], [ 144.775886, 13.506843 ], [ 144.775984, 13.506858 ], [ 144.776008, 13.506868 ], [ 144.776096, 13.506854 ], [ 144.776159, 13.506855 ], [ 144.776209, 13.506831 ], [ 144.776307, 13.506732 ], [ 144.776346, 13.506708 ], [ 144.776381, 13.50668 ], [ 144.776445, 13.506671 ], [ 144.776493, 13.506671 ], [ 144.776547, 13.506653 ], [ 144.776606, 13.506653 ], [ 144.77665, 13.506649 ], [ 144.77667, 13.506616 ], [ 144.776729, 13.506578 ], [ 144.776812, 13.506579 ], [ 144.776875, 13.506608 ], [ 144.776923, 13.50668 ], [ 144.776977, 13.506724 ], [ 144.777025, 13.506743 ], [ 144.777084, 13.506753 ], [ 144.777143, 13.506754 ], [ 144.777191, 13.506773 ], [ 144.777225, 13.506793 ], [ 144.777269, 13.50679 ], [ 144.777313, 13.506817 ], [ 144.777377, 13.506818 ], [ 144.77745, 13.506785 ], [ 144.777485, 13.506747 ], [ 144.777539, 13.506738 ], [ 144.777675, 13.506749 ], [ 144.777748, 13.506778 ], [ 144.777817, 13.506788 ], [ 144.777948, 13.506837 ], [ 144.777997, 13.506866 ], [ 144.778026, 13.506895 ], [ 144.778084, 13.506896 ], [ 144.778134, 13.506863 ], [ 144.778192, 13.506859 ], [ 144.778236, 13.506878 ], [ 144.778241, 13.506902 ], [ 144.77834, 13.50697 ], [ 144.778384, 13.50698 ], [ 144.778438, 13.506947 ], [ 144.778507, 13.506957 ], [ 144.778545, 13.506972 ], [ 144.778594, 13.507001 ], [ 144.778643, 13.50702 ], [ 144.778692, 13.507026 ], [ 144.778745, 13.507012 ], [ 144.778833, 13.507027 ], [ 144.778892, 13.507056 ], [ 144.778925, 13.507113 ], [ 144.778945, 13.507147 ], [ 144.778973, 13.507186 ], [ 144.779046, 13.507239 ], [ 144.779105, 13.507244 ], [ 144.779139, 13.507216 ], [ 144.779188, 13.507217 ], [ 144.779213, 13.507222 ], [ 144.779237, 13.507255 ], [ 144.779354, 13.507271 ], [ 144.779378, 13.507338 ], [ 144.779407, 13.507352 ], [ 144.779451, 13.507353 ], [ 144.77949, 13.507334 ], [ 144.779544, 13.507339 ], [ 144.779568, 13.507363 ], [ 144.779622, 13.507383 ], [ 144.779661, 13.507393 ], [ 144.779699, 13.507417 ], [ 144.779748, 13.507437 ], [ 144.779777, 13.507475 ], [ 144.779806, 13.507504 ], [ 144.779845, 13.507533 ], [ 144.779879, 13.507533 ], [ 144.779908, 13.507562 ], [ 144.779888, 13.507586 ], [ 144.779927, 13.507601 ], [ 144.780133, 13.507603 ], [ 144.780203, 13.507651 ], [ 144.780242, 13.507661 ], [ 144.780286, 13.507661 ], [ 144.780315, 13.507676 ], [ 144.78032, 13.5077 ], [ 144.780349, 13.507705 ], [ 144.780369, 13.507691 ], [ 144.780403, 13.507705 ], [ 144.780427, 13.507725 ], [ 144.780446, 13.507758 ], [ 144.780495, 13.507768 ], [ 144.780539, 13.507793 ], [ 144.780568, 13.507817 ], [ 144.780607, 13.507841 ], [ 144.780651, 13.507841 ], [ 144.780656, 13.507842 ], [ 144.780699, 13.507866 ], [ 144.780743, 13.507871 ], [ 144.780768, 13.50791 ], [ 144.780816, 13.507929 ], [ 144.780889, 13.507944 ], [ 144.780933, 13.50794 ], [ 144.780968, 13.507945 ], [ 144.780997, 13.507969 ], [ 144.78106, 13.507979 ], [ 144.781089, 13.508008 ], [ 144.781113, 13.508018 ], [ 144.781157, 13.508018 ], [ 144.781187, 13.508042 ], [ 144.781245, 13.508062 ], [ 144.781274, 13.508077 ], [ 144.781323, 13.508111 ], [ 144.78143, 13.508107 ], [ 144.781479, 13.508102 ], [ 144.781543, 13.508084 ], [ 144.781587, 13.508079 ], [ 144.781602, 13.508046 ], [ 144.781626, 13.508037 ], [ 144.781666, 13.508013 ], [ 144.781719, 13.508018 ], [ 144.781754, 13.508009 ], [ 144.781803, 13.507967 ], [ 144.781857, 13.507971 ], [ 144.781866, 13.507972 ], [ 144.781906, 13.507967 ], [ 144.781944, 13.507987 ], [ 144.781964, 13.508006 ], [ 144.782003, 13.50803 ], [ 144.782105, 13.508031 ], [ 144.782159, 13.508037 ], [ 144.782227, 13.508075 ], [ 144.782247, 13.508033 ], [ 144.782299, 13.507394 ], [ 144.782419, 13.507067 ], [ 144.782607, 13.506818 ], [ 144.783378, 13.505805 ], [ 144.784288, 13.50436 ], [ 144.78477, 13.503574 ], [ 144.784799, 13.503528 ], [ 144.785138, 13.502956 ], [ 144.78522, 13.50238 ], [ 144.785102, 13.5024 ], [ 144.784747, 13.50246 ], [ 144.78463, 13.50248 ], [ 144.78431, 13.50261 ], [ 144.784071, 13.502736 ], [ 144.78397, 13.50279 ], [ 144.7835, 13.50307 ], [ 144.7827, 13.50353 ], [ 144.782491, 13.503684 ], [ 144.78239, 13.50376 ], [ 144.7821, 13.50402 ], [ 144.78203, 13.50409 ], [ 144.78196, 13.50412 ], [ 144.781917, 13.504169 ], [ 144.78183, 13.50427 ], [ 144.78171, 13.50439 ], [ 144.7816, 13.50443 ], [ 144.781594, 13.504432 ], [ 144.78147, 13.5045 ], [ 144.781397, 13.504458 ], [ 144.78131, 13.50442 ], [ 144.78122, 13.50436 ], [ 144.78113, 13.50422 ], [ 144.78103, 13.50393 ], [ 144.78101, 13.50369 ], [ 144.78094, 13.50357 ], [ 144.78099, 13.503167 ], [ 144.78101, 13.50301 ], [ 144.78105, 13.50277 ], [ 144.78106, 13.502683 ], [ 144.781089, 13.502425 ], [ 144.7811, 13.50234 ], [ 144.781126, 13.502132 ], [ 144.781204, 13.501508 ], [ 144.78123, 13.5013 ], [ 144.781284, 13.500881 ], [ 144.78134, 13.50046 ], [ 144.78136, 13.50034 ], [ 144.781439, 13.499781 ], [ 144.78146, 13.499627 ], [ 144.78152, 13.49921 ], [ 144.781526, 13.499161 ], [ 144.781545, 13.499017 ], [ 144.781552, 13.498969 ], [ 144.781556, 13.498937 ], [ 144.781568, 13.498842 ], [ 144.781573, 13.498811 ], [ 144.781593, 13.49866 ], [ 144.781653, 13.498208 ], [ 144.781674, 13.498058 ], [ 144.78168, 13.49801 ], [ 144.781686, 13.497952 ], [ 144.781719, 13.497636 ], [ 144.78172, 13.49763 ], [ 144.78178, 13.49763 ], [ 144.781785, 13.497558 ], [ 144.78169, 13.49756 ], [ 144.781453, 13.49756 ], [ 144.78109, 13.49756 ], [ 144.78092, 13.4976 ], [ 144.780746, 13.4976 ], [ 144.78051, 13.4976 ], [ 144.780379, 13.4976 ], [ 144.780285, 13.4976 ], [ 144.779986, 13.4976 ], [ 144.779856, 13.4976 ], [ 144.779822, 13.4976 ], [ 144.779723, 13.4976 ], [ 144.77969, 13.4976 ], [ 144.779593, 13.4976 ], [ 144.779303, 13.497604 ], [ 144.779207, 13.497605 ], [ 144.779117, 13.497605 ], [ 144.778849, 13.497608 ], [ 144.77876, 13.49761 ], [ 144.778747, 13.49761 ], [ 144.778709, 13.49761 ], [ 144.778697, 13.49761 ], [ 144.778684, 13.49761 ], [ 144.778645, 13.49761 ], [ 144.778633, 13.49761 ], [ 144.778547, 13.49761 ], [ 144.778388, 13.49761 ], [ 144.778289, 13.49761 ], [ 144.778203, 13.49761 ], [ 144.778154, 13.49761 ], [ 144.778008, 13.49761 ], [ 144.77796, 13.49761 ], [ 144.77793, 13.49761 ], [ 144.77784, 13.49761 ], [ 144.77781, 13.49761 ], [ 144.777468, 13.497615 ], [ 144.77714, 13.49762 ], [ 144.77704, 13.4976 ], [ 144.77664, 13.49761 ], [ 144.77613, 13.49761 ], [ 144.776153, 13.497527 ], [ 144.776285, 13.497071 ], [ 144.77633, 13.49692 ], [ 144.77633, 13.49673 ], [ 144.776329, 13.496726 ], [ 144.77631, 13.49649 ], [ 144.776187, 13.496167 ], [ 144.77617, 13.49612 ], [ 144.77611, 13.49599 ], [ 144.77606, 13.49585 ], [ 144.776033, 13.495783 ], [ 144.77598, 13.49565 ], [ 144.77596, 13.49546 ], [ 144.775952, 13.495134 ], [ 144.77595, 13.49503 ], [ 144.77595, 13.494914 ], [ 144.77595, 13.494719 ], [ 144.77595, 13.494134 ], [ 144.77595, 13.49394 ], [ 144.77595, 13.493925 ], [ 144.77595, 13.49389 ], [ 144.77595, 13.493883 ], [ 144.775953, 13.493869 ], [ 144.775964, 13.493795 ], [ 144.775998, 13.493573 ], [ 144.77601, 13.4935 ], [ 144.776018, 13.493444 ], [ 144.776042, 13.493276 ], [ 144.77605, 13.49322 ], [ 144.776071, 13.493171 ], [ 144.77612, 13.49306 ], [ 144.776136, 13.493027 ], [ 144.77616, 13.49298 ], [ 144.776165, 13.492969 ], [ 144.776181, 13.492935 ], [ 144.776187, 13.492925 ], [ 144.776193, 13.492912 ], [ 144.776213, 13.492872 ], [ 144.77622, 13.49286 ], [ 144.77625, 13.49281 ], [ 144.77628, 13.49275 ], [ 144.77636, 13.4926 ], [ 144.776431, 13.492403 ], [ 144.77644, 13.49238 ], [ 144.77651, 13.49216 ], [ 144.77654, 13.49186 ], [ 144.77655, 13.49166 ], [ 144.776533, 13.490903 ], [ 144.77653, 13.49076 ], [ 144.776552, 13.4904 ], [ 144.776555, 13.490338 ], [ 144.776566, 13.490151 ], [ 144.77657, 13.49009 ], [ 144.776586, 13.489719 ], [ 144.77659, 13.48964 ], [ 144.77656, 13.48913 ], [ 144.77645, 13.48863 ], [ 144.776446, 13.488619 ], [ 144.776349, 13.488261 ], [ 144.77633, 13.48819 ], [ 144.776312, 13.488134 ], [ 144.776192, 13.48776 ], [ 144.776152, 13.487635 ], [ 144.776129, 13.487563 ], [ 144.77609, 13.48744 ], [ 144.776073, 13.487344 ], [ 144.77606, 13.48727 ], [ 144.776053, 13.487158 ], [ 144.77605, 13.4871 ], [ 144.77606, 13.48683 ], [ 144.776061, 13.486824 ], [ 144.7761, 13.48672 ], [ 144.776175, 13.486574 ], [ 144.77622, 13.48649 ], [ 144.7764, 13.48618 ], [ 144.77642, 13.486147 ], [ 144.77651, 13.48601 ], [ 144.776523, 13.485957 ], [ 144.77655, 13.48585 ], [ 144.776573, 13.485805 ], [ 144.776599, 13.485758 ], [ 144.776623, 13.485712 ], [ 144.776695, 13.485575 ], [ 144.77672, 13.48553 ], [ 144.776747, 13.485477 ], [ 144.77681, 13.48536 ], [ 144.776822, 13.485316 ], [ 144.77684, 13.48526 ], [ 144.776854, 13.485221 ], [ 144.776897, 13.485103 ], [ 144.776912, 13.485065 ], [ 144.776917, 13.48505 ], [ 144.776934, 13.485004 ], [ 144.77694, 13.48499 ], [ 144.776599, 13.484891 ], [ 144.775579, 13.484596 ], [ 144.77549, 13.48457 ], [ 144.77534, 13.48451 ], [ 144.77527, 13.48444 ], [ 144.77515, 13.484406 ], [ 144.774789, 13.484304 ], [ 144.77467, 13.48427 ], [ 144.774487, 13.484219 ], [ 144.77394, 13.484066 ], [ 144.773758, 13.484016 ], [ 144.773696, 13.483998 ], [ 144.773511, 13.483947 ], [ 144.77345, 13.48393 ], [ 144.773354, 13.483898 ], [ 144.77315, 13.48383 ], [ 144.773067, 13.483801 ], [ 144.772972, 13.483769 ], [ 144.772949, 13.483761 ], [ 144.772882, 13.483737 ], [ 144.77286, 13.48373 ], [ 144.77281, 13.48372 ], [ 144.77245, 13.48357 ], [ 144.772, 13.48332 ], [ 144.77152, 13.48299 ], [ 144.77123, 13.482761 ], [ 144.77119, 13.48273 ], [ 144.77095, 13.48249 ], [ 144.77061, 13.48213 ], [ 144.77036, 13.4818 ], [ 144.77013, 13.48151 ], [ 144.76985, 13.48118 ], [ 144.769574, 13.480926 ], [ 144.76936, 13.48073 ], [ 144.76902, 13.48048 ], [ 144.76872, 13.48027 ], [ 144.76822, 13.48 ], [ 144.76786, 13.47986 ], [ 144.767684, 13.479796 ], [ 144.767592, 13.479762 ], [ 144.767597, 13.480046 ], [ 144.767831, 13.480125 ], [ 144.768094, 13.480242 ], [ 144.768235, 13.480324 ], [ 144.768367, 13.480388 ], [ 144.768583, 13.480505 ], [ 144.768714, 13.480592 ], [ 144.768825, 13.480684 ], [ 144.768869, 13.480746 ], [ 144.768956, 13.480823 ], [ 144.769131, 13.480906 ], [ 144.769272, 13.481032 ], [ 144.769354, 13.48109 ], [ 144.769451, 13.481201 ], [ 144.769518, 13.481302 ], [ 144.76961, 13.481403 ], [ 144.769673, 13.481494 ], [ 144.769697, 13.481538 ], [ 144.769716, 13.481595 ], [ 144.769745, 13.481648 ], [ 144.769793, 13.481706 ], [ 144.769871, 13.48173 ], [ 144.769934, 13.481774 ], [ 144.769958, 13.481832 ], [ 144.769962, 13.481956 ], [ 144.769995, 13.482033 ], [ 144.77001, 13.482086 ], [ 144.770072, 13.482153 ], [ 144.77015, 13.482225 ], [ 144.770208, 13.482259 ], [ 144.770232, 13.482322 ], [ 144.77031, 13.482399 ], [ 144.770353, 13.482462 ], [ 144.770426, 13.482544 ], [ 144.770472, 13.48257 ], [ 144.770424, 13.482588 ], [ 144.77054, 13.482689 ], [ 144.770593, 13.482752 ], [ 144.770686, 13.482829 ], [ 144.770831, 13.482988 ], [ 144.770883, 13.483089 ], [ 144.770975, 13.4832 ], [ 144.771059, 13.483363 ], [ 144.771108, 13.483412 ], [ 144.771136, 13.483457 ], [ 144.771175, 13.483522 ], [ 144.771219, 13.483551 ], [ 144.771262, 13.4836 ], [ 144.771296, 13.483657 ], [ 144.771349, 13.483705 ], [ 144.771388, 13.483754 ], [ 144.771407, 13.483797 ], [ 144.771411, 13.483888 ], [ 144.771425, 13.483926 ], [ 144.771439, 13.484031 ], [ 144.771517, 13.48408 ], [ 144.771609, 13.484105 ], [ 144.771643, 13.484158 ], [ 144.771687, 13.484215 ], [ 144.771734, 13.48434 ], [ 144.771763, 13.484388 ], [ 144.771797, 13.484446 ], [ 144.77184, 13.484542 ], [ 144.772054, 13.484893 ], [ 144.77217, 13.485028 ], [ 144.772237, 13.485124 ], [ 144.772258, 13.485154 ], [ 144.772295, 13.485206 ], [ 144.772327, 13.485241 ], [ 144.772352, 13.485269 ], [ 144.772416, 13.485341 ], [ 144.772488, 13.485451 ], [ 144.772513, 13.48549 ], [ 144.772609, 13.485629 ], [ 144.772812, 13.48588 ], [ 144.772904, 13.485981 ], [ 144.772911, 13.48599 ], [ 144.772991, 13.486092 ], [ 144.773057, 13.486166 ], [ 144.773073, 13.486183 ], [ 144.773074, 13.486184 ], [ 144.773129, 13.486237 ], [ 144.773148, 13.486255 ], [ 144.77317, 13.486275 ], [ 144.773276, 13.486391 ], [ 144.773296, 13.48641 ], [ 144.773373, 13.486487 ], [ 144.773471, 13.486602 ], [ 144.773479, 13.486623 ], [ 144.773543, 13.486692 ], [ 144.773611, 13.486769 ], [ 144.773683, 13.486889 ], [ 144.773693, 13.486913 ], [ 144.773765, 13.487071 ], [ 144.773792, 13.487103 ], [ 144.773827, 13.487144 ], [ 144.773842, 13.487171 ], [ 144.773931, 13.487326 ], [ 144.773965, 13.487394 ], [ 144.774004, 13.487471 ], [ 144.774056, 13.487576 ], [ 144.774099, 13.487653 ], [ 144.774113, 13.487671 ], [ 144.774133, 13.487696 ], [ 144.774176, 13.487735 ], [ 144.774201, 13.487721 ], [ 144.77422, 13.487755 ], [ 144.774204, 13.487869 ], [ 144.774204, 13.487922 ], [ 144.774218, 13.488027 ], [ 144.774275, 13.488181 ], [ 144.774338, 13.488248 ], [ 144.774391, 13.48833 ], [ 144.774475, 13.488417 ], [ 144.774482, 13.488425 ], [ 144.774548, 13.488503 ], [ 144.77463, 13.488614 ], [ 144.774673, 13.488696 ], [ 144.774722, 13.488781 ], [ 144.774774, 13.488869 ], [ 144.774798, 13.488965 ], [ 144.774807, 13.489056 ], [ 144.774863, 13.489305 ], [ 144.774865, 13.489333 ], [ 144.774876, 13.489463 ], [ 144.774875, 13.489539 ], [ 144.774895, 13.489558 ], [ 144.774924, 13.489616 ], [ 144.774939, 13.48976 ], [ 144.774967, 13.489927 ], [ 144.774979, 13.490033 ], [ 144.774981, 13.490047 ], [ 144.775018, 13.490253 ], [ 144.775031, 13.490363 ], [ 144.77505, 13.490459 ], [ 144.775078, 13.490598 ], [ 144.775102, 13.49066 ], [ 144.775111, 13.490737 ], [ 144.775114, 13.49075 ], [ 144.775135, 13.490823 ], [ 144.775153, 13.490943 ], [ 144.775137, 13.491325 ], [ 144.775141, 13.491464 ], [ 144.77513, 13.491607 ], [ 144.775125, 13.491645 ], [ 144.775114, 13.49175 ], [ 144.775108, 13.491899 ], [ 144.775101, 13.491944 ], [ 144.77507, 13.492125 ], [ 144.775061, 13.492185 ], [ 144.775027, 13.492433 ], [ 144.775006, 13.492553 ], [ 144.774976, 13.492643 ], [ 144.77497, 13.492666 ], [ 144.774926, 13.492845 ], [ 144.774925, 13.492849 ], [ 144.77489, 13.49292 ], [ 144.774838, 13.493056 ], [ 144.774825, 13.493091 ], [ 144.774795, 13.493182 ], [ 144.77476, 13.493249 ], [ 144.774745, 13.493301 ], [ 144.774729, 13.493449 ], [ 144.774709, 13.493483 ], [ 144.774689, 13.493573 ], [ 144.774693, 13.49365 ], [ 144.774665, 13.493712 ], [ 144.774606, 13.49385 ], [ 144.774569, 13.493921 ], [ 144.774566, 13.493926 ], [ 144.774531, 13.49405 ], [ 144.774514, 13.494236 ], [ 144.774489, 13.494298 ], [ 144.774405, 13.494384 ], [ 144.774371, 13.494393 ], [ 144.774337, 13.494369 ], [ 144.774308, 13.494373 ], [ 144.774283, 13.494397 ], [ 144.774255, 13.494392 ], [ 144.774254, 13.494392 ], [ 144.774185, 13.494429 ], [ 144.774166, 13.494429 ], [ 144.774117, 13.494448 ], [ 144.774082, 13.494476 ], [ 144.774069, 13.494463 ], [ 144.774058, 13.494447 ], [ 144.774024, 13.494457 ], [ 144.773999, 13.49449 ], [ 144.773935, 13.494489 ], [ 144.773906, 13.494527 ], [ 144.773871, 13.494546 ], [ 144.773842, 13.494551 ], [ 144.773748, 13.494617 ], [ 144.773709, 13.49466 ], [ 144.773635, 13.494721 ], [ 144.773527, 13.494734 ], [ 144.773498, 13.494729 ], [ 144.773439, 13.494743 ], [ 144.773415, 13.494743 ], [ 144.773415, 13.494791 ], [ 144.773365, 13.494829 ], [ 144.773331, 13.494838 ], [ 144.773297, 13.494852 ], [ 144.773272, 13.494895 ], [ 144.773196, 13.494899 ], [ 144.773157, 13.494922 ], [ 144.773118, 13.494932 ], [ 144.773064, 13.494931 ], [ 144.773, 13.494969 ], [ 144.772936, 13.494978 ], [ 144.772858, 13.494958 ], [ 144.772799, 13.495001 ], [ 144.772763, 13.495004 ], [ 144.772716, 13.495009 ], [ 144.772638, 13.495028 ], [ 144.772554, 13.49507 ], [ 144.772522, 13.495108 ], [ 144.772515, 13.495118 ], [ 144.772451, 13.495127 ], [ 144.772388, 13.495155 ], [ 144.772344, 13.49514 ], [ 144.772197, 13.495139 ], [ 144.772178, 13.4951 ], [ 144.77211, 13.495061 ], [ 144.772066, 13.495018 ], [ 144.772013, 13.494994 ], [ 144.771945, 13.494974 ], [ 144.771919, 13.494975 ], [ 144.771832, 13.494978 ], [ 144.771794, 13.494954 ], [ 144.771779, 13.494944 ], [ 144.771715, 13.49491 ], [ 144.771608, 13.49489 ], [ 144.771496, 13.494889 ], [ 144.771416, 13.494906 ], [ 144.771393, 13.494912 ], [ 144.771344, 13.494906 ], [ 144.771288, 13.494891 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "955700", "GEOID10": "66010955700", "NAME10": "9557", "NAMELSAD10": "Census Tract 9557", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 15275904, "AWATER10": 0, "INTPTLAT10": "+13.4793398", "INTPTLON10": "+144.8475463" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.838549, 13.457885 ], [ 144.838555, 13.457803 ], [ 144.838556, 13.457722 ], [ 144.838571, 13.457674 ], [ 144.838443, 13.457522 ], [ 144.838326, 13.457406 ], [ 144.838264, 13.457329 ], [ 144.838176, 13.457329 ], [ 144.838112, 13.457253 ], [ 144.83806, 13.457171 ], [ 144.83801, 13.457099 ], [ 144.838018, 13.457038 ], [ 144.838066, 13.457024 ], [ 144.838062, 13.456998 ], [ 144.838028, 13.45697 ], [ 144.837993, 13.456988 ], [ 144.837947, 13.456972 ], [ 144.837931, 13.456858 ], [ 144.837987, 13.456812 ], [ 144.837979, 13.456762 ], [ 144.837941, 13.45672 ], [ 144.837897, 13.456754 ], [ 144.837837, 13.45674 ], [ 144.837821, 13.456647 ], [ 144.837809, 13.456509 ], [ 144.837767, 13.456437 ], [ 144.837717, 13.456427 ], [ 144.837693, 13.456363 ], [ 144.837701, 13.456282 ], [ 144.837673, 13.456216 ], [ 144.837606, 13.456208 ], [ 144.837564, 13.456174 ], [ 144.837588, 13.456122 ], [ 144.837665, 13.456084 ], [ 144.837687, 13.456036 ], [ 144.837655, 13.456008 ], [ 144.837562, 13.456024 ], [ 144.837454, 13.455915 ], [ 144.83743, 13.455843 ], [ 144.837426, 13.455745 ], [ 144.83737, 13.455743 ], [ 144.837338, 13.455644 ], [ 144.837324, 13.455554 ], [ 144.837199, 13.455546 ], [ 144.837131, 13.455542 ], [ 144.83711, 13.455453 ], [ 144.837086, 13.455491 ], [ 144.837027, 13.45548 ], [ 144.836935, 13.455422 ], [ 144.836877, 13.455379 ], [ 144.836814, 13.455297 ], [ 144.836834, 13.45524 ], [ 144.836883, 13.455202 ], [ 144.836835, 13.455149 ], [ 144.836762, 13.455053 ], [ 144.836713, 13.455043 ], [ 144.83665, 13.455042 ], [ 144.836567, 13.455013 ], [ 144.836504, 13.454955 ], [ 144.836505, 13.454826 ], [ 144.83652, 13.454788 ], [ 144.836531, 13.454721 ], [ 144.836526, 13.454682 ], [ 144.836453, 13.454615 ], [ 144.836414, 13.454634 ], [ 144.83639, 13.454657 ], [ 144.836336, 13.454686 ], [ 144.836224, 13.454608 ], [ 144.836185, 13.45455 ], [ 144.836107, 13.454535 ], [ 144.836054, 13.454535 ], [ 144.835941, 13.454553 ], [ 144.835868, 13.454533 ], [ 144.835785, 13.45449 ], [ 144.835742, 13.454446 ], [ 144.835703, 13.454374 ], [ 144.83565, 13.454326 ], [ 144.835611, 13.454282 ], [ 144.835592, 13.454244 ], [ 144.835558, 13.454205 ], [ 144.8355, 13.454181 ], [ 144.835461, 13.454157 ], [ 144.835451, 13.454138 ], [ 144.835452, 13.454095 ], [ 144.835428, 13.454042 ], [ 144.835389, 13.453994 ], [ 144.835326, 13.45395 ], [ 144.835258, 13.453926 ], [ 144.835195, 13.453882 ], [ 144.835185, 13.453844 ], [ 144.835147, 13.453805 ], [ 144.835113, 13.453747 ], [ 144.835103, 13.453714 ], [ 144.834999, 13.453679 ], [ 144.835007, 13.453565 ], [ 144.834939, 13.453483 ], [ 144.834914, 13.453349 ], [ 144.83488, 13.453301 ], [ 144.834866, 13.453243 ], [ 144.834818, 13.453147 ], [ 144.834789, 13.453099 ], [ 144.834745, 13.453041 ], [ 144.834659, 13.452907 ], [ 144.83461, 13.452844 ], [ 144.834557, 13.452805 ], [ 144.834489, 13.452786 ], [ 144.83445, 13.452795 ], [ 144.83441, 13.452823 ], [ 144.834376, 13.452866 ], [ 144.834307, 13.452865 ], [ 144.834273, 13.452903 ], [ 144.834238, 13.452932 ], [ 144.834165, 13.452979 ], [ 144.83413, 13.453022 ], [ 144.834057, 13.453026 ], [ 144.834003, 13.453035 ], [ 144.833949, 13.45302 ], [ 144.833857, 13.452976 ], [ 144.833798, 13.452961 ], [ 144.833774, 13.452923 ], [ 144.83377, 13.452875 ], [ 144.83375, 13.452856 ], [ 144.833716, 13.452865 ], [ 144.833677, 13.452903 ], [ 144.833632, 13.452993 ], [ 144.833607, 13.453055 ], [ 144.833558, 13.453079 ], [ 144.833514, 13.453093 ], [ 144.833445, 13.453092 ], [ 144.833392, 13.453097 ], [ 144.833353, 13.453082 ], [ 144.83329, 13.453033 ], [ 144.833251, 13.452995 ], [ 144.833212, 13.452966 ], [ 144.833164, 13.452884 ], [ 144.833159, 13.452832 ], [ 144.833199, 13.45277 ], [ 144.833224, 13.452698 ], [ 144.833259, 13.452636 ], [ 144.833289, 13.452565 ], [ 144.833348, 13.452465 ], [ 144.833369, 13.452403 ], [ 144.833384, 13.452336 ], [ 144.833419, 13.452222 ], [ 144.833385, 13.452174 ], [ 144.833379, 13.45203 ], [ 144.833385, 13.451954 ], [ 144.833415, 13.451887 ], [ 144.833469, 13.451844 ], [ 144.833538, 13.451749 ], [ 144.833583, 13.451697 ], [ 144.833618, 13.451597 ], [ 144.833623, 13.45154 ], [ 144.833594, 13.451482 ], [ 144.833595, 13.451429 ], [ 144.833629, 13.45142 ], [ 144.833658, 13.45143 ], [ 144.833688, 13.451406 ], [ 144.833698, 13.451368 ], [ 144.833723, 13.45133 ], [ 144.833767, 13.451316 ], [ 144.833787, 13.451288 ], [ 144.833728, 13.45122 ], [ 144.83369, 13.451182 ], [ 144.83369, 13.451105 ], [ 144.833661, 13.451081 ], [ 144.833623, 13.450999 ], [ 144.83354, 13.450979 ], [ 144.833516, 13.450946 ], [ 144.833492, 13.450888 ], [ 144.833502, 13.45084 ], [ 144.833522, 13.450774 ], [ 144.833533, 13.450721 ], [ 144.833504, 13.450659 ], [ 144.833451, 13.450587 ], [ 144.83332, 13.450518 ], [ 144.833233, 13.450331 ], [ 144.833209, 13.450288 ], [ 144.833161, 13.450249 ], [ 144.833107, 13.450196 ], [ 144.833093, 13.450148 ], [ 144.833099, 13.450101 ], [ 144.833085, 13.450029 ], [ 144.833046, 13.449985 ], [ 144.833022, 13.449928 ], [ 144.833017, 13.44988 ], [ 144.832964, 13.449812 ], [ 144.832984, 13.449774 ], [ 144.832995, 13.449708 ], [ 144.832975, 13.449669 ], [ 144.832932, 13.449659 ], [ 144.832922, 13.449621 ], [ 144.832932, 13.449592 ], [ 144.832884, 13.449563 ], [ 144.832835, 13.449558 ], [ 144.832802, 13.449562 ], [ 144.832788, 13.44955 ], [ 144.832698, 13.449518 ], [ 144.83265, 13.449442 ], [ 144.832597, 13.449369 ], [ 144.832578, 13.449307 ], [ 144.832572, 13.449211 ], [ 144.832528, 13.449168 ], [ 144.832494, 13.44911 ], [ 144.832451, 13.449076 ], [ 144.832437, 13.449014 ], [ 144.832442, 13.448966 ], [ 144.832381, 13.44887 ], [ 144.832321, 13.448774 ], [ 144.832259, 13.448702 ], [ 144.8322, 13.448658 ], [ 144.832152, 13.44861 ], [ 144.832118, 13.448552 ], [ 144.832079, 13.448528 ], [ 144.832041, 13.448475 ], [ 144.832027, 13.448408 ], [ 144.832027, 13.448384 ], [ 144.831988, 13.448365 ], [ 144.831934, 13.44835 ], [ 144.831901, 13.448302 ], [ 144.831823, 13.448244 ], [ 144.831809, 13.448201 ], [ 144.831765, 13.448176 ], [ 144.831746, 13.448133 ], [ 144.831688, 13.44809 ], [ 144.831664, 13.448042 ], [ 144.831615, 13.448032 ], [ 144.831596, 13.447979 ], [ 144.831547, 13.447926 ], [ 144.831489, 13.447897 ], [ 144.831399, 13.447886 ], [ 144.831365, 13.447852 ], [ 144.831311, 13.447809 ], [ 144.831248, 13.447765 ], [ 144.831204, 13.447765 ], [ 144.831117, 13.44775 ], [ 144.831034, 13.447654 ], [ 144.830996, 13.447601 ], [ 144.830952, 13.447562 ], [ 144.830894, 13.447533 ], [ 144.830875, 13.44748 ], [ 144.830782, 13.447422 ], [ 144.830719, 13.447378 ], [ 144.830661, 13.447325 ], [ 144.830613, 13.447306 ], [ 144.83053, 13.4473 ], [ 144.830466, 13.447271 ], [ 144.830423, 13.447242 ], [ 144.830394, 13.447199 ], [ 144.830364, 13.447184 ], [ 144.83032, 13.447222 ], [ 144.830281, 13.447269 ], [ 144.830246, 13.447298 ], [ 144.830221, 13.447369 ], [ 144.830182, 13.447393 ], [ 144.830147, 13.44744 ], [ 144.830083, 13.447488 ], [ 144.830035, 13.447468 ], [ 144.829864, 13.447457 ], [ 144.829776, 13.447418 ], [ 144.829664, 13.447379 ], [ 144.829576, 13.447359 ], [ 144.829484, 13.44732 ], [ 144.829435, 13.447272 ], [ 144.829396, 13.447266 ], [ 144.829318, 13.447242 ], [ 144.829275, 13.447198 ], [ 144.829263, 13.447164 ], [ 144.829266, 13.447122 ], [ 144.829301, 13.447046 ], [ 144.82936, 13.446998 ], [ 144.82938, 13.446932 ], [ 144.82942, 13.44686 ], [ 144.82945, 13.446774 ], [ 144.829441, 13.446698 ], [ 144.829361, 13.446635 ], [ 144.829454, 13.446607 ], [ 144.829522, 13.446574 ], [ 144.829552, 13.446512 ], [ 144.829543, 13.446493 ], [ 144.82945, 13.446468 ], [ 144.829387, 13.446439 ], [ 144.829387, 13.446382 ], [ 144.829408, 13.446301 ], [ 144.82934, 13.446257 ], [ 144.829276, 13.446285 ], [ 144.829163, 13.446289 ], [ 144.82909, 13.44626 ], [ 144.829052, 13.446197 ], [ 144.829028, 13.446135 ], [ 144.82897, 13.446096 ], [ 144.828897, 13.446028 ], [ 144.828839, 13.44599 ], [ 144.828809, 13.446028 ], [ 144.82878, 13.446003 ], [ 144.828726, 13.445974 ], [ 144.828693, 13.44584 ], [ 144.82865, 13.445787 ], [ 144.82866, 13.445771 ], [ 144.82866, 13.445716 ], [ 144.828612, 13.445677 ], [ 144.828529, 13.445647 ], [ 144.828505, 13.445628 ], [ 144.828461, 13.44558 ], [ 144.828412, 13.445584 ], [ 144.828388, 13.445536 ], [ 144.828311, 13.445478 ], [ 144.828252, 13.445449 ], [ 144.828238, 13.445401 ], [ 144.82819, 13.445372 ], [ 144.828107, 13.445352 ], [ 144.828063, 13.445299 ], [ 144.827888, 13.445255 ], [ 144.827848, 13.445278 ], [ 144.827824, 13.44523 ], [ 144.827722, 13.445201 ], [ 144.827629, 13.4452 ], [ 144.82761, 13.445224 ], [ 144.827555, 13.445271 ], [ 144.82756, 13.445309 ], [ 144.827579, 13.445362 ], [ 144.827535, 13.445376 ], [ 144.827505, 13.445404 ], [ 144.827495, 13.445466 ], [ 144.827465, 13.445514 ], [ 144.827382, 13.445542 ], [ 144.827318, 13.445541 ], [ 144.827279, 13.445551 ], [ 144.827255, 13.445579 ], [ 144.827156, 13.44566 ], [ 144.827112, 13.445659 ], [ 144.827064, 13.44564 ], [ 144.82701, 13.445649 ], [ 144.826951, 13.445667 ], [ 144.826883, 13.445667 ], [ 144.826819, 13.445628 ], [ 144.826756, 13.445565 ], [ 144.826723, 13.445508 ], [ 144.826733, 13.445455 ], [ 144.826738, 13.445402 ], [ 144.826715, 13.445331 ], [ 144.826651, 13.445297 ], [ 144.826662, 13.445249 ], [ 144.826848, 13.445207 ], [ 144.826906, 13.445179 ], [ 144.827034, 13.445094 ], [ 144.827074, 13.445028 ], [ 144.827104, 13.444932 ], [ 144.827061, 13.444884 ], [ 144.827027, 13.444817 ], [ 144.827014, 13.444778 ], [ 144.827003, 13.444745 ], [ 144.827013, 13.444707 ], [ 144.827038, 13.444707 ], [ 144.827067, 13.444674 ], [ 144.827079, 13.44465 ], [ 144.827061, 13.444631 ], [ 144.827044, 13.444611 ], [ 144.827033, 13.444429 ], [ 144.826927, 13.444267 ], [ 144.826899, 13.444046 ], [ 144.82668, 13.443779 ], [ 144.826593, 13.443501 ], [ 144.826248, 13.443178 ], [ 144.826191, 13.442974 ], [ 144.825931, 13.442757 ], [ 144.825029, 13.443897 ], [ 144.824867, 13.444086 ], [ 144.824863, 13.444225 ], [ 144.822275, 13.449085 ], [ 144.822249, 13.449134 ], [ 144.821684, 13.450106 ], [ 144.82335, 13.45056 ], [ 144.82396, 13.4507 ], [ 144.82438, 13.45083 ], [ 144.82475, 13.450971 ], [ 144.82485, 13.45101 ], [ 144.82525, 13.45122 ], [ 144.82558, 13.45144 ], [ 144.82587, 13.45169 ], [ 144.82618, 13.452 ], [ 144.8265, 13.45242 ], [ 144.8271, 13.45324 ], [ 144.82761, 13.4539 ], [ 144.82826, 13.45479 ], [ 144.82863, 13.45536 ], [ 144.82902, 13.45608 ], [ 144.829488, 13.456892 ], [ 144.830426, 13.458516 ], [ 144.83059, 13.4588 ], [ 144.83081, 13.45917 ], [ 144.83104, 13.4595 ], [ 144.83137, 13.45987 ], [ 144.83172, 13.46016 ], [ 144.832598, 13.460787 ], [ 144.832649, 13.460823 ], [ 144.832803, 13.460934 ], [ 144.832855, 13.460971 ], [ 144.83288, 13.460988 ], [ 144.832955, 13.461042 ], [ 144.83298, 13.46106 ], [ 144.832974, 13.464721 ], [ 144.83296, 13.46586 ], [ 144.832944, 13.466231 ], [ 144.832897, 13.467344 ], [ 144.832882, 13.467716 ], [ 144.832905, 13.468771 ], [ 144.832946, 13.470652 ], [ 144.832974, 13.471936 ], [ 144.832998, 13.472991 ], [ 144.833005, 13.473304 ], [ 144.832953, 13.477688 ], [ 144.832906, 13.482141 ], [ 144.832863, 13.482744 ], [ 144.832848, 13.482969 ], [ 144.832839, 13.483976 ], [ 144.832838, 13.484163 ], [ 144.832838, 13.484181 ], [ 144.83288, 13.484581 ], [ 144.833402, 13.488435 ], [ 144.83382, 13.49143 ], [ 144.834215, 13.494278 ], [ 144.834487, 13.496702 ], [ 144.834545, 13.497222 ], [ 144.834625, 13.497931 ], [ 144.834793, 13.497967 ], [ 144.834833, 13.497984 ], [ 144.834892, 13.497989 ], [ 144.835668, 13.498049 ], [ 144.83593, 13.49807 ], [ 144.8366, 13.4981 ], [ 144.83709, 13.49815 ], [ 144.83744, 13.49814 ], [ 144.83767, 13.49815 ], [ 144.83783, 13.49819 ], [ 144.837993, 13.498208 ], [ 144.8381, 13.49822 ], [ 144.83877, 13.49827 ], [ 144.838852, 13.498277 ], [ 144.839098, 13.498299 ], [ 144.839181, 13.498307 ], [ 144.83933, 13.49832 ], [ 144.839352, 13.498321 ], [ 144.839868, 13.49835 ], [ 144.84004, 13.49836 ], [ 144.840477, 13.498403 ], [ 144.84085, 13.49844 ], [ 144.841794, 13.4985 ], [ 144.841921, 13.498508 ], [ 144.842077, 13.498499 ], [ 144.842261, 13.498535 ], [ 144.842495, 13.498579 ], [ 144.842617, 13.498611 ], [ 144.84298, 13.49871 ], [ 144.843117, 13.498749 ], [ 144.843137, 13.498755 ], [ 144.84348, 13.49875 ], [ 144.843547, 13.498743 ], [ 144.84369, 13.49873 ], [ 144.8438, 13.49873 ], [ 144.843927, 13.498696 ], [ 144.84414, 13.49864 ], [ 144.844631, 13.498521 ], [ 144.84464, 13.49852 ], [ 144.84487, 13.49848 ], [ 144.848603, 13.497642 ], [ 144.849802, 13.497959 ], [ 144.853162, 13.499107 ], [ 144.854233, 13.498969 ], [ 144.854379, 13.498932 ], [ 144.85439, 13.49893 ], [ 144.85469, 13.49883 ], [ 144.854812, 13.498802 ], [ 144.85496, 13.49877 ], [ 144.855134, 13.498752 ], [ 144.856906, 13.499578 ], [ 144.863994, 13.49963 ], [ 144.864785, 13.499637 ], [ 144.865838, 13.499646 ], [ 144.867804, 13.499664 ], [ 144.87072, 13.49969 ], [ 144.87083, 13.499692 ], [ 144.870852, 13.498884 ], [ 144.87086, 13.4986 ], [ 144.870868, 13.498415 ], [ 144.870895, 13.497864 ], [ 144.870904, 13.49768 ], [ 144.870911, 13.497449 ], [ 144.870936, 13.496756 ], [ 144.870944, 13.496526 ], [ 144.870945, 13.496488 ], [ 144.870952, 13.496374 ], [ 144.870955, 13.496337 ], [ 144.870954, 13.496314 ], [ 144.870952, 13.496248 ], [ 144.870952, 13.496226 ], [ 144.870952, 13.496197 ], [ 144.870954, 13.496114 ], [ 144.870955, 13.496086 ], [ 144.870932, 13.495326 ], [ 144.870866, 13.493048 ], [ 144.870844, 13.492289 ], [ 144.869951, 13.49144 ], [ 144.869013, 13.490547 ], [ 144.869671, 13.488239 ], [ 144.870009, 13.487055 ], [ 144.870126, 13.486913 ], [ 144.870479, 13.486491 ], [ 144.870597, 13.48635 ], [ 144.870875, 13.486052 ], [ 144.870767, 13.485959 ], [ 144.870614, 13.485967 ], [ 144.870566, 13.485847 ], [ 144.87043, 13.485775 ], [ 144.870382, 13.485614 ], [ 144.870318, 13.485494 ], [ 144.870374, 13.485293 ], [ 144.870285, 13.485197 ], [ 144.87035, 13.485141 ], [ 144.870325, 13.485075 ], [ 144.870267, 13.485013 ], [ 144.870233, 13.484883 ], [ 144.870197, 13.484816 ], [ 144.870257, 13.484726 ], [ 144.870282, 13.484654 ], [ 144.870282, 13.484592 ], [ 144.870219, 13.484539 ], [ 144.870103, 13.484423 ], [ 144.870035, 13.484384 ], [ 144.869992, 13.484312 ], [ 144.869978, 13.484226 ], [ 144.870003, 13.484154 ], [ 144.870003, 13.484107 ], [ 144.869945, 13.484034 ], [ 144.869868, 13.483957 ], [ 144.869761, 13.483913 ], [ 144.869707, 13.483865 ], [ 144.869723, 13.483808 ], [ 144.869723, 13.48375 ], [ 144.86969, 13.483645 ], [ 144.869646, 13.483635 ], [ 144.869627, 13.483587 ], [ 144.869657, 13.483525 ], [ 144.869532, 13.483491 ], [ 144.869528, 13.483438 ], [ 144.869475, 13.483361 ], [ 144.869431, 13.483313 ], [ 144.869432, 13.483251 ], [ 144.869423, 13.483169 ], [ 144.869395, 13.483059 ], [ 144.869356, 13.483025 ], [ 144.869314, 13.483008 ], [ 144.869283, 13.482996 ], [ 144.86921, 13.482952 ], [ 144.869176, 13.482904 ], [ 144.869157, 13.482861 ], [ 144.869109, 13.482784 ], [ 144.869065, 13.48275 ], [ 144.868977, 13.48273 ], [ 144.868953, 13.482701 ], [ 144.868909, 13.482663 ], [ 144.868876, 13.482629 ], [ 144.868841, 13.482629 ], [ 144.868773, 13.482599 ], [ 144.868764, 13.482556 ], [ 144.86871, 13.482537 ], [ 144.868677, 13.482474 ], [ 144.868628, 13.482455 ], [ 144.868589, 13.482402 ], [ 144.86858, 13.482354 ], [ 144.868551, 13.482358 ], [ 144.868487, 13.482353 ], [ 144.868434, 13.482324 ], [ 144.86841, 13.482257 ], [ 144.868405, 13.48219 ], [ 144.868366, 13.482177 ], [ 144.868367, 13.482127 ], [ 144.868321, 13.482055 ], [ 144.868258, 13.481983 ], [ 144.868239, 13.48193 ], [ 144.868157, 13.481882 ], [ 144.868088, 13.481852 ], [ 144.86806, 13.48179 ], [ 144.868016, 13.481737 ], [ 144.868002, 13.48168 ], [ 144.867973, 13.481641 ], [ 144.867924, 13.481669 ], [ 144.86787, 13.481664 ], [ 144.867817, 13.481611 ], [ 144.867817, 13.481578 ], [ 144.867754, 13.48152 ], [ 144.867686, 13.48151 ], [ 144.867637, 13.48148 ], [ 144.867594, 13.481432 ], [ 144.867545, 13.481422 ], [ 144.867531, 13.481374 ], [ 144.867531, 13.481346 ], [ 144.867502, 13.481321 ], [ 144.867453, 13.481311 ], [ 144.867434, 13.481278 ], [ 144.867424, 13.481239 ], [ 144.867337, 13.481224 ], [ 144.867269, 13.481138 ], [ 144.867245, 13.481028 ], [ 144.867241, 13.480946 ], [ 144.867271, 13.480894 ], [ 144.867247, 13.480822 ], [ 144.867162, 13.480764 ], [ 144.867094, 13.480797 ], [ 144.86705, 13.480763 ], [ 144.867002, 13.480696 ], [ 144.866939, 13.480652 ], [ 144.86692, 13.48059 ], [ 144.866885, 13.48057 ], [ 144.866817, 13.480589 ], [ 144.866676, 13.480497 ], [ 144.866657, 13.480439 ], [ 144.866614, 13.480367 ], [ 144.866565, 13.480328 ], [ 144.866472, 13.480318 ], [ 144.866414, 13.480346 ], [ 144.866384, 13.480327 ], [ 144.866356, 13.48026 ], [ 144.866302, 13.480245 ], [ 144.866273, 13.480197 ], [ 144.866274, 13.480144 ], [ 144.866269, 13.480087 ], [ 144.866225, 13.480067 ], [ 144.866167, 13.480072 ], [ 144.866133, 13.480023 ], [ 144.866124, 13.47998 ], [ 144.866075, 13.479918 ], [ 144.866042, 13.479865 ], [ 144.865993, 13.47985 ], [ 144.865895, 13.479864 ], [ 144.865846, 13.47983 ], [ 144.865778, 13.4798 ], [ 144.865759, 13.479762 ], [ 144.86572, 13.479743 ], [ 144.865554, 13.479756 ], [ 144.865486, 13.479702 ], [ 144.865423, 13.479664 ], [ 144.86535, 13.479629 ], [ 144.865323, 13.479577 ], [ 144.865314, 13.47949 ], [ 144.865251, 13.479433 ], [ 144.865217, 13.479504 ], [ 144.865158, 13.479475 ], [ 144.865061, 13.479417 ], [ 144.864993, 13.479311 ], [ 144.864911, 13.479214 ], [ 144.864834, 13.479142 ], [ 144.864795, 13.479065 ], [ 144.864776, 13.478984 ], [ 144.864797, 13.478927 ], [ 144.864846, 13.478913 ], [ 144.86487, 13.47887 ], [ 144.864851, 13.478817 ], [ 144.864812, 13.478836 ], [ 144.864724, 13.478849 ], [ 144.864627, 13.478748 ], [ 144.864623, 13.478672 ], [ 144.864658, 13.478605 ], [ 144.864628, 13.478605 ], [ 144.864575, 13.478513 ], [ 144.864557, 13.478442 ], [ 144.864518, 13.478355 ], [ 144.864475, 13.478235 ], [ 144.864466, 13.478168 ], [ 144.864403, 13.478144 ], [ 144.864339, 13.478158 ], [ 144.864247, 13.478099 ], [ 144.864184, 13.478027 ], [ 144.864048, 13.477897 ], [ 144.863944, 13.477815 ], [ 144.863862, 13.477742 ], [ 144.863808, 13.477699 ], [ 144.863716, 13.477607 ], [ 144.863635, 13.477439 ], [ 144.86346, 13.477308 ], [ 144.863431, 13.477251 ], [ 144.86331, 13.477111 ], [ 144.863311, 13.477049 ], [ 144.863301, 13.476996 ], [ 144.863307, 13.476957 ], [ 144.863344, 13.476915 ], [ 144.863271, 13.47681 ], [ 144.863243, 13.476733 ], [ 144.863238, 13.476666 ], [ 144.863185, 13.476613 ], [ 144.863132, 13.476569 ], [ 144.863073, 13.476545 ], [ 144.863069, 13.476487 ], [ 144.86303, 13.476487 ], [ 144.862937, 13.476467 ], [ 144.862889, 13.476429 ], [ 144.862869, 13.476428 ], [ 144.86282, 13.476447 ], [ 144.862771, 13.476442 ], [ 144.862737, 13.476418 ], [ 144.862709, 13.476355 ], [ 144.862699, 13.476312 ], [ 144.862602, 13.476235 ], [ 144.862544, 13.476201 ], [ 144.862485, 13.476181 ], [ 144.862412, 13.476214 ], [ 144.862373, 13.47618 ], [ 144.86231, 13.476089 ], [ 144.862266, 13.476084 ], [ 144.862251, 13.476117 ], [ 144.862208, 13.476064 ], [ 144.862184, 13.476007 ], [ 144.862111, 13.47592 ], [ 144.862024, 13.475871 ], [ 144.861966, 13.47578 ], [ 144.861937, 13.475746 ], [ 144.861821, 13.475664 ], [ 144.861792, 13.475597 ], [ 144.861709, 13.475539 ], [ 144.861671, 13.475486 ], [ 144.861588, 13.475428 ], [ 144.861535, 13.475384 ], [ 144.861535, 13.475351 ], [ 144.861521, 13.475312 ], [ 144.861413, 13.475287 ], [ 144.861345, 13.475239 ], [ 144.861297, 13.475224 ], [ 144.861258, 13.475167 ], [ 144.861236, 13.47516 ], [ 144.86119, 13.47508 ], [ 144.861136, 13.475047 ], [ 144.861122, 13.475008 ], [ 144.861206, 13.474913 ], [ 144.861201, 13.47487 ], [ 144.861138, 13.47485 ], [ 144.861119, 13.474812 ], [ 144.861051, 13.474778 ], [ 144.860978, 13.474749 ], [ 144.860968, 13.474706 ], [ 144.860929, 13.474715 ], [ 144.860916, 13.474721 ], [ 144.86087, 13.474748 ], [ 144.860816, 13.474733 ], [ 144.860817, 13.47468 ], [ 144.860832, 13.474623 ], [ 144.860871, 13.47459 ], [ 144.860901, 13.474547 ], [ 144.860897, 13.474514 ], [ 144.860843, 13.474441 ], [ 144.86079, 13.474388 ], [ 144.860786, 13.474331 ], [ 144.860787, 13.474235 ], [ 144.860802, 13.474192 ], [ 144.860841, 13.474121 ], [ 144.860842, 13.474059 ], [ 144.860808, 13.474001 ], [ 144.860759, 13.474001 ], [ 144.860701, 13.473986 ], [ 144.860623, 13.473942 ], [ 144.860599, 13.47387 ], [ 144.860595, 13.473799 ], [ 144.860606, 13.473722 ], [ 144.860623, 13.473679 ], [ 144.860604, 13.473627 ], [ 144.860556, 13.473578 ], [ 144.860479, 13.473444 ], [ 144.860367, 13.473357 ], [ 144.860309, 13.473328 ], [ 144.860221, 13.473322 ], [ 144.860177, 13.473298 ], [ 144.860158, 13.473264 ], [ 144.860124, 13.473235 ], [ 144.86008, 13.473216 ], [ 144.860036, 13.473167 ], [ 144.860022, 13.473134 ], [ 144.859988, 13.473129 ], [ 144.859934, 13.473133 ], [ 144.85991, 13.473119 ], [ 144.859891, 13.473051 ], [ 144.859906, 13.473004 ], [ 144.859877, 13.473003 ], [ 144.859813, 13.472965 ], [ 144.859765, 13.472912 ], [ 144.859741, 13.472849 ], [ 144.859761, 13.472806 ], [ 144.859732, 13.472749 ], [ 144.859734, 13.472591 ], [ 144.859666, 13.47249 ], [ 144.859681, 13.472442 ], [ 144.859687, 13.472385 ], [ 144.859639, 13.472227 ], [ 144.859625, 13.472164 ], [ 144.859528, 13.472125 ], [ 144.859459, 13.472115 ], [ 144.859381, 13.472095 ], [ 144.859328, 13.472042 ], [ 144.859314, 13.471985 ], [ 144.859388, 13.471938 ], [ 144.859413, 13.471881 ], [ 144.859379, 13.471832 ], [ 144.859301, 13.471827 ], [ 144.859242, 13.471831 ], [ 144.859232, 13.471903 ], [ 144.859183, 13.471922 ], [ 144.859144, 13.471878 ], [ 144.859071, 13.471844 ], [ 144.859003, 13.471829 ], [ 144.858977, 13.471794 ], [ 144.858964, 13.471776 ], [ 144.858926, 13.471709 ], [ 144.858936, 13.471652 ], [ 144.858927, 13.471589 ], [ 144.858932, 13.471532 ], [ 144.858942, 13.471489 ], [ 144.858908, 13.471455 ], [ 144.858854, 13.471469 ], [ 144.858776, 13.471469 ], [ 144.858767, 13.471435 ], [ 144.858762, 13.471368 ], [ 144.858787, 13.47134 ], [ 144.858778, 13.471301 ], [ 144.858734, 13.471301 ], [ 144.85868, 13.471339 ], [ 144.858645, 13.471386 ], [ 144.858586, 13.471386 ], [ 144.858562, 13.471347 ], [ 144.858504, 13.471323 ], [ 144.858479, 13.471351 ], [ 144.858415, 13.471399 ], [ 144.858366, 13.471422 ], [ 144.858341, 13.471489 ], [ 144.858292, 13.471479 ], [ 144.858252, 13.471466 ], [ 144.858249, 13.471407 ], [ 144.858235, 13.471354 ], [ 144.858201, 13.471315 ], [ 144.858162, 13.471282 ], [ 144.858016, 13.471252 ], [ 144.857908, 13.471284 ], [ 144.857864, 13.471308 ], [ 144.857825, 13.471279 ], [ 144.857772, 13.471254 ], [ 144.857733, 13.471225 ], [ 144.857689, 13.471211 ], [ 144.857675, 13.471182 ], [ 144.857729, 13.471101 ], [ 144.8577, 13.471063 ], [ 144.857659, 13.471019 ], [ 144.857556, 13.470999 ], [ 144.857478, 13.470994 ], [ 144.857425, 13.470974 ], [ 144.857367, 13.470926 ], [ 144.857284, 13.470896 ], [ 144.857167, 13.470805 ], [ 144.857114, 13.470723 ], [ 144.857091, 13.470641 ], [ 144.857018, 13.470598 ], [ 144.856949, 13.470597 ], [ 144.856876, 13.470568 ], [ 144.856892, 13.470448 ], [ 144.856819, 13.470409 ], [ 144.856737, 13.470337 ], [ 144.856737, 13.470265 ], [ 144.856743, 13.470208 ], [ 144.856616, 13.470154 ], [ 144.856597, 13.470068 ], [ 144.856559, 13.469986 ], [ 144.856515, 13.469943 ], [ 144.856433, 13.469904 ], [ 144.85635, 13.469856 ], [ 144.856316, 13.469788 ], [ 144.856288, 13.469664 ], [ 144.856257, 13.469649 ], [ 144.856178, 13.469644 ], [ 144.856164, 13.469581 ], [ 144.856125, 13.469557 ], [ 144.856092, 13.469476 ], [ 144.856014, 13.469437 ], [ 144.855966, 13.469393 ], [ 144.855888, 13.46935 ], [ 144.855874, 13.469287 ], [ 144.855811, 13.46921 ], [ 144.855768, 13.469129 ], [ 144.855788, 13.469086 ], [ 144.855807, 13.469057 ], [ 144.855793, 13.469024 ], [ 144.855759, 13.469009 ], [ 144.855695, 13.469037 ], [ 144.855632, 13.468998 ], [ 144.855569, 13.468945 ], [ 144.855521, 13.468868 ], [ 144.855507, 13.468768 ], [ 144.855488, 13.468681 ], [ 144.855474, 13.468643 ], [ 144.855401, 13.468571 ], [ 144.855343, 13.468489 ], [ 144.855324, 13.468431 ], [ 144.855271, 13.468388 ], [ 144.855223, 13.46832 ], [ 144.855169, 13.468301 ], [ 144.855131, 13.468234 ], [ 144.855107, 13.468147 ], [ 144.855073, 13.46808 ], [ 144.855015, 13.468056 ], [ 144.854899, 13.46795 ], [ 144.854851, 13.467868 ], [ 144.854792, 13.467848 ], [ 144.854753, 13.467814 ], [ 144.8547, 13.467776 ], [ 144.854637, 13.467713 ], [ 144.8546, 13.467699 ], [ 144.854589, 13.467641 ], [ 144.854595, 13.467545 ], [ 144.854605, 13.467488 ], [ 144.854538, 13.467263 ], [ 144.85447, 13.467229 ], [ 144.854422, 13.467219 ], [ 144.854368, 13.467146 ], [ 144.854345, 13.467084 ], [ 144.854301, 13.467012 ], [ 144.854287, 13.46695 ], [ 144.854234, 13.466863 ], [ 144.854161, 13.466796 ], [ 144.854108, 13.466723 ], [ 144.85404, 13.466718 ], [ 144.854002, 13.466646 ], [ 144.853953, 13.466607 ], [ 144.853919, 13.466545 ], [ 144.853829, 13.466525 ], [ 144.853775, 13.466524 ], [ 144.853742, 13.466452 ], [ 144.853669, 13.466442 ], [ 144.853572, 13.466312 ], [ 144.853514, 13.466245 ], [ 144.853461, 13.466206 ], [ 144.853378, 13.46611 ], [ 144.853403, 13.466067 ], [ 144.85337, 13.466014 ], [ 144.853365, 13.465952 ], [ 144.853336, 13.465904 ], [ 144.85322, 13.465831 ], [ 144.853137, 13.465787 ], [ 144.853089, 13.46571 ], [ 144.853065, 13.465653 ], [ 144.852929, 13.465542 ], [ 144.852915, 13.465499 ], [ 144.852867, 13.465436 ], [ 144.852808, 13.465388 ], [ 144.852716, 13.465353 ], [ 144.852701, 13.465325 ], [ 144.852638, 13.465281 ], [ 144.852595, 13.465228 ], [ 144.852549, 13.465156 ], [ 144.852432, 13.465098 ], [ 144.852365, 13.465025 ], [ 144.852306, 13.464977 ], [ 144.852267, 13.464977 ], [ 144.852214, 13.464967 ], [ 144.852073, 13.464831 ], [ 144.852005, 13.464793 ], [ 144.85201, 13.464764 ], [ 144.851981, 13.464702 ], [ 144.851933, 13.464639 ], [ 144.851889, 13.464639 ], [ 144.851816, 13.464585 ], [ 144.851769, 13.464446 ], [ 144.85176, 13.464375 ], [ 144.851716, 13.464317 ], [ 144.851663, 13.464264 ], [ 144.851629, 13.464201 ], [ 144.851586, 13.464086 ], [ 144.851543, 13.464024 ], [ 144.851539, 13.464022 ], [ 144.851465, 13.463999 ], [ 144.851392, 13.463998 ], [ 144.851352, 13.464012 ], [ 144.851324, 13.463964 ], [ 144.85129, 13.463921 ], [ 144.851231, 13.463892 ], [ 144.851178, 13.463896 ], [ 144.851109, 13.463872 ], [ 144.851081, 13.463824 ], [ 144.851012, 13.463799 ], [ 144.850959, 13.463784 ], [ 144.850881, 13.463769 ], [ 144.850825, 13.463754 ], [ 144.85082, 13.463726 ], [ 144.850791, 13.463673 ], [ 144.850752, 13.463644 ], [ 144.850684, 13.463619 ], [ 144.85065, 13.463595 ], [ 144.850685, 13.463562 ], [ 144.850709, 13.463514 ], [ 144.85069, 13.463495 ], [ 144.850661, 13.463457 ], [ 144.850613, 13.463418 ], [ 144.850574, 13.463408 ], [ 144.850564, 13.463365 ], [ 144.850574, 13.463317 ], [ 144.850599, 13.463293 ], [ 144.850604, 13.463265 ], [ 144.850546, 13.46326 ], [ 144.850512, 13.463211 ], [ 144.850478, 13.463192 ], [ 144.850443, 13.463225 ], [ 144.850448, 13.463273 ], [ 144.850398, 13.463359 ], [ 144.850349, 13.463392 ], [ 144.850281, 13.463382 ], [ 144.850257, 13.463334 ], [ 144.85011, 13.463332 ], [ 144.850071, 13.463318 ], [ 144.849974, 13.463259 ], [ 144.84994, 13.463216 ], [ 144.849892, 13.463182 ], [ 144.849823, 13.463201 ], [ 144.84975, 13.463205 ], [ 144.849755, 13.463162 ], [ 144.84978, 13.463119 ], [ 144.849795, 13.463062 ], [ 144.849795, 13.463019 ], [ 144.849723, 13.462951 ], [ 144.849679, 13.46297 ], [ 144.849639, 13.463003 ], [ 144.849668, 13.463042 ], [ 144.849682, 13.46309 ], [ 144.849638, 13.463094 ], [ 144.84958, 13.463074 ], [ 144.849531, 13.463064 ], [ 144.849487, 13.463093 ], [ 144.849438, 13.463097 ], [ 144.849453, 13.46303 ], [ 144.849439, 13.463006 ], [ 144.849405, 13.462996 ], [ 144.849365, 13.463034 ], [ 144.849321, 13.463067 ], [ 144.849291, 13.463134 ], [ 144.849252, 13.463162 ], [ 144.849144, 13.463161 ], [ 144.84911, 13.463137 ], [ 144.849072, 13.463094 ], [ 144.849057, 13.46307 ], [ 144.849038, 13.463065 ], [ 144.849018, 13.463072 ], [ 144.848999, 13.463069 ], [ 144.848979, 13.463069 ], [ 144.848935, 13.463035 ], [ 144.848828, 13.463068 ], [ 144.848789, 13.463059 ], [ 144.848718, 13.463062 ], [ 144.848635, 13.463033 ], [ 144.848616, 13.462994 ], [ 144.848577, 13.462961 ], [ 144.848464, 13.463012 ], [ 144.848405, 13.463012 ], [ 144.848347, 13.462997 ], [ 144.848329, 13.463002 ], [ 144.848325, 13.46304 ], [ 144.848251, 13.463044 ], [ 144.848227, 13.463058 ], [ 144.848231, 13.463096 ], [ 144.848168, 13.463096 ], [ 144.848139, 13.463072 ], [ 144.848089, 13.463124 ], [ 144.848026, 13.463133 ], [ 144.847962, 13.463175 ], [ 144.847874, 13.463146 ], [ 144.847801, 13.463116 ], [ 144.847762, 13.463083 ], [ 144.847665, 13.463029 ], [ 144.847648, 13.463048 ], [ 144.847575, 13.463019 ], [ 144.847537, 13.462976 ], [ 144.847475, 13.462999 ], [ 144.847309, 13.462997 ], [ 144.847314, 13.462964 ], [ 144.847314, 13.462921 ], [ 144.847236, 13.462877 ], [ 144.847188, 13.462805 ], [ 144.847125, 13.462776 ], [ 144.847091, 13.462747 ], [ 144.847052, 13.462756 ], [ 144.847013, 13.462732 ], [ 144.846984, 13.462674 ], [ 144.847009, 13.462632 ], [ 144.847055, 13.462584 ], [ 144.847032, 13.46257 ], [ 144.847027, 13.462498 ], [ 144.847013, 13.46244 ], [ 144.846965, 13.462402 ], [ 144.846931, 13.462363 ], [ 144.846912, 13.46231 ], [ 144.846861, 13.462252 ], [ 144.846803, 13.462223 ], [ 144.846818, 13.462171 ], [ 144.846847, 13.462133 ], [ 144.846823, 13.46209 ], [ 144.84675, 13.462108 ], [ 144.846705, 13.462151 ], [ 144.846657, 13.46215 ], [ 144.846574, 13.462121 ], [ 144.846534, 13.462149 ], [ 144.846509, 13.462221 ], [ 144.846504, 13.462283 ], [ 144.846543, 13.462302 ], [ 144.846523, 13.46235 ], [ 144.846479, 13.462383 ], [ 144.846463, 13.46245 ], [ 144.84642, 13.46243 ], [ 144.846356, 13.462459 ], [ 144.846268, 13.462486 ], [ 144.846229, 13.462438 ], [ 144.846185, 13.462448 ], [ 144.846141, 13.462466 ], [ 144.846111, 13.462514 ], [ 144.846038, 13.462537 ], [ 144.845964, 13.462532 ], [ 144.845853, 13.462459 ], [ 144.845775, 13.462439 ], [ 144.845741, 13.462358 ], [ 144.845693, 13.462309 ], [ 144.84561, 13.46228 ], [ 144.845615, 13.462208 ], [ 144.845552, 13.462146 ], [ 144.845465, 13.462131 ], [ 144.845411, 13.462111 ], [ 144.845323, 13.46211 ], [ 144.84527, 13.462076 ], [ 144.845114, 13.462032 ], [ 144.845031, 13.462041 ], [ 144.844982, 13.462021 ], [ 144.844924, 13.461973 ], [ 144.844843, 13.461963 ], [ 144.844829, 13.46191 ], [ 144.84482, 13.461809 ], [ 144.844806, 13.461728 ], [ 144.844777, 13.461675 ], [ 144.844719, 13.461608 ], [ 144.844651, 13.461574 ], [ 144.844578, 13.461525 ], [ 144.844491, 13.461486 ], [ 144.844447, 13.461452 ], [ 144.844394, 13.461418 ], [ 144.84434, 13.46137 ], [ 144.844287, 13.461331 ], [ 144.844253, 13.461298 ], [ 144.844268, 13.461221 ], [ 144.844244, 13.461192 ], [ 144.844166, 13.461173 ], [ 144.844108, 13.46111 ], [ 144.844094, 13.461057 ], [ 144.844075, 13.461024 ], [ 144.843997, 13.46098 ], [ 144.843978, 13.460956 ], [ 144.843963, 13.460903 ], [ 144.843979, 13.460851 ], [ 144.844013, 13.460808 ], [ 144.844057, 13.460799 ], [ 144.844091, 13.460799 ], [ 144.844087, 13.460751 ], [ 144.844073, 13.460722 ], [ 144.844141, 13.46068 ], [ 144.844137, 13.460651 ], [ 144.844103, 13.460636 ], [ 144.844069, 13.460574 ], [ 144.844039, 13.460598 ], [ 144.84402, 13.460631 ], [ 144.84399, 13.460645 ], [ 144.843961, 13.460621 ], [ 144.843942, 13.460578 ], [ 144.843943, 13.460506 ], [ 144.843869, 13.460486 ], [ 144.843796, 13.460481 ], [ 144.843772, 13.460461 ], [ 144.843777, 13.460438 ], [ 144.843763, 13.460404 ], [ 144.843714, 13.460408 ], [ 144.843655, 13.460403 ], [ 144.843582, 13.460402 ], [ 144.843528, 13.460407 ], [ 144.843494, 13.460383 ], [ 144.843436, 13.460382 ], [ 144.843396, 13.460401 ], [ 144.843357, 13.460391 ], [ 144.843333, 13.460381 ], [ 144.843215, 13.460409 ], [ 144.843235, 13.460385 ], [ 144.843295, 13.460247 ], [ 144.843295, 13.460209 ], [ 144.843261, 13.460185 ], [ 144.843232, 13.460175 ], [ 144.843188, 13.460189 ], [ 144.843178, 13.460217 ], [ 144.843144, 13.460241 ], [ 144.843109, 13.460255 ], [ 144.84309, 13.460202 ], [ 144.843086, 13.460178 ], [ 144.843071, 13.460149 ], [ 144.843037, 13.460149 ], [ 144.842988, 13.460163 ], [ 144.842968, 13.460215 ], [ 144.842939, 13.46023 ], [ 144.842944, 13.460182 ], [ 144.84292, 13.460162 ], [ 144.842871, 13.460133 ], [ 144.842842, 13.460109 ], [ 144.842813, 13.460109 ], [ 144.842763, 13.460156 ], [ 144.84274, 13.460171 ], [ 144.842716, 13.460158 ], [ 144.842682, 13.460139 ], [ 144.842589, 13.460162 ], [ 144.842574, 13.4602 ], [ 144.842554, 13.460233 ], [ 144.842554, 13.460315 ], [ 144.842542, 13.460329 ], [ 144.84246, 13.460338 ], [ 144.842411, 13.460366 ], [ 144.842391, 13.460428 ], [ 144.84242, 13.460462 ], [ 144.842362, 13.460471 ], [ 144.842279, 13.460461 ], [ 144.842249, 13.460441 ], [ 144.842216, 13.460412 ], [ 144.842216, 13.460379 ], [ 144.842197, 13.46035 ], [ 144.842157, 13.46035 ], [ 144.842079, 13.460334 ], [ 144.842031, 13.460305 ], [ 144.842002, 13.460272 ], [ 144.841934, 13.460257 ], [ 144.84187, 13.460271 ], [ 144.841743, 13.46026 ], [ 144.841689, 13.46025 ], [ 144.841635, 13.460264 ], [ 144.841596, 13.460292 ], [ 144.841586, 13.460349 ], [ 144.841522, 13.460363 ], [ 144.841454, 13.460334 ], [ 144.84141, 13.4603 ], [ 144.841259, 13.460304 ], [ 144.841195, 13.460351 ], [ 144.84116, 13.460384 ], [ 144.841111, 13.460407 ], [ 144.841004, 13.460421 ], [ 144.840921, 13.460411 ], [ 144.840833, 13.460386 ], [ 144.840765, 13.460352 ], [ 144.840673, 13.460294 ], [ 144.840639, 13.460231 ], [ 144.840566, 13.460197 ], [ 144.840518, 13.460158 ], [ 144.840464, 13.460086 ], [ 144.840416, 13.460038 ], [ 144.840353, 13.459994 ], [ 144.840344, 13.459904 ], [ 144.84032, 13.459803 ], [ 144.840336, 13.459707 ], [ 144.840366, 13.459655 ], [ 144.84041, 13.459603 ], [ 144.840449, 13.459584 ], [ 144.840552, 13.459604 ], [ 144.840616, 13.459571 ], [ 144.840684, 13.459548 ], [ 144.840714, 13.459553 ], [ 144.840762, 13.459568 ], [ 144.840811, 13.45953 ], [ 144.840885, 13.459511 ], [ 144.84091, 13.459464 ], [ 144.840915, 13.459397 ], [ 144.840901, 13.459349 ], [ 144.840804, 13.459228 ], [ 144.840785, 13.459161 ], [ 144.840772, 13.459032 ], [ 144.840731, 13.458965 ], [ 144.840673, 13.458931 ], [ 144.840614, 13.45894 ], [ 144.840545, 13.458963 ], [ 144.840477, 13.459001 ], [ 144.840423, 13.458996 ], [ 144.840379, 13.458971 ], [ 144.840336, 13.458918 ], [ 144.840331, 13.458847 ], [ 144.840361, 13.458804 ], [ 144.840391, 13.458771 ], [ 144.840396, 13.458728 ], [ 144.840318, 13.458689 ], [ 144.840245, 13.45864 ], [ 144.840153, 13.458587 ], [ 144.840114, 13.458558 ], [ 144.840036, 13.458557 ], [ 144.839977, 13.458561 ], [ 144.839865, 13.458532 ], [ 144.839733, 13.458516 ], [ 144.83967, 13.458501 ], [ 144.839548, 13.458529 ], [ 144.839513, 13.458601 ], [ 144.839473, 13.458629 ], [ 144.8394, 13.458609 ], [ 144.839318, 13.45858 ], [ 144.839264, 13.458589 ], [ 144.839205, 13.458631 ], [ 144.839181, 13.458593 ], [ 144.839211, 13.458569 ], [ 144.839263, 13.458565 ], [ 144.839285, 13.458545 ], [ 144.839205, 13.458521 ], [ 144.839131, 13.458509 ], [ 144.839091, 13.458509 ], [ 144.839077, 13.458475 ], [ 144.83903, 13.458448 ], [ 144.839028, 13.458412 ], [ 144.838986, 13.458406 ], [ 144.838938, 13.458408 ], [ 144.838956, 13.458304 ], [ 144.838998, 13.45829 ], [ 144.839044, 13.458284 ], [ 144.839046, 13.458244 ], [ 144.839067, 13.458224 ], [ 144.839034, 13.458204 ], [ 144.838984, 13.458212 ], [ 144.838906, 13.458218 ], [ 144.838844, 13.458184 ], [ 144.838549, 13.457885 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "956000", "GEOID10": "66010956000", "NAME10": "9560", "NAMELSAD10": "Census Tract 9560", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2234078, "AWATER10": 0, "INTPTLAT10": "+13.4713491", "INTPTLON10": "+144.7777729" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.773541, 13.462485 ], [ 144.773553, 13.462531 ], [ 144.77363, 13.46285 ], [ 144.77376, 13.46317 ], [ 144.773807, 13.463294 ], [ 144.77384, 13.46338 ], [ 144.7739, 13.46345 ], [ 144.77391, 13.46348 ], [ 144.77389, 13.46353 ], [ 144.77395, 13.46367 ], [ 144.7741, 13.46394 ], [ 144.7744, 13.46436 ], [ 144.774588, 13.464647 ], [ 144.77478, 13.46494 ], [ 144.77518, 13.46552 ], [ 144.77555, 13.46604 ], [ 144.77587, 13.46652 ], [ 144.77631, 13.4671 ], [ 144.77645, 13.46735 ], [ 144.77659, 13.46755 ], [ 144.77672, 13.46766 ], [ 144.776929, 13.467822 ], [ 144.77729, 13.4681 ], [ 144.77777, 13.46844 ], [ 144.77799, 13.46861 ], [ 144.777894, 13.468613 ], [ 144.777609, 13.468625 ], [ 144.777514, 13.468629 ], [ 144.7775, 13.46863 ], [ 144.777289, 13.468633 ], [ 144.776614, 13.468645 ], [ 144.77639, 13.46865 ], [ 144.776238, 13.468652 ], [ 144.775782, 13.468658 ], [ 144.77563, 13.46866 ], [ 144.775642, 13.468816 ], [ 144.775678, 13.469284 ], [ 144.77569, 13.46944 ], [ 144.77571, 13.469587 ], [ 144.77577, 13.47001 ], [ 144.775771, 13.470031 ], [ 144.77578, 13.47018 ], [ 144.775797, 13.470369 ], [ 144.7758, 13.4704 ], [ 144.77587, 13.47059 ], [ 144.77598, 13.4708 ], [ 144.776042, 13.470879 ], [ 144.77616, 13.47103 ], [ 144.776226, 13.471121 ], [ 144.7764, 13.47136 ], [ 144.776425, 13.471396 ], [ 144.77649, 13.47149 ], [ 144.776516, 13.471523 ], [ 144.776594, 13.471625 ], [ 144.77662, 13.47166 ], [ 144.77667, 13.47182 ], [ 144.77667, 13.471833 ], [ 144.77667, 13.47214 ], [ 144.77661, 13.47232 ], [ 144.776582, 13.47236 ], [ 144.77648, 13.47251 ], [ 144.77639, 13.47264 ], [ 144.77637, 13.472661 ], [ 144.77615, 13.4729 ], [ 144.775976, 13.473062 ], [ 144.77584, 13.47319 ], [ 144.775758, 13.473263 ], [ 144.77573, 13.47329 ], [ 144.77554, 13.47344 ], [ 144.775512, 13.473479 ], [ 144.77545, 13.47357 ], [ 144.77543, 13.47369 ], [ 144.77543, 13.47391 ], [ 144.775435, 13.474057 ], [ 144.77544, 13.47418 ], [ 144.77544, 13.474236 ], [ 144.775456, 13.475567 ], [ 144.77547, 13.47575 ], [ 144.775033, 13.47575 ], [ 144.77463, 13.47575 ], [ 144.773725, 13.475763 ], [ 144.77329, 13.47577 ], [ 144.773048, 13.475772 ], [ 144.772322, 13.475778 ], [ 144.77208, 13.47578 ], [ 144.771673, 13.475784 ], [ 144.770455, 13.475797 ], [ 144.77025, 13.4758 ], [ 144.77005, 13.475804 ], [ 144.76977, 13.475809 ], [ 144.768929, 13.475824 ], [ 144.768646, 13.47583 ], [ 144.76859, 13.47583 ], [ 144.76859, 13.47602 ], [ 144.76859, 13.47659 ], [ 144.76859, 13.47678 ], [ 144.76875, 13.477254 ], [ 144.768759, 13.477323 ], [ 144.768906, 13.478379 ], [ 144.768877, 13.478864 ], [ 144.768703, 13.479491 ], [ 144.76925, 13.479541 ], [ 144.769306, 13.479618 ], [ 144.76943, 13.479787 ], [ 144.769647, 13.48006 ], [ 144.7699, 13.480244 ], [ 144.769906, 13.480376 ], [ 144.770498, 13.481155 ], [ 144.77171, 13.481772 ], [ 144.772259, 13.481892 ], [ 144.772222, 13.482138 ], [ 144.773969, 13.482264 ], [ 144.774063, 13.48225 ], [ 144.77523, 13.48219 ], [ 144.777216, 13.482229 ], [ 144.778592, 13.482261 ], [ 144.779243, 13.48169 ], [ 144.779669, 13.481795 ], [ 144.779669, 13.481711 ], [ 144.779713, 13.481711 ], [ 144.779705, 13.481361 ], [ 144.779696, 13.481001 ], [ 144.779677, 13.480915 ], [ 144.779659, 13.480834 ], [ 144.779655, 13.480413 ], [ 144.779653, 13.480201 ], [ 144.779653, 13.479901 ], [ 144.779641, 13.479686 ], [ 144.779647, 13.479662 ], [ 144.779737, 13.478957 ], [ 144.779936, 13.47721 ], [ 144.779959, 13.477074 ], [ 144.78005, 13.47656 ], [ 144.780054, 13.476511 ], [ 144.780069, 13.476364 ], [ 144.780074, 13.476316 ], [ 144.780108, 13.476126 ], [ 144.780214, 13.475559 ], [ 144.78025, 13.47537 ], [ 144.78025, 13.475348 ], [ 144.78025, 13.475282 ], [ 144.78025, 13.47526 ], [ 144.780254, 13.475227 ], [ 144.78026, 13.47518 ], [ 144.780272, 13.475131 ], [ 144.78028, 13.4751 ], [ 144.780284, 13.475084 ], [ 144.780298, 13.475038 ], [ 144.780304, 13.475023 ], [ 144.780313, 13.474992 ], [ 144.78032, 13.47497 ], [ 144.780355, 13.474905 ], [ 144.780371, 13.474877 ], [ 144.780386, 13.474847 ], [ 144.780433, 13.474759 ], [ 144.78045, 13.47473 ], [ 144.780463, 13.474708 ], [ 144.780501, 13.474644 ], [ 144.780515, 13.474623 ], [ 144.780674, 13.47436 ], [ 144.78082, 13.47412 ], [ 144.781171, 13.473586 ], [ 144.78134, 13.47333 ], [ 144.781348, 13.473316 ], [ 144.781371, 13.473276 ], [ 144.78138, 13.473263 ], [ 144.78139, 13.473246 ], [ 144.781419, 13.473196 ], [ 144.78143, 13.47318 ], [ 144.781449, 13.473152 ], [ 144.781508, 13.473067 ], [ 144.781528, 13.47304 ], [ 144.781536, 13.473028 ], [ 144.781561, 13.472991 ], [ 144.78157, 13.47298 ], [ 144.781689, 13.472798 ], [ 144.782048, 13.472253 ], [ 144.782168, 13.472072 ], [ 144.782198, 13.472025 ], [ 144.782289, 13.471886 ], [ 144.78232, 13.47184 ], [ 144.782486, 13.47156 ], [ 144.782532, 13.47151 ], [ 144.78281, 13.471041 ], [ 144.782863, 13.470952 ], [ 144.783021, 13.470685 ], [ 144.783075, 13.470597 ], [ 144.783101, 13.470553 ], [ 144.783178, 13.470422 ], [ 144.783205, 13.470379 ], [ 144.783224, 13.470347 ], [ 144.78328, 13.470251 ], [ 144.7833, 13.47022 ], [ 144.783371, 13.470108 ], [ 144.78348, 13.46994 ], [ 144.783581, 13.469772 ], [ 144.78365, 13.46966 ], [ 144.783681, 13.469611 ], [ 144.783777, 13.469467 ], [ 144.78381, 13.46942 ], [ 144.783842, 13.46937 ], [ 144.783938, 13.46922 ], [ 144.78397, 13.46917 ], [ 144.78398, 13.469156 ], [ 144.78401, 13.469114 ], [ 144.78402, 13.4691 ], [ 144.784156, 13.468895 ], [ 144.78416, 13.46889 ], [ 144.78424, 13.46874 ], [ 144.784532, 13.46826 ], [ 144.78466, 13.46805 ], [ 144.784677, 13.468023 ], [ 144.78472, 13.46796 ], [ 144.78473, 13.467943 ], [ 144.784747, 13.467916 ], [ 144.784763, 13.467888 ], [ 144.784813, 13.467807 ], [ 144.78483, 13.46778 ], [ 144.784929, 13.467619 ], [ 144.785229, 13.467139 ], [ 144.78533, 13.46698 ], [ 144.785365, 13.466921 ], [ 144.785473, 13.466747 ], [ 144.78551, 13.46669 ], [ 144.785553, 13.466624 ], [ 144.78557, 13.4666 ], [ 144.78565, 13.46644 ], [ 144.785657, 13.466414 ], [ 144.78568, 13.46634 ], [ 144.785742, 13.466125 ], [ 144.78575, 13.4661 ], [ 144.78577, 13.46593 ], [ 144.78577, 13.46566 ], [ 144.785783, 13.465458 ], [ 144.785798, 13.465236 ], [ 144.7858, 13.4652 ], [ 144.7858, 13.465172 ], [ 144.7858, 13.464983 ], [ 144.7858, 13.46492 ], [ 144.785803, 13.464839 ], [ 144.78581, 13.46471 ], [ 144.7858, 13.46461 ], [ 144.7858, 13.4646 ], [ 144.7858, 13.46452 ], [ 144.785796, 13.464502 ], [ 144.785784, 13.464448 ], [ 144.78578, 13.46443 ], [ 144.78576, 13.464355 ], [ 144.78573, 13.46424 ], [ 144.785697, 13.464135 ], [ 144.785675, 13.464062 ], [ 144.785665, 13.46403 ], [ 144.78564, 13.46395 ], [ 144.78563, 13.463936 ], [ 144.78561, 13.46391 ], [ 144.785551, 13.463835 ], [ 144.78543, 13.46368 ], [ 144.785367, 13.463617 ], [ 144.7853, 13.46355 ], [ 144.785237, 13.463484 ], [ 144.78509, 13.46333 ], [ 144.78505, 13.463287 ], [ 144.78499, 13.46322 ], [ 144.78482, 13.46305 ], [ 144.784753, 13.462977 ], [ 144.78471, 13.46293 ], [ 144.78469, 13.46282 ], [ 144.78469, 13.46256 ], [ 144.78468, 13.46238 ], [ 144.78461, 13.46222 ], [ 144.784512, 13.46209 ], [ 144.78449, 13.46206 ], [ 144.784476, 13.462038 ], [ 144.78442, 13.46195 ], [ 144.78436, 13.46182 ], [ 144.78437, 13.46173 ], [ 144.784324, 13.4617 ], [ 144.784186, 13.46161 ], [ 144.78414, 13.46158 ], [ 144.78416, 13.461545 ], [ 144.784165, 13.461536 ], [ 144.783975, 13.461368 ], [ 144.783928, 13.46139 ], [ 144.783913, 13.461398 ], [ 144.783742, 13.461448 ], [ 144.783647, 13.461495 ], [ 144.783452, 13.461658 ], [ 144.783056, 13.461715 ], [ 144.782945, 13.461558 ], [ 144.782615, 13.461492 ], [ 144.78177, 13.461322 ], [ 144.781322, 13.461258 ], [ 144.780382, 13.461696 ], [ 144.78002, 13.46173 ], [ 144.779094, 13.46197 ], [ 144.778547, 13.461632 ], [ 144.777707, 13.461171 ], [ 144.777491, 13.461293 ], [ 144.777279, 13.461264 ], [ 144.777043, 13.460579 ], [ 144.776956, 13.460551 ], [ 144.776326, 13.460273 ], [ 144.775181, 13.460964 ], [ 144.774929, 13.461124 ], [ 144.774311, 13.461108 ], [ 144.774273, 13.460403 ], [ 144.77413, 13.46027 ], [ 144.77407, 13.46033 ], [ 144.77401, 13.46028 ], [ 144.77394, 13.46028 ], [ 144.77383, 13.46028 ], [ 144.773803, 13.460281 ], [ 144.773395, 13.460299 ], [ 144.773259, 13.460306 ], [ 144.77316, 13.46031 ], [ 144.773124, 13.460313 ], [ 144.772723, 13.460348 ], [ 144.77259, 13.46036 ], [ 144.772348, 13.460339 ], [ 144.772503, 13.460743 ], [ 144.772961, 13.461075 ], [ 144.773265, 13.461296 ], [ 144.77329, 13.46141 ], [ 144.773304, 13.461492 ], [ 144.77335, 13.46176 ], [ 144.773437, 13.462077 ], [ 144.77349, 13.46227 ], [ 144.773541, 13.462485 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "956100", "GEOID10": "66010956100", "NAME10": "9561", "NAMELSAD10": "Census Tract 9561", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 14739352, "AWATER10": 249, "INTPTLAT10": "+13.4568218", "INTPTLON10": "+144.7260107" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.705491, 13.48054 ], [ 144.705554, 13.480484 ], [ 144.705648, 13.480337 ], [ 144.705652, 13.480232 ], [ 144.705635, 13.480103 ], [ 144.705528, 13.480057 ], [ 144.705505, 13.480047 ], [ 144.705397, 13.480079 ], [ 144.705306, 13.480103 ], [ 144.705328, 13.480164 ], [ 144.705334, 13.48018 ], [ 144.70532, 13.480278 ], [ 144.705247, 13.480344 ], [ 144.705198, 13.4804 ], [ 144.705264, 13.480481 ], [ 144.7054, 13.480529 ], [ 144.705491, 13.48054 ] ] ], [ [ [ 144.707788, 13.456799 ], [ 144.707666, 13.457608 ], [ 144.7076, 13.45822 ], [ 144.707435, 13.459076 ], [ 144.707345, 13.459724 ], [ 144.707556, 13.459889 ], [ 144.707681, 13.45994 ], [ 144.707764, 13.459985 ], [ 144.707865, 13.459989 ], [ 144.707955, 13.460014 ], [ 144.708024, 13.460076 ], [ 144.708107, 13.460127 ], [ 144.708241, 13.460235 ], [ 144.708402, 13.460366 ], [ 144.708938, 13.461054 ], [ 144.709214, 13.461595 ], [ 144.709319, 13.462109 ], [ 144.709189, 13.462375 ], [ 144.709189, 13.462739 ], [ 144.708915, 13.463153 ], [ 144.708668, 13.463291 ], [ 144.708518, 13.463563 ], [ 144.708486, 13.463649 ], [ 144.708425, 13.463673 ], [ 144.708279, 13.463696 ], [ 144.708158, 13.463757 ], [ 144.708029, 13.463902 ], [ 144.707897, 13.46393 ], [ 144.707782, 13.464014 ], [ 144.707767, 13.464239 ], [ 144.707826, 13.464399 ], [ 144.707873, 13.46463 ], [ 144.707821, 13.464808 ], [ 144.7076, 13.46497 ], [ 144.70752, 13.465107 ], [ 144.706765, 13.466895 ], [ 144.706639, 13.467593 ], [ 144.706617, 13.467718 ], [ 144.70658, 13.46843 ], [ 144.706667, 13.468709 ], [ 144.706815, 13.468844 ], [ 144.706962, 13.468903 ], [ 144.707205, 13.469064 ], [ 144.707275, 13.469385 ], [ 144.707268, 13.469404 ], [ 144.707324, 13.469961 ], [ 144.707334, 13.47006 ], [ 144.707401, 13.47023 ], [ 144.707387, 13.470443 ], [ 144.70731, 13.47064 ], [ 144.707282, 13.470792 ], [ 144.707204, 13.470935 ], [ 144.707133, 13.470975 ], [ 144.707019, 13.471105 ], [ 144.706927, 13.471252 ], [ 144.706656, 13.471702 ], [ 144.706678, 13.471725 ], [ 144.706716, 13.471874 ], [ 144.706705, 13.472017 ], [ 144.706675, 13.472117 ], [ 144.70667, 13.472144 ], [ 144.706659, 13.472218 ], [ 144.706683, 13.472256 ], [ 144.706702, 13.472338 ], [ 144.706667, 13.472409 ], [ 144.706656, 13.472476 ], [ 144.706676, 13.472519 ], [ 144.706685, 13.4726 ], [ 144.706635, 13.472643 ], [ 144.706615, 13.472719 ], [ 144.706639, 13.472782 ], [ 144.706682, 13.472849 ], [ 144.706691, 13.472911 ], [ 144.706671, 13.472968 ], [ 144.70668, 13.473055 ], [ 144.706704, 13.473122 ], [ 144.706753, 13.47316 ], [ 144.706761, 13.473266 ], [ 144.706787, 13.47337 ], [ 144.706813, 13.473477 ], [ 144.706829, 13.473639 ], [ 144.706774, 13.473706 ], [ 144.706725, 13.473777 ], [ 144.706695, 13.473848 ], [ 144.706708, 13.473949 ], [ 144.706713, 13.474026 ], [ 144.706658, 13.474087 ], [ 144.706604, 13.474178 ], [ 144.706588, 13.474249 ], [ 144.706567, 13.474388 ], [ 144.706566, 13.474488 ], [ 144.706622, 13.474802 ], [ 144.706627, 13.474828 ], [ 144.706647, 13.474986 ], [ 144.706666, 13.475101 ], [ 144.706685, 13.475168 ], [ 144.706738, 13.475245 ], [ 144.706746, 13.475331 ], [ 144.706725, 13.475551 ], [ 144.706753, 13.475647 ], [ 144.70676, 13.475725 ], [ 144.706766, 13.4758 ], [ 144.706742, 13.475852 ], [ 144.706731, 13.475929 ], [ 144.706769, 13.476001 ], [ 144.706803, 13.476116 ], [ 144.706825, 13.476143 ], [ 144.706899, 13.476236 ], [ 144.706998, 13.476333 ], [ 144.707031, 13.47651 ], [ 144.707079, 13.476587 ], [ 144.707117, 13.476664 ], [ 144.707141, 13.476741 ], [ 144.707218, 13.476813 ], [ 144.707262, 13.476813 ], [ 144.707326, 13.476843 ], [ 144.70736, 13.476867 ], [ 144.707389, 13.47691 ], [ 144.707442, 13.476906 ], [ 144.707501, 13.476892 ], [ 144.70754, 13.476869 ], [ 144.707609, 13.476855 ], [ 144.707706, 13.476814 ], [ 144.707776, 13.476785 ], [ 144.707859, 13.476761 ], [ 144.707938, 13.476729 ], [ 144.708006, 13.476696 ], [ 144.70813, 13.476684 ], [ 144.708187, 13.476678 ], [ 144.70829, 13.476646 ], [ 144.708393, 13.476623 ], [ 144.7084, 13.476619 ], [ 144.708476, 13.476581 ], [ 144.708526, 13.476509 ], [ 144.708512, 13.476442 ], [ 144.708406, 13.476284 ], [ 144.708343, 13.476202 ], [ 144.708315, 13.476091 ], [ 144.708322, 13.47591 ], [ 144.708324, 13.475903 ], [ 144.708352, 13.475838 ], [ 144.708348, 13.475695 ], [ 144.708365, 13.475632 ], [ 144.708373, 13.475599 ], [ 144.708428, 13.475495 ], [ 144.708601, 13.475296 ], [ 144.708704, 13.475215 ], [ 144.708967, 13.475045 ], [ 144.709105, 13.474961 ], [ 144.70921, 13.474886 ], [ 144.709287, 13.474833 ], [ 144.70938, 13.474801 ], [ 144.709705, 13.474588 ], [ 144.709803, 13.474541 ], [ 144.709886, 13.474509 ], [ 144.709964, 13.47449 ], [ 144.710141, 13.47442 ], [ 144.710185, 13.474445 ], [ 144.710219, 13.474431 ], [ 144.710264, 13.474378 ], [ 144.710323, 13.474341 ], [ 144.710362, 13.474298 ], [ 144.710377, 13.474265 ], [ 144.710406, 13.474246 ], [ 144.710475, 13.474237 ], [ 144.710529, 13.474209 ], [ 144.710612, 13.474181 ], [ 144.710764, 13.474182 ], [ 144.710823, 13.474149 ], [ 144.710916, 13.474131 ], [ 144.710969, 13.474136 ], [ 144.711006, 13.474103 ], [ 144.711065, 13.474094 ], [ 144.711119, 13.474066 ], [ 144.711212, 13.474047 ], [ 144.711285, 13.474048 ], [ 144.711413, 13.474016 ], [ 144.71153, 13.473998 ], [ 144.711751, 13.473938 ], [ 144.711858, 13.473934 ], [ 144.711956, 13.473916 ], [ 144.712049, 13.473888 ], [ 144.712162, 13.473865 ], [ 144.712255, 13.473851 ], [ 144.712323, 13.473819 ], [ 144.712376, 13.473817 ], [ 144.712441, 13.473815 ], [ 144.712558, 13.473825 ], [ 144.712895, 13.473833 ], [ 144.713058, 13.473849 ], [ 144.713161, 13.473812 ], [ 144.713274, 13.473722 ], [ 144.713358, 13.473627 ], [ 144.713383, 13.473544 ], [ 144.713413, 13.473604 ], [ 144.713485, 13.473748 ], [ 144.713526, 13.473737 ], [ 144.713592, 13.47372 ], [ 144.713685, 13.473745 ], [ 144.713687, 13.473744 ], [ 144.713792, 13.473736 ], [ 144.713973, 13.473671 ], [ 144.714067, 13.473638 ], [ 144.714145, 13.473668 ], [ 144.714305, 13.473746 ], [ 144.714393, 13.473747 ], [ 144.714594, 13.473672 ], [ 144.71481, 13.473607 ], [ 144.7149, 13.473593 ], [ 144.715023, 13.473551 ], [ 144.71515, 13.473519 ], [ 144.715287, 13.473506 ], [ 144.715404, 13.473488 ], [ 144.715844, 13.473478 ], [ 144.715967, 13.473431 ], [ 144.716016, 13.473417 ], [ 144.716157, 13.473433 ], [ 144.716216, 13.473462 ], [ 144.716289, 13.473486 ], [ 144.716352, 13.473497 ], [ 144.71647, 13.473388 ], [ 144.716559, 13.473355 ], [ 144.716617, 13.473356 ], [ 144.716666, 13.47338 ], [ 144.716692, 13.473438 ], [ 144.71678, 13.473467 ], [ 144.716848, 13.473463 ], [ 144.716936, 13.473464 ], [ 144.717044, 13.473489 ], [ 144.71718, 13.473514 ], [ 144.717375, 13.473631 ], [ 144.717462, 13.473684 ], [ 144.717811, 13.47394 ], [ 144.717986, 13.47408 ], [ 144.718086, 13.474152 ], [ 144.718127, 13.474182 ], [ 144.718277, 13.474313 ], [ 144.718442, 13.4744 ], [ 144.718617, 13.474502 ], [ 144.718858, 13.474668 ], [ 144.719066, 13.474812 ], [ 144.719241, 13.474914 ], [ 144.719294, 13.474929 ], [ 144.719373, 13.474939 ], [ 144.719446, 13.47494 ], [ 144.71948, 13.474931 ], [ 144.719524, 13.474926 ], [ 144.719582, 13.474951 ], [ 144.71966, 13.474995 ], [ 144.719753, 13.475019 ], [ 144.719952, 13.475117 ], [ 144.720098, 13.475195 ], [ 144.720151, 13.475238 ], [ 144.720209, 13.475329 ], [ 144.720248, 13.475363 ], [ 144.720287, 13.475359 ], [ 144.720307, 13.475349 ], [ 144.720356, 13.47535 ], [ 144.720409, 13.475374 ], [ 144.720613, 13.475539 ], [ 144.720695, 13.475645 ], [ 144.720802, 13.475722 ], [ 144.720933, 13.4758 ], [ 144.721022, 13.475863 ], [ 144.721237, 13.475922 ], [ 144.721248, 13.475923 ], [ 144.721279, 13.475928 ], [ 144.721417, 13.475991 ], [ 144.721655, 13.476117 ], [ 144.721815, 13.476224 ], [ 144.721893, 13.476296 ], [ 144.721995, 13.476383 ], [ 144.722038, 13.476404 ], [ 144.722063, 13.476417 ], [ 144.722141, 13.476442 ], [ 144.722214, 13.476447 ], [ 144.722302, 13.476486 ], [ 144.722379, 13.47653 ], [ 144.722428, 13.476588 ], [ 144.722471, 13.476674 ], [ 144.722524, 13.476761 ], [ 144.722582, 13.476833 ], [ 144.722669, 13.476925 ], [ 144.722761, 13.476983 ], [ 144.722802, 13.477017 ], [ 144.722816, 13.477113 ], [ 144.722849, 13.477194 ], [ 144.722917, 13.477271 ], [ 144.722941, 13.477353 ], [ 144.72296, 13.477401 ], [ 144.722969, 13.477406 ], [ 144.723023, 13.477435 ], [ 144.723087, 13.477412 ], [ 144.723204, 13.477441 ], [ 144.723238, 13.477442 ], [ 144.723272, 13.477475 ], [ 144.723408, 13.477529 ], [ 144.723506, 13.477554 ], [ 144.723574, 13.47756 ], [ 144.723657, 13.477589 ], [ 144.723773, 13.477638 ], [ 144.723982, 13.477759 ], [ 144.724245, 13.477924 ], [ 144.724327, 13.477963 ], [ 144.724395, 13.478012 ], [ 144.724502, 13.478075 ], [ 144.724605, 13.4781 ], [ 144.724692, 13.478139 ], [ 144.724794, 13.478168 ], [ 144.724897, 13.478217 ], [ 144.725196, 13.478301 ], [ 144.725425, 13.478351 ], [ 144.725601, 13.478372 ], [ 144.725713, 13.478416 ], [ 144.725908, 13.478456 ], [ 144.726069, 13.478472 ], [ 144.726459, 13.478547 ], [ 144.726616, 13.478553 ], [ 144.727092, 13.478591 ], [ 144.7271, 13.478591 ], [ 144.727292, 13.478602 ], [ 144.727468, 13.478632 ], [ 144.727594, 13.478672 ], [ 144.727775, 13.478716 ], [ 144.727911, 13.478756 ], [ 144.72813, 13.478791 ], [ 144.728428, 13.478871 ], [ 144.728518, 13.478909 ], [ 144.728635, 13.478958 ], [ 144.729038, 13.478136 ], [ 144.72936, 13.478132 ], [ 144.729565, 13.47813 ], [ 144.729839, 13.478116 ], [ 144.7306, 13.47808 ], [ 144.730664, 13.478078 ], [ 144.73094, 13.47807 ], [ 144.731022, 13.47807 ], [ 144.731268, 13.47807 ], [ 144.73135, 13.47807 ], [ 144.731531, 13.478065 ], [ 144.731782, 13.478059 ], [ 144.731709, 13.477878 ], [ 144.731725, 13.477805 ], [ 144.731666, 13.477629 ], [ 144.731603, 13.477513 ], [ 144.73154, 13.477456 ], [ 144.73148, 13.477308 ], [ 144.731332, 13.477153 ], [ 144.731283, 13.477061 ], [ 144.731249, 13.476857 ], [ 144.731297, 13.476751 ], [ 144.731435, 13.476496 ], [ 144.731419, 13.476374 ], [ 144.731318, 13.476283 ], [ 144.73121, 13.476238 ], [ 144.731149, 13.476168 ], [ 144.731141, 13.476113 ], [ 144.731297, 13.476039 ], [ 144.731349, 13.476039 ], [ 144.73155, 13.475985 ], [ 144.731791, 13.475969 ], [ 144.731993, 13.476011 ], [ 144.732226, 13.47599 ], [ 144.732309, 13.475951 ], [ 144.732358, 13.47587 ], [ 144.732358, 13.475782 ], [ 144.732252, 13.475443 ], [ 144.732215, 13.475341 ], [ 144.732181, 13.475273 ], [ 144.732186, 13.4752 ], [ 144.73223, 13.475105 ], [ 144.732296, 13.475021 ], [ 144.732386, 13.474948 ], [ 144.732867, 13.474416 ], [ 144.733164, 13.474215 ], [ 144.73336, 13.474085 ], [ 144.7337, 13.473863 ], [ 144.733929, 13.473801 ], [ 144.734093, 13.473724 ], [ 144.734425, 13.473652 ], [ 144.734545, 13.473656 ], [ 144.734638, 13.473649 ], [ 144.734858, 13.473639 ], [ 144.73514, 13.473571 ], [ 144.735191, 13.473518 ], [ 144.735342, 13.473336 ], [ 144.735434, 13.473215 ], [ 144.73545, 13.473092 ], [ 144.735508, 13.473019 ], [ 144.735818, 13.472751 ], [ 144.73601, 13.472658 ], [ 144.736132, 13.472569 ], [ 144.736164, 13.472545 ], [ 144.736294, 13.472515 ], [ 144.736439, 13.472503 ], [ 144.73657, 13.472446 ], [ 144.736617, 13.472346 ], [ 144.736701, 13.472199 ], [ 144.736755, 13.472107 ], [ 144.736762, 13.472071 ], [ 144.736861, 13.47199 ], [ 144.736992, 13.471914 ], [ 144.737227, 13.471853 ], [ 144.737363, 13.471808 ], [ 144.737509, 13.471753 ], [ 144.737644, 13.471684 ], [ 144.737775, 13.471552 ], [ 144.737928, 13.471438 ], [ 144.737991, 13.471325 ], [ 144.738065, 13.471212 ], [ 144.738168, 13.470993 ], [ 144.738267, 13.470847 ], [ 144.738425, 13.470728 ], [ 144.738895, 13.470547 ], [ 144.739524, 13.470417 ], [ 144.739615, 13.470343 ], [ 144.740447, 13.469354 ], [ 144.740505, 13.46931 ], [ 144.740787, 13.469152 ], [ 144.741106, 13.468997 ], [ 144.741558, 13.468781 ], [ 144.741719, 13.46852 ], [ 144.741821, 13.468135 ], [ 144.741814, 13.467868 ], [ 144.741741, 13.467488 ], [ 144.741704, 13.467225 ], [ 144.74174, 13.467101 ], [ 144.741768, 13.467014 ], [ 144.741969, 13.466636 ], [ 144.742173, 13.465549 ], [ 144.742118, 13.465306 ], [ 144.741961, 13.464991 ], [ 144.741889, 13.464704 ], [ 144.741744, 13.464305 ], [ 144.741736, 13.464138 ], [ 144.741622, 13.463941 ], [ 144.741508, 13.46356 ], [ 144.741474, 13.463485 ], [ 144.741354, 13.463115 ], [ 144.741119, 13.462565 ], [ 144.740774, 13.462173 ], [ 144.740603, 13.462112 ], [ 144.740443, 13.46211 ], [ 144.740205, 13.462138 ], [ 144.739964, 13.462166 ], [ 144.739794, 13.462033 ], [ 144.739697, 13.461996 ], [ 144.73957, 13.461995 ], [ 144.739241, 13.461959 ], [ 144.738939, 13.461701 ], [ 144.738746, 13.461423 ], [ 144.738771, 13.461291 ], [ 144.738895, 13.461077 ], [ 144.739067, 13.460959 ], [ 144.739142, 13.460887 ], [ 144.739107, 13.460837 ], [ 144.738965, 13.460845 ], [ 144.738782, 13.460883 ], [ 144.738543, 13.460833 ], [ 144.738322, 13.460723 ], [ 144.738287, 13.460663 ], [ 144.738299, 13.460579 ], [ 144.738332, 13.460431 ], [ 144.738297, 13.460216 ], [ 144.738256, 13.460027 ], [ 144.738259, 13.45975 ], [ 144.738272, 13.459655 ], [ 144.738421, 13.459427 ], [ 144.738539, 13.458589 ], [ 144.739506, 13.457433 ], [ 144.73995, 13.456727 ], [ 144.740387, 13.456034 ], [ 144.74099, 13.45505 ], [ 144.746196, 13.446926 ], [ 144.744547, 13.445906 ], [ 144.743136, 13.445031 ], [ 144.745288, 13.44498 ], [ 144.74618, 13.444835 ], [ 144.746583, 13.444859 ], [ 144.747542, 13.444751 ], [ 144.747985, 13.444652 ], [ 144.748129, 13.444301 ], [ 144.74816, 13.442939 ], [ 144.748417, 13.44094 ], [ 144.748397, 13.440363 ], [ 144.748277, 13.43484 ], [ 144.747955, 13.434529 ], [ 144.747686, 13.434499 ], [ 144.747435, 13.434655 ], [ 144.747416, 13.435451 ], [ 144.747438, 13.435585 ], [ 144.747357, 13.43563 ], [ 144.746644, 13.435766 ], [ 144.746417, 13.435733 ], [ 144.74621, 13.435899 ], [ 144.74569, 13.435953 ], [ 144.745181, 13.435805 ], [ 144.744874, 13.435663 ], [ 144.744623, 13.435505 ], [ 144.744397, 13.435523 ], [ 144.744263, 13.435605 ], [ 144.743893, 13.436271 ], [ 144.743697, 13.43646 ], [ 144.743538, 13.436466 ], [ 144.743486, 13.436453 ], [ 144.743367, 13.436233 ], [ 144.743265, 13.436075 ], [ 144.74298, 13.435915 ], [ 144.7428, 13.435611 ], [ 144.742769, 13.435241 ], [ 144.742737, 13.43505 ], [ 144.742543, 13.434981 ], [ 144.742238, 13.435583 ], [ 144.742018, 13.43583 ], [ 144.741593, 13.435814 ], [ 144.74125, 13.435443 ], [ 144.740939, 13.435068 ], [ 144.740839, 13.435015 ], [ 144.740488, 13.435044 ], [ 144.740404, 13.435179 ], [ 144.740633, 13.435552 ], [ 144.740626, 13.435908 ], [ 144.74043, 13.435962 ], [ 144.740212, 13.435837 ], [ 144.740042, 13.435699 ], [ 144.739943, 13.4356 ], [ 144.739775, 13.435721 ], [ 144.739709, 13.436149 ], [ 144.739903, 13.43641 ], [ 144.739829, 13.436671 ], [ 144.739519, 13.436958 ], [ 144.739096, 13.437031 ], [ 144.738767, 13.43687 ], [ 144.738505, 13.43672 ], [ 144.738306, 13.43683 ], [ 144.738089, 13.437316 ], [ 144.737921, 13.437776 ], [ 144.737899, 13.43799 ], [ 144.737689, 13.43808 ], [ 144.737241, 13.438032 ], [ 144.737044, 13.438033 ], [ 144.736875, 13.438266 ], [ 144.736977, 13.438481 ], [ 144.737277, 13.438668 ], [ 144.737329, 13.43876 ], [ 144.737263, 13.439137 ], [ 144.73757, 13.439601 ], [ 144.737759, 13.440135 ], [ 144.73773, 13.440427 ], [ 144.737496, 13.440408 ], [ 144.737045, 13.440125 ], [ 144.736778, 13.439922 ], [ 144.736419, 13.439942 ], [ 144.736239, 13.44002 ], [ 144.736061, 13.439952 ], [ 144.735921, 13.43991 ], [ 144.735721, 13.440243 ], [ 144.73582, 13.440756 ], [ 144.735848, 13.441124 ], [ 144.735502, 13.441335 ], [ 144.735109, 13.441305 ], [ 144.734895, 13.44105 ], [ 144.73483, 13.440707 ], [ 144.734874, 13.440462 ], [ 144.734992, 13.440242 ], [ 144.734971, 13.440075 ], [ 144.734879, 13.439952 ], [ 144.734495, 13.440046 ], [ 144.734116, 13.440149 ], [ 144.733696, 13.440152 ], [ 144.733561, 13.440145 ], [ 144.733366, 13.440114 ], [ 144.733068, 13.44022 ], [ 144.733024, 13.440404 ], [ 144.733092, 13.440717 ], [ 144.733048, 13.440826 ], [ 144.732751, 13.440998 ], [ 144.732118, 13.44102 ], [ 144.73168, 13.441204 ], [ 144.731446, 13.441789 ], [ 144.731584, 13.441924 ], [ 144.731526, 13.442048 ], [ 144.731149, 13.442137 ], [ 144.730826, 13.442536 ], [ 144.730319, 13.442618 ], [ 144.729731, 13.442985 ], [ 144.729212, 13.443555 ], [ 144.729237, 13.443876 ], [ 144.729314, 13.444098 ], [ 144.729127, 13.444124 ], [ 144.728809, 13.444002 ], [ 144.728635, 13.444153 ], [ 144.728417, 13.444472 ], [ 144.72832, 13.444449 ], [ 144.728234, 13.444177 ], [ 144.728142, 13.443772 ], [ 144.728122, 13.443407 ], [ 144.72844, 13.443288 ], [ 144.728682, 13.443335 ], [ 144.728921, 13.443243 ], [ 144.728861, 13.443003 ], [ 144.728581, 13.442709 ], [ 144.728168, 13.442711 ], [ 144.727895, 13.4432 ], [ 144.727746, 13.443445 ], [ 144.727544, 13.443536 ], [ 144.727457, 13.443345 ], [ 144.727426, 13.443093 ], [ 144.727191, 13.442976 ], [ 144.726701, 13.442928 ], [ 144.726325, 13.442972 ], [ 144.725704, 13.443302 ], [ 144.725368, 13.443481 ], [ 144.724978, 13.44341 ], [ 144.7248, 13.443412 ], [ 144.724627, 13.443433 ], [ 144.724426, 13.443166 ], [ 144.72428, 13.443117 ], [ 144.72414, 13.443029 ], [ 144.724138, 13.442865 ], [ 144.724152, 13.442671 ], [ 144.723946, 13.442489 ], [ 144.723438, 13.442468 ], [ 144.723227, 13.442261 ], [ 144.723275, 13.442078 ], [ 144.723076, 13.44184 ], [ 144.722687, 13.441592 ], [ 144.722207, 13.441539 ], [ 144.722044, 13.441479 ], [ 144.721961, 13.441191 ], [ 144.721633, 13.440909 ], [ 144.721188, 13.440747 ], [ 144.720724, 13.440622 ], [ 144.720674, 13.44058 ], [ 144.720632, 13.440393 ], [ 144.720531, 13.440281 ], [ 144.720206, 13.440242 ], [ 144.72013, 13.440334 ], [ 144.720154, 13.440554 ], [ 144.720089, 13.440756 ], [ 144.719735, 13.440653 ], [ 144.71957, 13.440472 ], [ 144.719364, 13.440455 ], [ 144.719186, 13.440281 ], [ 144.718954, 13.44032 ], [ 144.718824, 13.440414 ], [ 144.718754, 13.440266 ], [ 144.71852, 13.440393 ], [ 144.718412, 13.440371 ], [ 144.718083, 13.440121 ], [ 144.717837, 13.440001 ], [ 144.717528, 13.440108 ], [ 144.717354, 13.440071 ], [ 144.717183, 13.440102 ], [ 144.717063, 13.440112 ], [ 144.716699, 13.440012 ], [ 144.716516, 13.439993 ], [ 144.716393, 13.439926 ], [ 144.716215, 13.439614 ], [ 144.715717, 13.439222 ], [ 144.715223, 13.438867 ], [ 144.714782, 13.438435 ], [ 144.714637, 13.437971 ], [ 144.714457, 13.437932 ], [ 144.714406, 13.437763 ], [ 144.714198, 13.437733 ], [ 144.714116, 13.437489 ], [ 144.714041, 13.437451 ], [ 144.713824, 13.437464 ], [ 144.713631, 13.437169 ], [ 144.713556, 13.437123 ], [ 144.713519, 13.437101 ], [ 144.713563, 13.436916 ], [ 144.713189, 13.436327 ], [ 144.713177, 13.436245 ], [ 144.712574, 13.435624 ], [ 144.712413, 13.435407 ], [ 144.712299, 13.435327 ], [ 144.712007, 13.435258 ], [ 144.711751, 13.435089 ], [ 144.71165, 13.435016 ], [ 144.711541, 13.434954 ], [ 144.71132, 13.43496 ], [ 144.71112, 13.43512 ], [ 144.71101, 13.43529 ], [ 144.71094, 13.43542 ], [ 144.71082, 13.43557 ], [ 144.710786, 13.435709 ], [ 144.710736, 13.436078 ], [ 144.710813, 13.436311 ], [ 144.710828, 13.436424 ], [ 144.710928, 13.436645 ], [ 144.710897, 13.436826 ], [ 144.710698, 13.437941 ], [ 144.709958, 13.44254 ], [ 144.709834, 13.443354 ], [ 144.709697, 13.444154 ], [ 144.709627, 13.444566 ], [ 144.709428, 13.445865 ], [ 144.709348, 13.446348 ], [ 144.709298, 13.446702 ], [ 144.709039, 13.448551 ], [ 144.708978, 13.448851 ], [ 144.70885, 13.449479 ], [ 144.708729, 13.450378 ], [ 144.708369, 13.453075 ], [ 144.708205, 13.454008 ], [ 144.707995, 13.455388 ], [ 144.707966, 13.455641 ], [ 144.707796, 13.456749 ], [ 144.707788, 13.456799 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "956200", "GEOID10": "66010956200", "NAME10": "9562", "NAMELSAD10": "Census Tract 9562", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 13209330, "AWATER10": 0, "INTPTLAT10": "+13.4003471", "INTPTLON10": "+144.6894828" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.678327, 13.416259 ], [ 144.6784, 13.41643 ], [ 144.67841, 13.41658 ], [ 144.6784, 13.41674 ], [ 144.67832, 13.41703 ], [ 144.678187, 13.417427 ], [ 144.67816, 13.41751 ], [ 144.67799, 13.41805 ], [ 144.67789, 13.41838 ], [ 144.677876, 13.418415 ], [ 144.67777, 13.4187 ], [ 144.67758, 13.41913 ], [ 144.677409, 13.419461 ], [ 144.6774, 13.41948 ], [ 144.677194, 13.419777 ], [ 144.67717, 13.41981 ], [ 144.67715, 13.41984 ], [ 144.677099, 13.419908 ], [ 144.677075, 13.419941 ], [ 144.677041, 13.419985 ], [ 144.676941, 13.42012 ], [ 144.67692, 13.42015 ], [ 144.676907, 13.420165 ], [ 144.676737, 13.42036 ], [ 144.67666, 13.42045 ], [ 144.67638, 13.4207 ], [ 144.676155, 13.420872 ], [ 144.67595, 13.42103 ], [ 144.675936, 13.42104 ], [ 144.675894, 13.42107 ], [ 144.67588, 13.42108 ], [ 144.675835, 13.42119 ], [ 144.67576, 13.42138 ], [ 144.675737, 13.421532 ], [ 144.67572, 13.42165 ], [ 144.675892, 13.4219 ], [ 144.67594, 13.42197 ], [ 144.676459, 13.422613 ], [ 144.67665, 13.42285 ], [ 144.676752, 13.422979 ], [ 144.677058, 13.42337 ], [ 144.67716, 13.4235 ], [ 144.67731, 13.423695 ], [ 144.6776, 13.42407 ], [ 144.677738, 13.424237 ], [ 144.67798, 13.42388 ], [ 144.678036, 13.423637 ], [ 144.678053, 13.423426 ], [ 144.678, 13.423204 ], [ 144.677985, 13.423007 ], [ 144.678096, 13.422819 ], [ 144.678567, 13.422542 ], [ 144.678737, 13.422521 ], [ 144.678805, 13.422428 ], [ 144.678807, 13.422252 ], [ 144.678779, 13.422029 ], [ 144.678907, 13.421831 ], [ 144.678986, 13.421751 ], [ 144.679302, 13.421563 ], [ 144.679446, 13.421412 ], [ 144.679603, 13.421259 ], [ 144.679872, 13.421165 ], [ 144.680024, 13.421059 ], [ 144.68011, 13.420999 ], [ 144.680133, 13.420907 ], [ 144.680093, 13.42084 ], [ 144.680116, 13.420724 ], [ 144.680188, 13.420615 ], [ 144.680267, 13.420532 ], [ 144.68057, 13.420359 ], [ 144.680792, 13.420075 ], [ 144.680845, 13.41996 ], [ 144.680763, 13.419815 ], [ 144.680778, 13.419596 ], [ 144.680897, 13.419348 ], [ 144.681055, 13.418996 ], [ 144.681069, 13.418799 ], [ 144.681036, 13.418665 ], [ 144.68089, 13.418329 ], [ 144.681168, 13.417784 ], [ 144.68149, 13.417153 ], [ 144.68168, 13.416717 ], [ 144.681688, 13.416601 ], [ 144.681774, 13.416502 ], [ 144.681862, 13.416418 ], [ 144.681887, 13.416267 ], [ 144.681801, 13.416098 ], [ 144.681659, 13.415962 ], [ 144.682095, 13.415473 ], [ 144.68243, 13.415012 ], [ 144.682606, 13.41446 ], [ 144.682912, 13.414202 ], [ 144.683177, 13.414321 ], [ 144.683418, 13.414299 ], [ 144.683834, 13.414306 ], [ 144.684143, 13.414533 ], [ 144.684506, 13.414532 ], [ 144.684778, 13.414399 ], [ 144.684871, 13.414351 ], [ 144.684872, 13.414203 ], [ 144.684873, 13.414059 ], [ 144.685064, 13.413867 ], [ 144.685239, 13.413832 ], [ 144.685438, 13.413663 ], [ 144.6855, 13.41347 ], [ 144.68565, 13.413394 ], [ 144.686092, 13.41344 ], [ 144.686221, 13.413405 ], [ 144.686323, 13.41333 ], [ 144.686685, 13.413387 ], [ 144.686796, 13.413343 ], [ 144.686815, 13.413258 ], [ 144.686794, 13.413131 ], [ 144.686897, 13.413073 ], [ 144.687023, 13.413129 ], [ 144.687132, 13.413234 ], [ 144.687182, 13.413297 ], [ 144.687379, 13.413284 ], [ 144.687467, 13.41321 ], [ 144.687648, 13.413059 ], [ 144.687879, 13.412881 ], [ 144.68797, 13.41276 ], [ 144.687872, 13.41262 ], [ 144.687956, 13.412527 ], [ 144.688059, 13.412408 ], [ 144.688082, 13.412357 ], [ 144.688018, 13.412262 ], [ 144.688034, 13.412197 ], [ 144.688204, 13.412079 ], [ 144.688299, 13.412064 ], [ 144.688357, 13.411856 ], [ 144.688195, 13.411504 ], [ 144.688131, 13.411458 ], [ 144.688164, 13.411373 ], [ 144.688746, 13.411172 ], [ 144.688782, 13.411109 ], [ 144.688742, 13.410947 ], [ 144.688779, 13.410911 ], [ 144.689215, 13.410915 ], [ 144.689302, 13.410939 ], [ 144.68937, 13.41102 ], [ 144.689356, 13.411061 ], [ 144.689125, 13.411184 ], [ 144.689083, 13.411256 ], [ 144.689088, 13.411305 ], [ 144.689165, 13.411373 ], [ 144.689294, 13.41137 ], [ 144.689473, 13.411309 ], [ 144.689598, 13.411234 ], [ 144.689764, 13.411101 ], [ 144.690211, 13.410983 ], [ 144.690366, 13.410998 ], [ 144.690564, 13.411045 ], [ 144.690712, 13.410934 ], [ 144.690886, 13.411007 ], [ 144.690987, 13.410986 ], [ 144.691066, 13.410826 ], [ 144.691104, 13.410655 ], [ 144.691284, 13.410564 ], [ 144.69192, 13.410432 ], [ 144.692273, 13.410489 ], [ 144.692368, 13.410625 ], [ 144.692508, 13.410927 ], [ 144.692856, 13.411185 ], [ 144.692979, 13.411178 ], [ 144.692979, 13.41103 ], [ 144.693052, 13.410936 ], [ 144.693243, 13.411029 ], [ 144.693285, 13.411161 ], [ 144.693314, 13.411287 ], [ 144.69336, 13.411422 ], [ 144.693341, 13.411585 ], [ 144.693398, 13.411686 ], [ 144.693523, 13.411732 ], [ 144.693595, 13.411671 ], [ 144.69368, 13.411556 ], [ 144.693779, 13.411507 ], [ 144.693918, 13.411559 ], [ 144.694021, 13.411643 ], [ 144.694113, 13.411766 ], [ 144.694296, 13.411934 ], [ 144.694566, 13.411995 ], [ 144.694657, 13.412114 ], [ 144.695005, 13.41215 ], [ 144.695225, 13.412193 ], [ 144.695465, 13.412244 ], [ 144.695943, 13.412732 ], [ 144.696034, 13.412862 ], [ 144.696082, 13.413039 ], [ 144.696179, 13.413076 ], [ 144.696471, 13.413059 ], [ 144.696617, 13.413099 ], [ 144.696889, 13.413076 ], [ 144.696982, 13.413118 ], [ 144.69714, 13.413438 ], [ 144.697232, 13.413537 ], [ 144.69987, 13.415423 ], [ 144.700005, 13.415441 ], [ 144.700105, 13.415451 ], [ 144.700163, 13.415472 ], [ 144.700181, 13.415508 ], [ 144.700181, 13.415555 ], [ 144.70018, 13.415633 ], [ 144.700196, 13.415675 ], [ 144.700222, 13.415711 ], [ 144.700319, 13.415746 ], [ 144.700361, 13.415771 ], [ 144.700384, 13.415832 ], [ 144.700783, 13.416632 ], [ 144.7007, 13.416964 ], [ 144.700969, 13.417334 ], [ 144.701206, 13.417808 ], [ 144.701223, 13.418083 ], [ 144.701202, 13.418271 ], [ 144.704468, 13.413587 ], [ 144.717703, 13.394605 ], [ 144.720186, 13.391045 ], [ 144.720702, 13.390506 ], [ 144.721331, 13.389848 ], [ 144.720746, 13.389381 ], [ 144.720955, 13.389202 ], [ 144.7213, 13.38891 ], [ 144.721579, 13.388662 ], [ 144.72165, 13.3886 ], [ 144.721782, 13.388477 ], [ 144.721604, 13.388262 ], [ 144.721072, 13.387617 ], [ 144.720895, 13.387403 ], [ 144.720844, 13.3874 ], [ 144.72084, 13.3874 ], [ 144.72071, 13.38733 ], [ 144.720666, 13.387307 ], [ 144.720597, 13.38727 ], [ 144.72054, 13.38724 ], [ 144.720414, 13.387127 ], [ 144.720356, 13.387075 ], [ 144.719092, 13.387263 ], [ 144.7153, 13.387829 ], [ 144.714037, 13.388018 ], [ 144.713335, 13.388013 ], [ 144.712796, 13.38801 ], [ 144.711232, 13.388017 ], [ 144.710531, 13.388021 ], [ 144.708685, 13.38803 ], [ 144.708683, 13.388635 ], [ 144.70867, 13.394004 ], [ 144.706682, 13.394017 ], [ 144.704231, 13.394035 ], [ 144.703764, 13.394034 ], [ 144.702363, 13.394031 ], [ 144.701897, 13.39403 ], [ 144.700484, 13.394034 ], [ 144.696248, 13.394048 ], [ 144.694836, 13.394053 ], [ 144.69407, 13.394078 ], [ 144.692162, 13.394141 ], [ 144.691971, 13.393844 ], [ 144.691705, 13.393586 ], [ 144.689578, 13.391315 ], [ 144.689173, 13.390463 ], [ 144.688937, 13.388386 ], [ 144.689055, 13.387713 ], [ 144.688363, 13.386152 ], [ 144.68658, 13.387627 ], [ 144.686939, 13.388229 ], [ 144.68687, 13.38845 ], [ 144.687188, 13.389202 ], [ 144.68726, 13.38937 ], [ 144.687493, 13.389853 ], [ 144.68757, 13.39001 ], [ 144.68777, 13.39044 ], [ 144.68797, 13.39092 ], [ 144.688049, 13.391096 ], [ 144.685609, 13.391462 ], [ 144.685192, 13.389951 ], [ 144.683809, 13.388698 ], [ 144.683894, 13.388418 ], [ 144.68462, 13.386508 ], [ 144.68417, 13.38663 ], [ 144.6839, 13.3867 ], [ 144.68325, 13.38687 ], [ 144.68252, 13.38705 ], [ 144.682207, 13.387132 ], [ 144.68195, 13.3872 ], [ 144.68174, 13.38726 ], [ 144.68157, 13.38723 ], [ 144.68137, 13.38716 ], [ 144.68067, 13.38674 ], [ 144.68038, 13.3866 ], [ 144.68021, 13.38656 ], [ 144.68004, 13.38656 ], [ 144.680035, 13.38656 ], [ 144.67981, 13.38659 ], [ 144.6792, 13.38677 ], [ 144.678712, 13.3869 ], [ 144.6786, 13.38693 ], [ 144.678358, 13.386983 ], [ 144.67819, 13.38702 ], [ 144.67765, 13.38712 ], [ 144.677283, 13.387157 ], [ 144.67716, 13.38717 ], [ 144.676921, 13.387154 ], [ 144.676913, 13.387033 ], [ 144.676889, 13.38667 ], [ 144.676882, 13.386549 ], [ 144.675012, 13.384872 ], [ 144.674991, 13.384854 ], [ 144.675191, 13.384456 ], [ 144.674726, 13.383534 ], [ 144.673797, 13.383044 ], [ 144.673371, 13.383256 ], [ 144.671075, 13.382448 ], [ 144.670275, 13.38174 ], [ 144.669321, 13.381452 ], [ 144.668808, 13.382064 ], [ 144.668083, 13.384316 ], [ 144.667761, 13.385321 ], [ 144.667102, 13.388047 ], [ 144.666552, 13.389086 ], [ 144.66701, 13.3898 ], [ 144.666634, 13.390344 ], [ 144.666043, 13.391201 ], [ 144.666911, 13.391568 ], [ 144.66752, 13.391827 ], [ 144.66797, 13.39211 ], [ 144.6692, 13.391789 ], [ 144.669288, 13.391939 ], [ 144.669533, 13.392356 ], [ 144.66929, 13.392452 ], [ 144.66902, 13.392758 ], [ 144.668138, 13.393262 ], [ 144.667939, 13.393513 ], [ 144.667895, 13.393547 ], [ 144.667581, 13.393573 ], [ 144.667494, 13.393565 ], [ 144.667462, 13.393581 ], [ 144.667453, 13.393628 ], [ 144.667491, 13.393678 ], [ 144.667551, 13.393718 ], [ 144.667654, 13.393735 ], [ 144.667712, 13.393774 ], [ 144.667772, 13.393876 ], [ 144.667783, 13.39395 ], [ 144.667769, 13.394047 ], [ 144.667749, 13.394109 ], [ 144.667698, 13.394175 ], [ 144.667599, 13.394251 ], [ 144.667573, 13.394408 ], [ 144.667602, 13.394439 ], [ 144.667886, 13.394413 ], [ 144.668018, 13.394435 ], [ 144.668114, 13.394571 ], [ 144.668114, 13.394669 ], [ 144.668092, 13.394797 ], [ 144.668013, 13.395002 ], [ 144.668048, 13.395155 ], [ 144.668057, 13.395334 ], [ 144.668027, 13.395423 ], [ 144.667856, 13.395611 ], [ 144.667777, 13.39572 ], [ 144.667733, 13.395781 ], [ 144.667737, 13.395918 ], [ 144.667983, 13.396382 ], [ 144.668, 13.396515 ], [ 144.667944, 13.39683 ], [ 144.667914, 13.397154 ], [ 144.667609, 13.39732 ], [ 144.667507, 13.397496 ], [ 144.667443, 13.397726 ], [ 144.667425, 13.397848 ], [ 144.667353, 13.397975 ], [ 144.667227, 13.398058 ], [ 144.667083, 13.398079 ], [ 144.666392, 13.397979 ], [ 144.666239, 13.397988 ], [ 144.666172, 13.398031 ], [ 144.666078, 13.398149 ], [ 144.665665, 13.399477 ], [ 144.665661, 13.399488 ], [ 144.665589, 13.399778 ], [ 144.665543, 13.399896 ], [ 144.665497, 13.399977 ], [ 144.665369, 13.400174 ], [ 144.665284, 13.400274 ], [ 144.665192, 13.400357 ], [ 144.665135, 13.400399 ], [ 144.665012, 13.400488 ], [ 144.664932, 13.400535 ], [ 144.664825, 13.400588 ], [ 144.664577, 13.400707 ], [ 144.664438, 13.400754 ], [ 144.66431, 13.400807 ], [ 144.664221, 13.400845 ], [ 144.664289, 13.400988 ], [ 144.664302, 13.401015 ], [ 144.664341, 13.401097 ], [ 144.664354, 13.401125 ], [ 144.664362, 13.401143 ], [ 144.66438, 13.40118 ], [ 144.664385, 13.4012 ], [ 144.66439, 13.40122 ], [ 144.664406, 13.401252 ], [ 144.664455, 13.40135 ], [ 144.664472, 13.401383 ], [ 144.66459, 13.40162 ], [ 144.66473, 13.40189 ], [ 144.664761, 13.401952 ], [ 144.6649, 13.40223 ], [ 144.66535, 13.40307 ], [ 144.66553, 13.40342 ], [ 144.665642, 13.403652 ], [ 144.66568, 13.40373 ], [ 144.665689, 13.403743 ], [ 144.66585, 13.40398 ], [ 144.666, 13.40418 ], [ 144.66634, 13.40437 ], [ 144.666384, 13.40439 ], [ 144.66678, 13.40457 ], [ 144.66722, 13.40479 ], [ 144.667572, 13.404954 ], [ 144.66797, 13.40514 ], [ 144.668014, 13.405161 ], [ 144.668149, 13.405227 ], [ 144.668194, 13.405249 ], [ 144.668339, 13.40532 ], [ 144.66838, 13.40534 ], [ 144.66871, 13.40554 ], [ 144.668757, 13.405571 ], [ 144.668894, 13.40566 ], [ 144.669025, 13.405745 ], [ 144.66914, 13.40582 ], [ 144.669405, 13.406024 ], [ 144.66953, 13.40612 ], [ 144.67006, 13.40655 ], [ 144.67025, 13.406699 ], [ 144.67038, 13.4068 ], [ 144.6707, 13.40703 ], [ 144.67104, 13.40723 ], [ 144.67131, 13.40737 ], [ 144.67164, 13.40748 ], [ 144.67201, 13.40759 ], [ 144.67228, 13.40769 ], [ 144.67254, 13.40783 ], [ 144.672706, 13.407941 ], [ 144.67278, 13.40799 ], [ 144.6732, 13.40835 ], [ 144.673419, 13.40853 ], [ 144.67354, 13.40863 ], [ 144.673786, 13.40884 ], [ 144.67395, 13.40898 ], [ 144.674898, 13.409763 ], [ 144.67527, 13.41007 ], [ 144.67533, 13.410118 ], [ 144.67551, 13.410262 ], [ 144.67557, 13.41031 ], [ 144.675614, 13.410357 ], [ 144.675746, 13.410501 ], [ 144.67579, 13.41055 ], [ 144.675802, 13.410562 ], [ 144.675838, 13.410598 ], [ 144.67585, 13.41061 ], [ 144.675889, 13.410653 ], [ 144.67595, 13.41072 ], [ 144.676003, 13.410784 ], [ 144.67604, 13.41083 ], [ 144.676082, 13.41089 ], [ 144.67611, 13.41093 ], [ 144.676195, 13.411081 ], [ 144.6762, 13.41109 ], [ 144.67622, 13.411151 ], [ 144.67625, 13.41124 ], [ 144.67629, 13.41147 ], [ 144.67631, 13.41171 ], [ 144.67631, 13.412001 ], [ 144.67631, 13.41262 ], [ 144.67634, 13.41288 ], [ 144.6764, 13.41313 ], [ 144.67648, 13.41337 ], [ 144.67666, 13.41376 ], [ 144.67685, 13.41409 ], [ 144.677061, 13.414403 ], [ 144.67714, 13.41452 ], [ 144.6775, 13.41503 ], [ 144.67755, 13.41511 ], [ 144.67788, 13.41555 ], [ 144.677943, 13.41563 ], [ 144.67807, 13.41579 ], [ 144.67822, 13.41601 ], [ 144.678241, 13.416059 ], [ 144.678327, 13.416259 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "990000", "GEOID10": "66010990000", "NAME10": "9900", "NAMELSAD10": "Census Tract 9900", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 0, "AWATER10": 917694572, "INTPTLAT10": "+13.3787763", "INTPTLON10": "+144.6191432" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.799187, 13.25 ], [ 144.798623, 13.248677 ], [ 144.797676, 13.247681 ], [ 144.79744, 13.247433 ], [ 144.796357, 13.245951 ], [ 144.795101, 13.244368 ], [ 144.793327, 13.242654 ], [ 144.792146, 13.241336 ], [ 144.791759, 13.240904 ], [ 144.790405, 13.239965 ], [ 144.78994, 13.239614 ], [ 144.788495, 13.238523 ], [ 144.786727, 13.237417 ], [ 144.785474, 13.236139 ], [ 144.783154, 13.235105 ], [ 144.782795, 13.233585 ], [ 144.78229, 13.231837 ], [ 144.782083, 13.231119 ], [ 144.781066, 13.229196 ], [ 144.779772, 13.227276 ], [ 144.778341, 13.225322 ], [ 144.776627, 13.222626 ], [ 144.774467, 13.220237 ], [ 144.772758, 13.218116 ], [ 144.770737, 13.215726 ], [ 144.768269, 13.21361 ], [ 144.766738, 13.212063 ], [ 144.765032, 13.210179 ], [ 144.763224, 13.208532 ], [ 144.761417, 13.207021 ], [ 144.759773, 13.205681 ], [ 144.759646, 13.205577 ], [ 144.757843, 13.204472 ], [ 144.756487, 13.203262 ], [ 144.754476, 13.201955 ], [ 144.752777, 13.200917 ], [ 144.75, 13.199494 ], [ 144.744941, 13.197251 ], [ 144.744665, 13.197121 ], [ 144.740558, 13.195191 ], [ 144.736941, 13.194137 ], [ 144.733463, 13.193352 ], [ 144.729643, 13.19267 ], [ 144.727881, 13.192606 ], [ 144.725759, 13.192529 ], [ 144.722189, 13.192757 ], [ 144.722056, 13.192791 ], [ 144.719721, 13.193381 ], [ 144.718216, 13.193004 ], [ 144.716311, 13.192528 ], [ 144.712455, 13.19161 ], [ 144.709461, 13.191058 ], [ 144.706571, 13.190752 ], [ 144.706159, 13.190709 ], [ 144.703925, 13.190556 ], [ 144.70262, 13.190599 ], [ 144.699422, 13.190351 ], [ 144.69623, 13.190643 ], [ 144.693687, 13.19056 ], [ 144.691215, 13.190779 ], [ 144.688332, 13.191035 ], [ 144.686834, 13.190422 ], [ 144.685332, 13.189808 ], [ 144.68323, 13.189215 ], [ 144.680579, 13.188592 ], [ 144.677758, 13.188139 ], [ 144.675006, 13.187753 ], [ 144.67322, 13.187765 ], [ 144.669992, 13.187889 ], [ 144.667866, 13.188409 ], [ 144.666206, 13.187206 ], [ 144.664619, 13.186475 ], [ 144.662411, 13.185444 ], [ 144.659762, 13.18499 ], [ 144.656663, 13.184201 ], [ 144.65398, 13.183882 ], [ 144.64968, 13.183169 ], [ 144.645932, 13.182789 ], [ 144.641566, 13.182414 ], [ 144.640411, 13.182386 ], [ 144.638233, 13.182335 ], [ 144.635795, 13.182452 ], [ 144.633118, 13.18274 ], [ 144.629687, 13.183303 ], [ 144.627664, 13.183653 ], [ 144.62595, 13.18407 ], [ 144.625, 13.185022 ], [ 144.62273, 13.185838 ], [ 144.621563, 13.186214 ], [ 144.620292, 13.18659 ], [ 144.618304, 13.187643 ], [ 144.617102, 13.187985 ], [ 144.615218, 13.18897 ], [ 144.613678, 13.190056 ], [ 144.612141, 13.191343 ], [ 144.611471, 13.19181 ], [ 144.610294, 13.192632 ], [ 144.608448, 13.194056 ], [ 144.606396, 13.195649 ], [ 144.604726, 13.19741 ], [ 144.603224, 13.198799 ], [ 144.60162, 13.200357 ], [ 144.600157, 13.202251 ], [ 144.598767, 13.204517 ], [ 144.597576, 13.206073 ], [ 144.596214, 13.207698 ], [ 144.595164, 13.209557 ], [ 144.594255, 13.211686 ], [ 144.593204, 13.213411 ], [ 144.592569, 13.215505 ], [ 144.591865, 13.217498 ], [ 144.591197, 13.219693 ], [ 144.590768, 13.221584 ], [ 144.590342, 13.22388 ], [ 144.590151, 13.225534 ], [ 144.589961, 13.227221 ], [ 144.589942, 13.228908 ], [ 144.590035, 13.230192 ], [ 144.590062, 13.230561 ], [ 144.590151, 13.232653 ], [ 144.590272, 13.234542 ], [ 144.590525, 13.235789 ], [ 144.590682, 13.237745 ], [ 144.590869, 13.23933 ], [ 144.591121, 13.240477 ], [ 144.591267, 13.241286 ], [ 144.59152, 13.2425 ], [ 144.591808, 13.243882 ], [ 144.5922, 13.245196 ], [ 144.592215, 13.245283 ], [ 144.592346, 13.246039 ], [ 144.592403, 13.246237 ], [ 144.592738, 13.247387 ], [ 144.593094, 13.248668 ], [ 144.593187, 13.249053 ], [ 144.593417, 13.25 ], [ 144.593667, 13.25 ], [ 144.594417, 13.25 ], [ 144.594668, 13.25 ], [ 144.594866, 13.250473 ], [ 144.595115, 13.251067 ], [ 144.595505, 13.251873 ], [ 144.595729, 13.252335 ], [ 144.597051, 13.255244 ], [ 144.597696, 13.256482 ], [ 144.59848, 13.257988 ], [ 144.600039, 13.260972 ], [ 144.601626, 13.263046 ], [ 144.603658, 13.265201 ], [ 144.605696, 13.267587 ], [ 144.605849, 13.267766 ], [ 144.607615, 13.26961 ], [ 144.608375, 13.270612 ], [ 144.608115, 13.271092 ], [ 144.606883, 13.273367 ], [ 144.606636, 13.273935 ], [ 144.606033, 13.275332 ], [ 144.605021, 13.278102 ], [ 144.603972, 13.280972 ], [ 144.603616, 13.283036 ], [ 144.603347, 13.284597 ], [ 144.603096, 13.286201 ], [ 144.603082, 13.286286 ], [ 144.603042, 13.286541 ], [ 144.603029, 13.286627 ], [ 144.602879, 13.287586 ], [ 144.602546, 13.290647 ], [ 144.602825, 13.293929 ], [ 144.602994, 13.295149 ], [ 144.601226, 13.296004 ], [ 144.599192, 13.296989 ], [ 144.595851, 13.299485 ], [ 144.593449, 13.301638 ], [ 144.590992, 13.30443 ], [ 144.588632, 13.307462 ], [ 144.586451, 13.310229 ], [ 144.584732, 13.312505 ], [ 144.582818, 13.31555 ], [ 144.581072, 13.319618 ], [ 144.580932, 13.319947 ], [ 144.580054, 13.322822 ], [ 144.579166, 13.326034 ], [ 144.578573, 13.32858 ], [ 144.578412, 13.329798 ], [ 144.578217, 13.331269 ], [ 144.577979, 13.334569 ], [ 144.577917, 13.337739 ], [ 144.577807, 13.339057 ], [ 144.577646, 13.341005 ], [ 144.577588, 13.34404 ], [ 144.57779, 13.346442 ], [ 144.578185, 13.349289 ], [ 144.578703, 13.351499 ], [ 144.579344, 13.354151 ], [ 144.58017, 13.356404 ], [ 144.581229, 13.358901 ], [ 144.582002, 13.360612 ], [ 144.582105, 13.364024 ], [ 144.582379, 13.366191 ], [ 144.58241, 13.366429 ], [ 144.582672, 13.36799 ], [ 144.583005, 13.369485 ], [ 144.58349, 13.370479 ], [ 144.584348, 13.3728 ], [ 144.585179, 13.375 ], [ 144.584237, 13.375 ], [ 144.584601, 13.37641 ], [ 144.584695, 13.376615 ], [ 144.585104, 13.377504 ], [ 144.585606, 13.378802 ], [ 144.586044, 13.379555 ], [ 144.586683, 13.380617 ], [ 144.587042, 13.381055 ], [ 144.58719, 13.381235 ], [ 144.588206, 13.382269 ], [ 144.589116, 13.383674 ], [ 144.58961, 13.38435 ], [ 144.590095, 13.385012 ], [ 144.591277, 13.386523 ], [ 144.59265, 13.39112 ], [ 144.59304, 13.392423 ], [ 144.592177, 13.393187 ], [ 144.590022, 13.395091 ], [ 144.589676, 13.395398 ], [ 144.587514, 13.397167 ], [ 144.584872, 13.39937 ], [ 144.583432, 13.400658 ], [ 144.582743, 13.401276 ], [ 144.58141, 13.402699 ], [ 144.580577, 13.403588 ], [ 144.578651, 13.405767 ], [ 144.576448, 13.408521 ], [ 144.5753, 13.409714 ], [ 144.573904, 13.411167 ], [ 144.572213, 13.413893 ], [ 144.570621, 13.416961 ], [ 144.569306, 13.419455 ], [ 144.568159, 13.422257 ], [ 144.566905, 13.425634 ], [ 144.565852, 13.429559 ], [ 144.565042, 13.432977 ], [ 144.564621, 13.435155 ], [ 144.564474, 13.435923 ], [ 144.563974, 13.438904 ], [ 144.563779, 13.442025 ], [ 144.563611, 13.444396 ], [ 144.56355, 13.445248 ], [ 144.563426, 13.448065 ], [ 144.563574, 13.450987 ], [ 144.563798, 13.452026 ], [ 144.564134, 13.453576 ], [ 144.564691, 13.456675 ], [ 144.565447, 13.460387 ], [ 144.566342, 13.463694 ], [ 144.567581, 13.466768 ], [ 144.569161, 13.469813 ], [ 144.570508, 13.472141 ], [ 144.571362, 13.473504 ], [ 144.571991, 13.474506 ], [ 144.574253, 13.477493 ], [ 144.575792, 13.479753 ], [ 144.576682, 13.481059 ], [ 144.57858, 13.482785 ], [ 144.580012, 13.484305 ], [ 144.580948, 13.485298 ], [ 144.581726, 13.486192 ], [ 144.583316, 13.488014 ], [ 144.585344, 13.490455 ], [ 144.586665, 13.49173 ], [ 144.588799, 13.493798 ], [ 144.590698, 13.495252 ], [ 144.592836, 13.496776 ], [ 144.593482, 13.497135 ], [ 144.594093, 13.497474 ], [ 144.595962, 13.498485 ], [ 144.597491, 13.499254 ], [ 144.599019, 13.5 ], [ 144.601395, 13.502383 ], [ 144.604517, 13.505205 ], [ 144.60799, 13.507659 ], [ 144.611151, 13.510243 ], [ 144.614353, 13.511919 ], [ 144.616568, 13.513078 ], [ 144.621432, 13.514642 ], [ 144.625, 13.515882 ], [ 144.630968, 13.516614 ], [ 144.637431, 13.517553 ], [ 144.643839, 13.517778 ], [ 144.650776, 13.517235 ], [ 144.657646, 13.516622 ], [ 144.662191, 13.515613 ], [ 144.663124, 13.515228 ], [ 144.666712, 13.517725 ], [ 144.670604, 13.519641 ], [ 144.672658, 13.520652 ], [ 144.676699, 13.522787 ], [ 144.682955, 13.525654 ], [ 144.687487, 13.527155 ], [ 144.688443, 13.527478 ], [ 144.690102, 13.528038 ], [ 144.693008, 13.52902 ], [ 144.695181, 13.529274 ], [ 144.696921, 13.529478 ], [ 144.698248, 13.529633 ], [ 144.698483, 13.529661 ], [ 144.702254, 13.529777 ], [ 144.70359, 13.529819 ], [ 144.705027, 13.529727 ], [ 144.707058, 13.529598 ], [ 144.709263, 13.52904 ], [ 144.709273, 13.529042 ], [ 144.710668, 13.529401 ], [ 144.713255, 13.530066 ], [ 144.71626, 13.530838 ], [ 144.721129, 13.531495 ], [ 144.722075, 13.531623 ], [ 144.723792, 13.531682 ], [ 144.725468, 13.531739 ], [ 144.727354, 13.533891 ], [ 144.732487, 13.539748 ], [ 144.736803, 13.543667 ], [ 144.737478, 13.54428 ], [ 144.740408, 13.546421 ], [ 144.742196, 13.547728 ], [ 144.74252, 13.547964 ], [ 144.746727, 13.550441 ], [ 144.747974, 13.550994 ], [ 144.75, 13.551892 ], [ 144.750452, 13.552672 ], [ 144.751808, 13.555014 ], [ 144.752261, 13.555795 ], [ 144.753776, 13.559767 ], [ 144.756928, 13.564721 ], [ 144.757035, 13.56506 ], [ 144.758461, 13.569576 ], [ 144.759968, 13.574023 ], [ 144.762811, 13.578937 ], [ 144.76471, 13.582644 ], [ 144.766833, 13.585369 ], [ 144.769532, 13.588717 ], [ 144.772727, 13.591752 ], [ 144.773839, 13.592809 ], [ 144.775701, 13.596684 ], [ 144.777425, 13.59862 ], [ 144.777622, 13.600664 ], [ 144.777861, 13.603149 ], [ 144.778216, 13.606453 ], [ 144.779, 13.610784 ], [ 144.780718, 13.615232 ], [ 144.781077, 13.61616 ], [ 144.780788, 13.620743 ], [ 144.78111, 13.625 ], [ 144.782493, 13.63068 ], [ 144.783888, 13.636697 ], [ 144.784821, 13.640416 ], [ 144.785929, 13.643631 ], [ 144.787332, 13.648703 ], [ 144.789598, 13.653312 ], [ 144.792652, 13.657833 ], [ 144.792993, 13.658337 ], [ 144.796568, 13.662386 ], [ 144.800042, 13.666197 ], [ 144.80178, 13.667968 ], [ 144.802375, 13.669171 ], [ 144.803708, 13.671865 ], [ 144.806111, 13.676476 ], [ 144.808808, 13.680357 ], [ 144.808896, 13.680483 ], [ 144.811923, 13.684425 ], [ 144.81639, 13.688752 ], [ 144.82298, 13.693909 ], [ 144.827148, 13.696917 ], [ 144.833135, 13.70018 ], [ 144.838474, 13.702694 ], [ 144.839631, 13.7031 ], [ 144.845293, 13.705087 ], [ 144.852165, 13.705994 ], [ 144.853563, 13.706179 ], [ 144.860437, 13.705875 ], [ 144.868279, 13.704534 ], [ 144.873681, 13.703439 ], [ 144.875, 13.703331 ], [ 144.879648, 13.701972 ], [ 144.882514, 13.700956 ], [ 144.884553, 13.700235 ], [ 144.889153, 13.698222 ], [ 144.895287, 13.694885 ], [ 144.901367, 13.690737 ], [ 144.907021, 13.687358 ], [ 144.912554, 13.683032 ], [ 144.917094, 13.678588 ], [ 144.920262, 13.67412 ], [ 144.923867, 13.668208 ], [ 144.926761, 13.665625 ], [ 144.93084, 13.662016 ], [ 144.936916, 13.656079 ], [ 144.940513, 13.650572 ], [ 144.947485, 13.650184 ], [ 144.954384, 13.650064 ], [ 144.955096, 13.649939 ], [ 144.961784, 13.648772 ], [ 144.968022, 13.64719 ], [ 144.975622, 13.644281 ], [ 144.981577, 13.641209 ], [ 144.983791, 13.639331 ], [ 144.986775, 13.636798 ], [ 144.987428, 13.636245 ], [ 144.99482, 13.628254 ], [ 144.995576, 13.627438 ], [ 144.996956, 13.625 ], [ 144.99715, 13.625 ], [ 144.997732, 13.625 ], [ 144.997926, 13.625 ], [ 144.998435, 13.62461 ], [ 144.998898, 13.624257 ], [ 144.999643, 13.623144 ], [ 145.0, 13.622612 ], [ 145.003108, 13.618143 ], [ 145.00501, 13.612738 ], [ 145.005057, 13.612561 ], [ 145.006435, 13.607429 ], [ 145.007261, 13.603697 ], [ 145.007866, 13.600163 ], [ 145.008791, 13.595893 ], [ 145.009167, 13.591142 ], [ 145.00821, 13.586238 ], [ 145.006704, 13.580889 ], [ 145.005956, 13.579408 ], [ 145.004731, 13.576983 ], [ 145.003089, 13.573621 ], [ 145.0, 13.569821 ], [ 144.999379, 13.569638 ], [ 144.999475, 13.568845 ], [ 144.999523, 13.568451 ], [ 144.999326, 13.566313 ], [ 144.998888, 13.564576 ], [ 144.998649, 13.563628 ], [ 144.998489, 13.563189 ], [ 144.997729, 13.561112 ], [ 144.996875, 13.55914 ], [ 144.996604, 13.558481 ], [ 144.995885, 13.556725 ], [ 144.994791, 13.554445 ], [ 144.993558, 13.552165 ], [ 144.991499, 13.549405 ], [ 144.989472, 13.547188 ], [ 144.989138, 13.545468 ], [ 144.988832, 13.543893 ], [ 144.988018, 13.540903 ], [ 144.98794, 13.540543 ], [ 144.987167, 13.536959 ], [ 144.987073, 13.536521 ], [ 144.985778, 13.532883 ], [ 144.984759, 13.52945 ], [ 144.983701, 13.526831 ], [ 144.983561, 13.526587 ], [ 144.982194, 13.52421 ], [ 144.981703, 13.523429 ], [ 144.980824, 13.522031 ], [ 144.979247, 13.519647 ], [ 144.978264, 13.515807 ], [ 144.977009, 13.511219 ], [ 144.975823, 13.506802 ], [ 144.974248, 13.503909 ], [ 144.973801, 13.503119 ], [ 144.972038, 13.5 ], [ 144.970591, 13.497969 ], [ 144.969011, 13.495633 ], [ 144.967585, 13.493696 ], [ 144.966182, 13.492364 ], [ 144.965624, 13.491374 ], [ 144.963695, 13.488983 ], [ 144.962255, 13.487585 ], [ 144.960368, 13.485394 ], [ 144.958039, 13.482512 ], [ 144.956284, 13.481058 ], [ 144.954052, 13.478913 ], [ 144.951742, 13.477444 ], [ 144.949545, 13.47624 ], [ 144.946732, 13.474351 ], [ 144.944172, 13.472689 ], [ 144.941178, 13.471513 ], [ 144.938261, 13.470537 ], [ 144.936008, 13.469706 ], [ 144.932282, 13.469363 ], [ 144.931062, 13.467351 ], [ 144.929108, 13.465197 ], [ 144.927711, 13.46309 ], [ 144.925805, 13.461202 ], [ 144.925477, 13.460878 ], [ 144.92313, 13.458434 ], [ 144.921111, 13.456416 ], [ 144.919263, 13.454291 ], [ 144.917213, 13.452375 ], [ 144.914676, 13.450409 ], [ 144.912291, 13.448774 ], [ 144.909954, 13.447542 ], [ 144.909171, 13.447031 ], [ 144.907501, 13.445943 ], [ 144.905268, 13.444707 ], [ 144.902878, 13.44388 ], [ 144.901036, 13.443308 ], [ 144.898876, 13.442638 ], [ 144.897747, 13.441195 ], [ 144.895939, 13.438294 ], [ 144.894099, 13.436405 ], [ 144.892514, 13.434843 ], [ 144.890425, 13.432761 ], [ 144.888242, 13.430041 ], [ 144.88656, 13.428651 ], [ 144.884513, 13.426803 ], [ 144.882221, 13.424861 ], [ 144.882028, 13.4247 ], [ 144.879929, 13.422954 ], [ 144.878007, 13.421639 ], [ 144.875, 13.419574 ], [ 144.874868, 13.419758 ], [ 144.874803, 13.419736 ], [ 144.870269, 13.418194 ], [ 144.869341, 13.416813 ], [ 144.866445, 13.412507 ], [ 144.861852, 13.408054 ], [ 144.857084, 13.403834 ], [ 144.855908, 13.40307 ], [ 144.850498, 13.399556 ], [ 144.849452, 13.398877 ], [ 144.845772, 13.397397 ], [ 144.844551, 13.396906 ], [ 144.843155, 13.393934 ], [ 144.841912, 13.39224 ], [ 144.839282, 13.389388 ], [ 144.836372, 13.387037 ], [ 144.83532, 13.386242 ], [ 144.833663, 13.38499 ], [ 144.831422, 13.383722 ], [ 144.830911, 13.383491 ], [ 144.829861, 13.383016 ], [ 144.829517, 13.38286 ], [ 144.827818, 13.382035 ], [ 144.826746, 13.381522 ], [ 144.826594, 13.38145 ], [ 144.826656, 13.380469 ], [ 144.826857, 13.377287 ], [ 144.826856, 13.377283 ], [ 144.826363, 13.375 ], [ 144.826198, 13.373116 ], [ 144.82563, 13.371083 ], [ 144.825263, 13.369626 ], [ 144.82486, 13.368372 ], [ 144.824791, 13.36796 ], [ 144.824697, 13.36739 ], [ 144.824476, 13.365022 ], [ 144.824456, 13.364788 ], [ 144.824289, 13.362822 ], [ 144.824135, 13.360725 ], [ 144.823906, 13.359303 ], [ 144.823676, 13.35805 ], [ 144.823628, 13.357762 ], [ 144.823447, 13.356662 ], [ 144.822534, 13.354592 ], [ 144.822961, 13.353176 ], [ 144.823046, 13.351317 ], [ 144.822954, 13.350066 ], [ 144.823004, 13.348308 ], [ 144.822848, 13.346481 ], [ 144.822731, 13.344147 ], [ 144.822765, 13.340361 ], [ 144.822304, 13.337889 ], [ 144.82196, 13.336905 ], [ 144.820824, 13.333651 ], [ 144.821225, 13.331186 ], [ 144.821263, 13.33005 ], [ 144.82132, 13.328313 ], [ 144.821523, 13.324901 ], [ 144.821701, 13.320372 ], [ 144.821658, 13.317566 ], [ 144.82147, 13.315401 ], [ 144.821384, 13.31511 ], [ 144.820834, 13.313231 ], [ 144.82151, 13.310938 ], [ 144.821771, 13.308709 ], [ 144.822038, 13.305906 ], [ 144.821852, 13.303504 ], [ 144.821804, 13.301103 ], [ 144.821653, 13.298803 ], [ 144.821362, 13.296535 ], [ 144.821041, 13.293828 ], [ 144.82055, 13.290916 ], [ 144.820194, 13.288344 ], [ 144.819633, 13.285432 ], [ 144.818932, 13.282788 ], [ 144.817987, 13.280448 ], [ 144.816424, 13.277831 ], [ 144.815002, 13.274911 ], [ 144.81374, 13.271857 ], [ 144.813516, 13.271314 ], [ 144.811616, 13.267782 ], [ 144.809403, 13.264618 ], [ 144.807491, 13.26237 ], [ 144.804683, 13.260182 ], [ 144.80465, 13.259035 ], [ 144.80431, 13.256872 ], [ 144.804113, 13.255214 ], [ 144.803325, 13.252849 ], [ 144.802733, 13.25118 ], [ 144.801751, 13.251505 ], [ 144.800694, 13.250307 ], [ 144.800119, 13.25 ], [ 144.799187, 13.25 ] ], [ [ 144.65533, 13.306982 ], [ 144.655296, 13.306991 ], [ 144.65523, 13.307003 ], [ 144.655164, 13.306953 ], [ 144.65512, 13.306897 ], [ 144.655114, 13.306829 ], [ 144.655191, 13.306759 ], [ 144.655246, 13.306666 ], [ 144.655298, 13.306606 ], [ 144.655407, 13.30659 ], [ 144.655441, 13.30667 ], [ 144.655463, 13.306759 ], [ 144.655479, 13.306821 ], [ 144.655437, 13.306931 ], [ 144.655383, 13.306967 ], [ 144.65533, 13.306982 ] ], [ [ 144.651368, 13.379902 ], [ 144.651296, 13.379963 ], [ 144.651225, 13.37995 ], [ 144.651153, 13.379906 ], [ 144.651125, 13.379841 ], [ 144.651099, 13.379747 ], [ 144.651112, 13.379629 ], [ 144.651119, 13.37958 ], [ 144.651147, 13.379504 ], [ 144.651188, 13.379473 ], [ 144.651249, 13.379458 ], [ 144.651314, 13.379467 ], [ 144.65137, 13.379514 ], [ 144.651427, 13.379588 ], [ 144.651461, 13.379673 ], [ 144.651466, 13.37975 ], [ 144.651429, 13.379828 ], [ 144.651368, 13.379902 ] ], [ [ 144.705528, 13.480057 ], [ 144.705635, 13.480103 ], [ 144.705652, 13.480232 ], [ 144.705648, 13.480337 ], [ 144.705554, 13.480484 ], [ 144.705491, 13.48054 ], [ 144.7054, 13.480529 ], [ 144.705264, 13.480481 ], [ 144.705198, 13.4804 ], [ 144.705247, 13.480344 ], [ 144.70532, 13.480278 ], [ 144.705334, 13.48018 ], [ 144.705328, 13.480164 ], [ 144.705306, 13.480103 ], [ 144.705397, 13.480079 ], [ 144.705505, 13.480047 ], [ 144.705528, 13.480057 ] ], [ [ 144.697624, 13.245144 ], [ 144.697531, 13.245153 ], [ 144.697403, 13.245136 ], [ 144.697311, 13.245057 ], [ 144.697178, 13.244938 ], [ 144.697115, 13.244852 ], [ 144.697084, 13.244795 ], [ 144.697153, 13.244725 ], [ 144.697237, 13.244694 ], [ 144.697311, 13.244708 ], [ 144.697557, 13.244896 ], [ 144.697704, 13.244979 ], [ 144.697713, 13.245068 ], [ 144.697624, 13.245144 ] ], [ [ 144.660174, 13.402171 ], [ 144.660162, 13.402038 ], [ 144.660171, 13.401903 ], [ 144.660258, 13.401852 ], [ 144.660393, 13.401813 ], [ 144.660511, 13.401834 ], [ 144.660625, 13.401915 ], [ 144.660739, 13.401939 ], [ 144.660748, 13.402045 ], [ 144.660655, 13.402144 ], [ 144.660535, 13.402207 ], [ 144.66042, 13.402249 ], [ 144.6603, 13.402243 ], [ 144.660174, 13.402171 ] ], [ [ 144.700885, 13.244827 ], [ 144.700934, 13.244807 ], [ 144.70111, 13.244812 ], [ 144.70121, 13.244841 ], [ 144.70133, 13.245182 ], [ 144.701282, 13.245265 ], [ 144.701215, 13.245309 ], [ 144.701035, 13.245355 ], [ 144.70095, 13.245334 ], [ 144.700899, 13.245262 ], [ 144.700885, 13.244827 ] ], [ [ 144.659936, 13.401783 ], [ 144.659867, 13.40165 ], [ 144.659873, 13.401503 ], [ 144.659903, 13.401371 ], [ 144.659987, 13.401238 ], [ 144.660062, 13.401154 ], [ 144.66015, 13.401151 ], [ 144.660216, 13.401124 ], [ 144.660294, 13.401169 ], [ 144.660342, 13.401217 ], [ 144.660291, 13.401331 ], [ 144.660333, 13.401491 ], [ 144.660351, 13.401599 ], [ 144.660222, 13.401726 ], [ 144.660095, 13.401837 ], [ 144.660029, 13.401834 ], [ 144.659936, 13.401783 ] ], [ [ 144.705449, 13.243761 ], [ 144.705585, 13.243732 ], [ 144.705823, 13.243712 ], [ 144.705972, 13.243708 ], [ 144.706326, 13.243708 ], [ 144.706766, 13.243712 ], [ 144.706873, 13.243741 ], [ 144.706993, 13.243804 ], [ 144.707055, 13.243864 ], [ 144.707086, 13.244024 ], [ 144.707066, 13.244144 ], [ 144.706986, 13.244151 ], [ 144.706935, 13.244117 ], [ 144.706873, 13.244086 ], [ 144.706806, 13.244057 ], [ 144.706704, 13.244008 ], [ 144.706597, 13.243966 ], [ 144.706479, 13.243937 ], [ 144.706408, 13.243937 ], [ 144.706308, 13.243915 ], [ 144.706192, 13.243922 ], [ 144.70603, 13.243917 ], [ 144.705896, 13.243928 ], [ 144.705776, 13.24397 ], [ 144.70563, 13.243995 ], [ 144.705525, 13.243984 ], [ 144.705418, 13.243919 ], [ 144.705421, 13.243815 ], [ 144.705449, 13.243761 ] ], [ [ 144.706337, 13.244009 ], [ 144.706395, 13.243987 ], [ 144.706475, 13.243987 ], [ 144.706537, 13.244002 ], [ 144.706577, 13.244018 ], [ 144.706682, 13.244059 ], [ 144.706733, 13.244129 ], [ 144.706732, 13.24419 ], [ 144.706736, 13.244241 ], [ 144.706726, 13.244291 ], [ 144.706675, 13.244365 ], [ 144.706644, 13.24439 ], [ 144.706629, 13.244442 ], [ 144.706573, 13.244509 ], [ 144.706529, 13.244565 ], [ 144.706466, 13.244607 ], [ 144.706368, 13.244651 ], [ 144.706306, 13.244691 ], [ 144.706237, 13.24474 ], [ 144.706177, 13.244776 ], [ 144.706149, 13.244823 ], [ 144.706059, 13.244884 ], [ 144.705976, 13.244932 ], [ 144.705932, 13.244938 ], [ 144.70587, 13.244956 ], [ 144.705797, 13.244956 ], [ 144.705739, 13.244958 ], [ 144.705657, 13.244945 ], [ 144.705588, 13.244909 ], [ 144.705521, 13.244858 ], [ 144.705488, 13.244812 ], [ 144.70557, 13.244783 ], [ 144.70563, 13.24478 ], [ 144.705727, 13.244791 ], [ 144.705784, 13.244752 ], [ 144.705792, 13.244707 ], [ 144.705779, 13.24466 ], [ 144.705757, 13.244623 ], [ 144.705713, 13.244604 ], [ 144.705677, 13.244547 ], [ 144.705635, 13.244514 ], [ 144.705601, 13.244476 ], [ 144.705615, 13.24442 ], [ 144.705656, 13.2444 ], [ 144.705728, 13.244405 ], [ 144.705779, 13.244387 ], [ 144.705841, 13.244353 ], [ 144.705933, 13.244302 ], [ 144.70596, 13.244244 ], [ 144.705999, 13.244231 ], [ 144.706074, 13.244226 ], [ 144.706124, 13.244193 ], [ 144.706206, 13.244116 ], [ 144.706337, 13.244009 ] ], [ [ 144.72562, 13.246197 ], [ 144.725613, 13.246285 ], [ 144.725589, 13.246326 ], [ 144.725552, 13.246391 ], [ 144.725543, 13.246432 ], [ 144.725581, 13.246573 ], [ 144.725607, 13.246621 ], [ 144.72561, 13.246671 ], [ 144.72563, 13.246712 ], [ 144.725648, 13.246789 ], [ 144.725668, 13.246815 ], [ 144.725668, 13.2469 ], [ 144.725691, 13.246965 ], [ 144.725745, 13.247007 ], [ 144.725801, 13.247043 ], [ 144.72587, 13.247082 ], [ 144.725924, 13.247112 ], [ 144.725974, 13.247165 ], [ 144.726025, 13.247239 ], [ 144.726066, 13.24731 ], [ 144.72609, 13.247357 ], [ 144.726132, 13.247434 ], [ 144.726154, 13.247536 ], [ 144.726143, 13.247653 ], [ 144.7261, 13.247738 ], [ 144.726068, 13.247818 ], [ 144.726031, 13.247866 ], [ 144.726006, 13.247907 ], [ 144.725972, 13.247952 ], [ 144.725892, 13.247968 ], [ 144.725839, 13.24793 ], [ 144.725791, 13.247898 ], [ 144.72577, 13.247824 ], [ 144.725762, 13.247716 ], [ 144.725748, 13.247637 ], [ 144.725733, 13.247586 ], [ 144.725704, 13.247516 ], [ 144.725685, 13.247462 ], [ 144.725663, 13.247424 ], [ 144.725636, 13.24737 ], [ 144.725604, 13.247315 ], [ 144.725562, 13.247291 ], [ 144.725556, 13.247252 ], [ 144.725563, 13.247214 ], [ 144.725575, 13.247185 ], [ 144.725578, 13.247135 ], [ 144.725549, 13.247097 ], [ 144.725537, 13.247058 ], [ 144.725534, 13.247002 ], [ 144.725541, 13.246938 ], [ 144.725557, 13.246888 ], [ 144.725557, 13.246844 ], [ 144.725551, 13.246794 ], [ 144.725525, 13.246743 ], [ 144.725474, 13.246713 ], [ 144.725448, 13.246669 ], [ 144.725442, 13.246593 ], [ 144.725401, 13.246542 ], [ 144.72541, 13.246463 ], [ 144.725366, 13.246433 ], [ 144.725358, 13.246327 ], [ 144.72531, 13.246327 ], [ 144.725268, 13.246306 ], [ 144.72513, 13.246281 ], [ 144.725094, 13.246269 ], [ 144.725022, 13.246286 ], [ 144.724973, 13.246347 ], [ 144.724937, 13.246347 ], [ 144.72491, 13.246326 ], [ 144.724911, 13.246297 ], [ 144.72484, 13.246134 ], [ 144.72482, 13.246063 ], [ 144.724889, 13.246055 ], [ 144.724943, 13.24607 ], [ 144.724994, 13.24605 ], [ 144.725138, 13.246043 ], [ 144.725222, 13.246023 ], [ 144.725384, 13.246069 ], [ 144.725417, 13.246113 ], [ 144.725507, 13.24612 ], [ 144.725524, 13.246155 ], [ 144.725556, 13.246186 ], [ 144.72562, 13.246197 ] ], [ [ 144.732219, 13.250767 ], [ 144.732087, 13.250789 ], [ 144.731989, 13.250793 ], [ 144.731901, 13.250774 ], [ 144.731853, 13.250748 ], [ 144.731716, 13.250672 ], [ 144.731634, 13.25059 ], [ 144.731557, 13.250503 ], [ 144.731504, 13.250421 ], [ 144.731443, 13.250327 ], [ 144.731391, 13.250221 ], [ 144.73138, 13.250105 ], [ 144.731411, 13.249961 ], [ 144.73146, 13.249885 ], [ 144.731539, 13.249824 ], [ 144.731673, 13.249769 ], [ 144.731793, 13.249785 ], [ 144.73188, 13.249807 ], [ 144.731937, 13.24986 ], [ 144.731997, 13.249943 ], [ 144.732053, 13.25001 ], [ 144.732117, 13.250093 ], [ 144.732174, 13.250191 ], [ 144.732234, 13.250285 ], [ 144.73226, 13.250379 ], [ 144.732287, 13.250481 ], [ 144.73229, 13.250597 ], [ 144.732283, 13.250688 ], [ 144.732219, 13.250767 ] ], [ [ 144.744847, 13.26837 ], [ 144.744926, 13.268329 ], [ 144.745028, 13.268299 ], [ 144.74516, 13.268318 ], [ 144.745336, 13.268352 ], [ 144.745427, 13.268465 ], [ 144.745574, 13.268563 ], [ 144.745574, 13.268679 ], [ 144.745525, 13.2688 ], [ 144.745449, 13.268879 ], [ 144.745333, 13.268917 ], [ 144.745171, 13.268984 ], [ 144.745011, 13.269058 ], [ 144.744926, 13.269139 ], [ 144.744885, 13.269221 ], [ 144.744813, 13.269308 ], [ 144.744685, 13.269353 ], [ 144.744467, 13.269331 ], [ 144.744407, 13.269229 ], [ 144.744429, 13.269097 ], [ 144.744467, 13.268992 ], [ 144.744523, 13.268815 ], [ 144.744573, 13.268727 ], [ 144.74467, 13.2686 ], [ 144.744757, 13.268484 ], [ 144.744817, 13.268386 ], [ 144.744847, 13.26837 ] ], [ [ 144.650486, 13.376906 ], [ 144.650606, 13.376991 ], [ 144.650712, 13.377077 ], [ 144.650734, 13.377115 ], [ 144.650748, 13.377158 ], [ 144.650763, 13.377176 ], [ 144.650779, 13.377193 ], [ 144.650796, 13.37722 ], [ 144.650827, 13.377277 ], [ 144.650861, 13.377285 ], [ 144.650876, 13.37729 ], [ 144.650893, 13.377315 ], [ 144.650908, 13.377342 ], [ 144.650925, 13.37737 ], [ 144.650934, 13.377386 ], [ 144.65096, 13.377389 ], [ 144.650981, 13.377385 ], [ 144.651004, 13.377376 ], [ 144.651023, 13.377382 ], [ 144.651045, 13.377403 ], [ 144.651062, 13.377416 ], [ 144.651081, 13.377445 ], [ 144.651107, 13.377459 ], [ 144.651149, 13.377457 ], [ 144.651164, 13.377511 ], [ 144.651154, 13.377552 ], [ 144.65114, 13.377624 ], [ 144.651123, 13.377689 ], [ 144.651126, 13.377722 ], [ 144.651123, 13.377752 ], [ 144.651091, 13.377809 ], [ 144.651035, 13.377892 ], [ 144.651018, 13.37795 ], [ 144.650982, 13.377984 ], [ 144.650963, 13.378004 ], [ 144.650945, 13.378024 ], [ 144.65092, 13.378032 ], [ 144.650891, 13.378028 ], [ 144.650873, 13.378005 ], [ 144.650846, 13.378002 ], [ 144.650819, 13.377998 ], [ 144.65078, 13.377963 ], [ 144.650723, 13.377924 ], [ 144.650692, 13.37791 ], [ 144.650652, 13.377866 ], [ 144.650575, 13.377825 ], [ 144.65052, 13.377774 ], [ 144.650485, 13.377774 ], [ 144.650446, 13.377747 ], [ 144.65038, 13.377752 ], [ 144.650301, 13.377686 ], [ 144.65027, 13.377655 ], [ 144.650239, 13.377607 ], [ 144.650191, 13.377585 ], [ 144.650164, 13.377545 ], [ 144.650121, 13.377492 ], [ 144.650085, 13.377457 ], [ 144.650033, 13.377365 ], [ 144.649997, 13.377259 ], [ 144.64999, 13.377209 ], [ 144.650002, 13.377128 ], [ 144.650094, 13.377136 ], [ 144.650163, 13.377064 ], [ 144.650208, 13.377046 ], [ 144.650271, 13.377041 ], [ 144.650345, 13.377013 ], [ 144.650388, 13.376988 ], [ 144.650404, 13.376941 ], [ 144.650437, 13.376915 ], [ 144.650486, 13.376906 ] ], [ [ 144.65538, 13.386234 ], [ 144.655454, 13.386262 ], [ 144.65572, 13.386532 ], [ 144.655716, 13.386618 ], [ 144.655427, 13.38674 ], [ 144.655266, 13.386861 ], [ 144.65518, 13.386916 ], [ 144.655016, 13.386998 ], [ 144.654894, 13.387072 ], [ 144.654769, 13.387198 ], [ 144.654601, 13.387378 ], [ 144.654459, 13.38747 ], [ 144.654397, 13.387495 ], [ 144.654252, 13.387452 ], [ 144.654209, 13.387417 ], [ 144.653909, 13.387399 ], [ 144.6539, 13.387327 ], [ 144.653908, 13.387202 ], [ 144.654777, 13.386798 ], [ 144.655047, 13.386559 ], [ 144.65538, 13.386234 ] ], [ [ 144.77065, 13.492363 ], [ 144.770736, 13.492539 ], [ 144.770827, 13.492727 ], [ 144.771004, 13.492795 ], [ 144.770994, 13.493071 ], [ 144.771083, 13.493386 ], [ 144.770875, 13.493331 ], [ 144.770699, 13.493258 ], [ 144.770453, 13.493169 ], [ 144.770176, 13.493163 ], [ 144.77002, 13.49314 ], [ 144.769912, 13.493051 ], [ 144.769863, 13.492766 ], [ 144.769659, 13.492525 ], [ 144.769741, 13.492389 ], [ 144.769941, 13.492313 ], [ 144.770138, 13.492294 ], [ 144.770387, 13.492315 ], [ 144.770506, 13.492322 ], [ 144.77065, 13.492363 ] ], [ [ 144.632743, 13.341055 ], [ 144.632955, 13.341138 ], [ 144.633199, 13.341242 ], [ 144.633389, 13.341335 ], [ 144.63346, 13.341451 ], [ 144.633418, 13.341631 ], [ 144.633336, 13.341778 ], [ 144.633225, 13.341912 ], [ 144.633084, 13.341989 ], [ 144.632844, 13.342006 ], [ 144.632586, 13.342012 ], [ 144.632304, 13.341959 ], [ 144.632199, 13.341983 ], [ 144.632076, 13.341918 ], [ 144.632, 13.341842 ], [ 144.632093, 13.341625 ], [ 144.632134, 13.341484 ], [ 144.6322, 13.341403 ], [ 144.632371, 13.341291 ], [ 144.632454, 13.341167 ], [ 144.63253, 13.341079 ], [ 144.632743, 13.341055 ] ], [ [ 144.646717, 13.379719 ], [ 144.64683, 13.37976 ], [ 144.646992, 13.379876 ], [ 144.647063, 13.379951 ], [ 144.64726, 13.380225 ], [ 144.647341, 13.380309 ], [ 144.647645, 13.380714 ], [ 144.647755, 13.380856 ], [ 144.647852, 13.380924 ], [ 144.647949, 13.381018 ], [ 144.648001, 13.381105 ], [ 144.648027, 13.381195 ], [ 144.647975, 13.381318 ], [ 144.647755, 13.381418 ], [ 144.647564, 13.381457 ], [ 144.647393, 13.381496 ], [ 144.647264, 13.381515 ], [ 144.647128, 13.38148 ], [ 144.646859, 13.381279 ], [ 144.646701, 13.381105 ], [ 144.646662, 13.380853 ], [ 144.646691, 13.38073 ], [ 144.64685, 13.380533 ], [ 144.646773, 13.380371 ], [ 144.646688, 13.380145 ], [ 144.64661, 13.379899 ], [ 144.646633, 13.379782 ], [ 144.646717, 13.379719 ] ], [ [ 144.708314, 13.242997 ], [ 144.708526, 13.243001 ], [ 144.708606, 13.243056 ], [ 144.708731, 13.24314 ], [ 144.708837, 13.24329 ], [ 144.70887, 13.243363 ], [ 144.708877, 13.24349 ], [ 144.70882, 13.243606 ], [ 144.708868, 13.243684 ], [ 144.708811, 13.243741 ], [ 144.708756, 13.24401 ], [ 144.708738, 13.244211 ], [ 144.708749, 13.244375 ], [ 144.708742, 13.244594 ], [ 144.708662, 13.244817 ], [ 144.708647, 13.244896 ], [ 144.708529, 13.245132 ], [ 144.708648, 13.245203 ], [ 144.708672, 13.245237 ], [ 144.708634, 13.245324 ], [ 144.708475, 13.245337 ], [ 144.708398, 13.245334 ], [ 144.708324, 13.2453 ], [ 144.708237, 13.245255 ], [ 144.70814, 13.245178 ], [ 144.708057, 13.245018 ], [ 144.707997, 13.244709 ], [ 144.707931, 13.244455 ], [ 144.707921, 13.244274 ], [ 144.707956, 13.244208 ], [ 144.707997, 13.244177 ], [ 144.708044, 13.244022 ], [ 144.707997, 13.243912 ], [ 144.708023, 13.243858 ], [ 144.708078, 13.243636 ], [ 144.708098, 13.243491 ], [ 144.708096, 13.243454 ], [ 144.708084, 13.243331 ], [ 144.708092, 13.243273 ], [ 144.708124, 13.24316 ], [ 144.70821, 13.243082 ], [ 144.708269, 13.243055 ], [ 144.708314, 13.242997 ] ], [ [ 144.717346, 13.248938 ], [ 144.717057, 13.248837 ], [ 144.716956, 13.248666 ], [ 144.716838, 13.248412 ], [ 144.71666, 13.248116 ], [ 144.716495, 13.247879 ], [ 144.716423, 13.247612 ], [ 144.716205, 13.247111 ], [ 144.716128, 13.24691 ], [ 144.716163, 13.24672 ], [ 144.716288, 13.246655 ], [ 144.716501, 13.246673 ], [ 144.71672, 13.246697 ], [ 144.716909, 13.246785 ], [ 144.717228, 13.246833 ], [ 144.717447, 13.246874 ], [ 144.717524, 13.246987 ], [ 144.717601, 13.247182 ], [ 144.717636, 13.247371 ], [ 144.717741, 13.247593 ], [ 144.717879, 13.247696 ], [ 144.717928, 13.248002 ], [ 144.717873, 13.248353 ], [ 144.717707, 13.24853 ], [ 144.717589, 13.248613 ], [ 144.717482, 13.248808 ], [ 144.717346, 13.248938 ] ], [ [ 144.671973, 13.240071 ], [ 144.671999, 13.239954 ], [ 144.67209, 13.239936 ], [ 144.672413, 13.239829 ], [ 144.672822, 13.239836 ], [ 144.673657, 13.239851 ], [ 144.674446, 13.239844 ], [ 144.675288, 13.239935 ], [ 144.675983, 13.240052 ], [ 144.676752, 13.240109 ], [ 144.677457, 13.240253 ], [ 144.678049, 13.240443 ], [ 144.678322, 13.240542 ], [ 144.678496, 13.240663 ], [ 144.678496, 13.2408 ], [ 144.678382, 13.241001 ], [ 144.678155, 13.240898 ], [ 144.677836, 13.240792 ], [ 144.676943, 13.240661 ], [ 144.675743, 13.24042 ], [ 144.674992, 13.240398 ], [ 144.674066, 13.240329 ], [ 144.673118, 13.240299 ], [ 144.672291, 13.240276 ], [ 144.672018, 13.240246 ], [ 144.671973, 13.240071 ] ], [ [ 144.646495, 13.414986 ], [ 144.646366, 13.41495 ], [ 144.646171, 13.41481 ], [ 144.646085, 13.414661 ], [ 144.646037, 13.414528 ], [ 144.64599, 13.414346 ], [ 144.645943, 13.414181 ], [ 144.645911, 13.414024 ], [ 144.645825, 13.413929 ], [ 144.645777, 13.413709 ], [ 144.645859, 13.413581 ], [ 144.645952, 13.413555 ], [ 144.646084, 13.413519 ], [ 144.646112, 13.413403 ], [ 144.646244, 13.413353 ], [ 144.646429, 13.413316 ], [ 144.646608, 13.413175 ], [ 144.64682, 13.413074 ], [ 144.647071, 13.413063 ], [ 144.647295, 13.413104 ], [ 144.647439, 13.413222 ], [ 144.647689, 13.413302 ], [ 144.647991, 13.413382 ], [ 144.648293, 13.41354 ], [ 144.648305, 13.413669 ], [ 144.6481, 13.413962 ], [ 144.647998, 13.414027 ], [ 144.647813, 13.414064 ], [ 144.647641, 13.414166 ], [ 144.647561, 13.414243 ], [ 144.647441, 13.414371 ], [ 144.647321, 13.414512 ], [ 144.647254, 13.414627 ], [ 144.647174, 13.41473 ], [ 144.647054, 13.414845 ], [ 144.646882, 13.414869 ], [ 144.646761, 13.414876 ], [ 144.646684, 13.41488 ], [ 144.646495, 13.414986 ] ], [ [ 144.635745, 13.357504 ], [ 144.635795, 13.357315 ], [ 144.635807, 13.357187 ], [ 144.635755, 13.357066 ], [ 144.63581, 13.356937 ], [ 144.63594, 13.356882 ], [ 144.636144, 13.356823 ], [ 144.636448, 13.356692 ], [ 144.636532, 13.356604 ], [ 144.636656, 13.356504 ], [ 144.63683, 13.356564 ], [ 144.637009, 13.356773 ], [ 144.637124, 13.356902 ], [ 144.637124, 13.357047 ], [ 144.637298, 13.357201 ], [ 144.637527, 13.357305 ], [ 144.637696, 13.35745 ], [ 144.637826, 13.357619 ], [ 144.63795, 13.357793 ], [ 144.638113, 13.357869 ], [ 144.638308, 13.358017 ], [ 144.638373, 13.358141 ], [ 144.638358, 13.35839 ], [ 144.638308, 13.358614 ], [ 144.638184, 13.358778 ], [ 144.637965, 13.358908 ], [ 144.637746, 13.358947 ], [ 144.637539, 13.358889 ], [ 144.637238, 13.358768 ], [ 144.637064, 13.358629 ], [ 144.637004, 13.358465 ], [ 144.636965, 13.358256 ], [ 144.63694, 13.358097 ], [ 144.63684, 13.358012 ], [ 144.636706, 13.358002 ], [ 144.636626, 13.357942 ], [ 144.636547, 13.357838 ], [ 144.636412, 13.357753 ], [ 144.636308, 13.357743 ], [ 144.636124, 13.357748 ], [ 144.63593, 13.357698 ], [ 144.635775, 13.357634 ], [ 144.635745, 13.357504 ] ], [ [ 144.644022, 13.235425 ], [ 144.643773, 13.234822 ], [ 144.643606, 13.234385 ], [ 144.643302, 13.23413 ], [ 144.643169, 13.233885 ], [ 144.643461, 13.23376 ], [ 144.644043, 13.233823 ], [ 144.644855, 13.233948 ], [ 144.645604, 13.234093 ], [ 144.646582, 13.234385 ], [ 144.648018, 13.234884 ], [ 144.649839, 13.235575 ], [ 144.651243, 13.236257 ], [ 144.653033, 13.237402 ], [ 144.654376, 13.238356 ], [ 144.656099, 13.239349 ], [ 144.656945, 13.239712 ], [ 144.658131, 13.24019 ], [ 144.658574, 13.240468 ], [ 144.6594, 13.240731 ], [ 144.659005, 13.241293 ], [ 144.658485, 13.242001 ], [ 144.658152, 13.242354 ], [ 144.65784, 13.242562 ], [ 144.657201, 13.242623 ], [ 144.656674, 13.242354 ], [ 144.656279, 13.242063 ], [ 144.655893, 13.241716 ], [ 144.655051, 13.241356 ], [ 144.654364, 13.240981 ], [ 144.653595, 13.240398 ], [ 144.65218, 13.239608 ], [ 144.651056, 13.238942 ], [ 144.649752, 13.238201 ], [ 144.649204, 13.237964 ], [ 144.64796, 13.237568 ], [ 144.646873, 13.237173 ], [ 144.646082, 13.236757 ], [ 144.645313, 13.236486 ], [ 144.644647, 13.236112 ], [ 144.644022, 13.235425 ] ], [ [ 144.662184, 13.285272 ], [ 144.662222, 13.28526 ], [ 144.662301, 13.285218 ], [ 144.662375, 13.285109 ], [ 144.662435, 13.284961 ], [ 144.662442, 13.284924 ], [ 144.662466, 13.284799 ], [ 144.662511, 13.284642 ], [ 144.662537, 13.284484 ], [ 144.662534, 13.284288 ], [ 144.662492, 13.284163 ], [ 144.662477, 13.28413 ], [ 144.662429, 13.284019 ], [ 144.662349, 13.283956 ], [ 144.662243, 13.283831 ], [ 144.662143, 13.283548 ], [ 144.662064, 13.28315 ], [ 144.662042, 13.282973 ], [ 144.662014, 13.282796 ], [ 144.662001, 13.282614 ], [ 144.661949, 13.282451 ], [ 144.661946, 13.282293 ], [ 144.661963, 13.281992 ], [ 144.661976, 13.281922 ], [ 144.661997, 13.281818 ], [ 144.661999, 13.281811 ], [ 144.662046, 13.281744 ], [ 144.662061, 13.281673 ], [ 144.662062, 13.281558 ], [ 144.662108, 13.281348 ], [ 144.662047, 13.281032 ], [ 144.662029, 13.280936 ], [ 144.66203, 13.280816 ], [ 144.662031, 13.280721 ], [ 144.662038, 13.280639 ], [ 144.662048, 13.28053 ], [ 144.662088, 13.280411 ], [ 144.662153, 13.280239 ], [ 144.662232, 13.280125 ], [ 144.662296, 13.280092 ], [ 144.662351, 13.280016 ], [ 144.662371, 13.279878 ], [ 144.662475, 13.27975 ], [ 144.662504, 13.279596 ], [ 144.662521, 13.279511 ], [ 144.662571, 13.279397 ], [ 144.662666, 13.27924 ], [ 144.66272, 13.27914 ], [ 144.66275, 13.279049 ], [ 144.662805, 13.27894 ], [ 144.662924, 13.278726 ], [ 144.662966, 13.278676 ], [ 144.663028, 13.278603 ], [ 144.663185, 13.278499 ], [ 144.663279, 13.278375 ], [ 144.663377, 13.278338 ], [ 144.66347, 13.278286 ], [ 144.663544, 13.27821 ], [ 144.663614, 13.278096 ], [ 144.66362, 13.277939 ], [ 144.663665, 13.277829 ], [ 144.663705, 13.277748 ], [ 144.663715, 13.277691 ], [ 144.663647, 13.277638 ], [ 144.66357, 13.27756 ], [ 144.663561, 13.27745 ], [ 144.663584, 13.27736 ], [ 144.663629, 13.277269 ], [ 144.663663, 13.277246 ], [ 144.663663, 13.277177 ], [ 144.663664, 13.277169 ], [ 144.663631, 13.277097 ], [ 144.663582, 13.277035 ], [ 144.66351, 13.276957 ], [ 144.663506, 13.27689 ], [ 144.663531, 13.276833 ], [ 144.663536, 13.276762 ], [ 144.663537, 13.276671 ], [ 144.663543, 13.276594 ], [ 144.663597, 13.276561 ], [ 144.663661, 13.276528 ], [ 144.663685, 13.2765 ], [ 144.663676, 13.276438 ], [ 144.663677, 13.276431 ], [ 144.663712, 13.276242 ], [ 144.663761, 13.276199 ], [ 144.663787, 13.276056 ], [ 144.663812, 13.275994 ], [ 144.663828, 13.275904 ], [ 144.663804, 13.275808 ], [ 144.663765, 13.275756 ], [ 144.663761, 13.27575 ], [ 144.663688, 13.275711 ], [ 144.66363, 13.275667 ], [ 144.663591, 13.2756 ], [ 144.663597, 13.275519 ], [ 144.663617, 13.275452 ], [ 144.663657, 13.275362 ], [ 144.663692, 13.275252 ], [ 144.663703, 13.275157 ], [ 144.663675, 13.275056 ], [ 144.663617, 13.274955 ], [ 144.663564, 13.274873 ], [ 144.663498, 13.274882 ], [ 144.66343, 13.27481 ], [ 144.663403, 13.274777 ], [ 144.6633, 13.274651 ], [ 144.663296, 13.274574 ], [ 144.663272, 13.274493 ], [ 144.66321, 13.27443 ], [ 144.663132, 13.27441 ], [ 144.663064, 13.274338 ], [ 144.663001, 13.274256 ], [ 144.662944, 13.274169 ], [ 144.662862, 13.274063 ], [ 144.66277, 13.273924 ], [ 144.662664, 13.27378 ], [ 144.662573, 13.273607 ], [ 144.662491, 13.273477 ], [ 144.662444, 13.273342 ], [ 144.662397, 13.273165 ], [ 144.662355, 13.272973 ], [ 144.662331, 13.272839 ], [ 144.662338, 13.272682 ], [ 144.662354, 13.272495 ], [ 144.662423, 13.272228 ], [ 144.662441, 13.272179 ], [ 144.662488, 13.272057 ], [ 144.662499, 13.27201 ], [ 144.662421, 13.271893 ], [ 144.662397, 13.271836 ], [ 144.662319, 13.271797 ], [ 144.662232, 13.271724 ], [ 144.66214, 13.271657 ], [ 144.66197, 13.27155 ], [ 144.661898, 13.271497 ], [ 144.661893, 13.271425 ], [ 144.661952, 13.27134 ], [ 144.661973, 13.271311 ], [ 144.662037, 13.271254 ], [ 144.662091, 13.271159 ], [ 144.662165, 13.271073 ], [ 144.662273, 13.270998 ], [ 144.662303, 13.270959 ], [ 144.662348, 13.270903 ], [ 144.662417, 13.270827 ], [ 144.662456, 13.270741 ], [ 144.662555, 13.270675 ], [ 144.662673, 13.270586 ], [ 144.662796, 13.270486 ], [ 144.662933, 13.270425 ], [ 144.663052, 13.270274 ], [ 144.663074, 13.270221 ], [ 144.663081, 13.270207 ], [ 144.663155, 13.270126 ], [ 144.663215, 13.270079 ], [ 144.663263, 13.270065 ], [ 144.663535, 13.269771 ], [ 144.663531, 13.269695 ], [ 144.663595, 13.269614 ], [ 144.66365, 13.269481 ], [ 144.66368, 13.26938 ], [ 144.663759, 13.269266 ], [ 144.663943, 13.268972 ], [ 144.664002, 13.268853 ], [ 144.664067, 13.268705 ], [ 144.664156, 13.268567 ], [ 144.664216, 13.268443 ], [ 144.664281, 13.268291 ], [ 144.664371, 13.268105 ], [ 144.66444, 13.267986 ], [ 144.664478, 13.26791 ], [ 144.664505, 13.267858 ], [ 144.664612, 13.267663 ], [ 144.664926, 13.267474 ], [ 144.665044, 13.267423 ], [ 144.665162, 13.267343 ], [ 144.665231, 13.267267 ], [ 144.665353, 13.267182 ], [ 144.6655, 13.267126 ], [ 144.66553, 13.267093 ], [ 144.665526, 13.267026 ], [ 144.66557, 13.266978 ], [ 144.665752, 13.266875 ], [ 144.665855, 13.266823 ], [ 144.665953, 13.266805 ], [ 144.666021, 13.266772 ], [ 144.666066, 13.266701 ], [ 144.666184, 13.266621 ], [ 144.666336, 13.266545 ], [ 144.666419, 13.266519 ], [ 144.666566, 13.266476 ], [ 144.666645, 13.266367 ], [ 144.666703, 13.266391 ], [ 144.666772, 13.266401 ], [ 144.666815, 13.26643 ], [ 144.666879, 13.266412 ], [ 144.666913, 13.266383 ], [ 144.667104, 13.266328 ], [ 144.667192, 13.266286 ], [ 144.667345, 13.266196 ], [ 144.667428, 13.266163 ], [ 144.667541, 13.266088 ], [ 144.66764, 13.266027 ], [ 144.667659, 13.266032 ], [ 144.667687, 13.266 ], [ 144.667775, 13.265943 ], [ 144.667869, 13.265892 ], [ 144.667918, 13.265816 ], [ 144.668041, 13.265731 ], [ 144.668139, 13.265641 ], [ 144.668262, 13.265575 ], [ 144.668331, 13.265528 ], [ 144.668483, 13.265453 ], [ 144.668537, 13.265396 ], [ 144.668645, 13.265344 ], [ 144.668675, 13.265316 ], [ 144.668641, 13.265267 ], [ 144.668666, 13.26521 ], [ 144.668861, 13.265179 ], [ 144.668935, 13.265151 ], [ 144.669067, 13.265085 ], [ 144.669303, 13.264944 ], [ 144.669411, 13.264863 ], [ 144.669592, 13.264793 ], [ 144.669715, 13.264723 ], [ 144.66976, 13.264651 ], [ 144.669868, 13.264576 ], [ 144.669991, 13.264467 ], [ 144.670021, 13.264391 ], [ 144.670046, 13.264343 ], [ 144.670124, 13.264334 ], [ 144.670253, 13.264272 ], [ 144.670438, 13.264184 ], [ 144.670526, 13.264123 ], [ 144.670556, 13.264056 ], [ 144.67062, 13.264009 ], [ 144.670777, 13.26392 ], [ 144.670875, 13.263849 ], [ 144.671024, 13.263664 ], [ 144.671064, 13.263535 ], [ 144.671079, 13.263454 ], [ 144.6711, 13.263377 ], [ 144.671164, 13.263306 ], [ 144.671199, 13.26323 ], [ 144.671277, 13.263188 ], [ 144.671336, 13.263107 ], [ 144.671376, 13.26304 ], [ 144.671454, 13.262931 ], [ 144.671465, 13.262917 ], [ 144.671573, 13.262841 ], [ 144.671642, 13.26277 ], [ 144.67175, 13.262723 ], [ 144.671867, 13.26271 ], [ 144.671985, 13.262718 ], [ 144.672014, 13.262721 ], [ 144.672096, 13.262774 ], [ 144.672174, 13.262794 ], [ 144.672238, 13.262785 ], [ 144.672283, 13.262743 ], [ 144.672356, 13.262676 ], [ 144.672459, 13.26263 ], [ 144.672558, 13.262617 ], [ 144.672601, 13.262612 ], [ 144.672717, 13.262587 ], [ 144.672733, 13.262584 ], [ 144.672835, 13.262595 ], [ 144.672879, 13.262619 ], [ 144.672963, 13.262725 ], [ 144.673036, 13.262721 ], [ 144.673042, 13.262683 ], [ 144.673105, 13.262652 ], [ 144.67312, 13.262645 ], [ 144.673189, 13.262603 ], [ 144.673241, 13.262564 ], [ 144.673272, 13.262541 ], [ 144.673331, 13.262508 ], [ 144.67337, 13.262528 ], [ 144.673419, 13.262524 ], [ 144.67346, 13.262493 ], [ 144.673478, 13.262481 ], [ 144.673517, 13.262438 ], [ 144.673542, 13.262391 ], [ 144.673553, 13.262338 ], [ 144.673504, 13.262338 ], [ 144.67346, 13.262361 ], [ 144.673396, 13.262351 ], [ 144.673338, 13.262322 ], [ 144.673314, 13.26226 ], [ 144.673305, 13.262221 ], [ 144.673306, 13.262116 ], [ 144.673272, 13.262101 ], [ 144.673228, 13.262072 ], [ 144.673222, 13.262038 ], [ 144.673214, 13.261986 ], [ 144.673239, 13.261943 ], [ 144.673298, 13.261906 ], [ 144.673371, 13.261878 ], [ 144.673357, 13.261849 ], [ 144.673372, 13.261801 ], [ 144.673411, 13.261782 ], [ 144.673427, 13.261696 ], [ 144.673442, 13.261654 ], [ 144.673476, 13.261649 ], [ 144.6735, 13.261673 ], [ 144.673544, 13.261654 ], [ 144.67353, 13.261611 ], [ 144.673477, 13.261577 ], [ 144.673433, 13.261543 ], [ 144.673453, 13.261501 ], [ 144.673497, 13.261458 ], [ 144.673571, 13.261425 ], [ 144.67363, 13.261392 ], [ 144.67368, 13.261384 ], [ 144.673718, 13.261379 ], [ 144.673806, 13.261394 ], [ 144.673855, 13.261351 ], [ 144.673889, 13.261309 ], [ 144.673958, 13.261304 ], [ 144.674006, 13.261386 ], [ 144.674059, 13.261444 ], [ 144.674073, 13.261492 ], [ 144.674078, 13.261545 ], [ 144.674105, 13.261587 ], [ 144.674121, 13.261598 ], [ 144.674141, 13.261536 ], [ 144.674146, 13.261483 ], [ 144.674186, 13.261407 ], [ 144.674245, 13.261379 ], [ 144.674304, 13.261341 ], [ 144.674319, 13.261274 ], [ 144.67432, 13.261198 ], [ 144.67434, 13.261107 ], [ 144.674351, 13.261007 ], [ 144.674347, 13.260906 ], [ 144.674333, 13.26082 ], [ 144.674257, 13.260662 ], [ 144.674228, 13.26059 ], [ 144.674214, 13.260542 ], [ 144.674151, 13.260508 ], [ 144.674105, 13.260488 ], [ 144.674037, 13.260425 ], [ 144.674027, 13.260404 ], [ 144.673989, 13.260325 ], [ 144.673956, 13.260219 ], [ 144.673913, 13.260109 ], [ 144.673902, 13.259957 ], [ 144.673896, 13.259865 ], [ 144.673908, 13.259602 ], [ 144.673934, 13.259444 ], [ 144.67397, 13.259282 ], [ 144.673991, 13.25912 ], [ 144.674016, 13.259045 ], [ 144.674033, 13.258999 ], [ 144.674044, 13.258984 ], [ 144.674042, 13.258914 ], [ 144.67405, 13.258817 ], [ 144.674053, 13.258785 ], [ 144.674063, 13.25874 ], [ 144.674068, 13.258716 ], [ 144.674083, 13.258652 ], [ 144.674084, 13.258646 ], [ 144.674091, 13.258623 ], [ 144.67413, 13.258482 ], [ 144.674149, 13.258418 ], [ 144.674208, 13.258323 ], [ 144.674258, 13.258204 ], [ 144.674303, 13.258082 ], [ 144.674323, 13.258032 ], [ 144.674339, 13.257942 ], [ 144.674428, 13.257789 ], [ 144.674443, 13.257766 ], [ 144.674508, 13.257642 ], [ 144.674597, 13.257499 ], [ 144.674642, 13.257409 ], [ 144.674618, 13.257361 ], [ 144.674646, 13.257333 ], [ 144.674682, 13.257299 ], [ 144.674726, 13.257262 ], [ 144.674766, 13.257205 ], [ 144.674722, 13.257123 ], [ 144.674728, 13.257022 ], [ 144.674747, 13.257023 ], [ 144.674797, 13.257028 ], [ 144.674845, 13.257057 ], [ 144.674909, 13.25701 ], [ 144.674983, 13.256915 ], [ 144.675072, 13.256839 ], [ 144.675126, 13.25673 ], [ 144.675188, 13.256653 ], [ 144.67522, 13.256616 ], [ 144.675329, 13.256492 ], [ 144.675412, 13.256431 ], [ 144.675472, 13.256417 ], [ 144.675491, 13.256413 ], [ 144.675554, 13.25637 ], [ 144.675658, 13.25629 ], [ 144.675654, 13.256223 ], [ 144.675713, 13.256161 ], [ 144.675757, 13.256104 ], [ 144.675796, 13.25612 ], [ 144.675806, 13.256124 ], [ 144.675938, 13.256043 ], [ 144.675968, 13.256025 ], [ 144.675924, 13.255962 ], [ 144.675979, 13.255901 ], [ 144.676087, 13.255796 ], [ 144.676249, 13.255678 ], [ 144.676348, 13.255588 ], [ 144.676441, 13.255546 ], [ 144.676479, 13.255495 ], [ 144.676505, 13.255461 ], [ 144.676575, 13.255351 ], [ 144.676703, 13.255224 ], [ 144.676786, 13.255153 ], [ 144.676895, 13.255067 ], [ 144.676978, 13.254973 ], [ 144.677087, 13.254897 ], [ 144.67716, 13.25484 ], [ 144.677324, 13.254588 ], [ 144.677493, 13.254466 ], [ 144.677777, 13.254392 ], [ 144.677855, 13.254459 ], [ 144.677947, 13.254489 ], [ 144.678001, 13.254494 ], [ 144.67804, 13.254456 ], [ 144.678113, 13.254457 ], [ 144.678157, 13.2545 ], [ 144.67824, 13.254516 ], [ 144.678303, 13.25454 ], [ 144.678313, 13.254497 ], [ 144.678309, 13.254435 ], [ 144.678375, 13.254397 ], [ 144.678441, 13.25436 ], [ 144.678544, 13.254313 ], [ 144.678642, 13.254275 ], [ 144.678925, 13.254283 ], [ 144.679052, 13.254308 ], [ 144.679189, 13.25429 ], [ 144.679325, 13.254301 ], [ 144.67952, 13.254331 ], [ 144.679568, 13.254331 ], [ 144.679618, 13.254332 ], [ 144.67971, 13.254352 ], [ 144.679769, 13.254329 ], [ 144.679818, 13.254358 ], [ 144.679817, 13.254444 ], [ 144.679778, 13.254477 ], [ 144.679821, 13.254496 ], [ 144.679938, 13.254507 ], [ 144.679968, 13.254498 ], [ 144.679944, 13.254464 ], [ 144.679988, 13.254417 ], [ 144.680018, 13.254393 ], [ 144.680169, 13.254375 ], [ 144.680301, 13.254376 ], [ 144.68034, 13.254415 ], [ 144.680407, 13.254421 ], [ 144.680447, 13.254426 ], [ 144.68054, 13.254422 ], [ 144.680625, 13.254379 ], [ 144.680699, 13.254351 ], [ 144.680774, 13.254341 ], [ 144.680831, 13.254333 ], [ 144.680916, 13.254338 ], [ 144.681236, 13.254361 ], [ 144.681269, 13.25437 ], [ 144.681372, 13.254401 ], [ 144.681446, 13.254373 ], [ 144.681582, 13.25435 ], [ 144.681695, 13.254351 ], [ 144.681787, 13.254342 ], [ 144.681876, 13.254319 ], [ 144.681988, 13.254268 ], [ 144.682111, 13.254221 ], [ 144.682209, 13.254207 ], [ 144.682257, 13.254222 ], [ 144.682325, 13.254228 ], [ 144.682409, 13.254204 ], [ 144.682532, 13.254119 ], [ 144.682615, 13.254096 ], [ 144.682683, 13.254059 ], [ 144.682685, 13.254057 ], [ 144.682801, 13.254002 ], [ 144.682875, 13.253931 ], [ 144.682993, 13.253885 ], [ 144.683134, 13.253882 ], [ 144.683163, 13.253881 ], [ 144.683329, 13.253883 ], [ 144.683393, 13.253928 ], [ 144.683471, 13.253918 ], [ 144.683525, 13.253889 ], [ 144.683637, 13.253895 ], [ 144.683763, 13.253944 ], [ 144.683811, 13.254016 ], [ 144.683884, 13.254074 ], [ 144.683947, 13.254147 ], [ 144.683995, 13.254181 ], [ 144.684019, 13.254272 ], [ 144.684003, 13.254377 ], [ 144.684017, 13.254453 ], [ 144.684021, 13.254592 ], [ 144.684035, 13.254678 ], [ 144.684073, 13.254784 ], [ 144.684077, 13.254855 ], [ 144.684109, 13.254984 ], [ 144.684119, 13.255023 ], [ 144.684123, 13.2551 ], [ 144.684157, 13.255153 ], [ 144.684181, 13.255229 ], [ 144.684234, 13.25522 ], [ 144.684283, 13.255249 ], [ 144.684297, 13.255288 ], [ 144.684277, 13.25534 ], [ 144.684252, 13.255378 ], [ 144.684311, 13.255407 ], [ 144.684369, 13.255427 ], [ 144.684437, 13.255442 ], [ 144.684472, 13.255404 ], [ 144.684497, 13.255342 ], [ 144.684537, 13.255194 ], [ 144.684538, 13.255124 ], [ 144.684553, 13.255113 ], [ 144.684529, 13.255032 ], [ 144.684525, 13.25497 ], [ 144.684545, 13.254917 ], [ 144.684579, 13.25487 ], [ 144.684619, 13.254851 ], [ 144.684653, 13.25487 ], [ 144.684661, 13.25498 ], [ 144.684635, 13.255133 ], [ 144.684605, 13.255262 ], [ 144.684604, 13.255338 ], [ 144.684574, 13.255462 ], [ 144.684563, 13.255525 ], [ 144.684534, 13.255572 ], [ 144.68447, 13.255581 ], [ 144.684407, 13.255571 ], [ 144.684348, 13.255609 ], [ 144.684313, 13.255642 ], [ 144.684269, 13.255661 ], [ 144.684264, 13.255694 ], [ 144.684269, 13.255723 ], [ 144.684239, 13.25577 ], [ 144.684248, 13.255813 ], [ 144.684263, 13.255847 ], [ 144.684307, 13.255847 ], [ 144.68435, 13.255862 ], [ 144.684389, 13.255934 ], [ 144.684413, 13.255963 ], [ 144.684447, 13.255954 ], [ 144.684453, 13.255815 ], [ 144.684483, 13.255782 ], [ 144.684507, 13.255806 ], [ 144.684486, 13.256016 ], [ 144.6845, 13.256045 ], [ 144.684529, 13.25606 ], [ 144.684568, 13.256027 ], [ 144.684584, 13.255984 ], [ 144.68461, 13.255726 ], [ 144.684673, 13.255334 ], [ 144.684709, 13.255129 ], [ 144.684744, 13.255062 ], [ 144.684788, 13.255048 ], [ 144.684807, 13.255082 ], [ 144.684792, 13.25513 ], [ 144.684761, 13.255292 ], [ 144.68474, 13.255426 ], [ 144.684734, 13.255502 ], [ 144.684754, 13.255531 ], [ 144.684773, 13.255569 ], [ 144.684817, 13.255551 ], [ 144.684852, 13.255513 ], [ 144.684905, 13.255523 ], [ 144.684914, 13.255585 ], [ 144.684952, 13.25571 ], [ 144.684961, 13.255777 ], [ 144.684996, 13.255795 ], [ 144.685092, 13.255845 ], [ 144.685273, 13.255851 ], [ 144.68541, 13.255843 ], [ 144.685478, 13.255805 ], [ 144.685567, 13.255782 ], [ 144.68564, 13.255783 ], [ 144.685722, 13.255827 ], [ 144.685771, 13.255846 ], [ 144.68582, 13.255828 ], [ 144.685908, 13.255848 ], [ 144.685961, 13.255881 ], [ 144.685985, 13.255939 ], [ 144.685979, 13.256001 ], [ 144.685974, 13.256082 ], [ 144.685998, 13.256111 ], [ 144.68611, 13.25617 ], [ 144.686119, 13.256203 ], [ 144.686172, 13.256242 ], [ 144.686182, 13.256213 ], [ 144.686173, 13.256161 ], [ 144.686178, 13.256132 ], [ 144.686203, 13.25608 ], [ 144.686262, 13.256009 ], [ 144.686318, 13.25598 ], [ 144.686361, 13.255957 ], [ 144.686434, 13.255929 ], [ 144.686463, 13.255939 ], [ 144.686517, 13.255977 ], [ 144.686551, 13.255939 ], [ 144.686557, 13.255877 ], [ 144.686576, 13.255849 ], [ 144.68666, 13.255807 ], [ 144.68667, 13.255778 ], [ 144.686661, 13.255716 ], [ 144.686593, 13.255624 ], [ 144.686584, 13.255581 ], [ 144.686614, 13.255519 ], [ 144.686618, 13.255454 ], [ 144.686619, 13.255448 ], [ 144.68666, 13.255304 ], [ 144.686704, 13.255267 ], [ 144.686743, 13.255267 ], [ 144.686777, 13.255234 ], [ 144.686797, 13.255196 ], [ 144.686818, 13.255024 ], [ 144.686809, 13.254962 ], [ 144.686737, 13.254851 ], [ 144.686713, 13.254789 ], [ 144.686709, 13.254722 ], [ 144.686763, 13.254674 ], [ 144.686822, 13.25466 ], [ 144.686877, 13.254556 ], [ 144.686936, 13.254513 ], [ 144.687004, 13.254485 ], [ 144.687023, 13.254505 ], [ 144.687058, 13.254481 ], [ 144.687039, 13.254442 ], [ 144.687064, 13.25439 ], [ 144.687119, 13.254214 ], [ 144.687149, 13.254152 ], [ 144.687193, 13.25408 ], [ 144.687272, 13.254024 ], [ 144.687336, 13.253996 ], [ 144.687404, 13.254006 ], [ 144.687487, 13.254026 ], [ 144.687492, 13.253978 ], [ 144.687458, 13.25393 ], [ 144.687449, 13.253882 ], [ 144.687469, 13.253853 ], [ 144.687474, 13.253782 ], [ 144.687397, 13.253748 ], [ 144.687402, 13.253705 ], [ 144.687431, 13.253681 ], [ 144.687462, 13.253641 ], [ 144.687466, 13.253638 ], [ 144.68751, 13.2536 ], [ 144.687545, 13.253534 ], [ 144.68757, 13.253477 ], [ 144.687581, 13.253376 ], [ 144.687547, 13.253338 ], [ 144.687528, 13.253299 ], [ 144.687523, 13.253247 ], [ 144.687529, 13.253175 ], [ 144.68753, 13.253103 ], [ 144.687545, 13.253051 ], [ 144.687584, 13.253027 ], [ 144.687604, 13.252975 ], [ 144.687585, 13.252932 ], [ 144.687571, 13.252879 ], [ 144.687567, 13.252822 ], [ 144.687552, 13.252769 ], [ 144.687523, 13.252759 ], [ 144.687479, 13.252763 ], [ 144.68747, 13.252751 ], [ 144.687445, 13.25272 ], [ 144.687446, 13.252634 ], [ 144.687462, 13.252572 ], [ 144.687505, 13.252572 ], [ 144.687534, 13.252601 ], [ 144.687569, 13.252583 ], [ 144.687564, 13.25252 ], [ 144.687624, 13.252401 ], [ 144.687644, 13.252344 ], [ 144.687657, 13.252314 ], [ 144.687674, 13.252277 ], [ 144.687749, 13.252135 ], [ 144.687832, 13.252059 ], [ 144.687877, 13.252045 ], [ 144.687901, 13.252069 ], [ 144.687931, 13.252055 ], [ 144.687964, 13.252041 ], [ 144.688009, 13.251998 ], [ 144.687985, 13.251931 ], [ 144.688017, 13.251855 ], [ 144.688067, 13.251808 ], [ 144.688101, 13.25177 ], [ 144.688126, 13.251708 ], [ 144.688176, 13.251627 ], [ 144.688259, 13.251575 ], [ 144.688304, 13.251553 ], [ 144.688357, 13.251528 ], [ 144.688431, 13.251471 ], [ 144.688501, 13.251443 ], [ 144.688524, 13.251434 ], [ 144.688642, 13.251411 ], [ 144.68869, 13.251416 ], [ 144.688711, 13.251427 ], [ 144.688744, 13.251407 ], [ 144.688789, 13.251322 ], [ 144.688804, 13.251236 ], [ 144.688859, 13.25115 ], [ 144.688933, 13.251096 ], [ 144.689055, 13.251009 ], [ 144.689148, 13.250971 ], [ 144.689217, 13.250938 ], [ 144.68932, 13.250939 ], [ 144.689368, 13.25093 ], [ 144.689442, 13.250907 ], [ 144.689515, 13.250874 ], [ 144.689603, 13.250865 ], [ 144.689652, 13.250851 ], [ 144.689692, 13.250833 ], [ 144.689711, 13.250871 ], [ 144.68972, 13.250905 ], [ 144.689759, 13.250914 ], [ 144.689828, 13.250891 ], [ 144.689877, 13.250849 ], [ 144.689931, 13.25083 ], [ 144.690053, 13.250802 ], [ 144.690102, 13.250779 ], [ 144.69019, 13.250775 ], [ 144.690298, 13.250733 ], [ 144.690342, 13.25069 ], [ 144.69041, 13.250686 ], [ 144.690484, 13.250663 ], [ 144.690596, 13.25065 ], [ 144.690659, 13.250639 ], [ 144.690728, 13.250627 ], [ 144.690968, 13.250619 ], [ 144.691006, 13.250663 ], [ 144.691101, 13.250697 ], [ 144.691174, 13.250688 ], [ 144.691204, 13.250655 ], [ 144.691219, 13.250612 ], [ 144.691292, 13.250618 ], [ 144.691394, 13.250638 ], [ 144.691448, 13.250667 ], [ 144.691516, 13.250696 ], [ 144.691564, 13.250735 ], [ 144.691584, 13.250764 ], [ 144.691618, 13.25078 ], [ 144.691647, 13.250793 ], [ 144.69171, 13.250803 ], [ 144.691769, 13.250789 ], [ 144.691793, 13.250766 ], [ 144.691862, 13.250761 ], [ 144.69192, 13.250776 ], [ 144.692086, 13.250797 ], [ 144.692159, 13.250788 ], [ 144.692243, 13.250765 ], [ 144.692301, 13.250737 ], [ 144.692365, 13.250742 ], [ 144.692438, 13.250762 ], [ 144.692467, 13.2508 ], [ 144.692486, 13.250853 ], [ 144.69253, 13.250873 ], [ 144.692598, 13.250883 ], [ 144.692759, 13.250899 ], [ 144.692827, 13.250899 ], [ 144.692856, 13.25089 ], [ 144.692853, 13.250877 ], [ 144.692842, 13.250828 ], [ 144.692872, 13.250785 ], [ 144.692901, 13.250785 ], [ 144.692907, 13.250752 ], [ 144.692926, 13.250704 ], [ 144.69301, 13.250647 ], [ 144.693098, 13.250624 ], [ 144.693136, 13.250624 ], [ 144.693205, 13.250625 ], [ 144.693303, 13.250664 ], [ 144.693376, 13.250675 ], [ 144.693468, 13.250728 ], [ 144.693502, 13.250781 ], [ 144.693526, 13.250805 ], [ 144.693575, 13.250734 ], [ 144.693615, 13.250696 ], [ 144.693659, 13.250668 ], [ 144.693713, 13.250625 ], [ 144.693743, 13.250578 ], [ 144.693797, 13.250573 ], [ 144.69387, 13.250555 ], [ 144.693934, 13.250512 ], [ 144.693973, 13.250465 ], [ 144.694008, 13.250441 ], [ 144.694074, 13.250437 ], [ 144.694103, 13.250427 ], [ 144.694172, 13.250405 ], [ 144.69427, 13.250334 ], [ 144.694338, 13.25031 ], [ 144.694441, 13.250302 ], [ 144.694544, 13.250269 ], [ 144.694671, 13.250213 ], [ 144.69475, 13.25019 ], [ 144.694799, 13.250119 ], [ 144.694887, 13.250091 ], [ 144.694961, 13.250039 ], [ 144.695044, 13.250044 ], [ 144.695107, 13.250026 ], [ 144.695196, 13.249993 ], [ 144.695347, 13.250004 ], [ 144.695401, 13.249976 ], [ 144.695406, 13.249918 ], [ 144.695485, 13.249881 ], [ 144.695544, 13.249824 ], [ 144.695617, 13.249786 ], [ 144.69571, 13.249787 ], [ 144.695788, 13.249769 ], [ 144.695852, 13.249736 ], [ 144.695935, 13.249718 ], [ 144.696009, 13.249709 ], [ 144.696057, 13.249695 ], [ 144.696063, 13.249647 ], [ 144.696097, 13.249609 ], [ 144.696151, 13.249576 ], [ 144.696181, 13.249529 ], [ 144.696235, 13.249472 ], [ 144.696314, 13.249434 ], [ 144.696348, 13.249387 ], [ 144.696422, 13.249363 ], [ 144.696461, 13.249311 ], [ 144.69655, 13.249269 ], [ 144.696614, 13.249222 ], [ 144.696648, 13.249165 ], [ 144.696854, 13.249061 ], [ 144.697093, 13.248912 ], [ 144.697249, 13.248816 ], [ 144.697396, 13.248774 ], [ 144.697465, 13.248742 ], [ 144.697534, 13.248704 ], [ 144.697568, 13.248642 ], [ 144.697642, 13.248633 ], [ 144.697735, 13.248601 ], [ 144.697862, 13.248535 ], [ 144.698101, 13.248355 ], [ 144.698113, 13.248346 ], [ 144.698236, 13.24827 ], [ 144.698326, 13.248179 ], [ 144.698359, 13.248147 ], [ 144.698457, 13.248067 ], [ 144.698551, 13.24801 ], [ 144.698649, 13.247906 ], [ 144.698816, 13.247778 ], [ 144.698983, 13.247694 ], [ 144.699021, 13.247678 ], [ 144.699213, 13.247605 ], [ 144.699293, 13.247583 ], [ 144.69935, 13.247568 ], [ 144.699477, 13.24754 ], [ 144.699634, 13.247532 ], [ 144.699736, 13.247514 ], [ 144.699785, 13.24751 ], [ 144.699825, 13.247472 ], [ 144.699874, 13.247453 ], [ 144.699903, 13.247468 ], [ 144.699922, 13.247487 ], [ 144.699937, 13.247516 ], [ 144.699966, 13.247511 ], [ 144.70001, 13.247464 ], [ 144.700116, 13.247427 ], [ 144.700208, 13.247423 ], [ 144.700248, 13.247371 ], [ 144.700302, 13.247328 ], [ 144.700316, 13.247322 ], [ 144.700371, 13.2473 ], [ 144.700415, 13.247291 ], [ 144.700469, 13.247239 ], [ 144.700567, 13.247211 ], [ 144.70066, 13.247193 ], [ 144.700723, 13.247207 ], [ 144.700825, 13.247194 ], [ 144.700924, 13.247147 ], [ 144.700958, 13.247138 ], [ 144.701007, 13.247138 ], [ 144.70106, 13.24712 ], [ 144.701095, 13.247072 ], [ 144.701169, 13.247025 ], [ 144.701217, 13.24703 ], [ 144.701501, 13.247033 ], [ 144.701628, 13.247015 ], [ 144.701833, 13.247007 ], [ 144.702028, 13.246994 ], [ 144.702248, 13.246958 ], [ 144.702375, 13.246969 ], [ 144.702458, 13.24697 ], [ 144.702575, 13.246961 ], [ 144.70278, 13.246925 ], [ 144.702927, 13.246907 ], [ 144.703071, 13.246894 ], [ 144.703159, 13.24688 ], [ 144.703227, 13.246876 ], [ 144.703277, 13.246848 ], [ 144.70335, 13.246844 ], [ 144.703393, 13.246873 ], [ 144.703465, 13.246911 ], [ 144.703525, 13.246917 ], [ 144.703631, 13.246914 ], [ 144.703662, 13.246914 ], [ 144.703793, 13.2469 ], [ 144.704008, 13.246898 ], [ 144.70414, 13.24688 ], [ 144.704277, 13.246866 ], [ 144.70439, 13.246829 ], [ 144.704688, 13.246741 ], [ 144.704755, 13.246724 ], [ 144.70504, 13.246653 ], [ 144.705173, 13.246612 ], [ 144.705334, 13.246551 ], [ 144.705486, 13.2465 ], [ 144.70557, 13.246459 ], [ 144.705633, 13.246429 ], [ 144.706076, 13.246304 ], [ 144.706194, 13.246262 ], [ 144.706321, 13.246258 ], [ 144.706457, 13.246279 ], [ 144.706574, 13.246328 ], [ 144.706764, 13.246315 ], [ 144.706761, 13.24634 ], [ 144.706788, 13.246354 ], [ 144.706999, 13.246303 ], [ 144.707145, 13.246314 ], [ 144.707315, 13.246363 ], [ 144.707422, 13.246431 ], [ 144.70746, 13.246541 ], [ 144.707474, 13.246647 ], [ 144.707473, 13.246709 ], [ 144.707458, 13.246761 ], [ 144.707486, 13.246852 ], [ 144.70753, 13.246905 ], [ 144.707598, 13.246949 ], [ 144.707631, 13.246942 ], [ 144.707691, 13.246931 ], [ 144.707975, 13.246842 ], [ 144.708, 13.246771 ], [ 144.708054, 13.24669 ], [ 144.708128, 13.246648 ], [ 144.708146, 13.246641 ], [ 144.708195, 13.246636 ], [ 144.708362, 13.246687 ], [ 144.708375, 13.246691 ], [ 144.70839, 13.246694 ], [ 144.708453, 13.24671 ], [ 144.708474, 13.246719 ], [ 144.708501, 13.246731 ], [ 144.708643, 13.246793 ], [ 144.70872, 13.246842 ], [ 144.708839, 13.246889 ], [ 144.708954, 13.246935 ], [ 144.709134, 13.24697 ], [ 144.70927, 13.24699 ], [ 144.709358, 13.247015 ], [ 144.70945, 13.247088 ], [ 144.709596, 13.24717 ], [ 144.709776, 13.247239 ], [ 144.70988, 13.247275 ], [ 144.709931, 13.247293 ], [ 144.710024, 13.247337 ], [ 144.710199, 13.247372 ], [ 144.710238, 13.247377 ], [ 144.710326, 13.247387 ], [ 144.710497, 13.247389 ], [ 144.71075, 13.247476 ], [ 144.71094, 13.247541 ], [ 144.711144, 13.247595 ], [ 144.711319, 13.247625 ], [ 144.711466, 13.247646 ], [ 144.711539, 13.247618 ], [ 144.711622, 13.2476 ], [ 144.711695, 13.247634 ], [ 144.711774, 13.24761 ], [ 144.711861, 13.247621 ], [ 144.711939, 13.247665 ], [ 144.712012, 13.247641 ], [ 144.712096, 13.247589 ], [ 144.712151, 13.247554 ], [ 144.712172, 13.247549 ], [ 144.712189, 13.247533 ], [ 144.712241, 13.247511 ], [ 144.712268, 13.2475 ], [ 144.712327, 13.247458 ], [ 144.712405, 13.24743 ], [ 144.712508, 13.247359 ], [ 144.712572, 13.247283 ], [ 144.712686, 13.24725 ], [ 144.712719, 13.247241 ], [ 144.712812, 13.247271 ], [ 144.712943, 13.247334 ], [ 144.713083, 13.247421 ], [ 144.71336, 13.247558 ], [ 144.713462, 13.24763 ], [ 144.71357, 13.247671 ], [ 144.713657, 13.247704 ], [ 144.713788, 13.247767 ], [ 144.714095, 13.247818 ], [ 144.714221, 13.247881 ], [ 144.714377, 13.247925 ], [ 144.714538, 13.247946 ], [ 144.714757, 13.24801 ], [ 144.714889, 13.24804 ], [ 144.715006, 13.248051 ], [ 144.715054, 13.24808 ], [ 144.715073, 13.248204 ], [ 144.715095, 13.24842 ], [ 144.715147, 13.248554 ], [ 144.715234, 13.248693 ], [ 144.715297, 13.24878 ], [ 144.715427, 13.248901 ], [ 144.715733, 13.249133 ], [ 144.7158, 13.249214 ], [ 144.715805, 13.24922 ], [ 144.71597, 13.249279 ], [ 144.716112, 13.249313 ], [ 144.716277, 13.249343 ], [ 144.716501, 13.249422 ], [ 144.716529, 13.249532 ], [ 144.71657, 13.249671 ], [ 144.716743, 13.249878 ], [ 144.716782, 13.24995 ], [ 144.716846, 13.250025 ], [ 144.716869, 13.250052 ], [ 144.717004, 13.250153 ], [ 144.717096, 13.250245 ], [ 144.717174, 13.250289 ], [ 144.717242, 13.250366 ], [ 144.717353, 13.250477 ], [ 144.717508, 13.250574 ], [ 144.717649, 13.250671 ], [ 144.71778, 13.250705 ], [ 144.717902, 13.25073 ], [ 144.717956, 13.25075 ], [ 144.718165, 13.250828 ], [ 144.718292, 13.250839 ], [ 144.718388, 13.25087 ], [ 144.718428, 13.250883 ], [ 144.718715, 13.250934 ], [ 144.718817, 13.250968 ], [ 144.718936, 13.251017 ], [ 144.719031, 13.251056 ], [ 144.719065, 13.251085 ], [ 144.719075, 13.251119 ], [ 144.719197, 13.251129 ], [ 144.719231, 13.251072 ], [ 144.719325, 13.251035 ], [ 144.719404, 13.250925 ], [ 144.719438, 13.250891 ], [ 144.719539, 13.250793 ], [ 144.719682, 13.25066 ], [ 144.7198, 13.250532 ], [ 144.719923, 13.250438 ], [ 144.720031, 13.250348 ], [ 144.72012, 13.250301 ], [ 144.720237, 13.25023 ], [ 144.720346, 13.250116 ], [ 144.720489, 13.249979 ], [ 144.72074, 13.249709 ], [ 144.720873, 13.249576 ], [ 144.720932, 13.249509 ], [ 144.720982, 13.249433 ], [ 144.721017, 13.249352 ], [ 144.721052, 13.249291 ], [ 144.721023, 13.249209 ], [ 144.721014, 13.249137 ], [ 144.720995, 13.24908 ], [ 144.720947, 13.249046 ], [ 144.720918, 13.248979 ], [ 144.720879, 13.248916 ], [ 144.720846, 13.248844 ], [ 144.720847, 13.248777 ], [ 144.720819, 13.248614 ], [ 144.720829, 13.248543 ], [ 144.72081, 13.248509 ], [ 144.720771, 13.24848 ], [ 144.720718, 13.248475 ], [ 144.720673, 13.248503 ], [ 144.72062, 13.248493 ], [ 144.720593, 13.248435 ], [ 144.72058, 13.248354 ], [ 144.720585, 13.248263 ], [ 144.720611, 13.248177 ], [ 144.720656, 13.248034 ], [ 144.720691, 13.247953 ], [ 144.72075, 13.247877 ], [ 144.720892, 13.247807 ], [ 144.720936, 13.247812 ], [ 144.720961, 13.247774 ], [ 144.720986, 13.247683 ], [ 144.721036, 13.247579 ], [ 144.721095, 13.247498 ], [ 144.721346, 13.247279 ], [ 144.721415, 13.247219 ], [ 144.721474, 13.247176 ], [ 144.721523, 13.247133 ], [ 144.721587, 13.247134 ], [ 144.721665, 13.247144 ], [ 144.721703, 13.247202 ], [ 144.721732, 13.247212 ], [ 144.721786, 13.247198 ], [ 144.721806, 13.247141 ], [ 144.721773, 13.247083 ], [ 144.721763, 13.247026 ], [ 144.721793, 13.246959 ], [ 144.721838, 13.246916 ], [ 144.721872, 13.246941 ], [ 144.721911, 13.24695 ], [ 144.721921, 13.246903 ], [ 144.721945, 13.246869 ], [ 144.721975, 13.246875 ], [ 144.722018, 13.246904 ], [ 144.722072, 13.246899 ], [ 144.722116, 13.246847 ], [ 144.72217, 13.246833 ], [ 144.722209, 13.246862 ], [ 144.722252, 13.246954 ], [ 144.722291, 13.246987 ], [ 144.722325, 13.24704 ], [ 144.722353, 13.247146 ], [ 144.722357, 13.247203 ], [ 144.722386, 13.247266 ], [ 144.722415, 13.247318 ], [ 144.722458, 13.247343 ], [ 144.722512, 13.247367 ], [ 144.722546, 13.247372 ], [ 144.722551, 13.247343 ], [ 144.722498, 13.2473 ], [ 144.722479, 13.247252 ], [ 144.72247, 13.247104 ], [ 144.722481, 13.247051 ], [ 144.722466, 13.247008 ], [ 144.722428, 13.246989 ], [ 144.722413, 13.246941 ], [ 144.722448, 13.24686 ], [ 144.722498, 13.246807 ], [ 144.722541, 13.246813 ], [ 144.72257, 13.246856 ], [ 144.72258, 13.246889 ], [ 144.722629, 13.246871 ], [ 144.722629, 13.246823 ], [ 144.722649, 13.246799 ], [ 144.72264, 13.246761 ], [ 144.722616, 13.246708 ], [ 144.722597, 13.246655 ], [ 144.722578, 13.246574 ], [ 144.722588, 13.246536 ], [ 144.722652, 13.246512 ], [ 144.722813, 13.246471 ], [ 144.722872, 13.246443 ], [ 144.722965, 13.246424 ], [ 144.723053, 13.246387 ], [ 144.72315, 13.246351 ], [ 144.72318, 13.24634 ], [ 144.723484, 13.246238 ], [ 144.723558, 13.2462 ], [ 144.72368, 13.246153 ], [ 144.723756, 13.246133 ], [ 144.723802, 13.246121 ], [ 144.724012, 13.246109 ], [ 144.724105, 13.246138 ], [ 144.72427, 13.246206 ], [ 144.724358, 13.246231 ], [ 144.724426, 13.246241 ], [ 144.724504, 13.246247 ], [ 144.724543, 13.246276 ], [ 144.724576, 13.246343 ], [ 144.724615, 13.246396 ], [ 144.724665, 13.246446 ], [ 144.724731, 13.246512 ], [ 144.724784, 13.246522 ], [ 144.724824, 13.2465 ], [ 144.724882, 13.246523 ], [ 144.724965, 13.246571 ], [ 144.725073, 13.246574 ], [ 144.725121, 13.246601 ], [ 144.725157, 13.246625 ], [ 144.72516, 13.246702 ], [ 144.725237, 13.246764 ], [ 144.725285, 13.246855 ], [ 144.725269, 13.246935 ], [ 144.725205, 13.246994 ], [ 144.725141, 13.247106 ], [ 144.725002, 13.247111 ], [ 144.724927, 13.247148 ], [ 144.724905, 13.247188 ], [ 144.724817, 13.247239 ], [ 144.724724, 13.247253 ], [ 144.724656, 13.247257 ], [ 144.724616, 13.247305 ], [ 144.724563, 13.247299 ], [ 144.72448, 13.247313 ], [ 144.724421, 13.247355 ], [ 144.724464, 13.247404 ], [ 144.724522, 13.247433 ], [ 144.724556, 13.247457 ], [ 144.724687, 13.24749 ], [ 144.724735, 13.247543 ], [ 144.724765, 13.247578 ], [ 144.724794, 13.247607 ], [ 144.724799, 13.247641 ], [ 144.724789, 13.247669 ], [ 144.724769, 13.247708 ], [ 144.724749, 13.24777 ], [ 144.724729, 13.247812 ], [ 144.724733, 13.247884 ], [ 144.724767, 13.247913 ], [ 144.724816, 13.247914 ], [ 144.72487, 13.247876 ], [ 144.724963, 13.247848 ], [ 144.725043, 13.247819 ], [ 144.725154, 13.247778 ], [ 144.725232, 13.247779 ], [ 144.725276, 13.247798 ], [ 144.725363, 13.247871 ], [ 144.725426, 13.247933 ], [ 144.725459, 13.247981 ], [ 144.725517, 13.248035 ], [ 144.725566, 13.248064 ], [ 144.72561, 13.248102 ], [ 144.725663, 13.248132 ], [ 144.72577, 13.248128 ], [ 144.725931, 13.248143 ], [ 144.726058, 13.248125 ], [ 144.726132, 13.248121 ], [ 144.726181, 13.248084 ], [ 144.726216, 13.248003 ], [ 144.726231, 13.247936 ], [ 144.726251, 13.247869 ], [ 144.726262, 13.247797 ], [ 144.726287, 13.247707 ], [ 144.726293, 13.247616 ], [ 144.726288, 13.247539 ], [ 144.726217, 13.247333 ], [ 144.726188, 13.247295 ], [ 144.726125, 13.247246 ], [ 144.726077, 13.247193 ], [ 144.726053, 13.24714 ], [ 144.726053, 13.247078 ], [ 144.726093, 13.24705 ], [ 144.726122, 13.247007 ], [ 144.726099, 13.246954 ], [ 144.726085, 13.246887 ], [ 144.726129, 13.246845 ], [ 144.726212, 13.24685 ], [ 144.726265, 13.246875 ], [ 144.726358, 13.246875 ], [ 144.726417, 13.246842 ], [ 144.726437, 13.246785 ], [ 144.726437, 13.246728 ], [ 144.726418, 13.24667 ], [ 144.726394, 13.246637 ], [ 144.726336, 13.246607 ], [ 144.726322, 13.246555 ], [ 144.726381, 13.246512 ], [ 144.726469, 13.246479 ], [ 144.726591, 13.246442 ], [ 144.726617, 13.246442 ], [ 144.726704, 13.246443 ], [ 144.726879, 13.246502 ], [ 144.726996, 13.246503 ], [ 144.727113, 13.246485 ], [ 144.727206, 13.24652 ], [ 144.727257, 13.246514 ], [ 144.727325, 13.246506 ], [ 144.727364, 13.246559 ], [ 144.727393, 13.246636 ], [ 144.727382, 13.246722 ], [ 144.727356, 13.24686 ], [ 144.727405, 13.246913 ], [ 144.727399, 13.246976 ], [ 144.727379, 13.247076 ], [ 144.727373, 13.2472 ], [ 144.727322, 13.247396 ], [ 144.727311, 13.247505 ], [ 144.727281, 13.247596 ], [ 144.727276, 13.247677 ], [ 144.727216, 13.247792 ], [ 144.727118, 13.247867 ], [ 144.727068, 13.247938 ], [ 144.727062, 13.24802 ], [ 144.727023, 13.248086 ], [ 144.726988, 13.248186 ], [ 144.726953, 13.248258 ], [ 144.726938, 13.248301 ], [ 144.726883, 13.248377 ], [ 144.726829, 13.248496 ], [ 144.726803, 13.248582 ], [ 144.726798, 13.248627 ], [ 144.726782, 13.248797 ], [ 144.726786, 13.248964 ], [ 144.726835, 13.249094 ], [ 144.726956, 13.249248 ], [ 144.727125, 13.249421 ], [ 144.727406, 13.249644 ], [ 144.727605, 13.249794 ], [ 144.727823, 13.249915 ], [ 144.728091, 13.250047 ], [ 144.728397, 13.250183 ], [ 144.728645, 13.250286 ], [ 144.729252, 13.250578 ], [ 144.729635, 13.250749 ], [ 144.729789, 13.250817 ], [ 144.729832, 13.250833 ], [ 144.729984, 13.250891 ], [ 144.730213, 13.25096 ], [ 144.730403, 13.251004 ], [ 144.730451, 13.251013 ], [ 144.730559, 13.251035 ], [ 144.730664, 13.251048 ], [ 144.730919, 13.251081 ], [ 144.731047, 13.251029 ], [ 144.73115, 13.250968 ], [ 144.731341, 13.250927 ], [ 144.731453, 13.250942 ], [ 144.731496, 13.250981 ], [ 144.731472, 13.251009 ], [ 144.731354, 13.25107 ], [ 144.7313, 13.251142 ], [ 144.73124, 13.251213 ], [ 144.73118, 13.251257 ], [ 144.731088, 13.251326 ], [ 144.730936, 13.251401 ], [ 144.730848, 13.251391 ], [ 144.730819, 13.251343 ], [ 144.730786, 13.251309 ], [ 144.730747, 13.251294 ], [ 144.730697, 13.251332 ], [ 144.730682, 13.251389 ], [ 144.730681, 13.251495 ], [ 144.730748, 13.251639 ], [ 144.730872, 13.251941 ], [ 144.730973, 13.252105 ], [ 144.73106, 13.252282 ], [ 144.731161, 13.252417 ], [ 144.731262, 13.252518 ], [ 144.731354, 13.2526 ], [ 144.731432, 13.252654 ], [ 144.731505, 13.252693 ], [ 144.731593, 13.25266 ], [ 144.731623, 13.252617 ], [ 144.731701, 13.252575 ], [ 144.731761, 13.252465 ], [ 144.731923, 13.25239 ], [ 144.731986, 13.252391 ], [ 144.732084, 13.252411 ], [ 144.732162, 13.252416 ], [ 144.732235, 13.252374 ], [ 144.732353, 13.252322 ], [ 144.732455, 13.252323 ], [ 144.732524, 13.252295 ], [ 144.732588, 13.252234 ], [ 144.732676, 13.252206 ], [ 144.732725, 13.252221 ], [ 144.732756, 13.252304 ], [ 144.732756, 13.252322 ], [ 144.732783, 13.252334 ], [ 144.732819, 13.252341 ], [ 144.732852, 13.252371 ], [ 144.732848, 13.252407 ], [ 144.732862, 13.252439 ], [ 144.732868, 13.252452 ], [ 144.732937, 13.252482 ], [ 144.73301, 13.25248 ], [ 144.733051, 13.252438 ], [ 144.733051, 13.252382 ], [ 144.733058, 13.252343 ], [ 144.733092, 13.252324 ], [ 144.733108, 13.252295 ], [ 144.733132, 13.252269 ], [ 144.733165, 13.252279 ], [ 144.733198, 13.252325 ], [ 144.733217, 13.252371 ], [ 144.733213, 13.252462 ], [ 144.733235, 13.252641 ], [ 144.733268, 13.252664 ], [ 144.733324, 13.252691 ], [ 144.73331, 13.252723 ], [ 144.733197, 13.252784 ], [ 144.733144, 13.2528 ], [ 144.733117, 13.252855 ], [ 144.733086, 13.252939 ], [ 144.733132, 13.253014 ], [ 144.733105, 13.253076 ], [ 144.733114, 13.253144 ], [ 144.73312, 13.253252 ], [ 144.733106, 13.253297 ], [ 144.733082, 13.253342 ], [ 144.733075, 13.253375 ], [ 144.733051, 13.253443 ], [ 144.733044, 13.253514 ], [ 144.73306, 13.253593 ], [ 144.733083, 13.253612 ], [ 144.733129, 13.253626 ], [ 144.73315, 13.253636 ], [ 144.733262, 13.253692 ], [ 144.733321, 13.253758 ], [ 144.73335, 13.253823 ], [ 144.733386, 13.253934 ], [ 144.733401, 13.254071 ], [ 144.733423, 13.254224 ], [ 144.733445, 13.254341 ], [ 144.7335, 13.254514 ], [ 144.733555, 13.254638 ], [ 144.733624, 13.254775 ], [ 144.733673, 13.25486 ], [ 144.733741, 13.254955 ], [ 144.733802, 13.255099 ], [ 144.733857, 13.255184 ], [ 144.733899, 13.25527 ], [ 144.733903, 13.255279 ], [ 144.733938, 13.25537 ], [ 144.733984, 13.255445 ], [ 144.73406, 13.255541 ], [ 144.734099, 13.255632 ], [ 144.734168, 13.255707 ], [ 144.734174, 13.255714 ], [ 144.734247, 13.255776 ], [ 144.734379, 13.255859 ], [ 144.734458, 13.255886 ], [ 144.734485, 13.255866 ], [ 144.734502, 13.255827 ], [ 144.734552, 13.255828 ], [ 144.734608, 13.25588 ], [ 144.734653, 13.255995 ], [ 144.73466, 13.256053 ], [ 144.73466, 13.256115 ], [ 144.734661, 13.256258 ], [ 144.734692, 13.256477 ], [ 144.734715, 13.256558 ], [ 144.734737, 13.256617 ], [ 144.734794, 13.256731 ], [ 144.73486, 13.256771 ], [ 144.73491, 13.256833 ], [ 144.734926, 13.256905 ], [ 144.734958, 13.25699 ], [ 144.734964, 13.257094 ], [ 144.734996, 13.257192 ], [ 144.735061, 13.257329 ], [ 144.735114, 13.257408 ], [ 144.735159, 13.257506 ], [ 144.735179, 13.257571 ], [ 144.735218, 13.257639 ], [ 144.73527, 13.257738 ], [ 144.735313, 13.257748 ], [ 144.735357, 13.257709 ], [ 144.735396, 13.257713 ], [ 144.735465, 13.257795 ], [ 144.735505, 13.257827 ], [ 144.735575, 13.257841 ], [ 144.735619, 13.25786 ], [ 144.735627, 13.257864 ], [ 144.73566, 13.257894 ], [ 144.735677, 13.25794 ], [ 144.735696, 13.257969 ], [ 144.735762, 13.258051 ], [ 144.735811, 13.25809 ], [ 144.735831, 13.258126 ], [ 144.735834, 13.258175 ], [ 144.73588, 13.258244 ], [ 144.735921, 13.258293 ], [ 144.735957, 13.258329 ], [ 144.735986, 13.258375 ], [ 144.736026, 13.258418 ], [ 144.736059, 13.25846 ], [ 144.736038, 13.258528 ], [ 144.736015, 13.25857 ], [ 144.736008, 13.258603 ], [ 144.736017, 13.258632 ], [ 144.736044, 13.258649 ], [ 144.73605, 13.258691 ], [ 144.736072, 13.258773 ], [ 144.736092, 13.258805 ], [ 144.736122, 13.258825 ], [ 144.736131, 13.258868 ], [ 144.736151, 13.25892 ], [ 144.736223, 13.259051 ], [ 144.736252, 13.259054 ], [ 144.736276, 13.259041 ], [ 144.736312, 13.259061 ], [ 144.736371, 13.259117 ], [ 144.736438, 13.259121 ], [ 144.736464, 13.25916 ], [ 144.736467, 13.259193 ], [ 144.736487, 13.259196 ], [ 144.736677, 13.259116 ], [ 144.736757, 13.259088 ], [ 144.736943, 13.259041 ], [ 144.737, 13.259031 ], [ 144.737067, 13.258986 ], [ 144.737166, 13.258987 ], [ 144.737259, 13.258982 ], [ 144.737499, 13.258981 ], [ 144.737618, 13.258995 ], [ 144.737701, 13.258992 ], [ 144.737764, 13.259006 ], [ 144.7378, 13.259042 ], [ 144.73783, 13.25911 ], [ 144.737795, 13.25926 ], [ 144.737811, 13.259299 ], [ 144.737791, 13.259348 ], [ 144.737751, 13.259373 ], [ 144.737697, 13.259379 ], [ 144.737679, 13.259384 ], [ 144.737644, 13.259447 ], [ 144.737647, 13.259489 ], [ 144.737673, 13.259532 ], [ 144.737682, 13.259571 ], [ 144.737699, 13.2596 ], [ 144.737752, 13.259624 ], [ 144.737795, 13.25965 ], [ 144.737818, 13.259683 ], [ 144.737811, 13.259725 ], [ 144.737774, 13.259777 ], [ 144.737724, 13.259793 ], [ 144.737684, 13.259792 ], [ 144.737651, 13.259769 ], [ 144.737624, 13.25974 ], [ 144.737571, 13.259733 ], [ 144.737521, 13.259752 ], [ 144.737471, 13.259797 ], [ 144.737441, 13.259855 ], [ 144.737407, 13.259897 ], [ 144.73738, 13.259943 ], [ 144.737346, 13.26003 ], [ 144.737299, 13.260072 ], [ 144.737269, 13.260104 ], [ 144.737178, 13.260282 ], [ 144.73718, 13.260377 ], [ 144.737189, 13.260452 ], [ 144.737191, 13.260592 ], [ 144.737242, 13.260839 ], [ 144.737273, 13.261116 ], [ 144.737292, 13.261227 ], [ 144.737334, 13.261374 ], [ 144.737366, 13.261458 ], [ 144.737398, 13.261556 ], [ 144.737446, 13.261778 ], [ 144.737473, 13.261852 ], [ 144.73753, 13.262006 ], [ 144.737547, 13.26202 ], [ 144.737587, 13.26202 ], [ 144.73762, 13.262007 ], [ 144.73764, 13.26202 ], [ 144.737673, 13.262079 ], [ 144.737699, 13.262102 ], [ 144.737755, 13.262132 ], [ 144.737771, 13.262165 ], [ 144.737776, 13.262188 ], [ 144.737793, 13.262217 ], [ 144.737855, 13.262253 ], [ 144.737885, 13.262315 ], [ 144.737918, 13.262348 ], [ 144.738023, 13.262414 ], [ 144.738046, 13.26248 ], [ 144.738098, 13.262532 ], [ 144.738128, 13.262571 ], [ 144.738131, 13.26261 ], [ 144.738121, 13.262666 ], [ 144.7381, 13.262685 ], [ 144.73807, 13.262704 ], [ 144.738093, 13.262756 ], [ 144.738116, 13.26276 ], [ 144.738143, 13.262789 ], [ 144.738192, 13.262887 ], [ 144.738208, 13.262936 ], [ 144.738244, 13.262995 ], [ 144.738277, 13.263028 ], [ 144.738306, 13.263071 ], [ 144.738342, 13.263104 ], [ 144.738405, 13.263117 ], [ 144.738495, 13.263121 ], [ 144.738558, 13.263109 ], [ 144.738717, 13.263123 ], [ 144.738824, 13.263121 ], [ 144.738834, 13.263121 ], [ 144.739046, 13.263107 ], [ 144.73912, 13.263088 ], [ 144.739193, 13.263075 ], [ 144.739249, 13.263086 ], [ 144.739319, 13.26307 ], [ 144.739422, 13.263058 ], [ 144.739488, 13.263068 ], [ 144.739618, 13.263118 ], [ 144.739661, 13.263138 ], [ 144.739714, 13.263119 ], [ 144.739787, 13.26311 ], [ 144.73985, 13.263117 ], [ 144.739921, 13.263114 ], [ 144.739998, 13.263102 ], [ 144.740078, 13.263096 ], [ 144.740154, 13.263107 ], [ 144.740203, 13.263149 ], [ 144.740276, 13.263173 ], [ 144.740315, 13.263251 ], [ 144.740365, 13.263263 ], [ 144.740372, 13.263265 ], [ 144.740412, 13.263289 ], [ 144.740424, 13.263303 ], [ 144.740501, 13.26325 ], [ 144.740571, 13.263221 ], [ 144.740748, 13.263219 ], [ 144.740837, 13.26323 ], [ 144.740884, 13.26324 ], [ 144.740943, 13.26326 ], [ 144.741046, 13.263254 ], [ 144.741106, 13.263242 ], [ 144.741163, 13.263207 ], [ 144.741224, 13.26309 ], [ 144.741228, 13.262963 ], [ 144.741219, 13.262872 ], [ 144.741246, 13.262794 ], [ 144.74129, 13.262707 ], [ 144.741267, 13.262674 ], [ 144.741268, 13.262632 ], [ 144.741301, 13.262616 ], [ 144.741314, 13.262642 ], [ 144.741311, 13.262668 ], [ 144.741334, 13.262688 ], [ 144.741374, 13.262678 ], [ 144.741433, 13.262692 ], [ 144.741479, 13.262728 ], [ 144.741489, 13.262751 ], [ 144.741522, 13.26278 ], [ 144.741575, 13.26281 ], [ 144.741654, 13.262843 ], [ 144.741717, 13.26288 ], [ 144.741777, 13.262926 ], [ 144.741845, 13.263018 ], [ 144.741888, 13.263041 ], [ 144.741926, 13.26307 ], [ 144.741933, 13.263116 ], [ 144.741919, 13.263152 ], [ 144.741932, 13.263197 ], [ 144.741928, 13.263236 ], [ 144.74197, 13.263324 ], [ 144.741939, 13.263477 ], [ 144.741962, 13.263497 ], [ 144.742012, 13.26352 ], [ 144.742045, 13.263563 ], [ 144.742044, 13.263628 ], [ 144.742074, 13.263657 ], [ 144.742156, 13.263694 ], [ 144.742215, 13.263776 ], [ 144.742248, 13.263792 ], [ 144.742275, 13.263831 ], [ 144.742301, 13.263884 ], [ 144.74233, 13.263929 ], [ 144.742374, 13.263917 ], [ 144.742417, 13.263914 ], [ 144.742406, 13.263946 ], [ 144.742479, 13.264028 ], [ 144.742492, 13.264061 ], [ 144.742442, 13.264106 ], [ 144.742398, 13.264122 ], [ 144.742365, 13.264125 ], [ 144.742348, 13.264157 ], [ 144.742381, 13.264174 ], [ 144.742421, 13.264184 ], [ 144.742441, 13.264194 ], [ 144.742424, 13.26421 ], [ 144.742387, 13.26422 ], [ 144.742357, 13.264245 ], [ 144.742347, 13.264268 ], [ 144.74237, 13.264304 ], [ 144.74242, 13.264327 ], [ 144.742483, 13.264334 ], [ 144.742496, 13.264357 ], [ 144.742588, 13.26441 ], [ 144.742601, 13.264423 ], [ 144.742591, 13.264446 ], [ 144.742564, 13.264468 ], [ 144.742528, 13.264478 ], [ 144.742521, 13.26452 ], [ 144.7426, 13.264576 ], [ 144.742643, 13.26456 ], [ 144.74265, 13.264521 ], [ 144.742667, 13.264482 ], [ 144.742694, 13.264483 ], [ 144.74272, 13.264502 ], [ 144.742723, 13.264532 ], [ 144.742739, 13.264571 ], [ 144.742745, 13.264593 ], [ 144.742752, 13.26462 ], [ 144.74278, 13.264662 ], [ 144.742793, 13.264711 ], [ 144.742813, 13.26475 ], [ 144.742809, 13.264783 ], [ 144.742855, 13.264809 ], [ 144.742912, 13.264813 ], [ 144.742948, 13.264778 ], [ 144.742969, 13.264742 ], [ 144.743005, 13.264742 ], [ 144.743032, 13.264726 ], [ 144.743072, 13.264684 ], [ 144.743182, 13.264689 ], [ 144.743241, 13.264709 ], [ 144.743311, 13.264716 ], [ 144.743337, 13.264742 ], [ 144.743393, 13.264821 ], [ 144.743439, 13.264844 ], [ 144.743532, 13.26491 ], [ 144.743525, 13.264939 ], [ 144.743495, 13.264984 ], [ 144.743471, 13.265039 ], [ 144.743526, 13.265134 ], [ 144.743533, 13.265189 ], [ 144.743563, 13.26518 ], [ 144.743609, 13.26519 ], [ 144.743642, 13.265229 ], [ 144.743658, 13.265265 ], [ 144.743631, 13.265337 ], [ 144.743601, 13.265369 ], [ 144.743537, 13.265378 ], [ 144.743471, 13.265374 ], [ 144.743392, 13.265328 ], [ 144.743382, 13.265308 ], [ 144.743363, 13.265311 ], [ 144.743342, 13.265308 ], [ 144.743312, 13.265324 ], [ 144.743354, 13.265422 ], [ 144.74338, 13.265471 ], [ 144.743433, 13.265504 ], [ 144.74344, 13.265546 ], [ 144.743386, 13.265543 ], [ 144.743353, 13.265552 ], [ 144.743356, 13.265611 ], [ 144.743346, 13.265647 ], [ 144.743309, 13.265682 ], [ 144.743262, 13.265698 ], [ 144.743226, 13.265662 ], [ 144.743203, 13.265648 ], [ 144.743159, 13.265677 ], [ 144.743129, 13.265716 ], [ 144.743096, 13.265742 ], [ 144.743062, 13.265755 ], [ 144.743026, 13.265784 ], [ 144.743005, 13.265813 ], [ 144.742952, 13.265848 ], [ 144.742942, 13.265877 ], [ 144.742908, 13.265929 ], [ 144.742861, 13.265942 ], [ 144.742825, 13.26597 ], [ 144.742864, 13.266003 ], [ 144.74288, 13.26603 ], [ 144.742867, 13.266075 ], [ 144.742865, 13.266088 ], [ 144.742863, 13.266117 ], [ 144.742909, 13.266137 ], [ 144.742906, 13.266173 ], [ 144.742915, 13.266215 ], [ 144.742898, 13.266264 ], [ 144.742865, 13.266413 ], [ 144.742835, 13.266481 ], [ 144.742807, 13.266559 ], [ 144.742747, 13.26663 ], [ 144.742676, 13.266766 ], [ 144.742619, 13.266818 ], [ 144.742572, 13.266873 ], [ 144.742492, 13.266908 ], [ 144.742379, 13.266946 ], [ 144.742325, 13.266978 ], [ 144.742202, 13.267026 ], [ 144.742159, 13.267025 ], [ 144.742116, 13.266992 ], [ 144.74207, 13.266979 ], [ 144.74199, 13.266968 ], [ 144.741947, 13.266958 ], [ 144.741891, 13.266915 ], [ 144.741891, 13.266889 ], [ 144.741845, 13.266856 ], [ 144.741805, 13.26682 ], [ 144.741803, 13.266765 ], [ 144.741631, 13.26664 ], [ 144.741552, 13.266597 ], [ 144.741496, 13.266561 ], [ 144.741443, 13.266534 ], [ 144.74137, 13.266524 ], [ 144.74132, 13.266533 ], [ 144.741309, 13.266565 ], [ 144.741246, 13.266604 ], [ 144.741189, 13.266616 ], [ 144.741143, 13.266609 ], [ 144.74106, 13.266625 ], [ 144.740983, 13.266631 ], [ 144.740942, 13.266657 ], [ 144.740789, 13.266681 ], [ 144.740655, 13.266748 ], [ 144.740589, 13.266761 ], [ 144.740462, 13.266753 ], [ 144.740247, 13.266725 ], [ 144.739988, 13.266697 ], [ 144.739895, 13.266693 ], [ 144.739815, 13.266682 ], [ 144.73972, 13.266639 ], [ 144.73965, 13.266629 ], [ 144.739514, 13.266631 ], [ 144.739357, 13.266642 ], [ 144.739214, 13.266657 ], [ 144.738982, 13.266688 ], [ 144.738898, 13.26671 ], [ 144.738858, 13.266715 ], [ 144.738815, 13.266722 ], [ 144.738777, 13.266738 ], [ 144.738584, 13.266779 ], [ 144.738491, 13.266791 ], [ 144.738411, 13.266813 ], [ 144.738338, 13.266845 ], [ 144.738264, 13.26686 ], [ 144.738178, 13.266905 ], [ 144.738131, 13.266954 ], [ 144.73812, 13.267032 ], [ 144.738125, 13.267172 ], [ 144.738151, 13.267266 ], [ 144.738167, 13.267364 ], [ 144.738172, 13.267481 ], [ 144.738191, 13.267582 ], [ 144.738194, 13.267637 ], [ 144.738187, 13.267689 ], [ 144.738189, 13.267784 ], [ 144.738195, 13.267815 ], [ 144.738201, 13.267844 ], [ 144.73822, 13.267932 ], [ 144.738224, 13.26795 ], [ 144.738229, 13.267961 ], [ 144.73825, 13.268009 ], [ 144.738275, 13.268048 ], [ 144.738277, 13.268051 ], [ 144.738255, 13.268119 ], [ 144.738253, 13.268137 ], [ 144.738313, 13.268195 ], [ 144.738363, 13.268179 ], [ 144.738414, 13.268132 ], [ 144.738444, 13.268105 ], [ 144.7385, 13.268086 ], [ 144.738534, 13.268096 ], [ 144.738584, 13.268083 ], [ 144.73871, 13.268019 ], [ 144.738807, 13.268017 ], [ 144.738857, 13.267995 ], [ 144.73888, 13.267946 ], [ 144.738924, 13.267927 ], [ 144.738957, 13.26794 ], [ 144.739043, 13.267908 ], [ 144.73908, 13.267919 ], [ 144.739134, 13.267867 ], [ 144.73918, 13.267848 ], [ 144.739233, 13.267868 ], [ 144.739296, 13.267907 ], [ 144.739395, 13.267938 ], [ 144.739627, 13.267998 ], [ 144.73971, 13.268012 ], [ 144.739816, 13.268036 ], [ 144.739899, 13.268075 ], [ 144.739932, 13.268112 ], [ 144.739991, 13.268119 ], [ 144.740024, 13.268148 ], [ 144.740075, 13.268173 ], [ 144.740084, 13.268178 ], [ 144.74015, 13.268185 ], [ 144.740216, 13.268218 ], [ 144.740391, 13.268243 ], [ 144.740457, 13.268266 ], [ 144.740553, 13.268316 ], [ 144.740632, 13.268339 ], [ 144.740718, 13.26835 ], [ 144.740804, 13.26838 ], [ 144.740887, 13.26839 ], [ 144.74097, 13.268394 ], [ 144.741, 13.268378 ], [ 144.740964, 13.268345 ], [ 144.740968, 13.268306 ], [ 144.740998, 13.268293 ], [ 144.741054, 13.268294 ], [ 144.741104, 13.268272 ], [ 144.741131, 13.26823 ], [ 144.741221, 13.268195 ], [ 144.741294, 13.268231 ], [ 144.741347, 13.268222 ], [ 144.74138, 13.268232 ], [ 144.741384, 13.268258 ], [ 144.741443, 13.268271 ], [ 144.741463, 13.268288 ], [ 144.741453, 13.268324 ], [ 144.741459, 13.268353 ], [ 144.741505, 13.268366 ], [ 144.741549, 13.268334 ], [ 144.741583, 13.268286 ], [ 144.741619, 13.268266 ], [ 144.741725, 13.268274 ], [ 144.741809, 13.268262 ], [ 144.741865, 13.268282 ], [ 144.741871, 13.268311 ], [ 144.741927, 13.268367 ], [ 144.741964, 13.268387 ], [ 144.742076, 13.268417 ], [ 144.742142, 13.26845 ], [ 144.742271, 13.268542 ], [ 144.742347, 13.268553 ], [ 144.742419, 13.268544 ], [ 144.742475, 13.268531 ], [ 144.742498, 13.268548 ], [ 144.742508, 13.268577 ], [ 144.742484, 13.268648 ], [ 144.742497, 13.268694 ], [ 144.742533, 13.26872 ], [ 144.74259, 13.268714 ], [ 144.742647, 13.268685 ], [ 144.742687, 13.268653 ], [ 144.742754, 13.268625 ], [ 144.742823, 13.268602 ], [ 144.742887, 13.268606 ], [ 144.742933, 13.268626 ], [ 144.742969, 13.268656 ], [ 144.743037, 13.268842 ], [ 144.743083, 13.26893 ], [ 144.743132, 13.268999 ], [ 144.743228, 13.269068 ], [ 144.74337, 13.269121 ], [ 144.743578, 13.269208 ], [ 144.743631, 13.269283 ], [ 144.743647, 13.269342 ], [ 144.743696, 13.269381 ], [ 144.743759, 13.269473 ], [ 144.743765, 13.269535 ], [ 144.743824, 13.26962 ], [ 144.743893, 13.269656 ], [ 144.743943, 13.269673 ], [ 144.744022, 13.269709 ], [ 144.744072, 13.269739 ], [ 144.744082, 13.269761 ], [ 144.744117, 13.269831 ], [ 144.744177, 13.269854 ], [ 144.744276, 13.26991 ], [ 144.744309, 13.269976 ], [ 144.744355, 13.270028 ], [ 144.744414, 13.270081 ], [ 144.74447, 13.270123 ], [ 144.744585, 13.270128 ], [ 144.744611, 13.27016 ], [ 144.744614, 13.270216 ], [ 144.74461, 13.270264 ], [ 144.744649, 13.270314 ], [ 144.744739, 13.27037 ], [ 144.744808, 13.270432 ], [ 144.74496, 13.270479 ], [ 144.74504, 13.270499 ], [ 144.745093, 13.27048 ], [ 144.745133, 13.270425 ], [ 144.745144, 13.270354 ], [ 144.745207, 13.270332 ], [ 144.745339, 13.270434 ], [ 144.745349, 13.270476 ], [ 144.745378, 13.270532 ], [ 144.745371, 13.270558 ], [ 144.745304, 13.270589 ], [ 144.745258, 13.270631 ], [ 144.74525, 13.27069 ], [ 144.745306, 13.270746 ], [ 144.745432, 13.270841 ], [ 144.745525, 13.270861 ], [ 144.745631, 13.270892 ], [ 144.745786, 13.270916 ], [ 144.745936, 13.27095 ], [ 144.746058, 13.270957 ], [ 144.746191, 13.270997 ], [ 144.746287, 13.271031 ], [ 144.746308, 13.271042 ], [ 144.746386, 13.271084 ], [ 144.746447, 13.271135 ], [ 144.746519, 13.271066 ], [ 144.746601, 13.271095 ], [ 144.74663, 13.271158 ], [ 144.746693, 13.271197 ], [ 144.746786, 13.27124 ], [ 144.746858, 13.271294 ], [ 144.746907, 13.271351 ], [ 144.746906, 13.271404 ], [ 144.746979, 13.271443 ], [ 144.747052, 13.271448 ], [ 144.747165, 13.271402 ], [ 144.747233, 13.271426 ], [ 144.747301, 13.271408 ], [ 144.747347, 13.271284 ], [ 144.747367, 13.271198 ], [ 144.747431, 13.271079 ], [ 144.74754, 13.270951 ], [ 144.747681, 13.271033 ], [ 144.747818, 13.270963 ], [ 144.747901, 13.270959 ], [ 144.747944, 13.271031 ], [ 144.748002, 13.271108 ], [ 144.747972, 13.271222 ], [ 144.747957, 13.271313 ], [ 144.747898, 13.271346 ], [ 144.747795, 13.271383 ], [ 144.747673, 13.271397 ], [ 144.74757, 13.271429 ], [ 144.747569, 13.271501 ], [ 144.747544, 13.271591 ], [ 144.747597, 13.271678 ], [ 144.747641, 13.271693 ], [ 144.747728, 13.271693 ], [ 144.747787, 13.271665 ], [ 144.74791, 13.27159 ], [ 144.747949, 13.271619 ], [ 144.747962, 13.271724 ], [ 144.748026, 13.271739 ], [ 144.748069, 13.271787 ], [ 144.748108, 13.271855 ], [ 144.748171, 13.271922 ], [ 144.748185, 13.271999 ], [ 144.748208, 13.27209 ], [ 144.748257, 13.272124 ], [ 144.748344, 13.27212 ], [ 144.748407, 13.272125 ], [ 144.74853, 13.272136 ], [ 144.748555, 13.272102 ], [ 144.74855, 13.27205 ], [ 144.74856, 13.271992 ], [ 144.74859, 13.271969 ], [ 144.748722, 13.271898 ], [ 144.748723, 13.271846 ], [ 144.748782, 13.271784 ], [ 144.748851, 13.27177 ], [ 144.748909, 13.271776 ], [ 144.748973, 13.271743 ], [ 144.749042, 13.271681 ], [ 144.749105, 13.271672 ], [ 144.749154, 13.271696 ], [ 144.749306, 13.271645 ], [ 144.749403, 13.271646 ], [ 144.749486, 13.27168 ], [ 144.749583, 13.271729 ], [ 144.749617, 13.271782 ], [ 144.74967, 13.271849 ], [ 144.749758, 13.271879 ], [ 144.749811, 13.271927 ], [ 144.749849, 13.271999 ], [ 144.749922, 13.272086 ], [ 144.749979, 13.272172 ], [ 144.750038, 13.272221 ], [ 144.750086, 13.272288 ], [ 144.750139, 13.272336 ], [ 144.750237, 13.272337 ], [ 144.750265, 13.272447 ], [ 144.750318, 13.272524 ], [ 144.750324, 13.272537 ], [ 144.750366, 13.272635 ], [ 144.750433, 13.272736 ], [ 144.750496, 13.272789 ], [ 144.750603, 13.272843 ], [ 144.750718, 13.273035 ], [ 144.750723, 13.273048 ], [ 144.750747, 13.273112 ], [ 144.750766, 13.273212 ], [ 144.750833, 13.273313 ], [ 144.750916, 13.273328 ], [ 144.750959, 13.27342 ], [ 144.750939, 13.273496 ], [ 144.750972, 13.273625 ], [ 144.750986, 13.273711 ], [ 144.750941, 13.273802 ], [ 144.750896, 13.273873 ], [ 144.75087, 13.274021 ], [ 144.750755, 13.274082 ], [ 144.75074, 13.27414 ], [ 144.750695, 13.274235 ], [ 144.75067, 13.274297 ], [ 144.750659, 13.274416 ], [ 144.750658, 13.274521 ], [ 144.750662, 13.274622 ], [ 144.750627, 13.274717 ], [ 144.750479, 13.274859 ], [ 144.750239, 13.274967 ], [ 144.750097, 13.275009 ], [ 144.750014, 13.274999 ], [ 144.749839, 13.275011 ], [ 144.749731, 13.275011 ], [ 144.749648, 13.275005 ], [ 144.74958, 13.275009 ], [ 144.749531, 13.27499 ], [ 144.749434, 13.27497 ], [ 144.749336, 13.274935 ], [ 144.749278, 13.274935 ], [ 144.749234, 13.274954 ], [ 144.74911, 13.275096 ], [ 144.749027, 13.275153 ], [ 144.748924, 13.275209 ], [ 144.748746, 13.275466 ], [ 144.748587, 13.275746 ], [ 144.748459, 13.275874 ], [ 144.748264, 13.276126 ], [ 144.74813, 13.276283 ], [ 144.748012, 13.276406 ], [ 144.747872, 13.276509 ], [ 144.747865, 13.276515 ], [ 144.747746, 13.276619 ], [ 144.747638, 13.276694 ], [ 144.747608, 13.276818 ], [ 144.747671, 13.276895 ], [ 144.747659, 13.27712 ], [ 144.747677, 13.277264 ], [ 144.747696, 13.277379 ], [ 144.74768, 13.277488 ], [ 144.747669, 13.277646 ], [ 144.747696, 13.277871 ], [ 144.747757, 13.278077 ], [ 144.747808, 13.27817 ], [ 144.747945, 13.278418 ], [ 144.748026, 13.278553 ], [ 144.748162, 13.278698 ], [ 144.748322, 13.278819 ], [ 144.748487, 13.278916 ], [ 144.748582, 13.27896 ], [ 144.74865, 13.278982 ], [ 144.748733, 13.279009 ], [ 144.748782, 13.27899 ], [ 144.748904, 13.278991 ], [ 144.748972, 13.279001 ], [ 144.74903, 13.279026 ], [ 144.749128, 13.279022 ], [ 144.74929, 13.278932 ], [ 144.749472, 13.278776 ], [ 144.749497, 13.278743 ], [ 144.749473, 13.2787 ], [ 144.749502, 13.278686 ], [ 144.749531, 13.278695 ], [ 144.7496, 13.278653 ], [ 144.749635, 13.278582 ], [ 144.749684, 13.278515 ], [ 144.749802, 13.278459 ], [ 144.74991, 13.278402 ], [ 144.749974, 13.278341 ], [ 144.750087, 13.27827 ], [ 144.750215, 13.278142 ], [ 144.750269, 13.278047 ], [ 144.750353, 13.277962 ], [ 144.750422, 13.277905 ], [ 144.750525, 13.277867 ], [ 144.750677, 13.277802 ], [ 144.750844, 13.277722 ], [ 144.75102, 13.277604 ], [ 144.751129, 13.277466 ], [ 144.751228, 13.277281 ], [ 144.751283, 13.277166 ], [ 144.751343, 13.277057 ], [ 144.751353, 13.277027 ], [ 144.751378, 13.276957 ], [ 144.751379, 13.276837 ], [ 144.751424, 13.276709 ], [ 144.75151, 13.276705 ], [ 144.751598, 13.276677 ], [ 144.751808, 13.276621 ], [ 144.752004, 13.276556 ], [ 144.752004, 13.276518 ], [ 144.751917, 13.276469 ], [ 144.751878, 13.276411 ], [ 144.751894, 13.276345 ], [ 144.751919, 13.276287 ], [ 144.751997, 13.276216 ], [ 144.752081, 13.276155 ], [ 144.752134, 13.276141 ], [ 144.752233, 13.276118 ], [ 144.752379, 13.276076 ], [ 144.752472, 13.276077 ], [ 144.752536, 13.276073 ], [ 144.752595, 13.276011 ], [ 144.752703, 13.275974 ], [ 144.752761, 13.275979 ], [ 144.752814, 13.276023 ], [ 144.752853, 13.276071 ], [ 144.752912, 13.276081 ], [ 144.753015, 13.276029 ], [ 144.753025, 13.276027 ], [ 144.753093, 13.276016 ], [ 144.753157, 13.275983 ], [ 144.753226, 13.275893 ], [ 144.753242, 13.275821 ], [ 144.753251, 13.275778 ], [ 144.753281, 13.275683 ], [ 144.753314, 13.275618 ], [ 144.753331, 13.275587 ], [ 144.75343, 13.275493 ], [ 144.753489, 13.275412 ], [ 144.753534, 13.275336 ], [ 144.753622, 13.275246 ], [ 144.75371, 13.275208 ], [ 144.753742, 13.275148 ], [ 144.753765, 13.275108 ], [ 144.753824, 13.275037 ], [ 144.753902, 13.275043 ], [ 144.753946, 13.275091 ], [ 144.754043, 13.275116 ], [ 144.754131, 13.275155 ], [ 144.754283, 13.275193 ], [ 144.754306, 13.275199 ], [ 144.754404, 13.275205 ], [ 144.754472, 13.275229 ], [ 144.754527, 13.275297 ], [ 144.75463, 13.275307 ], [ 144.754693, 13.275375 ], [ 144.75477, 13.275409 ], [ 144.754878, 13.275429 ], [ 144.754999, 13.27555 ], [ 144.755056, 13.275631 ], [ 144.755041, 13.275679 ], [ 144.755002, 13.275731 ], [ 144.755011, 13.275803 ], [ 144.755058, 13.275921 ], [ 144.755063, 13.275933 ], [ 144.755131, 13.275995 ], [ 144.755208, 13.276087 ], [ 144.755232, 13.276188 ], [ 144.755202, 13.276273 ], [ 144.75526, 13.276355 ], [ 144.755322, 13.276432 ], [ 144.755375, 13.276538 ], [ 144.755443, 13.27661 ], [ 144.75552, 13.276673 ], [ 144.755632, 13.276703 ], [ 144.755681, 13.276737 ], [ 144.755763, 13.276838 ], [ 144.755826, 13.2769 ], [ 144.755909, 13.27693 ], [ 144.756001, 13.276926 ], [ 144.756119, 13.276908 ], [ 144.756206, 13.276942 ], [ 144.756269, 13.276986 ], [ 144.756264, 13.277048 ], [ 144.756312, 13.277077 ], [ 144.756375, 13.277144 ], [ 144.756429, 13.277135 ], [ 144.756546, 13.277127 ], [ 144.756619, 13.277151 ], [ 144.756668, 13.277123 ], [ 144.756732, 13.277133 ], [ 144.756741, 13.277176 ], [ 144.756829, 13.277201 ], [ 144.756902, 13.277216 ], [ 144.756984, 13.277265 ], [ 144.757086, 13.277318 ], [ 144.757178, 13.277405 ], [ 144.757236, 13.277472 ], [ 144.757328, 13.277545 ], [ 144.757427, 13.277651 ], [ 144.757514, 13.2778 ], [ 144.757692, 13.278122 ], [ 144.757817, 13.278281 ], [ 144.757894, 13.278368 ], [ 144.757991, 13.27844 ], [ 144.758152, 13.278494 ], [ 144.758317, 13.278586 ], [ 144.758651, 13.27891 ], [ 144.758709, 13.278963 ], [ 144.758865, 13.279017 ], [ 144.758967, 13.27908 ], [ 144.759044, 13.279152 ], [ 144.759092, 13.27922 ], [ 144.759102, 13.279277 ], [ 144.759092, 13.279315 ], [ 144.759106, 13.279382 ], [ 144.759169, 13.279416 ], [ 144.759236, 13.279419 ], [ 144.759276, 13.279422 ], [ 144.759339, 13.279461 ], [ 144.759401, 13.27961 ], [ 144.759386, 13.279681 ], [ 144.759449, 13.279744 ], [ 144.759513, 13.279725 ], [ 144.759581, 13.279731 ], [ 144.759619, 13.279813 ], [ 144.759652, 13.279908 ], [ 144.759715, 13.279985 ], [ 144.759752, 13.280005 ], [ 144.759829, 13.280092 ], [ 144.759819, 13.28013 ], [ 144.759671, 13.280235 ], [ 144.759656, 13.280286 ], [ 144.759617, 13.280362 ], [ 144.759602, 13.280391 ], [ 144.759567, 13.280477 ], [ 144.759457, 13.2807 ], [ 144.759393, 13.2808 ], [ 144.759318, 13.280977 ], [ 144.759308, 13.28105 ], [ 144.759302, 13.281101 ], [ 144.759247, 13.28121 ], [ 144.759153, 13.281382 ], [ 144.759196, 13.28154 ], [ 144.759161, 13.281587 ], [ 144.759097, 13.28162 ], [ 144.759053, 13.281663 ], [ 144.758989, 13.281696 ], [ 144.758945, 13.281686 ], [ 144.75892, 13.281743 ], [ 144.758823, 13.281742 ], [ 144.758769, 13.281737 ], [ 144.758725, 13.281713 ], [ 144.758682, 13.281669 ], [ 144.758628, 13.281635 ], [ 144.758575, 13.281635 ], [ 144.758526, 13.281677 ], [ 144.758472, 13.28171 ], [ 144.758432, 13.281743 ], [ 144.758412, 13.28182 ], [ 144.758404, 13.281896 ], [ 144.758388, 13.281992 ], [ 144.758402, 13.282078 ], [ 144.758426, 13.282174 ], [ 144.758425, 13.282241 ], [ 144.75836, 13.282398 ], [ 144.758301, 13.282503 ], [ 144.75829, 13.282517 ], [ 144.758222, 13.282612 ], [ 144.758118, 13.282721 ], [ 144.758064, 13.282816 ], [ 144.758048, 13.282912 ], [ 144.758134, 13.283084 ], [ 144.758178, 13.283118 ], [ 144.75821, 13.283139 ], [ 144.75826, 13.283172 ], [ 144.758392, 13.28323 ], [ 144.75844, 13.283239 ], [ 144.758518, 13.283255 ], [ 144.758625, 13.283309 ], [ 144.758987, 13.283298 ], [ 144.759172, 13.28322 ], [ 144.759178, 13.283218 ], [ 144.759237, 13.283166 ], [ 144.759301, 13.283138 ], [ 144.759384, 13.283119 ], [ 144.759397, 13.283113 ], [ 144.759467, 13.283082 ], [ 144.759551, 13.283025 ], [ 144.759585, 13.282959 ], [ 144.75968, 13.282898 ], [ 144.759713, 13.282878 ], [ 144.759792, 13.282764 ], [ 144.759817, 13.282678 ], [ 144.759755, 13.282554 ], [ 144.759701, 13.282488 ], [ 144.759687, 13.282472 ], [ 144.759678, 13.282395 ], [ 144.759713, 13.282305 ], [ 144.759768, 13.282257 ], [ 144.75987, 13.282258 ], [ 144.759948, 13.282254 ], [ 144.76007, 13.282236 ], [ 144.760085, 13.282255 ], [ 144.760087, 13.282262 ], [ 144.760099, 13.282308 ], [ 144.760138, 13.282313 ], [ 144.760266, 13.282247 ], [ 144.760314, 13.282253 ], [ 144.760397, 13.282277 ], [ 144.760436, 13.282258 ], [ 144.760485, 13.28224 ], [ 144.760563, 13.282259 ], [ 144.760632, 13.28227 ], [ 144.760764, 13.282237 ], [ 144.760905, 13.282239 ], [ 144.760998, 13.282235 ], [ 144.761183, 13.282322 ], [ 144.76127, 13.282357 ], [ 144.761352, 13.282448 ], [ 144.76148, 13.282607 ], [ 144.761498, 13.282663 ], [ 144.761523, 13.282737 ], [ 144.761542, 13.282837 ], [ 144.761507, 13.282904 ], [ 144.76154, 13.283004 ], [ 144.761589, 13.283048 ], [ 144.761711, 13.283054 ], [ 144.761852, 13.283098 ], [ 144.761969, 13.283128 ], [ 144.762173, 13.283235 ], [ 144.762284, 13.283298 ], [ 144.762367, 13.28337 ], [ 144.76243, 13.283452 ], [ 144.762394, 13.283552 ], [ 144.762404, 13.28361 ], [ 144.762457, 13.283672 ], [ 144.7625, 13.283745 ], [ 144.762549, 13.283778 ], [ 144.762632, 13.283784 ], [ 144.762695, 13.283804 ], [ 144.762729, 13.283847 ], [ 144.762728, 13.2839 ], [ 144.762772, 13.283943 ], [ 144.762884, 13.283891 ], [ 144.762933, 13.283925 ], [ 144.762986, 13.284002 ], [ 144.763005, 13.28406 ], [ 144.76298, 13.284103 ], [ 144.762926, 13.284159 ], [ 144.76295, 13.284174 ], [ 144.763058, 13.284137 ], [ 144.763111, 13.284195 ], [ 144.76312, 13.284242 ], [ 144.763042, 13.284266 ], [ 144.763008, 13.284299 ], [ 144.763017, 13.284347 ], [ 144.763046, 13.284395 ], [ 144.763124, 13.284391 ], [ 144.763202, 13.284415 ], [ 144.763226, 13.284478 ], [ 144.76323, 13.284569 ], [ 144.763253, 13.284636 ], [ 144.763224, 13.284698 ], [ 144.763233, 13.28476 ], [ 144.763291, 13.284832 ], [ 144.763327, 13.284919 ], [ 144.763331, 13.285005 ], [ 144.76333, 13.285046 ], [ 144.763328, 13.285282 ], [ 144.763357, 13.285363 ], [ 144.7634, 13.28544 ], [ 144.763409, 13.285493 ], [ 144.763399, 13.28555 ], [ 144.763428, 13.285598 ], [ 144.763477, 13.285584 ], [ 144.76354, 13.285652 ], [ 144.763568, 13.285729 ], [ 144.763572, 13.285815 ], [ 144.763557, 13.285896 ], [ 144.763585, 13.285978 ], [ 144.763594, 13.286054 ], [ 144.763613, 13.28614 ], [ 144.763603, 13.286217 ], [ 144.763553, 13.286269 ], [ 144.763524, 13.286283 ], [ 144.763525, 13.286287 ], [ 144.763548, 13.286374 ], [ 144.763591, 13.286427 ], [ 144.763566, 13.286513 ], [ 144.76357, 13.28658 ], [ 144.763576, 13.286591 ], [ 144.763609, 13.286647 ], [ 144.763612, 13.286692 ], [ 144.763622, 13.286815 ], [ 144.763563, 13.286867 ], [ 144.763543, 13.28691 ], [ 144.763537, 13.28702 ], [ 144.763514, 13.287072 ], [ 144.763441, 13.287086 ], [ 144.763372, 13.287133 ], [ 144.763337, 13.287219 ], [ 144.763346, 13.287324 ], [ 144.763389, 13.287401 ], [ 144.763461, 13.287574 ], [ 144.763514, 13.287641 ], [ 144.763533, 13.287727 ], [ 144.763474, 13.287775 ], [ 144.76344, 13.287826 ], [ 144.763424, 13.287851 ], [ 144.763341, 13.287907 ], [ 144.763252, 13.287945 ], [ 144.76295, 13.287961 ], [ 144.762797, 13.288046 ], [ 144.762738, 13.288045 ], [ 144.762762, 13.288123 ], [ 144.762762, 13.288171 ], [ 144.762737, 13.288266 ], [ 144.762743, 13.288572 ], [ 144.762767, 13.288654 ], [ 144.762801, 13.288721 ], [ 144.762864, 13.28875 ], [ 144.763103, 13.288791 ], [ 144.763171, 13.288844 ], [ 144.763209, 13.288897 ], [ 144.763238, 13.288964 ], [ 144.763237, 13.289045 ], [ 144.763256, 13.289141 ], [ 144.763265, 13.289222 ], [ 144.763254, 13.289284 ], [ 144.763244, 13.289375 ], [ 144.763271, 13.289576 ], [ 144.763339, 13.289634 ], [ 144.763348, 13.289687 ], [ 144.763371, 13.289854 ], [ 144.763458, 13.289999 ], [ 144.763486, 13.29008 ], [ 144.763481, 13.290171 ], [ 144.763465, 13.290314 ], [ 144.76344, 13.290376 ], [ 144.763438, 13.290515 ], [ 144.763452, 13.290654 ], [ 144.763557, 13.290922 ], [ 144.763571, 13.29095 ], [ 144.763624, 13.291057 ], [ 144.763701, 13.291163 ], [ 144.763742, 13.291206 ], [ 144.763834, 13.29126 ], [ 144.763971, 13.291294 ], [ 144.764054, 13.291309 ], [ 144.764127, 13.291343 ], [ 144.764244, 13.291344 ], [ 144.764303, 13.291307 ], [ 144.76442, 13.291298 ], [ 144.764552, 13.291309 ], [ 144.764625, 13.291324 ], [ 144.764668, 13.291363 ], [ 144.764712, 13.291416 ], [ 144.764775, 13.291454 ], [ 144.764799, 13.291507 ], [ 144.764808, 13.29156 ], [ 144.764832, 13.291603 ], [ 144.764866, 13.291622 ], [ 144.764855, 13.291718 ], [ 144.764855, 13.291771 ], [ 144.764874, 13.291804 ], [ 144.764928, 13.29181 ], [ 144.764962, 13.29181 ], [ 144.765016, 13.291825 ], [ 144.76503, 13.291863 ], [ 144.765049, 13.291897 ], [ 144.765132, 13.291926 ], [ 144.765259, 13.291942 ], [ 144.765322, 13.29198 ], [ 144.765336, 13.292024 ], [ 144.765321, 13.292057 ], [ 144.765345, 13.292105 ], [ 144.765354, 13.292138 ], [ 144.765379, 13.292172 ], [ 144.765418, 13.292168 ], [ 144.765462, 13.292154 ], [ 144.76551, 13.292188 ], [ 144.765583, 13.292227 ], [ 144.765666, 13.292265 ], [ 144.765719, 13.292314 ], [ 144.76587, 13.292411 ], [ 144.765932, 13.292488 ], [ 144.765921, 13.292612 ], [ 144.76597, 13.29266 ], [ 144.766014, 13.292651 ], [ 144.766043, 13.292627 ], [ 144.766111, 13.292657 ], [ 144.766184, 13.292681 ], [ 144.766208, 13.29272 ], [ 144.766227, 13.29282 ], [ 144.766271, 13.292854 ], [ 144.766314, 13.292874 ], [ 144.766417, 13.292879 ], [ 144.76647, 13.292894 ], [ 144.766529, 13.292933 ], [ 144.766621, 13.292967 ], [ 144.766718, 13.293025 ], [ 144.766818, 13.293069 ], [ 144.766919, 13.293185 ], [ 144.767045, 13.293291 ], [ 144.767211, 13.293369 ], [ 144.767269, 13.293355 ], [ 144.76739, 13.293471 ], [ 144.767522, 13.293539 ], [ 144.767633, 13.293636 ], [ 144.76772, 13.293752 ], [ 144.767826, 13.293839 ], [ 144.767879, 13.293935 ], [ 144.767928, 13.293992 ], [ 144.768034, 13.294065 ], [ 144.768102, 13.294157 ], [ 144.768199, 13.294215 ], [ 144.768286, 13.294345 ], [ 144.768402, 13.294465 ], [ 144.76845, 13.294552 ], [ 144.768502, 13.294657 ], [ 144.76856, 13.294787 ], [ 144.768661, 13.294903 ], [ 144.768811, 13.295038 ], [ 144.768884, 13.29512 ], [ 144.769005, 13.295226 ], [ 144.769092, 13.295308 ], [ 144.769194, 13.295381 ], [ 144.769327, 13.295544 ], [ 144.769336, 13.29564 ], [ 144.769403, 13.29576 ], [ 144.769509, 13.295857 ], [ 144.769602, 13.295896 ], [ 144.769689, 13.295997 ], [ 144.769786, 13.296098 ], [ 144.769934, 13.296401 ], [ 144.769953, 13.296492 ], [ 144.769903, 13.296549 ], [ 144.769927, 13.296621 ], [ 144.769941, 13.296717 ], [ 144.770004, 13.296803 ], [ 144.770086, 13.2969 ], [ 144.770158, 13.296972 ], [ 144.770206, 13.297063 ], [ 144.770176, 13.297149 ], [ 144.7702, 13.29724 ], [ 144.770248, 13.297317 ], [ 144.770355, 13.297375 ], [ 144.770334, 13.297476 ], [ 144.770256, 13.297532 ], [ 144.770253, 13.297532 ], [ 144.770148, 13.297555 ], [ 144.770108, 13.297558 ], [ 144.770119, 13.297588 ], [ 144.770108, 13.29766 ], [ 144.770107, 13.297727 ], [ 144.770068, 13.297798 ], [ 144.769979, 13.297941 ], [ 144.769958, 13.298046 ], [ 144.769986, 13.298156 ], [ 144.770106, 13.298459 ], [ 144.770158, 13.298574 ], [ 144.77025, 13.298713 ], [ 144.770288, 13.29879 ], [ 144.770321, 13.29891 ], [ 144.770379, 13.298977 ], [ 144.770413, 13.299073 ], [ 144.770485, 13.299155 ], [ 144.770538, 13.299199 ], [ 144.770576, 13.299304 ], [ 144.770595, 13.299405 ], [ 144.770623, 13.299496 ], [ 144.770681, 13.299573 ], [ 144.770675, 13.299735 ], [ 144.770698, 13.299855 ], [ 144.770698, 13.299932 ], [ 144.770736, 13.300023 ], [ 144.770899, 13.300283 ], [ 144.770976, 13.300436 ], [ 144.771054, 13.300499 ], [ 144.771102, 13.300586 ], [ 144.771184, 13.300634 ], [ 144.771281, 13.300707 ], [ 144.771408, 13.300775 ], [ 144.771446, 13.300856 ], [ 144.771436, 13.300918 ], [ 144.77144, 13.30099 ], [ 144.77142, 13.301033 ], [ 144.771453, 13.301134 ], [ 144.771433, 13.301215 ], [ 144.771398, 13.301301 ], [ 144.771393, 13.301358 ], [ 144.77148, 13.301383 ], [ 144.771475, 13.301464 ], [ 144.771508, 13.301569 ], [ 144.771609, 13.301671 ], [ 144.771672, 13.3018 ], [ 144.771734, 13.301901 ], [ 144.771821, 13.302055 ], [ 144.771885, 13.302237 ], [ 144.771947, 13.302381 ], [ 144.772005, 13.302463 ], [ 144.772107, 13.302536 ], [ 144.772125, 13.302636 ], [ 144.772168, 13.302732 ], [ 144.772187, 13.302814 ], [ 144.772182, 13.302871 ], [ 144.772152, 13.302928 ], [ 144.772171, 13.303005 ], [ 144.772219, 13.303072 ], [ 144.772277, 13.303116 ], [ 144.772291, 13.303164 ], [ 144.77233, 13.303245 ], [ 144.772359, 13.303284 ], [ 144.772353, 13.303351 ], [ 144.772387, 13.303409 ], [ 144.772372, 13.303466 ], [ 144.772405, 13.303605 ], [ 144.772394, 13.303676 ], [ 144.77237, 13.303691 ], [ 144.77232, 13.303738 ], [ 144.772305, 13.303809 ], [ 144.772309, 13.303924 ], [ 144.772396, 13.304049 ], [ 144.77242, 13.304107 ], [ 144.772395, 13.304169 ], [ 144.77236, 13.304212 ], [ 144.772339, 13.304321 ], [ 144.772353, 13.304408 ], [ 144.772353, 13.304494 ], [ 144.772369, 13.304599 ], [ 144.772289, 13.304727 ], [ 144.772257, 13.305038 ], [ 144.772251, 13.305196 ], [ 144.772269, 13.30533 ], [ 144.772312, 13.305407 ], [ 144.772316, 13.305517 ], [ 144.772325, 13.305632 ], [ 144.772319, 13.305765 ], [ 144.772298, 13.30587 ], [ 144.772332, 13.305914 ], [ 144.77239, 13.306048 ], [ 144.772379, 13.306105 ], [ 144.772335, 13.306153 ], [ 144.772339, 13.306239 ], [ 144.772348, 13.30633 ], [ 144.772386, 13.306392 ], [ 144.772391, 13.30645 ], [ 144.772366, 13.306502 ], [ 144.772311, 13.306593 ], [ 144.772296, 13.306702 ], [ 144.77226, 13.306884 ], [ 144.772256, 13.307027 ], [ 144.772227, 13.307065 ], [ 144.772182, 13.30716 ], [ 144.772116, 13.307431 ], [ 144.772184, 13.30749 ], [ 144.772193, 13.307548 ], [ 144.772178, 13.307591 ], [ 144.772153, 13.307619 ], [ 144.772118, 13.3077 ], [ 144.772088, 13.307753 ], [ 144.772083, 13.307843 ], [ 144.772102, 13.307896 ], [ 144.772013, 13.307986 ], [ 144.771993, 13.308034 ], [ 144.772002, 13.308125 ], [ 144.77204, 13.308202 ], [ 144.772049, 13.308273 ], [ 144.772029, 13.308321 ], [ 144.771976, 13.308349 ], [ 144.771917, 13.308368 ], [ 144.771882, 13.308425 ], [ 144.771862, 13.308477 ], [ 144.771881, 13.308588 ], [ 144.771861, 13.308626 ], [ 144.771826, 13.308659 ], [ 144.771791, 13.308735 ], [ 144.771708, 13.308763 ], [ 144.771635, 13.308772 ], [ 144.771629, 13.308844 ], [ 144.771633, 13.308973 ], [ 144.771651, 13.309078 ], [ 144.771596, 13.309312 ], [ 144.771585, 13.309446 ], [ 144.771584, 13.309527 ], [ 144.771637, 13.309604 ], [ 144.771675, 13.309671 ], [ 144.771645, 13.309781 ], [ 144.771693, 13.309839 ], [ 144.771732, 13.309896 ], [ 144.771707, 13.309968 ], [ 144.771672, 13.310039 ], [ 144.771686, 13.31013 ], [ 144.771768, 13.310255 ], [ 144.77183, 13.310366 ], [ 144.771838, 13.310395 ], [ 144.771851, 13.310438 ], [ 144.771863, 13.310481 ], [ 144.771916, 13.310544 ], [ 144.771921, 13.310615 ], [ 144.771883, 13.310705 ], [ 144.771845, 13.310968 ], [ 144.771856, 13.311178 ], [ 144.771793, 13.311315 ], [ 144.771793, 13.311546 ], [ 144.77173, 13.311757 ], [ 144.77173, 13.311967 ], [ 144.771646, 13.312177 ], [ 144.771688, 13.312367 ], [ 144.771603, 13.312693 ], [ 144.771656, 13.312893 ], [ 144.771551, 13.31324 ], [ 144.77154, 13.313408 ], [ 144.771477, 13.313671 ], [ 144.771477, 13.313987 ], [ 144.771372, 13.314113 ], [ 144.771419, 13.314282 ], [ 144.771422, 13.314352 ], [ 144.771455, 13.31441 ], [ 144.771514, 13.314415 ], [ 144.771513, 13.314468 ], [ 144.771489, 13.314492 ], [ 144.771454, 13.314544 ], [ 144.771449, 13.314587 ], [ 144.771463, 13.31464 ], [ 144.771418, 13.314682 ], [ 144.77134, 13.314701 ], [ 144.771296, 13.31472 ], [ 144.771276, 13.314777 ], [ 144.771324, 13.314892 ], [ 144.771323, 13.314959 ], [ 144.771303, 13.31504 ], [ 144.771297, 13.315112 ], [ 144.771326, 13.315155 ], [ 144.77136, 13.31517 ], [ 144.771384, 13.315208 ], [ 144.771403, 13.315261 ], [ 144.771452, 13.31529 ], [ 144.771461, 13.315328 ], [ 144.771432, 13.315381 ], [ 144.771407, 13.315404 ], [ 144.771416, 13.315452 ], [ 144.771504, 13.315501 ], [ 144.771557, 13.31554 ], [ 144.771561, 13.315645 ], [ 144.771512, 13.315654 ], [ 144.771478, 13.315697 ], [ 144.771467, 13.315744 ], [ 144.771491, 13.315812 ], [ 144.771525, 13.31586 ], [ 144.771529, 13.315931 ], [ 144.771548, 13.316008 ], [ 144.771523, 13.316051 ], [ 144.771489, 13.316094 ], [ 144.771464, 13.316156 ], [ 144.771482, 13.316247 ], [ 144.771521, 13.316323 ], [ 144.771525, 13.316395 ], [ 144.771553, 13.316491 ], [ 144.771533, 13.316558 ], [ 144.771537, 13.31663 ], [ 144.771546, 13.316706 ], [ 144.771575, 13.316812 ], [ 144.771623, 13.316889 ], [ 144.771681, 13.316956 ], [ 144.771719, 13.317009 ], [ 144.771714, 13.31709 ], [ 144.7718, 13.317282 ], [ 144.771789, 13.317363 ], [ 144.771823, 13.317469 ], [ 144.771977, 13.317728 ], [ 144.772131, 13.317959 ], [ 144.772188, 13.318055 ], [ 144.772261, 13.318152 ], [ 144.77226, 13.318243 ], [ 144.772383, 13.318397 ], [ 144.772411, 13.318497 ], [ 144.772516, 13.31878 ], [ 144.772548, 13.318853 ], [ 144.772559, 13.318876 ], [ 144.772563, 13.318977 ], [ 144.772597, 13.319058 ], [ 144.77265, 13.31915 ], [ 144.772701, 13.319418 ], [ 144.772773, 13.3195 ], [ 144.772817, 13.319582 ], [ 144.772811, 13.319672 ], [ 144.772854, 13.319773 ], [ 144.7729, 13.320013 ], [ 144.772899, 13.320142 ], [ 144.772884, 13.320256 ], [ 144.772872, 13.320476 ], [ 144.772856, 13.320615 ], [ 144.772852, 13.32072 ], [ 144.772818, 13.320806 ], [ 144.772768, 13.320896 ], [ 144.77275, 13.320917 ], [ 144.772762, 13.320963 ], [ 144.772776, 13.321044 ], [ 144.772776, 13.321111 ], [ 144.77279, 13.32115 ], [ 144.77278, 13.321221 ], [ 144.772789, 13.321269 ], [ 144.772788, 13.321346 ], [ 144.772763, 13.321413 ], [ 144.772763, 13.321479 ], [ 144.772791, 13.321537 ], [ 144.772786, 13.321628 ], [ 144.772731, 13.321752 ], [ 144.772705, 13.321861 ], [ 144.772666, 13.321942 ], [ 144.772669, 13.322043 ], [ 144.772698, 13.322134 ], [ 144.772676, 13.322354 ], [ 144.772661, 13.322425 ], [ 144.772685, 13.322521 ], [ 144.772684, 13.322602 ], [ 144.772644, 13.322698 ], [ 144.77259, 13.322774 ], [ 144.772608, 13.32287 ], [ 144.772568, 13.323003 ], [ 144.772606, 13.323104 ], [ 144.7726, 13.32319 ], [ 144.772619, 13.32329 ], [ 144.772671, 13.32343 ], [ 144.77269, 13.323583 ], [ 144.77265, 13.323669 ], [ 144.772605, 13.32374 ], [ 144.772551, 13.323802 ], [ 144.77254, 13.323868 ], [ 144.772574, 13.323964 ], [ 144.772607, 13.324036 ], [ 144.772597, 13.324098 ], [ 144.772527, 13.324275 ], [ 144.772522, 13.324337 ], [ 144.772531, 13.324404 ], [ 144.772476, 13.324456 ], [ 144.772413, 13.324494 ], [ 144.772373, 13.324565 ], [ 144.77246, 13.324666 ], [ 144.772464, 13.324733 ], [ 144.772444, 13.3248 ], [ 144.772419, 13.324852 ], [ 144.772384, 13.324909 ], [ 144.772415, 13.324991 ], [ 144.772473, 13.325054 ], [ 144.772541, 13.325145 ], [ 144.772651, 13.325356 ], [ 144.772719, 13.325424 ], [ 144.772781, 13.325563 ], [ 144.77279, 13.325654 ], [ 144.772789, 13.325755 ], [ 144.772769, 13.32585 ], [ 144.772744, 13.325893 ], [ 144.772675, 13.32593 ], [ 144.772636, 13.325973 ], [ 144.772616, 13.32605 ], [ 144.772644, 13.326131 ], [ 144.772648, 13.326232 ], [ 144.772643, 13.326313 ], [ 144.772647, 13.326404 ], [ 144.772636, 13.326494 ], [ 144.772636, 13.326552 ], [ 144.772644, 13.326657 ], [ 144.772668, 13.32671 ], [ 144.772682, 13.326782 ], [ 144.772667, 13.326868 ], [ 144.772671, 13.326968 ], [ 144.772684, 13.327088 ], [ 144.772674, 13.327169 ], [ 144.772678, 13.327245 ], [ 144.772722, 13.327404 ], [ 144.772723, 13.327408 ], [ 144.772747, 13.327466 ], [ 144.772814, 13.327538 ], [ 144.772843, 13.327582 ], [ 144.772799, 13.327643 ], [ 144.772719, 13.32768 ], [ 144.772757, 13.32771 ], [ 144.77279, 13.327768 ], [ 144.772819, 13.327835 ], [ 144.772867, 13.327888 ], [ 144.772882, 13.327931 ], [ 144.772881, 13.328012 ], [ 144.772856, 13.328074 ], [ 144.77286, 13.328141 ], [ 144.772884, 13.328199 ], [ 144.772884, 13.328261 ], [ 144.772824, 13.328323 ], [ 144.772785, 13.328394 ], [ 144.772745, 13.328451 ], [ 144.772686, 13.328503 ], [ 144.772642, 13.328565 ], [ 144.772573, 13.328607 ], [ 144.772504, 13.328674 ], [ 144.772459, 13.328764 ], [ 144.772463, 13.328831 ], [ 144.772424, 13.328888 ], [ 144.772375, 13.328912 ], [ 144.772301, 13.328968 ], [ 144.772282, 13.328999 ], [ 144.772261, 13.329035 ], [ 144.77228, 13.329102 ], [ 144.772294, 13.329188 ], [ 144.772264, 13.329255 ], [ 144.77221, 13.329264 ], [ 144.772151, 13.329287 ], [ 144.772126, 13.329354 ], [ 144.772101, 13.329464 ], [ 144.772052, 13.32954 ], [ 144.771993, 13.329578 ], [ 144.771938, 13.329697 ], [ 144.771879, 13.329744 ], [ 144.77182, 13.329772 ], [ 144.77181, 13.329834 ], [ 144.771809, 13.32993 ], [ 144.771769, 13.330006 ], [ 144.77168, 13.33013 ], [ 144.771626, 13.330163 ], [ 144.771547, 13.330234 ], [ 144.771517, 13.330305 ], [ 144.771477, 13.33042 ], [ 144.771408, 13.330505 ], [ 144.771358, 13.330591 ], [ 144.771299, 13.330657 ], [ 144.771244, 13.330762 ], [ 144.771233, 13.33091 ], [ 144.771189, 13.330996 ], [ 144.771182, 13.331125 ], [ 144.771142, 13.331234 ], [ 144.771136, 13.331378 ], [ 144.771086, 13.331521 ], [ 144.771065, 13.331664 ], [ 144.771041, 13.331927 ], [ 144.771044, 13.332065 ], [ 144.771009, 13.332218 ], [ 144.771008, 13.332333 ], [ 144.771061, 13.332415 ], [ 144.771055, 13.332539 ], [ 144.771034, 13.332644 ], [ 144.771023, 13.332787 ], [ 144.771056, 13.332902 ], [ 144.771129, 13.332984 ], [ 144.771265, 13.333062 ], [ 144.771298, 13.333134 ], [ 144.771303, 13.333201 ], [ 144.771282, 13.33334 ], [ 144.771237, 13.333416 ], [ 144.771164, 13.333453 ], [ 144.771133, 13.333539 ], [ 144.771157, 13.333606 ], [ 144.771216, 13.333645 ], [ 144.771239, 13.333712 ], [ 144.771214, 13.333788 ], [ 144.771209, 13.333855 ], [ 144.771281, 13.334009 ], [ 144.771304, 13.334067 ], [ 144.771309, 13.334143 ], [ 144.771239, 13.334252 ], [ 144.771202, 13.334283 ], [ 144.771161, 13.334319 ], [ 144.771025, 13.33448 ], [ 144.77096, 13.334575 ], [ 144.77097, 13.334628 ], [ 144.77093, 13.334704 ], [ 144.770881, 13.334742 ], [ 144.770797, 13.334775 ], [ 144.77068, 13.334836 ], [ 144.770581, 13.33494 ], [ 144.770551, 13.334988 ], [ 144.770512, 13.335035 ], [ 144.770423, 13.335082 ], [ 144.770326, 13.335081 ], [ 144.770281, 13.335138 ], [ 144.770256, 13.335191 ], [ 144.770192, 13.335295 ], [ 144.770167, 13.335415 ], [ 144.77021, 13.335477 ], [ 144.770283, 13.335468 ], [ 144.770332, 13.335493 ], [ 144.770341, 13.335531 ], [ 144.770321, 13.335569 ], [ 144.770268, 13.335578 ], [ 144.770232, 13.335572 ], [ 144.77023, 13.335738 ], [ 144.770227, 13.336236 ], [ 144.770227, 13.33632 ], [ 144.770221, 13.336402 ], [ 144.770244, 13.336724 ], [ 144.770316, 13.33769 ], [ 144.77034, 13.338013 ], [ 144.770399, 13.338037 ], [ 144.770511, 13.338028 ], [ 144.770628, 13.338053 ], [ 144.770731, 13.338054 ], [ 144.770794, 13.338083 ], [ 144.770818, 13.338132 ], [ 144.770891, 13.33818 ], [ 144.770979, 13.338152 ], [ 144.771086, 13.338163 ], [ 144.771184, 13.338202 ], [ 144.771236, 13.338355 ], [ 144.771284, 13.338427 ], [ 144.771337, 13.338476 ], [ 144.771371, 13.338576 ], [ 144.771434, 13.338625 ], [ 144.771482, 13.338711 ], [ 144.771579, 13.338774 ], [ 144.771695, 13.338861 ], [ 144.771716, 13.338896 ], [ 144.771762, 13.338972 ], [ 144.771818, 13.339011 ], [ 144.771822, 13.339101 ], [ 144.771841, 13.339202 ], [ 144.771894, 13.339293 ], [ 144.772038, 13.339486 ], [ 144.772082, 13.339572 ], [ 144.77209, 13.339682 ], [ 144.77206, 13.339763 ], [ 144.771992, 13.339815 ], [ 144.772011, 13.339825 ], [ 144.772006, 13.339859 ], [ 144.772005, 13.339911 ], [ 144.772054, 13.339974 ], [ 144.772112, 13.339984 ], [ 144.7722, 13.339985 ], [ 144.772253, 13.340095 ], [ 144.772247, 13.340138 ], [ 144.772203, 13.340176 ], [ 144.772188, 13.340204 ], [ 144.772202, 13.340257 ], [ 144.772261, 13.340286 ], [ 144.772295, 13.34032 ], [ 144.772304, 13.340344 ], [ 144.772318, 13.340406 ], [ 144.772362, 13.340445 ], [ 144.772361, 13.340512 ], [ 144.772409, 13.340584 ], [ 144.772521, 13.340647 ], [ 144.772545, 13.340724 ], [ 144.772554, 13.340801 ], [ 144.772597, 13.340858 ], [ 144.772655, 13.340926 ], [ 144.772635, 13.34105 ], [ 144.772615, 13.341102 ], [ 144.772628, 13.341193 ], [ 144.772676, 13.341289 ], [ 144.772644, 13.341394 ], [ 144.772633, 13.341466 ], [ 144.772574, 13.341552 ], [ 144.77249, 13.341637 ], [ 144.772412, 13.34166 ], [ 144.772294, 13.341683 ], [ 144.772128, 13.341705 ], [ 144.77205, 13.341686 ], [ 144.772011, 13.341652 ], [ 144.771923, 13.341665 ], [ 144.771864, 13.341708 ], [ 144.771834, 13.34177 ], [ 144.77181, 13.341793 ], [ 144.771741, 13.341807 ], [ 144.771683, 13.341831 ], [ 144.771633, 13.341864 ], [ 144.771599, 13.341926 ], [ 144.771494, 13.342188 ], [ 144.771453, 13.342312 ], [ 144.771463, 13.342364 ], [ 144.771516, 13.342427 ], [ 144.771554, 13.34248 ], [ 144.771593, 13.342576 ], [ 144.771645, 13.342734 ], [ 144.771664, 13.342763 ], [ 144.771713, 13.342749 ], [ 144.771772, 13.342773 ], [ 144.771804, 13.342775 ], [ 144.771845, 13.342779 ], [ 144.771874, 13.342736 ], [ 144.771967, 13.342742 ], [ 144.772021, 13.342713 ], [ 144.772114, 13.342705 ], [ 144.77229, 13.342668 ], [ 144.772353, 13.342702 ], [ 144.772411, 13.342755 ], [ 144.77243, 13.342832 ], [ 144.772454, 13.342894 ], [ 144.772493, 13.342947 ], [ 144.772497, 13.34299 ], [ 144.772472, 13.343052 ], [ 144.772433, 13.34308 ], [ 144.772422, 13.343152 ], [ 144.772461, 13.343215 ], [ 144.77247, 13.343286 ], [ 144.772421, 13.343343 ], [ 144.77241, 13.343386 ], [ 144.77243, 13.343439 ], [ 144.772458, 13.343478 ], [ 144.772429, 13.34352 ], [ 144.77238, 13.343553 ], [ 144.772355, 13.343591 ], [ 144.772335, 13.343649 ], [ 144.772305, 13.343715 ], [ 144.772267, 13.343746 ], [ 144.772241, 13.343767 ], [ 144.772179, 13.343843 ], [ 144.772134, 13.343943 ], [ 144.77208, 13.344015 ], [ 144.772026, 13.344095 ], [ 144.771917, 13.344161 ], [ 144.771859, 13.34419 ], [ 144.771785, 13.344246 ], [ 144.771783, 13.344251 ], [ 144.77176, 13.344313 ], [ 144.771691, 13.344365 ], [ 144.771595, 13.344412 ], [ 144.771558, 13.344498 ], [ 144.771439, 13.344683 ], [ 144.771389, 13.344788 ], [ 144.771378, 13.344926 ], [ 144.771396, 13.345094 ], [ 144.771482, 13.345272 ], [ 144.77152, 13.345401 ], [ 144.771703, 13.345675 ], [ 144.771804, 13.345872 ], [ 144.771847, 13.346021 ], [ 144.771896, 13.346131 ], [ 144.771971, 13.346299 ], [ 144.772019, 13.346434 ], [ 144.772096, 13.346578 ], [ 144.772157, 13.346798 ], [ 144.772146, 13.346975 ], [ 144.772136, 13.346994 ], [ 144.772106, 13.347056 ], [ 144.77207, 13.34719 ], [ 144.772049, 13.347342 ], [ 144.772053, 13.347452 ], [ 144.772042, 13.347576 ], [ 144.772032, 13.347691 ], [ 144.772036, 13.347775 ], [ 144.772048, 13.34805 ], [ 144.772071, 13.348232 ], [ 144.77204, 13.348409 ], [ 144.772043, 13.348609 ], [ 144.772031, 13.348786 ], [ 144.772022, 13.348845 ], [ 144.771997, 13.34903 ], [ 144.771975, 13.349293 ], [ 144.771974, 13.349403 ], [ 144.771986, 13.349694 ], [ 144.771934, 13.350043 ], [ 144.771913, 13.350282 ], [ 144.771911, 13.350473 ], [ 144.771884, 13.350741 ], [ 144.771877, 13.350942 ], [ 144.771916, 13.351277 ], [ 144.771947, 13.351621 ], [ 144.771995, 13.351732 ], [ 144.772091, 13.351847 ], [ 144.772163, 13.351958 ], [ 144.772198, 13.351971 ], [ 144.772212, 13.351977 ], [ 144.772256, 13.352021 ], [ 144.772269, 13.352112 ], [ 144.772362, 13.352184 ], [ 144.77243, 13.352218 ], [ 144.772463, 13.352314 ], [ 144.772432, 13.352467 ], [ 144.772402, 13.352543 ], [ 144.772372, 13.352672 ], [ 144.772297, 13.352815 ], [ 144.772249, 13.35288 ], [ 144.772223, 13.352915 ], [ 144.772173, 13.353005 ], [ 144.772158, 13.353096 ], [ 144.772108, 13.353172 ], [ 144.772083, 13.353234 ], [ 144.772117, 13.353315 ], [ 144.772116, 13.353378 ], [ 144.772082, 13.353458 ], [ 144.772076, 13.353473 ], [ 144.772068, 13.353559 ], [ 144.771895, 13.353815 ], [ 144.771805, 13.354006 ], [ 144.771745, 13.354144 ], [ 144.77168, 13.354321 ], [ 144.77169, 13.354359 ], [ 144.771659, 13.354492 ], [ 144.771657, 13.354555 ], [ 144.771652, 13.354722 ], [ 144.771655, 13.354889 ], [ 144.771689, 13.355 ], [ 144.771683, 13.355066 ], [ 144.771648, 13.355138 ], [ 144.771609, 13.3552 ], [ 144.771605, 13.355234 ], [ 144.771598, 13.355319 ], [ 144.771616, 13.355496 ], [ 144.771644, 13.35563 ], [ 144.771701, 13.355741 ], [ 144.771744, 13.355842 ], [ 144.771784, 13.356349 ], [ 144.771841, 13.356541 ], [ 144.771848, 13.356613 ], [ 144.771868, 13.356794 ], [ 144.771876, 13.356909 ], [ 144.771828, 13.357344 ], [ 144.771763, 13.357487 ], [ 144.771747, 13.357707 ], [ 144.771705, 13.357969 ], [ 144.771669, 13.358232 ], [ 144.771641, 13.358552 ], [ 144.771615, 13.358767 ], [ 144.771603, 13.358932 ], [ 144.771595, 13.359049 ], [ 144.771583, 13.359345 ], [ 144.771575, 13.359666 ], [ 144.771579, 13.359714 ], [ 144.771635, 13.360756 ], [ 144.771635, 13.361788 ], [ 144.771856, 13.361927 ], [ 144.771881, 13.362107 ], [ 144.771872, 13.362377 ], [ 144.771725, 13.362533 ], [ 144.771643, 13.362565 ], [ 144.771622, 13.362801 ], [ 144.771572, 13.362874 ], [ 144.771439, 13.363026 ], [ 144.771413, 13.363025 ], [ 144.771395, 13.363035 ], [ 144.771365, 13.363092 ], [ 144.77136, 13.363159 ], [ 144.77134, 13.36324 ], [ 144.771267, 13.363305 ], [ 144.771261, 13.363311 ], [ 144.771186, 13.363459 ], [ 144.771127, 13.363535 ], [ 144.771013, 13.363668 ], [ 144.770934, 13.363748 ], [ 144.770875, 13.363815 ], [ 144.77085, 13.363886 ], [ 144.77082, 13.364005 ], [ 144.770795, 13.364082 ], [ 144.77072, 13.364177 ], [ 144.770695, 13.364234 ], [ 144.770705, 13.364301 ], [ 144.770665, 13.364372 ], [ 144.770615, 13.364482 ], [ 144.77056, 13.364668 ], [ 144.770509, 13.365041 ], [ 144.770507, 13.365059 ], [ 144.770467, 13.36515 ], [ 144.770457, 13.365245 ], [ 144.770397, 13.365369 ], [ 144.770362, 13.365474 ], [ 144.770331, 13.36566 ], [ 144.770324, 13.365847 ], [ 144.770314, 13.365923 ], [ 144.770279, 13.365961 ], [ 144.770211, 13.365951 ], [ 144.770138, 13.365946 ], [ 144.770093, 13.365988 ], [ 144.770078, 13.36605 ], [ 144.770048, 13.366103 ], [ 144.769955, 13.366135 ], [ 144.769872, 13.366173 ], [ 144.769827, 13.366239 ], [ 144.769792, 13.366354 ], [ 144.769796, 13.366435 ], [ 144.769815, 13.366555 ], [ 144.769814, 13.366674 ], [ 144.769809, 13.366683 ], [ 144.769789, 13.366727 ], [ 144.76973, 13.366764 ], [ 144.76968, 13.366817 ], [ 144.769621, 13.366897 ], [ 144.769567, 13.366983 ], [ 144.769595, 13.367041 ], [ 144.76966, 13.367127 ], [ 144.769733, 13.367204 ], [ 144.769771, 13.367286 ], [ 144.769829, 13.367368 ], [ 144.769872, 13.36744 ], [ 144.769881, 13.367536 ], [ 144.769914, 13.367651 ], [ 144.769933, 13.367737 ], [ 144.769937, 13.367847 ], [ 144.769961, 13.367933 ], [ 144.770004, 13.368029 ], [ 144.770046, 13.368168 ], [ 144.770113, 13.368322 ], [ 144.770166, 13.368466 ], [ 144.770223, 13.368605 ], [ 144.770305, 13.368773 ], [ 144.770377, 13.368879 ], [ 144.770444, 13.369028 ], [ 144.770622, 13.369259 ], [ 144.770724, 13.369422 ], [ 144.771011, 13.369783 ], [ 144.771079, 13.369832 ], [ 144.771107, 13.369904 ], [ 144.771121, 13.369976 ], [ 144.771169, 13.370057 ], [ 144.771223, 13.370115 ], [ 144.771291, 13.370159 ], [ 144.771304, 13.370161 ], [ 144.771369, 13.370174 ], [ 144.771427, 13.370208 ], [ 144.771451, 13.370256 ], [ 144.771475, 13.370328 ], [ 144.771518, 13.370436 ], [ 144.771552, 13.370453 ], [ 144.77159, 13.370496 ], [ 144.771673, 13.370526 ], [ 144.771726, 13.37056 ], [ 144.771731, 13.370593 ], [ 144.771642, 13.370659 ], [ 144.771735, 13.370732 ], [ 144.771797, 13.370828 ], [ 144.77187, 13.370833 ], [ 144.771925, 13.370786 ], [ 144.771993, 13.370811 ], [ 144.772095, 13.370864 ], [ 144.772112, 13.37089 ], [ 144.772143, 13.370936 ], [ 144.772147, 13.371008 ], [ 144.77222, 13.371047 ], [ 144.772284, 13.371052 ], [ 144.772327, 13.371105 ], [ 144.772385, 13.371225 ], [ 144.772423, 13.371316 ], [ 144.772471, 13.371413 ], [ 144.77247, 13.371503 ], [ 144.772474, 13.371589 ], [ 144.772527, 13.37169 ], [ 144.772565, 13.371791 ], [ 144.772574, 13.371872 ], [ 144.772568, 13.371959 ], [ 144.772592, 13.372078 ], [ 144.772576, 13.372155 ], [ 144.772522, 13.372159 ], [ 144.772483, 13.372187 ], [ 144.772443, 13.372254 ], [ 144.772418, 13.372325 ], [ 144.772393, 13.372445 ], [ 144.772375, 13.372798 ], [ 144.772413, 13.372923 ], [ 144.772451, 13.372986 ], [ 144.772499, 13.37312 ], [ 144.772527, 13.37324 ], [ 144.772526, 13.373321 ], [ 144.772521, 13.373378 ], [ 144.772486, 13.373426 ], [ 144.772466, 13.373555 ], [ 144.77248, 13.373641 ], [ 144.772484, 13.373717 ], [ 144.772527, 13.373828 ], [ 144.77254, 13.373943 ], [ 144.772588, 13.374053 ], [ 144.772612, 13.374149 ], [ 144.772635, 13.374211 ], [ 144.772635, 13.374293 ], [ 144.772653, 13.374384 ], [ 144.772662, 13.37446 ], [ 144.77265, 13.374494 ], [ 144.772591, 13.374522 ], [ 144.772581, 13.374574 ], [ 144.772605, 13.374617 ], [ 144.772619, 13.37468 ], [ 144.772589, 13.374756 ], [ 144.772568, 13.374961 ], [ 144.772563, 13.374985 ], [ 144.772542, 13.375109 ], [ 144.772546, 13.375224 ], [ 144.772564, 13.375358 ], [ 144.772597, 13.375507 ], [ 144.772625, 13.375593 ], [ 144.772624, 13.375679 ], [ 144.772628, 13.37578 ], [ 144.772627, 13.37588 ], [ 144.772567, 13.376033 ], [ 144.772566, 13.376138 ], [ 144.772595, 13.376253 ], [ 144.772593, 13.376473 ], [ 144.772577, 13.376621 ], [ 144.77259, 13.37674 ], [ 144.772609, 13.376851 ], [ 144.772669, 13.376928 ], [ 144.772742, 13.376986 ], [ 144.772839, 13.377073 ], [ 144.773028, 13.377203 ], [ 144.773207, 13.377415 ], [ 144.77324, 13.377516 ], [ 144.773244, 13.377597 ], [ 144.773233, 13.377693 ], [ 144.773199, 13.37776 ], [ 144.773173, 13.37785 ], [ 144.773173, 13.377908 ], [ 144.773157, 13.378041 ], [ 144.773156, 13.378113 ], [ 144.773132, 13.378191 ], [ 144.773145, 13.378275 ], [ 144.773149, 13.378342 ], [ 144.773178, 13.378391 ], [ 144.773222, 13.378453 ], [ 144.773299, 13.378521 ], [ 144.773381, 13.378617 ], [ 144.773493, 13.378709 ], [ 144.773599, 13.378805 ], [ 144.773672, 13.378892 ], [ 144.773715, 13.378974 ], [ 144.773782, 13.379161 ], [ 144.773883, 13.37932 ], [ 144.773911, 13.37943 ], [ 144.7739, 13.379521 ], [ 144.773958, 13.379688 ], [ 144.774025, 13.379837 ], [ 144.774082, 13.37991 ], [ 144.774111, 13.379972 ], [ 144.774116, 13.380029 ], [ 144.77411, 13.380125 ], [ 144.774114, 13.38023 ], [ 144.774132, 13.380321 ], [ 144.774171, 13.380422 ], [ 144.774214, 13.380456 ], [ 144.774267, 13.380581 ], [ 144.774257, 13.380633 ], [ 144.774266, 13.380691 ], [ 144.774329, 13.380753 ], [ 144.774382, 13.380797 ], [ 144.774435, 13.380855 ], [ 144.774512, 13.38098 ], [ 144.774546, 13.381056 ], [ 144.774574, 13.381148 ], [ 144.774631, 13.381311 ], [ 144.774636, 13.381378 ], [ 144.77462, 13.381444 ], [ 144.774595, 13.381492 ], [ 144.774589, 13.381607 ], [ 144.774555, 13.381688 ], [ 144.77448, 13.381802 ], [ 144.774455, 13.381859 ], [ 144.774406, 13.381911 ], [ 144.774362, 13.381949 ], [ 144.774415, 13.381978 ], [ 144.774449, 13.382007 ], [ 144.774458, 13.382041 ], [ 144.774444, 13.382069 ], [ 144.774443, 13.382127 ], [ 144.774487, 13.38217 ], [ 144.774511, 13.382213 ], [ 144.77451, 13.38229 ], [ 144.774548, 13.382376 ], [ 144.77466, 13.382439 ], [ 144.774737, 13.382517 ], [ 144.774786, 13.382589 ], [ 144.774836, 13.382709 ], [ 144.774858, 13.38291 ], [ 144.774882, 13.382991 ], [ 144.774847, 13.383077 ], [ 144.774827, 13.383172 ], [ 144.774776, 13.38333 ], [ 144.77479, 13.383397 ], [ 144.774799, 13.383473 ], [ 144.774789, 13.383569 ], [ 144.774788, 13.383665 ], [ 144.774831, 13.383703 ], [ 144.774865, 13.38377 ], [ 144.774874, 13.383847 ], [ 144.774873, 13.383976 ], [ 144.774868, 13.384029 ], [ 144.774887, 13.384077 ], [ 144.77492, 13.384134 ], [ 144.774895, 13.384187 ], [ 144.774861, 13.384196 ], [ 144.774875, 13.384263 ], [ 144.774919, 13.384311 ], [ 144.774933, 13.384369 ], [ 144.774932, 13.384445 ], [ 144.774912, 13.384459 ], [ 144.774873, 13.384474 ], [ 144.77487, 13.384492 ], [ 144.774839, 13.384535 ], [ 144.774823, 13.384593 ], [ 144.774847, 13.384626 ], [ 144.774901, 13.384679 ], [ 144.774929, 13.384766 ], [ 144.774929, 13.384828 ], [ 144.774923, 13.384856 ], [ 144.774923, 13.384895 ], [ 144.774967, 13.384933 ], [ 144.774957, 13.384967 ], [ 144.774986, 13.38501 ], [ 144.775015, 13.385044 ], [ 144.775073, 13.385082 ], [ 144.775141, 13.385078 ], [ 144.775229, 13.385103 ], [ 144.775287, 13.385108 ], [ 144.775312, 13.385137 ], [ 144.775277, 13.385185 ], [ 144.775233, 13.385208 ], [ 144.775208, 13.385246 ], [ 144.775237, 13.385294 ], [ 144.7753, 13.385295 ], [ 144.775359, 13.385324 ], [ 144.775422, 13.385344 ], [ 144.775451, 13.385382 ], [ 144.775504, 13.385435 ], [ 144.775558, 13.385474 ], [ 144.775572, 13.385508 ], [ 144.775611, 13.385541 ], [ 144.775576, 13.385579 ], [ 144.775518, 13.385569 ], [ 144.775469, 13.385583 ], [ 144.775478, 13.385622 ], [ 144.775468, 13.38566 ], [ 144.775516, 13.385722 ], [ 144.77557, 13.385742 ], [ 144.775614, 13.385747 ], [ 144.775643, 13.385738 ], [ 144.775682, 13.385767 ], [ 144.775687, 13.385791 ], [ 144.775681, 13.385815 ], [ 144.775628, 13.385819 ], [ 144.775598, 13.385838 ], [ 144.775593, 13.385876 ], [ 144.775558, 13.385976 ], [ 144.775582, 13.386024 ], [ 144.775533, 13.386062 ], [ 144.775557, 13.386115 ], [ 144.775571, 13.386163 ], [ 144.775565, 13.38623 ], [ 144.775574, 13.386242 ], [ 144.775589, 13.386263 ], [ 144.775584, 13.386292 ], [ 144.77553, 13.386301 ], [ 144.77551, 13.386354 ], [ 144.775495, 13.38643 ], [ 144.775456, 13.386487 ], [ 144.77544, 13.386535 ], [ 144.775435, 13.386592 ], [ 144.775483, 13.38665 ], [ 144.775497, 13.386717 ], [ 144.775526, 13.386741 ], [ 144.775551, 13.386751 ], [ 144.77555, 13.386837 ], [ 144.775555, 13.386861 ], [ 144.775672, 13.38689 ], [ 144.775691, 13.386929 ], [ 144.775725, 13.386948 ], [ 144.775837, 13.386959 ], [ 144.775861, 13.386988 ], [ 144.775885, 13.387026 ], [ 144.775914, 13.38705 ], [ 144.775948, 13.387089 ], [ 144.775953, 13.387108 ], [ 144.775875, 13.387127 ], [ 144.775845, 13.387165 ], [ 144.775835, 13.387203 ], [ 144.775844, 13.387232 ], [ 144.775888, 13.387261 ], [ 144.775956, 13.387256 ], [ 144.775996, 13.387238 ], [ 144.77602, 13.387223 ], [ 144.77604, 13.387243 ], [ 144.776074, 13.387248 ], [ 144.776191, 13.387249 ], [ 144.776245, 13.38724 ], [ 144.776303, 13.387236 ], [ 144.776357, 13.387246 ], [ 144.776391, 13.387212 ], [ 144.77645, 13.387194 ], [ 144.776465, 13.387208 ], [ 144.776469, 13.38727 ], [ 144.776512, 13.387371 ], [ 144.776551, 13.387415 ], [ 144.776609, 13.38743 ], [ 144.776677, 13.387454 ], [ 144.776736, 13.387459 ], [ 144.776843, 13.387455 ], [ 144.776912, 13.387437 ], [ 144.777025, 13.38739 ], [ 144.777123, 13.387386 ], [ 144.77722, 13.387363 ], [ 144.777274, 13.387388 ], [ 144.777366, 13.387412 ], [ 144.777488, 13.387452 ], [ 144.777552, 13.387428 ], [ 144.777664, 13.387467 ], [ 144.777717, 13.387506 ], [ 144.77781, 13.387526 ], [ 144.777868, 13.387565 ], [ 144.777868, 13.387618 ], [ 144.777823, 13.38767 ], [ 144.777715, 13.387745 ], [ 144.777641, 13.387788 ], [ 144.777578, 13.387835 ], [ 144.777553, 13.387873 ], [ 144.777582, 13.387911 ], [ 144.777562, 13.387959 ], [ 144.777493, 13.387982 ], [ 144.777439, 13.387972 ], [ 144.77741, 13.387953 ], [ 144.777381, 13.387967 ], [ 144.777386, 13.387996 ], [ 144.777336, 13.388019 ], [ 144.777263, 13.388028 ], [ 144.777224, 13.388009 ], [ 144.777185, 13.387975 ], [ 144.777112, 13.387974 ], [ 144.777083, 13.387945 ], [ 144.777098, 13.387874 ], [ 144.777045, 13.387873 ], [ 144.776991, 13.387892 ], [ 144.776942, 13.387853 ], [ 144.776874, 13.387867 ], [ 144.776835, 13.387852 ], [ 144.776806, 13.387866 ], [ 144.776752, 13.387847 ], [ 144.776738, 13.387843 ], [ 144.776708, 13.387837 ], [ 144.776693, 13.387865 ], [ 144.776581, 13.387898 ], [ 144.776478, 13.387902 ], [ 144.776453, 13.387964 ], [ 144.7764, 13.38793 ], [ 144.776365, 13.38792 ], [ 144.776346, 13.387948 ], [ 144.776302, 13.387953 ], [ 144.776268, 13.387948 ], [ 144.77619, 13.387928 ], [ 144.77616, 13.387966 ], [ 144.776111, 13.387965 ], [ 144.776067, 13.387936 ], [ 144.776058, 13.387884 ], [ 144.77601, 13.387867 ], [ 144.776034, 13.387893 ], [ 144.776038, 13.387927 ], [ 144.776028, 13.387965 ], [ 144.775984, 13.38796 ], [ 144.77596, 13.387974 ], [ 144.775935, 13.388007 ], [ 144.775954, 13.388055 ], [ 144.775963, 13.388155 ], [ 144.775948, 13.388208 ], [ 144.775928, 13.38826 ], [ 144.775873, 13.388355 ], [ 144.775868, 13.388422 ], [ 144.775872, 13.388485 ], [ 144.775896, 13.388537 ], [ 144.775895, 13.388623 ], [ 144.775914, 13.38871 ], [ 144.775913, 13.388805 ], [ 144.775917, 13.388882 ], [ 144.775936, 13.388959 ], [ 144.775935, 13.389025 ], [ 144.775861, 13.389173 ], [ 144.775791, 13.389278 ], [ 144.775774, 13.389284 ], [ 144.775757, 13.389292 ], [ 144.775738, 13.389282 ], [ 144.775723, 13.389267 ], [ 144.775679, 13.389262 ], [ 144.775605, 13.389391 ], [ 144.77557, 13.389429 ], [ 144.775526, 13.389447 ], [ 144.775501, 13.389476 ], [ 144.775496, 13.389509 ], [ 144.775467, 13.389538 ], [ 144.775422, 13.389614 ], [ 144.775378, 13.389613 ], [ 144.775344, 13.389628 ], [ 144.775314, 13.38967 ], [ 144.775314, 13.389713 ], [ 144.775298, 13.389771 ], [ 144.775283, 13.389804 ], [ 144.775235, 13.389789 ], [ 144.775235, 13.389751 ], [ 144.775216, 13.389727 ], [ 144.775186, 13.389741 ], [ 144.775157, 13.389741 ], [ 144.775119, 13.389664 ], [ 144.775114, 13.389621 ], [ 144.775139, 13.389592 ], [ 144.77512, 13.389554 ], [ 144.775071, 13.389539 ], [ 144.775022, 13.389539 ], [ 144.774969, 13.389514 ], [ 144.77495, 13.389433 ], [ 144.774926, 13.389385 ], [ 144.774824, 13.389293 ], [ 144.77479, 13.389245 ], [ 144.774752, 13.389202 ], [ 144.774703, 13.389192 ], [ 144.774678, 13.389234 ], [ 144.774618, 13.389353 ], [ 144.774603, 13.389473 ], [ 144.774604, 13.389486 ], [ 144.774612, 13.389559 ], [ 144.774596, 13.389635 ], [ 144.77461, 13.389741 ], [ 144.774599, 13.389817 ], [ 144.774599, 13.389879 ], [ 144.774574, 13.389932 ], [ 144.77453, 13.389969 ], [ 144.77451, 13.390008 ], [ 144.774504, 13.390137 ], [ 144.774454, 13.390189 ], [ 144.77443, 13.390203 ], [ 144.774405, 13.390255 ], [ 144.774291, 13.390426 ], [ 144.774256, 13.390522 ], [ 144.774251, 13.390574 ], [ 144.774177, 13.390588 ], [ 144.774118, 13.390635 ], [ 144.774054, 13.390721 ], [ 144.774009, 13.390826 ], [ 144.773984, 13.390931 ], [ 144.773949, 13.391007 ], [ 144.773924, 13.39105 ], [ 144.773948, 13.391088 ], [ 144.773962, 13.391136 ], [ 144.773947, 13.391174 ], [ 144.773971, 13.391213 ], [ 144.77401, 13.391256 ], [ 144.774019, 13.391299 ], [ 144.774009, 13.391347 ], [ 144.773994, 13.391394 ], [ 144.773969, 13.391418 ], [ 144.773954, 13.391461 ], [ 144.773925, 13.391504 ], [ 144.77389, 13.391547 ], [ 144.773894, 13.391594 ], [ 144.77386, 13.391623 ], [ 144.77383, 13.391666 ], [ 144.77382, 13.391732 ], [ 144.773795, 13.39178 ], [ 144.773662, 13.391922 ], [ 144.773598, 13.391955 ], [ 144.773539, 13.391974 ], [ 144.773476, 13.392007 ], [ 144.773447, 13.392062 ], [ 144.773429, 13.392068 ], [ 144.773375, 13.392092 ], [ 144.773325, 13.392134 ], [ 144.773291, 13.392192 ], [ 144.773246, 13.392253 ], [ 144.773187, 13.392305 ], [ 144.773035, 13.392381 ], [ 144.772908, 13.392403 ], [ 144.772773, 13.392451 ], [ 144.772751, 13.392459 ], [ 144.77256, 13.392486 ], [ 144.772467, 13.392509 ], [ 144.772399, 13.392542 ], [ 144.772347, 13.392537 ], [ 144.77224, 13.392555 ], [ 144.772147, 13.392588 ], [ 144.771999, 13.392654 ], [ 144.771921, 13.39272 ], [ 144.771881, 13.392791 ], [ 144.771777, 13.392929 ], [ 144.771737, 13.392991 ], [ 144.771712, 13.393053 ], [ 144.771678, 13.393076 ], [ 144.771644, 13.393086 ], [ 144.77161, 13.393066 ], [ 144.771561, 13.393051 ], [ 144.771315, 13.393418 ], [ 144.770963, 13.393932 ], [ 144.771089, 13.393874 ], [ 144.771119, 13.393841 ], [ 144.771178, 13.393842 ], [ 144.771222, 13.393804 ], [ 144.771359, 13.393743 ], [ 144.771545, 13.393697 ], [ 144.77158, 13.393664 ], [ 144.771561, 13.393549 ], [ 144.771537, 13.393505 ], [ 144.771528, 13.393458 ], [ 144.771553, 13.393434 ], [ 144.771597, 13.393429 ], [ 144.771604, 13.393431 ], [ 144.77165, 13.393449 ], [ 144.771694, 13.393473 ], [ 144.771713, 13.393507 ], [ 144.771703, 13.393564 ], [ 144.771697, 13.39365 ], [ 144.771721, 13.393722 ], [ 144.771745, 13.39377 ], [ 144.771754, 13.393793 ], [ 144.771783, 13.393861 ], [ 144.771817, 13.393914 ], [ 144.771826, 13.394 ], [ 144.77185, 13.394022 ], [ 144.771879, 13.394049 ], [ 144.771912, 13.39414 ], [ 144.771937, 13.394178 ], [ 144.771985, 13.394179 ], [ 144.772039, 13.394203 ], [ 144.772106, 13.394333 ], [ 144.772149, 13.394391 ], [ 144.772203, 13.39441 ], [ 144.772252, 13.394392 ], [ 144.772335, 13.394392 ], [ 144.772403, 13.394372 ], [ 144.772433, 13.394364 ], [ 144.772467, 13.394403 ], [ 144.772475, 13.394527 ], [ 144.772471, 13.394577 ], [ 144.77247, 13.394594 ], [ 144.772484, 13.394704 ], [ 144.772522, 13.39482 ], [ 144.772632, 13.394988 ], [ 144.77272, 13.395075 ], [ 144.772817, 13.395152 ], [ 144.772899, 13.39521 ], [ 144.772929, 13.395221 ], [ 144.773006, 13.395249 ], [ 144.773104, 13.395279 ], [ 144.773211, 13.395285 ], [ 144.773333, 13.395286 ], [ 144.77346, 13.395263 ], [ 144.773666, 13.395179 ], [ 144.773745, 13.395132 ], [ 144.773843, 13.395085 ], [ 144.773882, 13.395028 ], [ 144.773936, 13.394999 ], [ 144.774005, 13.39501 ], [ 144.774053, 13.395043 ], [ 144.774151, 13.395059 ], [ 144.774263, 13.395064 ], [ 144.774497, 13.395133 ], [ 144.774604, 13.395153 ], [ 144.774618, 13.395201 ], [ 144.774647, 13.395259 ], [ 144.774705, 13.395317 ], [ 144.774832, 13.395356 ], [ 144.774939, 13.395376 ], [ 144.775076, 13.395387 ], [ 144.775205, 13.395383 ], [ 144.775308, 13.39538 ], [ 144.775479, 13.395343 ], [ 144.77566, 13.395292 ], [ 144.775895, 13.395217 ], [ 144.776014, 13.395218 ], [ 144.776062, 13.395219 ], [ 144.776116, 13.395162 ], [ 144.776118, 13.395147 ], [ 144.776126, 13.395109 ], [ 144.776235, 13.394938 ], [ 144.776289, 13.394896 ], [ 144.776328, 13.394882 ], [ 144.776357, 13.394925 ], [ 144.776375, 13.394934 ], [ 144.776416, 13.394954 ], [ 144.776484, 13.394969 ], [ 144.776504, 13.394987 ], [ 144.776527, 13.395008 ], [ 144.776556, 13.395056 ], [ 144.776595, 13.395099 ], [ 144.776644, 13.395124 ], [ 144.776755, 13.395263 ], [ 144.776823, 13.395321 ], [ 144.776895, 13.395403 ], [ 144.776947, 13.395444 ], [ 144.776968, 13.395461 ], [ 144.777026, 13.395514 ], [ 144.777064, 13.395582 ], [ 144.7772, 13.395712 ], [ 144.777277, 13.395808 ], [ 144.77733, 13.39589 ], [ 144.777378, 13.395976 ], [ 144.77744, 13.396187 ], [ 144.777556, 13.396289 ], [ 144.777619, 13.396395 ], [ 144.777667, 13.396424 ], [ 144.77772, 13.396515 ], [ 144.777783, 13.396597 ], [ 144.777851, 13.396631 ], [ 144.777909, 13.396684 ], [ 144.778, 13.396867 ], [ 144.777979, 13.396872 ], [ 144.778, 13.39689 ], [ 144.778032, 13.396951 ], [ 144.778091, 13.397063 ], [ 144.778196, 13.397327 ], [ 144.778308, 13.397531 ], [ 144.778359, 13.397625 ], [ 144.778393, 13.397721 ], [ 144.778529, 13.397813 ], [ 144.778572, 13.397885 ], [ 144.778664, 13.397972 ], [ 144.778732, 13.39803 ], [ 144.778814, 13.398074 ], [ 144.778926, 13.398166 ], [ 144.778998, 13.398267 ], [ 144.779153, 13.398431 ], [ 144.779216, 13.398455 ], [ 144.779255, 13.398503 ], [ 144.779284, 13.398551 ], [ 144.779342, 13.398571 ], [ 144.779401, 13.398557 ], [ 144.779449, 13.398606 ], [ 144.779469, 13.398649 ], [ 144.779556, 13.398678 ], [ 144.779644, 13.398679 ], [ 144.779722, 13.398704 ], [ 144.779804, 13.398805 ], [ 144.779902, 13.39882 ], [ 144.77995, 13.398844 ], [ 144.780028, 13.398917 ], [ 144.78013, 13.398956 ], [ 144.780222, 13.399009 ], [ 144.78028, 13.399067 ], [ 144.780344, 13.399077 ], [ 144.780377, 13.39914 ], [ 144.780436, 13.399183 ], [ 144.780523, 13.399227 ], [ 144.780591, 13.399266 ], [ 144.780698, 13.399305 ], [ 144.780796, 13.399315 ], [ 144.780825, 13.399359 ], [ 144.780829, 13.399426 ], [ 144.780848, 13.399464 ], [ 144.780857, 13.399555 ], [ 144.7809, 13.399637 ], [ 144.780958, 13.399728 ], [ 144.780982, 13.399819 ], [ 144.78103, 13.399882 ], [ 144.781069, 13.399868 ], [ 144.781118, 13.39993 ], [ 144.781136, 13.400007 ], [ 144.78118, 13.400079 ], [ 144.781253, 13.40008 ], [ 144.781286, 13.400147 ], [ 144.781305, 13.400224 ], [ 144.781354, 13.400258 ], [ 144.781368, 13.400339 ], [ 144.781402, 13.400373 ], [ 144.781465, 13.400388 ], [ 144.78147, 13.400412 ], [ 144.78144, 13.400474 ], [ 144.781469, 13.400517 ], [ 144.781488, 13.40057 ], [ 144.781541, 13.400637 ], [ 144.781667, 13.400724 ], [ 144.781674, 13.400757 ], [ 144.781676, 13.400763 ], [ 144.781661, 13.400834 ], [ 144.781695, 13.400906 ], [ 144.781709, 13.400983 ], [ 144.781699, 13.401021 ], [ 144.781834, 13.401142 ], [ 144.781871, 13.401166 ], [ 144.78189, 13.401228 ], [ 144.78186, 13.401271 ], [ 144.781874, 13.401348 ], [ 144.781902, 13.40142 ], [ 144.781951, 13.401482 ], [ 144.781979, 13.401631 ], [ 144.781992, 13.40175 ], [ 144.781982, 13.401798 ], [ 144.782025, 13.401856 ], [ 144.78203, 13.401942 ], [ 144.782005, 13.402004 ], [ 144.782004, 13.402071 ], [ 144.782057, 13.402129 ], [ 144.782086, 13.402196 ], [ 144.78208, 13.402287 ], [ 144.78204, 13.402372 ], [ 144.78202, 13.402458 ], [ 144.78198, 13.402506 ], [ 144.781955, 13.402611 ], [ 144.781935, 13.402677 ], [ 144.781939, 13.402788 ], [ 144.781931, 13.40307 ], [ 144.781925, 13.403175 ], [ 144.781852, 13.403481 ], [ 144.781838, 13.403494 ], [ 144.781839, 13.403513 ], [ 144.781834, 13.403547 ], [ 144.781819, 13.403595 ], [ 144.781804, 13.403657 ], [ 144.781779, 13.403709 ], [ 144.78174, 13.403728 ], [ 144.781696, 13.403703 ], [ 144.781618, 13.403679 ], [ 144.781559, 13.403712 ], [ 144.781495, 13.403726 ], [ 144.781427, 13.403711 ], [ 144.781363, 13.403734 ], [ 144.781324, 13.403753 ], [ 144.781299, 13.403882 ], [ 144.781303, 13.40393 ], [ 144.781312, 13.403977 ], [ 144.781283, 13.404039 ], [ 144.781287, 13.404125 ], [ 144.781305, 13.404212 ], [ 144.781334, 13.404241 ], [ 144.781353, 13.404332 ], [ 144.781352, 13.404446 ], [ 144.781336, 13.40458 ], [ 144.781378, 13.404853 ], [ 144.781421, 13.404882 ], [ 144.78147, 13.404873 ], [ 144.781494, 13.40495 ], [ 144.781508, 13.405026 ], [ 144.781561, 13.40507 ], [ 144.781679, 13.405061 ], [ 144.781722, 13.405081 ], [ 144.781776, 13.40512 ], [ 144.781795, 13.405187 ], [ 144.781876, 13.405364 ], [ 144.781934, 13.405417 ], [ 144.781983, 13.405447 ], [ 144.781987, 13.405499 ], [ 144.781972, 13.405542 ], [ 144.78201, 13.405657 ], [ 144.782058, 13.405763 ], [ 144.782086, 13.405887 ], [ 144.78212, 13.405979 ], [ 144.782133, 13.406089 ], [ 144.782211, 13.406147 ], [ 144.782293, 13.406195 ], [ 144.782347, 13.406263 ], [ 144.782439, 13.40633 ], [ 144.782487, 13.406398 ], [ 144.78253, 13.406441 ], [ 144.782589, 13.406427 ], [ 144.782638, 13.406433 ], [ 144.782677, 13.406428 ], [ 144.782686, 13.406505 ], [ 144.782684, 13.406529 ], [ 144.782717, 13.406572 ], [ 144.782751, 13.406582 ], [ 144.782771, 13.406582 ], [ 144.782785, 13.406625 ], [ 144.782824, 13.406659 ], [ 144.782868, 13.406688 ], [ 144.782911, 13.406741 ], [ 144.782911, 13.406789 ], [ 144.782925, 13.406856 ], [ 144.782944, 13.406918 ], [ 144.783035, 13.407067 ], [ 144.783138, 13.407082 ], [ 144.783157, 13.407116 ], [ 144.783152, 13.407145 ], [ 144.783117, 13.407178 ], [ 144.783141, 13.407255 ], [ 144.783174, 13.407327 ], [ 144.783228, 13.407318 ], [ 144.783252, 13.407356 ], [ 144.783232, 13.407404 ], [ 144.783266, 13.40749 ], [ 144.783314, 13.407557 ], [ 144.783362, 13.407639 ], [ 144.783415, 13.407692 ], [ 144.78342, 13.407735 ], [ 144.783365, 13.407859 ], [ 144.783364, 13.407921 ], [ 144.783388, 13.408008 ], [ 144.783446, 13.408094 ], [ 144.783495, 13.408104 ], [ 144.783572, 13.408143 ], [ 144.783577, 13.408205 ], [ 144.783542, 13.408253 ], [ 144.783492, 13.408338 ], [ 144.783531, 13.408406 ], [ 144.783511, 13.408449 ], [ 144.78354, 13.408506 ], [ 144.78353, 13.408549 ], [ 144.783563, 13.408583 ], [ 144.783582, 13.408655 ], [ 144.783548, 13.408669 ], [ 144.783513, 13.408707 ], [ 144.783445, 13.408764 ], [ 144.783423, 13.408955 ], [ 144.783404, 13.408956 ], [ 144.783404, 13.409004 ], [ 144.783427, 13.409114 ], [ 144.783446, 13.409148 ], [ 144.783416, 13.409209 ], [ 144.78341, 13.409343 ], [ 144.783478, 13.40943 ], [ 144.783492, 13.409483 ], [ 144.783492, 13.40954 ], [ 144.783506, 13.409607 ], [ 144.783519, 13.409648 ], [ 144.783534, 13.40966 ], [ 144.783569, 13.40966 ], [ 144.783593, 13.409684 ], [ 144.783597, 13.409727 ], [ 144.783548, 13.409799 ], [ 144.783576, 13.409904 ], [ 144.78361, 13.409981 ], [ 144.783663, 13.410039 ], [ 144.783711, 13.410116 ], [ 144.783769, 13.410159 ], [ 144.783779, 13.410212 ], [ 144.783812, 13.410274 ], [ 144.7839, 13.410285 ], [ 144.783968, 13.410305 ], [ 144.783992, 13.410343 ], [ 144.784006, 13.41041 ], [ 144.784075, 13.41042 ], [ 144.784113, 13.410459 ], [ 144.784201, 13.410503 ], [ 144.784362, 13.410518 ], [ 144.784391, 13.410571 ], [ 144.784435, 13.410562 ], [ 144.784512, 13.41062 ], [ 144.784585, 13.41064 ], [ 144.784644, 13.410679 ], [ 144.784717, 13.410675 ], [ 144.784756, 13.410689 ], [ 144.784819, 13.410728 ], [ 144.784897, 13.410753 ], [ 144.78498, 13.410739 ], [ 144.785019, 13.410768 ], [ 144.785053, 13.410778 ], [ 144.785067, 13.410816 ], [ 144.785091, 13.410855 ], [ 144.78516, 13.41086 ], [ 144.785193, 13.410918 ], [ 144.785261, 13.410961 ], [ 144.78533, 13.410981 ], [ 144.785383, 13.410991 ], [ 144.785432, 13.410992 ], [ 144.785486, 13.411006 ], [ 144.78552, 13.411045 ], [ 144.785568, 13.411079 ], [ 144.785637, 13.411079 ], [ 144.78567, 13.411108 ], [ 144.785709, 13.411133 ], [ 144.785753, 13.411128 ], [ 144.785802, 13.411129 ], [ 144.785899, 13.411192 ], [ 144.78596, 13.411226 ], [ 144.786023, 13.411226 ], [ 144.786062, 13.411241 ], [ 144.786101, 13.41128 ], [ 144.786145, 13.411309 ], [ 144.786198, 13.411357 ], [ 144.786232, 13.411381 ], [ 144.7863, 13.411415 ], [ 144.786358, 13.411449 ], [ 144.786427, 13.411474 ], [ 144.786505, 13.411484 ], [ 144.786558, 13.411508 ], [ 144.786695, 13.411553 ], [ 144.786748, 13.411553 ], [ 144.786797, 13.411568 ], [ 144.7868, 13.411571 ], [ 144.786831, 13.411606 ], [ 144.786875, 13.411616 ], [ 144.786933, 13.411612 ], [ 144.786992, 13.411641 ], [ 144.787011, 13.411689 ], [ 144.78704, 13.411718 ], [ 144.787079, 13.411719 ], [ 144.787128, 13.411709 ], [ 144.787191, 13.411729 ], [ 144.787254, 13.411782 ], [ 144.787322, 13.411902 ], [ 144.787326, 13.41195 ], [ 144.78736, 13.412017 ], [ 144.787383, 13.412128 ], [ 144.787387, 13.41218 ], [ 144.787406, 13.412243 ], [ 144.787406, 13.412267 ], [ 144.78745, 13.412291 ], [ 144.787484, 13.412334 ], [ 144.787496, 13.412385 ], [ 144.787711, 13.4124 ], [ 144.787745, 13.412455 ], [ 144.787758, 13.412551 ], [ 144.787722, 13.412633 ], [ 144.787778, 13.412709 ], [ 144.787819, 13.412805 ], [ 144.787882, 13.412833 ], [ 144.787888, 13.412929 ], [ 144.787978, 13.413013 ], [ 144.788061, 13.413109 ], [ 144.788138, 13.413178 ], [ 144.788249, 13.413248 ], [ 144.788306, 13.413187 ], [ 144.788418, 13.413195 ], [ 144.788438, 13.413277 ], [ 144.788374, 13.413331 ], [ 144.788373, 13.413427 ], [ 144.788457, 13.413503 ], [ 144.788506, 13.413504 ], [ 144.788702, 13.413485 ], [ 144.7888, 13.413486 ], [ 144.788905, 13.413514 ], [ 144.788905, 13.413562 ], [ 144.788883, 13.413624 ], [ 144.788854, 13.413678 ], [ 144.788839, 13.413795 ], [ 144.788838, 13.413946 ], [ 144.78883, 13.414007 ], [ 144.788829, 13.41411 ], [ 144.788759, 13.414123 ], [ 144.78871, 13.414109 ], [ 144.788626, 13.41417 ], [ 144.788541, 13.414245 ], [ 144.788505, 13.41434 ], [ 144.788497, 13.41445 ], [ 144.788482, 13.414559 ], [ 144.788446, 13.414676 ], [ 144.788397, 13.414737 ], [ 144.788384, 13.414803 ], [ 144.788382, 13.414812 ], [ 144.788395, 13.414915 ], [ 144.788339, 13.414922 ], [ 144.788276, 13.414948 ], [ 144.788219, 13.415023 ], [ 144.788204, 13.415085 ], [ 144.788184, 13.415251 ], [ 144.788181, 13.415284 ], [ 144.788201, 13.415393 ], [ 144.788229, 13.415442 ], [ 144.788186, 13.415496 ], [ 144.788095, 13.41555 ], [ 144.788004, 13.415536 ], [ 144.78792, 13.415535 ], [ 144.78787, 13.415589 ], [ 144.7878, 13.415644 ], [ 144.787646, 13.41567 ], [ 144.787554, 13.415717 ], [ 144.787435, 13.415743 ], [ 144.787302, 13.415749 ], [ 144.787175, 13.415775 ], [ 144.787105, 13.415816 ], [ 144.787007, 13.415829 ], [ 144.786923, 13.415828 ], [ 144.786861, 13.415853 ], [ 144.786663, 13.415935 ], [ 144.786396, 13.416015 ], [ 144.786327, 13.416018 ], [ 144.78613, 13.416027 ], [ 144.786073, 13.416053 ], [ 144.785975, 13.416107 ], [ 144.785925, 13.416155 ], [ 144.785886, 13.416223 ], [ 144.785865, 13.416278 ], [ 144.78578, 13.416332 ], [ 144.78571, 13.416318 ], [ 144.78564, 13.416331 ], [ 144.785639, 13.416392 ], [ 144.785618, 13.416454 ], [ 144.785597, 13.41646 ], [ 144.785527, 13.416481 ], [ 144.785415, 13.416486 ], [ 144.785309, 13.41652 ], [ 144.785225, 13.416526 ], [ 144.785189, 13.416587 ], [ 144.785147, 13.416642 ], [ 144.785132, 13.416751 ], [ 144.785089, 13.416847 ], [ 144.785053, 13.416908 ], [ 144.785045, 13.417025 ], [ 144.785066, 13.417114 ], [ 144.7851, 13.417162 ], [ 144.785107, 13.417231 ], [ 144.78505, 13.417313 ], [ 144.785042, 13.417381 ], [ 144.784971, 13.417449 ], [ 144.784894, 13.41751 ], [ 144.784707, 13.417632 ], [ 144.784601, 13.417707 ], [ 144.78451, 13.417781 ], [ 144.784446, 13.417849 ], [ 144.78441, 13.417938 ], [ 144.78436, 13.418033 ], [ 144.784282, 13.418142 ], [ 144.784239, 13.418272 ], [ 144.784208, 13.41863 ], [ 144.784208, 13.418642 ], [ 144.784213, 13.418786 ], [ 144.784198, 13.418937 ], [ 144.784197, 13.419033 ], [ 144.784217, 13.419129 ], [ 144.784173, 13.419595 ], [ 144.784159, 13.419729 ], [ 144.784147, 13.419862 ], [ 144.784111, 13.42004 ], [ 144.784105, 13.420128 ], [ 144.784096, 13.420263 ], [ 144.784091, 13.420342 ], [ 144.784072, 13.420523 ], [ 144.784067, 13.420581 ], [ 144.784023, 13.4208 ], [ 144.783965, 13.420999 ], [ 144.783894, 13.421183 ], [ 144.783899, 13.421283 ], [ 144.7839, 13.4213 ], [ 144.783877, 13.421443 ], [ 144.783846, 13.421539 ], [ 144.783947, 13.421626 ], [ 144.783984, 13.421657 ], [ 144.784102, 13.421768 ], [ 144.784213, 13.42183 ], [ 144.784276, 13.421906 ], [ 144.784344, 13.422058 ], [ 144.784398, 13.422346 ], [ 144.784401, 13.422387 ], [ 144.784404, 13.422428 ], [ 144.784465, 13.4226 ], [ 144.784576, 13.422725 ], [ 144.784708, 13.422925 ], [ 144.78484, 13.423042 ], [ 144.784978, 13.423188 ], [ 144.785062, 13.423271 ], [ 144.785166, 13.42332 ], [ 144.785256, 13.423451 ], [ 144.785381, 13.423609 ], [ 144.785547, 13.42381 ], [ 144.785665, 13.423962 ], [ 144.785769, 13.424072 ], [ 144.785876, 13.424224 ], [ 144.786203, 13.424474 ], [ 144.78644, 13.424585 ], [ 144.786574, 13.424643 ], [ 144.786698, 13.424697 ], [ 144.786964, 13.424761 ], [ 144.787166, 13.424825 ], [ 144.787348, 13.424861 ], [ 144.787604, 13.42493 ], [ 144.787613, 13.424932 ], [ 144.788118, 13.425119 ], [ 144.788255, 13.42517 ], [ 144.788493, 13.425241 ], [ 144.788548, 13.425296 ], [ 144.788859, 13.425409 ], [ 144.788978, 13.42543 ], [ 144.78909, 13.425424 ], [ 144.789188, 13.42546 ], [ 144.789391, 13.425441 ], [ 144.78965, 13.425443 ], [ 144.78969, 13.425454 ], [ 144.789846, 13.4255 ], [ 144.790007, 13.425522 ], [ 144.790196, 13.42551 ], [ 144.79023, 13.425512 ], [ 144.790248, 13.425513 ], [ 144.790302, 13.425516 ], [ 144.79032, 13.425518 ], [ 144.790434, 13.425525 ], [ 144.790665, 13.425548 ], [ 144.790701, 13.425552 ], [ 144.79084, 13.42557 ], [ 144.790979, 13.425619 ], [ 144.791133, 13.425662 ], [ 144.791293, 13.425773 ], [ 144.79153, 13.425905 ], [ 144.791707, 13.426064 ], [ 144.791951, 13.426231 ], [ 144.792027, 13.426276 ], [ 144.792164, 13.426358 ], [ 144.792195, 13.426377 ], [ 144.792411, 13.426461 ], [ 144.792614, 13.426491 ], [ 144.792622, 13.426491 ], [ 144.792782, 13.426506 ], [ 144.792942, 13.42652 ], [ 144.79302, 13.426528 ], [ 144.793104, 13.426488 ], [ 144.793154, 13.426413 ], [ 144.79321, 13.426366 ], [ 144.793301, 13.426359 ], [ 144.793357, 13.426372 ], [ 144.793392, 13.426381 ], [ 144.793419, 13.426429 ], [ 144.79349, 13.42643 ], [ 144.793588, 13.426383 ], [ 144.793708, 13.426356 ], [ 144.793819, 13.426405 ], [ 144.793896, 13.426454 ], [ 144.794077, 13.426599 ], [ 144.794125, 13.426675 ], [ 144.794215, 13.426758 ], [ 144.79432, 13.426807 ], [ 144.794412, 13.426832 ], [ 144.794425, 13.426836 ], [ 144.794502, 13.426816 ], [ 144.794621, 13.426817 ], [ 144.794684, 13.426858 ], [ 144.794711, 13.42692 ], [ 144.794717, 13.427023 ], [ 144.794758, 13.427092 ], [ 144.794919, 13.427155 ], [ 144.795106, 13.427356 ], [ 144.795267, 13.427419 ], [ 144.795343, 13.427536 ], [ 144.79544, 13.427592 ], [ 144.795503, 13.427585 ], [ 144.795566, 13.427675 ], [ 144.795712, 13.427745 ], [ 144.795949, 13.427912 ], [ 144.796053, 13.427967 ], [ 144.796171, 13.428057 ], [ 144.796304, 13.428141 ], [ 144.796408, 13.42819 ], [ 144.796499, 13.428197 ], [ 144.796583, 13.428232 ], [ 144.796653, 13.428281 ], [ 144.796723, 13.428295 ], [ 144.79675, 13.428357 ], [ 144.79689, 13.428393 ], [ 144.797057, 13.428447 ], [ 144.797106, 13.428463 ], [ 144.797253, 13.428526 ], [ 144.797428, 13.428555 ], [ 144.797546, 13.428597 ], [ 144.797693, 13.428612 ], [ 144.797833, 13.428607 ], [ 144.797988, 13.428574 ], [ 144.798066, 13.428458 ], [ 144.79807, 13.428389 ], [ 144.798082, 13.428191 ], [ 144.798084, 13.428183 ], [ 144.798102, 13.428117 ], [ 144.798111, 13.428081 ], [ 144.798168, 13.428027 ], [ 144.798218, 13.427924 ], [ 144.798288, 13.427884 ], [ 144.79838, 13.42785 ], [ 144.798457, 13.427837 ], [ 144.798549, 13.427735 ], [ 144.798648, 13.427647 ], [ 144.798739, 13.427586 ], [ 144.798851, 13.427553 ], [ 144.7989, 13.427588 ], [ 144.798994, 13.42763 ], [ 144.799085, 13.427665 ], [ 144.799183, 13.427672 ], [ 144.799246, 13.427632 ], [ 144.79931, 13.427584 ], [ 144.799387, 13.427564 ], [ 144.79964, 13.427436 ], [ 144.799683, 13.427368 ], [ 144.799768, 13.427321 ], [ 144.800111, 13.427262 ], [ 144.800195, 13.42729 ], [ 144.800161, 13.427235 ], [ 144.800133, 13.427167 ], [ 144.800161, 13.427153 ], [ 144.800211, 13.42714 ], [ 144.800253, 13.42714 ], [ 144.800302, 13.427134 ], [ 144.800337, 13.427086 ], [ 144.800352, 13.427038 ], [ 144.800373, 13.427018 ], [ 144.800303, 13.426983 ], [ 144.800276, 13.4269 ], [ 144.80029, 13.426853 ], [ 144.800333, 13.426784 ], [ 144.800382, 13.426764 ], [ 144.800431, 13.42673 ], [ 144.800466, 13.426731 ], [ 144.800494, 13.426779 ], [ 144.800493, 13.426841 ], [ 144.800507, 13.426889 ], [ 144.800549, 13.42693 ], [ 144.800619, 13.426938 ], [ 144.800767, 13.426836 ], [ 144.800872, 13.426775 ], [ 144.80097, 13.426749 ], [ 144.801076, 13.42675 ], [ 144.80118, 13.426778 ], [ 144.8013, 13.426758 ], [ 144.801391, 13.426732 ], [ 144.801482, 13.426733 ], [ 144.801545, 13.426767 ], [ 144.801656, 13.426803 ], [ 144.801803, 13.426831 ], [ 144.801877, 13.426853 ], [ 144.801968, 13.426826 ], [ 144.802031, 13.426785 ], [ 144.802129, 13.426774 ], [ 144.802143, 13.426773 ], [ 144.802221, 13.426725 ], [ 144.802305, 13.426706 ], [ 144.802347, 13.42672 ], [ 144.802431, 13.426734 ], [ 144.802494, 13.426707 ], [ 144.802537, 13.426666 ], [ 144.802621, 13.426612 ], [ 144.802691, 13.426606 ], [ 144.802761, 13.426614 ], [ 144.802839, 13.42658 ], [ 144.80286, 13.426546 ], [ 144.802944, 13.426512 ], [ 144.803056, 13.426527 ], [ 144.803147, 13.426535 ], [ 144.803231, 13.426522 ], [ 144.803253, 13.426474 ], [ 144.803281, 13.426433 ], [ 144.803372, 13.426427 ], [ 144.80347, 13.426407 ], [ 144.803561, 13.426429 ], [ 144.803568, 13.426463 ], [ 144.803694, 13.426464 ], [ 144.803764, 13.426478 ], [ 144.803848, 13.42652 ], [ 144.803898, 13.426575 ], [ 144.803946, 13.426584 ], [ 144.803965, 13.426565 ], [ 144.80399, 13.426523 ], [ 144.804074, 13.426428 ], [ 144.804152, 13.426409 ], [ 144.804206, 13.426434 ], [ 144.804328, 13.426401 ], [ 144.804377, 13.426435 ], [ 144.804406, 13.426469 ], [ 144.80444, 13.426488 ], [ 144.804523, 13.426484 ], [ 144.804582, 13.426485 ], [ 144.804665, 13.4265 ], [ 144.804752, 13.426524 ], [ 144.804821, 13.426501 ], [ 144.804919, 13.426488 ], [ 144.804978, 13.426445 ], [ 144.805056, 13.426431 ], [ 144.805139, 13.426432 ], [ 144.805256, 13.42649 ], [ 144.805383, 13.426506 ], [ 144.805465, 13.42654 ], [ 144.805538, 13.426584 ], [ 144.805626, 13.426575 ], [ 144.805636, 13.426537 ], [ 144.805681, 13.426494 ], [ 144.805759, 13.426466 ], [ 144.805803, 13.426519 ], [ 144.805817, 13.426577 ], [ 144.805773, 13.4266 ], [ 144.805772, 13.426643 ], [ 144.805801, 13.426677 ], [ 144.805865, 13.426692 ], [ 144.805889, 13.426706 ], [ 144.805935, 13.426745 ], [ 144.805969, 13.426808 ], [ 144.806032, 13.426818 ], [ 144.806105, 13.426842 ], [ 144.806158, 13.426886 ], [ 144.806217, 13.426905 ], [ 144.80629, 13.426916 ], [ 144.806329, 13.426882 ], [ 144.806403, 13.426859 ], [ 144.806451, 13.426883 ], [ 144.806544, 13.426918 ], [ 144.806573, 13.426899 ], [ 144.806622, 13.426909 ], [ 144.806656, 13.426938 ], [ 144.806666, 13.426971 ], [ 144.806685, 13.426986 ], [ 144.806744, 13.426991 ], [ 144.806758, 13.427006 ], [ 144.806772, 13.427034 ], [ 144.806821, 13.427054 ], [ 144.806884, 13.427088 ], [ 144.806918, 13.427093 ], [ 144.806952, 13.427127 ], [ 144.806986, 13.427151 ], [ 144.807045, 13.427161 ], [ 144.807123, 13.427162 ], [ 144.807167, 13.427181 ], [ 144.807191, 13.42721 ], [ 144.807215, 13.427225 ], [ 144.80726, 13.427197 ], [ 144.807303, 13.427221 ], [ 144.807332, 13.427259 ], [ 144.807381, 13.427312 ], [ 144.807395, 13.427341 ], [ 144.80737, 13.427422 ], [ 144.807379, 13.427441 ], [ 144.807404, 13.427442 ], [ 144.807438, 13.427413 ], [ 144.807482, 13.427395 ], [ 144.807546, 13.427405 ], [ 144.807604, 13.427439 ], [ 144.807672, 13.427535 ], [ 144.807749, 13.427598 ], [ 144.807793, 13.427641 ], [ 144.807837, 13.427665 ], [ 144.807846, 13.427704 ], [ 144.807836, 13.427732 ], [ 144.807816, 13.427751 ], [ 144.807825, 13.427814 ], [ 144.807864, 13.427819 ], [ 144.807898, 13.427862 ], [ 144.807959, 13.427886 ], [ 144.808023, 13.427887 ], [ 144.808037, 13.427944 ], [ 144.808081, 13.427954 ], [ 144.808134, 13.427955 ], [ 144.808129, 13.428012 ], [ 144.808099, 13.428055 ], [ 144.808148, 13.428051 ], [ 144.808182, 13.428061 ], [ 144.808192, 13.428108 ], [ 144.808225, 13.428142 ], [ 144.80825, 13.428162 ], [ 144.808259, 13.428195 ], [ 144.808244, 13.428224 ], [ 144.808239, 13.428257 ], [ 144.808244, 13.428305 ], [ 144.808345, 13.428411 ], [ 144.808393, 13.428474 ], [ 144.808446, 13.42856 ], [ 144.80849, 13.428623 ], [ 144.808509, 13.42868 ], [ 144.808552, 13.428733 ], [ 144.808596, 13.428777 ], [ 144.808659, 13.428811 ], [ 144.808718, 13.428811 ], [ 144.808742, 13.428826 ], [ 144.808699, 13.428846 ], [ 144.808684, 13.428857 ], [ 144.808688, 13.428892 ], [ 144.808712, 13.42894 ], [ 144.808779, 13.429027 ], [ 144.808789, 13.429051 ], [ 144.808833, 13.42907 ], [ 144.808819, 13.429105 ], [ 144.808817, 13.429123 ], [ 144.808842, 13.429152 ], [ 144.808841, 13.429185 ], [ 144.808827, 13.429221 ], [ 144.808812, 13.429233 ], [ 144.808826, 13.429266 ], [ 144.808875, 13.429276 ], [ 144.808933, 13.429301 ], [ 144.808992, 13.429316 ], [ 144.809025, 13.429345 ], [ 144.80901, 13.429383 ], [ 144.808961, 13.429411 ], [ 144.808946, 13.42944 ], [ 144.808941, 13.429483 ], [ 144.80899, 13.429521 ], [ 144.809043, 13.429526 ], [ 144.809092, 13.429536 ], [ 144.809067, 13.429584 ], [ 144.809077, 13.429618 ], [ 144.809101, 13.429675 ], [ 144.80912, 13.429699 ], [ 144.809183, 13.429728 ], [ 144.809193, 13.429772 ], [ 144.809222, 13.429805 ], [ 144.809226, 13.429839 ], [ 144.809157, 13.429872 ], [ 144.809172, 13.429924 ], [ 144.809162, 13.429958 ], [ 144.809151, 13.430044 ], [ 144.809179, 13.430164 ], [ 144.809199, 13.430183 ], [ 144.809188, 13.43024 ], [ 144.809217, 13.43035 ], [ 144.809206, 13.430412 ], [ 144.809211, 13.430484 ], [ 144.80922, 13.430537 ], [ 144.809259, 13.430561 ], [ 144.809278, 13.43058 ], [ 144.809272, 13.430671 ], [ 144.809257, 13.430705 ], [ 144.809256, 13.430824 ], [ 144.809261, 13.430858 ], [ 144.8093, 13.430868 ], [ 144.809319, 13.430887 ], [ 144.809338, 13.430935 ], [ 144.809333, 13.431021 ], [ 144.809318, 13.431078 ], [ 144.809356, 13.431098 ], [ 144.809396, 13.431093 ], [ 144.809415, 13.431117 ], [ 144.809405, 13.431151 ], [ 144.80937, 13.431198 ], [ 144.809375, 13.431232 ], [ 144.809414, 13.431246 ], [ 144.809428, 13.431275 ], [ 144.809462, 13.431299 ], [ 144.809471, 13.431352 ], [ 144.809468, 13.431443 ], [ 144.809473, 13.431491 ], [ 144.809516, 13.43151 ], [ 144.809535, 13.431568 ], [ 144.809574, 13.431587 ], [ 144.809603, 13.431631 ], [ 144.809598, 13.431688 ], [ 144.809583, 13.431721 ], [ 144.809631, 13.431755 ], [ 144.809661, 13.43176 ], [ 144.809675, 13.431794 ], [ 144.809641, 13.431803 ], [ 144.80963, 13.431875 ], [ 144.809644, 13.432009 ], [ 144.809663, 13.432057 ], [ 144.809677, 13.432109 ], [ 144.809706, 13.432167 ], [ 144.809705, 13.432253 ], [ 144.809797, 13.432292 ], [ 144.809832, 13.432273 ], [ 144.80989, 13.432279 ], [ 144.8099, 13.432331 ], [ 144.809875, 13.432365 ], [ 144.809836, 13.432398 ], [ 144.809821, 13.432421 ], [ 144.80982, 13.432445 ], [ 144.809835, 13.432484 ], [ 144.809864, 13.432494 ], [ 144.809888, 13.432561 ], [ 144.809981, 13.432547 ], [ 144.810005, 13.432581 ], [ 144.810088, 13.432582 ], [ 144.810132, 13.432596 ], [ 144.810146, 13.432639 ], [ 144.810131, 13.432711 ], [ 144.810182, 13.432745 ], [ 144.810191, 13.432812 ], [ 144.810181, 13.43286 ], [ 144.810137, 13.432869 ], [ 144.810083, 13.432873 ], [ 144.810107, 13.43294 ], [ 144.810067, 13.432978 ], [ 144.810057, 13.433002 ], [ 144.810047, 13.433055 ], [ 144.810091, 13.433079 ], [ 144.810115, 13.433127 ], [ 144.810139, 13.433161 ], [ 144.810168, 13.433228 ], [ 144.81024, 13.433271 ], [ 144.810269, 13.433329 ], [ 144.810308, 13.433372 ], [ 144.810381, 13.433407 ], [ 144.81042, 13.433431 ], [ 144.810454, 13.433474 ], [ 144.810482, 13.433537 ], [ 144.810536, 13.433594 ], [ 144.81055, 13.433642 ], [ 144.810613, 13.433686 ], [ 144.810696, 13.433691 ], [ 144.810769, 13.433735 ], [ 144.810803, 13.433774 ], [ 144.810787, 13.433821 ], [ 144.810743, 13.433854 ], [ 144.810757, 13.433898 ], [ 144.810835, 13.433941 ], [ 144.810855, 13.433966 ], [ 144.810859, 13.43397 ], [ 144.810913, 13.434014 ], [ 144.810929, 13.434042 ], [ 144.810934, 13.434086 ], [ 144.810924, 13.434129 ], [ 144.810904, 13.434162 ], [ 144.81087, 13.434166 ], [ 144.810831, 13.43419 ], [ 144.810884, 13.434233 ], [ 144.810885, 13.434252 ], [ 144.810902, 13.434261 ], [ 144.810927, 13.434286 ], [ 144.810947, 13.43433 ], [ 144.81099, 13.434392 ], [ 144.811019, 13.434421 ], [ 144.811058, 13.434474 ], [ 144.811072, 13.434503 ], [ 144.811115, 13.434551 ], [ 144.811144, 13.43459 ], [ 144.811198, 13.434628 ], [ 144.811242, 13.434633 ], [ 144.811266, 13.4346 ], [ 144.811305, 13.434615 ], [ 144.811325, 13.434639 ], [ 144.811364, 13.434654 ], [ 144.811417, 13.434664 ], [ 144.811529, 13.434751 ], [ 144.811597, 13.434785 ], [ 144.811626, 13.434809 ], [ 144.811669, 13.434871 ], [ 144.811704, 13.434891 ], [ 144.811732, 13.434939 ], [ 144.811796, 13.434949 ], [ 144.81182, 13.434964 ], [ 144.811825, 13.435007 ], [ 144.811863, 13.435079 ], [ 144.811912, 13.435094 ], [ 144.811956, 13.435094 ], [ 144.812014, 13.435109 ], [ 144.812038, 13.435166 ], [ 144.812067, 13.435205 ], [ 144.812072, 13.435243 ], [ 144.812032, 13.435267 ], [ 144.812022, 13.4353 ], [ 144.812027, 13.435343 ], [ 144.812066, 13.435348 ], [ 144.812105, 13.435325 ], [ 144.812144, 13.435335 ], [ 144.812144, 13.435387 ], [ 144.812119, 13.435401 ], [ 144.812104, 13.435416 ], [ 144.812075, 13.43542 ], [ 144.812065, 13.435463 ], [ 144.812069, 13.435501 ], [ 144.812103, 13.435521 ], [ 144.812137, 13.435555 ], [ 144.812147, 13.435579 ], [ 144.812141, 13.435636 ], [ 144.812204, 13.435718 ], [ 144.812223, 13.435766 ], [ 144.812277, 13.4358 ], [ 144.812345, 13.435853 ], [ 144.812379, 13.435867 ], [ 144.812408, 13.435892 ], [ 144.812393, 13.435906 ], [ 144.812378, 13.435953 ], [ 144.812372, 13.436006 ], [ 144.812382, 13.436054 ], [ 144.812406, 13.436069 ], [ 144.812435, 13.436121 ], [ 144.812444, 13.43616 ], [ 144.812493, 13.436232 ], [ 144.812531, 13.436251 ], [ 144.812619, 13.436319 ], [ 144.812643, 13.436372 ], [ 144.812672, 13.43641 ], [ 144.812715, 13.436439 ], [ 144.812759, 13.436449 ], [ 144.812759, 13.436488 ], [ 144.812798, 13.436526 ], [ 144.812841, 13.436555 ], [ 144.812851, 13.436617 ], [ 144.812896, 13.436714 ], [ 144.812964, 13.436738 ], [ 144.813013, 13.436695 ], [ 144.813043, 13.436677 ], [ 144.813024, 13.436629 ], [ 144.813068, 13.436586 ], [ 144.813097, 13.436644 ], [ 144.813146, 13.436677 ], [ 144.813204, 13.436735 ], [ 144.813272, 13.436765 ], [ 144.81332, 13.436832 ], [ 144.813329, 13.436899 ], [ 144.813329, 13.436947 ], [ 144.813343, 13.437023 ], [ 144.813391, 13.437053 ], [ 144.813445, 13.437043 ], [ 144.813489, 13.437015 ], [ 144.813533, 13.43703 ], [ 144.813543, 13.437078 ], [ 144.813581, 13.437112 ], [ 144.81364, 13.437141 ], [ 144.813664, 13.437174 ], [ 144.813663, 13.437208 ], [ 144.813722, 13.437223 ], [ 144.813766, 13.437214 ], [ 144.81382, 13.437228 ], [ 144.813854, 13.437262 ], [ 144.813878, 13.437305 ], [ 144.813887, 13.437363 ], [ 144.813857, 13.43741 ], [ 144.813823, 13.437448 ], [ 144.813807, 13.43752 ], [ 144.813802, 13.437582 ], [ 144.813826, 13.437611 ], [ 144.813874, 13.43765 ], [ 144.813898, 13.437707 ], [ 144.813902, 13.437803 ], [ 144.813926, 13.437865 ], [ 144.813955, 13.437894 ], [ 144.813999, 13.437928 ], [ 144.814013, 13.437976 ], [ 144.813989, 13.438015 ], [ 144.813973, 13.438026 ], [ 144.813993, 13.438062 ], [ 144.814027, 13.438072 ], [ 144.814075, 13.438134 ], [ 144.814129, 13.438164 ], [ 144.814197, 13.438159 ], [ 144.814222, 13.43814 ], [ 144.814256, 13.438088 ], [ 144.814291, 13.438084 ], [ 144.814325, 13.438113 ], [ 144.814408, 13.438118 ], [ 144.814466, 13.438147 ], [ 144.814475, 13.438176 ], [ 144.814539, 13.438186 ], [ 144.814578, 13.438144 ], [ 144.814627, 13.438168 ], [ 144.814651, 13.438211 ], [ 144.814709, 13.43825 ], [ 144.814728, 13.438288 ], [ 144.814797, 13.438322 ], [ 144.814835, 13.438361 ], [ 144.814864, 13.438414 ], [ 144.814878, 13.438457 ], [ 144.814927, 13.438505 ], [ 144.814956, 13.438539 ], [ 144.81498, 13.438592 ], [ 144.815018, 13.438697 ], [ 144.815086, 13.438712 ], [ 144.815125, 13.438717 ], [ 144.815129, 13.43878 ], [ 144.815173, 13.438818 ], [ 144.815247, 13.438795 ], [ 144.815296, 13.438786 ], [ 144.815466, 13.438816 ], [ 144.81552, 13.438831 ], [ 144.815527, 13.438836 ], [ 144.815588, 13.438879 ], [ 144.815631, 13.438937 ], [ 144.815631, 13.43898 ], [ 144.815587, 13.439018 ], [ 144.815571, 13.439085 ], [ 144.815551, 13.439113 ], [ 144.815502, 13.439146 ], [ 144.815517, 13.439194 ], [ 144.815545, 13.439237 ], [ 144.815564, 13.439305 ], [ 144.815598, 13.439334 ], [ 144.815637, 13.439324 ], [ 144.815692, 13.439287 ], [ 144.815823, 13.439288 ], [ 144.815877, 13.439322 ], [ 144.815886, 13.439374 ], [ 144.815871, 13.439422 ], [ 144.815832, 13.43945 ], [ 144.815797, 13.439493 ], [ 144.815836, 13.439551 ], [ 144.815854, 13.439546 ], [ 144.8159, 13.439518 ], [ 144.815929, 13.439513 ], [ 144.816007, 13.439471 ], [ 144.816056, 13.439524 ], [ 144.816245, 13.439655 ], [ 144.816328, 13.439689 ], [ 144.816391, 13.439728 ], [ 144.816415, 13.439781 ], [ 144.816498, 13.439776 ], [ 144.816601, 13.439758 ], [ 144.816645, 13.439773 ], [ 144.816634, 13.439864 ], [ 144.816609, 13.439902 ], [ 144.816609, 13.439973 ], [ 144.816598, 13.440026 ], [ 144.816662, 13.44007 ], [ 144.8167, 13.440084 ], [ 144.816755, 13.440018 ], [ 144.816865, 13.440019 ], [ 144.816904, 13.440043 ], [ 144.817006, 13.440063 ], [ 144.817074, 13.440092 ], [ 144.817108, 13.44015 ], [ 144.817127, 13.440203 ], [ 144.817267, 13.440352 ], [ 144.817266, 13.440438 ], [ 144.817305, 13.440506 ], [ 144.817309, 13.440582 ], [ 144.81722, 13.440749 ], [ 144.817263, 13.440826 ], [ 144.817341, 13.440836 ], [ 144.817443, 13.440856 ], [ 144.817438, 13.440937 ], [ 144.817452, 13.441018 ], [ 144.817525, 13.441062 ], [ 144.817592, 13.44113 ], [ 144.81768, 13.441183 ], [ 144.817684, 13.441231 ], [ 144.817738, 13.441274 ], [ 144.817796, 13.441308 ], [ 144.81784, 13.441328 ], [ 144.817874, 13.441357 ], [ 144.817873, 13.44143 ], [ 144.817915, 13.441424 ], [ 144.817963, 13.441458 ], [ 144.817977, 13.441492 ], [ 144.818021, 13.441525 ], [ 144.81804, 13.441583 ], [ 144.818098, 13.441641 ], [ 144.818117, 13.441684 ], [ 144.81822, 13.441733 ], [ 144.818278, 13.441786 ], [ 144.818311, 13.441834 ], [ 144.818414, 13.441873 ], [ 144.818453, 13.441869 ], [ 144.818501, 13.441898 ], [ 144.818526, 13.441932 ], [ 144.818574, 13.441946 ], [ 144.818608, 13.442014 ], [ 144.818647, 13.442033 ], [ 144.818661, 13.442062 ], [ 144.818695, 13.442115 ], [ 144.818709, 13.442148 ], [ 144.818719, 13.44211 ], [ 144.818744, 13.442063 ], [ 144.818769, 13.442034 ], [ 144.818813, 13.442015 ], [ 144.818862, 13.442021 ], [ 144.818896, 13.442054 ], [ 144.818993, 13.442065 ], [ 144.819043, 13.442032 ], [ 144.819087, 13.442022 ], [ 144.81914, 13.442047 ], [ 144.819199, 13.442062 ], [ 144.819237, 13.442105 ], [ 144.819325, 13.442115 ], [ 144.819423, 13.442121 ], [ 144.819457, 13.442164 ], [ 144.819505, 13.442203 ], [ 144.819529, 13.442241 ], [ 144.819632, 13.442247 ], [ 144.819685, 13.442276 ], [ 144.819787, 13.442349 ], [ 144.819946, 13.44236 ], [ 144.820014, 13.442337 ], [ 144.820147, 13.442276 ], [ 144.820162, 13.442237 ], [ 144.820231, 13.442181 ], [ 144.820285, 13.442148 ], [ 144.820333, 13.442177 ], [ 144.820397, 13.442187 ], [ 144.820436, 13.442139 ], [ 144.820466, 13.442068 ], [ 144.820496, 13.442039 ], [ 144.820545, 13.442016 ], [ 144.820589, 13.441973 ], [ 144.820668, 13.441945 ], [ 144.820765, 13.441946 ], [ 144.820858, 13.441942 ], [ 144.820907, 13.441914 ], [ 144.820937, 13.441924 ], [ 144.820941, 13.441957 ], [ 144.821, 13.441972 ], [ 144.821024, 13.442015 ], [ 144.821068, 13.441968 ], [ 144.821098, 13.44193 ], [ 144.821191, 13.441931 ], [ 144.821254, 13.441974 ], [ 144.821341, 13.442066 ], [ 144.821355, 13.442114 ], [ 144.821428, 13.442162 ], [ 144.821501, 13.442196 ], [ 144.821569, 13.442192 ], [ 144.821637, 13.442212 ], [ 144.821749, 13.442261 ], [ 144.821763, 13.442323 ], [ 144.821812, 13.442357 ], [ 144.821851, 13.442338 ], [ 144.82201, 13.442378 ], [ 144.822029, 13.442407 ], [ 144.822117, 13.442441 ], [ 144.822154, 13.44243 ], [ 144.822185, 13.442422 ], [ 144.822239, 13.442365 ], [ 144.822279, 13.442304 ], [ 144.822343, 13.44229 ], [ 144.822421, 13.44229 ], [ 144.822475, 13.442267 ], [ 144.822524, 13.442234 ], [ 144.822578, 13.442234 ], [ 144.822587, 13.442287 ], [ 144.822645, 13.442316 ], [ 144.822709, 13.442341 ], [ 144.822792, 13.44227 ], [ 144.822851, 13.44227 ], [ 144.822915, 13.442242 ], [ 144.822988, 13.442271 ], [ 144.823071, 13.442263 ], [ 144.823154, 13.442282 ], [ 144.823193, 13.442235 ], [ 144.823247, 13.442245 ], [ 144.82333, 13.442284 ], [ 144.823383, 13.442284 ], [ 144.823413, 13.442232 ], [ 144.823462, 13.442237 ], [ 144.82355, 13.442257 ], [ 144.823608, 13.442282 ], [ 144.823696, 13.442268 ], [ 144.823739, 13.442256 ], [ 144.823794, 13.44224 ], [ 144.823872, 13.442231 ], [ 144.823873, 13.442258 ], [ 144.823936, 13.442287 ], [ 144.824112, 13.4424 ], [ 144.824583, 13.442362 ], [ 144.82482, 13.442422 ], [ 144.825129, 13.442429 ], [ 144.825311, 13.442525 ], [ 144.825444, 13.442645 ], [ 144.825619, 13.442676 ], [ 144.825697, 13.442704 ], [ 144.82581, 13.44274 ], [ 144.825931, 13.442757 ], [ 144.826191, 13.442974 ], [ 144.826248, 13.443178 ], [ 144.826593, 13.443501 ], [ 144.82668, 13.443779 ], [ 144.826899, 13.444046 ], [ 144.826927, 13.444267 ], [ 144.827033, 13.444429 ], [ 144.827044, 13.444611 ], [ 144.827061, 13.444631 ], [ 144.827079, 13.44465 ], [ 144.827067, 13.444674 ], [ 144.827038, 13.444707 ], [ 144.827013, 13.444707 ], [ 144.827003, 13.444745 ], [ 144.827014, 13.444778 ], [ 144.827027, 13.444817 ], [ 144.827061, 13.444884 ], [ 144.827104, 13.444932 ], [ 144.827074, 13.445028 ], [ 144.827034, 13.445094 ], [ 144.826906, 13.445179 ], [ 144.826848, 13.445207 ], [ 144.826662, 13.445249 ], [ 144.826651, 13.445297 ], [ 144.826715, 13.445331 ], [ 144.826738, 13.445402 ], [ 144.826733, 13.445455 ], [ 144.826723, 13.445508 ], [ 144.826756, 13.445565 ], [ 144.826819, 13.445628 ], [ 144.826883, 13.445667 ], [ 144.826951, 13.445667 ], [ 144.82701, 13.445649 ], [ 144.827064, 13.44564 ], [ 144.827112, 13.445659 ], [ 144.827156, 13.44566 ], [ 144.827255, 13.445579 ], [ 144.827279, 13.445551 ], [ 144.827318, 13.445541 ], [ 144.827382, 13.445542 ], [ 144.827465, 13.445514 ], [ 144.827495, 13.445466 ], [ 144.827505, 13.445404 ], [ 144.827535, 13.445376 ], [ 144.827579, 13.445362 ], [ 144.82756, 13.445309 ], [ 144.827555, 13.445271 ], [ 144.82761, 13.445224 ], [ 144.827629, 13.4452 ], [ 144.827722, 13.445201 ], [ 144.827824, 13.44523 ], [ 144.827848, 13.445278 ], [ 144.827888, 13.445255 ], [ 144.828063, 13.445299 ], [ 144.828107, 13.445352 ], [ 144.82819, 13.445372 ], [ 144.828238, 13.445401 ], [ 144.828252, 13.445449 ], [ 144.828311, 13.445478 ], [ 144.828388, 13.445536 ], [ 144.828412, 13.445584 ], [ 144.828461, 13.44558 ], [ 144.828505, 13.445628 ], [ 144.828529, 13.445647 ], [ 144.828612, 13.445677 ], [ 144.82866, 13.445716 ], [ 144.82866, 13.445771 ], [ 144.82865, 13.445787 ], [ 144.828693, 13.44584 ], [ 144.828726, 13.445974 ], [ 144.82878, 13.446003 ], [ 144.828809, 13.446028 ], [ 144.828839, 13.44599 ], [ 144.828897, 13.446028 ], [ 144.82897, 13.446096 ], [ 144.829028, 13.446135 ], [ 144.829052, 13.446197 ], [ 144.82909, 13.44626 ], [ 144.829163, 13.446289 ], [ 144.829276, 13.446285 ], [ 144.82934, 13.446257 ], [ 144.829408, 13.446301 ], [ 144.829387, 13.446382 ], [ 144.829387, 13.446439 ], [ 144.82945, 13.446468 ], [ 144.829543, 13.446493 ], [ 144.829552, 13.446512 ], [ 144.829522, 13.446574 ], [ 144.829454, 13.446607 ], [ 144.829361, 13.446635 ], [ 144.829441, 13.446698 ], [ 144.82945, 13.446774 ], [ 144.82942, 13.44686 ], [ 144.82938, 13.446932 ], [ 144.82936, 13.446998 ], [ 144.829301, 13.447046 ], [ 144.829266, 13.447122 ], [ 144.829263, 13.447164 ], [ 144.829275, 13.447198 ], [ 144.829318, 13.447242 ], [ 144.829396, 13.447266 ], [ 144.829435, 13.447272 ], [ 144.829484, 13.44732 ], [ 144.829576, 13.447359 ], [ 144.829664, 13.447379 ], [ 144.829776, 13.447418 ], [ 144.829864, 13.447457 ], [ 144.830035, 13.447468 ], [ 144.830083, 13.447488 ], [ 144.830147, 13.44744 ], [ 144.830182, 13.447393 ], [ 144.830221, 13.447369 ], [ 144.830246, 13.447298 ], [ 144.830281, 13.447269 ], [ 144.83032, 13.447222 ], [ 144.830364, 13.447184 ], [ 144.830394, 13.447199 ], [ 144.830423, 13.447242 ], [ 144.830466, 13.447271 ], [ 144.83053, 13.4473 ], [ 144.830613, 13.447306 ], [ 144.830661, 13.447325 ], [ 144.830719, 13.447378 ], [ 144.830782, 13.447422 ], [ 144.830875, 13.44748 ], [ 144.830894, 13.447533 ], [ 144.830952, 13.447562 ], [ 144.830996, 13.447601 ], [ 144.831034, 13.447654 ], [ 144.831117, 13.44775 ], [ 144.831204, 13.447765 ], [ 144.831248, 13.447765 ], [ 144.831311, 13.447809 ], [ 144.831365, 13.447852 ], [ 144.831399, 13.447886 ], [ 144.831489, 13.447897 ], [ 144.831547, 13.447926 ], [ 144.831596, 13.447979 ], [ 144.831615, 13.448032 ], [ 144.831664, 13.448042 ], [ 144.831688, 13.44809 ], [ 144.831746, 13.448133 ], [ 144.831765, 13.448176 ], [ 144.831809, 13.448201 ], [ 144.831823, 13.448244 ], [ 144.831901, 13.448302 ], [ 144.831934, 13.44835 ], [ 144.831988, 13.448365 ], [ 144.832027, 13.448384 ], [ 144.832027, 13.448408 ], [ 144.832041, 13.448475 ], [ 144.832079, 13.448528 ], [ 144.832118, 13.448552 ], [ 144.832152, 13.44861 ], [ 144.8322, 13.448658 ], [ 144.832259, 13.448702 ], [ 144.832321, 13.448774 ], [ 144.832381, 13.44887 ], [ 144.832442, 13.448966 ], [ 144.832437, 13.449014 ], [ 144.832451, 13.449076 ], [ 144.832494, 13.44911 ], [ 144.832528, 13.449168 ], [ 144.832572, 13.449211 ], [ 144.832578, 13.449307 ], [ 144.832597, 13.449369 ], [ 144.83265, 13.449442 ], [ 144.832698, 13.449518 ], [ 144.832788, 13.44955 ], [ 144.832802, 13.449562 ], [ 144.832835, 13.449558 ], [ 144.832884, 13.449563 ], [ 144.832932, 13.449592 ], [ 144.832922, 13.449621 ], [ 144.832932, 13.449659 ], [ 144.832975, 13.449669 ], [ 144.832995, 13.449708 ], [ 144.832984, 13.449774 ], [ 144.832964, 13.449812 ], [ 144.833017, 13.44988 ], [ 144.833022, 13.449928 ], [ 144.833046, 13.449985 ], [ 144.833085, 13.450029 ], [ 144.833099, 13.450101 ], [ 144.833093, 13.450148 ], [ 144.833107, 13.450196 ], [ 144.833161, 13.450249 ], [ 144.833209, 13.450288 ], [ 144.833233, 13.450331 ], [ 144.83332, 13.450518 ], [ 144.833451, 13.450587 ], [ 144.833504, 13.450659 ], [ 144.833533, 13.450721 ], [ 144.833522, 13.450774 ], [ 144.833502, 13.45084 ], [ 144.833492, 13.450888 ], [ 144.833516, 13.450946 ], [ 144.83354, 13.450979 ], [ 144.833623, 13.450999 ], [ 144.833661, 13.451081 ], [ 144.83369, 13.451105 ], [ 144.83369, 13.451182 ], [ 144.833728, 13.45122 ], [ 144.833787, 13.451288 ], [ 144.833767, 13.451316 ], [ 144.833723, 13.45133 ], [ 144.833698, 13.451368 ], [ 144.833688, 13.451406 ], [ 144.833658, 13.45143 ], [ 144.833629, 13.45142 ], [ 144.833595, 13.451429 ], [ 144.833594, 13.451482 ], [ 144.833623, 13.45154 ], [ 144.833618, 13.451597 ], [ 144.833583, 13.451697 ], [ 144.833538, 13.451749 ], [ 144.833469, 13.451844 ], [ 144.833415, 13.451887 ], [ 144.833385, 13.451954 ], [ 144.833379, 13.45203 ], [ 144.833385, 13.452174 ], [ 144.833419, 13.452222 ], [ 144.833384, 13.452336 ], [ 144.833369, 13.452403 ], [ 144.833348, 13.452465 ], [ 144.833289, 13.452565 ], [ 144.833259, 13.452636 ], [ 144.833224, 13.452698 ], [ 144.833199, 13.45277 ], [ 144.833159, 13.452832 ], [ 144.833164, 13.452884 ], [ 144.833212, 13.452966 ], [ 144.833251, 13.452995 ], [ 144.83329, 13.453033 ], [ 144.833353, 13.453082 ], [ 144.833392, 13.453097 ], [ 144.833445, 13.453092 ], [ 144.833514, 13.453093 ], [ 144.833558, 13.453079 ], [ 144.833607, 13.453055 ], [ 144.833632, 13.452993 ], [ 144.833677, 13.452903 ], [ 144.833716, 13.452865 ], [ 144.83375, 13.452856 ], [ 144.83377, 13.452875 ], [ 144.833774, 13.452923 ], [ 144.833798, 13.452961 ], [ 144.833857, 13.452976 ], [ 144.833949, 13.45302 ], [ 144.834003, 13.453035 ], [ 144.834057, 13.453026 ], [ 144.83413, 13.453022 ], [ 144.834165, 13.452979 ], [ 144.834238, 13.452932 ], [ 144.834273, 13.452903 ], [ 144.834307, 13.452865 ], [ 144.834376, 13.452866 ], [ 144.83441, 13.452823 ], [ 144.83445, 13.452795 ], [ 144.834489, 13.452786 ], [ 144.834557, 13.452805 ], [ 144.83461, 13.452844 ], [ 144.834659, 13.452907 ], [ 144.834745, 13.453041 ], [ 144.834789, 13.453099 ], [ 144.834818, 13.453147 ], [ 144.834866, 13.453243 ], [ 144.83488, 13.453301 ], [ 144.834914, 13.453349 ], [ 144.834939, 13.453483 ], [ 144.835007, 13.453565 ], [ 144.834999, 13.453679 ], [ 144.835103, 13.453714 ], [ 144.835113, 13.453747 ], [ 144.835147, 13.453805 ], [ 144.835185, 13.453844 ], [ 144.835195, 13.453882 ], [ 144.835258, 13.453926 ], [ 144.835326, 13.45395 ], [ 144.835389, 13.453994 ], [ 144.835428, 13.454042 ], [ 144.835452, 13.454095 ], [ 144.835451, 13.454138 ], [ 144.835461, 13.454157 ], [ 144.8355, 13.454181 ], [ 144.835558, 13.454205 ], [ 144.835592, 13.454244 ], [ 144.835611, 13.454282 ], [ 144.83565, 13.454326 ], [ 144.835703, 13.454374 ], [ 144.835742, 13.454446 ], [ 144.835785, 13.45449 ], [ 144.835868, 13.454533 ], [ 144.835941, 13.454553 ], [ 144.836054, 13.454535 ], [ 144.836107, 13.454535 ], [ 144.836185, 13.45455 ], [ 144.836224, 13.454608 ], [ 144.836336, 13.454686 ], [ 144.83639, 13.454657 ], [ 144.836414, 13.454634 ], [ 144.836453, 13.454615 ], [ 144.836526, 13.454682 ], [ 144.836531, 13.454721 ], [ 144.83652, 13.454788 ], [ 144.836505, 13.454826 ], [ 144.836504, 13.454955 ], [ 144.836567, 13.455013 ], [ 144.83665, 13.455042 ], [ 144.836713, 13.455043 ], [ 144.836762, 13.455053 ], [ 144.836835, 13.455149 ], [ 144.836883, 13.455202 ], [ 144.836834, 13.45524 ], [ 144.836814, 13.455297 ], [ 144.836877, 13.455379 ], [ 144.836935, 13.455422 ], [ 144.837027, 13.45548 ], [ 144.837086, 13.455491 ], [ 144.83711, 13.455453 ], [ 144.837131, 13.455542 ], [ 144.837199, 13.455546 ], [ 144.837324, 13.455554 ], [ 144.837338, 13.455644 ], [ 144.83737, 13.455743 ], [ 144.837426, 13.455745 ], [ 144.83743, 13.455843 ], [ 144.837454, 13.455915 ], [ 144.837562, 13.456024 ], [ 144.837655, 13.456008 ], [ 144.837687, 13.456036 ], [ 144.837665, 13.456084 ], [ 144.837588, 13.456122 ], [ 144.837564, 13.456174 ], [ 144.837606, 13.456208 ], [ 144.837673, 13.456216 ], [ 144.837701, 13.456282 ], [ 144.837693, 13.456363 ], [ 144.837717, 13.456427 ], [ 144.837767, 13.456437 ], [ 144.837809, 13.456509 ], [ 144.837821, 13.456647 ], [ 144.837837, 13.45674 ], [ 144.837897, 13.456754 ], [ 144.837941, 13.45672 ], [ 144.837979, 13.456762 ], [ 144.837987, 13.456812 ], [ 144.837931, 13.456858 ], [ 144.837947, 13.456972 ], [ 144.837993, 13.456988 ], [ 144.838028, 13.45697 ], [ 144.838062, 13.456998 ], [ 144.838066, 13.457024 ], [ 144.838018, 13.457038 ], [ 144.83801, 13.457099 ], [ 144.83806, 13.457171 ], [ 144.838112, 13.457253 ], [ 144.838176, 13.457329 ], [ 144.838264, 13.457329 ], [ 144.838326, 13.457406 ], [ 144.838443, 13.457522 ], [ 144.838571, 13.457674 ], [ 144.838556, 13.457722 ], [ 144.838555, 13.457803 ], [ 144.838549, 13.457885 ], [ 144.838844, 13.458184 ], [ 144.838906, 13.458218 ], [ 144.838984, 13.458212 ], [ 144.839034, 13.458204 ], [ 144.839067, 13.458224 ], [ 144.839046, 13.458244 ], [ 144.839044, 13.458284 ], [ 144.838998, 13.45829 ], [ 144.838956, 13.458304 ], [ 144.838938, 13.458408 ], [ 144.838986, 13.458406 ], [ 144.839028, 13.458412 ], [ 144.83903, 13.458448 ], [ 144.839077, 13.458475 ], [ 144.839091, 13.458509 ], [ 144.839131, 13.458509 ], [ 144.839205, 13.458521 ], [ 144.839285, 13.458545 ], [ 144.839263, 13.458565 ], [ 144.839211, 13.458569 ], [ 144.839181, 13.458593 ], [ 144.839205, 13.458631 ], [ 144.839264, 13.458589 ], [ 144.839318, 13.45858 ], [ 144.8394, 13.458609 ], [ 144.839473, 13.458629 ], [ 144.839513, 13.458601 ], [ 144.839548, 13.458529 ], [ 144.83967, 13.458501 ], [ 144.839733, 13.458516 ], [ 144.839865, 13.458532 ], [ 144.839977, 13.458561 ], [ 144.840036, 13.458557 ], [ 144.840114, 13.458558 ], [ 144.840153, 13.458587 ], [ 144.840245, 13.45864 ], [ 144.840318, 13.458689 ], [ 144.840396, 13.458728 ], [ 144.840391, 13.458771 ], [ 144.840361, 13.458804 ], [ 144.840331, 13.458847 ], [ 144.840336, 13.458918 ], [ 144.840379, 13.458971 ], [ 144.840423, 13.458996 ], [ 144.840477, 13.459001 ], [ 144.840545, 13.458963 ], [ 144.840614, 13.45894 ], [ 144.840673, 13.458931 ], [ 144.840731, 13.458965 ], [ 144.840772, 13.459032 ], [ 144.840785, 13.459161 ], [ 144.840804, 13.459228 ], [ 144.840901, 13.459349 ], [ 144.840915, 13.459397 ], [ 144.84091, 13.459464 ], [ 144.840885, 13.459511 ], [ 144.840811, 13.45953 ], [ 144.840762, 13.459568 ], [ 144.840714, 13.459553 ], [ 144.840684, 13.459548 ], [ 144.840616, 13.459571 ], [ 144.840552, 13.459604 ], [ 144.840449, 13.459584 ], [ 144.84041, 13.459603 ], [ 144.840366, 13.459655 ], [ 144.840336, 13.459707 ], [ 144.84032, 13.459803 ], [ 144.840344, 13.459904 ], [ 144.840353, 13.459994 ], [ 144.840416, 13.460038 ], [ 144.840464, 13.460086 ], [ 144.840518, 13.460158 ], [ 144.840566, 13.460197 ], [ 144.840639, 13.460231 ], [ 144.840673, 13.460294 ], [ 144.840765, 13.460352 ], [ 144.840833, 13.460386 ], [ 144.840921, 13.460411 ], [ 144.841004, 13.460421 ], [ 144.841111, 13.460407 ], [ 144.84116, 13.460384 ], [ 144.841195, 13.460351 ], [ 144.841259, 13.460304 ], [ 144.84141, 13.4603 ], [ 144.841454, 13.460334 ], [ 144.841522, 13.460363 ], [ 144.841586, 13.460349 ], [ 144.841596, 13.460292 ], [ 144.841635, 13.460264 ], [ 144.841689, 13.46025 ], [ 144.841743, 13.46026 ], [ 144.84187, 13.460271 ], [ 144.841934, 13.460257 ], [ 144.842002, 13.460272 ], [ 144.842031, 13.460305 ], [ 144.842079, 13.460334 ], [ 144.842157, 13.46035 ], [ 144.842197, 13.46035 ], [ 144.842216, 13.460379 ], [ 144.842216, 13.460412 ], [ 144.842249, 13.460441 ], [ 144.842279, 13.460461 ], [ 144.842362, 13.460471 ], [ 144.84242, 13.460462 ], [ 144.842391, 13.460428 ], [ 144.842411, 13.460366 ], [ 144.84246, 13.460338 ], [ 144.842542, 13.460329 ], [ 144.842554, 13.460315 ], [ 144.842554, 13.460233 ], [ 144.842574, 13.4602 ], [ 144.842589, 13.460162 ], [ 144.842682, 13.460139 ], [ 144.842716, 13.460158 ], [ 144.84274, 13.460171 ], [ 144.842763, 13.460156 ], [ 144.842813, 13.460109 ], [ 144.842842, 13.460109 ], [ 144.842871, 13.460133 ], [ 144.84292, 13.460162 ], [ 144.842944, 13.460182 ], [ 144.842939, 13.46023 ], [ 144.842968, 13.460215 ], [ 144.842988, 13.460163 ], [ 144.843037, 13.460149 ], [ 144.843071, 13.460149 ], [ 144.843086, 13.460178 ], [ 144.84309, 13.460202 ], [ 144.843109, 13.460255 ], [ 144.843144, 13.460241 ], [ 144.843178, 13.460217 ], [ 144.843188, 13.460189 ], [ 144.843232, 13.460175 ], [ 144.843261, 13.460185 ], [ 144.843295, 13.460209 ], [ 144.843295, 13.460247 ], [ 144.843235, 13.460385 ], [ 144.843215, 13.460409 ], [ 144.843333, 13.460381 ], [ 144.843357, 13.460391 ], [ 144.843396, 13.460401 ], [ 144.843436, 13.460382 ], [ 144.843494, 13.460383 ], [ 144.843528, 13.460407 ], [ 144.843582, 13.460402 ], [ 144.843655, 13.460403 ], [ 144.843714, 13.460408 ], [ 144.843763, 13.460404 ], [ 144.843777, 13.460438 ], [ 144.843772, 13.460461 ], [ 144.843796, 13.460481 ], [ 144.843869, 13.460486 ], [ 144.843943, 13.460506 ], [ 144.843942, 13.460578 ], [ 144.843961, 13.460621 ], [ 144.84399, 13.460645 ], [ 144.84402, 13.460631 ], [ 144.844039, 13.460598 ], [ 144.844069, 13.460574 ], [ 144.844103, 13.460636 ], [ 144.844137, 13.460651 ], [ 144.844141, 13.46068 ], [ 144.844073, 13.460722 ], [ 144.844087, 13.460751 ], [ 144.844091, 13.460799 ], [ 144.844057, 13.460799 ], [ 144.844013, 13.460808 ], [ 144.843979, 13.460851 ], [ 144.843963, 13.460903 ], [ 144.843978, 13.460956 ], [ 144.843997, 13.46098 ], [ 144.844075, 13.461024 ], [ 144.844094, 13.461057 ], [ 144.844108, 13.46111 ], [ 144.844166, 13.461173 ], [ 144.844244, 13.461192 ], [ 144.844268, 13.461221 ], [ 144.844253, 13.461298 ], [ 144.844287, 13.461331 ], [ 144.84434, 13.46137 ], [ 144.844394, 13.461418 ], [ 144.844447, 13.461452 ], [ 144.844491, 13.461486 ], [ 144.844578, 13.461525 ], [ 144.844651, 13.461574 ], [ 144.844719, 13.461608 ], [ 144.844777, 13.461675 ], [ 144.844806, 13.461728 ], [ 144.84482, 13.461809 ], [ 144.844829, 13.46191 ], [ 144.844843, 13.461963 ], [ 144.844924, 13.461973 ], [ 144.844982, 13.462021 ], [ 144.845031, 13.462041 ], [ 144.845114, 13.462032 ], [ 144.84527, 13.462076 ], [ 144.845323, 13.46211 ], [ 144.845411, 13.462111 ], [ 144.845465, 13.462131 ], [ 144.845552, 13.462146 ], [ 144.845615, 13.462208 ], [ 144.84561, 13.46228 ], [ 144.845693, 13.462309 ], [ 144.845741, 13.462358 ], [ 144.845775, 13.462439 ], [ 144.845853, 13.462459 ], [ 144.845964, 13.462532 ], [ 144.846038, 13.462537 ], [ 144.846111, 13.462514 ], [ 144.846141, 13.462466 ], [ 144.846185, 13.462448 ], [ 144.846229, 13.462438 ], [ 144.846268, 13.462486 ], [ 144.846356, 13.462459 ], [ 144.84642, 13.46243 ], [ 144.846463, 13.46245 ], [ 144.846479, 13.462383 ], [ 144.846523, 13.46235 ], [ 144.846543, 13.462302 ], [ 144.846504, 13.462283 ], [ 144.846509, 13.462221 ], [ 144.846534, 13.462149 ], [ 144.846574, 13.462121 ], [ 144.846657, 13.46215 ], [ 144.846705, 13.462151 ], [ 144.84675, 13.462108 ], [ 144.846823, 13.46209 ], [ 144.846847, 13.462133 ], [ 144.846818, 13.462171 ], [ 144.846803, 13.462223 ], [ 144.846861, 13.462252 ], [ 144.846912, 13.46231 ], [ 144.846931, 13.462363 ], [ 144.846965, 13.462402 ], [ 144.847013, 13.46244 ], [ 144.847027, 13.462498 ], [ 144.847032, 13.46257 ], [ 144.847055, 13.462584 ], [ 144.847009, 13.462632 ], [ 144.846984, 13.462674 ], [ 144.847013, 13.462732 ], [ 144.847052, 13.462756 ], [ 144.847091, 13.462747 ], [ 144.847125, 13.462776 ], [ 144.847188, 13.462805 ], [ 144.847236, 13.462877 ], [ 144.847314, 13.462921 ], [ 144.847314, 13.462964 ], [ 144.847309, 13.462997 ], [ 144.847475, 13.462999 ], [ 144.847537, 13.462976 ], [ 144.847575, 13.463019 ], [ 144.847648, 13.463048 ], [ 144.847665, 13.463029 ], [ 144.847762, 13.463083 ], [ 144.847801, 13.463116 ], [ 144.847874, 13.463146 ], [ 144.847962, 13.463175 ], [ 144.848026, 13.463133 ], [ 144.848089, 13.463124 ], [ 144.848139, 13.463072 ], [ 144.848168, 13.463096 ], [ 144.848231, 13.463096 ], [ 144.848227, 13.463058 ], [ 144.848251, 13.463044 ], [ 144.848325, 13.46304 ], [ 144.848329, 13.463002 ], [ 144.848347, 13.462997 ], [ 144.848405, 13.463012 ], [ 144.848464, 13.463012 ], [ 144.848577, 13.462961 ], [ 144.848616, 13.462994 ], [ 144.848635, 13.463033 ], [ 144.848718, 13.463062 ], [ 144.848789, 13.463059 ], [ 144.848828, 13.463068 ], [ 144.848935, 13.463035 ], [ 144.848979, 13.463069 ], [ 144.848999, 13.463069 ], [ 144.849018, 13.463072 ], [ 144.849038, 13.463065 ], [ 144.849057, 13.46307 ], [ 144.849072, 13.463094 ], [ 144.84911, 13.463137 ], [ 144.849144, 13.463161 ], [ 144.849252, 13.463162 ], [ 144.849291, 13.463134 ], [ 144.849321, 13.463067 ], [ 144.849365, 13.463034 ], [ 144.849405, 13.462996 ], [ 144.849439, 13.463006 ], [ 144.849453, 13.46303 ], [ 144.849438, 13.463097 ], [ 144.849487, 13.463093 ], [ 144.849531, 13.463064 ], [ 144.84958, 13.463074 ], [ 144.849638, 13.463094 ], [ 144.849682, 13.46309 ], [ 144.849668, 13.463042 ], [ 144.849639, 13.463003 ], [ 144.849679, 13.46297 ], [ 144.849723, 13.462951 ], [ 144.849795, 13.463019 ], [ 144.849795, 13.463062 ], [ 144.84978, 13.463119 ], [ 144.849755, 13.463162 ], [ 144.84975, 13.463205 ], [ 144.849823, 13.463201 ], [ 144.849892, 13.463182 ], [ 144.84994, 13.463216 ], [ 144.849974, 13.463259 ], [ 144.850071, 13.463318 ], [ 144.85011, 13.463332 ], [ 144.850257, 13.463334 ], [ 144.850281, 13.463382 ], [ 144.850349, 13.463392 ], [ 144.850398, 13.463359 ], [ 144.850448, 13.463273 ], [ 144.850443, 13.463225 ], [ 144.850478, 13.463192 ], [ 144.850512, 13.463211 ], [ 144.850546, 13.46326 ], [ 144.850604, 13.463265 ], [ 144.850599, 13.463293 ], [ 144.850574, 13.463317 ], [ 144.850564, 13.463365 ], [ 144.850574, 13.463408 ], [ 144.850613, 13.463418 ], [ 144.850661, 13.463457 ], [ 144.85069, 13.463495 ], [ 144.850709, 13.463514 ], [ 144.850685, 13.463562 ], [ 144.85065, 13.463595 ], [ 144.850684, 13.463619 ], [ 144.850752, 13.463644 ], [ 144.850791, 13.463673 ], [ 144.85082, 13.463726 ], [ 144.850825, 13.463754 ], [ 144.850881, 13.463769 ], [ 144.850959, 13.463784 ], [ 144.851012, 13.463799 ], [ 144.851081, 13.463824 ], [ 144.851109, 13.463872 ], [ 144.851178, 13.463896 ], [ 144.851231, 13.463892 ], [ 144.85129, 13.463921 ], [ 144.851324, 13.463964 ], [ 144.851352, 13.464012 ], [ 144.851392, 13.463998 ], [ 144.851465, 13.463999 ], [ 144.851539, 13.464022 ], [ 144.851543, 13.464024 ], [ 144.851586, 13.464086 ], [ 144.851629, 13.464201 ], [ 144.851663, 13.464264 ], [ 144.851716, 13.464317 ], [ 144.85176, 13.464375 ], [ 144.851769, 13.464446 ], [ 144.851816, 13.464585 ], [ 144.851889, 13.464639 ], [ 144.851933, 13.464639 ], [ 144.851981, 13.464702 ], [ 144.85201, 13.464764 ], [ 144.852005, 13.464793 ], [ 144.852073, 13.464831 ], [ 144.852214, 13.464967 ], [ 144.852267, 13.464977 ], [ 144.852306, 13.464977 ], [ 144.852365, 13.465025 ], [ 144.852432, 13.465098 ], [ 144.852549, 13.465156 ], [ 144.852595, 13.465228 ], [ 144.852638, 13.465281 ], [ 144.852701, 13.465325 ], [ 144.852716, 13.465353 ], [ 144.852808, 13.465388 ], [ 144.852867, 13.465436 ], [ 144.852915, 13.465499 ], [ 144.852929, 13.465542 ], [ 144.853065, 13.465653 ], [ 144.853089, 13.46571 ], [ 144.853137, 13.465787 ], [ 144.85322, 13.465831 ], [ 144.853336, 13.465904 ], [ 144.853365, 13.465952 ], [ 144.85337, 13.466014 ], [ 144.853403, 13.466067 ], [ 144.853378, 13.46611 ], [ 144.853461, 13.466206 ], [ 144.853514, 13.466245 ], [ 144.853572, 13.466312 ], [ 144.853669, 13.466442 ], [ 144.853742, 13.466452 ], [ 144.853775, 13.466524 ], [ 144.853829, 13.466525 ], [ 144.853919, 13.466545 ], [ 144.853953, 13.466607 ], [ 144.854002, 13.466646 ], [ 144.85404, 13.466718 ], [ 144.854108, 13.466723 ], [ 144.854161, 13.466796 ], [ 144.854234, 13.466863 ], [ 144.854287, 13.46695 ], [ 144.854301, 13.467012 ], [ 144.854345, 13.467084 ], [ 144.854368, 13.467146 ], [ 144.854422, 13.467219 ], [ 144.85447, 13.467229 ], [ 144.854538, 13.467263 ], [ 144.854605, 13.467488 ], [ 144.854595, 13.467545 ], [ 144.854589, 13.467641 ], [ 144.8546, 13.467699 ], [ 144.854637, 13.467713 ], [ 144.8547, 13.467776 ], [ 144.854753, 13.467814 ], [ 144.854792, 13.467848 ], [ 144.854851, 13.467868 ], [ 144.854899, 13.46795 ], [ 144.855015, 13.468056 ], [ 144.855073, 13.46808 ], [ 144.855107, 13.468147 ], [ 144.855131, 13.468234 ], [ 144.855169, 13.468301 ], [ 144.855223, 13.46832 ], [ 144.855271, 13.468388 ], [ 144.855324, 13.468431 ], [ 144.855343, 13.468489 ], [ 144.855401, 13.468571 ], [ 144.855474, 13.468643 ], [ 144.855488, 13.468681 ], [ 144.855507, 13.468768 ], [ 144.855521, 13.468868 ], [ 144.855569, 13.468945 ], [ 144.855632, 13.468998 ], [ 144.855695, 13.469037 ], [ 144.855759, 13.469009 ], [ 144.855793, 13.469024 ], [ 144.855807, 13.469057 ], [ 144.855788, 13.469086 ], [ 144.855768, 13.469129 ], [ 144.855811, 13.46921 ], [ 144.855874, 13.469287 ], [ 144.855888, 13.46935 ], [ 144.855966, 13.469393 ], [ 144.856014, 13.469437 ], [ 144.856092, 13.469476 ], [ 144.856125, 13.469557 ], [ 144.856164, 13.469581 ], [ 144.856178, 13.469644 ], [ 144.856257, 13.469649 ], [ 144.856288, 13.469664 ], [ 144.856316, 13.469788 ], [ 144.85635, 13.469856 ], [ 144.856433, 13.469904 ], [ 144.856515, 13.469943 ], [ 144.856559, 13.469986 ], [ 144.856597, 13.470068 ], [ 144.856616, 13.470154 ], [ 144.856743, 13.470208 ], [ 144.856737, 13.470265 ], [ 144.856737, 13.470337 ], [ 144.856819, 13.470409 ], [ 144.856892, 13.470448 ], [ 144.856876, 13.470568 ], [ 144.856949, 13.470597 ], [ 144.857018, 13.470598 ], [ 144.857091, 13.470641 ], [ 144.857114, 13.470723 ], [ 144.857167, 13.470805 ], [ 144.857284, 13.470896 ], [ 144.857367, 13.470926 ], [ 144.857425, 13.470974 ], [ 144.857478, 13.470994 ], [ 144.857556, 13.470999 ], [ 144.857659, 13.471019 ], [ 144.8577, 13.471063 ], [ 144.857729, 13.471101 ], [ 144.857675, 13.471182 ], [ 144.857689, 13.471211 ], [ 144.857733, 13.471225 ], [ 144.857772, 13.471254 ], [ 144.857825, 13.471279 ], [ 144.857864, 13.471308 ], [ 144.857908, 13.471284 ], [ 144.858016, 13.471252 ], [ 144.858162, 13.471282 ], [ 144.858201, 13.471315 ], [ 144.858235, 13.471354 ], [ 144.858249, 13.471407 ], [ 144.858252, 13.471466 ], [ 144.858292, 13.471479 ], [ 144.858341, 13.471489 ], [ 144.858366, 13.471422 ], [ 144.858415, 13.471399 ], [ 144.858479, 13.471351 ], [ 144.858504, 13.471323 ], [ 144.858562, 13.471347 ], [ 144.858586, 13.471386 ], [ 144.858645, 13.471386 ], [ 144.85868, 13.471339 ], [ 144.858734, 13.471301 ], [ 144.858778, 13.471301 ], [ 144.858787, 13.47134 ], [ 144.858762, 13.471368 ], [ 144.858767, 13.471435 ], [ 144.858776, 13.471469 ], [ 144.858854, 13.471469 ], [ 144.858908, 13.471455 ], [ 144.858942, 13.471489 ], [ 144.858932, 13.471532 ], [ 144.858927, 13.471589 ], [ 144.858936, 13.471652 ], [ 144.858926, 13.471709 ], [ 144.858964, 13.471776 ], [ 144.858977, 13.471794 ], [ 144.859003, 13.471829 ], [ 144.859071, 13.471844 ], [ 144.859144, 13.471878 ], [ 144.859183, 13.471922 ], [ 144.859232, 13.471903 ], [ 144.859242, 13.471831 ], [ 144.859301, 13.471827 ], [ 144.859379, 13.471832 ], [ 144.859413, 13.471881 ], [ 144.859388, 13.471938 ], [ 144.859314, 13.471985 ], [ 144.859328, 13.472042 ], [ 144.859381, 13.472095 ], [ 144.859459, 13.472115 ], [ 144.859528, 13.472125 ], [ 144.859625, 13.472164 ], [ 144.859639, 13.472227 ], [ 144.859687, 13.472385 ], [ 144.859681, 13.472442 ], [ 144.859666, 13.47249 ], [ 144.859734, 13.472591 ], [ 144.859732, 13.472749 ], [ 144.859761, 13.472806 ], [ 144.859741, 13.472849 ], [ 144.859765, 13.472912 ], [ 144.859813, 13.472965 ], [ 144.859877, 13.473003 ], [ 144.859906, 13.473004 ], [ 144.859891, 13.473051 ], [ 144.85991, 13.473119 ], [ 144.859934, 13.473133 ], [ 144.859988, 13.473129 ], [ 144.860022, 13.473134 ], [ 144.860036, 13.473167 ], [ 144.86008, 13.473216 ], [ 144.860124, 13.473235 ], [ 144.860158, 13.473264 ], [ 144.860177, 13.473298 ], [ 144.860221, 13.473322 ], [ 144.860309, 13.473328 ], [ 144.860367, 13.473357 ], [ 144.860479, 13.473444 ], [ 144.860556, 13.473578 ], [ 144.860604, 13.473627 ], [ 144.860623, 13.473679 ], [ 144.860606, 13.473722 ], [ 144.860595, 13.473799 ], [ 144.860599, 13.47387 ], [ 144.860623, 13.473942 ], [ 144.860701, 13.473986 ], [ 144.860759, 13.474001 ], [ 144.860808, 13.474001 ], [ 144.860842, 13.474059 ], [ 144.860841, 13.474121 ], [ 144.860802, 13.474192 ], [ 144.860787, 13.474235 ], [ 144.860786, 13.474331 ], [ 144.86079, 13.474388 ], [ 144.860843, 13.474441 ], [ 144.860897, 13.474514 ], [ 144.860901, 13.474547 ], [ 144.860871, 13.47459 ], [ 144.860832, 13.474623 ], [ 144.860817, 13.47468 ], [ 144.860816, 13.474733 ], [ 144.86087, 13.474748 ], [ 144.860916, 13.474721 ], [ 144.860929, 13.474715 ], [ 144.860968, 13.474706 ], [ 144.860978, 13.474749 ], [ 144.861051, 13.474778 ], [ 144.861119, 13.474812 ], [ 144.861138, 13.47485 ], [ 144.861201, 13.47487 ], [ 144.861206, 13.474913 ], [ 144.861122, 13.475008 ], [ 144.861136, 13.475047 ], [ 144.86119, 13.47508 ], [ 144.861236, 13.47516 ], [ 144.861258, 13.475167 ], [ 144.861297, 13.475224 ], [ 144.861345, 13.475239 ], [ 144.861413, 13.475287 ], [ 144.861521, 13.475312 ], [ 144.861535, 13.475351 ], [ 144.861535, 13.475384 ], [ 144.861588, 13.475428 ], [ 144.861671, 13.475486 ], [ 144.861709, 13.475539 ], [ 144.861792, 13.475597 ], [ 144.861821, 13.475664 ], [ 144.861937, 13.475746 ], [ 144.861966, 13.47578 ], [ 144.862024, 13.475871 ], [ 144.862111, 13.47592 ], [ 144.862184, 13.476007 ], [ 144.862208, 13.476064 ], [ 144.862251, 13.476117 ], [ 144.862266, 13.476084 ], [ 144.86231, 13.476089 ], [ 144.862373, 13.47618 ], [ 144.862412, 13.476214 ], [ 144.862485, 13.476181 ], [ 144.862544, 13.476201 ], [ 144.862602, 13.476235 ], [ 144.862699, 13.476312 ], [ 144.862709, 13.476355 ], [ 144.862737, 13.476418 ], [ 144.862771, 13.476442 ], [ 144.86282, 13.476447 ], [ 144.862869, 13.476428 ], [ 144.862889, 13.476429 ], [ 144.862937, 13.476467 ], [ 144.86303, 13.476487 ], [ 144.863069, 13.476487 ], [ 144.863073, 13.476545 ], [ 144.863132, 13.476569 ], [ 144.863185, 13.476613 ], [ 144.863238, 13.476666 ], [ 144.863243, 13.476733 ], [ 144.863271, 13.47681 ], [ 144.863344, 13.476915 ], [ 144.863307, 13.476957 ], [ 144.863301, 13.476996 ], [ 144.863311, 13.477049 ], [ 144.86331, 13.477111 ], [ 144.863431, 13.477251 ], [ 144.86346, 13.477308 ], [ 144.863635, 13.477439 ], [ 144.863716, 13.477607 ], [ 144.863808, 13.477699 ], [ 144.863862, 13.477742 ], [ 144.863944, 13.477815 ], [ 144.864048, 13.477897 ], [ 144.864184, 13.478027 ], [ 144.864247, 13.478099 ], [ 144.864339, 13.478158 ], [ 144.864403, 13.478144 ], [ 144.864466, 13.478168 ], [ 144.864475, 13.478235 ], [ 144.864518, 13.478355 ], [ 144.864557, 13.478442 ], [ 144.864575, 13.478513 ], [ 144.864628, 13.478605 ], [ 144.864658, 13.478605 ], [ 144.864623, 13.478672 ], [ 144.864627, 13.478748 ], [ 144.864724, 13.478849 ], [ 144.864812, 13.478836 ], [ 144.864851, 13.478817 ], [ 144.86487, 13.47887 ], [ 144.864846, 13.478913 ], [ 144.864797, 13.478927 ], [ 144.864776, 13.478984 ], [ 144.864795, 13.479065 ], [ 144.864834, 13.479142 ], [ 144.864911, 13.479214 ], [ 144.864993, 13.479311 ], [ 144.865061, 13.479417 ], [ 144.865158, 13.479475 ], [ 144.865217, 13.479504 ], [ 144.865251, 13.479433 ], [ 144.865314, 13.47949 ], [ 144.865323, 13.479577 ], [ 144.86535, 13.479629 ], [ 144.865423, 13.479664 ], [ 144.865486, 13.479702 ], [ 144.865554, 13.479756 ], [ 144.86572, 13.479743 ], [ 144.865759, 13.479762 ], [ 144.865778, 13.4798 ], [ 144.865846, 13.47983 ], [ 144.865895, 13.479864 ], [ 144.865993, 13.47985 ], [ 144.866042, 13.479865 ], [ 144.866075, 13.479918 ], [ 144.866124, 13.47998 ], [ 144.866133, 13.480023 ], [ 144.866167, 13.480072 ], [ 144.866225, 13.480067 ], [ 144.866269, 13.480087 ], [ 144.866274, 13.480144 ], [ 144.866273, 13.480197 ], [ 144.866302, 13.480245 ], [ 144.866356, 13.48026 ], [ 144.866384, 13.480327 ], [ 144.866414, 13.480346 ], [ 144.866472, 13.480318 ], [ 144.866565, 13.480328 ], [ 144.866614, 13.480367 ], [ 144.866657, 13.480439 ], [ 144.866676, 13.480497 ], [ 144.866817, 13.480589 ], [ 144.866885, 13.48057 ], [ 144.86692, 13.48059 ], [ 144.866939, 13.480652 ], [ 144.867002, 13.480696 ], [ 144.86705, 13.480763 ], [ 144.867094, 13.480797 ], [ 144.867162, 13.480764 ], [ 144.867247, 13.480822 ], [ 144.867271, 13.480894 ], [ 144.867241, 13.480946 ], [ 144.867245, 13.481028 ], [ 144.867269, 13.481138 ], [ 144.867337, 13.481224 ], [ 144.867424, 13.481239 ], [ 144.867434, 13.481278 ], [ 144.867453, 13.481311 ], [ 144.867502, 13.481321 ], [ 144.867531, 13.481346 ], [ 144.867531, 13.481374 ], [ 144.867545, 13.481422 ], [ 144.867594, 13.481432 ], [ 144.867637, 13.48148 ], [ 144.867686, 13.48151 ], [ 144.867754, 13.48152 ], [ 144.867817, 13.481578 ], [ 144.867817, 13.481611 ], [ 144.86787, 13.481664 ], [ 144.867924, 13.481669 ], [ 144.867973, 13.481641 ], [ 144.868002, 13.48168 ], [ 144.868016, 13.481737 ], [ 144.86806, 13.48179 ], [ 144.868088, 13.481852 ], [ 144.868157, 13.481882 ], [ 144.868239, 13.48193 ], [ 144.868258, 13.481983 ], [ 144.868321, 13.482055 ], [ 144.868367, 13.482127 ], [ 144.868366, 13.482177 ], [ 144.868405, 13.48219 ], [ 144.86841, 13.482257 ], [ 144.868434, 13.482324 ], [ 144.868487, 13.482353 ], [ 144.868551, 13.482358 ], [ 144.86858, 13.482354 ], [ 144.868589, 13.482402 ], [ 144.868628, 13.482455 ], [ 144.868677, 13.482474 ], [ 144.86871, 13.482537 ], [ 144.868764, 13.482556 ], [ 144.868773, 13.482599 ], [ 144.868841, 13.482629 ], [ 144.868876, 13.482629 ], [ 144.868909, 13.482663 ], [ 144.868953, 13.482701 ], [ 144.868977, 13.48273 ], [ 144.869065, 13.48275 ], [ 144.869109, 13.482784 ], [ 144.869157, 13.482861 ], [ 144.869176, 13.482904 ], [ 144.86921, 13.482952 ], [ 144.869283, 13.482996 ], [ 144.869314, 13.483008 ], [ 144.869356, 13.483025 ], [ 144.869395, 13.483059 ], [ 144.869423, 13.483169 ], [ 144.869432, 13.483251 ], [ 144.869431, 13.483313 ], [ 144.869475, 13.483361 ], [ 144.869528, 13.483438 ], [ 144.869532, 13.483491 ], [ 144.869657, 13.483525 ], [ 144.869627, 13.483587 ], [ 144.869646, 13.483635 ], [ 144.86969, 13.483645 ], [ 144.869723, 13.48375 ], [ 144.869723, 13.483808 ], [ 144.869707, 13.483865 ], [ 144.869761, 13.483913 ], [ 144.869868, 13.483957 ], [ 144.869945, 13.484034 ], [ 144.870003, 13.484107 ], [ 144.870003, 13.484154 ], [ 144.869978, 13.484226 ], [ 144.869992, 13.484312 ], [ 144.870035, 13.484384 ], [ 144.870103, 13.484423 ], [ 144.870219, 13.484539 ], [ 144.870282, 13.484592 ], [ 144.870282, 13.484654 ], [ 144.870257, 13.484726 ], [ 144.870197, 13.484816 ], [ 144.870233, 13.484883 ], [ 144.870267, 13.485013 ], [ 144.870325, 13.485075 ], [ 144.87035, 13.485141 ], [ 144.870285, 13.485197 ], [ 144.870374, 13.485293 ], [ 144.870318, 13.485494 ], [ 144.870382, 13.485614 ], [ 144.87043, 13.485775 ], [ 144.870566, 13.485847 ], [ 144.870614, 13.485967 ], [ 144.870767, 13.485959 ], [ 144.870875, 13.486052 ], [ 144.870967, 13.486056 ], [ 144.871112, 13.485951 ], [ 144.871417, 13.486144 ], [ 144.871553, 13.486401 ], [ 144.871601, 13.486497 ], [ 144.871858, 13.486746 ], [ 144.87193, 13.486802 ], [ 144.872361, 13.487162 ], [ 144.872454, 13.487211 ], [ 144.872502, 13.487202 ], [ 144.872586, 13.487193 ], [ 144.872668, 13.487218 ], [ 144.87281, 13.487286 ], [ 144.872829, 13.487329 ], [ 144.872887, 13.487363 ], [ 144.872941, 13.487368 ], [ 144.872965, 13.487383 ], [ 144.872994, 13.487435 ], [ 144.873047, 13.487489 ], [ 144.873101, 13.487508 ], [ 144.873159, 13.487542 ], [ 144.873207, 13.4876 ], [ 144.873324, 13.487658 ], [ 144.873368, 13.487697 ], [ 144.873412, 13.487697 ], [ 144.873451, 13.487707 ], [ 144.873494, 13.48776 ], [ 144.873543, 13.487794 ], [ 144.873606, 13.487847 ], [ 144.87366, 13.487852 ], [ 144.873723, 13.487829 ], [ 144.873763, 13.487825 ], [ 144.873801, 13.487863 ], [ 144.87385, 13.487892 ], [ 144.873898, 13.487926 ], [ 144.873942, 13.487979 ], [ 144.874044, 13.488037 ], [ 144.874178, 13.488125 ], [ 144.874182, 13.488149 ], [ 144.874172, 13.488182 ], [ 144.874226, 13.488216 ], [ 144.874275, 13.488192 ], [ 144.874333, 13.488188 ], [ 144.874387, 13.488179 ], [ 144.87446, 13.488203 ], [ 144.874509, 13.488209 ], [ 144.874548, 13.488223 ], [ 144.874558, 13.488257 ], [ 144.874601, 13.488281 ], [ 144.87466, 13.488306 ], [ 144.874674, 13.488354 ], [ 144.874757, 13.488378 ], [ 144.874825, 13.488383 ], [ 144.874879, 13.488413 ], [ 144.874903, 13.488451 ], [ 144.874971, 13.488476 ], [ 144.87502, 13.488519 ], [ 144.875107, 13.488558 ], [ 144.875151, 13.488601 ], [ 144.87517, 13.488669 ], [ 144.875218, 13.48876 ], [ 144.875266, 13.488832 ], [ 144.875324, 13.488899 ], [ 144.875392, 13.488962 ], [ 144.87547, 13.489011 ], [ 144.87565, 13.489079 ], [ 144.875718, 13.489137 ], [ 144.875756, 13.48918 ], [ 144.87582, 13.489167 ], [ 144.875947, 13.489177 ], [ 144.876015, 13.489207 ], [ 144.876029, 13.489307 ], [ 144.876063, 13.489326 ], [ 144.876224, 13.489337 ], [ 144.876222, 13.489359 ], [ 144.876291, 13.489363 ], [ 144.87633, 13.489387 ], [ 144.876388, 13.48943 ], [ 144.876525, 13.489484 ], [ 144.876588, 13.489489 ], [ 144.876666, 13.489528 ], [ 144.876753, 13.489596 ], [ 144.876797, 13.489659 ], [ 144.87686, 13.489683 ], [ 144.87691, 13.489617 ], [ 144.877011, 13.489732 ], [ 144.877104, 13.489704 ], [ 144.877197, 13.48971 ], [ 144.877314, 13.489739 ], [ 144.877426, 13.489774 ], [ 144.87748, 13.489822 ], [ 144.877494, 13.489889 ], [ 144.877737, 13.489968 ], [ 144.87784, 13.489993 ], [ 144.877981, 13.490018 ], [ 144.878132, 13.490038 ], [ 144.878133, 13.490014 ], [ 144.878148, 13.489971 ], [ 144.878231, 13.489934 ], [ 144.878314, 13.489915 ], [ 144.878436, 13.489935 ], [ 144.878558, 13.489994 ], [ 144.878602, 13.490033 ], [ 144.87867, 13.490071 ], [ 144.878782, 13.490096 ], [ 144.878865, 13.490135 ], [ 144.87901, 13.490222 ], [ 144.879093, 13.490295 ], [ 144.879122, 13.490353 ], [ 144.879199, 13.490396 ], [ 144.879258, 13.490449 ], [ 144.879321, 13.49044 ], [ 144.879361, 13.490374 ], [ 144.8794, 13.490336 ], [ 144.879474, 13.490317 ], [ 144.879547, 13.490318 ], [ 144.879704, 13.490281 ], [ 144.879821, 13.490291 ], [ 144.879889, 13.49033 ], [ 144.879928, 13.490364 ], [ 144.879986, 13.490441 ], [ 144.879995, 13.490503 ], [ 144.880014, 13.490532 ], [ 144.880087, 13.490547 ], [ 144.880161, 13.490567 ], [ 144.880166, 13.490524 ], [ 144.88021, 13.490462 ], [ 144.880279, 13.49042 ], [ 144.880323, 13.490406 ], [ 144.880387, 13.490401 ], [ 144.88042, 13.490517 ], [ 144.880459, 13.49055 ], [ 144.880502, 13.490661 ], [ 144.880492, 13.490718 ], [ 144.880564, 13.490786 ], [ 144.880564, 13.490829 ], [ 144.880609, 13.490874 ], [ 144.880642, 13.490829 ], [ 144.880726, 13.490734 ], [ 144.88079, 13.49063 ], [ 144.880849, 13.490587 ], [ 144.880923, 13.490573 ], [ 144.880986, 13.490583 ], [ 144.881049, 13.490617 ], [ 144.881083, 13.490675 ], [ 144.881106, 13.490804 ], [ 144.881121, 13.490833 ], [ 144.881175, 13.490795 ], [ 144.881234, 13.490767 ], [ 144.881347, 13.490687 ], [ 144.881386, 13.490702 ], [ 144.881381, 13.490749 ], [ 144.881361, 13.490811 ], [ 144.881375, 13.49085 ], [ 144.881409, 13.490903 ], [ 144.881428, 13.49096 ], [ 144.881476, 13.490965 ], [ 144.881564, 13.490957 ], [ 144.881604, 13.4909 ], [ 144.881605, 13.490828 ], [ 144.881674, 13.490761 ], [ 144.881732, 13.490767 ], [ 144.881766, 13.490844 ], [ 144.8818, 13.490868 ], [ 144.881869, 13.490754 ], [ 144.881938, 13.490749 ], [ 144.881982, 13.490759 ], [ 144.88207, 13.49075 ], [ 144.882148, 13.490722 ], [ 144.882177, 13.490756 ], [ 144.882299, 13.490795 ], [ 144.882387, 13.490801 ], [ 144.88245, 13.490801 ], [ 144.882543, 13.490788 ], [ 144.882588, 13.490755 ], [ 144.882583, 13.490702 ], [ 144.882569, 13.490645 ], [ 144.882618, 13.490607 ], [ 144.882701, 13.490627 ], [ 144.88273, 13.49066 ], [ 144.882793, 13.490675 ], [ 144.882813, 13.490709 ], [ 144.882773, 13.490737 ], [ 144.882778, 13.49078 ], [ 144.882851, 13.490805 ], [ 144.882924, 13.490791 ], [ 144.882959, 13.490753 ], [ 144.883032, 13.490725 ], [ 144.883091, 13.49073 ], [ 144.883125, 13.490764 ], [ 144.883179, 13.49076 ], [ 144.883223, 13.490722 ], [ 144.883282, 13.490694 ], [ 144.883331, 13.490728 ], [ 144.883355, 13.490771 ], [ 144.883413, 13.49079 ], [ 144.883467, 13.490767 ], [ 144.883511, 13.490767 ], [ 144.883553, 13.490758 ], [ 144.883597, 13.49072 ], [ 144.883665, 13.490716 ], [ 144.883734, 13.490707 ], [ 144.883738, 13.490765 ], [ 144.883806, 13.490799 ], [ 144.883899, 13.490828 ], [ 144.883933, 13.490871 ], [ 144.883962, 13.4909 ], [ 144.88403, 13.490906 ], [ 144.884069, 13.490935 ], [ 144.884108, 13.490935 ], [ 144.884128, 13.490939 ], [ 144.884152, 13.490945 ], [ 144.884186, 13.49096 ], [ 144.884225, 13.490941 ], [ 144.884294, 13.490927 ], [ 144.884396, 13.49099 ], [ 144.88441, 13.491062 ], [ 144.884375, 13.491114 ], [ 144.884326, 13.491138 ], [ 144.88436, 13.491176 ], [ 144.884477, 13.491196 ], [ 144.884496, 13.49123 ], [ 144.884501, 13.491283 ], [ 144.88453, 13.491297 ], [ 144.88454, 13.491278 ], [ 144.884584, 13.491264 ], [ 144.884622, 13.491351 ], [ 144.884647, 13.49137 ], [ 144.88472, 13.49139 ], [ 144.884754, 13.491414 ], [ 144.884773, 13.491452 ], [ 144.884827, 13.491472 ], [ 144.88489, 13.491439 ], [ 144.885003, 13.491426 ], [ 144.885091, 13.491445 ], [ 144.885091, 13.491469 ], [ 144.885071, 13.491498 ], [ 144.88509, 13.491512 ], [ 144.885144, 13.491513 ], [ 144.885262, 13.491471 ], [ 144.885306, 13.491462 ], [ 144.885374, 13.49151 ], [ 144.885442, 13.491539 ], [ 144.88549, 13.491578 ], [ 144.885475, 13.491606 ], [ 144.885465, 13.491635 ], [ 144.885465, 13.491673 ], [ 144.885499, 13.491712 ], [ 144.885538, 13.491736 ], [ 144.885557, 13.49176 ], [ 144.885547, 13.491794 ], [ 144.885639, 13.491833 ], [ 144.885698, 13.491828 ], [ 144.885732, 13.491857 ], [ 144.885746, 13.491896 ], [ 144.885907, 13.491988 ], [ 144.886175, 13.492114 ], [ 144.886267, 13.492182 ], [ 144.886408, 13.492217 ], [ 144.88653, 13.49227 ], [ 144.886569, 13.49228 ], [ 144.886687, 13.492224 ], [ 144.886745, 13.492248 ], [ 144.886754, 13.49232 ], [ 144.886739, 13.492382 ], [ 144.886763, 13.49243 ], [ 144.886836, 13.492522 ], [ 144.886835, 13.492579 ], [ 144.886801, 13.492603 ], [ 144.886786, 13.492641 ], [ 144.886824, 13.492675 ], [ 144.886946, 13.4927 ], [ 144.886951, 13.492728 ], [ 144.887004, 13.492815 ], [ 144.886999, 13.492882 ], [ 144.887022, 13.492954 ], [ 144.887046, 13.493011 ], [ 144.88709, 13.493059 ], [ 144.887124, 13.493108 ], [ 144.887133, 13.493151 ], [ 144.887171, 13.493266 ], [ 144.88719, 13.493314 ], [ 144.887219, 13.493347 ], [ 144.887282, 13.493401 ], [ 144.887325, 13.493516 ], [ 144.887407, 13.493631 ], [ 144.887441, 13.493651 ], [ 144.887519, 13.493675 ], [ 144.887548, 13.493704 ], [ 144.887514, 13.493728 ], [ 144.887523, 13.493766 ], [ 144.887557, 13.493809 ], [ 144.887645, 13.493839 ], [ 144.887664, 13.493863 ], [ 144.887698, 13.493892 ], [ 144.887737, 13.493916 ], [ 144.887742, 13.493945 ], [ 144.887707, 13.493983 ], [ 144.887721, 13.494021 ], [ 144.88777, 13.494045 ], [ 144.887784, 13.494084 ], [ 144.887828, 13.494118 ], [ 144.887808, 13.494161 ], [ 144.887823, 13.494205 ], [ 144.887915, 13.494228 ], [ 144.887998, 13.494234 ], [ 144.888056, 13.494292 ], [ 144.888109, 13.494354 ], [ 144.888124, 13.494412 ], [ 144.888084, 13.494455 ], [ 144.888123, 13.494498 ], [ 144.888279, 13.494566 ], [ 144.888322, 13.494624 ], [ 144.888341, 13.494672 ], [ 144.888546, 13.494769 ], [ 144.888594, 13.494822 ], [ 144.888638, 13.494861 ], [ 144.88873, 13.494895 ], [ 144.888744, 13.494943 ], [ 144.888773, 13.494996 ], [ 144.888836, 13.495059 ], [ 144.88886, 13.495121 ], [ 144.888919, 13.495141 ], [ 144.888987, 13.495189 ], [ 144.888981, 13.495237 ], [ 144.888981, 13.495294 ], [ 144.889, 13.495309 ], [ 144.889024, 13.495357 ], [ 144.889146, 13.495377 ], [ 144.88917, 13.49542 ], [ 144.889175, 13.495468 ], [ 144.889221, 13.495459 ], [ 144.889299, 13.495469 ], [ 144.889324, 13.495455 ], [ 144.889397, 13.495465 ], [ 144.889475, 13.495514 ], [ 144.889548, 13.495581 ], [ 144.889576, 13.495639 ], [ 144.88964, 13.495668 ], [ 144.889664, 13.495697 ], [ 144.889708, 13.495688 ], [ 144.889796, 13.495693 ], [ 144.889825, 13.495736 ], [ 144.889815, 13.495789 ], [ 144.889805, 13.495813 ], [ 144.889819, 13.495885 ], [ 144.889891, 13.495952 ], [ 144.890008, 13.496011 ], [ 144.890086, 13.496073 ], [ 144.890188, 13.496132 ], [ 144.89026, 13.496223 ], [ 144.890377, 13.496301 ], [ 144.890455, 13.496325 ], [ 144.890513, 13.496364 ], [ 144.890586, 13.49636 ], [ 144.89062, 13.496417 ], [ 144.890615, 13.49648 ], [ 144.890673, 13.496528 ], [ 144.890717, 13.496557 ], [ 144.890731, 13.49661 ], [ 144.890765, 13.496658 ], [ 144.890852, 13.496759 ], [ 144.89093, 13.496803 ], [ 144.890993, 13.496865 ], [ 144.891056, 13.49689 ], [ 144.891041, 13.496928 ], [ 144.891055, 13.496961 ], [ 144.891109, 13.496986 ], [ 144.891123, 13.497024 ], [ 144.891123, 13.497086 ], [ 144.891127, 13.49712 ], [ 144.891239, 13.49715 ], [ 144.891302, 13.497188 ], [ 144.891351, 13.497227 ], [ 144.891438, 13.497319 ], [ 144.891457, 13.497386 ], [ 144.891456, 13.497453 ], [ 144.891515, 13.497477 ], [ 144.891583, 13.497473 ], [ 144.891617, 13.497507 ], [ 144.891597, 13.497564 ], [ 144.891597, 13.497616 ], [ 144.89164, 13.49765 ], [ 144.891633, 13.497722 ], [ 144.89169, 13.497813 ], [ 144.891787, 13.497929 ], [ 144.89182, 13.498077 ], [ 144.891839, 13.498101 ], [ 144.891903, 13.498131 ], [ 144.891922, 13.498169 ], [ 144.891975, 13.498217 ], [ 144.891994, 13.498275 ], [ 144.891959, 13.498342 ], [ 144.891795, 13.498699 ], [ 144.891691, 13.498856 ], [ 144.891616, 13.499032 ], [ 144.891492, 13.499232 ], [ 144.891389, 13.499346 ], [ 144.891334, 13.499388 ], [ 144.891305, 13.499441 ], [ 144.891314, 13.499508 ], [ 144.891299, 13.499584 ], [ 144.891293, 13.499637 ], [ 144.891297, 13.499708 ], [ 144.891307, 13.49978 ], [ 144.891291, 13.499909 ], [ 144.891256, 13.5 ], [ 144.891216, 13.500071 ], [ 144.891228, 13.500085 ], [ 144.89125, 13.500124 ], [ 144.891288, 13.50022 ], [ 144.891312, 13.500268 ], [ 144.891307, 13.500301 ], [ 144.891287, 13.50033 ], [ 144.891213, 13.500363 ], [ 144.891086, 13.500386 ], [ 144.891057, 13.500362 ], [ 144.891028, 13.500395 ], [ 144.891027, 13.500443 ], [ 144.891046, 13.500486 ], [ 144.89108, 13.500539 ], [ 144.891119, 13.500587 ], [ 144.891167, 13.500621 ], [ 144.89126, 13.500679 ], [ 144.891284, 13.500727 ], [ 144.891268, 13.500803 ], [ 144.891263, 13.50087 ], [ 144.891243, 13.500937 ], [ 144.891198, 13.500975 ], [ 144.89113, 13.501003 ], [ 144.89109, 13.501065 ], [ 144.891085, 13.501103 ], [ 144.891036, 13.501141 ], [ 144.890996, 13.501155 ], [ 144.891015, 13.501212 ], [ 144.89104, 13.501251 ], [ 144.891083, 13.501275 ], [ 144.891142, 13.501295 ], [ 144.891195, 13.501324 ], [ 144.891254, 13.501367 ], [ 144.891292, 13.50143 ], [ 144.891359, 13.501555 ], [ 144.891359, 13.501622 ], [ 144.891309, 13.501717 ], [ 144.891304, 13.501774 ], [ 144.891293, 13.501841 ], [ 144.891273, 13.501894 ], [ 144.891239, 13.501951 ], [ 144.891204, 13.50195 ], [ 144.891155, 13.501979 ], [ 144.89114, 13.502031 ], [ 144.891154, 13.502074 ], [ 144.891198, 13.502108 ], [ 144.891198, 13.502146 ], [ 144.891159, 13.502165 ], [ 144.891125, 13.502198 ], [ 144.891163, 13.502213 ], [ 144.891187, 13.502304 ], [ 144.891204, 13.502534 ], [ 144.891179, 13.502586 ], [ 144.891179, 13.502653 ], [ 144.891193, 13.502739 ], [ 144.891168, 13.502801 ], [ 144.891157, 13.502878 ], [ 144.891215, 13.502921 ], [ 144.891303, 13.502941 ], [ 144.891322, 13.502999 ], [ 144.891268, 13.503046 ], [ 144.891194, 13.503084 ], [ 144.891184, 13.503136 ], [ 144.891183, 13.503232 ], [ 144.891212, 13.503342 ], [ 144.891245, 13.503409 ], [ 144.891304, 13.503443 ], [ 144.891367, 13.503429 ], [ 144.891391, 13.503463 ], [ 144.891381, 13.50353 ], [ 144.891341, 13.503606 ], [ 144.891287, 13.503625 ], [ 144.891262, 13.503711 ], [ 144.891267, 13.503782 ], [ 144.891251, 13.503921 ], [ 144.891201, 13.503959 ], [ 144.891191, 13.504016 ], [ 144.891205, 13.504078 ], [ 144.891205, 13.504145 ], [ 144.891165, 13.504198 ], [ 144.89115, 13.504288 ], [ 144.891148, 13.504465 ], [ 144.891203, 13.504614 ], [ 144.891246, 13.504782 ], [ 144.891269, 13.504854 ], [ 144.891323, 13.504878 ], [ 144.891362, 13.504926 ], [ 144.891351, 13.504993 ], [ 144.89135, 13.505151 ], [ 144.891383, 13.505251 ], [ 144.891412, 13.505304 ], [ 144.891465, 13.505381 ], [ 144.891527, 13.505568 ], [ 144.89158, 13.505636 ], [ 144.891594, 13.505722 ], [ 144.891667, 13.505775 ], [ 144.891686, 13.505857 ], [ 144.891646, 13.505947 ], [ 144.891709, 13.506005 ], [ 144.891801, 13.506063 ], [ 144.89183, 13.50613 ], [ 144.891829, 13.506197 ], [ 144.891809, 13.506255 ], [ 144.891882, 13.506303 ], [ 144.891984, 13.50639 ], [ 144.892062, 13.506438 ], [ 144.89214, 13.506477 ], [ 144.892213, 13.506497 ], [ 144.892291, 13.506479 ], [ 144.892384, 13.506494 ], [ 144.892432, 13.506518 ], [ 144.8925, 13.506571 ], [ 144.892554, 13.506619 ], [ 144.892646, 13.506649 ], [ 144.89268, 13.506687 ], [ 144.892744, 13.506683 ], [ 144.892817, 13.506669 ], [ 144.89289, 13.506689 ], [ 144.892953, 13.506728 ], [ 144.893022, 13.506757 ], [ 144.89307, 13.506805 ], [ 144.893294, 13.506917 ], [ 144.893358, 13.506899 ], [ 144.893402, 13.506899 ], [ 144.893474, 13.506948 ], [ 144.893516, 13.506953 ], [ 144.893653, 13.506954 ], [ 144.893769, 13.50705 ], [ 144.893876, 13.50708 ], [ 144.89395, 13.507057 ], [ 144.894038, 13.507014 ], [ 144.894092, 13.507058 ], [ 144.894135, 13.50712 ], [ 144.894213, 13.507164 ], [ 144.89433, 13.50716 ], [ 144.894423, 13.507166 ], [ 144.894526, 13.507167 ], [ 144.894594, 13.507158 ], [ 144.894677, 13.50713 ], [ 144.894781, 13.507078 ], [ 144.894869, 13.506998 ], [ 144.894928, 13.506988 ], [ 144.89505, 13.506999 ], [ 144.89525, 13.506991 ], [ 144.895251, 13.506934 ], [ 144.89528, 13.50692 ], [ 144.895305, 13.506877 ], [ 144.895345, 13.506834 ], [ 144.895413, 13.50683 ], [ 144.895486, 13.506835 ], [ 144.895515, 13.506879 ], [ 144.895559, 13.506889 ], [ 144.895637, 13.506884 ], [ 144.895682, 13.506875 ], [ 144.895735, 13.506876 ], [ 144.895778, 13.506967 ], [ 144.895827, 13.506996 ], [ 144.89592, 13.506997 ], [ 144.895974, 13.506988 ], [ 144.896047, 13.507022 ], [ 144.89611, 13.507075 ], [ 144.896114, 13.507132 ], [ 144.896128, 13.507185 ], [ 144.896177, 13.507214 ], [ 144.896245, 13.507239 ], [ 144.896313, 13.507277 ], [ 144.896367, 13.507331 ], [ 144.896371, 13.507388 ], [ 144.896385, 13.507445 ], [ 144.896399, 13.507484 ], [ 144.896438, 13.507503 ], [ 144.896477, 13.507551 ], [ 144.896496, 13.507652 ], [ 144.896485, 13.507738 ], [ 144.896455, 13.507786 ], [ 144.896406, 13.507843 ], [ 144.896391, 13.507895 ], [ 144.89643, 13.507929 ], [ 144.896473, 13.507982 ], [ 144.896492, 13.508054 ], [ 144.896477, 13.508159 ], [ 144.896457, 13.508221 ], [ 144.896456, 13.508283 ], [ 144.89647, 13.508316 ], [ 144.896538, 13.508384 ], [ 144.896562, 13.508432 ], [ 144.896567, 13.508485 ], [ 144.896654, 13.508552 ], [ 144.896727, 13.508591 ], [ 144.89678, 13.508635 ], [ 144.896897, 13.508679 ], [ 144.896921, 13.508722 ], [ 144.896911, 13.508751 ], [ 144.896867, 13.508755 ], [ 144.896925, 13.508813 ], [ 144.89692, 13.508861 ], [ 144.896949, 13.508904 ], [ 144.897017, 13.508933 ], [ 144.897051, 13.509005 ], [ 144.897011, 13.509048 ], [ 144.897075, 13.509072 ], [ 144.897133, 13.509111 ], [ 144.897137, 13.509149 ], [ 144.897191, 13.509188 ], [ 144.897259, 13.509179 ], [ 144.897333, 13.509184 ], [ 144.897367, 13.509204 ], [ 144.897406, 13.509166 ], [ 144.897445, 13.509176 ], [ 144.897435, 13.509224 ], [ 144.89741, 13.509276 ], [ 144.89742, 13.5093 ], [ 144.897463, 13.509353 ], [ 144.897497, 13.509382 ], [ 144.897551, 13.509397 ], [ 144.897575, 13.50944 ], [ 144.897564, 13.509516 ], [ 144.897544, 13.509578 ], [ 144.897495, 13.509602 ], [ 144.897461, 13.509625 ], [ 144.89746, 13.509654 ], [ 144.897495, 13.509654 ], [ 144.897528, 13.509703 ], [ 144.897582, 13.509703 ], [ 144.897617, 13.509665 ], [ 144.897661, 13.509656 ], [ 144.897719, 13.509666 ], [ 144.897802, 13.509719 ], [ 144.897812, 13.509743 ], [ 144.897851, 13.509734 ], [ 144.897861, 13.509686 ], [ 144.897876, 13.509662 ], [ 144.8979, 13.509672 ], [ 144.897934, 13.509716 ], [ 144.897943, 13.509763 ], [ 144.897958, 13.509787 ], [ 144.898016, 13.509826 ], [ 144.898079, 13.509851 ], [ 144.898143, 13.509851 ], [ 144.898162, 13.509861 ], [ 144.898202, 13.509823 ], [ 144.898261, 13.509814 ], [ 144.898353, 13.509819 ], [ 144.898387, 13.509853 ], [ 144.898415, 13.509872 ], [ 144.898431, 13.509863 ], [ 144.898466, 13.50982 ], [ 144.898554, 13.509816 ], [ 144.898583, 13.509841 ], [ 144.898602, 13.509879 ], [ 144.898636, 13.509879 ], [ 144.898699, 13.509918 ], [ 144.898719, 13.509956 ], [ 144.898772, 13.509981 ], [ 144.898904, 13.510006 ], [ 144.898958, 13.510021 ], [ 144.899011, 13.510016 ], [ 144.899031, 13.51004 ], [ 144.898986, 13.510136 ], [ 144.898954, 13.510151 ], [ 144.898941, 13.510164 ], [ 144.899, 13.510179 ], [ 144.899093, 13.510189 ], [ 144.899132, 13.510232 ], [ 144.899175, 13.510309 ], [ 144.899184, 13.510348 ], [ 144.899253, 13.510367 ], [ 144.899257, 13.51043 ], [ 144.899252, 13.510477 ], [ 144.899296, 13.510492 ], [ 144.899437, 13.510508 ], [ 144.899481, 13.510551 ], [ 144.899471, 13.510594 ], [ 144.899487, 13.510647 ], [ 144.89955, 13.510676 ], [ 144.899629, 13.510677 ], [ 144.899687, 13.510696 ], [ 144.899755, 13.51073 ], [ 144.899784, 13.510788 ], [ 144.899793, 13.510841 ], [ 144.899764, 13.510902 ], [ 144.899753, 13.510941 ], [ 144.899811, 13.511013 ], [ 144.899801, 13.511046 ], [ 144.899865, 13.511075 ], [ 144.899889, 13.511095 ], [ 144.899981, 13.511158 ], [ 144.900044, 13.511206 ], [ 144.900098, 13.511216 ], [ 144.900132, 13.511259 ], [ 144.900229, 13.511289 ], [ 144.900308, 13.511285 ], [ 144.900356, 13.511328 ], [ 144.900365, 13.511381 ], [ 144.900345, 13.511453 ], [ 144.900301, 13.511524 ], [ 144.90032, 13.511553 ], [ 144.900388, 13.511563 ], [ 144.900442, 13.511549 ], [ 144.900486, 13.511525 ], [ 144.900735, 13.511571 ], [ 144.900803, 13.511614 ], [ 144.900817, 13.511657 ], [ 144.900861, 13.511686 ], [ 144.900919, 13.511735 ], [ 144.900933, 13.511807 ], [ 144.900938, 13.511878 ], [ 144.900937, 13.511936 ], [ 144.900966, 13.511989 ], [ 144.901039, 13.512042 ], [ 144.901083, 13.512056 ], [ 144.901156, 13.512095 ], [ 144.901204, 13.512139 ], [ 144.901267, 13.512182 ], [ 144.90134, 13.512221 ], [ 144.901511, 13.512299 ], [ 144.901559, 13.512347 ], [ 144.901637, 13.512377 ], [ 144.901705, 13.512377 ], [ 144.901793, 13.512411 ], [ 144.901881, 13.512412 ], [ 144.9019, 13.512441 ], [ 144.901856, 13.512493 ], [ 144.901836, 13.512541 ], [ 144.901943, 13.512604 ], [ 144.902012, 13.512581 ], [ 144.902154, 13.512505 ], [ 144.902261, 13.512501 ], [ 144.902354, 13.512526 ], [ 144.902466, 13.512565 ], [ 144.902524, 13.512623 ], [ 144.902555, 13.51269 ], [ 144.902564, 13.512791 ], [ 144.902554, 13.512887 ], [ 144.902592, 13.512935 ], [ 144.90268, 13.51295 ], [ 144.902704, 13.512979 ], [ 144.902753, 13.513022 ], [ 144.902836, 13.513023 ], [ 144.902894, 13.513047 ], [ 144.902943, 13.513081 ], [ 144.903104, 13.513097 ], [ 144.903129, 13.513068 ], [ 144.903129, 13.513025 ], [ 144.903169, 13.512987 ], [ 144.903232, 13.512964 ], [ 144.903281, 13.51294 ], [ 144.903335, 13.512936 ], [ 144.903389, 13.512941 ], [ 144.903526, 13.512957 ], [ 144.903589, 13.512991 ], [ 144.903623, 13.513039 ], [ 144.903622, 13.513087 ], [ 144.903646, 13.513116 ], [ 144.9037, 13.513135 ], [ 144.903749, 13.51316 ], [ 144.903807, 13.513222 ], [ 144.903851, 13.513232 ], [ 144.9039, 13.513189 ], [ 144.903983, 13.513147 ], [ 144.904052, 13.513148 ], [ 144.904111, 13.513124 ], [ 144.904179, 13.513134 ], [ 144.904222, 13.513192 ], [ 144.904276, 13.513197 ], [ 144.90432, 13.513183 ], [ 144.904433, 13.513165 ], [ 144.904506, 13.513223 ], [ 144.904594, 13.513229 ], [ 144.904623, 13.513234 ], [ 144.904672, 13.513215 ], [ 144.904706, 13.513239 ], [ 144.904794, 13.513235 ], [ 144.904814, 13.513211 ], [ 144.904795, 13.513159 ], [ 144.904829, 13.51313 ], [ 144.904868, 13.513126 ], [ 144.904912, 13.513131 ], [ 144.904951, 13.513098 ], [ 144.905001, 13.51307 ], [ 144.905074, 13.513089 ], [ 144.905111, 13.513257 ], [ 144.905111, 13.513319 ], [ 144.90512, 13.513362 ], [ 144.905139, 13.513405 ], [ 144.905139, 13.513463 ], [ 144.905158, 13.513506 ], [ 144.905187, 13.513525 ], [ 144.905236, 13.513507 ], [ 144.905354, 13.513455 ], [ 144.905442, 13.513456 ], [ 144.905486, 13.513428 ], [ 144.905482, 13.513399 ], [ 144.905507, 13.513327 ], [ 144.90558, 13.51329 ], [ 144.905654, 13.513262 ], [ 144.905698, 13.513233 ], [ 144.905762, 13.51321 ], [ 144.90585, 13.513225 ], [ 144.90602, 13.513308 ], [ 144.906112, 13.513342 ], [ 144.906176, 13.513381 ], [ 144.906263, 13.513444 ], [ 144.906292, 13.513501 ], [ 144.906407, 13.513698 ], [ 144.906451, 13.513746 ], [ 144.906524, 13.513785 ], [ 144.906597, 13.513781 ], [ 144.906661, 13.51381 ], [ 144.906714, 13.513849 ], [ 144.906773, 13.513864 ], [ 144.906821, 13.513893 ], [ 144.906932, 13.514071 ], [ 144.90698, 13.514138 ], [ 144.907039, 13.514182 ], [ 144.907107, 13.514221 ], [ 144.90716, 13.514226 ], [ 144.907239, 13.514222 ], [ 144.907297, 13.514208 ], [ 144.907327, 13.514189 ], [ 144.907371, 13.514184 ], [ 144.907405, 13.514194 ], [ 144.907414, 13.514242 ], [ 144.907409, 13.5143 ], [ 144.907413, 13.514352 ], [ 144.907432, 13.514415 ], [ 144.907471, 13.514477 ], [ 144.907505, 13.514501 ], [ 144.907583, 13.514526 ], [ 144.907617, 13.514564 ], [ 144.907655, 13.514641 ], [ 144.907704, 13.514651 ], [ 144.907728, 13.51468 ], [ 144.907723, 13.514718 ], [ 144.907728, 13.514747 ], [ 144.907752, 13.51479 ], [ 144.907791, 13.51481 ], [ 144.907864, 13.514796 ], [ 144.907947, 13.514763 ], [ 144.907976, 13.514787 ], [ 144.907996, 13.514826 ], [ 144.908054, 13.514869 ], [ 144.908127, 13.514851 ], [ 144.908201, 13.514847 ], [ 144.908235, 13.514823 ], [ 144.908265, 13.51478 ], [ 144.908314, 13.514781 ], [ 144.908362, 13.514819 ], [ 144.908401, 13.51482 ], [ 144.908445, 13.514829 ], [ 144.908469, 13.514887 ], [ 144.908503, 13.514921 ], [ 144.908557, 13.514902 ], [ 144.908611, 13.514912 ], [ 144.908649, 13.514965 ], [ 144.908717, 13.51508 ], [ 144.908751, 13.515109 ], [ 144.908809, 13.515096 ], [ 144.908844, 13.515077 ], [ 144.908878, 13.515034 ], [ 144.908952, 13.515001 ], [ 144.909001, 13.514973 ], [ 144.909079, 13.514978 ], [ 144.909142, 13.515027 ], [ 144.909259, 13.515099 ], [ 144.909322, 13.515128 ], [ 144.90939, 13.515172 ], [ 144.90942, 13.515187 ], [ 144.909454, 13.515149 ], [ 144.909489, 13.515101 ], [ 144.909557, 13.515083 ], [ 144.909626, 13.515098 ], [ 144.90966, 13.515131 ], [ 144.909679, 13.515179 ], [ 144.909722, 13.515251 ], [ 144.909811, 13.51519 ], [ 144.909874, 13.515205 ], [ 144.909917, 13.515253 ], [ 144.909932, 13.515291 ], [ 144.909936, 13.51533 ], [ 144.909921, 13.515373 ], [ 144.909955, 13.515397 ], [ 144.910024, 13.515412 ], [ 144.910087, 13.515403 ], [ 144.910131, 13.515374 ], [ 144.910185, 13.515399 ], [ 144.910219, 13.515389 ], [ 144.910244, 13.515394 ], [ 144.910273, 13.515433 ], [ 144.910302, 13.515462 ], [ 144.910428, 13.515506 ], [ 144.910487, 13.515497 ], [ 144.910546, 13.515464 ], [ 144.910595, 13.515483 ], [ 144.910639, 13.515508 ], [ 144.910717, 13.515513 ], [ 144.910741, 13.515528 ], [ 144.91076, 13.515561 ], [ 144.910794, 13.51559 ], [ 144.910863, 13.515605 ], [ 144.910911, 13.515634 ], [ 144.91095, 13.515668 ], [ 144.911096, 13.515679 ], [ 144.91114, 13.515703 ], [ 144.911199, 13.515704 ], [ 144.911243, 13.515723 ], [ 144.911277, 13.515656 ], [ 144.911288, 13.515614 ], [ 144.911332, 13.515585 ], [ 144.911351, 13.515581 ], [ 144.91139, 13.51559 ], [ 144.911434, 13.515591 ], [ 144.911469, 13.515567 ], [ 144.911489, 13.515524 ], [ 144.911494, 13.515467 ], [ 144.911514, 13.515429 ], [ 144.911544, 13.51541 ], [ 144.911573, 13.51541 ], [ 144.911603, 13.515372 ], [ 144.911637, 13.515339 ], [ 144.911677, 13.515287 ], [ 144.911731, 13.515254 ], [ 144.911897, 13.515183 ], [ 144.911991, 13.515132 ], [ 144.912079, 13.515104 ], [ 144.912182, 13.5151 ], [ 144.912372, 13.515154 ], [ 144.912469, 13.51515 ], [ 144.912572, 13.515184 ], [ 144.912649, 13.515295 ], [ 144.912707, 13.515343 ], [ 144.91279, 13.515401 ], [ 144.912877, 13.515455 ], [ 144.912916, 13.515498 ], [ 144.913009, 13.515498 ], [ 144.913024, 13.515499 ], [ 144.913082, 13.515504 ], [ 144.913165, 13.515505 ], [ 144.913224, 13.515481 ], [ 144.913317, 13.515487 ], [ 144.91338, 13.515507 ], [ 144.913444, 13.515517 ], [ 144.913484, 13.515546 ], [ 144.91353, 13.51548 ], [ 144.913598, 13.515455 ], [ 144.913654, 13.515481 ], [ 144.913668, 13.51557 ], [ 144.913741, 13.515575 ], [ 144.913859, 13.515571 ], [ 144.91399, 13.51563 ], [ 144.914049, 13.515664 ], [ 144.914131, 13.515698 ], [ 144.914116, 13.515751 ], [ 144.914111, 13.515808 ], [ 144.914173, 13.515947 ], [ 144.914231, 13.516053 ], [ 144.914285, 13.516063 ], [ 144.914387, 13.516073 ], [ 144.914416, 13.516121 ], [ 144.914479, 13.51617 ], [ 144.914523, 13.516141 ], [ 144.914592, 13.516137 ], [ 144.914685, 13.516123 ], [ 144.914778, 13.516072 ], [ 144.914846, 13.516115 ], [ 144.914909, 13.516197 ], [ 144.914928, 13.516279 ], [ 144.914952, 13.516336 ], [ 144.915005, 13.516341 ], [ 144.915084, 13.516309 ], [ 144.915143, 13.516261 ], [ 144.915236, 13.516224 ], [ 144.915295, 13.516248 ], [ 144.915322, 13.516454 ], [ 144.915346, 13.51654 ], [ 144.915316, 13.516607 ], [ 144.915339, 13.516698 ], [ 144.915407, 13.516785 ], [ 144.915485, 13.516804 ], [ 144.915559, 13.5168 ], [ 144.915617, 13.516849 ], [ 144.915641, 13.516892 ], [ 144.915714, 13.516892 ], [ 144.915812, 13.516865 ], [ 144.915886, 13.516836 ], [ 144.915919, 13.51688 ], [ 144.915943, 13.516942 ], [ 144.916089, 13.517068 ], [ 144.916182, 13.517083 ], [ 144.916279, 13.517093 ], [ 144.91629, 13.517022 ], [ 144.916329, 13.516941 ], [ 144.916408, 13.516889 ], [ 144.916506, 13.516894 ], [ 144.916525, 13.516933 ], [ 144.916554, 13.516947 ], [ 144.916588, 13.516947 ], [ 144.916642, 13.516929 ], [ 144.916672, 13.516939 ], [ 144.916669, 13.516996 ], [ 144.916741, 13.517087 ], [ 144.91675, 13.51715 ], [ 144.916799, 13.517212 ], [ 144.916857, 13.517256 ], [ 144.91696, 13.517257 ], [ 144.917043, 13.517229 ], [ 144.917111, 13.517263 ], [ 144.917125, 13.51732 ], [ 144.917193, 13.517373 ], [ 144.917271, 13.517398 ], [ 144.917394, 13.517365 ], [ 144.917497, 13.517328 ], [ 144.917609, 13.517324 ], [ 144.917677, 13.51743 ], [ 144.917744, 13.517512 ], [ 144.917857, 13.517527 ], [ 144.918003, 13.517562 ], [ 144.918085, 13.517629 ], [ 144.918212, 13.517683 ], [ 144.91827, 13.517731 ], [ 144.918552, 13.51793 ], [ 144.918669, 13.517998 ], [ 144.9188, 13.518061 ], [ 144.918917, 13.518134 ], [ 144.918999, 13.518197 ], [ 144.91913, 13.518279 ], [ 144.919237, 13.518375 ], [ 144.919388, 13.518477 ], [ 144.919475, 13.518578 ], [ 144.919606, 13.518675 ], [ 144.919717, 13.518781 ], [ 144.919793, 13.51881 ], [ 144.919886, 13.518811 ], [ 144.920135, 13.518856 ], [ 144.9203, 13.51891 ], [ 144.920398, 13.518911 ], [ 144.920525, 13.518879 ], [ 144.920623, 13.51887 ], [ 144.920677, 13.51889 ], [ 144.92072, 13.518938 ], [ 144.920945, 13.518944 ], [ 144.92117, 13.518937 ], [ 144.921312, 13.518919 ], [ 144.9214, 13.518919 ], [ 144.921459, 13.518872 ], [ 144.921557, 13.518849 ], [ 144.921625, 13.518907 ], [ 144.921712, 13.518956 ], [ 144.921824, 13.519004 ], [ 144.921932, 13.519015 ], [ 144.922044, 13.519044 ], [ 144.922176, 13.519055 ], [ 144.922343, 13.518966 ], [ 144.922396, 13.519019 ], [ 144.922381, 13.519095 ], [ 144.922476, 13.519124 ], [ 144.922598, 13.519145 ], [ 144.922671, 13.519203 ], [ 144.922778, 13.519246 ], [ 144.922895, 13.519286 ], [ 144.922948, 13.519281 ], [ 144.923022, 13.519253 ], [ 144.92308, 13.519278 ], [ 144.923163, 13.519321 ], [ 144.923197, 13.519346 ], [ 144.92325, 13.519413 ], [ 144.923338, 13.519419 ], [ 144.923436, 13.519438 ], [ 144.923509, 13.519487 ], [ 144.923543, 13.51953 ], [ 144.923571, 13.519597 ], [ 144.923634, 13.519674 ], [ 144.923707, 13.519718 ], [ 144.923751, 13.519766 ], [ 144.92378, 13.519819 ], [ 144.923819, 13.519829 ], [ 144.923863, 13.519801 ], [ 144.923941, 13.519787 ], [ 144.924029, 13.519826 ], [ 144.924077, 13.519879 ], [ 144.924111, 13.519898 ], [ 144.92413, 13.519956 ], [ 144.924184, 13.520004 ], [ 144.924247, 13.519995 ], [ 144.924335, 13.519996 ], [ 144.924388, 13.520044 ], [ 144.924452, 13.520069 ], [ 144.924525, 13.520131 ], [ 144.924544, 13.520175 ], [ 144.924543, 13.520275 ], [ 144.924547, 13.520347 ], [ 144.92462, 13.520386 ], [ 144.924674, 13.520386 ], [ 144.924747, 13.520348 ], [ 144.924796, 13.520358 ], [ 144.924854, 13.520426 ], [ 144.924917, 13.520484 ], [ 144.924936, 13.520613 ], [ 144.925014, 13.520657 ], [ 144.92533, 13.520774 ], [ 144.925389, 13.520822 ], [ 144.925417, 13.520875 ], [ 144.925451, 13.520928 ], [ 144.925534, 13.520962 ], [ 144.925651, 13.520992 ], [ 144.925816, 13.52107 ], [ 144.925879, 13.521128 ], [ 144.925942, 13.521195 ], [ 144.925981, 13.521272 ], [ 144.926044, 13.521339 ], [ 144.926048, 13.521373 ], [ 144.926033, 13.521416 ], [ 144.926057, 13.521464 ], [ 144.926076, 13.521517 ], [ 144.926149, 13.521565 ], [ 144.926192, 13.521666 ], [ 144.926192, 13.521703 ], [ 144.926211, 13.521705 ], [ 144.926255, 13.521716 ], [ 144.926309, 13.521735 ], [ 144.926316, 13.521762 ], [ 144.926359, 13.521793 ], [ 144.926382, 13.521804 ], [ 144.926459, 13.521809 ], [ 144.926498, 13.521835 ], [ 144.926525, 13.521881 ], [ 144.926536, 13.521931 ], [ 144.926578, 13.522007 ], [ 144.926605, 13.522033 ], [ 144.926624, 13.522045 ], [ 144.92669, 13.522049 ], [ 144.926697, 13.522076 ], [ 144.926697, 13.522148 ], [ 144.926681, 13.522212 ], [ 144.92668, 13.522258 ], [ 144.926738, 13.5223 ], [ 144.926726, 13.522349 ], [ 144.926691, 13.522398 ], [ 144.926702, 13.522436 ], [ 144.926721, 13.52247 ], [ 144.926771, 13.522505 ], [ 144.926814, 13.522509 ], [ 144.926845, 13.522452 ], [ 144.926957, 13.522544 ], [ 144.92709, 13.522754 ], [ 144.927113, 13.522837 ], [ 144.927112, 13.522883 ], [ 144.927189, 13.523035 ], [ 144.927207, 13.523096 ], [ 144.927253, 13.523161 ], [ 144.927257, 13.52324 ], [ 144.927283, 13.523294 ], [ 144.927327, 13.523415 ], [ 144.927377, 13.523454 ], [ 144.927376, 13.523484 ], [ 144.927368, 13.523529 ], [ 144.927368, 13.523594 ], [ 144.927453, 13.523644 ], [ 144.927433, 13.52367 ], [ 144.92741, 13.523712 ], [ 144.927409, 13.523715 ], [ 144.927413, 13.523768 ], [ 144.927412, 13.523821 ], [ 144.927431, 13.52389 ], [ 144.927473, 13.523924 ], [ 144.927504, 13.52397 ], [ 144.927527, 13.524042 ], [ 144.92755, 13.524069 ], [ 144.927568, 13.524145 ], [ 144.927618, 13.524168 ], [ 144.927731, 13.524173 ], [ 144.927766, 13.524169 ], [ 144.927793, 13.524192 ], [ 144.927796, 13.524242 ], [ 144.92778, 13.52431 ], [ 144.927752, 13.524351 ], [ 144.927795, 13.524397 ], [ 144.927794, 13.524458 ], [ 144.927786, 13.524488 ], [ 144.927735, 13.524522 ], [ 144.92772, 13.524548 ], [ 144.927696, 13.524578 ], [ 144.927646, 13.524612 ], [ 144.927649, 13.524646 ], [ 144.927699, 13.524684 ], [ 144.927761, 13.5247 ], [ 144.927861, 13.524746 ], [ 144.92788, 13.524792 ], [ 144.927884, 13.524837 ], [ 144.927911, 13.524868 ], [ 144.927941, 13.524895 ], [ 144.927974, 13.524909 ], [ 144.927984, 13.524925 ], [ 144.92796, 13.524974 ], [ 144.927948, 13.525012 ], [ 144.927959, 13.525046 ], [ 144.928002, 13.525066 ], [ 144.928048, 13.525074 ], [ 144.928106, 13.525078 ], [ 144.928118, 13.525105 ], [ 144.928102, 13.52515 ], [ 144.928121, 13.52518 ], [ 144.928121, 13.525215 ], [ 144.928051, 13.525259 ], [ 144.928023, 13.525301 ], [ 144.928027, 13.525346 ], [ 144.928065, 13.525415 ], [ 144.928068, 13.525476 ], [ 144.928083, 13.525502 ], [ 144.928072, 13.525525 ], [ 144.928006, 13.52554 ], [ 144.928017, 13.525574 ], [ 144.92809, 13.525589 ], [ 144.928098, 13.52562 ], [ 144.928082, 13.525661 ], [ 144.928047, 13.52571 ], [ 144.928015, 13.52574 ], [ 144.927934, 13.525789 ], [ 144.927945, 13.525816 ], [ 144.927988, 13.525835 ], [ 144.928053, 13.525847 ], [ 144.928076, 13.525862 ], [ 144.928138, 13.525878 ], [ 144.928169, 13.525874 ], [ 144.928228, 13.525845 ], [ 144.928274, 13.525837 ], [ 144.928313, 13.525853 ], [ 144.928347, 13.525872 ], [ 144.928347, 13.52591 ], [ 144.928327, 13.525955 ], [ 144.928335, 13.525986 ], [ 144.9283, 13.526027 ], [ 144.928253, 13.526049 ], [ 144.928202, 13.526083 ], [ 144.928221, 13.526102 ], [ 144.928252, 13.526102 ], [ 144.928291, 13.526084 ], [ 144.928353, 13.5261 ], [ 144.928388, 13.526119 ], [ 144.928395, 13.526195 ], [ 144.92839, 13.526312 ], [ 144.928428, 13.526369 ], [ 144.928428, 13.526403 ], [ 144.928462, 13.526468 ], [ 144.928431, 13.526498 ], [ 144.928423, 13.526525 ], [ 144.928403, 13.526566 ], [ 144.928361, 13.526589 ], [ 144.928372, 13.526611 ], [ 144.928403, 13.526642 ], [ 144.928398, 13.526691 ], [ 144.928405, 13.526732 ], [ 144.928417, 13.526746 ], [ 144.928442, 13.52674 ], [ 144.928477, 13.526697 ], [ 144.928511, 13.526702 ], [ 144.928515, 13.526784 ], [ 144.928529, 13.526851 ], [ 144.928534, 13.526903 ], [ 144.928568, 13.526913 ], [ 144.928592, 13.526928 ], [ 144.928592, 13.526961 ], [ 144.928669, 13.527067 ], [ 144.928673, 13.527182 ], [ 144.928634, 13.52722 ], [ 144.928575, 13.52721 ], [ 144.928556, 13.527166 ], [ 144.928529, 13.527195 ], [ 144.928509, 13.527223 ], [ 144.928479, 13.527285 ], [ 144.928488, 13.527343 ], [ 144.928517, 13.527372 ], [ 144.928552, 13.527358 ], [ 144.92863, 13.527377 ], [ 144.928634, 13.52743 ], [ 144.928629, 13.527468 ], [ 144.928585, 13.527477 ], [ 144.928526, 13.52751 ], [ 144.928486, 13.527591 ], [ 144.928461, 13.527682 ], [ 144.928494, 13.527783 ], [ 144.928543, 13.527802 ], [ 144.928572, 13.527783 ], [ 144.928611, 13.527817 ], [ 144.928631, 13.527856 ], [ 144.92864, 13.527899 ], [ 144.928639, 13.527956 ], [ 144.928663, 13.528019 ], [ 144.928663, 13.528066 ], [ 144.928687, 13.528105 ], [ 144.928746, 13.528115 ], [ 144.928791, 13.528107 ], [ 144.9288, 13.528091 ], [ 144.928844, 13.528082 ], [ 144.928902, 13.528102 ], [ 144.928941, 13.528121 ], [ 144.928955, 13.528184 ], [ 144.928984, 13.528198 ], [ 144.929028, 13.52828 ], [ 144.929091, 13.528319 ], [ 144.929115, 13.528346 ], [ 144.92912, 13.528352 ], [ 144.929164, 13.528377 ], [ 144.929193, 13.528405 ], [ 144.929197, 13.528434 ], [ 144.929192, 13.528477 ], [ 144.929163, 13.528506 ], [ 144.929167, 13.52853 ], [ 144.929187, 13.528549 ], [ 144.929294, 13.528559 ], [ 144.929382, 13.528555 ], [ 144.929401, 13.528579 ], [ 144.929421, 13.528613 ], [ 144.92943, 13.528661 ], [ 144.929415, 13.528709 ], [ 144.92939, 13.528742 ], [ 144.929405, 13.528761 ], [ 144.92938, 13.52879 ], [ 144.929331, 13.528784 ], [ 144.929307, 13.52877 ], [ 144.929292, 13.528813 ], [ 144.929296, 13.528861 ], [ 144.92933, 13.528957 ], [ 144.929364, 13.528981 ], [ 144.929398, 13.528971 ], [ 144.929408, 13.528952 ], [ 144.929427, 13.528953 ], [ 144.929442, 13.528991 ], [ 144.929495, 13.529058 ], [ 144.929539, 13.529083 ], [ 144.929563, 13.529112 ], [ 144.929567, 13.529159 ], [ 144.92965, 13.529232 ], [ 144.92964, 13.529275 ], [ 144.929625, 13.529313 ], [ 144.929649, 13.529351 ], [ 144.929649, 13.52939 ], [ 144.929687, 13.529419 ], [ 144.929721, 13.529467 ], [ 144.929755, 13.529505 ], [ 144.929789, 13.529553 ], [ 144.929808, 13.529587 ], [ 144.929847, 13.52963 ], [ 144.929891, 13.529631 ], [ 144.929915, 13.52965 ], [ 144.929915, 13.529703 ], [ 144.929909, 13.529755 ], [ 144.929894, 13.529798 ], [ 144.92987, 13.529831 ], [ 144.929816, 13.52985 ], [ 144.929756, 13.52995 ], [ 144.929744, 13.52998 ], [ 144.929736, 13.529998 ], [ 144.929736, 13.530055 ], [ 144.929715, 13.530136 ], [ 144.929724, 13.530261 ], [ 144.929739, 13.53028 ], [ 144.929758, 13.53027 ], [ 144.929797, 13.530261 ], [ 144.929812, 13.53029 ], [ 144.929855, 13.530333 ], [ 144.929909, 13.530406 ], [ 144.930016, 13.530464 ], [ 144.930089, 13.530484 ], [ 144.930128, 13.530508 ], [ 144.930167, 13.530503 ], [ 144.930206, 13.530518 ], [ 144.930269, 13.530605 ], [ 144.930263, 13.530648 ], [ 144.930243, 13.530695 ], [ 144.930243, 13.530714 ], [ 144.930297, 13.530739 ], [ 144.930311, 13.530753 ], [ 144.930321, 13.530787 ], [ 144.930345, 13.530835 ], [ 144.930369, 13.530859 ], [ 144.930418, 13.530859 ], [ 144.930437, 13.530864 ], [ 144.930452, 13.530903 ], [ 144.930446, 13.530941 ], [ 144.930456, 13.530974 ], [ 144.930475, 13.530998 ], [ 144.930524, 13.531018 ], [ 144.930538, 13.531056 ], [ 144.930538, 13.531104 ], [ 144.930547, 13.531152 ], [ 144.930571, 13.531191 ], [ 144.930594, 13.531214 ], [ 144.930651, 13.531219 ], [ 144.930677, 13.53125 ], [ 144.930689, 13.531301 ], [ 144.930727, 13.531352 ], [ 144.930682, 13.531364 ], [ 144.93063, 13.531402 ], [ 144.930649, 13.531452 ], [ 144.930713, 13.531478 ], [ 144.930745, 13.531516 ], [ 144.930758, 13.531567 ], [ 144.930797, 13.531555 ], [ 144.930854, 13.53158 ], [ 144.930822, 13.531631 ], [ 144.930783, 13.531655 ], [ 144.93077, 13.531693 ], [ 144.930801, 13.531731 ], [ 144.930834, 13.531757 ], [ 144.930911, 13.53177 ], [ 144.930995, 13.531771 ], [ 144.931053, 13.531765 ], [ 144.931111, 13.531778 ], [ 144.931123, 13.531841 ], [ 144.931129, 13.531905 ], [ 144.931096, 13.531955 ], [ 144.93107, 13.531986 ], [ 144.931025, 13.531998 ], [ 144.931012, 13.532049 ], [ 144.930991, 13.53215 ], [ 144.931017, 13.532232 ], [ 144.931042, 13.532264 ], [ 144.931093, 13.532302 ], [ 144.931112, 13.532378 ], [ 144.931086, 13.532435 ], [ 144.931118, 13.532454 ], [ 144.931169, 13.532473 ], [ 144.931182, 13.53253 ], [ 144.931168, 13.532587 ], [ 144.931129, 13.532612 ], [ 144.931103, 13.532669 ], [ 144.931122, 13.532744 ], [ 144.931147, 13.532802 ], [ 144.931166, 13.532884 ], [ 144.93123, 13.532929 ], [ 144.931269, 13.532885 ], [ 144.931308, 13.53286 ], [ 144.931327, 13.532885 ], [ 144.93134, 13.532923 ], [ 144.931339, 13.532974 ], [ 144.931385, 13.532974 ], [ 144.93141, 13.532999 ], [ 144.931412, 13.533151 ], [ 144.931463, 13.533208 ], [ 144.931527, 13.533253 ], [ 144.931604, 13.533298 ], [ 144.931695, 13.533324 ], [ 144.931759, 13.53335 ], [ 144.931785, 13.533369 ], [ 144.931765, 13.533407 ], [ 144.931758, 13.533444 ], [ 144.931768, 13.533498 ], [ 144.93177, 13.533508 ], [ 144.93177, 13.533546 ], [ 144.931808, 13.533628 ], [ 144.931846, 13.533679 ], [ 144.931898, 13.533679 ], [ 144.931963, 13.533655 ], [ 144.932014, 13.533674 ], [ 144.93204, 13.533718 ], [ 144.932052, 13.533775 ], [ 144.932103, 13.533832 ], [ 144.932161, 13.533877 ], [ 144.932173, 13.533921 ], [ 144.932212, 13.533941 ], [ 144.932212, 13.533991 ], [ 144.932153, 13.534022 ], [ 144.932134, 13.534047 ], [ 144.932114, 13.534117 ], [ 144.932113, 13.534186 ], [ 144.932126, 13.534231 ], [ 144.932164, 13.534275 ], [ 144.932177, 13.534313 ], [ 144.932176, 13.534383 ], [ 144.93215, 13.534439 ], [ 144.932098, 13.534458 ], [ 144.93204, 13.534489 ], [ 144.932007, 13.534533 ], [ 144.93198, 13.534596 ], [ 144.932019, 13.534621 ], [ 144.932077, 13.534641 ], [ 144.932089, 13.534679 ], [ 144.932083, 13.534729 ], [ 144.932011, 13.534779 ], [ 144.931991, 13.534823 ], [ 144.931933, 13.534848 ], [ 144.931836, 13.534904 ], [ 144.93181, 13.534935 ], [ 144.931868, 13.534948 ], [ 144.931939, 13.534943 ], [ 144.931978, 13.534924 ], [ 144.932016, 13.534931 ], [ 144.932022, 13.534969 ], [ 144.931996, 13.535019 ], [ 144.931899, 13.535024 ], [ 144.931841, 13.535049 ], [ 144.931809, 13.535068 ], [ 144.931782, 13.535124 ], [ 144.931782, 13.535181 ], [ 144.931788, 13.535213 ], [ 144.931852, 13.53522 ], [ 144.931891, 13.535239 ], [ 144.931949, 13.53524 ], [ 144.931987, 13.535297 ], [ 144.932, 13.535335 ], [ 144.932038, 13.535367 ], [ 144.932077, 13.535386 ], [ 144.932109, 13.535424 ], [ 144.932089, 13.535481 ], [ 144.932044, 13.535518 ], [ 144.932005, 13.535537 ], [ 144.931966, 13.535581 ], [ 144.931952, 13.535637 ], [ 144.931978, 13.535688 ], [ 144.932016, 13.535739 ], [ 144.932067, 13.535777 ], [ 144.932112, 13.535822 ], [ 144.932118, 13.535879 ], [ 144.932117, 13.535955 ], [ 144.932129, 13.536049 ], [ 144.932109, 13.536106 ], [ 144.932077, 13.536144 ], [ 144.932046, 13.53619 ], [ 144.932054, 13.536207 ], [ 144.932014, 13.536263 ], [ 144.932027, 13.536295 ], [ 144.932072, 13.536352 ], [ 144.932084, 13.536434 ], [ 144.932103, 13.536498 ], [ 144.932141, 13.536536 ], [ 144.932186, 13.536555 ], [ 144.93225, 13.536612 ], [ 144.932276, 13.536663 ], [ 144.93232, 13.536708 ], [ 144.93232, 13.536746 ], [ 144.932358, 13.53679 ], [ 144.932332, 13.536872 ], [ 144.932248, 13.53689 ], [ 144.932202, 13.536921 ], [ 144.932182, 13.536991 ], [ 144.932195, 13.537048 ], [ 144.932169, 13.537079 ], [ 144.932117, 13.537085 ], [ 144.932079, 13.537059 ], [ 144.932071, 13.537173 ], [ 144.932077, 13.537192 ], [ 144.932109, 13.537224 ], [ 144.932174, 13.537269 ], [ 144.93225, 13.537339 ], [ 144.932347, 13.537409 ], [ 144.932385, 13.537416 ], [ 144.93245, 13.537391 ], [ 144.932495, 13.537416 ], [ 144.932436, 13.537523 ], [ 144.932384, 13.537548 ], [ 144.932358, 13.537598 ], [ 144.932319, 13.537636 ], [ 144.932281, 13.537598 ], [ 144.932242, 13.537541 ], [ 144.932191, 13.537547 ], [ 144.932184, 13.537584 ], [ 144.932196, 13.537635 ], [ 144.932183, 13.537648 ], [ 144.932176, 13.537698 ], [ 144.932124, 13.537754 ], [ 144.932104, 13.537881 ], [ 144.932104, 13.537912 ], [ 144.932142, 13.537919 ], [ 144.932168, 13.537913 ], [ 144.932213, 13.537894 ], [ 144.932265, 13.537882 ], [ 144.932304, 13.537889 ], [ 144.932342, 13.53792 ], [ 144.932355, 13.537952 ], [ 144.932367, 13.538003 ], [ 144.93234, 13.538141 ], [ 144.932321, 13.538173 ], [ 144.93232, 13.538223 ], [ 144.932352, 13.53828 ], [ 144.932365, 13.538312 ], [ 144.932371, 13.538363 ], [ 144.932358, 13.538394 ], [ 144.932319, 13.538425 ], [ 144.932325, 13.538457 ], [ 144.932396, 13.538483 ], [ 144.932447, 13.538534 ], [ 144.932453, 13.538572 ], [ 144.932446, 13.538629 ], [ 144.932426, 13.538679 ], [ 144.932406, 13.538717 ], [ 144.932412, 13.538774 ], [ 144.932354, 13.538861 ], [ 144.932347, 13.538887 ], [ 144.932398, 13.538976 ], [ 144.932417, 13.539026 ], [ 144.93241, 13.539089 ], [ 144.932428, 13.539153 ], [ 144.932434, 13.539216 ], [ 144.93246, 13.539279 ], [ 144.932492, 13.539317 ], [ 144.93253, 13.539305 ], [ 144.932557, 13.539242 ], [ 144.932609, 13.539205 ], [ 144.932647, 13.539237 ], [ 144.932666, 13.539262 ], [ 144.932744, 13.539282 ], [ 144.932769, 13.539301 ], [ 144.932769, 13.539339 ], [ 144.932733, 13.539356 ], [ 144.932723, 13.539404 ], [ 144.932747, 13.539473 ], [ 144.932747, 13.539531 ], [ 144.932811, 13.539546 ], [ 144.932916, 13.539547 ], [ 144.932971, 13.539557 ], [ 144.93298, 13.539596 ], [ 144.93296, 13.539635 ], [ 144.932959, 13.539684 ], [ 144.932924, 13.539713 ], [ 144.932855, 13.539654 ], [ 144.93284, 13.539741 ], [ 144.932854, 13.539804 ], [ 144.932893, 13.539849 ], [ 144.932963, 13.539849 ], [ 144.932933, 13.539898 ], [ 144.932927, 13.539936 ], [ 144.932947, 13.539966 ], [ 144.933041, 13.540064 ], [ 144.93307, 13.540118 ], [ 144.933085, 13.540171 ], [ 144.933119, 13.54022 ], [ 144.933138, 13.540294 ], [ 144.933153, 13.540328 ], [ 144.933252, 13.540348 ], [ 144.933257, 13.540392 ], [ 144.933226, 13.54045 ], [ 144.933231, 13.540494 ], [ 144.933256, 13.540533 ], [ 144.933255, 13.540591 ], [ 144.93327, 13.54064 ], [ 144.933299, 13.54066 ], [ 144.933349, 13.540665 ], [ 144.933389, 13.540695 ], [ 144.933388, 13.540748 ], [ 144.933378, 13.540802 ], [ 144.933377, 13.54086 ], [ 144.933342, 13.540889 ], [ 144.933263, 13.540874 ], [ 144.933257, 13.540898 ], [ 144.933297, 13.540923 ], [ 144.933312, 13.540942 ], [ 144.933326, 13.540976 ], [ 144.933356, 13.541016 ], [ 144.933355, 13.541064 ], [ 144.93338, 13.541089 ], [ 144.933395, 13.54107 ], [ 144.933475, 13.541046 ], [ 144.933525, 13.541022 ], [ 144.933585, 13.541037 ], [ 144.933599, 13.541076 ], [ 144.933574, 13.541149 ], [ 144.933524, 13.541183 ], [ 144.933493, 13.541241 ], [ 144.933508, 13.541255 ], [ 144.933548, 13.54128 ], [ 144.933697, 13.541301 ], [ 144.933721, 13.54133 ], [ 144.933756, 13.54136 ], [ 144.933752, 13.54152 ], [ 144.933776, 13.541579 ], [ 144.933846, 13.541618 ], [ 144.933875, 13.541624 ], [ 144.933935, 13.541614 ], [ 144.933965, 13.541639 ], [ 144.93397, 13.541673 ], [ 144.933999, 13.541698 ], [ 144.934024, 13.541703 ], [ 144.934019, 13.541742 ], [ 144.934064, 13.541742 ], [ 144.934094, 13.541723 ], [ 144.934143, 13.541743 ], [ 144.934148, 13.541772 ], [ 144.934143, 13.541796 ], [ 144.934162, 13.541845 ], [ 144.934222, 13.54186 ], [ 144.934256, 13.54186 ], [ 144.934306, 13.54189 ], [ 144.934331, 13.541914 ], [ 144.934325, 13.541968 ], [ 144.934365, 13.541983 ], [ 144.934409, 13.542008 ], [ 144.934419, 13.542042 ], [ 144.934398, 13.542202 ], [ 144.934373, 13.542246 ], [ 144.934367, 13.54229 ], [ 144.934412, 13.542309 ], [ 144.934451, 13.542339 ], [ 144.934465, 13.54247 ], [ 144.934498, 13.542651 ], [ 144.934582, 13.542715 ], [ 144.934662, 13.542715 ], [ 144.934742, 13.542721 ], [ 144.934791, 13.542755 ], [ 144.934825, 13.542799 ], [ 144.934885, 13.542834 ], [ 144.934969, 13.542908 ], [ 144.934958, 13.543024 ], [ 144.935002, 13.543074 ], [ 144.935007, 13.543137 ], [ 144.934996, 13.54319 ], [ 144.93504, 13.543303 ], [ 144.935054, 13.543361 ], [ 144.935099, 13.543376 ], [ 144.935109, 13.543435 ], [ 144.935158, 13.543489 ], [ 144.935162, 13.543547 ], [ 144.935147, 13.5436 ], [ 144.935151, 13.543688 ], [ 144.935175, 13.543761 ], [ 144.93518, 13.543815 ], [ 144.935259, 13.543879 ], [ 144.935294, 13.543884 ], [ 144.935353, 13.543884 ], [ 144.93537, 13.543898 ], [ 144.935383, 13.543909 ], [ 144.935397, 13.543972 ], [ 144.935442, 13.544002 ], [ 144.935466, 13.544056 ], [ 144.935376, 13.544118 ], [ 144.935386, 13.544182 ], [ 144.935415, 13.544211 ], [ 144.935405, 13.544264 ], [ 144.93538, 13.544308 ], [ 144.935374, 13.544357 ], [ 144.935374, 13.54441 ], [ 144.935383, 13.544474 ], [ 144.935423, 13.544484 ], [ 144.935488, 13.544479 ], [ 144.935552, 13.544494 ], [ 144.935547, 13.544538 ], [ 144.935576, 13.544558 ], [ 144.935652, 13.544481 ], [ 144.935691, 13.544515 ], [ 144.935711, 13.544559 ], [ 144.93573, 13.544613 ], [ 144.93576, 13.544666 ], [ 144.935749, 13.54472 ], [ 144.935719, 13.544778 ], [ 144.935758, 13.544886 ], [ 144.935762, 13.544939 ], [ 144.935757, 13.544993 ], [ 144.935736, 13.545046 ], [ 144.935786, 13.545022 ], [ 144.935836, 13.544988 ], [ 144.935867, 13.54494 ], [ 144.935951, 13.544911 ], [ 144.936026, 13.544917 ], [ 144.936051, 13.544883 ], [ 144.936161, 13.544884 ], [ 144.93624, 13.544889 ], [ 144.936315, 13.54491 ], [ 144.936374, 13.544934 ], [ 144.936399, 13.544978 ], [ 144.936438, 13.545032 ], [ 144.936447, 13.545081 ], [ 144.936447, 13.54513 ], [ 144.936442, 13.545183 ], [ 144.936426, 13.545217 ], [ 144.936346, 13.545251 ], [ 144.936336, 13.545285 ], [ 144.936366, 13.545329 ], [ 144.936395, 13.545358 ], [ 144.93643, 13.545412 ], [ 144.936499, 13.545476 ], [ 144.936563, 13.545486 ], [ 144.936598, 13.545511 ], [ 144.936633, 13.54553 ], [ 144.936632, 13.545564 ], [ 144.936622, 13.545589 ], [ 144.936666, 13.545657 ], [ 144.936688, 13.545719 ], [ 144.936731, 13.545706 ], [ 144.93679, 13.545717 ], [ 144.93684, 13.545761 ], [ 144.936874, 13.545819 ], [ 144.936843, 13.545912 ], [ 144.936842, 13.546014 ], [ 144.936896, 13.546097 ], [ 144.93693, 13.546209 ], [ 144.937039, 13.546337 ], [ 144.937088, 13.546381 ], [ 144.937097, 13.546435 ], [ 144.937112, 13.546493 ], [ 144.937156, 13.546542 ], [ 144.937176, 13.54661 ], [ 144.93716, 13.546674 ], [ 144.937125, 13.546732 ], [ 144.9371, 13.546766 ], [ 144.937064, 13.546804 ], [ 144.936954, 13.546862 ], [ 144.936964, 13.546906 ], [ 144.936994, 13.54693 ], [ 144.937048, 13.54695 ], [ 144.937202, 13.546971 ], [ 144.937217, 13.547 ], [ 144.937221, 13.547083 ], [ 144.937241, 13.547088 ], [ 144.937278, 13.547113 ], [ 144.93732, 13.547142 ], [ 144.9374, 13.547153 ], [ 144.937445, 13.547129 ], [ 144.937504, 13.547178 ], [ 144.937501, 13.547197 ], [ 144.937506, 13.547261 ], [ 144.93747, 13.547401 ], [ 144.937494, 13.547411 ], [ 144.937529, 13.547416 ], [ 144.937599, 13.547388 ], [ 144.937654, 13.547403 ], [ 144.937668, 13.547442 ], [ 144.937658, 13.547491 ], [ 144.937662, 13.547598 ], [ 144.937697, 13.547613 ], [ 144.937742, 13.547598 ], [ 144.937797, 13.54757 ], [ 144.937821, 13.54758 ], [ 144.937806, 13.547672 ], [ 144.93773, 13.547778 ], [ 144.937729, 13.547846 ], [ 144.937734, 13.547929 ], [ 144.937763, 13.547998 ], [ 144.937852, 13.548105 ], [ 144.937906, 13.54813 ], [ 144.937976, 13.548141 ], [ 144.938025, 13.54817 ], [ 144.938025, 13.548229 ], [ 144.938039, 13.548302 ], [ 144.938043, 13.548443 ], [ 144.938067, 13.548467 ], [ 144.938102, 13.548463 ], [ 144.938107, 13.548512 ], [ 144.938091, 13.54856 ], [ 144.938146, 13.548634 ], [ 144.938135, 13.548677 ], [ 144.938134, 13.548823 ], [ 144.938014, 13.548915 ], [ 144.937993, 13.548983 ], [ 144.938003, 13.549031 ], [ 144.938102, 13.54911 ], [ 144.938101, 13.549149 ], [ 144.938066, 13.549193 ], [ 144.938135, 13.549227 ], [ 144.938165, 13.549213 ], [ 144.938235, 13.549204 ], [ 144.938294, 13.549258 ], [ 144.938338, 13.549355 ], [ 144.938373, 13.5494 ], [ 144.938402, 13.549453 ], [ 144.938397, 13.549512 ], [ 144.938406, 13.549536 ], [ 144.938431, 13.549546 ], [ 144.938501, 13.549556 ], [ 144.938545, 13.549571 ], [ 144.93857, 13.549606 ], [ 144.938577, 13.549649 ], [ 144.938631, 13.549772 ], [ 144.938615, 13.54981 ], [ 144.93861, 13.549859 ], [ 144.938615, 13.549908 ], [ 144.938639, 13.549957 ], [ 144.938644, 13.550015 ], [ 144.938673, 13.550118 ], [ 144.938697, 13.550157 ], [ 144.938747, 13.550172 ], [ 144.938796, 13.550216 ], [ 144.938846, 13.550241 ], [ 144.93889, 13.55028 ], [ 144.93886, 13.550343 ], [ 144.938884, 13.550372 ], [ 144.938874, 13.550426 ], [ 144.938849, 13.550469 ], [ 144.938883, 13.550499 ], [ 144.938953, 13.550524 ], [ 144.938982, 13.550548 ], [ 144.938967, 13.550587 ], [ 144.939006, 13.550646 ], [ 144.939071, 13.550651 ], [ 144.9391, 13.550725 ], [ 144.939109, 13.550793 ], [ 144.939134, 13.550832 ], [ 144.939193, 13.550881 ], [ 144.939248, 13.550891 ], [ 144.939302, 13.550921 ], [ 144.939342, 13.55096 ], [ 144.939331, 13.551019 ], [ 144.939311, 13.551067 ], [ 144.93937, 13.551209 ], [ 144.939414, 13.551267 ], [ 144.939379, 13.551326 ], [ 144.939338, 13.551384 ], [ 144.939337, 13.551534 ], [ 144.939351, 13.551588 ], [ 144.939381, 13.551661 ], [ 144.939435, 13.551706 ], [ 144.939489, 13.55174 ], [ 144.939519, 13.551789 ], [ 144.939608, 13.551853 ], [ 144.939637, 13.551878 ], [ 144.939681, 13.551966 ], [ 144.939711, 13.552005 ], [ 144.939761, 13.55202 ], [ 144.939825, 13.55203 ], [ 144.939879, 13.552089 ], [ 144.939904, 13.552123 ], [ 144.940008, 13.552168 ], [ 144.940008, 13.552231 ], [ 144.940032, 13.55229 ], [ 144.940028, 13.552339 ], [ 144.940026, 13.552368 ], [ 144.940046, 13.552421 ], [ 144.940075, 13.552436 ], [ 144.940144, 13.552563 ], [ 144.940168, 13.552622 ], [ 144.940153, 13.552714 ], [ 144.940122, 13.552768 ], [ 144.940066, 13.552913 ], [ 144.940001, 13.552966 ], [ 144.939927, 13.552961 ], [ 144.939887, 13.552897 ], [ 144.939797, 13.552955 ], [ 144.939782, 13.553023 ], [ 144.939806, 13.553062 ], [ 144.939826, 13.553106 ], [ 144.939796, 13.553154 ], [ 144.939761, 13.553149 ], [ 144.939736, 13.553198 ], [ 144.939729, 13.553402 ], [ 144.939742, 13.553616 ], [ 144.939748, 13.553665 ], [ 144.939896, 13.553617 ], [ 144.940006, 13.553618 ], [ 144.94008, 13.553609 ], [ 144.940115, 13.553658 ], [ 144.940069, 13.553745 ], [ 144.940019, 13.553774 ], [ 144.939885, 13.553788 ], [ 144.939829, 13.55386 ], [ 144.939764, 13.553899 ], [ 144.939739, 13.553967 ], [ 144.939768, 13.55402 ], [ 144.939847, 13.55407 ], [ 144.939857, 13.554123 ], [ 144.939836, 13.554191 ], [ 144.939851, 13.55424 ], [ 144.93989, 13.554294 ], [ 144.93994, 13.554333 ], [ 144.939999, 13.554343 ], [ 144.939999, 13.554392 ], [ 144.939988, 13.55446 ], [ 144.939933, 13.554552 ], [ 144.939873, 13.554586 ], [ 144.939872, 13.554634 ], [ 144.939897, 13.554654 ], [ 144.939922, 13.554693 ], [ 144.939877, 13.554717 ], [ 144.939732, 13.554774 ], [ 144.939702, 13.554794 ], [ 144.939677, 13.554828 ], [ 144.939642, 13.554856 ], [ 144.939626, 13.5549 ], [ 144.939641, 13.554954 ], [ 144.939715, 13.554979 ], [ 144.939789, 13.555028 ], [ 144.939794, 13.555057 ], [ 144.939749, 13.55512 ], [ 144.939713, 13.555178 ], [ 144.939683, 13.555266 ], [ 144.939687, 13.555339 ], [ 144.939671, 13.555441 ], [ 144.939676, 13.555528 ], [ 144.93975, 13.555568 ], [ 144.939784, 13.555622 ], [ 144.939834, 13.555676 ], [ 144.939833, 13.555749 ], [ 144.939793, 13.555821 ], [ 144.939697, 13.555879 ], [ 144.93962, 13.555932 ], [ 144.939565, 13.555936 ], [ 144.939501, 13.555911 ], [ 144.939461, 13.555955 ], [ 144.939475, 13.556009 ], [ 144.939405, 13.556091 ], [ 144.939404, 13.556159 ], [ 144.939379, 13.556222 ], [ 144.939343, 13.55628 ], [ 144.939343, 13.556329 ], [ 144.939322, 13.556397 ], [ 144.939287, 13.556455 ], [ 144.939232, 13.556484 ], [ 144.939138, 13.556468 ], [ 144.939093, 13.556497 ], [ 144.939092, 13.55659 ], [ 144.939101, 13.556721 ], [ 144.93912, 13.55678 ], [ 144.939154, 13.556858 ], [ 144.939089, 13.556925 ], [ 144.938999, 13.556973 ], [ 144.938904, 13.557016 ], [ 144.938809, 13.557054 ], [ 144.938684, 13.557131 ], [ 144.938444, 13.557266 ], [ 144.938339, 13.557318 ], [ 144.938254, 13.557366 ], [ 144.938209, 13.557453 ], [ 144.938203, 13.55757 ], [ 144.938212, 13.557663 ], [ 144.938236, 13.557794 ], [ 144.938269, 13.557931 ], [ 144.938288, 13.558067 ], [ 144.938322, 13.558199 ], [ 144.938365, 13.558321 ], [ 144.938504, 13.558468 ], [ 144.938627, 13.558567 ], [ 144.938709, 13.558601 ], [ 144.938733, 13.558738 ], [ 144.938732, 13.558825 ], [ 144.938771, 13.558879 ], [ 144.93879, 13.558953 ], [ 144.93876, 13.55905 ], [ 144.938749, 13.559152 ], [ 144.938758, 13.559239 ], [ 144.938793, 13.559274 ], [ 144.938802, 13.559332 ], [ 144.938777, 13.5594 ], [ 144.938741, 13.559468 ], [ 144.938605, 13.559657 ], [ 144.93859, 13.55971 ], [ 144.938564, 13.559763 ], [ 144.938574, 13.559871 ], [ 144.938568, 13.559929 ], [ 144.938548, 13.560002 ], [ 144.938522, 13.560075 ], [ 144.938507, 13.560143 ], [ 144.938486, 13.560215 ], [ 144.938511, 13.56024 ], [ 144.93853, 13.560289 ], [ 144.938495, 13.560352 ], [ 144.93843, 13.560405 ], [ 144.938394, 13.560458 ], [ 144.938369, 13.56056 ], [ 144.938368, 13.560633 ], [ 144.938374, 13.560779 ], [ 144.938368, 13.560857 ], [ 144.938413, 13.560906 ], [ 144.938452, 13.560979 ], [ 144.938565, 13.561102 ], [ 144.938625, 13.561112 ], [ 144.93868, 13.561137 ], [ 144.938694, 13.561176 ], [ 144.938684, 13.561229 ], [ 144.938668, 13.561283 ], [ 144.938657, 13.561395 ], [ 144.938607, 13.561443 ], [ 144.938572, 13.561487 ], [ 144.938562, 13.561545 ], [ 144.938576, 13.561599 ], [ 144.938606, 13.561633 ], [ 144.938625, 13.561672 ], [ 144.938615, 13.56173 ], [ 144.938559, 13.561827 ], [ 144.938544, 13.561871 ], [ 144.938543, 13.561949 ], [ 144.938578, 13.561993 ], [ 144.938652, 13.562052 ], [ 144.938716, 13.562062 ], [ 144.938805, 13.562131 ], [ 144.938815, 13.562185 ], [ 144.938859, 13.562214 ], [ 144.938909, 13.56221 ], [ 144.938963, 13.562249 ], [ 144.938963, 13.562327 ], [ 144.938982, 13.562405 ], [ 144.938962, 13.562449 ], [ 144.938946, 13.562502 ], [ 144.938966, 13.562561 ], [ 144.93901, 13.56258 ], [ 144.93907, 13.56263 ], [ 144.939109, 13.562679 ], [ 144.939167, 13.562849 ], [ 144.939196, 13.562952 ], [ 144.9392, 13.56304 ], [ 144.939215, 13.563113 ], [ 144.939204, 13.563186 ], [ 144.939184, 13.563219 ], [ 144.939174, 13.563258 ], [ 144.939228, 13.563288 ], [ 144.939238, 13.563308 ], [ 144.939238, 13.563337 ], [ 144.939222, 13.563376 ], [ 144.939192, 13.563395 ], [ 144.939207, 13.563444 ], [ 144.939236, 13.563497 ], [ 144.939266, 13.563527 ], [ 144.939315, 13.563542 ], [ 144.93934, 13.563571 ], [ 144.93936, 13.56362 ], [ 144.939359, 13.563674 ], [ 144.939368, 13.563756 ], [ 144.939408, 13.563791 ], [ 144.939407, 13.563839 ], [ 144.939397, 13.563869 ], [ 144.939412, 13.563917 ], [ 144.939436, 13.563952 ], [ 144.939476, 13.563996 ], [ 144.939456, 13.56403 ], [ 144.93945, 13.564064 ], [ 144.93945, 13.564107 ], [ 144.939464, 13.564166 ], [ 144.939514, 13.564181 ], [ 144.939539, 13.564181 ], [ 144.939559, 13.564201 ], [ 144.939538, 13.56424 ], [ 144.939493, 13.564259 ], [ 144.939453, 13.564292 ], [ 144.939428, 13.564331 ], [ 144.939408, 13.564385 ], [ 144.939402, 13.564453 ], [ 144.939436, 13.564579 ], [ 144.939475, 13.564667 ], [ 144.939514, 13.564736 ], [ 144.939549, 13.564775 ], [ 144.939542, 13.56481 ], [ 144.939583, 13.564848 ], [ 144.939596, 13.565009 ], [ 144.939641, 13.565068 ], [ 144.939684, 13.565239 ], [ 144.939718, 13.565317 ], [ 144.939737, 13.56538 ], [ 144.939796, 13.565536 ], [ 144.9398, 13.565629 ], [ 144.939828, 13.565809 ], [ 144.939857, 13.565892 ], [ 144.939956, 13.566005 ], [ 144.94007, 13.566045 ], [ 144.940125, 13.56606 ], [ 144.940139, 13.566084 ], [ 144.940134, 13.566162 ], [ 144.940118, 13.56624 ], [ 144.940112, 13.566318 ], [ 144.940077, 13.566376 ], [ 144.940017, 13.566444 ], [ 144.940007, 13.566487 ], [ 144.940141, 13.566518 ], [ 144.940175, 13.566547 ], [ 144.940214, 13.566654 ], [ 144.940209, 13.566713 ], [ 144.940173, 13.566776 ], [ 144.940148, 13.566829 ], [ 144.940122, 13.566912 ], [ 144.940122, 13.566965 ], [ 144.940111, 13.567019 ], [ 144.940116, 13.567067 ], [ 144.94014, 13.567107 ], [ 144.940161, 13.567123 ], [ 144.940215, 13.567127 ], [ 144.940275, 13.567098 ], [ 144.940305, 13.567108 ], [ 144.940299, 13.567157 ], [ 144.940306, 13.567191 ], [ 144.940415, 13.567284 ], [ 144.940395, 13.567333 ], [ 144.94033, 13.567351 ], [ 144.94027, 13.567375 ], [ 144.940294, 13.567453 ], [ 144.940303, 13.567595 ], [ 144.940307, 13.567755 ], [ 144.940305, 13.567877 ], [ 144.940325, 13.567955 ], [ 144.940404, 13.568009 ], [ 144.940517, 13.568122 ], [ 144.940572, 13.568157 ], [ 144.940616, 13.56821 ], [ 144.940661, 13.568225 ], [ 144.940765, 13.568202 ], [ 144.94083, 13.568207 ], [ 144.94086, 13.568247 ], [ 144.940859, 13.56831 ], [ 144.940873, 13.568363 ], [ 144.940933, 13.568413 ], [ 144.941022, 13.568428 ], [ 144.941141, 13.568439 ], [ 144.941206, 13.568434 ], [ 144.941237, 13.568371 ], [ 144.941316, 13.568367 ], [ 144.941381, 13.568368 ], [ 144.94139, 13.568441 ], [ 144.941305, 13.568484 ], [ 144.941295, 13.568547 ], [ 144.941329, 13.568586 ], [ 144.941453, 13.568689 ], [ 144.941467, 13.568691 ], [ 144.941493, 13.568695 ], [ 144.941557, 13.568676 ], [ 144.941602, 13.568671 ], [ 144.941677, 13.568652 ], [ 144.941756, 13.568687 ], [ 144.941811, 13.568736 ], [ 144.941875, 13.568771 ], [ 144.941909, 13.568815 ], [ 144.941964, 13.568859 ], [ 144.941963, 13.568918 ], [ 144.942032, 13.568967 ], [ 144.942052, 13.569021 ], [ 144.942041, 13.569113 ], [ 144.94206, 13.569181 ], [ 144.942159, 13.569245 ], [ 144.942373, 13.569232 ], [ 144.942413, 13.569262 ], [ 144.942408, 13.569325 ], [ 144.942397, 13.569354 ], [ 144.942427, 13.569389 ], [ 144.942462, 13.569394 ], [ 144.942512, 13.56935 ], [ 144.942567, 13.569312 ], [ 144.942607, 13.569293 ], [ 144.942637, 13.569303 ], [ 144.942726, 13.569347 ], [ 144.942781, 13.569309 ], [ 144.942801, 13.56927 ], [ 144.942846, 13.569251 ], [ 144.942906, 13.569237 ], [ 144.942961, 13.569237 ], [ 144.942985, 13.569281 ], [ 144.943004, 13.569345 ], [ 144.943009, 13.569413 ], [ 144.943028, 13.569442 ], [ 144.943083, 13.569462 ], [ 144.943083, 13.569506 ], [ 144.94316, 13.569526 ], [ 144.943234, 13.569522 ], [ 144.943349, 13.569469 ], [ 144.943414, 13.569475 ], [ 144.943592, 13.569539 ], [ 144.943666, 13.569598 ], [ 144.943706, 13.569672 ], [ 144.943785, 13.569745 ], [ 144.943894, 13.56979 ], [ 144.943983, 13.569786 ], [ 144.944047, 13.56984 ], [ 144.944131, 13.569928 ], [ 144.944151, 13.570002 ], [ 144.94421, 13.57008 ], [ 144.944294, 13.570139 ], [ 144.944343, 13.570217 ], [ 144.944447, 13.570286 ], [ 144.944486, 13.570379 ], [ 144.944559, 13.570492 ], [ 144.944593, 13.570648 ], [ 144.944642, 13.570677 ], [ 144.944722, 13.570712 ], [ 144.944806, 13.570708 ], [ 144.944846, 13.570718 ], [ 144.94489, 13.570743 ], [ 144.94492, 13.570826 ], [ 144.945004, 13.57086 ], [ 144.945038, 13.570885 ], [ 144.945093, 13.57091 ], [ 144.945112, 13.570993 ], [ 144.945116, 13.571085 ], [ 144.945086, 13.571153 ], [ 144.945006, 13.571162 ], [ 144.944966, 13.571186 ], [ 144.945015, 13.571284 ], [ 144.945074, 13.571328 ], [ 144.945129, 13.571387 ], [ 144.945153, 13.571485 ], [ 144.945247, 13.571553 ], [ 144.94545, 13.571662 ], [ 144.945549, 13.571726 ], [ 144.945628, 13.571771 ], [ 144.945802, 13.571821 ], [ 144.945857, 13.571782 ], [ 144.945837, 13.571714 ], [ 144.945917, 13.57169 ], [ 144.945972, 13.571725 ], [ 144.946025, 13.571857 ], [ 144.94605, 13.571886 ], [ 144.946105, 13.571887 ], [ 144.946125, 13.571848 ], [ 144.946204, 13.571863 ], [ 144.946249, 13.571902 ], [ 144.946273, 13.571976 ], [ 144.946247, 13.572058 ], [ 144.946247, 13.572107 ], [ 144.946281, 13.572141 ], [ 144.94641, 13.572201 ], [ 144.94644, 13.572212 ], [ 144.946485, 13.57223 ], [ 144.94652, 13.572226 ], [ 144.946574, 13.572226 ], [ 144.946639, 13.572261 ], [ 144.946723, 13.572315 ], [ 144.946737, 13.572359 ], [ 144.946732, 13.572413 ], [ 144.946697, 13.572451 ], [ 144.946677, 13.572485 ], [ 144.946701, 13.572524 ], [ 144.946825, 13.572632 ], [ 144.946918, 13.572701 ], [ 144.946913, 13.572755 ], [ 144.946888, 13.572774 ], [ 144.946863, 13.572808 ], [ 144.946877, 13.572838 ], [ 144.946927, 13.572823 ], [ 144.946958, 13.572818 ], [ 144.947022, 13.572809 ], [ 144.947106, 13.572829 ], [ 144.947166, 13.572864 ], [ 144.947188, 13.572893 ], [ 144.947168, 13.572927 ], [ 144.947131, 13.572976 ], [ 144.947113, 13.573039 ], [ 144.947128, 13.573122 ], [ 144.947144, 13.573209 ], [ 144.94722, 13.573239 ], [ 144.947262, 13.57324 ], [ 144.947281, 13.57324 ], [ 144.947342, 13.573255 ], [ 144.947388, 13.573284 ], [ 144.947344, 13.573405 ], [ 144.947388, 13.573416 ], [ 144.947495, 13.573417 ], [ 144.947556, 13.573412 ], [ 144.947571, 13.5735 ], [ 144.947556, 13.573573 ], [ 144.947601, 13.573637 ], [ 144.947586, 13.573709 ], [ 144.947571, 13.573778 ], [ 144.947662, 13.573841 ], [ 144.947662, 13.573903 ], [ 144.947662, 13.573939 ], [ 144.947693, 13.574027 ], [ 144.947708, 13.574095 ], [ 144.947708, 13.574136 ], [ 144.947708, 13.574183 ], [ 144.947754, 13.574246 ], [ 144.947785, 13.574281 ], [ 144.947815, 13.574315 ], [ 144.947952, 13.574321 ], [ 144.947998, 13.574277 ], [ 144.948074, 13.574283 ], [ 144.948135, 13.574322 ], [ 144.948135, 13.574425 ], [ 144.94809, 13.574502 ], [ 144.947998, 13.574526 ], [ 144.947952, 13.574531 ], [ 144.947906, 13.574535 ], [ 144.94783, 13.574558 ], [ 144.947861, 13.574602 ], [ 144.947937, 13.574652 ], [ 144.947998, 13.574696 ], [ 144.948013, 13.57475 ], [ 144.948135, 13.574697 ], [ 144.948288, 13.574752 ], [ 144.948288, 13.574849 ], [ 144.948181, 13.574863 ], [ 144.948105, 13.574882 ], [ 144.948135, 13.574945 ], [ 144.948181, 13.57499 ], [ 144.948181, 13.575024 ], [ 144.948187, 13.575048 ], [ 144.948196, 13.575082 ], [ 144.948318, 13.575185 ], [ 144.948364, 13.57522 ], [ 144.948441, 13.575235 ], [ 144.948532, 13.575192 ], [ 144.948547, 13.575148 ], [ 144.948608, 13.575139 ], [ 144.948639, 13.575154 ], [ 144.948654, 13.575198 ], [ 144.948669, 13.575222 ], [ 144.948715, 13.575228 ], [ 144.948746, 13.575238 ], [ 144.948746, 13.57534 ], [ 144.948822, 13.575374 ], [ 144.948837, 13.575443 ], [ 144.948868, 13.575506 ], [ 144.948929, 13.575551 ], [ 144.948914, 13.575628 ], [ 144.948868, 13.575652 ], [ 144.94886, 13.575696 ], [ 144.948853, 13.57573 ], [ 144.948868, 13.575784 ], [ 144.948914, 13.575818 ], [ 144.948975, 13.575867 ], [ 144.949036, 13.575902 ], [ 144.949051, 13.57596 ], [ 144.949081, 13.575995 ], [ 144.949188, 13.576108 ], [ 144.949234, 13.576205 ], [ 144.949245, 13.576271 ], [ 144.949249, 13.576298 ], [ 144.949341, 13.576425 ], [ 144.949341, 13.576498 ], [ 144.949387, 13.576538 ], [ 144.949417, 13.576587 ], [ 144.949509, 13.576592 ], [ 144.949524, 13.576621 ], [ 144.949524, 13.576655 ], [ 144.949448, 13.576713 ], [ 144.949463, 13.576816 ], [ 144.949463, 13.576874 ], [ 144.949539, 13.576909 ], [ 144.949585, 13.576865 ], [ 144.9496, 13.57689 ], [ 144.949615, 13.576914 ], [ 144.949615, 13.576973 ], [ 144.949646, 13.577022 ], [ 144.949722, 13.577051 ], [ 144.949768, 13.577081 ], [ 144.949708, 13.577129 ], [ 144.949661, 13.577155 ], [ 144.949661, 13.577207 ], [ 144.949677, 13.57726 ], [ 144.949707, 13.577314 ], [ 144.949722, 13.577373 ], [ 144.949783, 13.577441 ], [ 144.949814, 13.577422 ], [ 144.949832, 13.577406 ], [ 144.949875, 13.577369 ], [ 144.949905, 13.577355 ], [ 144.949921, 13.577413 ], [ 144.949921, 13.57754 ], [ 144.949936, 13.577589 ], [ 144.949936, 13.577637 ], [ 144.94989, 13.5777 ], [ 144.949844, 13.577739 ], [ 144.949875, 13.577783 ], [ 144.94986, 13.577826 ], [ 144.949905, 13.577914 ], [ 144.949951, 13.577968 ], [ 144.949997, 13.578003 ], [ 144.950027, 13.577988 ], [ 144.950027, 13.57794 ], [ 144.950054, 13.577949 ], [ 144.950089, 13.57796 ], [ 144.950104, 13.578013 ], [ 144.950165, 13.578077 ], [ 144.950226, 13.57819 ], [ 144.950226, 13.578233 ], [ 144.950195, 13.578292 ], [ 144.950195, 13.57834 ], [ 144.95021, 13.57836 ], [ 144.950333, 13.578385 ], [ 144.950348, 13.578405 ], [ 144.950333, 13.578448 ], [ 144.950287, 13.578404 ], [ 144.950263, 13.578418 ], [ 144.950237, 13.578432 ], [ 144.950226, 13.578496 ], [ 144.950226, 13.57855 ], [ 144.950241, 13.578599 ], [ 144.950256, 13.578618 ], [ 144.950302, 13.578643 ], [ 144.950348, 13.578643 ], [ 144.950363, 13.578668 ], [ 144.950378, 13.578716 ], [ 144.950394, 13.578746 ], [ 144.950409, 13.57878 ], [ 144.950409, 13.578814 ], [ 144.950439, 13.578848 ], [ 144.950455, 13.578926 ], [ 144.950439, 13.578965 ], [ 144.950363, 13.578965 ], [ 144.950317, 13.578993 ], [ 144.950317, 13.579017 ], [ 144.950317, 13.579037 ], [ 144.950333, 13.579081 ], [ 144.950317, 13.579125 ], [ 144.950241, 13.579217 ], [ 144.950272, 13.57928 ], [ 144.950272, 13.579305 ], [ 144.950211, 13.579319 ], [ 144.95015, 13.579367 ], [ 144.950119, 13.579415 ], [ 144.950119, 13.579537 ], [ 144.950165, 13.579606 ], [ 144.950195, 13.579625 ], [ 144.950256, 13.579635 ], [ 144.950264, 13.579655 ], [ 144.950272, 13.579674 ], [ 144.950317, 13.579743 ], [ 144.950348, 13.579797 ], [ 144.950409, 13.579846 ], [ 144.950424, 13.579875 ], [ 144.95047, 13.5799 ], [ 144.9505, 13.579925 ], [ 144.950485, 13.579973 ], [ 144.95047, 13.580065 ], [ 144.950485, 13.58009 ], [ 144.950485, 13.580119 ], [ 144.950409, 13.580153 ], [ 144.950378, 13.580177 ], [ 144.950362, 13.580227 ], [ 144.950363, 13.580256 ], [ 144.950363, 13.580279 ], [ 144.950363, 13.580323 ], [ 144.950333, 13.580351 ], [ 144.950317, 13.580405 ], [ 144.950302, 13.580473 ], [ 144.950317, 13.580536 ], [ 144.950333, 13.580566 ], [ 144.950378, 13.580576 ], [ 144.950409, 13.580595 ], [ 144.950409, 13.580649 ], [ 144.950404, 13.580722 ], [ 144.950378, 13.580775 ], [ 144.950348, 13.580814 ], [ 144.950302, 13.580833 ], [ 144.950287, 13.580872 ], [ 144.950299, 13.580935 ], [ 144.950348, 13.580955 ], [ 144.950409, 13.58097 ], [ 144.950485, 13.580978 ], [ 144.950531, 13.581005 ], [ 144.950516, 13.581036 ], [ 144.9505, 13.581122 ], [ 144.9505, 13.581161 ], [ 144.950577, 13.58123 ], [ 144.950623, 13.581259 ], [ 144.950623, 13.581288 ], [ 144.950607, 13.581347 ], [ 144.950623, 13.58141 ], [ 144.950623, 13.581464 ], [ 144.950668, 13.581625 ], [ 144.950714, 13.581688 ], [ 144.950745, 13.581723 ], [ 144.950714, 13.581766 ], [ 144.950714, 13.58181 ], [ 144.950729, 13.581839 ], [ 144.95076, 13.581864 ], [ 144.950729, 13.581873 ], [ 144.950706, 13.581876 ], [ 144.950684, 13.581878 ], [ 144.950638, 13.581877 ], [ 144.950607, 13.581848 ], [ 144.950577, 13.581838 ], [ 144.950531, 13.581843 ], [ 144.950485, 13.581883 ], [ 144.950485, 13.58192 ], [ 144.9505, 13.581959 ], [ 144.950516, 13.581988 ], [ 144.950546, 13.582003 ], [ 144.950562, 13.582028 ], [ 144.950577, 13.582067 ], [ 144.950562, 13.582106 ], [ 144.950592, 13.58215 ], [ 144.950592, 13.582189 ], [ 144.950607, 13.582208 ], [ 144.950638, 13.582218 ], [ 144.950653, 13.582247 ], [ 144.950623, 13.582272 ], [ 144.950592, 13.582301 ], [ 144.950577, 13.582349 ], [ 144.950577, 13.582388 ], [ 144.950623, 13.582442 ], [ 144.950607, 13.582486 ], [ 144.950627, 13.58254 ], [ 144.950653, 13.582579 ], [ 144.950684, 13.582632 ], [ 144.950699, 13.582676 ], [ 144.950699, 13.582725 ], [ 144.950714, 13.582754 ], [ 144.950668, 13.582768 ], [ 144.950638, 13.582807 ], [ 144.950653, 13.582866 ], [ 144.950668, 13.58291 ], [ 144.950684, 13.582924 ], [ 144.950714, 13.582924 ], [ 144.95076, 13.582925 ], [ 144.95076, 13.582944 ], [ 144.950775, 13.582969 ], [ 144.950775, 13.583003 ], [ 144.950745, 13.583071 ], [ 144.950729, 13.583095 ], [ 144.950775, 13.583139 ], [ 144.95079, 13.583183 ], [ 144.950806, 13.583213 ], [ 144.950806, 13.583251 ], [ 144.95079, 13.5833 ], [ 144.95076, 13.583348 ], [ 144.95076, 13.583397 ], [ 144.95076, 13.583431 ], [ 144.950745, 13.583451 ], [ 144.950714, 13.583436 ], [ 144.950684, 13.58346 ], [ 144.950668, 13.583513 ], [ 144.950684, 13.583567 ], [ 144.950729, 13.58363 ], [ 144.950775, 13.583636 ], [ 144.95076, 13.583675 ], [ 144.950806, 13.583787 ], [ 144.950867, 13.583894 ], [ 144.950882, 13.583938 ], [ 144.950882, 13.583982 ], [ 144.950851, 13.583982 ], [ 144.950867, 13.584074 ], [ 144.950882, 13.584118 ], [ 144.950928, 13.584226 ], [ 144.95096, 13.584247 ], [ 144.950989, 13.584265 ], [ 144.950974, 13.584304 ], [ 144.950989, 13.584382 ], [ 144.951004, 13.584411 ], [ 144.951019, 13.584434 ], [ 144.951035, 13.584421 ], [ 144.951035, 13.584387 ], [ 144.951065, 13.584368 ], [ 144.95108, 13.584398 ], [ 144.951096, 13.584441 ], [ 144.951096, 13.584485 ], [ 144.951111, 13.584529 ], [ 144.951141, 13.584618 ], [ 144.951202, 13.584645 ], [ 144.951248, 13.584683 ], [ 144.951248, 13.584717 ], [ 144.951218, 13.584721 ], [ 144.951202, 13.584759 ], [ 144.951187, 13.584802 ], [ 144.951202, 13.584903 ], [ 144.951248, 13.584918 ], [ 144.951294, 13.584899 ], [ 144.95134, 13.584875 ], [ 144.95137, 13.584871 ], [ 144.95139, 13.58491 ], [ 144.951416, 13.584962 ], [ 144.951401, 13.585029 ], [ 144.951355, 13.585052 ], [ 144.95134, 13.58511 ], [ 144.951341, 13.585165 ], [ 144.951279, 13.5852 ], [ 144.951248, 13.585238 ], [ 144.951248, 13.58529 ], [ 144.951263, 13.585343 ], [ 144.951279, 13.585382 ], [ 144.951294, 13.585444 ], [ 144.951324, 13.58553 ], [ 144.951355, 13.58554 ], [ 144.951401, 13.585598 ], [ 144.951416, 13.585665 ], [ 144.951416, 13.585746 ], [ 144.951447, 13.585823 ], [ 144.951477, 13.58589 ], [ 144.951508, 13.586 ], [ 144.951548, 13.586026 ], [ 144.951584, 13.586044 ], [ 144.951675, 13.586212 ], [ 144.951675, 13.586255 ], [ 144.95166, 13.586332 ], [ 144.95166, 13.58638 ], [ 144.951675, 13.586413 ], [ 144.95166, 13.58649 ], [ 144.951675, 13.586537 ], [ 144.951691, 13.586557 ], [ 144.951736, 13.586557 ], [ 144.951736, 13.5866 ], [ 144.951706, 13.586633 ], [ 144.951687, 13.586713 ], [ 144.951692, 13.586761 ], [ 144.951691, 13.586834 ], [ 144.951736, 13.586897 ], [ 144.951782, 13.586907 ], [ 144.951782, 13.586945 ], [ 144.951752, 13.586983 ], [ 144.951736, 13.58703 ], [ 144.951727, 13.587054 ], [ 144.951721, 13.587088 ], [ 144.951675, 13.587193 ], [ 144.951691, 13.587255 ], [ 144.951706, 13.587298 ], [ 144.951736, 13.587327 ], [ 144.951762, 13.587344 ], [ 144.951765, 13.587371 ], [ 144.951797, 13.587394 ], [ 144.951782, 13.587418 ], [ 144.951797, 13.587476 ], [ 144.951782, 13.587514 ], [ 144.951843, 13.587557 ], [ 144.951859, 13.587601 ], [ 144.951904, 13.587625 ], [ 144.95192, 13.587654 ], [ 144.95192, 13.587725 ], [ 144.95192, 13.587788 ], [ 144.951935, 13.587812 ], [ 144.951965, 13.587812 ], [ 144.951996, 13.587841 ], [ 144.951981, 13.587884 ], [ 144.951996, 13.587922 ], [ 144.952011, 13.58797 ], [ 144.952057, 13.588009 ], [ 144.952042, 13.588047 ], [ 144.952091, 13.588081 ], [ 144.952133, 13.588143 ], [ 144.952118, 13.5882 ], [ 144.952133, 13.588267 ], [ 144.952146, 13.588316 ], [ 144.952179, 13.588354 ], [ 144.952209, 13.588383 ], [ 144.952225, 13.588436 ], [ 144.95224, 13.588479 ], [ 144.952286, 13.588503 ], [ 144.952347, 13.588528 ], [ 144.952393, 13.588566 ], [ 144.952408, 13.588643 ], [ 144.952438, 13.588691 ], [ 144.952438, 13.588734 ], [ 144.952454, 13.588791 ], [ 144.952499, 13.588907 ], [ 144.95253, 13.588959 ], [ 144.952515, 13.588998 ], [ 144.952499, 13.58904 ], [ 144.952499, 13.589079 ], [ 144.95256, 13.589132 ], [ 144.95256, 13.589161 ], [ 144.952545, 13.589213 ], [ 144.952469, 13.589231 ], [ 144.952454, 13.589308 ], [ 144.952515, 13.589342 ], [ 144.95253, 13.589399 ], [ 144.952576, 13.589452 ], [ 144.952667, 13.589463 ], [ 144.952698, 13.589487 ], [ 144.952759, 13.589535 ], [ 144.95282, 13.58954 ], [ 144.95285, 13.589565 ], [ 144.95285, 13.589622 ], [ 144.95282, 13.589674 ], [ 144.952789, 13.589731 ], [ 144.952805, 13.589765 ], [ 144.952866, 13.589799 ], [ 144.952896, 13.589838 ], [ 144.952911, 13.589986 ], [ 144.952927, 13.590024 ], [ 144.952972, 13.590058 ], [ 144.953003, 13.590025 ], [ 144.953033, 13.590016 ], [ 144.953094, 13.590064 ], [ 144.95311, 13.590102 ], [ 144.953094, 13.590136 ], [ 144.95311, 13.59016 ], [ 144.953171, 13.590165 ], [ 144.953186, 13.590218 ], [ 144.953171, 13.590332 ], [ 144.953217, 13.590361 ], [ 144.953247, 13.590376 ], [ 144.953278, 13.59041 ], [ 144.953323, 13.590465 ], [ 144.953323, 13.590491 ], [ 144.953278, 13.590534 ], [ 144.953278, 13.590563 ], [ 144.953323, 13.590597 ], [ 144.953354, 13.590645 ], [ 144.953342, 13.590748 ], [ 144.953323, 13.590778 ], [ 144.953278, 13.590845 ], [ 144.953278, 13.590907 ], [ 144.953293, 13.590984 ], [ 144.953339, 13.591018 ], [ 144.953384, 13.591056 ], [ 144.953476, 13.591133 ], [ 144.953476, 13.591164 ], [ 144.953537, 13.591187 ], [ 144.953568, 13.591206 ], [ 144.953537, 13.591325 ], [ 144.953552, 13.591349 ], [ 144.953644, 13.591417 ], [ 144.95369, 13.591403 ], [ 144.953735, 13.591341 ], [ 144.953796, 13.591289 ], [ 144.953857, 13.591266 ], [ 144.953934, 13.591281 ], [ 144.953995, 13.591324 ], [ 144.95401, 13.591401 ], [ 144.953979, 13.591487 ], [ 144.953934, 13.591558 ], [ 144.953934, 13.591577 ], [ 144.953979, 13.591645 ], [ 144.953995, 13.591697 ], [ 144.95401, 13.591803 ], [ 144.953995, 13.591879 ], [ 144.953918, 13.592036 ], [ 144.953934, 13.592098 ], [ 144.953979, 13.592118 ], [ 144.954025, 13.592157 ], [ 144.954056, 13.592229 ], [ 144.95401, 13.592314 ], [ 144.95401, 13.592381 ], [ 144.954071, 13.592372 ], [ 144.954134, 13.592318 ], [ 144.954208, 13.592254 ], [ 144.9543, 13.592216 ], [ 144.954376, 13.592222 ], [ 144.954422, 13.59226 ], [ 144.954391, 13.592337 ], [ 144.954361, 13.592403 ], [ 144.954285, 13.592484 ], [ 144.954208, 13.592512 ], [ 144.954178, 13.592574 ], [ 144.954178, 13.592622 ], [ 144.954178, 13.592694 ], [ 144.954193, 13.592751 ], [ 144.954163, 13.592827 ], [ 144.954132, 13.592889 ], [ 144.954102, 13.592942 ], [ 144.954147, 13.592942 ], [ 144.954193, 13.592899 ], [ 144.954269, 13.592756 ], [ 144.954346, 13.592748 ], [ 144.954407, 13.592734 ], [ 144.954483, 13.592682 ], [ 144.954651, 13.592592 ], [ 144.954742, 13.592569 ], [ 144.954788, 13.592588 ], [ 144.954803, 13.592613 ], [ 144.954803, 13.592657 ], [ 144.954773, 13.592727 ], [ 144.954727, 13.59276 ], [ 144.954651, 13.592827 ], [ 144.95459, 13.592864 ], [ 144.954559, 13.592907 ], [ 144.954559, 13.592936 ], [ 144.954605, 13.59296 ], [ 144.9547, 13.592946 ], [ 144.954742, 13.592928 ], [ 144.954834, 13.592928 ], [ 144.954971, 13.592906 ], [ 144.955002, 13.592939 ], [ 144.955017, 13.593006 ], [ 144.955048, 13.59305 ], [ 144.955078, 13.593079 ], [ 144.955109, 13.593098 ], [ 144.955124, 13.593122 ], [ 144.955109, 13.593165 ], [ 144.955124, 13.593203 ], [ 144.955154, 13.593232 ], [ 144.955185, 13.593257 ], [ 144.955215, 13.593285 ], [ 144.955215, 13.593309 ], [ 144.955246, 13.593339 ], [ 144.955246, 13.593372 ], [ 144.955215, 13.593424 ], [ 144.955246, 13.593453 ], [ 144.955261, 13.593515 ], [ 144.955276, 13.593539 ], [ 144.955322, 13.593545 ], [ 144.955368, 13.593569 ], [ 144.955383, 13.593588 ], [ 144.955353, 13.593684 ], [ 144.955399, 13.593746 ], [ 144.955399, 13.59378 ], [ 144.955444, 13.593756 ], [ 144.955505, 13.593756 ], [ 144.955582, 13.593752 ], [ 144.955612, 13.593791 ], [ 144.955627, 13.593853 ], [ 144.955627, 13.593944 ], [ 144.955627, 13.593984 ], [ 144.955627, 13.594025 ], [ 144.955612, 13.594097 ], [ 144.955566, 13.59414 ], [ 144.955505, 13.594158 ], [ 144.95546, 13.59422 ], [ 144.955475, 13.594273 ], [ 144.955582, 13.594274 ], [ 144.955658, 13.594284 ], [ 144.955643, 13.594365 ], [ 144.955669, 13.594396 ], [ 144.955704, 13.594399 ], [ 144.955795, 13.594357 ], [ 144.955841, 13.5944 ], [ 144.955811, 13.594456 ], [ 144.955765, 13.594514 ], [ 144.95578, 13.594557 ], [ 144.955826, 13.594596 ], [ 144.955856, 13.594615 ], [ 144.955899, 13.594613 ], [ 144.955917, 13.594611 ], [ 144.955963, 13.594626 ], [ 144.955978, 13.59465 ], [ 144.955978, 13.594683 ], [ 144.955994, 13.594712 ], [ 144.956024, 13.594736 ], [ 144.956039, 13.594823 ], [ 144.956055, 13.594856 ], [ 144.956116, 13.594885 ], [ 144.9561, 13.594947 ], [ 144.956131, 13.595029 ], [ 144.956161, 13.595077 ], [ 144.956192, 13.595173 ], [ 144.956192, 13.59524 ], [ 144.956238, 13.595259 ], [ 144.956253, 13.595288 ], [ 144.956253, 13.595331 ], [ 144.956284, 13.595394 ], [ 144.956314, 13.595413 ], [ 144.956345, 13.595471 ], [ 144.956375, 13.595595 ], [ 144.95639, 13.5956 ], [ 144.95639, 13.595667 ], [ 144.956375, 13.59571 ], [ 144.956382, 13.595737 ], [ 144.95639, 13.595767 ], [ 144.956482, 13.595773 ], [ 144.956497, 13.595792 ], [ 144.956482, 13.595849 ], [ 144.956512, 13.595912 ], [ 144.956543, 13.595936 ], [ 144.956528, 13.595979 ], [ 144.956543, 13.596032 ], [ 144.956573, 13.596037 ], [ 144.956605, 13.596074 ], [ 144.956619, 13.596118 ], [ 144.956589, 13.596176 ], [ 144.956558, 13.596209 ], [ 144.956528, 13.596247 ], [ 144.956558, 13.59629 ], [ 144.956604, 13.59631 ], [ 144.956619, 13.596338 ], [ 144.95665, 13.596363 ], [ 144.956665, 13.596396 ], [ 144.95665, 13.596434 ], [ 144.956619, 13.596482 ], [ 144.956589, 13.596525 ], [ 144.956573, 13.596587 ], [ 144.956604, 13.596654 ], [ 144.956665, 13.596683 ], [ 144.95668, 13.596712 ], [ 144.95665, 13.596774 ], [ 144.956619, 13.596826 ], [ 144.956589, 13.596883 ], [ 144.956589, 13.59695 ], [ 144.956619, 13.597013 ], [ 144.95665, 13.597061 ], [ 144.956673, 13.597074 ], [ 144.956726, 13.597095 ], [ 144.956757, 13.597124 ], [ 144.956711, 13.597181 ], [ 144.956589, 13.597199 ], [ 144.956589, 13.597237 ], [ 144.956604, 13.597309 ], [ 144.956619, 13.597328 ], [ 144.956665, 13.597338 ], [ 144.956696, 13.597324 ], [ 144.956757, 13.597329 ], [ 144.956787, 13.59744 ], [ 144.956863, 13.597488 ], [ 144.956879, 13.597536 ], [ 144.956879, 13.597598 ], [ 144.956894, 13.597641 ], [ 144.956894, 13.59767 ], [ 144.956848, 13.59766 ], [ 144.956787, 13.597626 ], [ 144.956726, 13.59763 ], [ 144.956711, 13.597659 ], [ 144.956711, 13.597707 ], [ 144.956757, 13.597798 ], [ 144.956757, 13.597884 ], [ 144.956772, 13.597932 ], [ 144.956757, 13.597975 ], [ 144.956726, 13.597984 ], [ 144.956696, 13.598018 ], [ 144.956696, 13.598061 ], [ 144.956726, 13.59808 ], [ 144.956741, 13.59809 ], [ 144.956833, 13.59809 ], [ 144.956848, 13.598119 ], [ 144.956848, 13.598143 ], [ 144.956802, 13.598162 ], [ 144.956757, 13.598157 ], [ 144.956711, 13.598171 ], [ 144.95665, 13.598209 ], [ 144.956619, 13.598243 ], [ 144.956589, 13.598275 ], [ 144.956543, 13.598303 ], [ 144.956528, 13.598337 ], [ 144.956482, 13.598346 ], [ 144.956429, 13.598373 ], [ 144.95639, 13.598398 ], [ 144.95639, 13.598441 ], [ 144.956407, 13.598474 ], [ 144.956421, 13.598517 ], [ 144.956421, 13.598565 ], [ 144.95639, 13.598603 ], [ 144.95636, 13.598627 ], [ 144.956327, 13.598662 ], [ 144.956314, 13.598703 ], [ 144.956314, 13.598741 ], [ 144.956268, 13.59876 ], [ 144.956223, 13.598812 ], [ 144.956192, 13.59885 ], [ 144.956192, 13.598927 ], [ 144.956191, 13.59897 ], [ 144.956192, 13.598994 ], [ 144.956223, 13.599056 ], [ 144.956223, 13.599099 ], [ 144.956177, 13.599128 ], [ 144.9561, 13.599179 ], [ 144.956055, 13.599237 ], [ 144.956085, 13.599304 ], [ 144.9561, 13.599371 ], [ 144.956085, 13.599404 ], [ 144.956024, 13.599418 ], [ 144.955948, 13.599465 ], [ 144.955872, 13.599589 ], [ 144.95575, 13.599703 ], [ 144.955688, 13.599697 ], [ 144.955643, 13.599687 ], [ 144.955582, 13.599725 ], [ 144.955499, 13.599745 ], [ 144.95546, 13.599782 ], [ 144.955429, 13.59982 ], [ 144.955338, 13.599814 ], [ 144.95517, 13.599899 ], [ 144.955093, 13.599946 ], [ 144.955002, 13.599993 ], [ 144.954924, 13.600044 ], [ 144.954834, 13.60004 ], [ 144.954727, 13.600096 ], [ 144.954651, 13.600143 ], [ 144.954559, 13.600195 ], [ 144.954513, 13.60021 ], [ 144.954391, 13.60017 ], [ 144.954315, 13.600169 ], [ 144.954269, 13.600226 ], [ 144.954193, 13.600316 ], [ 144.954117, 13.600325 ], [ 144.954041, 13.600325 ], [ 144.954041, 13.600377 ], [ 144.95401, 13.600473 ], [ 144.953995, 13.60052 ], [ 144.953934, 13.600529 ], [ 144.953842, 13.600529 ], [ 144.953796, 13.600504 ], [ 144.953735, 13.600518 ], [ 144.95369, 13.600542 ], [ 144.953644, 13.600541 ], [ 144.953583, 13.600493 ], [ 144.953508, 13.600453 ], [ 144.953476, 13.600449 ], [ 144.953445, 13.600492 ], [ 144.953461, 13.600526 ], [ 144.953461, 13.600564 ], [ 144.953415, 13.600587 ], [ 144.953365, 13.600582 ], [ 144.953354, 13.600568 ], [ 144.953323, 13.600534 ], [ 144.953262, 13.600557 ], [ 144.953232, 13.600595 ], [ 144.953228, 13.600609 ], [ 144.953217, 13.600634 ], [ 144.953171, 13.600647 ], [ 144.95311, 13.600647 ], [ 144.953049, 13.60067 ], [ 144.952896, 13.600688 ], [ 144.95282, 13.600664 ], [ 144.952713, 13.600677 ], [ 144.952621, 13.600676 ], [ 144.952469, 13.600723 ], [ 144.952362, 13.600717 ], [ 144.952194, 13.600807 ], [ 144.952164, 13.600859 ], [ 144.952103, 13.600849 ], [ 144.95195, 13.600872 ], [ 144.951843, 13.600919 ], [ 144.951691, 13.600908 ], [ 144.951623, 13.600889 ], [ 144.951599, 13.600879 ], [ 144.951477, 13.600858 ], [ 144.95137, 13.600867 ], [ 144.951294, 13.6009 ], [ 144.951218, 13.600961 ], [ 144.951126, 13.600989 ], [ 144.951035, 13.600974 ], [ 144.950897, 13.600968 ], [ 144.95079, 13.600958 ], [ 144.950745, 13.600967 ], [ 144.950638, 13.600966 ], [ 144.950592, 13.600918 ], [ 144.950531, 13.600879 ], [ 144.950455, 13.600864 ], [ 144.950378, 13.600868 ], [ 144.950317, 13.600844 ], [ 144.950241, 13.600767 ], [ 144.950211, 13.600704 ], [ 144.950211, 13.600618 ], [ 144.95018, 13.600585 ], [ 144.950119, 13.600608 ], [ 144.950059, 13.60066 ], [ 144.950012, 13.600703 ], [ 144.949982, 13.600717 ], [ 144.949936, 13.600683 ], [ 144.94989, 13.600606 ], [ 144.949814, 13.600515 ], [ 144.949738, 13.600433 ], [ 144.949646, 13.600403 ], [ 144.949554, 13.600388 ], [ 144.949463, 13.600388 ], [ 144.949402, 13.600363 ], [ 144.949317, 13.600316 ], [ 144.949219, 13.600328 ], [ 144.949107, 13.600365 ], [ 144.948959, 13.600388 ], [ 144.948868, 13.60043 ], [ 144.948776, 13.600458 ], [ 144.948685, 13.600462 ], [ 144.948624, 13.600443 ], [ 144.948575, 13.600383 ], [ 144.948486, 13.600327 ], [ 144.948349, 13.600307 ], [ 144.948283, 13.6003 ], [ 144.948242, 13.600296 ], [ 144.948135, 13.600243 ], [ 144.947889, 13.600271 ], [ 144.947784, 13.600211 ], [ 144.947662, 13.600224 ], [ 144.947535, 13.600259 ], [ 144.947449, 13.600213 ], [ 144.947372, 13.600169 ], [ 144.94725, 13.600168 ], [ 144.947205, 13.600197 ], [ 144.947144, 13.600191 ], [ 144.947021, 13.600143 ], [ 144.946869, 13.600156 ], [ 144.946793, 13.600155 ], [ 144.946747, 13.600136 ], [ 144.946731, 13.600142 ], [ 144.946701, 13.600159 ], [ 144.94664, 13.600163 ], [ 144.946572, 13.600134 ], [ 144.946548, 13.600067 ], [ 144.946472, 13.600057 ], [ 144.946426, 13.600037 ], [ 144.946365, 13.60007 ], [ 144.946285, 13.60012 ], [ 144.946228, 13.600155 ], [ 144.946136, 13.600178 ], [ 144.946075, 13.600216 ], [ 144.945923, 13.6002 ], [ 144.945847, 13.600176 ], [ 144.945786, 13.600185 ], [ 144.945694, 13.600179 ], [ 144.945618, 13.600164 ], [ 144.945587, 13.600107 ], [ 144.94554, 13.600082 ], [ 144.945511, 13.600103 ], [ 144.945511, 13.600121 ], [ 144.94545, 13.60012 ], [ 144.945374, 13.600074 ], [ 144.945343, 13.600052 ], [ 144.945313, 13.599999 ], [ 144.945313, 13.599952 ], [ 144.945267, 13.599899 ], [ 144.945236, 13.599889 ], [ 144.945221, 13.599965 ], [ 144.945206, 13.600018 ], [ 144.94519, 13.600065 ], [ 144.945084, 13.600098 ], [ 144.944992, 13.600092 ], [ 144.944789, 13.600086 ], [ 144.944717, 13.600095 ], [ 144.944687, 13.600128 ], [ 144.944595, 13.600142 ], [ 144.944504, 13.600165 ], [ 144.944412, 13.600207 ], [ 144.944313, 13.600221 ], [ 144.944214, 13.600229 ], [ 144.944129, 13.60018 ], [ 144.944046, 13.600175 ], [ 144.943985, 13.600204 ], [ 144.943924, 13.600151 ], [ 144.943848, 13.600159 ], [ 144.943817, 13.600193 ], [ 144.943771, 13.600211 ], [ 144.943695, 13.600211 ], [ 144.943649, 13.600244 ], [ 144.943588, 13.600229 ], [ 144.94355, 13.600195 ], [ 144.943481, 13.600195 ], [ 144.94342, 13.600156 ], [ 144.943375, 13.600199 ], [ 144.943344, 13.600232 ], [ 144.943268, 13.600202 ], [ 144.943146, 13.600206 ], [ 144.943021, 13.600214 ], [ 144.942963, 13.600253 ], [ 144.942902, 13.600257 ], [ 144.942868, 13.600236 ], [ 144.942841, 13.600213 ], [ 144.942719, 13.600227 ], [ 144.942596, 13.600259 ], [ 144.942486, 13.600291 ], [ 144.942368, 13.600343 ], [ 144.942245, 13.600347 ], [ 144.942139, 13.60036 ], [ 144.942078, 13.600408 ], [ 144.942047, 13.600374 ], [ 144.94194, 13.600354 ], [ 144.941779, 13.60037 ], [ 144.941665, 13.60041 ], [ 144.94157, 13.600424 ], [ 144.941513, 13.600432 ], [ 144.941368, 13.600484 ], [ 144.941214, 13.600501 ], [ 144.941086, 13.600505 ], [ 144.940948, 13.600542 ], [ 144.940822, 13.60057 ], [ 144.940659, 13.600568 ], [ 144.940536, 13.600596 ], [ 144.94046, 13.600638 ], [ 144.940414, 13.600671 ], [ 144.940338, 13.600623 ], [ 144.940292, 13.600565 ], [ 144.940216, 13.600569 ], [ 144.94014, 13.600626 ], [ 144.940048, 13.600664 ], [ 144.939957, 13.600634 ], [ 144.939926, 13.600567 ], [ 144.939903, 13.600502 ], [ 144.939896, 13.600485 ], [ 144.939835, 13.600475 ], [ 144.939774, 13.60047 ], [ 144.939682, 13.600398 ], [ 144.93959, 13.600382 ], [ 144.939499, 13.600396 ], [ 144.939423, 13.600434 ], [ 144.939346, 13.600433 ], [ 144.93924, 13.600394 ], [ 144.939178, 13.600336 ], [ 144.939117, 13.600264 ], [ 144.939148, 13.600202 ], [ 144.939178, 13.600164 ], [ 144.939117, 13.600159 ], [ 144.939041, 13.600201 ], [ 144.938995, 13.600224 ], [ 144.93895, 13.600258 ], [ 144.938889, 13.600252 ], [ 144.938858, 13.600209 ], [ 144.938843, 13.600166 ], [ 144.938797, 13.600194 ], [ 144.938782, 13.600228 ], [ 144.938751, 13.600242 ], [ 144.93866, 13.600246 ], [ 144.938614, 13.600221 ], [ 144.938629, 13.600169 ], [ 144.938592, 13.600126 ], [ 144.938553, 13.600092 ], [ 144.938507, 13.600115 ], [ 144.938431, 13.600134 ], [ 144.938416, 13.600172 ], [ 144.938385, 13.60021 ], [ 144.9384, 13.600239 ], [ 144.9384, 13.600291 ], [ 144.938385, 13.60033 ], [ 144.938354, 13.600353 ], [ 144.938248, 13.600371 ], [ 144.938232, 13.600328 ], [ 144.938197, 13.600284 ], [ 144.938171, 13.600294 ], [ 144.938095, 13.600294 ], [ 144.938033, 13.600279 ], [ 144.938004, 13.600264 ], [ 144.938004, 13.600216 ], [ 144.937973, 13.600206 ], [ 144.937897, 13.600244 ], [ 144.937866, 13.600282 ], [ 144.937744, 13.6003 ], [ 144.937698, 13.600295 ], [ 144.937637, 13.60028 ], [ 144.937637, 13.600314 ], [ 144.937622, 13.600376 ], [ 144.937408, 13.600398 ], [ 144.937347, 13.600383 ], [ 144.937286, 13.600316 ], [ 144.937241, 13.600306 ], [ 144.937195, 13.600315 ], [ 144.937149, 13.600329 ], [ 144.937103, 13.600319 ], [ 144.937088, 13.600261 ], [ 144.937042, 13.600165 ], [ 144.936988, 13.600152 ], [ 144.936905, 13.600164 ], [ 144.936829, 13.600192 ], [ 144.936758, 13.600236 ], [ 144.936737, 13.600273 ], [ 144.936722, 13.600316 ], [ 144.936722, 13.600349 ], [ 144.936676, 13.600377 ], [ 144.9366, 13.600386 ], [ 144.936523, 13.60041 ], [ 144.936447, 13.600414 ], [ 144.936386, 13.600432 ], [ 144.93631, 13.60048 ], [ 144.936249, 13.600484 ], [ 144.936172, 13.600445 ], [ 144.936142, 13.600421 ], [ 144.936081, 13.600435 ], [ 144.936035, 13.600444 ], [ 144.935974, 13.600434 ], [ 144.935944, 13.600371 ], [ 144.935928, 13.600309 ], [ 144.935852, 13.600313 ], [ 144.935776, 13.600284 ], [ 144.935715, 13.600193 ], [ 144.935638, 13.600206 ], [ 144.935547, 13.600258 ], [ 144.935516, 13.60032 ], [ 144.935494, 13.600378 ], [ 144.935455, 13.600406 ], [ 144.935379, 13.600405 ], [ 144.935349, 13.600381 ], [ 144.935333, 13.6004 ], [ 144.935287, 13.600505 ], [ 144.935292, 13.600533 ], [ 144.935318, 13.600634 ], [ 144.935349, 13.600658 ], [ 144.935303, 13.600696 ], [ 144.935196, 13.600705 ], [ 144.93512, 13.60068 ], [ 144.935074, 13.600699 ], [ 144.935013, 13.600775 ], [ 144.934937, 13.600813 ], [ 144.934891, 13.600807 ], [ 144.934906, 13.600764 ], [ 144.934891, 13.60074 ], [ 144.93483, 13.60074 ], [ 144.934658, 13.600818 ], [ 144.934647, 13.600844 ], [ 144.934647, 13.600891 ], [ 144.934647, 13.60093 ], [ 144.934586, 13.600982 ], [ 144.934509, 13.601039 ], [ 144.93446, 13.601041 ], [ 144.934418, 13.601043 ], [ 144.934341, 13.601066 ], [ 144.93428, 13.601075 ], [ 144.934235, 13.60106 ], [ 144.934204, 13.601022 ], [ 144.934158, 13.601036 ], [ 144.934113, 13.601064 ], [ 144.934082, 13.601092 ], [ 144.934021, 13.601087 ], [ 144.93399, 13.601068 ], [ 144.933929, 13.601048 ], [ 144.933884, 13.601062 ], [ 144.933838, 13.60109 ], [ 144.933807, 13.601124 ], [ 144.933777, 13.601123 ], [ 144.933731, 13.601113 ], [ 144.93367, 13.601099 ], [ 144.933609, 13.601117 ], [ 144.933472, 13.601183 ], [ 144.933397, 13.601176 ], [ 144.933304, 13.601143 ], [ 144.933228, 13.601162 ], [ 144.933151, 13.601171 ], [ 144.933105, 13.601194 ], [ 144.933014, 13.601217 ], [ 144.932938, 13.601226 ], [ 144.932877, 13.601221 ], [ 144.932831, 13.601197 ], [ 144.93277, 13.601196 ], [ 144.932755, 13.60122 ], [ 144.932602, 13.601305 ], [ 144.932526, 13.601328 ], [ 144.93248, 13.601356 ], [ 144.93243, 13.601373 ], [ 144.9324, 13.601383 ], [ 144.932327, 13.601384 ], [ 144.932251, 13.601412 ], [ 144.93219, 13.601407 ], [ 144.932114, 13.60142 ], [ 144.932022, 13.601439 ], [ 144.931976, 13.601472 ], [ 144.931946, 13.60151 ], [ 144.931942, 13.601537 ], [ 144.9319, 13.601572 ], [ 144.931854, 13.601566 ], [ 144.931732, 13.601542 ], [ 144.931647, 13.601544 ], [ 144.931595, 13.601564 ], [ 144.93158, 13.601593 ], [ 144.931549, 13.601645 ], [ 144.931488, 13.601664 ], [ 144.931351, 13.601562 ], [ 144.93129, 13.601528 ], [ 144.931305, 13.601471 ], [ 144.931259, 13.601404 ], [ 144.931213, 13.60136 ], [ 144.931187, 13.601309 ], [ 144.931183, 13.601298 ], [ 144.931061, 13.601211 ], [ 144.931, 13.601201 ], [ 144.930954, 13.601219 ], [ 144.930923, 13.601224 ], [ 144.930847, 13.601195 ], [ 144.93074, 13.601179 ], [ 144.930695, 13.601126 ], [ 144.930596, 13.601102 ], [ 144.930435, 13.601005 ], [ 144.930344, 13.600961 ], [ 144.930298, 13.600889 ], [ 144.930237, 13.600817 ], [ 144.930176, 13.600744 ], [ 144.93013, 13.600744 ], [ 144.930084, 13.600772 ], [ 144.930008, 13.600772 ], [ 144.929952, 13.600737 ], [ 144.929855, 13.60066 ], [ 144.929779, 13.600598 ], [ 144.929703, 13.600525 ], [ 144.929718, 13.600458 ], [ 144.929688, 13.600425 ], [ 144.929626, 13.600424 ], [ 144.92955, 13.600371 ], [ 144.92942, 13.600303 ], [ 144.929398, 13.600317 ], [ 144.929337, 13.600374 ], [ 144.929276, 13.600402 ], [ 144.929169, 13.600425 ], [ 144.929062, 13.600419 ], [ 144.928955, 13.600409 ], [ 144.92887, 13.600374 ], [ 144.928833, 13.600351 ], [ 144.928772, 13.600312 ], [ 144.92868, 13.600273 ], [ 144.928589, 13.600239 ], [ 144.928528, 13.600229 ], [ 144.928467, 13.600257 ], [ 144.928391, 13.600232 ], [ 144.928314, 13.600174 ], [ 144.928284, 13.600102 ], [ 144.928207, 13.600078 ], [ 144.92807, 13.600076 ], [ 144.928009, 13.600042 ], [ 144.927933, 13.600018 ], [ 144.927811, 13.600084 ], [ 144.927658, 13.600078 ], [ 144.927517, 13.600056 ], [ 144.927261, 13.600055 ], [ 144.927124, 13.60003 ], [ 144.927002, 13.600087 ], [ 144.926697, 13.600151 ], [ 144.926514, 13.600255 ], [ 144.926453, 13.600307 ], [ 144.926346, 13.600363 ], [ 144.926236, 13.600385 ], [ 144.926163, 13.600352 ], [ 144.926071, 13.600337 ], [ 144.925964, 13.600365 ], [ 144.925919, 13.600412 ], [ 144.925888, 13.600498 ], [ 144.925858, 13.60057 ], [ 144.925797, 13.600593 ], [ 144.92569, 13.600564 ], [ 144.925658, 13.600498 ], [ 144.925613, 13.6004 ], [ 144.925507, 13.60038 ], [ 144.925415, 13.600403 ], [ 144.925323, 13.60045 ], [ 144.925262, 13.600493 ], [ 144.925201, 13.600493 ], [ 144.925125, 13.600454 ], [ 144.925064, 13.600477 ], [ 144.925003, 13.600572 ], [ 144.924957, 13.600644 ], [ 144.924896, 13.600676 ], [ 144.92482, 13.600676 ], [ 144.924756, 13.600648 ], [ 144.924713, 13.600608 ], [ 144.924667, 13.600622 ], [ 144.924637, 13.600665 ], [ 144.924561, 13.600731 ], [ 144.924464, 13.600733 ], [ 144.924332, 13.600734 ], [ 144.924286, 13.600714 ], [ 144.924255, 13.600666 ], [ 144.92421, 13.600642 ], [ 144.924149, 13.600656 ], [ 144.924042, 13.6007 ], [ 144.924042, 13.600746 ], [ 144.924011, 13.600808 ], [ 144.923947, 13.600835 ], [ 144.923901, 13.600844 ], [ 144.923767, 13.600868 ], [ 144.923508, 13.600909 ], [ 144.923462, 13.600904 ], [ 144.923386, 13.600855 ], [ 144.923309, 13.600831 ], [ 144.923187, 13.600825 ], [ 144.923004, 13.60089 ], [ 144.922928, 13.600942 ], [ 144.922882, 13.601014 ], [ 144.922852, 13.601071 ], [ 144.922803, 13.601122 ], [ 144.922738, 13.601158 ], [ 144.922684, 13.601174 ], [ 144.922623, 13.601179 ], [ 144.922562, 13.601164 ], [ 144.922501, 13.601178 ], [ 144.922455, 13.60122 ], [ 144.92244, 13.601249 ], [ 144.922318, 13.601281 ], [ 144.922203, 13.601275 ], [ 144.922157, 13.601272 ], [ 144.922012, 13.601288 ], [ 144.921875, 13.601359 ], [ 144.921768, 13.601401 ], [ 144.921387, 13.601479 ], [ 144.921158, 13.601535 ], [ 144.920924, 13.601565 ], [ 144.920715, 13.601636 ], [ 144.920456, 13.601668 ], [ 144.920362, 13.601687 ], [ 144.92009, 13.601746 ], [ 144.919952, 13.601793 ], [ 144.919815, 13.601834 ], [ 144.919754, 13.601805 ], [ 144.919617, 13.601847 ], [ 144.919509, 13.601895 ], [ 144.919357, 13.601883 ], [ 144.919266, 13.601897 ], [ 144.919174, 13.601925 ], [ 144.919083, 13.601976 ], [ 144.918993, 13.602028 ], [ 144.918869, 13.602046 ], [ 144.918762, 13.60206 ], [ 144.91864, 13.602045 ], [ 144.918488, 13.602048 ], [ 144.918411, 13.602071 ], [ 144.918304, 13.602137 ], [ 144.918182, 13.602203 ], [ 144.918091, 13.602231 ], [ 144.917969, 13.602278 ], [ 144.91777, 13.602324 ], [ 144.917679, 13.602366 ], [ 144.917542, 13.602365 ], [ 144.917465, 13.602369 ], [ 144.917419, 13.602402 ], [ 144.917343, 13.602464 ], [ 144.917313, 13.602447 ], [ 144.917297, 13.602435 ], [ 144.917114, 13.602424 ], [ 144.917007, 13.602471 ], [ 144.916934, 13.602531 ], [ 144.91684, 13.60257 ], [ 144.916794, 13.602531 ], [ 144.916718, 13.602502 ], [ 144.916611, 13.60253 ], [ 144.91655, 13.602567 ], [ 144.916489, 13.602615 ], [ 144.916428, 13.602652 ], [ 144.916297, 13.602672 ], [ 144.91626, 13.60268 ], [ 144.916229, 13.602727 ], [ 144.916153, 13.60277 ], [ 144.916046, 13.602774 ], [ 144.915939, 13.602725 ], [ 144.915909, 13.602696 ], [ 144.915817, 13.602671 ], [ 144.91571, 13.602675 ], [ 144.915573, 13.602693 ], [ 144.915466, 13.602721 ], [ 144.915314, 13.602772 ], [ 144.915207, 13.602819 ], [ 144.915131, 13.602862 ], [ 144.915085, 13.602895 ], [ 144.915024, 13.602899 ], [ 144.914871, 13.602898 ], [ 144.914718, 13.602937 ], [ 144.914597, 13.602962 ], [ 144.914474, 13.603019 ], [ 144.914213, 13.603193 ], [ 144.914154, 13.603265 ], [ 144.914063, 13.603269 ], [ 144.913985, 13.603305 ], [ 144.913887, 13.603325 ], [ 144.913834, 13.603362 ], [ 144.913712, 13.603423 ], [ 144.913498, 13.603479 ], [ 144.913437, 13.60355 ], [ 144.913345, 13.603588 ], [ 144.913239, 13.603587 ], [ 144.912994, 13.603695 ], [ 144.912888, 13.60378 ], [ 144.912842, 13.603832 ], [ 144.912842, 13.603909 ], [ 144.912827, 13.603985 ], [ 144.912796, 13.604018 ], [ 144.91272, 13.604027 ], [ 144.912643, 13.603993 ], [ 144.912521, 13.603925 ], [ 144.91243, 13.603925 ], [ 144.912317, 13.603958 ], [ 144.912214, 13.603983 ], [ 144.91214, 13.604046 ], [ 144.912079, 13.604122 ], [ 144.911911, 13.604217 ], [ 144.911804, 13.604264 ], [ 144.911728, 13.604258 ], [ 144.911606, 13.604243 ], [ 144.91156, 13.604218 ], [ 144.911484, 13.604227 ], [ 144.911407, 13.60426 ], [ 144.911377, 13.604293 ], [ 144.911301, 13.60435 ], [ 144.911179, 13.604387 ], [ 144.910995, 13.604438 ], [ 144.910919, 13.604438 ], [ 144.910858, 13.604485 ], [ 144.910843, 13.604519 ], [ 144.910767, 13.604546 ], [ 144.91066, 13.604584 ], [ 144.910553, 13.604597 ], [ 144.910492, 13.604578 ], [ 144.91045, 13.604564 ], [ 144.910416, 13.604553 ], [ 144.910355, 13.604567 ], [ 144.910278, 13.604595 ], [ 144.91008, 13.604723 ], [ 144.910019, 13.604736 ], [ 144.909958, 13.604698 ], [ 144.909912, 13.604692 ], [ 144.909561, 13.60479 ], [ 144.90947, 13.604861 ], [ 144.909363, 13.604903 ], [ 144.909256, 13.60494 ], [ 144.909189, 13.604958 ], [ 144.909158, 13.60499 ], [ 144.909103, 13.605044 ], [ 144.908981, 13.605077 ], [ 144.908844, 13.605104 ], [ 144.908753, 13.605135 ], [ 144.908691, 13.605156 ], [ 144.908539, 13.605216 ], [ 144.908371, 13.605239 ], [ 144.908325, 13.605219 ], [ 144.908229, 13.605153 ], [ 144.908127, 13.60518 ], [ 144.908005, 13.60526 ], [ 144.907852, 13.605316 ], [ 144.907735, 13.605387 ], [ 144.907686, 13.605415 ], [ 144.907519, 13.605547 ], [ 144.907438, 13.605636 ], [ 144.907395, 13.605685 ], [ 144.907277, 13.605799 ], [ 144.907105, 13.605879 ], [ 144.906894, 13.605963 ], [ 144.906555, 13.606118 ], [ 144.906417, 13.606175 ], [ 144.90632, 13.606216 ], [ 144.906202, 13.606301 ], [ 144.906113, 13.606406 ], [ 144.90598, 13.606467 ], [ 144.905952, 13.606489 ], [ 144.905852, 13.606571 ], [ 144.905725, 13.606728 ], [ 144.905625, 13.606851 ], [ 144.90559, 13.606896 ], [ 144.905541, 13.606961 ], [ 144.9055, 13.607053 ], [ 144.905486, 13.607084 ], [ 144.905475, 13.607199 ], [ 144.905421, 13.6075 ], [ 144.905376, 13.607629 ], [ 144.905278, 13.607671 ], [ 144.905218, 13.607771 ], [ 144.905153, 13.607928 ], [ 144.905098, 13.608081 ], [ 144.905078, 13.608219 ], [ 144.905033, 13.608314 ], [ 144.904992, 13.608438 ], [ 144.904947, 13.608591 ], [ 144.904926, 13.608734 ], [ 144.904915, 13.608902 ], [ 144.904924, 13.608964 ], [ 144.904953, 13.609026 ], [ 144.904942, 13.609155 ], [ 144.904911, 13.609308 ], [ 144.9049, 13.609499 ], [ 144.904906, 13.609662 ], [ 144.904842, 13.609738 ], [ 144.904826, 13.609862 ], [ 144.90479, 13.610005 ], [ 144.90478, 13.610134 ], [ 144.904778, 13.610278 ], [ 144.904836, 13.610359 ], [ 144.904889, 13.610451 ], [ 144.904913, 13.610527 ], [ 144.904907, 13.610647 ], [ 144.904877, 13.610752 ], [ 144.904813, 13.610799 ], [ 144.904739, 13.610827 ], [ 144.904705, 13.610865 ], [ 144.904704, 13.610908 ], [ 144.904763, 13.610942 ], [ 144.904796, 13.611019 ], [ 144.90481, 13.61111 ], [ 144.904806, 13.611126 ], [ 144.904795, 13.611182 ], [ 144.904716, 13.611257 ], [ 144.904686, 13.611295 ], [ 144.904725, 13.611324 ], [ 144.904705, 13.611391 ], [ 144.904655, 13.611463 ], [ 144.904576, 13.611543 ], [ 144.904546, 13.611672 ], [ 144.904506, 13.611777 ], [ 144.904498, 13.611901 ], [ 144.904462, 13.612068 ], [ 144.904426, 13.612202 ], [ 144.90443, 13.612341 ], [ 144.90442, 13.612417 ], [ 144.90435, 13.612502 ], [ 144.90431, 13.612636 ], [ 144.90426, 13.612765 ], [ 144.904166, 13.612912 ], [ 144.904126, 13.612988 ], [ 144.904013, 13.613097 ], [ 144.903953, 13.613173 ], [ 144.903953, 13.613221 ], [ 144.903967, 13.613327 ], [ 144.903981, 13.613394 ], [ 144.903956, 13.613484 ], [ 144.903921, 13.613541 ], [ 144.903856, 13.613632 ], [ 144.903797, 13.613684 ], [ 144.903807, 13.613722 ], [ 144.903801, 13.613808 ], [ 144.903761, 13.613899 ], [ 144.903683, 13.613955 ], [ 144.903628, 13.614046 ], [ 144.903573, 13.614184 ], [ 144.903518, 13.614356 ], [ 144.903432, 13.614685 ], [ 144.903377, 13.614818 ], [ 144.903327, 13.614909 ], [ 144.903223, 13.615042 ], [ 144.903089, 13.615256 ], [ 144.90301, 13.615356 ], [ 144.902956, 13.615403 ], [ 144.90296, 13.615484 ], [ 144.90294, 13.615522 ], [ 144.902911, 13.615562 ], [ 144.902924, 13.615575 ], [ 144.902946, 13.615632 ], [ 144.902897, 13.61567 ], [ 144.902901, 13.615718 ], [ 144.902915, 13.615756 ], [ 144.902856, 13.615775 ], [ 144.902846, 13.615832 ], [ 144.902752, 13.615994 ], [ 144.902653, 13.616132 ], [ 144.902652, 13.616189 ], [ 144.902621, 13.616371 ], [ 144.902538, 13.616427 ], [ 144.902503, 13.616494 ], [ 144.902493, 13.616566 ], [ 144.902434, 13.616613 ], [ 144.902401, 13.616708 ], [ 144.902297, 13.616889 ], [ 144.902276, 13.616975 ], [ 144.902266, 13.617047 ], [ 144.90226, 13.617157 ], [ 144.902122, 13.617237 ], [ 144.902053, 13.617322 ], [ 144.902013, 13.617408 ], [ 144.901944, 13.617513 ], [ 144.901856, 13.617545 ], [ 144.901733, 13.617602 ], [ 144.901669, 13.617616 ], [ 144.901634, 13.617716 ], [ 144.901648, 13.617792 ], [ 144.901614, 13.617835 ], [ 144.901554, 13.617901 ], [ 144.901505, 13.617963 ], [ 144.901457, 13.618073 ], [ 144.901437, 13.618178 ], [ 144.901313, 13.618349 ], [ 144.901273, 13.618454 ], [ 144.901209, 13.618568 ], [ 144.901173, 13.618683 ], [ 144.901098, 13.618868 ], [ 144.901068, 13.618969 ], [ 144.901092, 13.619055 ], [ 144.901076, 13.619146 ], [ 144.900939, 13.619221 ], [ 144.900899, 13.619307 ], [ 144.900874, 13.619388 ], [ 144.900837, 13.619421 ], [ 144.900787, 13.619478 ], [ 144.900704, 13.619539 ], [ 144.900654, 13.619601 ], [ 144.90062, 13.619673 ], [ 144.900619, 13.619716 ], [ 144.900579, 13.619782 ], [ 144.900511, 13.619829 ], [ 144.900451, 13.619877 ], [ 144.900378, 13.619905 ], [ 144.90029, 13.619914 ], [ 144.900226, 13.619951 ], [ 144.900186, 13.620004 ], [ 144.900161, 13.620056 ], [ 144.900176, 13.620094 ], [ 144.900043, 13.620132 ], [ 144.900014, 13.62015 ], [ 144.900008, 13.620227 ], [ 144.899988, 13.620265 ], [ 144.899954, 13.620317 ], [ 144.899943, 13.620403 ], [ 144.899859, 13.620527 ], [ 144.899844, 13.620598 ], [ 144.899719, 13.620908 ], [ 144.899664, 13.621027 ], [ 144.899605, 13.621113 ], [ 144.899589, 13.621151 ], [ 144.899535, 13.621218 ], [ 144.899481, 13.621255 ], [ 144.899407, 13.621283 ], [ 144.899373, 13.621312 ], [ 144.899382, 13.621407 ], [ 144.899303, 13.621436 ], [ 144.899254, 13.621478 ], [ 144.899229, 13.621531 ], [ 144.899209, 13.621588 ], [ 144.89917, 13.621645 ], [ 144.899144, 13.621731 ], [ 144.899154, 13.621793 ], [ 144.899207, 13.621851 ], [ 144.899211, 13.621877 ], [ 144.899309, 13.621919 ], [ 144.899406, 13.621991 ], [ 144.89941, 13.622049 ], [ 144.899402, 13.622057 ], [ 144.899376, 13.622086 ], [ 144.899307, 13.62211 ], [ 144.899243, 13.622152 ], [ 144.899194, 13.622248 ], [ 144.899169, 13.622271 ], [ 144.8991, 13.622295 ], [ 144.899061, 13.622332 ], [ 144.898992, 13.622413 ], [ 144.898918, 13.622489 ], [ 144.898805, 13.622546 ], [ 144.898696, 13.622631 ], [ 144.898617, 13.622721 ], [ 144.898529, 13.622811 ], [ 144.898425, 13.622901 ], [ 144.898319, 13.623005 ], [ 144.898216, 13.623095 ], [ 144.898058, 13.623261 ], [ 144.897909, 13.623432 ], [ 144.897702, 13.623636 ], [ 144.897599, 13.623712 ], [ 144.897229, 13.624072 ], [ 144.897087, 13.624157 ], [ 144.896988, 13.624247 ], [ 144.896892, 13.624342 ], [ 144.896774, 13.624436 ], [ 144.89665, 13.624569 ], [ 144.896586, 13.624621 ], [ 144.896517, 13.624702 ], [ 144.896507, 13.624778 ], [ 144.896452, 13.624835 ], [ 144.896422, 13.624892 ], [ 144.896339, 13.624959 ], [ 144.89626, 13.625044 ], [ 144.896235, 13.625084 ], [ 144.89619, 13.625154 ], [ 144.896094, 13.625242 ], [ 144.896042, 13.625291 ], [ 144.895988, 13.625367 ], [ 144.895948, 13.625438 ], [ 144.895894, 13.625519 ], [ 144.895785, 13.625657 ], [ 144.895733, 13.625768 ], [ 144.895725, 13.625786 ], [ 144.895621, 13.625919 ], [ 144.895607, 13.625941 ], [ 144.895557, 13.626018 ], [ 144.895532, 13.6261 ], [ 144.895507, 13.626161 ], [ 144.895438, 13.626233 ], [ 144.895373, 13.626294 ], [ 144.895304, 13.62637 ], [ 144.895152, 13.626493 ], [ 144.895058, 13.626545 ], [ 144.894979, 13.626611 ], [ 144.89494, 13.626668 ], [ 144.8949, 13.626754 ], [ 144.894846, 13.626811 ], [ 144.894791, 13.626858 ], [ 144.894693, 13.626968 ], [ 144.894673, 13.627006 ], [ 144.894648, 13.627072 ], [ 144.894589, 13.627134 ], [ 144.894471, 13.6272 ], [ 144.894407, 13.627204 ], [ 144.894343, 13.627261 ], [ 144.894303, 13.627309 ], [ 144.894293, 13.62738 ], [ 144.894263, 13.627466 ], [ 144.894218, 13.627528 ], [ 144.894204, 13.627542 ], [ 144.89415, 13.627556 ], [ 144.8941, 13.627594 ], [ 144.89409, 13.627641 ], [ 144.894056, 13.627699 ], [ 144.894011, 13.627746 ], [ 144.893903, 13.627817 ], [ 144.893868, 13.627917 ], [ 144.893754, 13.62805 ], [ 144.893656, 13.628121 ], [ 144.893606, 13.628183 ], [ 144.893596, 13.628197 ], [ 144.893542, 13.628225 ], [ 144.893503, 13.628273 ], [ 144.893488, 13.628335 ], [ 144.893379, 13.628477 ], [ 144.893305, 13.628539 ], [ 144.893226, 13.628576 ], [ 144.893089, 13.628623 ], [ 144.893064, 13.628651 ], [ 144.892966, 13.628703 ], [ 144.892882, 13.628769 ], [ 144.892784, 13.628835 ], [ 144.892676, 13.628916 ], [ 144.892597, 13.628963 ], [ 144.892435, 13.6291 ], [ 144.89239, 13.629124 ], [ 144.892317, 13.629152 ], [ 144.892277, 13.62918 ], [ 144.892209, 13.629213 ], [ 144.892115, 13.62927 ], [ 144.892066, 13.629284 ], [ 144.891983, 13.629293 ], [ 144.891914, 13.629311 ], [ 144.891821, 13.629353 ], [ 144.891777, 13.629401 ], [ 144.89172, 13.629439 ], [ 144.891629, 13.629543 ], [ 144.891545, 13.629662 ], [ 144.891433, 13.6298 ], [ 144.891216, 13.630013 ], [ 144.890994, 13.63025 ], [ 144.890905, 13.630335 ], [ 144.890856, 13.630392 ], [ 144.890787, 13.63043 ], [ 144.890723, 13.630487 ], [ 144.890698, 13.630549 ], [ 144.890668, 13.630587 ], [ 144.890629, 13.630606 ], [ 144.89055, 13.630701 ], [ 144.890496, 13.630748 ], [ 144.890466, 13.630767 ], [ 144.890393, 13.6308 ], [ 144.890343, 13.630842 ], [ 144.890294, 13.630894 ], [ 144.89021, 13.631023 ], [ 144.890146, 13.631099 ], [ 144.890059, 13.631179 ], [ 144.889961, 13.631289 ], [ 144.889906, 13.631369 ], [ 144.889871, 13.631446 ], [ 144.889743, 13.631602 ], [ 144.889693, 13.631683 ], [ 144.889648, 13.631769 ], [ 144.889594, 13.631855 ], [ 144.889471, 13.631968 ], [ 144.889401, 13.632068 ], [ 144.889351, 13.632173 ], [ 144.889321, 13.632268 ], [ 144.889281, 13.632335 ], [ 144.889211, 13.632506 ], [ 144.889147, 13.632621 ], [ 144.889063, 13.632759 ], [ 144.888978, 13.632882 ], [ 144.888904, 13.633011 ], [ 144.888835, 13.633101 ], [ 144.88877, 13.633177 ], [ 144.888633, 13.633281 ], [ 144.888588, 13.633343 ], [ 144.888563, 13.633409 ], [ 144.888518, 13.633476 ], [ 144.888479, 13.633547 ], [ 144.888443, 13.633662 ], [ 144.888424, 13.633656 ], [ 144.888418, 13.633673 ], [ 144.8883, 13.633876 ], [ 144.888196, 13.634009 ], [ 144.887961, 13.634294 ], [ 144.887882, 13.634374 ], [ 144.887803, 13.634479 ], [ 144.887783, 13.634536 ], [ 144.887728, 13.634617 ], [ 144.887653, 13.634798 ], [ 144.887604, 13.63486 ], [ 144.887564, 13.63495 ], [ 144.887554, 13.634958 ], [ 144.887505, 13.634998 ], [ 144.887396, 13.635097 ], [ 144.887322, 13.635192 ], [ 144.887249, 13.635211 ], [ 144.887185, 13.635263 ], [ 144.887135, 13.63532 ], [ 144.887101, 13.635372 ], [ 144.887019, 13.635443 ], [ 144.886935, 13.635538 ], [ 144.886851, 13.635671 ], [ 144.886806, 13.635757 ], [ 144.886801, 13.635824 ], [ 144.886771, 13.635833 ], [ 144.886707, 13.63589 ], [ 144.886628, 13.635985 ], [ 144.886608, 13.636056 ], [ 144.886553, 13.636161 ], [ 144.88645, 13.636285 ], [ 144.886355, 13.636422 ], [ 144.886222, 13.636598 ], [ 144.886206, 13.636703 ], [ 144.886139, 13.636784 ], [ 144.886055, 13.636898 ], [ 144.885877, 13.63716 ], [ 144.885702, 13.637384 ], [ 144.885669, 13.637426 ], [ 144.885536, 13.637577 ], [ 144.885422, 13.637734 ], [ 144.885333, 13.637848 ], [ 144.885195, 13.638015 ], [ 144.885088, 13.638167 ], [ 144.884985, 13.638271 ], [ 144.884905, 13.63839 ], [ 144.884802, 13.638508 ], [ 144.884728, 13.63857 ], [ 144.884619, 13.63867 ], [ 144.884535, 13.638784 ], [ 144.884475, 13.638893 ], [ 144.884411, 13.63895 ], [ 144.884396, 13.639026 ], [ 144.884371, 13.639107 ], [ 144.884326, 13.639183 ], [ 144.884262, 13.639269 ], [ 144.884178, 13.639359 ], [ 144.884113, 13.639469 ], [ 144.884002, 13.639606 ], [ 144.883938, 13.639706 ], [ 144.883859, 13.639796 ], [ 144.883705, 13.64001 ], [ 144.883616, 13.640172 ], [ 144.883507, 13.6403 ], [ 144.883418, 13.640414 ], [ 144.883319, 13.640519 ], [ 144.883186, 13.640694 ], [ 144.88316, 13.640785 ], [ 144.88312, 13.640871 ], [ 144.883061, 13.640928 ], [ 144.882997, 13.641018 ], [ 144.882922, 13.641142 ], [ 144.882883, 13.641189 ], [ 144.882882, 13.641209 ], [ 144.882781, 13.641344 ], [ 144.882673, 13.641467 ], [ 144.882608, 13.641577 ], [ 144.882519, 13.641691 ], [ 144.88243, 13.641795 ], [ 144.882341, 13.64189 ], [ 144.882233, 13.642018 ], [ 144.882197, 13.642109 ], [ 144.88195, 13.642398 ], [ 144.881837, 13.642502 ], [ 144.88175, 13.642636 ], [ 144.881597, 13.642835 ], [ 144.881518, 13.642916 ], [ 144.881449, 13.643006 ], [ 144.881385, 13.643068 ], [ 144.881328, 13.643095 ], [ 144.881316, 13.643101 ], [ 144.881148, 13.643266 ], [ 144.881088, 13.643376 ], [ 144.880965, 13.643494 ], [ 144.880906, 13.64357 ], [ 144.880708, 13.643784 ], [ 144.880615, 13.643874 ], [ 144.880582, 13.643922 ], [ 144.880602, 13.643936 ], [ 144.880616, 13.643979 ], [ 144.880596, 13.644003 ], [ 144.880542, 13.644012 ], [ 144.880527, 13.644043 ], [ 144.880513, 13.644055 ], [ 144.880474, 13.644055 ], [ 144.880444, 13.644069 ], [ 144.880429, 13.644092 ], [ 144.880424, 13.644115 ], [ 144.880414, 13.644131 ], [ 144.880385, 13.64413 ], [ 144.880351, 13.644135 ], [ 144.880345, 13.644173 ], [ 144.880355, 13.644226 ], [ 144.88035, 13.644245 ], [ 144.88031, 13.644264 ], [ 144.880296, 13.644283 ], [ 144.880305, 13.644307 ], [ 144.88026, 13.644378 ], [ 144.880226, 13.644373 ], [ 144.880212, 13.644354 ], [ 144.880188, 13.644334 ], [ 144.880163, 13.644344 ], [ 144.880148, 13.644367 ], [ 144.880138, 13.644396 ], [ 144.880109, 13.644405 ], [ 144.880089, 13.644381 ], [ 144.880055, 13.644371 ], [ 144.880011, 13.644385 ], [ 144.879952, 13.644457 ], [ 144.879942, 13.644485 ], [ 144.879912, 13.644518 ], [ 144.879917, 13.644566 ], [ 144.879911, 13.644585 ], [ 144.879892, 13.644604 ], [ 144.879911, 13.644643 ], [ 144.879925, 13.644662 ], [ 144.87992, 13.644686 ], [ 144.879876, 13.6447 ], [ 144.879813, 13.644704 ], [ 144.879769, 13.644699 ], [ 144.87972, 13.644713 ], [ 144.879675, 13.644732 ], [ 144.879656, 13.64477 ], [ 144.879538, 13.644797 ], [ 144.879523, 13.644845 ], [ 144.879493, 13.644878 ], [ 144.879478, 13.644921 ], [ 144.879449, 13.644935 ], [ 144.879419, 13.644935 ], [ 144.879385, 13.644959 ], [ 144.879389, 13.645002 ], [ 144.879428, 13.645031 ], [ 144.879443, 13.645069 ], [ 144.879442, 13.645126 ], [ 144.879408, 13.645164 ], [ 144.87919, 13.645206 ], [ 144.879106, 13.645205 ], [ 144.879072, 13.645252 ], [ 144.879057, 13.645305 ], [ 144.879056, 13.645367 ], [ 144.879041, 13.645429 ], [ 144.878992, 13.645438 ], [ 144.878943, 13.645452 ], [ 144.878889, 13.645499 ], [ 144.878874, 13.645528 ], [ 144.878873, 13.645562 ], [ 144.878859, 13.645585 ], [ 144.878824, 13.645623 ], [ 144.878804, 13.645671 ], [ 144.878814, 13.6457 ], [ 144.878799, 13.645733 ], [ 144.87874, 13.645733 ], [ 144.878686, 13.645722 ], [ 144.878662, 13.645703 ], [ 144.878642, 13.645746 ], [ 144.878598, 13.645789 ], [ 144.878514, 13.645817 ], [ 144.87846, 13.64585 ], [ 144.87844, 13.645878 ], [ 144.878425, 13.645916 ], [ 144.878386, 13.645945 ], [ 144.878298, 13.645992 ], [ 144.878253, 13.646006 ], [ 144.878214, 13.646034 ], [ 144.87817, 13.646029 ], [ 144.878131, 13.646033 ], [ 144.878116, 13.646052 ], [ 144.878111, 13.646114 ], [ 144.878081, 13.646138 ], [ 144.878037, 13.646133 ], [ 144.877978, 13.646137 ], [ 144.877924, 13.646175 ], [ 144.877899, 13.646227 ], [ 144.877894, 13.64628 ], [ 144.877869, 13.646318 ], [ 144.877825, 13.646299 ], [ 144.877796, 13.646279 ], [ 144.877757, 13.646303 ], [ 144.877727, 13.646331 ], [ 144.877712, 13.64636 ], [ 144.877678, 13.646393 ], [ 144.877663, 13.646421 ], [ 144.87765, 13.64646 ], [ 144.877621, 13.646512 ], [ 144.877576, 13.646526 ], [ 144.877562, 13.646507 ], [ 144.877518, 13.646525 ], [ 144.877508, 13.646559 ], [ 144.877469, 13.646558 ], [ 144.877395, 13.646582 ], [ 144.87738, 13.646606 ], [ 144.877356, 13.64662 ], [ 144.877307, 13.646591 ], [ 144.877288, 13.646557 ], [ 144.877228, 13.646609 ], [ 144.877238, 13.646647 ], [ 144.877228, 13.646671 ], [ 144.877189, 13.64669 ], [ 144.877125, 13.646694 ], [ 144.877086, 13.646689 ], [ 144.877037, 13.646689 ], [ 144.876978, 13.646698 ], [ 144.877017, 13.646755 ], [ 144.876958, 13.646836 ], [ 144.876904, 13.646836 ], [ 144.876864, 13.646859 ], [ 144.876835, 13.646888 ], [ 144.876815, 13.646926 ], [ 144.876746, 13.646935 ], [ 144.876697, 13.646973 ], [ 144.876628, 13.64701 ], [ 144.876589, 13.647044 ], [ 144.876535, 13.647057 ], [ 144.876481, 13.647047 ], [ 144.876461, 13.647081 ], [ 144.876451, 13.647124 ], [ 144.876431, 13.647162 ], [ 144.876362, 13.647214 ], [ 144.876299, 13.647232 ], [ 144.87626, 13.647227 ], [ 144.87623, 13.647241 ], [ 144.876176, 13.647279 ], [ 144.876108, 13.647255 ], [ 144.876083, 13.647293 ], [ 144.876034, 13.647321 ], [ 144.876, 13.647311 ], [ 144.87597, 13.647316 ], [ 144.875956, 13.647339 ], [ 144.875955, 13.647382 ], [ 144.87593, 13.64742 ], [ 144.875881, 13.64742 ], [ 144.87584, 13.647378 ], [ 144.875797, 13.647411 ], [ 144.875748, 13.647392 ], [ 144.875749, 13.647363 ], [ 144.875705, 13.647339 ], [ 144.87568, 13.647396 ], [ 144.875636, 13.6474 ], [ 144.875626, 13.647352 ], [ 144.875582, 13.647366 ], [ 144.875533, 13.647418 ], [ 144.875503, 13.647456 ], [ 144.875449, 13.647485 ], [ 144.875449, 13.647556 ], [ 144.8754, 13.647551 ], [ 144.875341, 13.647565 ], [ 144.875272, 13.647607 ], [ 144.875223, 13.647617 ], [ 144.875189, 13.647616 ], [ 144.87513, 13.647649 ], [ 144.87513, 13.647688 ], [ 144.875086, 13.647682 ], [ 144.875046, 13.64772 ], [ 144.874923, 13.647801 ], [ 144.874894, 13.647839 ], [ 144.874741, 13.647938 ], [ 144.874687, 13.648004 ], [ 144.874593, 13.648061 ], [ 144.874534, 13.648103 ], [ 144.87447, 13.648165 ], [ 144.87432, 13.648326 ], [ 144.874261, 13.64835 ], [ 144.874202, 13.648359 ], [ 144.874158, 13.648377 ], [ 144.874098, 13.648444 ], [ 144.87403, 13.648472 ], [ 144.873976, 13.64851 ], [ 144.873867, 13.6486 ], [ 144.873828, 13.648657 ], [ 144.873758, 13.64878 ], [ 144.873709, 13.648823 ], [ 144.873561, 13.648936 ], [ 144.873551, 13.648965 ], [ 144.873541, 13.649018 ], [ 144.873364, 13.649112 ], [ 144.873315, 13.649154 ], [ 144.873251, 13.649192 ], [ 144.873206, 13.649249 ], [ 144.873176, 13.649335 ], [ 144.873107, 13.649401 ], [ 144.873013, 13.649482 ], [ 144.872886, 13.649548 ], [ 144.872802, 13.649623 ], [ 144.87275, 13.649656 ], [ 144.872696, 13.649742 ], [ 144.872666, 13.649799 ], [ 144.872621, 13.649861 ], [ 144.872558, 13.64987 ], [ 144.872387, 13.649806 ], [ 144.872323, 13.64982 ], [ 144.872205, 13.649896 ], [ 144.872156, 13.649943 ], [ 144.872008, 13.650052 ], [ 144.871949, 13.650089 ], [ 144.87189, 13.650151 ], [ 144.871797, 13.650212 ], [ 144.871762, 13.650255 ], [ 144.871713, 13.650288 ], [ 144.871654, 13.650302 ], [ 144.871595, 13.650311 ], [ 144.871467, 13.650415 ], [ 144.871423, 13.650463 ], [ 144.871369, 13.650505 ], [ 144.871329, 13.650558 ], [ 144.871343, 13.650601 ], [ 144.871338, 13.650648 ], [ 144.871289, 13.650667 ], [ 144.871274, 13.650686 ], [ 144.871235, 13.650686 ], [ 144.87122, 13.6507 ], [ 144.87121, 13.650738 ], [ 144.871176, 13.650762 ], [ 144.871122, 13.650766 ], [ 144.871097, 13.650756 ], [ 144.871073, 13.650737 ], [ 144.871039, 13.650746 ], [ 144.870975, 13.650751 ], [ 144.870916, 13.650769 ], [ 144.870838, 13.650826 ], [ 144.870793, 13.650878 ], [ 144.870717, 13.650925 ], [ 144.870544, 13.651072 ], [ 144.870475, 13.651158 ], [ 144.870436, 13.651219 ], [ 144.870376, 13.651262 ], [ 144.870322, 13.651319 ], [ 144.870194, 13.651399 ], [ 144.87014, 13.651451 ], [ 144.870071, 13.651537 ], [ 144.870022, 13.651574 ], [ 144.869928, 13.651626 ], [ 144.86985, 13.651654 ], [ 144.869643, 13.651829 ], [ 144.86954, 13.651886 ], [ 144.869436, 13.651966 ], [ 144.869294, 13.652051 ], [ 144.8692, 13.652113 ], [ 144.869161, 13.652122 ], [ 144.869092, 13.652174 ], [ 144.868945, 13.652239 ], [ 144.868871, 13.652287 ], [ 144.868797, 13.652329 ], [ 144.868638, 13.652404 ], [ 144.868485, 13.652489 ], [ 144.86825, 13.652602 ], [ 144.868093, 13.652663 ], [ 144.867965, 13.652704 ], [ 144.867867, 13.652747 ], [ 144.867764, 13.652813 ], [ 144.867685, 13.652841 ], [ 144.867528, 13.652878 ], [ 144.867347, 13.652962 ], [ 144.867356, 13.652991 ], [ 144.867288, 13.653009 ], [ 144.867091, 13.653089 ], [ 144.867057, 13.653089 ], [ 144.867003, 13.653127 ], [ 144.866959, 13.653145 ], [ 144.8669, 13.65315 ], [ 144.86687, 13.653173 ], [ 144.866826, 13.653178 ], [ 144.866768, 13.653168 ], [ 144.866729, 13.653172 ], [ 144.866702, 13.653191 ], [ 144.866618, 13.653214 ], [ 144.866574, 13.653242 ], [ 144.866491, 13.653256 ], [ 144.866432, 13.653256 ], [ 144.866398, 13.653274 ], [ 144.866373, 13.653317 ], [ 144.866329, 13.653326 ], [ 144.866172, 13.653335 ], [ 144.866084, 13.653348 ], [ 144.865976, 13.6534 ], [ 144.865941, 13.653433 ], [ 144.865921, 13.653485 ], [ 144.865867, 13.653518 ], [ 144.865833, 13.653513 ], [ 144.865789, 13.653494 ], [ 144.865721, 13.653498 ], [ 144.865598, 13.653588 ], [ 144.865519, 13.653616 ], [ 144.865372, 13.653629 ], [ 144.865314, 13.653643 ], [ 144.865274, 13.653676 ], [ 144.86522, 13.65369 ], [ 144.865157, 13.653684 ], [ 144.865137, 13.653693 ], [ 144.865108, 13.653708 ], [ 144.865083, 13.653732 ], [ 144.865034, 13.653731 ], [ 144.86499, 13.653707 ], [ 144.864814, 13.653763 ], [ 144.86475, 13.653772 ], [ 144.864684, 13.653786 ], [ 144.864601, 13.653794 ], [ 144.864566, 13.653813 ], [ 144.864532, 13.653846 ], [ 144.864444, 13.65387 ], [ 144.86435, 13.653902 ], [ 144.864218, 13.653906 ], [ 144.864003, 13.653971 ], [ 144.86391, 13.653989 ], [ 144.863851, 13.654027 ], [ 144.863777, 13.654041 ], [ 144.863625, 13.654049 ], [ 144.863488, 13.654067 ], [ 144.863385, 13.654095 ], [ 144.863322, 13.654133 ], [ 144.863229, 13.654146 ], [ 144.863091, 13.654159 ], [ 144.863048, 13.65413 ], [ 144.862847, 13.654152 ], [ 144.862764, 13.654128 ], [ 144.862661, 13.654132 ], [ 144.862571, 13.654145 ], [ 144.862487, 13.654188 ], [ 144.86236, 13.654206 ], [ 144.861905, 13.654187 ], [ 144.861754, 13.654176 ], [ 144.861627, 13.654137 ], [ 144.861456, 13.65414 ], [ 144.861314, 13.654134 ], [ 144.860879, 13.654164 ], [ 144.860771, 13.654163 ], [ 144.860605, 13.654181 ], [ 144.860328, 13.654265 ], [ 144.86025, 13.654245 ], [ 144.860154, 13.654236 ], [ 144.860088, 13.654243 ], [ 144.86002, 13.654262 ], [ 144.859956, 13.654304 ], [ 144.859858, 13.654351 ], [ 144.859769, 13.654384 ], [ 144.859666, 13.654402 ], [ 144.859569, 13.654401 ], [ 144.859481, 13.654391 ], [ 144.859334, 13.654361 ], [ 144.859242, 13.654336 ], [ 144.85912, 13.654268 ], [ 144.859028, 13.654206 ], [ 144.858799, 13.654108 ], [ 144.858531, 13.653967 ], [ 144.858417, 13.65388 ], [ 144.85831, 13.653788 ], [ 144.858245, 13.653735 ], [ 144.858058, 13.653585 ], [ 144.857927, 13.65346 ], [ 144.857781, 13.653344 ], [ 144.857641, 13.653213 ], [ 144.857199, 13.652851 ], [ 144.857034, 13.652735 ], [ 144.85658, 13.652386 ], [ 144.856482, 13.652343 ], [ 144.856414, 13.652323 ], [ 144.856268, 13.652192 ], [ 144.856176, 13.65212 ], [ 144.856016, 13.652032 ], [ 144.855943, 13.65196 ], [ 144.855845, 13.651911 ], [ 144.855768, 13.651844 ], [ 144.855661, 13.651785 ], [ 144.855568, 13.651751 ], [ 144.855461, 13.651659 ], [ 144.855388, 13.65164 ], [ 144.855371, 13.651625 ], [ 144.855349, 13.651606 ], [ 144.855282, 13.651524 ], [ 144.855224, 13.651442 ], [ 144.855171, 13.651313 ], [ 144.855106, 13.651197 ], [ 144.854966, 13.651057 ], [ 144.854903, 13.650952 ], [ 144.854801, 13.65085 ], [ 144.854524, 13.650676 ], [ 144.854417, 13.650589 ], [ 144.854238, 13.650473 ], [ 144.853946, 13.650322 ], [ 144.85377, 13.65021 ], [ 144.85363, 13.650109 ], [ 144.853528, 13.649998 ], [ 144.853428, 13.649916 ], [ 144.853249, 13.649732 ], [ 144.853055, 13.649559 ], [ 144.852886, 13.649375 ], [ 144.852804, 13.649269 ], [ 144.852721, 13.649154 ], [ 144.852664, 13.649055 ], [ 144.85262, 13.649019 ], [ 144.852538, 13.648937 ], [ 144.852455, 13.648865 ], [ 144.852338, 13.648792 ], [ 144.852271, 13.648724 ], [ 144.852198, 13.648638 ], [ 144.852087, 13.648527 ], [ 144.852004, 13.648454 ], [ 144.851931, 13.648415 ], [ 144.851751, 13.648328 ], [ 144.851659, 13.64827 ], [ 144.851576, 13.648159 ], [ 144.851466, 13.647943 ], [ 144.851375, 13.647779 ], [ 144.851317, 13.647636 ], [ 144.85125, 13.647491 ], [ 144.851178, 13.647314 ], [ 144.851101, 13.647165 ], [ 144.851059, 13.646997 ], [ 144.850915, 13.646642 ], [ 144.850856, 13.646436 ], [ 144.850789, 13.646244 ], [ 144.850698, 13.646076 ], [ 144.850607, 13.645851 ], [ 144.850526, 13.64563 ], [ 144.850421, 13.645395 ], [ 144.850294, 13.645016 ], [ 144.850218, 13.644857 ], [ 144.850155, 13.644747 ], [ 144.850055, 13.644497 ], [ 144.849935, 13.644219 ], [ 144.849862, 13.643946 ], [ 144.849794, 13.643869 ], [ 144.849669, 13.643657 ], [ 144.84953, 13.643288 ], [ 144.84947, 13.643049 ], [ 144.849431, 13.64289 ], [ 144.849366, 13.642789 ], [ 144.849328, 13.642674 ], [ 144.849241, 13.642511 ], [ 144.849155, 13.642376 ], [ 144.849083, 13.642232 ], [ 144.84904, 13.642126 ], [ 144.848938, 13.641996 ], [ 144.848871, 13.641895 ], [ 144.848847, 13.641771 ], [ 144.848804, 13.641665 ], [ 144.848781, 13.641498 ], [ 144.84875, 13.641492 ], [ 144.848701, 13.641468 ], [ 144.848672, 13.641415 ], [ 144.848664, 13.641205 ], [ 144.848654, 13.64091 ], [ 144.848628, 13.640884 ], [ 144.84857, 13.640788 ], [ 144.848444, 13.640667 ], [ 144.848309, 13.64048 ], [ 144.848275, 13.640393 ], [ 144.848257, 13.640245 ], [ 144.848234, 13.64013 ], [ 144.848138, 13.639876 ], [ 144.848126, 13.639846 ], [ 144.848076, 13.639727 ], [ 144.848038, 13.639655 ], [ 144.848005, 13.639516 ], [ 144.847942, 13.639401 ], [ 144.847846, 13.639252 ], [ 144.847687, 13.63892 ], [ 144.847644, 13.63881 ], [ 144.847519, 13.638613 ], [ 144.847437, 13.638526 ], [ 144.847348, 13.638277 ], [ 144.847271, 13.638204 ], [ 144.847223, 13.638142 ], [ 144.847199, 13.638055 ], [ 144.847156, 13.637954 ], [ 144.847088, 13.637844 ], [ 144.847055, 13.637748 ], [ 144.846997, 13.637671 ], [ 144.846973, 13.637604 ], [ 144.846872, 13.637393 ], [ 144.84682, 13.637292 ], [ 144.846772, 13.637162 ], [ 144.846709, 13.637061 ], [ 144.846627, 13.636965 ], [ 144.846557, 13.636806 ], [ 144.846427, 13.636628 ], [ 144.846331, 13.636474 ], [ 144.846234, 13.636359 ], [ 144.846176, 13.636272 ], [ 144.846036, 13.636123 ], [ 144.845948, 13.636055 ], [ 144.845905, 13.636017 ], [ 144.845803, 13.635867 ], [ 144.845629, 13.635636 ], [ 144.845564, 13.635574 ], [ 144.845486, 13.635482 ], [ 144.845404, 13.635414 ], [ 144.84536, 13.635357 ], [ 144.845221, 13.635059 ], [ 144.845168, 13.634963 ], [ 144.84514, 13.634877 ], [ 144.845029, 13.634689 ], [ 144.844991, 13.634593 ], [ 144.844846, 13.634439 ], [ 144.844822, 13.634353 ], [ 144.844781, 13.634242 ], [ 144.844685, 13.634093 ], [ 144.844574, 13.633949 ], [ 144.844342, 13.633679 ], [ 144.84424, 13.633549 ], [ 144.844105, 13.633404 ], [ 144.843988, 13.633289 ], [ 144.843935, 13.633226 ], [ 144.843847, 13.633173 ], [ 144.843731, 13.633042 ], [ 144.843671, 13.632987 ], [ 144.843659, 13.632972 ], [ 144.843635, 13.632957 ], [ 144.843499, 13.632856 ], [ 144.843344, 13.632687 ], [ 144.843223, 13.632509 ], [ 144.843068, 13.632331 ], [ 144.842899, 13.632147 ], [ 144.842774, 13.631946 ], [ 144.842706, 13.631816 ], [ 144.842619, 13.631696 ], [ 144.842503, 13.631556 ], [ 144.842495, 13.631547 ], [ 144.842363, 13.631402 ], [ 144.842257, 13.631238 ], [ 144.842155, 13.631099 ], [ 144.841929, 13.630776 ], [ 144.841812, 13.630651 ], [ 144.841573, 13.630338 ], [ 144.841442, 13.630208 ], [ 144.841316, 13.630101 ], [ 144.84119, 13.629976 ], [ 144.841035, 13.629812 ], [ 144.840755, 13.629494 ], [ 144.840633, 13.629369 ], [ 144.840537, 13.629205 ], [ 144.84025, 13.62882 ], [ 144.840148, 13.628724 ], [ 144.840032, 13.628589 ], [ 144.839935, 13.628488 ], [ 144.839843, 13.628377 ], [ 144.839785, 13.628266 ], [ 144.839684, 13.628122 ], [ 144.839617, 13.628016 ], [ 144.839394, 13.627789 ], [ 144.839304, 13.62766 ], [ 144.839183, 13.627549 ], [ 144.839111, 13.627452 ], [ 144.83879, 13.627215 ], [ 144.838655, 13.627071 ], [ 144.838514, 13.626945 ], [ 144.838426, 13.626825 ], [ 144.838178, 13.626657 ], [ 144.838013, 13.626477 ], [ 144.837841, 13.626274 ], [ 144.837716, 13.62604 ], [ 144.83763, 13.625837 ], [ 144.837482, 13.625611 ], [ 144.837153, 13.625135 ], [ 144.837056, 13.624941 ], [ 144.837062, 13.624921 ], [ 144.837013, 13.624849 ], [ 144.836902, 13.624619 ], [ 144.836869, 13.624518 ], [ 144.83687, 13.624413 ], [ 144.836832, 13.624308 ], [ 144.836774, 13.624231 ], [ 144.836696, 13.624139 ], [ 144.836635, 13.623885 ], [ 144.836612, 13.623741 ], [ 144.836613, 13.623603 ], [ 144.836634, 13.623225 ], [ 144.83663, 13.623077 ], [ 144.836612, 13.622905 ], [ 144.836604, 13.622685 ], [ 144.836529, 13.622105 ], [ 144.836443, 13.621851 ], [ 144.836415, 13.621784 ], [ 144.836425, 13.621717 ], [ 144.83645, 13.621646 ], [ 144.83646, 13.621574 ], [ 144.836466, 13.621474 ], [ 144.836467, 13.621383 ], [ 144.836473, 13.621282 ], [ 144.836468, 13.620986 ], [ 144.836411, 13.620875 ], [ 144.836431, 13.620756 ], [ 144.836491, 13.620632 ], [ 144.836521, 13.620532 ], [ 144.836402, 13.620211 ], [ 144.836345, 13.620033 ], [ 144.836287, 13.619932 ], [ 144.836237, 13.619831 ], [ 144.836252, 13.619736 ], [ 144.836224, 13.619597 ], [ 144.836195, 13.619544 ], [ 144.836172, 13.619396 ], [ 144.836179, 13.6192 ], [ 144.836176, 13.61897 ], [ 144.836163, 13.61876 ], [ 144.836189, 13.61864 ], [ 144.836161, 13.618482 ], [ 144.836146, 13.618253 ], [ 144.836123, 13.618056 ], [ 144.836076, 13.617855 ], [ 144.836038, 13.617726 ], [ 144.836006, 13.617577 ], [ 144.835963, 13.617438 ], [ 144.83595, 13.617218 ], [ 144.835946, 13.617084 ], [ 144.835947, 13.616764 ], [ 144.835941, 13.616348 ], [ 144.835962, 13.616223 ], [ 144.835958, 13.616047 ], [ 144.835974, 13.615884 ], [ 144.835974, 13.615631 ], [ 144.835956, 13.615544 ], [ 144.835902, 13.615525 ], [ 144.835878, 13.615496 ], [ 144.835888, 13.6154 ], [ 144.835914, 13.615286 ], [ 144.835895, 13.615228 ], [ 144.835851, 13.615161 ], [ 144.835818, 13.615098 ], [ 144.835843, 13.614998 ], [ 144.835893, 13.614913 ], [ 144.835947, 13.614861 ], [ 144.835939, 13.614722 ], [ 144.835874, 13.61452 ], [ 144.835861, 13.614358 ], [ 144.835858, 13.614171 ], [ 144.83584, 13.614032 ], [ 144.835811, 13.613927 ], [ 144.835749, 13.613821 ], [ 144.835691, 13.613749 ], [ 144.835677, 13.613687 ], [ 144.835692, 13.613567 ], [ 144.835664, 13.613505 ], [ 144.835635, 13.613399 ], [ 144.835607, 13.613313 ], [ 144.835582, 13.613026 ], [ 144.83559, 13.612889 ], [ 144.835546, 13.612782 ], [ 144.835529, 13.61249 ], [ 144.8355, 13.612408 ], [ 144.835471, 13.612351 ], [ 144.835448, 13.61225 ], [ 144.835448, 13.612183 ], [ 144.83544, 13.612044 ], [ 144.835426, 13.61192 ], [ 144.835418, 13.611709 ], [ 144.835395, 13.611609 ], [ 144.835376, 13.611547 ], [ 144.835337, 13.611508 ], [ 144.835328, 13.611431 ], [ 144.835329, 13.611312 ], [ 144.835325, 13.611269 ], [ 144.835281, 13.611273 ], [ 144.835222, 13.611273 ], [ 144.835183, 13.611239 ], [ 144.835159, 13.611191 ], [ 144.835155, 13.611124 ], [ 144.835176, 13.610971 ], [ 144.835235, 13.610914 ], [ 144.835304, 13.610867 ], [ 144.835461, 13.610806 ], [ 144.835515, 13.610802 ], [ 144.835515, 13.610778 ], [ 144.835496, 13.610759 ], [ 144.835457, 13.610734 ], [ 144.835408, 13.610724 ], [ 144.835383, 13.610729 ], [ 144.835354, 13.610729 ], [ 144.83536, 13.610604 ], [ 144.835346, 13.610537 ], [ 144.835327, 13.61047 ], [ 144.835293, 13.610408 ], [ 144.835313, 13.610355 ], [ 144.835372, 13.610318 ], [ 144.835446, 13.610294 ], [ 144.835478, 13.61028 ], [ 144.835493, 13.610252 ], [ 144.835503, 13.610209 ], [ 144.835459, 13.610161 ], [ 144.835465, 13.610094 ], [ 144.835504, 13.610084 ], [ 144.835548, 13.610104 ], [ 144.835597, 13.6101 ], [ 144.835631, 13.610052 ], [ 144.835695, 13.610033 ], [ 144.83571, 13.610053 ], [ 144.835759, 13.610053 ], [ 144.835788, 13.610029 ], [ 144.835818, 13.609968 ], [ 144.835844, 13.609786 ], [ 144.83584, 13.609719 ], [ 144.835811, 13.609666 ], [ 144.835802, 13.60958 ], [ 144.835822, 13.609499 ], [ 144.835881, 13.609442 ], [ 144.835906, 13.609399 ], [ 144.835907, 13.609318 ], [ 144.835888, 13.609246 ], [ 144.835923, 13.609175 ], [ 144.835938, 13.609094 ], [ 144.835926, 13.60907 ], [ 144.835908, 13.608993 ], [ 144.835889, 13.608931 ], [ 144.835894, 13.608845 ], [ 144.83592, 13.608649 ], [ 144.835916, 13.608553 ], [ 144.835898, 13.608472 ], [ 144.835849, 13.608438 ], [ 144.835806, 13.608366 ], [ 144.835802, 13.608289 ], [ 144.835792, 13.608232 ], [ 144.835793, 13.608122 ], [ 144.835809, 13.608073 ], [ 144.835782, 13.60804 ], [ 144.835728, 13.607987 ], [ 144.835744, 13.607939 ], [ 144.835793, 13.607921 ], [ 144.835783, 13.607887 ], [ 144.835774, 13.60783 ], [ 144.835823, 13.607816 ], [ 144.835867, 13.607787 ], [ 144.835902, 13.60773 ], [ 144.835858, 13.607673 ], [ 144.83584, 13.607601 ], [ 144.83586, 13.607534 ], [ 144.835856, 13.607453 ], [ 144.835861, 13.607386 ], [ 144.835847, 13.607295 ], [ 144.835784, 13.60727 ], [ 144.835745, 13.607198 ], [ 144.835746, 13.607103 ], [ 144.835762, 13.607041 ], [ 144.835825, 13.606998 ], [ 144.835904, 13.606956 ], [ 144.835968, 13.606932 ], [ 144.836012, 13.60688 ], [ 144.836003, 13.606842 ], [ 144.836003, 13.606789 ], [ 144.836063, 13.606675 ], [ 144.836059, 13.606603 ], [ 144.83604, 13.606522 ], [ 144.836031, 13.60645 ], [ 144.836036, 13.606383 ], [ 144.836006, 13.606263 ], [ 144.835937, 13.606239 ], [ 144.835879, 13.6062 ], [ 144.83586, 13.606128 ], [ 144.835881, 13.606052 ], [ 144.835925, 13.60599 ], [ 144.83597, 13.605909 ], [ 144.836009, 13.605866 ], [ 144.83599, 13.605795 ], [ 144.835991, 13.605708 ], [ 144.836026, 13.605623 ], [ 144.83609, 13.605542 ], [ 144.83613, 13.60548 ], [ 144.836184, 13.605418 ], [ 144.836258, 13.605367 ], [ 144.836313, 13.60531 ], [ 144.836322, 13.605262 ], [ 144.836328, 13.605238 ], [ 144.836333, 13.605162 ], [ 144.836288, 13.605075 ], [ 144.836259, 13.60507 ], [ 144.836235, 13.604998 ], [ 144.836265, 13.604941 ], [ 144.836324, 13.604913 ], [ 144.836368, 13.604899 ], [ 144.836388, 13.604842 ], [ 144.836388, 13.604813 ], [ 144.836399, 13.604708 ], [ 144.836448, 13.60466 ], [ 144.836541, 13.604642 ], [ 144.83661, 13.604638 ], [ 144.836659, 13.604614 ], [ 144.836659, 13.604581 ], [ 144.836713, 13.604534 ], [ 144.836757, 13.604529 ], [ 144.836762, 13.604496 ], [ 144.836724, 13.604462 ], [ 144.836651, 13.604437 ], [ 144.836612, 13.604413 ], [ 144.836568, 13.604413 ], [ 144.836553, 13.604379 ], [ 144.836539, 13.604322 ], [ 144.836491, 13.604269 ], [ 144.83653, 13.60424 ], [ 144.836569, 13.604226 ], [ 144.83656, 13.604169 ], [ 144.836506, 13.604149 ], [ 144.836458, 13.604087 ], [ 144.836434, 13.604015 ], [ 144.836455, 13.603943 ], [ 144.836519, 13.603891 ], [ 144.836568, 13.603863 ], [ 144.836568, 13.603825 ], [ 144.836495, 13.60381 ], [ 144.836503, 13.603762 ], [ 144.836518, 13.603705 ], [ 144.836469, 13.603666 ], [ 144.836416, 13.603637 ], [ 144.836362, 13.603598 ], [ 144.836329, 13.603536 ], [ 144.83631, 13.603478 ], [ 144.836311, 13.603383 ], [ 144.83635, 13.603311 ], [ 144.83639, 13.603249 ], [ 144.836435, 13.603135 ], [ 144.836489, 13.603059 ], [ 144.836576, 13.603045 ], [ 144.836592, 13.603036 ], [ 144.836593, 13.602993 ], [ 144.836578, 13.602954 ], [ 144.836496, 13.602911 ], [ 144.836422, 13.602901 ], [ 144.836374, 13.602881 ], [ 144.836345, 13.602838 ], [ 144.836345, 13.602785 ], [ 144.836321, 13.602747 ], [ 144.836347, 13.602627 ], [ 144.836436, 13.602528 ], [ 144.836466, 13.602447 ], [ 144.836515, 13.602399 ], [ 144.836589, 13.602366 ], [ 144.83678, 13.60233 ], [ 144.836833, 13.602325 ], [ 144.83689, 13.602307 ], [ 144.836885, 13.602269 ], [ 144.836856, 13.602254 ], [ 144.836802, 13.602249 ], [ 144.836744, 13.602229 ], [ 144.83671, 13.602171 ], [ 144.836691, 13.602119 ], [ 144.836633, 13.602104 ], [ 144.83653, 13.602098 ], [ 144.836476, 13.602079 ], [ 144.836516, 13.602026 ], [ 144.836526, 13.601955 ], [ 144.836527, 13.601883 ], [ 144.836562, 13.601821 ], [ 144.836646, 13.601706 ], [ 144.836735, 13.601594 ], [ 144.836815, 13.601538 ], [ 144.836775, 13.601473 ], [ 144.836646, 13.601481 ], [ 144.836542, 13.601417 ], [ 144.836494, 13.601249 ], [ 144.836438, 13.601169 ], [ 144.836422, 13.601088 ], [ 144.836398, 13.601032 ], [ 144.836334, 13.600976 ], [ 144.836342, 13.600864 ], [ 144.836366, 13.600751 ], [ 144.83635, 13.600647 ], [ 144.836406, 13.600623 ], [ 144.836398, 13.600559 ], [ 144.836446, 13.600559 ], [ 144.83655, 13.600559 ], [ 144.836598, 13.600511 ], [ 144.836622, 13.60039 ], [ 144.836574, 13.600334 ], [ 144.836534, 13.600238 ], [ 144.83651, 13.600174 ], [ 144.83651, 13.60011 ], [ 144.836526, 13.600037 ], [ 144.836574, 13.599893 ], [ 144.836534, 13.599732 ], [ 144.836574, 13.599652 ], [ 144.836622, 13.599564 ], [ 144.836622, 13.59946 ], [ 144.836663, 13.599387 ], [ 144.836646, 13.599363 ], [ 144.836606, 13.599315 ], [ 144.83663, 13.599251 ], [ 144.836655, 13.599203 ], [ 144.836695, 13.599147 ], [ 144.836687, 13.599026 ], [ 144.836743, 13.59901 ], [ 144.836783, 13.598906 ], [ 144.836719, 13.598842 ], [ 144.836671, 13.59881 ], [ 144.836646, 13.598722 ], [ 144.836655, 13.598625 ], [ 144.836638, 13.598489 ], [ 144.836727, 13.598441 ], [ 144.836695, 13.598369 ], [ 144.836719, 13.598296 ], [ 144.836638, 13.5982 ], [ 144.836663, 13.598144 ], [ 144.836784, 13.598083 ], [ 144.836799, 13.597927 ], [ 144.836799, 13.597815 ], [ 144.836791, 13.597751 ], [ 144.836895, 13.597663 ], [ 144.837024, 13.59755 ], [ 144.837168, 13.59747 ], [ 144.837569, 13.59735 ], [ 144.837649, 13.597149 ], [ 144.83773, 13.596844 ], [ 144.837738, 13.596636 ], [ 144.837633, 13.596515 ], [ 144.837585, 13.596419 ], [ 144.837481, 13.596419 ], [ 144.837441, 13.596371 ], [ 144.837417, 13.596275 ], [ 144.837353, 13.596162 ], [ 144.837264, 13.596026 ], [ 144.837296, 13.59593 ], [ 144.837353, 13.595825 ], [ 144.837409, 13.595753 ], [ 144.837476, 13.595718 ], [ 144.837481, 13.595657 ], [ 144.837433, 13.595602 ], [ 144.837287, 13.595202 ], [ 144.837362, 13.595104 ], [ 144.837235, 13.595058 ], [ 144.837149, 13.594985 ], [ 144.837083, 13.594899 ], [ 144.837037, 13.594794 ], [ 144.836991, 13.594741 ], [ 144.836917, 13.594715 ], [ 144.836858, 13.594668 ], [ 144.836798, 13.594576 ], [ 144.836732, 13.594504 ], [ 144.836632, 13.594503 ], [ 144.836532, 13.594469 ], [ 144.836512, 13.594403 ], [ 144.836573, 13.594332 ], [ 144.836601, 13.594254 ], [ 144.836568, 13.594155 ], [ 144.836582, 13.59407 ], [ 144.836623, 13.593973 ], [ 144.836664, 13.593894 ], [ 144.836665, 13.593816 ], [ 144.836572, 13.593723 ], [ 144.836546, 13.593651 ], [ 144.836607, 13.59358 ], [ 144.836654, 13.593508 ], [ 144.836682, 13.593436 ], [ 144.836676, 13.593338 ], [ 144.836617, 13.593233 ], [ 144.836537, 13.593193 ], [ 144.836504, 13.593121 ], [ 144.836498, 13.593049 ], [ 144.836438, 13.593002 ], [ 144.836425, 13.592917 ], [ 144.83646, 13.592826 ], [ 144.836527, 13.5928 ], [ 144.83657, 13.592807 ], [ 144.836624, 13.592808 ], [ 144.836651, 13.59271 ], [ 144.836632, 13.592625 ], [ 144.836632, 13.592535 ], [ 144.836633, 13.59252 ], [ 144.83658, 13.592487 ], [ 144.836567, 13.592408 ], [ 144.836562, 13.592284 ], [ 144.836542, 13.592212 ], [ 144.836483, 13.592146 ], [ 144.836456, 13.592073 ], [ 144.836471, 13.591995 ], [ 144.836444, 13.591942 ], [ 144.836385, 13.591883 ], [ 144.836405, 13.591831 ], [ 144.836446, 13.591779 ], [ 144.836473, 13.591701 ], [ 144.836501, 13.591635 ], [ 144.836481, 13.59155 ], [ 144.836356, 13.591399 ], [ 144.836283, 13.591333 ], [ 144.836209, 13.591325 ], [ 144.836149, 13.591279 ], [ 144.836083, 13.59122 ], [ 144.836023, 13.591226 ], [ 144.835962, 13.591225 ], [ 144.835943, 13.591159 ], [ 144.835997, 13.591101 ], [ 144.836035, 13.590964 ], [ 144.836069, 13.590899 ], [ 144.836056, 13.590859 ], [ 144.835976, 13.590852 ], [ 144.835842, 13.590818 ], [ 144.835809, 13.590759 ], [ 144.835817, 13.590694 ], [ 144.835738, 13.590562 ], [ 144.835652, 13.590404 ], [ 144.835553, 13.590266 ], [ 144.835494, 13.590135 ], [ 144.835535, 13.590063 ], [ 144.835609, 13.589998 ], [ 144.835676, 13.589973 ], [ 144.835576, 13.589906 ], [ 144.835551, 13.589795 ], [ 144.835464, 13.589735 ], [ 144.835404, 13.589722 ], [ 144.835318, 13.589642 ], [ 144.835265, 13.589557 ], [ 144.835239, 13.589445 ], [ 144.835254, 13.589334 ], [ 144.835288, 13.589243 ], [ 144.835299, 13.589165 ], [ 144.835206, 13.589059 ], [ 144.835173, 13.588974 ], [ 144.835089, 13.588718 ], [ 144.835023, 13.588593 ], [ 144.834977, 13.588462 ], [ 144.834898, 13.588376 ], [ 144.834912, 13.588271 ], [ 144.83478, 13.588087 ], [ 144.834734, 13.587988 ], [ 144.834622, 13.587863 ], [ 144.834536, 13.587725 ], [ 144.83452, 13.58764 ], [ 144.834514, 13.587555 ], [ 144.834555, 13.58749 ], [ 144.834535, 13.587411 ], [ 144.834469, 13.58741 ], [ 144.834355, 13.58735 ], [ 144.834303, 13.587271 ], [ 144.834325, 13.587036 ], [ 144.834186, 13.586819 ], [ 144.834147, 13.586733 ], [ 144.834013, 13.5867 ], [ 144.834001, 13.586641 ], [ 144.833921, 13.586561 ], [ 144.833902, 13.586437 ], [ 144.833829, 13.586358 ], [ 144.833702, 13.58633 ], [ 144.833589, 13.586258 ], [ 144.83355, 13.586185 ], [ 144.833457, 13.586099 ], [ 144.833337, 13.586059 ], [ 144.833307, 13.585993 ], [ 144.833308, 13.585941 ], [ 144.833228, 13.585849 ], [ 144.832943, 13.585604 ], [ 144.832891, 13.585499 ], [ 144.832811, 13.585387 ], [ 144.832712, 13.585281 ], [ 144.832619, 13.585222 ], [ 144.832505, 13.585181 ], [ 144.832492, 13.585136 ], [ 144.832419, 13.585083 ], [ 144.83242, 13.585004 ], [ 144.832347, 13.584905 ], [ 144.832321, 13.58484 ], [ 144.832248, 13.584747 ], [ 144.832236, 13.584682 ], [ 144.832157, 13.584557 ], [ 144.832083, 13.58451 ], [ 144.832061, 13.58436 ], [ 144.832075, 13.584288 ], [ 144.832056, 13.584216 ], [ 144.831989, 13.584176 ], [ 144.831936, 13.58413 ], [ 144.831924, 13.584038 ], [ 144.831925, 13.583946 ], [ 144.831838, 13.583874 ], [ 144.831799, 13.583821 ], [ 144.831786, 13.583742 ], [ 144.83172, 13.583657 ], [ 144.831681, 13.583571 ], [ 144.831662, 13.58344 ], [ 144.831562, 13.583387 ], [ 144.831449, 13.58334 ], [ 144.831409, 13.583255 ], [ 144.83145, 13.583144 ], [ 144.831452, 13.583 ], [ 144.831419, 13.582941 ], [ 144.831379, 13.582888 ], [ 144.83138, 13.582803 ], [ 144.83134, 13.582744 ], [ 144.831307, 13.582671 ], [ 144.831255, 13.582599 ], [ 144.831275, 13.582534 ], [ 144.831283, 13.582462 ], [ 144.831256, 13.582429 ], [ 144.831209, 13.582422 ], [ 144.831116, 13.582388 ], [ 144.831093, 13.582329 ], [ 144.830995, 13.582139 ], [ 144.830996, 13.582014 ], [ 144.831043, 13.58191 ], [ 144.831065, 13.581753 ], [ 144.831112, 13.581688 ], [ 144.831093, 13.581665 ], [ 144.831059, 13.581679 ], [ 144.831034, 13.581679 ], [ 144.831015, 13.581655 ], [ 144.831001, 13.581568 ], [ 144.830987, 13.581535 ], [ 144.830958, 13.581511 ], [ 144.830948, 13.581472 ], [ 144.830929, 13.581424 ], [ 144.830949, 13.581391 ], [ 144.831047, 13.581354 ], [ 144.831052, 13.581334 ], [ 144.831043, 13.58131 ], [ 144.831043, 13.581277 ], [ 144.831048, 13.581244 ], [ 144.831068, 13.581215 ], [ 144.831058, 13.581191 ], [ 144.831024, 13.581167 ], [ 144.830995, 13.581167 ], [ 144.830985, 13.581147 ], [ 144.830986, 13.581104 ], [ 144.830971, 13.581076 ], [ 144.830962, 13.581042 ], [ 144.830948, 13.581023 ], [ 144.830909, 13.581003 ], [ 144.830924, 13.580975 ], [ 144.830968, 13.580942 ], [ 144.830929, 13.580913 ], [ 144.830905, 13.580879 ], [ 144.830866, 13.58084 ], [ 144.830847, 13.580811 ], [ 144.830823, 13.580783 ], [ 144.830847, 13.580754 ], [ 144.830848, 13.58073 ], [ 144.830824, 13.580673 ], [ 144.830805, 13.58061 ], [ 144.830829, 13.580591 ], [ 144.830864, 13.580577 ], [ 144.830879, 13.58053 ], [ 144.830864, 13.580515 ], [ 144.830835, 13.580515 ], [ 144.830821, 13.580472 ], [ 144.830797, 13.580419 ], [ 144.830763, 13.580323 ], [ 144.830739, 13.58028 ], [ 144.83073, 13.580189 ], [ 144.830731, 13.580146 ], [ 144.830677, 13.580126 ], [ 144.830624, 13.580097 ], [ 144.830648, 13.580054 ], [ 144.830775, 13.580055 ], [ 144.830815, 13.580032 ], [ 144.830815, 13.579998 ], [ 144.830791, 13.579945 ], [ 144.830762, 13.579897 ], [ 144.830762, 13.579869 ], [ 144.830743, 13.579826 ], [ 144.830719, 13.579787 ], [ 144.830685, 13.579763 ], [ 144.830632, 13.579738 ], [ 144.830612, 13.5797 ], [ 144.830603, 13.579647 ], [ 144.830647, 13.579624 ], [ 144.830672, 13.5796 ], [ 144.830765, 13.579567 ], [ 144.8308, 13.579544 ], [ 144.830824, 13.579549 ], [ 144.830868, 13.579535 ], [ 144.830928, 13.579454 ], [ 144.830967, 13.579426 ], [ 144.831026, 13.579417 ], [ 144.831143, 13.579427 ], [ 144.831177, 13.579437 ], [ 144.831216, 13.579418 ], [ 144.831236, 13.57939 ], [ 144.831251, 13.579347 ], [ 144.831291, 13.579295 ], [ 144.83132, 13.579276 ], [ 144.831365, 13.579219 ], [ 144.831395, 13.579128 ], [ 144.831495, 13.578876 ], [ 144.831515, 13.578838 ], [ 144.831554, 13.5788 ], [ 144.83155, 13.578733 ], [ 144.831536, 13.578647 ], [ 144.831517, 13.578584 ], [ 144.831484, 13.578503 ], [ 144.83145, 13.578435 ], [ 144.831426, 13.578373 ], [ 144.831412, 13.578306 ], [ 144.831393, 13.578239 ], [ 144.831335, 13.578152 ], [ 144.831336, 13.578109 ], [ 144.831327, 13.578037 ], [ 144.831308, 13.57798 ], [ 144.83126, 13.577869 ], [ 144.831246, 13.577793 ], [ 144.831217, 13.577711 ], [ 144.831159, 13.57761 ], [ 144.831121, 13.577524 ], [ 144.831053, 13.577437 ], [ 144.83101, 13.577365 ], [ 144.831008, 13.577313 ], [ 144.830984, 13.57725 ], [ 144.830941, 13.577197 ], [ 144.830917, 13.57714 ], [ 144.830796, 13.576971 ], [ 144.830743, 13.576913 ], [ 144.830714, 13.576861 ], [ 144.830637, 13.576764 ], [ 144.830588, 13.57673 ], [ 144.830564, 13.576654 ], [ 144.830506, 13.576577 ], [ 144.830482, 13.576538 ], [ 144.830439, 13.57648 ], [ 144.83039, 13.576442 ], [ 144.830317, 13.576417 ], [ 144.83021, 13.576411 ], [ 144.830122, 13.576435 ], [ 144.830097, 13.576434 ], [ 144.830068, 13.57642 ], [ 144.829965, 13.576409 ], [ 144.829955, 13.576433 ], [ 144.829906, 13.576461 ], [ 144.829887, 13.576466 ], [ 144.829887, 13.576442 ], [ 144.829872, 13.576418 ], [ 144.829824, 13.576408 ], [ 144.829765, 13.576412 ], [ 144.829711, 13.576402 ], [ 144.829687, 13.576373 ], [ 144.829614, 13.576378 ], [ 144.82958, 13.576358 ], [ 144.829585, 13.576325 ], [ 144.829526, 13.57631 ], [ 144.829492, 13.576348 ], [ 144.829424, 13.576328 ], [ 144.82936, 13.576318 ], [ 144.829306, 13.576303 ], [ 144.829243, 13.576312 ], [ 144.829213, 13.576336 ], [ 144.82913, 13.576345 ], [ 144.829091, 13.576354 ], [ 144.829052, 13.576377 ], [ 144.829032, 13.576401 ], [ 144.828978, 13.576434 ], [ 144.828924, 13.576458 ], [ 144.828899, 13.576486 ], [ 144.828932, 13.576577 ], [ 144.828957, 13.57662 ], [ 144.828976, 13.576678 ], [ 144.82897, 13.576711 ], [ 144.828967, 13.576713 ], [ 144.828936, 13.576754 ], [ 144.828911, 13.576802 ], [ 144.828867, 13.57684 ], [ 144.828837, 13.576839 ], [ 144.828788, 13.576849 ], [ 144.828763, 13.576887 ], [ 144.828729, 13.57691 ], [ 144.82866, 13.576934 ], [ 144.828612, 13.576928 ], [ 144.828582, 13.576899 ], [ 144.828519, 13.576865 ], [ 144.828456, 13.576841 ], [ 144.828437, 13.576807 ], [ 144.828403, 13.576764 ], [ 144.82832, 13.576701 ], [ 144.828301, 13.576663 ], [ 144.828316, 13.576629 ], [ 144.82837, 13.576572 ], [ 144.828363, 13.576539 ], [ 144.828403, 13.576515 ], [ 144.828437, 13.576473 ], [ 144.828462, 13.576454 ], [ 144.828472, 13.576415 ], [ 144.828477, 13.576372 ], [ 144.828448, 13.576329 ], [ 144.828463, 13.576291 ], [ 144.828488, 13.576248 ], [ 144.828513, 13.576234 ], [ 144.828523, 13.576182 ], [ 144.828538, 13.576139 ], [ 144.828538, 13.576096 ], [ 144.828534, 13.576072 ], [ 144.82849, 13.576057 ], [ 144.828461, 13.576042 ], [ 144.828422, 13.576032 ], [ 144.828353, 13.576032 ], [ 144.828324, 13.576046 ], [ 144.82828, 13.576074 ], [ 144.828225, 13.576122 ], [ 144.828142, 13.576164 ], [ 144.828083, 13.576154 ], [ 144.82801, 13.576153 ], [ 144.827952, 13.576119 ], [ 144.827908, 13.576047 ], [ 144.827855, 13.576018 ], [ 144.827802, 13.575946 ], [ 144.827763, 13.575936 ], [ 144.827724, 13.575892 ], [ 144.827715, 13.57584 ], [ 144.827705, 13.575811 ], [ 144.827681, 13.575763 ], [ 144.827686, 13.57572 ], [ 144.827672, 13.575686 ], [ 144.827633, 13.575672 ], [ 144.827604, 13.575638 ], [ 144.827604, 13.5756 ], [ 144.827634, 13.575581 ], [ 144.827639, 13.575538 ], [ 144.827605, 13.575504 ], [ 144.827548, 13.575408 ], [ 144.827499, 13.575403 ], [ 144.827469, 13.575412 ], [ 144.82742, 13.575436 ], [ 144.827371, 13.575416 ], [ 144.827367, 13.575363 ], [ 144.827324, 13.575253 ], [ 144.827321, 13.57521 ], [ 144.82729, 13.5752 ], [ 144.827261, 13.5752 ], [ 144.827212, 13.575176 ], [ 144.827198, 13.575151 ], [ 144.8271, 13.575146 ], [ 144.827052, 13.575122 ], [ 144.827008, 13.575092 ], [ 144.82694, 13.575054 ], [ 144.826916, 13.575025 ], [ 144.826921, 13.574977 ], [ 144.826907, 13.574929 ], [ 144.826883, 13.574886 ], [ 144.826844, 13.574866 ], [ 144.826775, 13.574851 ], [ 144.826741, 13.574827 ], [ 144.826653, 13.574831 ], [ 144.82659, 13.574816 ], [ 144.826541, 13.574778 ], [ 144.826439, 13.574777 ], [ 144.826361, 13.574743 ], [ 144.826312, 13.574713 ], [ 144.826298, 13.57468 ], [ 144.826298, 13.574637 ], [ 144.826313, 13.574599 ], [ 144.826319, 13.574556 ], [ 144.826304, 13.574541 ], [ 144.82626, 13.574531 ], [ 144.826226, 13.574536 ], [ 144.826162, 13.574535 ], [ 144.826148, 13.574502 ], [ 144.826114, 13.574468 ], [ 144.826114, 13.574439 ], [ 144.826105, 13.574406 ], [ 144.826066, 13.574386 ], [ 144.826022, 13.574352 ], [ 144.826003, 13.574319 ], [ 144.826037, 13.574295 ], [ 144.826072, 13.574276 ], [ 144.826121, 13.5742 ], [ 144.826107, 13.574176 ], [ 144.825941, 13.574175 ], [ 144.825941, 13.574141 ], [ 144.825927, 13.574103 ], [ 144.825878, 13.574078 ], [ 144.825864, 13.57405 ], [ 144.825859, 13.574002 ], [ 144.82583, 13.573968 ], [ 144.825782, 13.573948 ], [ 144.825748, 13.573929 ], [ 144.825684, 13.573919 ], [ 144.825635, 13.573895 ], [ 144.825606, 13.57387 ], [ 144.825567, 13.573846 ], [ 144.825519, 13.573836 ], [ 144.825489, 13.573836 ], [ 144.825425, 13.57395 ], [ 144.825376, 13.573974 ], [ 144.825322, 13.573992 ], [ 144.825292, 13.573997 ], [ 144.825273, 13.573982 ], [ 144.825254, 13.573953 ], [ 144.825229, 13.573939 ], [ 144.825205, 13.57391 ], [ 144.825191, 13.573881 ], [ 144.825221, 13.573829 ], [ 144.825245, 13.57381 ], [ 144.825265, 13.573772 ], [ 144.825207, 13.573757 ], [ 144.825148, 13.573752 ], [ 144.825114, 13.573766 ], [ 144.825045, 13.57376 ], [ 144.825016, 13.573727 ], [ 144.824992, 13.57364 ], [ 144.824988, 13.573597 ], [ 144.824949, 13.57354 ], [ 144.824896, 13.573506 ], [ 144.824872, 13.573443 ], [ 144.824834, 13.573388 ], [ 144.824809, 13.573352 ], [ 144.824795, 13.573323 ], [ 144.82478, 13.573304 ], [ 144.824732, 13.573308 ], [ 144.824615, 13.57324 ], [ 144.824591, 13.573206 ], [ 144.824532, 13.573177 ], [ 144.824523, 13.573139 ], [ 144.824524, 13.573062 ], [ 144.824495, 13.573024 ], [ 144.824441, 13.573019 ], [ 144.824412, 13.572985 ], [ 144.824412, 13.572942 ], [ 144.824418, 13.572894 ], [ 144.824403, 13.572837 ], [ 144.82436, 13.572817 ], [ 144.824297, 13.572735 ], [ 144.824258, 13.572692 ], [ 144.82421, 13.572658 ], [ 144.824205, 13.57262 ], [ 144.824171, 13.572572 ], [ 144.824157, 13.572528 ], [ 144.824089, 13.572499 ], [ 144.82407, 13.572456 ], [ 144.82406, 13.572413 ], [ 144.824051, 13.572341 ], [ 144.824012, 13.572302 ], [ 144.823969, 13.572273 ], [ 144.823925, 13.57222 ], [ 144.823931, 13.572096 ], [ 144.823966, 13.572077 ], [ 144.823995, 13.572054 ], [ 144.823976, 13.572006 ], [ 144.823952, 13.571967 ], [ 144.823933, 13.571919 ], [ 144.823875, 13.571814 ], [ 144.823793, 13.571755 ], [ 144.823754, 13.571712 ], [ 144.823695, 13.571697 ], [ 144.823613, 13.57161 ], [ 144.823569, 13.571605 ], [ 144.823535, 13.571614 ], [ 144.823491, 13.571595 ], [ 144.823452, 13.571556 ], [ 144.823419, 13.571475 ], [ 144.823395, 13.571436 ], [ 144.823366, 13.571412 ], [ 144.823385, 13.571369 ], [ 144.823415, 13.571327 ], [ 144.82344, 13.571312 ], [ 144.82346, 13.571279 ], [ 144.823431, 13.571241 ], [ 144.823441, 13.571183 ], [ 144.82349, 13.571155 ], [ 144.823558, 13.571203 ], [ 144.823582, 13.571204 ], [ 144.823606, 13.571198 ], [ 144.823627, 13.571194 ], [ 144.823715, 13.571186 ], [ 144.823729, 13.57121 ], [ 144.823759, 13.571191 ], [ 144.823783, 13.571153 ], [ 144.823832, 13.571129 ], [ 144.823857, 13.571072 ], [ 144.823955, 13.571054 ], [ 144.824, 13.571035 ], [ 144.824063, 13.570997 ], [ 144.824086, 13.57099 ], [ 144.824064, 13.570978 ], [ 144.824054, 13.57095 ], [ 144.824113, 13.570917 ], [ 144.824113, 13.570869 ], [ 144.824055, 13.570868 ], [ 144.824026, 13.570835 ], [ 144.824026, 13.570787 ], [ 144.823978, 13.570748 ], [ 144.823919, 13.570728 ], [ 144.823885, 13.570733 ], [ 144.823846, 13.570756 ], [ 144.823709, 13.570727 ], [ 144.823685, 13.570679 ], [ 144.823686, 13.570621 ], [ 144.823671, 13.570588 ], [ 144.823627, 13.570559 ], [ 144.823574, 13.570539 ], [ 144.823515, 13.570534 ], [ 144.823456, 13.570557 ], [ 144.823422, 13.570581 ], [ 144.823344, 13.57059 ], [ 144.823295, 13.570608 ], [ 144.823269, 13.570708 ], [ 144.823225, 13.570742 ], [ 144.823229, 13.570789 ], [ 144.823185, 13.570827 ], [ 144.823122, 13.570827 ], [ 144.823082, 13.570831 ], [ 144.823014, 13.570807 ], [ 144.822985, 13.570759 ], [ 144.822927, 13.570729 ], [ 144.822849, 13.570695 ], [ 144.822776, 13.570642 ], [ 144.822703, 13.570598 ], [ 144.822665, 13.57055 ], [ 144.822553, 13.570473 ], [ 144.822525, 13.570353 ], [ 144.822496, 13.57029 ], [ 144.822462, 13.570238 ], [ 144.822423, 13.570194 ], [ 144.82238, 13.57016 ], [ 144.822268, 13.570049 ], [ 144.82221, 13.570054 ], [ 144.822156, 13.570001 ], [ 144.822118, 13.569948 ], [ 144.822064, 13.569904 ], [ 144.822021, 13.569856 ], [ 144.821943, 13.56986 ], [ 144.821884, 13.569855 ], [ 144.82185, 13.569835 ], [ 144.82185, 13.569797 ], [ 144.821875, 13.569749 ], [ 144.82192, 13.569712 ], [ 144.821944, 13.569664 ], [ 144.821926, 13.569656 ], [ 144.821876, 13.569668 ], [ 144.821832, 13.569625 ], [ 144.821804, 13.569562 ], [ 144.82176, 13.569519 ], [ 144.821721, 13.569509 ], [ 144.821731, 13.569466 ], [ 144.821737, 13.569404 ], [ 144.821732, 13.569366 ], [ 144.821708, 13.569322 ], [ 144.821649, 13.569308 ], [ 144.821611, 13.569288 ], [ 144.821592, 13.569173 ], [ 144.821598, 13.569106 ], [ 144.821618, 13.569059 ], [ 144.821652, 13.569006 ], [ 144.821638, 13.568968 ], [ 144.821599, 13.568915 ], [ 144.82157, 13.568886 ], [ 144.821487, 13.568861 ], [ 144.821473, 13.56879 ], [ 144.821464, 13.568713 ], [ 144.82145, 13.56867 ], [ 144.821392, 13.568607 ], [ 144.821393, 13.568459 ], [ 144.821379, 13.568411 ], [ 144.821335, 13.568377 ], [ 144.821296, 13.568358 ], [ 144.821308, 13.56821 ], [ 144.821319, 13.568163 ], [ 144.821203, 13.567936 ], [ 144.821139, 13.567883 ], [ 144.82114, 13.56783 ], [ 144.821194, 13.567764 ], [ 144.821224, 13.567707 ], [ 144.821269, 13.567607 ], [ 144.821343, 13.56754 ], [ 144.821417, 13.567465 ], [ 144.821486, 13.567384 ], [ 144.821546, 13.567294 ], [ 144.821571, 13.567203 ], [ 144.821611, 13.567127 ], [ 144.821621, 13.56705 ], [ 144.821617, 13.566964 ], [ 144.821603, 13.566878 ], [ 144.821599, 13.566811 ], [ 144.821546, 13.566753 ], [ 144.821517, 13.566705 ], [ 144.821468, 13.566647 ], [ 144.821425, 13.566613 ], [ 144.82143, 13.566551 ], [ 144.821445, 13.566508 ], [ 144.821431, 13.56647 ], [ 144.821363, 13.566431 ], [ 144.821315, 13.566369 ], [ 144.821276, 13.566311 ], [ 144.821277, 13.566254 ], [ 144.821253, 13.566205 ], [ 144.821189, 13.566162 ], [ 144.821136, 13.566104 ], [ 144.821107, 13.566061 ], [ 144.821078, 13.566003 ], [ 144.82104, 13.56595 ], [ 144.820991, 13.565945 ], [ 144.820908, 13.565896 ], [ 144.820845, 13.565824 ], [ 144.820817, 13.565733 ], [ 144.820837, 13.565642 ], [ 144.820824, 13.565542 ], [ 144.82078, 13.565503 ], [ 144.820742, 13.565374 ], [ 144.820757, 13.565307 ], [ 144.820709, 13.56524 ], [ 144.82069, 13.565201 ], [ 144.820681, 13.56511 ], [ 144.820706, 13.565063 ], [ 144.820706, 13.56501 ], [ 144.820697, 13.564987 ], [ 144.820658, 13.564885 ], [ 144.820654, 13.564809 ], [ 144.820615, 13.564785 ], [ 144.820553, 13.564698 ], [ 144.820499, 13.564664 ], [ 144.82047, 13.564621 ], [ 144.820446, 13.564573 ], [ 144.820412, 13.564525 ], [ 144.820378, 13.5645 ], [ 144.820355, 13.564438 ], [ 144.820306, 13.564371 ], [ 144.820165, 13.564341 ], [ 144.820097, 13.56433 ], [ 144.820043, 13.564311 ], [ 144.81999, 13.564229 ], [ 144.819956, 13.564148 ], [ 144.819955, 13.564076 ], [ 144.819946, 13.564009 ], [ 144.819917, 13.563965 ], [ 144.819912, 13.563918 ], [ 144.819893, 13.563836 ], [ 144.81985, 13.563788 ], [ 144.819762, 13.56373 ], [ 144.819607, 13.563642 ], [ 144.819529, 13.563608 ], [ 144.819485, 13.563555 ], [ 144.819456, 13.563498 ], [ 144.819442, 13.563445 ], [ 144.819413, 13.563406 ], [ 144.819345, 13.563387 ], [ 144.819306, 13.563358 ], [ 144.819272, 13.56331 ], [ 144.819297, 13.563252 ], [ 144.819303, 13.563209 ], [ 144.8192, 13.563208 ], [ 144.819181, 13.563151 ], [ 144.819157, 13.563103 ], [ 144.819109, 13.56304 ], [ 144.81908, 13.562964 ], [ 144.819032, 13.562891 ], [ 144.818959, 13.562829 ], [ 144.818916, 13.562713 ], [ 144.818897, 13.562637 ], [ 144.818844, 13.56256 ], [ 144.818771, 13.562511 ], [ 144.818698, 13.562482 ], [ 144.818625, 13.562448 ], [ 144.818602, 13.562376 ], [ 144.818578, 13.56228 ], [ 144.818598, 13.562252 ], [ 144.818559, 13.562223 ], [ 144.81851, 13.562208 ], [ 144.818443, 13.562116 ], [ 144.818395, 13.56203 ], [ 144.818352, 13.56192 ], [ 144.818342, 13.561853 ], [ 144.818348, 13.561747 ], [ 144.818379, 13.561638 ], [ 144.818335, 13.56157 ], [ 144.818341, 13.561523 ], [ 144.818314, 13.561508 ], [ 144.81828, 13.561469 ], [ 144.818242, 13.561393 ], [ 144.818189, 13.561268 ], [ 144.81817, 13.561201 ], [ 144.818166, 13.561124 ], [ 144.818142, 13.561052 ], [ 144.818128, 13.56098 ], [ 144.81809, 13.560899 ], [ 144.818061, 13.560855 ], [ 144.818042, 13.560774 ], [ 144.818018, 13.56074 ], [ 144.817949, 13.560725 ], [ 144.81793, 13.560692 ], [ 144.817941, 13.560615 ], [ 144.817956, 13.560553 ], [ 144.817981, 13.560482 ], [ 144.817962, 13.560386 ], [ 144.817958, 13.560319 ], [ 144.817959, 13.560262 ], [ 144.81793, 13.560185 ], [ 144.817892, 13.560113 ], [ 144.817838, 13.56005 ], [ 144.81778, 13.559968 ], [ 144.817752, 13.559906 ], [ 144.817747, 13.559829 ], [ 144.817758, 13.559753 ], [ 144.817768, 13.559729 ], [ 144.817739, 13.559667 ], [ 144.817696, 13.559628 ], [ 144.817676, 13.559597 ], [ 144.817643, 13.559546 ], [ 144.817604, 13.559465 ], [ 144.81761, 13.559393 ], [ 144.817606, 13.559283 ], [ 144.817624, 13.559256 ], [ 144.817587, 13.559178 ], [ 144.8175, 13.559057 ], [ 144.817404, 13.558899 ], [ 144.817273, 13.558759 ], [ 144.817177, 13.558634 ], [ 144.817075, 13.558509 ], [ 144.816682, 13.55818 ], [ 144.816527, 13.558059 ], [ 144.816328, 13.557938 ], [ 144.816187, 13.557865 ], [ 144.816041, 13.557782 ], [ 144.815939, 13.557729 ], [ 144.815807, 13.557685 ], [ 144.8155, 13.557572 ], [ 144.815432, 13.557552 ], [ 144.815364, 13.557518 ], [ 144.815242, 13.557484 ], [ 144.815037, 13.557439 ], [ 144.814827, 13.557423 ], [ 144.814661, 13.557431 ], [ 144.8145, 13.557415 ], [ 144.814402, 13.557428 ], [ 144.814294, 13.557432 ], [ 144.814197, 13.557403 ], [ 144.814173, 13.557359 ], [ 144.814256, 13.557298 ], [ 144.81434, 13.55726 ], [ 144.814408, 13.557237 ], [ 144.814433, 13.557218 ], [ 144.814467, 13.557161 ], [ 144.814477, 13.557046 ], [ 144.814478, 13.556931 ], [ 144.814421, 13.556779 ], [ 144.814368, 13.556688 ], [ 144.814325, 13.556573 ], [ 144.814244, 13.556425 ], [ 144.814066, 13.556237 ], [ 144.813912, 13.556031 ], [ 144.813728, 13.555844 ], [ 144.813589, 13.555685 ], [ 144.813337, 13.555526 ], [ 144.813177, 13.55541 ], [ 144.812902, 13.555227 ], [ 144.812673, 13.555158 ], [ 144.812603, 13.555148 ], [ 144.812452, 13.555156 ], [ 144.812354, 13.555155 ], [ 144.812257, 13.555216 ], [ 144.812261, 13.555264 ], [ 144.812246, 13.555331 ], [ 144.812206, 13.555392 ], [ 144.812211, 13.555445 ], [ 144.81221, 13.555521 ], [ 144.81219, 13.555597 ], [ 144.81216, 13.555611 ], [ 144.812112, 13.555572 ], [ 144.812039, 13.555548 ], [ 144.811986, 13.555495 ], [ 144.811899, 13.555432 ], [ 144.811861, 13.555365 ], [ 144.811818, 13.555303 ], [ 144.811623, 13.555249 ], [ 144.811517, 13.555181 ], [ 144.811425, 13.555133 ], [ 144.811299, 13.555032 ], [ 144.811183, 13.554945 ], [ 144.811063, 13.554782 ], [ 144.810986, 13.554672 ], [ 144.810953, 13.554543 ], [ 144.810974, 13.55441 ], [ 144.810984, 13.554305 ], [ 144.811053, 13.554215 ], [ 144.81111, 13.55419 ], [ 144.811278, 13.554117 ], [ 144.811376, 13.554089 ], [ 144.811483, 13.554081 ], [ 144.811581, 13.554048 ], [ 144.811723, 13.553954 ], [ 144.811782, 13.553874 ], [ 144.81182, 13.553746 ], [ 144.811836, 13.553593 ], [ 144.811886, 13.55347 ], [ 144.811921, 13.553299 ], [ 144.811928, 13.553123 ], [ 144.81192, 13.552889 ], [ 144.811893, 13.552617 ], [ 144.811851, 13.552446 ], [ 144.81181, 13.552407 ], [ 144.811796, 13.552307 ], [ 144.811758, 13.552216 ], [ 144.811686, 13.55212 ], [ 144.811589, 13.552038 ], [ 144.811537, 13.551933 ], [ 144.81147, 13.551823 ], [ 144.811418, 13.551665 ], [ 144.811379, 13.551584 ], [ 144.811346, 13.551527 ], [ 144.811347, 13.551427 ], [ 144.811319, 13.551312 ], [ 144.811291, 13.551262 ], [ 144.81129, 13.551259 ], [ 144.811274, 13.551126 ], [ 144.811178, 13.550963 ], [ 144.811156, 13.550744 ], [ 144.811119, 13.550529 ], [ 144.811115, 13.550488 ], [ 144.811106, 13.550353 ], [ 144.811088, 13.550176 ], [ 144.811065, 13.550081 ], [ 144.811007, 13.549971 ], [ 144.81103, 13.549857 ], [ 144.811001, 13.549795 ], [ 144.810987, 13.549728 ], [ 144.811032, 13.549661 ], [ 144.811062, 13.549586 ], [ 144.811019, 13.549438 ], [ 144.810996, 13.549304 ], [ 144.810968, 13.54918 ], [ 144.810896, 13.54907 ], [ 144.810831, 13.548779 ], [ 144.810871, 13.548603 ], [ 144.810887, 13.548469 ], [ 144.810895, 13.548441 ], [ 144.810871, 13.548393 ], [ 144.810827, 13.548383 ], [ 144.810803, 13.548354 ], [ 144.810789, 13.548283 ], [ 144.810784, 13.548217 ], [ 144.81078, 13.548164 ], [ 144.810723, 13.548035 ], [ 144.81069, 13.547891 ], [ 144.810619, 13.547696 ], [ 144.810511, 13.547465 ], [ 144.810471, 13.54738 ], [ 144.8104, 13.547208 ], [ 144.810335, 13.547102 ], [ 144.81021, 13.546916 ], [ 144.810109, 13.546757 ], [ 144.809994, 13.546593 ], [ 144.809907, 13.54647 ], [ 144.80986, 13.546355 ], [ 144.809822, 13.546231 ], [ 144.80974, 13.546106 ], [ 144.809659, 13.545968 ], [ 144.809599, 13.545881 ], [ 144.809396, 13.545708 ], [ 144.80927, 13.545607 ], [ 144.809173, 13.545539 ], [ 144.809018, 13.545471 ], [ 144.808936, 13.545385 ], [ 144.808894, 13.545256 ], [ 144.808759, 13.545083 ], [ 144.808697, 13.544978 ], [ 144.808561, 13.544905 ], [ 144.808488, 13.544871 ], [ 144.808435, 13.544885 ], [ 144.808386, 13.544866 ], [ 144.808377, 13.544809 ], [ 144.808314, 13.544765 ], [ 144.808275, 13.544722 ], [ 144.808223, 13.544588 ], [ 144.808192, 13.54455 ], [ 144.808178, 13.544502 ], [ 144.808183, 13.544454 ], [ 144.808149, 13.544392 ], [ 144.808147, 13.544371 ], [ 144.808145, 13.54434 ], [ 144.808238, 13.544288 ], [ 144.808306, 13.544303 ], [ 144.808345, 13.544318 ], [ 144.808452, 13.54428 ], [ 144.808477, 13.54419 ], [ 144.808481, 13.544114 ], [ 144.808483, 13.544085 ], [ 144.808475, 13.543919 ], [ 144.808472, 13.543757 ], [ 144.808463, 13.543638 ], [ 144.80846, 13.543631 ], [ 144.808368, 13.54338 ], [ 144.808301, 13.54325 ], [ 144.808231, 13.543145 ], [ 144.808102, 13.542939 ], [ 144.807981, 13.542824 ], [ 144.80774, 13.542621 ], [ 144.807623, 13.542559 ], [ 144.807351, 13.542333 ], [ 144.80735, 13.542332 ], [ 144.807259, 13.542222 ], [ 144.807172, 13.542135 ], [ 144.807129, 13.542102 ], [ 144.807042, 13.542001 ], [ 144.80682, 13.541818 ], [ 144.806777, 13.541665 ], [ 144.806681, 13.541507 ], [ 144.806604, 13.541392 ], [ 144.806522, 13.541306 ], [ 144.806456, 13.541143 ], [ 144.806372, 13.540971 ], [ 144.80633, 13.540818 ], [ 144.806279, 13.540551 ], [ 144.806267, 13.540468 ], [ 144.806239, 13.540358 ], [ 144.806112, 13.540123 ], [ 144.80603, 13.53996 ], [ 144.805743, 13.539734 ], [ 144.805149, 13.538956 ], [ 144.80476, 13.538505 ], [ 144.803807, 13.537619 ], [ 144.803699, 13.537516 ], [ 144.803515, 13.537296 ], [ 144.802221, 13.5359 ], [ 144.802121, 13.535791 ], [ 144.802057, 13.535539 ], [ 144.802125, 13.535338 ], [ 144.802009, 13.535154 ], [ 144.802013, 13.534628 ], [ 144.801993, 13.534532 ], [ 144.802033, 13.534412 ], [ 144.802129, 13.533946 ], [ 144.802314, 13.533714 ], [ 144.802358, 13.533617 ], [ 144.802498, 13.533557 ], [ 144.802839, 13.533393 ], [ 144.802855, 13.533288 ], [ 144.802952, 13.533264 ], [ 144.803004, 13.532919 ], [ 144.803032, 13.532807 ], [ 144.803044, 13.532534 ], [ 144.803056, 13.53245 ], [ 144.803144, 13.532446 ], [ 144.80314, 13.532378 ], [ 144.803132, 13.532189 ], [ 144.80316, 13.531973 ], [ 144.80322, 13.53186 ], [ 144.803361, 13.531836 ], [ 144.803369, 13.531752 ], [ 144.803329, 13.531716 ], [ 144.803309, 13.531535 ], [ 144.803317, 13.531399 ], [ 144.80328, 13.531118 ], [ 144.803188, 13.530821 ], [ 144.803077, 13.530384 ], [ 144.803032, 13.529925 ], [ 144.803144, 13.529159 ], [ 144.803381, 13.528059 ], [ 144.803346, 13.527543 ], [ 144.803303, 13.526895 ], [ 144.803339, 13.526412 ], [ 144.803341, 13.526363 ], [ 144.803351, 13.526144 ], [ 144.803355, 13.52604 ], [ 144.803439, 13.525931 ], [ 144.803587, 13.525851 ], [ 144.803788, 13.525759 ], [ 144.803979, 13.52569 ], [ 144.804043, 13.525481 ], [ 144.804005, 13.524997 ], [ 144.803828, 13.524435 ], [ 144.803782, 13.52425 ], [ 144.803764, 13.524155 ], [ 144.803719, 13.523987 ], [ 144.803705, 13.52392 ], [ 144.803667, 13.523867 ], [ 144.803648, 13.523829 ], [ 144.803648, 13.523786 ], [ 144.803634, 13.523724 ], [ 144.803576, 13.523623 ], [ 144.803557, 13.523522 ], [ 144.803529, 13.523412 ], [ 144.803544, 13.523383 ], [ 144.80355, 13.523312 ], [ 144.803545, 13.523278 ], [ 144.803521, 13.52323 ], [ 144.803522, 13.523182 ], [ 144.803536, 13.523149 ], [ 144.803542, 13.523087 ], [ 144.803542, 13.523044 ], [ 144.803553, 13.522996 ], [ 144.803558, 13.522948 ], [ 144.803554, 13.522876 ], [ 144.80357, 13.522671 ], [ 144.803583, 13.522618 ], [ 144.803579, 13.522523 ], [ 144.803569, 13.52248 ], [ 144.803548, 13.522441 ], [ 144.803531, 13.522432 ], [ 144.803462, 13.52246 ], [ 144.803408, 13.522517 ], [ 144.803369, 13.522521 ], [ 144.803339, 13.52253 ], [ 144.80331, 13.522525 ], [ 144.803291, 13.522496 ], [ 144.803281, 13.522463 ], [ 144.803291, 13.522439 ], [ 144.803292, 13.52241 ], [ 144.803272, 13.522377 ], [ 144.803243, 13.522348 ], [ 144.803224, 13.522314 ], [ 144.803215, 13.522285 ], [ 144.80322, 13.522257 ], [ 144.803229, 13.522248 ], [ 144.803254, 13.522228 ], [ 144.803279, 13.522214 ], [ 144.803289, 13.522157 ], [ 144.803289, 13.522114 ], [ 144.803314, 13.52209 ], [ 144.803324, 13.522052 ], [ 144.803368, 13.522043 ], [ 144.803378, 13.522 ], [ 144.803398, 13.521986 ], [ 144.803428, 13.521972 ], [ 144.803433, 13.521933 ], [ 144.803443, 13.521895 ], [ 144.803429, 13.521857 ], [ 144.803439, 13.521823 ], [ 144.803463, 13.521809 ], [ 144.803483, 13.52179 ], [ 144.803483, 13.521757 ], [ 144.803494, 13.52169 ], [ 144.803519, 13.521642 ], [ 144.803509, 13.521609 ], [ 144.80349, 13.521585 ], [ 144.80351, 13.521537 ], [ 144.8035, 13.521484 ], [ 144.803471, 13.521446 ], [ 144.803462, 13.521417 ], [ 144.803462, 13.521384 ], [ 144.803482, 13.521365 ], [ 144.803502, 13.521312 ], [ 144.803522, 13.521274 ], [ 144.803532, 13.521231 ], [ 144.803571, 13.521203 ], [ 144.803596, 13.521194 ], [ 144.803659, 13.521199 ], [ 144.803777, 13.5212 ], [ 144.80382, 13.521229 ], [ 144.803845, 13.521239 ], [ 144.803855, 13.521215 ], [ 144.803874, 13.521215 ], [ 144.80389, 13.521228 ], [ 144.803908, 13.521235 ], [ 144.803948, 13.521206 ], [ 144.803987, 13.521216 ], [ 144.804011, 13.521231 ], [ 144.804065, 13.521226 ], [ 144.804104, 13.521212 ], [ 144.804148, 13.521189 ], [ 144.804207, 13.521185 ], [ 144.804266, 13.521176 ], [ 144.8043, 13.521176 ], [ 144.804334, 13.521138 ], [ 144.804364, 13.521124 ], [ 144.804383, 13.521124 ], [ 144.804408, 13.521148 ], [ 144.804427, 13.521153 ], [ 144.804457, 13.52112 ], [ 144.804506, 13.521092 ], [ 144.804511, 13.521039 ], [ 144.804545, 13.521035 ], [ 144.80458, 13.521025 ], [ 144.804614, 13.520987 ], [ 144.804654, 13.520954 ], [ 144.804688, 13.520969 ], [ 144.804712, 13.520974 ], [ 144.804756, 13.520936 ], [ 144.804791, 13.520922 ], [ 144.80482, 13.520927 ], [ 144.80484, 13.520908 ], [ 144.804821, 13.520879 ], [ 144.80484, 13.52087 ], [ 144.80487, 13.520865 ], [ 144.804894, 13.520846 ], [ 144.804929, 13.520828 ], [ 144.804973, 13.520823 ], [ 144.805016, 13.520833 ], [ 144.805055, 13.520848 ], [ 144.80509, 13.520834 ], [ 144.805134, 13.520829 ], [ 144.805173, 13.520834 ], [ 144.805192, 13.520844 ], [ 144.805261, 13.520835 ], [ 144.805285, 13.520845 ], [ 144.805329, 13.520831 ], [ 144.805354, 13.520831 ], [ 144.805378, 13.520851 ], [ 144.805397, 13.52086 ], [ 144.805446, 13.520866 ], [ 144.805447, 13.520818 ], [ 144.805466, 13.520808 ], [ 144.805504, 13.520813 ], [ 144.805515, 13.520828 ], [ 144.805569, 13.520833 ], [ 144.805603, 13.520829 ], [ 144.805691, 13.520839 ], [ 144.805759, 13.52082 ], [ 144.805789, 13.520835 ], [ 144.805793, 13.520854 ], [ 144.805793, 13.520883 ], [ 144.805822, 13.520902 ], [ 144.805861, 13.520917 ], [ 144.805905, 13.520917 ], [ 144.80592, 13.520903 ], [ 144.805935, 13.52087 ], [ 144.80594, 13.520827 ], [ 144.805911, 13.520779 ], [ 144.805941, 13.520746 ], [ 144.805995, 13.520746 ], [ 144.806019, 13.520761 ], [ 144.806043, 13.520761 ], [ 144.806058, 13.520727 ], [ 144.806059, 13.520694 ], [ 144.806078, 13.520685 ], [ 144.806079, 13.520646 ], [ 144.806123, 13.520623 ], [ 144.806142, 13.520609 ], [ 144.806153, 13.520575 ], [ 144.806167, 13.520552 ], [ 144.806173, 13.520499 ], [ 144.806192, 13.520485 ], [ 144.806193, 13.520432 ], [ 144.806184, 13.520394 ], [ 144.806189, 13.520351 ], [ 144.806209, 13.520284 ], [ 144.806214, 13.520251 ], [ 144.806229, 13.520208 ], [ 144.806254, 13.520194 ], [ 144.806293, 13.520156 ], [ 144.806318, 13.520113 ], [ 144.806329, 13.520036 ], [ 144.806299, 13.520017 ], [ 144.806275, 13.519993 ], [ 144.806298, 13.519945 ], [ 144.806332, 13.519912 ], [ 144.806352, 13.519869 ], [ 144.806363, 13.519731 ], [ 144.806373, 13.519669 ], [ 144.806369, 13.519626 ], [ 144.806341, 13.51953 ], [ 144.806302, 13.519501 ], [ 144.806253, 13.5195 ], [ 144.806214, 13.519466 ], [ 144.80618, 13.519447 ], [ 144.80618, 13.519394 ], [ 144.80622, 13.519352 ], [ 144.806255, 13.519256 ], [ 144.806221, 13.519213 ], [ 144.806202, 13.51917 ], [ 144.806203, 13.519093 ], [ 144.80619, 13.518935 ], [ 144.806141, 13.518854 ], [ 144.806112, 13.51882 ], [ 144.806079, 13.518762 ], [ 144.806065, 13.518705 ], [ 144.806077, 13.518691 ], [ 144.806068, 13.518638 ], [ 144.805966, 13.518532 ], [ 144.805962, 13.518484 ], [ 144.805943, 13.518374 ], [ 144.805905, 13.518254 ], [ 144.805847, 13.518158 ], [ 144.805833, 13.51811 ], [ 144.80583, 13.518096 ], [ 144.805824, 13.518062 ], [ 144.805814, 13.518038 ], [ 144.805785, 13.518014 ], [ 144.805766, 13.51799 ], [ 144.805757, 13.517944 ], [ 144.805749, 13.517927 ], [ 144.805702, 13.517793 ], [ 144.805676, 13.517697 ], [ 144.805662, 13.517611 ], [ 144.805638, 13.517549 ], [ 144.805619, 13.51752 ], [ 144.805571, 13.517395 ], [ 144.805532, 13.517352 ], [ 144.805513, 13.517309 ], [ 144.805484, 13.517222 ], [ 144.80548, 13.517179 ], [ 144.805456, 13.517098 ], [ 144.805458, 13.516873 ], [ 144.805435, 13.516796 ], [ 144.805372, 13.516676 ], [ 144.805358, 13.516604 ], [ 144.805331, 13.516398 ], [ 144.805295, 13.516293 ], [ 144.805276, 13.516202 ], [ 144.805243, 13.516115 ], [ 144.805205, 13.516034 ], [ 144.805147, 13.515928 ], [ 144.805103, 13.51587 ], [ 144.805089, 13.515794 ], [ 144.805087, 13.51579 ], [ 144.805066, 13.515741 ], [ 144.805017, 13.515697 ], [ 144.805008, 13.515645 ], [ 144.80494, 13.515544 ], [ 144.804902, 13.515443 ], [ 144.804801, 13.515294 ], [ 144.804758, 13.515217 ], [ 144.8047, 13.515126 ], [ 144.804627, 13.515058 ], [ 144.804535, 13.514912 ], [ 144.804454, 13.514784 ], [ 144.804323, 13.514606 ], [ 144.804188, 13.514466 ], [ 144.804038, 13.514278 ], [ 144.80397, 13.514182 ], [ 144.803874, 13.514076 ], [ 144.803811, 13.513985 ], [ 144.803793, 13.513939 ], [ 144.803715, 13.513845 ], [ 144.803546, 13.513624 ], [ 144.803454, 13.513479 ], [ 144.803367, 13.513359 ], [ 144.80329, 13.513234 ], [ 144.803184, 13.513075 ], [ 144.803102, 13.51296 ], [ 144.803056, 13.512878 ], [ 144.803013, 13.512782 ], [ 144.802941, 13.512681 ], [ 144.802888, 13.51259 ], [ 144.802825, 13.512508 ], [ 144.802758, 13.512412 ], [ 144.802715, 13.512355 ], [ 144.802666, 13.512291 ], [ 144.802627, 13.512219 ], [ 144.802546, 13.512094 ], [ 144.802439, 13.511983 ], [ 144.802362, 13.511892 ], [ 144.80227, 13.511762 ], [ 144.802212, 13.511671 ], [ 144.802135, 13.511574 ], [ 144.80211, 13.511506 ], [ 144.802099, 13.511478 ], [ 144.802022, 13.511325 ], [ 144.801989, 13.511272 ], [ 144.801984, 13.511263 ], [ 144.801955, 13.511204 ], [ 144.801907, 13.511128 ], [ 144.801873, 13.51106 ], [ 144.801854, 13.510984 ], [ 144.801816, 13.510935 ], [ 144.801787, 13.510849 ], [ 144.801768, 13.510777 ], [ 144.801687, 13.510647 ], [ 144.801632, 13.51053 ], [ 144.801624, 13.510513 ], [ 144.801566, 13.510426 ], [ 144.801489, 13.510325 ], [ 144.801476, 13.510306 ], [ 144.801436, 13.510248 ], [ 144.801422, 13.510167 ], [ 144.801362, 13.510085 ], [ 144.801314, 13.510003 ], [ 144.801178, 13.50983 ], [ 144.801145, 13.509777 ], [ 144.80113, 13.509734 ], [ 144.801131, 13.509701 ], [ 144.801117, 13.509638 ], [ 144.801083, 13.50959 ], [ 144.801054, 13.509533 ], [ 144.801049, 13.509523 ], [ 144.800996, 13.50947 ], [ 144.8009, 13.509335 ], [ 144.800856, 13.509296 ], [ 144.800817, 13.509277 ], [ 144.800769, 13.509238 ], [ 144.800662, 13.509132 ], [ 144.800589, 13.509045 ], [ 144.800532, 13.508954 ], [ 144.80044, 13.508862 ], [ 144.800372, 13.508771 ], [ 144.800273, 13.508665 ], [ 144.80022, 13.508602 ], [ 144.800205, 13.508559 ], [ 144.800153, 13.508473 ], [ 144.800104, 13.508434 ], [ 144.800046, 13.508395 ], [ 144.799997, 13.508352 ], [ 144.799925, 13.508255 ], [ 144.799906, 13.508207 ], [ 144.799746, 13.508053 ], [ 144.799649, 13.507971 ], [ 144.799552, 13.507898 ], [ 144.799445, 13.507826 ], [ 144.799372, 13.507768 ], [ 144.7993, 13.507681 ], [ 144.799219, 13.507605 ], [ 144.799193, 13.50758 ], [ 144.799156, 13.507533 ], [ 144.79914, 13.507522 ], [ 144.798999, 13.507401 ], [ 144.798662, 13.507154 ], [ 144.79858, 13.507077 ], [ 144.79853, 13.507036 ], [ 144.79851, 13.507019 ], [ 144.798453, 13.506971 ], [ 144.798434, 13.506956 ], [ 144.798415, 13.506943 ], [ 144.798361, 13.506907 ], [ 144.798343, 13.506895 ], [ 144.798182, 13.506786 ], [ 144.798031, 13.506694 ], [ 144.797842, 13.506559 ], [ 144.79771, 13.506486 ], [ 144.797624, 13.506445 ], [ 144.797345, 13.506315 ], [ 144.797238, 13.506271 ], [ 144.797126, 13.506232 ], [ 144.797027, 13.506193 ], [ 144.797014, 13.506188 ], [ 144.796902, 13.506173 ], [ 144.796705, 13.506114 ], [ 144.796617, 13.506079 ], [ 144.796549, 13.50606 ], [ 144.796451, 13.506021 ], [ 144.796061, 13.505907 ], [ 144.795945, 13.505868 ], [ 144.795789, 13.505833 ], [ 144.795652, 13.505794 ], [ 144.795379, 13.505686 ], [ 144.795311, 13.505638 ], [ 144.795229, 13.505603 ], [ 144.79516, 13.505588 ], [ 144.795004, 13.505601 ], [ 144.794951, 13.505558 ], [ 144.794873, 13.505524 ], [ 144.794753, 13.505508 ], [ 144.79467, 13.505493 ], [ 144.794602, 13.505473 ], [ 144.79429, 13.505437 ], [ 144.794069, 13.505454 ], [ 144.793894, 13.505458 ], [ 144.793811, 13.505433 ], [ 144.793752, 13.505404 ], [ 144.79366, 13.505384 ], [ 144.793533, 13.505321 ], [ 144.793349, 13.50518 ], [ 144.793169, 13.505102 ], [ 144.792984, 13.505 ], [ 144.792798, 13.504937 ], [ 144.792738, 13.504917 ], [ 144.79266, 13.504868 ], [ 144.792577, 13.504829 ], [ 144.792285, 13.504712 ], [ 144.791959, 13.504589 ], [ 144.791779, 13.504531 ], [ 144.791618, 13.504496 ], [ 144.791467, 13.504456 ], [ 144.791392, 13.504441 ], [ 144.791311, 13.504426 ], [ 144.791023, 13.50438 ], [ 144.790842, 13.504341 ], [ 144.790708, 13.504325 ], [ 144.790684, 13.50431 ], [ 144.790645, 13.504301 ], [ 144.790616, 13.504267 ], [ 144.790587, 13.504262 ], [ 144.790533, 13.504261 ], [ 144.79045, 13.504251 ], [ 144.790396, 13.50425 ], [ 144.790308, 13.50425 ], [ 144.790196, 13.504239 ], [ 144.790113, 13.504238 ], [ 144.79002, 13.504228 ], [ 144.789893, 13.504227 ], [ 144.789639, 13.504249 ], [ 144.789521, 13.504276 ], [ 144.789332, 13.5043 ], [ 144.789193, 13.504364 ], [ 144.788947, 13.504486 ], [ 144.788786, 13.504547 ], [ 144.78869, 13.50457 ], [ 144.788563, 13.504588 ], [ 144.788352, 13.504634 ], [ 144.788245, 13.504643 ], [ 144.788123, 13.504646 ], [ 144.788059, 13.50466 ], [ 144.787878, 13.504668 ], [ 144.787834, 13.504687 ], [ 144.78779, 13.50472 ], [ 144.787731, 13.504748 ], [ 144.787647, 13.504776 ], [ 144.787618, 13.504781 ], [ 144.787578, 13.504838 ], [ 144.787529, 13.504866 ], [ 144.78749, 13.504894 ], [ 144.787469, 13.504918 ], [ 144.78745, 13.504942 ], [ 144.787372, 13.50497 ], [ 144.787337, 13.505008 ], [ 144.787259, 13.505026 ], [ 144.787225, 13.50505 ], [ 144.787215, 13.505078 ], [ 144.787175, 13.505102 ], [ 144.787121, 13.505125 ], [ 144.787082, 13.505168 ], [ 144.786998, 13.505244 ], [ 144.786915, 13.505296 ], [ 144.786856, 13.505314 ], [ 144.786807, 13.505323 ], [ 144.786782, 13.505347 ], [ 144.786757, 13.505404 ], [ 144.786703, 13.505447 ], [ 144.786668, 13.505494 ], [ 144.786646, 13.505561 ], [ 144.786571, 13.505694 ], [ 144.786521, 13.505837 ], [ 144.786491, 13.505904 ], [ 144.786481, 13.505966 ], [ 144.786485, 13.506019 ], [ 144.786475, 13.506076 ], [ 144.786468, 13.506248 ], [ 144.786473, 13.50632 ], [ 144.786374, 13.506439 ], [ 144.786335, 13.506438 ], [ 144.78631, 13.506424 ], [ 144.786281, 13.506423 ], [ 144.786232, 13.506456 ], [ 144.786201, 13.506489 ], [ 144.786153, 13.506542 ], [ 144.786143, 13.50657 ], [ 144.786108, 13.506613 ], [ 144.786074, 13.506646 ], [ 144.786039, 13.50667 ], [ 144.786029, 13.506703 ], [ 144.786012, 13.506736 ], [ 144.786, 13.506751 ], [ 144.785955, 13.506765 ], [ 144.785906, 13.506774 ], [ 144.785848, 13.506812 ], [ 144.785769, 13.50684 ], [ 144.785739, 13.506882 ], [ 144.785653, 13.50692 ], [ 144.785599, 13.506958 ], [ 144.785555, 13.506996 ], [ 144.785491, 13.507071 ], [ 144.785373, 13.507166 ], [ 144.785284, 13.507275 ], [ 144.785239, 13.507304 ], [ 144.785195, 13.507318 ], [ 144.785181, 13.507337 ], [ 144.785146, 13.50736 ], [ 144.785112, 13.507365 ], [ 144.785087, 13.50736 ], [ 144.785039, 13.507369 ], [ 144.784975, 13.507373 ], [ 144.784936, 13.507368 ], [ 144.784902, 13.507387 ], [ 144.784877, 13.507406 ], [ 144.784847, 13.507444 ], [ 144.784823, 13.507458 ], [ 144.784793, 13.507457 ], [ 144.784769, 13.507467 ], [ 144.784759, 13.507491 ], [ 144.784759, 13.507519 ], [ 144.784749, 13.507543 ], [ 144.78468, 13.507614 ], [ 144.78465, 13.507652 ], [ 144.784645, 13.507686 ], [ 144.78462, 13.507676 ], [ 144.784582, 13.507642 ], [ 144.784557, 13.507627 ], [ 144.784528, 13.507637 ], [ 144.784459, 13.507641 ], [ 144.784425, 13.507636 ], [ 144.784391, 13.507626 ], [ 144.784386, 13.507645 ], [ 144.784366, 13.507664 ], [ 144.784327, 13.507678 ], [ 144.784288, 13.507697 ], [ 144.784204, 13.507753 ], [ 144.784175, 13.507768 ], [ 144.78414, 13.507777 ], [ 144.784062, 13.507781 ], [ 144.783999, 13.507804 ], [ 144.78394, 13.507842 ], [ 144.783846, 13.507889 ], [ 144.783807, 13.507913 ], [ 144.783748, 13.507941 ], [ 144.783694, 13.507974 ], [ 144.783669, 13.50804 ], [ 144.783635, 13.508054 ], [ 144.783605, 13.508112 ], [ 144.783575, 13.50813 ], [ 144.78355, 13.508168 ], [ 144.783531, 13.508187 ], [ 144.783492, 13.508201 ], [ 144.783457, 13.508211 ], [ 144.783442, 13.508234 ], [ 144.783437, 13.508268 ], [ 144.783393, 13.508258 ], [ 144.783356, 13.508258 ], [ 144.783349, 13.508258 ], [ 144.783326, 13.508251 ], [ 144.783227, 13.508314 ], [ 144.783197, 13.508323 ], [ 144.783163, 13.508294 ], [ 144.783114, 13.508289 ], [ 144.78308, 13.50827 ], [ 144.783027, 13.508212 ], [ 144.782988, 13.508197 ], [ 144.782881, 13.508201 ], [ 144.782847, 13.508172 ], [ 144.782803, 13.508157 ], [ 144.782788, 13.508133 ], [ 144.78275, 13.508109 ], [ 144.782711, 13.508104 ], [ 144.782691, 13.508084 ], [ 144.782506, 13.508044 ], [ 144.782428, 13.508034 ], [ 144.782301, 13.508038 ], [ 144.782247, 13.508033 ], [ 144.782227, 13.508075 ], [ 144.782159, 13.508037 ], [ 144.782105, 13.508031 ], [ 144.782003, 13.50803 ], [ 144.781964, 13.508006 ], [ 144.781944, 13.507987 ], [ 144.781906, 13.507967 ], [ 144.781866, 13.507972 ], [ 144.781857, 13.507971 ], [ 144.781803, 13.507967 ], [ 144.781754, 13.508009 ], [ 144.781719, 13.508018 ], [ 144.781666, 13.508013 ], [ 144.781626, 13.508037 ], [ 144.781602, 13.508046 ], [ 144.781587, 13.508079 ], [ 144.781543, 13.508084 ], [ 144.781479, 13.508102 ], [ 144.78143, 13.508107 ], [ 144.781323, 13.508111 ], [ 144.781274, 13.508077 ], [ 144.781245, 13.508062 ], [ 144.781187, 13.508042 ], [ 144.781157, 13.508018 ], [ 144.781113, 13.508018 ], [ 144.781089, 13.508008 ], [ 144.78106, 13.507979 ], [ 144.780997, 13.507969 ], [ 144.780968, 13.507945 ], [ 144.780933, 13.50794 ], [ 144.780889, 13.507944 ], [ 144.780816, 13.507929 ], [ 144.780768, 13.50791 ], [ 144.780743, 13.507871 ], [ 144.780699, 13.507866 ], [ 144.780656, 13.507842 ], [ 144.780651, 13.507841 ], [ 144.780607, 13.507841 ], [ 144.780568, 13.507817 ], [ 144.780539, 13.507793 ], [ 144.780495, 13.507768 ], [ 144.780446, 13.507758 ], [ 144.780427, 13.507725 ], [ 144.780403, 13.507705 ], [ 144.780369, 13.507691 ], [ 144.780349, 13.507705 ], [ 144.78032, 13.5077 ], [ 144.780315, 13.507676 ], [ 144.780286, 13.507661 ], [ 144.780242, 13.507661 ], [ 144.780203, 13.507651 ], [ 144.780133, 13.507603 ], [ 144.779927, 13.507601 ], [ 144.779888, 13.507586 ], [ 144.779908, 13.507562 ], [ 144.779879, 13.507533 ], [ 144.779845, 13.507533 ], [ 144.779806, 13.507504 ], [ 144.779777, 13.507475 ], [ 144.779748, 13.507437 ], [ 144.779699, 13.507417 ], [ 144.779661, 13.507393 ], [ 144.779622, 13.507383 ], [ 144.779568, 13.507363 ], [ 144.779544, 13.507339 ], [ 144.77949, 13.507334 ], [ 144.779451, 13.507353 ], [ 144.779407, 13.507352 ], [ 144.779378, 13.507338 ], [ 144.779354, 13.507271 ], [ 144.779237, 13.507255 ], [ 144.779213, 13.507222 ], [ 144.779188, 13.507217 ], [ 144.779139, 13.507216 ], [ 144.779105, 13.507244 ], [ 144.779046, 13.507239 ], [ 144.778973, 13.507186 ], [ 144.778945, 13.507147 ], [ 144.778925, 13.507113 ], [ 144.778892, 13.507056 ], [ 144.778833, 13.507027 ], [ 144.778745, 13.507012 ], [ 144.778692, 13.507026 ], [ 144.778643, 13.50702 ], [ 144.778594, 13.507001 ], [ 144.778545, 13.506972 ], [ 144.778507, 13.506957 ], [ 144.778438, 13.506947 ], [ 144.778384, 13.50698 ], [ 144.77834, 13.50697 ], [ 144.778241, 13.506902 ], [ 144.778236, 13.506878 ], [ 144.778192, 13.506859 ], [ 144.778134, 13.506863 ], [ 144.778084, 13.506896 ], [ 144.778026, 13.506895 ], [ 144.777997, 13.506866 ], [ 144.777948, 13.506837 ], [ 144.777817, 13.506788 ], [ 144.777748, 13.506778 ], [ 144.777675, 13.506749 ], [ 144.777539, 13.506738 ], [ 144.777485, 13.506747 ], [ 144.77745, 13.506785 ], [ 144.777377, 13.506818 ], [ 144.777313, 13.506817 ], [ 144.777269, 13.50679 ], [ 144.777225, 13.506793 ], [ 144.777191, 13.506773 ], [ 144.777143, 13.506754 ], [ 144.777084, 13.506753 ], [ 144.777025, 13.506743 ], [ 144.776977, 13.506724 ], [ 144.776923, 13.50668 ], [ 144.776875, 13.506608 ], [ 144.776812, 13.506579 ], [ 144.776729, 13.506578 ], [ 144.77667, 13.506616 ], [ 144.77665, 13.506649 ], [ 144.776606, 13.506653 ], [ 144.776547, 13.506653 ], [ 144.776493, 13.506671 ], [ 144.776445, 13.506671 ], [ 144.776381, 13.50668 ], [ 144.776346, 13.506708 ], [ 144.776307, 13.506732 ], [ 144.776209, 13.506831 ], [ 144.776159, 13.506855 ], [ 144.776096, 13.506854 ], [ 144.776008, 13.506868 ], [ 144.775984, 13.506858 ], [ 144.775886, 13.506843 ], [ 144.775808, 13.506823 ], [ 144.775769, 13.506823 ], [ 144.775705, 13.506837 ], [ 144.775657, 13.506807 ], [ 144.775627, 13.506793 ], [ 144.775598, 13.506769 ], [ 144.775549, 13.506763 ], [ 144.775452, 13.506763 ], [ 144.775408, 13.506734 ], [ 144.775359, 13.506728 ], [ 144.7753, 13.506742 ], [ 144.775256, 13.506742 ], [ 144.775188, 13.506736 ], [ 144.775139, 13.506726 ], [ 144.775086, 13.506692 ], [ 144.775057, 13.506663 ], [ 144.775048, 13.506616 ], [ 144.775004, 13.506606 ], [ 144.774896, 13.506605 ], [ 144.774813, 13.50659 ], [ 144.774769, 13.506575 ], [ 144.77475, 13.506532 ], [ 144.774726, 13.506498 ], [ 144.774697, 13.506498 ], [ 144.774638, 13.506516 ], [ 144.774579, 13.506516 ], [ 144.7745, 13.506485 ], [ 144.774399, 13.506447 ], [ 144.774312, 13.506394 ], [ 144.774307, 13.50637 ], [ 144.774307, 13.506332 ], [ 144.774278, 13.506288 ], [ 144.77422, 13.506264 ], [ 144.774187, 13.506178 ], [ 144.774182, 13.506144 ], [ 144.774139, 13.506101 ], [ 144.774124, 13.506062 ], [ 144.77411, 13.506038 ], [ 144.774076, 13.506019 ], [ 144.774027, 13.506018 ], [ 144.773997, 13.506028 ], [ 144.773934, 13.506022 ], [ 144.773876, 13.506003 ], [ 144.773852, 13.50594 ], [ 144.773852, 13.505907 ], [ 144.773813, 13.505868 ], [ 144.773775, 13.505801 ], [ 144.773751, 13.505777 ], [ 144.773751, 13.505686 ], [ 144.773722, 13.505662 ], [ 144.773698, 13.505628 ], [ 144.773645, 13.505604 ], [ 144.77362, 13.50558 ], [ 144.773626, 13.505551 ], [ 144.773621, 13.505527 ], [ 144.773592, 13.505508 ], [ 144.773573, 13.505484 ], [ 144.773578, 13.505455 ], [ 144.773571, 13.505374 ], [ 144.773542, 13.505369 ], [ 144.773524, 13.505311 ], [ 144.773518, 13.505292 ], [ 144.773482, 13.505261 ], [ 144.773465, 13.505253 ], [ 144.773396, 13.505281 ], [ 144.773362, 13.505281 ], [ 144.773347, 13.505247 ], [ 144.773352, 13.50521 ], [ 144.773353, 13.505209 ], [ 144.773334, 13.505123 ], [ 144.773286, 13.505055 ], [ 144.773232, 13.505045 ], [ 144.773213, 13.505026 ], [ 144.773194, 13.504978 ], [ 144.773184, 13.504935 ], [ 144.773155, 13.50493 ], [ 144.773135, 13.504949 ], [ 144.773101, 13.504973 ], [ 144.773047, 13.504962 ], [ 144.773023, 13.504938 ], [ 144.773023, 13.504905 ], [ 144.773048, 13.504881 ], [ 144.773009, 13.504862 ], [ 144.77297, 13.504904 ], [ 144.772886, 13.504918 ], [ 144.772848, 13.504889 ], [ 144.772814, 13.504836 ], [ 144.772765, 13.504788 ], [ 144.772741, 13.504754 ], [ 144.772693, 13.504735 ], [ 144.772658, 13.504753 ], [ 144.772629, 13.504729 ], [ 144.772629, 13.504696 ], [ 144.77262, 13.504662 ], [ 144.772542, 13.504609 ], [ 144.772489, 13.504608 ], [ 144.772441, 13.50463 ], [ 144.77242, 13.504641 ], [ 144.772268, 13.504626 ], [ 144.772239, 13.504606 ], [ 144.772196, 13.504568 ], [ 144.772216, 13.504539 ], [ 144.772265, 13.504511 ], [ 144.772236, 13.504472 ], [ 144.772177, 13.504467 ], [ 144.772153, 13.504443 ], [ 144.772114, 13.504414 ], [ 144.772114, 13.50438 ], [ 144.772071, 13.504342 ], [ 144.772093, 13.504299 ], [ 144.772084, 13.504256 ], [ 144.772084, 13.504208 ], [ 144.77205, 13.504193 ], [ 144.771963, 13.504145 ], [ 144.771944, 13.504087 ], [ 144.771949, 13.504049 ], [ 144.771944, 13.504006 ], [ 144.771862, 13.503981 ], [ 144.771837, 13.503962 ], [ 144.771818, 13.503928 ], [ 144.771784, 13.503928 ], [ 144.77176, 13.503909 ], [ 144.77177, 13.503871 ], [ 144.77177, 13.503853 ], [ 144.771726, 13.503862 ], [ 144.771682, 13.503852 ], [ 144.771628, 13.503904 ], [ 144.771559, 13.503927 ], [ 144.771505, 13.503927 ], [ 144.771481, 13.503903 ], [ 144.771511, 13.503855 ], [ 144.771516, 13.503802 ], [ 144.771492, 13.50375 ], [ 144.771444, 13.503716 ], [ 144.7714, 13.503658 ], [ 144.771357, 13.503615 ], [ 144.771313, 13.503595 ], [ 144.771279, 13.503561 ], [ 144.771245, 13.503513 ], [ 144.771246, 13.50347 ], [ 144.771236, 13.503437 ], [ 144.771207, 13.503408 ], [ 144.771183, 13.503369 ], [ 144.771178, 13.50334 ], [ 144.77114, 13.503321 ], [ 144.771034, 13.50332 ], [ 144.771018, 13.50331 ], [ 144.771008, 13.503253 ], [ 144.77095, 13.503204 ], [ 144.770936, 13.503176 ], [ 144.770936, 13.503128 ], [ 144.770932, 13.503094 ], [ 144.770908, 13.503037 ], [ 144.7708, 13.503002 ], [ 144.770742, 13.503002 ], [ 144.770727, 13.502987 ], [ 144.770709, 13.502868 ], [ 144.77068, 13.502843 ], [ 144.770626, 13.502805 ], [ 144.770622, 13.502762 ], [ 144.770632, 13.502704 ], [ 144.770667, 13.502666 ], [ 144.770653, 13.502552 ], [ 144.770644, 13.502513 ], [ 144.770615, 13.502484 ], [ 144.770566, 13.502465 ], [ 144.770464, 13.502449 ], [ 144.77039, 13.502449 ], [ 144.770366, 13.502434 ], [ 144.770357, 13.502396 ], [ 144.770381, 13.502363 ], [ 144.770381, 13.502361 ], [ 144.770406, 13.502286 ], [ 144.770417, 13.502186 ], [ 144.770437, 13.502119 ], [ 144.770419, 13.501995 ], [ 144.77039, 13.501932 ], [ 144.770342, 13.501884 ], [ 144.770328, 13.501841 ], [ 144.770335, 13.501769 ], [ 144.770316, 13.50174 ], [ 144.770273, 13.501707 ], [ 144.770244, 13.501678 ], [ 144.770249, 13.501639 ], [ 144.770239, 13.501596 ], [ 144.770191, 13.501543 ], [ 144.770152, 13.501529 ], [ 144.770098, 13.501523 ], [ 144.770064, 13.50149 ], [ 144.770046, 13.501408 ], [ 144.770017, 13.501374 ], [ 144.769959, 13.501293 ], [ 144.769937, 13.501268 ], [ 144.769925, 13.501254 ], [ 144.769915, 13.50122 ], [ 144.769921, 13.501182 ], [ 144.769931, 13.501154 ], [ 144.769926, 13.50113 ], [ 144.769907, 13.501101 ], [ 144.769897, 13.501067 ], [ 144.769898, 13.501024 ], [ 144.769888, 13.501 ], [ 144.769859, 13.500957 ], [ 144.769816, 13.500928 ], [ 144.769821, 13.50091 ], [ 144.769821, 13.500885 ], [ 144.769772, 13.500856 ], [ 144.769753, 13.500836 ], [ 144.769748, 13.500803 ], [ 144.769666, 13.500721 ], [ 144.769646, 13.500721 ], [ 144.769637, 13.500705 ], [ 144.769637, 13.500639 ], [ 144.769623, 13.500591 ], [ 144.769609, 13.500558 ], [ 144.769572, 13.500548 ], [ 144.769543, 13.500524 ], [ 144.769505, 13.500447 ], [ 144.76951, 13.500414 ], [ 144.76952, 13.500385 ], [ 144.769506, 13.500337 ], [ 144.769496, 13.500335 ], [ 144.769433, 13.500322 ], [ 144.769403, 13.500288 ], [ 144.769384, 13.500283 ], [ 144.769365, 13.500254 ], [ 144.76937, 13.500235 ], [ 144.769361, 13.500183 ], [ 144.769361, 13.500154 ], [ 144.769371, 13.500137 ], [ 144.769357, 13.500106 ], [ 144.769357, 13.500039 ], [ 144.769328, 13.499991 ], [ 144.769314, 13.499943 ], [ 144.76926, 13.499938 ], [ 144.769256, 13.499909 ], [ 144.769261, 13.49989 ], [ 144.769261, 13.499857 ], [ 144.769256, 13.499833 ], [ 144.769203, 13.499813 ], [ 144.76913, 13.499765 ], [ 144.769128, 13.499762 ], [ 144.769111, 13.499745 ], [ 144.769106, 13.499721 ], [ 144.769111, 13.499678 ], [ 144.769121, 13.499659 ], [ 144.769151, 13.49965 ], [ 144.769166, 13.499626 ], [ 144.769186, 13.49955 ], [ 144.76924, 13.499507 ], [ 144.769241, 13.499369 ], [ 144.769247, 13.499326 ], [ 144.769262, 13.499264 ], [ 144.769326, 13.49915 ], [ 144.769364, 13.499069 ], [ 144.769394, 13.498988 ], [ 144.769424, 13.498921 ], [ 144.769453, 13.498897 ], [ 144.769503, 13.498769 ], [ 144.769509, 13.498716 ], [ 144.769558, 13.498697 ], [ 144.769582, 13.498669 ], [ 144.769578, 13.498611 ], [ 144.769593, 13.498535 ], [ 144.769614, 13.498473 ], [ 144.769646, 13.498401 ], [ 144.769658, 13.498378 ], [ 144.769688, 13.498362 ], [ 144.769707, 13.498364 ], [ 144.769737, 13.498336 ], [ 144.769767, 13.498288 ], [ 144.769792, 13.498236 ], [ 144.769778, 13.498183 ], [ 144.769768, 13.498116 ], [ 144.769769, 13.498039 ], [ 144.769775, 13.497968 ], [ 144.769779, 13.49796 ], [ 144.769795, 13.49793 ], [ 144.769814, 13.497906 ], [ 144.76982, 13.497849 ], [ 144.769854, 13.497825 ], [ 144.769889, 13.497806 ], [ 144.769926, 13.497749 ], [ 144.769887, 13.497701 ], [ 144.769888, 13.497653 ], [ 144.769917, 13.49761 ], [ 144.769942, 13.497548 ], [ 144.769945, 13.497517 ], [ 144.769953, 13.497448 ], [ 144.769963, 13.497405 ], [ 144.769968, 13.497362 ], [ 144.769979, 13.497332 ], [ 144.769974, 13.497266 ], [ 144.76996, 13.497165 ], [ 144.769912, 13.497084 ], [ 144.769894, 13.496906 ], [ 144.769878, 13.496815 ], [ 144.769861, 13.49672 ], [ 144.769833, 13.496614 ], [ 144.769799, 13.496566 ], [ 144.76978, 13.496494 ], [ 144.769796, 13.496399 ], [ 144.769753, 13.496331 ], [ 144.769743, 13.496264 ], [ 144.769774, 13.49614 ], [ 144.769804, 13.496059 ], [ 144.769824, 13.495993 ], [ 144.769824, 13.495991 ], [ 144.769859, 13.495916 ], [ 144.76986, 13.495859 ], [ 144.769836, 13.495806 ], [ 144.769836, 13.495768 ], [ 144.769851, 13.495735 ], [ 144.769876, 13.495701 ], [ 144.769871, 13.495649 ], [ 144.769891, 13.495601 ], [ 144.769921, 13.495563 ], [ 144.769926, 13.495539 ], [ 144.769946, 13.495506 ], [ 144.769951, 13.495468 ], [ 144.769927, 13.49541 ], [ 144.769987, 13.49532 ], [ 144.770007, 13.495253 ], [ 144.770041, 13.495172 ], [ 144.770047, 13.495158 ], [ 144.770076, 13.495153 ], [ 144.77012, 13.495158 ], [ 144.770194, 13.495126 ], [ 144.770243, 13.495121 ], [ 144.770311, 13.495122 ], [ 144.770394, 13.495142 ], [ 144.770575, 13.495167 ], [ 144.770619, 13.495139 ], [ 144.770673, 13.495125 ], [ 144.770726, 13.495135 ], [ 144.770732, 13.495097 ], [ 144.770786, 13.495073 ], [ 144.770849, 13.495074 ], [ 144.770908, 13.495094 ], [ 144.770971, 13.495099 ], [ 144.771035, 13.495085 ], [ 144.771062, 13.495067 ], [ 144.771064, 13.495066 ], [ 144.771035, 13.495028 ], [ 144.771045, 13.49499 ], [ 144.77109, 13.494961 ], [ 144.771163, 13.494957 ], [ 144.771197, 13.494962 ], [ 144.771227, 13.494929 ], [ 144.771288, 13.494891 ], [ 144.771344, 13.494906 ], [ 144.771393, 13.494912 ], [ 144.771416, 13.494906 ], [ 144.771496, 13.494889 ], [ 144.771608, 13.49489 ], [ 144.771715, 13.49491 ], [ 144.771779, 13.494944 ], [ 144.771794, 13.494954 ], [ 144.771832, 13.494978 ], [ 144.771919, 13.494975 ], [ 144.771945, 13.494974 ], [ 144.772013, 13.494994 ], [ 144.772066, 13.495018 ], [ 144.77211, 13.495061 ], [ 144.772178, 13.4951 ], [ 144.772197, 13.495139 ], [ 144.772344, 13.49514 ], [ 144.772388, 13.495155 ], [ 144.772451, 13.495127 ], [ 144.772515, 13.495118 ], [ 144.772522, 13.495108 ], [ 144.772554, 13.49507 ], [ 144.772638, 13.495028 ], [ 144.772716, 13.495009 ], [ 144.772763, 13.495004 ], [ 144.772799, 13.495001 ], [ 144.772858, 13.494958 ], [ 144.772936, 13.494978 ], [ 144.773, 13.494969 ], [ 144.773064, 13.494931 ], [ 144.773118, 13.494932 ], [ 144.773157, 13.494922 ], [ 144.773196, 13.494899 ], [ 144.773272, 13.494895 ], [ 144.773297, 13.494852 ], [ 144.773331, 13.494838 ], [ 144.773365, 13.494829 ], [ 144.773415, 13.494791 ], [ 144.773415, 13.494743 ], [ 144.773439, 13.494743 ], [ 144.773498, 13.494729 ], [ 144.773527, 13.494734 ], [ 144.773635, 13.494721 ], [ 144.773709, 13.49466 ], [ 144.773748, 13.494617 ], [ 144.773842, 13.494551 ], [ 144.773871, 13.494546 ], [ 144.773906, 13.494527 ], [ 144.773935, 13.494489 ], [ 144.773999, 13.49449 ], [ 144.774024, 13.494457 ], [ 144.774058, 13.494447 ], [ 144.774069, 13.494463 ], [ 144.774082, 13.494476 ], [ 144.774117, 13.494448 ], [ 144.774166, 13.494429 ], [ 144.774185, 13.494429 ], [ 144.774254, 13.494392 ], [ 144.774255, 13.494392 ], [ 144.774283, 13.494397 ], [ 144.774308, 13.494373 ], [ 144.774337, 13.494369 ], [ 144.774371, 13.494393 ], [ 144.774405, 13.494384 ], [ 144.774489, 13.494298 ], [ 144.774514, 13.494236 ], [ 144.774531, 13.49405 ], [ 144.774566, 13.493926 ], [ 144.774569, 13.493921 ], [ 144.774606, 13.49385 ], [ 144.774665, 13.493712 ], [ 144.774693, 13.49365 ], [ 144.774689, 13.493573 ], [ 144.774709, 13.493483 ], [ 144.774729, 13.493449 ], [ 144.774745, 13.493301 ], [ 144.77476, 13.493249 ], [ 144.774795, 13.493182 ], [ 144.774825, 13.493091 ], [ 144.774838, 13.493056 ], [ 144.77489, 13.49292 ], [ 144.774925, 13.492849 ], [ 144.774926, 13.492845 ], [ 144.77497, 13.492666 ], [ 144.774976, 13.492643 ], [ 144.775006, 13.492553 ], [ 144.775027, 13.492433 ], [ 144.775061, 13.492185 ], [ 144.77507, 13.492125 ], [ 144.775101, 13.491944 ], [ 144.775108, 13.491899 ], [ 144.775114, 13.49175 ], [ 144.775125, 13.491645 ], [ 144.77513, 13.491607 ], [ 144.775141, 13.491464 ], [ 144.775137, 13.491325 ], [ 144.775153, 13.490943 ], [ 144.775135, 13.490823 ], [ 144.775114, 13.49075 ], [ 144.775111, 13.490737 ], [ 144.775102, 13.49066 ], [ 144.775078, 13.490598 ], [ 144.77505, 13.490459 ], [ 144.775031, 13.490363 ], [ 144.775018, 13.490253 ], [ 144.774981, 13.490047 ], [ 144.774979, 13.490033 ], [ 144.774967, 13.489927 ], [ 144.774939, 13.48976 ], [ 144.774924, 13.489616 ], [ 144.774895, 13.489558 ], [ 144.774875, 13.489539 ], [ 144.774876, 13.489463 ], [ 144.774865, 13.489333 ], [ 144.774863, 13.489305 ], [ 144.774807, 13.489056 ], [ 144.774798, 13.488965 ], [ 144.774774, 13.488869 ], [ 144.774722, 13.488781 ], [ 144.774673, 13.488696 ], [ 144.77463, 13.488614 ], [ 144.774548, 13.488503 ], [ 144.774482, 13.488425 ], [ 144.774475, 13.488417 ], [ 144.774391, 13.48833 ], [ 144.774338, 13.488248 ], [ 144.774275, 13.488181 ], [ 144.774218, 13.488027 ], [ 144.774204, 13.487922 ], [ 144.774204, 13.487869 ], [ 144.77422, 13.487755 ], [ 144.774201, 13.487721 ], [ 144.774176, 13.487735 ], [ 144.774133, 13.487696 ], [ 144.774113, 13.487671 ], [ 144.774099, 13.487653 ], [ 144.774056, 13.487576 ], [ 144.774004, 13.487471 ], [ 144.773965, 13.487394 ], [ 144.773931, 13.487326 ], [ 144.773842, 13.487171 ], [ 144.773827, 13.487144 ], [ 144.773792, 13.487103 ], [ 144.773765, 13.487071 ], [ 144.773693, 13.486913 ], [ 144.773683, 13.486889 ], [ 144.773611, 13.486769 ], [ 144.773543, 13.486692 ], [ 144.773479, 13.486623 ], [ 144.773471, 13.486602 ], [ 144.773373, 13.486487 ], [ 144.773296, 13.48641 ], [ 144.773276, 13.486391 ], [ 144.77317, 13.486275 ], [ 144.773148, 13.486255 ], [ 144.773129, 13.486237 ], [ 144.773074, 13.486184 ], [ 144.773073, 13.486183 ], [ 144.773057, 13.486166 ], [ 144.772991, 13.486092 ], [ 144.772911, 13.48599 ], [ 144.772904, 13.485981 ], [ 144.772812, 13.48588 ], [ 144.772609, 13.485629 ], [ 144.772513, 13.48549 ], [ 144.772488, 13.485451 ], [ 144.772416, 13.485341 ], [ 144.772352, 13.485269 ], [ 144.772327, 13.485241 ], [ 144.772295, 13.485206 ], [ 144.772258, 13.485154 ], [ 144.772237, 13.485124 ], [ 144.77217, 13.485028 ], [ 144.772054, 13.484893 ], [ 144.77184, 13.484542 ], [ 144.771797, 13.484446 ], [ 144.771763, 13.484388 ], [ 144.771734, 13.48434 ], [ 144.771687, 13.484215 ], [ 144.771643, 13.484158 ], [ 144.771609, 13.484105 ], [ 144.771517, 13.48408 ], [ 144.771439, 13.484031 ], [ 144.771425, 13.483926 ], [ 144.771411, 13.483888 ], [ 144.771407, 13.483797 ], [ 144.771388, 13.483754 ], [ 144.771349, 13.483705 ], [ 144.771296, 13.483657 ], [ 144.771262, 13.4836 ], [ 144.771219, 13.483551 ], [ 144.771175, 13.483522 ], [ 144.771136, 13.483457 ], [ 144.771108, 13.483412 ], [ 144.771059, 13.483363 ], [ 144.770975, 13.4832 ], [ 144.770883, 13.483089 ], [ 144.770831, 13.482988 ], [ 144.770686, 13.482829 ], [ 144.770593, 13.482752 ], [ 144.77054, 13.482689 ], [ 144.770424, 13.482588 ], [ 144.770472, 13.48257 ], [ 144.770426, 13.482544 ], [ 144.770353, 13.482462 ], [ 144.77031, 13.482399 ], [ 144.770232, 13.482322 ], [ 144.770208, 13.482259 ], [ 144.77015, 13.482225 ], [ 144.770072, 13.482153 ], [ 144.77001, 13.482086 ], [ 144.769995, 13.482033 ], [ 144.769962, 13.481956 ], [ 144.769958, 13.481832 ], [ 144.769934, 13.481774 ], [ 144.769871, 13.48173 ], [ 144.769793, 13.481706 ], [ 144.769745, 13.481648 ], [ 144.769716, 13.481595 ], [ 144.769697, 13.481538 ], [ 144.769673, 13.481494 ], [ 144.76961, 13.481403 ], [ 144.769518, 13.481302 ], [ 144.769451, 13.481201 ], [ 144.769354, 13.48109 ], [ 144.769272, 13.481032 ], [ 144.769131, 13.480906 ], [ 144.768956, 13.480823 ], [ 144.768869, 13.480746 ], [ 144.768825, 13.480684 ], [ 144.768714, 13.480592 ], [ 144.768583, 13.480505 ], [ 144.768367, 13.480388 ], [ 144.768235, 13.480324 ], [ 144.768094, 13.480242 ], [ 144.767831, 13.480125 ], [ 144.767597, 13.480046 ], [ 144.767554, 13.480032 ], [ 144.767422, 13.479997 ], [ 144.767301, 13.479938 ], [ 144.767082, 13.47985 ], [ 144.766911, 13.479815 ], [ 144.766784, 13.479781 ], [ 144.766672, 13.479756 ], [ 144.766621, 13.47975 ], [ 144.766477, 13.479735 ], [ 144.766411, 13.479668 ], [ 144.766344, 13.47961 ], [ 144.766256, 13.479561 ], [ 144.766105, 13.479502 ], [ 144.765852, 13.479423 ], [ 144.765701, 13.479403 ], [ 144.765569, 13.479364 ], [ 144.765447, 13.479343 ], [ 144.765335, 13.479333 ], [ 144.765193, 13.479341 ], [ 144.76511, 13.47934 ], [ 144.764969, 13.479306 ], [ 144.764808, 13.479261 ], [ 144.764681, 13.479207 ], [ 144.764671, 13.479202 ], [ 144.764516, 13.479129 ], [ 144.76438, 13.479047 ], [ 144.764329, 13.479003 ], [ 144.764246, 13.47896 ], [ 144.764101, 13.478868 ], [ 144.763998, 13.478833 ], [ 144.763872, 13.478765 ], [ 144.76378, 13.478702 ], [ 144.76356, 13.478628 ], [ 144.763346, 13.47856 ], [ 144.763234, 13.47853 ], [ 144.763117, 13.478514 ], [ 144.762995, 13.47847 ], [ 144.762732, 13.478415 ], [ 144.762665, 13.478404 ], [ 144.762424, 13.478365 ], [ 144.762244, 13.478349 ], [ 144.762173, 13.47832 ], [ 144.762071, 13.478304 ], [ 144.761959, 13.478279 ], [ 144.761827, 13.478259 ], [ 144.761666, 13.478215 ], [ 144.761402, 13.478193 ], [ 144.761261, 13.478158 ], [ 144.761134, 13.478143 ], [ 144.760988, 13.478137 ], [ 144.760802, 13.478135 ], [ 144.760685, 13.47811 ], [ 144.760411, 13.478098 ], [ 144.760284, 13.478107 ], [ 144.760126, 13.478091 ], [ 144.760004, 13.478085 ], [ 144.759813, 13.478069 ], [ 144.759516, 13.478028 ], [ 144.758944, 13.477994 ], [ 144.758744, 13.477973 ], [ 144.758593, 13.477977 ], [ 144.758383, 13.477951 ], [ 144.757975, 13.477943 ], [ 144.757863, 13.477932 ], [ 144.75753, 13.477977 ], [ 144.757418, 13.477952 ], [ 144.757291, 13.477917 ], [ 144.757213, 13.477864 ], [ 144.757091, 13.477834 ], [ 144.756965, 13.477809 ], [ 144.75676, 13.477788 ], [ 144.756628, 13.477768 ], [ 144.756418, 13.477747 ], [ 144.756194, 13.477738 ], [ 144.756115, 13.477735 ], [ 144.755966, 13.477733 ], [ 144.755776, 13.477751 ], [ 144.755583, 13.477726 ], [ 144.755536, 13.477753 ], [ 144.755467, 13.477786 ], [ 144.755413, 13.477829 ], [ 144.755236, 13.477923 ], [ 144.755148, 13.477946 ], [ 144.75505, 13.47796 ], [ 144.754958, 13.477935 ], [ 144.754885, 13.477882 ], [ 144.754837, 13.477795 ], [ 144.754789, 13.477685 ], [ 144.754771, 13.47757 ], [ 144.754744, 13.477259 ], [ 144.75475, 13.477173 ], [ 144.754746, 13.477115 ], [ 144.754658, 13.477119 ], [ 144.754671, 13.47721 ], [ 144.754675, 13.47732 ], [ 144.754654, 13.477463 ], [ 144.754634, 13.477564 ], [ 144.754613, 13.477712 ], [ 144.754581, 13.477998 ], [ 144.75457, 13.478156 ], [ 144.754573, 13.478328 ], [ 144.754626, 13.478463 ], [ 144.754639, 13.478544 ], [ 144.75463, 13.478549 ], [ 144.754615, 13.478558 ], [ 144.754585, 13.478582 ], [ 144.754594, 13.478654 ], [ 144.754519, 13.47893 ], [ 144.754498, 13.479064 ], [ 144.754494, 13.479217 ], [ 144.754477, 13.479499 ], [ 144.754446, 13.479666 ], [ 144.754415, 13.479771 ], [ 144.754399, 13.479914 ], [ 144.754393, 13.480067 ], [ 144.754397, 13.480153 ], [ 144.754381, 13.480277 ], [ 144.754356, 13.480397 ], [ 144.754316, 13.480516 ], [ 144.754246, 13.480635 ], [ 144.754191, 13.48074 ], [ 144.754144, 13.480797 ], [ 144.754095, 13.480834 ], [ 144.75404, 13.481025 ], [ 144.754014, 13.481135 ], [ 144.75395, 13.481259 ], [ 144.753895, 13.481349 ], [ 144.753821, 13.481434 ], [ 144.753698, 13.481505 ], [ 144.753605, 13.481552 ], [ 144.753507, 13.48158 ], [ 144.753414, 13.481589 ], [ 144.75299, 13.481996 ], [ 144.752941, 13.482024 ], [ 144.752912, 13.482024 ], [ 144.752868, 13.482009 ], [ 144.752501, 13.482073 ], [ 144.751545, 13.482239 ], [ 144.751526, 13.482254 ], [ 144.751501, 13.482247 ], [ 144.751465, 13.482236 ], [ 144.75119, 13.481875 ], [ 144.751114, 13.481766 ], [ 144.751083, 13.481688 ], [ 144.751099, 13.481228 ], [ 144.751099, 13.480977 ], [ 144.748733, 13.480967 ], [ 144.748618, 13.480966 ], [ 144.748634, 13.481302 ], [ 144.748615, 13.481397 ], [ 144.74859, 13.481457 ], [ 144.748528, 13.481516 ], [ 144.748473, 13.481557 ], [ 144.748411, 13.481581 ], [ 144.74815, 13.481583 ], [ 144.747019, 13.481592 ], [ 144.746909, 13.481561 ], [ 144.74683, 13.481525 ], [ 144.74677, 13.48147 ], [ 144.74674, 13.481398 ], [ 144.74673, 13.480436 ], [ 144.746756, 13.480335 ], [ 144.746793, 13.480293 ], [ 144.746842, 13.480252 ], [ 144.747445, 13.480232 ], [ 144.748314, 13.480205 ], [ 144.748315, 13.47998 ], [ 144.748318, 13.479484 ], [ 144.748322, 13.478832 ], [ 144.748313, 13.477996 ], [ 144.74831, 13.477653 ], [ 144.748291, 13.477649 ], [ 144.748221, 13.477616 ], [ 144.748177, 13.477582 ], [ 144.748094, 13.477586 ], [ 144.747982, 13.477585 ], [ 144.747864, 13.477613 ], [ 144.747747, 13.477631 ], [ 144.747698, 13.477631 ], [ 144.747663, 13.477693 ], [ 144.747585, 13.477697 ], [ 144.747551, 13.477682 ], [ 144.747453, 13.477681 ], [ 144.747213, 13.477751 ], [ 144.747071, 13.477754 ], [ 144.74701, 13.477763 ], [ 144.746927, 13.477739 ], [ 144.746879, 13.477705 ], [ 144.746845, 13.477652 ], [ 144.746817, 13.477621 ], [ 144.746793, 13.477623 ], [ 144.746759, 13.477661 ], [ 144.7467, 13.477661 ], [ 144.746646, 13.477651 ], [ 144.746637, 13.477617 ], [ 144.746618, 13.477607 ], [ 144.746495, 13.477611 ], [ 144.746442, 13.47762 ], [ 144.746392, 13.477658 ], [ 144.746309, 13.477662 ], [ 144.746246, 13.477661 ], [ 144.746153, 13.477641 ], [ 144.74609, 13.477622 ], [ 144.746016, 13.477645 ], [ 144.745913, 13.477668 ], [ 144.745821, 13.477662 ], [ 144.745698, 13.477685 ], [ 144.745503, 13.477683 ], [ 144.745396, 13.477668 ], [ 144.745205, 13.477685 ], [ 144.745034, 13.477689 ], [ 144.744936, 13.477669 ], [ 144.744853, 13.477644 ], [ 144.744847, 13.477643 ], [ 144.744643, 13.477633 ], [ 144.744533, 13.477641 ], [ 144.744157, 13.477628 ], [ 144.743972, 13.477631 ], [ 144.743815, 13.477625 ], [ 144.743625, 13.477633 ], [ 144.743356, 13.477654 ], [ 144.74316, 13.477686 ], [ 144.742852, 13.47776 ], [ 144.742482, 13.477881 ], [ 144.742369, 13.477942 ], [ 144.742246, 13.478017 ], [ 144.742109, 13.478031 ], [ 144.741908, 13.478072 ], [ 144.741737, 13.478118 ], [ 144.741629, 13.47817 ], [ 144.741363, 13.478354 ], [ 144.741201, 13.478462 ], [ 144.741053, 13.478547 ], [ 144.740852, 13.478631 ], [ 144.740438, 13.478814 ], [ 144.740193, 13.478884 ], [ 144.740056, 13.478906 ], [ 144.739816, 13.478928 ], [ 144.739684, 13.478922 ], [ 144.739567, 13.47894 ], [ 144.739425, 13.479001 ], [ 144.739293, 13.479014 ], [ 144.739121, 13.479051 ], [ 144.739048, 13.479063 ], [ 144.738965, 13.479078 ], [ 144.738832, 13.479115 ], [ 144.738695, 13.479138 ], [ 144.738524, 13.479151 ], [ 144.738341, 13.479149 ], [ 144.738081, 13.479158 ], [ 144.738028, 13.479161 ], [ 144.737794, 13.479158 ], [ 144.737042, 13.479113 ], [ 144.736832, 13.479111 ], [ 144.736717, 13.479101 ], [ 144.736546, 13.479099 ], [ 144.736375, 13.479103 ], [ 144.736341, 13.479093 ], [ 144.736277, 13.479095 ], [ 144.736131, 13.479069 ], [ 144.736053, 13.47904 ], [ 144.735941, 13.47901 ], [ 144.735863, 13.479009 ], [ 144.735784, 13.479023 ], [ 144.735718, 13.479025 ], [ 144.735618, 13.479069 ], [ 144.735427, 13.479087 ], [ 144.735012, 13.479102 ], [ 144.734797, 13.479086 ], [ 144.734646, 13.479065 ], [ 144.73461, 13.479058 ], [ 144.734499, 13.47904 ], [ 144.734363, 13.479025 ], [ 144.734172, 13.479018 ], [ 144.73407, 13.478989 ], [ 144.733945, 13.478978 ], [ 144.733789, 13.478976 ], [ 144.733652, 13.47898 ], [ 144.733501, 13.478974 ], [ 144.733203, 13.47899 ], [ 144.733022, 13.478993 ], [ 144.732865, 13.479002 ], [ 144.732738, 13.479 ], [ 144.732616, 13.47898 ], [ 144.732529, 13.478946 ], [ 144.732432, 13.478878 ], [ 144.732369, 13.478815 ], [ 144.732296, 13.478772 ], [ 144.732198, 13.478833 ], [ 144.732134, 13.47888 ], [ 144.732026, 13.478932 ], [ 144.731943, 13.478922 ], [ 144.73185, 13.478887 ], [ 144.731824, 13.47882 ], [ 144.731805, 13.478743 ], [ 144.731767, 13.478681 ], [ 144.731694, 13.478651 ], [ 144.731601, 13.478632 ], [ 144.731474, 13.478621 ], [ 144.731364, 13.47862 ], [ 144.731352, 13.47862 ], [ 144.731254, 13.478633 ], [ 144.73121, 13.478685 ], [ 144.731185, 13.478743 ], [ 144.731174, 13.478809 ], [ 144.731135, 13.478866 ], [ 144.731076, 13.478895 ], [ 144.730988, 13.478913 ], [ 144.730953, 13.478941 ], [ 144.730904, 13.478965 ], [ 144.730884, 13.479051 ], [ 144.730883, 13.479146 ], [ 144.730887, 13.479218 ], [ 144.730891, 13.479231 ], [ 144.730935, 13.479352 ], [ 144.730934, 13.479395 ], [ 144.730899, 13.4795 ], [ 144.730933, 13.479529 ], [ 144.730962, 13.479573 ], [ 144.730947, 13.479615 ], [ 144.730912, 13.479658 ], [ 144.730931, 13.479692 ], [ 144.730921, 13.479749 ], [ 144.730867, 13.479739 ], [ 144.730814, 13.479719 ], [ 144.730784, 13.479729 ], [ 144.73076, 13.479772 ], [ 144.730754, 13.479824 ], [ 144.730626, 13.479942 ], [ 144.730577, 13.480004 ], [ 144.730532, 13.480052 ], [ 144.730503, 13.48009 ], [ 144.730497, 13.480152 ], [ 144.730458, 13.480185 ], [ 144.730423, 13.480189 ], [ 144.730403, 13.480246 ], [ 144.730398, 13.48028 ], [ 144.730309, 13.48037 ], [ 144.730275, 13.480422 ], [ 144.730167, 13.480464 ], [ 144.730107, 13.480564 ], [ 144.730043, 13.480597 ], [ 144.72995, 13.480634 ], [ 144.729808, 13.480738 ], [ 144.729734, 13.480757 ], [ 144.72968, 13.48078 ], [ 144.729547, 13.480927 ], [ 144.729483, 13.480955 ], [ 144.729395, 13.480955 ], [ 144.729379, 13.480957 ], [ 144.729346, 13.480964 ], [ 144.729292, 13.481016 ], [ 144.729145, 13.48101 ], [ 144.729121, 13.481033 ], [ 144.729042, 13.481052 ], [ 144.728949, 13.481104 ], [ 144.728876, 13.481108 ], [ 144.728798, 13.481107 ], [ 144.728715, 13.481077 ], [ 144.728681, 13.481053 ], [ 144.728657, 13.480996 ], [ 144.728667, 13.480938 ], [ 144.728673, 13.480915 ], [ 144.728708, 13.480791 ], [ 144.728718, 13.480728 ], [ 144.728704, 13.480695 ], [ 144.728695, 13.480633 ], [ 144.72868, 13.48057 ], [ 144.728642, 13.480537 ], [ 144.728569, 13.480488 ], [ 144.728531, 13.48045 ], [ 144.728448, 13.480367 ], [ 144.728424, 13.480291 ], [ 144.72841, 13.480185 ], [ 144.728421, 13.480085 ], [ 144.728461, 13.480023 ], [ 144.728486, 13.479952 ], [ 144.728501, 13.479885 ], [ 144.728565, 13.479819 ], [ 144.728624, 13.479795 ], [ 144.728776, 13.479749 ], [ 144.728816, 13.479716 ], [ 144.728899, 13.479664 ], [ 144.728943, 13.479621 ], [ 144.729003, 13.479536 ], [ 144.729023, 13.47945 ], [ 144.729009, 13.479392 ], [ 144.728985, 13.479368 ], [ 144.728917, 13.479363 ], [ 144.728853, 13.479353 ], [ 144.72879, 13.479338 ], [ 144.72878, 13.479331 ], [ 144.728746, 13.479309 ], [ 144.728688, 13.479246 ], [ 144.728674, 13.479169 ], [ 144.728661, 13.479054 ], [ 144.728635, 13.478958 ], [ 144.728518, 13.478909 ], [ 144.728428, 13.478871 ], [ 144.72813, 13.478791 ], [ 144.727911, 13.478756 ], [ 144.727775, 13.478716 ], [ 144.727594, 13.478672 ], [ 144.727468, 13.478632 ], [ 144.727292, 13.478602 ], [ 144.7271, 13.478591 ], [ 144.727092, 13.478591 ], [ 144.726616, 13.478553 ], [ 144.726459, 13.478547 ], [ 144.726069, 13.478472 ], [ 144.725908, 13.478456 ], [ 144.725713, 13.478416 ], [ 144.725601, 13.478372 ], [ 144.725425, 13.478351 ], [ 144.725196, 13.478301 ], [ 144.724897, 13.478217 ], [ 144.724794, 13.478168 ], [ 144.724692, 13.478139 ], [ 144.724605, 13.4781 ], [ 144.724502, 13.478075 ], [ 144.724395, 13.478012 ], [ 144.724327, 13.477963 ], [ 144.724245, 13.477924 ], [ 144.723982, 13.477759 ], [ 144.723773, 13.477638 ], [ 144.723657, 13.477589 ], [ 144.723574, 13.47756 ], [ 144.723506, 13.477554 ], [ 144.723408, 13.477529 ], [ 144.723272, 13.477475 ], [ 144.723238, 13.477442 ], [ 144.723204, 13.477441 ], [ 144.723087, 13.477412 ], [ 144.723023, 13.477435 ], [ 144.722969, 13.477406 ], [ 144.72296, 13.477401 ], [ 144.722941, 13.477353 ], [ 144.722917, 13.477271 ], [ 144.722849, 13.477194 ], [ 144.722816, 13.477113 ], [ 144.722802, 13.477017 ], [ 144.722761, 13.476983 ], [ 144.722669, 13.476925 ], [ 144.722582, 13.476833 ], [ 144.722524, 13.476761 ], [ 144.722471, 13.476674 ], [ 144.722428, 13.476588 ], [ 144.722379, 13.47653 ], [ 144.722302, 13.476486 ], [ 144.722214, 13.476447 ], [ 144.722141, 13.476442 ], [ 144.722063, 13.476417 ], [ 144.722038, 13.476404 ], [ 144.721995, 13.476383 ], [ 144.721893, 13.476296 ], [ 144.721815, 13.476224 ], [ 144.721655, 13.476117 ], [ 144.721417, 13.475991 ], [ 144.721279, 13.475928 ], [ 144.721248, 13.475923 ], [ 144.721237, 13.475922 ], [ 144.721022, 13.475863 ], [ 144.720933, 13.4758 ], [ 144.720802, 13.475722 ], [ 144.720695, 13.475645 ], [ 144.720613, 13.475539 ], [ 144.720409, 13.475374 ], [ 144.720356, 13.47535 ], [ 144.720307, 13.475349 ], [ 144.720287, 13.475359 ], [ 144.720248, 13.475363 ], [ 144.720209, 13.475329 ], [ 144.720151, 13.475238 ], [ 144.720098, 13.475195 ], [ 144.719952, 13.475117 ], [ 144.719753, 13.475019 ], [ 144.71966, 13.474995 ], [ 144.719582, 13.474951 ], [ 144.719524, 13.474926 ], [ 144.71948, 13.474931 ], [ 144.719446, 13.47494 ], [ 144.719373, 13.474939 ], [ 144.719294, 13.474929 ], [ 144.719241, 13.474914 ], [ 144.719066, 13.474812 ], [ 144.718858, 13.474668 ], [ 144.718617, 13.474502 ], [ 144.718442, 13.4744 ], [ 144.718277, 13.474313 ], [ 144.718127, 13.474182 ], [ 144.718086, 13.474152 ], [ 144.717986, 13.47408 ], [ 144.717811, 13.47394 ], [ 144.717462, 13.473684 ], [ 144.717375, 13.473631 ], [ 144.71718, 13.473514 ], [ 144.717044, 13.473489 ], [ 144.716936, 13.473464 ], [ 144.716848, 13.473463 ], [ 144.71678, 13.473467 ], [ 144.716692, 13.473438 ], [ 144.716666, 13.47338 ], [ 144.716617, 13.473356 ], [ 144.716559, 13.473355 ], [ 144.71647, 13.473388 ], [ 144.716352, 13.473497 ], [ 144.716289, 13.473486 ], [ 144.716216, 13.473462 ], [ 144.716157, 13.473433 ], [ 144.716016, 13.473417 ], [ 144.715967, 13.473431 ], [ 144.715844, 13.473478 ], [ 144.715404, 13.473488 ], [ 144.715287, 13.473506 ], [ 144.71515, 13.473519 ], [ 144.715023, 13.473551 ], [ 144.7149, 13.473593 ], [ 144.71481, 13.473607 ], [ 144.714594, 13.473672 ], [ 144.714393, 13.473747 ], [ 144.714305, 13.473746 ], [ 144.714145, 13.473668 ], [ 144.714067, 13.473638 ], [ 144.713973, 13.473671 ], [ 144.713792, 13.473736 ], [ 144.713687, 13.473744 ], [ 144.713685, 13.473745 ], [ 144.713592, 13.47372 ], [ 144.713526, 13.473737 ], [ 144.713485, 13.473748 ], [ 144.713413, 13.473604 ], [ 144.713383, 13.473544 ], [ 144.713358, 13.473627 ], [ 144.713274, 13.473722 ], [ 144.713161, 13.473812 ], [ 144.713058, 13.473849 ], [ 144.712895, 13.473833 ], [ 144.712558, 13.473825 ], [ 144.712441, 13.473815 ], [ 144.712376, 13.473817 ], [ 144.712323, 13.473819 ], [ 144.712255, 13.473851 ], [ 144.712162, 13.473865 ], [ 144.712049, 13.473888 ], [ 144.711956, 13.473916 ], [ 144.711858, 13.473934 ], [ 144.711751, 13.473938 ], [ 144.71153, 13.473998 ], [ 144.711413, 13.474016 ], [ 144.711285, 13.474048 ], [ 144.711212, 13.474047 ], [ 144.711119, 13.474066 ], [ 144.711065, 13.474094 ], [ 144.711006, 13.474103 ], [ 144.710969, 13.474136 ], [ 144.710916, 13.474131 ], [ 144.710823, 13.474149 ], [ 144.710764, 13.474182 ], [ 144.710612, 13.474181 ], [ 144.710529, 13.474209 ], [ 144.710475, 13.474237 ], [ 144.710406, 13.474246 ], [ 144.710377, 13.474265 ], [ 144.710362, 13.474298 ], [ 144.710323, 13.474341 ], [ 144.710264, 13.474378 ], [ 144.710219, 13.474431 ], [ 144.710185, 13.474445 ], [ 144.710141, 13.47442 ], [ 144.709964, 13.47449 ], [ 144.709886, 13.474509 ], [ 144.709803, 13.474541 ], [ 144.709705, 13.474588 ], [ 144.70938, 13.474801 ], [ 144.709287, 13.474833 ], [ 144.70921, 13.474886 ], [ 144.709105, 13.474961 ], [ 144.708967, 13.475045 ], [ 144.708704, 13.475215 ], [ 144.708601, 13.475296 ], [ 144.708428, 13.475495 ], [ 144.708373, 13.475599 ], [ 144.708365, 13.475632 ], [ 144.708348, 13.475695 ], [ 144.708352, 13.475838 ], [ 144.708324, 13.475903 ], [ 144.708322, 13.47591 ], [ 144.708315, 13.476091 ], [ 144.708343, 13.476202 ], [ 144.708406, 13.476284 ], [ 144.708512, 13.476442 ], [ 144.708526, 13.476509 ], [ 144.708476, 13.476581 ], [ 144.7084, 13.476619 ], [ 144.708393, 13.476623 ], [ 144.70829, 13.476646 ], [ 144.708187, 13.476678 ], [ 144.70813, 13.476684 ], [ 144.708006, 13.476696 ], [ 144.707938, 13.476729 ], [ 144.707859, 13.476761 ], [ 144.707776, 13.476785 ], [ 144.707706, 13.476814 ], [ 144.707609, 13.476855 ], [ 144.70754, 13.476869 ], [ 144.707501, 13.476892 ], [ 144.707442, 13.476906 ], [ 144.707389, 13.47691 ], [ 144.70736, 13.476867 ], [ 144.707326, 13.476843 ], [ 144.707262, 13.476813 ], [ 144.707218, 13.476813 ], [ 144.707141, 13.476741 ], [ 144.707117, 13.476664 ], [ 144.707079, 13.476587 ], [ 144.707031, 13.47651 ], [ 144.706998, 13.476333 ], [ 144.706899, 13.476236 ], [ 144.706825, 13.476143 ], [ 144.706803, 13.476116 ], [ 144.706769, 13.476001 ], [ 144.706731, 13.475929 ], [ 144.706742, 13.475852 ], [ 144.706766, 13.4758 ], [ 144.70676, 13.475725 ], [ 144.706753, 13.475647 ], [ 144.706725, 13.475551 ], [ 144.706746, 13.475331 ], [ 144.706738, 13.475245 ], [ 144.706685, 13.475168 ], [ 144.706666, 13.475101 ], [ 144.706647, 13.474986 ], [ 144.706627, 13.474828 ], [ 144.706622, 13.474802 ], [ 144.706566, 13.474488 ], [ 144.706567, 13.474388 ], [ 144.706588, 13.474249 ], [ 144.706604, 13.474178 ], [ 144.706658, 13.474087 ], [ 144.706713, 13.474026 ], [ 144.706708, 13.473949 ], [ 144.706695, 13.473848 ], [ 144.706725, 13.473777 ], [ 144.706774, 13.473706 ], [ 144.706829, 13.473639 ], [ 144.706813, 13.473477 ], [ 144.706787, 13.47337 ], [ 144.706761, 13.473266 ], [ 144.706753, 13.47316 ], [ 144.706704, 13.473122 ], [ 144.70668, 13.473055 ], [ 144.706671, 13.472968 ], [ 144.706691, 13.472911 ], [ 144.706682, 13.472849 ], [ 144.706639, 13.472782 ], [ 144.706615, 13.472719 ], [ 144.706635, 13.472643 ], [ 144.706685, 13.4726 ], [ 144.706676, 13.472519 ], [ 144.706656, 13.472476 ], [ 144.706667, 13.472409 ], [ 144.706702, 13.472338 ], [ 144.706683, 13.472256 ], [ 144.706659, 13.472218 ], [ 144.70667, 13.472144 ], [ 144.706675, 13.472117 ], [ 144.706705, 13.472017 ], [ 144.706716, 13.471874 ], [ 144.706678, 13.471725 ], [ 144.706656, 13.471702 ], [ 144.706606, 13.471648 ], [ 144.706494, 13.471566 ], [ 144.706456, 13.471508 ], [ 144.706422, 13.471417 ], [ 144.706379, 13.471316 ], [ 144.706307, 13.471249 ], [ 144.706156, 13.471214 ], [ 144.706027, 13.471146 ], [ 144.706025, 13.471144 ], [ 144.705794, 13.470919 ], [ 144.705671, 13.47076 ], [ 144.705623, 13.470669 ], [ 144.705565, 13.470582 ], [ 144.705488, 13.47049 ], [ 144.705381, 13.470408 ], [ 144.705196, 13.470294 ], [ 144.705017, 13.470185 ], [ 144.704959, 13.470108 ], [ 144.704883, 13.470052 ], [ 144.704831, 13.470013 ], [ 144.704814, 13.470001 ], [ 144.704671, 13.469907 ], [ 144.704618, 13.469872 ], [ 144.704474, 13.469778 ], [ 144.704304, 13.469652 ], [ 144.704232, 13.46957 ], [ 144.703683, 13.469216 ], [ 144.703523, 13.469129 ], [ 144.703481, 13.469089 ], [ 144.70346, 13.469081 ], [ 144.703338, 13.469003 ], [ 144.703217, 13.468911 ], [ 144.703076, 13.468814 ], [ 144.702984, 13.468746 ], [ 144.702926, 13.468674 ], [ 144.702892, 13.468645 ], [ 144.702863, 13.468611 ], [ 144.702858, 13.468549 ], [ 144.70281, 13.46851 ], [ 144.702698, 13.468461 ], [ 144.702607, 13.468436 ], [ 144.702606, 13.468436 ], [ 144.702464, 13.468378 ], [ 144.702386, 13.468358 ], [ 144.702289, 13.468343 ], [ 144.702186, 13.468318 ], [ 144.701914, 13.468239 ], [ 144.701758, 13.468218 ], [ 144.701582, 13.468188 ], [ 144.701401, 13.468186 ], [ 144.70123, 13.468175 ], [ 144.701064, 13.468169 ], [ 144.700869, 13.468153 ], [ 144.700523, 13.468083 ], [ 144.700376, 13.468062 ], [ 144.70023, 13.468023 ], [ 144.700084, 13.468026 ], [ 144.699761, 13.468085 ], [ 144.699633, 13.468103 ], [ 144.699594, 13.468136 ], [ 144.69955, 13.468136 ], [ 144.69936, 13.468101 ], [ 144.699326, 13.468086 ], [ 144.699262, 13.468095 ], [ 144.699194, 13.468094 ], [ 144.699063, 13.468022 ], [ 144.698941, 13.467977 ], [ 144.698858, 13.467914 ], [ 144.698703, 13.467817 ], [ 144.698626, 13.467731 ], [ 144.698528, 13.467682 ], [ 144.698417, 13.467595 ], [ 144.698155, 13.467368 ], [ 144.698064, 13.467228 ], [ 144.697996, 13.467132 ], [ 144.697982, 13.467094 ], [ 144.697963, 13.46706 ], [ 144.697914, 13.467079 ], [ 144.697875, 13.467083 ], [ 144.697865, 13.467059 ], [ 144.697875, 13.466997 ], [ 144.69782, 13.46699 ], [ 144.697815, 13.466972 ], [ 144.69774, 13.466947 ], [ 144.697687, 13.466889 ], [ 144.697604, 13.466869 ], [ 144.697463, 13.466825 ], [ 144.69721, 13.466708 ], [ 144.696908, 13.4666 ], [ 144.69664, 13.466521 ], [ 144.696469, 13.466486 ], [ 144.696352, 13.466447 ], [ 144.696225, 13.466426 ], [ 144.695925, 13.466213 ], [ 144.695844, 13.466176 ], [ 144.695667, 13.466096 ], [ 144.695462, 13.466008 ], [ 144.695307, 13.465954 ], [ 144.695146, 13.465919 ], [ 144.695024, 13.46588 ], [ 144.694985, 13.465894 ], [ 144.694941, 13.465869 ], [ 144.694931, 13.465893 ], [ 144.694906, 13.465907 ], [ 144.694862, 13.465912 ], [ 144.694838, 13.465902 ], [ 144.694824, 13.465868 ], [ 144.694804, 13.465859 ], [ 144.694746, 13.465853 ], [ 144.694716, 13.465872 ], [ 144.694687, 13.465905 ], [ 144.694662, 13.4659 ], [ 144.694648, 13.465881 ], [ 144.694589, 13.465895 ], [ 144.694565, 13.465871 ], [ 144.694521, 13.465861 ], [ 144.694433, 13.465879 ], [ 144.694369, 13.465902 ], [ 144.69432, 13.465907 ], [ 144.694281, 13.465921 ], [ 144.694247, 13.465949 ], [ 144.694222, 13.465958 ], [ 144.694124, 13.465938 ], [ 144.694105, 13.465905 ], [ 144.693915, 13.465826 ], [ 144.693891, 13.465845 ], [ 144.693847, 13.465845 ], [ 144.693833, 13.465802 ], [ 144.693779, 13.465797 ], [ 144.693711, 13.465796 ], [ 144.693603, 13.465724 ], [ 144.693463, 13.465631 ], [ 144.6934, 13.465607 ], [ 144.69342, 13.465564 ], [ 144.693391, 13.46554 ], [ 144.693411, 13.465497 ], [ 144.693411, 13.465458 ], [ 144.693367, 13.465439 ], [ 144.693304, 13.465438 ], [ 144.693289, 13.4654 ], [ 144.693241, 13.465366 ], [ 144.693217, 13.465337 ], [ 144.693168, 13.465341 ], [ 144.69308, 13.465326 ], [ 144.692787, 13.46529 ], [ 144.69246, 13.46523 ], [ 144.692324, 13.465181 ], [ 144.692247, 13.465118 ], [ 144.692207, 13.465127 ], [ 144.692168, 13.46516 ], [ 144.692148, 13.465213 ], [ 144.692128, 13.465227 ], [ 144.692094, 13.465207 ], [ 144.692085, 13.465169 ], [ 144.692095, 13.465121 ], [ 144.692096, 13.465069 ], [ 144.692106, 13.465021 ], [ 144.692087, 13.464973 ], [ 144.692043, 13.464939 ], [ 144.692024, 13.464882 ], [ 144.69201, 13.464819 ], [ 144.692025, 13.464752 ], [ 144.692045, 13.4647 ], [ 144.692041, 13.464667 ], [ 144.692034, 13.464658 ], [ 144.691973, 13.46458 ], [ 144.691847, 13.46445 ], [ 144.691755, 13.464382 ], [ 144.691639, 13.464319 ], [ 144.691571, 13.464261 ], [ 144.69155, 13.464252 ], [ 144.69149, 13.464227 ], [ 144.69147, 13.464219 ], [ 144.691454, 13.464212 ], [ 144.691347, 13.464153 ], [ 144.69126, 13.464114 ], [ 144.691162, 13.464046 ], [ 144.691036, 13.46395 ], [ 144.691002, 13.46393 ], [ 144.690969, 13.463887 ], [ 144.69091, 13.463862 ], [ 144.690847, 13.463871 ], [ 144.690846, 13.463895 ], [ 144.690798, 13.46389 ], [ 144.690754, 13.463866 ], [ 144.690715, 13.463822 ], [ 144.690706, 13.463789 ], [ 144.690608, 13.463764 ], [ 144.690491, 13.463744 ], [ 144.690326, 13.46369 ], [ 144.690243, 13.463679 ], [ 144.690178, 13.463656 ], [ 144.690121, 13.463658 ], [ 144.690064, 13.463642 ], [ 144.689983, 13.46363 ], [ 144.689875, 13.463625 ], [ 144.689827, 13.463629 ], [ 144.689764, 13.463657 ], [ 144.68976, 13.463658 ], [ 144.689715, 13.463685 ], [ 144.689677, 13.463749 ], [ 144.689648, 13.463772 ], [ 144.689601, 13.463793 ], [ 144.689502, 13.46379 ], [ 144.689413, 13.46386 ], [ 144.689401, 13.463898 ], [ 144.689384, 13.464056 ], [ 144.689358, 13.464101 ], [ 144.689305, 13.464148 ], [ 144.689278, 13.4642 ], [ 144.689238, 13.464258 ], [ 144.689139, 13.464399 ], [ 144.689137, 13.464437 ], [ 144.68916, 13.464456 ], [ 144.689164, 13.46449 ], [ 144.689134, 13.464511 ], [ 144.689099, 13.464526 ], [ 144.689078, 13.464505 ], [ 144.689074, 13.464486 ], [ 144.689086, 13.464465 ], [ 144.689071, 13.464442 ], [ 144.68904, 13.464417 ], [ 144.689013, 13.464405 ], [ 144.688979, 13.464414 ], [ 144.6889, 13.464398 ], [ 144.688851, 13.4644 ], [ 144.688771, 13.464393 ], [ 144.68873, 13.464399 ], [ 144.688648, 13.464438 ], [ 144.68863, 13.464457 ], [ 144.688605, 13.464449 ], [ 144.688576, 13.464432 ], [ 144.688559, 13.464416 ], [ 144.688525, 13.46445 ], [ 144.688486, 13.464448 ], [ 144.688453, 13.46443 ], [ 144.688479, 13.464393 ], [ 144.688469, 13.464377 ], [ 144.68845, 13.464373 ], [ 144.688419, 13.464373 ], [ 144.688401, 13.464384 ], [ 144.68837, 13.464386 ], [ 144.688348, 13.464378 ], [ 144.688323, 13.46438 ], [ 144.688303, 13.464416 ], [ 144.688299, 13.464446 ], [ 144.688283, 13.464459 ], [ 144.688237, 13.464459 ], [ 144.688213, 13.464501 ], [ 144.688183, 13.464521 ], [ 144.688152, 13.46455 ], [ 144.688089, 13.464593 ], [ 144.688024, 13.464659 ], [ 144.687997, 13.464676 ], [ 144.687961, 13.464708 ], [ 144.68793, 13.464725 ], [ 144.687898, 13.464774 ], [ 144.687863, 13.464793 ], [ 144.687836, 13.464816 ], [ 144.687826, 13.464835 ], [ 144.687806, 13.464838 ], [ 144.687786, 13.464871 ], [ 144.687761, 13.464893 ], [ 144.68773, 13.46491 ], [ 144.687689, 13.464915 ], [ 144.687657, 13.464927 ], [ 144.68761, 13.464957 ], [ 144.68737, 13.465181 ], [ 144.68735, 13.465229 ], [ 144.687319, 13.465246 ], [ 144.687266, 13.465329 ], [ 144.687148, 13.465387 ], [ 144.687089, 13.465444 ], [ 144.687042, 13.465518 ], [ 144.686921, 13.465745 ], [ 144.686854, 13.46584 ], [ 144.686808, 13.465926 ], [ 144.686786, 13.466026 ], [ 144.686779, 13.466116 ], [ 144.686722, 13.466165 ], [ 144.686661, 13.466241 ], [ 144.686629, 13.466288 ], [ 144.686572, 13.466354 ], [ 144.686538, 13.466434 ], [ 144.686551, 13.466493 ], [ 144.686592, 13.466532 ], [ 144.686698, 13.466649 ], [ 144.686767, 13.466736 ], [ 144.686804, 13.466776 ], [ 144.686846, 13.466784 ], [ 144.686856, 13.466807 ], [ 144.68686, 13.466839 ], [ 144.686895, 13.466853 ], [ 144.686916, 13.466855 ], [ 144.686943, 13.466865 ], [ 144.686955, 13.466879 ], [ 144.686947, 13.466905 ], [ 144.686964, 13.466921 ], [ 144.68697, 13.466926 ], [ 144.686999, 13.466942 ], [ 144.687014, 13.466957 ], [ 144.687026, 13.466976 ], [ 144.687028, 13.466999 ], [ 144.687037, 13.467018 ], [ 144.687055, 13.467034 ], [ 144.687089, 13.467078 ], [ 144.687094, 13.467137 ], [ 144.687127, 13.467154 ], [ 144.687139, 13.467168 ], [ 144.687141, 13.467193 ], [ 144.687152, 13.467208 ], [ 144.687193, 13.467237 ], [ 144.687193, 13.467258 ], [ 144.687198, 13.467279 ], [ 144.687223, 13.467316 ], [ 144.687268, 13.467326 ], [ 144.687266, 13.467354 ], [ 144.687246, 13.467369 ], [ 144.687238, 13.467396 ], [ 144.687222, 13.467409 ], [ 144.687197, 13.467407 ], [ 144.687178, 13.467405 ], [ 144.687156, 13.467426 ], [ 144.687191, 13.467447 ], [ 144.687198, 13.467474 ], [ 144.687206, 13.467495 ], [ 144.687204, 13.467518 ], [ 144.687188, 13.467527 ], [ 144.687169, 13.467527 ], [ 144.687153, 13.467517 ], [ 144.687135, 13.46753 ], [ 144.687141, 13.467551 ], [ 144.687166, 13.467573 ], [ 144.68717, 13.467599 ], [ 144.687156, 13.467616 ], [ 144.687135, 13.467609 ], [ 144.687111, 13.467624 ], [ 144.68709, 13.467621 ], [ 144.687068, 13.467637 ], [ 144.68705, 13.467656 ], [ 144.687052, 13.467676 ], [ 144.68703, 13.467678 ], [ 144.687017, 13.467691 ], [ 144.68699, 13.467697 ], [ 144.686978, 13.467722 ], [ 144.68696, 13.467739 ], [ 144.686935, 13.467729 ], [ 144.686905, 13.467748 ], [ 144.686905, 13.467767 ], [ 144.686895, 13.467784 ], [ 144.686874, 13.467795 ], [ 144.68685, 13.467797 ], [ 144.686819, 13.467793 ], [ 144.686813, 13.467812 ], [ 144.686799, 13.467825 ], [ 144.686801, 13.467848 ], [ 144.686795, 13.467882 ], [ 144.686785, 13.467905 ], [ 144.686766, 13.467912 ], [ 144.686738, 13.467912 ], [ 144.686724, 13.467931 ], [ 144.686707, 13.467956 ], [ 144.686683, 13.467969 ], [ 144.686652, 13.46797 ], [ 144.686625, 13.467976 ], [ 144.686591, 13.467975 ], [ 144.686556, 13.467981 ], [ 144.686531, 13.467998 ], [ 144.686513, 13.468005 ], [ 144.686488, 13.468009 ], [ 144.686461, 13.467993 ], [ 144.686418, 13.467995 ], [ 144.686396, 13.468012 ], [ 144.686377, 13.468034 ], [ 144.686341, 13.468051 ], [ 144.68631, 13.468061 ], [ 144.686285, 13.468058 ], [ 144.686252, 13.468035 ], [ 144.686188, 13.468031 ], [ 144.686112, 13.468007 ], [ 144.686093, 13.467982 ], [ 144.686085, 13.467954 ], [ 144.68608, 13.467904 ], [ 144.686051, 13.467898 ], [ 144.686019, 13.467899 ], [ 144.686017, 13.4679 ], [ 144.685951, 13.467889 ], [ 144.685934, 13.467876 ], [ 144.685924, 13.467859 ], [ 144.685864, 13.467835 ], [ 144.685816, 13.467802 ], [ 144.685794, 13.467798 ], [ 144.685759, 13.467808 ], [ 144.68572, 13.467796 ], [ 144.685678, 13.467773 ], [ 144.685655, 13.467719 ], [ 144.685618, 13.4677 ], [ 144.685577, 13.467701 ], [ 144.685552, 13.467693 ], [ 144.685517, 13.46771 ], [ 144.685429, 13.467721 ], [ 144.685384, 13.467724 ], [ 144.685319, 13.467752 ], [ 144.685214, 13.467766 ], [ 144.685126, 13.467767 ], [ 144.685078, 13.46774 ], [ 144.685054, 13.46774 ], [ 144.684967, 13.467743 ], [ 144.68496, 13.467745 ], [ 144.684947, 13.467751 ], [ 144.684922, 13.467748 ], [ 144.684908, 13.467731 ], [ 144.68484, 13.467719 ], [ 144.684747, 13.467707 ], [ 144.684718, 13.467689 ], [ 144.684703, 13.467662 ], [ 144.684689, 13.467647 ], [ 144.684654, 13.467649 ], [ 144.684613, 13.467646 ], [ 144.684557, 13.467623 ], [ 144.684392, 13.467538 ], [ 144.684343, 13.467537 ], [ 144.684301, 13.467531 ], [ 144.684182, 13.467471 ], [ 144.684171, 13.467417 ], [ 144.684088, 13.467376 ], [ 144.684067, 13.467344 ], [ 144.684014, 13.467298 ], [ 144.68391, 13.467259 ], [ 144.683863, 13.467247 ], [ 144.683812, 13.467244 ], [ 144.683736, 13.467226 ], [ 144.683672, 13.467203 ], [ 144.683585, 13.467156 ], [ 144.683462, 13.467146 ], [ 144.683389, 13.467124 ], [ 144.683321, 13.467112 ], [ 144.683338, 13.467082 ], [ 144.683343, 13.467047 ], [ 144.683311, 13.46707 ], [ 144.68328, 13.467043 ], [ 144.683264, 13.467075 ], [ 144.683225, 13.467092 ], [ 144.683243, 13.46706 ], [ 144.683246, 13.467016 ], [ 144.683123, 13.466954 ], [ 144.683036, 13.46693 ], [ 144.68298, 13.466903 ], [ 144.682925, 13.466904 ], [ 144.682847, 13.466913 ], [ 144.682832, 13.466879 ], [ 144.682814, 13.466869 ], [ 144.682772, 13.46687 ], [ 144.682734, 13.466897 ], [ 144.682697, 13.466883 ], [ 144.682676, 13.466851 ], [ 144.682581, 13.466832 ], [ 144.682604, 13.466815 ], [ 144.682611, 13.466791 ], [ 144.682572, 13.466777 ], [ 144.682502, 13.466769 ], [ 144.682443, 13.466744 ], [ 144.682407, 13.466718 ], [ 144.682349, 13.466703 ], [ 144.682332, 13.466674 ], [ 144.682213, 13.466652 ], [ 144.682162, 13.466625 ], [ 144.68208, 13.466598 ], [ 144.682058, 13.466574 ], [ 144.682001, 13.466559 ], [ 144.681987, 13.466547 ], [ 144.681934, 13.466544 ], [ 144.681876, 13.466513 ], [ 144.681869, 13.466475 ], [ 144.68185, 13.466439 ], [ 144.681823, 13.466405 ], [ 144.681753, 13.466357 ], [ 144.681722, 13.466325 ], [ 144.681676, 13.466315 ], [ 144.681639, 13.466317 ], [ 144.681603, 13.466279 ], [ 144.68162, 13.46627 ], [ 144.681588, 13.466262 ], [ 144.68154, 13.466262 ], [ 144.681506, 13.466233 ], [ 144.681526, 13.46618 ], [ 144.681526, 13.466147 ], [ 144.681453, 13.466103 ], [ 144.681288, 13.466016 ], [ 144.681225, 13.466001 ], [ 144.681196, 13.465938 ], [ 144.681147, 13.4659 ], [ 144.681094, 13.465885 ], [ 144.68107, 13.465865 ], [ 144.68105, 13.465827 ], [ 144.681016, 13.465798 ], [ 144.680914, 13.46574 ], [ 144.680876, 13.465701 ], [ 144.680832, 13.465667 ], [ 144.680788, 13.465648 ], [ 144.680779, 13.465624 ], [ 144.680706, 13.46558 ], [ 144.680658, 13.465527 ], [ 144.680585, 13.465488 ], [ 144.680536, 13.465435 ], [ 144.680405, 13.465381 ], [ 144.680396, 13.465338 ], [ 144.68025, 13.465279 ], [ 144.680225, 13.465255 ], [ 144.680226, 13.465212 ], [ 144.680168, 13.465173 ], [ 144.680104, 13.465139 ], [ 144.680061, 13.465086 ], [ 144.679983, 13.465052 ], [ 144.679949, 13.465028 ], [ 144.679803, 13.46495 ], [ 144.679686, 13.464906 ], [ 144.679472, 13.464818 ], [ 144.679414, 13.46477 ], [ 144.679268, 13.46474 ], [ 144.679224, 13.464715 ], [ 144.679146, 13.4647 ], [ 144.679068, 13.46469 ], [ 144.679054, 13.464656 ], [ 144.678961, 13.464603 ], [ 144.67884, 13.464544 ], [ 144.678689, 13.464481 ], [ 144.678626, 13.464475 ], [ 144.678577, 13.464446 ], [ 144.678494, 13.464412 ], [ 144.678426, 13.464397 ], [ 144.678343, 13.464353 ], [ 144.6783, 13.464324 ], [ 144.678203, 13.464247 ], [ 144.678188, 13.464208 ], [ 144.678115, 13.464193 ], [ 144.678072, 13.464174 ], [ 144.678052, 13.464135 ], [ 144.677902, 13.464072 ], [ 144.677868, 13.464043 ], [ 144.677844, 13.46399 ], [ 144.677854, 13.463952 ], [ 144.677801, 13.463899 ], [ 144.677718, 13.463879 ], [ 144.677649, 13.463878 ], [ 144.677567, 13.463844 ], [ 144.677479, 13.463815 ], [ 144.677479, 13.463781 ], [ 144.677465, 13.463733 ], [ 144.677387, 13.463704 ], [ 144.67728, 13.463717 ], [ 144.677163, 13.463692 ], [ 144.677062, 13.463689 ], [ 144.677012, 13.463679 ], [ 144.676934, 13.463635 ], [ 144.676876, 13.463591 ], [ 144.676613, 13.463474 ], [ 144.676545, 13.46345 ], [ 144.67651, 13.463478 ], [ 144.676476, 13.463478 ], [ 144.676477, 13.463425 ], [ 144.676462, 13.463396 ], [ 144.676355, 13.463376 ], [ 144.676321, 13.463386 ], [ 144.676238, 13.463346 ], [ 144.676199, 13.463337 ], [ 144.676141, 13.463331 ], [ 144.676063, 13.463307 ], [ 144.67597, 13.463296 ], [ 144.675907, 13.463281 ], [ 144.675843, 13.463271 ], [ 144.67576, 13.463251 ], [ 144.675726, 13.463251 ], [ 144.675726, 13.463222 ], [ 144.675746, 13.463198 ], [ 144.675712, 13.463165 ], [ 144.675644, 13.463126 ], [ 144.675493, 13.463101 ], [ 144.675366, 13.463099 ], [ 144.675253, 13.463117 ], [ 144.675146, 13.463145 ], [ 144.675072, 13.463178 ], [ 144.674989, 13.463182 ], [ 144.674969, 13.46323 ], [ 144.674935, 13.463263 ], [ 144.674891, 13.463258 ], [ 144.674876, 13.463238 ], [ 144.674744, 13.463237 ], [ 144.674676, 13.463241 ], [ 144.674676, 13.463232 ], [ 144.674632, 13.463231 ], [ 144.6745, 13.46323 ], [ 144.674363, 13.46321 ], [ 144.674251, 13.46318 ], [ 144.674197, 13.463203 ], [ 144.674104, 13.463222 ], [ 144.674002, 13.463225 ], [ 144.673914, 13.463234 ], [ 144.673797, 13.463185 ], [ 144.673743, 13.463209 ], [ 144.673718, 13.463271 ], [ 144.673684, 13.463294 ], [ 144.673566, 13.463293 ], [ 144.673479, 13.463273 ], [ 144.673425, 13.463254 ], [ 144.673376, 13.463267 ], [ 144.673122, 13.463241 ], [ 144.673004, 13.463307 ], [ 144.67296, 13.463316 ], [ 144.672892, 13.463339 ], [ 144.672804, 13.463334 ], [ 144.672755, 13.463353 ], [ 144.672697, 13.463369 ], [ 144.672691, 13.463371 ], [ 144.672686, 13.463409 ], [ 144.672666, 13.463443 ], [ 144.672593, 13.463432 ], [ 144.67251, 13.463446 ], [ 144.672461, 13.463422 ], [ 144.672432, 13.463402 ], [ 144.672378, 13.463402 ], [ 144.672319, 13.463411 ], [ 144.672266, 13.463391 ], [ 144.672163, 13.463395 ], [ 144.67206, 13.463423 ], [ 144.671987, 13.463436 ], [ 144.671919, 13.46344 ], [ 144.67185, 13.463454 ], [ 144.671781, 13.463487 ], [ 144.671728, 13.463486 ], [ 144.671639, 13.46351 ], [ 144.671605, 13.463533 ], [ 144.671561, 13.463518 ], [ 144.671507, 13.463547 ], [ 144.671458, 13.463556 ], [ 144.671336, 13.463569 ], [ 144.671194, 13.463601 ], [ 144.67114, 13.46362 ], [ 144.671116, 13.46361 ], [ 144.671057, 13.463609 ], [ 144.671023, 13.463642 ], [ 144.670915, 13.463646 ], [ 144.670861, 13.463674 ], [ 144.670817, 13.463684 ], [ 144.670685, 13.463673 ], [ 144.670622, 13.463677 ], [ 144.670568, 13.463686 ], [ 144.670514, 13.46369 ], [ 144.670475, 13.463714 ], [ 144.670386, 13.463747 ], [ 144.670352, 13.463765 ], [ 144.670347, 13.463799 ], [ 144.670314, 13.463791 ], [ 144.670298, 13.463781 ], [ 144.670244, 13.463803 ], [ 144.670156, 13.463821 ], [ 144.670131, 13.463854 ], [ 144.670087, 13.463897 ], [ 144.669989, 13.463901 ], [ 144.66994, 13.463953 ], [ 144.669905, 13.464 ], [ 144.669847, 13.464 ], [ 144.669832, 13.463957 ], [ 144.669789, 13.463937 ], [ 144.669715, 13.463941 ], [ 144.669647, 13.463926 ], [ 144.669554, 13.46393 ], [ 144.669461, 13.463972 ], [ 144.669358, 13.464043 ], [ 144.669324, 13.464019 ], [ 144.66925, 13.464047 ], [ 144.669206, 13.46407 ], [ 144.669187, 13.464056 ], [ 144.669162, 13.464079 ], [ 144.669142, 13.464122 ], [ 144.669093, 13.464136 ], [ 144.669049, 13.464126 ], [ 144.668961, 13.46413 ], [ 144.668883, 13.464153 ], [ 144.668809, 13.464186 ], [ 144.66875, 13.464224 ], [ 144.668711, 13.464257 ], [ 144.668676, 13.464261 ], [ 144.668618, 13.464251 ], [ 144.668569, 13.464251 ], [ 144.66854, 13.46427 ], [ 144.668525, 13.464308 ], [ 144.668465, 13.464365 ], [ 144.668426, 13.464383 ], [ 144.668417, 13.464345 ], [ 144.668388, 13.464321 ], [ 144.668353, 13.46434 ], [ 144.668347, 13.46443 ], [ 144.668323, 13.464459 ], [ 144.668274, 13.464482 ], [ 144.66822, 13.464482 ], [ 144.668112, 13.464495 ], [ 144.66801, 13.464523 ], [ 144.66795, 13.46458 ], [ 144.667901, 13.464642 ], [ 144.667832, 13.464674 ], [ 144.667788, 13.464669 ], [ 144.667735, 13.464607 ], [ 144.667545, 13.46461 ], [ 144.667462, 13.464585 ], [ 144.667398, 13.464618 ], [ 144.667358, 13.46467 ], [ 144.66729, 13.464688 ], [ 144.667256, 13.464683 ], [ 144.667202, 13.464688 ], [ 144.667143, 13.464706 ], [ 144.667079, 13.464744 ], [ 144.66704, 13.464782 ], [ 144.666986, 13.46481 ], [ 144.666942, 13.46479 ], [ 144.666888, 13.46479 ], [ 144.666863, 13.464857 ], [ 144.666838, 13.464904 ], [ 144.666804, 13.464933 ], [ 144.666765, 13.464904 ], [ 144.666706, 13.464884 ], [ 144.666623, 13.464902 ], [ 144.666564, 13.464921 ], [ 144.666499, 13.464932 ], [ 144.666471, 13.464944 ], [ 144.666437, 13.464972 ], [ 144.666383, 13.465 ], [ 144.66631, 13.465004 ], [ 144.666271, 13.464975 ], [ 144.666217, 13.46498 ], [ 144.666144, 13.464998 ], [ 144.666041, 13.464992 ], [ 144.665953, 13.465016 ], [ 144.665865, 13.465048 ], [ 144.665766, 13.465109 ], [ 144.665751, 13.465181 ], [ 144.665717, 13.465205 ], [ 144.665678, 13.465156 ], [ 144.66561, 13.465118 ], [ 144.665522, 13.465112 ], [ 144.665429, 13.465135 ], [ 144.665336, 13.465172 ], [ 144.665306, 13.465201 ], [ 144.665247, 13.46521 ], [ 144.665159, 13.465266 ], [ 144.6651, 13.465309 ], [ 144.664943, 13.46536 ], [ 144.664889, 13.465388 ], [ 144.664821, 13.465402 ], [ 144.664771, 13.465449 ], [ 144.664717, 13.465511 ], [ 144.664658, 13.465515 ], [ 144.664556, 13.465509 ], [ 144.664472, 13.465552 ], [ 144.664364, 13.465618 ], [ 144.664291, 13.465641 ], [ 144.664222, 13.465669 ], [ 144.664153, 13.465687 ], [ 144.664075, 13.465687 ], [ 144.664036, 13.465691 ], [ 144.663742, 13.465774 ], [ 144.663635, 13.465792 ], [ 144.663571, 13.465792 ], [ 144.663517, 13.465806 ], [ 144.663492, 13.465839 ], [ 144.663448, 13.465839 ], [ 144.663415, 13.465805 ], [ 144.663371, 13.4658 ], [ 144.663312, 13.465799 ], [ 144.663317, 13.46577 ], [ 144.663313, 13.465737 ], [ 144.663279, 13.465722 ], [ 144.663264, 13.465741 ], [ 144.663229, 13.465755 ], [ 144.6632, 13.465736 ], [ 144.663215, 13.465712 ], [ 144.663117, 13.465745 ], [ 144.663073, 13.465744 ], [ 144.663054, 13.465725 ], [ 144.663029, 13.465725 ], [ 144.663034, 13.465749 ], [ 144.663029, 13.465782 ], [ 144.663029, 13.465815 ], [ 144.663011, 13.465832 ], [ 144.663018, 13.465849 ], [ 144.663018, 13.465873 ], [ 144.662979, 13.465906 ], [ 144.662935, 13.465915 ], [ 144.66291, 13.4659 ], [ 144.662887, 13.465852 ], [ 144.662897, 13.465809 ], [ 144.662883, 13.465791 ], [ 144.662867, 13.4658 ], [ 144.662843, 13.465828 ], [ 144.662818, 13.465842 ], [ 144.662823, 13.465895 ], [ 144.662803, 13.465919 ], [ 144.662767, 13.465918 ], [ 144.662749, 13.465923 ], [ 144.66272, 13.465918 ], [ 144.66269, 13.465946 ], [ 144.662676, 13.465927 ], [ 144.662647, 13.465912 ], [ 144.662617, 13.465922 ], [ 144.662583, 13.46594 ], [ 144.662544, 13.465921 ], [ 144.662534, 13.465897 ], [ 144.662522, 13.465911 ], [ 144.66249, 13.46592 ], [ 144.662461, 13.465887 ], [ 144.662442, 13.465834 ], [ 144.662413, 13.46581 ], [ 144.662398, 13.465838 ], [ 144.662364, 13.465843 ], [ 144.662349, 13.465824 ], [ 144.662296, 13.465794 ], [ 144.662291, 13.465837 ], [ 144.66231, 13.465857 ], [ 144.662261, 13.465861 ], [ 144.662212, 13.465846 ], [ 144.662223, 13.465779 ], [ 144.662179, 13.46576 ], [ 144.66215, 13.465774 ], [ 144.662115, 13.465783 ], [ 144.662087, 13.465721 ], [ 144.662028, 13.465691 ], [ 144.662024, 13.465634 ], [ 144.66199, 13.465624 ], [ 144.661981, 13.465576 ], [ 144.661982, 13.465423 ], [ 144.662031, 13.4654 ], [ 144.66209, 13.465391 ], [ 144.66211, 13.465348 ], [ 144.662164, 13.465339 ], [ 144.662212, 13.465373 ], [ 144.662236, 13.465406 ], [ 144.66228, 13.465421 ], [ 144.662315, 13.465379 ], [ 144.662344, 13.465331 ], [ 144.662355, 13.465269 ], [ 144.662375, 13.465231 ], [ 144.662351, 13.465173 ], [ 144.662342, 13.465121 ], [ 144.66224, 13.465048 ], [ 144.662162, 13.465004 ], [ 144.661963, 13.464878 ], [ 144.661749, 13.46479 ], [ 144.661637, 13.464775 ], [ 144.66143, 13.464775 ], [ 144.661172, 13.464775 ], [ 144.660908, 13.464796 ], [ 144.660718, 13.464785 ], [ 144.660615, 13.464808 ], [ 144.660444, 13.464806 ], [ 144.660156, 13.464813 ], [ 144.659931, 13.464787 ], [ 144.659751, 13.46479 ], [ 144.659633, 13.464785 ], [ 144.659355, 13.464792 ], [ 144.659218, 13.4648 ], [ 144.659081, 13.464822 ], [ 144.658954, 13.464778 ], [ 144.658808, 13.464772 ], [ 144.658568, 13.464794 ], [ 144.658393, 13.464787 ], [ 144.658255, 13.46482 ], [ 144.658197, 13.464838 ], [ 144.658026, 13.464813 ], [ 144.65783, 13.464811 ], [ 144.657543, 13.464784 ], [ 144.657225, 13.46481 ], [ 144.657078, 13.464809 ], [ 144.656785, 13.464815 ], [ 144.656355, 13.464811 ], [ 144.656199, 13.464796 ], [ 144.656043, 13.464804 ], [ 144.655915, 13.464826 ], [ 144.655783, 13.464816 ], [ 144.655752, 13.464821 ], [ 144.655754, 13.464801 ], [ 144.655598, 13.4648 ], [ 144.65551, 13.464789 ], [ 144.655417, 13.464784 ], [ 144.655315, 13.464806 ], [ 144.655217, 13.464801 ], [ 144.655124, 13.464776 ], [ 144.654924, 13.464803 ], [ 144.654704, 13.464796 ], [ 144.654562, 13.464795 ], [ 144.654411, 13.464803 ], [ 144.654284, 13.464797 ], [ 144.654147, 13.464781 ], [ 144.653981, 13.464775 ], [ 144.653825, 13.464807 ], [ 144.653673, 13.464791 ], [ 144.653536, 13.464799 ], [ 144.653414, 13.464784 ], [ 144.653326, 13.464783 ], [ 144.653234, 13.464792 ], [ 144.653038, 13.464766 ], [ 144.652936, 13.464756 ], [ 144.652853, 13.464769 ], [ 144.652765, 13.464764 ], [ 144.652662, 13.464772 ], [ 144.652555, 13.464766 ], [ 144.6521, 13.464776 ], [ 144.651939, 13.464785 ], [ 144.651802, 13.464774 ], [ 144.651724, 13.464754 ], [ 144.651597, 13.464762 ], [ 144.65129, 13.464759 ], [ 144.651138, 13.464763 ], [ 144.650943, 13.464761 ], [ 144.650791, 13.464764 ], [ 144.650474, 13.464752 ], [ 144.650229, 13.464769 ], [ 144.650098, 13.464753 ], [ 144.650005, 13.464766 ], [ 144.649814, 13.46476 ], [ 144.649496, 13.46481 ], [ 144.649301, 13.464798 ], [ 144.649159, 13.464773 ], [ 144.648847, 13.464765 ], [ 144.648661, 13.464754 ], [ 144.648476, 13.464762 ], [ 144.648285, 13.46476 ], [ 144.648021, 13.464748 ], [ 144.647889, 13.464751 ], [ 144.647762, 13.464745 ], [ 144.647035, 13.464739 ], [ 144.646805, 13.464746 ], [ 144.64659, 13.464744 ], [ 144.646404, 13.464747 ], [ 144.646277, 13.464765 ], [ 144.646155, 13.464788 ], [ 144.646018, 13.464777 ], [ 144.645886, 13.464771 ], [ 144.64573, 13.464755 ], [ 144.645632, 13.464749 ], [ 144.645442, 13.464748 ], [ 144.645261, 13.46476 ], [ 144.64505, 13.464763 ], [ 144.645031, 13.464759 ], [ 144.644929, 13.464776 ], [ 144.644782, 13.464746 ], [ 144.644572, 13.464749 ], [ 144.644435, 13.464757 ], [ 144.644284, 13.464742 ], [ 144.643908, 13.464752 ], [ 144.643698, 13.464765 ], [ 144.64358, 13.464768 ], [ 144.643458, 13.464786 ], [ 144.64338, 13.464767 ], [ 144.643258, 13.46477 ], [ 144.643107, 13.464764 ], [ 144.642965, 13.464763 ], [ 144.642809, 13.464771 ], [ 144.642696, 13.464741 ], [ 144.642511, 13.464749 ], [ 144.642315, 13.464766 ], [ 144.642105, 13.464764 ], [ 144.64191, 13.464753 ], [ 144.641597, 13.46475 ], [ 144.641177, 13.46477 ], [ 144.641021, 13.464764 ], [ 144.640811, 13.464762 ], [ 144.640674, 13.464765 ], [ 144.640146, 13.464755 ], [ 144.639912, 13.464748 ], [ 144.639599, 13.46475 ], [ 144.639472, 13.464768 ], [ 144.63933, 13.464772 ], [ 144.639189, 13.464765 ], [ 144.63909, 13.464803 ], [ 144.638958, 13.464816 ], [ 144.638817, 13.464805 ], [ 144.6387, 13.46479 ], [ 144.638494, 13.464807 ], [ 144.638343, 13.464796 ], [ 144.638124, 13.464741 ], [ 144.637929, 13.464672 ], [ 144.63751, 13.464554 ], [ 144.637374, 13.464505 ], [ 144.637242, 13.464451 ], [ 144.637014, 13.464377 ], [ 144.636848, 13.464313 ], [ 144.636726, 13.464259 ], [ 144.636488, 13.464181 ], [ 144.636293, 13.464102 ], [ 144.636055, 13.46399 ], [ 144.635895, 13.463903 ], [ 144.635764, 13.463806 ], [ 144.635647, 13.463728 ], [ 144.635579, 13.463661 ], [ 144.635424, 13.463549 ], [ 144.635342, 13.463448 ], [ 144.635226, 13.463375 ], [ 144.635099, 13.463307 ], [ 144.634881, 13.463104 ], [ 144.634804, 13.463041 ], [ 144.634761, 13.462991 ], [ 144.634712, 13.462935 ], [ 144.634581, 13.462819 ], [ 144.634475, 13.462746 ], [ 144.634358, 13.462631 ], [ 144.634271, 13.462577 ], [ 144.63416, 13.462485 ], [ 144.634097, 13.462389 ], [ 144.633995, 13.462312 ], [ 144.633869, 13.462229 ], [ 144.633685, 13.462089 ], [ 144.633608, 13.461983 ], [ 144.633448, 13.461862 ], [ 144.633341, 13.461765 ], [ 144.633186, 13.461668 ], [ 144.63303, 13.461557 ], [ 144.632973, 13.461484 ], [ 144.632749, 13.461339 ], [ 144.632652, 13.461266 ], [ 144.632521, 13.461184 ], [ 144.632429, 13.461149 ], [ 144.632395, 13.461092 ], [ 144.632317, 13.461034 ], [ 144.632235, 13.460961 ], [ 144.632153, 13.460912 ], [ 144.632022, 13.460816 ], [ 144.631915, 13.460729 ], [ 144.631867, 13.460661 ], [ 144.631755, 13.460608 ], [ 144.631639, 13.460506 ], [ 144.631551, 13.460448 ], [ 144.631484, 13.460356 ], [ 144.631363, 13.460269 ], [ 144.63126, 13.46022 ], [ 144.631164, 13.460129 ], [ 144.631057, 13.460008 ], [ 144.630941, 13.459945 ], [ 144.630781, 13.459819 ], [ 144.630645, 13.459736 ], [ 144.630548, 13.459654 ], [ 144.630451, 13.459543 ], [ 144.630276, 13.459451 ], [ 144.63015, 13.459407 ], [ 144.629882, 13.459299 ], [ 144.62977, 13.459245 ], [ 144.629653, 13.459225 ], [ 144.629561, 13.459162 ], [ 144.629513, 13.459114 ], [ 144.629381, 13.45905 ], [ 144.629313, 13.459031 ], [ 144.62924, 13.458996 ], [ 144.629123, 13.458962 ], [ 144.62908, 13.458928 ], [ 144.629036, 13.458885 ], [ 144.628939, 13.458841 ], [ 144.628852, 13.458792 ], [ 144.628764, 13.458758 ], [ 144.628671, 13.458728 ], [ 144.628594, 13.458684 ], [ 144.628526, 13.458636 ], [ 144.628438, 13.458621 ], [ 144.62837, 13.458558 ], [ 144.628224, 13.458523 ], [ 144.628162, 13.458486 ], [ 144.628093, 13.458461 ], [ 144.628045, 13.458423 ], [ 144.628003, 13.458376 ], [ 144.627921, 13.458342 ], [ 144.62783, 13.458327 ], [ 144.627744, 13.458293 ], [ 144.627672, 13.45826 ], [ 144.627624, 13.458226 ], [ 144.627567, 13.458216 ], [ 144.627495, 13.458178 ], [ 144.627447, 13.458159 ], [ 144.627399, 13.458168 ], [ 144.627336, 13.458163 ], [ 144.62725, 13.458101 ], [ 144.627179, 13.458067 ], [ 144.627097, 13.458019 ], [ 144.62704, 13.457967 ], [ 144.62693, 13.457909 ], [ 144.626768, 13.457814 ], [ 144.626571, 13.457732 ], [ 144.626509, 13.457675 ], [ 144.626343, 13.45749 ], [ 144.626238, 13.457395 ], [ 144.626167, 13.457342 ], [ 144.626085, 13.457294 ], [ 144.626028, 13.457223 ], [ 144.625947, 13.457152 ], [ 144.625909, 13.457086 ], [ 144.625852, 13.457019 ], [ 144.6258, 13.456981 ], [ 144.625695, 13.456895 ], [ 144.625667, 13.456825 ], [ 144.625562, 13.456748 ], [ 144.625495, 13.456653 ], [ 144.625409, 13.456601 ], [ 144.625348, 13.456497 ], [ 144.625282, 13.456369 ], [ 144.625206, 13.45627 ], [ 144.625134, 13.456198 ], [ 144.62503, 13.456066 ], [ 144.624944, 13.45599 ], [ 144.624882, 13.455951 ], [ 144.624863, 13.45589 ], [ 144.624874, 13.455834 ], [ 144.624812, 13.455762 ], [ 144.624735, 13.455748 ], [ 144.624697, 13.4557 ], [ 144.62465, 13.45562 ], [ 144.624583, 13.455577 ], [ 144.624521, 13.455506 ], [ 144.624464, 13.455477 ], [ 144.62445, 13.455425 ], [ 144.624398, 13.455358 ], [ 144.624321, 13.455301 ], [ 144.624235, 13.455244 ], [ 144.62414, 13.455196 ], [ 144.624068, 13.455153 ], [ 144.62403, 13.455101 ], [ 144.624002, 13.455011 ], [ 144.624013, 13.454908 ], [ 144.624033, 13.45479 ], [ 144.62404, 13.454771 ], [ 144.624024, 13.454753 ], [ 144.623976, 13.454701 ], [ 144.623961, 13.454684 ], [ 144.622786, 13.453314 ], [ 144.619264, 13.449205 ], [ 144.618091, 13.447836 ], [ 144.61807, 13.447813 ], [ 144.618059, 13.447789 ], [ 144.618071, 13.447775 ], [ 144.618094, 13.447795 ], [ 144.618121, 13.447804 ], [ 144.618156, 13.447799 ], [ 144.618177, 13.447782 ], [ 144.618186, 13.447753 ], [ 144.618201, 13.447727 ], [ 144.618221, 13.447705 ], [ 144.61824, 13.447704 ], [ 144.618247, 13.447701 ], [ 144.618258, 13.447698 ], [ 144.618288, 13.447649 ], [ 144.618321, 13.447638 ], [ 144.618307, 13.447624 ], [ 144.618291, 13.447615 ], [ 144.618262, 13.447611 ], [ 144.618223, 13.44762 ], [ 144.618197, 13.447617 ], [ 144.618179, 13.447596 ], [ 144.618135, 13.447575 ], [ 144.618151, 13.44748 ], [ 144.618175, 13.447437 ], [ 144.618211, 13.447405 ], [ 144.618309, 13.447348 ], [ 144.618336, 13.447337 ], [ 144.618351, 13.447316 ], [ 144.618351, 13.447264 ], [ 144.618384, 13.447227 ], [ 144.61839, 13.447198 ], [ 144.618388, 13.44716 ], [ 144.618397, 13.447128 ], [ 144.618424, 13.447092 ], [ 144.618437, 13.447074 ], [ 144.618442, 13.447068 ], [ 144.618478, 13.447045 ], [ 144.618496, 13.447013 ], [ 144.618529, 13.446976 ], [ 144.618562, 13.44695 ], [ 144.618583, 13.446924 ], [ 144.618651, 13.446848 ], [ 144.618607, 13.44674 ], [ 144.618477, 13.446418 ], [ 144.618434, 13.446311 ], [ 144.61839, 13.446282 ], [ 144.618347, 13.446239 ], [ 144.618332, 13.446203 ], [ 144.618328, 13.446191 ], [ 144.618323, 13.446152 ], [ 144.618362, 13.446138 ], [ 144.618392, 13.446139 ], [ 144.618426, 13.44612 ], [ 144.61847, 13.44612 ], [ 144.618475, 13.446092 ], [ 144.618441, 13.446048 ], [ 144.618432, 13.446005 ], [ 144.618432, 13.445962 ], [ 144.618443, 13.445915 ], [ 144.61843, 13.445888 ], [ 144.618424, 13.445876 ], [ 144.618385, 13.445823 ], [ 144.618332, 13.445775 ], [ 144.618318, 13.445717 ], [ 144.618323, 13.445665 ], [ 144.618357, 13.445646 ], [ 144.618416, 13.445637 ], [ 144.618514, 13.445652 ], [ 144.618586, 13.445701 ], [ 144.618675, 13.445615 ], [ 144.618724, 13.445578 ], [ 144.618842, 13.445521 ], [ 144.618886, 13.445517 ], [ 144.618916, 13.445508 ], [ 144.618887, 13.44545 ], [ 144.618892, 13.445388 ], [ 144.618917, 13.445369 ], [ 144.618966, 13.44535 ], [ 144.618996, 13.445303 ], [ 144.619045, 13.445299 ], [ 144.619065, 13.445261 ], [ 144.619041, 13.445203 ], [ 144.619065, 13.445194 ], [ 144.619129, 13.445218 ], [ 144.619173, 13.44519 ], [ 144.619196, 13.445071 ], [ 144.619133, 13.44506 ], [ 144.619069, 13.445026 ], [ 144.619036, 13.444978 ], [ 144.619041, 13.444921 ], [ 144.619037, 13.444873 ], [ 144.61909, 13.444879 ], [ 144.619091, 13.444849 ], [ 144.619156, 13.444849 ], [ 144.619198, 13.444827 ], [ 144.619217, 13.444757 ], [ 144.619265, 13.444728 ], [ 144.619372, 13.4447 ], [ 144.619414, 13.444613 ], [ 144.619468, 13.444579 ], [ 144.61951, 13.444579 ], [ 144.619558, 13.444504 ], [ 144.619565, 13.444434 ], [ 144.619578, 13.444364 ], [ 144.619626, 13.4443 ], [ 144.619698, 13.444255 ], [ 144.619763, 13.44422 ], [ 144.61974, 13.444156 ], [ 144.6197, 13.444068 ], [ 144.619724, 13.443987 ], [ 144.619843, 13.443959 ], [ 144.619933, 13.443931 ], [ 144.620029, 13.443885 ], [ 144.620053, 13.443815 ], [ 144.62006, 13.443716 ], [ 144.620013, 13.443675 ], [ 144.61999, 13.443611 ], [ 144.620038, 13.443506 ], [ 144.620092, 13.443466 ], [ 144.620182, 13.443426 ], [ 144.62023, 13.443345 ], [ 144.620189, 13.443275 ], [ 144.620124, 13.443245 ], [ 144.620095, 13.443157 ], [ 144.620126, 13.443099 ], [ 144.620299, 13.443008 ], [ 144.620335, 13.442967 ], [ 144.620277, 13.442868 ], [ 144.620242, 13.44278 ], [ 144.620171, 13.442692 ], [ 144.620202, 13.442593 ], [ 144.620292, 13.442553 ], [ 144.620381, 13.442537 ], [ 144.620501, 13.442474 ], [ 144.620573, 13.44241 ], [ 144.620663, 13.442283 ], [ 144.620682, 13.442196 ], [ 144.620647, 13.442126 ], [ 144.620672, 13.442033 ], [ 144.620726, 13.441958 ], [ 144.620781, 13.441871 ], [ 144.620907, 13.441697 ], [ 144.620937, 13.441645 ], [ 144.62089, 13.441592 ], [ 144.620796, 13.44155 ], [ 144.620767, 13.441469 ], [ 144.620815, 13.441405 ], [ 144.620833, 13.441329 ], [ 144.620894, 13.441266 ], [ 144.620935, 13.441249 ], [ 144.620996, 13.441185 ], [ 144.621092, 13.441099 ], [ 144.621116, 13.44107 ], [ 144.621081, 13.440982 ], [ 144.621194, 13.440943 ], [ 144.621254, 13.440902 ], [ 144.621213, 13.440844 ], [ 144.62122, 13.440791 ], [ 144.621221, 13.440669 ], [ 144.621233, 13.440599 ], [ 144.621311, 13.440548 ], [ 144.621407, 13.440537 ], [ 144.621478, 13.440503 ], [ 144.621562, 13.440451 ], [ 144.621616, 13.440387 ], [ 144.621659, 13.440312 ], [ 144.621624, 13.440265 ], [ 144.6216, 13.440195 ], [ 144.621601, 13.440143 ], [ 144.621655, 13.440131 ], [ 144.621738, 13.440121 ], [ 144.62181, 13.440104 ], [ 144.621887, 13.44007 ], [ 144.62193, 13.44 ], [ 144.622002, 13.439913 ], [ 144.622074, 13.439844 ], [ 144.622117, 13.439763 ], [ 144.622165, 13.439705 ], [ 144.622207, 13.439647 ], [ 144.622267, 13.439595 ], [ 144.622309, 13.439578 ], [ 144.622326, 13.439608 ], [ 144.622398, 13.439579 ], [ 144.62247, 13.439533 ], [ 144.622459, 13.439411 ], [ 144.622412, 13.439387 ], [ 144.622493, 13.439382 ], [ 144.622501, 13.439347 ], [ 144.622567, 13.439313 ], [ 144.622639, 13.439314 ], [ 144.62268, 13.439302 ], [ 144.622729, 13.43925 ], [ 144.622729, 13.439215 ], [ 144.622706, 13.439157 ], [ 144.622712, 13.43911 ], [ 144.622778, 13.43907 ], [ 144.622921, 13.439013 ], [ 144.622946, 13.438955 ], [ 144.623036, 13.438875 ], [ 144.623054, 13.438834 ], [ 144.62312, 13.438817 ], [ 144.623162, 13.438794 ], [ 144.623174, 13.438736 ], [ 144.623228, 13.438684 ], [ 144.623344, 13.438652 ], [ 144.623371, 13.438645 ], [ 144.623426, 13.43857 ], [ 144.623569, 13.438489 ], [ 144.623635, 13.43849 ], [ 144.623683, 13.438455 ], [ 144.623743, 13.438404 ], [ 144.623743, 13.438345 ], [ 144.623714, 13.438293 ], [ 144.623762, 13.438229 ], [ 144.623906, 13.438108 ], [ 144.623972, 13.438103 ], [ 144.624055, 13.438069 ], [ 144.624032, 13.43801 ], [ 144.624069, 13.437929 ], [ 144.624129, 13.437848 ], [ 144.624243, 13.437738 ], [ 144.624715, 13.437522 ], [ 144.624781, 13.43754 ], [ 144.624846, 13.437581 ], [ 144.624923, 13.437593 ], [ 144.625007, 13.437553 ], [ 144.625114, 13.437496 ], [ 144.625192, 13.437439 ], [ 144.625229, 13.437387 ], [ 144.625235, 13.437311 ], [ 144.62523, 13.437235 ], [ 144.625278, 13.437183 ], [ 144.625305, 13.437178 ], [ 144.625332, 13.437172 ], [ 144.625415, 13.437208 ], [ 144.625474, 13.437249 ], [ 144.625581, 13.43725 ], [ 144.62567, 13.437234 ], [ 144.62588, 13.437102 ], [ 144.626053, 13.437027 ], [ 144.626184, 13.437011 ], [ 144.626221, 13.436942 ], [ 144.626304, 13.436913 ], [ 144.626352, 13.436931 ], [ 144.626448, 13.436886 ], [ 144.626538, 13.436799 ], [ 144.626753, 13.436719 ], [ 144.626925, 13.436721 ], [ 144.627067, 13.436781 ], [ 144.627133, 13.436787 ], [ 144.627222, 13.43677 ], [ 144.627312, 13.436731 ], [ 144.627307, 13.436678 ], [ 144.627325, 13.436597 ], [ 144.627558, 13.436506 ], [ 144.627618, 13.436448 ], [ 144.62766, 13.436425 ], [ 144.62775, 13.436397 ], [ 144.627851, 13.436398 ], [ 144.627952, 13.436364 ], [ 144.628036, 13.436324 ], [ 144.62812, 13.436301 ], [ 144.628191, 13.436302 ], [ 144.628233, 13.436314 ], [ 144.628298, 13.436297 ], [ 144.628358, 13.436263 ], [ 144.628442, 13.436223 ], [ 144.628552, 13.436145 ], [ 144.628574, 13.436131 ], [ 144.628621, 13.43616 ], [ 144.628872, 13.436087 ], [ 144.62892, 13.436035 ], [ 144.629051, 13.435972 ], [ 144.629188, 13.435944 ], [ 144.629326, 13.435876 ], [ 144.62944, 13.435807 ], [ 144.629696, 13.435728 ], [ 144.629831, 13.435671 ], [ 144.629879, 13.435584 ], [ 144.629927, 13.435584 ], [ 144.630004, 13.435573 ], [ 144.630064, 13.435574 ], [ 144.6301, 13.435539 ], [ 144.630189, 13.435517 ], [ 144.630273, 13.435506 ], [ 144.630326, 13.435507 ], [ 144.630398, 13.435461 ], [ 144.630476, 13.435391 ], [ 144.630584, 13.43534 ], [ 144.630727, 13.43526 ], [ 144.630847, 13.435203 ], [ 144.630984, 13.435169 ], [ 144.631074, 13.435164 ], [ 144.631157, 13.435136 ], [ 144.631271, 13.435084 ], [ 144.631343, 13.435015 ], [ 144.631409, 13.434969 ], [ 144.631588, 13.434918 ], [ 144.631624, 13.434855 ], [ 144.631737, 13.434827 ], [ 144.631791, 13.434827 ], [ 144.631833, 13.434763 ], [ 144.631899, 13.434712 ], [ 144.631965, 13.434654 ], [ 144.632025, 13.434631 ], [ 144.632102, 13.434644 ], [ 144.632192, 13.434615 ], [ 144.632269, 13.434581 ], [ 144.632347, 13.434529 ], [ 144.632396, 13.434472 ], [ 144.632527, 13.434403 ], [ 144.632611, 13.43438 ], [ 144.632712, 13.434381 ], [ 144.632825, 13.434406 ], [ 144.632896, 13.434434 ], [ 144.632997, 13.434396 ], [ 144.633069, 13.434338 ], [ 144.633135, 13.434304 ], [ 144.633195, 13.434264 ], [ 144.633231, 13.434212 ], [ 144.633208, 13.434165 ], [ 144.633244, 13.434118 ], [ 144.633298, 13.434084 ], [ 144.633351, 13.434108 ], [ 144.633417, 13.434114 ], [ 144.633495, 13.434063 ], [ 144.633567, 13.433988 ], [ 144.63368, 13.433913 ], [ 144.633669, 13.433878 ], [ 144.633669, 13.43382 ], [ 144.633688, 13.433744 ], [ 144.633921, 13.433641 ], [ 144.634017, 13.433584 ], [ 144.634167, 13.433446 ], [ 144.634239, 13.433353 ], [ 144.634299, 13.433319 ], [ 144.634329, 13.433272 ], [ 144.634389, 13.433244 ], [ 144.634496, 13.43328 ], [ 144.634585, 13.433269 ], [ 144.634645, 13.433246 ], [ 144.634675, 13.433223 ], [ 144.634622, 13.433199 ], [ 144.634593, 13.433083 ], [ 144.634594, 13.433001 ], [ 144.634672, 13.43292 ], [ 144.634744, 13.432886 ], [ 144.634809, 13.432887 ], [ 144.634863, 13.432899 ], [ 144.634899, 13.432841 ], [ 144.634906, 13.432777 ], [ 144.63496, 13.432737 ], [ 144.635043, 13.432737 ], [ 144.635115, 13.432697 ], [ 144.635192, 13.432669 ], [ 144.635228, 13.432623 ], [ 144.635259, 13.432576 ], [ 144.635247, 13.432518 ], [ 144.635266, 13.432425 ], [ 144.635314, 13.432367 ], [ 144.635374, 13.432304 ], [ 144.635411, 13.43224 ], [ 144.635429, 13.43217 ], [ 144.635549, 13.432113 ], [ 144.635585, 13.432055 ], [ 144.635604, 13.432003 ], [ 144.635628, 13.431951 ], [ 144.635682, 13.431939 ], [ 144.635747, 13.431917 ], [ 144.635819, 13.431883 ], [ 144.635891, 13.43186 ], [ 144.636045, 13.43185 ], [ 144.636087, 13.431815 ], [ 144.636129, 13.431792 ], [ 144.636177, 13.431793 ], [ 144.63623, 13.431787 ], [ 144.636302, 13.431771 ], [ 144.636326, 13.431736 ], [ 144.636393, 13.43162 ], [ 144.636411, 13.431539 ], [ 144.636442, 13.431486 ], [ 144.63646, 13.431423 ], [ 144.636473, 13.431359 ], [ 144.636479, 13.431295 ], [ 144.636521, 13.431254 ], [ 144.636616, 13.431296 ], [ 144.636717, 13.431308 ], [ 144.636812, 13.431304 ], [ 144.636902, 13.431322 ], [ 144.637008, 13.431352 ], [ 144.637074, 13.431376 ], [ 144.637097, 13.431376 ], [ 144.637151, 13.431377 ], [ 144.637186, 13.431418 ], [ 144.637252, 13.431424 ], [ 144.63752, 13.43138 ], [ 144.637538, 13.431363 ], [ 144.637515, 13.431316 ], [ 144.637503, 13.431269 ], [ 144.637516, 13.431211 ], [ 144.637564, 13.431153 ], [ 144.637636, 13.431084 ], [ 144.637833, 13.430999 ], [ 144.637899, 13.430953 ], [ 144.637989, 13.430918 ], [ 144.638084, 13.430896 ], [ 144.638191, 13.43088 ], [ 144.638365, 13.430794 ], [ 144.638436, 13.430783 ], [ 144.638496, 13.43076 ], [ 144.638646, 13.430662 ], [ 144.638664, 13.430634 ], [ 144.638647, 13.430575 ], [ 144.638659, 13.4305 ], [ 144.638836, 13.430076 ], [ 144.638878, 13.430041 ], [ 144.638914, 13.430001 ], [ 144.638897, 13.429954 ], [ 144.63885, 13.429884 ], [ 144.638797, 13.429819 ], [ 144.638774, 13.429737 ], [ 144.638745, 13.429673 ], [ 144.638743, 13.42958 ], [ 144.638726, 13.429469 ], [ 144.638661, 13.429393 ], [ 144.638584, 13.42934 ], [ 144.638525, 13.429281 ], [ 144.638508, 13.429217 ], [ 144.638515, 13.429129 ], [ 144.638526, 13.429098 ], [ 144.638546, 13.429042 ], [ 144.638618, 13.428979 ], [ 144.638673, 13.428946 ], [ 144.638706, 13.428799 ], [ 144.638706, 13.428747 ], [ 144.638677, 13.428682 ], [ 144.638701, 13.428624 ], [ 144.638732, 13.428566 ], [ 144.638756, 13.428467 ], [ 144.638758, 13.428275 ], [ 144.638783, 13.428141 ], [ 144.63882, 13.428025 ], [ 144.638906, 13.427805 ], [ 144.638955, 13.427636 ], [ 144.638968, 13.427479 ], [ 144.638964, 13.427374 ], [ 144.639012, 13.42727 ], [ 144.639039, 13.427191 ], [ 144.639055, 13.427148 ], [ 144.639122, 13.427026 ], [ 144.639254, 13.426882 ], [ 144.639362, 13.426772 ], [ 144.639458, 13.426697 ], [ 144.639512, 13.426686 ], [ 144.639614, 13.426565 ], [ 144.639807, 13.426322 ], [ 144.639861, 13.426241 ], [ 144.639898, 13.426177 ], [ 144.63988, 13.426142 ], [ 144.639863, 13.426078 ], [ 144.639893, 13.42602 ], [ 144.63981, 13.425978 ], [ 144.639763, 13.425937 ], [ 144.63974, 13.425867 ], [ 144.639771, 13.42578 ], [ 144.639842, 13.425734 ], [ 144.639825, 13.425699 ], [ 144.639741, 13.425716 ], [ 144.639664, 13.425715 ], [ 144.639647, 13.425645 ], [ 144.639775, 13.425372 ], [ 144.639943, 13.425222 ], [ 144.640056, 13.425194 ], [ 144.640175, 13.425155 ], [ 144.639943, 13.42517 ], [ 144.639812, 13.425169 ], [ 144.639753, 13.425133 ], [ 144.639742, 13.425081 ], [ 144.639778, 13.425011 ], [ 144.639886, 13.424971 ], [ 144.639981, 13.424955 ], [ 144.640025, 13.424957 ], [ 144.640171, 13.42485 ], [ 144.640278, 13.424709 ], [ 144.640212, 13.424657 ], [ 144.64008, 13.42472 ], [ 144.639935, 13.424732 ], [ 144.639909, 13.424615 ], [ 144.640003, 13.424487 ], [ 144.640083, 13.424346 ], [ 144.640072, 13.424191 ], [ 144.6401, 13.424036 ], [ 144.640101, 13.423868 ], [ 144.640236, 13.423534 ], [ 144.640291, 13.423367 ], [ 144.640364, 13.423226 ], [ 144.640385, 13.423187 ], [ 144.640412, 13.423084 ], [ 144.640269, 13.422953 ], [ 144.640098, 13.42281 ], [ 144.640022, 13.422577 ], [ 144.639879, 13.422304 ], [ 144.639777, 13.422006 ], [ 144.63974, 13.421696 ], [ 144.639703, 13.421438 ], [ 144.639705, 13.421401 ], [ 144.639718, 13.421205 ], [ 144.639826, 13.421026 ], [ 144.640038, 13.420911 ], [ 144.640224, 13.420784 ], [ 144.640358, 13.420579 ], [ 144.640502, 13.42042 ], [ 144.640544, 13.420374 ], [ 144.64081, 13.420222 ], [ 144.641022, 13.420056 ], [ 144.641169, 13.419876 ], [ 144.641236, 13.419761 ], [ 144.64141, 13.419491 ], [ 144.641596, 13.419325 ], [ 144.641928, 13.419135 ], [ 144.642233, 13.418944 ], [ 144.642341, 13.418725 ], [ 144.642369, 13.418545 ], [ 144.642501, 13.418482 ], [ 144.642884, 13.418511 ], [ 144.643095, 13.418487 ], [ 144.643188, 13.418359 ], [ 144.643373, 13.418374 ], [ 144.643439, 13.418348 ], [ 144.643432, 13.418254 ], [ 144.643428, 13.41818 ], [ 144.643363, 13.418038 ], [ 144.643417, 13.417896 ], [ 144.643562, 13.417872 ], [ 144.643708, 13.41786 ], [ 144.643801, 13.417784 ], [ 144.64392, 13.417695 ], [ 144.644132, 13.417658 ], [ 144.644303, 13.417659 ], [ 144.644381, 13.41775 ], [ 144.644435, 13.417821 ], [ 144.644511, 13.41792 ], [ 144.644602, 13.418088 ], [ 144.644893, 13.418208 ], [ 144.644957, 13.418234 ], [ 144.645093, 13.418274 ], [ 144.645272, 13.418327 ], [ 144.645615, 13.418407 ], [ 144.646048, 13.418605 ], [ 144.646087, 13.4186 ], [ 144.646391, 13.41857 ], [ 144.646604, 13.418378 ], [ 144.646909, 13.418226 ], [ 144.647213, 13.418087 ], [ 144.647533, 13.417767 ], [ 144.647775, 13.417343 ], [ 144.647963, 13.416945 ], [ 144.648072, 13.416623 ], [ 144.648087, 13.416446 ], [ 144.648101, 13.416288 ], [ 144.647959, 13.416054 ], [ 144.647634, 13.415955 ], [ 144.647602, 13.415829 ], [ 144.647538, 13.415752 ], [ 144.647495, 13.415722 ], [ 144.647452, 13.415692 ], [ 144.647386, 13.415651 ], [ 144.647282, 13.415639 ], [ 144.647216, 13.41561 ], [ 144.647168, 13.415539 ], [ 144.647172, 13.415399 ], [ 144.647244, 13.415422 ], [ 144.647284, 13.415478 ], [ 144.64726, 13.415557 ], [ 144.647329, 13.415558 ], [ 144.647376, 13.415505 ], [ 144.647402, 13.41546 ], [ 144.647491, 13.415385 ], [ 144.647472, 13.415312 ], [ 144.647538, 13.41525 ], [ 144.647644, 13.415173 ], [ 144.647738, 13.415019 ], [ 144.647751, 13.41498 ], [ 144.647832, 13.414865 ], [ 144.647939, 13.414672 ], [ 144.648099, 13.414506 ], [ 144.648204, 13.414546 ], [ 144.648375, 13.41456 ], [ 144.648507, 13.4146 ], [ 144.648771, 13.41459 ], [ 144.648874, 13.414552 ], [ 144.648995, 13.414553 ], [ 144.649191, 13.414736 ], [ 144.649308, 13.41493 ], [ 144.649623, 13.415127 ], [ 144.649937, 13.415298 ], [ 144.650267, 13.41534 ], [ 144.65041, 13.415294 ], [ 144.650505, 13.415264 ], [ 144.650796, 13.41519 ], [ 144.650995, 13.415075 ], [ 144.651286, 13.414988 ], [ 144.651431, 13.415002 ], [ 144.651732, 13.41516 ], [ 144.651982, 13.415278 ], [ 144.652469, 13.415308 ], [ 144.652892, 13.415287 ], [ 144.653104, 13.415134 ], [ 144.653343, 13.414994 ], [ 144.653529, 13.414866 ], [ 144.653755, 13.414701 ], [ 144.653953, 13.414612 ], [ 144.654392, 13.414654 ], [ 144.654401, 13.41467 ], [ 144.65442, 13.414673 ], [ 144.654512, 13.414713 ], [ 144.654573, 13.414704 ], [ 144.654687, 13.414675 ], [ 144.654801, 13.414605 ], [ 144.654925, 13.414546 ], [ 144.654946, 13.414475 ], [ 144.65505, 13.414426 ], [ 144.655113, 13.414316 ], [ 144.655205, 13.414317 ], [ 144.655266, 13.414388 ], [ 144.655358, 13.414469 ], [ 144.655399, 13.41454 ], [ 144.65546, 13.414551 ], [ 144.65576, 13.414412 ], [ 144.65606, 13.414254 ], [ 144.65633, 13.414055 ], [ 144.6566, 13.413836 ], [ 144.656922, 13.413556 ], [ 144.657181, 13.413388 ], [ 144.657461, 13.413179 ], [ 144.657689, 13.412959 ], [ 144.658012, 13.412639 ], [ 144.658396, 13.41223 ], [ 144.658887, 13.411589 ], [ 144.659179, 13.411148 ], [ 144.659326, 13.410868 ], [ 144.659516, 13.410416 ], [ 144.65959, 13.410185 ], [ 144.659756, 13.410075 ], [ 144.660015, 13.409836 ], [ 144.660235, 13.409475 ], [ 144.660319, 13.409305 ], [ 144.660475, 13.409155 ], [ 144.660652, 13.408915 ], [ 144.660789, 13.408664 ], [ 144.660946, 13.408393 ], [ 144.661051, 13.408173 ], [ 144.661074, 13.408111 ], [ 144.661125, 13.407982 ], [ 144.661085, 13.40779 ], [ 144.661004, 13.407729 ], [ 144.660978, 13.407729 ], [ 144.660962, 13.407703 ], [ 144.660957, 13.407674 ], [ 144.660977, 13.407631 ], [ 144.661021, 13.407636 ], [ 144.66106, 13.407632 ], [ 144.661075, 13.407603 ], [ 144.661087, 13.407588 ], [ 144.661119, 13.407498 ], [ 144.661122, 13.407185 ], [ 144.661113, 13.407097 ], [ 144.661119, 13.40708 ], [ 144.661118, 13.407062 ], [ 144.661145, 13.407011 ], [ 144.66119, 13.406911 ], [ 144.661195, 13.406811 ], [ 144.661156, 13.406805 ], [ 144.661137, 13.406772 ], [ 144.661182, 13.406667 ], [ 144.661212, 13.406581 ], [ 144.661168, 13.406117 ], [ 144.661185, 13.40583 ], [ 144.661154, 13.405529 ], [ 144.661166, 13.40507 ], [ 144.661163, 13.404874 ], [ 144.661125, 13.404711 ], [ 144.661102, 13.404634 ], [ 144.661048, 13.4046 ], [ 144.660931, 13.404599 ], [ 144.660834, 13.404546 ], [ 144.660766, 13.404516 ], [ 144.660693, 13.404506 ], [ 144.66061, 13.404505 ], [ 144.660576, 13.404467 ], [ 144.66064, 13.40442 ], [ 144.660645, 13.404377 ], [ 144.66067, 13.404348 ], [ 144.660709, 13.404344 ], [ 144.660758, 13.404325 ], [ 144.660837, 13.404268 ], [ 144.660915, 13.40424 ], [ 144.660945, 13.404202 ], [ 144.660945, 13.404159 ], [ 144.66095, 13.404112 ], [ 144.661004, 13.404088 ], [ 144.661053, 13.404117 ], [ 144.661121, 13.404142 ], [ 144.661169, 13.4042 ], [ 144.661213, 13.404195 ], [ 144.661292, 13.404177 ], [ 144.66136, 13.404139 ], [ 144.661365, 13.404125 ], [ 144.661425, 13.403992 ], [ 144.661431, 13.40393 ], [ 144.661475, 13.40392 ], [ 144.661529, 13.403902 ], [ 144.661568, 13.403845 ], [ 144.661599, 13.403745 ], [ 144.661654, 13.403621 ], [ 144.661747, 13.403526 ], [ 144.661865, 13.40347 ], [ 144.662002, 13.403423 ], [ 144.662105, 13.403443 ], [ 144.662192, 13.403478 ], [ 144.66228, 13.403526 ], [ 144.662372, 13.403546 ], [ 144.662431, 13.403566 ], [ 144.66249, 13.403538 ], [ 144.662569, 13.403443 ], [ 144.662581, 13.403401 ], [ 144.662644, 13.40319 ], [ 144.662651, 13.403042 ], [ 144.662688, 13.402947 ], [ 144.662696, 13.402846 ], [ 144.662699, 13.402808 ], [ 144.662681, 13.402655 ], [ 144.662628, 13.402583 ], [ 144.662468, 13.402519 ], [ 144.662375, 13.402475 ], [ 144.662307, 13.402427 ], [ 144.662225, 13.402397 ], [ 144.662196, 13.402354 ], [ 144.662193, 13.402328 ], [ 144.662191, 13.402297 ], [ 144.662192, 13.40222 ], [ 144.662237, 13.402168 ], [ 144.66232, 13.402169 ], [ 144.662417, 13.402194 ], [ 144.662475, 13.402251 ], [ 144.662573, 13.402257 ], [ 144.662656, 13.402215 ], [ 144.662735, 13.402139 ], [ 144.662855, 13.401853 ], [ 144.66295, 13.401677 ], [ 144.663044, 13.401487 ], [ 144.663109, 13.401306 ], [ 144.66312, 13.401191 ], [ 144.663087, 13.401143 ], [ 144.663078, 13.401057 ], [ 144.663137, 13.400782 ], [ 144.663162, 13.400701 ], [ 144.66321, 13.400715 ], [ 144.663259, 13.40074 ], [ 144.663298, 13.400726 ], [ 144.663314, 13.400645 ], [ 144.663302, 13.400334 ], [ 144.663246, 13.400075 ], [ 144.66321, 13.399944 ], [ 144.663175, 13.399816 ], [ 144.663143, 13.399581 ], [ 144.663132, 13.399411 ], [ 144.663126, 13.399323 ], [ 144.663091, 13.398974 ], [ 144.663053, 13.398841 ], [ 144.662954, 13.39849 ], [ 144.66267, 13.39799 ], [ 144.662584, 13.39786 ], [ 144.662532, 13.397606 ], [ 144.662437, 13.397328 ], [ 144.662407, 13.39725 ], [ 144.662318, 13.397021 ], [ 144.662234, 13.396886 ], [ 144.662201, 13.396737 ], [ 144.662195, 13.396719 ], [ 144.662172, 13.396649 ], [ 144.66214, 13.396546 ], [ 144.662096, 13.396444 ], [ 144.662068, 13.396378 ], [ 144.662049, 13.396294 ], [ 144.662021, 13.396162 ], [ 144.661964, 13.396054 ], [ 144.661925, 13.395979 ], [ 144.661834, 13.395873 ], [ 144.661698, 13.395738 ], [ 144.661655, 13.395623 ], [ 144.661648, 13.395562 ], [ 144.661633, 13.395417 ], [ 144.661571, 13.39523 ], [ 144.661471, 13.395019 ], [ 144.661433, 13.394885 ], [ 144.661425, 13.394665 ], [ 144.661344, 13.394516 ], [ 144.661246, 13.39428 ], [ 144.661158, 13.394119 ], [ 144.661121, 13.39405 ], [ 144.660971, 13.393886 ], [ 144.660824, 13.393732 ], [ 144.660814, 13.393721 ], [ 144.660792, 13.393698 ], [ 144.660785, 13.393689 ], [ 144.660777, 13.393678 ], [ 144.660652, 13.393515 ], [ 144.660615, 13.393371 ], [ 144.66066, 13.39329 ], [ 144.660733, 13.393253 ], [ 144.660772, 13.393277 ], [ 144.660791, 13.39331 ], [ 144.66084, 13.393301 ], [ 144.66085, 13.393273 ], [ 144.660826, 13.393234 ], [ 144.660861, 13.393153 ], [ 144.660943, 13.392795 ], [ 144.660981, 13.392337 ], [ 144.660957, 13.392053 ], [ 144.660955, 13.392021 ], [ 144.660989, 13.39202 ], [ 144.660973, 13.39172 ], [ 144.660915, 13.391619 ], [ 144.660884, 13.391274 ], [ 144.660842, 13.391097 ], [ 144.660775, 13.390905 ], [ 144.66067, 13.39066 ], [ 144.66055, 13.390425 ], [ 144.660397, 13.390146 ], [ 144.660281, 13.389964 ], [ 144.660224, 13.389936 ], [ 144.660072, 13.389861 ], [ 144.659976, 13.389769 ], [ 144.659904, 13.389611 ], [ 144.659852, 13.389438 ], [ 144.659775, 13.389285 ], [ 144.659746, 13.389243 ], [ 144.659616, 13.389049 ], [ 144.659461, 13.388899 ], [ 144.659355, 13.388769 ], [ 144.659288, 13.388625 ], [ 144.659231, 13.388476 ], [ 144.659067, 13.388269 ], [ 144.658878, 13.38811 ], [ 144.658674, 13.388012 ], [ 144.658528, 13.387958 ], [ 144.658469, 13.387972 ], [ 144.658366, 13.388081 ], [ 144.658268, 13.388128 ], [ 144.658189, 13.388127 ], [ 144.658087, 13.388069 ], [ 144.657952, 13.387953 ], [ 144.657903, 13.387907 ], [ 144.657705, 13.387721 ], [ 144.657472, 13.387532 ], [ 144.6573, 13.387387 ], [ 144.657053, 13.387213 ], [ 144.65682, 13.387072 ], [ 144.656694, 13.386961 ], [ 144.656578, 13.386817 ], [ 144.656452, 13.386645 ], [ 144.656423, 13.386605 ], [ 144.656376, 13.386542 ], [ 144.656328, 13.386494 ], [ 144.656294, 13.38646 ], [ 144.656256, 13.386432 ], [ 144.656244, 13.386412 ], [ 144.656211, 13.386383 ], [ 144.656089, 13.3863 ], [ 144.656046, 13.386281 ], [ 144.655946, 13.386225 ], [ 144.655891, 13.386201 ], [ 144.655868, 13.386196 ], [ 144.655849, 13.386194 ], [ 144.655838, 13.386195 ], [ 144.65583, 13.386197 ], [ 144.655765, 13.386194 ], [ 144.655744, 13.386179 ], [ 144.655728, 13.386154 ], [ 144.655723, 13.386125 ], [ 144.655727, 13.386096 ], [ 144.65574, 13.386081 ], [ 144.655766, 13.386086 ], [ 144.655805, 13.386082 ], [ 144.655868, 13.386045 ], [ 144.655947, 13.38596 ], [ 144.655987, 13.385874 ], [ 144.656007, 13.38575 ], [ 144.655989, 13.385601 ], [ 144.655937, 13.385419 ], [ 144.6559, 13.385317 ], [ 144.65584, 13.385226 ], [ 144.655764, 13.385015 ], [ 144.655698, 13.384883 ], [ 144.655639, 13.384766 ], [ 144.655509, 13.384583 ], [ 144.655388, 13.384449 ], [ 144.65533, 13.384385 ], [ 144.655142, 13.384159 ], [ 144.654983, 13.383999 ], [ 144.654953, 13.383975 ], [ 144.654813, 13.383864 ], [ 144.65476, 13.383753 ], [ 144.654727, 13.383619 ], [ 144.654493, 13.383062 ], [ 144.654412, 13.382899 ], [ 144.65435, 13.382722 ], [ 144.654284, 13.382515 ], [ 144.654169, 13.382235 ], [ 144.654093, 13.38205 ], [ 144.653969, 13.38179 ], [ 144.653891, 13.381656 ], [ 144.653882, 13.381641 ], [ 144.653875, 13.381631 ], [ 144.653823, 13.381561 ], [ 144.653815, 13.38155 ], [ 144.653809, 13.381536 ], [ 144.653757, 13.38142 ], [ 144.653667, 13.381123 ], [ 144.6536, 13.380993 ], [ 144.653498, 13.380873 ], [ 144.65346, 13.380829 ], [ 144.653352, 13.380651 ], [ 144.653213, 13.380435 ], [ 144.653087, 13.380281 ], [ 144.652956, 13.380174 ], [ 144.652898, 13.380088 ], [ 144.65289, 13.379983 ], [ 144.652818, 13.379877 ], [ 144.65275, 13.379752 ], [ 144.652669, 13.379584 ], [ 144.652578, 13.379415 ], [ 144.652434, 13.379118 ], [ 144.652399, 13.378981 ], [ 144.652354, 13.378801 ], [ 144.652301, 13.378564 ], [ 144.652289, 13.378523 ], [ 144.652226, 13.378442 ], [ 144.652153, 13.378388 ], [ 144.652086, 13.378355 ], [ 144.652062, 13.378343 ], [ 144.652056, 13.37834 ], [ 144.651989, 13.378317 ], [ 144.651983, 13.378315 ], [ 144.65197, 13.378301 ], [ 144.651925, 13.378252 ], [ 144.651887, 13.378161 ], [ 144.651881, 13.378144 ], [ 144.651853, 13.378065 ], [ 144.651836, 13.377883 ], [ 144.651763, 13.377821 ], [ 144.651666, 13.377753 ], [ 144.651624, 13.377702 ], [ 144.651603, 13.377676 ], [ 144.651541, 13.377589 ], [ 144.651524, 13.377552 ], [ 144.651489, 13.377476 ], [ 144.651488, 13.377474 ], [ 144.65146, 13.377344 ], [ 144.651454, 13.377231 ], [ 144.651452, 13.377186 ], [ 144.651456, 13.377149 ], [ 144.651463, 13.377077 ], [ 144.651516, 13.376982 ], [ 144.651522, 13.376972 ], [ 144.651551, 13.376932 ], [ 144.65172, 13.376701 ], [ 144.651849, 13.376554 ], [ 144.651942, 13.376483 ], [ 144.651985, 13.376435 ], [ 144.652065, 13.376346 ], [ 144.65214, 13.376198 ], [ 144.652225, 13.37597 ], [ 144.652247, 13.375764 ], [ 144.652252, 13.375721 ], [ 144.652298, 13.375028 ], [ 144.652306, 13.374746 ], [ 144.652315, 13.374287 ], [ 144.652355, 13.374287 ], [ 144.65236, 13.374149 ], [ 144.652377, 13.373939 ], [ 144.652403, 13.373738 ], [ 144.6524, 13.3736 ], [ 144.6524, 13.373542 ], [ 144.652421, 13.37337 ], [ 144.65238, 13.37314 ], [ 144.652371, 13.372987 ], [ 144.65236, 13.37287 ], [ 144.652354, 13.372806 ], [ 144.652292, 13.372652 ], [ 144.652171, 13.372512 ], [ 144.652162, 13.372388 ], [ 144.652144, 13.372259 ], [ 144.652126, 13.372062 ], [ 144.652089, 13.371919 ], [ 144.651979, 13.371616 ], [ 144.651952, 13.371473 ], [ 144.651899, 13.371343 ], [ 144.651856, 13.371257 ], [ 144.651759, 13.37116 ], [ 144.651706, 13.371078 ], [ 144.651689, 13.370918 ], [ 144.651688, 13.370901 ], [ 144.651641, 13.370724 ], [ 144.651564, 13.370514 ], [ 144.651569, 13.370494 ], [ 144.651455, 13.370258 ], [ 144.651398, 13.370086 ], [ 144.651302, 13.369937 ], [ 144.65123, 13.369855 ], [ 144.651088, 13.369848 ], [ 144.650932, 13.369857 ], [ 144.650805, 13.369832 ], [ 144.650763, 13.369804 ], [ 144.650723, 13.369759 ], [ 144.650712, 13.369737 ], [ 144.650704, 13.369658 ], [ 144.650705, 13.369069 ], [ 144.650711, 13.368571 ], [ 144.650705, 13.368172 ], [ 144.650687, 13.368107 ], [ 144.6506, 13.36795 ], [ 144.650474, 13.367763 ], [ 144.650164, 13.367966 ], [ 144.65018, 13.367803 ], [ 144.650239, 13.367756 ], [ 144.650191, 13.367712 ], [ 144.650196, 13.367674 ], [ 144.650697, 13.367339 ], [ 144.650689, 13.367249 ], [ 144.650694, 13.367148 ], [ 144.650701, 13.366962 ], [ 144.650653, 13.366923 ], [ 144.650614, 13.36687 ], [ 144.650585, 13.366803 ], [ 144.650552, 13.366707 ], [ 144.650529, 13.366606 ], [ 144.65052, 13.366472 ], [ 144.650472, 13.36641 ], [ 144.650346, 13.366337 ], [ 144.650295, 13.366255 ], [ 144.650283, 13.366246 ], [ 144.650223, 13.366202 ], [ 144.650165, 13.366139 ], [ 144.650088, 13.366019 ], [ 144.649996, 13.365932 ], [ 144.649908, 13.365864 ], [ 144.649811, 13.365825 ], [ 144.649674, 13.365819 ], [ 144.649518, 13.365798 ], [ 144.649402, 13.36574 ], [ 144.649276, 13.365629 ], [ 144.64916, 13.36548 ], [ 144.649034, 13.365368 ], [ 144.648962, 13.365258 ], [ 144.648924, 13.365152 ], [ 144.648901, 13.365013 ], [ 144.648888, 13.364879 ], [ 144.648933, 13.364741 ], [ 144.649087, 13.364475 ], [ 144.649165, 13.364242 ], [ 144.649168, 13.364232 ], [ 144.649273, 13.363917 ], [ 144.649286, 13.363826 ], [ 144.649262, 13.363764 ], [ 144.649229, 13.36362 ], [ 144.649211, 13.363491 ], [ 144.649202, 13.363376 ], [ 144.649199, 13.363266 ], [ 144.649259, 13.363138 ], [ 144.649299, 13.363033 ], [ 144.649329, 13.36288 ], [ 144.649374, 13.362761 ], [ 144.649391, 13.362555 ], [ 144.649404, 13.362541 ], [ 144.649397, 13.362493 ], [ 144.649334, 13.362364 ], [ 144.649282, 13.362205 ], [ 144.649276, 13.362196 ], [ 144.649109, 13.361955 ], [ 144.648931, 13.361681 ], [ 144.648858, 13.361631 ], [ 144.648824, 13.361608 ], [ 144.648799, 13.361675 ], [ 144.648726, 13.361689 ], [ 144.648722, 13.361685 ], [ 144.648668, 13.361626 ], [ 144.648615, 13.361525 ], [ 144.648596, 13.361448 ], [ 144.648558, 13.361357 ], [ 144.648505, 13.361275 ], [ 144.648452, 13.361185 ], [ 144.648438, 13.36116 ], [ 144.648385, 13.361007 ], [ 144.648362, 13.360939 ], [ 144.648305, 13.360791 ], [ 144.648297, 13.360774 ], [ 144.648242, 13.360651 ], [ 144.64817, 13.360546 ], [ 144.648064, 13.360425 ], [ 144.648001, 13.360334 ], [ 144.647949, 13.360209 ], [ 144.647904, 13.360145 ], [ 144.647829, 13.360036 ], [ 144.647779, 13.359931 ], [ 144.647756, 13.359882 ], [ 144.647742, 13.359853 ], [ 144.647681, 13.35974 ], [ 144.647656, 13.359694 ], [ 144.647633, 13.35964 ], [ 144.647594, 13.35955 ], [ 144.647587, 13.359474 ], [ 144.647582, 13.359417 ], [ 144.647576, 13.359349 ], [ 144.647554, 13.35924 ], [ 144.647525, 13.359086 ], [ 144.647473, 13.358918 ], [ 144.647345, 13.358758 ], [ 144.647233, 13.358619 ], [ 144.647198, 13.358576 ], [ 144.647083, 13.358393 ], [ 144.647071, 13.358307 ], [ 144.647004, 13.358216 ], [ 144.646883, 13.358086 ], [ 144.646832, 13.358023 ], [ 144.646758, 13.357931 ], [ 144.646686, 13.357782 ], [ 144.646604, 13.357629 ], [ 144.646513, 13.35748 ], [ 144.646456, 13.357288 ], [ 144.6464, 13.357043 ], [ 144.646324, 13.356813 ], [ 144.646302, 13.356574 ], [ 144.646231, 13.356368 ], [ 144.646124, 13.35598 ], [ 144.64612, 13.355965 ], [ 144.645975, 13.35583 ], [ 144.645907, 13.355748 ], [ 144.645776, 13.355632 ], [ 144.645699, 13.355507 ], [ 144.64565, 13.355436 ], [ 144.645622, 13.355396 ], [ 144.645561, 13.355224 ], [ 144.645537, 13.355113 ], [ 144.645621, 13.355076 ], [ 144.64565, 13.355052 ], [ 144.645616, 13.355023 ], [ 144.645614, 13.355022 ], [ 144.645558, 13.354994 ], [ 144.645451, 13.354897 ], [ 144.645394, 13.354825 ], [ 144.645293, 13.354595 ], [ 144.645197, 13.35445 ], [ 144.645039, 13.354086 ], [ 144.644944, 13.353893 ], [ 144.644853, 13.35372 ], [ 144.64485, 13.3537 ], [ 144.644844, 13.35369 ], [ 144.644814, 13.353639 ], [ 144.644728, 13.353499 ], [ 144.644607, 13.353321 ], [ 144.644568, 13.35325 ], [ 144.64453, 13.353182 ], [ 144.644439, 13.353028 ], [ 144.644372, 13.352874 ], [ 144.64432, 13.352711 ], [ 144.644191, 13.352457 ], [ 144.644132, 13.352451 ], [ 144.644074, 13.352413 ], [ 144.644046, 13.352317 ], [ 144.644076, 13.352174 ], [ 144.644093, 13.352006 ], [ 144.644076, 13.351743 ], [ 144.643999, 13.351561 ], [ 144.643976, 13.351412 ], [ 144.643949, 13.351373 ], [ 144.643904, 13.351307 ], [ 144.643896, 13.351158 ], [ 144.643907, 13.351058 ], [ 144.643844, 13.350928 ], [ 144.643753, 13.350822 ], [ 144.643676, 13.350659 ], [ 144.643638, 13.35052 ], [ 144.643591, 13.350314 ], [ 144.643554, 13.35017 ], [ 144.64356, 13.350036 ], [ 144.643536, 13.349988 ], [ 144.643439, 13.34994 ], [ 144.643406, 13.349853 ], [ 144.643392, 13.34969 ], [ 144.643399, 13.349552 ], [ 144.643395, 13.349423 ], [ 144.643382, 13.349279 ], [ 144.643325, 13.34914 ], [ 144.643289, 13.349068 ], [ 144.643211, 13.348972 ], [ 144.64315, 13.348761 ], [ 144.643097, 13.348669 ], [ 144.642952, 13.348529 ], [ 144.642875, 13.348466 ], [ 144.642816, 13.348428 ], [ 144.642738, 13.348403 ], [ 144.642582, 13.348425 ], [ 144.642538, 13.348401 ], [ 144.642466, 13.348257 ], [ 144.642438, 13.348175 ], [ 144.64239, 13.348127 ], [ 144.642355, 13.348175 ], [ 144.642311, 13.348213 ], [ 144.642228, 13.348121 ], [ 144.64219, 13.348044 ], [ 144.642181, 13.347944 ], [ 144.642143, 13.347843 ], [ 144.642076, 13.347727 ], [ 144.641975, 13.347597 ], [ 144.641863, 13.347501 ], [ 144.641854, 13.347419 ], [ 144.641865, 13.347319 ], [ 144.641857, 13.347185 ], [ 144.641829, 13.347027 ], [ 144.641779, 13.346912 ], [ 144.641697, 13.346758 ], [ 144.641557, 13.346609 ], [ 144.641294, 13.346359 ], [ 144.641252, 13.346319 ], [ 144.641137, 13.346165 ], [ 144.64102, 13.346073 ], [ 144.640929, 13.345914 ], [ 144.640833, 13.345722 ], [ 144.640703, 13.34552 ], [ 144.640554, 13.34527 ], [ 144.64044, 13.344977 ], [ 144.64046, 13.344925 ], [ 144.64049, 13.344916 ], [ 144.640485, 13.344853 ], [ 144.640423, 13.344757 ], [ 144.640333, 13.344607 ], [ 144.640281, 13.344522 ], [ 144.640189, 13.344401 ], [ 144.640088, 13.344305 ], [ 144.640045, 13.344223 ], [ 144.639987, 13.344084 ], [ 144.63992, 13.343964 ], [ 144.639853, 13.343829 ], [ 144.639685, 13.343588 ], [ 144.639651, 13.343542 ], [ 144.639588, 13.343458 ], [ 144.639458, 13.343319 ], [ 144.639376, 13.343213 ], [ 144.63925, 13.343111 ], [ 144.638915, 13.342855 ], [ 144.638798, 13.34282 ], [ 144.638731, 13.342767 ], [ 144.638673, 13.34268 ], [ 144.638537, 13.342588 ], [ 144.638352, 13.342505 ], [ 144.638202, 13.342427 ], [ 144.63808, 13.342421 ], [ 144.637948, 13.342396 ], [ 144.637816, 13.342385 ], [ 144.637685, 13.342322 ], [ 144.637568, 13.342306 ], [ 144.637468, 13.342306 ], [ 144.637297, 13.34229 ], [ 144.637122, 13.342226 ], [ 144.636967, 13.342153 ], [ 144.636899, 13.342075 ], [ 144.636905, 13.34198 ], [ 144.636881, 13.341927 ], [ 144.63672, 13.341916 ], [ 144.636642, 13.341877 ], [ 144.636657, 13.341815 ], [ 144.636552, 13.341809 ], [ 144.636535, 13.341809 ], [ 144.636438, 13.341799 ], [ 144.636018, 13.34178 ], [ 144.635848, 13.341726 ], [ 144.635746, 13.341687 ], [ 144.635625, 13.341538 ], [ 144.635523, 13.341475 ], [ 144.63545, 13.341412 ], [ 144.635437, 13.341373 ], [ 144.635422, 13.34133 ], [ 144.635432, 13.341239 ], [ 144.635467, 13.341163 ], [ 144.635512, 13.341111 ], [ 144.635537, 13.34102 ], [ 144.635651, 13.340878 ], [ 144.635759, 13.340774 ], [ 144.635853, 13.340655 ], [ 144.635903, 13.340574 ], [ 144.635996, 13.340542 ], [ 144.636074, 13.340528 ], [ 144.636167, 13.340491 ], [ 144.636413, 13.340316 ], [ 144.636679, 13.340094 ], [ 144.6369, 13.339933 ], [ 144.637203, 13.339726 ], [ 144.637218, 13.339712 ], [ 144.6374, 13.339551 ], [ 144.637606, 13.339409 ], [ 144.637788, 13.339311 ], [ 144.637999, 13.339217 ], [ 144.6382, 13.339133 ], [ 144.638352, 13.339043 ], [ 144.638514, 13.338978 ], [ 144.638651, 13.338884 ], [ 144.638803, 13.338813 ], [ 144.639018, 13.338834 ], [ 144.639227, 13.338865 ], [ 144.639296, 13.338832 ], [ 144.639429, 13.338781 ], [ 144.639531, 13.338782 ], [ 144.639599, 13.338816 ], [ 144.639653, 13.338836 ], [ 144.639741, 13.338822 ], [ 144.639834, 13.33877 ], [ 144.639918, 13.338754 ], [ 144.639937, 13.338759 ], [ 144.639985, 13.338757 ], [ 144.640147, 13.338735 ], [ 144.640308, 13.338674 ], [ 144.640514, 13.338628 ], [ 144.640651, 13.338591 ], [ 144.640764, 13.338569 ], [ 144.640837, 13.338521 ], [ 144.640887, 13.338469 ], [ 144.640946, 13.338398 ], [ 144.640893, 13.338335 ], [ 144.640879, 13.338268 ], [ 144.640909, 13.338216 ], [ 144.641006, 13.338203 ], [ 144.641095, 13.338151 ], [ 144.641237, 13.3381 ], [ 144.641311, 13.338052 ], [ 144.641398, 13.338048 ], [ 144.641521, 13.338011 ], [ 144.641614, 13.338022 ], [ 144.641637, 13.338075 ], [ 144.641711, 13.338094 ], [ 144.641798, 13.338105 ], [ 144.641911, 13.338072 ], [ 144.641872, 13.338048 ], [ 144.641814, 13.337995 ], [ 144.641854, 13.337933 ], [ 144.64201, 13.337892 ], [ 144.642123, 13.33785 ], [ 144.64223, 13.33787 ], [ 144.642313, 13.337914 ], [ 144.642522, 13.337954 ], [ 144.642669, 13.33795 ], [ 144.642815, 13.337956 ], [ 144.642956, 13.338006 ], [ 144.643122, 13.338074 ], [ 144.643209, 13.338127 ], [ 144.643365, 13.338172 ], [ 144.643531, 13.338174 ], [ 144.643678, 13.338141 ], [ 144.643795, 13.338081 ], [ 144.643845, 13.338057 ], [ 144.643942, 13.338053 ], [ 144.644036, 13.338001 ], [ 144.644203, 13.337893 ], [ 144.644267, 13.337822 ], [ 144.644395, 13.337732 ], [ 144.644488, 13.337652 ], [ 144.644562, 13.337547 ], [ 144.644632, 13.337438 ], [ 144.644692, 13.337285 ], [ 144.644693, 13.337171 ], [ 144.644637, 13.336945 ], [ 144.644599, 13.33683 ], [ 144.644575, 13.336777 ], [ 144.644497, 13.336777 ], [ 144.644385, 13.336757 ], [ 144.644341, 13.336728 ], [ 144.644337, 13.336646 ], [ 144.644396, 13.336608 ], [ 144.644445, 13.336547 ], [ 144.644509, 13.336514 ], [ 144.644539, 13.336471 ], [ 144.644554, 13.336409 ], [ 144.644567, 13.336305 ], [ 144.644575, 13.336242 ], [ 144.644644, 13.33618 ], [ 144.644757, 13.336158 ], [ 144.644805, 13.336177 ], [ 144.644829, 13.336206 ], [ 144.644843, 13.336316 ], [ 144.644895, 13.336455 ], [ 144.644997, 13.336523 ], [ 144.645129, 13.336558 ], [ 144.6453, 13.336545 ], [ 144.645456, 13.336513 ], [ 144.645515, 13.336486 ], [ 144.645564, 13.336466 ], [ 144.645682, 13.336434 ], [ 144.645804, 13.33643 ], [ 144.645914, 13.336412 ], [ 144.645929, 13.336398 ], [ 144.645924, 13.336336 ], [ 144.645968, 13.336317 ], [ 144.645988, 13.336279 ], [ 144.646042, 13.336246 ], [ 144.646081, 13.336246 ], [ 144.64613, 13.336218 ], [ 144.64615, 13.336175 ], [ 144.6462, 13.336128 ], [ 144.646215, 13.336066 ], [ 144.646216, 13.335999 ], [ 144.646226, 13.335918 ], [ 144.646256, 13.335875 ], [ 144.646324, 13.335857 ], [ 144.646354, 13.335823 ], [ 144.646379, 13.335757 ], [ 144.646414, 13.33569 ], [ 144.646473, 13.335648 ], [ 144.646532, 13.335624 ], [ 144.646567, 13.335548 ], [ 144.646704, 13.335516 ], [ 144.646802, 13.335459 ], [ 144.646885, 13.335417 ], [ 144.646964, 13.335332 ], [ 144.64699, 13.335236 ], [ 144.646962, 13.335016 ], [ 144.646919, 13.334987 ], [ 144.646855, 13.334987 ], [ 144.646787, 13.334962 ], [ 144.646754, 13.334876 ], [ 144.646864, 13.33458 ], [ 144.646924, 13.334485 ], [ 144.647013, 13.334333 ], [ 144.647077, 13.334252 ], [ 144.647141, 13.334181 ], [ 144.647215, 13.334144 ], [ 144.647259, 13.334144 ], [ 144.647268, 13.334259 ], [ 144.647287, 13.334297 ], [ 144.647331, 13.334269 ], [ 144.647342, 13.334256 ], [ 144.64737, 13.334226 ], [ 144.647425, 13.334184 ], [ 144.647476, 13.334127 ], [ 144.647472, 13.334065 ], [ 144.647541, 13.334013 ], [ 144.647688, 13.333981 ], [ 144.647732, 13.333952 ], [ 144.647767, 13.333905 ], [ 144.647782, 13.333848 ], [ 144.647783, 13.333742 ], [ 144.647822, 13.333685 ], [ 144.647862, 13.333652 ], [ 144.647872, 13.3336 ], [ 144.647859, 13.333485 ], [ 144.647889, 13.333409 ], [ 144.647943, 13.333376 ], [ 144.647992, 13.333314 ], [ 144.648012, 13.333219 ], [ 144.648052, 13.333147 ], [ 144.648161, 13.33299 ], [ 144.648216, 13.332924 ], [ 144.648259, 13.332939 ], [ 144.648274, 13.332987 ], [ 144.648302, 13.333025 ], [ 144.648376, 13.333021 ], [ 144.648449, 13.332998 ], [ 144.648582, 13.332856 ], [ 144.648617, 13.332789 ], [ 144.648652, 13.332708 ], [ 144.648668, 13.332627 ], [ 144.648673, 13.33257 ], [ 144.648732, 13.332508 ], [ 144.648777, 13.332442 ], [ 144.648791, 13.33241 ], [ 144.648817, 13.332356 ], [ 144.648891, 13.332294 ], [ 144.64896, 13.332223 ], [ 144.649009, 13.332128 ], [ 144.64902, 13.332033 ], [ 144.649016, 13.331913 ], [ 144.649039, 13.331916 ], [ 144.649046, 13.33187 ], [ 144.649046, 13.331822 ], [ 144.649067, 13.331765 ], [ 144.64912, 13.331751 ], [ 144.649145, 13.331728 ], [ 144.649101, 13.331699 ], [ 144.649087, 13.331665 ], [ 144.649078, 13.331598 ], [ 144.649034, 13.331579 ], [ 144.648966, 13.331602 ], [ 144.648912, 13.331601 ], [ 144.648903, 13.331477 ], [ 144.648909, 13.331424 ], [ 144.648924, 13.331381 ], [ 144.648968, 13.331377 ], [ 144.648973, 13.331348 ], [ 144.648944, 13.331315 ], [ 144.648949, 13.331257 ], [ 144.648969, 13.3312 ], [ 144.648999, 13.331191 ], [ 144.649024, 13.331124 ], [ 144.649039, 13.331067 ], [ 144.649069, 13.331019 ], [ 144.649089, 13.330977 ], [ 144.649026, 13.330866 ], [ 144.649037, 13.330804 ], [ 144.649096, 13.330752 ], [ 144.64914, 13.330733 ], [ 144.649223, 13.330715 ], [ 144.649306, 13.330716 ], [ 144.649379, 13.330726 ], [ 144.649404, 13.330683 ], [ 144.64943, 13.330526 ], [ 144.649465, 13.330464 ], [ 144.649485, 13.330349 ], [ 144.649496, 13.330258 ], [ 144.649482, 13.330206 ], [ 144.64939, 13.330128 ], [ 144.64942, 13.330057 ], [ 144.649411, 13.329961 ], [ 144.649392, 13.329889 ], [ 144.649359, 13.329836 ], [ 144.649256, 13.329797 ], [ 144.649321, 13.329669 ], [ 144.649356, 13.329612 ], [ 144.649425, 13.329579 ], [ 144.649489, 13.329532 ], [ 144.649591, 13.329504 ], [ 144.649689, 13.329505 ], [ 144.649777, 13.329482 ], [ 144.64988, 13.32944 ], [ 144.649906, 13.329427 ], [ 144.649949, 13.329407 ], [ 144.650017, 13.329369 ], [ 144.650076, 13.329331 ], [ 144.650126, 13.329289 ], [ 144.650063, 13.329236 ], [ 144.650009, 13.329202 ], [ 144.649971, 13.329106 ], [ 144.649942, 13.329072 ], [ 144.649869, 13.329052 ], [ 144.649806, 13.329066 ], [ 144.649742, 13.329075 ], [ 144.649639, 13.329069 ], [ 144.649581, 13.329054 ], [ 144.649523, 13.32903 ], [ 144.649454, 13.329044 ], [ 144.649425, 13.329029 ], [ 144.6494, 13.329067 ], [ 144.649351, 13.329124 ], [ 144.649297, 13.329119 ], [ 144.649288, 13.329085 ], [ 144.649298, 13.329037 ], [ 144.649313, 13.32899 ], [ 144.649348, 13.328952 ], [ 144.649416, 13.328909 ], [ 144.649519, 13.328862 ], [ 144.649612, 13.328839 ], [ 144.64967, 13.328845 ], [ 144.649754, 13.328855 ], [ 144.649934, 13.328924 ], [ 144.649982, 13.328953 ], [ 144.650016, 13.329006 ], [ 144.650079, 13.329035 ], [ 144.650279, 13.329104 ], [ 144.650347, 13.329147 ], [ 144.650435, 13.329134 ], [ 144.650513, 13.329111 ], [ 144.650611, 13.329102 ], [ 144.650629, 13.329096 ], [ 144.650709, 13.329074 ], [ 144.650772, 13.329041 ], [ 144.650956, 13.328978 ], [ 144.651013, 13.328958 ], [ 144.651159, 13.328916 ], [ 144.651282, 13.328898 ], [ 144.651372, 13.328858 ], [ 144.651409, 13.328842 ], [ 144.651414, 13.328794 ], [ 144.651634, 13.328782 ], [ 144.651718, 13.328754 ], [ 144.651821, 13.328707 ], [ 144.651894, 13.328655 ], [ 144.651939, 13.328598 ], [ 144.652007, 13.328608 ], [ 144.652052, 13.328546 ], [ 144.65221, 13.328299 ], [ 144.652235, 13.328218 ], [ 144.652314, 13.328181 ], [ 144.652324, 13.32816 ], [ 144.652379, 13.328047 ], [ 144.652405, 13.32788 ], [ 144.652416, 13.32774 ], [ 144.652421, 13.327675 ], [ 144.652428, 13.327484 ], [ 144.652405, 13.327335 ], [ 144.652347, 13.327057 ], [ 144.652383, 13.327048 ], [ 144.652377, 13.326991 ], [ 144.652338, 13.326923 ], [ 144.652265, 13.326894 ], [ 144.652208, 13.326769 ], [ 144.65215, 13.326702 ], [ 144.652141, 13.326635 ], [ 144.652122, 13.326591 ], [ 144.652039, 13.326572 ], [ 144.652032, 13.326564 ], [ 144.65201, 13.326538 ], [ 144.652025, 13.326452 ], [ 144.651987, 13.326385 ], [ 144.651916, 13.32614 ], [ 144.651893, 13.326039 ], [ 144.65184, 13.325972 ], [ 144.651752, 13.325947 ], [ 144.651655, 13.325903 ], [ 144.651573, 13.325812 ], [ 144.651559, 13.325735 ], [ 144.651613, 13.325599 ], [ 144.651624, 13.325583 ], [ 144.651683, 13.325559 ], [ 144.651678, 13.325478 ], [ 144.65165, 13.325401 ], [ 144.651582, 13.325315 ], [ 144.651495, 13.325299 ], [ 144.651466, 13.325208 ], [ 144.651462, 13.325108 ], [ 144.651429, 13.325041 ], [ 144.651331, 13.325073 ], [ 144.651214, 13.325 ], [ 144.651193, 13.324919 ], [ 144.65114, 13.324842 ], [ 144.651116, 13.32478 ], [ 144.651141, 13.324732 ], [ 144.651152, 13.324646 ], [ 144.651145, 13.324321 ], [ 144.651097, 13.324244 ], [ 144.651078, 13.324153 ], [ 144.651036, 13.323999 ], [ 144.650993, 13.32387 ], [ 144.65096, 13.32375 ], [ 144.650826, 13.323481 ], [ 144.650798, 13.323371 ], [ 144.650716, 13.323265 ], [ 144.650665, 13.323145 ], [ 144.650659, 13.323131 ], [ 144.650591, 13.323058 ], [ 144.650563, 13.322962 ], [ 144.650495, 13.322871 ], [ 144.650447, 13.322756 ], [ 144.650413, 13.322564 ], [ 144.650365, 13.322444 ], [ 144.650303, 13.322329 ], [ 144.65026, 13.322218 ], [ 144.650182, 13.322141 ], [ 144.649979, 13.32201 ], [ 144.649945, 13.321905 ], [ 144.649999, 13.32191 ], [ 144.650057, 13.321934 ], [ 144.650117, 13.321887 ], [ 144.650224, 13.321831 ], [ 144.65044, 13.321728 ], [ 144.65048, 13.321683 ], [ 144.6505, 13.321661 ], [ 144.650657, 13.32151 ], [ 144.65088, 13.321206 ], [ 144.651107, 13.32094 ], [ 144.651211, 13.320802 ], [ 144.651295, 13.320679 ], [ 144.651415, 13.320388 ], [ 144.651457, 13.320322 ], [ 144.651439, 13.320226 ], [ 144.651381, 13.320106 ], [ 144.651304, 13.319981 ], [ 144.651286, 13.319877 ], [ 144.651281, 13.319842 ], [ 144.651327, 13.319689 ], [ 144.651465, 13.319519 ], [ 144.651583, 13.319381 ], [ 144.651694, 13.319317 ], [ 144.65177, 13.319273 ], [ 144.651878, 13.319226 ], [ 144.651932, 13.31914 ], [ 144.651972, 13.319059 ], [ 144.652109, 13.319037 ], [ 144.652241, 13.31899 ], [ 144.652359, 13.318934 ], [ 144.652492, 13.318854 ], [ 144.652599, 13.318831 ], [ 144.652852, 13.318743 ], [ 144.652884, 13.318733 ], [ 144.653016, 13.318706 ], [ 144.653124, 13.318645 ], [ 144.653222, 13.318617 ], [ 144.653334, 13.318575 ], [ 144.653408, 13.318532 ], [ 144.653471, 13.318547 ], [ 144.65349, 13.318576 ], [ 144.653451, 13.318614 ], [ 144.653411, 13.318685 ], [ 144.653431, 13.318714 ], [ 144.653499, 13.318715 ], [ 144.653592, 13.318687 ], [ 144.65389, 13.318685 ], [ 144.653958, 13.318695 ], [ 144.654022, 13.318629 ], [ 144.65415, 13.318539 ], [ 144.654442, 13.318341 ], [ 144.654511, 13.318332 ], [ 144.654609, 13.318257 ], [ 144.654733, 13.318119 ], [ 144.654826, 13.318029 ], [ 144.654915, 13.317973 ], [ 144.655013, 13.317945 ], [ 144.655155, 13.317884 ], [ 144.655282, 13.317842 ], [ 144.655444, 13.317767 ], [ 144.655571, 13.31772 ], [ 144.655674, 13.317669 ], [ 144.655802, 13.317613 ], [ 144.655914, 13.317594 ], [ 144.656086, 13.3175 ], [ 144.656194, 13.317434 ], [ 144.656198, 13.317429 ], [ 144.656317, 13.317316 ], [ 144.656391, 13.317221 ], [ 144.656446, 13.317126 ], [ 144.656505, 13.317088 ], [ 144.656755, 13.31699 ], [ 144.656907, 13.316939 ], [ 144.657202, 13.316736 ], [ 144.657261, 13.31667 ], [ 144.6573, 13.316627 ], [ 144.657365, 13.316508 ], [ 144.657386, 13.316508 ], [ 144.657417, 13.316451 ], [ 144.657448, 13.316303 ], [ 144.657464, 13.316112 ], [ 144.657495, 13.315969 ], [ 144.657501, 13.315845 ], [ 144.657531, 13.315759 ], [ 144.657586, 13.315664 ], [ 144.657671, 13.315387 ], [ 144.657661, 13.315293 ], [ 144.657658, 13.315258 ], [ 144.657591, 13.315081 ], [ 144.657524, 13.314951 ], [ 144.657422, 13.31485 ], [ 144.657287, 13.314748 ], [ 144.657122, 13.314641 ], [ 144.656956, 13.314573 ], [ 144.656549, 13.314306 ], [ 144.656335, 13.314208 ], [ 144.656175, 13.314126 ], [ 144.65597, 13.314042 ], [ 144.655664, 13.313963 ], [ 144.655566, 13.313957 ], [ 144.655405, 13.313975 ], [ 144.655117, 13.313972 ], [ 144.654804, 13.313984 ], [ 144.654628, 13.314016 ], [ 144.654476, 13.314076 ], [ 144.654319, 13.314175 ], [ 144.654143, 13.314226 ], [ 144.653967, 13.314253 ], [ 144.65382, 13.31429 ], [ 144.653788, 13.314293 ], [ 144.653678, 13.314308 ], [ 144.653493, 13.314302 ], [ 144.653395, 13.314262 ], [ 144.65342, 13.314234 ], [ 144.653436, 13.314148 ], [ 144.653489, 13.314129 ], [ 144.653548, 13.31413 ], [ 144.653592, 13.314083 ], [ 144.653588, 13.314025 ], [ 144.65352, 13.313977 ], [ 144.653482, 13.313905 ], [ 144.653448, 13.313818 ], [ 144.65339, 13.313789 ], [ 144.653362, 13.313688 ], [ 144.653285, 13.31352 ], [ 144.653257, 13.313424 ], [ 144.653179, 13.313371 ], [ 144.653113, 13.313366 ], [ 144.65304, 13.313399 ], [ 144.652947, 13.313383 ], [ 144.652972, 13.313326 ], [ 144.653007, 13.31326 ], [ 144.653071, 13.313203 ], [ 144.653082, 13.313126 ], [ 144.653068, 13.31304 ], [ 144.653098, 13.312983 ], [ 144.653035, 13.312849 ], [ 144.653051, 13.312768 ], [ 144.653095, 13.312706 ], [ 144.653101, 13.31262 ], [ 144.653145, 13.312577 ], [ 144.653141, 13.312505 ], [ 144.653176, 13.312444 ], [ 144.653206, 13.312363 ], [ 144.653237, 13.312248 ], [ 144.653233, 13.312148 ], [ 144.653262, 13.312114 ], [ 144.653282, 13.312062 ], [ 144.653351, 13.312044 ], [ 144.653355, 13.312101 ], [ 144.653364, 13.312206 ], [ 144.653398, 13.31223 ], [ 144.653425, 13.312225 ], [ 144.653457, 13.312221 ], [ 144.653515, 13.312222 ], [ 144.653617, 13.31229 ], [ 144.653646, 13.312324 ], [ 144.653675, 13.312314 ], [ 144.653666, 13.312252 ], [ 144.653638, 13.31217 ], [ 144.653599, 13.312132 ], [ 144.653586, 13.312003 ], [ 144.653557, 13.311916 ], [ 144.653538, 13.311873 ], [ 144.653451, 13.311796 ], [ 144.653416, 13.311853 ], [ 144.653367, 13.311872 ], [ 144.653353, 13.311814 ], [ 144.653354, 13.311761 ], [ 144.6533, 13.311751 ], [ 144.653226, 13.311775 ], [ 144.653227, 13.311679 ], [ 144.653262, 13.311617 ], [ 144.653306, 13.311589 ], [ 144.653351, 13.311541 ], [ 144.653391, 13.311465 ], [ 144.653435, 13.311413 ], [ 144.65346, 13.311389 ], [ 144.65349, 13.311328 ], [ 144.653441, 13.311255 ], [ 144.653422, 13.311198 ], [ 144.653291, 13.311178 ], [ 144.653208, 13.311182 ], [ 144.653105, 13.311157 ], [ 144.653038, 13.311103 ], [ 144.653062, 13.31108 ], [ 144.65315, 13.311061 ], [ 144.653214, 13.311053 ], [ 144.653317, 13.31101 ], [ 144.653453, 13.310849 ], [ 144.653503, 13.310711 ], [ 144.653572, 13.310621 ], [ 144.653622, 13.310516 ], [ 144.653628, 13.310377 ], [ 144.653663, 13.310268 ], [ 144.653655, 13.310158 ], [ 144.653666, 13.310014 ], [ 144.653827, 13.310049 ], [ 144.653919, 13.310055 ], [ 144.654027, 13.309999 ], [ 144.654067, 13.309942 ], [ 144.654145, 13.309885 ], [ 144.654199, 13.30989 ], [ 144.654263, 13.309872 ], [ 144.654316, 13.309901 ], [ 144.654395, 13.309878 ], [ 144.654444, 13.309816 ], [ 144.654455, 13.30973 ], [ 144.654456, 13.30962 ], [ 144.65449, 13.309577 ], [ 144.65452, 13.309511 ], [ 144.654477, 13.309458 ], [ 144.654438, 13.309386 ], [ 144.654444, 13.309271 ], [ 144.654401, 13.309213 ], [ 144.654421, 13.309156 ], [ 144.654484, 13.309152 ], [ 144.654514, 13.309118 ], [ 144.654476, 13.309061 ], [ 144.654457, 13.308951 ], [ 144.654516, 13.308899 ], [ 144.654594, 13.308885 ], [ 144.654673, 13.308886 ], [ 144.654639, 13.308842 ], [ 144.65462, 13.308751 ], [ 144.654628, 13.308699 ], [ 144.654677, 13.308675 ], [ 144.654756, 13.308628 ], [ 144.654789, 13.308575 ], [ 144.654795, 13.308566 ], [ 144.654879, 13.308524 ], [ 144.654919, 13.308443 ], [ 144.654924, 13.308362 ], [ 144.654895, 13.3083 ], [ 144.654812, 13.308299 ], [ 144.654725, 13.308274 ], [ 144.654569, 13.308196 ], [ 144.654584, 13.308149 ], [ 144.654638, 13.30812 ], [ 144.654668, 13.308063 ], [ 144.654732, 13.308002 ], [ 144.654767, 13.307954 ], [ 144.654768, 13.307868 ], [ 144.654749, 13.307811 ], [ 144.654657, 13.307752 ], [ 144.654589, 13.30769 ], [ 144.654575, 13.307613 ], [ 144.654527, 13.307479 ], [ 144.65451, 13.307239 ], [ 144.654516, 13.30711 ], [ 144.654547, 13.307015 ], [ 144.654586, 13.307011 ], [ 144.654648, 13.307083 ], [ 144.654672, 13.307126 ], [ 144.654745, 13.307165 ], [ 144.654784, 13.307228 ], [ 144.654803, 13.307276 ], [ 144.654856, 13.30729 ], [ 144.654929, 13.307301 ], [ 144.654914, 13.307353 ], [ 144.654911, 13.307356 ], [ 144.654865, 13.307429 ], [ 144.654825, 13.307481 ], [ 144.65481, 13.307519 ], [ 144.654751, 13.307576 ], [ 144.65477, 13.307639 ], [ 144.654808, 13.307701 ], [ 144.654847, 13.307725 ], [ 144.654867, 13.307659 ], [ 144.654892, 13.307601 ], [ 144.654932, 13.307554 ], [ 144.655001, 13.307512 ], [ 144.655064, 13.307479 ], [ 144.655143, 13.307465 ], [ 144.655183, 13.307479 ], [ 144.655216, 13.30749 ], [ 144.655285, 13.307469 ], [ 144.655349, 13.307412 ], [ 144.655394, 13.307326 ], [ 144.655382, 13.307268 ], [ 144.655401, 13.307159 ], [ 144.655406, 13.30706 ], [ 144.655406, 13.307011 ], [ 144.655469, 13.306968 ], [ 144.65549, 13.306926 ], [ 144.655531, 13.306858 ], [ 144.655577, 13.306824 ], [ 144.655633, 13.306841 ], [ 144.655698, 13.306878 ], [ 144.655794, 13.30689 ], [ 144.655857, 13.30692 ], [ 144.655973, 13.306942 ], [ 144.656043, 13.30696 ], [ 144.656109, 13.306977 ], [ 144.656212, 13.306983 ], [ 144.656388, 13.306965 ], [ 144.656544, 13.306957 ], [ 144.656661, 13.306944 ], [ 144.656789, 13.306902 ], [ 144.656891, 13.306908 ], [ 144.657003, 13.306942 ], [ 144.657198, 13.306953 ], [ 144.657374, 13.306926 ], [ 144.657487, 13.30688 ], [ 144.657627, 13.306833 ], [ 144.657705, 13.306772 ], [ 144.657803, 13.306706 ], [ 144.657907, 13.306582 ], [ 144.657972, 13.306458 ], [ 144.658022, 13.306373 ], [ 144.657978, 13.306286 ], [ 144.657916, 13.306185 ], [ 144.657941, 13.30608 ], [ 144.658015, 13.305995 ], [ 144.658078, 13.305995 ], [ 144.658111, 13.305945 ], [ 144.658121, 13.305869 ], [ 144.658108, 13.305787 ], [ 144.658108, 13.305725 ], [ 144.658148, 13.305654 ], [ 144.658202, 13.305587 ], [ 144.658237, 13.30553 ], [ 144.658184, 13.305487 ], [ 144.658126, 13.305353 ], [ 144.658122, 13.305262 ], [ 144.658147, 13.3052 ], [ 144.65809, 13.305108 ], [ 144.658046, 13.305065 ], [ 144.657978, 13.305088 ], [ 144.657899, 13.305097 ], [ 144.657841, 13.305053 ], [ 144.657822, 13.304982 ], [ 144.65779, 13.304949 ], [ 144.657586, 13.304735 ], [ 144.657586, 13.304645 ], [ 144.657611, 13.304573 ], [ 144.657577, 13.304559 ], [ 144.657543, 13.304616 ], [ 144.657489, 13.304596 ], [ 144.657382, 13.304619 ], [ 144.657318, 13.304642 ], [ 144.657255, 13.304613 ], [ 144.657202, 13.30456 ], [ 144.657212, 13.304483 ], [ 144.657237, 13.304402 ], [ 144.657175, 13.304301 ], [ 144.657073, 13.304195 ], [ 144.657071, 13.30419 ], [ 144.657006, 13.304037 ], [ 144.656944, 13.303902 ], [ 144.656949, 13.303733 ], [ 144.656951, 13.303697 ], [ 144.656962, 13.303625 ], [ 144.656924, 13.303467 ], [ 144.656881, 13.303347 ], [ 144.656877, 13.303237 ], [ 144.656902, 13.303175 ], [ 144.656995, 13.303152 ], [ 144.657059, 13.303129 ], [ 144.657079, 13.303081 ], [ 144.65704, 13.303043 ], [ 144.657016, 13.302995 ], [ 144.657017, 13.302937 ], [ 144.65693, 13.302889 ], [ 144.656807, 13.302935 ], [ 144.656773, 13.302887 ], [ 144.65675, 13.302739 ], [ 144.656743, 13.302684 ], [ 144.656719, 13.302495 ], [ 144.656725, 13.302294 ], [ 144.656732, 13.302203 ], [ 144.656742, 13.302084 ], [ 144.656788, 13.301888 ], [ 144.656817, 13.301687 ], [ 144.656874, 13.301522 ], [ 144.656882, 13.301502 ], [ 144.656931, 13.301416 ], [ 144.656956, 13.301445 ], [ 144.657019, 13.301493 ], [ 144.657106, 13.30158 ], [ 144.657149, 13.301652 ], [ 144.657163, 13.301686 ], [ 144.657172, 13.301758 ], [ 144.657216, 13.301796 ], [ 144.657299, 13.301821 ], [ 144.657372, 13.301822 ], [ 144.65745, 13.301794 ], [ 144.657519, 13.301751 ], [ 144.657578, 13.301685 ], [ 144.657623, 13.301609 ], [ 144.657653, 13.301542 ], [ 144.657669, 13.301432 ], [ 144.657669, 13.301341 ], [ 144.657631, 13.30125 ], [ 144.657598, 13.301107 ], [ 144.657629, 13.301026 ], [ 144.657693, 13.30095 ], [ 144.657732, 13.300883 ], [ 144.657758, 13.300764 ], [ 144.657763, 13.300689 ], [ 144.657769, 13.300616 ], [ 144.657819, 13.300549 ], [ 144.657849, 13.300473 ], [ 144.657819, 13.300477 ], [ 144.657765, 13.300525 ], [ 144.657731, 13.300501 ], [ 144.657727, 13.300457 ], [ 144.657747, 13.300405 ], [ 144.657791, 13.300367 ], [ 144.657836, 13.300291 ], [ 144.657866, 13.300229 ], [ 144.65791, 13.300215 ], [ 144.657969, 13.300187 ], [ 144.658003, 13.30013 ], [ 144.658058, 13.300064 ], [ 144.658063, 13.300037 ], [ 144.658068, 13.300011 ], [ 144.658034, 13.299973 ], [ 144.658055, 13.299868 ], [ 144.658026, 13.299796 ], [ 144.658051, 13.299753 ], [ 144.658085, 13.299772 ], [ 144.658119, 13.299744 ], [ 144.658139, 13.299677 ], [ 144.658135, 13.299605 ], [ 144.658106, 13.299576 ], [ 144.658087, 13.299524 ], [ 144.658026, 13.299494 ], [ 144.658022, 13.299418 ], [ 144.658027, 13.299323 ], [ 144.658028, 13.299313 ], [ 144.658, 13.299202 ], [ 144.657986, 13.299092 ], [ 144.658021, 13.29905 ], [ 144.658104, 13.29907 ], [ 144.658157, 13.299166 ], [ 144.658244, 13.2992 ], [ 144.658318, 13.299167 ], [ 144.658327, 13.299144 ], [ 144.658358, 13.299077 ], [ 144.658363, 13.298995 ], [ 144.658315, 13.298952 ], [ 144.658203, 13.298932 ], [ 144.658159, 13.298879 ], [ 144.658165, 13.298807 ], [ 144.658248, 13.298784 ], [ 144.658326, 13.298789 ], [ 144.658438, 13.298786 ], [ 144.658492, 13.298753 ], [ 144.658435, 13.298685 ], [ 144.65846, 13.298614 ], [ 144.658576, 13.298658 ], [ 144.658651, 13.298677 ], [ 144.658713, 13.298693 ], [ 144.658883, 13.298761 ], [ 144.659004, 13.298844 ], [ 144.659081, 13.298945 ], [ 144.659085, 13.29904 ], [ 144.659154, 13.299022 ], [ 144.659242, 13.299018 ], [ 144.659221, 13.299099 ], [ 144.65926, 13.29919 ], [ 144.659362, 13.299258 ], [ 144.659502, 13.299326 ], [ 144.659624, 13.299356 ], [ 144.659735, 13.299334 ], [ 144.65979, 13.299324 ], [ 144.659903, 13.299292 ], [ 144.659933, 13.299235 ], [ 144.660177, 13.299242 ], [ 144.660235, 13.299276 ], [ 144.660343, 13.299277 ], [ 144.660484, 13.299259 ], [ 144.660631, 13.299255 ], [ 144.660728, 13.299261 ], [ 144.660744, 13.299189 ], [ 144.660798, 13.299185 ], [ 144.660831, 13.299257 ], [ 144.660943, 13.299258 ], [ 144.661185, 13.299237 ], [ 144.661586, 13.299169 ], [ 144.661825, 13.299171 ], [ 144.66208, 13.299125 ], [ 144.662276, 13.299046 ], [ 144.662432, 13.29899 ], [ 144.662579, 13.298929 ], [ 144.662703, 13.298825 ], [ 144.662725, 13.298798 ], [ 144.662796, 13.298716 ], [ 144.662876, 13.29854 ], [ 144.662898, 13.298344 ], [ 144.662889, 13.298181 ], [ 144.662784, 13.298003 ], [ 144.662652, 13.297837 ], [ 144.662547, 13.297705 ], [ 144.662384, 13.297459 ], [ 144.662249, 13.297281 ], [ 144.662084, 13.297098 ], [ 144.661935, 13.296905 ], [ 144.661695, 13.296678 ], [ 144.661497, 13.296461 ], [ 144.661489, 13.296435 ], [ 144.661487, 13.296427 ], [ 144.661427, 13.29638 ], [ 144.661321, 13.296283 ], [ 144.661209, 13.296205 ], [ 144.661113, 13.296114 ], [ 144.66102, 13.296065 ], [ 144.660879, 13.296011 ], [ 144.660757, 13.296015 ], [ 144.66063, 13.296071 ], [ 144.660561, 13.296109 ], [ 144.660478, 13.296132 ], [ 144.660371, 13.296107 ], [ 144.660152, 13.296004 ], [ 144.660035, 13.295932 ], [ 144.660002, 13.295879 ], [ 144.6599, 13.295796 ], [ 144.659852, 13.295686 ], [ 144.659809, 13.295609 ], [ 144.659766, 13.295504 ], [ 144.659718, 13.295436 ], [ 144.659626, 13.295354 ], [ 144.659504, 13.295305 ], [ 144.659393, 13.295228 ], [ 144.659282, 13.295097 ], [ 144.659151, 13.294996 ], [ 144.659078, 13.294957 ], [ 144.658951, 13.294932 ], [ 144.658975, 13.294985 ], [ 144.658955, 13.295042 ], [ 144.658863, 13.294998 ], [ 144.658766, 13.294911 ], [ 144.658562, 13.294766 ], [ 144.658485, 13.294698 ], [ 144.658393, 13.29463 ], [ 144.658271, 13.294591 ], [ 144.65815, 13.294561 ], [ 144.658062, 13.294512 ], [ 144.658028, 13.294455 ], [ 144.657922, 13.294382 ], [ 144.657893, 13.294329 ], [ 144.657728, 13.294218 ], [ 144.657811, 13.29419 ], [ 144.657884, 13.294214 ], [ 144.657972, 13.294253 ], [ 144.658041, 13.294216 ], [ 144.658129, 13.294178 ], [ 144.658193, 13.294126 ], [ 144.658227, 13.294069 ], [ 144.658228, 13.294007 ], [ 144.658226, 13.293999 ], [ 144.658182, 13.293758 ], [ 144.65811, 13.293638 ], [ 144.658062, 13.293508 ], [ 144.658038, 13.293427 ], [ 144.657921, 13.293421 ], [ 144.657878, 13.293349 ], [ 144.657878, 13.293315 ], [ 144.657815, 13.293281 ], [ 144.657713, 13.293242 ], [ 144.657611, 13.293236 ], [ 144.657552, 13.293202 ], [ 144.657508, 13.293192 ], [ 144.65742, 13.293283 ], [ 144.657439, 13.29333 ], [ 144.65738, 13.293397 ], [ 144.657238, 13.293443 ], [ 144.657198, 13.293505 ], [ 144.657114, 13.293557 ], [ 144.657105, 13.293523 ], [ 144.65714, 13.293442 ], [ 144.657196, 13.293223 ], [ 144.657232, 13.292975 ], [ 144.657253, 13.292894 ], [ 144.657308, 13.292751 ], [ 144.657338, 13.292651 ], [ 144.657363, 13.292541 ], [ 144.657403, 13.292455 ], [ 144.657405, 13.292297 ], [ 144.657448, 13.292154 ], [ 144.657522, 13.292002 ], [ 144.657573, 13.291802 ], [ 144.657595, 13.291669 ], [ 144.657609, 13.291592 ], [ 144.657607, 13.291367 ], [ 144.657589, 13.291156 ], [ 144.657552, 13.290946 ], [ 144.657477, 13.290586 ], [ 144.657445, 13.290404 ], [ 144.657447, 13.290194 ], [ 144.657478, 13.290022 ], [ 144.657513, 13.28997 ], [ 144.657643, 13.289988 ], [ 144.657733, 13.289943 ], [ 144.657806, 13.289915 ], [ 144.657792, 13.289858 ], [ 144.657822, 13.289767 ], [ 144.657881, 13.289691 ], [ 144.657887, 13.289629 ], [ 144.657966, 13.289505 ], [ 144.658011, 13.289396 ], [ 144.658036, 13.289358 ], [ 144.65788, 13.289289 ], [ 144.657812, 13.289284 ], [ 144.657862, 13.289198 ], [ 144.65798, 13.289109 ], [ 144.658114, 13.2889 ], [ 144.658222, 13.28881 ], [ 144.658281, 13.288705 ], [ 144.658385, 13.288591 ], [ 144.658371, 13.288481 ], [ 144.658426, 13.288386 ], [ 144.658476, 13.288272 ], [ 144.658554, 13.288229 ], [ 144.658633, 13.288216 ], [ 144.658686, 13.28824 ], [ 144.658755, 13.288169 ], [ 144.65881, 13.28806 ], [ 144.658845, 13.287945 ], [ 144.658757, 13.287964 ], [ 144.658699, 13.287934 ], [ 144.658744, 13.287834 ], [ 144.658808, 13.287749 ], [ 144.658906, 13.287664 ], [ 144.658976, 13.28755 ], [ 144.658992, 13.287445 ], [ 144.658983, 13.287349 ], [ 144.659008, 13.287249 ], [ 144.659097, 13.287159 ], [ 144.659137, 13.287062 ], [ 144.659237, 13.28683 ], [ 144.659321, 13.28674 ], [ 144.659365, 13.286685 ], [ 144.659553, 13.28646 ], [ 144.6597, 13.286342 ], [ 144.659841, 13.286176 ], [ 144.660008, 13.286029 ], [ 144.660171, 13.285911 ], [ 144.660293, 13.285836 ], [ 144.660407, 13.285727 ], [ 144.660475, 13.285703 ], [ 144.660498, 13.285703 ], [ 144.660666, 13.2857 ], [ 144.660881, 13.285635 ], [ 144.660944, 13.285621 ], [ 144.661385, 13.28553 ], [ 144.661493, 13.285502 ], [ 144.661546, 13.285517 ], [ 144.6616, 13.285479 ], [ 144.661625, 13.285408 ], [ 144.661704, 13.285375 ], [ 144.661806, 13.285376 ], [ 144.661855, 13.285405 ], [ 144.661943, 13.285416 ], [ 144.661992, 13.285387 ], [ 144.662056, 13.28534 ], [ 144.662139, 13.285288 ], [ 144.662184, 13.285272 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "956300", "GEOID10": "66010956300", "NAME10": "9563", "NAMELSAD10": "Census Tract 9563", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 19320690, "AWATER10": 0, "INTPTLAT10": "+13.5219576", "INTPTLON10": "+144.9025773" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.891994, 13.498275 ], [ 144.891975, 13.498217 ], [ 144.891922, 13.498169 ], [ 144.891903, 13.498131 ], [ 144.891839, 13.498101 ], [ 144.89182, 13.498077 ], [ 144.891787, 13.497929 ], [ 144.89169, 13.497813 ], [ 144.891633, 13.497722 ], [ 144.89164, 13.49765 ], [ 144.891597, 13.497616 ], [ 144.891597, 13.497564 ], [ 144.891617, 13.497507 ], [ 144.891583, 13.497473 ], [ 144.891515, 13.497477 ], [ 144.891456, 13.497453 ], [ 144.891457, 13.497386 ], [ 144.891438, 13.497319 ], [ 144.891351, 13.497227 ], [ 144.891302, 13.497188 ], [ 144.891239, 13.49715 ], [ 144.891127, 13.49712 ], [ 144.891123, 13.497086 ], [ 144.891123, 13.497024 ], [ 144.891109, 13.496986 ], [ 144.891055, 13.496961 ], [ 144.891041, 13.496928 ], [ 144.891056, 13.49689 ], [ 144.890993, 13.496865 ], [ 144.89093, 13.496803 ], [ 144.890852, 13.496759 ], [ 144.890765, 13.496658 ], [ 144.890731, 13.49661 ], [ 144.890717, 13.496557 ], [ 144.890673, 13.496528 ], [ 144.890615, 13.49648 ], [ 144.89062, 13.496417 ], [ 144.890586, 13.49636 ], [ 144.890513, 13.496364 ], [ 144.890455, 13.496325 ], [ 144.890377, 13.496301 ], [ 144.89026, 13.496223 ], [ 144.890188, 13.496132 ], [ 144.890086, 13.496073 ], [ 144.890008, 13.496011 ], [ 144.889891, 13.495952 ], [ 144.889819, 13.495885 ], [ 144.889805, 13.495813 ], [ 144.889815, 13.495789 ], [ 144.889825, 13.495736 ], [ 144.889796, 13.495693 ], [ 144.889708, 13.495688 ], [ 144.889664, 13.495697 ], [ 144.88964, 13.495668 ], [ 144.889576, 13.495639 ], [ 144.889548, 13.495581 ], [ 144.889475, 13.495514 ], [ 144.889397, 13.495465 ], [ 144.889324, 13.495455 ], [ 144.889299, 13.495469 ], [ 144.889221, 13.495459 ], [ 144.889175, 13.495468 ], [ 144.88917, 13.49542 ], [ 144.889146, 13.495377 ], [ 144.889024, 13.495357 ], [ 144.889, 13.495309 ], [ 144.888981, 13.495294 ], [ 144.888981, 13.495237 ], [ 144.888987, 13.495189 ], [ 144.888919, 13.495141 ], [ 144.88886, 13.495121 ], [ 144.888836, 13.495059 ], [ 144.888773, 13.494996 ], [ 144.888744, 13.494943 ], [ 144.88873, 13.494895 ], [ 144.888638, 13.494861 ], [ 144.888594, 13.494822 ], [ 144.888546, 13.494769 ], [ 144.888341, 13.494672 ], [ 144.888322, 13.494624 ], [ 144.888279, 13.494566 ], [ 144.888123, 13.494498 ], [ 144.888084, 13.494455 ], [ 144.888124, 13.494412 ], [ 144.888109, 13.494354 ], [ 144.888056, 13.494292 ], [ 144.887998, 13.494234 ], [ 144.887915, 13.494228 ], [ 144.887823, 13.494205 ], [ 144.887808, 13.494161 ], [ 144.887828, 13.494118 ], [ 144.887784, 13.494084 ], [ 144.88777, 13.494045 ], [ 144.887721, 13.494021 ], [ 144.887707, 13.493983 ], [ 144.887742, 13.493945 ], [ 144.887737, 13.493916 ], [ 144.887698, 13.493892 ], [ 144.887664, 13.493863 ], [ 144.887645, 13.493839 ], [ 144.887557, 13.493809 ], [ 144.887523, 13.493766 ], [ 144.887514, 13.493728 ], [ 144.887548, 13.493704 ], [ 144.887519, 13.493675 ], [ 144.887441, 13.493651 ], [ 144.887407, 13.493631 ], [ 144.887325, 13.493516 ], [ 144.887282, 13.493401 ], [ 144.887219, 13.493347 ], [ 144.88719, 13.493314 ], [ 144.887171, 13.493266 ], [ 144.887133, 13.493151 ], [ 144.887124, 13.493108 ], [ 144.88709, 13.493059 ], [ 144.887046, 13.493011 ], [ 144.887022, 13.492954 ], [ 144.886999, 13.492882 ], [ 144.887004, 13.492815 ], [ 144.886951, 13.492728 ], [ 144.886946, 13.4927 ], [ 144.886824, 13.492675 ], [ 144.886786, 13.492641 ], [ 144.886801, 13.492603 ], [ 144.886835, 13.492579 ], [ 144.886836, 13.492522 ], [ 144.886763, 13.49243 ], [ 144.886739, 13.492382 ], [ 144.886754, 13.49232 ], [ 144.886745, 13.492248 ], [ 144.886687, 13.492224 ], [ 144.886569, 13.49228 ], [ 144.88653, 13.49227 ], [ 144.886408, 13.492217 ], [ 144.886267, 13.492182 ], [ 144.886175, 13.492114 ], [ 144.885907, 13.491988 ], [ 144.885746, 13.491896 ], [ 144.885732, 13.491857 ], [ 144.885698, 13.491828 ], [ 144.885639, 13.491833 ], [ 144.885547, 13.491794 ], [ 144.885557, 13.49176 ], [ 144.885538, 13.491736 ], [ 144.885499, 13.491712 ], [ 144.885465, 13.491673 ], [ 144.885465, 13.491635 ], [ 144.885475, 13.491606 ], [ 144.88549, 13.491578 ], [ 144.885442, 13.491539 ], [ 144.885374, 13.49151 ], [ 144.885306, 13.491462 ], [ 144.885262, 13.491471 ], [ 144.885144, 13.491513 ], [ 144.88509, 13.491512 ], [ 144.885071, 13.491498 ], [ 144.885091, 13.491469 ], [ 144.885091, 13.491445 ], [ 144.885003, 13.491426 ], [ 144.88489, 13.491439 ], [ 144.884827, 13.491472 ], [ 144.884773, 13.491452 ], [ 144.884754, 13.491414 ], [ 144.88472, 13.49139 ], [ 144.884647, 13.49137 ], [ 144.884622, 13.491351 ], [ 144.884584, 13.491264 ], [ 144.88454, 13.491278 ], [ 144.88453, 13.491297 ], [ 144.884501, 13.491283 ], [ 144.884496, 13.49123 ], [ 144.884477, 13.491196 ], [ 144.88436, 13.491176 ], [ 144.884326, 13.491138 ], [ 144.884375, 13.491114 ], [ 144.88441, 13.491062 ], [ 144.884396, 13.49099 ], [ 144.884294, 13.490927 ], [ 144.884225, 13.490941 ], [ 144.884186, 13.49096 ], [ 144.884152, 13.490945 ], [ 144.884128, 13.490939 ], [ 144.884108, 13.490935 ], [ 144.884069, 13.490935 ], [ 144.88403, 13.490906 ], [ 144.883962, 13.4909 ], [ 144.883933, 13.490871 ], [ 144.883899, 13.490828 ], [ 144.883806, 13.490799 ], [ 144.883738, 13.490765 ], [ 144.883734, 13.490707 ], [ 144.883665, 13.490716 ], [ 144.883597, 13.49072 ], [ 144.883553, 13.490758 ], [ 144.883511, 13.490767 ], [ 144.883467, 13.490767 ], [ 144.883413, 13.49079 ], [ 144.883355, 13.490771 ], [ 144.883331, 13.490728 ], [ 144.883282, 13.490694 ], [ 144.883223, 13.490722 ], [ 144.883179, 13.49076 ], [ 144.883125, 13.490764 ], [ 144.883091, 13.49073 ], [ 144.883032, 13.490725 ], [ 144.882959, 13.490753 ], [ 144.882924, 13.490791 ], [ 144.882851, 13.490805 ], [ 144.882778, 13.49078 ], [ 144.882773, 13.490737 ], [ 144.882813, 13.490709 ], [ 144.882793, 13.490675 ], [ 144.88273, 13.49066 ], [ 144.882701, 13.490627 ], [ 144.882618, 13.490607 ], [ 144.882569, 13.490645 ], [ 144.882583, 13.490702 ], [ 144.882588, 13.490755 ], [ 144.882543, 13.490788 ], [ 144.88245, 13.490801 ], [ 144.882387, 13.490801 ], [ 144.882299, 13.490795 ], [ 144.882177, 13.490756 ], [ 144.882148, 13.490722 ], [ 144.88207, 13.49075 ], [ 144.881982, 13.490759 ], [ 144.881938, 13.490749 ], [ 144.881869, 13.490754 ], [ 144.8818, 13.490868 ], [ 144.881766, 13.490844 ], [ 144.881732, 13.490767 ], [ 144.881674, 13.490761 ], [ 144.881605, 13.490828 ], [ 144.881604, 13.4909 ], [ 144.881564, 13.490957 ], [ 144.881476, 13.490965 ], [ 144.881428, 13.49096 ], [ 144.881409, 13.490903 ], [ 144.881375, 13.49085 ], [ 144.881361, 13.490811 ], [ 144.881381, 13.490749 ], [ 144.881386, 13.490702 ], [ 144.881347, 13.490687 ], [ 144.881234, 13.490767 ], [ 144.881175, 13.490795 ], [ 144.881121, 13.490833 ], [ 144.881106, 13.490804 ], [ 144.881083, 13.490675 ], [ 144.881049, 13.490617 ], [ 144.880986, 13.490583 ], [ 144.880923, 13.490573 ], [ 144.880849, 13.490587 ], [ 144.88079, 13.49063 ], [ 144.880726, 13.490734 ], [ 144.880642, 13.490829 ], [ 144.880609, 13.490874 ], [ 144.880564, 13.490829 ], [ 144.880564, 13.490786 ], [ 144.880492, 13.490718 ], [ 144.880502, 13.490661 ], [ 144.880459, 13.49055 ], [ 144.88042, 13.490517 ], [ 144.880387, 13.490401 ], [ 144.880323, 13.490406 ], [ 144.880279, 13.49042 ], [ 144.88021, 13.490462 ], [ 144.880166, 13.490524 ], [ 144.880161, 13.490567 ], [ 144.880087, 13.490547 ], [ 144.880014, 13.490532 ], [ 144.879995, 13.490503 ], [ 144.879986, 13.490441 ], [ 144.879928, 13.490364 ], [ 144.879889, 13.49033 ], [ 144.879821, 13.490291 ], [ 144.879704, 13.490281 ], [ 144.879547, 13.490318 ], [ 144.879474, 13.490317 ], [ 144.8794, 13.490336 ], [ 144.879361, 13.490374 ], [ 144.879321, 13.49044 ], [ 144.879258, 13.490449 ], [ 144.879199, 13.490396 ], [ 144.879122, 13.490353 ], [ 144.879093, 13.490295 ], [ 144.87901, 13.490222 ], [ 144.878865, 13.490135 ], [ 144.878782, 13.490096 ], [ 144.87867, 13.490071 ], [ 144.878602, 13.490033 ], [ 144.878558, 13.489994 ], [ 144.878436, 13.489935 ], [ 144.878314, 13.489915 ], [ 144.878231, 13.489934 ], [ 144.878148, 13.489971 ], [ 144.878133, 13.490014 ], [ 144.878132, 13.490038 ], [ 144.877981, 13.490018 ], [ 144.87784, 13.489993 ], [ 144.877737, 13.489968 ], [ 144.877494, 13.489889 ], [ 144.87748, 13.489822 ], [ 144.877426, 13.489774 ], [ 144.877314, 13.489739 ], [ 144.877197, 13.48971 ], [ 144.877104, 13.489704 ], [ 144.877011, 13.489732 ], [ 144.87691, 13.489617 ], [ 144.87686, 13.489683 ], [ 144.876797, 13.489659 ], [ 144.876753, 13.489596 ], [ 144.876666, 13.489528 ], [ 144.876588, 13.489489 ], [ 144.876525, 13.489484 ], [ 144.876388, 13.48943 ], [ 144.87633, 13.489387 ], [ 144.876291, 13.489363 ], [ 144.876222, 13.489359 ], [ 144.876224, 13.489337 ], [ 144.876063, 13.489326 ], [ 144.876029, 13.489307 ], [ 144.876015, 13.489207 ], [ 144.875947, 13.489177 ], [ 144.87582, 13.489167 ], [ 144.875756, 13.48918 ], [ 144.875718, 13.489137 ], [ 144.87565, 13.489079 ], [ 144.87547, 13.489011 ], [ 144.875392, 13.488962 ], [ 144.875324, 13.488899 ], [ 144.875266, 13.488832 ], [ 144.875218, 13.48876 ], [ 144.87517, 13.488669 ], [ 144.875151, 13.488601 ], [ 144.875107, 13.488558 ], [ 144.87502, 13.488519 ], [ 144.874971, 13.488476 ], [ 144.874903, 13.488451 ], [ 144.874879, 13.488413 ], [ 144.874825, 13.488383 ], [ 144.874757, 13.488378 ], [ 144.874674, 13.488354 ], [ 144.87466, 13.488306 ], [ 144.874601, 13.488281 ], [ 144.874558, 13.488257 ], [ 144.874548, 13.488223 ], [ 144.874509, 13.488209 ], [ 144.87446, 13.488203 ], [ 144.874387, 13.488179 ], [ 144.874333, 13.488188 ], [ 144.874275, 13.488192 ], [ 144.874226, 13.488216 ], [ 144.874172, 13.488182 ], [ 144.874182, 13.488149 ], [ 144.874178, 13.488125 ], [ 144.874044, 13.488037 ], [ 144.873942, 13.487979 ], [ 144.873898, 13.487926 ], [ 144.87385, 13.487892 ], [ 144.873801, 13.487863 ], [ 144.873763, 13.487825 ], [ 144.873723, 13.487829 ], [ 144.87366, 13.487852 ], [ 144.873606, 13.487847 ], [ 144.873543, 13.487794 ], [ 144.873494, 13.48776 ], [ 144.873451, 13.487707 ], [ 144.873412, 13.487697 ], [ 144.873368, 13.487697 ], [ 144.873324, 13.487658 ], [ 144.873207, 13.4876 ], [ 144.873159, 13.487542 ], [ 144.873101, 13.487508 ], [ 144.873047, 13.487489 ], [ 144.872994, 13.487435 ], [ 144.872965, 13.487383 ], [ 144.872941, 13.487368 ], [ 144.872887, 13.487363 ], [ 144.872829, 13.487329 ], [ 144.87281, 13.487286 ], [ 144.872668, 13.487218 ], [ 144.872586, 13.487193 ], [ 144.872502, 13.487202 ], [ 144.872454, 13.487211 ], [ 144.872361, 13.487162 ], [ 144.87193, 13.486802 ], [ 144.871858, 13.486746 ], [ 144.871601, 13.486497 ], [ 144.871553, 13.486401 ], [ 144.871417, 13.486144 ], [ 144.871112, 13.485951 ], [ 144.870967, 13.486056 ], [ 144.870875, 13.486052 ], [ 144.870597, 13.48635 ], [ 144.870479, 13.486491 ], [ 144.870126, 13.486913 ], [ 144.870009, 13.487055 ], [ 144.869671, 13.488239 ], [ 144.869013, 13.490547 ], [ 144.869951, 13.49144 ], [ 144.870844, 13.492289 ], [ 144.870866, 13.493048 ], [ 144.870932, 13.495326 ], [ 144.870955, 13.496086 ], [ 144.870954, 13.496114 ], [ 144.870952, 13.496197 ], [ 144.870952, 13.496226 ], [ 144.870952, 13.496248 ], [ 144.870954, 13.496314 ], [ 144.870955, 13.496337 ], [ 144.870952, 13.496374 ], [ 144.870945, 13.496488 ], [ 144.870944, 13.496526 ], [ 144.870936, 13.496756 ], [ 144.870911, 13.497449 ], [ 144.870904, 13.49768 ], [ 144.870895, 13.497864 ], [ 144.870868, 13.498415 ], [ 144.87086, 13.4986 ], [ 144.870852, 13.498884 ], [ 144.87083, 13.499692 ], [ 144.870829, 13.499736 ], [ 144.870822, 13.500021 ], [ 144.870819, 13.500068 ], [ 144.870812, 13.500212 ], [ 144.87081, 13.50026 ], [ 144.87081, 13.500359 ], [ 144.870813, 13.500657 ], [ 144.870814, 13.500757 ], [ 144.870813, 13.500823 ], [ 144.870812, 13.501024 ], [ 144.870812, 13.501091 ], [ 144.870778, 13.501175 ], [ 144.870769, 13.501199 ], [ 144.870749, 13.501447 ], [ 144.870742, 13.501539 ], [ 144.870765, 13.503836 ], [ 144.870834, 13.510727 ], [ 144.870857, 13.513025 ], [ 144.870844, 13.513789 ], [ 144.870807, 13.516083 ], [ 144.870795, 13.516848 ], [ 144.870785, 13.517392 ], [ 144.870759, 13.519026 ], [ 144.870751, 13.519571 ], [ 144.870904, 13.51962 ], [ 144.871366, 13.51977 ], [ 144.87152, 13.51982 ], [ 144.872373, 13.520088 ], [ 144.87368, 13.5205 ], [ 144.874932, 13.520901 ], [ 144.875785, 13.521175 ], [ 144.875837, 13.521192 ], [ 144.875996, 13.521243 ], [ 144.87605, 13.52126 ], [ 144.876316, 13.52135 ], [ 144.87658, 13.52144 ], [ 144.877114, 13.521627 ], [ 144.87738, 13.52172 ], [ 144.877468, 13.521748 ], [ 144.877732, 13.521833 ], [ 144.87782, 13.521862 ], [ 144.877937, 13.521899 ], [ 144.87829, 13.522013 ], [ 144.878408, 13.522051 ], [ 144.878494, 13.522078 ], [ 144.878753, 13.522162 ], [ 144.87884, 13.52219 ], [ 144.878925, 13.522216 ], [ 144.879183, 13.522294 ], [ 144.87927, 13.52232 ], [ 144.879325, 13.522342 ], [ 144.879491, 13.522409 ], [ 144.879547, 13.522432 ], [ 144.87959, 13.52245 ], [ 144.879722, 13.522513 ], [ 144.880245, 13.522765 ], [ 144.88042, 13.52285 ], [ 144.880454, 13.52287 ], [ 144.880556, 13.522932 ], [ 144.88059, 13.522953 ], [ 144.88063, 13.522977 ], [ 144.880753, 13.523051 ], [ 144.880794, 13.523076 ], [ 144.880908, 13.523144 ], [ 144.88095, 13.52317 ], [ 144.880975, 13.523188 ], [ 144.881232, 13.52338 ], [ 144.88134, 13.52346 ], [ 144.88156, 13.52362 ], [ 144.881665, 13.523706 ], [ 144.88199, 13.52397 ], [ 144.88218, 13.524145 ], [ 144.88238, 13.52433 ], [ 144.882502, 13.524466 ], [ 144.882868, 13.524874 ], [ 144.882812, 13.523021 ], [ 144.882824, 13.522745 ], [ 144.883076, 13.514091 ], [ 144.883096, 13.513846 ], [ 144.883369, 13.510589 ], [ 144.883267, 13.509938 ], [ 144.882961, 13.507985 ], [ 144.882951, 13.507916 ], [ 144.882531, 13.507504 ], [ 144.882601, 13.50749 ], [ 144.882812, 13.507452 ], [ 144.882883, 13.50744 ], [ 144.882887, 13.507445 ], [ 144.882899, 13.507461 ], [ 144.882904, 13.507467 ], [ 144.88318, 13.50783 ], [ 144.883571, 13.508353 ], [ 144.88419, 13.50918 ], [ 144.88485, 13.51007 ], [ 144.885567, 13.511016 ], [ 144.886238, 13.5119 ], [ 144.886418, 13.512138 ], [ 144.886959, 13.512852 ], [ 144.88714, 13.51309 ], [ 144.887215, 13.513189 ], [ 144.887442, 13.513486 ], [ 144.887518, 13.513585 ], [ 144.887768, 13.513912 ], [ 144.88801, 13.51423 ], [ 144.888512, 13.5149 ], [ 144.88876, 13.51523 ], [ 144.889173, 13.515766 ], [ 144.88943, 13.5161 ], [ 144.890401, 13.517385 ], [ 144.89081, 13.517926 ], [ 144.890966, 13.518132 ], [ 144.891434, 13.518751 ], [ 144.89159, 13.518958 ], [ 144.891642, 13.519026 ], [ 144.89172, 13.51913 ], [ 144.891792, 13.519238 ], [ 144.89184, 13.51931 ], [ 144.892032, 13.519556 ], [ 144.892608, 13.520294 ], [ 144.8928, 13.52054 ], [ 144.892999, 13.520802 ], [ 144.893245, 13.521128 ], [ 144.893596, 13.52159 ], [ 144.893796, 13.521853 ], [ 144.89406, 13.5222 ], [ 144.894109, 13.522267 ], [ 144.89466, 13.52301 ], [ 144.89489, 13.523312 ], [ 144.895045, 13.523516 ], [ 144.89536, 13.52393 ], [ 144.89556, 13.52419 ], [ 144.895564, 13.524193 ], [ 144.89585, 13.52444 ], [ 144.8962, 13.52465 ], [ 144.896396, 13.524739 ], [ 144.8967, 13.524877 ], [ 144.896732, 13.524891 ], [ 144.896828, 13.524935 ], [ 144.89686, 13.52495 ], [ 144.897115, 13.525064 ], [ 144.89735, 13.52517 ], [ 144.897876, 13.525419 ], [ 144.898052, 13.525503 ], [ 144.89813, 13.52554 ], [ 144.898381, 13.52566 ], [ 144.898893, 13.525904 ], [ 144.899137, 13.52602 ], [ 144.899389, 13.526141 ], [ 144.899405, 13.526148 ], [ 144.899453, 13.526172 ], [ 144.89947, 13.52618 ], [ 144.899526, 13.526206 ], [ 144.899694, 13.526285 ], [ 144.899751, 13.526312 ], [ 144.899801, 13.526336 ], [ 144.899954, 13.526408 ], [ 144.900005, 13.526432 ], [ 144.900034, 13.526445 ], [ 144.900121, 13.526486 ], [ 144.90015, 13.5265 ], [ 144.900218, 13.52653 ], [ 144.900422, 13.52662 ], [ 144.90049, 13.52665 ], [ 144.900496, 13.526652 ], [ 144.900517, 13.526659 ], [ 144.900524, 13.526662 ], [ 144.900539, 13.526667 ], [ 144.900584, 13.526684 ], [ 144.9006, 13.52669 ], [ 144.900632, 13.52671 ], [ 144.900728, 13.52677 ], [ 144.90076, 13.52679 ], [ 144.900862, 13.526836 ], [ 144.901168, 13.526974 ], [ 144.90127, 13.52702 ], [ 144.901316, 13.52704 ], [ 144.901454, 13.527099 ], [ 144.9015, 13.52712 ], [ 144.901529, 13.527132 ], [ 144.901617, 13.527169 ], [ 144.901647, 13.527182 ], [ 144.901686, 13.527198 ], [ 144.90169, 13.5272 ], [ 144.901799, 13.527261 ], [ 144.901837, 13.527282 ], [ 144.901879, 13.527305 ], [ 144.902007, 13.527377 ], [ 144.90205, 13.527402 ], [ 144.9021, 13.52743 ], [ 144.902129, 13.527457 ], [ 144.90225, 13.52757 ], [ 144.902342, 13.527662 ], [ 144.90236, 13.52768 ], [ 144.902404, 13.527738 ], [ 144.902417, 13.527755 ], [ 144.902459, 13.527808 ], [ 144.902473, 13.527826 ], [ 144.902487, 13.527845 ], [ 144.902532, 13.527903 ], [ 144.902547, 13.527923 ], [ 144.902563, 13.527944 ], [ 144.902613, 13.528008 ], [ 144.90263, 13.52803 ], [ 144.902647, 13.528065 ], [ 144.902701, 13.528174 ], [ 144.90272, 13.52821 ], [ 144.902738, 13.528248 ], [ 144.902792, 13.528362 ], [ 144.90281, 13.528401 ], [ 144.90282, 13.528423 ], [ 144.902852, 13.52849 ], [ 144.902863, 13.528513 ], [ 144.902869, 13.528526 ], [ 144.90288, 13.52855 ], [ 144.902888, 13.528567 ], [ 144.902895, 13.528581 ], [ 144.902916, 13.528625 ], [ 144.902981, 13.528757 ], [ 144.903003, 13.528802 ], [ 144.903029, 13.528856 ], [ 144.903108, 13.529018 ], [ 144.903135, 13.529073 ], [ 144.903165, 13.529136 ], [ 144.903258, 13.529326 ], [ 144.90329, 13.52939 ], [ 144.903303, 13.529417 ], [ 144.903342, 13.529499 ], [ 144.903356, 13.529527 ], [ 144.903369, 13.529555 ], [ 144.90341, 13.529639 ], [ 144.903424, 13.529668 ], [ 144.903442, 13.529705 ], [ 144.903496, 13.529819 ], [ 144.903514, 13.529857 ], [ 144.903531, 13.529893 ], [ 144.903585, 13.530005 ], [ 144.903603, 13.530042 ], [ 144.903644, 13.530129 ], [ 144.90365, 13.53014 ], [ 144.903778, 13.530386 ], [ 144.903823, 13.530472 ], [ 144.903856, 13.530535 ], [ 144.903956, 13.530726 ], [ 144.90399, 13.53079 ], [ 144.904091, 13.531 ], [ 144.90424, 13.53131 ], [ 144.9044, 13.531631 ], [ 144.904505, 13.531841 ], [ 144.904579, 13.531989 ], [ 144.90466, 13.53215 ], [ 144.904811, 13.532433 ], [ 144.90489, 13.53258 ], [ 144.904973, 13.532746 ], [ 144.90508, 13.53296 ], [ 144.905256, 13.533225 ], [ 144.90536, 13.53338 ], [ 144.905601, 13.53368 ], [ 144.90565, 13.53374 ], [ 144.90583, 13.53399 ], [ 144.90605, 13.53434 ], [ 144.906225, 13.534652 ], [ 144.90628, 13.53475 ], [ 144.90639, 13.535 ], [ 144.906517, 13.535299 ], [ 144.90685, 13.53608 ], [ 144.906903, 13.536198 ], [ 144.90695, 13.5363 ], [ 144.90708, 13.53647 ], [ 144.907173, 13.536568 ], [ 144.90727, 13.53667 ], [ 144.907481, 13.53683 ], [ 144.907589, 13.536912 ], [ 144.907683, 13.536983 ], [ 144.907965, 13.537198 ], [ 144.90806, 13.53727 ], [ 144.908208, 13.537401 ], [ 144.90824, 13.53743 ], [ 144.90837, 13.53759 ], [ 144.90855, 13.53779 ], [ 144.908593, 13.537852 ], [ 144.908706, 13.538016 ], [ 144.90886, 13.53824 ], [ 144.90899, 13.5385 ], [ 144.90904, 13.53868 ], [ 144.909075, 13.538865 ], [ 144.90916, 13.5393 ], [ 144.90939, 13.54094 ], [ 144.90947, 13.54137 ], [ 144.909577, 13.541625 ], [ 144.90958, 13.54163 ], [ 144.90977, 13.54189 ], [ 144.90999, 13.54212 ], [ 144.91022, 13.5423 ], [ 144.910281, 13.542332 ], [ 144.910464, 13.54243 ], [ 144.910525, 13.542463 ], [ 144.91065, 13.54253 ], [ 144.911014, 13.542672 ], [ 144.91188, 13.54301 ], [ 144.91213, 13.5431 ], [ 144.91241, 13.54325 ], [ 144.912479, 13.543301 ], [ 144.91273, 13.54349 ], [ 144.91289, 13.54364 ], [ 144.912959, 13.543766 ], [ 144.91301, 13.54386 ], [ 144.913103, 13.544173 ], [ 144.913145, 13.544312 ], [ 144.913152, 13.544335 ], [ 144.913173, 13.544406 ], [ 144.91318, 13.54443 ], [ 144.913228, 13.544612 ], [ 144.913372, 13.545159 ], [ 144.91342, 13.545342 ], [ 144.913483, 13.545585 ], [ 144.913675, 13.546316 ], [ 144.91374, 13.54656 ], [ 144.913821, 13.546879 ], [ 144.914067, 13.547838 ], [ 144.91407, 13.54785 ], [ 144.914139, 13.54816 ], [ 144.9142, 13.54834 ], [ 144.914387, 13.549015 ], [ 144.914469, 13.549311 ], [ 144.91451, 13.54946 ], [ 144.914531, 13.549544 ], [ 144.91491, 13.55101 ], [ 144.914945, 13.55114 ], [ 144.91509, 13.55167 ], [ 144.915121, 13.551788 ], [ 144.915217, 13.552142 ], [ 144.91525, 13.55226 ], [ 144.91528, 13.552366 ], [ 144.91537, 13.552684 ], [ 144.9154, 13.55279 ], [ 144.915427, 13.552895 ], [ 144.915511, 13.553212 ], [ 144.91554, 13.553318 ], [ 144.915619, 13.55362 ], [ 144.915773, 13.5542 ], [ 144.915859, 13.554527 ], [ 144.91594, 13.55483 ], [ 144.915955, 13.554891 ], [ 144.916002, 13.555076 ], [ 144.916018, 13.555138 ], [ 144.91609, 13.555422 ], [ 144.916307, 13.556275 ], [ 144.91638, 13.55656 ], [ 144.916409, 13.556636 ], [ 144.91645, 13.55674 ], [ 144.916499, 13.556864 ], [ 144.91653, 13.55694 ], [ 144.916593, 13.556916 ], [ 144.916784, 13.556842 ], [ 144.917549, 13.556547 ], [ 144.917804, 13.55645 ], [ 144.917989, 13.556367 ], [ 144.920567, 13.555396 ], [ 144.921836, 13.554894 ], [ 144.921839, 13.554893 ], [ 144.922231, 13.554775 ], [ 144.92266, 13.554648 ], [ 144.933433, 13.549094 ], [ 144.937278, 13.547113 ], [ 144.937241, 13.547088 ], [ 144.937221, 13.547083 ], [ 144.937217, 13.547 ], [ 144.937202, 13.546971 ], [ 144.937048, 13.54695 ], [ 144.936994, 13.54693 ], [ 144.936964, 13.546906 ], [ 144.936954, 13.546862 ], [ 144.937064, 13.546804 ], [ 144.9371, 13.546766 ], [ 144.937125, 13.546732 ], [ 144.93716, 13.546674 ], [ 144.937176, 13.54661 ], [ 144.937156, 13.546542 ], [ 144.937112, 13.546493 ], [ 144.937097, 13.546435 ], [ 144.937088, 13.546381 ], [ 144.937039, 13.546337 ], [ 144.93693, 13.546209 ], [ 144.936896, 13.546097 ], [ 144.936842, 13.546014 ], [ 144.936843, 13.545912 ], [ 144.936874, 13.545819 ], [ 144.93684, 13.545761 ], [ 144.93679, 13.545717 ], [ 144.936731, 13.545706 ], [ 144.936688, 13.545719 ], [ 144.936666, 13.545657 ], [ 144.936622, 13.545589 ], [ 144.936632, 13.545564 ], [ 144.936633, 13.54553 ], [ 144.936598, 13.545511 ], [ 144.936563, 13.545486 ], [ 144.936499, 13.545476 ], [ 144.93643, 13.545412 ], [ 144.936395, 13.545358 ], [ 144.936366, 13.545329 ], [ 144.936336, 13.545285 ], [ 144.936346, 13.545251 ], [ 144.936426, 13.545217 ], [ 144.936442, 13.545183 ], [ 144.936447, 13.54513 ], [ 144.936447, 13.545081 ], [ 144.936438, 13.545032 ], [ 144.936399, 13.544978 ], [ 144.936374, 13.544934 ], [ 144.936315, 13.54491 ], [ 144.93624, 13.544889 ], [ 144.936161, 13.544884 ], [ 144.936051, 13.544883 ], [ 144.936026, 13.544917 ], [ 144.935951, 13.544911 ], [ 144.935867, 13.54494 ], [ 144.935836, 13.544988 ], [ 144.935786, 13.545022 ], [ 144.935736, 13.545046 ], [ 144.935757, 13.544993 ], [ 144.935762, 13.544939 ], [ 144.935758, 13.544886 ], [ 144.935719, 13.544778 ], [ 144.935749, 13.54472 ], [ 144.93576, 13.544666 ], [ 144.93573, 13.544613 ], [ 144.935711, 13.544559 ], [ 144.935691, 13.544515 ], [ 144.935652, 13.544481 ], [ 144.935576, 13.544558 ], [ 144.935547, 13.544538 ], [ 144.935552, 13.544494 ], [ 144.935488, 13.544479 ], [ 144.935423, 13.544484 ], [ 144.935383, 13.544474 ], [ 144.935374, 13.54441 ], [ 144.935374, 13.544357 ], [ 144.93538, 13.544308 ], [ 144.935405, 13.544264 ], [ 144.935415, 13.544211 ], [ 144.935386, 13.544182 ], [ 144.935376, 13.544118 ], [ 144.935466, 13.544056 ], [ 144.935442, 13.544002 ], [ 144.935397, 13.543972 ], [ 144.935383, 13.543909 ], [ 144.93537, 13.543898 ], [ 144.935353, 13.543884 ], [ 144.935294, 13.543884 ], [ 144.935259, 13.543879 ], [ 144.93518, 13.543815 ], [ 144.935175, 13.543761 ], [ 144.935151, 13.543688 ], [ 144.935147, 13.5436 ], [ 144.935162, 13.543547 ], [ 144.935158, 13.543489 ], [ 144.935109, 13.543435 ], [ 144.935099, 13.543376 ], [ 144.935054, 13.543361 ], [ 144.93504, 13.543303 ], [ 144.934996, 13.54319 ], [ 144.935007, 13.543137 ], [ 144.935002, 13.543074 ], [ 144.934958, 13.543024 ], [ 144.934969, 13.542908 ], [ 144.934885, 13.542834 ], [ 144.934825, 13.542799 ], [ 144.934791, 13.542755 ], [ 144.934742, 13.542721 ], [ 144.934662, 13.542715 ], [ 144.934582, 13.542715 ], [ 144.934498, 13.542651 ], [ 144.934465, 13.54247 ], [ 144.934451, 13.542339 ], [ 144.934412, 13.542309 ], [ 144.934367, 13.54229 ], [ 144.934373, 13.542246 ], [ 144.934398, 13.542202 ], [ 144.934419, 13.542042 ], [ 144.934409, 13.542008 ], [ 144.934365, 13.541983 ], [ 144.934325, 13.541968 ], [ 144.934331, 13.541914 ], [ 144.934306, 13.54189 ], [ 144.934256, 13.54186 ], [ 144.934222, 13.54186 ], [ 144.934162, 13.541845 ], [ 144.934143, 13.541796 ], [ 144.934148, 13.541772 ], [ 144.934143, 13.541743 ], [ 144.934094, 13.541723 ], [ 144.934064, 13.541742 ], [ 144.934019, 13.541742 ], [ 144.934024, 13.541703 ], [ 144.933999, 13.541698 ], [ 144.93397, 13.541673 ], [ 144.933965, 13.541639 ], [ 144.933935, 13.541614 ], [ 144.933875, 13.541624 ], [ 144.933846, 13.541618 ], [ 144.933776, 13.541579 ], [ 144.933752, 13.54152 ], [ 144.933756, 13.54136 ], [ 144.933721, 13.54133 ], [ 144.933697, 13.541301 ], [ 144.933548, 13.54128 ], [ 144.933508, 13.541255 ], [ 144.933493, 13.541241 ], [ 144.933524, 13.541183 ], [ 144.933574, 13.541149 ], [ 144.933599, 13.541076 ], [ 144.933585, 13.541037 ], [ 144.933525, 13.541022 ], [ 144.933475, 13.541046 ], [ 144.933395, 13.54107 ], [ 144.93338, 13.541089 ], [ 144.933355, 13.541064 ], [ 144.933356, 13.541016 ], [ 144.933326, 13.540976 ], [ 144.933312, 13.540942 ], [ 144.933297, 13.540923 ], [ 144.933257, 13.540898 ], [ 144.933263, 13.540874 ], [ 144.933342, 13.540889 ], [ 144.933377, 13.54086 ], [ 144.933378, 13.540802 ], [ 144.933388, 13.540748 ], [ 144.933389, 13.540695 ], [ 144.933349, 13.540665 ], [ 144.933299, 13.54066 ], [ 144.93327, 13.54064 ], [ 144.933255, 13.540591 ], [ 144.933256, 13.540533 ], [ 144.933231, 13.540494 ], [ 144.933226, 13.54045 ], [ 144.933257, 13.540392 ], [ 144.933252, 13.540348 ], [ 144.933153, 13.540328 ], [ 144.933138, 13.540294 ], [ 144.933119, 13.54022 ], [ 144.933085, 13.540171 ], [ 144.93307, 13.540118 ], [ 144.933041, 13.540064 ], [ 144.932947, 13.539966 ], [ 144.932927, 13.539936 ], [ 144.932933, 13.539898 ], [ 144.932963, 13.539849 ], [ 144.932893, 13.539849 ], [ 144.932854, 13.539804 ], [ 144.93284, 13.539741 ], [ 144.932855, 13.539654 ], [ 144.932924, 13.539713 ], [ 144.932959, 13.539684 ], [ 144.93296, 13.539635 ], [ 144.93298, 13.539596 ], [ 144.932971, 13.539557 ], [ 144.932916, 13.539547 ], [ 144.932811, 13.539546 ], [ 144.932747, 13.539531 ], [ 144.932747, 13.539473 ], [ 144.932723, 13.539404 ], [ 144.932733, 13.539356 ], [ 144.932769, 13.539339 ], [ 144.932769, 13.539301 ], [ 144.932744, 13.539282 ], [ 144.932666, 13.539262 ], [ 144.932647, 13.539237 ], [ 144.932609, 13.539205 ], [ 144.932557, 13.539242 ], [ 144.93253, 13.539305 ], [ 144.932492, 13.539317 ], [ 144.93246, 13.539279 ], [ 144.932434, 13.539216 ], [ 144.932428, 13.539153 ], [ 144.93241, 13.539089 ], [ 144.932417, 13.539026 ], [ 144.932398, 13.538976 ], [ 144.932347, 13.538887 ], [ 144.932354, 13.538861 ], [ 144.932412, 13.538774 ], [ 144.932406, 13.538717 ], [ 144.932426, 13.538679 ], [ 144.932446, 13.538629 ], [ 144.932453, 13.538572 ], [ 144.932447, 13.538534 ], [ 144.932396, 13.538483 ], [ 144.932325, 13.538457 ], [ 144.932319, 13.538425 ], [ 144.932358, 13.538394 ], [ 144.932371, 13.538363 ], [ 144.932365, 13.538312 ], [ 144.932352, 13.53828 ], [ 144.93232, 13.538223 ], [ 144.932321, 13.538173 ], [ 144.93234, 13.538141 ], [ 144.932367, 13.538003 ], [ 144.932355, 13.537952 ], [ 144.932342, 13.53792 ], [ 144.932304, 13.537889 ], [ 144.932265, 13.537882 ], [ 144.932213, 13.537894 ], [ 144.932168, 13.537913 ], [ 144.932142, 13.537919 ], [ 144.932104, 13.537912 ], [ 144.932104, 13.537881 ], [ 144.932124, 13.537754 ], [ 144.932176, 13.537698 ], [ 144.932183, 13.537648 ], [ 144.932196, 13.537635 ], [ 144.932184, 13.537584 ], [ 144.932191, 13.537547 ], [ 144.932242, 13.537541 ], [ 144.932281, 13.537598 ], [ 144.932319, 13.537636 ], [ 144.932358, 13.537598 ], [ 144.932384, 13.537548 ], [ 144.932436, 13.537523 ], [ 144.932495, 13.537416 ], [ 144.93245, 13.537391 ], [ 144.932385, 13.537416 ], [ 144.932347, 13.537409 ], [ 144.93225, 13.537339 ], [ 144.932174, 13.537269 ], [ 144.932109, 13.537224 ], [ 144.932077, 13.537192 ], [ 144.932071, 13.537173 ], [ 144.932079, 13.537059 ], [ 144.932117, 13.537085 ], [ 144.932169, 13.537079 ], [ 144.932195, 13.537048 ], [ 144.932182, 13.536991 ], [ 144.932202, 13.536921 ], [ 144.932248, 13.53689 ], [ 144.932332, 13.536872 ], [ 144.932358, 13.53679 ], [ 144.93232, 13.536746 ], [ 144.93232, 13.536708 ], [ 144.932276, 13.536663 ], [ 144.93225, 13.536612 ], [ 144.932186, 13.536555 ], [ 144.932141, 13.536536 ], [ 144.932103, 13.536498 ], [ 144.932084, 13.536434 ], [ 144.932072, 13.536352 ], [ 144.932027, 13.536295 ], [ 144.932014, 13.536263 ], [ 144.932054, 13.536207 ], [ 144.932046, 13.53619 ], [ 144.932077, 13.536144 ], [ 144.932109, 13.536106 ], [ 144.932129, 13.536049 ], [ 144.932117, 13.535955 ], [ 144.932118, 13.535879 ], [ 144.932112, 13.535822 ], [ 144.932067, 13.535777 ], [ 144.932016, 13.535739 ], [ 144.931978, 13.535688 ], [ 144.931952, 13.535637 ], [ 144.931966, 13.535581 ], [ 144.932005, 13.535537 ], [ 144.932044, 13.535518 ], [ 144.932089, 13.535481 ], [ 144.932109, 13.535424 ], [ 144.932077, 13.535386 ], [ 144.932038, 13.535367 ], [ 144.932, 13.535335 ], [ 144.931987, 13.535297 ], [ 144.931949, 13.53524 ], [ 144.931891, 13.535239 ], [ 144.931852, 13.53522 ], [ 144.931788, 13.535213 ], [ 144.931782, 13.535181 ], [ 144.931782, 13.535124 ], [ 144.931809, 13.535068 ], [ 144.931841, 13.535049 ], [ 144.931899, 13.535024 ], [ 144.931996, 13.535019 ], [ 144.932022, 13.534969 ], [ 144.932016, 13.534931 ], [ 144.931978, 13.534924 ], [ 144.931939, 13.534943 ], [ 144.931868, 13.534948 ], [ 144.93181, 13.534935 ], [ 144.931836, 13.534904 ], [ 144.931933, 13.534848 ], [ 144.931991, 13.534823 ], [ 144.932011, 13.534779 ], [ 144.932083, 13.534729 ], [ 144.932089, 13.534679 ], [ 144.932077, 13.534641 ], [ 144.932019, 13.534621 ], [ 144.93198, 13.534596 ], [ 144.932007, 13.534533 ], [ 144.93204, 13.534489 ], [ 144.932098, 13.534458 ], [ 144.93215, 13.534439 ], [ 144.932176, 13.534383 ], [ 144.932177, 13.534313 ], [ 144.932164, 13.534275 ], [ 144.932126, 13.534231 ], [ 144.932113, 13.534186 ], [ 144.932114, 13.534117 ], [ 144.932134, 13.534047 ], [ 144.932153, 13.534022 ], [ 144.932212, 13.533991 ], [ 144.932212, 13.533941 ], [ 144.932173, 13.533921 ], [ 144.932161, 13.533877 ], [ 144.932103, 13.533832 ], [ 144.932052, 13.533775 ], [ 144.93204, 13.533718 ], [ 144.932014, 13.533674 ], [ 144.931963, 13.533655 ], [ 144.931898, 13.533679 ], [ 144.931846, 13.533679 ], [ 144.931808, 13.533628 ], [ 144.93177, 13.533546 ], [ 144.93177, 13.533508 ], [ 144.931768, 13.533498 ], [ 144.931758, 13.533444 ], [ 144.931765, 13.533407 ], [ 144.931785, 13.533369 ], [ 144.931759, 13.53335 ], [ 144.931695, 13.533324 ], [ 144.931604, 13.533298 ], [ 144.931527, 13.533253 ], [ 144.931463, 13.533208 ], [ 144.931412, 13.533151 ], [ 144.93141, 13.532999 ], [ 144.931385, 13.532974 ], [ 144.931339, 13.532974 ], [ 144.93134, 13.532923 ], [ 144.931327, 13.532885 ], [ 144.931308, 13.53286 ], [ 144.931269, 13.532885 ], [ 144.93123, 13.532929 ], [ 144.931166, 13.532884 ], [ 144.931147, 13.532802 ], [ 144.931122, 13.532744 ], [ 144.931103, 13.532669 ], [ 144.931129, 13.532612 ], [ 144.931168, 13.532587 ], [ 144.931182, 13.53253 ], [ 144.931169, 13.532473 ], [ 144.931118, 13.532454 ], [ 144.931086, 13.532435 ], [ 144.931112, 13.532378 ], [ 144.931093, 13.532302 ], [ 144.931042, 13.532264 ], [ 144.931017, 13.532232 ], [ 144.930991, 13.53215 ], [ 144.931012, 13.532049 ], [ 144.931025, 13.531998 ], [ 144.93107, 13.531986 ], [ 144.931096, 13.531955 ], [ 144.931129, 13.531905 ], [ 144.931123, 13.531841 ], [ 144.931111, 13.531778 ], [ 144.931053, 13.531765 ], [ 144.930995, 13.531771 ], [ 144.930911, 13.53177 ], [ 144.930834, 13.531757 ], [ 144.930801, 13.531731 ], [ 144.93077, 13.531693 ], [ 144.930783, 13.531655 ], [ 144.930822, 13.531631 ], [ 144.930854, 13.53158 ], [ 144.930797, 13.531555 ], [ 144.930758, 13.531567 ], [ 144.930745, 13.531516 ], [ 144.930713, 13.531478 ], [ 144.930649, 13.531452 ], [ 144.93063, 13.531402 ], [ 144.930682, 13.531364 ], [ 144.930727, 13.531352 ], [ 144.930689, 13.531301 ], [ 144.930677, 13.53125 ], [ 144.930651, 13.531219 ], [ 144.930594, 13.531214 ], [ 144.930571, 13.531191 ], [ 144.930547, 13.531152 ], [ 144.930538, 13.531104 ], [ 144.930538, 13.531056 ], [ 144.930524, 13.531018 ], [ 144.930475, 13.530998 ], [ 144.930456, 13.530974 ], [ 144.930446, 13.530941 ], [ 144.930452, 13.530903 ], [ 144.930437, 13.530864 ], [ 144.930418, 13.530859 ], [ 144.930369, 13.530859 ], [ 144.930345, 13.530835 ], [ 144.930321, 13.530787 ], [ 144.930311, 13.530753 ], [ 144.930297, 13.530739 ], [ 144.930243, 13.530714 ], [ 144.930243, 13.530695 ], [ 144.930263, 13.530648 ], [ 144.930269, 13.530605 ], [ 144.930206, 13.530518 ], [ 144.930167, 13.530503 ], [ 144.930128, 13.530508 ], [ 144.930089, 13.530484 ], [ 144.930016, 13.530464 ], [ 144.929909, 13.530406 ], [ 144.929855, 13.530333 ], [ 144.929812, 13.53029 ], [ 144.929797, 13.530261 ], [ 144.929758, 13.53027 ], [ 144.929739, 13.53028 ], [ 144.929724, 13.530261 ], [ 144.929715, 13.530136 ], [ 144.929736, 13.530055 ], [ 144.929736, 13.529998 ], [ 144.929744, 13.52998 ], [ 144.929756, 13.52995 ], [ 144.929816, 13.52985 ], [ 144.92987, 13.529831 ], [ 144.929894, 13.529798 ], [ 144.929909, 13.529755 ], [ 144.929915, 13.529703 ], [ 144.929915, 13.52965 ], [ 144.929891, 13.529631 ], [ 144.929847, 13.52963 ], [ 144.929808, 13.529587 ], [ 144.929789, 13.529553 ], [ 144.929755, 13.529505 ], [ 144.929721, 13.529467 ], [ 144.929687, 13.529419 ], [ 144.929649, 13.52939 ], [ 144.929649, 13.529351 ], [ 144.929625, 13.529313 ], [ 144.92964, 13.529275 ], [ 144.92965, 13.529232 ], [ 144.929567, 13.529159 ], [ 144.929563, 13.529112 ], [ 144.929539, 13.529083 ], [ 144.929495, 13.529058 ], [ 144.929442, 13.528991 ], [ 144.929427, 13.528953 ], [ 144.929408, 13.528952 ], [ 144.929398, 13.528971 ], [ 144.929364, 13.528981 ], [ 144.92933, 13.528957 ], [ 144.929296, 13.528861 ], [ 144.929292, 13.528813 ], [ 144.929307, 13.52877 ], [ 144.929331, 13.528784 ], [ 144.92938, 13.52879 ], [ 144.929405, 13.528761 ], [ 144.92939, 13.528742 ], [ 144.929415, 13.528709 ], [ 144.92943, 13.528661 ], [ 144.929421, 13.528613 ], [ 144.929401, 13.528579 ], [ 144.929382, 13.528555 ], [ 144.929294, 13.528559 ], [ 144.929187, 13.528549 ], [ 144.929167, 13.52853 ], [ 144.929163, 13.528506 ], [ 144.929192, 13.528477 ], [ 144.929197, 13.528434 ], [ 144.929193, 13.528405 ], [ 144.929164, 13.528377 ], [ 144.92912, 13.528352 ], [ 144.929115, 13.528346 ], [ 144.929091, 13.528319 ], [ 144.929028, 13.52828 ], [ 144.928984, 13.528198 ], [ 144.928955, 13.528184 ], [ 144.928941, 13.528121 ], [ 144.928902, 13.528102 ], [ 144.928844, 13.528082 ], [ 144.9288, 13.528091 ], [ 144.928791, 13.528107 ], [ 144.928746, 13.528115 ], [ 144.928687, 13.528105 ], [ 144.928663, 13.528066 ], [ 144.928663, 13.528019 ], [ 144.928639, 13.527956 ], [ 144.92864, 13.527899 ], [ 144.928631, 13.527856 ], [ 144.928611, 13.527817 ], [ 144.928572, 13.527783 ], [ 144.928543, 13.527802 ], [ 144.928494, 13.527783 ], [ 144.928461, 13.527682 ], [ 144.928486, 13.527591 ], [ 144.928526, 13.52751 ], [ 144.928585, 13.527477 ], [ 144.928629, 13.527468 ], [ 144.928634, 13.52743 ], [ 144.92863, 13.527377 ], [ 144.928552, 13.527358 ], [ 144.928517, 13.527372 ], [ 144.928488, 13.527343 ], [ 144.928479, 13.527285 ], [ 144.928509, 13.527223 ], [ 144.928529, 13.527195 ], [ 144.928556, 13.527166 ], [ 144.928575, 13.52721 ], [ 144.928634, 13.52722 ], [ 144.928673, 13.527182 ], [ 144.928669, 13.527067 ], [ 144.928592, 13.526961 ], [ 144.928592, 13.526928 ], [ 144.928568, 13.526913 ], [ 144.928534, 13.526903 ], [ 144.928529, 13.526851 ], [ 144.928515, 13.526784 ], [ 144.928511, 13.526702 ], [ 144.928477, 13.526697 ], [ 144.928442, 13.52674 ], [ 144.928417, 13.526746 ], [ 144.928405, 13.526732 ], [ 144.928398, 13.526691 ], [ 144.928403, 13.526642 ], [ 144.928372, 13.526611 ], [ 144.928361, 13.526589 ], [ 144.928403, 13.526566 ], [ 144.928423, 13.526525 ], [ 144.928431, 13.526498 ], [ 144.928462, 13.526468 ], [ 144.928428, 13.526403 ], [ 144.928428, 13.526369 ], [ 144.92839, 13.526312 ], [ 144.928395, 13.526195 ], [ 144.928388, 13.526119 ], [ 144.928353, 13.5261 ], [ 144.928291, 13.526084 ], [ 144.928252, 13.526102 ], [ 144.928221, 13.526102 ], [ 144.928202, 13.526083 ], [ 144.928253, 13.526049 ], [ 144.9283, 13.526027 ], [ 144.928335, 13.525986 ], [ 144.928327, 13.525955 ], [ 144.928347, 13.52591 ], [ 144.928347, 13.525872 ], [ 144.928313, 13.525853 ], [ 144.928274, 13.525837 ], [ 144.928228, 13.525845 ], [ 144.928169, 13.525874 ], [ 144.928138, 13.525878 ], [ 144.928076, 13.525862 ], [ 144.928053, 13.525847 ], [ 144.927988, 13.525835 ], [ 144.927945, 13.525816 ], [ 144.927934, 13.525789 ], [ 144.928015, 13.52574 ], [ 144.928047, 13.52571 ], [ 144.928082, 13.525661 ], [ 144.928098, 13.52562 ], [ 144.92809, 13.525589 ], [ 144.928017, 13.525574 ], [ 144.928006, 13.52554 ], [ 144.928072, 13.525525 ], [ 144.928083, 13.525502 ], [ 144.928068, 13.525476 ], [ 144.928065, 13.525415 ], [ 144.928027, 13.525346 ], [ 144.928023, 13.525301 ], [ 144.928051, 13.525259 ], [ 144.928121, 13.525215 ], [ 144.928121, 13.52518 ], [ 144.928102, 13.52515 ], [ 144.928118, 13.525105 ], [ 144.928106, 13.525078 ], [ 144.928048, 13.525074 ], [ 144.928002, 13.525066 ], [ 144.927959, 13.525046 ], [ 144.927948, 13.525012 ], [ 144.92796, 13.524974 ], [ 144.927984, 13.524925 ], [ 144.927974, 13.524909 ], [ 144.927941, 13.524895 ], [ 144.927911, 13.524868 ], [ 144.927884, 13.524837 ], [ 144.92788, 13.524792 ], [ 144.927861, 13.524746 ], [ 144.927761, 13.5247 ], [ 144.927699, 13.524684 ], [ 144.927649, 13.524646 ], [ 144.927646, 13.524612 ], [ 144.927696, 13.524578 ], [ 144.92772, 13.524548 ], [ 144.927735, 13.524522 ], [ 144.927786, 13.524488 ], [ 144.927794, 13.524458 ], [ 144.927795, 13.524397 ], [ 144.927752, 13.524351 ], [ 144.92778, 13.52431 ], [ 144.927796, 13.524242 ], [ 144.927793, 13.524192 ], [ 144.927766, 13.524169 ], [ 144.927731, 13.524173 ], [ 144.927618, 13.524168 ], [ 144.927568, 13.524145 ], [ 144.92755, 13.524069 ], [ 144.927527, 13.524042 ], [ 144.927504, 13.52397 ], [ 144.927473, 13.523924 ], [ 144.927431, 13.52389 ], [ 144.927412, 13.523821 ], [ 144.927413, 13.523768 ], [ 144.927409, 13.523715 ], [ 144.92741, 13.523712 ], [ 144.927433, 13.52367 ], [ 144.927453, 13.523644 ], [ 144.927368, 13.523594 ], [ 144.927368, 13.523529 ], [ 144.927376, 13.523484 ], [ 144.927377, 13.523454 ], [ 144.927327, 13.523415 ], [ 144.927283, 13.523294 ], [ 144.927257, 13.52324 ], [ 144.927253, 13.523161 ], [ 144.927207, 13.523096 ], [ 144.927189, 13.523035 ], [ 144.927112, 13.522883 ], [ 144.927113, 13.522837 ], [ 144.92709, 13.522754 ], [ 144.926957, 13.522544 ], [ 144.926845, 13.522452 ], [ 144.926814, 13.522509 ], [ 144.926771, 13.522505 ], [ 144.926721, 13.52247 ], [ 144.926702, 13.522436 ], [ 144.926691, 13.522398 ], [ 144.926726, 13.522349 ], [ 144.926738, 13.5223 ], [ 144.92668, 13.522258 ], [ 144.926681, 13.522212 ], [ 144.926697, 13.522148 ], [ 144.926697, 13.522076 ], [ 144.92669, 13.522049 ], [ 144.926624, 13.522045 ], [ 144.926605, 13.522033 ], [ 144.926578, 13.522007 ], [ 144.926536, 13.521931 ], [ 144.926525, 13.521881 ], [ 144.926498, 13.521835 ], [ 144.926459, 13.521809 ], [ 144.926382, 13.521804 ], [ 144.926359, 13.521793 ], [ 144.926316, 13.521762 ], [ 144.926309, 13.521735 ], [ 144.926255, 13.521716 ], [ 144.926211, 13.521705 ], [ 144.926192, 13.521703 ], [ 144.926192, 13.521666 ], [ 144.926149, 13.521565 ], [ 144.926076, 13.521517 ], [ 144.926057, 13.521464 ], [ 144.926033, 13.521416 ], [ 144.926048, 13.521373 ], [ 144.926044, 13.521339 ], [ 144.925981, 13.521272 ], [ 144.925942, 13.521195 ], [ 144.925879, 13.521128 ], [ 144.925816, 13.52107 ], [ 144.925651, 13.520992 ], [ 144.925534, 13.520962 ], [ 144.925451, 13.520928 ], [ 144.925417, 13.520875 ], [ 144.925389, 13.520822 ], [ 144.92533, 13.520774 ], [ 144.925014, 13.520657 ], [ 144.924936, 13.520613 ], [ 144.924917, 13.520484 ], [ 144.924854, 13.520426 ], [ 144.924796, 13.520358 ], [ 144.924747, 13.520348 ], [ 144.924674, 13.520386 ], [ 144.92462, 13.520386 ], [ 144.924547, 13.520347 ], [ 144.924543, 13.520275 ], [ 144.924544, 13.520175 ], [ 144.924525, 13.520131 ], [ 144.924452, 13.520069 ], [ 144.924388, 13.520044 ], [ 144.924335, 13.519996 ], [ 144.924247, 13.519995 ], [ 144.924184, 13.520004 ], [ 144.92413, 13.519956 ], [ 144.924111, 13.519898 ], [ 144.924077, 13.519879 ], [ 144.924029, 13.519826 ], [ 144.923941, 13.519787 ], [ 144.923863, 13.519801 ], [ 144.923819, 13.519829 ], [ 144.92378, 13.519819 ], [ 144.923751, 13.519766 ], [ 144.923707, 13.519718 ], [ 144.923634, 13.519674 ], [ 144.923571, 13.519597 ], [ 144.923543, 13.51953 ], [ 144.923509, 13.519487 ], [ 144.923436, 13.519438 ], [ 144.923338, 13.519419 ], [ 144.92325, 13.519413 ], [ 144.923197, 13.519346 ], [ 144.923163, 13.519321 ], [ 144.92308, 13.519278 ], [ 144.923022, 13.519253 ], [ 144.922948, 13.519281 ], [ 144.922895, 13.519286 ], [ 144.922778, 13.519246 ], [ 144.922671, 13.519203 ], [ 144.922598, 13.519145 ], [ 144.922476, 13.519124 ], [ 144.922381, 13.519095 ], [ 144.922396, 13.519019 ], [ 144.922343, 13.518966 ], [ 144.922176, 13.519055 ], [ 144.922044, 13.519044 ], [ 144.921932, 13.519015 ], [ 144.921824, 13.519004 ], [ 144.921712, 13.518956 ], [ 144.921625, 13.518907 ], [ 144.921557, 13.518849 ], [ 144.921459, 13.518872 ], [ 144.9214, 13.518919 ], [ 144.921312, 13.518919 ], [ 144.92117, 13.518937 ], [ 144.920945, 13.518944 ], [ 144.92072, 13.518938 ], [ 144.920677, 13.51889 ], [ 144.920623, 13.51887 ], [ 144.920525, 13.518879 ], [ 144.920398, 13.518911 ], [ 144.9203, 13.51891 ], [ 144.920135, 13.518856 ], [ 144.919886, 13.518811 ], [ 144.919793, 13.51881 ], [ 144.919717, 13.518781 ], [ 144.919606, 13.518675 ], [ 144.919475, 13.518578 ], [ 144.919388, 13.518477 ], [ 144.919237, 13.518375 ], [ 144.91913, 13.518279 ], [ 144.918999, 13.518197 ], [ 144.918917, 13.518134 ], [ 144.9188, 13.518061 ], [ 144.918669, 13.517998 ], [ 144.918552, 13.51793 ], [ 144.91827, 13.517731 ], [ 144.918212, 13.517683 ], [ 144.918085, 13.517629 ], [ 144.918003, 13.517562 ], [ 144.917857, 13.517527 ], [ 144.917744, 13.517512 ], [ 144.917677, 13.51743 ], [ 144.917609, 13.517324 ], [ 144.917497, 13.517328 ], [ 144.917394, 13.517365 ], [ 144.917271, 13.517398 ], [ 144.917193, 13.517373 ], [ 144.917125, 13.51732 ], [ 144.917111, 13.517263 ], [ 144.917043, 13.517229 ], [ 144.91696, 13.517257 ], [ 144.916857, 13.517256 ], [ 144.916799, 13.517212 ], [ 144.91675, 13.51715 ], [ 144.916741, 13.517087 ], [ 144.916669, 13.516996 ], [ 144.916672, 13.516939 ], [ 144.916642, 13.516929 ], [ 144.916588, 13.516947 ], [ 144.916554, 13.516947 ], [ 144.916525, 13.516933 ], [ 144.916506, 13.516894 ], [ 144.916408, 13.516889 ], [ 144.916329, 13.516941 ], [ 144.91629, 13.517022 ], [ 144.916279, 13.517093 ], [ 144.916182, 13.517083 ], [ 144.916089, 13.517068 ], [ 144.915943, 13.516942 ], [ 144.915919, 13.51688 ], [ 144.915886, 13.516836 ], [ 144.915812, 13.516865 ], [ 144.915714, 13.516892 ], [ 144.915641, 13.516892 ], [ 144.915617, 13.516849 ], [ 144.915559, 13.5168 ], [ 144.915485, 13.516804 ], [ 144.915407, 13.516785 ], [ 144.915339, 13.516698 ], [ 144.915316, 13.516607 ], [ 144.915346, 13.51654 ], [ 144.915322, 13.516454 ], [ 144.915295, 13.516248 ], [ 144.915236, 13.516224 ], [ 144.915143, 13.516261 ], [ 144.915084, 13.516309 ], [ 144.915005, 13.516341 ], [ 144.914952, 13.516336 ], [ 144.914928, 13.516279 ], [ 144.914909, 13.516197 ], [ 144.914846, 13.516115 ], [ 144.914778, 13.516072 ], [ 144.914685, 13.516123 ], [ 144.914592, 13.516137 ], [ 144.914523, 13.516141 ], [ 144.914479, 13.51617 ], [ 144.914416, 13.516121 ], [ 144.914387, 13.516073 ], [ 144.914285, 13.516063 ], [ 144.914231, 13.516053 ], [ 144.914173, 13.515947 ], [ 144.914111, 13.515808 ], [ 144.914116, 13.515751 ], [ 144.914131, 13.515698 ], [ 144.914049, 13.515664 ], [ 144.91399, 13.51563 ], [ 144.913859, 13.515571 ], [ 144.913741, 13.515575 ], [ 144.913668, 13.51557 ], [ 144.913654, 13.515481 ], [ 144.913598, 13.515455 ], [ 144.91353, 13.51548 ], [ 144.913484, 13.515546 ], [ 144.913444, 13.515517 ], [ 144.91338, 13.515507 ], [ 144.913317, 13.515487 ], [ 144.913224, 13.515481 ], [ 144.913165, 13.515505 ], [ 144.913082, 13.515504 ], [ 144.913024, 13.515499 ], [ 144.913009, 13.515498 ], [ 144.912916, 13.515498 ], [ 144.912877, 13.515455 ], [ 144.91279, 13.515401 ], [ 144.912707, 13.515343 ], [ 144.912649, 13.515295 ], [ 144.912572, 13.515184 ], [ 144.912469, 13.51515 ], [ 144.912372, 13.515154 ], [ 144.912182, 13.5151 ], [ 144.912079, 13.515104 ], [ 144.911991, 13.515132 ], [ 144.911897, 13.515183 ], [ 144.911731, 13.515254 ], [ 144.911677, 13.515287 ], [ 144.911637, 13.515339 ], [ 144.911603, 13.515372 ], [ 144.911573, 13.51541 ], [ 144.911544, 13.51541 ], [ 144.911514, 13.515429 ], [ 144.911494, 13.515467 ], [ 144.911489, 13.515524 ], [ 144.911469, 13.515567 ], [ 144.911434, 13.515591 ], [ 144.91139, 13.51559 ], [ 144.911351, 13.515581 ], [ 144.911332, 13.515585 ], [ 144.911288, 13.515614 ], [ 144.911277, 13.515656 ], [ 144.911243, 13.515723 ], [ 144.911199, 13.515704 ], [ 144.91114, 13.515703 ], [ 144.911096, 13.515679 ], [ 144.91095, 13.515668 ], [ 144.910911, 13.515634 ], [ 144.910863, 13.515605 ], [ 144.910794, 13.51559 ], [ 144.91076, 13.515561 ], [ 144.910741, 13.515528 ], [ 144.910717, 13.515513 ], [ 144.910639, 13.515508 ], [ 144.910595, 13.515483 ], [ 144.910546, 13.515464 ], [ 144.910487, 13.515497 ], [ 144.910428, 13.515506 ], [ 144.910302, 13.515462 ], [ 144.910273, 13.515433 ], [ 144.910244, 13.515394 ], [ 144.910219, 13.515389 ], [ 144.910185, 13.515399 ], [ 144.910131, 13.515374 ], [ 144.910087, 13.515403 ], [ 144.910024, 13.515412 ], [ 144.909955, 13.515397 ], [ 144.909921, 13.515373 ], [ 144.909936, 13.51533 ], [ 144.909932, 13.515291 ], [ 144.909917, 13.515253 ], [ 144.909874, 13.515205 ], [ 144.909811, 13.51519 ], [ 144.909722, 13.515251 ], [ 144.909679, 13.515179 ], [ 144.90966, 13.515131 ], [ 144.909626, 13.515098 ], [ 144.909557, 13.515083 ], [ 144.909489, 13.515101 ], [ 144.909454, 13.515149 ], [ 144.90942, 13.515187 ], [ 144.90939, 13.515172 ], [ 144.909322, 13.515128 ], [ 144.909259, 13.515099 ], [ 144.909142, 13.515027 ], [ 144.909079, 13.514978 ], [ 144.909001, 13.514973 ], [ 144.908952, 13.515001 ], [ 144.908878, 13.515034 ], [ 144.908844, 13.515077 ], [ 144.908809, 13.515096 ], [ 144.908751, 13.515109 ], [ 144.908717, 13.51508 ], [ 144.908649, 13.514965 ], [ 144.908611, 13.514912 ], [ 144.908557, 13.514902 ], [ 144.908503, 13.514921 ], [ 144.908469, 13.514887 ], [ 144.908445, 13.514829 ], [ 144.908401, 13.51482 ], [ 144.908362, 13.514819 ], [ 144.908314, 13.514781 ], [ 144.908265, 13.51478 ], [ 144.908235, 13.514823 ], [ 144.908201, 13.514847 ], [ 144.908127, 13.514851 ], [ 144.908054, 13.514869 ], [ 144.907996, 13.514826 ], [ 144.907976, 13.514787 ], [ 144.907947, 13.514763 ], [ 144.907864, 13.514796 ], [ 144.907791, 13.51481 ], [ 144.907752, 13.51479 ], [ 144.907728, 13.514747 ], [ 144.907723, 13.514718 ], [ 144.907728, 13.51468 ], [ 144.907704, 13.514651 ], [ 144.907655, 13.514641 ], [ 144.907617, 13.514564 ], [ 144.907583, 13.514526 ], [ 144.907505, 13.514501 ], [ 144.907471, 13.514477 ], [ 144.907432, 13.514415 ], [ 144.907413, 13.514352 ], [ 144.907409, 13.5143 ], [ 144.907414, 13.514242 ], [ 144.907405, 13.514194 ], [ 144.907371, 13.514184 ], [ 144.907327, 13.514189 ], [ 144.907297, 13.514208 ], [ 144.907239, 13.514222 ], [ 144.90716, 13.514226 ], [ 144.907107, 13.514221 ], [ 144.907039, 13.514182 ], [ 144.90698, 13.514138 ], [ 144.906932, 13.514071 ], [ 144.906821, 13.513893 ], [ 144.906773, 13.513864 ], [ 144.906714, 13.513849 ], [ 144.906661, 13.51381 ], [ 144.906597, 13.513781 ], [ 144.906524, 13.513785 ], [ 144.906451, 13.513746 ], [ 144.906407, 13.513698 ], [ 144.906292, 13.513501 ], [ 144.906263, 13.513444 ], [ 144.906176, 13.513381 ], [ 144.906112, 13.513342 ], [ 144.90602, 13.513308 ], [ 144.90585, 13.513225 ], [ 144.905762, 13.51321 ], [ 144.905698, 13.513233 ], [ 144.905654, 13.513262 ], [ 144.90558, 13.51329 ], [ 144.905507, 13.513327 ], [ 144.905482, 13.513399 ], [ 144.905486, 13.513428 ], [ 144.905442, 13.513456 ], [ 144.905354, 13.513455 ], [ 144.905236, 13.513507 ], [ 144.905187, 13.513525 ], [ 144.905158, 13.513506 ], [ 144.905139, 13.513463 ], [ 144.905139, 13.513405 ], [ 144.90512, 13.513362 ], [ 144.905111, 13.513319 ], [ 144.905111, 13.513257 ], [ 144.905074, 13.513089 ], [ 144.905001, 13.51307 ], [ 144.904951, 13.513098 ], [ 144.904912, 13.513131 ], [ 144.904868, 13.513126 ], [ 144.904829, 13.51313 ], [ 144.904795, 13.513159 ], [ 144.904814, 13.513211 ], [ 144.904794, 13.513235 ], [ 144.904706, 13.513239 ], [ 144.904672, 13.513215 ], [ 144.904623, 13.513234 ], [ 144.904594, 13.513229 ], [ 144.904506, 13.513223 ], [ 144.904433, 13.513165 ], [ 144.90432, 13.513183 ], [ 144.904276, 13.513197 ], [ 144.904222, 13.513192 ], [ 144.904179, 13.513134 ], [ 144.904111, 13.513124 ], [ 144.904052, 13.513148 ], [ 144.903983, 13.513147 ], [ 144.9039, 13.513189 ], [ 144.903851, 13.513232 ], [ 144.903807, 13.513222 ], [ 144.903749, 13.51316 ], [ 144.9037, 13.513135 ], [ 144.903646, 13.513116 ], [ 144.903622, 13.513087 ], [ 144.903623, 13.513039 ], [ 144.903589, 13.512991 ], [ 144.903526, 13.512957 ], [ 144.903389, 13.512941 ], [ 144.903335, 13.512936 ], [ 144.903281, 13.51294 ], [ 144.903232, 13.512964 ], [ 144.903169, 13.512987 ], [ 144.903129, 13.513025 ], [ 144.903129, 13.513068 ], [ 144.903104, 13.513097 ], [ 144.902943, 13.513081 ], [ 144.902894, 13.513047 ], [ 144.902836, 13.513023 ], [ 144.902753, 13.513022 ], [ 144.902704, 13.512979 ], [ 144.90268, 13.51295 ], [ 144.902592, 13.512935 ], [ 144.902554, 13.512887 ], [ 144.902564, 13.512791 ], [ 144.902555, 13.51269 ], [ 144.902524, 13.512623 ], [ 144.902466, 13.512565 ], [ 144.902354, 13.512526 ], [ 144.902261, 13.512501 ], [ 144.902154, 13.512505 ], [ 144.902012, 13.512581 ], [ 144.901943, 13.512604 ], [ 144.901836, 13.512541 ], [ 144.901856, 13.512493 ], [ 144.9019, 13.512441 ], [ 144.901881, 13.512412 ], [ 144.901793, 13.512411 ], [ 144.901705, 13.512377 ], [ 144.901637, 13.512377 ], [ 144.901559, 13.512347 ], [ 144.901511, 13.512299 ], [ 144.90134, 13.512221 ], [ 144.901267, 13.512182 ], [ 144.901204, 13.512139 ], [ 144.901156, 13.512095 ], [ 144.901083, 13.512056 ], [ 144.901039, 13.512042 ], [ 144.900966, 13.511989 ], [ 144.900937, 13.511936 ], [ 144.900938, 13.511878 ], [ 144.900933, 13.511807 ], [ 144.900919, 13.511735 ], [ 144.900861, 13.511686 ], [ 144.900817, 13.511657 ], [ 144.900803, 13.511614 ], [ 144.900735, 13.511571 ], [ 144.900486, 13.511525 ], [ 144.900442, 13.511549 ], [ 144.900388, 13.511563 ], [ 144.90032, 13.511553 ], [ 144.900301, 13.511524 ], [ 144.900345, 13.511453 ], [ 144.900365, 13.511381 ], [ 144.900356, 13.511328 ], [ 144.900308, 13.511285 ], [ 144.900229, 13.511289 ], [ 144.900132, 13.511259 ], [ 144.900098, 13.511216 ], [ 144.900044, 13.511206 ], [ 144.899981, 13.511158 ], [ 144.899889, 13.511095 ], [ 144.899865, 13.511075 ], [ 144.899801, 13.511046 ], [ 144.899811, 13.511013 ], [ 144.899753, 13.510941 ], [ 144.899764, 13.510902 ], [ 144.899793, 13.510841 ], [ 144.899784, 13.510788 ], [ 144.899755, 13.51073 ], [ 144.899687, 13.510696 ], [ 144.899629, 13.510677 ], [ 144.89955, 13.510676 ], [ 144.899487, 13.510647 ], [ 144.899471, 13.510594 ], [ 144.899481, 13.510551 ], [ 144.899437, 13.510508 ], [ 144.899296, 13.510492 ], [ 144.899252, 13.510477 ], [ 144.899257, 13.51043 ], [ 144.899253, 13.510367 ], [ 144.899184, 13.510348 ], [ 144.899175, 13.510309 ], [ 144.899132, 13.510232 ], [ 144.899093, 13.510189 ], [ 144.899, 13.510179 ], [ 144.898941, 13.510164 ], [ 144.898954, 13.510151 ], [ 144.898986, 13.510136 ], [ 144.899031, 13.51004 ], [ 144.899011, 13.510016 ], [ 144.898958, 13.510021 ], [ 144.898904, 13.510006 ], [ 144.898772, 13.509981 ], [ 144.898719, 13.509956 ], [ 144.898699, 13.509918 ], [ 144.898636, 13.509879 ], [ 144.898602, 13.509879 ], [ 144.898583, 13.509841 ], [ 144.898554, 13.509816 ], [ 144.898466, 13.50982 ], [ 144.898431, 13.509863 ], [ 144.898415, 13.509872 ], [ 144.898387, 13.509853 ], [ 144.898353, 13.509819 ], [ 144.898261, 13.509814 ], [ 144.898202, 13.509823 ], [ 144.898162, 13.509861 ], [ 144.898143, 13.509851 ], [ 144.898079, 13.509851 ], [ 144.898016, 13.509826 ], [ 144.897958, 13.509787 ], [ 144.897943, 13.509763 ], [ 144.897934, 13.509716 ], [ 144.8979, 13.509672 ], [ 144.897876, 13.509662 ], [ 144.897861, 13.509686 ], [ 144.897851, 13.509734 ], [ 144.897812, 13.509743 ], [ 144.897802, 13.509719 ], [ 144.897719, 13.509666 ], [ 144.897661, 13.509656 ], [ 144.897617, 13.509665 ], [ 144.897582, 13.509703 ], [ 144.897528, 13.509703 ], [ 144.897495, 13.509654 ], [ 144.89746, 13.509654 ], [ 144.897461, 13.509625 ], [ 144.897495, 13.509602 ], [ 144.897544, 13.509578 ], [ 144.897564, 13.509516 ], [ 144.897575, 13.50944 ], [ 144.897551, 13.509397 ], [ 144.897497, 13.509382 ], [ 144.897463, 13.509353 ], [ 144.89742, 13.5093 ], [ 144.89741, 13.509276 ], [ 144.897435, 13.509224 ], [ 144.897445, 13.509176 ], [ 144.897406, 13.509166 ], [ 144.897367, 13.509204 ], [ 144.897333, 13.509184 ], [ 144.897259, 13.509179 ], [ 144.897191, 13.509188 ], [ 144.897137, 13.509149 ], [ 144.897133, 13.509111 ], [ 144.897075, 13.509072 ], [ 144.897011, 13.509048 ], [ 144.897051, 13.509005 ], [ 144.897017, 13.508933 ], [ 144.896949, 13.508904 ], [ 144.89692, 13.508861 ], [ 144.896925, 13.508813 ], [ 144.896867, 13.508755 ], [ 144.896911, 13.508751 ], [ 144.896921, 13.508722 ], [ 144.896897, 13.508679 ], [ 144.89678, 13.508635 ], [ 144.896727, 13.508591 ], [ 144.896654, 13.508552 ], [ 144.896567, 13.508485 ], [ 144.896562, 13.508432 ], [ 144.896538, 13.508384 ], [ 144.89647, 13.508316 ], [ 144.896456, 13.508283 ], [ 144.896457, 13.508221 ], [ 144.896477, 13.508159 ], [ 144.896492, 13.508054 ], [ 144.896473, 13.507982 ], [ 144.89643, 13.507929 ], [ 144.896391, 13.507895 ], [ 144.896406, 13.507843 ], [ 144.896455, 13.507786 ], [ 144.896485, 13.507738 ], [ 144.896496, 13.507652 ], [ 144.896477, 13.507551 ], [ 144.896438, 13.507503 ], [ 144.896399, 13.507484 ], [ 144.896385, 13.507445 ], [ 144.896371, 13.507388 ], [ 144.896367, 13.507331 ], [ 144.896313, 13.507277 ], [ 144.896245, 13.507239 ], [ 144.896177, 13.507214 ], [ 144.896128, 13.507185 ], [ 144.896114, 13.507132 ], [ 144.89611, 13.507075 ], [ 144.896047, 13.507022 ], [ 144.895974, 13.506988 ], [ 144.89592, 13.506997 ], [ 144.895827, 13.506996 ], [ 144.895778, 13.506967 ], [ 144.895735, 13.506876 ], [ 144.895682, 13.506875 ], [ 144.895637, 13.506884 ], [ 144.895559, 13.506889 ], [ 144.895515, 13.506879 ], [ 144.895486, 13.506835 ], [ 144.895413, 13.50683 ], [ 144.895345, 13.506834 ], [ 144.895305, 13.506877 ], [ 144.89528, 13.50692 ], [ 144.895251, 13.506934 ], [ 144.89525, 13.506991 ], [ 144.89505, 13.506999 ], [ 144.894928, 13.506988 ], [ 144.894869, 13.506998 ], [ 144.894781, 13.507078 ], [ 144.894677, 13.50713 ], [ 144.894594, 13.507158 ], [ 144.894526, 13.507167 ], [ 144.894423, 13.507166 ], [ 144.89433, 13.50716 ], [ 144.894213, 13.507164 ], [ 144.894135, 13.50712 ], [ 144.894092, 13.507058 ], [ 144.894038, 13.507014 ], [ 144.89395, 13.507057 ], [ 144.893876, 13.50708 ], [ 144.893769, 13.50705 ], [ 144.893653, 13.506954 ], [ 144.893516, 13.506953 ], [ 144.893474, 13.506948 ], [ 144.893402, 13.506899 ], [ 144.893358, 13.506899 ], [ 144.893294, 13.506917 ], [ 144.89307, 13.506805 ], [ 144.893022, 13.506757 ], [ 144.892953, 13.506728 ], [ 144.89289, 13.506689 ], [ 144.892817, 13.506669 ], [ 144.892744, 13.506683 ], [ 144.89268, 13.506687 ], [ 144.892646, 13.506649 ], [ 144.892554, 13.506619 ], [ 144.8925, 13.506571 ], [ 144.892432, 13.506518 ], [ 144.892384, 13.506494 ], [ 144.892291, 13.506479 ], [ 144.892213, 13.506497 ], [ 144.89214, 13.506477 ], [ 144.892062, 13.506438 ], [ 144.891984, 13.50639 ], [ 144.891882, 13.506303 ], [ 144.891809, 13.506255 ], [ 144.891829, 13.506197 ], [ 144.89183, 13.50613 ], [ 144.891801, 13.506063 ], [ 144.891709, 13.506005 ], [ 144.891646, 13.505947 ], [ 144.891686, 13.505857 ], [ 144.891667, 13.505775 ], [ 144.891594, 13.505722 ], [ 144.89158, 13.505636 ], [ 144.891527, 13.505568 ], [ 144.891465, 13.505381 ], [ 144.891412, 13.505304 ], [ 144.891383, 13.505251 ], [ 144.89135, 13.505151 ], [ 144.891351, 13.504993 ], [ 144.891362, 13.504926 ], [ 144.891323, 13.504878 ], [ 144.891269, 13.504854 ], [ 144.891246, 13.504782 ], [ 144.891203, 13.504614 ], [ 144.891148, 13.504465 ], [ 144.89115, 13.504288 ], [ 144.891165, 13.504198 ], [ 144.891205, 13.504145 ], [ 144.891205, 13.504078 ], [ 144.891191, 13.504016 ], [ 144.891201, 13.503959 ], [ 144.891251, 13.503921 ], [ 144.891267, 13.503782 ], [ 144.891262, 13.503711 ], [ 144.891287, 13.503625 ], [ 144.891341, 13.503606 ], [ 144.891381, 13.50353 ], [ 144.891391, 13.503463 ], [ 144.891367, 13.503429 ], [ 144.891304, 13.503443 ], [ 144.891245, 13.503409 ], [ 144.891212, 13.503342 ], [ 144.891183, 13.503232 ], [ 144.891184, 13.503136 ], [ 144.891194, 13.503084 ], [ 144.891268, 13.503046 ], [ 144.891322, 13.502999 ], [ 144.891303, 13.502941 ], [ 144.891215, 13.502921 ], [ 144.891157, 13.502878 ], [ 144.891168, 13.502801 ], [ 144.891193, 13.502739 ], [ 144.891179, 13.502653 ], [ 144.891179, 13.502586 ], [ 144.891204, 13.502534 ], [ 144.891187, 13.502304 ], [ 144.891163, 13.502213 ], [ 144.891125, 13.502198 ], [ 144.891159, 13.502165 ], [ 144.891198, 13.502146 ], [ 144.891198, 13.502108 ], [ 144.891154, 13.502074 ], [ 144.89114, 13.502031 ], [ 144.891155, 13.501979 ], [ 144.891204, 13.50195 ], [ 144.891239, 13.501951 ], [ 144.891273, 13.501894 ], [ 144.891293, 13.501841 ], [ 144.891304, 13.501774 ], [ 144.891309, 13.501717 ], [ 144.891359, 13.501622 ], [ 144.891359, 13.501555 ], [ 144.891292, 13.50143 ], [ 144.891254, 13.501367 ], [ 144.891195, 13.501324 ], [ 144.891142, 13.501295 ], [ 144.891083, 13.501275 ], [ 144.89104, 13.501251 ], [ 144.891015, 13.501212 ], [ 144.890996, 13.501155 ], [ 144.891036, 13.501141 ], [ 144.891085, 13.501103 ], [ 144.89109, 13.501065 ], [ 144.89113, 13.501003 ], [ 144.891198, 13.500975 ], [ 144.891243, 13.500937 ], [ 144.891263, 13.50087 ], [ 144.891268, 13.500803 ], [ 144.891284, 13.500727 ], [ 144.89126, 13.500679 ], [ 144.891167, 13.500621 ], [ 144.891119, 13.500587 ], [ 144.89108, 13.500539 ], [ 144.891046, 13.500486 ], [ 144.891027, 13.500443 ], [ 144.891028, 13.500395 ], [ 144.891057, 13.500362 ], [ 144.891086, 13.500386 ], [ 144.891213, 13.500363 ], [ 144.891287, 13.50033 ], [ 144.891307, 13.500301 ], [ 144.891312, 13.500268 ], [ 144.891288, 13.50022 ], [ 144.89125, 13.500124 ], [ 144.891228, 13.500085 ], [ 144.891216, 13.500071 ], [ 144.891256, 13.5 ], [ 144.891291, 13.499909 ], [ 144.891307, 13.49978 ], [ 144.891297, 13.499708 ], [ 144.891293, 13.499637 ], [ 144.891299, 13.499584 ], [ 144.891314, 13.499508 ], [ 144.891305, 13.499441 ], [ 144.891334, 13.499388 ], [ 144.891389, 13.499346 ], [ 144.891492, 13.499232 ], [ 144.891616, 13.499032 ], [ 144.891691, 13.498856 ], [ 144.891795, 13.498699 ], [ 144.891959, 13.498342 ], [ 144.891994, 13.498275 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "980100", "GEOID10": "66010980100", "NAME10": "9801", "NAMELSAD10": "Census Tract 9801", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 16074975, "AWATER10": 456443, "INTPTLAT10": "+13.3782433", "INTPTLON10": "+144.6973957" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.692162, 13.394141 ], [ 144.69407, 13.394078 ], [ 144.694836, 13.394053 ], [ 144.696248, 13.394048 ], [ 144.700484, 13.394034 ], [ 144.701897, 13.39403 ], [ 144.702363, 13.394031 ], [ 144.703764, 13.394034 ], [ 144.704231, 13.394035 ], [ 144.706682, 13.394017 ], [ 144.70867, 13.394004 ], [ 144.708683, 13.388635 ], [ 144.708685, 13.38803 ], [ 144.710531, 13.388021 ], [ 144.711232, 13.388017 ], [ 144.712796, 13.38801 ], [ 144.713335, 13.388013 ], [ 144.714037, 13.388018 ], [ 144.7153, 13.387829 ], [ 144.719092, 13.387263 ], [ 144.720356, 13.387075 ], [ 144.720414, 13.387127 ], [ 144.72054, 13.38724 ], [ 144.720597, 13.38727 ], [ 144.720666, 13.387307 ], [ 144.72071, 13.38733 ], [ 144.72084, 13.3874 ], [ 144.720844, 13.3874 ], [ 144.720895, 13.387403 ], [ 144.721072, 13.387617 ], [ 144.721604, 13.388262 ], [ 144.721782, 13.388477 ], [ 144.721914, 13.388354 ], [ 144.72193, 13.38834 ], [ 144.72204, 13.3882 ], [ 144.72214, 13.38804 ], [ 144.722194, 13.387898 ], [ 144.72226, 13.38773 ], [ 144.722165, 13.381211 ], [ 144.722147, 13.374626 ], [ 144.722131, 13.368083 ], [ 144.72212, 13.364095 ], [ 144.722104, 13.357588 ], [ 144.721915, 13.357562 ], [ 144.721488, 13.357351 ], [ 144.721275, 13.357427 ], [ 144.720743, 13.358757 ], [ 144.720275, 13.358972 ], [ 144.719851, 13.358544 ], [ 144.719679, 13.35854 ], [ 144.719426, 13.358437 ], [ 144.718285, 13.357972 ], [ 144.71814, 13.358038 ], [ 144.717837, 13.357888 ], [ 144.717056, 13.358298 ], [ 144.716935, 13.358518 ], [ 144.716556, 13.358815 ], [ 144.716276, 13.358797 ], [ 144.715917, 13.358619 ], [ 144.715346, 13.358093 ], [ 144.714903, 13.358032 ], [ 144.714621, 13.357994 ], [ 144.71412, 13.3583 ], [ 144.713891, 13.358441 ], [ 144.713437, 13.358329 ], [ 144.713094, 13.358171 ], [ 144.712457, 13.357877 ], [ 144.712029, 13.357839 ], [ 144.711652, 13.358343 ], [ 144.71124, 13.358538 ], [ 144.711057, 13.358589 ], [ 144.708269, 13.358446 ], [ 144.706597, 13.357982 ], [ 144.706574, 13.357073 ], [ 144.706516, 13.353494 ], [ 144.705501, 13.353199 ], [ 144.703613, 13.351848 ], [ 144.702216, 13.352441 ], [ 144.701818, 13.352868 ], [ 144.700628, 13.354152 ], [ 144.700231, 13.354581 ], [ 144.700128, 13.354693 ], [ 144.699822, 13.355031 ], [ 144.69972, 13.355144 ], [ 144.699667, 13.355199 ], [ 144.699558, 13.355288 ], [ 144.699057, 13.355703 ], [ 144.698891, 13.355842 ], [ 144.698836, 13.355885 ], [ 144.698673, 13.356014 ], [ 144.698619, 13.356058 ], [ 144.698531, 13.356128 ], [ 144.698269, 13.356342 ], [ 144.698182, 13.356413 ], [ 144.697978, 13.356605 ], [ 144.697367, 13.357183 ], [ 144.697164, 13.357376 ], [ 144.69704, 13.357481 ], [ 144.69667, 13.357796 ], [ 144.696547, 13.357902 ], [ 144.695285, 13.359038 ], [ 144.692879, 13.361208 ], [ 144.691399, 13.362326 ], [ 144.690045, 13.36335 ], [ 144.689118, 13.364065 ], [ 144.686339, 13.366211 ], [ 144.685413, 13.366927 ], [ 144.685205, 13.367095 ], [ 144.684898, 13.367391 ], [ 144.683404, 13.36884 ], [ 144.682907, 13.369324 ], [ 144.682748, 13.369483 ], [ 144.682329, 13.369906 ], [ 144.682274, 13.369961 ], [ 144.682116, 13.370121 ], [ 144.68186, 13.370351 ], [ 144.681095, 13.371043 ], [ 144.68084, 13.371274 ], [ 144.680562, 13.37152 ], [ 144.67973, 13.372261 ], [ 144.679453, 13.372508 ], [ 144.678387, 13.373463 ], [ 144.67519, 13.376331 ], [ 144.674996, 13.376506 ], [ 144.67411, 13.37727 ], [ 144.673441, 13.377879 ], [ 144.672947, 13.378298 ], [ 144.672806, 13.378418 ], [ 144.669536, 13.381198 ], [ 144.669321, 13.381452 ], [ 144.670275, 13.38174 ], [ 144.671075, 13.382448 ], [ 144.673371, 13.383256 ], [ 144.673797, 13.383044 ], [ 144.674726, 13.383534 ], [ 144.675191, 13.384456 ], [ 144.674991, 13.384854 ], [ 144.675012, 13.384872 ], [ 144.676882, 13.386549 ], [ 144.676889, 13.38667 ], [ 144.676913, 13.387033 ], [ 144.676921, 13.387154 ], [ 144.67716, 13.38717 ], [ 144.677283, 13.387157 ], [ 144.67765, 13.38712 ], [ 144.67819, 13.38702 ], [ 144.678358, 13.386983 ], [ 144.6786, 13.38693 ], [ 144.678712, 13.3869 ], [ 144.6792, 13.38677 ], [ 144.67981, 13.38659 ], [ 144.680035, 13.38656 ], [ 144.68004, 13.38656 ], [ 144.68021, 13.38656 ], [ 144.68038, 13.3866 ], [ 144.68067, 13.38674 ], [ 144.68137, 13.38716 ], [ 144.68157, 13.38723 ], [ 144.68174, 13.38726 ], [ 144.68195, 13.3872 ], [ 144.682207, 13.387132 ], [ 144.68252, 13.38705 ], [ 144.68325, 13.38687 ], [ 144.6839, 13.3867 ], [ 144.68417, 13.38663 ], [ 144.68462, 13.386508 ], [ 144.683894, 13.388418 ], [ 144.683809, 13.388698 ], [ 144.685192, 13.389951 ], [ 144.685609, 13.391462 ], [ 144.688049, 13.391096 ], [ 144.68797, 13.39092 ], [ 144.68777, 13.39044 ], [ 144.68757, 13.39001 ], [ 144.687493, 13.389853 ], [ 144.68726, 13.38937 ], [ 144.687188, 13.389202 ], [ 144.68687, 13.38845 ], [ 144.686939, 13.388229 ], [ 144.68658, 13.387627 ], [ 144.688363, 13.386152 ], [ 144.689055, 13.387713 ], [ 144.688937, 13.388386 ], [ 144.689173, 13.390463 ], [ 144.689578, 13.391315 ], [ 144.691705, 13.393586 ], [ 144.691971, 13.393844 ], [ 144.692162, 13.394141 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "980200", "GEOID10": "66010980200", "NAME10": "9802", "NAMELSAD10": "Census Tract 9802", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 13773573, "AWATER10": 446560, "INTPTLAT10": "+13.3462176", "INTPTLON10": "+144.6791968" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.687846, 13.336481 ], [ 144.681059, 13.333186 ], [ 144.673384, 13.329865 ], [ 144.672413, 13.329444 ], [ 144.670793, 13.329962 ], [ 144.670042, 13.330199 ], [ 144.668889, 13.330571 ], [ 144.66797, 13.330865 ], [ 144.666527, 13.331326 ], [ 144.662488, 13.337116 ], [ 144.661435, 13.338627 ], [ 144.663509, 13.340232 ], [ 144.666729, 13.338186 ], [ 144.669595, 13.343983 ], [ 144.666186, 13.348224 ], [ 144.666349, 13.35459 ], [ 144.666383, 13.355922 ], [ 144.666568, 13.363148 ], [ 144.666576, 13.36344 ], [ 144.66658, 13.363727 ], [ 144.666594, 13.364589 ], [ 144.666599, 13.364877 ], [ 144.666605, 13.365464 ], [ 144.666623, 13.367227 ], [ 144.666629, 13.367815 ], [ 144.66668, 13.370034 ], [ 144.666685, 13.370363 ], [ 144.666704, 13.371602 ], [ 144.667332, 13.372617 ], [ 144.667537, 13.373099 ], [ 144.667689, 13.373476 ], [ 144.667533, 13.374158 ], [ 144.667404, 13.374612 ], [ 144.667101, 13.375 ], [ 144.666812, 13.375583 ], [ 144.666572, 13.376694 ], [ 144.666707, 13.377516 ], [ 144.66712, 13.380032 ], [ 144.667585, 13.380354 ], [ 144.668457, 13.381055 ], [ 144.668805, 13.381297 ], [ 144.66919, 13.381413 ], [ 144.669321, 13.381452 ], [ 144.669536, 13.381198 ], [ 144.672806, 13.378418 ], [ 144.672947, 13.378298 ], [ 144.673441, 13.377879 ], [ 144.67411, 13.37727 ], [ 144.674996, 13.376506 ], [ 144.67519, 13.376331 ], [ 144.678387, 13.373463 ], [ 144.679453, 13.372508 ], [ 144.67973, 13.372261 ], [ 144.680562, 13.37152 ], [ 144.68084, 13.371274 ], [ 144.681095, 13.371043 ], [ 144.68186, 13.370351 ], [ 144.682116, 13.370121 ], [ 144.682274, 13.369961 ], [ 144.682329, 13.369906 ], [ 144.682748, 13.369483 ], [ 144.682907, 13.369324 ], [ 144.683404, 13.36884 ], [ 144.684898, 13.367391 ], [ 144.685205, 13.367095 ], [ 144.685413, 13.366927 ], [ 144.686339, 13.366211 ], [ 144.689118, 13.364065 ], [ 144.690045, 13.36335 ], [ 144.691399, 13.362326 ], [ 144.692879, 13.361208 ], [ 144.695285, 13.359038 ], [ 144.696547, 13.357902 ], [ 144.69667, 13.357796 ], [ 144.69704, 13.357481 ], [ 144.697164, 13.357376 ], [ 144.697367, 13.357183 ], [ 144.697978, 13.356605 ], [ 144.698182, 13.356413 ], [ 144.698269, 13.356342 ], [ 144.698531, 13.356128 ], [ 144.698619, 13.356058 ], [ 144.698673, 13.356014 ], [ 144.698836, 13.355885 ], [ 144.698891, 13.355842 ], [ 144.699057, 13.355703 ], [ 144.699558, 13.355288 ], [ 144.699667, 13.355199 ], [ 144.69972, 13.355144 ], [ 144.699822, 13.355031 ], [ 144.700128, 13.354693 ], [ 144.700231, 13.354581 ], [ 144.700628, 13.354152 ], [ 144.701818, 13.352868 ], [ 144.702216, 13.352441 ], [ 144.703613, 13.351848 ], [ 144.704433, 13.350358 ], [ 144.704379, 13.348555 ], [ 144.702848, 13.34658 ], [ 144.705163, 13.344986 ], [ 144.702221, 13.343862 ], [ 144.698479, 13.341943 ], [ 144.697232, 13.341304 ], [ 144.697103, 13.341239 ], [ 144.696716, 13.341044 ], [ 144.696588, 13.340979 ], [ 144.694402, 13.339854 ], [ 144.687846, 13.336481 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "980300", "GEOID10": "66010980300", "NAME10": "9803", "NAMELSAD10": "Census Tract 9803", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 5442583, "AWATER10": 26056, "INTPTLAT10": "+13.3286994", "INTPTLON10": "+144.6881553" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.681059, 13.333186 ], [ 144.687846, 13.336481 ], [ 144.694402, 13.339854 ], [ 144.696588, 13.340979 ], [ 144.696716, 13.341044 ], [ 144.697103, 13.341239 ], [ 144.697232, 13.341304 ], [ 144.698479, 13.341943 ], [ 144.702221, 13.343862 ], [ 144.705163, 13.344986 ], [ 144.70531, 13.344256 ], [ 144.705254, 13.343705 ], [ 144.705093, 13.34319 ], [ 144.704942, 13.342758 ], [ 144.704781, 13.342538 ], [ 144.706247, 13.34149 ], [ 144.706612, 13.34123 ], [ 144.706551, 13.339333 ], [ 144.702757, 13.334866 ], [ 144.702235, 13.334491 ], [ 144.700924, 13.334641 ], [ 144.699555, 13.332492 ], [ 144.698713, 13.33117 ], [ 144.698552, 13.328615 ], [ 144.698515, 13.32851 ], [ 144.698229, 13.328223 ], [ 144.697372, 13.327363 ], [ 144.697087, 13.327077 ], [ 144.696191, 13.326074 ], [ 144.693503, 13.323066 ], [ 144.692608, 13.322064 ], [ 144.692376, 13.321805 ], [ 144.691683, 13.32103 ], [ 144.691453, 13.320772 ], [ 144.691133, 13.320414 ], [ 144.690174, 13.319341 ], [ 144.689855, 13.318984 ], [ 144.688731, 13.317727 ], [ 144.688395, 13.317351 ], [ 144.68423, 13.315511 ], [ 144.682689, 13.31483 ], [ 144.681836, 13.314455 ], [ 144.680516, 13.315811 ], [ 144.677743, 13.31866 ], [ 144.675282, 13.324116 ], [ 144.672413, 13.329444 ], [ 144.673384, 13.329865 ], [ 144.681059, 13.333186 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "980400", "GEOID10": "66010980400", "NAME10": "9804", "NAMELSAD10": "Census Tract 9804", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4436840, "AWATER10": 0, "INTPTLAT10": "+13.5087485", "INTPTLON10": "+144.8598533" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.84579, 13.51257 ], [ 144.845792, 13.512679 ], [ 144.845797, 13.512946 ], [ 144.845818, 13.514076 ], [ 144.845826, 13.514453 ], [ 144.845893, 13.51446 ], [ 144.846094, 13.514484 ], [ 144.846162, 13.514492 ], [ 144.846205, 13.514496 ], [ 144.846335, 13.514511 ], [ 144.846379, 13.514517 ], [ 144.84658, 13.51454 ], [ 144.846807, 13.514567 ], [ 144.848091, 13.514724 ], [ 144.84838, 13.51476 ], [ 144.84852, 13.51477 ], [ 144.84884, 13.5148 ], [ 144.849013, 13.514818 ], [ 144.84932, 13.51485 ], [ 144.84968, 13.51487 ], [ 144.850497, 13.514889 ], [ 144.85051, 13.51489 ], [ 144.850993, 13.514885 ], [ 144.851035, 13.514884 ], [ 144.851164, 13.514883 ], [ 144.851207, 13.514883 ], [ 144.85156, 13.51488 ], [ 144.851981, 13.514872 ], [ 144.85213, 13.51487 ], [ 144.85256, 13.51486 ], [ 144.85288, 13.51486 ], [ 144.85337, 13.51486 ], [ 144.854305, 13.514865 ], [ 144.85508, 13.51487 ], [ 144.85567, 13.51492 ], [ 144.855708, 13.514924 ], [ 144.856039, 13.514967 ], [ 144.85629, 13.515 ], [ 144.85702, 13.51514 ], [ 144.857565, 13.51527 ], [ 144.85769, 13.5153 ], [ 144.85817, 13.51545 ], [ 144.858435, 13.515526 ], [ 144.85855, 13.51556 ], [ 144.859226, 13.515775 ], [ 144.85949, 13.51586 ], [ 144.859616, 13.515903 ], [ 144.859994, 13.516036 ], [ 144.86012, 13.51608 ], [ 144.86021, 13.51611 ], [ 144.86048, 13.5162 ], [ 144.86057, 13.51623 ], [ 144.86077, 13.516298 ], [ 144.86137, 13.516502 ], [ 144.86157, 13.51657 ], [ 144.861694, 13.516609 ], [ 144.862066, 13.51673 ], [ 144.86219, 13.51677 ], [ 144.86228, 13.516795 ], [ 144.86233, 13.51681 ], [ 144.862548, 13.516881 ], [ 144.862638, 13.51691 ], [ 144.862736, 13.516941 ], [ 144.863032, 13.517037 ], [ 144.863131, 13.517069 ], [ 144.863235, 13.517102 ], [ 144.86329, 13.51712 ], [ 144.863548, 13.517207 ], [ 144.863653, 13.517243 ], [ 144.863728, 13.517268 ], [ 144.863954, 13.517345 ], [ 144.86403, 13.517371 ], [ 144.864521, 13.517537 ], [ 144.865994, 13.518036 ], [ 144.86621, 13.51811 ], [ 144.86649, 13.51819 ], [ 144.866584, 13.518221 ], [ 144.866866, 13.518317 ], [ 144.86696, 13.51835 ], [ 144.867169, 13.518417 ], [ 144.867363, 13.518479 ], [ 144.868575, 13.518869 ], [ 144.868979, 13.518999 ], [ 144.869333, 13.519112 ], [ 144.86973, 13.51924 ], [ 144.869958, 13.519314 ], [ 144.870396, 13.519456 ], [ 144.870751, 13.519571 ], [ 144.870759, 13.519026 ], [ 144.870785, 13.517392 ], [ 144.870795, 13.516848 ], [ 144.870807, 13.516083 ], [ 144.870844, 13.513789 ], [ 144.870857, 13.513025 ], [ 144.870834, 13.510727 ], [ 144.870765, 13.503836 ], [ 144.870742, 13.501539 ], [ 144.870749, 13.501447 ], [ 144.870769, 13.501199 ], [ 144.870778, 13.501175 ], [ 144.870812, 13.501091 ], [ 144.870812, 13.501024 ], [ 144.870813, 13.500823 ], [ 144.870814, 13.500757 ], [ 144.870813, 13.500657 ], [ 144.87081, 13.500359 ], [ 144.87081, 13.50026 ], [ 144.870812, 13.500212 ], [ 144.870819, 13.500068 ], [ 144.870822, 13.500021 ], [ 144.870829, 13.499736 ], [ 144.87083, 13.499692 ], [ 144.87072, 13.49969 ], [ 144.867804, 13.499664 ], [ 144.865838, 13.499646 ], [ 144.864785, 13.499637 ], [ 144.863994, 13.49963 ], [ 144.856906, 13.499578 ], [ 144.85688, 13.49983 ], [ 144.85709, 13.50101 ], [ 144.857127, 13.501014 ], [ 144.857226, 13.501026 ], [ 144.857174, 13.503944 ], [ 144.856483, 13.50398 ], [ 144.855249, 13.504047 ], [ 144.854621, 13.504067 ], [ 144.854516, 13.504025 ], [ 144.854401, 13.503896 ], [ 144.854217, 13.503219 ], [ 144.854168, 13.503041 ], [ 144.853953, 13.502256 ], [ 144.852219, 13.502296 ], [ 144.850955, 13.502329 ], [ 144.850732, 13.503493 ], [ 144.850655, 13.503887 ], [ 144.850648, 13.503925 ], [ 144.850459, 13.504118 ], [ 144.85021, 13.50422 ], [ 144.849793, 13.504234 ], [ 144.84899, 13.50429 ], [ 144.84893, 13.504236 ], [ 144.84875, 13.504074 ], [ 144.84869, 13.50402 ], [ 144.84859, 13.50407 ], [ 144.8485, 13.5041 ], [ 144.848342, 13.504109 ], [ 144.84833, 13.50411 ], [ 144.84821, 13.5041 ], [ 144.84749, 13.50391 ], [ 144.847274, 13.503898 ], [ 144.84691, 13.50388 ], [ 144.84682, 13.50389 ], [ 144.846758, 13.50389 ], [ 144.8463, 13.50389 ], [ 144.846148, 13.50389 ], [ 144.8461, 13.50389 ], [ 144.84608, 13.50389 ], [ 144.845957, 13.503897 ], [ 144.84591, 13.5039 ], [ 144.845873, 13.503923 ], [ 144.84583, 13.50395 ], [ 144.845783, 13.504014 ], [ 144.84578, 13.50402 ], [ 144.845779, 13.504057 ], [ 144.845776, 13.504123 ], [ 144.845771, 13.504323 ], [ 144.84577, 13.50439 ], [ 144.84578, 13.50453 ], [ 144.845779, 13.504539 ], [ 144.845772, 13.504989 ], [ 144.84577, 13.50514 ], [ 144.845772, 13.505157 ], [ 144.845778, 13.505211 ], [ 144.84578, 13.50523 ], [ 144.8458, 13.50542 ], [ 144.845799, 13.505523 ], [ 144.845792, 13.506405 ], [ 144.84579, 13.5067 ], [ 144.84579, 13.506824 ], [ 144.84579, 13.507196 ], [ 144.84579, 13.50732 ], [ 144.845791, 13.507569 ], [ 144.845794, 13.508318 ], [ 144.845795, 13.508568 ], [ 144.845795, 13.508584 ], [ 144.845795, 13.508634 ], [ 144.845795, 13.508651 ], [ 144.845796, 13.50891 ], [ 144.845798, 13.509452 ], [ 144.845799, 13.50969 ], [ 144.8458, 13.50995 ], [ 144.845806, 13.510347 ], [ 144.845824, 13.511541 ], [ 144.84583, 13.51194 ], [ 144.845835, 13.512068 ], [ 144.84585, 13.51245 ], [ 144.845847, 13.512454 ], [ 144.84579, 13.51257 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "951000", "GEOID10": "66010951000", "NAME10": "9510", "NAMELSAD10": "Census Tract 9510", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1374461, "AWATER10": 0, "INTPTLAT10": "+13.5192816", "INTPTLON10": "+144.8376910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.835634, 13.523675 ], [ 144.83569, 13.52369 ], [ 144.83598, 13.52374 ], [ 144.836114, 13.52374 ], [ 144.836516, 13.52374 ], [ 144.83665, 13.52374 ], [ 144.836901, 13.523729 ], [ 144.837657, 13.523699 ], [ 144.83791, 13.52369 ], [ 144.838215, 13.523663 ], [ 144.839417, 13.5234 ], [ 144.83956, 13.52338 ], [ 144.84002, 13.523294 ], [ 144.84026, 13.52325 ], [ 144.840647, 13.523168 ], [ 144.84106, 13.52308 ], [ 144.841393, 13.523003 ], [ 144.84185, 13.5229 ], [ 144.842556, 13.522752 ], [ 144.84348, 13.52256 ], [ 144.844674, 13.522295 ], [ 144.84538, 13.52214 ], [ 144.845298, 13.521792 ], [ 144.845052, 13.520748 ], [ 144.84497, 13.5204 ], [ 144.844895, 13.52006 ], [ 144.844674, 13.51904 ], [ 144.8446, 13.5187 ], [ 144.844458, 13.518075 ], [ 144.844032, 13.516204 ], [ 144.84389, 13.51558 ], [ 144.843854, 13.515409 ], [ 144.843746, 13.514899 ], [ 144.84371, 13.51473 ], [ 144.843698, 13.514651 ], [ 144.843662, 13.514418 ], [ 144.84365, 13.51434 ], [ 144.843506, 13.514332 ], [ 144.843073, 13.514308 ], [ 144.84293, 13.5143 ], [ 144.842441, 13.514283 ], [ 144.84235, 13.51428 ], [ 144.84115, 13.51422 ], [ 144.840978, 13.514217 ], [ 144.84049, 13.51421 ], [ 144.840203, 13.514239 ], [ 144.8398, 13.51428 ], [ 144.839348, 13.514368 ], [ 144.83934, 13.51437 ], [ 144.839068, 13.514435 ], [ 144.839055, 13.514437 ], [ 144.839019, 13.514445 ], [ 144.839007, 13.514449 ], [ 144.838947, 13.514463 ], [ 144.838769, 13.514505 ], [ 144.83871, 13.51452 ], [ 144.838692, 13.514523 ], [ 144.83864, 13.514534 ], [ 144.838623, 13.514538 ], [ 144.838586, 13.514545 ], [ 144.838478, 13.514567 ], [ 144.838442, 13.514575 ], [ 144.838405, 13.514582 ], [ 144.838295, 13.514604 ], [ 144.838259, 13.514612 ], [ 144.83795, 13.514675 ], [ 144.83744, 13.51478 ], [ 144.837026, 13.514867 ], [ 144.836719, 13.514933 ], [ 144.836317, 13.515018 ], [ 144.83617, 13.51505 ], [ 144.83556, 13.5152 ], [ 144.835129, 13.515343 ], [ 144.83511, 13.51535 ], [ 144.83475, 13.5155 ], [ 144.83463, 13.51557 ], [ 144.83434, 13.51573 ], [ 144.834283, 13.515764 ], [ 144.83409, 13.51588 ], [ 144.83366, 13.51619 ], [ 144.833319, 13.516464 ], [ 144.83301, 13.516714 ], [ 144.83269, 13.516972 ], [ 144.83252, 13.51711 ], [ 144.831729, 13.517742 ], [ 144.83147, 13.51795 ], [ 144.83141, 13.518 ], [ 144.831375, 13.51803 ], [ 144.830965, 13.518349 ], [ 144.830934, 13.518373 ], [ 144.83028, 13.51889 ], [ 144.829751, 13.519309 ], [ 144.829348, 13.519631 ], [ 144.829018, 13.519893 ], [ 144.82886, 13.52002 ], [ 144.828036, 13.520693 ], [ 144.827839, 13.520856 ], [ 144.82771, 13.52096 ], [ 144.82854, 13.52149 ], [ 144.828935, 13.521717 ], [ 144.82929, 13.52189 ], [ 144.82957, 13.522011 ], [ 144.82966, 13.52205 ], [ 144.83011, 13.5222 ], [ 144.830443, 13.522284 ], [ 144.83074, 13.52236 ], [ 144.830831, 13.522388 ], [ 144.831107, 13.522472 ], [ 144.8312, 13.5225 ], [ 144.831551, 13.52259 ], [ 144.832607, 13.52286 ], [ 144.8328, 13.52291 ], [ 144.83296, 13.52295 ], [ 144.833224, 13.523018 ], [ 144.83354, 13.5231 ], [ 144.834016, 13.523228 ], [ 144.83428, 13.5233 ], [ 144.834617, 13.523399 ], [ 144.83462, 13.5234 ], [ 144.834839, 13.523466 ], [ 144.83495, 13.5235 ], [ 144.835634, 13.523675 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "955200", "GEOID10": "66010955200", "NAME10": "9552", "NAMELSAD10": "Census Tract 9552", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 48545636, "AWATER10": 135211, "INTPTLAT10": "+13.2949195", "INTPTLON10": "+144.7341882" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.745449, 13.268879 ], [ 144.745525, 13.2688 ], [ 144.745574, 13.268679 ], [ 144.745574, 13.268563 ], [ 144.745427, 13.268465 ], [ 144.745336, 13.268352 ], [ 144.74516, 13.268318 ], [ 144.745028, 13.268299 ], [ 144.744926, 13.268329 ], [ 144.744847, 13.26837 ], [ 144.744817, 13.268386 ], [ 144.744757, 13.268484 ], [ 144.74467, 13.2686 ], [ 144.744573, 13.268727 ], [ 144.744523, 13.268815 ], [ 144.744467, 13.268992 ], [ 144.744429, 13.269097 ], [ 144.744407, 13.269229 ], [ 144.744467, 13.269331 ], [ 144.744685, 13.269353 ], [ 144.744813, 13.269308 ], [ 144.744885, 13.269221 ], [ 144.744926, 13.269139 ], [ 144.745011, 13.269058 ], [ 144.745171, 13.268984 ], [ 144.745333, 13.268917 ], [ 144.745449, 13.268879 ] ] ], [ [ [ 144.725691, 13.246965 ], [ 144.725668, 13.2469 ], [ 144.725668, 13.246815 ], [ 144.725648, 13.246789 ], [ 144.72563, 13.246712 ], [ 144.72561, 13.246671 ], [ 144.725607, 13.246621 ], [ 144.725581, 13.246573 ], [ 144.725543, 13.246432 ], [ 144.725552, 13.246391 ], [ 144.725589, 13.246326 ], [ 144.725613, 13.246285 ], [ 144.72562, 13.246197 ], [ 144.725556, 13.246186 ], [ 144.725524, 13.246155 ], [ 144.725507, 13.24612 ], [ 144.725417, 13.246113 ], [ 144.725384, 13.246069 ], [ 144.725222, 13.246023 ], [ 144.725138, 13.246043 ], [ 144.724994, 13.24605 ], [ 144.724943, 13.24607 ], [ 144.724889, 13.246055 ], [ 144.72482, 13.246063 ], [ 144.72484, 13.246134 ], [ 144.724911, 13.246297 ], [ 144.72491, 13.246326 ], [ 144.724937, 13.246347 ], [ 144.724973, 13.246347 ], [ 144.725022, 13.246286 ], [ 144.725094, 13.246269 ], [ 144.72513, 13.246281 ], [ 144.725268, 13.246306 ], [ 144.72531, 13.246327 ], [ 144.725358, 13.246327 ], [ 144.725366, 13.246433 ], [ 144.72541, 13.246463 ], [ 144.725401, 13.246542 ], [ 144.725442, 13.246593 ], [ 144.725448, 13.246669 ], [ 144.725474, 13.246713 ], [ 144.725525, 13.246743 ], [ 144.725551, 13.246794 ], [ 144.725557, 13.246844 ], [ 144.725557, 13.246888 ], [ 144.725541, 13.246938 ], [ 144.725534, 13.247002 ], [ 144.725537, 13.247058 ], [ 144.725549, 13.247097 ], [ 144.725578, 13.247135 ], [ 144.725575, 13.247185 ], [ 144.725563, 13.247214 ], [ 144.725556, 13.247252 ], [ 144.725562, 13.247291 ], [ 144.725604, 13.247315 ], [ 144.725636, 13.24737 ], [ 144.725663, 13.247424 ], [ 144.725685, 13.247462 ], [ 144.725704, 13.247516 ], [ 144.725733, 13.247586 ], [ 144.725748, 13.247637 ], [ 144.725762, 13.247716 ], [ 144.72577, 13.247824 ], [ 144.725791, 13.247898 ], [ 144.725839, 13.24793 ], [ 144.725892, 13.247968 ], [ 144.725972, 13.247952 ], [ 144.726006, 13.247907 ], [ 144.726031, 13.247866 ], [ 144.726068, 13.247818 ], [ 144.7261, 13.247738 ], [ 144.726143, 13.247653 ], [ 144.726154, 13.247536 ], [ 144.726132, 13.247434 ], [ 144.72609, 13.247357 ], [ 144.726066, 13.24731 ], [ 144.726025, 13.247239 ], [ 144.725974, 13.247165 ], [ 144.725924, 13.247112 ], [ 144.72587, 13.247082 ], [ 144.725801, 13.247043 ], [ 144.725745, 13.247007 ], [ 144.725691, 13.246965 ] ] ], [ [ [ 144.731853, 13.250748 ], [ 144.731901, 13.250774 ], [ 144.731989, 13.250793 ], [ 144.732087, 13.250789 ], [ 144.732219, 13.250767 ], [ 144.732283, 13.250688 ], [ 144.73229, 13.250597 ], [ 144.732287, 13.250481 ], [ 144.73226, 13.250379 ], [ 144.732234, 13.250285 ], [ 144.732174, 13.250191 ], [ 144.732117, 13.250093 ], [ 144.732053, 13.25001 ], [ 144.731997, 13.249943 ], [ 144.731937, 13.24986 ], [ 144.73188, 13.249807 ], [ 144.731793, 13.249785 ], [ 144.731673, 13.249769 ], [ 144.731539, 13.249824 ], [ 144.73146, 13.249885 ], [ 144.731411, 13.249961 ], [ 144.73138, 13.250105 ], [ 144.731391, 13.250221 ], [ 144.731443, 13.250327 ], [ 144.731504, 13.250421 ], [ 144.731557, 13.250503 ], [ 144.731634, 13.25059 ], [ 144.731716, 13.250672 ], [ 144.731853, 13.250748 ] ] ], [ [ [ 144.707003, 13.301888 ], [ 144.707539, 13.302257 ], [ 144.707539, 13.302715 ], [ 144.707406, 13.302993 ], [ 144.707927, 13.303466 ], [ 144.708135, 13.303535 ], [ 144.708377, 13.303846 ], [ 144.708386, 13.304122 ], [ 144.708005, 13.304206 ], [ 144.707971, 13.304711 ], [ 144.708092, 13.30465 ], [ 144.708385, 13.304771 ], [ 144.708524, 13.304762 ], [ 144.70861, 13.304711 ], [ 144.709127, 13.304792 ], [ 144.709838, 13.305167 ], [ 144.710641, 13.305432 ], [ 144.710574, 13.306127 ], [ 144.711547, 13.307298 ], [ 144.711953, 13.307313 ], [ 144.712421, 13.307752 ], [ 144.712202, 13.308405 ], [ 144.712756, 13.308615 ], [ 144.713241, 13.308754 ], [ 144.713569, 13.308806 ], [ 144.713587, 13.309082 ], [ 144.713794, 13.309255 ], [ 144.713932, 13.309272 ], [ 144.714502, 13.30929 ], [ 144.714641, 13.309497 ], [ 144.714468, 13.30986 ], [ 144.71452, 13.310015 ], [ 144.714658, 13.310136 ], [ 144.715055, 13.309894 ], [ 144.715332, 13.309704 ], [ 144.71585, 13.309272 ], [ 144.71585, 13.309117 ], [ 144.715902, 13.309134 ], [ 144.716092, 13.308961 ], [ 144.716144, 13.308771 ], [ 144.716058, 13.308685 ], [ 144.716559, 13.30808 ], [ 144.71687, 13.307821 ], [ 144.717077, 13.307752 ], [ 144.717527, 13.307631 ], [ 144.717665, 13.307648 ], [ 144.717924, 13.307786 ], [ 144.718114, 13.307561 ], [ 144.718529, 13.307164 ], [ 144.718711, 13.307096 ], [ 144.718719, 13.306576 ], [ 144.718754, 13.306386 ], [ 144.719082, 13.306386 ], [ 144.719255, 13.306421 ], [ 144.719393, 13.306628 ], [ 144.719535, 13.306878 ], [ 144.719825, 13.307164 ], [ 144.719791, 13.307519 ], [ 144.719687, 13.307717 ], [ 144.719825, 13.307838 ], [ 144.720002, 13.307987 ], [ 144.72111, 13.308101 ], [ 144.721638, 13.308361 ], [ 144.722248, 13.307732 ], [ 144.722624, 13.307885 ], [ 144.722225, 13.308504 ], [ 144.722344, 13.30924 ], [ 144.723015, 13.309161 ], [ 144.723325, 13.30924 ], [ 144.724564, 13.309908 ], [ 144.725279, 13.310135 ], [ 144.725809, 13.310658 ], [ 144.726181, 13.310655 ], [ 144.726729, 13.310731 ], [ 144.727877, 13.310515 ], [ 144.728411, 13.311493 ], [ 144.728125, 13.311848 ], [ 144.728059, 13.312165 ], [ 144.727512, 13.31313 ], [ 144.727896, 13.313171 ], [ 144.728464, 13.312533 ], [ 144.728907, 13.312825 ], [ 144.728933, 13.313569 ], [ 144.728685, 13.314196 ], [ 144.728946, 13.315338 ], [ 144.730511, 13.31615 ], [ 144.730985, 13.316763 ], [ 144.73085, 13.317381 ], [ 144.731501, 13.31814 ], [ 144.731803, 13.319537 ], [ 144.731828, 13.320411 ], [ 144.732021, 13.320541 ], [ 144.733251, 13.320786 ], [ 144.734129, 13.32095 ], [ 144.734262, 13.321223 ], [ 144.733945, 13.321626 ], [ 144.733368, 13.321832 ], [ 144.73315, 13.322085 ], [ 144.733276, 13.322396 ], [ 144.734543, 13.322984 ], [ 144.735118, 13.322535 ], [ 144.736403, 13.322691 ], [ 144.736796, 13.32296 ], [ 144.737259, 13.324403 ], [ 144.737627, 13.324233 ], [ 144.73782, 13.324282 ], [ 144.738028, 13.324664 ], [ 144.738542, 13.324952 ], [ 144.73859, 13.325391 ], [ 144.737898, 13.326327 ], [ 144.737812, 13.326504 ], [ 144.737891, 13.326888 ], [ 144.739655, 13.327887 ], [ 144.740934, 13.327966 ], [ 144.741488, 13.327663 ], [ 144.741606, 13.327508 ], [ 144.741942, 13.326863 ], [ 144.742222, 13.326727 ], [ 144.742443, 13.326616 ], [ 144.742827, 13.326494 ], [ 144.743098, 13.326487 ], [ 144.743302, 13.326589 ], [ 144.743302, 13.326779 ], [ 144.743423, 13.326969 ], [ 144.743604, 13.326994 ], [ 144.743898, 13.32696 ], [ 144.744201, 13.326943 ], [ 144.744512, 13.326934 ], [ 144.744615, 13.327046 ], [ 144.744647, 13.327102 ], [ 144.744684, 13.327167 ], [ 144.744676, 13.327349 ], [ 144.744777, 13.327444 ], [ 144.744892, 13.327696 ], [ 144.745026, 13.327728 ], [ 144.745145, 13.327655 ], [ 144.745421, 13.32741 ], [ 144.745479, 13.32741 ], [ 144.745605, 13.327492 ], [ 144.745739, 13.327851 ], [ 144.745865, 13.328316 ], [ 144.745974, 13.328594 ], [ 144.746126, 13.328666 ], [ 144.746305, 13.328571 ], [ 144.747305, 13.328464 ], [ 144.747989, 13.328025 ], [ 144.748398, 13.327758 ], [ 144.748679, 13.327792 ], [ 144.749316, 13.327541 ], [ 144.749466, 13.327588 ], [ 144.750587, 13.329013 ], [ 144.750509, 13.329204 ], [ 144.750151, 13.329544 ], [ 144.749559, 13.329854 ], [ 144.749302, 13.329854 ], [ 144.749154, 13.329839 ], [ 144.749065, 13.329945 ], [ 144.749076, 13.330067 ], [ 144.749147, 13.330055 ], [ 144.749291, 13.330062 ], [ 144.749419, 13.33012 ], [ 144.749302, 13.330324 ], [ 144.749225, 13.330328 ], [ 144.749127, 13.3304 ], [ 144.748865, 13.330693 ], [ 144.748678, 13.330642 ], [ 144.748469, 13.330555 ], [ 144.748363, 13.330476 ], [ 144.748239, 13.330567 ], [ 144.748145, 13.330893 ], [ 144.748145, 13.331029 ], [ 144.748324, 13.331128 ], [ 144.748423, 13.331233 ], [ 144.748373, 13.3316 ], [ 144.748522, 13.331841 ], [ 144.74869, 13.332219 ], [ 144.748555, 13.332384 ], [ 144.748441, 13.332416 ], [ 144.748272, 13.332375 ], [ 144.748067, 13.332106 ], [ 144.747732, 13.331916 ], [ 144.747584, 13.331833 ], [ 144.747405, 13.331833 ], [ 144.747343, 13.331908 ], [ 144.747319, 13.332155 ], [ 144.747343, 13.332341 ], [ 144.74749, 13.332406 ], [ 144.74766, 13.332306 ], [ 144.747854, 13.332371 ], [ 144.74784, 13.332452 ], [ 144.747841, 13.332652 ], [ 144.747987, 13.33295 ], [ 144.74822, 13.333207 ], [ 144.748449, 13.333205 ], [ 144.749102, 13.333119 ], [ 144.749289, 13.333322 ], [ 144.749409, 13.333469 ], [ 144.749711, 13.333365 ], [ 144.749872, 13.333481 ], [ 144.750177, 13.333901 ], [ 144.750164, 13.334148 ], [ 144.750302, 13.334524 ], [ 144.750526, 13.334614 ], [ 144.750858, 13.335042 ], [ 144.751077, 13.335518 ], [ 144.751715, 13.335701 ], [ 144.752205, 13.335765 ], [ 144.752445, 13.336275 ], [ 144.752728, 13.336388 ], [ 144.752763, 13.336379 ], [ 144.753238, 13.336258 ], [ 144.753162, 13.336151 ], [ 144.753116, 13.336026 ], [ 144.753202, 13.335894 ], [ 144.75338, 13.335809 ], [ 144.753551, 13.335795 ], [ 144.753727, 13.335925 ], [ 144.753825, 13.336072 ], [ 144.753895, 13.336176 ], [ 144.754059, 13.336422 ], [ 144.754032, 13.336646 ], [ 144.7539, 13.336751 ], [ 144.753551, 13.336606 ], [ 144.753472, 13.336679 ], [ 144.753301, 13.336857 ], [ 144.753235, 13.337107 ], [ 144.753287, 13.337232 ], [ 144.753479, 13.337331 ], [ 144.753716, 13.337311 ], [ 144.75394, 13.337206 ], [ 144.754118, 13.337174 ], [ 144.754224, 13.337351 ], [ 144.754054, 13.33769 ], [ 144.754019, 13.337807 ], [ 144.754116, 13.337918 ], [ 144.754418, 13.33773 ], [ 144.754627, 13.337633 ], [ 144.754877, 13.33754 ], [ 144.755014, 13.337483 ], [ 144.755555, 13.337311 ], [ 144.756253, 13.337048 ], [ 144.7567, 13.336749 ], [ 144.756925, 13.336307 ], [ 144.757172, 13.335823 ], [ 144.757675, 13.335498 ], [ 144.757789, 13.335426 ], [ 144.758165, 13.335334 ], [ 144.758541, 13.33544 ], [ 144.758936, 13.335565 ], [ 144.759483, 13.335677 ], [ 144.7595, 13.336567 ], [ 144.759739, 13.337607 ], [ 144.759964, 13.338332 ], [ 144.76004, 13.338567 ], [ 144.760122, 13.338748 ], [ 144.760683, 13.339223 ], [ 144.761289, 13.339361 ], [ 144.761777, 13.339111 ], [ 144.762045, 13.338834 ], [ 144.76212, 13.338758 ], [ 144.762043, 13.338661 ], [ 144.762005, 13.33857 ], [ 144.76201, 13.338475 ], [ 144.76203, 13.338432 ], [ 144.761997, 13.338369 ], [ 144.761868, 13.338242 ], [ 144.761743, 13.338136 ], [ 144.761742, 13.33812 ], [ 144.761743, 13.338081 ], [ 144.761747, 13.337915 ], [ 144.76175, 13.33786 ], [ 144.762032, 13.337807 ], [ 144.76231, 13.337755 ], [ 144.76344, 13.337542 ], [ 144.768512, 13.336589 ], [ 144.768791, 13.336537 ], [ 144.770221, 13.336402 ], [ 144.770227, 13.33632 ], [ 144.770227, 13.336236 ], [ 144.77023, 13.335738 ], [ 144.770232, 13.335572 ], [ 144.770268, 13.335578 ], [ 144.770321, 13.335569 ], [ 144.770341, 13.335531 ], [ 144.770332, 13.335493 ], [ 144.770283, 13.335468 ], [ 144.77021, 13.335477 ], [ 144.770167, 13.335415 ], [ 144.770192, 13.335295 ], [ 144.770256, 13.335191 ], [ 144.770281, 13.335138 ], [ 144.770326, 13.335081 ], [ 144.770423, 13.335082 ], [ 144.770512, 13.335035 ], [ 144.770551, 13.334988 ], [ 144.770581, 13.33494 ], [ 144.77068, 13.334836 ], [ 144.770797, 13.334775 ], [ 144.770881, 13.334742 ], [ 144.77093, 13.334704 ], [ 144.77097, 13.334628 ], [ 144.77096, 13.334575 ], [ 144.771025, 13.33448 ], [ 144.771161, 13.334319 ], [ 144.771202, 13.334283 ], [ 144.771239, 13.334252 ], [ 144.771309, 13.334143 ], [ 144.771304, 13.334067 ], [ 144.771281, 13.334009 ], [ 144.771209, 13.333855 ], [ 144.771214, 13.333788 ], [ 144.771239, 13.333712 ], [ 144.771216, 13.333645 ], [ 144.771157, 13.333606 ], [ 144.771133, 13.333539 ], [ 144.771164, 13.333453 ], [ 144.771237, 13.333416 ], [ 144.771282, 13.33334 ], [ 144.771303, 13.333201 ], [ 144.771298, 13.333134 ], [ 144.771265, 13.333062 ], [ 144.771129, 13.332984 ], [ 144.771056, 13.332902 ], [ 144.771023, 13.332787 ], [ 144.771034, 13.332644 ], [ 144.771055, 13.332539 ], [ 144.771061, 13.332415 ], [ 144.771008, 13.332333 ], [ 144.771009, 13.332218 ], [ 144.771044, 13.332065 ], [ 144.771041, 13.331927 ], [ 144.771065, 13.331664 ], [ 144.771086, 13.331521 ], [ 144.771136, 13.331378 ], [ 144.771142, 13.331234 ], [ 144.771182, 13.331125 ], [ 144.771189, 13.330996 ], [ 144.771233, 13.33091 ], [ 144.771244, 13.330762 ], [ 144.771299, 13.330657 ], [ 144.771358, 13.330591 ], [ 144.771408, 13.330505 ], [ 144.771477, 13.33042 ], [ 144.771517, 13.330305 ], [ 144.771547, 13.330234 ], [ 144.771626, 13.330163 ], [ 144.77168, 13.33013 ], [ 144.771769, 13.330006 ], [ 144.771809, 13.32993 ], [ 144.77181, 13.329834 ], [ 144.77182, 13.329772 ], [ 144.771879, 13.329744 ], [ 144.771938, 13.329697 ], [ 144.771993, 13.329578 ], [ 144.772052, 13.32954 ], [ 144.772101, 13.329464 ], [ 144.772126, 13.329354 ], [ 144.772151, 13.329287 ], [ 144.77221, 13.329264 ], [ 144.772264, 13.329255 ], [ 144.772294, 13.329188 ], [ 144.77228, 13.329102 ], [ 144.772261, 13.329035 ], [ 144.772282, 13.328999 ], [ 144.772301, 13.328968 ], [ 144.772375, 13.328912 ], [ 144.772424, 13.328888 ], [ 144.772463, 13.328831 ], [ 144.772459, 13.328764 ], [ 144.772504, 13.328674 ], [ 144.772573, 13.328607 ], [ 144.772642, 13.328565 ], [ 144.772686, 13.328503 ], [ 144.772745, 13.328451 ], [ 144.772785, 13.328394 ], [ 144.772824, 13.328323 ], [ 144.772884, 13.328261 ], [ 144.772884, 13.328199 ], [ 144.77286, 13.328141 ], [ 144.772856, 13.328074 ], [ 144.772881, 13.328012 ], [ 144.772882, 13.327931 ], [ 144.772867, 13.327888 ], [ 144.772819, 13.327835 ], [ 144.77279, 13.327768 ], [ 144.772757, 13.32771 ], [ 144.772719, 13.32768 ], [ 144.772799, 13.327643 ], [ 144.772843, 13.327582 ], [ 144.772814, 13.327538 ], [ 144.772747, 13.327466 ], [ 144.772723, 13.327408 ], [ 144.772722, 13.327404 ], [ 144.772678, 13.327245 ], [ 144.772674, 13.327169 ], [ 144.772684, 13.327088 ], [ 144.772671, 13.326968 ], [ 144.772667, 13.326868 ], [ 144.772682, 13.326782 ], [ 144.772668, 13.32671 ], [ 144.772644, 13.326657 ], [ 144.772636, 13.326552 ], [ 144.772636, 13.326494 ], [ 144.772647, 13.326404 ], [ 144.772643, 13.326313 ], [ 144.772648, 13.326232 ], [ 144.772644, 13.326131 ], [ 144.772616, 13.32605 ], [ 144.772636, 13.325973 ], [ 144.772675, 13.32593 ], [ 144.772744, 13.325893 ], [ 144.772769, 13.32585 ], [ 144.772789, 13.325755 ], [ 144.77279, 13.325654 ], [ 144.772781, 13.325563 ], [ 144.772719, 13.325424 ], [ 144.772651, 13.325356 ], [ 144.772541, 13.325145 ], [ 144.772473, 13.325054 ], [ 144.772415, 13.324991 ], [ 144.772384, 13.324909 ], [ 144.772419, 13.324852 ], [ 144.772444, 13.3248 ], [ 144.772464, 13.324733 ], [ 144.77246, 13.324666 ], [ 144.772373, 13.324565 ], [ 144.772413, 13.324494 ], [ 144.772476, 13.324456 ], [ 144.772531, 13.324404 ], [ 144.772522, 13.324337 ], [ 144.772527, 13.324275 ], [ 144.772597, 13.324098 ], [ 144.772607, 13.324036 ], [ 144.772574, 13.323964 ], [ 144.77254, 13.323868 ], [ 144.772551, 13.323802 ], [ 144.772605, 13.32374 ], [ 144.77265, 13.323669 ], [ 144.77269, 13.323583 ], [ 144.772671, 13.32343 ], [ 144.772619, 13.32329 ], [ 144.7726, 13.32319 ], [ 144.772606, 13.323104 ], [ 144.772568, 13.323003 ], [ 144.772608, 13.32287 ], [ 144.77259, 13.322774 ], [ 144.772644, 13.322698 ], [ 144.772684, 13.322602 ], [ 144.772685, 13.322521 ], [ 144.772661, 13.322425 ], [ 144.772676, 13.322354 ], [ 144.772698, 13.322134 ], [ 144.772669, 13.322043 ], [ 144.772666, 13.321942 ], [ 144.772705, 13.321861 ], [ 144.772731, 13.321752 ], [ 144.772786, 13.321628 ], [ 144.772791, 13.321537 ], [ 144.772763, 13.321479 ], [ 144.772763, 13.321413 ], [ 144.772788, 13.321346 ], [ 144.772789, 13.321269 ], [ 144.77278, 13.321221 ], [ 144.77279, 13.32115 ], [ 144.772776, 13.321111 ], [ 144.772776, 13.321044 ], [ 144.772762, 13.320963 ], [ 144.77275, 13.320917 ], [ 144.772768, 13.320896 ], [ 144.772818, 13.320806 ], [ 144.772852, 13.32072 ], [ 144.772856, 13.320615 ], [ 144.772872, 13.320476 ], [ 144.772884, 13.320256 ], [ 144.772899, 13.320142 ], [ 144.7729, 13.320013 ], [ 144.772854, 13.319773 ], [ 144.772811, 13.319672 ], [ 144.772817, 13.319582 ], [ 144.772773, 13.3195 ], [ 144.772701, 13.319418 ], [ 144.77265, 13.31915 ], [ 144.772597, 13.319058 ], [ 144.772563, 13.318977 ], [ 144.772559, 13.318876 ], [ 144.772548, 13.318853 ], [ 144.772516, 13.31878 ], [ 144.772411, 13.318497 ], [ 144.772383, 13.318397 ], [ 144.77226, 13.318243 ], [ 144.772261, 13.318152 ], [ 144.772188, 13.318055 ], [ 144.772131, 13.317959 ], [ 144.771977, 13.317728 ], [ 144.771823, 13.317469 ], [ 144.771789, 13.317363 ], [ 144.7718, 13.317282 ], [ 144.771714, 13.31709 ], [ 144.771719, 13.317009 ], [ 144.771681, 13.316956 ], [ 144.771623, 13.316889 ], [ 144.771575, 13.316812 ], [ 144.771546, 13.316706 ], [ 144.771537, 13.31663 ], [ 144.771533, 13.316558 ], [ 144.771553, 13.316491 ], [ 144.771525, 13.316395 ], [ 144.771521, 13.316323 ], [ 144.771482, 13.316247 ], [ 144.771464, 13.316156 ], [ 144.771489, 13.316094 ], [ 144.771523, 13.316051 ], [ 144.771548, 13.316008 ], [ 144.771529, 13.315931 ], [ 144.771525, 13.31586 ], [ 144.771491, 13.315812 ], [ 144.771467, 13.315744 ], [ 144.771478, 13.315697 ], [ 144.771512, 13.315654 ], [ 144.771561, 13.315645 ], [ 144.771557, 13.31554 ], [ 144.771504, 13.315501 ], [ 144.771416, 13.315452 ], [ 144.771407, 13.315404 ], [ 144.771432, 13.315381 ], [ 144.771461, 13.315328 ], [ 144.771452, 13.31529 ], [ 144.771403, 13.315261 ], [ 144.771384, 13.315208 ], [ 144.77136, 13.31517 ], [ 144.771326, 13.315155 ], [ 144.771297, 13.315112 ], [ 144.771303, 13.31504 ], [ 144.771323, 13.314959 ], [ 144.771324, 13.314892 ], [ 144.771276, 13.314777 ], [ 144.771296, 13.31472 ], [ 144.77134, 13.314701 ], [ 144.771418, 13.314682 ], [ 144.771463, 13.31464 ], [ 144.771449, 13.314587 ], [ 144.771454, 13.314544 ], [ 144.771489, 13.314492 ], [ 144.771513, 13.314468 ], [ 144.771514, 13.314415 ], [ 144.771455, 13.31441 ], [ 144.771422, 13.314352 ], [ 144.771419, 13.314282 ], [ 144.771372, 13.314113 ], [ 144.771477, 13.313987 ], [ 144.771477, 13.313671 ], [ 144.77154, 13.313408 ], [ 144.771551, 13.31324 ], [ 144.771656, 13.312893 ], [ 144.771603, 13.312693 ], [ 144.771688, 13.312367 ], [ 144.771646, 13.312177 ], [ 144.77173, 13.311967 ], [ 144.77173, 13.311757 ], [ 144.771793, 13.311546 ], [ 144.771793, 13.311315 ], [ 144.771856, 13.311178 ], [ 144.771845, 13.310968 ], [ 144.771883, 13.310705 ], [ 144.771921, 13.310615 ], [ 144.771916, 13.310544 ], [ 144.771863, 13.310481 ], [ 144.771851, 13.310438 ], [ 144.771838, 13.310395 ], [ 144.77183, 13.310366 ], [ 144.771768, 13.310255 ], [ 144.771686, 13.31013 ], [ 144.771672, 13.310039 ], [ 144.771707, 13.309968 ], [ 144.771732, 13.309896 ], [ 144.771693, 13.309839 ], [ 144.771645, 13.309781 ], [ 144.771675, 13.309671 ], [ 144.771637, 13.309604 ], [ 144.771584, 13.309527 ], [ 144.771585, 13.309446 ], [ 144.771596, 13.309312 ], [ 144.771651, 13.309078 ], [ 144.771633, 13.308973 ], [ 144.771629, 13.308844 ], [ 144.771635, 13.308772 ], [ 144.771708, 13.308763 ], [ 144.771791, 13.308735 ], [ 144.771826, 13.308659 ], [ 144.771861, 13.308626 ], [ 144.771881, 13.308588 ], [ 144.771862, 13.308477 ], [ 144.771882, 13.308425 ], [ 144.771917, 13.308368 ], [ 144.771976, 13.308349 ], [ 144.772029, 13.308321 ], [ 144.772049, 13.308273 ], [ 144.77204, 13.308202 ], [ 144.772002, 13.308125 ], [ 144.771993, 13.308034 ], [ 144.772013, 13.307986 ], [ 144.772102, 13.307896 ], [ 144.772083, 13.307843 ], [ 144.772088, 13.307753 ], [ 144.772118, 13.3077 ], [ 144.772153, 13.307619 ], [ 144.772178, 13.307591 ], [ 144.772193, 13.307548 ], [ 144.772184, 13.30749 ], [ 144.772116, 13.307431 ], [ 144.772182, 13.30716 ], [ 144.772227, 13.307065 ], [ 144.772256, 13.307027 ], [ 144.77226, 13.306884 ], [ 144.772296, 13.306702 ], [ 144.772311, 13.306593 ], [ 144.772366, 13.306502 ], [ 144.772391, 13.30645 ], [ 144.772386, 13.306392 ], [ 144.772348, 13.30633 ], [ 144.772339, 13.306239 ], [ 144.772335, 13.306153 ], [ 144.772379, 13.306105 ], [ 144.77239, 13.306048 ], [ 144.772332, 13.305914 ], [ 144.772298, 13.30587 ], [ 144.772319, 13.305765 ], [ 144.772325, 13.305632 ], [ 144.772316, 13.305517 ], [ 144.772312, 13.305407 ], [ 144.772269, 13.30533 ], [ 144.772251, 13.305196 ], [ 144.772257, 13.305038 ], [ 144.772289, 13.304727 ], [ 144.772369, 13.304599 ], [ 144.772353, 13.304494 ], [ 144.772353, 13.304408 ], [ 144.772339, 13.304321 ], [ 144.77236, 13.304212 ], [ 144.772395, 13.304169 ], [ 144.77242, 13.304107 ], [ 144.772396, 13.304049 ], [ 144.772309, 13.303924 ], [ 144.772305, 13.303809 ], [ 144.77232, 13.303738 ], [ 144.77237, 13.303691 ], [ 144.772394, 13.303676 ], [ 144.772405, 13.303605 ], [ 144.772372, 13.303466 ], [ 144.772387, 13.303409 ], [ 144.772353, 13.303351 ], [ 144.772359, 13.303284 ], [ 144.77233, 13.303245 ], [ 144.772291, 13.303164 ], [ 144.772277, 13.303116 ], [ 144.772219, 13.303072 ], [ 144.772171, 13.303005 ], [ 144.772152, 13.302928 ], [ 144.772182, 13.302871 ], [ 144.772187, 13.302814 ], [ 144.772168, 13.302732 ], [ 144.772125, 13.302636 ], [ 144.772107, 13.302536 ], [ 144.772005, 13.302463 ], [ 144.771947, 13.302381 ], [ 144.771885, 13.302237 ], [ 144.771821, 13.302055 ], [ 144.771734, 13.301901 ], [ 144.771672, 13.3018 ], [ 144.771609, 13.301671 ], [ 144.771508, 13.301569 ], [ 144.771475, 13.301464 ], [ 144.77148, 13.301383 ], [ 144.771393, 13.301358 ], [ 144.771398, 13.301301 ], [ 144.771433, 13.301215 ], [ 144.771453, 13.301134 ], [ 144.77142, 13.301033 ], [ 144.77144, 13.30099 ], [ 144.771436, 13.300918 ], [ 144.771446, 13.300856 ], [ 144.771408, 13.300775 ], [ 144.771281, 13.300707 ], [ 144.771184, 13.300634 ], [ 144.771102, 13.300586 ], [ 144.771054, 13.300499 ], [ 144.770976, 13.300436 ], [ 144.770899, 13.300283 ], [ 144.770736, 13.300023 ], [ 144.770698, 13.299932 ], [ 144.770698, 13.299855 ], [ 144.770675, 13.299735 ], [ 144.770681, 13.299573 ], [ 144.770623, 13.299496 ], [ 144.770595, 13.299405 ], [ 144.770576, 13.299304 ], [ 144.770538, 13.299199 ], [ 144.770485, 13.299155 ], [ 144.770413, 13.299073 ], [ 144.770379, 13.298977 ], [ 144.770321, 13.29891 ], [ 144.770288, 13.29879 ], [ 144.77025, 13.298713 ], [ 144.770158, 13.298574 ], [ 144.770106, 13.298459 ], [ 144.769986, 13.298156 ], [ 144.769958, 13.298046 ], [ 144.769979, 13.297941 ], [ 144.770068, 13.297798 ], [ 144.770107, 13.297727 ], [ 144.770108, 13.29766 ], [ 144.770119, 13.297588 ], [ 144.770108, 13.297558 ], [ 144.770148, 13.297555 ], [ 144.770253, 13.297532 ], [ 144.770256, 13.297532 ], [ 144.770334, 13.297476 ], [ 144.770355, 13.297375 ], [ 144.770248, 13.297317 ], [ 144.7702, 13.29724 ], [ 144.770176, 13.297149 ], [ 144.770206, 13.297063 ], [ 144.770158, 13.296972 ], [ 144.770086, 13.2969 ], [ 144.770004, 13.296803 ], [ 144.769941, 13.296717 ], [ 144.769927, 13.296621 ], [ 144.769903, 13.296549 ], [ 144.769953, 13.296492 ], [ 144.769934, 13.296401 ], [ 144.769786, 13.296098 ], [ 144.769689, 13.295997 ], [ 144.769602, 13.295896 ], [ 144.769509, 13.295857 ], [ 144.769403, 13.29576 ], [ 144.769336, 13.29564 ], [ 144.769327, 13.295544 ], [ 144.769194, 13.295381 ], [ 144.769092, 13.295308 ], [ 144.769005, 13.295226 ], [ 144.768884, 13.29512 ], [ 144.768811, 13.295038 ], [ 144.768661, 13.294903 ], [ 144.76856, 13.294787 ], [ 144.768502, 13.294657 ], [ 144.76845, 13.294552 ], [ 144.768402, 13.294465 ], [ 144.768286, 13.294345 ], [ 144.768199, 13.294215 ], [ 144.768102, 13.294157 ], [ 144.768034, 13.294065 ], [ 144.767928, 13.293992 ], [ 144.767879, 13.293935 ], [ 144.767826, 13.293839 ], [ 144.76772, 13.293752 ], [ 144.767633, 13.293636 ], [ 144.767522, 13.293539 ], [ 144.76739, 13.293471 ], [ 144.767269, 13.293355 ], [ 144.767211, 13.293369 ], [ 144.767045, 13.293291 ], [ 144.766919, 13.293185 ], [ 144.766818, 13.293069 ], [ 144.766718, 13.293025 ], [ 144.766621, 13.292967 ], [ 144.766529, 13.292933 ], [ 144.76647, 13.292894 ], [ 144.766417, 13.292879 ], [ 144.766314, 13.292874 ], [ 144.766271, 13.292854 ], [ 144.766227, 13.29282 ], [ 144.766208, 13.29272 ], [ 144.766184, 13.292681 ], [ 144.766111, 13.292657 ], [ 144.766043, 13.292627 ], [ 144.766014, 13.292651 ], [ 144.76597, 13.29266 ], [ 144.765921, 13.292612 ], [ 144.765932, 13.292488 ], [ 144.76587, 13.292411 ], [ 144.765719, 13.292314 ], [ 144.765666, 13.292265 ], [ 144.765583, 13.292227 ], [ 144.76551, 13.292188 ], [ 144.765462, 13.292154 ], [ 144.765418, 13.292168 ], [ 144.765379, 13.292172 ], [ 144.765354, 13.292138 ], [ 144.765345, 13.292105 ], [ 144.765321, 13.292057 ], [ 144.765336, 13.292024 ], [ 144.765322, 13.29198 ], [ 144.765259, 13.291942 ], [ 144.765132, 13.291926 ], [ 144.765049, 13.291897 ], [ 144.76503, 13.291863 ], [ 144.765016, 13.291825 ], [ 144.764962, 13.29181 ], [ 144.764928, 13.29181 ], [ 144.764874, 13.291804 ], [ 144.764855, 13.291771 ], [ 144.764855, 13.291718 ], [ 144.764866, 13.291622 ], [ 144.764832, 13.291603 ], [ 144.764808, 13.29156 ], [ 144.764799, 13.291507 ], [ 144.764775, 13.291454 ], [ 144.764712, 13.291416 ], [ 144.764668, 13.291363 ], [ 144.764625, 13.291324 ], [ 144.764552, 13.291309 ], [ 144.76442, 13.291298 ], [ 144.764303, 13.291307 ], [ 144.764244, 13.291344 ], [ 144.764127, 13.291343 ], [ 144.764054, 13.291309 ], [ 144.763971, 13.291294 ], [ 144.763834, 13.29126 ], [ 144.763742, 13.291206 ], [ 144.763701, 13.291163 ], [ 144.763624, 13.291057 ], [ 144.763571, 13.29095 ], [ 144.763557, 13.290922 ], [ 144.763452, 13.290654 ], [ 144.763438, 13.290515 ], [ 144.76344, 13.290376 ], [ 144.763465, 13.290314 ], [ 144.763481, 13.290171 ], [ 144.763486, 13.29008 ], [ 144.763458, 13.289999 ], [ 144.763371, 13.289854 ], [ 144.763348, 13.289687 ], [ 144.763339, 13.289634 ], [ 144.763271, 13.289576 ], [ 144.763244, 13.289375 ], [ 144.763254, 13.289284 ], [ 144.763265, 13.289222 ], [ 144.763256, 13.289141 ], [ 144.763237, 13.289045 ], [ 144.763238, 13.288964 ], [ 144.763209, 13.288897 ], [ 144.763171, 13.288844 ], [ 144.763103, 13.288791 ], [ 144.762864, 13.28875 ], [ 144.762801, 13.288721 ], [ 144.762767, 13.288654 ], [ 144.762743, 13.288572 ], [ 144.762737, 13.288266 ], [ 144.762762, 13.288171 ], [ 144.762762, 13.288123 ], [ 144.762738, 13.288045 ], [ 144.762797, 13.288046 ], [ 144.76295, 13.287961 ], [ 144.763252, 13.287945 ], [ 144.763341, 13.287907 ], [ 144.763424, 13.287851 ], [ 144.76344, 13.287826 ], [ 144.763474, 13.287775 ], [ 144.763533, 13.287727 ], [ 144.763514, 13.287641 ], [ 144.763461, 13.287574 ], [ 144.763389, 13.287401 ], [ 144.763346, 13.287324 ], [ 144.763337, 13.287219 ], [ 144.763372, 13.287133 ], [ 144.763441, 13.287086 ], [ 144.763514, 13.287072 ], [ 144.763537, 13.28702 ], [ 144.763543, 13.28691 ], [ 144.763563, 13.286867 ], [ 144.763622, 13.286815 ], [ 144.763612, 13.286692 ], [ 144.763609, 13.286647 ], [ 144.763576, 13.286591 ], [ 144.76357, 13.28658 ], [ 144.763566, 13.286513 ], [ 144.763591, 13.286427 ], [ 144.763548, 13.286374 ], [ 144.763525, 13.286287 ], [ 144.763524, 13.286283 ], [ 144.763553, 13.286269 ], [ 144.763603, 13.286217 ], [ 144.763613, 13.28614 ], [ 144.763594, 13.286054 ], [ 144.763585, 13.285978 ], [ 144.763557, 13.285896 ], [ 144.763572, 13.285815 ], [ 144.763568, 13.285729 ], [ 144.76354, 13.285652 ], [ 144.763477, 13.285584 ], [ 144.763428, 13.285598 ], [ 144.763399, 13.28555 ], [ 144.763409, 13.285493 ], [ 144.7634, 13.28544 ], [ 144.763357, 13.285363 ], [ 144.763328, 13.285282 ], [ 144.76333, 13.285046 ], [ 144.763331, 13.285005 ], [ 144.763327, 13.284919 ], [ 144.763291, 13.284832 ], [ 144.763233, 13.28476 ], [ 144.763224, 13.284698 ], [ 144.763253, 13.284636 ], [ 144.76323, 13.284569 ], [ 144.763226, 13.284478 ], [ 144.763202, 13.284415 ], [ 144.763124, 13.284391 ], [ 144.763046, 13.284395 ], [ 144.763017, 13.284347 ], [ 144.763008, 13.284299 ], [ 144.763042, 13.284266 ], [ 144.76312, 13.284242 ], [ 144.763111, 13.284195 ], [ 144.763058, 13.284137 ], [ 144.76295, 13.284174 ], [ 144.762926, 13.284159 ], [ 144.76298, 13.284103 ], [ 144.763005, 13.28406 ], [ 144.762986, 13.284002 ], [ 144.762933, 13.283925 ], [ 144.762884, 13.283891 ], [ 144.762772, 13.283943 ], [ 144.762728, 13.2839 ], [ 144.762729, 13.283847 ], [ 144.762695, 13.283804 ], [ 144.762632, 13.283784 ], [ 144.762549, 13.283778 ], [ 144.7625, 13.283745 ], [ 144.762457, 13.283672 ], [ 144.762404, 13.28361 ], [ 144.762394, 13.283552 ], [ 144.76243, 13.283452 ], [ 144.762367, 13.28337 ], [ 144.762284, 13.283298 ], [ 144.762173, 13.283235 ], [ 144.761969, 13.283128 ], [ 144.761852, 13.283098 ], [ 144.761711, 13.283054 ], [ 144.761589, 13.283048 ], [ 144.76154, 13.283004 ], [ 144.761507, 13.282904 ], [ 144.761542, 13.282837 ], [ 144.761523, 13.282737 ], [ 144.761498, 13.282663 ], [ 144.76148, 13.282607 ], [ 144.761352, 13.282448 ], [ 144.76127, 13.282357 ], [ 144.761183, 13.282322 ], [ 144.760998, 13.282235 ], [ 144.760905, 13.282239 ], [ 144.760764, 13.282237 ], [ 144.760632, 13.28227 ], [ 144.760563, 13.282259 ], [ 144.760485, 13.28224 ], [ 144.760436, 13.282258 ], [ 144.760397, 13.282277 ], [ 144.760314, 13.282253 ], [ 144.760266, 13.282247 ], [ 144.760138, 13.282313 ], [ 144.760099, 13.282308 ], [ 144.760087, 13.282262 ], [ 144.760085, 13.282255 ], [ 144.76007, 13.282236 ], [ 144.759948, 13.282254 ], [ 144.75987, 13.282258 ], [ 144.759768, 13.282257 ], [ 144.759713, 13.282305 ], [ 144.759678, 13.282395 ], [ 144.759687, 13.282472 ], [ 144.759701, 13.282488 ], [ 144.759755, 13.282554 ], [ 144.759817, 13.282678 ], [ 144.759792, 13.282764 ], [ 144.759713, 13.282878 ], [ 144.75968, 13.282898 ], [ 144.759585, 13.282959 ], [ 144.759551, 13.283025 ], [ 144.759467, 13.283082 ], [ 144.759397, 13.283113 ], [ 144.759384, 13.283119 ], [ 144.759301, 13.283138 ], [ 144.759237, 13.283166 ], [ 144.759178, 13.283218 ], [ 144.759172, 13.28322 ], [ 144.758987, 13.283298 ], [ 144.758625, 13.283309 ], [ 144.758518, 13.283255 ], [ 144.75844, 13.283239 ], [ 144.758392, 13.28323 ], [ 144.75826, 13.283172 ], [ 144.75821, 13.283139 ], [ 144.758178, 13.283118 ], [ 144.758134, 13.283084 ], [ 144.758048, 13.282912 ], [ 144.758064, 13.282816 ], [ 144.758118, 13.282721 ], [ 144.758222, 13.282612 ], [ 144.75829, 13.282517 ], [ 144.758301, 13.282503 ], [ 144.75836, 13.282398 ], [ 144.758425, 13.282241 ], [ 144.758426, 13.282174 ], [ 144.758402, 13.282078 ], [ 144.758388, 13.281992 ], [ 144.758404, 13.281896 ], [ 144.758412, 13.28182 ], [ 144.758432, 13.281743 ], [ 144.758472, 13.28171 ], [ 144.758526, 13.281677 ], [ 144.758575, 13.281635 ], [ 144.758628, 13.281635 ], [ 144.758682, 13.281669 ], [ 144.758725, 13.281713 ], [ 144.758769, 13.281737 ], [ 144.758823, 13.281742 ], [ 144.75892, 13.281743 ], [ 144.758945, 13.281686 ], [ 144.758989, 13.281696 ], [ 144.759053, 13.281663 ], [ 144.759097, 13.28162 ], [ 144.759161, 13.281587 ], [ 144.759196, 13.28154 ], [ 144.759153, 13.281382 ], [ 144.759247, 13.28121 ], [ 144.759302, 13.281101 ], [ 144.759308, 13.28105 ], [ 144.759318, 13.280977 ], [ 144.759393, 13.2808 ], [ 144.759457, 13.2807 ], [ 144.759567, 13.280477 ], [ 144.759602, 13.280391 ], [ 144.759617, 13.280362 ], [ 144.759656, 13.280286 ], [ 144.759671, 13.280235 ], [ 144.759819, 13.28013 ], [ 144.759829, 13.280092 ], [ 144.759752, 13.280005 ], [ 144.759715, 13.279985 ], [ 144.759652, 13.279908 ], [ 144.759619, 13.279813 ], [ 144.759581, 13.279731 ], [ 144.759513, 13.279725 ], [ 144.759449, 13.279744 ], [ 144.759386, 13.279681 ], [ 144.759401, 13.27961 ], [ 144.759339, 13.279461 ], [ 144.759276, 13.279422 ], [ 144.759236, 13.279419 ], [ 144.759169, 13.279416 ], [ 144.759106, 13.279382 ], [ 144.759092, 13.279315 ], [ 144.759102, 13.279277 ], [ 144.759092, 13.27922 ], [ 144.759044, 13.279152 ], [ 144.758967, 13.27908 ], [ 144.758865, 13.279017 ], [ 144.758709, 13.278963 ], [ 144.758651, 13.27891 ], [ 144.758317, 13.278586 ], [ 144.758152, 13.278494 ], [ 144.757991, 13.27844 ], [ 144.757894, 13.278368 ], [ 144.757817, 13.278281 ], [ 144.757692, 13.278122 ], [ 144.757514, 13.2778 ], [ 144.757427, 13.277651 ], [ 144.757328, 13.277545 ], [ 144.757236, 13.277472 ], [ 144.757178, 13.277405 ], [ 144.757086, 13.277318 ], [ 144.756984, 13.277265 ], [ 144.756902, 13.277216 ], [ 144.756829, 13.277201 ], [ 144.756741, 13.277176 ], [ 144.756732, 13.277133 ], [ 144.756668, 13.277123 ], [ 144.756619, 13.277151 ], [ 144.756546, 13.277127 ], [ 144.756429, 13.277135 ], [ 144.756375, 13.277144 ], [ 144.756312, 13.277077 ], [ 144.756264, 13.277048 ], [ 144.756269, 13.276986 ], [ 144.756206, 13.276942 ], [ 144.756119, 13.276908 ], [ 144.756001, 13.276926 ], [ 144.755909, 13.27693 ], [ 144.755826, 13.2769 ], [ 144.755763, 13.276838 ], [ 144.755681, 13.276737 ], [ 144.755632, 13.276703 ], [ 144.75552, 13.276673 ], [ 144.755443, 13.27661 ], [ 144.755375, 13.276538 ], [ 144.755322, 13.276432 ], [ 144.75526, 13.276355 ], [ 144.755202, 13.276273 ], [ 144.755232, 13.276188 ], [ 144.755208, 13.276087 ], [ 144.755131, 13.275995 ], [ 144.755063, 13.275933 ], [ 144.755058, 13.275921 ], [ 144.755011, 13.275803 ], [ 144.755002, 13.275731 ], [ 144.755041, 13.275679 ], [ 144.755056, 13.275631 ], [ 144.754999, 13.27555 ], [ 144.754878, 13.275429 ], [ 144.75477, 13.275409 ], [ 144.754693, 13.275375 ], [ 144.75463, 13.275307 ], [ 144.754527, 13.275297 ], [ 144.754472, 13.275229 ], [ 144.754404, 13.275205 ], [ 144.754306, 13.275199 ], [ 144.754283, 13.275193 ], [ 144.754131, 13.275155 ], [ 144.754043, 13.275116 ], [ 144.753946, 13.275091 ], [ 144.753902, 13.275043 ], [ 144.753824, 13.275037 ], [ 144.753765, 13.275108 ], [ 144.753742, 13.275148 ], [ 144.75371, 13.275208 ], [ 144.753622, 13.275246 ], [ 144.753534, 13.275336 ], [ 144.753489, 13.275412 ], [ 144.75343, 13.275493 ], [ 144.753331, 13.275587 ], [ 144.753314, 13.275618 ], [ 144.753281, 13.275683 ], [ 144.753251, 13.275778 ], [ 144.753242, 13.275821 ], [ 144.753226, 13.275893 ], [ 144.753157, 13.275983 ], [ 144.753093, 13.276016 ], [ 144.753025, 13.276027 ], [ 144.753015, 13.276029 ], [ 144.752912, 13.276081 ], [ 144.752853, 13.276071 ], [ 144.752814, 13.276023 ], [ 144.752761, 13.275979 ], [ 144.752703, 13.275974 ], [ 144.752595, 13.276011 ], [ 144.752536, 13.276073 ], [ 144.752472, 13.276077 ], [ 144.752379, 13.276076 ], [ 144.752233, 13.276118 ], [ 144.752134, 13.276141 ], [ 144.752081, 13.276155 ], [ 144.751997, 13.276216 ], [ 144.751919, 13.276287 ], [ 144.751894, 13.276345 ], [ 144.751878, 13.276411 ], [ 144.751917, 13.276469 ], [ 144.752004, 13.276518 ], [ 144.752004, 13.276556 ], [ 144.751808, 13.276621 ], [ 144.751598, 13.276677 ], [ 144.75151, 13.276705 ], [ 144.751424, 13.276709 ], [ 144.751379, 13.276837 ], [ 144.751378, 13.276957 ], [ 144.751353, 13.277027 ], [ 144.751343, 13.277057 ], [ 144.751283, 13.277166 ], [ 144.751228, 13.277281 ], [ 144.751129, 13.277466 ], [ 144.75102, 13.277604 ], [ 144.750844, 13.277722 ], [ 144.750677, 13.277802 ], [ 144.750525, 13.277867 ], [ 144.750422, 13.277905 ], [ 144.750353, 13.277962 ], [ 144.750269, 13.278047 ], [ 144.750215, 13.278142 ], [ 144.750087, 13.27827 ], [ 144.749974, 13.278341 ], [ 144.74991, 13.278402 ], [ 144.749802, 13.278459 ], [ 144.749684, 13.278515 ], [ 144.749635, 13.278582 ], [ 144.7496, 13.278653 ], [ 144.749531, 13.278695 ], [ 144.749502, 13.278686 ], [ 144.749473, 13.2787 ], [ 144.749497, 13.278743 ], [ 144.749472, 13.278776 ], [ 144.74929, 13.278932 ], [ 144.749128, 13.279022 ], [ 144.74903, 13.279026 ], [ 144.748972, 13.279001 ], [ 144.748904, 13.278991 ], [ 144.748782, 13.27899 ], [ 144.748733, 13.279009 ], [ 144.74865, 13.278982 ], [ 144.748582, 13.27896 ], [ 144.748487, 13.278916 ], [ 144.748322, 13.278819 ], [ 144.748162, 13.278698 ], [ 144.748026, 13.278553 ], [ 144.747945, 13.278418 ], [ 144.747808, 13.27817 ], [ 144.747757, 13.278077 ], [ 144.747696, 13.277871 ], [ 144.747669, 13.277646 ], [ 144.74768, 13.277488 ], [ 144.747696, 13.277379 ], [ 144.747677, 13.277264 ], [ 144.747659, 13.27712 ], [ 144.747671, 13.276895 ], [ 144.747608, 13.276818 ], [ 144.747638, 13.276694 ], [ 144.747746, 13.276619 ], [ 144.747865, 13.276515 ], [ 144.747872, 13.276509 ], [ 144.748012, 13.276406 ], [ 144.74813, 13.276283 ], [ 144.748264, 13.276126 ], [ 144.748459, 13.275874 ], [ 144.748587, 13.275746 ], [ 144.748746, 13.275466 ], [ 144.748924, 13.275209 ], [ 144.749027, 13.275153 ], [ 144.74911, 13.275096 ], [ 144.749234, 13.274954 ], [ 144.749278, 13.274935 ], [ 144.749336, 13.274935 ], [ 144.749434, 13.27497 ], [ 144.749531, 13.27499 ], [ 144.74958, 13.275009 ], [ 144.749648, 13.275005 ], [ 144.749731, 13.275011 ], [ 144.749839, 13.275011 ], [ 144.750014, 13.274999 ], [ 144.750097, 13.275009 ], [ 144.750239, 13.274967 ], [ 144.750479, 13.274859 ], [ 144.750627, 13.274717 ], [ 144.750662, 13.274622 ], [ 144.750658, 13.274521 ], [ 144.750659, 13.274416 ], [ 144.75067, 13.274297 ], [ 144.750695, 13.274235 ], [ 144.75074, 13.27414 ], [ 144.750755, 13.274082 ], [ 144.75087, 13.274021 ], [ 144.750896, 13.273873 ], [ 144.750941, 13.273802 ], [ 144.750986, 13.273711 ], [ 144.750972, 13.273625 ], [ 144.750939, 13.273496 ], [ 144.750959, 13.27342 ], [ 144.750916, 13.273328 ], [ 144.750833, 13.273313 ], [ 144.750766, 13.273212 ], [ 144.750747, 13.273112 ], [ 144.750723, 13.273048 ], [ 144.750718, 13.273035 ], [ 144.750603, 13.272843 ], [ 144.750496, 13.272789 ], [ 144.750433, 13.272736 ], [ 144.750366, 13.272635 ], [ 144.750324, 13.272537 ], [ 144.750318, 13.272524 ], [ 144.750265, 13.272447 ], [ 144.750237, 13.272337 ], [ 144.750139, 13.272336 ], [ 144.750086, 13.272288 ], [ 144.750038, 13.272221 ], [ 144.749979, 13.272172 ], [ 144.749922, 13.272086 ], [ 144.749849, 13.271999 ], [ 144.749811, 13.271927 ], [ 144.749758, 13.271879 ], [ 144.74967, 13.271849 ], [ 144.749617, 13.271782 ], [ 144.749583, 13.271729 ], [ 144.749486, 13.27168 ], [ 144.749403, 13.271646 ], [ 144.749306, 13.271645 ], [ 144.749154, 13.271696 ], [ 144.749105, 13.271672 ], [ 144.749042, 13.271681 ], [ 144.748973, 13.271743 ], [ 144.748909, 13.271776 ], [ 144.748851, 13.27177 ], [ 144.748782, 13.271784 ], [ 144.748723, 13.271846 ], [ 144.748722, 13.271898 ], [ 144.74859, 13.271969 ], [ 144.74856, 13.271992 ], [ 144.74855, 13.27205 ], [ 144.748555, 13.272102 ], [ 144.74853, 13.272136 ], [ 144.748407, 13.272125 ], [ 144.748344, 13.27212 ], [ 144.748257, 13.272124 ], [ 144.748208, 13.27209 ], [ 144.748185, 13.271999 ], [ 144.748171, 13.271922 ], [ 144.748108, 13.271855 ], [ 144.748069, 13.271787 ], [ 144.748026, 13.271739 ], [ 144.747962, 13.271724 ], [ 144.747949, 13.271619 ], [ 144.74791, 13.27159 ], [ 144.747787, 13.271665 ], [ 144.747728, 13.271693 ], [ 144.747641, 13.271693 ], [ 144.747597, 13.271678 ], [ 144.747544, 13.271591 ], [ 144.747569, 13.271501 ], [ 144.74757, 13.271429 ], [ 144.747673, 13.271397 ], [ 144.747795, 13.271383 ], [ 144.747898, 13.271346 ], [ 144.747957, 13.271313 ], [ 144.747972, 13.271222 ], [ 144.748002, 13.271108 ], [ 144.747944, 13.271031 ], [ 144.747901, 13.270959 ], [ 144.747818, 13.270963 ], [ 144.747681, 13.271033 ], [ 144.74754, 13.270951 ], [ 144.747431, 13.271079 ], [ 144.747367, 13.271198 ], [ 144.747347, 13.271284 ], [ 144.747301, 13.271408 ], [ 144.747233, 13.271426 ], [ 144.747165, 13.271402 ], [ 144.747052, 13.271448 ], [ 144.746979, 13.271443 ], [ 144.746906, 13.271404 ], [ 144.746907, 13.271351 ], [ 144.746858, 13.271294 ], [ 144.746786, 13.27124 ], [ 144.746693, 13.271197 ], [ 144.74663, 13.271158 ], [ 144.746601, 13.271095 ], [ 144.746519, 13.271066 ], [ 144.746447, 13.271135 ], [ 144.746386, 13.271084 ], [ 144.746308, 13.271042 ], [ 144.746287, 13.271031 ], [ 144.746191, 13.270997 ], [ 144.746058, 13.270957 ], [ 144.745936, 13.27095 ], [ 144.745786, 13.270916 ], [ 144.745631, 13.270892 ], [ 144.745525, 13.270861 ], [ 144.745432, 13.270841 ], [ 144.745306, 13.270746 ], [ 144.74525, 13.27069 ], [ 144.745258, 13.270631 ], [ 144.745304, 13.270589 ], [ 144.745371, 13.270558 ], [ 144.745378, 13.270532 ], [ 144.745349, 13.270476 ], [ 144.745339, 13.270434 ], [ 144.745207, 13.270332 ], [ 144.745144, 13.270354 ], [ 144.745133, 13.270425 ], [ 144.745093, 13.27048 ], [ 144.74504, 13.270499 ], [ 144.74496, 13.270479 ], [ 144.744808, 13.270432 ], [ 144.744739, 13.27037 ], [ 144.744649, 13.270314 ], [ 144.74461, 13.270264 ], [ 144.744614, 13.270216 ], [ 144.744611, 13.27016 ], [ 144.744585, 13.270128 ], [ 144.74447, 13.270123 ], [ 144.744414, 13.270081 ], [ 144.744355, 13.270028 ], [ 144.744309, 13.269976 ], [ 144.744276, 13.26991 ], [ 144.744177, 13.269854 ], [ 144.744117, 13.269831 ], [ 144.744082, 13.269761 ], [ 144.744072, 13.269739 ], [ 144.744022, 13.269709 ], [ 144.743943, 13.269673 ], [ 144.743893, 13.269656 ], [ 144.743824, 13.26962 ], [ 144.743765, 13.269535 ], [ 144.743759, 13.269473 ], [ 144.743696, 13.269381 ], [ 144.743647, 13.269342 ], [ 144.743631, 13.269283 ], [ 144.743578, 13.269208 ], [ 144.74337, 13.269121 ], [ 144.743228, 13.269068 ], [ 144.743132, 13.268999 ], [ 144.743083, 13.26893 ], [ 144.743037, 13.268842 ], [ 144.742969, 13.268656 ], [ 144.742933, 13.268626 ], [ 144.742887, 13.268606 ], [ 144.742823, 13.268602 ], [ 144.742754, 13.268625 ], [ 144.742687, 13.268653 ], [ 144.742647, 13.268685 ], [ 144.74259, 13.268714 ], [ 144.742533, 13.26872 ], [ 144.742497, 13.268694 ], [ 144.742484, 13.268648 ], [ 144.742508, 13.268577 ], [ 144.742498, 13.268548 ], [ 144.742475, 13.268531 ], [ 144.742419, 13.268544 ], [ 144.742347, 13.268553 ], [ 144.742271, 13.268542 ], [ 144.742142, 13.26845 ], [ 144.742076, 13.268417 ], [ 144.741964, 13.268387 ], [ 144.741927, 13.268367 ], [ 144.741871, 13.268311 ], [ 144.741865, 13.268282 ], [ 144.741809, 13.268262 ], [ 144.741725, 13.268274 ], [ 144.741619, 13.268266 ], [ 144.741583, 13.268286 ], [ 144.741549, 13.268334 ], [ 144.741505, 13.268366 ], [ 144.741459, 13.268353 ], [ 144.741453, 13.268324 ], [ 144.741463, 13.268288 ], [ 144.741443, 13.268271 ], [ 144.741384, 13.268258 ], [ 144.74138, 13.268232 ], [ 144.741347, 13.268222 ], [ 144.741294, 13.268231 ], [ 144.741221, 13.268195 ], [ 144.741131, 13.26823 ], [ 144.741104, 13.268272 ], [ 144.741054, 13.268294 ], [ 144.740998, 13.268293 ], [ 144.740968, 13.268306 ], [ 144.740964, 13.268345 ], [ 144.741, 13.268378 ], [ 144.74097, 13.268394 ], [ 144.740887, 13.26839 ], [ 144.740804, 13.26838 ], [ 144.740718, 13.26835 ], [ 144.740632, 13.268339 ], [ 144.740553, 13.268316 ], [ 144.740457, 13.268266 ], [ 144.740391, 13.268243 ], [ 144.740216, 13.268218 ], [ 144.74015, 13.268185 ], [ 144.740084, 13.268178 ], [ 144.740075, 13.268173 ], [ 144.740024, 13.268148 ], [ 144.739991, 13.268119 ], [ 144.739932, 13.268112 ], [ 144.739899, 13.268075 ], [ 144.739816, 13.268036 ], [ 144.73971, 13.268012 ], [ 144.739627, 13.267998 ], [ 144.739395, 13.267938 ], [ 144.739296, 13.267907 ], [ 144.739233, 13.267868 ], [ 144.73918, 13.267848 ], [ 144.739134, 13.267867 ], [ 144.73908, 13.267919 ], [ 144.739043, 13.267908 ], [ 144.738957, 13.26794 ], [ 144.738924, 13.267927 ], [ 144.73888, 13.267946 ], [ 144.738857, 13.267995 ], [ 144.738807, 13.268017 ], [ 144.73871, 13.268019 ], [ 144.738584, 13.268083 ], [ 144.738534, 13.268096 ], [ 144.7385, 13.268086 ], [ 144.738444, 13.268105 ], [ 144.738414, 13.268132 ], [ 144.738363, 13.268179 ], [ 144.738313, 13.268195 ], [ 144.738253, 13.268137 ], [ 144.738255, 13.268119 ], [ 144.738277, 13.268051 ], [ 144.738275, 13.268048 ], [ 144.73825, 13.268009 ], [ 144.738229, 13.267961 ], [ 144.738224, 13.26795 ], [ 144.73822, 13.267932 ], [ 144.738201, 13.267844 ], [ 144.738195, 13.267815 ], [ 144.738189, 13.267784 ], [ 144.738187, 13.267689 ], [ 144.738194, 13.267637 ], [ 144.738191, 13.267582 ], [ 144.738172, 13.267481 ], [ 144.738167, 13.267364 ], [ 144.738151, 13.267266 ], [ 144.738125, 13.267172 ], [ 144.73812, 13.267032 ], [ 144.738131, 13.266954 ], [ 144.738178, 13.266905 ], [ 144.738264, 13.26686 ], [ 144.738338, 13.266845 ], [ 144.738411, 13.266813 ], [ 144.738491, 13.266791 ], [ 144.738584, 13.266779 ], [ 144.738777, 13.266738 ], [ 144.738815, 13.266722 ], [ 144.738858, 13.266715 ], [ 144.738898, 13.26671 ], [ 144.738982, 13.266688 ], [ 144.739214, 13.266657 ], [ 144.739357, 13.266642 ], [ 144.739514, 13.266631 ], [ 144.73965, 13.266629 ], [ 144.73972, 13.266639 ], [ 144.739815, 13.266682 ], [ 144.739895, 13.266693 ], [ 144.739988, 13.266697 ], [ 144.740247, 13.266725 ], [ 144.740462, 13.266753 ], [ 144.740589, 13.266761 ], [ 144.740655, 13.266748 ], [ 144.740789, 13.266681 ], [ 144.740942, 13.266657 ], [ 144.740983, 13.266631 ], [ 144.74106, 13.266625 ], [ 144.741143, 13.266609 ], [ 144.741189, 13.266616 ], [ 144.741246, 13.266604 ], [ 144.741309, 13.266565 ], [ 144.74132, 13.266533 ], [ 144.74137, 13.266524 ], [ 144.741443, 13.266534 ], [ 144.741496, 13.266561 ], [ 144.741552, 13.266597 ], [ 144.741631, 13.26664 ], [ 144.741803, 13.266765 ], [ 144.741805, 13.26682 ], [ 144.741845, 13.266856 ], [ 144.741891, 13.266889 ], [ 144.741891, 13.266915 ], [ 144.741947, 13.266958 ], [ 144.74199, 13.266968 ], [ 144.74207, 13.266979 ], [ 144.742116, 13.266992 ], [ 144.742159, 13.267025 ], [ 144.742202, 13.267026 ], [ 144.742325, 13.266978 ], [ 144.742379, 13.266946 ], [ 144.742492, 13.266908 ], [ 144.742572, 13.266873 ], [ 144.742619, 13.266818 ], [ 144.742676, 13.266766 ], [ 144.742747, 13.26663 ], [ 144.742807, 13.266559 ], [ 144.742835, 13.266481 ], [ 144.742865, 13.266413 ], [ 144.742898, 13.266264 ], [ 144.742915, 13.266215 ], [ 144.742906, 13.266173 ], [ 144.742909, 13.266137 ], [ 144.742863, 13.266117 ], [ 144.742865, 13.266088 ], [ 144.742867, 13.266075 ], [ 144.74288, 13.26603 ], [ 144.742864, 13.266003 ], [ 144.742825, 13.26597 ], [ 144.742861, 13.265942 ], [ 144.742908, 13.265929 ], [ 144.742942, 13.265877 ], [ 144.742952, 13.265848 ], [ 144.743005, 13.265813 ], [ 144.743026, 13.265784 ], [ 144.743062, 13.265755 ], [ 144.743096, 13.265742 ], [ 144.743129, 13.265716 ], [ 144.743159, 13.265677 ], [ 144.743203, 13.265648 ], [ 144.743226, 13.265662 ], [ 144.743262, 13.265698 ], [ 144.743309, 13.265682 ], [ 144.743346, 13.265647 ], [ 144.743356, 13.265611 ], [ 144.743353, 13.265552 ], [ 144.743386, 13.265543 ], [ 144.74344, 13.265546 ], [ 144.743433, 13.265504 ], [ 144.74338, 13.265471 ], [ 144.743354, 13.265422 ], [ 144.743312, 13.265324 ], [ 144.743342, 13.265308 ], [ 144.743363, 13.265311 ], [ 144.743382, 13.265308 ], [ 144.743392, 13.265328 ], [ 144.743471, 13.265374 ], [ 144.743537, 13.265378 ], [ 144.743601, 13.265369 ], [ 144.743631, 13.265337 ], [ 144.743658, 13.265265 ], [ 144.743642, 13.265229 ], [ 144.743609, 13.26519 ], [ 144.743563, 13.26518 ], [ 144.743533, 13.265189 ], [ 144.743526, 13.265134 ], [ 144.743471, 13.265039 ], [ 144.743495, 13.264984 ], [ 144.743525, 13.264939 ], [ 144.743532, 13.26491 ], [ 144.743439, 13.264844 ], [ 144.743393, 13.264821 ], [ 144.743337, 13.264742 ], [ 144.743311, 13.264716 ], [ 144.743241, 13.264709 ], [ 144.743182, 13.264689 ], [ 144.743072, 13.264684 ], [ 144.743032, 13.264726 ], [ 144.743005, 13.264742 ], [ 144.742969, 13.264742 ], [ 144.742948, 13.264778 ], [ 144.742912, 13.264813 ], [ 144.742855, 13.264809 ], [ 144.742809, 13.264783 ], [ 144.742813, 13.26475 ], [ 144.742793, 13.264711 ], [ 144.74278, 13.264662 ], [ 144.742752, 13.26462 ], [ 144.742745, 13.264593 ], [ 144.742739, 13.264571 ], [ 144.742723, 13.264532 ], [ 144.74272, 13.264502 ], [ 144.742694, 13.264483 ], [ 144.742667, 13.264482 ], [ 144.74265, 13.264521 ], [ 144.742643, 13.26456 ], [ 144.7426, 13.264576 ], [ 144.742521, 13.26452 ], [ 144.742528, 13.264478 ], [ 144.742564, 13.264468 ], [ 144.742591, 13.264446 ], [ 144.742601, 13.264423 ], [ 144.742588, 13.26441 ], [ 144.742496, 13.264357 ], [ 144.742483, 13.264334 ], [ 144.74242, 13.264327 ], [ 144.74237, 13.264304 ], [ 144.742347, 13.264268 ], [ 144.742357, 13.264245 ], [ 144.742387, 13.26422 ], [ 144.742424, 13.26421 ], [ 144.742441, 13.264194 ], [ 144.742421, 13.264184 ], [ 144.742381, 13.264174 ], [ 144.742348, 13.264157 ], [ 144.742365, 13.264125 ], [ 144.742398, 13.264122 ], [ 144.742442, 13.264106 ], [ 144.742492, 13.264061 ], [ 144.742479, 13.264028 ], [ 144.742406, 13.263946 ], [ 144.742417, 13.263914 ], [ 144.742374, 13.263917 ], [ 144.74233, 13.263929 ], [ 144.742301, 13.263884 ], [ 144.742275, 13.263831 ], [ 144.742248, 13.263792 ], [ 144.742215, 13.263776 ], [ 144.742156, 13.263694 ], [ 144.742074, 13.263657 ], [ 144.742044, 13.263628 ], [ 144.742045, 13.263563 ], [ 144.742012, 13.26352 ], [ 144.741962, 13.263497 ], [ 144.741939, 13.263477 ], [ 144.74197, 13.263324 ], [ 144.741928, 13.263236 ], [ 144.741932, 13.263197 ], [ 144.741919, 13.263152 ], [ 144.741933, 13.263116 ], [ 144.741926, 13.26307 ], [ 144.741888, 13.263041 ], [ 144.741845, 13.263018 ], [ 144.741777, 13.262926 ], [ 144.741717, 13.26288 ], [ 144.741654, 13.262843 ], [ 144.741575, 13.26281 ], [ 144.741522, 13.26278 ], [ 144.741489, 13.262751 ], [ 144.741479, 13.262728 ], [ 144.741433, 13.262692 ], [ 144.741374, 13.262678 ], [ 144.741334, 13.262688 ], [ 144.741311, 13.262668 ], [ 144.741314, 13.262642 ], [ 144.741301, 13.262616 ], [ 144.741268, 13.262632 ], [ 144.741267, 13.262674 ], [ 144.74129, 13.262707 ], [ 144.741246, 13.262794 ], [ 144.741219, 13.262872 ], [ 144.741228, 13.262963 ], [ 144.741224, 13.26309 ], [ 144.741163, 13.263207 ], [ 144.741106, 13.263242 ], [ 144.741046, 13.263254 ], [ 144.740943, 13.26326 ], [ 144.740884, 13.26324 ], [ 144.740837, 13.26323 ], [ 144.740748, 13.263219 ], [ 144.740571, 13.263221 ], [ 144.740501, 13.26325 ], [ 144.740424, 13.263303 ], [ 144.740412, 13.263289 ], [ 144.740372, 13.263265 ], [ 144.740365, 13.263263 ], [ 144.740315, 13.263251 ], [ 144.740276, 13.263173 ], [ 144.740203, 13.263149 ], [ 144.740154, 13.263107 ], [ 144.740078, 13.263096 ], [ 144.739998, 13.263102 ], [ 144.739921, 13.263114 ], [ 144.73985, 13.263117 ], [ 144.739787, 13.26311 ], [ 144.739714, 13.263119 ], [ 144.739661, 13.263138 ], [ 144.739618, 13.263118 ], [ 144.739488, 13.263068 ], [ 144.739422, 13.263058 ], [ 144.739319, 13.26307 ], [ 144.739249, 13.263086 ], [ 144.739193, 13.263075 ], [ 144.73912, 13.263088 ], [ 144.739046, 13.263107 ], [ 144.738834, 13.263121 ], [ 144.738824, 13.263121 ], [ 144.738717, 13.263123 ], [ 144.738558, 13.263109 ], [ 144.738495, 13.263121 ], [ 144.738405, 13.263117 ], [ 144.738342, 13.263104 ], [ 144.738306, 13.263071 ], [ 144.738277, 13.263028 ], [ 144.738244, 13.262995 ], [ 144.738208, 13.262936 ], [ 144.738192, 13.262887 ], [ 144.738143, 13.262789 ], [ 144.738116, 13.26276 ], [ 144.738093, 13.262756 ], [ 144.73807, 13.262704 ], [ 144.7381, 13.262685 ], [ 144.738121, 13.262666 ], [ 144.738131, 13.26261 ], [ 144.738128, 13.262571 ], [ 144.738098, 13.262532 ], [ 144.738046, 13.26248 ], [ 144.738023, 13.262414 ], [ 144.737918, 13.262348 ], [ 144.737885, 13.262315 ], [ 144.737855, 13.262253 ], [ 144.737793, 13.262217 ], [ 144.737776, 13.262188 ], [ 144.737771, 13.262165 ], [ 144.737755, 13.262132 ], [ 144.737699, 13.262102 ], [ 144.737673, 13.262079 ], [ 144.73764, 13.26202 ], [ 144.73762, 13.262007 ], [ 144.737587, 13.26202 ], [ 144.737547, 13.26202 ], [ 144.73753, 13.262006 ], [ 144.737473, 13.261852 ], [ 144.737446, 13.261778 ], [ 144.737398, 13.261556 ], [ 144.737366, 13.261458 ], [ 144.737334, 13.261374 ], [ 144.737292, 13.261227 ], [ 144.737273, 13.261116 ], [ 144.737242, 13.260839 ], [ 144.737191, 13.260592 ], [ 144.737189, 13.260452 ], [ 144.73718, 13.260377 ], [ 144.737178, 13.260282 ], [ 144.737269, 13.260104 ], [ 144.737299, 13.260072 ], [ 144.737346, 13.26003 ], [ 144.73738, 13.259943 ], [ 144.737407, 13.259897 ], [ 144.737441, 13.259855 ], [ 144.737471, 13.259797 ], [ 144.737521, 13.259752 ], [ 144.737571, 13.259733 ], [ 144.737624, 13.25974 ], [ 144.737651, 13.259769 ], [ 144.737684, 13.259792 ], [ 144.737724, 13.259793 ], [ 144.737774, 13.259777 ], [ 144.737811, 13.259725 ], [ 144.737818, 13.259683 ], [ 144.737795, 13.25965 ], [ 144.737752, 13.259624 ], [ 144.737699, 13.2596 ], [ 144.737682, 13.259571 ], [ 144.737673, 13.259532 ], [ 144.737647, 13.259489 ], [ 144.737644, 13.259447 ], [ 144.737679, 13.259384 ], [ 144.737697, 13.259379 ], [ 144.737751, 13.259373 ], [ 144.737791, 13.259348 ], [ 144.737811, 13.259299 ], [ 144.737795, 13.25926 ], [ 144.73783, 13.25911 ], [ 144.7378, 13.259042 ], [ 144.737764, 13.259006 ], [ 144.737701, 13.258992 ], [ 144.737618, 13.258995 ], [ 144.737499, 13.258981 ], [ 144.737259, 13.258982 ], [ 144.737166, 13.258987 ], [ 144.737067, 13.258986 ], [ 144.737, 13.259031 ], [ 144.736943, 13.259041 ], [ 144.736757, 13.259088 ], [ 144.736677, 13.259116 ], [ 144.736487, 13.259196 ], [ 144.736467, 13.259193 ], [ 144.736464, 13.25916 ], [ 144.736438, 13.259121 ], [ 144.736371, 13.259117 ], [ 144.736312, 13.259061 ], [ 144.736276, 13.259041 ], [ 144.736252, 13.259054 ], [ 144.736223, 13.259051 ], [ 144.736151, 13.25892 ], [ 144.736131, 13.258868 ], [ 144.736122, 13.258825 ], [ 144.736092, 13.258805 ], [ 144.736072, 13.258773 ], [ 144.73605, 13.258691 ], [ 144.736044, 13.258649 ], [ 144.736017, 13.258632 ], [ 144.736008, 13.258603 ], [ 144.736015, 13.25857 ], [ 144.736038, 13.258528 ], [ 144.736059, 13.25846 ], [ 144.736026, 13.258418 ], [ 144.735986, 13.258375 ], [ 144.735957, 13.258329 ], [ 144.735921, 13.258293 ], [ 144.73588, 13.258244 ], [ 144.735834, 13.258175 ], [ 144.735831, 13.258126 ], [ 144.735811, 13.25809 ], [ 144.735762, 13.258051 ], [ 144.735696, 13.257969 ], [ 144.735677, 13.25794 ], [ 144.73566, 13.257894 ], [ 144.735627, 13.257864 ], [ 144.735619, 13.25786 ], [ 144.735575, 13.257841 ], [ 144.735505, 13.257827 ], [ 144.735465, 13.257795 ], [ 144.735396, 13.257713 ], [ 144.735357, 13.257709 ], [ 144.735313, 13.257748 ], [ 144.73527, 13.257738 ], [ 144.735218, 13.257639 ], [ 144.735179, 13.257571 ], [ 144.735159, 13.257506 ], [ 144.735114, 13.257408 ], [ 144.735061, 13.257329 ], [ 144.734996, 13.257192 ], [ 144.734964, 13.257094 ], [ 144.734958, 13.25699 ], [ 144.734926, 13.256905 ], [ 144.73491, 13.256833 ], [ 144.73486, 13.256771 ], [ 144.734794, 13.256731 ], [ 144.734737, 13.256617 ], [ 144.734715, 13.256558 ], [ 144.734692, 13.256477 ], [ 144.734661, 13.256258 ], [ 144.73466, 13.256115 ], [ 144.73466, 13.256053 ], [ 144.734653, 13.255995 ], [ 144.734608, 13.25588 ], [ 144.734552, 13.255828 ], [ 144.734502, 13.255827 ], [ 144.734485, 13.255866 ], [ 144.734458, 13.255886 ], [ 144.734379, 13.255859 ], [ 144.734247, 13.255776 ], [ 144.734174, 13.255714 ], [ 144.734168, 13.255707 ], [ 144.734099, 13.255632 ], [ 144.73406, 13.255541 ], [ 144.733984, 13.255445 ], [ 144.733938, 13.25537 ], [ 144.733903, 13.255279 ], [ 144.733899, 13.25527 ], [ 144.733857, 13.255184 ], [ 144.733802, 13.255099 ], [ 144.733741, 13.254955 ], [ 144.733673, 13.25486 ], [ 144.733624, 13.254775 ], [ 144.733555, 13.254638 ], [ 144.7335, 13.254514 ], [ 144.733445, 13.254341 ], [ 144.733423, 13.254224 ], [ 144.733401, 13.254071 ], [ 144.733386, 13.253934 ], [ 144.73335, 13.253823 ], [ 144.733321, 13.253758 ], [ 144.733262, 13.253692 ], [ 144.73315, 13.253636 ], [ 144.733129, 13.253626 ], [ 144.733083, 13.253612 ], [ 144.73306, 13.253593 ], [ 144.733044, 13.253514 ], [ 144.733051, 13.253443 ], [ 144.733075, 13.253375 ], [ 144.733082, 13.253342 ], [ 144.733106, 13.253297 ], [ 144.73312, 13.253252 ], [ 144.733114, 13.253144 ], [ 144.733105, 13.253076 ], [ 144.733132, 13.253014 ], [ 144.733086, 13.252939 ], [ 144.733117, 13.252855 ], [ 144.733144, 13.2528 ], [ 144.733197, 13.252784 ], [ 144.73331, 13.252723 ], [ 144.733324, 13.252691 ], [ 144.733268, 13.252664 ], [ 144.733235, 13.252641 ], [ 144.733213, 13.252462 ], [ 144.733217, 13.252371 ], [ 144.733198, 13.252325 ], [ 144.733165, 13.252279 ], [ 144.733132, 13.252269 ], [ 144.733108, 13.252295 ], [ 144.733092, 13.252324 ], [ 144.733058, 13.252343 ], [ 144.733051, 13.252382 ], [ 144.733051, 13.252438 ], [ 144.73301, 13.25248 ], [ 144.732937, 13.252482 ], [ 144.732868, 13.252452 ], [ 144.732862, 13.252439 ], [ 144.732848, 13.252407 ], [ 144.732852, 13.252371 ], [ 144.732819, 13.252341 ], [ 144.732783, 13.252334 ], [ 144.732756, 13.252322 ], [ 144.732756, 13.252304 ], [ 144.732725, 13.252221 ], [ 144.732676, 13.252206 ], [ 144.732588, 13.252234 ], [ 144.732524, 13.252295 ], [ 144.732455, 13.252323 ], [ 144.732353, 13.252322 ], [ 144.732235, 13.252374 ], [ 144.732162, 13.252416 ], [ 144.732084, 13.252411 ], [ 144.731986, 13.252391 ], [ 144.731923, 13.25239 ], [ 144.731761, 13.252465 ], [ 144.731701, 13.252575 ], [ 144.731623, 13.252617 ], [ 144.731593, 13.25266 ], [ 144.731505, 13.252693 ], [ 144.731432, 13.252654 ], [ 144.731354, 13.2526 ], [ 144.731262, 13.252518 ], [ 144.731161, 13.252417 ], [ 144.73106, 13.252282 ], [ 144.730973, 13.252105 ], [ 144.730872, 13.251941 ], [ 144.730748, 13.251639 ], [ 144.730681, 13.251495 ], [ 144.730682, 13.251389 ], [ 144.730697, 13.251332 ], [ 144.730747, 13.251294 ], [ 144.730786, 13.251309 ], [ 144.730819, 13.251343 ], [ 144.730848, 13.251391 ], [ 144.730936, 13.251401 ], [ 144.731088, 13.251326 ], [ 144.73118, 13.251257 ], [ 144.73124, 13.251213 ], [ 144.7313, 13.251142 ], [ 144.731354, 13.25107 ], [ 144.731472, 13.251009 ], [ 144.731496, 13.250981 ], [ 144.731453, 13.250942 ], [ 144.731341, 13.250927 ], [ 144.73115, 13.250968 ], [ 144.731047, 13.251029 ], [ 144.730919, 13.251081 ], [ 144.730664, 13.251048 ], [ 144.730559, 13.251035 ], [ 144.730451, 13.251013 ], [ 144.730403, 13.251004 ], [ 144.730213, 13.25096 ], [ 144.729984, 13.250891 ], [ 144.729832, 13.250833 ], [ 144.729789, 13.250817 ], [ 144.729635, 13.250749 ], [ 144.729252, 13.250578 ], [ 144.728645, 13.250286 ], [ 144.728397, 13.250183 ], [ 144.728091, 13.250047 ], [ 144.727823, 13.249915 ], [ 144.727605, 13.249794 ], [ 144.727406, 13.249644 ], [ 144.727125, 13.249421 ], [ 144.726956, 13.249248 ], [ 144.726835, 13.249094 ], [ 144.726786, 13.248964 ], [ 144.726782, 13.248797 ], [ 144.726798, 13.248627 ], [ 144.726803, 13.248582 ], [ 144.726829, 13.248496 ], [ 144.726883, 13.248377 ], [ 144.726938, 13.248301 ], [ 144.726953, 13.248258 ], [ 144.726988, 13.248186 ], [ 144.727023, 13.248086 ], [ 144.727062, 13.24802 ], [ 144.727068, 13.247938 ], [ 144.727118, 13.247867 ], [ 144.727216, 13.247792 ], [ 144.727276, 13.247677 ], [ 144.727281, 13.247596 ], [ 144.727311, 13.247505 ], [ 144.727322, 13.247396 ], [ 144.727373, 13.2472 ], [ 144.727379, 13.247076 ], [ 144.727399, 13.246976 ], [ 144.727405, 13.246913 ], [ 144.727356, 13.24686 ], [ 144.727382, 13.246722 ], [ 144.727393, 13.246636 ], [ 144.727364, 13.246559 ], [ 144.727325, 13.246506 ], [ 144.727257, 13.246514 ], [ 144.727206, 13.24652 ], [ 144.727113, 13.246485 ], [ 144.726996, 13.246503 ], [ 144.726879, 13.246502 ], [ 144.726704, 13.246443 ], [ 144.726617, 13.246442 ], [ 144.726591, 13.246442 ], [ 144.726469, 13.246479 ], [ 144.726381, 13.246512 ], [ 144.726322, 13.246555 ], [ 144.726336, 13.246607 ], [ 144.726394, 13.246637 ], [ 144.726418, 13.24667 ], [ 144.726437, 13.246728 ], [ 144.726437, 13.246785 ], [ 144.726417, 13.246842 ], [ 144.726358, 13.246875 ], [ 144.726265, 13.246875 ], [ 144.726212, 13.24685 ], [ 144.726129, 13.246845 ], [ 144.726085, 13.246887 ], [ 144.726099, 13.246954 ], [ 144.726122, 13.247007 ], [ 144.726093, 13.24705 ], [ 144.726053, 13.247078 ], [ 144.726053, 13.24714 ], [ 144.726077, 13.247193 ], [ 144.726125, 13.247246 ], [ 144.726188, 13.247295 ], [ 144.726217, 13.247333 ], [ 144.726288, 13.247539 ], [ 144.726293, 13.247616 ], [ 144.726287, 13.247707 ], [ 144.726262, 13.247797 ], [ 144.726251, 13.247869 ], [ 144.726231, 13.247936 ], [ 144.726216, 13.248003 ], [ 144.726181, 13.248084 ], [ 144.726132, 13.248121 ], [ 144.726058, 13.248125 ], [ 144.725931, 13.248143 ], [ 144.72577, 13.248128 ], [ 144.725663, 13.248132 ], [ 144.72561, 13.248102 ], [ 144.725566, 13.248064 ], [ 144.725517, 13.248035 ], [ 144.725459, 13.247981 ], [ 144.725426, 13.247933 ], [ 144.725363, 13.247871 ], [ 144.725276, 13.247798 ], [ 144.725232, 13.247779 ], [ 144.725154, 13.247778 ], [ 144.725043, 13.247819 ], [ 144.724963, 13.247848 ], [ 144.72487, 13.247876 ], [ 144.724816, 13.247914 ], [ 144.724767, 13.247913 ], [ 144.724733, 13.247884 ], [ 144.724729, 13.247812 ], [ 144.724749, 13.24777 ], [ 144.724769, 13.247708 ], [ 144.724789, 13.247669 ], [ 144.724799, 13.247641 ], [ 144.724794, 13.247607 ], [ 144.724765, 13.247578 ], [ 144.724735, 13.247543 ], [ 144.724687, 13.24749 ], [ 144.724556, 13.247457 ], [ 144.724522, 13.247433 ], [ 144.724464, 13.247404 ], [ 144.724421, 13.247355 ], [ 144.72448, 13.247313 ], [ 144.724563, 13.247299 ], [ 144.724616, 13.247305 ], [ 144.724656, 13.247257 ], [ 144.724724, 13.247253 ], [ 144.724817, 13.247239 ], [ 144.724905, 13.247188 ], [ 144.724927, 13.247148 ], [ 144.725002, 13.247111 ], [ 144.725141, 13.247106 ], [ 144.725205, 13.246994 ], [ 144.725269, 13.246935 ], [ 144.725285, 13.246855 ], [ 144.725237, 13.246764 ], [ 144.72516, 13.246702 ], [ 144.725157, 13.246625 ], [ 144.725121, 13.246601 ], [ 144.725073, 13.246574 ], [ 144.724965, 13.246571 ], [ 144.724882, 13.246523 ], [ 144.724824, 13.2465 ], [ 144.724784, 13.246522 ], [ 144.724731, 13.246512 ], [ 144.724665, 13.246446 ], [ 144.724615, 13.246396 ], [ 144.724576, 13.246343 ], [ 144.724543, 13.246276 ], [ 144.724504, 13.246247 ], [ 144.724426, 13.246241 ], [ 144.724358, 13.246231 ], [ 144.72427, 13.246206 ], [ 144.724105, 13.246138 ], [ 144.724012, 13.246109 ], [ 144.723802, 13.246121 ], [ 144.723756, 13.246133 ], [ 144.72368, 13.246153 ], [ 144.723558, 13.2462 ], [ 144.723484, 13.246238 ], [ 144.72318, 13.24634 ], [ 144.72315, 13.246351 ], [ 144.723053, 13.246387 ], [ 144.722965, 13.246424 ], [ 144.722872, 13.246443 ], [ 144.722813, 13.246471 ], [ 144.722652, 13.246512 ], [ 144.722588, 13.246536 ], [ 144.722578, 13.246574 ], [ 144.722597, 13.246655 ], [ 144.722616, 13.246708 ], [ 144.72264, 13.246761 ], [ 144.722649, 13.246799 ], [ 144.722629, 13.246823 ], [ 144.722629, 13.246871 ], [ 144.72258, 13.246889 ], [ 144.72257, 13.246856 ], [ 144.722541, 13.246813 ], [ 144.722498, 13.246807 ], [ 144.722448, 13.24686 ], [ 144.722413, 13.246941 ], [ 144.722428, 13.246989 ], [ 144.722466, 13.247008 ], [ 144.722481, 13.247051 ], [ 144.72247, 13.247104 ], [ 144.722479, 13.247252 ], [ 144.722498, 13.2473 ], [ 144.722551, 13.247343 ], [ 144.722546, 13.247372 ], [ 144.722512, 13.247367 ], [ 144.722458, 13.247343 ], [ 144.722415, 13.247318 ], [ 144.722386, 13.247266 ], [ 144.722357, 13.247203 ], [ 144.722353, 13.247146 ], [ 144.722325, 13.24704 ], [ 144.722291, 13.246987 ], [ 144.722252, 13.246954 ], [ 144.722209, 13.246862 ], [ 144.72217, 13.246833 ], [ 144.722116, 13.246847 ], [ 144.722072, 13.246899 ], [ 144.722018, 13.246904 ], [ 144.721975, 13.246875 ], [ 144.721945, 13.246869 ], [ 144.721921, 13.246903 ], [ 144.721911, 13.24695 ], [ 144.721872, 13.246941 ], [ 144.721838, 13.246916 ], [ 144.721793, 13.246959 ], [ 144.721763, 13.247026 ], [ 144.721773, 13.247083 ], [ 144.721806, 13.247141 ], [ 144.721786, 13.247198 ], [ 144.721732, 13.247212 ], [ 144.721703, 13.247202 ], [ 144.721665, 13.247144 ], [ 144.721587, 13.247134 ], [ 144.721523, 13.247133 ], [ 144.721474, 13.247176 ], [ 144.721415, 13.247219 ], [ 144.721346, 13.247279 ], [ 144.721095, 13.247498 ], [ 144.721036, 13.247579 ], [ 144.720986, 13.247683 ], [ 144.720961, 13.247774 ], [ 144.720936, 13.247812 ], [ 144.720892, 13.247807 ], [ 144.72075, 13.247877 ], [ 144.720691, 13.247953 ], [ 144.720656, 13.248034 ], [ 144.720611, 13.248177 ], [ 144.720585, 13.248263 ], [ 144.72058, 13.248354 ], [ 144.720593, 13.248435 ], [ 144.72062, 13.248493 ], [ 144.720673, 13.248503 ], [ 144.720718, 13.248475 ], [ 144.720771, 13.24848 ], [ 144.72081, 13.248509 ], [ 144.720829, 13.248543 ], [ 144.720819, 13.248614 ], [ 144.720847, 13.248777 ], [ 144.720846, 13.248844 ], [ 144.720879, 13.248916 ], [ 144.720918, 13.248979 ], [ 144.720947, 13.249046 ], [ 144.720995, 13.24908 ], [ 144.721014, 13.249137 ], [ 144.721023, 13.249209 ], [ 144.721052, 13.249291 ], [ 144.721017, 13.249352 ], [ 144.720982, 13.249433 ], [ 144.720932, 13.249509 ], [ 144.720873, 13.249576 ], [ 144.72074, 13.249709 ], [ 144.720489, 13.249979 ], [ 144.720346, 13.250116 ], [ 144.720237, 13.25023 ], [ 144.72012, 13.250301 ], [ 144.720031, 13.250348 ], [ 144.719923, 13.250438 ], [ 144.7198, 13.250532 ], [ 144.719682, 13.25066 ], [ 144.719539, 13.250793 ], [ 144.719438, 13.250891 ], [ 144.719404, 13.250925 ], [ 144.719325, 13.251035 ], [ 144.719231, 13.251072 ], [ 144.719197, 13.251129 ], [ 144.719075, 13.251119 ], [ 144.719081, 13.251179 ], [ 144.719043, 13.251261 ], [ 144.718894, 13.251313 ], [ 144.718738, 13.251336 ], [ 144.718545, 13.251207 ], [ 144.718392, 13.251203 ], [ 144.718168, 13.251309 ], [ 144.718051, 13.251508 ], [ 144.717907, 13.251714 ], [ 144.71781, 13.251883 ], [ 144.718051, 13.252212 ], [ 144.718045, 13.252395 ], [ 144.718021, 13.252485 ], [ 144.717979, 13.252583 ], [ 144.717949, 13.252733 ], [ 144.71842, 13.253126 ], [ 144.71842, 13.253469 ], [ 144.718185, 13.253944 ], [ 144.718498, 13.254348 ], [ 144.71853, 13.254745 ], [ 144.718144, 13.255414 ], [ 144.718, 13.256021 ], [ 144.717753, 13.256339 ], [ 144.717798, 13.256692 ], [ 144.717496, 13.25661 ], [ 144.717126, 13.257576 ], [ 144.71721, 13.257772 ], [ 144.717143, 13.257919 ], [ 144.716756, 13.258038 ], [ 144.716504, 13.258115 ], [ 144.715731, 13.258475 ], [ 144.715462, 13.25877 ], [ 144.715411, 13.259146 ], [ 144.715176, 13.259359 ], [ 144.71526, 13.259506 ], [ 144.715462, 13.259473 ], [ 144.715546, 13.25967 ], [ 144.714588, 13.260308 ], [ 144.714218, 13.260308 ], [ 144.713798, 13.260439 ], [ 144.71321, 13.261862 ], [ 144.713159, 13.262124 ], [ 144.713058, 13.262205 ], [ 144.712705, 13.262205 ], [ 144.712386, 13.261927 ], [ 144.712235, 13.26196 ], [ 144.712, 13.262844 ], [ 144.711865, 13.262893 ], [ 144.711378, 13.264513 ], [ 144.710403, 13.265707 ], [ 144.710403, 13.266067 ], [ 144.710252, 13.266345 ], [ 144.710252, 13.266558 ], [ 144.710588, 13.266934 ], [ 144.710453, 13.267277 ], [ 144.710702, 13.267764 ], [ 144.710487, 13.268275 ], [ 144.709932, 13.26893 ], [ 144.709848, 13.269241 ], [ 144.709579, 13.269453 ], [ 144.709511, 13.269727 ], [ 144.709411, 13.269977 ], [ 144.709226, 13.270091 ], [ 144.708861, 13.26989 ], [ 144.708655, 13.269928 ], [ 144.708369, 13.270206 ], [ 144.707798, 13.270239 ], [ 144.707226, 13.269551 ], [ 144.70663, 13.269655 ], [ 144.706268, 13.269783 ], [ 144.70561, 13.269425 ], [ 144.705694, 13.269897 ], [ 144.705188, 13.269979 ], [ 144.705188, 13.270185 ], [ 144.704555, 13.270637 ], [ 144.703584, 13.270863 ], [ 144.703398, 13.271288 ], [ 144.703394, 13.2715 ], [ 144.702904, 13.271613 ], [ 144.702782, 13.271705 ], [ 144.702578, 13.271977 ], [ 144.702402, 13.272034 ], [ 144.702339, 13.27228 ], [ 144.702001, 13.272506 ], [ 144.701916, 13.272794 ], [ 144.701916, 13.27302 ], [ 144.701515, 13.273698 ], [ 144.701515, 13.274026 ], [ 144.701325, 13.274417 ], [ 144.700818, 13.274372 ], [ 144.700587, 13.27417 ], [ 144.700368, 13.27426 ], [ 144.699992, 13.274521 ], [ 144.699869, 13.274701 ], [ 144.699806, 13.27491 ], [ 144.699743, 13.275629 ], [ 144.699595, 13.27569 ], [ 144.699134, 13.276088 ], [ 144.698942, 13.276109 ], [ 144.698819, 13.276035 ], [ 144.69869, 13.276067 ], [ 144.69848, 13.27616 ], [ 144.698261, 13.276275 ], [ 144.697979, 13.276275 ], [ 144.697762, 13.276195 ], [ 144.697627, 13.276201 ], [ 144.69755, 13.276258 ], [ 144.697503, 13.276367 ], [ 144.697439, 13.27647 ], [ 144.697368, 13.276418 ], [ 144.697251, 13.276349 ], [ 144.697221, 13.276481 ], [ 144.697145, 13.276544 ], [ 144.696939, 13.276487 ], [ 144.696822, 13.276601 ], [ 144.696548, 13.276754 ], [ 144.696309, 13.276947 ], [ 144.696111, 13.277167 ], [ 144.695999, 13.277396 ], [ 144.695736, 13.277518 ], [ 144.695506, 13.277596 ], [ 144.695183, 13.277624 ], [ 144.695006, 13.277602 ], [ 144.694871, 13.277539 ], [ 144.694771, 13.277493 ], [ 144.694384, 13.277098 ], [ 144.694202, 13.277097 ], [ 144.694113, 13.277149 ], [ 144.694113, 13.277275 ], [ 144.694131, 13.277419 ], [ 144.694121, 13.277686 ], [ 144.694195, 13.277863 ], [ 144.694108, 13.278065 ], [ 144.693967, 13.27811 ], [ 144.693773, 13.278105 ], [ 144.693661, 13.278058 ], [ 144.693526, 13.277996 ], [ 144.693371, 13.277878 ], [ 144.692762, 13.27886 ], [ 144.691996, 13.281855 ], [ 144.690423, 13.288007 ], [ 144.689737, 13.290711 ], [ 144.689377, 13.292098 ], [ 144.687485, 13.2995 ], [ 144.688378, 13.299979 ], [ 144.694473, 13.303243 ], [ 144.696747, 13.304559 ], [ 144.707003, 13.301888 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "952800", "GEOID10": "66010952800", "NAME10": "9528", "NAMELSAD10": "Census Tract 9528", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1707550, "AWATER10": 0, "INTPTLAT10": "+13.4535139", "INTPTLON10": "+144.8171402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.8081, 13.44974 ], [ 144.80802, 13.44973 ], [ 144.807906, 13.449734 ], [ 144.80758, 13.449745 ], [ 144.807566, 13.4503 ], [ 144.80751, 13.45355 ], [ 144.80752, 13.45362 ], [ 144.8075, 13.4537 ], [ 144.80746, 13.45398 ], [ 144.80745, 13.454164 ], [ 144.80745, 13.45417 ], [ 144.807485, 13.454479 ], [ 144.8075, 13.45461 ], [ 144.8075, 13.454625 ], [ 144.807515, 13.455066 ], [ 144.80752, 13.45519 ], [ 144.807518, 13.455214 ], [ 144.807531, 13.455504 ], [ 144.807571, 13.456377 ], [ 144.807585, 13.456668 ], [ 144.807597, 13.457103 ], [ 144.818467, 13.457005 ], [ 144.820457, 13.456988 ], [ 144.827614, 13.456911 ], [ 144.829488, 13.456892 ], [ 144.82902, 13.45608 ], [ 144.82863, 13.45536 ], [ 144.82826, 13.45479 ], [ 144.82761, 13.4539 ], [ 144.8271, 13.45324 ], [ 144.8265, 13.45242 ], [ 144.82618, 13.452 ], [ 144.82587, 13.45169 ], [ 144.82558, 13.45144 ], [ 144.82525, 13.45122 ], [ 144.82485, 13.45101 ], [ 144.82475, 13.450971 ], [ 144.82438, 13.45083 ], [ 144.82396, 13.4507 ], [ 144.82335, 13.45056 ], [ 144.821684, 13.450106 ], [ 144.82144, 13.45004 ], [ 144.821433, 13.450038 ], [ 144.820679, 13.449847 ], [ 144.82061, 13.44983 ], [ 144.820429, 13.44978 ], [ 144.820182, 13.449712 ], [ 144.81988, 13.44963 ], [ 144.819439, 13.449526 ], [ 144.81924, 13.44948 ], [ 144.81919, 13.44948 ], [ 144.819008, 13.449463 ], [ 144.81854, 13.44942 ], [ 144.818462, 13.44942 ], [ 144.81828, 13.44942 ], [ 144.818194, 13.44942 ], [ 144.817937, 13.44942 ], [ 144.817852, 13.44942 ], [ 144.817668, 13.44942 ], [ 144.817117, 13.44942 ], [ 144.81702, 13.44942 ], [ 144.816934, 13.449421 ], [ 144.816759, 13.449422 ], [ 144.816234, 13.449428 ], [ 144.81606, 13.44943 ], [ 144.815736, 13.449435 ], [ 144.81549, 13.44944 ], [ 144.81481, 13.44945 ], [ 144.814764, 13.44945 ], [ 144.81444, 13.44945 ], [ 144.814375, 13.44945 ], [ 144.814184, 13.44945 ], [ 144.81412, 13.44945 ], [ 144.814037, 13.449447 ], [ 144.813792, 13.449442 ], [ 144.81371, 13.44944 ], [ 144.813188, 13.44944 ], [ 144.811622, 13.44944 ], [ 144.8111, 13.44944 ], [ 144.810996, 13.449438 ], [ 144.810685, 13.449435 ], [ 144.810582, 13.449434 ], [ 144.810505, 13.449433 ], [ 144.810276, 13.44943 ], [ 144.8102, 13.44943 ], [ 144.810093, 13.449432 ], [ 144.80984, 13.44944 ], [ 144.809773, 13.449448 ], [ 144.809667, 13.449462 ], [ 144.8096, 13.44947 ], [ 144.809409, 13.449503 ], [ 144.80937, 13.44951 ], [ 144.80911, 13.44961 ], [ 144.80876, 13.4497 ], [ 144.808658, 13.449718 ], [ 144.80849, 13.44975 ], [ 144.8084, 13.44975 ], [ 144.80834, 13.449748 ], [ 144.80816, 13.449742 ], [ 144.8081, 13.44974 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "952900", "GEOID10": "66010952900", "NAME10": "9529", "NAMELSAD10": "Census Tract 9529", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 6394711, "AWATER10": 0, "INTPTLAT10": "+13.4482147", "INTPTLON10": "+144.8005950" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.785396, 13.443643 ], [ 144.7853, 13.444413 ], [ 144.78511, 13.446387 ], [ 144.785108, 13.446413 ], [ 144.785056, 13.446955 ], [ 144.78504, 13.44714 ], [ 144.784984, 13.447434 ], [ 144.784658, 13.450877 ], [ 144.784295, 13.454557 ], [ 144.784187, 13.458743 ], [ 144.784055, 13.458871 ], [ 144.782373, 13.459721 ], [ 144.781943, 13.460229 ], [ 144.781374, 13.460899 ], [ 144.781322, 13.461258 ], [ 144.78177, 13.461322 ], [ 144.782615, 13.461492 ], [ 144.782945, 13.461558 ], [ 144.783056, 13.461715 ], [ 144.783452, 13.461658 ], [ 144.783647, 13.461495 ], [ 144.783742, 13.461448 ], [ 144.783913, 13.461398 ], [ 144.783928, 13.46139 ], [ 144.783975, 13.461368 ], [ 144.784165, 13.461536 ], [ 144.784306, 13.461414 ], [ 144.784599, 13.461174 ], [ 144.784873, 13.460949 ], [ 144.785081, 13.460803 ], [ 144.785261, 13.460674 ], [ 144.78527, 13.46066 ], [ 144.78537, 13.46056 ], [ 144.78538, 13.460552 ], [ 144.78547, 13.46049 ], [ 144.785539, 13.460468 ], [ 144.78567, 13.460373 ], [ 144.786017, 13.460123 ], [ 144.786055, 13.460122 ], [ 144.786207, 13.460115 ], [ 144.786706, 13.460104 ], [ 144.78676, 13.46006 ], [ 144.78695, 13.45986 ], [ 144.786976, 13.459807 ], [ 144.78702, 13.45972 ], [ 144.78703, 13.45967 ], [ 144.78707, 13.45953 ], [ 144.787089, 13.459507 ], [ 144.78716, 13.45943 ], [ 144.78722, 13.45931 ], [ 144.787234, 13.459186 ], [ 144.78724, 13.45914 ], [ 144.787225, 13.459025 ], [ 144.78722, 13.45898 ], [ 144.78722, 13.45885 ], [ 144.787186, 13.458803 ], [ 144.787158, 13.458763 ], [ 144.787133, 13.458717 ], [ 144.787236, 13.458671 ], [ 144.787728, 13.458448 ], [ 144.78785, 13.458393 ], [ 144.787873, 13.458384 ], [ 144.788107, 13.458281 ], [ 144.78825, 13.458224 ], [ 144.788304, 13.4582 ], [ 144.788414, 13.458159 ], [ 144.788573, 13.458095 ], [ 144.788629, 13.458069 ], [ 144.788799, 13.457966 ], [ 144.788903, 13.457902 ], [ 144.789001, 13.457847 ], [ 144.78959, 13.45754 ], [ 144.790018, 13.457371 ], [ 144.790171, 13.456482 ], [ 144.790606, 13.45632 ], [ 144.790709, 13.45628 ], [ 144.790848, 13.456093 ], [ 144.790989, 13.455976 ], [ 144.791176, 13.455912 ], [ 144.791377, 13.455842 ], [ 144.791949, 13.455668 ], [ 144.792298, 13.455566 ], [ 144.792539, 13.455414 ], [ 144.792761, 13.455724 ], [ 144.792851, 13.455665 ], [ 144.793556, 13.456587 ], [ 144.793645, 13.456712 ], [ 144.793684, 13.457049 ], [ 144.794187, 13.457372 ], [ 144.794656, 13.457511 ], [ 144.794822, 13.457642 ], [ 144.795534, 13.457503 ], [ 144.796141, 13.457367 ], [ 144.796518, 13.457375 ], [ 144.796577, 13.457376 ], [ 144.796642, 13.458108 ], [ 144.797255, 13.458197 ], [ 144.797323, 13.458416 ], [ 144.797929, 13.45822 ], [ 144.798258, 13.458148 ], [ 144.798411, 13.458157 ], [ 144.799149, 13.458098 ], [ 144.799145, 13.457948 ], [ 144.79914, 13.4577 ], [ 144.799177, 13.457503 ], [ 144.79919, 13.45744 ], [ 144.79922, 13.45736 ], [ 144.79926, 13.45726 ], [ 144.799313, 13.457195 ], [ 144.79941, 13.45708 ], [ 144.79957, 13.45698 ], [ 144.79977, 13.45694 ], [ 144.7998, 13.456935 ], [ 144.79999, 13.45691 ], [ 144.800006, 13.456908 ], [ 144.800054, 13.456901 ], [ 144.80007, 13.4569 ], [ 144.80016, 13.45689 ], [ 144.800252, 13.456887 ], [ 144.80047, 13.45688 ], [ 144.80075, 13.45688 ], [ 144.800799, 13.456894 ], [ 144.80085, 13.45691 ], [ 144.80096, 13.45698 ], [ 144.801074, 13.457086 ], [ 144.80111, 13.45712 ], [ 144.80122, 13.45723 ], [ 144.80137, 13.45731 ], [ 144.801464, 13.45731 ], [ 144.80156, 13.45731 ], [ 144.80162, 13.4573 ], [ 144.801736, 13.457292 ], [ 144.802083, 13.457268 ], [ 144.8022, 13.45726 ], [ 144.802254, 13.457256 ], [ 144.802416, 13.457244 ], [ 144.80247, 13.45724 ], [ 144.802587, 13.457231 ], [ 144.80289, 13.45721 ], [ 144.802941, 13.457206 ], [ 144.80306, 13.4572 ], [ 144.803131, 13.457194 ], [ 144.803347, 13.457176 ], [ 144.80342, 13.457171 ], [ 144.80368, 13.45715 ], [ 144.803703, 13.457149 ], [ 144.80422, 13.45713 ], [ 144.804555, 13.457113 ], [ 144.80484, 13.4571 ], [ 144.805437, 13.4571 ], [ 144.806118, 13.457101 ], [ 144.806528, 13.457101 ], [ 144.807597, 13.457103 ], [ 144.807585, 13.456668 ], [ 144.807571, 13.456377 ], [ 144.807531, 13.455504 ], [ 144.807518, 13.455214 ], [ 144.80752, 13.45519 ], [ 144.807515, 13.455066 ], [ 144.8075, 13.454625 ], [ 144.8075, 13.45461 ], [ 144.807485, 13.454479 ], [ 144.80745, 13.45417 ], [ 144.80745, 13.454164 ], [ 144.80746, 13.45398 ], [ 144.8075, 13.4537 ], [ 144.80752, 13.45362 ], [ 144.80751, 13.45355 ], [ 144.807566, 13.4503 ], [ 144.80758, 13.449745 ], [ 144.807906, 13.449734 ], [ 144.80802, 13.44973 ], [ 144.8081, 13.44974 ], [ 144.80816, 13.449742 ], [ 144.80834, 13.449748 ], [ 144.8084, 13.44975 ], [ 144.80849, 13.44975 ], [ 144.808658, 13.449718 ], [ 144.80876, 13.4497 ], [ 144.80911, 13.44961 ], [ 144.80937, 13.44951 ], [ 144.809409, 13.449503 ], [ 144.8096, 13.44947 ], [ 144.809667, 13.449462 ], [ 144.809773, 13.449448 ], [ 144.80984, 13.44944 ], [ 144.810093, 13.449432 ], [ 144.8102, 13.44943 ], [ 144.810276, 13.44943 ], [ 144.810505, 13.449433 ], [ 144.810582, 13.449434 ], [ 144.810685, 13.449435 ], [ 144.810996, 13.449438 ], [ 144.8111, 13.44944 ], [ 144.811622, 13.44944 ], [ 144.813188, 13.44944 ], [ 144.81371, 13.44944 ], [ 144.813792, 13.449442 ], [ 144.814037, 13.449447 ], [ 144.81412, 13.44945 ], [ 144.814184, 13.44945 ], [ 144.814375, 13.44945 ], [ 144.81444, 13.44945 ], [ 144.814764, 13.44945 ], [ 144.81481, 13.44945 ], [ 144.81549, 13.44944 ], [ 144.815736, 13.449435 ], [ 144.81606, 13.44943 ], [ 144.816234, 13.449428 ], [ 144.816759, 13.449422 ], [ 144.816934, 13.449421 ], [ 144.81702, 13.44942 ], [ 144.817117, 13.44942 ], [ 144.817668, 13.44942 ], [ 144.817852, 13.44942 ], [ 144.817937, 13.44942 ], [ 144.818194, 13.44942 ], [ 144.81828, 13.44942 ], [ 144.818462, 13.44942 ], [ 144.81854, 13.44942 ], [ 144.819008, 13.449463 ], [ 144.81919, 13.44948 ], [ 144.81924, 13.44948 ], [ 144.819439, 13.449526 ], [ 144.81988, 13.44963 ], [ 144.820182, 13.449712 ], [ 144.820429, 13.44978 ], [ 144.82061, 13.44983 ], [ 144.820679, 13.449847 ], [ 144.821433, 13.450038 ], [ 144.82144, 13.45004 ], [ 144.821684, 13.450106 ], [ 144.822249, 13.449134 ], [ 144.822275, 13.449085 ], [ 144.824863, 13.444225 ], [ 144.824867, 13.444086 ], [ 144.825029, 13.443897 ], [ 144.825931, 13.442757 ], [ 144.82581, 13.44274 ], [ 144.825697, 13.442704 ], [ 144.825619, 13.442676 ], [ 144.825444, 13.442645 ], [ 144.825311, 13.442525 ], [ 144.825129, 13.442429 ], [ 144.82482, 13.442422 ], [ 144.824583, 13.442362 ], [ 144.824112, 13.4424 ], [ 144.823936, 13.442287 ], [ 144.823873, 13.442258 ], [ 144.823872, 13.442231 ], [ 144.823794, 13.44224 ], [ 144.823739, 13.442256 ], [ 144.823696, 13.442268 ], [ 144.823608, 13.442282 ], [ 144.82355, 13.442257 ], [ 144.823462, 13.442237 ], [ 144.823413, 13.442232 ], [ 144.823383, 13.442284 ], [ 144.82333, 13.442284 ], [ 144.823247, 13.442245 ], [ 144.823193, 13.442235 ], [ 144.823154, 13.442282 ], [ 144.823071, 13.442263 ], [ 144.822988, 13.442271 ], [ 144.822915, 13.442242 ], [ 144.822851, 13.44227 ], [ 144.822792, 13.44227 ], [ 144.822709, 13.442341 ], [ 144.822645, 13.442316 ], [ 144.822587, 13.442287 ], [ 144.822578, 13.442234 ], [ 144.822524, 13.442234 ], [ 144.822475, 13.442267 ], [ 144.822421, 13.44229 ], [ 144.822343, 13.44229 ], [ 144.822279, 13.442304 ], [ 144.822239, 13.442365 ], [ 144.822185, 13.442422 ], [ 144.822154, 13.44243 ], [ 144.822117, 13.442441 ], [ 144.822029, 13.442407 ], [ 144.82201, 13.442378 ], [ 144.821851, 13.442338 ], [ 144.821812, 13.442357 ], [ 144.821763, 13.442323 ], [ 144.821749, 13.442261 ], [ 144.821637, 13.442212 ], [ 144.821569, 13.442192 ], [ 144.821501, 13.442196 ], [ 144.821428, 13.442162 ], [ 144.821355, 13.442114 ], [ 144.821341, 13.442066 ], [ 144.821254, 13.441974 ], [ 144.821191, 13.441931 ], [ 144.821098, 13.44193 ], [ 144.821068, 13.441968 ], [ 144.821024, 13.442015 ], [ 144.821, 13.441972 ], [ 144.820941, 13.441957 ], [ 144.820937, 13.441924 ], [ 144.820907, 13.441914 ], [ 144.820858, 13.441942 ], [ 144.820765, 13.441946 ], [ 144.820668, 13.441945 ], [ 144.820589, 13.441973 ], [ 144.820545, 13.442016 ], [ 144.820496, 13.442039 ], [ 144.820466, 13.442068 ], [ 144.820436, 13.442139 ], [ 144.820397, 13.442187 ], [ 144.820333, 13.442177 ], [ 144.820285, 13.442148 ], [ 144.820231, 13.442181 ], [ 144.820162, 13.442237 ], [ 144.820147, 13.442276 ], [ 144.820014, 13.442337 ], [ 144.819946, 13.44236 ], [ 144.819787, 13.442349 ], [ 144.819685, 13.442276 ], [ 144.819632, 13.442247 ], [ 144.819529, 13.442241 ], [ 144.819505, 13.442203 ], [ 144.819457, 13.442164 ], [ 144.819423, 13.442121 ], [ 144.819325, 13.442115 ], [ 144.819237, 13.442105 ], [ 144.819199, 13.442062 ], [ 144.81914, 13.442047 ], [ 144.819087, 13.442022 ], [ 144.819043, 13.442032 ], [ 144.818993, 13.442065 ], [ 144.818896, 13.442054 ], [ 144.818862, 13.442021 ], [ 144.818813, 13.442015 ], [ 144.818769, 13.442034 ], [ 144.818744, 13.442063 ], [ 144.818719, 13.44211 ], [ 144.818709, 13.442148 ], [ 144.818695, 13.442115 ], [ 144.818661, 13.442062 ], [ 144.818647, 13.442033 ], [ 144.818608, 13.442014 ], [ 144.818574, 13.441946 ], [ 144.818526, 13.441932 ], [ 144.818501, 13.441898 ], [ 144.818453, 13.441869 ], [ 144.818414, 13.441873 ], [ 144.818311, 13.441834 ], [ 144.818278, 13.441786 ], [ 144.81822, 13.441733 ], [ 144.818117, 13.441684 ], [ 144.818098, 13.441641 ], [ 144.81804, 13.441583 ], [ 144.818021, 13.441525 ], [ 144.817977, 13.441492 ], [ 144.817963, 13.441458 ], [ 144.817915, 13.441424 ], [ 144.817873, 13.44143 ], [ 144.817874, 13.441357 ], [ 144.81784, 13.441328 ], [ 144.817796, 13.441308 ], [ 144.817738, 13.441274 ], [ 144.817684, 13.441231 ], [ 144.81768, 13.441183 ], [ 144.817592, 13.44113 ], [ 144.817525, 13.441062 ], [ 144.817452, 13.441018 ], [ 144.817438, 13.440937 ], [ 144.817443, 13.440856 ], [ 144.817341, 13.440836 ], [ 144.817263, 13.440826 ], [ 144.81722, 13.440749 ], [ 144.817309, 13.440582 ], [ 144.817305, 13.440506 ], [ 144.817266, 13.440438 ], [ 144.817267, 13.440352 ], [ 144.817127, 13.440203 ], [ 144.817108, 13.44015 ], [ 144.817074, 13.440092 ], [ 144.817006, 13.440063 ], [ 144.816904, 13.440043 ], [ 144.816865, 13.440019 ], [ 144.816755, 13.440018 ], [ 144.8167, 13.440084 ], [ 144.816662, 13.44007 ], [ 144.816598, 13.440026 ], [ 144.816609, 13.439973 ], [ 144.81525, 13.44033 ], [ 144.80985, 13.44164 ], [ 144.809806, 13.44164 ], [ 144.809674, 13.44164 ], [ 144.80963, 13.44164 ], [ 144.809533, 13.441635 ], [ 144.809245, 13.44162 ], [ 144.809149, 13.441616 ], [ 144.809087, 13.441612 ], [ 144.808901, 13.441603 ], [ 144.80884, 13.4416 ], [ 144.808698, 13.441597 ], [ 144.808272, 13.441592 ], [ 144.80813, 13.44159 ], [ 144.808036, 13.44159 ], [ 144.807754, 13.44159 ], [ 144.80766, 13.44159 ], [ 144.807498, 13.441586 ], [ 144.80722, 13.44158 ], [ 144.807012, 13.44158 ], [ 144.80685, 13.44158 ], [ 144.806732, 13.441577 ], [ 144.806378, 13.44157 ], [ 144.80633, 13.44157 ], [ 144.80626, 13.44157 ], [ 144.806158, 13.44157 ], [ 144.805852, 13.44157 ], [ 144.80575, 13.44157 ], [ 144.8056, 13.441568 ], [ 144.80515, 13.441562 ], [ 144.805, 13.44156 ], [ 144.804889, 13.441558 ], [ 144.804558, 13.441553 ], [ 144.804448, 13.441552 ], [ 144.804412, 13.441551 ], [ 144.804305, 13.44155 ], [ 144.80427, 13.44155 ], [ 144.804186, 13.44155 ], [ 144.803934, 13.44155 ], [ 144.803828, 13.441574 ], [ 144.80385, 13.44155 ], [ 144.803594, 13.441545 ], [ 144.80333, 13.44154 ], [ 144.80299, 13.44154 ], [ 144.802976, 13.44154 ], [ 144.80277, 13.44154 ], [ 144.80264, 13.441535 ], [ 144.80248, 13.44153 ], [ 144.80225, 13.44153 ], [ 144.80212, 13.44153 ], [ 144.802088, 13.44153 ], [ 144.801992, 13.44153 ], [ 144.80196, 13.44153 ], [ 144.80176, 13.441528 ], [ 144.80116, 13.441522 ], [ 144.80096, 13.44152 ], [ 144.800904, 13.44152 ], [ 144.800739, 13.441523 ], [ 144.800684, 13.441524 ], [ 144.800611, 13.441524 ], [ 144.800392, 13.441528 ], [ 144.80032, 13.44153 ], [ 144.800312, 13.44151 ], [ 144.800288, 13.44145 ], [ 144.80028, 13.44143 ], [ 144.800179, 13.441272 ], [ 144.79998, 13.44096 ], [ 144.799863, 13.440808 ], [ 144.79975, 13.44066 ], [ 144.79964, 13.44052 ], [ 144.799603, 13.440481 ], [ 144.799121, 13.439982 ], [ 144.79911, 13.43997 ], [ 144.79894, 13.43984 ], [ 144.798814, 13.439739 ], [ 144.79863, 13.43959 ], [ 144.798424, 13.439457 ], [ 144.79829, 13.43937 ], [ 144.7982, 13.43931 ], [ 144.798055, 13.439237 ], [ 144.7978, 13.43911 ], [ 144.79775, 13.43908 ], [ 144.797637, 13.439034 ], [ 144.79736, 13.43892 ], [ 144.79732, 13.4389 ], [ 144.79706, 13.43883 ], [ 144.796886, 13.438781 ], [ 144.79681, 13.43876 ], [ 144.796356, 13.438666 ], [ 144.79618, 13.43863 ], [ 144.796119, 13.438618 ], [ 144.795939, 13.438582 ], [ 144.79588, 13.43857 ], [ 144.795822, 13.438558 ], [ 144.795648, 13.438522 ], [ 144.79559, 13.43851 ], [ 144.795526, 13.438495 ], [ 144.795334, 13.438453 ], [ 144.79527, 13.43844 ], [ 144.795165, 13.438418 ], [ 144.794853, 13.438352 ], [ 144.79484, 13.43835 ], [ 144.79475, 13.43833 ], [ 144.794445, 13.438272 ], [ 144.79438, 13.43826 ], [ 144.79432, 13.43824 ], [ 144.793958, 13.43817 ], [ 144.793841, 13.438147 ], [ 144.793637, 13.438107 ], [ 144.793534, 13.438088 ], [ 144.793401, 13.438062 ], [ 144.79323, 13.43803 ], [ 144.793132, 13.438011 ], [ 144.792838, 13.437957 ], [ 144.79274, 13.43794 ], [ 144.792721, 13.437936 ], [ 144.792664, 13.437926 ], [ 144.792646, 13.437923 ], [ 144.792631, 13.43792 ], [ 144.792586, 13.437911 ], [ 144.792572, 13.437909 ], [ 144.792551, 13.437905 ], [ 144.792377, 13.438514 ], [ 144.792216, 13.438766 ], [ 144.791779, 13.438866 ], [ 144.79178, 13.43907 ], [ 144.79172, 13.43905 ], [ 144.791583, 13.439082 ], [ 144.79151, 13.4391 ], [ 144.791224, 13.43916 ], [ 144.790733, 13.439755 ], [ 144.78996, 13.44007 ], [ 144.78979, 13.44002 ], [ 144.78968, 13.43996 ], [ 144.78963, 13.43989 ], [ 144.78961, 13.43993 ], [ 144.78959, 13.44 ], [ 144.789593, 13.440039 ], [ 144.78962, 13.44033 ], [ 144.789639, 13.440507 ], [ 144.78965, 13.4406 ], [ 144.78967, 13.44066 ], [ 144.789617, 13.440675 ], [ 144.7896, 13.44068 ], [ 144.78959, 13.44068 ], [ 144.789344, 13.440705 ], [ 144.789263, 13.440714 ], [ 144.789112, 13.440729 ], [ 144.78911, 13.44073 ], [ 144.7888, 13.44077 ], [ 144.78866, 13.440784 ], [ 144.78851, 13.4408 ], [ 144.788113, 13.440828 ], [ 144.788097, 13.440783 ], [ 144.786129, 13.440904 ], [ 144.785749, 13.440882 ], [ 144.785627, 13.441844 ], [ 144.785467, 13.443085 ], [ 144.785396, 13.443643 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "953000", "GEOID10": "66010953000", "NAME10": "9530", "NAMELSAD10": "Census Tract 9530", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3021459, "AWATER10": 0, "INTPTLAT10": "+13.4344233", "INTPTLON10": "+144.8027557" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.792551, 13.437905 ], [ 144.792572, 13.437909 ], [ 144.792586, 13.437911 ], [ 144.792631, 13.43792 ], [ 144.792646, 13.437923 ], [ 144.792664, 13.437926 ], [ 144.792721, 13.437936 ], [ 144.79274, 13.43794 ], [ 144.792838, 13.437957 ], [ 144.793132, 13.438011 ], [ 144.79323, 13.43803 ], [ 144.793401, 13.438062 ], [ 144.793534, 13.438088 ], [ 144.793637, 13.438107 ], [ 144.793841, 13.438147 ], [ 144.793958, 13.43817 ], [ 144.79432, 13.43824 ], [ 144.79438, 13.43826 ], [ 144.794445, 13.438272 ], [ 144.79475, 13.43833 ], [ 144.79484, 13.43835 ], [ 144.794853, 13.438352 ], [ 144.795165, 13.438418 ], [ 144.79527, 13.43844 ], [ 144.795334, 13.438453 ], [ 144.795526, 13.438495 ], [ 144.79559, 13.43851 ], [ 144.795648, 13.438522 ], [ 144.795822, 13.438558 ], [ 144.79588, 13.43857 ], [ 144.795939, 13.438582 ], [ 144.796119, 13.438618 ], [ 144.79618, 13.43863 ], [ 144.796356, 13.438666 ], [ 144.79681, 13.43876 ], [ 144.796886, 13.438781 ], [ 144.79706, 13.43883 ], [ 144.79732, 13.4389 ], [ 144.79736, 13.43892 ], [ 144.797637, 13.439034 ], [ 144.79775, 13.43908 ], [ 144.7978, 13.43911 ], [ 144.798055, 13.439237 ], [ 144.7982, 13.43931 ], [ 144.79829, 13.43937 ], [ 144.798424, 13.439457 ], [ 144.79863, 13.43959 ], [ 144.798814, 13.439739 ], [ 144.79894, 13.43984 ], [ 144.79911, 13.43997 ], [ 144.799121, 13.439982 ], [ 144.799603, 13.440481 ], [ 144.79964, 13.44052 ], [ 144.79975, 13.44066 ], [ 144.799863, 13.440808 ], [ 144.79998, 13.44096 ], [ 144.800179, 13.441272 ], [ 144.80028, 13.44143 ], [ 144.800288, 13.44145 ], [ 144.800312, 13.44151 ], [ 144.80032, 13.44153 ], [ 144.800392, 13.441528 ], [ 144.800611, 13.441524 ], [ 144.800684, 13.441524 ], [ 144.800739, 13.441523 ], [ 144.800904, 13.44152 ], [ 144.80096, 13.44152 ], [ 144.80116, 13.441522 ], [ 144.80176, 13.441528 ], [ 144.80196, 13.44153 ], [ 144.801992, 13.44153 ], [ 144.802088, 13.44153 ], [ 144.80212, 13.44153 ], [ 144.80225, 13.44153 ], [ 144.80248, 13.44153 ], [ 144.80264, 13.441535 ], [ 144.80277, 13.44154 ], [ 144.802976, 13.44154 ], [ 144.80299, 13.44154 ], [ 144.80333, 13.44154 ], [ 144.803594, 13.441545 ], [ 144.80385, 13.44155 ], [ 144.803828, 13.441574 ], [ 144.803934, 13.44155 ], [ 144.804186, 13.44155 ], [ 144.80427, 13.44155 ], [ 144.804305, 13.44155 ], [ 144.804412, 13.441551 ], [ 144.804448, 13.441552 ], [ 144.804558, 13.441553 ], [ 144.804889, 13.441558 ], [ 144.805, 13.44156 ], [ 144.80515, 13.441562 ], [ 144.8056, 13.441568 ], [ 144.80575, 13.44157 ], [ 144.805852, 13.44157 ], [ 144.806158, 13.44157 ], [ 144.80626, 13.44157 ], [ 144.80633, 13.44157 ], [ 144.806378, 13.44157 ], [ 144.806732, 13.441577 ], [ 144.80685, 13.44158 ], [ 144.807012, 13.44158 ], [ 144.80722, 13.44158 ], [ 144.807498, 13.441586 ], [ 144.80766, 13.44159 ], [ 144.807754, 13.44159 ], [ 144.808036, 13.44159 ], [ 144.80813, 13.44159 ], [ 144.808272, 13.441592 ], [ 144.808698, 13.441597 ], [ 144.80884, 13.4416 ], [ 144.808901, 13.441603 ], [ 144.809087, 13.441612 ], [ 144.809149, 13.441616 ], [ 144.809245, 13.44162 ], [ 144.809533, 13.441635 ], [ 144.80963, 13.44164 ], [ 144.809674, 13.44164 ], [ 144.809806, 13.44164 ], [ 144.80985, 13.44164 ], [ 144.81525, 13.44033 ], [ 144.816609, 13.439973 ], [ 144.816609, 13.439902 ], [ 144.816634, 13.439864 ], [ 144.816645, 13.439773 ], [ 144.816601, 13.439758 ], [ 144.816498, 13.439776 ], [ 144.816415, 13.439781 ], [ 144.816391, 13.439728 ], [ 144.816328, 13.439689 ], [ 144.816245, 13.439655 ], [ 144.816056, 13.439524 ], [ 144.816007, 13.439471 ], [ 144.815929, 13.439513 ], [ 144.8159, 13.439518 ], [ 144.815854, 13.439546 ], [ 144.815836, 13.439551 ], [ 144.815797, 13.439493 ], [ 144.815832, 13.43945 ], [ 144.815871, 13.439422 ], [ 144.815886, 13.439374 ], [ 144.815877, 13.439322 ], [ 144.815823, 13.439288 ], [ 144.815692, 13.439287 ], [ 144.815637, 13.439324 ], [ 144.815598, 13.439334 ], [ 144.815564, 13.439305 ], [ 144.815545, 13.439237 ], [ 144.815517, 13.439194 ], [ 144.815502, 13.439146 ], [ 144.815551, 13.439113 ], [ 144.815571, 13.439085 ], [ 144.815587, 13.439018 ], [ 144.815631, 13.43898 ], [ 144.815631, 13.438937 ], [ 144.815588, 13.438879 ], [ 144.815527, 13.438836 ], [ 144.81552, 13.438831 ], [ 144.815466, 13.438816 ], [ 144.815296, 13.438786 ], [ 144.815247, 13.438795 ], [ 144.815173, 13.438818 ], [ 144.815129, 13.43878 ], [ 144.815125, 13.438717 ], [ 144.815086, 13.438712 ], [ 144.815018, 13.438697 ], [ 144.81498, 13.438592 ], [ 144.814956, 13.438539 ], [ 144.814927, 13.438505 ], [ 144.814878, 13.438457 ], [ 144.814864, 13.438414 ], [ 144.814835, 13.438361 ], [ 144.814797, 13.438322 ], [ 144.814728, 13.438288 ], [ 144.814709, 13.43825 ], [ 144.814651, 13.438211 ], [ 144.814627, 13.438168 ], [ 144.814578, 13.438144 ], [ 144.814539, 13.438186 ], [ 144.814475, 13.438176 ], [ 144.814466, 13.438147 ], [ 144.814408, 13.438118 ], [ 144.814325, 13.438113 ], [ 144.814291, 13.438084 ], [ 144.814256, 13.438088 ], [ 144.814222, 13.43814 ], [ 144.814197, 13.438159 ], [ 144.814129, 13.438164 ], [ 144.814075, 13.438134 ], [ 144.814027, 13.438072 ], [ 144.813993, 13.438062 ], [ 144.813973, 13.438026 ], [ 144.813989, 13.438015 ], [ 144.814013, 13.437976 ], [ 144.813999, 13.437928 ], [ 144.813955, 13.437894 ], [ 144.813926, 13.437865 ], [ 144.813902, 13.437803 ], [ 144.813898, 13.437707 ], [ 144.813874, 13.43765 ], [ 144.813826, 13.437611 ], [ 144.813802, 13.437582 ], [ 144.813807, 13.43752 ], [ 144.813823, 13.437448 ], [ 144.813857, 13.43741 ], [ 144.813887, 13.437363 ], [ 144.813878, 13.437305 ], [ 144.813854, 13.437262 ], [ 144.81382, 13.437228 ], [ 144.813766, 13.437214 ], [ 144.813722, 13.437223 ], [ 144.813663, 13.437208 ], [ 144.813664, 13.437174 ], [ 144.81364, 13.437141 ], [ 144.813581, 13.437112 ], [ 144.813543, 13.437078 ], [ 144.813533, 13.43703 ], [ 144.813489, 13.437015 ], [ 144.813445, 13.437043 ], [ 144.813391, 13.437053 ], [ 144.813343, 13.437023 ], [ 144.813329, 13.436947 ], [ 144.813329, 13.436899 ], [ 144.81332, 13.436832 ], [ 144.813272, 13.436765 ], [ 144.813204, 13.436735 ], [ 144.813146, 13.436677 ], [ 144.813097, 13.436644 ], [ 144.813068, 13.436586 ], [ 144.813024, 13.436629 ], [ 144.813043, 13.436677 ], [ 144.813013, 13.436695 ], [ 144.812964, 13.436738 ], [ 144.812896, 13.436714 ], [ 144.812851, 13.436617 ], [ 144.812841, 13.436555 ], [ 144.812798, 13.436526 ], [ 144.812759, 13.436488 ], [ 144.812759, 13.436449 ], [ 144.812715, 13.436439 ], [ 144.812672, 13.43641 ], [ 144.812643, 13.436372 ], [ 144.812619, 13.436319 ], [ 144.812531, 13.436251 ], [ 144.812493, 13.436232 ], [ 144.812444, 13.43616 ], [ 144.812435, 13.436121 ], [ 144.812406, 13.436069 ], [ 144.812382, 13.436054 ], [ 144.812372, 13.436006 ], [ 144.812378, 13.435953 ], [ 144.812393, 13.435906 ], [ 144.812408, 13.435892 ], [ 144.812379, 13.435867 ], [ 144.812345, 13.435853 ], [ 144.812277, 13.4358 ], [ 144.812223, 13.435766 ], [ 144.812204, 13.435718 ], [ 144.812141, 13.435636 ], [ 144.812147, 13.435579 ], [ 144.812137, 13.435555 ], [ 144.812103, 13.435521 ], [ 144.812069, 13.435501 ], [ 144.812065, 13.435463 ], [ 144.812075, 13.43542 ], [ 144.812104, 13.435416 ], [ 144.812119, 13.435401 ], [ 144.812144, 13.435387 ], [ 144.812144, 13.435335 ], [ 144.812105, 13.435325 ], [ 144.812066, 13.435348 ], [ 144.812027, 13.435343 ], [ 144.812022, 13.4353 ], [ 144.812032, 13.435267 ], [ 144.812072, 13.435243 ], [ 144.812067, 13.435205 ], [ 144.812038, 13.435166 ], [ 144.812014, 13.435109 ], [ 144.811956, 13.435094 ], [ 144.811912, 13.435094 ], [ 144.811863, 13.435079 ], [ 144.811825, 13.435007 ], [ 144.81182, 13.434964 ], [ 144.811796, 13.434949 ], [ 144.811732, 13.434939 ], [ 144.811704, 13.434891 ], [ 144.811669, 13.434871 ], [ 144.811626, 13.434809 ], [ 144.811597, 13.434785 ], [ 144.811529, 13.434751 ], [ 144.811417, 13.434664 ], [ 144.811364, 13.434654 ], [ 144.811325, 13.434639 ], [ 144.811305, 13.434615 ], [ 144.811266, 13.4346 ], [ 144.811242, 13.434633 ], [ 144.811198, 13.434628 ], [ 144.811144, 13.43459 ], [ 144.811115, 13.434551 ], [ 144.811072, 13.434503 ], [ 144.811058, 13.434474 ], [ 144.811019, 13.434421 ], [ 144.81099, 13.434392 ], [ 144.810947, 13.43433 ], [ 144.810927, 13.434286 ], [ 144.810902, 13.434261 ], [ 144.810885, 13.434252 ], [ 144.810884, 13.434233 ], [ 144.810831, 13.43419 ], [ 144.81087, 13.434166 ], [ 144.810904, 13.434162 ], [ 144.810924, 13.434129 ], [ 144.810934, 13.434086 ], [ 144.810929, 13.434042 ], [ 144.810913, 13.434014 ], [ 144.810859, 13.43397 ], [ 144.810855, 13.433966 ], [ 144.810835, 13.433941 ], [ 144.810757, 13.433898 ], [ 144.810743, 13.433854 ], [ 144.810787, 13.433821 ], [ 144.810803, 13.433774 ], [ 144.810769, 13.433735 ], [ 144.810696, 13.433691 ], [ 144.810613, 13.433686 ], [ 144.81055, 13.433642 ], [ 144.810536, 13.433594 ], [ 144.810482, 13.433537 ], [ 144.810454, 13.433474 ], [ 144.81042, 13.433431 ], [ 144.810381, 13.433407 ], [ 144.810308, 13.433372 ], [ 144.810269, 13.433329 ], [ 144.81024, 13.433271 ], [ 144.810168, 13.433228 ], [ 144.810139, 13.433161 ], [ 144.810115, 13.433127 ], [ 144.810091, 13.433079 ], [ 144.810047, 13.433055 ], [ 144.810057, 13.433002 ], [ 144.810067, 13.432978 ], [ 144.810107, 13.43294 ], [ 144.810083, 13.432873 ], [ 144.810137, 13.432869 ], [ 144.810181, 13.43286 ], [ 144.810191, 13.432812 ], [ 144.810182, 13.432745 ], [ 144.810131, 13.432711 ], [ 144.810146, 13.432639 ], [ 144.810132, 13.432596 ], [ 144.810088, 13.432582 ], [ 144.810005, 13.432581 ], [ 144.809981, 13.432547 ], [ 144.809888, 13.432561 ], [ 144.809864, 13.432494 ], [ 144.809835, 13.432484 ], [ 144.80982, 13.432445 ], [ 144.809821, 13.432421 ], [ 144.809836, 13.432398 ], [ 144.809875, 13.432365 ], [ 144.8099, 13.432331 ], [ 144.80989, 13.432279 ], [ 144.809832, 13.432273 ], [ 144.809797, 13.432292 ], [ 144.809705, 13.432253 ], [ 144.809706, 13.432167 ], [ 144.809677, 13.432109 ], [ 144.809663, 13.432057 ], [ 144.809644, 13.432009 ], [ 144.80963, 13.431875 ], [ 144.809641, 13.431803 ], [ 144.809675, 13.431794 ], [ 144.809661, 13.43176 ], [ 144.809631, 13.431755 ], [ 144.809583, 13.431721 ], [ 144.809598, 13.431688 ], [ 144.809603, 13.431631 ], [ 144.809574, 13.431587 ], [ 144.809535, 13.431568 ], [ 144.809516, 13.43151 ], [ 144.809473, 13.431491 ], [ 144.809468, 13.431443 ], [ 144.809471, 13.431352 ], [ 144.809462, 13.431299 ], [ 144.809428, 13.431275 ], [ 144.809414, 13.431246 ], [ 144.809375, 13.431232 ], [ 144.80937, 13.431198 ], [ 144.809405, 13.431151 ], [ 144.809415, 13.431117 ], [ 144.809396, 13.431093 ], [ 144.809356, 13.431098 ], [ 144.809318, 13.431078 ], [ 144.809333, 13.431021 ], [ 144.809338, 13.430935 ], [ 144.809319, 13.430887 ], [ 144.8093, 13.430868 ], [ 144.809261, 13.430858 ], [ 144.809256, 13.430824 ], [ 144.809257, 13.430705 ], [ 144.809272, 13.430671 ], [ 144.809278, 13.43058 ], [ 144.809259, 13.430561 ], [ 144.80922, 13.430537 ], [ 144.809211, 13.430484 ], [ 144.809206, 13.430412 ], [ 144.809217, 13.43035 ], [ 144.809188, 13.43024 ], [ 144.809199, 13.430183 ], [ 144.809179, 13.430164 ], [ 144.809151, 13.430044 ], [ 144.809162, 13.429958 ], [ 144.809172, 13.429924 ], [ 144.809157, 13.429872 ], [ 144.809226, 13.429839 ], [ 144.809222, 13.429805 ], [ 144.809193, 13.429772 ], [ 144.809183, 13.429728 ], [ 144.80912, 13.429699 ], [ 144.809101, 13.429675 ], [ 144.809077, 13.429618 ], [ 144.809067, 13.429584 ], [ 144.809092, 13.429536 ], [ 144.809043, 13.429526 ], [ 144.80899, 13.429521 ], [ 144.808941, 13.429483 ], [ 144.808946, 13.42944 ], [ 144.808961, 13.429411 ], [ 144.80901, 13.429383 ], [ 144.809025, 13.429345 ], [ 144.808992, 13.429316 ], [ 144.808933, 13.429301 ], [ 144.808875, 13.429276 ], [ 144.808826, 13.429266 ], [ 144.808812, 13.429233 ], [ 144.808827, 13.429221 ], [ 144.808841, 13.429185 ], [ 144.808842, 13.429152 ], [ 144.808817, 13.429123 ], [ 144.808819, 13.429105 ], [ 144.808833, 13.42907 ], [ 144.808789, 13.429051 ], [ 144.808779, 13.429027 ], [ 144.808712, 13.42894 ], [ 144.808688, 13.428892 ], [ 144.808684, 13.428857 ], [ 144.808699, 13.428846 ], [ 144.808742, 13.428826 ], [ 144.808718, 13.428811 ], [ 144.808659, 13.428811 ], [ 144.808596, 13.428777 ], [ 144.808552, 13.428733 ], [ 144.808509, 13.42868 ], [ 144.80849, 13.428623 ], [ 144.808446, 13.42856 ], [ 144.808393, 13.428474 ], [ 144.808345, 13.428411 ], [ 144.808244, 13.428305 ], [ 144.808239, 13.428257 ], [ 144.808244, 13.428224 ], [ 144.808259, 13.428195 ], [ 144.80825, 13.428162 ], [ 144.808225, 13.428142 ], [ 144.808192, 13.428108 ], [ 144.808182, 13.428061 ], [ 144.808148, 13.428051 ], [ 144.808099, 13.428055 ], [ 144.808129, 13.428012 ], [ 144.808134, 13.427955 ], [ 144.808081, 13.427954 ], [ 144.808037, 13.427944 ], [ 144.808023, 13.427887 ], [ 144.807959, 13.427886 ], [ 144.807898, 13.427862 ], [ 144.807864, 13.427819 ], [ 144.807825, 13.427814 ], [ 144.807816, 13.427751 ], [ 144.807836, 13.427732 ], [ 144.807846, 13.427704 ], [ 144.807837, 13.427665 ], [ 144.807793, 13.427641 ], [ 144.807749, 13.427598 ], [ 144.807672, 13.427535 ], [ 144.807604, 13.427439 ], [ 144.807546, 13.427405 ], [ 144.807482, 13.427395 ], [ 144.807438, 13.427413 ], [ 144.807404, 13.427442 ], [ 144.807379, 13.427441 ], [ 144.80737, 13.427422 ], [ 144.807395, 13.427341 ], [ 144.807381, 13.427312 ], [ 144.807332, 13.427259 ], [ 144.807303, 13.427221 ], [ 144.80726, 13.427197 ], [ 144.807215, 13.427225 ], [ 144.807191, 13.42721 ], [ 144.807167, 13.427181 ], [ 144.807123, 13.427162 ], [ 144.807045, 13.427161 ], [ 144.806986, 13.427151 ], [ 144.806952, 13.427127 ], [ 144.806918, 13.427093 ], [ 144.806884, 13.427088 ], [ 144.806821, 13.427054 ], [ 144.806772, 13.427034 ], [ 144.806758, 13.427006 ], [ 144.806744, 13.426991 ], [ 144.806685, 13.426986 ], [ 144.806666, 13.426971 ], [ 144.806656, 13.426938 ], [ 144.806622, 13.426909 ], [ 144.806573, 13.426899 ], [ 144.806544, 13.426918 ], [ 144.806451, 13.426883 ], [ 144.806403, 13.426859 ], [ 144.806329, 13.426882 ], [ 144.80629, 13.426916 ], [ 144.806217, 13.426905 ], [ 144.806158, 13.426886 ], [ 144.806105, 13.426842 ], [ 144.806032, 13.426818 ], [ 144.805969, 13.426808 ], [ 144.805935, 13.426745 ], [ 144.805889, 13.426706 ], [ 144.805865, 13.426692 ], [ 144.805801, 13.426677 ], [ 144.805772, 13.426643 ], [ 144.805773, 13.4266 ], [ 144.805817, 13.426577 ], [ 144.805803, 13.426519 ], [ 144.805759, 13.426466 ], [ 144.805681, 13.426494 ], [ 144.805636, 13.426537 ], [ 144.805626, 13.426575 ], [ 144.805538, 13.426584 ], [ 144.805465, 13.42654 ], [ 144.805383, 13.426506 ], [ 144.805256, 13.42649 ], [ 144.805139, 13.426432 ], [ 144.805056, 13.426431 ], [ 144.804978, 13.426445 ], [ 144.804919, 13.426488 ], [ 144.804821, 13.426501 ], [ 144.804752, 13.426524 ], [ 144.804665, 13.4265 ], [ 144.804582, 13.426485 ], [ 144.804523, 13.426484 ], [ 144.80444, 13.426488 ], [ 144.804406, 13.426469 ], [ 144.804377, 13.426435 ], [ 144.804328, 13.426401 ], [ 144.804206, 13.426434 ], [ 144.804152, 13.426409 ], [ 144.804074, 13.426428 ], [ 144.80399, 13.426523 ], [ 144.803965, 13.426565 ], [ 144.803946, 13.426584 ], [ 144.803898, 13.426575 ], [ 144.803848, 13.42652 ], [ 144.803764, 13.426478 ], [ 144.803694, 13.426464 ], [ 144.803568, 13.426463 ], [ 144.803561, 13.426429 ], [ 144.80347, 13.426407 ], [ 144.803372, 13.426427 ], [ 144.803281, 13.426433 ], [ 144.803253, 13.426474 ], [ 144.803231, 13.426522 ], [ 144.803147, 13.426535 ], [ 144.803056, 13.426527 ], [ 144.802944, 13.426512 ], [ 144.80286, 13.426546 ], [ 144.802839, 13.42658 ], [ 144.802761, 13.426614 ], [ 144.802691, 13.426606 ], [ 144.802621, 13.426612 ], [ 144.802537, 13.426666 ], [ 144.802494, 13.426707 ], [ 144.802431, 13.426734 ], [ 144.802347, 13.42672 ], [ 144.802305, 13.426706 ], [ 144.802221, 13.426725 ], [ 144.802143, 13.426773 ], [ 144.802129, 13.426774 ], [ 144.802031, 13.426785 ], [ 144.801968, 13.426826 ], [ 144.801877, 13.426853 ], [ 144.801803, 13.426831 ], [ 144.801656, 13.426803 ], [ 144.801545, 13.426767 ], [ 144.801482, 13.426733 ], [ 144.801391, 13.426732 ], [ 144.8013, 13.426758 ], [ 144.80118, 13.426778 ], [ 144.801076, 13.42675 ], [ 144.80097, 13.426749 ], [ 144.800872, 13.426775 ], [ 144.800767, 13.426836 ], [ 144.800619, 13.426938 ], [ 144.800549, 13.42693 ], [ 144.800507, 13.426889 ], [ 144.800493, 13.426841 ], [ 144.800494, 13.426779 ], [ 144.800466, 13.426731 ], [ 144.800431, 13.42673 ], [ 144.800382, 13.426764 ], [ 144.800333, 13.426784 ], [ 144.80029, 13.426853 ], [ 144.800276, 13.4269 ], [ 144.800303, 13.426983 ], [ 144.800373, 13.427018 ], [ 144.800352, 13.427038 ], [ 144.800337, 13.427086 ], [ 144.800302, 13.427134 ], [ 144.800253, 13.42714 ], [ 144.800211, 13.42714 ], [ 144.800161, 13.427153 ], [ 144.800133, 13.427167 ], [ 144.800161, 13.427235 ], [ 144.800195, 13.42729 ], [ 144.800111, 13.427262 ], [ 144.799768, 13.427321 ], [ 144.799683, 13.427368 ], [ 144.79964, 13.427436 ], [ 144.799387, 13.427564 ], [ 144.79931, 13.427584 ], [ 144.799246, 13.427632 ], [ 144.799183, 13.427672 ], [ 144.799085, 13.427665 ], [ 144.798994, 13.42763 ], [ 144.7989, 13.427588 ], [ 144.798851, 13.427553 ], [ 144.798739, 13.427586 ], [ 144.798648, 13.427647 ], [ 144.798549, 13.427735 ], [ 144.798457, 13.427837 ], [ 144.79838, 13.42785 ], [ 144.798288, 13.427884 ], [ 144.798218, 13.427924 ], [ 144.798168, 13.428027 ], [ 144.798111, 13.428081 ], [ 144.798102, 13.428117 ], [ 144.798084, 13.428183 ], [ 144.798082, 13.428191 ], [ 144.79807, 13.428389 ], [ 144.798066, 13.428458 ], [ 144.797988, 13.428574 ], [ 144.797833, 13.428607 ], [ 144.797693, 13.428612 ], [ 144.797546, 13.428597 ], [ 144.797428, 13.428555 ], [ 144.797253, 13.428526 ], [ 144.797106, 13.428463 ], [ 144.797057, 13.428447 ], [ 144.79689, 13.428393 ], [ 144.79675, 13.428357 ], [ 144.796723, 13.428295 ], [ 144.796653, 13.428281 ], [ 144.796583, 13.428232 ], [ 144.796499, 13.428197 ], [ 144.796408, 13.42819 ], [ 144.796304, 13.428141 ], [ 144.796171, 13.428057 ], [ 144.796053, 13.427967 ], [ 144.795949, 13.427912 ], [ 144.795712, 13.427745 ], [ 144.795566, 13.427675 ], [ 144.795503, 13.427585 ], [ 144.79544, 13.427592 ], [ 144.795343, 13.427536 ], [ 144.795267, 13.427419 ], [ 144.795106, 13.427356 ], [ 144.794919, 13.427155 ], [ 144.794758, 13.427092 ], [ 144.794717, 13.427023 ], [ 144.794711, 13.42692 ], [ 144.794684, 13.426858 ], [ 144.794621, 13.426817 ], [ 144.794502, 13.426816 ], [ 144.794425, 13.426836 ], [ 144.794412, 13.426832 ], [ 144.79432, 13.426807 ], [ 144.794215, 13.426758 ], [ 144.794125, 13.426675 ], [ 144.794077, 13.426599 ], [ 144.793896, 13.426454 ], [ 144.793819, 13.426405 ], [ 144.793708, 13.426356 ], [ 144.793588, 13.426383 ], [ 144.79349, 13.42643 ], [ 144.793419, 13.426429 ], [ 144.793392, 13.426381 ], [ 144.793357, 13.426372 ], [ 144.793301, 13.426359 ], [ 144.79321, 13.426366 ], [ 144.793154, 13.426413 ], [ 144.793104, 13.426488 ], [ 144.79302, 13.426528 ], [ 144.792942, 13.42652 ], [ 144.792782, 13.426506 ], [ 144.792693, 13.428087 ], [ 144.792604, 13.430449 ], [ 144.792572, 13.431311 ], [ 144.79256, 13.431807 ], [ 144.792515, 13.433237 ], [ 144.792513, 13.433536 ], [ 144.792516, 13.4347 ], [ 144.79253, 13.43515 ], [ 144.792607, 13.43614 ], [ 144.792659, 13.436159 ], [ 144.792673, 13.436358 ], [ 144.792666, 13.436407 ], [ 144.792671, 13.436471 ], [ 144.79268, 13.43657 ], [ 144.792675, 13.436639 ], [ 144.79267, 13.43672 ], [ 144.792627, 13.436841 ], [ 144.79261, 13.43689 ], [ 144.792605, 13.436907 ], [ 144.792592, 13.436948 ], [ 144.792553, 13.437075 ], [ 144.792541, 13.437117 ], [ 144.792532, 13.437143 ], [ 144.792508, 13.437223 ], [ 144.7925, 13.43725 ], [ 144.79246, 13.437372 ], [ 144.79234, 13.437738 ], [ 144.7923, 13.43786 ], [ 144.792317, 13.437863 ], [ 144.792367, 13.437872 ], [ 144.792385, 13.437875 ], [ 144.792402, 13.437878 ], [ 144.792453, 13.437887 ], [ 144.79247, 13.437891 ], [ 144.79249, 13.437894 ], [ 144.792551, 13.437905 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "955300", "GEOID10": "66010955300", "NAME10": "9553", "NAMELSAD10": "Census Tract 9553", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 16203040, "AWATER10": 0, "INTPTLAT10": "+13.2649590", "INTPTLON10": "+144.6881351" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.6594, 13.240731 ], [ 144.658574, 13.240468 ], [ 144.658131, 13.24019 ], [ 144.656945, 13.239712 ], [ 144.656099, 13.239349 ], [ 144.654376, 13.238356 ], [ 144.653033, 13.237402 ], [ 144.651243, 13.236257 ], [ 144.649839, 13.235575 ], [ 144.648018, 13.234884 ], [ 144.646582, 13.234385 ], [ 144.645604, 13.234093 ], [ 144.644855, 13.233948 ], [ 144.644043, 13.233823 ], [ 144.643461, 13.23376 ], [ 144.643169, 13.233885 ], [ 144.643302, 13.23413 ], [ 144.643606, 13.234385 ], [ 144.643773, 13.234822 ], [ 144.644022, 13.235425 ], [ 144.644647, 13.236112 ], [ 144.645313, 13.236486 ], [ 144.646082, 13.236757 ], [ 144.646873, 13.237173 ], [ 144.64796, 13.237568 ], [ 144.649204, 13.237964 ], [ 144.649752, 13.238201 ], [ 144.651056, 13.238942 ], [ 144.65218, 13.239608 ], [ 144.653595, 13.240398 ], [ 144.654364, 13.240981 ], [ 144.655051, 13.241356 ], [ 144.655893, 13.241716 ], [ 144.656279, 13.242063 ], [ 144.656674, 13.242354 ], [ 144.657201, 13.242623 ], [ 144.65784, 13.242562 ], [ 144.658152, 13.242354 ], [ 144.658485, 13.242001 ], [ 144.659005, 13.241293 ], [ 144.6594, 13.240731 ] ] ], [ [ [ 144.678496, 13.2408 ], [ 144.678496, 13.240663 ], [ 144.678322, 13.240542 ], [ 144.678049, 13.240443 ], [ 144.677457, 13.240253 ], [ 144.676752, 13.240109 ], [ 144.675983, 13.240052 ], [ 144.675288, 13.239935 ], [ 144.674446, 13.239844 ], [ 144.673657, 13.239851 ], [ 144.672822, 13.239836 ], [ 144.672413, 13.239829 ], [ 144.67209, 13.239936 ], [ 144.671999, 13.239954 ], [ 144.671973, 13.240071 ], [ 144.672018, 13.240246 ], [ 144.672291, 13.240276 ], [ 144.673118, 13.240299 ], [ 144.674066, 13.240329 ], [ 144.674992, 13.240398 ], [ 144.675743, 13.24042 ], [ 144.676943, 13.240661 ], [ 144.677836, 13.240792 ], [ 144.678155, 13.240898 ], [ 144.678382, 13.241001 ], [ 144.678496, 13.2408 ] ] ], [ [ [ 144.706732, 13.24419 ], [ 144.706733, 13.244129 ], [ 144.706682, 13.244059 ], [ 144.706577, 13.244018 ], [ 144.706537, 13.244002 ], [ 144.706475, 13.243987 ], [ 144.706395, 13.243987 ], [ 144.706337, 13.244009 ], [ 144.706206, 13.244116 ], [ 144.706124, 13.244193 ], [ 144.706074, 13.244226 ], [ 144.705999, 13.244231 ], [ 144.70596, 13.244244 ], [ 144.705933, 13.244302 ], [ 144.705841, 13.244353 ], [ 144.705779, 13.244387 ], [ 144.705728, 13.244405 ], [ 144.705656, 13.2444 ], [ 144.705615, 13.24442 ], [ 144.705601, 13.244476 ], [ 144.705635, 13.244514 ], [ 144.705677, 13.244547 ], [ 144.705713, 13.244604 ], [ 144.705757, 13.244623 ], [ 144.705779, 13.24466 ], [ 144.705792, 13.244707 ], [ 144.705784, 13.244752 ], [ 144.705727, 13.244791 ], [ 144.70563, 13.24478 ], [ 144.70557, 13.244783 ], [ 144.705488, 13.244812 ], [ 144.705521, 13.244858 ], [ 144.705588, 13.244909 ], [ 144.705657, 13.244945 ], [ 144.705739, 13.244958 ], [ 144.705797, 13.244956 ], [ 144.70587, 13.244956 ], [ 144.705932, 13.244938 ], [ 144.705976, 13.244932 ], [ 144.706059, 13.244884 ], [ 144.706149, 13.244823 ], [ 144.706177, 13.244776 ], [ 144.706237, 13.24474 ], [ 144.706306, 13.244691 ], [ 144.706368, 13.244651 ], [ 144.706466, 13.244607 ], [ 144.706529, 13.244565 ], [ 144.706573, 13.244509 ], [ 144.706629, 13.244442 ], [ 144.706644, 13.24439 ], [ 144.706675, 13.244365 ], [ 144.706726, 13.244291 ], [ 144.706736, 13.244241 ], [ 144.706732, 13.24419 ] ] ], [ [ [ 144.705585, 13.243732 ], [ 144.705449, 13.243761 ], [ 144.705421, 13.243815 ], [ 144.705418, 13.243919 ], [ 144.705525, 13.243984 ], [ 144.70563, 13.243995 ], [ 144.705776, 13.24397 ], [ 144.705896, 13.243928 ], [ 144.70603, 13.243917 ], [ 144.706192, 13.243922 ], [ 144.706308, 13.243915 ], [ 144.706408, 13.243937 ], [ 144.706479, 13.243937 ], [ 144.706597, 13.243966 ], [ 144.706704, 13.244008 ], [ 144.706806, 13.244057 ], [ 144.706873, 13.244086 ], [ 144.706935, 13.244117 ], [ 144.706986, 13.244151 ], [ 144.707066, 13.244144 ], [ 144.707086, 13.244024 ], [ 144.707055, 13.243864 ], [ 144.706993, 13.243804 ], [ 144.706873, 13.243741 ], [ 144.706766, 13.243712 ], [ 144.706326, 13.243708 ], [ 144.705972, 13.243708 ], [ 144.705823, 13.243712 ], [ 144.705585, 13.243732 ] ] ], [ [ [ 144.700934, 13.244807 ], [ 144.700885, 13.244827 ], [ 144.700899, 13.245262 ], [ 144.70095, 13.245334 ], [ 144.701035, 13.245355 ], [ 144.701215, 13.245309 ], [ 144.701282, 13.245265 ], [ 144.70133, 13.245182 ], [ 144.70121, 13.244841 ], [ 144.70111, 13.244812 ], [ 144.700934, 13.244807 ] ] ], [ [ [ 144.708526, 13.243001 ], [ 144.708314, 13.242997 ], [ 144.708269, 13.243055 ], [ 144.70821, 13.243082 ], [ 144.708124, 13.24316 ], [ 144.708092, 13.243273 ], [ 144.708084, 13.243331 ], [ 144.708096, 13.243454 ], [ 144.708098, 13.243491 ], [ 144.708078, 13.243636 ], [ 144.708023, 13.243858 ], [ 144.707997, 13.243912 ], [ 144.708044, 13.244022 ], [ 144.707997, 13.244177 ], [ 144.707956, 13.244208 ], [ 144.707921, 13.244274 ], [ 144.707931, 13.244455 ], [ 144.707997, 13.244709 ], [ 144.708057, 13.245018 ], [ 144.70814, 13.245178 ], [ 144.708237, 13.245255 ], [ 144.708324, 13.2453 ], [ 144.708398, 13.245334 ], [ 144.708475, 13.245337 ], [ 144.708634, 13.245324 ], [ 144.708672, 13.245237 ], [ 144.708648, 13.245203 ], [ 144.708529, 13.245132 ], [ 144.708647, 13.244896 ], [ 144.708662, 13.244817 ], [ 144.708742, 13.244594 ], [ 144.708749, 13.244375 ], [ 144.708738, 13.244211 ], [ 144.708756, 13.24401 ], [ 144.708811, 13.243741 ], [ 144.708868, 13.243684 ], [ 144.70882, 13.243606 ], [ 144.708877, 13.24349 ], [ 144.70887, 13.243363 ], [ 144.708837, 13.24329 ], [ 144.708731, 13.24314 ], [ 144.708606, 13.243056 ], [ 144.708526, 13.243001 ] ] ], [ [ [ 144.697178, 13.244938 ], [ 144.697311, 13.245057 ], [ 144.697403, 13.245136 ], [ 144.697531, 13.245153 ], [ 144.697624, 13.245144 ], [ 144.697713, 13.245068 ], [ 144.697704, 13.244979 ], [ 144.697557, 13.244896 ], [ 144.697311, 13.244708 ], [ 144.697237, 13.244694 ], [ 144.697153, 13.244725 ], [ 144.697084, 13.244795 ], [ 144.697115, 13.244852 ], [ 144.697178, 13.244938 ] ] ], [ [ [ 144.716495, 13.247879 ], [ 144.71666, 13.248116 ], [ 144.716838, 13.248412 ], [ 144.716956, 13.248666 ], [ 144.717057, 13.248837 ], [ 144.717346, 13.248938 ], [ 144.717482, 13.248808 ], [ 144.717589, 13.248613 ], [ 144.717707, 13.24853 ], [ 144.717873, 13.248353 ], [ 144.717928, 13.248002 ], [ 144.717879, 13.247696 ], [ 144.717741, 13.247593 ], [ 144.717636, 13.247371 ], [ 144.717601, 13.247182 ], [ 144.717524, 13.246987 ], [ 144.717447, 13.246874 ], [ 144.717228, 13.246833 ], [ 144.716909, 13.246785 ], [ 144.71672, 13.246697 ], [ 144.716501, 13.246673 ], [ 144.716288, 13.246655 ], [ 144.716163, 13.24672 ], [ 144.716128, 13.24691 ], [ 144.716205, 13.247111 ], [ 144.716423, 13.247612 ], [ 144.716495, 13.247879 ] ] ], [ [ [ 144.665995, 13.285726 ], [ 144.66629, 13.285866 ], [ 144.666485, 13.285907 ], [ 144.666679, 13.285922 ], [ 144.667038, 13.286346 ], [ 144.667888, 13.286563 ], [ 144.668538, 13.286473 ], [ 144.668735, 13.286263 ], [ 144.66892, 13.285927 ], [ 144.668908, 13.285741 ], [ 144.669015, 13.285556 ], [ 144.669401, 13.285465 ], [ 144.669669, 13.285534 ], [ 144.669777, 13.285585 ], [ 144.669959, 13.285525 ], [ 144.670215, 13.285585 ], [ 144.670371, 13.285511 ], [ 144.671333, 13.285202 ], [ 144.671663, 13.285069 ], [ 144.671819, 13.284796 ], [ 144.672162, 13.284883 ], [ 144.672205, 13.284523 ], [ 144.672316, 13.284361 ], [ 144.672485, 13.284223 ], [ 144.672717, 13.284031 ], [ 144.672749, 13.283857 ], [ 144.672536, 13.283699 ], [ 144.672536, 13.283596 ], [ 144.672751, 13.283462 ], [ 144.673182, 13.283558 ], [ 144.673473, 13.283727 ], [ 144.673707, 13.284001 ], [ 144.674047, 13.284178 ], [ 144.674568, 13.284159 ], [ 144.675003, 13.284489 ], [ 144.675162, 13.284569 ], [ 144.675643, 13.284536 ], [ 144.67603, 13.284874 ], [ 144.676154, 13.285142 ], [ 144.677159, 13.285669 ], [ 144.677502, 13.2858 ], [ 144.677847, 13.285983 ], [ 144.678089, 13.286179 ], [ 144.678337, 13.286287 ], [ 144.67889, 13.286833 ], [ 144.678824, 13.283869 ], [ 144.684543, 13.281813 ], [ 144.689235, 13.280127 ], [ 144.69004, 13.279838 ], [ 144.690132, 13.279805 ], [ 144.692762, 13.27886 ], [ 144.693371, 13.277878 ], [ 144.693526, 13.277996 ], [ 144.693661, 13.278058 ], [ 144.693773, 13.278105 ], [ 144.693967, 13.27811 ], [ 144.694108, 13.278065 ], [ 144.694195, 13.277863 ], [ 144.694121, 13.277686 ], [ 144.694131, 13.277419 ], [ 144.694113, 13.277275 ], [ 144.694113, 13.277149 ], [ 144.694202, 13.277097 ], [ 144.694384, 13.277098 ], [ 144.694771, 13.277493 ], [ 144.694871, 13.277539 ], [ 144.695006, 13.277602 ], [ 144.695183, 13.277624 ], [ 144.695506, 13.277596 ], [ 144.695736, 13.277518 ], [ 144.695999, 13.277396 ], [ 144.696111, 13.277167 ], [ 144.696309, 13.276947 ], [ 144.696548, 13.276754 ], [ 144.696822, 13.276601 ], [ 144.696939, 13.276487 ], [ 144.697145, 13.276544 ], [ 144.697221, 13.276481 ], [ 144.697251, 13.276349 ], [ 144.697368, 13.276418 ], [ 144.697439, 13.27647 ], [ 144.697503, 13.276367 ], [ 144.69755, 13.276258 ], [ 144.697627, 13.276201 ], [ 144.697762, 13.276195 ], [ 144.697979, 13.276275 ], [ 144.698261, 13.276275 ], [ 144.69848, 13.27616 ], [ 144.69869, 13.276067 ], [ 144.698819, 13.276035 ], [ 144.698942, 13.276109 ], [ 144.699134, 13.276088 ], [ 144.699595, 13.27569 ], [ 144.699743, 13.275629 ], [ 144.699806, 13.27491 ], [ 144.699869, 13.274701 ], [ 144.699992, 13.274521 ], [ 144.700368, 13.27426 ], [ 144.700587, 13.27417 ], [ 144.700818, 13.274372 ], [ 144.701325, 13.274417 ], [ 144.701515, 13.274026 ], [ 144.701515, 13.273698 ], [ 144.701916, 13.27302 ], [ 144.701916, 13.272794 ], [ 144.702001, 13.272506 ], [ 144.702339, 13.27228 ], [ 144.702402, 13.272034 ], [ 144.702578, 13.271977 ], [ 144.702782, 13.271705 ], [ 144.702904, 13.271613 ], [ 144.703394, 13.2715 ], [ 144.703398, 13.271288 ], [ 144.703584, 13.270863 ], [ 144.704555, 13.270637 ], [ 144.705188, 13.270185 ], [ 144.705188, 13.269979 ], [ 144.705694, 13.269897 ], [ 144.70561, 13.269425 ], [ 144.706268, 13.269783 ], [ 144.70663, 13.269655 ], [ 144.707226, 13.269551 ], [ 144.707798, 13.270239 ], [ 144.708369, 13.270206 ], [ 144.708655, 13.269928 ], [ 144.708861, 13.26989 ], [ 144.709226, 13.270091 ], [ 144.709411, 13.269977 ], [ 144.709511, 13.269727 ], [ 144.709579, 13.269453 ], [ 144.709848, 13.269241 ], [ 144.709932, 13.26893 ], [ 144.710487, 13.268275 ], [ 144.710702, 13.267764 ], [ 144.710453, 13.267277 ], [ 144.710588, 13.266934 ], [ 144.710252, 13.266558 ], [ 144.710252, 13.266345 ], [ 144.710403, 13.266067 ], [ 144.710403, 13.265707 ], [ 144.711378, 13.264513 ], [ 144.711865, 13.262893 ], [ 144.712, 13.262844 ], [ 144.712235, 13.26196 ], [ 144.712386, 13.261927 ], [ 144.712705, 13.262205 ], [ 144.713058, 13.262205 ], [ 144.713159, 13.262124 ], [ 144.71321, 13.261862 ], [ 144.713798, 13.260439 ], [ 144.714218, 13.260308 ], [ 144.714588, 13.260308 ], [ 144.715546, 13.25967 ], [ 144.715462, 13.259473 ], [ 144.71526, 13.259506 ], [ 144.715176, 13.259359 ], [ 144.715411, 13.259146 ], [ 144.715462, 13.25877 ], [ 144.715731, 13.258475 ], [ 144.716504, 13.258115 ], [ 144.716756, 13.258038 ], [ 144.717143, 13.257919 ], [ 144.71721, 13.257772 ], [ 144.717126, 13.257576 ], [ 144.717496, 13.25661 ], [ 144.717798, 13.256692 ], [ 144.717753, 13.256339 ], [ 144.718, 13.256021 ], [ 144.718144, 13.255414 ], [ 144.71853, 13.254745 ], [ 144.718498, 13.254348 ], [ 144.718185, 13.253944 ], [ 144.71842, 13.253469 ], [ 144.71842, 13.253126 ], [ 144.717949, 13.252733 ], [ 144.717979, 13.252583 ], [ 144.718021, 13.252485 ], [ 144.718045, 13.252395 ], [ 144.718051, 13.252212 ], [ 144.71781, 13.251883 ], [ 144.717907, 13.251714 ], [ 144.718051, 13.251508 ], [ 144.718168, 13.251309 ], [ 144.718392, 13.251203 ], [ 144.718545, 13.251207 ], [ 144.718738, 13.251336 ], [ 144.718894, 13.251313 ], [ 144.719043, 13.251261 ], [ 144.719081, 13.251179 ], [ 144.719075, 13.251119 ], [ 144.719065, 13.251085 ], [ 144.719031, 13.251056 ], [ 144.718936, 13.251017 ], [ 144.718817, 13.250968 ], [ 144.718715, 13.250934 ], [ 144.718428, 13.250883 ], [ 144.718388, 13.25087 ], [ 144.718292, 13.250839 ], [ 144.718165, 13.250828 ], [ 144.717956, 13.25075 ], [ 144.717902, 13.25073 ], [ 144.71778, 13.250705 ], [ 144.717649, 13.250671 ], [ 144.717508, 13.250574 ], [ 144.717353, 13.250477 ], [ 144.717242, 13.250366 ], [ 144.717174, 13.250289 ], [ 144.717096, 13.250245 ], [ 144.717004, 13.250153 ], [ 144.716869, 13.250052 ], [ 144.716846, 13.250025 ], [ 144.716782, 13.24995 ], [ 144.716743, 13.249878 ], [ 144.71657, 13.249671 ], [ 144.716529, 13.249532 ], [ 144.716501, 13.249422 ], [ 144.716277, 13.249343 ], [ 144.716112, 13.249313 ], [ 144.71597, 13.249279 ], [ 144.715805, 13.24922 ], [ 144.7158, 13.249214 ], [ 144.715733, 13.249133 ], [ 144.715427, 13.248901 ], [ 144.715297, 13.24878 ], [ 144.715234, 13.248693 ], [ 144.715147, 13.248554 ], [ 144.715095, 13.24842 ], [ 144.715073, 13.248204 ], [ 144.715054, 13.24808 ], [ 144.715006, 13.248051 ], [ 144.714889, 13.24804 ], [ 144.714757, 13.24801 ], [ 144.714538, 13.247946 ], [ 144.714377, 13.247925 ], [ 144.714221, 13.247881 ], [ 144.714095, 13.247818 ], [ 144.713788, 13.247767 ], [ 144.713657, 13.247704 ], [ 144.71357, 13.247671 ], [ 144.713462, 13.24763 ], [ 144.71336, 13.247558 ], [ 144.713083, 13.247421 ], [ 144.712943, 13.247334 ], [ 144.712812, 13.247271 ], [ 144.712719, 13.247241 ], [ 144.712686, 13.24725 ], [ 144.712572, 13.247283 ], [ 144.712508, 13.247359 ], [ 144.712405, 13.24743 ], [ 144.712327, 13.247458 ], [ 144.712268, 13.2475 ], [ 144.712241, 13.247511 ], [ 144.712189, 13.247533 ], [ 144.712172, 13.247549 ], [ 144.712151, 13.247554 ], [ 144.712096, 13.247589 ], [ 144.712012, 13.247641 ], [ 144.711939, 13.247665 ], [ 144.711861, 13.247621 ], [ 144.711774, 13.24761 ], [ 144.711695, 13.247634 ], [ 144.711622, 13.2476 ], [ 144.711539, 13.247618 ], [ 144.711466, 13.247646 ], [ 144.711319, 13.247625 ], [ 144.711144, 13.247595 ], [ 144.71094, 13.247541 ], [ 144.71075, 13.247476 ], [ 144.710497, 13.247389 ], [ 144.710326, 13.247387 ], [ 144.710238, 13.247377 ], [ 144.710199, 13.247372 ], [ 144.710024, 13.247337 ], [ 144.709931, 13.247293 ], [ 144.70988, 13.247275 ], [ 144.709776, 13.247239 ], [ 144.709596, 13.24717 ], [ 144.70945, 13.247088 ], [ 144.709358, 13.247015 ], [ 144.70927, 13.24699 ], [ 144.709134, 13.24697 ], [ 144.708954, 13.246935 ], [ 144.708839, 13.246889 ], [ 144.70872, 13.246842 ], [ 144.708643, 13.246793 ], [ 144.708501, 13.246731 ], [ 144.708474, 13.246719 ], [ 144.708453, 13.24671 ], [ 144.70839, 13.246694 ], [ 144.708375, 13.246691 ], [ 144.708362, 13.246687 ], [ 144.708195, 13.246636 ], [ 144.708146, 13.246641 ], [ 144.708128, 13.246648 ], [ 144.708054, 13.24669 ], [ 144.708, 13.246771 ], [ 144.707975, 13.246842 ], [ 144.707691, 13.246931 ], [ 144.707631, 13.246942 ], [ 144.707598, 13.246949 ], [ 144.70753, 13.246905 ], [ 144.707486, 13.246852 ], [ 144.707458, 13.246761 ], [ 144.707473, 13.246709 ], [ 144.707474, 13.246647 ], [ 144.70746, 13.246541 ], [ 144.707422, 13.246431 ], [ 144.707315, 13.246363 ], [ 144.707145, 13.246314 ], [ 144.706999, 13.246303 ], [ 144.706788, 13.246354 ], [ 144.706761, 13.24634 ], [ 144.706764, 13.246315 ], [ 144.706574, 13.246328 ], [ 144.706457, 13.246279 ], [ 144.706321, 13.246258 ], [ 144.706194, 13.246262 ], [ 144.706076, 13.246304 ], [ 144.705633, 13.246429 ], [ 144.70557, 13.246459 ], [ 144.705486, 13.2465 ], [ 144.705334, 13.246551 ], [ 144.705173, 13.246612 ], [ 144.70504, 13.246653 ], [ 144.704755, 13.246724 ], [ 144.704688, 13.246741 ], [ 144.70439, 13.246829 ], [ 144.704277, 13.246866 ], [ 144.70414, 13.24688 ], [ 144.704008, 13.246898 ], [ 144.703793, 13.2469 ], [ 144.703662, 13.246914 ], [ 144.703631, 13.246914 ], [ 144.703525, 13.246917 ], [ 144.703465, 13.246911 ], [ 144.703393, 13.246873 ], [ 144.70335, 13.246844 ], [ 144.703277, 13.246848 ], [ 144.703227, 13.246876 ], [ 144.703159, 13.24688 ], [ 144.703071, 13.246894 ], [ 144.702927, 13.246907 ], [ 144.70278, 13.246925 ], [ 144.702575, 13.246961 ], [ 144.702458, 13.24697 ], [ 144.702375, 13.246969 ], [ 144.702248, 13.246958 ], [ 144.702028, 13.246994 ], [ 144.701833, 13.247007 ], [ 144.701628, 13.247015 ], [ 144.701501, 13.247033 ], [ 144.701217, 13.24703 ], [ 144.701169, 13.247025 ], [ 144.701095, 13.247072 ], [ 144.70106, 13.24712 ], [ 144.701007, 13.247138 ], [ 144.700958, 13.247138 ], [ 144.700924, 13.247147 ], [ 144.700825, 13.247194 ], [ 144.700723, 13.247207 ], [ 144.70066, 13.247193 ], [ 144.700567, 13.247211 ], [ 144.700469, 13.247239 ], [ 144.700415, 13.247291 ], [ 144.700371, 13.2473 ], [ 144.700316, 13.247322 ], [ 144.700302, 13.247328 ], [ 144.700248, 13.247371 ], [ 144.700208, 13.247423 ], [ 144.700116, 13.247427 ], [ 144.70001, 13.247464 ], [ 144.699966, 13.247511 ], [ 144.699937, 13.247516 ], [ 144.699922, 13.247487 ], [ 144.699903, 13.247468 ], [ 144.699874, 13.247453 ], [ 144.699825, 13.247472 ], [ 144.699785, 13.24751 ], [ 144.699736, 13.247514 ], [ 144.699634, 13.247532 ], [ 144.699477, 13.24754 ], [ 144.69935, 13.247568 ], [ 144.699293, 13.247583 ], [ 144.699213, 13.247605 ], [ 144.699021, 13.247678 ], [ 144.698983, 13.247694 ], [ 144.698816, 13.247778 ], [ 144.698649, 13.247906 ], [ 144.698551, 13.24801 ], [ 144.698457, 13.248067 ], [ 144.698359, 13.248147 ], [ 144.698326, 13.248179 ], [ 144.698236, 13.24827 ], [ 144.698113, 13.248346 ], [ 144.698101, 13.248355 ], [ 144.697862, 13.248535 ], [ 144.697735, 13.248601 ], [ 144.697642, 13.248633 ], [ 144.697568, 13.248642 ], [ 144.697534, 13.248704 ], [ 144.697465, 13.248742 ], [ 144.697396, 13.248774 ], [ 144.697249, 13.248816 ], [ 144.697093, 13.248912 ], [ 144.696854, 13.249061 ], [ 144.696648, 13.249165 ], [ 144.696614, 13.249222 ], [ 144.69655, 13.249269 ], [ 144.696461, 13.249311 ], [ 144.696422, 13.249363 ], [ 144.696348, 13.249387 ], [ 144.696314, 13.249434 ], [ 144.696235, 13.249472 ], [ 144.696181, 13.249529 ], [ 144.696151, 13.249576 ], [ 144.696097, 13.249609 ], [ 144.696063, 13.249647 ], [ 144.696057, 13.249695 ], [ 144.696009, 13.249709 ], [ 144.695935, 13.249718 ], [ 144.695852, 13.249736 ], [ 144.695788, 13.249769 ], [ 144.69571, 13.249787 ], [ 144.695617, 13.249786 ], [ 144.695544, 13.249824 ], [ 144.695485, 13.249881 ], [ 144.695406, 13.249918 ], [ 144.695401, 13.249976 ], [ 144.695347, 13.250004 ], [ 144.695196, 13.249993 ], [ 144.695107, 13.250026 ], [ 144.695044, 13.250044 ], [ 144.694961, 13.250039 ], [ 144.694887, 13.250091 ], [ 144.694799, 13.250119 ], [ 144.69475, 13.25019 ], [ 144.694671, 13.250213 ], [ 144.694544, 13.250269 ], [ 144.694441, 13.250302 ], [ 144.694338, 13.25031 ], [ 144.69427, 13.250334 ], [ 144.694172, 13.250405 ], [ 144.694103, 13.250427 ], [ 144.694074, 13.250437 ], [ 144.694008, 13.250441 ], [ 144.693973, 13.250465 ], [ 144.693934, 13.250512 ], [ 144.69387, 13.250555 ], [ 144.693797, 13.250573 ], [ 144.693743, 13.250578 ], [ 144.693713, 13.250625 ], [ 144.693659, 13.250668 ], [ 144.693615, 13.250696 ], [ 144.693575, 13.250734 ], [ 144.693526, 13.250805 ], [ 144.693502, 13.250781 ], [ 144.693468, 13.250728 ], [ 144.693376, 13.250675 ], [ 144.693303, 13.250664 ], [ 144.693205, 13.250625 ], [ 144.693136, 13.250624 ], [ 144.693098, 13.250624 ], [ 144.69301, 13.250647 ], [ 144.692926, 13.250704 ], [ 144.692907, 13.250752 ], [ 144.692901, 13.250785 ], [ 144.692872, 13.250785 ], [ 144.692842, 13.250828 ], [ 144.692853, 13.250877 ], [ 144.692856, 13.25089 ], [ 144.692827, 13.250899 ], [ 144.692759, 13.250899 ], [ 144.692598, 13.250883 ], [ 144.69253, 13.250873 ], [ 144.692486, 13.250853 ], [ 144.692467, 13.2508 ], [ 144.692438, 13.250762 ], [ 144.692365, 13.250742 ], [ 144.692301, 13.250737 ], [ 144.692243, 13.250765 ], [ 144.692159, 13.250788 ], [ 144.692086, 13.250797 ], [ 144.69192, 13.250776 ], [ 144.691862, 13.250761 ], [ 144.691793, 13.250766 ], [ 144.691769, 13.250789 ], [ 144.69171, 13.250803 ], [ 144.691647, 13.250793 ], [ 144.691618, 13.25078 ], [ 144.691584, 13.250764 ], [ 144.691564, 13.250735 ], [ 144.691516, 13.250696 ], [ 144.691448, 13.250667 ], [ 144.691394, 13.250638 ], [ 144.691292, 13.250618 ], [ 144.691219, 13.250612 ], [ 144.691204, 13.250655 ], [ 144.691174, 13.250688 ], [ 144.691101, 13.250697 ], [ 144.691006, 13.250663 ], [ 144.690968, 13.250619 ], [ 144.690728, 13.250627 ], [ 144.690659, 13.250639 ], [ 144.690596, 13.25065 ], [ 144.690484, 13.250663 ], [ 144.69041, 13.250686 ], [ 144.690342, 13.25069 ], [ 144.690298, 13.250733 ], [ 144.69019, 13.250775 ], [ 144.690102, 13.250779 ], [ 144.690053, 13.250802 ], [ 144.689931, 13.25083 ], [ 144.689877, 13.250849 ], [ 144.689828, 13.250891 ], [ 144.689759, 13.250914 ], [ 144.68972, 13.250905 ], [ 144.689711, 13.250871 ], [ 144.689692, 13.250833 ], [ 144.689652, 13.250851 ], [ 144.689603, 13.250865 ], [ 144.689515, 13.250874 ], [ 144.689442, 13.250907 ], [ 144.689368, 13.25093 ], [ 144.68932, 13.250939 ], [ 144.689217, 13.250938 ], [ 144.689148, 13.250971 ], [ 144.689055, 13.251009 ], [ 144.688933, 13.251096 ], [ 144.688859, 13.25115 ], [ 144.688804, 13.251236 ], [ 144.688789, 13.251322 ], [ 144.688744, 13.251407 ], [ 144.688711, 13.251427 ], [ 144.68869, 13.251416 ], [ 144.688642, 13.251411 ], [ 144.688524, 13.251434 ], [ 144.688501, 13.251443 ], [ 144.688431, 13.251471 ], [ 144.688357, 13.251528 ], [ 144.688304, 13.251553 ], [ 144.688259, 13.251575 ], [ 144.688176, 13.251627 ], [ 144.688126, 13.251708 ], [ 144.688101, 13.25177 ], [ 144.688067, 13.251808 ], [ 144.688017, 13.251855 ], [ 144.687985, 13.251931 ], [ 144.688009, 13.251998 ], [ 144.687964, 13.252041 ], [ 144.687931, 13.252055 ], [ 144.687901, 13.252069 ], [ 144.687877, 13.252045 ], [ 144.687832, 13.252059 ], [ 144.687749, 13.252135 ], [ 144.687674, 13.252277 ], [ 144.687657, 13.252314 ], [ 144.687644, 13.252344 ], [ 144.687624, 13.252401 ], [ 144.687564, 13.25252 ], [ 144.687569, 13.252583 ], [ 144.687534, 13.252601 ], [ 144.687505, 13.252572 ], [ 144.687462, 13.252572 ], [ 144.687446, 13.252634 ], [ 144.687445, 13.25272 ], [ 144.68747, 13.252751 ], [ 144.687479, 13.252763 ], [ 144.687523, 13.252759 ], [ 144.687552, 13.252769 ], [ 144.687567, 13.252822 ], [ 144.687571, 13.252879 ], [ 144.687585, 13.252932 ], [ 144.687604, 13.252975 ], [ 144.687584, 13.253027 ], [ 144.687545, 13.253051 ], [ 144.68753, 13.253103 ], [ 144.687529, 13.253175 ], [ 144.687523, 13.253247 ], [ 144.687528, 13.253299 ], [ 144.687547, 13.253338 ], [ 144.687581, 13.253376 ], [ 144.68757, 13.253477 ], [ 144.687545, 13.253534 ], [ 144.68751, 13.2536 ], [ 144.687466, 13.253638 ], [ 144.687462, 13.253641 ], [ 144.687431, 13.253681 ], [ 144.687402, 13.253705 ], [ 144.687397, 13.253748 ], [ 144.687474, 13.253782 ], [ 144.687469, 13.253853 ], [ 144.687449, 13.253882 ], [ 144.687458, 13.25393 ], [ 144.687492, 13.253978 ], [ 144.687487, 13.254026 ], [ 144.687404, 13.254006 ], [ 144.687336, 13.253996 ], [ 144.687272, 13.254024 ], [ 144.687193, 13.25408 ], [ 144.687149, 13.254152 ], [ 144.687119, 13.254214 ], [ 144.687064, 13.25439 ], [ 144.687039, 13.254442 ], [ 144.687058, 13.254481 ], [ 144.687023, 13.254505 ], [ 144.687004, 13.254485 ], [ 144.686936, 13.254513 ], [ 144.686877, 13.254556 ], [ 144.686822, 13.25466 ], [ 144.686763, 13.254674 ], [ 144.686709, 13.254722 ], [ 144.686713, 13.254789 ], [ 144.686737, 13.254851 ], [ 144.686809, 13.254962 ], [ 144.686818, 13.255024 ], [ 144.686797, 13.255196 ], [ 144.686777, 13.255234 ], [ 144.686743, 13.255267 ], [ 144.686704, 13.255267 ], [ 144.68666, 13.255304 ], [ 144.686619, 13.255448 ], [ 144.686618, 13.255454 ], [ 144.686614, 13.255519 ], [ 144.686584, 13.255581 ], [ 144.686593, 13.255624 ], [ 144.686661, 13.255716 ], [ 144.68667, 13.255778 ], [ 144.68666, 13.255807 ], [ 144.686576, 13.255849 ], [ 144.686557, 13.255877 ], [ 144.686551, 13.255939 ], [ 144.686517, 13.255977 ], [ 144.686463, 13.255939 ], [ 144.686434, 13.255929 ], [ 144.686361, 13.255957 ], [ 144.686318, 13.25598 ], [ 144.686262, 13.256009 ], [ 144.686203, 13.25608 ], [ 144.686178, 13.256132 ], [ 144.686173, 13.256161 ], [ 144.686182, 13.256213 ], [ 144.686172, 13.256242 ], [ 144.686119, 13.256203 ], [ 144.68611, 13.25617 ], [ 144.685998, 13.256111 ], [ 144.685974, 13.256082 ], [ 144.685979, 13.256001 ], [ 144.685985, 13.255939 ], [ 144.685961, 13.255881 ], [ 144.685908, 13.255848 ], [ 144.68582, 13.255828 ], [ 144.685771, 13.255846 ], [ 144.685722, 13.255827 ], [ 144.68564, 13.255783 ], [ 144.685567, 13.255782 ], [ 144.685478, 13.255805 ], [ 144.68541, 13.255843 ], [ 144.685273, 13.255851 ], [ 144.685092, 13.255845 ], [ 144.684996, 13.255795 ], [ 144.684961, 13.255777 ], [ 144.684952, 13.25571 ], [ 144.684914, 13.255585 ], [ 144.684905, 13.255523 ], [ 144.684852, 13.255513 ], [ 144.684817, 13.255551 ], [ 144.684773, 13.255569 ], [ 144.684754, 13.255531 ], [ 144.684734, 13.255502 ], [ 144.68474, 13.255426 ], [ 144.684761, 13.255292 ], [ 144.684792, 13.25513 ], [ 144.684807, 13.255082 ], [ 144.684788, 13.255048 ], [ 144.684744, 13.255062 ], [ 144.684709, 13.255129 ], [ 144.684673, 13.255334 ], [ 144.68461, 13.255726 ], [ 144.684584, 13.255984 ], [ 144.684568, 13.256027 ], [ 144.684529, 13.25606 ], [ 144.6845, 13.256045 ], [ 144.684486, 13.256016 ], [ 144.684507, 13.255806 ], [ 144.684483, 13.255782 ], [ 144.684453, 13.255815 ], [ 144.684447, 13.255954 ], [ 144.684413, 13.255963 ], [ 144.684389, 13.255934 ], [ 144.68435, 13.255862 ], [ 144.684307, 13.255847 ], [ 144.684263, 13.255847 ], [ 144.684248, 13.255813 ], [ 144.684239, 13.25577 ], [ 144.684269, 13.255723 ], [ 144.684264, 13.255694 ], [ 144.684269, 13.255661 ], [ 144.684313, 13.255642 ], [ 144.684348, 13.255609 ], [ 144.684407, 13.255571 ], [ 144.68447, 13.255581 ], [ 144.684534, 13.255572 ], [ 144.684563, 13.255525 ], [ 144.684574, 13.255462 ], [ 144.684604, 13.255338 ], [ 144.684605, 13.255262 ], [ 144.684635, 13.255133 ], [ 144.684661, 13.25498 ], [ 144.684653, 13.25487 ], [ 144.684619, 13.254851 ], [ 144.684579, 13.25487 ], [ 144.684545, 13.254917 ], [ 144.684525, 13.25497 ], [ 144.684529, 13.255032 ], [ 144.684553, 13.255113 ], [ 144.684538, 13.255124 ], [ 144.684537, 13.255194 ], [ 144.684497, 13.255342 ], [ 144.684472, 13.255404 ], [ 144.684437, 13.255442 ], [ 144.684369, 13.255427 ], [ 144.684311, 13.255407 ], [ 144.684252, 13.255378 ], [ 144.684277, 13.25534 ], [ 144.684297, 13.255288 ], [ 144.684283, 13.255249 ], [ 144.684234, 13.25522 ], [ 144.684181, 13.255229 ], [ 144.684157, 13.255153 ], [ 144.684123, 13.2551 ], [ 144.684119, 13.255023 ], [ 144.684109, 13.254984 ], [ 144.684077, 13.254855 ], [ 144.684073, 13.254784 ], [ 144.684035, 13.254678 ], [ 144.684021, 13.254592 ], [ 144.684017, 13.254453 ], [ 144.684003, 13.254377 ], [ 144.684019, 13.254272 ], [ 144.683995, 13.254181 ], [ 144.683947, 13.254147 ], [ 144.683884, 13.254074 ], [ 144.683811, 13.254016 ], [ 144.683763, 13.253944 ], [ 144.683637, 13.253895 ], [ 144.683525, 13.253889 ], [ 144.683471, 13.253918 ], [ 144.683393, 13.253928 ], [ 144.683329, 13.253883 ], [ 144.683163, 13.253881 ], [ 144.683134, 13.253882 ], [ 144.682993, 13.253885 ], [ 144.682875, 13.253931 ], [ 144.682801, 13.254002 ], [ 144.682685, 13.254057 ], [ 144.682683, 13.254059 ], [ 144.682615, 13.254096 ], [ 144.682532, 13.254119 ], [ 144.682409, 13.254204 ], [ 144.682325, 13.254228 ], [ 144.682257, 13.254222 ], [ 144.682209, 13.254207 ], [ 144.682111, 13.254221 ], [ 144.681988, 13.254268 ], [ 144.681876, 13.254319 ], [ 144.681787, 13.254342 ], [ 144.681695, 13.254351 ], [ 144.681582, 13.25435 ], [ 144.681446, 13.254373 ], [ 144.681372, 13.254401 ], [ 144.681269, 13.25437 ], [ 144.681236, 13.254361 ], [ 144.680916, 13.254338 ], [ 144.680831, 13.254333 ], [ 144.680774, 13.254341 ], [ 144.680699, 13.254351 ], [ 144.680625, 13.254379 ], [ 144.68054, 13.254422 ], [ 144.680447, 13.254426 ], [ 144.680407, 13.254421 ], [ 144.68034, 13.254415 ], [ 144.680301, 13.254376 ], [ 144.680169, 13.254375 ], [ 144.680018, 13.254393 ], [ 144.679988, 13.254417 ], [ 144.679944, 13.254464 ], [ 144.679968, 13.254498 ], [ 144.679938, 13.254507 ], [ 144.679821, 13.254496 ], [ 144.679778, 13.254477 ], [ 144.679817, 13.254444 ], [ 144.679818, 13.254358 ], [ 144.679769, 13.254329 ], [ 144.67971, 13.254352 ], [ 144.679618, 13.254332 ], [ 144.679568, 13.254331 ], [ 144.67952, 13.254331 ], [ 144.679325, 13.254301 ], [ 144.679189, 13.25429 ], [ 144.679052, 13.254308 ], [ 144.678925, 13.254283 ], [ 144.678642, 13.254275 ], [ 144.678544, 13.254313 ], [ 144.678441, 13.25436 ], [ 144.678375, 13.254397 ], [ 144.678309, 13.254435 ], [ 144.678313, 13.254497 ], [ 144.678303, 13.25454 ], [ 144.67824, 13.254516 ], [ 144.678157, 13.2545 ], [ 144.678113, 13.254457 ], [ 144.67804, 13.254456 ], [ 144.678001, 13.254494 ], [ 144.677947, 13.254489 ], [ 144.677855, 13.254459 ], [ 144.677777, 13.254392 ], [ 144.677493, 13.254466 ], [ 144.677324, 13.254588 ], [ 144.67716, 13.25484 ], [ 144.677087, 13.254897 ], [ 144.676978, 13.254973 ], [ 144.676895, 13.255067 ], [ 144.676786, 13.255153 ], [ 144.676703, 13.255224 ], [ 144.676575, 13.255351 ], [ 144.676505, 13.255461 ], [ 144.676479, 13.255495 ], [ 144.676441, 13.255546 ], [ 144.676348, 13.255588 ], [ 144.676249, 13.255678 ], [ 144.676087, 13.255796 ], [ 144.675979, 13.255901 ], [ 144.675924, 13.255962 ], [ 144.675968, 13.256025 ], [ 144.675938, 13.256043 ], [ 144.675806, 13.256124 ], [ 144.675796, 13.25612 ], [ 144.675757, 13.256104 ], [ 144.675713, 13.256161 ], [ 144.675654, 13.256223 ], [ 144.675658, 13.25629 ], [ 144.675554, 13.25637 ], [ 144.675491, 13.256413 ], [ 144.675472, 13.256417 ], [ 144.675412, 13.256431 ], [ 144.675329, 13.256492 ], [ 144.67522, 13.256616 ], [ 144.675188, 13.256653 ], [ 144.675126, 13.25673 ], [ 144.675072, 13.256839 ], [ 144.674983, 13.256915 ], [ 144.674909, 13.25701 ], [ 144.674845, 13.257057 ], [ 144.674797, 13.257028 ], [ 144.674747, 13.257023 ], [ 144.674728, 13.257022 ], [ 144.674722, 13.257123 ], [ 144.674766, 13.257205 ], [ 144.674726, 13.257262 ], [ 144.674682, 13.257299 ], [ 144.674646, 13.257333 ], [ 144.674618, 13.257361 ], [ 144.674642, 13.257409 ], [ 144.674597, 13.257499 ], [ 144.674508, 13.257642 ], [ 144.674443, 13.257766 ], [ 144.674428, 13.257789 ], [ 144.674339, 13.257942 ], [ 144.674323, 13.258032 ], [ 144.674303, 13.258082 ], [ 144.674258, 13.258204 ], [ 144.674208, 13.258323 ], [ 144.674149, 13.258418 ], [ 144.67413, 13.258482 ], [ 144.674091, 13.258623 ], [ 144.674084, 13.258646 ], [ 144.674083, 13.258652 ], [ 144.674068, 13.258716 ], [ 144.674063, 13.25874 ], [ 144.674053, 13.258785 ], [ 144.67405, 13.258817 ], [ 144.674042, 13.258914 ], [ 144.674044, 13.258984 ], [ 144.674033, 13.258999 ], [ 144.674016, 13.259045 ], [ 144.673991, 13.25912 ], [ 144.67397, 13.259282 ], [ 144.673934, 13.259444 ], [ 144.673908, 13.259602 ], [ 144.673896, 13.259865 ], [ 144.673902, 13.259957 ], [ 144.673913, 13.260109 ], [ 144.673956, 13.260219 ], [ 144.673989, 13.260325 ], [ 144.674027, 13.260404 ], [ 144.674037, 13.260425 ], [ 144.674105, 13.260488 ], [ 144.674151, 13.260508 ], [ 144.674214, 13.260542 ], [ 144.674228, 13.26059 ], [ 144.674257, 13.260662 ], [ 144.674333, 13.26082 ], [ 144.674347, 13.260906 ], [ 144.674351, 13.261007 ], [ 144.67434, 13.261107 ], [ 144.67432, 13.261198 ], [ 144.674319, 13.261274 ], [ 144.674304, 13.261341 ], [ 144.674245, 13.261379 ], [ 144.674186, 13.261407 ], [ 144.674146, 13.261483 ], [ 144.674141, 13.261536 ], [ 144.674121, 13.261598 ], [ 144.674105, 13.261587 ], [ 144.674078, 13.261545 ], [ 144.674073, 13.261492 ], [ 144.674059, 13.261444 ], [ 144.674006, 13.261386 ], [ 144.673958, 13.261304 ], [ 144.673889, 13.261309 ], [ 144.673855, 13.261351 ], [ 144.673806, 13.261394 ], [ 144.673718, 13.261379 ], [ 144.67368, 13.261384 ], [ 144.67363, 13.261392 ], [ 144.673571, 13.261425 ], [ 144.673497, 13.261458 ], [ 144.673453, 13.261501 ], [ 144.673433, 13.261543 ], [ 144.673477, 13.261577 ], [ 144.67353, 13.261611 ], [ 144.673544, 13.261654 ], [ 144.6735, 13.261673 ], [ 144.673476, 13.261649 ], [ 144.673442, 13.261654 ], [ 144.673427, 13.261696 ], [ 144.673411, 13.261782 ], [ 144.673372, 13.261801 ], [ 144.673357, 13.261849 ], [ 144.673371, 13.261878 ], [ 144.673298, 13.261906 ], [ 144.673239, 13.261943 ], [ 144.673214, 13.261986 ], [ 144.673222, 13.262038 ], [ 144.673228, 13.262072 ], [ 144.673272, 13.262101 ], [ 144.673306, 13.262116 ], [ 144.673305, 13.262221 ], [ 144.673314, 13.26226 ], [ 144.673338, 13.262322 ], [ 144.673396, 13.262351 ], [ 144.67346, 13.262361 ], [ 144.673504, 13.262338 ], [ 144.673553, 13.262338 ], [ 144.673542, 13.262391 ], [ 144.673517, 13.262438 ], [ 144.673478, 13.262481 ], [ 144.67346, 13.262493 ], [ 144.673419, 13.262524 ], [ 144.67337, 13.262528 ], [ 144.673331, 13.262508 ], [ 144.673272, 13.262541 ], [ 144.673241, 13.262564 ], [ 144.673189, 13.262603 ], [ 144.67312, 13.262645 ], [ 144.673105, 13.262652 ], [ 144.673042, 13.262683 ], [ 144.673036, 13.262721 ], [ 144.672963, 13.262725 ], [ 144.672879, 13.262619 ], [ 144.672835, 13.262595 ], [ 144.672733, 13.262584 ], [ 144.672717, 13.262587 ], [ 144.672601, 13.262612 ], [ 144.672558, 13.262617 ], [ 144.672459, 13.26263 ], [ 144.672356, 13.262676 ], [ 144.672283, 13.262743 ], [ 144.672238, 13.262785 ], [ 144.672174, 13.262794 ], [ 144.672096, 13.262774 ], [ 144.672014, 13.262721 ], [ 144.671985, 13.262718 ], [ 144.671867, 13.26271 ], [ 144.67175, 13.262723 ], [ 144.671642, 13.26277 ], [ 144.671573, 13.262841 ], [ 144.671465, 13.262917 ], [ 144.671454, 13.262931 ], [ 144.671376, 13.26304 ], [ 144.671336, 13.263107 ], [ 144.671277, 13.263188 ], [ 144.671199, 13.26323 ], [ 144.671164, 13.263306 ], [ 144.6711, 13.263377 ], [ 144.671079, 13.263454 ], [ 144.671064, 13.263535 ], [ 144.671024, 13.263664 ], [ 144.670875, 13.263849 ], [ 144.670777, 13.26392 ], [ 144.67062, 13.264009 ], [ 144.670556, 13.264056 ], [ 144.670526, 13.264123 ], [ 144.670438, 13.264184 ], [ 144.670253, 13.264272 ], [ 144.670124, 13.264334 ], [ 144.670046, 13.264343 ], [ 144.670021, 13.264391 ], [ 144.669991, 13.264467 ], [ 144.669868, 13.264576 ], [ 144.66976, 13.264651 ], [ 144.669715, 13.264723 ], [ 144.669592, 13.264793 ], [ 144.669411, 13.264863 ], [ 144.669303, 13.264944 ], [ 144.669067, 13.265085 ], [ 144.668935, 13.265151 ], [ 144.668861, 13.265179 ], [ 144.668666, 13.26521 ], [ 144.668641, 13.265267 ], [ 144.668675, 13.265316 ], [ 144.668645, 13.265344 ], [ 144.668537, 13.265396 ], [ 144.668483, 13.265453 ], [ 144.668331, 13.265528 ], [ 144.668262, 13.265575 ], [ 144.668139, 13.265641 ], [ 144.668041, 13.265731 ], [ 144.667918, 13.265816 ], [ 144.667869, 13.265892 ], [ 144.667775, 13.265943 ], [ 144.667687, 13.266 ], [ 144.667659, 13.266032 ], [ 144.66764, 13.266027 ], [ 144.667541, 13.266088 ], [ 144.667428, 13.266163 ], [ 144.667345, 13.266196 ], [ 144.667192, 13.266286 ], [ 144.667104, 13.266328 ], [ 144.666913, 13.266383 ], [ 144.666879, 13.266412 ], [ 144.666815, 13.26643 ], [ 144.666772, 13.266401 ], [ 144.666703, 13.266391 ], [ 144.666645, 13.266367 ], [ 144.666566, 13.266476 ], [ 144.666419, 13.266519 ], [ 144.666336, 13.266545 ], [ 144.666184, 13.266621 ], [ 144.666066, 13.266701 ], [ 144.666021, 13.266772 ], [ 144.665953, 13.266805 ], [ 144.665855, 13.266823 ], [ 144.665752, 13.266875 ], [ 144.66557, 13.266978 ], [ 144.665526, 13.267026 ], [ 144.66553, 13.267093 ], [ 144.6655, 13.267126 ], [ 144.665353, 13.267182 ], [ 144.665231, 13.267267 ], [ 144.665162, 13.267343 ], [ 144.665044, 13.267423 ], [ 144.664926, 13.267474 ], [ 144.664612, 13.267663 ], [ 144.664505, 13.267858 ], [ 144.664478, 13.26791 ], [ 144.66444, 13.267986 ], [ 144.664371, 13.268105 ], [ 144.664281, 13.268291 ], [ 144.664216, 13.268443 ], [ 144.664156, 13.268567 ], [ 144.664067, 13.268705 ], [ 144.664002, 13.268853 ], [ 144.663943, 13.268972 ], [ 144.663759, 13.269266 ], [ 144.66368, 13.26938 ], [ 144.66365, 13.269481 ], [ 144.663595, 13.269614 ], [ 144.663531, 13.269695 ], [ 144.663535, 13.269771 ], [ 144.663263, 13.270065 ], [ 144.663215, 13.270079 ], [ 144.663155, 13.270126 ], [ 144.663081, 13.270207 ], [ 144.663074, 13.270221 ], [ 144.663052, 13.270274 ], [ 144.662933, 13.270425 ], [ 144.662796, 13.270486 ], [ 144.662673, 13.270586 ], [ 144.662555, 13.270675 ], [ 144.662456, 13.270741 ], [ 144.662417, 13.270827 ], [ 144.662348, 13.270903 ], [ 144.662303, 13.270959 ], [ 144.662273, 13.270998 ], [ 144.662165, 13.271073 ], [ 144.662091, 13.271159 ], [ 144.662037, 13.271254 ], [ 144.661973, 13.271311 ], [ 144.661952, 13.27134 ], [ 144.661893, 13.271425 ], [ 144.661898, 13.271497 ], [ 144.66197, 13.27155 ], [ 144.66214, 13.271657 ], [ 144.662232, 13.271724 ], [ 144.662319, 13.271797 ], [ 144.662397, 13.271836 ], [ 144.662421, 13.271893 ], [ 144.662499, 13.27201 ], [ 144.662488, 13.272057 ], [ 144.662441, 13.272179 ], [ 144.662423, 13.272228 ], [ 144.662354, 13.272495 ], [ 144.662338, 13.272682 ], [ 144.662331, 13.272839 ], [ 144.662355, 13.272973 ], [ 144.662397, 13.273165 ], [ 144.662444, 13.273342 ], [ 144.662491, 13.273477 ], [ 144.662573, 13.273607 ], [ 144.662664, 13.27378 ], [ 144.66277, 13.273924 ], [ 144.662862, 13.274063 ], [ 144.662944, 13.274169 ], [ 144.663001, 13.274256 ], [ 144.663064, 13.274338 ], [ 144.663132, 13.27441 ], [ 144.66321, 13.27443 ], [ 144.663272, 13.274493 ], [ 144.663296, 13.274574 ], [ 144.6633, 13.274651 ], [ 144.663403, 13.274777 ], [ 144.66343, 13.27481 ], [ 144.663498, 13.274882 ], [ 144.663564, 13.274873 ], [ 144.663617, 13.274955 ], [ 144.663675, 13.275056 ], [ 144.663703, 13.275157 ], [ 144.663692, 13.275252 ], [ 144.663657, 13.275362 ], [ 144.663617, 13.275452 ], [ 144.663597, 13.275519 ], [ 144.663591, 13.2756 ], [ 144.66363, 13.275667 ], [ 144.663688, 13.275711 ], [ 144.663761, 13.27575 ], [ 144.663765, 13.275756 ], [ 144.663804, 13.275808 ], [ 144.663828, 13.275904 ], [ 144.663812, 13.275994 ], [ 144.663787, 13.276056 ], [ 144.663761, 13.276199 ], [ 144.663712, 13.276242 ], [ 144.663677, 13.276431 ], [ 144.663676, 13.276438 ], [ 144.663685, 13.2765 ], [ 144.663661, 13.276528 ], [ 144.663597, 13.276561 ], [ 144.663543, 13.276594 ], [ 144.663537, 13.276671 ], [ 144.663536, 13.276762 ], [ 144.663531, 13.276833 ], [ 144.663506, 13.27689 ], [ 144.66351, 13.276957 ], [ 144.663582, 13.277035 ], [ 144.663631, 13.277097 ], [ 144.663664, 13.277169 ], [ 144.663663, 13.277177 ], [ 144.663663, 13.277246 ], [ 144.663629, 13.277269 ], [ 144.663584, 13.27736 ], [ 144.663561, 13.27745 ], [ 144.66357, 13.27756 ], [ 144.663647, 13.277638 ], [ 144.663715, 13.277691 ], [ 144.663705, 13.277748 ], [ 144.663665, 13.277829 ], [ 144.66362, 13.277939 ], [ 144.663614, 13.278096 ], [ 144.663544, 13.27821 ], [ 144.66347, 13.278286 ], [ 144.663377, 13.278338 ], [ 144.663279, 13.278375 ], [ 144.663185, 13.278499 ], [ 144.663028, 13.278603 ], [ 144.662966, 13.278676 ], [ 144.662924, 13.278726 ], [ 144.662805, 13.27894 ], [ 144.66275, 13.279049 ], [ 144.66272, 13.27914 ], [ 144.662666, 13.27924 ], [ 144.662571, 13.279397 ], [ 144.662521, 13.279511 ], [ 144.662504, 13.279596 ], [ 144.662475, 13.27975 ], [ 144.662371, 13.279878 ], [ 144.662351, 13.280016 ], [ 144.662296, 13.280092 ], [ 144.662232, 13.280125 ], [ 144.662153, 13.280239 ], [ 144.662088, 13.280411 ], [ 144.662048, 13.28053 ], [ 144.662038, 13.280639 ], [ 144.662031, 13.280721 ], [ 144.66203, 13.280816 ], [ 144.662029, 13.280936 ], [ 144.662047, 13.281032 ], [ 144.662108, 13.281348 ], [ 144.662062, 13.281558 ], [ 144.662061, 13.281673 ], [ 144.662046, 13.281744 ], [ 144.661999, 13.281811 ], [ 144.661997, 13.281818 ], [ 144.661976, 13.281922 ], [ 144.661963, 13.281992 ], [ 144.661946, 13.282293 ], [ 144.661949, 13.282451 ], [ 144.662001, 13.282614 ], [ 144.662014, 13.282796 ], [ 144.662042, 13.282973 ], [ 144.662064, 13.28315 ], [ 144.662143, 13.283548 ], [ 144.662243, 13.283831 ], [ 144.662349, 13.283956 ], [ 144.662429, 13.284019 ], [ 144.662477, 13.28413 ], [ 144.662492, 13.284163 ], [ 144.662534, 13.284288 ], [ 144.662537, 13.284484 ], [ 144.662511, 13.284642 ], [ 144.662466, 13.284799 ], [ 144.662442, 13.284924 ], [ 144.662488, 13.285023 ], [ 144.662629, 13.28532 ], [ 144.662676, 13.285419 ], [ 144.662747, 13.28565 ], [ 144.662846, 13.28566 ], [ 144.662965, 13.285672 ], [ 144.663045, 13.285654 ], [ 144.663233, 13.28573 ], [ 144.663596, 13.285561 ], [ 144.663805, 13.285626 ], [ 144.663879, 13.285649 ], [ 144.664062, 13.285652 ], [ 144.664143, 13.285644 ], [ 144.664519, 13.2857 ], [ 144.664723, 13.28573 ], [ 144.665063, 13.285781 ], [ 144.66524, 13.285807 ], [ 144.66541, 13.285833 ], [ 144.665481, 13.285843 ], [ 144.665552, 13.285854 ], [ 144.665686, 13.28577 ], [ 144.665859, 13.285661 ], [ 144.665995, 13.285726 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "953300", "GEOID10": "66010953300", "NAME10": "9533", "NAMELSAD10": "Census Tract 9533", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2480271, "AWATER10": 0, "INTPTLAT10": "+13.4706718", "INTPTLON10": "+144.7680999" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.76418, 13.466887 ], [ 144.763604, 13.466676 ], [ 144.763619, 13.467165 ], [ 144.761422, 13.466594 ], [ 144.761364, 13.466579 ], [ 144.761395, 13.466736 ], [ 144.761395, 13.466801 ], [ 144.761248, 13.467042 ], [ 144.760865, 13.467392 ], [ 144.760575, 13.467826 ], [ 144.760255, 13.468078 ], [ 144.760107, 13.468402 ], [ 144.760002, 13.468701 ], [ 144.75972, 13.469101 ], [ 144.759591, 13.469342 ], [ 144.759585, 13.469427 ], [ 144.759597, 13.46951 ], [ 144.759601, 13.469626 ], [ 144.759628, 13.469779 ], [ 144.759656, 13.469992 ], [ 144.759663, 13.470081 ], [ 144.759705, 13.470144 ], [ 144.759752, 13.470212 ], [ 144.75981, 13.470312 ], [ 144.759863, 13.470595 ], [ 144.759896, 13.470745 ], [ 144.759904, 13.470792 ], [ 144.759782, 13.470844 ], [ 144.759787, 13.470974 ], [ 144.759804, 13.47111 ], [ 144.759827, 13.471222 ], [ 144.759802, 13.471281 ], [ 144.759734, 13.471295 ], [ 144.759681, 13.471368 ], [ 144.75968, 13.471439 ], [ 144.759709, 13.47154 ], [ 144.75973, 13.471618 ], [ 144.759775, 13.471702 ], [ 144.759771, 13.471772 ], [ 144.759766, 13.471805 ], [ 144.759713, 13.471898 ], [ 144.759682, 13.471922 ], [ 144.759632, 13.471947 ], [ 144.75956, 13.471993 ], [ 144.759553, 13.472064 ], [ 144.759522, 13.472229 ], [ 144.759483, 13.472359 ], [ 144.759472, 13.472499 ], [ 144.759422, 13.472853 ], [ 144.759302, 13.473253 ], [ 144.759257, 13.473322 ], [ 144.759184, 13.473412 ], [ 144.759007, 13.473573 ], [ 144.758892, 13.473678 ], [ 144.758838, 13.473786 ], [ 144.758843, 13.473856 ], [ 144.758796, 13.473977 ], [ 144.758758, 13.474122 ], [ 144.758711, 13.474212 ], [ 144.758645, 13.474283 ], [ 144.758468, 13.474363 ], [ 144.758371, 13.47438 ], [ 144.758409, 13.474466 ], [ 144.758631, 13.474917 ], [ 144.758704, 13.475072 ], [ 144.758775, 13.475188 ], [ 144.758865, 13.475338 ], [ 144.758861, 13.475788 ], [ 144.75886, 13.47593 ], [ 144.758865, 13.476084 ], [ 144.75906, 13.476178 ], [ 144.759034, 13.47655 ], [ 144.758993, 13.476566 ], [ 144.758958, 13.476846 ], [ 144.75927, 13.47707 ], [ 144.759826, 13.477151 ], [ 144.760249, 13.477208 ], [ 144.760764, 13.477101 ], [ 144.760824, 13.477089 ], [ 144.760824, 13.477017 ], [ 144.761349, 13.477027 ], [ 144.761489, 13.476999 ], [ 144.762222, 13.477041 ], [ 144.762283, 13.477058 ], [ 144.762812, 13.477062 ], [ 144.762932, 13.477197 ], [ 144.763045, 13.477319 ], [ 144.763242, 13.47749 ], [ 144.763474, 13.477593 ], [ 144.763671, 13.477698 ], [ 144.76394, 13.477819 ], [ 144.764262, 13.478043 ], [ 144.764451, 13.478174 ], [ 144.764558, 13.478157 ], [ 144.764539, 13.478293 ], [ 144.764667, 13.478382 ], [ 144.76503, 13.478462 ], [ 144.765441, 13.478553 ], [ 144.765817, 13.478577 ], [ 144.766242, 13.478578 ], [ 144.766555, 13.478608 ], [ 144.767059, 13.478705 ], [ 144.767388, 13.479151 ], [ 144.767587, 13.479396 ], [ 144.767948, 13.479432 ], [ 144.768703, 13.479491 ], [ 144.768877, 13.478864 ], [ 144.768906, 13.478379 ], [ 144.768759, 13.477323 ], [ 144.76875, 13.477254 ], [ 144.76859, 13.47678 ], [ 144.76859, 13.47659 ], [ 144.76859, 13.47602 ], [ 144.76859, 13.47583 ], [ 144.768646, 13.47583 ], [ 144.768929, 13.475824 ], [ 144.76977, 13.475809 ], [ 144.77005, 13.475804 ], [ 144.77025, 13.4758 ], [ 144.770455, 13.475797 ], [ 144.771673, 13.475784 ], [ 144.77208, 13.47578 ], [ 144.772322, 13.475778 ], [ 144.773048, 13.475772 ], [ 144.77329, 13.47577 ], [ 144.773725, 13.475763 ], [ 144.77463, 13.47575 ], [ 144.775033, 13.47575 ], [ 144.77547, 13.47575 ], [ 144.775456, 13.475567 ], [ 144.77544, 13.474236 ], [ 144.77544, 13.47418 ], [ 144.775435, 13.474057 ], [ 144.77543, 13.47391 ], [ 144.77543, 13.47369 ], [ 144.77545, 13.47357 ], [ 144.775512, 13.473479 ], [ 144.77554, 13.47344 ], [ 144.77573, 13.47329 ], [ 144.775758, 13.473263 ], [ 144.77584, 13.47319 ], [ 144.775976, 13.473062 ], [ 144.77615, 13.4729 ], [ 144.77637, 13.472661 ], [ 144.77639, 13.47264 ], [ 144.77648, 13.47251 ], [ 144.776582, 13.47236 ], [ 144.77661, 13.47232 ], [ 144.77667, 13.47214 ], [ 144.77667, 13.471833 ], [ 144.77667, 13.47182 ], [ 144.77662, 13.47166 ], [ 144.776594, 13.471625 ], [ 144.776516, 13.471523 ], [ 144.77649, 13.47149 ], [ 144.776425, 13.471396 ], [ 144.7764, 13.47136 ], [ 144.776226, 13.471121 ], [ 144.77616, 13.47103 ], [ 144.776042, 13.470879 ], [ 144.77598, 13.4708 ], [ 144.77587, 13.47059 ], [ 144.7758, 13.4704 ], [ 144.775797, 13.470369 ], [ 144.77578, 13.47018 ], [ 144.775771, 13.470031 ], [ 144.77577, 13.47001 ], [ 144.77571, 13.469587 ], [ 144.77569, 13.46944 ], [ 144.775678, 13.469284 ], [ 144.775642, 13.468816 ], [ 144.77563, 13.46866 ], [ 144.775782, 13.468658 ], [ 144.776238, 13.468652 ], [ 144.77639, 13.46865 ], [ 144.776614, 13.468645 ], [ 144.777289, 13.468633 ], [ 144.7775, 13.46863 ], [ 144.777514, 13.468629 ], [ 144.777609, 13.468625 ], [ 144.777894, 13.468613 ], [ 144.77799, 13.46861 ], [ 144.77777, 13.46844 ], [ 144.77729, 13.4681 ], [ 144.776929, 13.467822 ], [ 144.77672, 13.46766 ], [ 144.77659, 13.46755 ], [ 144.77645, 13.46735 ], [ 144.77631, 13.4671 ], [ 144.77587, 13.46652 ], [ 144.77555, 13.46604 ], [ 144.77518, 13.46552 ], [ 144.77478, 13.46494 ], [ 144.774588, 13.464647 ], [ 144.7744, 13.46436 ], [ 144.7741, 13.46394 ], [ 144.77395, 13.46367 ], [ 144.77389, 13.46353 ], [ 144.77391, 13.46348 ], [ 144.7739, 13.46345 ], [ 144.77384, 13.46338 ], [ 144.773807, 13.463294 ], [ 144.77376, 13.46317 ], [ 144.77363, 13.46285 ], [ 144.773553, 13.462531 ], [ 144.773541, 13.462485 ], [ 144.77349, 13.46227 ], [ 144.773437, 13.462077 ], [ 144.77335, 13.46176 ], [ 144.773304, 13.461492 ], [ 144.77329, 13.46141 ], [ 144.773265, 13.461296 ], [ 144.772961, 13.461075 ], [ 144.772503, 13.460743 ], [ 144.772348, 13.460339 ], [ 144.772325, 13.460337 ], [ 144.772373, 13.46059 ], [ 144.772231, 13.460621 ], [ 144.772145, 13.460848 ], [ 144.771324, 13.461127 ], [ 144.770373, 13.46126 ], [ 144.769432, 13.461371 ], [ 144.76849, 13.461452 ], [ 144.76874, 13.462021 ], [ 144.76927, 13.46199 ], [ 144.769867, 13.462102 ], [ 144.769612, 13.46257 ], [ 144.769204, 13.463529 ], [ 144.768621, 13.463642 ], [ 144.767589, 13.464135 ], [ 144.767716, 13.464716 ], [ 144.7673, 13.464851 ], [ 144.767206, 13.464436 ], [ 144.766746, 13.464896 ], [ 144.766418, 13.464488 ], [ 144.765817, 13.465053 ], [ 144.765873, 13.465682 ], [ 144.765395, 13.466448 ], [ 144.764487, 13.466423 ], [ 144.764477, 13.466996 ], [ 144.76418, 13.466887 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "954300", "GEOID10": "66010954300", "NAME10": "9543", "NAMELSAD10": "Census Tract 9543", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2940881, "AWATER10": 0, "INTPTLAT10": "+13.4599942", "INTPTLON10": "+144.7011342" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.707666, 13.457608 ], [ 144.707788, 13.456799 ], [ 144.707796, 13.456749 ], [ 144.707966, 13.455641 ], [ 144.707995, 13.455388 ], [ 144.708205, 13.454008 ], [ 144.708369, 13.453075 ], [ 144.708729, 13.450378 ], [ 144.70885, 13.449479 ], [ 144.708978, 13.448851 ], [ 144.709039, 13.448551 ], [ 144.709298, 13.446702 ], [ 144.708935, 13.446859 ], [ 144.708492, 13.447222 ], [ 144.707868, 13.447694 ], [ 144.707667, 13.4481 ], [ 144.707294, 13.448806 ], [ 144.707259, 13.450299 ], [ 144.707239, 13.450942 ], [ 144.706954, 13.451036 ], [ 144.706533, 13.451183 ], [ 144.706277, 13.451273 ], [ 144.70584, 13.451405 ], [ 144.704532, 13.451804 ], [ 144.704096, 13.451938 ], [ 144.703761, 13.45204 ], [ 144.703047, 13.45226 ], [ 144.702791, 13.452099 ], [ 144.702495, 13.451914 ], [ 144.701957, 13.451581 ], [ 144.700343, 13.450583 ], [ 144.699806, 13.450251 ], [ 144.699287, 13.450492 ], [ 144.698693, 13.45108 ], [ 144.69574, 13.454013 ], [ 144.69576, 13.454072 ], [ 144.696222, 13.455403 ], [ 144.696335, 13.455606 ], [ 144.696603, 13.45609 ], [ 144.696653, 13.456227 ], [ 144.696733, 13.456447 ], [ 144.696765, 13.45651 ], [ 144.696863, 13.456701 ], [ 144.696896, 13.456765 ], [ 144.697066, 13.457069 ], [ 144.697576, 13.457984 ], [ 144.697746, 13.458289 ], [ 144.69745, 13.45822 ], [ 144.696921, 13.458101 ], [ 144.69678, 13.45807 ], [ 144.69614, 13.45797 ], [ 144.69519, 13.45786 ], [ 144.69446, 13.45782 ], [ 144.694402, 13.457818 ], [ 144.693557, 13.457804 ], [ 144.693458, 13.457802 ], [ 144.69334, 13.4578 ], [ 144.693163, 13.4578 ], [ 144.693065, 13.4578 ], [ 144.692659, 13.4578 ], [ 144.69264, 13.4578 ], [ 144.69206, 13.45786 ], [ 144.69159, 13.45794 ], [ 144.691454, 13.457968 ], [ 144.69116, 13.45803 ], [ 144.69106, 13.45806 ], [ 144.690948, 13.458085 ], [ 144.69084, 13.45811 ], [ 144.690618, 13.458183 ], [ 144.69051, 13.45822 ], [ 144.690408, 13.458253 ], [ 144.690105, 13.458353 ], [ 144.690004, 13.458387 ], [ 144.689881, 13.458427 ], [ 144.689512, 13.458549 ], [ 144.68939, 13.45859 ], [ 144.689665, 13.459289 ], [ 144.68993, 13.45996 ], [ 144.68999, 13.46014 ], [ 144.69012, 13.46007 ], [ 144.690172, 13.460025 ], [ 144.690225, 13.460159 ], [ 144.690544, 13.46101 ], [ 144.691708, 13.460657 ], [ 144.691932, 13.461629 ], [ 144.691905, 13.461789 ], [ 144.691671, 13.46319 ], [ 144.691664, 13.463402 ], [ 144.691654, 13.463754 ], [ 144.691548, 13.464021 ], [ 144.69147, 13.464219 ], [ 144.69149, 13.464227 ], [ 144.69155, 13.464252 ], [ 144.691571, 13.464261 ], [ 144.691639, 13.464319 ], [ 144.691755, 13.464382 ], [ 144.691847, 13.46445 ], [ 144.691973, 13.46458 ], [ 144.692034, 13.464658 ], [ 144.692041, 13.464667 ], [ 144.692045, 13.4647 ], [ 144.692025, 13.464752 ], [ 144.69201, 13.464819 ], [ 144.692024, 13.464882 ], [ 144.692043, 13.464939 ], [ 144.692087, 13.464973 ], [ 144.692106, 13.465021 ], [ 144.692096, 13.465069 ], [ 144.692095, 13.465121 ], [ 144.692085, 13.465169 ], [ 144.692094, 13.465207 ], [ 144.692128, 13.465227 ], [ 144.692148, 13.465213 ], [ 144.692168, 13.46516 ], [ 144.692207, 13.465127 ], [ 144.692247, 13.465118 ], [ 144.692324, 13.465181 ], [ 144.69246, 13.46523 ], [ 144.692787, 13.46529 ], [ 144.69308, 13.465326 ], [ 144.693168, 13.465341 ], [ 144.693217, 13.465337 ], [ 144.693241, 13.465366 ], [ 144.693289, 13.4654 ], [ 144.693304, 13.465438 ], [ 144.693367, 13.465439 ], [ 144.693411, 13.465458 ], [ 144.693411, 13.465497 ], [ 144.693391, 13.46554 ], [ 144.69342, 13.465564 ], [ 144.6934, 13.465607 ], [ 144.693463, 13.465631 ], [ 144.693603, 13.465724 ], [ 144.693711, 13.465796 ], [ 144.693779, 13.465797 ], [ 144.693833, 13.465802 ], [ 144.693847, 13.465845 ], [ 144.693891, 13.465845 ], [ 144.693915, 13.465826 ], [ 144.694105, 13.465905 ], [ 144.694124, 13.465938 ], [ 144.694222, 13.465958 ], [ 144.694247, 13.465949 ], [ 144.694281, 13.465921 ], [ 144.69432, 13.465907 ], [ 144.694369, 13.465902 ], [ 144.694433, 13.465879 ], [ 144.694521, 13.465861 ], [ 144.694565, 13.465871 ], [ 144.694589, 13.465895 ], [ 144.694648, 13.465881 ], [ 144.694662, 13.4659 ], [ 144.694687, 13.465905 ], [ 144.694716, 13.465872 ], [ 144.694746, 13.465853 ], [ 144.694804, 13.465859 ], [ 144.694824, 13.465868 ], [ 144.694838, 13.465902 ], [ 144.694862, 13.465912 ], [ 144.694906, 13.465907 ], [ 144.694931, 13.465893 ], [ 144.694941, 13.465869 ], [ 144.694985, 13.465894 ], [ 144.695024, 13.46588 ], [ 144.695146, 13.465919 ], [ 144.695307, 13.465954 ], [ 144.695462, 13.466008 ], [ 144.695667, 13.466096 ], [ 144.695844, 13.466176 ], [ 144.695925, 13.466213 ], [ 144.696225, 13.466426 ], [ 144.696352, 13.466447 ], [ 144.696469, 13.466486 ], [ 144.69664, 13.466521 ], [ 144.696908, 13.4666 ], [ 144.69721, 13.466708 ], [ 144.697463, 13.466825 ], [ 144.697604, 13.466869 ], [ 144.697687, 13.466889 ], [ 144.69774, 13.466947 ], [ 144.697815, 13.466972 ], [ 144.69782, 13.46699 ], [ 144.697875, 13.466997 ], [ 144.697865, 13.467059 ], [ 144.697875, 13.467083 ], [ 144.697914, 13.467079 ], [ 144.697963, 13.46706 ], [ 144.697982, 13.467094 ], [ 144.697996, 13.467132 ], [ 144.698064, 13.467228 ], [ 144.698155, 13.467368 ], [ 144.698417, 13.467595 ], [ 144.698528, 13.467682 ], [ 144.698626, 13.467731 ], [ 144.698703, 13.467817 ], [ 144.698858, 13.467914 ], [ 144.698941, 13.467977 ], [ 144.699063, 13.468022 ], [ 144.699194, 13.468094 ], [ 144.699262, 13.468095 ], [ 144.699326, 13.468086 ], [ 144.69936, 13.468101 ], [ 144.69955, 13.468136 ], [ 144.699594, 13.468136 ], [ 144.699633, 13.468103 ], [ 144.699761, 13.468085 ], [ 144.700084, 13.468026 ], [ 144.70023, 13.468023 ], [ 144.700376, 13.468062 ], [ 144.700523, 13.468083 ], [ 144.700869, 13.468153 ], [ 144.701064, 13.468169 ], [ 144.70123, 13.468175 ], [ 144.701401, 13.468186 ], [ 144.701582, 13.468188 ], [ 144.701758, 13.468218 ], [ 144.701914, 13.468239 ], [ 144.702186, 13.468318 ], [ 144.702289, 13.468343 ], [ 144.702386, 13.468358 ], [ 144.702464, 13.468378 ], [ 144.702606, 13.468436 ], [ 144.702607, 13.468436 ], [ 144.702698, 13.468461 ], [ 144.70281, 13.46851 ], [ 144.702858, 13.468549 ], [ 144.702863, 13.468611 ], [ 144.702892, 13.468645 ], [ 144.702926, 13.468674 ], [ 144.702984, 13.468746 ], [ 144.703076, 13.468814 ], [ 144.703217, 13.468911 ], [ 144.703338, 13.469003 ], [ 144.70346, 13.469081 ], [ 144.703481, 13.469089 ], [ 144.703523, 13.469129 ], [ 144.703683, 13.469216 ], [ 144.704232, 13.46957 ], [ 144.704304, 13.469652 ], [ 144.704474, 13.469778 ], [ 144.704618, 13.469872 ], [ 144.704671, 13.469907 ], [ 144.704814, 13.470001 ], [ 144.704831, 13.470013 ], [ 144.704883, 13.470052 ], [ 144.704959, 13.470108 ], [ 144.705017, 13.470185 ], [ 144.705196, 13.470294 ], [ 144.705381, 13.470408 ], [ 144.705488, 13.47049 ], [ 144.705565, 13.470582 ], [ 144.705623, 13.470669 ], [ 144.705671, 13.47076 ], [ 144.705794, 13.470919 ], [ 144.706025, 13.471144 ], [ 144.706027, 13.471146 ], [ 144.706156, 13.471214 ], [ 144.706307, 13.471249 ], [ 144.706379, 13.471316 ], [ 144.706422, 13.471417 ], [ 144.706456, 13.471508 ], [ 144.706494, 13.471566 ], [ 144.706606, 13.471648 ], [ 144.706656, 13.471702 ], [ 144.706927, 13.471252 ], [ 144.707019, 13.471105 ], [ 144.707133, 13.470975 ], [ 144.707204, 13.470935 ], [ 144.707282, 13.470792 ], [ 144.70731, 13.47064 ], [ 144.707387, 13.470443 ], [ 144.707401, 13.47023 ], [ 144.707334, 13.47006 ], [ 144.707324, 13.469961 ], [ 144.707268, 13.469404 ], [ 144.707275, 13.469385 ], [ 144.707205, 13.469064 ], [ 144.706962, 13.468903 ], [ 144.706815, 13.468844 ], [ 144.706667, 13.468709 ], [ 144.70658, 13.46843 ], [ 144.706617, 13.467718 ], [ 144.706639, 13.467593 ], [ 144.706765, 13.466895 ], [ 144.70752, 13.465107 ], [ 144.7076, 13.46497 ], [ 144.707821, 13.464808 ], [ 144.707873, 13.46463 ], [ 144.707826, 13.464399 ], [ 144.707767, 13.464239 ], [ 144.707782, 13.464014 ], [ 144.707897, 13.46393 ], [ 144.708029, 13.463902 ], [ 144.708158, 13.463757 ], [ 144.708279, 13.463696 ], [ 144.708425, 13.463673 ], [ 144.708486, 13.463649 ], [ 144.708518, 13.463563 ], [ 144.708668, 13.463291 ], [ 144.708915, 13.463153 ], [ 144.709189, 13.462739 ], [ 144.709189, 13.462375 ], [ 144.709319, 13.462109 ], [ 144.709214, 13.461595 ], [ 144.708938, 13.461054 ], [ 144.708402, 13.460366 ], [ 144.708241, 13.460235 ], [ 144.708107, 13.460127 ], [ 144.708024, 13.460076 ], [ 144.707955, 13.460014 ], [ 144.707865, 13.459989 ], [ 144.707764, 13.459985 ], [ 144.707681, 13.45994 ], [ 144.707556, 13.459889 ], [ 144.707345, 13.459724 ], [ 144.707435, 13.459076 ], [ 144.7076, 13.45822 ], [ 144.707666, 13.457608 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "954500", "GEOID10": "66010954500", "NAME10": "9545", "NAMELSAD10": "Census Tract 9545", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 12839946, "AWATER10": 5865427, "INTPTLAT10": "+13.4321466", "INTPTLON10": "+144.6516924" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.645952, 13.413555 ], [ 144.645859, 13.413581 ], [ 144.645777, 13.413709 ], [ 144.645825, 13.413929 ], [ 144.645911, 13.414024 ], [ 144.645943, 13.414181 ], [ 144.64599, 13.414346 ], [ 144.646037, 13.414528 ], [ 144.646085, 13.414661 ], [ 144.646171, 13.41481 ], [ 144.646366, 13.41495 ], [ 144.646495, 13.414986 ], [ 144.646684, 13.41488 ], [ 144.646761, 13.414876 ], [ 144.646882, 13.414869 ], [ 144.647054, 13.414845 ], [ 144.647174, 13.41473 ], [ 144.647254, 13.414627 ], [ 144.647321, 13.414512 ], [ 144.647441, 13.414371 ], [ 144.647561, 13.414243 ], [ 144.647641, 13.414166 ], [ 144.647813, 13.414064 ], [ 144.647998, 13.414027 ], [ 144.6481, 13.413962 ], [ 144.648305, 13.413669 ], [ 144.648293, 13.41354 ], [ 144.647991, 13.413382 ], [ 144.647689, 13.413302 ], [ 144.647439, 13.413222 ], [ 144.647295, 13.413104 ], [ 144.647071, 13.413063 ], [ 144.64682, 13.413074 ], [ 144.646608, 13.413175 ], [ 144.646429, 13.413316 ], [ 144.646244, 13.413353 ], [ 144.646112, 13.413403 ], [ 144.646084, 13.413519 ], [ 144.645952, 13.413555 ] ] ], [ [ [ 144.678327, 13.416259 ], [ 144.678241, 13.416059 ], [ 144.67822, 13.41601 ], [ 144.67807, 13.41579 ], [ 144.677943, 13.41563 ], [ 144.67788, 13.41555 ], [ 144.67755, 13.41511 ], [ 144.6775, 13.41503 ], [ 144.67714, 13.41452 ], [ 144.677061, 13.414403 ], [ 144.67685, 13.41409 ], [ 144.67666, 13.41376 ], [ 144.67648, 13.41337 ], [ 144.6764, 13.41313 ], [ 144.67634, 13.41288 ], [ 144.67631, 13.41262 ], [ 144.67631, 13.412001 ], [ 144.67631, 13.41171 ], [ 144.67629, 13.41147 ], [ 144.67625, 13.41124 ], [ 144.67622, 13.411151 ], [ 144.6762, 13.41109 ], [ 144.676195, 13.411081 ], [ 144.67611, 13.41093 ], [ 144.676082, 13.41089 ], [ 144.67604, 13.41083 ], [ 144.676003, 13.410784 ], [ 144.67595, 13.41072 ], [ 144.675889, 13.410653 ], [ 144.67585, 13.41061 ], [ 144.675838, 13.410598 ], [ 144.675802, 13.410562 ], [ 144.67579, 13.41055 ], [ 144.675746, 13.410501 ], [ 144.675614, 13.410357 ], [ 144.67557, 13.41031 ], [ 144.67551, 13.410262 ], [ 144.67533, 13.410118 ], [ 144.67527, 13.41007 ], [ 144.674898, 13.409763 ], [ 144.67395, 13.40898 ], [ 144.673786, 13.40884 ], [ 144.67354, 13.40863 ], [ 144.673419, 13.40853 ], [ 144.6732, 13.40835 ], [ 144.67278, 13.40799 ], [ 144.672706, 13.407941 ], [ 144.67254, 13.40783 ], [ 144.67228, 13.40769 ], [ 144.67201, 13.40759 ], [ 144.67164, 13.40748 ], [ 144.67131, 13.40737 ], [ 144.67104, 13.40723 ], [ 144.6707, 13.40703 ], [ 144.67038, 13.4068 ], [ 144.67025, 13.406699 ], [ 144.67006, 13.40655 ], [ 144.66953, 13.40612 ], [ 144.669405, 13.406024 ], [ 144.66914, 13.40582 ], [ 144.669025, 13.405745 ], [ 144.668894, 13.40566 ], [ 144.668757, 13.405571 ], [ 144.66871, 13.40554 ], [ 144.66838, 13.40534 ], [ 144.668339, 13.40532 ], [ 144.668194, 13.405249 ], [ 144.668149, 13.405227 ], [ 144.668014, 13.405161 ], [ 144.66797, 13.40514 ], [ 144.667572, 13.404954 ], [ 144.66722, 13.40479 ], [ 144.66678, 13.40457 ], [ 144.666384, 13.40439 ], [ 144.66634, 13.40437 ], [ 144.666, 13.40418 ], [ 144.66585, 13.40398 ], [ 144.665689, 13.403743 ], [ 144.66568, 13.40373 ], [ 144.665642, 13.403652 ], [ 144.66553, 13.40342 ], [ 144.66535, 13.40307 ], [ 144.6649, 13.40223 ], [ 144.664761, 13.401952 ], [ 144.66473, 13.40189 ], [ 144.66459, 13.40162 ], [ 144.664472, 13.401383 ], [ 144.664455, 13.40135 ], [ 144.664406, 13.401252 ], [ 144.66439, 13.40122 ], [ 144.664385, 13.4012 ], [ 144.66438, 13.40118 ], [ 144.664362, 13.401143 ], [ 144.664354, 13.401125 ], [ 144.664341, 13.401097 ], [ 144.664302, 13.401015 ], [ 144.664289, 13.400988 ], [ 144.664221, 13.400845 ], [ 144.664182, 13.400854 ], [ 144.664192, 13.400876 ], [ 144.664241, 13.400986 ], [ 144.664001, 13.401037 ], [ 144.663815, 13.401069 ], [ 144.663629, 13.401081 ], [ 144.663565, 13.401074 ], [ 144.663302, 13.401049 ], [ 144.66321, 13.401044 ], [ 144.663122, 13.401033 ], [ 144.663078, 13.401057 ], [ 144.663087, 13.401143 ], [ 144.66312, 13.401191 ], [ 144.663109, 13.401306 ], [ 144.663044, 13.401487 ], [ 144.66295, 13.401677 ], [ 144.662855, 13.401853 ], [ 144.662735, 13.402139 ], [ 144.662656, 13.402215 ], [ 144.662573, 13.402257 ], [ 144.662475, 13.402251 ], [ 144.662417, 13.402194 ], [ 144.66232, 13.402169 ], [ 144.662237, 13.402168 ], [ 144.662192, 13.40222 ], [ 144.662191, 13.402297 ], [ 144.662193, 13.402328 ], [ 144.662196, 13.402354 ], [ 144.662225, 13.402397 ], [ 144.662307, 13.402427 ], [ 144.662375, 13.402475 ], [ 144.662468, 13.402519 ], [ 144.662628, 13.402583 ], [ 144.662681, 13.402655 ], [ 144.662699, 13.402808 ], [ 144.662696, 13.402846 ], [ 144.662688, 13.402947 ], [ 144.662651, 13.403042 ], [ 144.662644, 13.40319 ], [ 144.662581, 13.403401 ], [ 144.662569, 13.403443 ], [ 144.66249, 13.403538 ], [ 144.662431, 13.403566 ], [ 144.662372, 13.403546 ], [ 144.66228, 13.403526 ], [ 144.662192, 13.403478 ], [ 144.662105, 13.403443 ], [ 144.662002, 13.403423 ], [ 144.661865, 13.40347 ], [ 144.661747, 13.403526 ], [ 144.661654, 13.403621 ], [ 144.661599, 13.403745 ], [ 144.661568, 13.403845 ], [ 144.661529, 13.403902 ], [ 144.661475, 13.40392 ], [ 144.661431, 13.40393 ], [ 144.661425, 13.403992 ], [ 144.661365, 13.404125 ], [ 144.66136, 13.404139 ], [ 144.661292, 13.404177 ], [ 144.661213, 13.404195 ], [ 144.661169, 13.4042 ], [ 144.661121, 13.404142 ], [ 144.661053, 13.404117 ], [ 144.661004, 13.404088 ], [ 144.66095, 13.404112 ], [ 144.660945, 13.404159 ], [ 144.660945, 13.404202 ], [ 144.660915, 13.40424 ], [ 144.660837, 13.404268 ], [ 144.660758, 13.404325 ], [ 144.660709, 13.404344 ], [ 144.66067, 13.404348 ], [ 144.660645, 13.404377 ], [ 144.66064, 13.40442 ], [ 144.660576, 13.404467 ], [ 144.66061, 13.404505 ], [ 144.660693, 13.404506 ], [ 144.660766, 13.404516 ], [ 144.660834, 13.404546 ], [ 144.660931, 13.404599 ], [ 144.661048, 13.4046 ], [ 144.661102, 13.404634 ], [ 144.661125, 13.404711 ], [ 144.661163, 13.404874 ], [ 144.661166, 13.40507 ], [ 144.661154, 13.405529 ], [ 144.661185, 13.40583 ], [ 144.661168, 13.406117 ], [ 144.661212, 13.406581 ], [ 144.661182, 13.406667 ], [ 144.661137, 13.406772 ], [ 144.661156, 13.406805 ], [ 144.661195, 13.406811 ], [ 144.66119, 13.406911 ], [ 144.661145, 13.407011 ], [ 144.661118, 13.407062 ], [ 144.661119, 13.40708 ], [ 144.661113, 13.407097 ], [ 144.661122, 13.407185 ], [ 144.661119, 13.407498 ], [ 144.661087, 13.407588 ], [ 144.661075, 13.407603 ], [ 144.66106, 13.407632 ], [ 144.661021, 13.407636 ], [ 144.660977, 13.407631 ], [ 144.660957, 13.407674 ], [ 144.660962, 13.407703 ], [ 144.660978, 13.407729 ], [ 144.661004, 13.407729 ], [ 144.661085, 13.40779 ], [ 144.661125, 13.407982 ], [ 144.661074, 13.408111 ], [ 144.661051, 13.408173 ], [ 144.660946, 13.408393 ], [ 144.660789, 13.408664 ], [ 144.660652, 13.408915 ], [ 144.660475, 13.409155 ], [ 144.660319, 13.409305 ], [ 144.660235, 13.409475 ], [ 144.660015, 13.409836 ], [ 144.659756, 13.410075 ], [ 144.65959, 13.410185 ], [ 144.659516, 13.410416 ], [ 144.659326, 13.410868 ], [ 144.659179, 13.411148 ], [ 144.658887, 13.411589 ], [ 144.658396, 13.41223 ], [ 144.658012, 13.412639 ], [ 144.657689, 13.412959 ], [ 144.657461, 13.413179 ], [ 144.657181, 13.413388 ], [ 144.656922, 13.413556 ], [ 144.6566, 13.413836 ], [ 144.65633, 13.414055 ], [ 144.65606, 13.414254 ], [ 144.65576, 13.414412 ], [ 144.65546, 13.414551 ], [ 144.655399, 13.41454 ], [ 144.655358, 13.414469 ], [ 144.655266, 13.414388 ], [ 144.655205, 13.414317 ], [ 144.655113, 13.414316 ], [ 144.65505, 13.414426 ], [ 144.654946, 13.414475 ], [ 144.654925, 13.414546 ], [ 144.654801, 13.414605 ], [ 144.654687, 13.414675 ], [ 144.654573, 13.414704 ], [ 144.654512, 13.414713 ], [ 144.65442, 13.414673 ], [ 144.654401, 13.41467 ], [ 144.654392, 13.414654 ], [ 144.653953, 13.414612 ], [ 144.653755, 13.414701 ], [ 144.653529, 13.414866 ], [ 144.653343, 13.414994 ], [ 144.653104, 13.415134 ], [ 144.652892, 13.415287 ], [ 144.652469, 13.415308 ], [ 144.651982, 13.415278 ], [ 144.651732, 13.41516 ], [ 144.651431, 13.415002 ], [ 144.651286, 13.414988 ], [ 144.650995, 13.415075 ], [ 144.650796, 13.41519 ], [ 144.650505, 13.415264 ], [ 144.65041, 13.415294 ], [ 144.650267, 13.41534 ], [ 144.649937, 13.415298 ], [ 144.649623, 13.415127 ], [ 144.649308, 13.41493 ], [ 144.649191, 13.414736 ], [ 144.648995, 13.414553 ], [ 144.648874, 13.414552 ], [ 144.648771, 13.41459 ], [ 144.648507, 13.4146 ], [ 144.648375, 13.41456 ], [ 144.648204, 13.414546 ], [ 144.648099, 13.414506 ], [ 144.647939, 13.414672 ], [ 144.647832, 13.414865 ], [ 144.647751, 13.41498 ], [ 144.647738, 13.415019 ], [ 144.647644, 13.415173 ], [ 144.647538, 13.41525 ], [ 144.647472, 13.415312 ], [ 144.647491, 13.415385 ], [ 144.647402, 13.41546 ], [ 144.647376, 13.415505 ], [ 144.647329, 13.415558 ], [ 144.64726, 13.415557 ], [ 144.647284, 13.415478 ], [ 144.647244, 13.415422 ], [ 144.647172, 13.415399 ], [ 144.647168, 13.415539 ], [ 144.647216, 13.41561 ], [ 144.647282, 13.415639 ], [ 144.647386, 13.415651 ], [ 144.647452, 13.415692 ], [ 144.647495, 13.415722 ], [ 144.647538, 13.415752 ], [ 144.647602, 13.415829 ], [ 144.647634, 13.415955 ], [ 144.647959, 13.416054 ], [ 144.648101, 13.416288 ], [ 144.648087, 13.416446 ], [ 144.648072, 13.416623 ], [ 144.647963, 13.416945 ], [ 144.647775, 13.417343 ], [ 144.647533, 13.417767 ], [ 144.647213, 13.418087 ], [ 144.646909, 13.418226 ], [ 144.646604, 13.418378 ], [ 144.646391, 13.41857 ], [ 144.646087, 13.4186 ], [ 144.646048, 13.418605 ], [ 144.645615, 13.418407 ], [ 144.645272, 13.418327 ], [ 144.645093, 13.418274 ], [ 144.644957, 13.418234 ], [ 144.644893, 13.418208 ], [ 144.644602, 13.418088 ], [ 144.644511, 13.41792 ], [ 144.644435, 13.417821 ], [ 144.644381, 13.41775 ], [ 144.644303, 13.417659 ], [ 144.644132, 13.417658 ], [ 144.64392, 13.417695 ], [ 144.643801, 13.417784 ], [ 144.643708, 13.41786 ], [ 144.643562, 13.417872 ], [ 144.643417, 13.417896 ], [ 144.643363, 13.418038 ], [ 144.643428, 13.41818 ], [ 144.643432, 13.418254 ], [ 144.643439, 13.418348 ], [ 144.643373, 13.418374 ], [ 144.643188, 13.418359 ], [ 144.643095, 13.418487 ], [ 144.642884, 13.418511 ], [ 144.642501, 13.418482 ], [ 144.642369, 13.418545 ], [ 144.642341, 13.418725 ], [ 144.642233, 13.418944 ], [ 144.641928, 13.419135 ], [ 144.641596, 13.419325 ], [ 144.64141, 13.419491 ], [ 144.641236, 13.419761 ], [ 144.641169, 13.419876 ], [ 144.641022, 13.420056 ], [ 144.64081, 13.420222 ], [ 144.640544, 13.420374 ], [ 144.640502, 13.42042 ], [ 144.640358, 13.420579 ], [ 144.640224, 13.420784 ], [ 144.640038, 13.420911 ], [ 144.639826, 13.421026 ], [ 144.639718, 13.421205 ], [ 144.639705, 13.421401 ], [ 144.639703, 13.421438 ], [ 144.63974, 13.421696 ], [ 144.639777, 13.422006 ], [ 144.639879, 13.422304 ], [ 144.640022, 13.422577 ], [ 144.640098, 13.42281 ], [ 144.640269, 13.422953 ], [ 144.640412, 13.423084 ], [ 144.640385, 13.423187 ], [ 144.640364, 13.423226 ], [ 144.640291, 13.423367 ], [ 144.640236, 13.423534 ], [ 144.640101, 13.423868 ], [ 144.6401, 13.424036 ], [ 144.640072, 13.424191 ], [ 144.640083, 13.424346 ], [ 144.640003, 13.424487 ], [ 144.639909, 13.424615 ], [ 144.639935, 13.424732 ], [ 144.64008, 13.42472 ], [ 144.640212, 13.424657 ], [ 144.640278, 13.424709 ], [ 144.640171, 13.42485 ], [ 144.640025, 13.424957 ], [ 144.639981, 13.424955 ], [ 144.639886, 13.424971 ], [ 144.639778, 13.425011 ], [ 144.639742, 13.425081 ], [ 144.639753, 13.425133 ], [ 144.639812, 13.425169 ], [ 144.639943, 13.42517 ], [ 144.640175, 13.425155 ], [ 144.640056, 13.425194 ], [ 144.639943, 13.425222 ], [ 144.639775, 13.425372 ], [ 144.639647, 13.425645 ], [ 144.639664, 13.425715 ], [ 144.639741, 13.425716 ], [ 144.639825, 13.425699 ], [ 144.639842, 13.425734 ], [ 144.639771, 13.42578 ], [ 144.63974, 13.425867 ], [ 144.639763, 13.425937 ], [ 144.63981, 13.425978 ], [ 144.639893, 13.42602 ], [ 144.639863, 13.426078 ], [ 144.63988, 13.426142 ], [ 144.639898, 13.426177 ], [ 144.639861, 13.426241 ], [ 144.639807, 13.426322 ], [ 144.639614, 13.426565 ], [ 144.639512, 13.426686 ], [ 144.639458, 13.426697 ], [ 144.639362, 13.426772 ], [ 144.639254, 13.426882 ], [ 144.639122, 13.427026 ], [ 144.639055, 13.427148 ], [ 144.639039, 13.427191 ], [ 144.639012, 13.42727 ], [ 144.638964, 13.427374 ], [ 144.638968, 13.427479 ], [ 144.638955, 13.427636 ], [ 144.638906, 13.427805 ], [ 144.63882, 13.428025 ], [ 144.638783, 13.428141 ], [ 144.638758, 13.428275 ], [ 144.638756, 13.428467 ], [ 144.638732, 13.428566 ], [ 144.638701, 13.428624 ], [ 144.638677, 13.428682 ], [ 144.638706, 13.428747 ], [ 144.638706, 13.428799 ], [ 144.638673, 13.428946 ], [ 144.638618, 13.428979 ], [ 144.638546, 13.429042 ], [ 144.638526, 13.429098 ], [ 144.638515, 13.429129 ], [ 144.638508, 13.429217 ], [ 144.638525, 13.429281 ], [ 144.638584, 13.42934 ], [ 144.638661, 13.429393 ], [ 144.638726, 13.429469 ], [ 144.638743, 13.42958 ], [ 144.638745, 13.429673 ], [ 144.638774, 13.429737 ], [ 144.638797, 13.429819 ], [ 144.63885, 13.429884 ], [ 144.638897, 13.429954 ], [ 144.638914, 13.430001 ], [ 144.638878, 13.430041 ], [ 144.638836, 13.430076 ], [ 144.638659, 13.4305 ], [ 144.638647, 13.430575 ], [ 144.638664, 13.430634 ], [ 144.638646, 13.430662 ], [ 144.638496, 13.43076 ], [ 144.638436, 13.430783 ], [ 144.638365, 13.430794 ], [ 144.638191, 13.43088 ], [ 144.638084, 13.430896 ], [ 144.637989, 13.430918 ], [ 144.637899, 13.430953 ], [ 144.637833, 13.430999 ], [ 144.637636, 13.431084 ], [ 144.637564, 13.431153 ], [ 144.637516, 13.431211 ], [ 144.637503, 13.431269 ], [ 144.637515, 13.431316 ], [ 144.637538, 13.431363 ], [ 144.63752, 13.43138 ], [ 144.637252, 13.431424 ], [ 144.637186, 13.431418 ], [ 144.637151, 13.431377 ], [ 144.637097, 13.431376 ], [ 144.637074, 13.431376 ], [ 144.637008, 13.431352 ], [ 144.636902, 13.431322 ], [ 144.636812, 13.431304 ], [ 144.636717, 13.431308 ], [ 144.636616, 13.431296 ], [ 144.636521, 13.431254 ], [ 144.636479, 13.431295 ], [ 144.636473, 13.431359 ], [ 144.63646, 13.431423 ], [ 144.636442, 13.431486 ], [ 144.636411, 13.431539 ], [ 144.636393, 13.43162 ], [ 144.636326, 13.431736 ], [ 144.636302, 13.431771 ], [ 144.63623, 13.431787 ], [ 144.636177, 13.431793 ], [ 144.636129, 13.431792 ], [ 144.636087, 13.431815 ], [ 144.636045, 13.43185 ], [ 144.635891, 13.43186 ], [ 144.635819, 13.431883 ], [ 144.635747, 13.431917 ], [ 144.635682, 13.431939 ], [ 144.635628, 13.431951 ], [ 144.635604, 13.432003 ], [ 144.635585, 13.432055 ], [ 144.635549, 13.432113 ], [ 144.635429, 13.43217 ], [ 144.635411, 13.43224 ], [ 144.635374, 13.432304 ], [ 144.635314, 13.432367 ], [ 144.635266, 13.432425 ], [ 144.635247, 13.432518 ], [ 144.635259, 13.432576 ], [ 144.635228, 13.432623 ], [ 144.635192, 13.432669 ], [ 144.635115, 13.432697 ], [ 144.635043, 13.432737 ], [ 144.63496, 13.432737 ], [ 144.634906, 13.432777 ], [ 144.634899, 13.432841 ], [ 144.634863, 13.432899 ], [ 144.634809, 13.432887 ], [ 144.634744, 13.432886 ], [ 144.634672, 13.43292 ], [ 144.634594, 13.433001 ], [ 144.634593, 13.433083 ], [ 144.634622, 13.433199 ], [ 144.634675, 13.433223 ], [ 144.634645, 13.433246 ], [ 144.634585, 13.433269 ], [ 144.634496, 13.43328 ], [ 144.634389, 13.433244 ], [ 144.634329, 13.433272 ], [ 144.634299, 13.433319 ], [ 144.634239, 13.433353 ], [ 144.634167, 13.433446 ], [ 144.634017, 13.433584 ], [ 144.633921, 13.433641 ], [ 144.633688, 13.433744 ], [ 144.633669, 13.43382 ], [ 144.633669, 13.433878 ], [ 144.63368, 13.433913 ], [ 144.633567, 13.433988 ], [ 144.633495, 13.434063 ], [ 144.633417, 13.434114 ], [ 144.633351, 13.434108 ], [ 144.633298, 13.434084 ], [ 144.633244, 13.434118 ], [ 144.633208, 13.434165 ], [ 144.633231, 13.434212 ], [ 144.633195, 13.434264 ], [ 144.633135, 13.434304 ], [ 144.633069, 13.434338 ], [ 144.632997, 13.434396 ], [ 144.632896, 13.434434 ], [ 144.632825, 13.434406 ], [ 144.632712, 13.434381 ], [ 144.632611, 13.43438 ], [ 144.632527, 13.434403 ], [ 144.632396, 13.434472 ], [ 144.632347, 13.434529 ], [ 144.632269, 13.434581 ], [ 144.632192, 13.434615 ], [ 144.632102, 13.434644 ], [ 144.632025, 13.434631 ], [ 144.631965, 13.434654 ], [ 144.631899, 13.434712 ], [ 144.631833, 13.434763 ], [ 144.631791, 13.434827 ], [ 144.631737, 13.434827 ], [ 144.631624, 13.434855 ], [ 144.631588, 13.434918 ], [ 144.631409, 13.434969 ], [ 144.631343, 13.435015 ], [ 144.631271, 13.435084 ], [ 144.631157, 13.435136 ], [ 144.631074, 13.435164 ], [ 144.630984, 13.435169 ], [ 144.630847, 13.435203 ], [ 144.630727, 13.43526 ], [ 144.630584, 13.43534 ], [ 144.630476, 13.435391 ], [ 144.630398, 13.435461 ], [ 144.630326, 13.435507 ], [ 144.630273, 13.435506 ], [ 144.630189, 13.435517 ], [ 144.6301, 13.435539 ], [ 144.630064, 13.435574 ], [ 144.630004, 13.435573 ], [ 144.629927, 13.435584 ], [ 144.629879, 13.435584 ], [ 144.629831, 13.435671 ], [ 144.629696, 13.435728 ], [ 144.62944, 13.435807 ], [ 144.629326, 13.435876 ], [ 144.629188, 13.435944 ], [ 144.629051, 13.435972 ], [ 144.62892, 13.436035 ], [ 144.628872, 13.436087 ], [ 144.628621, 13.43616 ], [ 144.628574, 13.436131 ], [ 144.628552, 13.436145 ], [ 144.628442, 13.436223 ], [ 144.628358, 13.436263 ], [ 144.628298, 13.436297 ], [ 144.628233, 13.436314 ], [ 144.628191, 13.436302 ], [ 144.62812, 13.436301 ], [ 144.628036, 13.436324 ], [ 144.627952, 13.436364 ], [ 144.627851, 13.436398 ], [ 144.62775, 13.436397 ], [ 144.62766, 13.436425 ], [ 144.627618, 13.436448 ], [ 144.627558, 13.436506 ], [ 144.627325, 13.436597 ], [ 144.627307, 13.436678 ], [ 144.627312, 13.436731 ], [ 144.627222, 13.43677 ], [ 144.627133, 13.436787 ], [ 144.627067, 13.436781 ], [ 144.626925, 13.436721 ], [ 144.626753, 13.436719 ], [ 144.626538, 13.436799 ], [ 144.626448, 13.436886 ], [ 144.626352, 13.436931 ], [ 144.626304, 13.436913 ], [ 144.626221, 13.436942 ], [ 144.626184, 13.437011 ], [ 144.626053, 13.437027 ], [ 144.62588, 13.437102 ], [ 144.62567, 13.437234 ], [ 144.625581, 13.43725 ], [ 144.625474, 13.437249 ], [ 144.625415, 13.437208 ], [ 144.625332, 13.437172 ], [ 144.625305, 13.437178 ], [ 144.625278, 13.437183 ], [ 144.62523, 13.437235 ], [ 144.625235, 13.437311 ], [ 144.625229, 13.437387 ], [ 144.625192, 13.437439 ], [ 144.625114, 13.437496 ], [ 144.625007, 13.437553 ], [ 144.624923, 13.437593 ], [ 144.624846, 13.437581 ], [ 144.624781, 13.43754 ], [ 144.624715, 13.437522 ], [ 144.624243, 13.437738 ], [ 144.624129, 13.437848 ], [ 144.624069, 13.437929 ], [ 144.624032, 13.43801 ], [ 144.624055, 13.438069 ], [ 144.623972, 13.438103 ], [ 144.623906, 13.438108 ], [ 144.623762, 13.438229 ], [ 144.623714, 13.438293 ], [ 144.623743, 13.438345 ], [ 144.623743, 13.438404 ], [ 144.623683, 13.438455 ], [ 144.623635, 13.43849 ], [ 144.623569, 13.438489 ], [ 144.623426, 13.43857 ], [ 144.623371, 13.438645 ], [ 144.623344, 13.438652 ], [ 144.623228, 13.438684 ], [ 144.623174, 13.438736 ], [ 144.623162, 13.438794 ], [ 144.62312, 13.438817 ], [ 144.623054, 13.438834 ], [ 144.623036, 13.438875 ], [ 144.622946, 13.438955 ], [ 144.622921, 13.439013 ], [ 144.622778, 13.43907 ], [ 144.622712, 13.43911 ], [ 144.622706, 13.439157 ], [ 144.622729, 13.439215 ], [ 144.622729, 13.43925 ], [ 144.62268, 13.439302 ], [ 144.622639, 13.439314 ], [ 144.622567, 13.439313 ], [ 144.622501, 13.439347 ], [ 144.622493, 13.439382 ], [ 144.622412, 13.439387 ], [ 144.622459, 13.439411 ], [ 144.62247, 13.439533 ], [ 144.622398, 13.439579 ], [ 144.622326, 13.439608 ], [ 144.622309, 13.439578 ], [ 144.622267, 13.439595 ], [ 144.622207, 13.439647 ], [ 144.622165, 13.439705 ], [ 144.622117, 13.439763 ], [ 144.622074, 13.439844 ], [ 144.622002, 13.439913 ], [ 144.62193, 13.44 ], [ 144.621887, 13.44007 ], [ 144.62181, 13.440104 ], [ 144.621738, 13.440121 ], [ 144.621655, 13.440131 ], [ 144.621601, 13.440143 ], [ 144.6216, 13.440195 ], [ 144.621624, 13.440265 ], [ 144.621659, 13.440312 ], [ 144.621616, 13.440387 ], [ 144.621562, 13.440451 ], [ 144.621478, 13.440503 ], [ 144.621407, 13.440537 ], [ 144.621311, 13.440548 ], [ 144.621233, 13.440599 ], [ 144.621221, 13.440669 ], [ 144.62122, 13.440791 ], [ 144.621213, 13.440844 ], [ 144.621254, 13.440902 ], [ 144.621194, 13.440943 ], [ 144.621081, 13.440982 ], [ 144.621116, 13.44107 ], [ 144.621092, 13.441099 ], [ 144.620996, 13.441185 ], [ 144.620935, 13.441249 ], [ 144.620894, 13.441266 ], [ 144.620833, 13.441329 ], [ 144.620815, 13.441405 ], [ 144.620767, 13.441469 ], [ 144.620796, 13.44155 ], [ 144.62089, 13.441592 ], [ 144.620937, 13.441645 ], [ 144.620907, 13.441697 ], [ 144.620781, 13.441871 ], [ 144.620726, 13.441958 ], [ 144.620672, 13.442033 ], [ 144.620647, 13.442126 ], [ 144.620682, 13.442196 ], [ 144.620663, 13.442283 ], [ 144.620573, 13.44241 ], [ 144.620501, 13.442474 ], [ 144.620381, 13.442537 ], [ 144.620292, 13.442553 ], [ 144.620202, 13.442593 ], [ 144.620171, 13.442692 ], [ 144.620242, 13.44278 ], [ 144.620277, 13.442868 ], [ 144.620335, 13.442967 ], [ 144.620299, 13.443008 ], [ 144.620126, 13.443099 ], [ 144.620095, 13.443157 ], [ 144.620124, 13.443245 ], [ 144.620189, 13.443275 ], [ 144.62023, 13.443345 ], [ 144.620182, 13.443426 ], [ 144.620092, 13.443466 ], [ 144.620038, 13.443506 ], [ 144.61999, 13.443611 ], [ 144.620013, 13.443675 ], [ 144.62006, 13.443716 ], [ 144.620053, 13.443815 ], [ 144.620029, 13.443885 ], [ 144.619933, 13.443931 ], [ 144.619843, 13.443959 ], [ 144.619724, 13.443987 ], [ 144.6197, 13.444068 ], [ 144.61974, 13.444156 ], [ 144.619763, 13.44422 ], [ 144.619698, 13.444255 ], [ 144.619626, 13.4443 ], [ 144.619578, 13.444364 ], [ 144.619565, 13.444434 ], [ 144.619558, 13.444504 ], [ 144.61951, 13.444579 ], [ 144.619468, 13.444579 ], [ 144.619414, 13.444613 ], [ 144.619372, 13.4447 ], [ 144.619265, 13.444728 ], [ 144.619217, 13.444757 ], [ 144.619198, 13.444827 ], [ 144.619156, 13.444849 ], [ 144.619091, 13.444849 ], [ 144.61909, 13.444879 ], [ 144.619037, 13.444873 ], [ 144.619041, 13.444921 ], [ 144.619036, 13.444978 ], [ 144.619069, 13.445026 ], [ 144.619133, 13.44506 ], [ 144.619196, 13.445071 ], [ 144.619173, 13.44519 ], [ 144.619129, 13.445218 ], [ 144.619065, 13.445194 ], [ 144.619041, 13.445203 ], [ 144.619065, 13.445261 ], [ 144.619045, 13.445299 ], [ 144.618996, 13.445303 ], [ 144.618966, 13.44535 ], [ 144.618917, 13.445369 ], [ 144.618892, 13.445388 ], [ 144.618887, 13.44545 ], [ 144.618916, 13.445508 ], [ 144.618886, 13.445517 ], [ 144.618842, 13.445521 ], [ 144.618724, 13.445578 ], [ 144.618675, 13.445615 ], [ 144.618586, 13.445701 ], [ 144.618514, 13.445652 ], [ 144.618416, 13.445637 ], [ 144.618357, 13.445646 ], [ 144.618323, 13.445665 ], [ 144.618318, 13.445717 ], [ 144.618332, 13.445775 ], [ 144.618385, 13.445823 ], [ 144.618424, 13.445876 ], [ 144.61843, 13.445888 ], [ 144.618443, 13.445915 ], [ 144.618432, 13.445962 ], [ 144.618432, 13.446005 ], [ 144.618441, 13.446048 ], [ 144.618475, 13.446092 ], [ 144.61847, 13.44612 ], [ 144.618426, 13.44612 ], [ 144.618392, 13.446139 ], [ 144.618362, 13.446138 ], [ 144.618323, 13.446152 ], [ 144.618328, 13.446191 ], [ 144.618332, 13.446203 ], [ 144.618347, 13.446239 ], [ 144.61839, 13.446282 ], [ 144.618434, 13.446311 ], [ 144.618477, 13.446418 ], [ 144.618607, 13.44674 ], [ 144.618651, 13.446848 ], [ 144.618583, 13.446924 ], [ 144.618562, 13.44695 ], [ 144.618529, 13.446976 ], [ 144.618496, 13.447013 ], [ 144.618478, 13.447045 ], [ 144.618442, 13.447068 ], [ 144.618437, 13.447074 ], [ 144.618424, 13.447092 ], [ 144.618397, 13.447128 ], [ 144.618388, 13.44716 ], [ 144.61839, 13.447198 ], [ 144.618384, 13.447227 ], [ 144.618351, 13.447264 ], [ 144.618351, 13.447316 ], [ 144.618336, 13.447337 ], [ 144.618309, 13.447348 ], [ 144.618211, 13.447405 ], [ 144.618175, 13.447437 ], [ 144.618151, 13.44748 ], [ 144.618135, 13.447575 ], [ 144.618179, 13.447596 ], [ 144.618197, 13.447617 ], [ 144.618223, 13.44762 ], [ 144.618262, 13.447611 ], [ 144.618291, 13.447615 ], [ 144.618307, 13.447624 ], [ 144.618321, 13.447638 ], [ 144.618288, 13.447649 ], [ 144.618258, 13.447698 ], [ 144.618247, 13.447701 ], [ 144.61824, 13.447704 ], [ 144.618221, 13.447705 ], [ 144.618201, 13.447727 ], [ 144.618186, 13.447753 ], [ 144.618177, 13.447782 ], [ 144.618156, 13.447799 ], [ 144.618121, 13.447804 ], [ 144.618094, 13.447795 ], [ 144.618071, 13.447775 ], [ 144.618059, 13.447789 ], [ 144.61807, 13.447813 ], [ 144.618091, 13.447836 ], [ 144.619264, 13.449205 ], [ 144.622786, 13.453314 ], [ 144.623961, 13.454684 ], [ 144.624057, 13.454613 ], [ 144.624308, 13.45443 ], [ 144.624352, 13.454446 ], [ 144.624464, 13.454489 ], [ 144.625054, 13.454303 ], [ 144.626826, 13.453746 ], [ 144.627417, 13.453561 ], [ 144.639384, 13.451187 ], [ 144.666797, 13.445752 ], [ 144.666964, 13.437096 ], [ 144.666977, 13.436427 ], [ 144.675506, 13.428667 ], [ 144.675921, 13.428318 ], [ 144.676346, 13.428162 ], [ 144.676495, 13.427906 ], [ 144.676495, 13.427626 ], [ 144.676665, 13.426414 ], [ 144.676752, 13.42605 ], [ 144.677014, 13.425638 ], [ 144.677237, 13.425409 ], [ 144.677377, 13.425166 ], [ 144.677738, 13.424237 ], [ 144.6776, 13.42407 ], [ 144.67731, 13.423695 ], [ 144.67716, 13.4235 ], [ 144.677058, 13.42337 ], [ 144.676752, 13.422979 ], [ 144.67665, 13.42285 ], [ 144.676459, 13.422613 ], [ 144.67594, 13.42197 ], [ 144.675892, 13.4219 ], [ 144.67572, 13.42165 ], [ 144.675737, 13.421532 ], [ 144.67576, 13.42138 ], [ 144.675835, 13.42119 ], [ 144.67588, 13.42108 ], [ 144.675894, 13.42107 ], [ 144.675936, 13.42104 ], [ 144.67595, 13.42103 ], [ 144.676155, 13.420872 ], [ 144.67638, 13.4207 ], [ 144.67666, 13.42045 ], [ 144.676737, 13.42036 ], [ 144.676907, 13.420165 ], [ 144.67692, 13.42015 ], [ 144.676941, 13.42012 ], [ 144.677041, 13.419985 ], [ 144.677075, 13.419941 ], [ 144.677099, 13.419908 ], [ 144.67715, 13.41984 ], [ 144.67717, 13.41981 ], [ 144.677194, 13.419777 ], [ 144.6774, 13.41948 ], [ 144.677409, 13.419461 ], [ 144.67758, 13.41913 ], [ 144.67777, 13.4187 ], [ 144.677876, 13.418415 ], [ 144.67789, 13.41838 ], [ 144.67799, 13.41805 ], [ 144.67816, 13.41751 ], [ 144.678187, 13.417427 ], [ 144.67832, 13.41703 ], [ 144.6784, 13.41674 ], [ 144.67841, 13.41658 ], [ 144.6784, 13.41643 ], [ 144.678327, 13.416259 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "953200", "GEOID10": "66010953200", "NAME10": "9532", "NAMELSAD10": "Census Tract 9532", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2308069, "AWATER10": 0, "INTPTLAT10": "+13.4600540", "INTPTLON10": "+144.7614527" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.76418, 13.466887 ], [ 144.764477, 13.466996 ], [ 144.764487, 13.466423 ], [ 144.765395, 13.466448 ], [ 144.765873, 13.465682 ], [ 144.765817, 13.465053 ], [ 144.766418, 13.464488 ], [ 144.766746, 13.464896 ], [ 144.767206, 13.464436 ], [ 144.7673, 13.464851 ], [ 144.767716, 13.464716 ], [ 144.767589, 13.464135 ], [ 144.768621, 13.463642 ], [ 144.769204, 13.463529 ], [ 144.769612, 13.46257 ], [ 144.769867, 13.462102 ], [ 144.76927, 13.46199 ], [ 144.76874, 13.462021 ], [ 144.76849, 13.461452 ], [ 144.769432, 13.461371 ], [ 144.770373, 13.46126 ], [ 144.771324, 13.461127 ], [ 144.772145, 13.460848 ], [ 144.772231, 13.460621 ], [ 144.772373, 13.46059 ], [ 144.772325, 13.460337 ], [ 144.772348, 13.460339 ], [ 144.77259, 13.46036 ], [ 144.772509, 13.460259 ], [ 144.77239, 13.46011 ], [ 144.772257, 13.459965 ], [ 144.77217, 13.45987 ], [ 144.772056, 13.459746 ], [ 144.771717, 13.459374 ], [ 144.771604, 13.459251 ], [ 144.771532, 13.459173 ], [ 144.77152, 13.45916 ], [ 144.77137, 13.45901 ], [ 144.771321, 13.458937 ], [ 144.77129, 13.45889 ], [ 144.771275, 13.458844 ], [ 144.77124, 13.45874 ], [ 144.771194, 13.458543 ], [ 144.77108, 13.45805 ], [ 144.770804, 13.457724 ], [ 144.770697, 13.457597 ], [ 144.77059, 13.4575 ], [ 144.77031, 13.45738 ], [ 144.76982, 13.45731 ], [ 144.769283, 13.457027 ], [ 144.76927, 13.45702 ], [ 144.76902, 13.45693 ], [ 144.76879, 13.45695 ], [ 144.76855, 13.45702 ], [ 144.76836, 13.45698 ], [ 144.76823, 13.45684 ], [ 144.76818, 13.45671 ], [ 144.76819, 13.4565 ], [ 144.76831, 13.45631 ], [ 144.768293, 13.456183 ], [ 144.76828, 13.45609 ], [ 144.768238, 13.455765 ], [ 144.768216, 13.45567 ], [ 144.76817, 13.455459 ], [ 144.768082, 13.455165 ], [ 144.767954, 13.454877 ], [ 144.767816, 13.454685 ], [ 144.767662, 13.454525 ], [ 144.767521, 13.454369 ], [ 144.767428, 13.454177 ], [ 144.767349, 13.453982 ], [ 144.767295, 13.453814 ], [ 144.767182, 13.453655 ], [ 144.766947, 13.453451 ], [ 144.766807, 13.453374 ], [ 144.766571, 13.45325 ], [ 144.766496, 13.453177 ], [ 144.766426, 13.453085 ], [ 144.76634, 13.452942 ], [ 144.76637, 13.452667 ], [ 144.766396, 13.452496 ], [ 144.766429, 13.452347 ], [ 144.766495, 13.452193 ], [ 144.76656, 13.452053 ], [ 144.766561, 13.451908 ], [ 144.766449, 13.451831 ], [ 144.76634, 13.451748 ], [ 144.766103, 13.451841 ], [ 144.765962, 13.451932 ], [ 144.765778, 13.452062 ], [ 144.765661, 13.452088 ], [ 144.765556, 13.452123 ], [ 144.765287, 13.452089 ], [ 144.764982, 13.452028 ], [ 144.76477, 13.451996 ], [ 144.764592, 13.45196 ], [ 144.764452, 13.452002 ], [ 144.764221, 13.452163 ], [ 144.763982, 13.452335 ], [ 144.763776, 13.452492 ], [ 144.7636, 13.452612 ], [ 144.763511, 13.452648 ], [ 144.763407, 13.452598 ], [ 144.763178, 13.45257 ], [ 144.763011, 13.452568 ], [ 144.762895, 13.452587 ], [ 144.762768, 13.452634 ], [ 144.762507, 13.452834 ], [ 144.762371, 13.45298 ], [ 144.762201, 13.453192 ], [ 144.762085, 13.453429 ], [ 144.761938, 13.45384 ], [ 144.76187, 13.454053 ], [ 144.761835, 13.454168 ], [ 144.761791, 13.454203 ], [ 144.761751, 13.454203 ], [ 144.761717, 13.454203 ], [ 144.761578, 13.454169 ], [ 144.761351, 13.454108 ], [ 144.761237, 13.454094 ], [ 144.761137, 13.454045 ], [ 144.76097, 13.454092 ], [ 144.76084, 13.45411 ], [ 144.760788, 13.454141 ], [ 144.760677, 13.454181 ], [ 144.76058, 13.454189 ], [ 144.760508, 13.454186 ], [ 144.760166, 13.45421 ], [ 144.760043, 13.454212 ], [ 144.759948, 13.454217 ], [ 144.7598, 13.454346 ], [ 144.759757, 13.454432 ], [ 144.759747, 13.454507 ], [ 144.759718, 13.454737 ], [ 144.759688, 13.455019 ], [ 144.75967, 13.45519 ], [ 144.759515, 13.455419 ], [ 144.759122, 13.455708 ], [ 144.759038, 13.455771 ], [ 144.758991, 13.455806 ], [ 144.758266, 13.45611 ], [ 144.758035, 13.456214 ], [ 144.757909, 13.456089 ], [ 144.75764, 13.455815 ], [ 144.757284, 13.455843 ], [ 144.756762, 13.456389 ], [ 144.756621, 13.456507 ], [ 144.75657, 13.45655 ], [ 144.75644, 13.45657 ], [ 144.75634, 13.45656 ], [ 144.7558, 13.45647 ], [ 144.75573, 13.45648 ], [ 144.75548, 13.45665 ], [ 144.75528, 13.45678 ], [ 144.75519, 13.45681 ], [ 144.75503, 13.45677 ], [ 144.754836, 13.456717 ], [ 144.754, 13.45649 ], [ 144.75359, 13.45636 ], [ 144.7533, 13.45629 ], [ 144.75312, 13.45631 ], [ 144.75294, 13.45639 ], [ 144.752526, 13.456733 ], [ 144.75208, 13.4571 ], [ 144.751981, 13.457108 ], [ 144.752184, 13.457671 ], [ 144.752325, 13.458012 ], [ 144.752278, 13.458084 ], [ 144.752156, 13.458089 ], [ 144.752149, 13.45826 ], [ 144.752016, 13.458457 ], [ 144.752017, 13.458644 ], [ 144.752032, 13.45892 ], [ 144.75206, 13.459 ], [ 144.75209, 13.45916 ], [ 144.75209, 13.459606 ], [ 144.75209, 13.45986 ], [ 144.75209, 13.45994 ], [ 144.75209, 13.46018 ], [ 144.75209, 13.46026 ], [ 144.75209, 13.4603 ], [ 144.75209, 13.46042 ], [ 144.75209, 13.46046 ], [ 144.752092, 13.46067 ], [ 144.752098, 13.4613 ], [ 144.7521, 13.46151 ], [ 144.75209, 13.46157 ], [ 144.75209, 13.461744 ], [ 144.75209, 13.46208 ], [ 144.752094, 13.46245 ], [ 144.752098, 13.462686 ], [ 144.752098, 13.462714 ], [ 144.752099, 13.462801 ], [ 144.7521, 13.46283 ], [ 144.752098, 13.462973 ], [ 144.752096, 13.463405 ], [ 144.752096, 13.463549 ], [ 144.752094, 13.463743 ], [ 144.752091, 13.464325 ], [ 144.75209, 13.46452 ], [ 144.75209, 13.464647 ], [ 144.75209, 13.46478 ], [ 144.75206, 13.465028 ], [ 144.75206, 13.46503 ], [ 144.75202, 13.46515 ], [ 144.752027, 13.466422 ], [ 144.752025, 13.466885 ], [ 144.7522, 13.46728 ], [ 144.75221, 13.46726 ], [ 144.75224, 13.4672 ], [ 144.75225, 13.46718 ], [ 144.752264, 13.467151 ], [ 144.75229, 13.4671 ], [ 144.752315, 13.467069 ], [ 144.752336, 13.467044 ], [ 144.752444, 13.467062 ], [ 144.752684, 13.467135 ], [ 144.753394, 13.46734 ], [ 144.754057, 13.46751 ], [ 144.75405, 13.46734 ], [ 144.754066, 13.467205 ], [ 144.75408, 13.46709 ], [ 144.754102, 13.467014 ], [ 144.75414, 13.46689 ], [ 144.75421, 13.46669 ], [ 144.75431, 13.46649 ], [ 144.75446, 13.466294 ], [ 144.75448, 13.46627 ], [ 144.7547, 13.46606 ], [ 144.75499, 13.46583 ], [ 144.755115, 13.465726 ], [ 144.75578, 13.46518 ], [ 144.75614, 13.46481 ], [ 144.756274, 13.464632 ], [ 144.75633, 13.46456 ], [ 144.756572, 13.46419 ], [ 144.756679, 13.464187 ], [ 144.75683, 13.464041 ], [ 144.757021, 13.463875 ], [ 144.757058, 13.463843 ], [ 144.757293, 13.463735 ], [ 144.757536, 13.463648 ], [ 144.758016, 13.463639 ], [ 144.7581, 13.46363 ], [ 144.75821, 13.463698 ], [ 144.75823, 13.46371 ], [ 144.75838, 13.46378 ], [ 144.759348, 13.464328 ], [ 144.759921, 13.464817 ], [ 144.760381, 13.465219 ], [ 144.760559, 13.465367 ], [ 144.76067, 13.465467 ], [ 144.760774, 13.465568 ], [ 144.760895, 13.465662 ], [ 144.761102, 13.465771 ], [ 144.761105, 13.465972 ], [ 144.761121, 13.466054 ], [ 144.761193, 13.46619 ], [ 144.761274, 13.466364 ], [ 144.761367, 13.466534 ], [ 144.761364, 13.466579 ], [ 144.761422, 13.466594 ], [ 144.763619, 13.467165 ], [ 144.763604, 13.466676 ], [ 144.76418, 13.466887 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "955100", "GEOID10": "66010955100", "NAME10": "9551", "NAMELSAD10": "Census Tract 9551", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 40643772, "AWATER10": 209325, "INTPTLAT10": "+13.3356600", "INTPTLON10": "+144.7218481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.707539, 13.302257 ], [ 144.707003, 13.301888 ], [ 144.696747, 13.304559 ], [ 144.694473, 13.303243 ], [ 144.688378, 13.299979 ], [ 144.687485, 13.2995 ], [ 144.685016, 13.304354 ], [ 144.677743, 13.31866 ], [ 144.680516, 13.315811 ], [ 144.681836, 13.314455 ], [ 144.682689, 13.31483 ], [ 144.68423, 13.315511 ], [ 144.688395, 13.317351 ], [ 144.688731, 13.317727 ], [ 144.689855, 13.318984 ], [ 144.690174, 13.319341 ], [ 144.691133, 13.320414 ], [ 144.691453, 13.320772 ], [ 144.691683, 13.32103 ], [ 144.692376, 13.321805 ], [ 144.692608, 13.322064 ], [ 144.693503, 13.323066 ], [ 144.696191, 13.326074 ], [ 144.697087, 13.327077 ], [ 144.697372, 13.327363 ], [ 144.698229, 13.328223 ], [ 144.698515, 13.32851 ], [ 144.698552, 13.328615 ], [ 144.698713, 13.33117 ], [ 144.699555, 13.332492 ], [ 144.700924, 13.334641 ], [ 144.702235, 13.334491 ], [ 144.702757, 13.334866 ], [ 144.706551, 13.339333 ], [ 144.706612, 13.34123 ], [ 144.706247, 13.34149 ], [ 144.704781, 13.342538 ], [ 144.704942, 13.342758 ], [ 144.705093, 13.34319 ], [ 144.705254, 13.343705 ], [ 144.70531, 13.344256 ], [ 144.705163, 13.344986 ], [ 144.702848, 13.34658 ], [ 144.704379, 13.348555 ], [ 144.704433, 13.350358 ], [ 144.703613, 13.351848 ], [ 144.705501, 13.353199 ], [ 144.706516, 13.353494 ], [ 144.706574, 13.357073 ], [ 144.706597, 13.357982 ], [ 144.708269, 13.358446 ], [ 144.711057, 13.358589 ], [ 144.71124, 13.358538 ], [ 144.711652, 13.358343 ], [ 144.712029, 13.357839 ], [ 144.712457, 13.357877 ], [ 144.713094, 13.358171 ], [ 144.713437, 13.358329 ], [ 144.713891, 13.358441 ], [ 144.71412, 13.3583 ], [ 144.714621, 13.357994 ], [ 144.714903, 13.358032 ], [ 144.715346, 13.358093 ], [ 144.715917, 13.358619 ], [ 144.716276, 13.358797 ], [ 144.716556, 13.358815 ], [ 144.716935, 13.358518 ], [ 144.717056, 13.358298 ], [ 144.717837, 13.357888 ], [ 144.71814, 13.358038 ], [ 144.718285, 13.357972 ], [ 144.719426, 13.358437 ], [ 144.719679, 13.35854 ], [ 144.719851, 13.358544 ], [ 144.720275, 13.358972 ], [ 144.720743, 13.358757 ], [ 144.721275, 13.357427 ], [ 144.721488, 13.357351 ], [ 144.721915, 13.357562 ], [ 144.722104, 13.357588 ], [ 144.72212, 13.364095 ], [ 144.722131, 13.368083 ], [ 144.722162, 13.368102 ], [ 144.73204, 13.370041 ], [ 144.732176, 13.370068 ], [ 144.743008, 13.36916 ], [ 144.750632, 13.368527 ], [ 144.752544, 13.368369 ], [ 144.752672, 13.368641 ], [ 144.753074, 13.368637 ], [ 144.753351, 13.368593 ], [ 144.753558, 13.368377 ], [ 144.753699, 13.368397 ], [ 144.753702, 13.368618 ], [ 144.754078, 13.368888 ], [ 144.75409, 13.36909 ], [ 144.754514, 13.369644 ], [ 144.754255, 13.369851 ], [ 144.754392, 13.370207 ], [ 144.754375, 13.370453 ], [ 144.754545, 13.370607 ], [ 144.754771, 13.370883 ], [ 144.754487, 13.37112 ], [ 144.754502, 13.371367 ], [ 144.754624, 13.371491 ], [ 144.754887, 13.371466 ], [ 144.755304, 13.372009 ], [ 144.756232, 13.372108 ], [ 144.75708, 13.371836 ], [ 144.757405, 13.3719 ], [ 144.757519, 13.3719 ], [ 144.757786, 13.372003 ], [ 144.758157, 13.372148 ], [ 144.758313, 13.372182 ], [ 144.758418, 13.372098 ], [ 144.758521, 13.371846 ], [ 144.758663, 13.371762 ], [ 144.759135, 13.370804 ], [ 144.760072, 13.370508 ], [ 144.760244, 13.370573 ], [ 144.760321, 13.370597 ], [ 144.761168, 13.369822 ], [ 144.761275, 13.369822 ], [ 144.761402, 13.370015 ], [ 144.76145, 13.370122 ], [ 144.761559, 13.369995 ], [ 144.761722, 13.370021 ], [ 144.761808, 13.370089 ], [ 144.762041, 13.370143 ], [ 144.762183, 13.370306 ], [ 144.76232, 13.370291 ], [ 144.762325, 13.370237 ], [ 144.7623, 13.370084 ], [ 144.762518, 13.37001 ], [ 144.762921, 13.369808 ], [ 144.763224, 13.369841 ], [ 144.763526, 13.369921 ], [ 144.763797, 13.370158 ], [ 144.764076, 13.370173 ], [ 144.764549, 13.370321 ], [ 144.764803, 13.37031 ], [ 144.765005, 13.370291 ], [ 144.765097, 13.370232 ], [ 144.765279, 13.37004 ], [ 144.765386, 13.369748 ], [ 144.76538, 13.369397 ], [ 144.76531, 13.369003 ], [ 144.765062, 13.368683 ], [ 144.765041, 13.368565 ], [ 144.76521, 13.368324 ], [ 144.765234, 13.368123 ], [ 144.765411, 13.368094 ], [ 144.765619, 13.367931 ], [ 144.76576, 13.367921 ], [ 144.765924, 13.367556 ], [ 144.766139, 13.367528 ], [ 144.766198, 13.367378 ], [ 144.766637, 13.366792 ], [ 144.767206, 13.366571 ], [ 144.767345, 13.366588 ], [ 144.767436, 13.366529 ], [ 144.767494, 13.366199 ], [ 144.767913, 13.365709 ], [ 144.768045, 13.365709 ], [ 144.768353, 13.365926 ], [ 144.768656, 13.366136 ], [ 144.770331, 13.36566 ], [ 144.770362, 13.365474 ], [ 144.770397, 13.365369 ], [ 144.770457, 13.365245 ], [ 144.770467, 13.36515 ], [ 144.770507, 13.365059 ], [ 144.770509, 13.365041 ], [ 144.77056, 13.364668 ], [ 144.770615, 13.364482 ], [ 144.770665, 13.364372 ], [ 144.770705, 13.364301 ], [ 144.770695, 13.364234 ], [ 144.77072, 13.364177 ], [ 144.770795, 13.364082 ], [ 144.77082, 13.364005 ], [ 144.77085, 13.363886 ], [ 144.770875, 13.363815 ], [ 144.770934, 13.363748 ], [ 144.771013, 13.363668 ], [ 144.771127, 13.363535 ], [ 144.771186, 13.363459 ], [ 144.771261, 13.363311 ], [ 144.771267, 13.363305 ], [ 144.77134, 13.36324 ], [ 144.77136, 13.363159 ], [ 144.771365, 13.363092 ], [ 144.771395, 13.363035 ], [ 144.771413, 13.363025 ], [ 144.771439, 13.363026 ], [ 144.771572, 13.362874 ], [ 144.771622, 13.362801 ], [ 144.771643, 13.362565 ], [ 144.771725, 13.362533 ], [ 144.771872, 13.362377 ], [ 144.771881, 13.362107 ], [ 144.771856, 13.361927 ], [ 144.771635, 13.361788 ], [ 144.771635, 13.360756 ], [ 144.771579, 13.359714 ], [ 144.771575, 13.359666 ], [ 144.771583, 13.359345 ], [ 144.771595, 13.359049 ], [ 144.771603, 13.358932 ], [ 144.771615, 13.358767 ], [ 144.771641, 13.358552 ], [ 144.771669, 13.358232 ], [ 144.771705, 13.357969 ], [ 144.771747, 13.357707 ], [ 144.771763, 13.357487 ], [ 144.771828, 13.357344 ], [ 144.771876, 13.356909 ], [ 144.771868, 13.356794 ], [ 144.771848, 13.356613 ], [ 144.771841, 13.356541 ], [ 144.771784, 13.356349 ], [ 144.771744, 13.355842 ], [ 144.771701, 13.355741 ], [ 144.771644, 13.35563 ], [ 144.771616, 13.355496 ], [ 144.771598, 13.355319 ], [ 144.771605, 13.355234 ], [ 144.771609, 13.3552 ], [ 144.771648, 13.355138 ], [ 144.771683, 13.355066 ], [ 144.771689, 13.355 ], [ 144.771655, 13.354889 ], [ 144.771652, 13.354722 ], [ 144.771657, 13.354555 ], [ 144.771659, 13.354492 ], [ 144.77169, 13.354359 ], [ 144.77168, 13.354321 ], [ 144.771745, 13.354144 ], [ 144.771805, 13.354006 ], [ 144.771895, 13.353815 ], [ 144.772068, 13.353559 ], [ 144.772076, 13.353473 ], [ 144.772082, 13.353458 ], [ 144.772116, 13.353378 ], [ 144.772117, 13.353315 ], [ 144.772083, 13.353234 ], [ 144.772108, 13.353172 ], [ 144.772158, 13.353096 ], [ 144.772173, 13.353005 ], [ 144.772223, 13.352915 ], [ 144.772249, 13.35288 ], [ 144.772297, 13.352815 ], [ 144.772372, 13.352672 ], [ 144.772402, 13.352543 ], [ 144.772432, 13.352467 ], [ 144.772463, 13.352314 ], [ 144.77243, 13.352218 ], [ 144.772362, 13.352184 ], [ 144.772269, 13.352112 ], [ 144.772256, 13.352021 ], [ 144.772212, 13.351977 ], [ 144.772198, 13.351971 ], [ 144.772163, 13.351958 ], [ 144.772091, 13.351847 ], [ 144.771995, 13.351732 ], [ 144.771947, 13.351621 ], [ 144.771916, 13.351277 ], [ 144.771877, 13.350942 ], [ 144.771884, 13.350741 ], [ 144.771911, 13.350473 ], [ 144.771913, 13.350282 ], [ 144.771934, 13.350043 ], [ 144.771986, 13.349694 ], [ 144.771974, 13.349403 ], [ 144.771975, 13.349293 ], [ 144.771997, 13.34903 ], [ 144.772022, 13.348845 ], [ 144.772031, 13.348786 ], [ 144.772043, 13.348609 ], [ 144.77204, 13.348409 ], [ 144.772071, 13.348232 ], [ 144.772048, 13.34805 ], [ 144.772036, 13.347775 ], [ 144.772032, 13.347691 ], [ 144.772042, 13.347576 ], [ 144.772053, 13.347452 ], [ 144.772049, 13.347342 ], [ 144.77207, 13.34719 ], [ 144.772106, 13.347056 ], [ 144.772136, 13.346994 ], [ 144.772146, 13.346975 ], [ 144.772157, 13.346798 ], [ 144.772096, 13.346578 ], [ 144.772019, 13.346434 ], [ 144.771971, 13.346299 ], [ 144.771896, 13.346131 ], [ 144.771847, 13.346021 ], [ 144.771804, 13.345872 ], [ 144.771703, 13.345675 ], [ 144.77152, 13.345401 ], [ 144.771482, 13.345272 ], [ 144.771396, 13.345094 ], [ 144.771378, 13.344926 ], [ 144.771389, 13.344788 ], [ 144.771439, 13.344683 ], [ 144.771558, 13.344498 ], [ 144.771595, 13.344412 ], [ 144.771691, 13.344365 ], [ 144.77176, 13.344313 ], [ 144.771783, 13.344251 ], [ 144.771785, 13.344246 ], [ 144.771859, 13.34419 ], [ 144.771917, 13.344161 ], [ 144.772026, 13.344095 ], [ 144.77208, 13.344015 ], [ 144.772134, 13.343943 ], [ 144.772179, 13.343843 ], [ 144.772241, 13.343767 ], [ 144.772267, 13.343746 ], [ 144.772305, 13.343715 ], [ 144.772335, 13.343649 ], [ 144.772355, 13.343591 ], [ 144.77238, 13.343553 ], [ 144.772429, 13.34352 ], [ 144.772458, 13.343478 ], [ 144.77243, 13.343439 ], [ 144.77241, 13.343386 ], [ 144.772421, 13.343343 ], [ 144.77247, 13.343286 ], [ 144.772461, 13.343215 ], [ 144.772422, 13.343152 ], [ 144.772433, 13.34308 ], [ 144.772472, 13.343052 ], [ 144.772497, 13.34299 ], [ 144.772493, 13.342947 ], [ 144.772454, 13.342894 ], [ 144.77243, 13.342832 ], [ 144.772411, 13.342755 ], [ 144.772353, 13.342702 ], [ 144.77229, 13.342668 ], [ 144.772114, 13.342705 ], [ 144.772021, 13.342713 ], [ 144.771967, 13.342742 ], [ 144.771874, 13.342736 ], [ 144.771845, 13.342779 ], [ 144.771804, 13.342775 ], [ 144.771772, 13.342773 ], [ 144.771713, 13.342749 ], [ 144.771664, 13.342763 ], [ 144.771645, 13.342734 ], [ 144.771593, 13.342576 ], [ 144.771554, 13.34248 ], [ 144.771516, 13.342427 ], [ 144.771463, 13.342364 ], [ 144.771453, 13.342312 ], [ 144.771494, 13.342188 ], [ 144.771599, 13.341926 ], [ 144.771633, 13.341864 ], [ 144.771683, 13.341831 ], [ 144.771741, 13.341807 ], [ 144.77181, 13.341793 ], [ 144.771834, 13.34177 ], [ 144.771864, 13.341708 ], [ 144.771923, 13.341665 ], [ 144.772011, 13.341652 ], [ 144.77205, 13.341686 ], [ 144.772128, 13.341705 ], [ 144.772294, 13.341683 ], [ 144.772412, 13.34166 ], [ 144.77249, 13.341637 ], [ 144.772574, 13.341552 ], [ 144.772633, 13.341466 ], [ 144.772644, 13.341394 ], [ 144.772676, 13.341289 ], [ 144.772628, 13.341193 ], [ 144.772615, 13.341102 ], [ 144.772635, 13.34105 ], [ 144.772655, 13.340926 ], [ 144.772597, 13.340858 ], [ 144.772554, 13.340801 ], [ 144.772545, 13.340724 ], [ 144.772521, 13.340647 ], [ 144.772409, 13.340584 ], [ 144.772361, 13.340512 ], [ 144.772362, 13.340445 ], [ 144.772318, 13.340406 ], [ 144.772304, 13.340344 ], [ 144.772295, 13.34032 ], [ 144.772261, 13.340286 ], [ 144.772202, 13.340257 ], [ 144.772188, 13.340204 ], [ 144.772203, 13.340176 ], [ 144.772247, 13.340138 ], [ 144.772253, 13.340095 ], [ 144.7722, 13.339985 ], [ 144.772112, 13.339984 ], [ 144.772054, 13.339974 ], [ 144.772005, 13.339911 ], [ 144.772006, 13.339859 ], [ 144.772011, 13.339825 ], [ 144.771992, 13.339815 ], [ 144.77206, 13.339763 ], [ 144.77209, 13.339682 ], [ 144.772082, 13.339572 ], [ 144.772038, 13.339486 ], [ 144.771894, 13.339293 ], [ 144.771841, 13.339202 ], [ 144.771822, 13.339101 ], [ 144.771818, 13.339011 ], [ 144.771762, 13.338972 ], [ 144.771716, 13.338896 ], [ 144.771695, 13.338861 ], [ 144.771579, 13.338774 ], [ 144.771482, 13.338711 ], [ 144.771434, 13.338625 ], [ 144.771371, 13.338576 ], [ 144.771337, 13.338476 ], [ 144.771284, 13.338427 ], [ 144.771236, 13.338355 ], [ 144.771184, 13.338202 ], [ 144.771086, 13.338163 ], [ 144.770979, 13.338152 ], [ 144.770891, 13.33818 ], [ 144.770818, 13.338132 ], [ 144.770794, 13.338083 ], [ 144.770731, 13.338054 ], [ 144.770628, 13.338053 ], [ 144.770511, 13.338028 ], [ 144.770399, 13.338037 ], [ 144.77034, 13.338013 ], [ 144.770316, 13.33769 ], [ 144.770244, 13.336724 ], [ 144.770221, 13.336402 ], [ 144.768791, 13.336537 ], [ 144.768512, 13.336589 ], [ 144.76344, 13.337542 ], [ 144.76231, 13.337755 ], [ 144.762032, 13.337807 ], [ 144.76175, 13.33786 ], [ 144.761747, 13.337915 ], [ 144.761743, 13.338081 ], [ 144.761742, 13.33812 ], [ 144.761743, 13.338136 ], [ 144.761868, 13.338242 ], [ 144.761997, 13.338369 ], [ 144.76203, 13.338432 ], [ 144.76201, 13.338475 ], [ 144.762005, 13.33857 ], [ 144.762043, 13.338661 ], [ 144.76212, 13.338758 ], [ 144.762045, 13.338834 ], [ 144.761777, 13.339111 ], [ 144.761289, 13.339361 ], [ 144.760683, 13.339223 ], [ 144.760122, 13.338748 ], [ 144.76004, 13.338567 ], [ 144.759964, 13.338332 ], [ 144.759739, 13.337607 ], [ 144.7595, 13.336567 ], [ 144.759483, 13.335677 ], [ 144.758936, 13.335565 ], [ 144.758541, 13.33544 ], [ 144.758165, 13.335334 ], [ 144.757789, 13.335426 ], [ 144.757675, 13.335498 ], [ 144.757172, 13.335823 ], [ 144.756925, 13.336307 ], [ 144.7567, 13.336749 ], [ 144.756253, 13.337048 ], [ 144.755555, 13.337311 ], [ 144.755014, 13.337483 ], [ 144.754877, 13.33754 ], [ 144.754627, 13.337633 ], [ 144.754418, 13.33773 ], [ 144.754116, 13.337918 ], [ 144.754019, 13.337807 ], [ 144.754054, 13.33769 ], [ 144.754224, 13.337351 ], [ 144.754118, 13.337174 ], [ 144.75394, 13.337206 ], [ 144.753716, 13.337311 ], [ 144.753479, 13.337331 ], [ 144.753287, 13.337232 ], [ 144.753235, 13.337107 ], [ 144.753301, 13.336857 ], [ 144.753472, 13.336679 ], [ 144.753551, 13.336606 ], [ 144.7539, 13.336751 ], [ 144.754032, 13.336646 ], [ 144.754059, 13.336422 ], [ 144.753895, 13.336176 ], [ 144.753825, 13.336072 ], [ 144.753727, 13.335925 ], [ 144.753551, 13.335795 ], [ 144.75338, 13.335809 ], [ 144.753202, 13.335894 ], [ 144.753116, 13.336026 ], [ 144.753162, 13.336151 ], [ 144.753238, 13.336258 ], [ 144.752763, 13.336379 ], [ 144.752728, 13.336388 ], [ 144.752445, 13.336275 ], [ 144.752205, 13.335765 ], [ 144.751715, 13.335701 ], [ 144.751077, 13.335518 ], [ 144.750858, 13.335042 ], [ 144.750526, 13.334614 ], [ 144.750302, 13.334524 ], [ 144.750164, 13.334148 ], [ 144.750177, 13.333901 ], [ 144.749872, 13.333481 ], [ 144.749711, 13.333365 ], [ 144.749409, 13.333469 ], [ 144.749289, 13.333322 ], [ 144.749102, 13.333119 ], [ 144.748449, 13.333205 ], [ 144.74822, 13.333207 ], [ 144.747987, 13.33295 ], [ 144.747841, 13.332652 ], [ 144.74784, 13.332452 ], [ 144.747854, 13.332371 ], [ 144.74766, 13.332306 ], [ 144.74749, 13.332406 ], [ 144.747343, 13.332341 ], [ 144.747319, 13.332155 ], [ 144.747343, 13.331908 ], [ 144.747405, 13.331833 ], [ 144.747584, 13.331833 ], [ 144.747732, 13.331916 ], [ 144.748067, 13.332106 ], [ 144.748272, 13.332375 ], [ 144.748441, 13.332416 ], [ 144.748555, 13.332384 ], [ 144.74869, 13.332219 ], [ 144.748522, 13.331841 ], [ 144.748373, 13.3316 ], [ 144.748423, 13.331233 ], [ 144.748324, 13.331128 ], [ 144.748145, 13.331029 ], [ 144.748145, 13.330893 ], [ 144.748239, 13.330567 ], [ 144.748363, 13.330476 ], [ 144.748469, 13.330555 ], [ 144.748678, 13.330642 ], [ 144.748865, 13.330693 ], [ 144.749127, 13.3304 ], [ 144.749225, 13.330328 ], [ 144.749302, 13.330324 ], [ 144.749419, 13.33012 ], [ 144.749291, 13.330062 ], [ 144.749147, 13.330055 ], [ 144.749076, 13.330067 ], [ 144.749065, 13.329945 ], [ 144.749154, 13.329839 ], [ 144.749302, 13.329854 ], [ 144.749559, 13.329854 ], [ 144.750151, 13.329544 ], [ 144.750509, 13.329204 ], [ 144.750587, 13.329013 ], [ 144.749466, 13.327588 ], [ 144.749316, 13.327541 ], [ 144.748679, 13.327792 ], [ 144.748398, 13.327758 ], [ 144.747989, 13.328025 ], [ 144.747305, 13.328464 ], [ 144.746305, 13.328571 ], [ 144.746126, 13.328666 ], [ 144.745974, 13.328594 ], [ 144.745865, 13.328316 ], [ 144.745739, 13.327851 ], [ 144.745605, 13.327492 ], [ 144.745479, 13.32741 ], [ 144.745421, 13.32741 ], [ 144.745145, 13.327655 ], [ 144.745026, 13.327728 ], [ 144.744892, 13.327696 ], [ 144.744777, 13.327444 ], [ 144.744676, 13.327349 ], [ 144.744684, 13.327167 ], [ 144.744647, 13.327102 ], [ 144.744615, 13.327046 ], [ 144.744512, 13.326934 ], [ 144.744201, 13.326943 ], [ 144.743898, 13.32696 ], [ 144.743604, 13.326994 ], [ 144.743423, 13.326969 ], [ 144.743302, 13.326779 ], [ 144.743302, 13.326589 ], [ 144.743098, 13.326487 ], [ 144.742827, 13.326494 ], [ 144.742443, 13.326616 ], [ 144.742222, 13.326727 ], [ 144.741942, 13.326863 ], [ 144.741606, 13.327508 ], [ 144.741488, 13.327663 ], [ 144.740934, 13.327966 ], [ 144.739655, 13.327887 ], [ 144.737891, 13.326888 ], [ 144.737812, 13.326504 ], [ 144.737898, 13.326327 ], [ 144.73859, 13.325391 ], [ 144.738542, 13.324952 ], [ 144.738028, 13.324664 ], [ 144.73782, 13.324282 ], [ 144.737627, 13.324233 ], [ 144.737259, 13.324403 ], [ 144.736796, 13.32296 ], [ 144.736403, 13.322691 ], [ 144.735118, 13.322535 ], [ 144.734543, 13.322984 ], [ 144.733276, 13.322396 ], [ 144.73315, 13.322085 ], [ 144.733368, 13.321832 ], [ 144.733945, 13.321626 ], [ 144.734262, 13.321223 ], [ 144.734129, 13.32095 ], [ 144.733251, 13.320786 ], [ 144.732021, 13.320541 ], [ 144.731828, 13.320411 ], [ 144.731803, 13.319537 ], [ 144.731501, 13.31814 ], [ 144.73085, 13.317381 ], [ 144.730985, 13.316763 ], [ 144.730511, 13.31615 ], [ 144.728946, 13.315338 ], [ 144.728685, 13.314196 ], [ 144.728933, 13.313569 ], [ 144.728907, 13.312825 ], [ 144.728464, 13.312533 ], [ 144.727896, 13.313171 ], [ 144.727512, 13.31313 ], [ 144.728059, 13.312165 ], [ 144.728125, 13.311848 ], [ 144.728411, 13.311493 ], [ 144.727877, 13.310515 ], [ 144.726729, 13.310731 ], [ 144.726181, 13.310655 ], [ 144.725809, 13.310658 ], [ 144.725279, 13.310135 ], [ 144.724564, 13.309908 ], [ 144.723325, 13.30924 ], [ 144.723015, 13.309161 ], [ 144.722344, 13.30924 ], [ 144.722225, 13.308504 ], [ 144.722624, 13.307885 ], [ 144.722248, 13.307732 ], [ 144.721638, 13.308361 ], [ 144.72111, 13.308101 ], [ 144.720002, 13.307987 ], [ 144.719825, 13.307838 ], [ 144.719687, 13.307717 ], [ 144.719791, 13.307519 ], [ 144.719825, 13.307164 ], [ 144.719535, 13.306878 ], [ 144.719393, 13.306628 ], [ 144.719255, 13.306421 ], [ 144.719082, 13.306386 ], [ 144.718754, 13.306386 ], [ 144.718719, 13.306576 ], [ 144.718711, 13.307096 ], [ 144.718529, 13.307164 ], [ 144.718114, 13.307561 ], [ 144.717924, 13.307786 ], [ 144.717665, 13.307648 ], [ 144.717527, 13.307631 ], [ 144.717077, 13.307752 ], [ 144.71687, 13.307821 ], [ 144.716559, 13.30808 ], [ 144.716058, 13.308685 ], [ 144.716144, 13.308771 ], [ 144.716092, 13.308961 ], [ 144.715902, 13.309134 ], [ 144.71585, 13.309117 ], [ 144.71585, 13.309272 ], [ 144.715332, 13.309704 ], [ 144.715055, 13.309894 ], [ 144.714658, 13.310136 ], [ 144.71452, 13.310015 ], [ 144.714468, 13.30986 ], [ 144.714641, 13.309497 ], [ 144.714502, 13.30929 ], [ 144.713932, 13.309272 ], [ 144.713794, 13.309255 ], [ 144.713587, 13.309082 ], [ 144.713569, 13.308806 ], [ 144.713241, 13.308754 ], [ 144.712756, 13.308615 ], [ 144.712202, 13.308405 ], [ 144.712421, 13.307752 ], [ 144.711953, 13.307313 ], [ 144.711547, 13.307298 ], [ 144.710574, 13.306127 ], [ 144.710641, 13.305432 ], [ 144.709838, 13.305167 ], [ 144.709127, 13.304792 ], [ 144.70861, 13.304711 ], [ 144.708524, 13.304762 ], [ 144.708385, 13.304771 ], [ 144.708092, 13.30465 ], [ 144.707971, 13.304711 ], [ 144.708005, 13.304206 ], [ 144.708386, 13.304122 ], [ 144.708377, 13.303846 ], [ 144.708135, 13.303535 ], [ 144.707927, 13.303466 ], [ 144.707406, 13.302993 ], [ 144.707539, 13.302715 ], [ 144.707539, 13.302257 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "952200", "GEOID10": "66010952200", "NAME10": "9522", "NAMELSAD10": "Census Tract 9522", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 922026, "AWATER10": 0, "INTPTLAT10": "+13.4914982", "INTPTLON10": "+144.7795031" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.782174, 13.49522 ], [ 144.78219, 13.495147 ], [ 144.782213, 13.495042 ], [ 144.782239, 13.494912 ], [ 144.78232, 13.494525 ], [ 144.78233, 13.49448 ], [ 144.78236, 13.4944 ], [ 144.782392, 13.49427 ], [ 144.782488, 13.493879 ], [ 144.78252, 13.49375 ], [ 144.782548, 13.493622 ], [ 144.782631, 13.493238 ], [ 144.78266, 13.49311 ], [ 144.782686, 13.492992 ], [ 144.782764, 13.492638 ], [ 144.782775, 13.492587 ], [ 144.78279, 13.49252 ], [ 144.782823, 13.492389 ], [ 144.782924, 13.491999 ], [ 144.78293, 13.49198 ], [ 144.78296, 13.49187 ], [ 144.782973, 13.491816 ], [ 144.783, 13.49171 ], [ 144.783011, 13.491657 ], [ 144.783023, 13.491604 ], [ 144.783065, 13.491401 ], [ 144.78307, 13.49138 ], [ 144.78316, 13.49128 ], [ 144.78332, 13.49061 ], [ 144.78334, 13.49052 ], [ 144.78351, 13.48973 ], [ 144.7835, 13.48947 ], [ 144.78354, 13.4893 ], [ 144.78357, 13.4892 ], [ 144.78357, 13.489198 ], [ 144.783655, 13.488893 ], [ 144.78367, 13.48884 ], [ 144.78367, 13.48879 ], [ 144.783682, 13.488711 ], [ 144.78372, 13.48848 ], [ 144.783721, 13.488474 ], [ 144.78375, 13.4884 ], [ 144.78382, 13.4883 ], [ 144.783826, 13.488239 ], [ 144.78384, 13.48811 ], [ 144.7839, 13.48787 ], [ 144.78393, 13.48772 ], [ 144.783935, 13.487704 ], [ 144.78399, 13.48753 ], [ 144.783968, 13.487519 ], [ 144.78391, 13.48749 ], [ 144.783902, 13.487487 ], [ 144.78388, 13.48748 ], [ 144.783631, 13.487368 ], [ 144.78303, 13.4871 ], [ 144.782884, 13.487038 ], [ 144.782634, 13.486932 ], [ 144.782581, 13.486909 ], [ 144.782422, 13.486842 ], [ 144.78237, 13.48682 ], [ 144.782337, 13.486807 ], [ 144.782239, 13.486768 ], [ 144.782207, 13.486756 ], [ 144.782173, 13.486742 ], [ 144.782073, 13.486703 ], [ 144.78204, 13.48669 ], [ 144.781997, 13.486671 ], [ 144.781952, 13.486651 ], [ 144.781883, 13.486621 ], [ 144.781825, 13.486595 ], [ 144.7817, 13.48654 ], [ 144.781652, 13.48652 ], [ 144.781133, 13.486302 ], [ 144.780961, 13.48623 ], [ 144.780845, 13.486181 ], [ 144.78077, 13.48615 ], [ 144.780496, 13.486044 ], [ 144.78038, 13.486 ], [ 144.780309, 13.485974 ], [ 144.780096, 13.485899 ], [ 144.780026, 13.485874 ], [ 144.779975, 13.485855 ], [ 144.77996, 13.48585 ], [ 144.779821, 13.485813 ], [ 144.77977, 13.4858 ], [ 144.779708, 13.485783 ], [ 144.779522, 13.485732 ], [ 144.779461, 13.485715 ], [ 144.779399, 13.485698 ], [ 144.779216, 13.485647 ], [ 144.779155, 13.485631 ], [ 144.779112, 13.485619 ], [ 144.77904, 13.4856 ], [ 144.778983, 13.485582 ], [ 144.778941, 13.48557 ], [ 144.778777, 13.485519 ], [ 144.77822, 13.485353 ], [ 144.7781, 13.48532 ], [ 144.777868, 13.485253 ], [ 144.777172, 13.485052 ], [ 144.77706, 13.48502 ], [ 144.77694, 13.48499 ], [ 144.776934, 13.485004 ], [ 144.776917, 13.48505 ], [ 144.776912, 13.485065 ], [ 144.776897, 13.485103 ], [ 144.776854, 13.485221 ], [ 144.77684, 13.48526 ], [ 144.776822, 13.485316 ], [ 144.77681, 13.48536 ], [ 144.776747, 13.485477 ], [ 144.77672, 13.48553 ], [ 144.776695, 13.485575 ], [ 144.776623, 13.485712 ], [ 144.776599, 13.485758 ], [ 144.776573, 13.485805 ], [ 144.77655, 13.48585 ], [ 144.776523, 13.485957 ], [ 144.77651, 13.48601 ], [ 144.77642, 13.486147 ], [ 144.7764, 13.48618 ], [ 144.77622, 13.48649 ], [ 144.776175, 13.486574 ], [ 144.7761, 13.48672 ], [ 144.776061, 13.486824 ], [ 144.77606, 13.48683 ], [ 144.77605, 13.4871 ], [ 144.776053, 13.487158 ], [ 144.77606, 13.48727 ], [ 144.776073, 13.487344 ], [ 144.77609, 13.48744 ], [ 144.776129, 13.487563 ], [ 144.776152, 13.487635 ], [ 144.776192, 13.48776 ], [ 144.776312, 13.488134 ], [ 144.77633, 13.48819 ], [ 144.776349, 13.488261 ], [ 144.776446, 13.488619 ], [ 144.77645, 13.48863 ], [ 144.77656, 13.48913 ], [ 144.77659, 13.48964 ], [ 144.776586, 13.489719 ], [ 144.77657, 13.49009 ], [ 144.776566, 13.490151 ], [ 144.776555, 13.490338 ], [ 144.776552, 13.4904 ], [ 144.77653, 13.49076 ], [ 144.776533, 13.490903 ], [ 144.77655, 13.49166 ], [ 144.77654, 13.49186 ], [ 144.77651, 13.49216 ], [ 144.77644, 13.49238 ], [ 144.776431, 13.492403 ], [ 144.77636, 13.4926 ], [ 144.77628, 13.49275 ], [ 144.77625, 13.49281 ], [ 144.77622, 13.49286 ], [ 144.776213, 13.492872 ], [ 144.776193, 13.492912 ], [ 144.776187, 13.492925 ], [ 144.776181, 13.492935 ], [ 144.776165, 13.492969 ], [ 144.77616, 13.49298 ], [ 144.776136, 13.493027 ], [ 144.77612, 13.49306 ], [ 144.776071, 13.493171 ], [ 144.77605, 13.49322 ], [ 144.776042, 13.493276 ], [ 144.776018, 13.493444 ], [ 144.77601, 13.4935 ], [ 144.775998, 13.493573 ], [ 144.775964, 13.493795 ], [ 144.775953, 13.493869 ], [ 144.77595, 13.493883 ], [ 144.77595, 13.49389 ], [ 144.77595, 13.493925 ], [ 144.77595, 13.49394 ], [ 144.77595, 13.494134 ], [ 144.77595, 13.494719 ], [ 144.77595, 13.494914 ], [ 144.77595, 13.49503 ], [ 144.775952, 13.495134 ], [ 144.77596, 13.49546 ], [ 144.77598, 13.49565 ], [ 144.776033, 13.495783 ], [ 144.77606, 13.49585 ], [ 144.77611, 13.49599 ], [ 144.77617, 13.49612 ], [ 144.776187, 13.496167 ], [ 144.77631, 13.49649 ], [ 144.776329, 13.496726 ], [ 144.77633, 13.49673 ], [ 144.77633, 13.49692 ], [ 144.776285, 13.497071 ], [ 144.776153, 13.497527 ], [ 144.77613, 13.49761 ], [ 144.77664, 13.49761 ], [ 144.77704, 13.4976 ], [ 144.77714, 13.49762 ], [ 144.777468, 13.497615 ], [ 144.77781, 13.49761 ], [ 144.77784, 13.49761 ], [ 144.77793, 13.49761 ], [ 144.77796, 13.49761 ], [ 144.778008, 13.49761 ], [ 144.778154, 13.49761 ], [ 144.778203, 13.49761 ], [ 144.778289, 13.49761 ], [ 144.778388, 13.49761 ], [ 144.778547, 13.49761 ], [ 144.778633, 13.49761 ], [ 144.778645, 13.49761 ], [ 144.778684, 13.49761 ], [ 144.778697, 13.49761 ], [ 144.778709, 13.49761 ], [ 144.778747, 13.49761 ], [ 144.77876, 13.49761 ], [ 144.778849, 13.497608 ], [ 144.779117, 13.497605 ], [ 144.779207, 13.497605 ], [ 144.779303, 13.497604 ], [ 144.779593, 13.4976 ], [ 144.77969, 13.4976 ], [ 144.779723, 13.4976 ], [ 144.779822, 13.4976 ], [ 144.779856, 13.4976 ], [ 144.779986, 13.4976 ], [ 144.780285, 13.4976 ], [ 144.780379, 13.4976 ], [ 144.78051, 13.4976 ], [ 144.780746, 13.4976 ], [ 144.78092, 13.4976 ], [ 144.78109, 13.49756 ], [ 144.781453, 13.49756 ], [ 144.78169, 13.49756 ], [ 144.781785, 13.497558 ], [ 144.78194, 13.4965 ], [ 144.7819, 13.4964 ], [ 144.781954, 13.496163 ], [ 144.78203, 13.49584 ], [ 144.782046, 13.495775 ], [ 144.7821, 13.495567 ], [ 144.78212, 13.49549 ], [ 144.782125, 13.495462 ], [ 144.782174, 13.49522 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "952300", "GEOID10": "66010952300", "NAME10": "9523", "NAMELSAD10": "Census Tract 9523", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1995183, "AWATER10": 0, "INTPTLAT10": "+13.4968572", "INTPTLON10": "+144.7885621" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.78759, 13.48943 ], [ 144.787461, 13.489363 ], [ 144.787409, 13.489337 ], [ 144.78697, 13.48911 ], [ 144.78687, 13.489056 ], [ 144.786692, 13.488961 ], [ 144.786342, 13.488773 ], [ 144.78617, 13.48868 ], [ 144.78544, 13.48829 ], [ 144.785294, 13.488211 ], [ 144.784945, 13.488023 ], [ 144.784835, 13.487963 ], [ 144.78457, 13.48782 ], [ 144.784504, 13.487787 ], [ 144.784393, 13.487732 ], [ 144.784312, 13.487691 ], [ 144.78407, 13.48757 ], [ 144.78399, 13.48753 ], [ 144.783935, 13.487704 ], [ 144.78393, 13.48772 ], [ 144.7839, 13.48787 ], [ 144.78384, 13.48811 ], [ 144.783826, 13.488239 ], [ 144.78382, 13.4883 ], [ 144.78375, 13.4884 ], [ 144.783721, 13.488474 ], [ 144.78372, 13.48848 ], [ 144.783682, 13.488711 ], [ 144.78367, 13.48879 ], [ 144.78367, 13.48884 ], [ 144.783655, 13.488893 ], [ 144.78357, 13.489198 ], [ 144.78357, 13.4892 ], [ 144.78354, 13.4893 ], [ 144.7835, 13.48947 ], [ 144.78351, 13.48973 ], [ 144.78334, 13.49052 ], [ 144.78332, 13.49061 ], [ 144.78316, 13.49128 ], [ 144.78307, 13.49138 ], [ 144.783065, 13.491401 ], [ 144.783023, 13.491604 ], [ 144.783011, 13.491657 ], [ 144.783, 13.49171 ], [ 144.782973, 13.491816 ], [ 144.78296, 13.49187 ], [ 144.78293, 13.49198 ], [ 144.782924, 13.491999 ], [ 144.782823, 13.492389 ], [ 144.78279, 13.49252 ], [ 144.782775, 13.492587 ], [ 144.782764, 13.492638 ], [ 144.782686, 13.492992 ], [ 144.78266, 13.49311 ], [ 144.782631, 13.493238 ], [ 144.782548, 13.493622 ], [ 144.78252, 13.49375 ], [ 144.782488, 13.493879 ], [ 144.782392, 13.49427 ], [ 144.78236, 13.4944 ], [ 144.78233, 13.49448 ], [ 144.78232, 13.494525 ], [ 144.782239, 13.494912 ], [ 144.782213, 13.495042 ], [ 144.78219, 13.495147 ], [ 144.782174, 13.49522 ], [ 144.782125, 13.495462 ], [ 144.78212, 13.49549 ], [ 144.7821, 13.495567 ], [ 144.782046, 13.495775 ], [ 144.78203, 13.49584 ], [ 144.781954, 13.496163 ], [ 144.7819, 13.4964 ], [ 144.78194, 13.4965 ], [ 144.781785, 13.497558 ], [ 144.78178, 13.49763 ], [ 144.78172, 13.49763 ], [ 144.781719, 13.497636 ], [ 144.781686, 13.497952 ], [ 144.78168, 13.49801 ], [ 144.781674, 13.498058 ], [ 144.781653, 13.498208 ], [ 144.781593, 13.49866 ], [ 144.781573, 13.498811 ], [ 144.781568, 13.498842 ], [ 144.781556, 13.498937 ], [ 144.781552, 13.498969 ], [ 144.781545, 13.499017 ], [ 144.781526, 13.499161 ], [ 144.78152, 13.49921 ], [ 144.78146, 13.499627 ], [ 144.781439, 13.499781 ], [ 144.78136, 13.50034 ], [ 144.78134, 13.50046 ], [ 144.781284, 13.500881 ], [ 144.78123, 13.5013 ], [ 144.781204, 13.501508 ], [ 144.781126, 13.502132 ], [ 144.7811, 13.50234 ], [ 144.781089, 13.502425 ], [ 144.78106, 13.502683 ], [ 144.78105, 13.50277 ], [ 144.78101, 13.50301 ], [ 144.78099, 13.503167 ], [ 144.78094, 13.50357 ], [ 144.78101, 13.50369 ], [ 144.78103, 13.50393 ], [ 144.78113, 13.50422 ], [ 144.78122, 13.50436 ], [ 144.78131, 13.50442 ], [ 144.781397, 13.504458 ], [ 144.78147, 13.5045 ], [ 144.781594, 13.504432 ], [ 144.7816, 13.50443 ], [ 144.78171, 13.50439 ], [ 144.78183, 13.50427 ], [ 144.781917, 13.504169 ], [ 144.78196, 13.50412 ], [ 144.78203, 13.50409 ], [ 144.7821, 13.50402 ], [ 144.78239, 13.50376 ], [ 144.782491, 13.503684 ], [ 144.7827, 13.50353 ], [ 144.7835, 13.50307 ], [ 144.78397, 13.50279 ], [ 144.784071, 13.502736 ], [ 144.78431, 13.50261 ], [ 144.78463, 13.50248 ], [ 144.784747, 13.50246 ], [ 144.785102, 13.5024 ], [ 144.78522, 13.50238 ], [ 144.78534, 13.5024 ], [ 144.78544, 13.502389 ], [ 144.78553, 13.50238 ], [ 144.78599, 13.50231 ], [ 144.786101, 13.502286 ], [ 144.78632, 13.50224 ], [ 144.786535, 13.502174 ], [ 144.78655, 13.50217 ], [ 144.78679, 13.50209 ], [ 144.787157, 13.501914 ], [ 144.78721, 13.50189 ], [ 144.78737, 13.50184 ], [ 144.787705, 13.501672 ], [ 144.78787, 13.50159 ], [ 144.78796, 13.50155 ], [ 144.78823, 13.50142 ], [ 144.78845, 13.50133 ], [ 144.78866, 13.50128 ], [ 144.788748, 13.501262 ], [ 144.78886, 13.50124 ], [ 144.78903, 13.50122 ], [ 144.78912, 13.50123 ], [ 144.789144, 13.50123 ], [ 144.789216, 13.50123 ], [ 144.78924, 13.50123 ], [ 144.78932, 13.50124 ], [ 144.789404, 13.50124 ], [ 144.78945, 13.50124 ], [ 144.78964, 13.50128 ], [ 144.78989, 13.501321 ], [ 144.790053, 13.501348 ], [ 144.790245, 13.501379 ], [ 144.79025, 13.50138 ], [ 144.79035, 13.50135 ], [ 144.790818, 13.501442 ], [ 144.79101, 13.50148 ], [ 144.791075, 13.501518 ], [ 144.79113, 13.50155 ], [ 144.791293, 13.501579 ], [ 144.791368, 13.501593 ], [ 144.791733, 13.50167 ], [ 144.79182, 13.501688 ], [ 144.79247, 13.501912 ], [ 144.792609, 13.50192 ], [ 144.792722, 13.501977 ], [ 144.793106, 13.50212 ], [ 144.793216, 13.502228 ], [ 144.793563, 13.502362 ], [ 144.793808, 13.502405 ], [ 144.794094, 13.502515 ], [ 144.794525, 13.50268 ], [ 144.79458, 13.502755 ], [ 144.7954, 13.50308 ], [ 144.79544, 13.503093 ], [ 144.79556, 13.503135 ], [ 144.7956, 13.50315 ], [ 144.795694, 13.503186 ], [ 144.795975, 13.503294 ], [ 144.79607, 13.50333 ], [ 144.79611, 13.50324 ], [ 144.79622, 13.50298 ], [ 144.796221, 13.502977 ], [ 144.79627, 13.50288 ], [ 144.79636, 13.50276 ], [ 144.79652, 13.50262 ], [ 144.79676, 13.50247 ], [ 144.79688, 13.50244 ], [ 144.79699, 13.50238 ], [ 144.79711, 13.5023 ], [ 144.797111, 13.502299 ], [ 144.79727, 13.50222 ], [ 144.79746, 13.50214 ], [ 144.79753, 13.50205 ], [ 144.797536, 13.502048 ], [ 144.797751, 13.50198 ], [ 144.797881, 13.501939 ], [ 144.79791, 13.50193 ], [ 144.798, 13.50194 ], [ 144.798266, 13.501863 ], [ 144.79856, 13.50178 ], [ 144.7987, 13.50169 ], [ 144.799045, 13.501587 ], [ 144.79907, 13.50158 ], [ 144.79916, 13.50155 ], [ 144.7993, 13.50148 ], [ 144.79917, 13.50133 ], [ 144.799121, 13.501277 ], [ 144.79906, 13.50121 ], [ 144.798616, 13.500642 ], [ 144.79845, 13.50043 ], [ 144.798423, 13.500395 ], [ 144.798343, 13.500292 ], [ 144.798317, 13.500258 ], [ 144.798261, 13.500186 ], [ 144.798095, 13.499971 ], [ 144.79804, 13.4999 ], [ 144.797996, 13.499843 ], [ 144.797864, 13.499674 ], [ 144.797821, 13.499618 ], [ 144.797786, 13.499573 ], [ 144.797684, 13.499441 ], [ 144.79765, 13.499397 ], [ 144.79759, 13.49932 ], [ 144.797373, 13.499044 ], [ 144.79711, 13.49871 ], [ 144.7966, 13.49807 ], [ 144.796537, 13.497991 ], [ 144.79626, 13.49764 ], [ 144.796238, 13.497613 ], [ 144.796175, 13.497535 ], [ 144.796155, 13.497509 ], [ 144.79606, 13.49739 ], [ 144.79586, 13.49714 ], [ 144.79578, 13.497031 ], [ 144.79569, 13.49691 ], [ 144.795387, 13.496506 ], [ 144.79533, 13.49643 ], [ 144.79507, 13.49603 ], [ 144.79457, 13.49524 ], [ 144.794566, 13.495234 ], [ 144.79431, 13.4948 ], [ 144.794296, 13.494776 ], [ 144.794254, 13.494704 ], [ 144.79424, 13.49468 ], [ 144.794185, 13.494589 ], [ 144.7941, 13.49445 ], [ 144.794011, 13.494325 ], [ 144.79395, 13.49424 ], [ 144.793787, 13.494008 ], [ 144.79376, 13.49397 ], [ 144.79335, 13.49341 ], [ 144.793281, 13.493327 ], [ 144.7931, 13.49311 ], [ 144.79299, 13.49297 ], [ 144.79283, 13.49282 ], [ 144.792824, 13.492814 ], [ 144.79222, 13.49224 ], [ 144.791933, 13.49199 ], [ 144.79183, 13.4919 ], [ 144.79169, 13.49179 ], [ 144.791621, 13.491733 ], [ 144.791573, 13.491693 ], [ 144.791432, 13.491575 ], [ 144.79139, 13.49154 ], [ 144.791385, 13.491537 ], [ 144.791304, 13.491483 ], [ 144.791062, 13.491321 ], [ 144.790982, 13.491268 ], [ 144.790943, 13.491242 ], [ 144.79094, 13.49124 ], [ 144.790822, 13.491172 ], [ 144.790782, 13.491149 ], [ 144.790737, 13.491123 ], [ 144.790604, 13.491045 ], [ 144.79056, 13.49102 ], [ 144.79027, 13.49084 ], [ 144.790243, 13.490825 ], [ 144.789258, 13.490303 ], [ 144.78893, 13.49013 ], [ 144.788871, 13.490102 ], [ 144.788697, 13.490018 ], [ 144.78864, 13.48999 ], [ 144.787943, 13.489619 ], [ 144.787872, 13.489581 ], [ 144.78766, 13.489467 ], [ 144.78759, 13.48943 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "952400", "GEOID10": "66010952400", "NAME10": "9524", "NAMELSAD10": "Census Tract 9524", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1198425, "AWATER10": 0, "INTPTLAT10": "+13.4869385", "INTPTLON10": "+144.7857931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.78697, 13.48911 ], [ 144.787409, 13.489337 ], [ 144.787461, 13.489363 ], [ 144.78759, 13.48943 ], [ 144.78766, 13.489467 ], [ 144.787872, 13.489581 ], [ 144.787943, 13.489619 ], [ 144.78864, 13.48999 ], [ 144.788697, 13.490018 ], [ 144.788871, 13.490102 ], [ 144.78893, 13.49013 ], [ 144.789258, 13.490303 ], [ 144.790243, 13.490825 ], [ 144.79027, 13.49084 ], [ 144.79056, 13.49102 ], [ 144.790604, 13.491045 ], [ 144.790737, 13.491123 ], [ 144.790782, 13.491149 ], [ 144.790822, 13.491172 ], [ 144.79094, 13.49124 ], [ 144.790943, 13.491242 ], [ 144.790982, 13.491268 ], [ 144.791062, 13.491321 ], [ 144.791304, 13.491483 ], [ 144.791385, 13.491537 ], [ 144.79139, 13.49154 ], [ 144.791432, 13.491575 ], [ 144.791573, 13.491693 ], [ 144.791621, 13.491733 ], [ 144.79169, 13.49179 ], [ 144.79183, 13.4919 ], [ 144.791933, 13.49199 ], [ 144.79222, 13.49224 ], [ 144.792824, 13.492814 ], [ 144.79283, 13.49282 ], [ 144.79299, 13.49297 ], [ 144.7931, 13.49311 ], [ 144.793281, 13.493327 ], [ 144.79335, 13.49341 ], [ 144.79376, 13.49397 ], [ 144.793787, 13.494008 ], [ 144.79395, 13.49424 ], [ 144.794011, 13.494325 ], [ 144.7941, 13.49445 ], [ 144.794185, 13.494589 ], [ 144.79424, 13.49468 ], [ 144.79433, 13.4946 ], [ 144.794499, 13.494466 ], [ 144.79466, 13.49434 ], [ 144.79509, 13.49396 ], [ 144.79526, 13.49382 ], [ 144.795269, 13.493811 ], [ 144.79542, 13.49367 ], [ 144.79554, 13.49362 ], [ 144.79575, 13.49344 ], [ 144.795938, 13.49328 ], [ 144.79626, 13.49301 ], [ 144.796366, 13.492925 ], [ 144.79647, 13.49284 ], [ 144.79706, 13.49231 ], [ 144.797125, 13.492252 ], [ 144.79737, 13.49204 ], [ 144.79753, 13.49192 ], [ 144.797695, 13.491814 ], [ 144.79789, 13.49169 ], [ 144.79815, 13.49158 ], [ 144.798222, 13.491557 ], [ 144.79841, 13.4915 ], [ 144.798569, 13.491362 ], [ 144.799001, 13.490991 ], [ 144.799046, 13.490946 ], [ 144.79907, 13.490924 ], [ 144.799196, 13.490798 ], [ 144.799338, 13.490794 ], [ 144.799765, 13.490786 ], [ 144.799908, 13.490784 ], [ 144.799983, 13.490776 ], [ 144.800027, 13.490772 ], [ 144.800122, 13.490762 ], [ 144.800207, 13.490753 ], [ 144.800283, 13.490746 ], [ 144.800402, 13.490726 ], [ 144.800293, 13.490694 ], [ 144.799892, 13.490594 ], [ 144.798728, 13.490332 ], [ 144.798465, 13.490232 ], [ 144.798297, 13.490178 ], [ 144.797862, 13.490039 ], [ 144.79779, 13.49003 ], [ 144.797615, 13.490011 ], [ 144.794594, 13.489131 ], [ 144.792667, 13.488347 ], [ 144.792712, 13.487993 ], [ 144.791028, 13.486849 ], [ 144.790222, 13.486437 ], [ 144.789833, 13.486297 ], [ 144.788958, 13.485767 ], [ 144.787952, 13.485159 ], [ 144.787701, 13.484975 ], [ 144.787401, 13.484956 ], [ 144.786497, 13.484899 ], [ 144.786115, 13.484658 ], [ 144.785577, 13.484411 ], [ 144.785225, 13.48425 ], [ 144.783419, 13.483339 ], [ 144.781846, 13.482555 ], [ 144.781625, 13.482483 ], [ 144.781442, 13.482383 ], [ 144.780889, 13.482084 ], [ 144.780506, 13.481877 ], [ 144.780189, 13.481767 ], [ 144.779713, 13.481711 ], [ 144.779669, 13.481711 ], [ 144.779669, 13.481795 ], [ 144.779243, 13.48169 ], [ 144.778592, 13.482261 ], [ 144.777216, 13.482229 ], [ 144.77523, 13.48219 ], [ 144.774063, 13.48225 ], [ 144.773969, 13.482264 ], [ 144.772222, 13.482138 ], [ 144.772259, 13.481892 ], [ 144.77171, 13.481772 ], [ 144.770498, 13.481155 ], [ 144.769906, 13.480376 ], [ 144.7699, 13.480244 ], [ 144.769647, 13.48006 ], [ 144.76943, 13.479787 ], [ 144.769306, 13.479618 ], [ 144.76925, 13.479541 ], [ 144.768703, 13.479491 ], [ 144.767948, 13.479432 ], [ 144.767587, 13.479396 ], [ 144.767592, 13.479762 ], [ 144.767684, 13.479796 ], [ 144.76786, 13.47986 ], [ 144.76822, 13.48 ], [ 144.76872, 13.48027 ], [ 144.76902, 13.48048 ], [ 144.76936, 13.48073 ], [ 144.769574, 13.480926 ], [ 144.76985, 13.48118 ], [ 144.77013, 13.48151 ], [ 144.77036, 13.4818 ], [ 144.77061, 13.48213 ], [ 144.77095, 13.48249 ], [ 144.77119, 13.48273 ], [ 144.77123, 13.482761 ], [ 144.77152, 13.48299 ], [ 144.772, 13.48332 ], [ 144.77245, 13.48357 ], [ 144.77281, 13.48372 ], [ 144.77286, 13.48373 ], [ 144.772882, 13.483737 ], [ 144.772949, 13.483761 ], [ 144.772972, 13.483769 ], [ 144.773067, 13.483801 ], [ 144.77315, 13.48383 ], [ 144.773354, 13.483898 ], [ 144.77345, 13.48393 ], [ 144.773511, 13.483947 ], [ 144.773696, 13.483998 ], [ 144.773758, 13.484016 ], [ 144.77394, 13.484066 ], [ 144.774487, 13.484219 ], [ 144.77467, 13.48427 ], [ 144.774789, 13.484304 ], [ 144.77515, 13.484406 ], [ 144.77527, 13.48444 ], [ 144.77534, 13.48451 ], [ 144.77549, 13.48457 ], [ 144.775579, 13.484596 ], [ 144.776599, 13.484891 ], [ 144.77694, 13.48499 ], [ 144.77706, 13.48502 ], [ 144.777172, 13.485052 ], [ 144.777868, 13.485253 ], [ 144.7781, 13.48532 ], [ 144.77822, 13.485353 ], [ 144.778777, 13.485519 ], [ 144.778941, 13.48557 ], [ 144.778983, 13.485582 ], [ 144.77904, 13.4856 ], [ 144.779112, 13.485619 ], [ 144.779155, 13.485631 ], [ 144.779216, 13.485647 ], [ 144.779399, 13.485698 ], [ 144.779461, 13.485715 ], [ 144.779522, 13.485732 ], [ 144.779708, 13.485783 ], [ 144.77977, 13.4858 ], [ 144.779821, 13.485813 ], [ 144.77996, 13.48585 ], [ 144.779975, 13.485855 ], [ 144.780026, 13.485874 ], [ 144.780096, 13.485899 ], [ 144.780309, 13.485974 ], [ 144.78038, 13.486 ], [ 144.780496, 13.486044 ], [ 144.78077, 13.48615 ], [ 144.780845, 13.486181 ], [ 144.780961, 13.48623 ], [ 144.781133, 13.486302 ], [ 144.781652, 13.48652 ], [ 144.7817, 13.48654 ], [ 144.781825, 13.486595 ], [ 144.781883, 13.486621 ], [ 144.781952, 13.486651 ], [ 144.781997, 13.486671 ], [ 144.78204, 13.48669 ], [ 144.782073, 13.486703 ], [ 144.782173, 13.486742 ], [ 144.782207, 13.486756 ], [ 144.782239, 13.486768 ], [ 144.782337, 13.486807 ], [ 144.78237, 13.48682 ], [ 144.782422, 13.486842 ], [ 144.782581, 13.486909 ], [ 144.782634, 13.486932 ], [ 144.782884, 13.487038 ], [ 144.78303, 13.4871 ], [ 144.783631, 13.487368 ], [ 144.78388, 13.48748 ], [ 144.783902, 13.487487 ], [ 144.78391, 13.48749 ], [ 144.783968, 13.487519 ], [ 144.78399, 13.48753 ], [ 144.78407, 13.48757 ], [ 144.784312, 13.487691 ], [ 144.784393, 13.487732 ], [ 144.784504, 13.487787 ], [ 144.78457, 13.48782 ], [ 144.784835, 13.487963 ], [ 144.784945, 13.488023 ], [ 144.785294, 13.488211 ], [ 144.78544, 13.48829 ], [ 144.78617, 13.48868 ], [ 144.786342, 13.488773 ], [ 144.786692, 13.488961 ], [ 144.78687, 13.489056 ], [ 144.78697, 13.48911 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "955400", "GEOID10": "66010955400", "NAME10": "9554", "NAMELSAD10": "Census Tract 9554", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 16195845, "AWATER10": 0, "INTPTLAT10": "+13.3073717", "INTPTLON10": "+144.6691998" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.655191, 13.306759 ], [ 144.655114, 13.306829 ], [ 144.65512, 13.306897 ], [ 144.655164, 13.306953 ], [ 144.65523, 13.307003 ], [ 144.655296, 13.306991 ], [ 144.65533, 13.306982 ], [ 144.655383, 13.306967 ], [ 144.655437, 13.306931 ], [ 144.655479, 13.306821 ], [ 144.655463, 13.306759 ], [ 144.655441, 13.30667 ], [ 144.655407, 13.30659 ], [ 144.655298, 13.306606 ], [ 144.655246, 13.306666 ], [ 144.655191, 13.306759 ] ] ], [ [ [ 144.670793, 13.329962 ], [ 144.672413, 13.329444 ], [ 144.675282, 13.324116 ], [ 144.677743, 13.31866 ], [ 144.685016, 13.304354 ], [ 144.687485, 13.2995 ], [ 144.689377, 13.292098 ], [ 144.689737, 13.290711 ], [ 144.690423, 13.288007 ], [ 144.691996, 13.281855 ], [ 144.692762, 13.27886 ], [ 144.690132, 13.279805 ], [ 144.69004, 13.279838 ], [ 144.689235, 13.280127 ], [ 144.684543, 13.281813 ], [ 144.678824, 13.283869 ], [ 144.67889, 13.286833 ], [ 144.678337, 13.286287 ], [ 144.678089, 13.286179 ], [ 144.677847, 13.285983 ], [ 144.677502, 13.2858 ], [ 144.677159, 13.285669 ], [ 144.676154, 13.285142 ], [ 144.67603, 13.284874 ], [ 144.675643, 13.284536 ], [ 144.675162, 13.284569 ], [ 144.675003, 13.284489 ], [ 144.674568, 13.284159 ], [ 144.674047, 13.284178 ], [ 144.673707, 13.284001 ], [ 144.673473, 13.283727 ], [ 144.673182, 13.283558 ], [ 144.672751, 13.283462 ], [ 144.672536, 13.283596 ], [ 144.672536, 13.283699 ], [ 144.672749, 13.283857 ], [ 144.672717, 13.284031 ], [ 144.672485, 13.284223 ], [ 144.672316, 13.284361 ], [ 144.672205, 13.284523 ], [ 144.672162, 13.284883 ], [ 144.671819, 13.284796 ], [ 144.671663, 13.285069 ], [ 144.671333, 13.285202 ], [ 144.670371, 13.285511 ], [ 144.670215, 13.285585 ], [ 144.669959, 13.285525 ], [ 144.669777, 13.285585 ], [ 144.669669, 13.285534 ], [ 144.669401, 13.285465 ], [ 144.669015, 13.285556 ], [ 144.668908, 13.285741 ], [ 144.66892, 13.285927 ], [ 144.668735, 13.286263 ], [ 144.668538, 13.286473 ], [ 144.667888, 13.286563 ], [ 144.667038, 13.286346 ], [ 144.666679, 13.285922 ], [ 144.666485, 13.285907 ], [ 144.66629, 13.285866 ], [ 144.665995, 13.285726 ], [ 144.665859, 13.285661 ], [ 144.665686, 13.28577 ], [ 144.665552, 13.285854 ], [ 144.665481, 13.285843 ], [ 144.66541, 13.285833 ], [ 144.66524, 13.285807 ], [ 144.665063, 13.285781 ], [ 144.664723, 13.28573 ], [ 144.664519, 13.2857 ], [ 144.664143, 13.285644 ], [ 144.664062, 13.285652 ], [ 144.663879, 13.285649 ], [ 144.663805, 13.285626 ], [ 144.663596, 13.285561 ], [ 144.663233, 13.28573 ], [ 144.663045, 13.285654 ], [ 144.662965, 13.285672 ], [ 144.662846, 13.28566 ], [ 144.662747, 13.28565 ], [ 144.662676, 13.285419 ], [ 144.662629, 13.28532 ], [ 144.662488, 13.285023 ], [ 144.662442, 13.284924 ], [ 144.662435, 13.284961 ], [ 144.662375, 13.285109 ], [ 144.662301, 13.285218 ], [ 144.662222, 13.28526 ], [ 144.662184, 13.285272 ], [ 144.662139, 13.285288 ], [ 144.662056, 13.28534 ], [ 144.661992, 13.285387 ], [ 144.661943, 13.285416 ], [ 144.661855, 13.285405 ], [ 144.661806, 13.285376 ], [ 144.661704, 13.285375 ], [ 144.661625, 13.285408 ], [ 144.6616, 13.285479 ], [ 144.661546, 13.285517 ], [ 144.661493, 13.285502 ], [ 144.661385, 13.28553 ], [ 144.660944, 13.285621 ], [ 144.660881, 13.285635 ], [ 144.660666, 13.2857 ], [ 144.660498, 13.285703 ], [ 144.660475, 13.285703 ], [ 144.660407, 13.285727 ], [ 144.660293, 13.285836 ], [ 144.660171, 13.285911 ], [ 144.660008, 13.286029 ], [ 144.659841, 13.286176 ], [ 144.6597, 13.286342 ], [ 144.659553, 13.28646 ], [ 144.659365, 13.286685 ], [ 144.659321, 13.28674 ], [ 144.659237, 13.28683 ], [ 144.659137, 13.287062 ], [ 144.659097, 13.287159 ], [ 144.659008, 13.287249 ], [ 144.658983, 13.287349 ], [ 144.658992, 13.287445 ], [ 144.658976, 13.28755 ], [ 144.658906, 13.287664 ], [ 144.658808, 13.287749 ], [ 144.658744, 13.287834 ], [ 144.658699, 13.287934 ], [ 144.658757, 13.287964 ], [ 144.658845, 13.287945 ], [ 144.65881, 13.28806 ], [ 144.658755, 13.288169 ], [ 144.658686, 13.28824 ], [ 144.658633, 13.288216 ], [ 144.658554, 13.288229 ], [ 144.658476, 13.288272 ], [ 144.658426, 13.288386 ], [ 144.658371, 13.288481 ], [ 144.658385, 13.288591 ], [ 144.658281, 13.288705 ], [ 144.658222, 13.28881 ], [ 144.658114, 13.2889 ], [ 144.65798, 13.289109 ], [ 144.657862, 13.289198 ], [ 144.657812, 13.289284 ], [ 144.65788, 13.289289 ], [ 144.658036, 13.289358 ], [ 144.658011, 13.289396 ], [ 144.657966, 13.289505 ], [ 144.657887, 13.289629 ], [ 144.657881, 13.289691 ], [ 144.657822, 13.289767 ], [ 144.657792, 13.289858 ], [ 144.657806, 13.289915 ], [ 144.657733, 13.289943 ], [ 144.657643, 13.289988 ], [ 144.657513, 13.28997 ], [ 144.657478, 13.290022 ], [ 144.657447, 13.290194 ], [ 144.657445, 13.290404 ], [ 144.657477, 13.290586 ], [ 144.657552, 13.290946 ], [ 144.657589, 13.291156 ], [ 144.657607, 13.291367 ], [ 144.657609, 13.291592 ], [ 144.657595, 13.291669 ], [ 144.657573, 13.291802 ], [ 144.657522, 13.292002 ], [ 144.657448, 13.292154 ], [ 144.657405, 13.292297 ], [ 144.657403, 13.292455 ], [ 144.657363, 13.292541 ], [ 144.657338, 13.292651 ], [ 144.657308, 13.292751 ], [ 144.657253, 13.292894 ], [ 144.657232, 13.292975 ], [ 144.657196, 13.293223 ], [ 144.65714, 13.293442 ], [ 144.657105, 13.293523 ], [ 144.657114, 13.293557 ], [ 144.657198, 13.293505 ], [ 144.657238, 13.293443 ], [ 144.65738, 13.293397 ], [ 144.657439, 13.29333 ], [ 144.65742, 13.293283 ], [ 144.657508, 13.293192 ], [ 144.657552, 13.293202 ], [ 144.657611, 13.293236 ], [ 144.657713, 13.293242 ], [ 144.657815, 13.293281 ], [ 144.657878, 13.293315 ], [ 144.657878, 13.293349 ], [ 144.657921, 13.293421 ], [ 144.658038, 13.293427 ], [ 144.658062, 13.293508 ], [ 144.65811, 13.293638 ], [ 144.658182, 13.293758 ], [ 144.658226, 13.293999 ], [ 144.658228, 13.294007 ], [ 144.658227, 13.294069 ], [ 144.658193, 13.294126 ], [ 144.658129, 13.294178 ], [ 144.658041, 13.294216 ], [ 144.657972, 13.294253 ], [ 144.657884, 13.294214 ], [ 144.657811, 13.29419 ], [ 144.657728, 13.294218 ], [ 144.657893, 13.294329 ], [ 144.657922, 13.294382 ], [ 144.658028, 13.294455 ], [ 144.658062, 13.294512 ], [ 144.65815, 13.294561 ], [ 144.658271, 13.294591 ], [ 144.658393, 13.29463 ], [ 144.658485, 13.294698 ], [ 144.658562, 13.294766 ], [ 144.658766, 13.294911 ], [ 144.658863, 13.294998 ], [ 144.658955, 13.295042 ], [ 144.658975, 13.294985 ], [ 144.658951, 13.294932 ], [ 144.659078, 13.294957 ], [ 144.659151, 13.294996 ], [ 144.659282, 13.295097 ], [ 144.659393, 13.295228 ], [ 144.659504, 13.295305 ], [ 144.659626, 13.295354 ], [ 144.659718, 13.295436 ], [ 144.659766, 13.295504 ], [ 144.659809, 13.295609 ], [ 144.659852, 13.295686 ], [ 144.6599, 13.295796 ], [ 144.660002, 13.295879 ], [ 144.660035, 13.295932 ], [ 144.660152, 13.296004 ], [ 144.660371, 13.296107 ], [ 144.660478, 13.296132 ], [ 144.660561, 13.296109 ], [ 144.66063, 13.296071 ], [ 144.660757, 13.296015 ], [ 144.660879, 13.296011 ], [ 144.66102, 13.296065 ], [ 144.661113, 13.296114 ], [ 144.661209, 13.296205 ], [ 144.661321, 13.296283 ], [ 144.661427, 13.29638 ], [ 144.661487, 13.296427 ], [ 144.661489, 13.296435 ], [ 144.661497, 13.296461 ], [ 144.661695, 13.296678 ], [ 144.661935, 13.296905 ], [ 144.662084, 13.297098 ], [ 144.662249, 13.297281 ], [ 144.662384, 13.297459 ], [ 144.662547, 13.297705 ], [ 144.662652, 13.297837 ], [ 144.662784, 13.298003 ], [ 144.662889, 13.298181 ], [ 144.662898, 13.298344 ], [ 144.662876, 13.29854 ], [ 144.662796, 13.298716 ], [ 144.662725, 13.298798 ], [ 144.662703, 13.298825 ], [ 144.662579, 13.298929 ], [ 144.662432, 13.29899 ], [ 144.662276, 13.299046 ], [ 144.66208, 13.299125 ], [ 144.661825, 13.299171 ], [ 144.661586, 13.299169 ], [ 144.661185, 13.299237 ], [ 144.660943, 13.299258 ], [ 144.660831, 13.299257 ], [ 144.660798, 13.299185 ], [ 144.660744, 13.299189 ], [ 144.660728, 13.299261 ], [ 144.660631, 13.299255 ], [ 144.660484, 13.299259 ], [ 144.660343, 13.299277 ], [ 144.660235, 13.299276 ], [ 144.660177, 13.299242 ], [ 144.659933, 13.299235 ], [ 144.659903, 13.299292 ], [ 144.65979, 13.299324 ], [ 144.659735, 13.299334 ], [ 144.659624, 13.299356 ], [ 144.659502, 13.299326 ], [ 144.659362, 13.299258 ], [ 144.65926, 13.29919 ], [ 144.659221, 13.299099 ], [ 144.659242, 13.299018 ], [ 144.659154, 13.299022 ], [ 144.659085, 13.29904 ], [ 144.659081, 13.298945 ], [ 144.659004, 13.298844 ], [ 144.658883, 13.298761 ], [ 144.658713, 13.298693 ], [ 144.658651, 13.298677 ], [ 144.658576, 13.298658 ], [ 144.65846, 13.298614 ], [ 144.658435, 13.298685 ], [ 144.658492, 13.298753 ], [ 144.658438, 13.298786 ], [ 144.658326, 13.298789 ], [ 144.658248, 13.298784 ], [ 144.658165, 13.298807 ], [ 144.658159, 13.298879 ], [ 144.658203, 13.298932 ], [ 144.658315, 13.298952 ], [ 144.658363, 13.298995 ], [ 144.658358, 13.299077 ], [ 144.658327, 13.299144 ], [ 144.658318, 13.299167 ], [ 144.658244, 13.2992 ], [ 144.658157, 13.299166 ], [ 144.658104, 13.29907 ], [ 144.658021, 13.29905 ], [ 144.657986, 13.299092 ], [ 144.658, 13.299202 ], [ 144.658028, 13.299313 ], [ 144.658027, 13.299323 ], [ 144.658022, 13.299418 ], [ 144.658026, 13.299494 ], [ 144.658087, 13.299524 ], [ 144.658106, 13.299576 ], [ 144.658135, 13.299605 ], [ 144.658139, 13.299677 ], [ 144.658119, 13.299744 ], [ 144.658085, 13.299772 ], [ 144.658051, 13.299753 ], [ 144.658026, 13.299796 ], [ 144.658055, 13.299868 ], [ 144.658034, 13.299973 ], [ 144.658068, 13.300011 ], [ 144.658063, 13.300037 ], [ 144.658058, 13.300064 ], [ 144.658003, 13.30013 ], [ 144.657969, 13.300187 ], [ 144.65791, 13.300215 ], [ 144.657866, 13.300229 ], [ 144.657836, 13.300291 ], [ 144.657791, 13.300367 ], [ 144.657747, 13.300405 ], [ 144.657727, 13.300457 ], [ 144.657731, 13.300501 ], [ 144.657765, 13.300525 ], [ 144.657819, 13.300477 ], [ 144.657849, 13.300473 ], [ 144.657819, 13.300549 ], [ 144.657769, 13.300616 ], [ 144.657763, 13.300689 ], [ 144.657758, 13.300764 ], [ 144.657732, 13.300883 ], [ 144.657693, 13.30095 ], [ 144.657629, 13.301026 ], [ 144.657598, 13.301107 ], [ 144.657631, 13.30125 ], [ 144.657669, 13.301341 ], [ 144.657669, 13.301432 ], [ 144.657653, 13.301542 ], [ 144.657623, 13.301609 ], [ 144.657578, 13.301685 ], [ 144.657519, 13.301751 ], [ 144.65745, 13.301794 ], [ 144.657372, 13.301822 ], [ 144.657299, 13.301821 ], [ 144.657216, 13.301796 ], [ 144.657172, 13.301758 ], [ 144.657163, 13.301686 ], [ 144.657149, 13.301652 ], [ 144.657106, 13.30158 ], [ 144.657019, 13.301493 ], [ 144.656956, 13.301445 ], [ 144.656931, 13.301416 ], [ 144.656882, 13.301502 ], [ 144.656874, 13.301522 ], [ 144.656817, 13.301687 ], [ 144.656788, 13.301888 ], [ 144.656742, 13.302084 ], [ 144.656732, 13.302203 ], [ 144.656725, 13.302294 ], [ 144.656719, 13.302495 ], [ 144.656743, 13.302684 ], [ 144.65675, 13.302739 ], [ 144.656773, 13.302887 ], [ 144.656807, 13.302935 ], [ 144.65693, 13.302889 ], [ 144.657017, 13.302937 ], [ 144.657016, 13.302995 ], [ 144.65704, 13.303043 ], [ 144.657079, 13.303081 ], [ 144.657059, 13.303129 ], [ 144.656995, 13.303152 ], [ 144.656902, 13.303175 ], [ 144.656877, 13.303237 ], [ 144.656881, 13.303347 ], [ 144.656924, 13.303467 ], [ 144.656962, 13.303625 ], [ 144.656951, 13.303697 ], [ 144.656949, 13.303733 ], [ 144.656944, 13.303902 ], [ 144.657006, 13.304037 ], [ 144.657071, 13.30419 ], [ 144.657073, 13.304195 ], [ 144.657175, 13.304301 ], [ 144.657237, 13.304402 ], [ 144.657212, 13.304483 ], [ 144.657202, 13.30456 ], [ 144.657255, 13.304613 ], [ 144.657318, 13.304642 ], [ 144.657382, 13.304619 ], [ 144.657489, 13.304596 ], [ 144.657543, 13.304616 ], [ 144.657577, 13.304559 ], [ 144.657611, 13.304573 ], [ 144.657586, 13.304645 ], [ 144.657586, 13.304735 ], [ 144.65779, 13.304949 ], [ 144.657822, 13.304982 ], [ 144.657841, 13.305053 ], [ 144.657899, 13.305097 ], [ 144.657978, 13.305088 ], [ 144.658046, 13.305065 ], [ 144.65809, 13.305108 ], [ 144.658147, 13.3052 ], [ 144.658122, 13.305262 ], [ 144.658126, 13.305353 ], [ 144.658184, 13.305487 ], [ 144.658237, 13.30553 ], [ 144.658202, 13.305587 ], [ 144.658148, 13.305654 ], [ 144.658108, 13.305725 ], [ 144.658108, 13.305787 ], [ 144.658121, 13.305869 ], [ 144.658111, 13.305945 ], [ 144.658078, 13.305995 ], [ 144.658015, 13.305995 ], [ 144.657941, 13.30608 ], [ 144.657916, 13.306185 ], [ 144.657978, 13.306286 ], [ 144.658022, 13.306373 ], [ 144.657972, 13.306458 ], [ 144.657907, 13.306582 ], [ 144.657803, 13.306706 ], [ 144.657705, 13.306772 ], [ 144.657627, 13.306833 ], [ 144.657487, 13.30688 ], [ 144.657374, 13.306926 ], [ 144.657198, 13.306953 ], [ 144.657003, 13.306942 ], [ 144.656891, 13.306908 ], [ 144.656789, 13.306902 ], [ 144.656661, 13.306944 ], [ 144.656544, 13.306957 ], [ 144.656388, 13.306965 ], [ 144.656212, 13.306983 ], [ 144.656109, 13.306977 ], [ 144.656043, 13.30696 ], [ 144.655973, 13.306942 ], [ 144.655857, 13.30692 ], [ 144.655794, 13.30689 ], [ 144.655698, 13.306878 ], [ 144.655633, 13.306841 ], [ 144.655577, 13.306824 ], [ 144.655531, 13.306858 ], [ 144.65549, 13.306926 ], [ 144.655469, 13.306968 ], [ 144.655406, 13.307011 ], [ 144.655406, 13.30706 ], [ 144.655401, 13.307159 ], [ 144.655382, 13.307268 ], [ 144.655394, 13.307326 ], [ 144.655349, 13.307412 ], [ 144.655285, 13.307469 ], [ 144.655216, 13.30749 ], [ 144.655183, 13.307479 ], [ 144.655143, 13.307465 ], [ 144.655064, 13.307479 ], [ 144.655001, 13.307512 ], [ 144.654932, 13.307554 ], [ 144.654892, 13.307601 ], [ 144.654867, 13.307659 ], [ 144.654847, 13.307725 ], [ 144.654808, 13.307701 ], [ 144.65477, 13.307639 ], [ 144.654751, 13.307576 ], [ 144.65481, 13.307519 ], [ 144.654825, 13.307481 ], [ 144.654865, 13.307429 ], [ 144.654911, 13.307356 ], [ 144.654914, 13.307353 ], [ 144.654929, 13.307301 ], [ 144.654856, 13.30729 ], [ 144.654803, 13.307276 ], [ 144.654784, 13.307228 ], [ 144.654745, 13.307165 ], [ 144.654672, 13.307126 ], [ 144.654648, 13.307083 ], [ 144.654586, 13.307011 ], [ 144.654547, 13.307015 ], [ 144.654516, 13.30711 ], [ 144.65451, 13.307239 ], [ 144.654527, 13.307479 ], [ 144.654575, 13.307613 ], [ 144.654589, 13.30769 ], [ 144.654657, 13.307752 ], [ 144.654749, 13.307811 ], [ 144.654768, 13.307868 ], [ 144.654767, 13.307954 ], [ 144.654732, 13.308002 ], [ 144.654668, 13.308063 ], [ 144.654638, 13.30812 ], [ 144.654584, 13.308149 ], [ 144.654569, 13.308196 ], [ 144.654725, 13.308274 ], [ 144.654812, 13.308299 ], [ 144.654895, 13.3083 ], [ 144.654924, 13.308362 ], [ 144.654919, 13.308443 ], [ 144.654879, 13.308524 ], [ 144.654795, 13.308566 ], [ 144.654789, 13.308575 ], [ 144.654756, 13.308628 ], [ 144.654677, 13.308675 ], [ 144.654628, 13.308699 ], [ 144.65462, 13.308751 ], [ 144.654639, 13.308842 ], [ 144.654673, 13.308886 ], [ 144.654594, 13.308885 ], [ 144.654516, 13.308899 ], [ 144.654457, 13.308951 ], [ 144.654476, 13.309061 ], [ 144.654514, 13.309118 ], [ 144.654484, 13.309152 ], [ 144.654421, 13.309156 ], [ 144.654401, 13.309213 ], [ 144.654444, 13.309271 ], [ 144.654438, 13.309386 ], [ 144.654477, 13.309458 ], [ 144.65452, 13.309511 ], [ 144.65449, 13.309577 ], [ 144.654456, 13.30962 ], [ 144.654455, 13.30973 ], [ 144.654444, 13.309816 ], [ 144.654395, 13.309878 ], [ 144.654316, 13.309901 ], [ 144.654263, 13.309872 ], [ 144.654199, 13.30989 ], [ 144.654145, 13.309885 ], [ 144.654067, 13.309942 ], [ 144.654027, 13.309999 ], [ 144.653919, 13.310055 ], [ 144.653827, 13.310049 ], [ 144.653666, 13.310014 ], [ 144.653655, 13.310158 ], [ 144.653663, 13.310268 ], [ 144.653628, 13.310377 ], [ 144.653622, 13.310516 ], [ 144.653572, 13.310621 ], [ 144.653503, 13.310711 ], [ 144.653453, 13.310849 ], [ 144.653317, 13.31101 ], [ 144.653214, 13.311053 ], [ 144.65315, 13.311061 ], [ 144.653062, 13.31108 ], [ 144.653038, 13.311103 ], [ 144.653105, 13.311157 ], [ 144.653208, 13.311182 ], [ 144.653291, 13.311178 ], [ 144.653422, 13.311198 ], [ 144.653441, 13.311255 ], [ 144.65349, 13.311328 ], [ 144.65346, 13.311389 ], [ 144.653435, 13.311413 ], [ 144.653391, 13.311465 ], [ 144.653351, 13.311541 ], [ 144.653306, 13.311589 ], [ 144.653262, 13.311617 ], [ 144.653227, 13.311679 ], [ 144.653226, 13.311775 ], [ 144.6533, 13.311751 ], [ 144.653354, 13.311761 ], [ 144.653353, 13.311814 ], [ 144.653367, 13.311872 ], [ 144.653416, 13.311853 ], [ 144.653451, 13.311796 ], [ 144.653538, 13.311873 ], [ 144.653557, 13.311916 ], [ 144.653586, 13.312003 ], [ 144.653599, 13.312132 ], [ 144.653638, 13.31217 ], [ 144.653666, 13.312252 ], [ 144.653675, 13.312314 ], [ 144.653646, 13.312324 ], [ 144.653617, 13.31229 ], [ 144.653515, 13.312222 ], [ 144.653457, 13.312221 ], [ 144.653425, 13.312225 ], [ 144.653398, 13.31223 ], [ 144.653364, 13.312206 ], [ 144.653355, 13.312101 ], [ 144.653351, 13.312044 ], [ 144.653282, 13.312062 ], [ 144.653262, 13.312114 ], [ 144.653233, 13.312148 ], [ 144.653237, 13.312248 ], [ 144.653206, 13.312363 ], [ 144.653176, 13.312444 ], [ 144.653141, 13.312505 ], [ 144.653145, 13.312577 ], [ 144.653101, 13.31262 ], [ 144.653095, 13.312706 ], [ 144.653051, 13.312768 ], [ 144.653035, 13.312849 ], [ 144.653098, 13.312983 ], [ 144.653068, 13.31304 ], [ 144.653082, 13.313126 ], [ 144.653071, 13.313203 ], [ 144.653007, 13.31326 ], [ 144.652972, 13.313326 ], [ 144.652947, 13.313383 ], [ 144.65304, 13.313399 ], [ 144.653113, 13.313366 ], [ 144.653179, 13.313371 ], [ 144.653257, 13.313424 ], [ 144.653285, 13.31352 ], [ 144.653362, 13.313688 ], [ 144.65339, 13.313789 ], [ 144.653448, 13.313818 ], [ 144.653482, 13.313905 ], [ 144.65352, 13.313977 ], [ 144.653588, 13.314025 ], [ 144.653592, 13.314083 ], [ 144.653548, 13.31413 ], [ 144.653489, 13.314129 ], [ 144.653436, 13.314148 ], [ 144.65342, 13.314234 ], [ 144.653395, 13.314262 ], [ 144.653493, 13.314302 ], [ 144.653678, 13.314308 ], [ 144.653788, 13.314293 ], [ 144.65382, 13.31429 ], [ 144.653967, 13.314253 ], [ 144.654143, 13.314226 ], [ 144.654319, 13.314175 ], [ 144.654476, 13.314076 ], [ 144.654628, 13.314016 ], [ 144.654804, 13.313984 ], [ 144.655117, 13.313972 ], [ 144.655405, 13.313975 ], [ 144.655566, 13.313957 ], [ 144.655664, 13.313963 ], [ 144.65597, 13.314042 ], [ 144.656175, 13.314126 ], [ 144.656335, 13.314208 ], [ 144.656549, 13.314306 ], [ 144.656956, 13.314573 ], [ 144.657122, 13.314641 ], [ 144.657287, 13.314748 ], [ 144.657422, 13.31485 ], [ 144.657524, 13.314951 ], [ 144.657591, 13.315081 ], [ 144.657658, 13.315258 ], [ 144.657661, 13.315293 ], [ 144.657671, 13.315387 ], [ 144.657586, 13.315664 ], [ 144.657531, 13.315759 ], [ 144.657501, 13.315845 ], [ 144.657495, 13.315969 ], [ 144.657464, 13.316112 ], [ 144.657448, 13.316303 ], [ 144.657417, 13.316451 ], [ 144.657386, 13.316508 ], [ 144.657365, 13.316508 ], [ 144.6573, 13.316627 ], [ 144.657261, 13.31667 ], [ 144.657202, 13.316736 ], [ 144.656907, 13.316939 ], [ 144.656755, 13.31699 ], [ 144.656505, 13.317088 ], [ 144.656446, 13.317126 ], [ 144.656391, 13.317221 ], [ 144.656317, 13.317316 ], [ 144.656198, 13.317429 ], [ 144.656194, 13.317434 ], [ 144.656086, 13.3175 ], [ 144.655914, 13.317594 ], [ 144.655802, 13.317613 ], [ 144.655674, 13.317669 ], [ 144.655571, 13.31772 ], [ 144.655444, 13.317767 ], [ 144.655282, 13.317842 ], [ 144.655155, 13.317884 ], [ 144.655013, 13.317945 ], [ 144.654915, 13.317973 ], [ 144.654826, 13.318029 ], [ 144.654733, 13.318119 ], [ 144.654609, 13.318257 ], [ 144.654511, 13.318332 ], [ 144.654442, 13.318341 ], [ 144.65415, 13.318539 ], [ 144.654022, 13.318629 ], [ 144.653958, 13.318695 ], [ 144.65389, 13.318685 ], [ 144.653592, 13.318687 ], [ 144.653499, 13.318715 ], [ 144.653431, 13.318714 ], [ 144.653411, 13.318685 ], [ 144.653451, 13.318614 ], [ 144.65349, 13.318576 ], [ 144.653471, 13.318547 ], [ 144.653408, 13.318532 ], [ 144.653334, 13.318575 ], [ 144.653222, 13.318617 ], [ 144.653124, 13.318645 ], [ 144.653016, 13.318706 ], [ 144.652884, 13.318733 ], [ 144.652852, 13.318743 ], [ 144.652599, 13.318831 ], [ 144.652492, 13.318854 ], [ 144.652359, 13.318934 ], [ 144.652241, 13.31899 ], [ 144.652109, 13.319037 ], [ 144.651972, 13.319059 ], [ 144.651932, 13.31914 ], [ 144.651878, 13.319226 ], [ 144.65177, 13.319273 ], [ 144.651694, 13.319317 ], [ 144.651583, 13.319381 ], [ 144.651465, 13.319519 ], [ 144.651327, 13.319689 ], [ 144.651281, 13.319842 ], [ 144.651286, 13.319877 ], [ 144.651304, 13.319981 ], [ 144.651381, 13.320106 ], [ 144.651439, 13.320226 ], [ 144.651457, 13.320322 ], [ 144.651415, 13.320388 ], [ 144.651295, 13.320679 ], [ 144.651211, 13.320802 ], [ 144.651107, 13.32094 ], [ 144.65088, 13.321206 ], [ 144.650657, 13.32151 ], [ 144.6505, 13.321661 ], [ 144.65048, 13.321683 ], [ 144.65044, 13.321728 ], [ 144.650224, 13.321831 ], [ 144.650117, 13.321887 ], [ 144.650057, 13.321934 ], [ 144.649999, 13.32191 ], [ 144.649945, 13.321905 ], [ 144.649979, 13.32201 ], [ 144.650182, 13.322141 ], [ 144.65026, 13.322218 ], [ 144.650303, 13.322329 ], [ 144.650365, 13.322444 ], [ 144.650413, 13.322564 ], [ 144.650447, 13.322756 ], [ 144.650495, 13.322871 ], [ 144.650563, 13.322962 ], [ 144.650591, 13.323058 ], [ 144.650659, 13.323131 ], [ 144.650665, 13.323145 ], [ 144.650716, 13.323265 ], [ 144.650798, 13.323371 ], [ 144.650826, 13.323481 ], [ 144.65096, 13.32375 ], [ 144.650993, 13.32387 ], [ 144.651036, 13.323999 ], [ 144.651078, 13.324153 ], [ 144.651097, 13.324244 ], [ 144.651145, 13.324321 ], [ 144.651152, 13.324646 ], [ 144.651141, 13.324732 ], [ 144.651116, 13.32478 ], [ 144.65114, 13.324842 ], [ 144.651193, 13.324919 ], [ 144.651214, 13.325 ], [ 144.651331, 13.325073 ], [ 144.651429, 13.325041 ], [ 144.651462, 13.325108 ], [ 144.651466, 13.325208 ], [ 144.651495, 13.325299 ], [ 144.651582, 13.325315 ], [ 144.65165, 13.325401 ], [ 144.651678, 13.325478 ], [ 144.651683, 13.325559 ], [ 144.651624, 13.325583 ], [ 144.651613, 13.325599 ], [ 144.651559, 13.325735 ], [ 144.651573, 13.325812 ], [ 144.651655, 13.325903 ], [ 144.651752, 13.325947 ], [ 144.65184, 13.325972 ], [ 144.651893, 13.326039 ], [ 144.651916, 13.32614 ], [ 144.651987, 13.326385 ], [ 144.652025, 13.326452 ], [ 144.65201, 13.326538 ], [ 144.652032, 13.326564 ], [ 144.652039, 13.326572 ], [ 144.652122, 13.326591 ], [ 144.652141, 13.326635 ], [ 144.65215, 13.326702 ], [ 144.652208, 13.326769 ], [ 144.652265, 13.326894 ], [ 144.652338, 13.326923 ], [ 144.652377, 13.326991 ], [ 144.652383, 13.327048 ], [ 144.652347, 13.327057 ], [ 144.652405, 13.327335 ], [ 144.652428, 13.327484 ], [ 144.652421, 13.327675 ], [ 144.652416, 13.32774 ], [ 144.652405, 13.32788 ], [ 144.652379, 13.328047 ], [ 144.652324, 13.32816 ], [ 144.652314, 13.328181 ], [ 144.652235, 13.328218 ], [ 144.65221, 13.328299 ], [ 144.652052, 13.328546 ], [ 144.652007, 13.328608 ], [ 144.651939, 13.328598 ], [ 144.651894, 13.328655 ], [ 144.651821, 13.328707 ], [ 144.651718, 13.328754 ], [ 144.651634, 13.328782 ], [ 144.651414, 13.328794 ], [ 144.651409, 13.328842 ], [ 144.651372, 13.328858 ], [ 144.651282, 13.328898 ], [ 144.651159, 13.328916 ], [ 144.651013, 13.328958 ], [ 144.650956, 13.328978 ], [ 144.650772, 13.329041 ], [ 144.650709, 13.329074 ], [ 144.650629, 13.329096 ], [ 144.650611, 13.329102 ], [ 144.650513, 13.329111 ], [ 144.650435, 13.329134 ], [ 144.650347, 13.329147 ], [ 144.650279, 13.329104 ], [ 144.650079, 13.329035 ], [ 144.650016, 13.329006 ], [ 144.649982, 13.328953 ], [ 144.649934, 13.328924 ], [ 144.649754, 13.328855 ], [ 144.64967, 13.328845 ], [ 144.649612, 13.328839 ], [ 144.649519, 13.328862 ], [ 144.649416, 13.328909 ], [ 144.649348, 13.328952 ], [ 144.649313, 13.32899 ], [ 144.649298, 13.329037 ], [ 144.649288, 13.329085 ], [ 144.649297, 13.329119 ], [ 144.649351, 13.329124 ], [ 144.6494, 13.329067 ], [ 144.649425, 13.329029 ], [ 144.649454, 13.329044 ], [ 144.649523, 13.32903 ], [ 144.649581, 13.329054 ], [ 144.649639, 13.329069 ], [ 144.649742, 13.329075 ], [ 144.649806, 13.329066 ], [ 144.649869, 13.329052 ], [ 144.649942, 13.329072 ], [ 144.649971, 13.329106 ], [ 144.650009, 13.329202 ], [ 144.650063, 13.329236 ], [ 144.650126, 13.329289 ], [ 144.650076, 13.329331 ], [ 144.650017, 13.329369 ], [ 144.649949, 13.329407 ], [ 144.649906, 13.329427 ], [ 144.64988, 13.32944 ], [ 144.649777, 13.329482 ], [ 144.649689, 13.329505 ], [ 144.649591, 13.329504 ], [ 144.649489, 13.329532 ], [ 144.649425, 13.329579 ], [ 144.649356, 13.329612 ], [ 144.649321, 13.329669 ], [ 144.649256, 13.329797 ], [ 144.649359, 13.329836 ], [ 144.649392, 13.329889 ], [ 144.649411, 13.329961 ], [ 144.64942, 13.330057 ], [ 144.64939, 13.330128 ], [ 144.649482, 13.330206 ], [ 144.649496, 13.330258 ], [ 144.649485, 13.330349 ], [ 144.649465, 13.330464 ], [ 144.64943, 13.330526 ], [ 144.649404, 13.330683 ], [ 144.649379, 13.330726 ], [ 144.649306, 13.330716 ], [ 144.649223, 13.330715 ], [ 144.64914, 13.330733 ], [ 144.649096, 13.330752 ], [ 144.649037, 13.330804 ], [ 144.649026, 13.330866 ], [ 144.649089, 13.330977 ], [ 144.649069, 13.331019 ], [ 144.649039, 13.331067 ], [ 144.649024, 13.331124 ], [ 144.648999, 13.331191 ], [ 144.648969, 13.3312 ], [ 144.648949, 13.331257 ], [ 144.648944, 13.331315 ], [ 144.648973, 13.331348 ], [ 144.648968, 13.331377 ], [ 144.648924, 13.331381 ], [ 144.648909, 13.331424 ], [ 144.648903, 13.331477 ], [ 144.648912, 13.331601 ], [ 144.648966, 13.331602 ], [ 144.649034, 13.331579 ], [ 144.649078, 13.331598 ], [ 144.649087, 13.331665 ], [ 144.649101, 13.331699 ], [ 144.649145, 13.331728 ], [ 144.64912, 13.331751 ], [ 144.649067, 13.331765 ], [ 144.649046, 13.331822 ], [ 144.649046, 13.33187 ], [ 144.649039, 13.331916 ], [ 144.649016, 13.331913 ], [ 144.64902, 13.332033 ], [ 144.649009, 13.332128 ], [ 144.64896, 13.332223 ], [ 144.648891, 13.332294 ], [ 144.648817, 13.332356 ], [ 144.648791, 13.33241 ], [ 144.648777, 13.332442 ], [ 144.648732, 13.332508 ], [ 144.648673, 13.33257 ], [ 144.648668, 13.332627 ], [ 144.648652, 13.332708 ], [ 144.648617, 13.332789 ], [ 144.648582, 13.332856 ], [ 144.648449, 13.332998 ], [ 144.648376, 13.333021 ], [ 144.648302, 13.333025 ], [ 144.648274, 13.332987 ], [ 144.648259, 13.332939 ], [ 144.648216, 13.332924 ], [ 144.648161, 13.33299 ], [ 144.648052, 13.333147 ], [ 144.648012, 13.333219 ], [ 144.647992, 13.333314 ], [ 144.647943, 13.333376 ], [ 144.647889, 13.333409 ], [ 144.647859, 13.333485 ], [ 144.647872, 13.3336 ], [ 144.647862, 13.333652 ], [ 144.647822, 13.333685 ], [ 144.647783, 13.333742 ], [ 144.647782, 13.333848 ], [ 144.647767, 13.333905 ], [ 144.647732, 13.333952 ], [ 144.647688, 13.333981 ], [ 144.647541, 13.334013 ], [ 144.647472, 13.334065 ], [ 144.647476, 13.334127 ], [ 144.647425, 13.334184 ], [ 144.64737, 13.334226 ], [ 144.647342, 13.334256 ], [ 144.647331, 13.334269 ], [ 144.647287, 13.334297 ], [ 144.647268, 13.334259 ], [ 144.647259, 13.334144 ], [ 144.647215, 13.334144 ], [ 144.647141, 13.334181 ], [ 144.647077, 13.334252 ], [ 144.647013, 13.334333 ], [ 144.646924, 13.334485 ], [ 144.646864, 13.33458 ], [ 144.646754, 13.334876 ], [ 144.646787, 13.334962 ], [ 144.646855, 13.334987 ], [ 144.646919, 13.334987 ], [ 144.646962, 13.335016 ], [ 144.64699, 13.335236 ], [ 144.646964, 13.335332 ], [ 144.646885, 13.335417 ], [ 144.646802, 13.335459 ], [ 144.646704, 13.335516 ], [ 144.646567, 13.335548 ], [ 144.646532, 13.335624 ], [ 144.646473, 13.335648 ], [ 144.646414, 13.33569 ], [ 144.646379, 13.335757 ], [ 144.646354, 13.335823 ], [ 144.646324, 13.335857 ], [ 144.646256, 13.335875 ], [ 144.646226, 13.335918 ], [ 144.646216, 13.335999 ], [ 144.646215, 13.336066 ], [ 144.6462, 13.336128 ], [ 144.64615, 13.336175 ], [ 144.64613, 13.336218 ], [ 144.646081, 13.336246 ], [ 144.646042, 13.336246 ], [ 144.645988, 13.336279 ], [ 144.645968, 13.336317 ], [ 144.645924, 13.336336 ], [ 144.645929, 13.336398 ], [ 144.645914, 13.336412 ], [ 144.645804, 13.33643 ], [ 144.645682, 13.336434 ], [ 144.645564, 13.336466 ], [ 144.645515, 13.336486 ], [ 144.645456, 13.336513 ], [ 144.6453, 13.336545 ], [ 144.645129, 13.336558 ], [ 144.644997, 13.336523 ], [ 144.644895, 13.336455 ], [ 144.644843, 13.336316 ], [ 144.644829, 13.336206 ], [ 144.644805, 13.336177 ], [ 144.644757, 13.336158 ], [ 144.644644, 13.33618 ], [ 144.644575, 13.336242 ], [ 144.644567, 13.336305 ], [ 144.644554, 13.336409 ], [ 144.644539, 13.336471 ], [ 144.644509, 13.336514 ], [ 144.644445, 13.336547 ], [ 144.644396, 13.336608 ], [ 144.644337, 13.336646 ], [ 144.644341, 13.336728 ], [ 144.644385, 13.336757 ], [ 144.644497, 13.336777 ], [ 144.644575, 13.336777 ], [ 144.644599, 13.33683 ], [ 144.644637, 13.336945 ], [ 144.644693, 13.337171 ], [ 144.644692, 13.337285 ], [ 144.644632, 13.337438 ], [ 144.644562, 13.337547 ], [ 144.644488, 13.337652 ], [ 144.644395, 13.337732 ], [ 144.644267, 13.337822 ], [ 144.644203, 13.337893 ], [ 144.644036, 13.338001 ], [ 144.643942, 13.338053 ], [ 144.643845, 13.338057 ], [ 144.643795, 13.338081 ], [ 144.643678, 13.338141 ], [ 144.643531, 13.338174 ], [ 144.643365, 13.338172 ], [ 144.643209, 13.338127 ], [ 144.643122, 13.338074 ], [ 144.642956, 13.338006 ], [ 144.642815, 13.337956 ], [ 144.642669, 13.33795 ], [ 144.642522, 13.337954 ], [ 144.642313, 13.337914 ], [ 144.64223, 13.33787 ], [ 144.642123, 13.33785 ], [ 144.64201, 13.337892 ], [ 144.641854, 13.337933 ], [ 144.641814, 13.337995 ], [ 144.641872, 13.338048 ], [ 144.641911, 13.338072 ], [ 144.641798, 13.338105 ], [ 144.641711, 13.338094 ], [ 144.641637, 13.338075 ], [ 144.641614, 13.338022 ], [ 144.641521, 13.338011 ], [ 144.641398, 13.338048 ], [ 144.641311, 13.338052 ], [ 144.641237, 13.3381 ], [ 144.641095, 13.338151 ], [ 144.641006, 13.338203 ], [ 144.640909, 13.338216 ], [ 144.640879, 13.338268 ], [ 144.640893, 13.338335 ], [ 144.640946, 13.338398 ], [ 144.640887, 13.338469 ], [ 144.640837, 13.338521 ], [ 144.640764, 13.338569 ], [ 144.640651, 13.338591 ], [ 144.640514, 13.338628 ], [ 144.640308, 13.338674 ], [ 144.640147, 13.338735 ], [ 144.639985, 13.338757 ], [ 144.639937, 13.338759 ], [ 144.639918, 13.338754 ], [ 144.639834, 13.33877 ], [ 144.639741, 13.338822 ], [ 144.639653, 13.338836 ], [ 144.639599, 13.338816 ], [ 144.639531, 13.338782 ], [ 144.639429, 13.338781 ], [ 144.639296, 13.338832 ], [ 144.639227, 13.338865 ], [ 144.639018, 13.338834 ], [ 144.638803, 13.338813 ], [ 144.638651, 13.338884 ], [ 144.638514, 13.338978 ], [ 144.638352, 13.339043 ], [ 144.6382, 13.339133 ], [ 144.637999, 13.339217 ], [ 144.637788, 13.339311 ], [ 144.637606, 13.339409 ], [ 144.6374, 13.339551 ], [ 144.637218, 13.339712 ], [ 144.637203, 13.339726 ], [ 144.6369, 13.339933 ], [ 144.636679, 13.340094 ], [ 144.636413, 13.340316 ], [ 144.636167, 13.340491 ], [ 144.636074, 13.340528 ], [ 144.635996, 13.340542 ], [ 144.635903, 13.340574 ], [ 144.635853, 13.340655 ], [ 144.635759, 13.340774 ], [ 144.635651, 13.340878 ], [ 144.635537, 13.34102 ], [ 144.635512, 13.341111 ], [ 144.635467, 13.341163 ], [ 144.635432, 13.341239 ], [ 144.635422, 13.34133 ], [ 144.635437, 13.341373 ], [ 144.6359, 13.341224 ], [ 144.637292, 13.340778 ], [ 144.637757, 13.34063 ], [ 144.637868, 13.340592 ], [ 144.638202, 13.340481 ], [ 144.638314, 13.340445 ], [ 144.639756, 13.339889 ], [ 144.64641, 13.33776 ], [ 144.651133, 13.33625 ], [ 144.656523, 13.334526 ], [ 144.661099, 13.333063 ], [ 144.666527, 13.331326 ], [ 144.66797, 13.330865 ], [ 144.668889, 13.330571 ], [ 144.670042, 13.330199 ], [ 144.670793, 13.329962 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "950100", "GEOID10": "66010950100", "NAME10": "9501", "NAMELSAD10": "Census Tract 9501", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 22005983, "AWATER10": 0, "INTPTLAT10": "+13.5822089", "INTPTLON10": "+144.9282078" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.942868, 13.600236 ], [ 144.942902, 13.600257 ], [ 144.942963, 13.600253 ], [ 144.943021, 13.600214 ], [ 144.943146, 13.600206 ], [ 144.943268, 13.600202 ], [ 144.943344, 13.600232 ], [ 144.943375, 13.600199 ], [ 144.94342, 13.600156 ], [ 144.943481, 13.600195 ], [ 144.94355, 13.600195 ], [ 144.943588, 13.600229 ], [ 144.943649, 13.600244 ], [ 144.943695, 13.600211 ], [ 144.943771, 13.600211 ], [ 144.943817, 13.600193 ], [ 144.943848, 13.600159 ], [ 144.943924, 13.600151 ], [ 144.943985, 13.600204 ], [ 144.944046, 13.600175 ], [ 144.944129, 13.60018 ], [ 144.944214, 13.600229 ], [ 144.944313, 13.600221 ], [ 144.944412, 13.600207 ], [ 144.944504, 13.600165 ], [ 144.944595, 13.600142 ], [ 144.944687, 13.600128 ], [ 144.944717, 13.600095 ], [ 144.944789, 13.600086 ], [ 144.944992, 13.600092 ], [ 144.945084, 13.600098 ], [ 144.94519, 13.600065 ], [ 144.945206, 13.600018 ], [ 144.945221, 13.599965 ], [ 144.945236, 13.599889 ], [ 144.945267, 13.599899 ], [ 144.945313, 13.599952 ], [ 144.945313, 13.599999 ], [ 144.945343, 13.600052 ], [ 144.945374, 13.600074 ], [ 144.94545, 13.60012 ], [ 144.945511, 13.600121 ], [ 144.945511, 13.600103 ], [ 144.94554, 13.600082 ], [ 144.945587, 13.600107 ], [ 144.945618, 13.600164 ], [ 144.945694, 13.600179 ], [ 144.945786, 13.600185 ], [ 144.945847, 13.600176 ], [ 144.945923, 13.6002 ], [ 144.946075, 13.600216 ], [ 144.946136, 13.600178 ], [ 144.946228, 13.600155 ], [ 144.946285, 13.60012 ], [ 144.946365, 13.60007 ], [ 144.946426, 13.600037 ], [ 144.946472, 13.600057 ], [ 144.946548, 13.600067 ], [ 144.946572, 13.600134 ], [ 144.94664, 13.600163 ], [ 144.946701, 13.600159 ], [ 144.946731, 13.600142 ], [ 144.946747, 13.600136 ], [ 144.946793, 13.600155 ], [ 144.946869, 13.600156 ], [ 144.947021, 13.600143 ], [ 144.947144, 13.600191 ], [ 144.947205, 13.600197 ], [ 144.94725, 13.600168 ], [ 144.947372, 13.600169 ], [ 144.947449, 13.600213 ], [ 144.947535, 13.600259 ], [ 144.947662, 13.600224 ], [ 144.947784, 13.600211 ], [ 144.947889, 13.600271 ], [ 144.948135, 13.600243 ], [ 144.948242, 13.600296 ], [ 144.948283, 13.6003 ], [ 144.948349, 13.600307 ], [ 144.948486, 13.600327 ], [ 144.948575, 13.600383 ], [ 144.948624, 13.600443 ], [ 144.948685, 13.600462 ], [ 144.948776, 13.600458 ], [ 144.948868, 13.60043 ], [ 144.948959, 13.600388 ], [ 144.949107, 13.600365 ], [ 144.949219, 13.600328 ], [ 144.949317, 13.600316 ], [ 144.949402, 13.600363 ], [ 144.949463, 13.600388 ], [ 144.949554, 13.600388 ], [ 144.949646, 13.600403 ], [ 144.949738, 13.600433 ], [ 144.949814, 13.600515 ], [ 144.94989, 13.600606 ], [ 144.949936, 13.600683 ], [ 144.949982, 13.600717 ], [ 144.950012, 13.600703 ], [ 144.950059, 13.60066 ], [ 144.950119, 13.600608 ], [ 144.95018, 13.600585 ], [ 144.950211, 13.600618 ], [ 144.950211, 13.600704 ], [ 144.950241, 13.600767 ], [ 144.950317, 13.600844 ], [ 144.950378, 13.600868 ], [ 144.950455, 13.600864 ], [ 144.950531, 13.600879 ], [ 144.950592, 13.600918 ], [ 144.950638, 13.600966 ], [ 144.950745, 13.600967 ], [ 144.95079, 13.600958 ], [ 144.950897, 13.600968 ], [ 144.951035, 13.600974 ], [ 144.951126, 13.600989 ], [ 144.951218, 13.600961 ], [ 144.951294, 13.6009 ], [ 144.95137, 13.600867 ], [ 144.951477, 13.600858 ], [ 144.951599, 13.600879 ], [ 144.951623, 13.600889 ], [ 144.951691, 13.600908 ], [ 144.951843, 13.600919 ], [ 144.95195, 13.600872 ], [ 144.952103, 13.600849 ], [ 144.952164, 13.600859 ], [ 144.952194, 13.600807 ], [ 144.952362, 13.600717 ], [ 144.952469, 13.600723 ], [ 144.952621, 13.600676 ], [ 144.952713, 13.600677 ], [ 144.95282, 13.600664 ], [ 144.952896, 13.600688 ], [ 144.953049, 13.60067 ], [ 144.95311, 13.600647 ], [ 144.953171, 13.600647 ], [ 144.953217, 13.600634 ], [ 144.953228, 13.600609 ], [ 144.953232, 13.600595 ], [ 144.953262, 13.600557 ], [ 144.953323, 13.600534 ], [ 144.953354, 13.600568 ], [ 144.953365, 13.600582 ], [ 144.953415, 13.600587 ], [ 144.953461, 13.600564 ], [ 144.953461, 13.600526 ], [ 144.953445, 13.600492 ], [ 144.953476, 13.600449 ], [ 144.953508, 13.600453 ], [ 144.953583, 13.600493 ], [ 144.953644, 13.600541 ], [ 144.95369, 13.600542 ], [ 144.953735, 13.600518 ], [ 144.953796, 13.600504 ], [ 144.953842, 13.600529 ], [ 144.953934, 13.600529 ], [ 144.953995, 13.60052 ], [ 144.95401, 13.600473 ], [ 144.954041, 13.600377 ], [ 144.954041, 13.600325 ], [ 144.954117, 13.600325 ], [ 144.954193, 13.600316 ], [ 144.954269, 13.600226 ], [ 144.954315, 13.600169 ], [ 144.954391, 13.60017 ], [ 144.954513, 13.60021 ], [ 144.954559, 13.600195 ], [ 144.954651, 13.600143 ], [ 144.954727, 13.600096 ], [ 144.954834, 13.60004 ], [ 144.954924, 13.600044 ], [ 144.955002, 13.599993 ], [ 144.955093, 13.599946 ], [ 144.95517, 13.599899 ], [ 144.955338, 13.599814 ], [ 144.955429, 13.59982 ], [ 144.95546, 13.599782 ], [ 144.955499, 13.599745 ], [ 144.955582, 13.599725 ], [ 144.955643, 13.599687 ], [ 144.955688, 13.599697 ], [ 144.95575, 13.599703 ], [ 144.955872, 13.599589 ], [ 144.955948, 13.599465 ], [ 144.956024, 13.599418 ], [ 144.956085, 13.599404 ], [ 144.9561, 13.599371 ], [ 144.956085, 13.599304 ], [ 144.956055, 13.599237 ], [ 144.9561, 13.599179 ], [ 144.956177, 13.599128 ], [ 144.956223, 13.599099 ], [ 144.956223, 13.599056 ], [ 144.956192, 13.598994 ], [ 144.956191, 13.59897 ], [ 144.956192, 13.598927 ], [ 144.956192, 13.59885 ], [ 144.956223, 13.598812 ], [ 144.956268, 13.59876 ], [ 144.956314, 13.598741 ], [ 144.956314, 13.598703 ], [ 144.956327, 13.598662 ], [ 144.95636, 13.598627 ], [ 144.95639, 13.598603 ], [ 144.956421, 13.598565 ], [ 144.956421, 13.598517 ], [ 144.956407, 13.598474 ], [ 144.95639, 13.598441 ], [ 144.95639, 13.598398 ], [ 144.956429, 13.598373 ], [ 144.956482, 13.598346 ], [ 144.956528, 13.598337 ], [ 144.956543, 13.598303 ], [ 144.956589, 13.598275 ], [ 144.956619, 13.598243 ], [ 144.95665, 13.598209 ], [ 144.956711, 13.598171 ], [ 144.956757, 13.598157 ], [ 144.956802, 13.598162 ], [ 144.956848, 13.598143 ], [ 144.956848, 13.598119 ], [ 144.956833, 13.59809 ], [ 144.956741, 13.59809 ], [ 144.956726, 13.59808 ], [ 144.956696, 13.598061 ], [ 144.956696, 13.598018 ], [ 144.956726, 13.597984 ], [ 144.956757, 13.597975 ], [ 144.956772, 13.597932 ], [ 144.956757, 13.597884 ], [ 144.956757, 13.597798 ], [ 144.956711, 13.597707 ], [ 144.956711, 13.597659 ], [ 144.956726, 13.59763 ], [ 144.956787, 13.597626 ], [ 144.956848, 13.59766 ], [ 144.956894, 13.59767 ], [ 144.956894, 13.597641 ], [ 144.956879, 13.597598 ], [ 144.956879, 13.597536 ], [ 144.956863, 13.597488 ], [ 144.956787, 13.59744 ], [ 144.956757, 13.597329 ], [ 144.956696, 13.597324 ], [ 144.956665, 13.597338 ], [ 144.956619, 13.597328 ], [ 144.956604, 13.597309 ], [ 144.956589, 13.597237 ], [ 144.956589, 13.597199 ], [ 144.956711, 13.597181 ], [ 144.956757, 13.597124 ], [ 144.956726, 13.597095 ], [ 144.956673, 13.597074 ], [ 144.95665, 13.597061 ], [ 144.956619, 13.597013 ], [ 144.956589, 13.59695 ], [ 144.956589, 13.596883 ], [ 144.956619, 13.596826 ], [ 144.95665, 13.596774 ], [ 144.95668, 13.596712 ], [ 144.956665, 13.596683 ], [ 144.956604, 13.596654 ], [ 144.956573, 13.596587 ], [ 144.956589, 13.596525 ], [ 144.956619, 13.596482 ], [ 144.95665, 13.596434 ], [ 144.956665, 13.596396 ], [ 144.95665, 13.596363 ], [ 144.956619, 13.596338 ], [ 144.956604, 13.59631 ], [ 144.956558, 13.59629 ], [ 144.956528, 13.596247 ], [ 144.956558, 13.596209 ], [ 144.956589, 13.596176 ], [ 144.956619, 13.596118 ], [ 144.956605, 13.596074 ], [ 144.956573, 13.596037 ], [ 144.956543, 13.596032 ], [ 144.956528, 13.595979 ], [ 144.956543, 13.595936 ], [ 144.956512, 13.595912 ], [ 144.956482, 13.595849 ], [ 144.956497, 13.595792 ], [ 144.956482, 13.595773 ], [ 144.95639, 13.595767 ], [ 144.956382, 13.595737 ], [ 144.956375, 13.59571 ], [ 144.95639, 13.595667 ], [ 144.95639, 13.5956 ], [ 144.956375, 13.595595 ], [ 144.956345, 13.595471 ], [ 144.956314, 13.595413 ], [ 144.956284, 13.595394 ], [ 144.956253, 13.595331 ], [ 144.956253, 13.595288 ], [ 144.956238, 13.595259 ], [ 144.956192, 13.59524 ], [ 144.956192, 13.595173 ], [ 144.956161, 13.595077 ], [ 144.956131, 13.595029 ], [ 144.9561, 13.594947 ], [ 144.956116, 13.594885 ], [ 144.956055, 13.594856 ], [ 144.956039, 13.594823 ], [ 144.956024, 13.594736 ], [ 144.955994, 13.594712 ], [ 144.955978, 13.594683 ], [ 144.955978, 13.59465 ], [ 144.955963, 13.594626 ], [ 144.955917, 13.594611 ], [ 144.955899, 13.594613 ], [ 144.955856, 13.594615 ], [ 144.955826, 13.594596 ], [ 144.95578, 13.594557 ], [ 144.955765, 13.594514 ], [ 144.955811, 13.594456 ], [ 144.955841, 13.5944 ], [ 144.955795, 13.594357 ], [ 144.955704, 13.594399 ], [ 144.955669, 13.594396 ], [ 144.955643, 13.594365 ], [ 144.955658, 13.594284 ], [ 144.955582, 13.594274 ], [ 144.955475, 13.594273 ], [ 144.95546, 13.59422 ], [ 144.955505, 13.594158 ], [ 144.955566, 13.59414 ], [ 144.955612, 13.594097 ], [ 144.955627, 13.594025 ], [ 144.955627, 13.593984 ], [ 144.955627, 13.593944 ], [ 144.955627, 13.593853 ], [ 144.955612, 13.593791 ], [ 144.955582, 13.593752 ], [ 144.955505, 13.593756 ], [ 144.955444, 13.593756 ], [ 144.955399, 13.59378 ], [ 144.955399, 13.593746 ], [ 144.955353, 13.593684 ], [ 144.955383, 13.593588 ], [ 144.955368, 13.593569 ], [ 144.955322, 13.593545 ], [ 144.955276, 13.593539 ], [ 144.955261, 13.593515 ], [ 144.955246, 13.593453 ], [ 144.955215, 13.593424 ], [ 144.955246, 13.593372 ], [ 144.955246, 13.593339 ], [ 144.955215, 13.593309 ], [ 144.955215, 13.593285 ], [ 144.955185, 13.593257 ], [ 144.955154, 13.593232 ], [ 144.955124, 13.593203 ], [ 144.955109, 13.593165 ], [ 144.955124, 13.593122 ], [ 144.955109, 13.593098 ], [ 144.955078, 13.593079 ], [ 144.955048, 13.59305 ], [ 144.955017, 13.593006 ], [ 144.955002, 13.592939 ], [ 144.954971, 13.592906 ], [ 144.954834, 13.592928 ], [ 144.954742, 13.592928 ], [ 144.9547, 13.592946 ], [ 144.954605, 13.59296 ], [ 144.954559, 13.592936 ], [ 144.954559, 13.592907 ], [ 144.95459, 13.592864 ], [ 144.954651, 13.592827 ], [ 144.954727, 13.59276 ], [ 144.954773, 13.592727 ], [ 144.954803, 13.592657 ], [ 144.954803, 13.592613 ], [ 144.954788, 13.592588 ], [ 144.954742, 13.592569 ], [ 144.954651, 13.592592 ], [ 144.954483, 13.592682 ], [ 144.954407, 13.592734 ], [ 144.954346, 13.592748 ], [ 144.954269, 13.592756 ], [ 144.954193, 13.592899 ], [ 144.954147, 13.592942 ], [ 144.954102, 13.592942 ], [ 144.954132, 13.592889 ], [ 144.954163, 13.592827 ], [ 144.954193, 13.592751 ], [ 144.954178, 13.592694 ], [ 144.954178, 13.592622 ], [ 144.954178, 13.592574 ], [ 144.954208, 13.592512 ], [ 144.954285, 13.592484 ], [ 144.954361, 13.592403 ], [ 144.954391, 13.592337 ], [ 144.954422, 13.59226 ], [ 144.954376, 13.592222 ], [ 144.9543, 13.592216 ], [ 144.954208, 13.592254 ], [ 144.954134, 13.592318 ], [ 144.954071, 13.592372 ], [ 144.95401, 13.592381 ], [ 144.95401, 13.592314 ], [ 144.954056, 13.592229 ], [ 144.954025, 13.592157 ], [ 144.953979, 13.592118 ], [ 144.953934, 13.592098 ], [ 144.953918, 13.592036 ], [ 144.953995, 13.591879 ], [ 144.95401, 13.591803 ], [ 144.953995, 13.591697 ], [ 144.953979, 13.591645 ], [ 144.953934, 13.591577 ], [ 144.953934, 13.591558 ], [ 144.953979, 13.591487 ], [ 144.95401, 13.591401 ], [ 144.953995, 13.591324 ], [ 144.953934, 13.591281 ], [ 144.953857, 13.591266 ], [ 144.953796, 13.591289 ], [ 144.953735, 13.591341 ], [ 144.95369, 13.591403 ], [ 144.953644, 13.591417 ], [ 144.953552, 13.591349 ], [ 144.953537, 13.591325 ], [ 144.953568, 13.591206 ], [ 144.953537, 13.591187 ], [ 144.953476, 13.591164 ], [ 144.953476, 13.591133 ], [ 144.953384, 13.591056 ], [ 144.953339, 13.591018 ], [ 144.953293, 13.590984 ], [ 144.953278, 13.590907 ], [ 144.953278, 13.590845 ], [ 144.953323, 13.590778 ], [ 144.953342, 13.590748 ], [ 144.953354, 13.590645 ], [ 144.953323, 13.590597 ], [ 144.953278, 13.590563 ], [ 144.953278, 13.590534 ], [ 144.953323, 13.590491 ], [ 144.953323, 13.590465 ], [ 144.953278, 13.59041 ], [ 144.953247, 13.590376 ], [ 144.953217, 13.590361 ], [ 144.953171, 13.590332 ], [ 144.953186, 13.590218 ], [ 144.953171, 13.590165 ], [ 144.95311, 13.59016 ], [ 144.953094, 13.590136 ], [ 144.95311, 13.590102 ], [ 144.953094, 13.590064 ], [ 144.953033, 13.590016 ], [ 144.953003, 13.590025 ], [ 144.952972, 13.590058 ], [ 144.952927, 13.590024 ], [ 144.952911, 13.589986 ], [ 144.952896, 13.589838 ], [ 144.952866, 13.589799 ], [ 144.952805, 13.589765 ], [ 144.952789, 13.589731 ], [ 144.95282, 13.589674 ], [ 144.95285, 13.589622 ], [ 144.95285, 13.589565 ], [ 144.95282, 13.58954 ], [ 144.952759, 13.589535 ], [ 144.952698, 13.589487 ], [ 144.952667, 13.589463 ], [ 144.952576, 13.589452 ], [ 144.95253, 13.589399 ], [ 144.952515, 13.589342 ], [ 144.952454, 13.589308 ], [ 144.952469, 13.589231 ], [ 144.952545, 13.589213 ], [ 144.95256, 13.589161 ], [ 144.95256, 13.589132 ], [ 144.952499, 13.589079 ], [ 144.952499, 13.58904 ], [ 144.952515, 13.588998 ], [ 144.95253, 13.588959 ], [ 144.952499, 13.588907 ], [ 144.952454, 13.588791 ], [ 144.952438, 13.588734 ], [ 144.952438, 13.588691 ], [ 144.952408, 13.588643 ], [ 144.952393, 13.588566 ], [ 144.952347, 13.588528 ], [ 144.952286, 13.588503 ], [ 144.95224, 13.588479 ], [ 144.952225, 13.588436 ], [ 144.952209, 13.588383 ], [ 144.952179, 13.588354 ], [ 144.952146, 13.588316 ], [ 144.952133, 13.588267 ], [ 144.952118, 13.5882 ], [ 144.952133, 13.588143 ], [ 144.952091, 13.588081 ], [ 144.952042, 13.588047 ], [ 144.952057, 13.588009 ], [ 144.952011, 13.58797 ], [ 144.951996, 13.587922 ], [ 144.951981, 13.587884 ], [ 144.951996, 13.587841 ], [ 144.951965, 13.587812 ], [ 144.951935, 13.587812 ], [ 144.95192, 13.587788 ], [ 144.95192, 13.587725 ], [ 144.95192, 13.587654 ], [ 144.951904, 13.587625 ], [ 144.951859, 13.587601 ], [ 144.951843, 13.587557 ], [ 144.951782, 13.587514 ], [ 144.951797, 13.587476 ], [ 144.951782, 13.587418 ], [ 144.951797, 13.587394 ], [ 144.951765, 13.587371 ], [ 144.951762, 13.587344 ], [ 144.951736, 13.587327 ], [ 144.951706, 13.587298 ], [ 144.951691, 13.587255 ], [ 144.951675, 13.587193 ], [ 144.951721, 13.587088 ], [ 144.951727, 13.587054 ], [ 144.951736, 13.58703 ], [ 144.951752, 13.586983 ], [ 144.951782, 13.586945 ], [ 144.951782, 13.586907 ], [ 144.951736, 13.586897 ], [ 144.951691, 13.586834 ], [ 144.951692, 13.586761 ], [ 144.951687, 13.586713 ], [ 144.951706, 13.586633 ], [ 144.951736, 13.5866 ], [ 144.951736, 13.586557 ], [ 144.951691, 13.586557 ], [ 144.951675, 13.586537 ], [ 144.95166, 13.58649 ], [ 144.951675, 13.586413 ], [ 144.95166, 13.58638 ], [ 144.95166, 13.586332 ], [ 144.951675, 13.586255 ], [ 144.951675, 13.586212 ], [ 144.951584, 13.586044 ], [ 144.951548, 13.586026 ], [ 144.951508, 13.586 ], [ 144.951477, 13.58589 ], [ 144.951447, 13.585823 ], [ 144.951416, 13.585746 ], [ 144.951416, 13.585665 ], [ 144.951401, 13.585598 ], [ 144.951355, 13.58554 ], [ 144.951324, 13.58553 ], [ 144.951294, 13.585444 ], [ 144.951279, 13.585382 ], [ 144.951263, 13.585343 ], [ 144.951248, 13.58529 ], [ 144.951248, 13.585238 ], [ 144.951279, 13.5852 ], [ 144.951341, 13.585165 ], [ 144.95134, 13.58511 ], [ 144.951355, 13.585052 ], [ 144.951401, 13.585029 ], [ 144.951416, 13.584962 ], [ 144.95139, 13.58491 ], [ 144.95137, 13.584871 ], [ 144.95134, 13.584875 ], [ 144.951294, 13.584899 ], [ 144.951248, 13.584918 ], [ 144.951202, 13.584903 ], [ 144.951187, 13.584802 ], [ 144.951202, 13.584759 ], [ 144.951218, 13.584721 ], [ 144.951248, 13.584717 ], [ 144.951248, 13.584683 ], [ 144.951202, 13.584645 ], [ 144.951141, 13.584618 ], [ 144.951111, 13.584529 ], [ 144.951096, 13.584485 ], [ 144.951096, 13.584441 ], [ 144.95108, 13.584398 ], [ 144.951065, 13.584368 ], [ 144.951035, 13.584387 ], [ 144.951035, 13.584421 ], [ 144.951019, 13.584434 ], [ 144.951004, 13.584411 ], [ 144.950989, 13.584382 ], [ 144.950974, 13.584304 ], [ 144.950989, 13.584265 ], [ 144.95096, 13.584247 ], [ 144.950928, 13.584226 ], [ 144.950882, 13.584118 ], [ 144.950867, 13.584074 ], [ 144.950851, 13.583982 ], [ 144.950882, 13.583982 ], [ 144.950882, 13.583938 ], [ 144.950867, 13.583894 ], [ 144.950806, 13.583787 ], [ 144.95076, 13.583675 ], [ 144.950775, 13.583636 ], [ 144.950729, 13.58363 ], [ 144.950684, 13.583567 ], [ 144.950668, 13.583513 ], [ 144.950684, 13.58346 ], [ 144.950714, 13.583436 ], [ 144.950745, 13.583451 ], [ 144.95076, 13.583431 ], [ 144.95076, 13.583397 ], [ 144.95076, 13.583348 ], [ 144.95079, 13.5833 ], [ 144.950806, 13.583251 ], [ 144.950806, 13.583213 ], [ 144.95079, 13.583183 ], [ 144.950775, 13.583139 ], [ 144.950729, 13.583095 ], [ 144.950745, 13.583071 ], [ 144.950775, 13.583003 ], [ 144.950775, 13.582969 ], [ 144.95076, 13.582944 ], [ 144.95076, 13.582925 ], [ 144.950714, 13.582924 ], [ 144.950684, 13.582924 ], [ 144.950668, 13.58291 ], [ 144.950653, 13.582866 ], [ 144.950638, 13.582807 ], [ 144.950668, 13.582768 ], [ 144.950714, 13.582754 ], [ 144.950699, 13.582725 ], [ 144.950699, 13.582676 ], [ 144.950684, 13.582632 ], [ 144.950653, 13.582579 ], [ 144.950627, 13.58254 ], [ 144.950607, 13.582486 ], [ 144.950623, 13.582442 ], [ 144.950577, 13.582388 ], [ 144.950577, 13.582349 ], [ 144.950592, 13.582301 ], [ 144.950623, 13.582272 ], [ 144.950653, 13.582247 ], [ 144.950638, 13.582218 ], [ 144.950607, 13.582208 ], [ 144.950592, 13.582189 ], [ 144.950592, 13.58215 ], [ 144.950562, 13.582106 ], [ 144.950577, 13.582067 ], [ 144.950562, 13.582028 ], [ 144.950546, 13.582003 ], [ 144.950516, 13.581988 ], [ 144.9505, 13.581959 ], [ 144.950485, 13.58192 ], [ 144.950485, 13.581883 ], [ 144.950531, 13.581843 ], [ 144.950577, 13.581838 ], [ 144.950607, 13.581848 ], [ 144.950638, 13.581877 ], [ 144.950684, 13.581878 ], [ 144.950706, 13.581876 ], [ 144.950729, 13.581873 ], [ 144.95076, 13.581864 ], [ 144.950729, 13.581839 ], [ 144.950714, 13.58181 ], [ 144.950714, 13.581766 ], [ 144.950745, 13.581723 ], [ 144.950714, 13.581688 ], [ 144.950668, 13.581625 ], [ 144.950623, 13.581464 ], [ 144.950623, 13.58141 ], [ 144.950607, 13.581347 ], [ 144.950623, 13.581288 ], [ 144.950623, 13.581259 ], [ 144.950577, 13.58123 ], [ 144.9505, 13.581161 ], [ 144.9505, 13.581122 ], [ 144.950516, 13.581036 ], [ 144.950531, 13.581005 ], [ 144.950485, 13.580978 ], [ 144.950409, 13.58097 ], [ 144.950348, 13.580955 ], [ 144.950299, 13.580935 ], [ 144.950287, 13.580872 ], [ 144.950302, 13.580833 ], [ 144.950348, 13.580814 ], [ 144.950378, 13.580775 ], [ 144.950404, 13.580722 ], [ 144.950409, 13.580649 ], [ 144.950409, 13.580595 ], [ 144.950378, 13.580576 ], [ 144.950333, 13.580566 ], [ 144.950317, 13.580536 ], [ 144.950302, 13.580473 ], [ 144.950317, 13.580405 ], [ 144.950333, 13.580351 ], [ 144.950363, 13.580323 ], [ 144.950363, 13.580279 ], [ 144.950363, 13.580256 ], [ 144.950362, 13.580227 ], [ 144.950378, 13.580177 ], [ 144.950409, 13.580153 ], [ 144.950485, 13.580119 ], [ 144.950485, 13.58009 ], [ 144.95047, 13.580065 ], [ 144.950485, 13.579973 ], [ 144.9505, 13.579925 ], [ 144.95047, 13.5799 ], [ 144.950424, 13.579875 ], [ 144.950409, 13.579846 ], [ 144.950348, 13.579797 ], [ 144.950317, 13.579743 ], [ 144.950272, 13.579674 ], [ 144.950264, 13.579655 ], [ 144.950256, 13.579635 ], [ 144.950195, 13.579625 ], [ 144.950165, 13.579606 ], [ 144.950119, 13.579537 ], [ 144.950119, 13.579415 ], [ 144.95015, 13.579367 ], [ 144.950211, 13.579319 ], [ 144.950272, 13.579305 ], [ 144.950272, 13.57928 ], [ 144.950241, 13.579217 ], [ 144.950317, 13.579125 ], [ 144.950333, 13.579081 ], [ 144.950317, 13.579037 ], [ 144.950317, 13.579017 ], [ 144.950317, 13.578993 ], [ 144.950363, 13.578965 ], [ 144.950439, 13.578965 ], [ 144.950455, 13.578926 ], [ 144.950439, 13.578848 ], [ 144.950409, 13.578814 ], [ 144.950409, 13.57878 ], [ 144.950394, 13.578746 ], [ 144.950378, 13.578716 ], [ 144.950363, 13.578668 ], [ 144.950348, 13.578643 ], [ 144.950302, 13.578643 ], [ 144.950256, 13.578618 ], [ 144.950241, 13.578599 ], [ 144.950226, 13.57855 ], [ 144.950226, 13.578496 ], [ 144.950237, 13.578432 ], [ 144.950263, 13.578418 ], [ 144.950287, 13.578404 ], [ 144.950333, 13.578448 ], [ 144.950348, 13.578405 ], [ 144.950333, 13.578385 ], [ 144.95021, 13.57836 ], [ 144.950195, 13.57834 ], [ 144.950195, 13.578292 ], [ 144.950226, 13.578233 ], [ 144.950226, 13.57819 ], [ 144.950165, 13.578077 ], [ 144.950104, 13.578013 ], [ 144.950089, 13.57796 ], [ 144.950054, 13.577949 ], [ 144.950027, 13.57794 ], [ 144.950027, 13.577988 ], [ 144.949997, 13.578003 ], [ 144.949951, 13.577968 ], [ 144.949905, 13.577914 ], [ 144.94986, 13.577826 ], [ 144.949875, 13.577783 ], [ 144.949844, 13.577739 ], [ 144.94989, 13.5777 ], [ 144.949936, 13.577637 ], [ 144.949936, 13.577589 ], [ 144.949921, 13.57754 ], [ 144.949921, 13.577413 ], [ 144.949905, 13.577355 ], [ 144.949875, 13.577369 ], [ 144.949832, 13.577406 ], [ 144.949814, 13.577422 ], [ 144.949783, 13.577441 ], [ 144.949722, 13.577373 ], [ 144.949707, 13.577314 ], [ 144.949677, 13.57726 ], [ 144.949661, 13.577207 ], [ 144.949661, 13.577155 ], [ 144.949708, 13.577129 ], [ 144.949768, 13.577081 ], [ 144.949722, 13.577051 ], [ 144.949646, 13.577022 ], [ 144.949615, 13.576973 ], [ 144.949615, 13.576914 ], [ 144.9496, 13.57689 ], [ 144.949585, 13.576865 ], [ 144.949539, 13.576909 ], [ 144.949463, 13.576874 ], [ 144.949463, 13.576816 ], [ 144.949448, 13.576713 ], [ 144.949524, 13.576655 ], [ 144.949524, 13.576621 ], [ 144.949509, 13.576592 ], [ 144.949417, 13.576587 ], [ 144.949387, 13.576538 ], [ 144.949341, 13.576498 ], [ 144.949341, 13.576425 ], [ 144.949249, 13.576298 ], [ 144.949245, 13.576271 ], [ 144.949234, 13.576205 ], [ 144.949188, 13.576108 ], [ 144.949081, 13.575995 ], [ 144.949051, 13.57596 ], [ 144.949036, 13.575902 ], [ 144.948975, 13.575867 ], [ 144.948914, 13.575818 ], [ 144.948868, 13.575784 ], [ 144.948853, 13.57573 ], [ 144.94886, 13.575696 ], [ 144.948868, 13.575652 ], [ 144.948914, 13.575628 ], [ 144.948929, 13.575551 ], [ 144.948868, 13.575506 ], [ 144.948837, 13.575443 ], [ 144.948822, 13.575374 ], [ 144.948746, 13.57534 ], [ 144.948746, 13.575238 ], [ 144.948715, 13.575228 ], [ 144.948669, 13.575222 ], [ 144.948654, 13.575198 ], [ 144.948639, 13.575154 ], [ 144.948608, 13.575139 ], [ 144.948547, 13.575148 ], [ 144.948532, 13.575192 ], [ 144.948441, 13.575235 ], [ 144.948364, 13.57522 ], [ 144.948318, 13.575185 ], [ 144.948196, 13.575082 ], [ 144.948187, 13.575048 ], [ 144.948181, 13.575024 ], [ 144.948181, 13.57499 ], [ 144.948135, 13.574945 ], [ 144.948105, 13.574882 ], [ 144.948181, 13.574863 ], [ 144.948288, 13.574849 ], [ 144.948288, 13.574752 ], [ 144.948135, 13.574697 ], [ 144.948013, 13.57475 ], [ 144.947998, 13.574696 ], [ 144.947937, 13.574652 ], [ 144.947861, 13.574602 ], [ 144.94783, 13.574558 ], [ 144.947906, 13.574535 ], [ 144.947952, 13.574531 ], [ 144.947998, 13.574526 ], [ 144.94809, 13.574502 ], [ 144.948135, 13.574425 ], [ 144.948135, 13.574322 ], [ 144.948074, 13.574283 ], [ 144.947998, 13.574277 ], [ 144.947952, 13.574321 ], [ 144.947815, 13.574315 ], [ 144.947785, 13.574281 ], [ 144.947754, 13.574246 ], [ 144.947708, 13.574183 ], [ 144.947708, 13.574136 ], [ 144.947708, 13.574095 ], [ 144.947693, 13.574027 ], [ 144.947662, 13.573939 ], [ 144.947662, 13.573903 ], [ 144.947662, 13.573841 ], [ 144.947571, 13.573778 ], [ 144.947586, 13.573709 ], [ 144.947601, 13.573637 ], [ 144.947556, 13.573573 ], [ 144.947571, 13.5735 ], [ 144.947556, 13.573412 ], [ 144.947495, 13.573417 ], [ 144.947388, 13.573416 ], [ 144.947344, 13.573405 ], [ 144.947388, 13.573284 ], [ 144.947342, 13.573255 ], [ 144.947281, 13.57324 ], [ 144.947262, 13.57324 ], [ 144.94722, 13.573239 ], [ 144.947144, 13.573209 ], [ 144.947128, 13.573122 ], [ 144.947113, 13.573039 ], [ 144.947131, 13.572976 ], [ 144.947168, 13.572927 ], [ 144.947188, 13.572893 ], [ 144.947166, 13.572864 ], [ 144.947106, 13.572829 ], [ 144.947022, 13.572809 ], [ 144.946958, 13.572818 ], [ 144.946927, 13.572823 ], [ 144.946877, 13.572838 ], [ 144.946863, 13.572808 ], [ 144.946888, 13.572774 ], [ 144.946913, 13.572755 ], [ 144.946918, 13.572701 ], [ 144.946825, 13.572632 ], [ 144.946701, 13.572524 ], [ 144.946677, 13.572485 ], [ 144.946697, 13.572451 ], [ 144.946732, 13.572413 ], [ 144.946737, 13.572359 ], [ 144.946723, 13.572315 ], [ 144.946639, 13.572261 ], [ 144.946574, 13.572226 ], [ 144.94652, 13.572226 ], [ 144.946485, 13.57223 ], [ 144.94644, 13.572212 ], [ 144.94641, 13.572201 ], [ 144.946281, 13.572141 ], [ 144.946247, 13.572107 ], [ 144.946247, 13.572058 ], [ 144.946273, 13.571976 ], [ 144.946249, 13.571902 ], [ 144.946204, 13.571863 ], [ 144.946125, 13.571848 ], [ 144.946105, 13.571887 ], [ 144.94605, 13.571886 ], [ 144.946025, 13.571857 ], [ 144.945972, 13.571725 ], [ 144.945917, 13.57169 ], [ 144.945837, 13.571714 ], [ 144.945857, 13.571782 ], [ 144.945802, 13.571821 ], [ 144.945628, 13.571771 ], [ 144.945549, 13.571726 ], [ 144.94545, 13.571662 ], [ 144.945247, 13.571553 ], [ 144.945153, 13.571485 ], [ 144.945129, 13.571387 ], [ 144.945074, 13.571328 ], [ 144.945015, 13.571284 ], [ 144.944966, 13.571186 ], [ 144.945006, 13.571162 ], [ 144.945086, 13.571153 ], [ 144.945116, 13.571085 ], [ 144.945112, 13.570993 ], [ 144.945093, 13.57091 ], [ 144.945038, 13.570885 ], [ 144.945004, 13.57086 ], [ 144.94492, 13.570826 ], [ 144.94489, 13.570743 ], [ 144.944846, 13.570718 ], [ 144.944806, 13.570708 ], [ 144.944722, 13.570712 ], [ 144.944642, 13.570677 ], [ 144.944593, 13.570648 ], [ 144.944559, 13.570492 ], [ 144.944486, 13.570379 ], [ 144.944447, 13.570286 ], [ 144.944343, 13.570217 ], [ 144.944294, 13.570139 ], [ 144.94421, 13.57008 ], [ 144.944151, 13.570002 ], [ 144.944131, 13.569928 ], [ 144.944047, 13.56984 ], [ 144.943983, 13.569786 ], [ 144.943894, 13.56979 ], [ 144.943785, 13.569745 ], [ 144.943706, 13.569672 ], [ 144.943666, 13.569598 ], [ 144.943592, 13.569539 ], [ 144.943414, 13.569475 ], [ 144.943349, 13.569469 ], [ 144.943234, 13.569522 ], [ 144.94316, 13.569526 ], [ 144.943083, 13.569506 ], [ 144.943083, 13.569462 ], [ 144.943028, 13.569442 ], [ 144.943009, 13.569413 ], [ 144.943004, 13.569345 ], [ 144.942985, 13.569281 ], [ 144.942961, 13.569237 ], [ 144.942906, 13.569237 ], [ 144.942846, 13.569251 ], [ 144.942801, 13.56927 ], [ 144.942781, 13.569309 ], [ 144.942726, 13.569347 ], [ 144.942637, 13.569303 ], [ 144.942607, 13.569293 ], [ 144.942567, 13.569312 ], [ 144.942512, 13.56935 ], [ 144.942462, 13.569394 ], [ 144.942427, 13.569389 ], [ 144.942397, 13.569354 ], [ 144.942408, 13.569325 ], [ 144.942413, 13.569262 ], [ 144.942373, 13.569232 ], [ 144.942159, 13.569245 ], [ 144.94206, 13.569181 ], [ 144.942041, 13.569113 ], [ 144.942052, 13.569021 ], [ 144.942032, 13.568967 ], [ 144.941963, 13.568918 ], [ 144.941964, 13.568859 ], [ 144.941909, 13.568815 ], [ 144.941875, 13.568771 ], [ 144.941811, 13.568736 ], [ 144.941756, 13.568687 ], [ 144.941677, 13.568652 ], [ 144.941602, 13.568671 ], [ 144.941557, 13.568676 ], [ 144.941493, 13.568695 ], [ 144.941467, 13.568691 ], [ 144.941453, 13.568689 ], [ 144.941329, 13.568586 ], [ 144.941295, 13.568547 ], [ 144.941305, 13.568484 ], [ 144.94139, 13.568441 ], [ 144.941381, 13.568368 ], [ 144.941316, 13.568367 ], [ 144.941237, 13.568371 ], [ 144.941206, 13.568434 ], [ 144.941141, 13.568439 ], [ 144.941022, 13.568428 ], [ 144.940933, 13.568413 ], [ 144.940873, 13.568363 ], [ 144.940859, 13.56831 ], [ 144.94086, 13.568247 ], [ 144.94083, 13.568207 ], [ 144.940765, 13.568202 ], [ 144.940661, 13.568225 ], [ 144.940616, 13.56821 ], [ 144.940572, 13.568157 ], [ 144.940517, 13.568122 ], [ 144.940404, 13.568009 ], [ 144.940325, 13.567955 ], [ 144.940305, 13.567877 ], [ 144.940307, 13.567755 ], [ 144.940303, 13.567595 ], [ 144.940294, 13.567453 ], [ 144.94027, 13.567375 ], [ 144.94033, 13.567351 ], [ 144.940395, 13.567333 ], [ 144.940415, 13.567284 ], [ 144.940306, 13.567191 ], [ 144.940299, 13.567157 ], [ 144.940305, 13.567108 ], [ 144.940275, 13.567098 ], [ 144.940215, 13.567127 ], [ 144.940161, 13.567123 ], [ 144.94014, 13.567107 ], [ 144.940116, 13.567067 ], [ 144.940111, 13.567019 ], [ 144.940122, 13.566965 ], [ 144.940122, 13.566912 ], [ 144.940148, 13.566829 ], [ 144.940173, 13.566776 ], [ 144.940209, 13.566713 ], [ 144.940214, 13.566654 ], [ 144.940175, 13.566547 ], [ 144.940141, 13.566518 ], [ 144.940007, 13.566487 ], [ 144.940017, 13.566444 ], [ 144.940077, 13.566376 ], [ 144.940112, 13.566318 ], [ 144.940118, 13.56624 ], [ 144.940134, 13.566162 ], [ 144.940139, 13.566084 ], [ 144.940125, 13.56606 ], [ 144.94007, 13.566045 ], [ 144.939956, 13.566005 ], [ 144.939857, 13.565892 ], [ 144.939828, 13.565809 ], [ 144.9398, 13.565629 ], [ 144.939796, 13.565536 ], [ 144.939737, 13.56538 ], [ 144.939718, 13.565317 ], [ 144.939684, 13.565239 ], [ 144.939641, 13.565068 ], [ 144.939596, 13.565009 ], [ 144.939583, 13.564848 ], [ 144.939542, 13.56481 ], [ 144.939549, 13.564775 ], [ 144.939514, 13.564736 ], [ 144.939475, 13.564667 ], [ 144.939436, 13.564579 ], [ 144.939402, 13.564453 ], [ 144.939408, 13.564385 ], [ 144.939428, 13.564331 ], [ 144.939453, 13.564292 ], [ 144.939493, 13.564259 ], [ 144.939538, 13.56424 ], [ 144.939559, 13.564201 ], [ 144.939539, 13.564181 ], [ 144.939514, 13.564181 ], [ 144.939464, 13.564166 ], [ 144.93945, 13.564107 ], [ 144.93945, 13.564064 ], [ 144.939456, 13.56403 ], [ 144.939476, 13.563996 ], [ 144.939436, 13.563952 ], [ 144.939412, 13.563917 ], [ 144.939397, 13.563869 ], [ 144.939407, 13.563839 ], [ 144.939408, 13.563791 ], [ 144.939368, 13.563756 ], [ 144.939359, 13.563674 ], [ 144.93936, 13.56362 ], [ 144.93934, 13.563571 ], [ 144.939315, 13.563542 ], [ 144.939266, 13.563527 ], [ 144.939236, 13.563497 ], [ 144.939207, 13.563444 ], [ 144.939192, 13.563395 ], [ 144.939222, 13.563376 ], [ 144.939238, 13.563337 ], [ 144.939238, 13.563308 ], [ 144.939228, 13.563288 ], [ 144.939174, 13.563258 ], [ 144.939184, 13.563219 ], [ 144.939204, 13.563186 ], [ 144.939215, 13.563113 ], [ 144.9392, 13.56304 ], [ 144.939196, 13.562952 ], [ 144.939167, 13.562849 ], [ 144.939109, 13.562679 ], [ 144.93907, 13.56263 ], [ 144.93901, 13.56258 ], [ 144.938966, 13.562561 ], [ 144.938946, 13.562502 ], [ 144.938962, 13.562449 ], [ 144.938982, 13.562405 ], [ 144.938963, 13.562327 ], [ 144.938963, 13.562249 ], [ 144.938909, 13.56221 ], [ 144.938859, 13.562214 ], [ 144.938815, 13.562185 ], [ 144.938805, 13.562131 ], [ 144.938716, 13.562062 ], [ 144.938652, 13.562052 ], [ 144.938578, 13.561993 ], [ 144.938543, 13.561949 ], [ 144.938544, 13.561871 ], [ 144.938559, 13.561827 ], [ 144.938615, 13.56173 ], [ 144.938625, 13.561672 ], [ 144.938606, 13.561633 ], [ 144.938576, 13.561599 ], [ 144.938562, 13.561545 ], [ 144.938572, 13.561487 ], [ 144.938607, 13.561443 ], [ 144.938657, 13.561395 ], [ 144.938668, 13.561283 ], [ 144.938684, 13.561229 ], [ 144.938694, 13.561176 ], [ 144.93868, 13.561137 ], [ 144.938625, 13.561112 ], [ 144.938565, 13.561102 ], [ 144.938452, 13.560979 ], [ 144.938413, 13.560906 ], [ 144.938368, 13.560857 ], [ 144.938374, 13.560779 ], [ 144.938368, 13.560633 ], [ 144.938369, 13.56056 ], [ 144.938394, 13.560458 ], [ 144.93843, 13.560405 ], [ 144.938495, 13.560352 ], [ 144.93853, 13.560289 ], [ 144.938511, 13.56024 ], [ 144.938486, 13.560215 ], [ 144.938507, 13.560143 ], [ 144.938522, 13.560075 ], [ 144.938548, 13.560002 ], [ 144.938568, 13.559929 ], [ 144.938574, 13.559871 ], [ 144.938564, 13.559763 ], [ 144.93859, 13.55971 ], [ 144.938605, 13.559657 ], [ 144.938741, 13.559468 ], [ 144.938777, 13.5594 ], [ 144.938802, 13.559332 ], [ 144.938793, 13.559274 ], [ 144.938758, 13.559239 ], [ 144.938749, 13.559152 ], [ 144.93876, 13.55905 ], [ 144.93879, 13.558953 ], [ 144.938771, 13.558879 ], [ 144.938732, 13.558825 ], [ 144.938733, 13.558738 ], [ 144.938709, 13.558601 ], [ 144.938627, 13.558567 ], [ 144.938504, 13.558468 ], [ 144.938365, 13.558321 ], [ 144.938322, 13.558199 ], [ 144.938288, 13.558067 ], [ 144.938269, 13.557931 ], [ 144.938236, 13.557794 ], [ 144.938212, 13.557663 ], [ 144.938203, 13.55757 ], [ 144.938209, 13.557453 ], [ 144.938254, 13.557366 ], [ 144.938339, 13.557318 ], [ 144.938444, 13.557266 ], [ 144.938684, 13.557131 ], [ 144.938809, 13.557054 ], [ 144.938904, 13.557016 ], [ 144.938999, 13.556973 ], [ 144.939089, 13.556925 ], [ 144.939154, 13.556858 ], [ 144.93912, 13.55678 ], [ 144.939101, 13.556721 ], [ 144.939092, 13.55659 ], [ 144.939093, 13.556497 ], [ 144.939138, 13.556468 ], [ 144.939232, 13.556484 ], [ 144.939287, 13.556455 ], [ 144.939322, 13.556397 ], [ 144.939343, 13.556329 ], [ 144.939343, 13.55628 ], [ 144.939379, 13.556222 ], [ 144.939404, 13.556159 ], [ 144.939405, 13.556091 ], [ 144.939475, 13.556009 ], [ 144.939461, 13.555955 ], [ 144.939501, 13.555911 ], [ 144.939565, 13.555936 ], [ 144.93962, 13.555932 ], [ 144.939697, 13.555879 ], [ 144.939793, 13.555821 ], [ 144.939833, 13.555749 ], [ 144.939834, 13.555676 ], [ 144.939784, 13.555622 ], [ 144.93975, 13.555568 ], [ 144.939676, 13.555528 ], [ 144.939671, 13.555441 ], [ 144.939687, 13.555339 ], [ 144.939683, 13.555266 ], [ 144.939713, 13.555178 ], [ 144.939749, 13.55512 ], [ 144.939794, 13.555057 ], [ 144.939789, 13.555028 ], [ 144.939715, 13.554979 ], [ 144.939641, 13.554954 ], [ 144.939626, 13.5549 ], [ 144.939642, 13.554856 ], [ 144.939677, 13.554828 ], [ 144.939702, 13.554794 ], [ 144.939732, 13.554774 ], [ 144.939877, 13.554717 ], [ 144.939922, 13.554693 ], [ 144.939897, 13.554654 ], [ 144.939872, 13.554634 ], [ 144.939873, 13.554586 ], [ 144.939933, 13.554552 ], [ 144.939988, 13.55446 ], [ 144.939999, 13.554392 ], [ 144.939999, 13.554343 ], [ 144.93994, 13.554333 ], [ 144.93989, 13.554294 ], [ 144.939851, 13.55424 ], [ 144.939836, 13.554191 ], [ 144.939857, 13.554123 ], [ 144.939847, 13.55407 ], [ 144.939768, 13.55402 ], [ 144.939739, 13.553967 ], [ 144.939764, 13.553899 ], [ 144.939829, 13.55386 ], [ 144.939885, 13.553788 ], [ 144.940019, 13.553774 ], [ 144.940069, 13.553745 ], [ 144.940115, 13.553658 ], [ 144.94008, 13.553609 ], [ 144.940006, 13.553618 ], [ 144.939896, 13.553617 ], [ 144.939748, 13.553665 ], [ 144.939742, 13.553616 ], [ 144.939729, 13.553402 ], [ 144.939736, 13.553198 ], [ 144.939761, 13.553149 ], [ 144.939796, 13.553154 ], [ 144.939826, 13.553106 ], [ 144.939806, 13.553062 ], [ 144.939782, 13.553023 ], [ 144.939797, 13.552955 ], [ 144.939887, 13.552897 ], [ 144.939927, 13.552961 ], [ 144.940001, 13.552966 ], [ 144.940066, 13.552913 ], [ 144.940122, 13.552768 ], [ 144.940153, 13.552714 ], [ 144.940168, 13.552622 ], [ 144.940144, 13.552563 ], [ 144.940075, 13.552436 ], [ 144.940046, 13.552421 ], [ 144.940026, 13.552368 ], [ 144.940028, 13.552339 ], [ 144.940032, 13.55229 ], [ 144.940008, 13.552231 ], [ 144.940008, 13.552168 ], [ 144.939904, 13.552123 ], [ 144.939879, 13.552089 ], [ 144.939825, 13.55203 ], [ 144.939761, 13.55202 ], [ 144.939711, 13.552005 ], [ 144.939681, 13.551966 ], [ 144.939637, 13.551878 ], [ 144.939608, 13.551853 ], [ 144.939519, 13.551789 ], [ 144.939489, 13.55174 ], [ 144.939435, 13.551706 ], [ 144.939381, 13.551661 ], [ 144.939351, 13.551588 ], [ 144.939337, 13.551534 ], [ 144.939338, 13.551384 ], [ 144.939379, 13.551326 ], [ 144.939414, 13.551267 ], [ 144.93937, 13.551209 ], [ 144.939311, 13.551067 ], [ 144.939331, 13.551019 ], [ 144.939342, 13.55096 ], [ 144.939302, 13.550921 ], [ 144.939248, 13.550891 ], [ 144.939193, 13.550881 ], [ 144.939134, 13.550832 ], [ 144.939109, 13.550793 ], [ 144.9391, 13.550725 ], [ 144.939071, 13.550651 ], [ 144.939006, 13.550646 ], [ 144.938967, 13.550587 ], [ 144.938982, 13.550548 ], [ 144.938953, 13.550524 ], [ 144.938883, 13.550499 ], [ 144.938849, 13.550469 ], [ 144.938874, 13.550426 ], [ 144.938884, 13.550372 ], [ 144.93886, 13.550343 ], [ 144.93889, 13.55028 ], [ 144.938846, 13.550241 ], [ 144.938796, 13.550216 ], [ 144.938747, 13.550172 ], [ 144.938697, 13.550157 ], [ 144.938673, 13.550118 ], [ 144.938644, 13.550015 ], [ 144.938639, 13.549957 ], [ 144.938615, 13.549908 ], [ 144.93861, 13.549859 ], [ 144.938615, 13.54981 ], [ 144.938631, 13.549772 ], [ 144.938577, 13.549649 ], [ 144.93857, 13.549606 ], [ 144.938545, 13.549571 ], [ 144.938501, 13.549556 ], [ 144.938431, 13.549546 ], [ 144.938406, 13.549536 ], [ 144.938397, 13.549512 ], [ 144.938402, 13.549453 ], [ 144.938373, 13.5494 ], [ 144.938338, 13.549355 ], [ 144.938294, 13.549258 ], [ 144.938235, 13.549204 ], [ 144.938165, 13.549213 ], [ 144.938135, 13.549227 ], [ 144.938066, 13.549193 ], [ 144.938101, 13.549149 ], [ 144.938102, 13.54911 ], [ 144.938003, 13.549031 ], [ 144.937993, 13.548983 ], [ 144.938014, 13.548915 ], [ 144.938134, 13.548823 ], [ 144.938135, 13.548677 ], [ 144.938146, 13.548634 ], [ 144.938091, 13.54856 ], [ 144.938107, 13.548512 ], [ 144.938102, 13.548463 ], [ 144.938067, 13.548467 ], [ 144.938043, 13.548443 ], [ 144.938039, 13.548302 ], [ 144.938025, 13.548229 ], [ 144.938025, 13.54817 ], [ 144.937976, 13.548141 ], [ 144.937906, 13.54813 ], [ 144.937852, 13.548105 ], [ 144.937763, 13.547998 ], [ 144.937734, 13.547929 ], [ 144.937729, 13.547846 ], [ 144.93773, 13.547778 ], [ 144.937806, 13.547672 ], [ 144.937821, 13.54758 ], [ 144.937797, 13.54757 ], [ 144.937742, 13.547598 ], [ 144.937697, 13.547613 ], [ 144.937662, 13.547598 ], [ 144.937658, 13.547491 ], [ 144.937668, 13.547442 ], [ 144.937654, 13.547403 ], [ 144.937599, 13.547388 ], [ 144.937529, 13.547416 ], [ 144.937494, 13.547411 ], [ 144.93747, 13.547401 ], [ 144.937506, 13.547261 ], [ 144.937501, 13.547197 ], [ 144.937504, 13.547178 ], [ 144.937445, 13.547129 ], [ 144.9374, 13.547153 ], [ 144.93732, 13.547142 ], [ 144.937278, 13.547113 ], [ 144.933433, 13.549094 ], [ 144.92266, 13.554648 ], [ 144.922231, 13.554775 ], [ 144.921839, 13.554893 ], [ 144.921836, 13.554894 ], [ 144.920567, 13.555396 ], [ 144.917989, 13.556367 ], [ 144.917804, 13.55645 ], [ 144.917549, 13.556547 ], [ 144.916784, 13.556842 ], [ 144.916593, 13.556916 ], [ 144.91653, 13.55694 ], [ 144.916513, 13.557005 ], [ 144.91651, 13.55702 ], [ 144.916554, 13.557203 ], [ 144.91657, 13.55727 ], [ 144.916758, 13.557992 ], [ 144.91688, 13.55846 ], [ 144.91708, 13.55921 ], [ 144.91719, 13.55949 ], [ 144.91733, 13.5597 ], [ 144.91754, 13.55993 ], [ 144.917627, 13.560006 ], [ 144.9177, 13.56007 ], [ 144.91795, 13.56022 ], [ 144.91826, 13.5604 ], [ 144.91871, 13.560646 ], [ 144.91934, 13.56099 ], [ 144.92006, 13.56139 ], [ 144.92051, 13.56164 ], [ 144.920884, 13.561853 ], [ 144.922006, 13.562495 ], [ 144.92238, 13.56271 ], [ 144.922477, 13.562761 ], [ 144.922772, 13.562918 ], [ 144.92287, 13.56297 ], [ 144.923097, 13.563091 ], [ 144.92373, 13.56343 ], [ 144.923777, 13.563462 ], [ 144.92399, 13.56361 ], [ 144.923763, 13.563716 ], [ 144.92346, 13.56386 ], [ 144.923079, 13.564028 ], [ 144.92285, 13.56413 ], [ 144.922533, 13.564275 ], [ 144.92174, 13.56464 ], [ 144.921588, 13.564718 ], [ 144.92128, 13.56488 ], [ 144.921132, 13.56497 ], [ 144.92089, 13.56512 ], [ 144.920698, 13.565258 ], [ 144.92064, 13.5653 ], [ 144.92056, 13.565363 ], [ 144.920434, 13.565462 ], [ 144.92025, 13.56561 ], [ 144.920068, 13.565772 ], [ 144.91995, 13.56588 ], [ 144.919899, 13.565943 ], [ 144.91975, 13.566136 ], [ 144.9197, 13.5662 ], [ 144.919534, 13.566408 ], [ 144.91931, 13.56669 ], [ 144.919079, 13.567063 ], [ 144.91894, 13.56729 ], [ 144.918796, 13.567605 ], [ 144.91843, 13.56841 ], [ 144.918368, 13.568552 ], [ 144.91823, 13.56887 ], [ 144.918071, 13.569085 ], [ 144.91798, 13.56921 ], [ 144.91767, 13.56955 ], [ 144.917538, 13.569681 ], [ 144.91735, 13.56987 ], [ 144.917289, 13.569889 ], [ 144.917109, 13.56995 ], [ 144.91705, 13.56997 ], [ 144.916103, 13.570266 ], [ 144.91536, 13.5705 ], [ 144.91328, 13.57117 ], [ 144.913267, 13.571172 ], [ 144.91284, 13.57125 ], [ 144.91252, 13.57125 ], [ 144.91229, 13.57119 ], [ 144.912151, 13.571568 ], [ 144.91202, 13.57193 ], [ 144.911759, 13.572712 ], [ 144.911632, 13.573095 ], [ 144.91121, 13.57436 ], [ 144.910786, 13.57557 ], [ 144.91064, 13.57599 ], [ 144.91036, 13.57677 ], [ 144.90951, 13.57904 ], [ 144.90889, 13.58089 ], [ 144.90879, 13.58131 ], [ 144.90877, 13.58164 ], [ 144.90881, 13.58214 ], [ 144.90892, 13.58271 ], [ 144.90905, 13.58304 ], [ 144.90905, 13.583041 ], [ 144.90919, 13.58333 ], [ 144.90946, 13.5837 ], [ 144.90984, 13.58408 ], [ 144.9102, 13.58432 ], [ 144.91061, 13.58455 ], [ 144.91097, 13.58472 ], [ 144.91073, 13.58494 ], [ 144.9095, 13.58613 ], [ 144.90927, 13.58643 ], [ 144.90914, 13.58662 ], [ 144.909082, 13.586764 ], [ 144.90883, 13.5874 ], [ 144.90861, 13.58798 ], [ 144.90853, 13.58815 ], [ 144.90837, 13.58839 ], [ 144.90796, 13.58883 ], [ 144.90667, 13.59017 ], [ 144.90615, 13.59068 ], [ 144.90591, 13.59089 ], [ 144.90555, 13.59112 ], [ 144.90514, 13.59135 ], [ 144.90404, 13.59193 ], [ 144.903181, 13.592384 ], [ 144.90219, 13.59291 ], [ 144.90137, 13.59323 ], [ 144.90098, 13.59342 ], [ 144.90083, 13.59357 ], [ 144.90077, 13.59371 ], [ 144.90059, 13.59405 ], [ 144.90058, 13.594055 ], [ 144.90046, 13.59412 ], [ 144.90033, 13.59418 ], [ 144.899444, 13.594375 ], [ 144.89938, 13.59439 ], [ 144.89906, 13.59447 ], [ 144.898519, 13.597727 ], [ 144.89843, 13.59827 ], [ 144.89841, 13.5985 ], [ 144.89842, 13.59863 ], [ 144.89859, 13.59928 ], [ 144.89863, 13.59948 ], [ 144.89865, 13.59979 ], [ 144.89866, 13.60034 ], [ 144.89865, 13.60062 ], [ 144.89847, 13.60135 ], [ 144.89834, 13.60178 ], [ 144.89829, 13.60188 ], [ 144.8982, 13.602 ], [ 144.89805, 13.60212 ], [ 144.89756, 13.60241 ], [ 144.89725, 13.60256 ], [ 144.89703, 13.60271 ], [ 144.89683, 13.60291 ], [ 144.89665, 13.60312 ], [ 144.89656, 13.60327 ], [ 144.89648, 13.60349 ], [ 144.89642, 13.6038 ], [ 144.89645, 13.60409 ], [ 144.89658, 13.60445 ], [ 144.89681, 13.60479 ], [ 144.89705, 13.60503 ], [ 144.89731, 13.60524 ], [ 144.89764, 13.60541 ], [ 144.898303, 13.605711 ], [ 144.89841, 13.60576 ], [ 144.8989, 13.60596 ], [ 144.89909, 13.60606 ], [ 144.89929, 13.60623 ], [ 144.89972, 13.60663 ], [ 144.90083, 13.60777 ], [ 144.90103, 13.60756 ], [ 144.901418, 13.607119 ], [ 144.90178, 13.60671 ], [ 144.90266, 13.60568 ], [ 144.903137, 13.605125 ], [ 144.90371, 13.60446 ], [ 144.90396, 13.60447 ], [ 144.903992, 13.604474 ], [ 144.90448, 13.60455 ], [ 144.904828, 13.604614 ], [ 144.905106, 13.604666 ], [ 144.90518, 13.60468 ], [ 144.905478, 13.60473 ], [ 144.90559, 13.60475 ], [ 144.90598, 13.60487 ], [ 144.90628, 13.60497 ], [ 144.906569, 13.605027 ], [ 144.90694, 13.6051 ], [ 144.907099, 13.605157 ], [ 144.907576, 13.605329 ], [ 144.907735, 13.605387 ], [ 144.907852, 13.605316 ], [ 144.908005, 13.60526 ], [ 144.908127, 13.60518 ], [ 144.908229, 13.605153 ], [ 144.908325, 13.605219 ], [ 144.908371, 13.605239 ], [ 144.908539, 13.605216 ], [ 144.908691, 13.605156 ], [ 144.908753, 13.605135 ], [ 144.908844, 13.605104 ], [ 144.908981, 13.605077 ], [ 144.909103, 13.605044 ], [ 144.909158, 13.60499 ], [ 144.909189, 13.604958 ], [ 144.909256, 13.60494 ], [ 144.909363, 13.604903 ], [ 144.90947, 13.604861 ], [ 144.909561, 13.60479 ], [ 144.909912, 13.604692 ], [ 144.909958, 13.604698 ], [ 144.910019, 13.604736 ], [ 144.91008, 13.604723 ], [ 144.910278, 13.604595 ], [ 144.910355, 13.604567 ], [ 144.910416, 13.604553 ], [ 144.91045, 13.604564 ], [ 144.910492, 13.604578 ], [ 144.910553, 13.604597 ], [ 144.91066, 13.604584 ], [ 144.910767, 13.604546 ], [ 144.910843, 13.604519 ], [ 144.910858, 13.604485 ], [ 144.910919, 13.604438 ], [ 144.910995, 13.604438 ], [ 144.911179, 13.604387 ], [ 144.911301, 13.60435 ], [ 144.911377, 13.604293 ], [ 144.911407, 13.60426 ], [ 144.911484, 13.604227 ], [ 144.91156, 13.604218 ], [ 144.911606, 13.604243 ], [ 144.911728, 13.604258 ], [ 144.911804, 13.604264 ], [ 144.911911, 13.604217 ], [ 144.912079, 13.604122 ], [ 144.91214, 13.604046 ], [ 144.912214, 13.603983 ], [ 144.912317, 13.603958 ], [ 144.91243, 13.603925 ], [ 144.912521, 13.603925 ], [ 144.912643, 13.603993 ], [ 144.91272, 13.604027 ], [ 144.912796, 13.604018 ], [ 144.912827, 13.603985 ], [ 144.912842, 13.603909 ], [ 144.912842, 13.603832 ], [ 144.912888, 13.60378 ], [ 144.912994, 13.603695 ], [ 144.913239, 13.603587 ], [ 144.913345, 13.603588 ], [ 144.913437, 13.60355 ], [ 144.913498, 13.603479 ], [ 144.913712, 13.603423 ], [ 144.913834, 13.603362 ], [ 144.913887, 13.603325 ], [ 144.913985, 13.603305 ], [ 144.914063, 13.603269 ], [ 144.914154, 13.603265 ], [ 144.914213, 13.603193 ], [ 144.914474, 13.603019 ], [ 144.914597, 13.602962 ], [ 144.914718, 13.602937 ], [ 144.914871, 13.602898 ], [ 144.915024, 13.602899 ], [ 144.915085, 13.602895 ], [ 144.915131, 13.602862 ], [ 144.915207, 13.602819 ], [ 144.915314, 13.602772 ], [ 144.915466, 13.602721 ], [ 144.915573, 13.602693 ], [ 144.91571, 13.602675 ], [ 144.915817, 13.602671 ], [ 144.915909, 13.602696 ], [ 144.915939, 13.602725 ], [ 144.916046, 13.602774 ], [ 144.916153, 13.60277 ], [ 144.916229, 13.602727 ], [ 144.91626, 13.60268 ], [ 144.916297, 13.602672 ], [ 144.916428, 13.602652 ], [ 144.916489, 13.602615 ], [ 144.91655, 13.602567 ], [ 144.916611, 13.60253 ], [ 144.916718, 13.602502 ], [ 144.916794, 13.602531 ], [ 144.91684, 13.60257 ], [ 144.916934, 13.602531 ], [ 144.917007, 13.602471 ], [ 144.917114, 13.602424 ], [ 144.917297, 13.602435 ], [ 144.917313, 13.602447 ], [ 144.917343, 13.602464 ], [ 144.917419, 13.602402 ], [ 144.917465, 13.602369 ], [ 144.917542, 13.602365 ], [ 144.917679, 13.602366 ], [ 144.91777, 13.602324 ], [ 144.917969, 13.602278 ], [ 144.918091, 13.602231 ], [ 144.918182, 13.602203 ], [ 144.918304, 13.602137 ], [ 144.918411, 13.602071 ], [ 144.918488, 13.602048 ], [ 144.91864, 13.602045 ], [ 144.918762, 13.60206 ], [ 144.918869, 13.602046 ], [ 144.918993, 13.602028 ], [ 144.919083, 13.601976 ], [ 144.919174, 13.601925 ], [ 144.919266, 13.601897 ], [ 144.919357, 13.601883 ], [ 144.919509, 13.601895 ], [ 144.919617, 13.601847 ], [ 144.919754, 13.601805 ], [ 144.919815, 13.601834 ], [ 144.919952, 13.601793 ], [ 144.92009, 13.601746 ], [ 144.920362, 13.601687 ], [ 144.920456, 13.601668 ], [ 144.920715, 13.601636 ], [ 144.920924, 13.601565 ], [ 144.921158, 13.601535 ], [ 144.921387, 13.601479 ], [ 144.921768, 13.601401 ], [ 144.921875, 13.601359 ], [ 144.922012, 13.601288 ], [ 144.922157, 13.601272 ], [ 144.922203, 13.601275 ], [ 144.922318, 13.601281 ], [ 144.92244, 13.601249 ], [ 144.922455, 13.60122 ], [ 144.922501, 13.601178 ], [ 144.922562, 13.601164 ], [ 144.922623, 13.601179 ], [ 144.922684, 13.601174 ], [ 144.922738, 13.601158 ], [ 144.922803, 13.601122 ], [ 144.922852, 13.601071 ], [ 144.922882, 13.601014 ], [ 144.922928, 13.600942 ], [ 144.923004, 13.60089 ], [ 144.923187, 13.600825 ], [ 144.923309, 13.600831 ], [ 144.923386, 13.600855 ], [ 144.923462, 13.600904 ], [ 144.923508, 13.600909 ], [ 144.923767, 13.600868 ], [ 144.923901, 13.600844 ], [ 144.923947, 13.600835 ], [ 144.924011, 13.600808 ], [ 144.924042, 13.600746 ], [ 144.924042, 13.6007 ], [ 144.924149, 13.600656 ], [ 144.92421, 13.600642 ], [ 144.924255, 13.600666 ], [ 144.924286, 13.600714 ], [ 144.924332, 13.600734 ], [ 144.924464, 13.600733 ], [ 144.924561, 13.600731 ], [ 144.924637, 13.600665 ], [ 144.924667, 13.600622 ], [ 144.924713, 13.600608 ], [ 144.924756, 13.600648 ], [ 144.92482, 13.600676 ], [ 144.924896, 13.600676 ], [ 144.924957, 13.600644 ], [ 144.925003, 13.600572 ], [ 144.925064, 13.600477 ], [ 144.925125, 13.600454 ], [ 144.925201, 13.600493 ], [ 144.925262, 13.600493 ], [ 144.925323, 13.60045 ], [ 144.925415, 13.600403 ], [ 144.925507, 13.60038 ], [ 144.925613, 13.6004 ], [ 144.925658, 13.600498 ], [ 144.92569, 13.600564 ], [ 144.925797, 13.600593 ], [ 144.925858, 13.60057 ], [ 144.925888, 13.600498 ], [ 144.925919, 13.600412 ], [ 144.925964, 13.600365 ], [ 144.926071, 13.600337 ], [ 144.926163, 13.600352 ], [ 144.926236, 13.600385 ], [ 144.926346, 13.600363 ], [ 144.926453, 13.600307 ], [ 144.926514, 13.600255 ], [ 144.926697, 13.600151 ], [ 144.927002, 13.600087 ], [ 144.927124, 13.60003 ], [ 144.927261, 13.600055 ], [ 144.927517, 13.600056 ], [ 144.927658, 13.600078 ], [ 144.927811, 13.600084 ], [ 144.927933, 13.600018 ], [ 144.928009, 13.600042 ], [ 144.92807, 13.600076 ], [ 144.928207, 13.600078 ], [ 144.928284, 13.600102 ], [ 144.928314, 13.600174 ], [ 144.928391, 13.600232 ], [ 144.928467, 13.600257 ], [ 144.928528, 13.600229 ], [ 144.928589, 13.600239 ], [ 144.92868, 13.600273 ], [ 144.928772, 13.600312 ], [ 144.928833, 13.600351 ], [ 144.92887, 13.600374 ], [ 144.928955, 13.600409 ], [ 144.929062, 13.600419 ], [ 144.929169, 13.600425 ], [ 144.929276, 13.600402 ], [ 144.929337, 13.600374 ], [ 144.929398, 13.600317 ], [ 144.92942, 13.600303 ], [ 144.92955, 13.600371 ], [ 144.929626, 13.600424 ], [ 144.929688, 13.600425 ], [ 144.929718, 13.600458 ], [ 144.929703, 13.600525 ], [ 144.929779, 13.600598 ], [ 144.929855, 13.60066 ], [ 144.929952, 13.600737 ], [ 144.930008, 13.600772 ], [ 144.930084, 13.600772 ], [ 144.93013, 13.600744 ], [ 144.930176, 13.600744 ], [ 144.930237, 13.600817 ], [ 144.930298, 13.600889 ], [ 144.930344, 13.600961 ], [ 144.930435, 13.601005 ], [ 144.930596, 13.601102 ], [ 144.930695, 13.601126 ], [ 144.93074, 13.601179 ], [ 144.930847, 13.601195 ], [ 144.930923, 13.601224 ], [ 144.930954, 13.601219 ], [ 144.931, 13.601201 ], [ 144.931061, 13.601211 ], [ 144.931183, 13.601298 ], [ 144.931187, 13.601309 ], [ 144.931213, 13.60136 ], [ 144.931259, 13.601404 ], [ 144.931305, 13.601471 ], [ 144.93129, 13.601528 ], [ 144.931351, 13.601562 ], [ 144.931488, 13.601664 ], [ 144.931549, 13.601645 ], [ 144.93158, 13.601593 ], [ 144.931595, 13.601564 ], [ 144.931647, 13.601544 ], [ 144.931732, 13.601542 ], [ 144.931854, 13.601566 ], [ 144.9319, 13.601572 ], [ 144.931942, 13.601537 ], [ 144.931946, 13.60151 ], [ 144.931976, 13.601472 ], [ 144.932022, 13.601439 ], [ 144.932114, 13.60142 ], [ 144.93219, 13.601407 ], [ 144.932251, 13.601412 ], [ 144.932327, 13.601384 ], [ 144.9324, 13.601383 ], [ 144.93243, 13.601373 ], [ 144.93248, 13.601356 ], [ 144.932526, 13.601328 ], [ 144.932602, 13.601305 ], [ 144.932755, 13.60122 ], [ 144.93277, 13.601196 ], [ 144.932831, 13.601197 ], [ 144.932877, 13.601221 ], [ 144.932938, 13.601226 ], [ 144.933014, 13.601217 ], [ 144.933105, 13.601194 ], [ 144.933151, 13.601171 ], [ 144.933228, 13.601162 ], [ 144.933304, 13.601143 ], [ 144.933397, 13.601176 ], [ 144.933472, 13.601183 ], [ 144.933609, 13.601117 ], [ 144.93367, 13.601099 ], [ 144.933731, 13.601113 ], [ 144.933777, 13.601123 ], [ 144.933807, 13.601124 ], [ 144.933838, 13.60109 ], [ 144.933884, 13.601062 ], [ 144.933929, 13.601048 ], [ 144.93399, 13.601068 ], [ 144.934021, 13.601087 ], [ 144.934082, 13.601092 ], [ 144.934113, 13.601064 ], [ 144.934158, 13.601036 ], [ 144.934204, 13.601022 ], [ 144.934235, 13.60106 ], [ 144.93428, 13.601075 ], [ 144.934341, 13.601066 ], [ 144.934418, 13.601043 ], [ 144.93446, 13.601041 ], [ 144.934509, 13.601039 ], [ 144.934586, 13.600982 ], [ 144.934647, 13.60093 ], [ 144.934647, 13.600891 ], [ 144.934647, 13.600844 ], [ 144.934658, 13.600818 ], [ 144.93483, 13.60074 ], [ 144.934891, 13.60074 ], [ 144.934906, 13.600764 ], [ 144.934891, 13.600807 ], [ 144.934937, 13.600813 ], [ 144.935013, 13.600775 ], [ 144.935074, 13.600699 ], [ 144.93512, 13.60068 ], [ 144.935196, 13.600705 ], [ 144.935303, 13.600696 ], [ 144.935349, 13.600658 ], [ 144.935318, 13.600634 ], [ 144.935292, 13.600533 ], [ 144.935287, 13.600505 ], [ 144.935333, 13.6004 ], [ 144.935349, 13.600381 ], [ 144.935379, 13.600405 ], [ 144.935455, 13.600406 ], [ 144.935494, 13.600378 ], [ 144.935516, 13.60032 ], [ 144.935547, 13.600258 ], [ 144.935638, 13.600206 ], [ 144.935715, 13.600193 ], [ 144.935776, 13.600284 ], [ 144.935852, 13.600313 ], [ 144.935928, 13.600309 ], [ 144.935944, 13.600371 ], [ 144.935974, 13.600434 ], [ 144.936035, 13.600444 ], [ 144.936081, 13.600435 ], [ 144.936142, 13.600421 ], [ 144.936172, 13.600445 ], [ 144.936249, 13.600484 ], [ 144.93631, 13.60048 ], [ 144.936386, 13.600432 ], [ 144.936447, 13.600414 ], [ 144.936523, 13.60041 ], [ 144.9366, 13.600386 ], [ 144.936676, 13.600377 ], [ 144.936722, 13.600349 ], [ 144.936722, 13.600316 ], [ 144.936737, 13.600273 ], [ 144.936758, 13.600236 ], [ 144.936829, 13.600192 ], [ 144.936905, 13.600164 ], [ 144.936988, 13.600152 ], [ 144.937042, 13.600165 ], [ 144.937088, 13.600261 ], [ 144.937103, 13.600319 ], [ 144.937149, 13.600329 ], [ 144.937195, 13.600315 ], [ 144.937241, 13.600306 ], [ 144.937286, 13.600316 ], [ 144.937347, 13.600383 ], [ 144.937408, 13.600398 ], [ 144.937622, 13.600376 ], [ 144.937637, 13.600314 ], [ 144.937637, 13.60028 ], [ 144.937698, 13.600295 ], [ 144.937744, 13.6003 ], [ 144.937866, 13.600282 ], [ 144.937897, 13.600244 ], [ 144.937973, 13.600206 ], [ 144.938004, 13.600216 ], [ 144.938004, 13.600264 ], [ 144.938033, 13.600279 ], [ 144.938095, 13.600294 ], [ 144.938171, 13.600294 ], [ 144.938197, 13.600284 ], [ 144.938232, 13.600328 ], [ 144.938248, 13.600371 ], [ 144.938354, 13.600353 ], [ 144.938385, 13.60033 ], [ 144.9384, 13.600291 ], [ 144.9384, 13.600239 ], [ 144.938385, 13.60021 ], [ 144.938416, 13.600172 ], [ 144.938431, 13.600134 ], [ 144.938507, 13.600115 ], [ 144.938553, 13.600092 ], [ 144.938592, 13.600126 ], [ 144.938629, 13.600169 ], [ 144.938614, 13.600221 ], [ 144.93866, 13.600246 ], [ 144.938751, 13.600242 ], [ 144.938782, 13.600228 ], [ 144.938797, 13.600194 ], [ 144.938843, 13.600166 ], [ 144.938858, 13.600209 ], [ 144.938889, 13.600252 ], [ 144.93895, 13.600258 ], [ 144.938995, 13.600224 ], [ 144.939041, 13.600201 ], [ 144.939117, 13.600159 ], [ 144.939178, 13.600164 ], [ 144.939148, 13.600202 ], [ 144.939117, 13.600264 ], [ 144.939178, 13.600336 ], [ 144.93924, 13.600394 ], [ 144.939346, 13.600433 ], [ 144.939423, 13.600434 ], [ 144.939499, 13.600396 ], [ 144.93959, 13.600382 ], [ 144.939682, 13.600398 ], [ 144.939774, 13.60047 ], [ 144.939835, 13.600475 ], [ 144.939896, 13.600485 ], [ 144.939903, 13.600502 ], [ 144.939926, 13.600567 ], [ 144.939957, 13.600634 ], [ 144.940048, 13.600664 ], [ 144.94014, 13.600626 ], [ 144.940216, 13.600569 ], [ 144.940292, 13.600565 ], [ 144.940338, 13.600623 ], [ 144.940414, 13.600671 ], [ 144.94046, 13.600638 ], [ 144.940536, 13.600596 ], [ 144.940659, 13.600568 ], [ 144.940822, 13.60057 ], [ 144.940948, 13.600542 ], [ 144.941086, 13.600505 ], [ 144.941214, 13.600501 ], [ 144.941368, 13.600484 ], [ 144.941513, 13.600432 ], [ 144.94157, 13.600424 ], [ 144.941665, 13.60041 ], [ 144.941779, 13.60037 ], [ 144.94194, 13.600354 ], [ 144.942047, 13.600374 ], [ 144.942078, 13.600408 ], [ 144.942139, 13.60036 ], [ 144.942245, 13.600347 ], [ 144.942368, 13.600343 ], [ 144.942486, 13.600291 ], [ 144.942596, 13.600259 ], [ 144.942719, 13.600227 ], [ 144.942841, 13.600213 ], [ 144.942868, 13.600236 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "950200", "GEOID10": "66010950200", "NAME10": "9502", "NAMELSAD10": "Census Tract 9502", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 29029306, "AWATER10": 0, "INTPTLAT10": "+13.6063589", "INTPTLON10": "+144.8867115" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.896741, 13.572451 ], [ 144.89654, 13.57298 ], [ 144.89641, 13.57324 ], [ 144.89632, 13.57338 ], [ 144.89625, 13.57349 ], [ 144.896204, 13.573555 ], [ 144.89596, 13.57391 ], [ 144.89539, 13.57471 ], [ 144.89466, 13.5757 ], [ 144.894521, 13.575891 ], [ 144.8937, 13.57703 ], [ 144.893229, 13.577671 ], [ 144.89287, 13.57816 ], [ 144.89251, 13.57866 ], [ 144.89214, 13.57913 ], [ 144.89181, 13.57953 ], [ 144.89101, 13.58044 ], [ 144.889952, 13.581632 ], [ 144.88976, 13.58185 ], [ 144.88947, 13.58219 ], [ 144.88918, 13.58246 ], [ 144.88887, 13.58266 ], [ 144.88867, 13.5828 ], [ 144.88843, 13.58292 ], [ 144.88802, 13.58306 ], [ 144.887383, 13.583217 ], [ 144.88713, 13.58328 ], [ 144.885801, 13.583614 ], [ 144.885475, 13.583697 ], [ 144.88511, 13.58379 ], [ 144.884838, 13.583853 ], [ 144.884763, 13.58387 ], [ 144.884538, 13.583922 ], [ 144.884464, 13.58394 ], [ 144.884399, 13.583954 ], [ 144.884207, 13.583999 ], [ 144.884143, 13.584014 ], [ 144.883974, 13.584052 ], [ 144.883468, 13.58417 ], [ 144.8833, 13.58421 ], [ 144.882841, 13.58432 ], [ 144.88193, 13.58454 ], [ 144.881467, 13.584655 ], [ 144.881376, 13.584677 ], [ 144.88101, 13.58477 ], [ 144.880668, 13.584854 ], [ 144.879642, 13.585106 ], [ 144.8793, 13.58519 ], [ 144.879122, 13.585236 ], [ 144.878588, 13.585374 ], [ 144.87841, 13.58542 ], [ 144.878078, 13.585463 ], [ 144.87795, 13.58548 ], [ 144.87767, 13.58549 ], [ 144.87739, 13.58547 ], [ 144.877084, 13.585414 ], [ 144.876756, 13.585355 ], [ 144.876652, 13.585336 ], [ 144.876341, 13.58528 ], [ 144.876238, 13.585262 ], [ 144.87623, 13.58526 ], [ 144.87616, 13.585245 ], [ 144.875927, 13.585196 ], [ 144.87585, 13.58518 ], [ 144.875705, 13.58515 ], [ 144.875271, 13.585061 ], [ 144.875127, 13.585032 ], [ 144.87507, 13.58502 ], [ 144.874885, 13.58499 ], [ 144.8745, 13.58493 ], [ 144.8742, 13.58491 ], [ 144.874155, 13.584911 ], [ 144.87391, 13.58492 ], [ 144.873644, 13.58496 ], [ 144.87358, 13.58497 ], [ 144.87338, 13.58501 ], [ 144.87311, 13.58507 ], [ 144.872877, 13.585183 ], [ 144.87276, 13.58524 ], [ 144.872643, 13.585313 ], [ 144.872284, 13.585535 ], [ 144.87181, 13.58583 ], [ 144.87067, 13.59199 ], [ 144.868956, 13.602025 ], [ 144.868253, 13.608894 ], [ 144.868046, 13.610918 ], [ 144.867746, 13.613185 ], [ 144.867458, 13.61426 ], [ 144.866429, 13.618368 ], [ 144.86507, 13.623795 ], [ 144.862594, 13.638081 ], [ 144.862374, 13.639276 ], [ 144.862037, 13.641041 ], [ 144.860494, 13.65013 ], [ 144.860421, 13.650561 ], [ 144.86026, 13.65235 ], [ 144.859769, 13.654384 ], [ 144.859858, 13.654351 ], [ 144.859956, 13.654304 ], [ 144.86002, 13.654262 ], [ 144.860088, 13.654243 ], [ 144.860154, 13.654236 ], [ 144.86025, 13.654245 ], [ 144.860328, 13.654265 ], [ 144.860605, 13.654181 ], [ 144.860771, 13.654163 ], [ 144.860879, 13.654164 ], [ 144.861314, 13.654134 ], [ 144.861456, 13.65414 ], [ 144.861627, 13.654137 ], [ 144.861754, 13.654176 ], [ 144.861905, 13.654187 ], [ 144.86236, 13.654206 ], [ 144.862487, 13.654188 ], [ 144.862571, 13.654145 ], [ 144.862661, 13.654132 ], [ 144.862764, 13.654128 ], [ 144.862847, 13.654152 ], [ 144.863048, 13.65413 ], [ 144.863091, 13.654159 ], [ 144.863229, 13.654146 ], [ 144.863322, 13.654133 ], [ 144.863385, 13.654095 ], [ 144.863488, 13.654067 ], [ 144.863625, 13.654049 ], [ 144.863777, 13.654041 ], [ 144.863851, 13.654027 ], [ 144.86391, 13.653989 ], [ 144.864003, 13.653971 ], [ 144.864218, 13.653906 ], [ 144.86435, 13.653902 ], [ 144.864444, 13.65387 ], [ 144.864532, 13.653846 ], [ 144.864566, 13.653813 ], [ 144.864601, 13.653794 ], [ 144.864684, 13.653786 ], [ 144.86475, 13.653772 ], [ 144.864814, 13.653763 ], [ 144.86499, 13.653707 ], [ 144.865034, 13.653731 ], [ 144.865083, 13.653732 ], [ 144.865108, 13.653708 ], [ 144.865137, 13.653693 ], [ 144.865157, 13.653684 ], [ 144.86522, 13.65369 ], [ 144.865274, 13.653676 ], [ 144.865314, 13.653643 ], [ 144.865372, 13.653629 ], [ 144.865519, 13.653616 ], [ 144.865598, 13.653588 ], [ 144.865721, 13.653498 ], [ 144.865789, 13.653494 ], [ 144.865833, 13.653513 ], [ 144.865867, 13.653518 ], [ 144.865921, 13.653485 ], [ 144.865941, 13.653433 ], [ 144.865976, 13.6534 ], [ 144.866084, 13.653348 ], [ 144.866172, 13.653335 ], [ 144.866329, 13.653326 ], [ 144.866373, 13.653317 ], [ 144.866398, 13.653274 ], [ 144.866432, 13.653256 ], [ 144.866491, 13.653256 ], [ 144.866574, 13.653242 ], [ 144.866618, 13.653214 ], [ 144.866702, 13.653191 ], [ 144.866729, 13.653172 ], [ 144.866768, 13.653168 ], [ 144.866826, 13.653178 ], [ 144.86687, 13.653173 ], [ 144.8669, 13.65315 ], [ 144.866959, 13.653145 ], [ 144.867003, 13.653127 ], [ 144.867057, 13.653089 ], [ 144.867091, 13.653089 ], [ 144.867288, 13.653009 ], [ 144.867356, 13.652991 ], [ 144.867347, 13.652962 ], [ 144.867528, 13.652878 ], [ 144.867685, 13.652841 ], [ 144.867764, 13.652813 ], [ 144.867867, 13.652747 ], [ 144.867965, 13.652704 ], [ 144.868093, 13.652663 ], [ 144.86825, 13.652602 ], [ 144.868485, 13.652489 ], [ 144.868638, 13.652404 ], [ 144.868797, 13.652329 ], [ 144.868871, 13.652287 ], [ 144.868945, 13.652239 ], [ 144.869092, 13.652174 ], [ 144.869161, 13.652122 ], [ 144.8692, 13.652113 ], [ 144.869294, 13.652051 ], [ 144.869436, 13.651966 ], [ 144.86954, 13.651886 ], [ 144.869643, 13.651829 ], [ 144.86985, 13.651654 ], [ 144.869928, 13.651626 ], [ 144.870022, 13.651574 ], [ 144.870071, 13.651537 ], [ 144.87014, 13.651451 ], [ 144.870194, 13.651399 ], [ 144.870322, 13.651319 ], [ 144.870376, 13.651262 ], [ 144.870436, 13.651219 ], [ 144.870475, 13.651158 ], [ 144.870544, 13.651072 ], [ 144.870717, 13.650925 ], [ 144.870793, 13.650878 ], [ 144.870838, 13.650826 ], [ 144.870916, 13.650769 ], [ 144.870975, 13.650751 ], [ 144.871039, 13.650746 ], [ 144.871073, 13.650737 ], [ 144.871097, 13.650756 ], [ 144.871122, 13.650766 ], [ 144.871176, 13.650762 ], [ 144.87121, 13.650738 ], [ 144.87122, 13.6507 ], [ 144.871235, 13.650686 ], [ 144.871274, 13.650686 ], [ 144.871289, 13.650667 ], [ 144.871338, 13.650648 ], [ 144.871343, 13.650601 ], [ 144.871329, 13.650558 ], [ 144.871369, 13.650505 ], [ 144.871423, 13.650463 ], [ 144.871467, 13.650415 ], [ 144.871595, 13.650311 ], [ 144.871654, 13.650302 ], [ 144.871713, 13.650288 ], [ 144.871762, 13.650255 ], [ 144.871797, 13.650212 ], [ 144.87189, 13.650151 ], [ 144.871949, 13.650089 ], [ 144.872008, 13.650052 ], [ 144.872156, 13.649943 ], [ 144.872205, 13.649896 ], [ 144.872323, 13.64982 ], [ 144.872387, 13.649806 ], [ 144.872558, 13.64987 ], [ 144.872621, 13.649861 ], [ 144.872666, 13.649799 ], [ 144.872696, 13.649742 ], [ 144.87275, 13.649656 ], [ 144.872802, 13.649623 ], [ 144.872886, 13.649548 ], [ 144.873013, 13.649482 ], [ 144.873107, 13.649401 ], [ 144.873176, 13.649335 ], [ 144.873206, 13.649249 ], [ 144.873251, 13.649192 ], [ 144.873315, 13.649154 ], [ 144.873364, 13.649112 ], [ 144.873541, 13.649018 ], [ 144.873551, 13.648965 ], [ 144.873561, 13.648936 ], [ 144.873709, 13.648823 ], [ 144.873758, 13.64878 ], [ 144.873828, 13.648657 ], [ 144.873867, 13.6486 ], [ 144.873976, 13.64851 ], [ 144.87403, 13.648472 ], [ 144.874098, 13.648444 ], [ 144.874158, 13.648377 ], [ 144.874202, 13.648359 ], [ 144.874261, 13.64835 ], [ 144.87432, 13.648326 ], [ 144.87447, 13.648165 ], [ 144.874534, 13.648103 ], [ 144.874593, 13.648061 ], [ 144.874687, 13.648004 ], [ 144.874741, 13.647938 ], [ 144.874894, 13.647839 ], [ 144.874923, 13.647801 ], [ 144.875046, 13.64772 ], [ 144.875086, 13.647682 ], [ 144.87513, 13.647688 ], [ 144.87513, 13.647649 ], [ 144.875189, 13.647616 ], [ 144.875223, 13.647617 ], [ 144.875272, 13.647607 ], [ 144.875341, 13.647565 ], [ 144.8754, 13.647551 ], [ 144.875449, 13.647556 ], [ 144.875449, 13.647485 ], [ 144.875503, 13.647456 ], [ 144.875533, 13.647418 ], [ 144.875582, 13.647366 ], [ 144.875626, 13.647352 ], [ 144.875636, 13.6474 ], [ 144.87568, 13.647396 ], [ 144.875705, 13.647339 ], [ 144.875749, 13.647363 ], [ 144.875748, 13.647392 ], [ 144.875797, 13.647411 ], [ 144.87584, 13.647378 ], [ 144.875881, 13.64742 ], [ 144.87593, 13.64742 ], [ 144.875955, 13.647382 ], [ 144.875956, 13.647339 ], [ 144.87597, 13.647316 ], [ 144.876, 13.647311 ], [ 144.876034, 13.647321 ], [ 144.876083, 13.647293 ], [ 144.876108, 13.647255 ], [ 144.876176, 13.647279 ], [ 144.87623, 13.647241 ], [ 144.87626, 13.647227 ], [ 144.876299, 13.647232 ], [ 144.876362, 13.647214 ], [ 144.876431, 13.647162 ], [ 144.876451, 13.647124 ], [ 144.876461, 13.647081 ], [ 144.876481, 13.647047 ], [ 144.876535, 13.647057 ], [ 144.876589, 13.647044 ], [ 144.876628, 13.64701 ], [ 144.876697, 13.646973 ], [ 144.876746, 13.646935 ], [ 144.876815, 13.646926 ], [ 144.876835, 13.646888 ], [ 144.876864, 13.646859 ], [ 144.876904, 13.646836 ], [ 144.876958, 13.646836 ], [ 144.877017, 13.646755 ], [ 144.876978, 13.646698 ], [ 144.877037, 13.646689 ], [ 144.877086, 13.646689 ], [ 144.877125, 13.646694 ], [ 144.877189, 13.64669 ], [ 144.877228, 13.646671 ], [ 144.877238, 13.646647 ], [ 144.877228, 13.646609 ], [ 144.877288, 13.646557 ], [ 144.877307, 13.646591 ], [ 144.877356, 13.64662 ], [ 144.87738, 13.646606 ], [ 144.877395, 13.646582 ], [ 144.877469, 13.646558 ], [ 144.877508, 13.646559 ], [ 144.877518, 13.646525 ], [ 144.877562, 13.646507 ], [ 144.877576, 13.646526 ], [ 144.877621, 13.646512 ], [ 144.87765, 13.64646 ], [ 144.877663, 13.646421 ], [ 144.877678, 13.646393 ], [ 144.877712, 13.64636 ], [ 144.877727, 13.646331 ], [ 144.877757, 13.646303 ], [ 144.877796, 13.646279 ], [ 144.877825, 13.646299 ], [ 144.877869, 13.646318 ], [ 144.877894, 13.64628 ], [ 144.877899, 13.646227 ], [ 144.877924, 13.646175 ], [ 144.877978, 13.646137 ], [ 144.878037, 13.646133 ], [ 144.878081, 13.646138 ], [ 144.878111, 13.646114 ], [ 144.878116, 13.646052 ], [ 144.878131, 13.646033 ], [ 144.87817, 13.646029 ], [ 144.878214, 13.646034 ], [ 144.878253, 13.646006 ], [ 144.878298, 13.645992 ], [ 144.878386, 13.645945 ], [ 144.878425, 13.645916 ], [ 144.87844, 13.645878 ], [ 144.87846, 13.64585 ], [ 144.878514, 13.645817 ], [ 144.878598, 13.645789 ], [ 144.878642, 13.645746 ], [ 144.878662, 13.645703 ], [ 144.878686, 13.645722 ], [ 144.87874, 13.645733 ], [ 144.878799, 13.645733 ], [ 144.878814, 13.6457 ], [ 144.878804, 13.645671 ], [ 144.878824, 13.645623 ], [ 144.878859, 13.645585 ], [ 144.878873, 13.645562 ], [ 144.878874, 13.645528 ], [ 144.878889, 13.645499 ], [ 144.878943, 13.645452 ], [ 144.878992, 13.645438 ], [ 144.879041, 13.645429 ], [ 144.879056, 13.645367 ], [ 144.879057, 13.645305 ], [ 144.879072, 13.645252 ], [ 144.879106, 13.645205 ], [ 144.87919, 13.645206 ], [ 144.879408, 13.645164 ], [ 144.879442, 13.645126 ], [ 144.879443, 13.645069 ], [ 144.879428, 13.645031 ], [ 144.879389, 13.645002 ], [ 144.879385, 13.644959 ], [ 144.879419, 13.644935 ], [ 144.879449, 13.644935 ], [ 144.879478, 13.644921 ], [ 144.879493, 13.644878 ], [ 144.879523, 13.644845 ], [ 144.879538, 13.644797 ], [ 144.879656, 13.64477 ], [ 144.879675, 13.644732 ], [ 144.87972, 13.644713 ], [ 144.879769, 13.644699 ], [ 144.879813, 13.644704 ], [ 144.879876, 13.6447 ], [ 144.87992, 13.644686 ], [ 144.879925, 13.644662 ], [ 144.879911, 13.644643 ], [ 144.879892, 13.644604 ], [ 144.879911, 13.644585 ], [ 144.879917, 13.644566 ], [ 144.879912, 13.644518 ], [ 144.879942, 13.644485 ], [ 144.879952, 13.644457 ], [ 144.880011, 13.644385 ], [ 144.880055, 13.644371 ], [ 144.880089, 13.644381 ], [ 144.880109, 13.644405 ], [ 144.880138, 13.644396 ], [ 144.880148, 13.644367 ], [ 144.880163, 13.644344 ], [ 144.880188, 13.644334 ], [ 144.880212, 13.644354 ], [ 144.880226, 13.644373 ], [ 144.88026, 13.644378 ], [ 144.880305, 13.644307 ], [ 144.880296, 13.644283 ], [ 144.88031, 13.644264 ], [ 144.88035, 13.644245 ], [ 144.880355, 13.644226 ], [ 144.880345, 13.644173 ], [ 144.880351, 13.644135 ], [ 144.880385, 13.64413 ], [ 144.880414, 13.644131 ], [ 144.880424, 13.644115 ], [ 144.880429, 13.644092 ], [ 144.880444, 13.644069 ], [ 144.880474, 13.644055 ], [ 144.880513, 13.644055 ], [ 144.880527, 13.644043 ], [ 144.880542, 13.644012 ], [ 144.880596, 13.644003 ], [ 144.880616, 13.643979 ], [ 144.880602, 13.643936 ], [ 144.880582, 13.643922 ], [ 144.880615, 13.643874 ], [ 144.880708, 13.643784 ], [ 144.880906, 13.64357 ], [ 144.880965, 13.643494 ], [ 144.881088, 13.643376 ], [ 144.881148, 13.643266 ], [ 144.881316, 13.643101 ], [ 144.881328, 13.643095 ], [ 144.881385, 13.643068 ], [ 144.881449, 13.643006 ], [ 144.881518, 13.642916 ], [ 144.881597, 13.642835 ], [ 144.88175, 13.642636 ], [ 144.881837, 13.642502 ], [ 144.88195, 13.642398 ], [ 144.882197, 13.642109 ], [ 144.882233, 13.642018 ], [ 144.882341, 13.64189 ], [ 144.88243, 13.641795 ], [ 144.882519, 13.641691 ], [ 144.882608, 13.641577 ], [ 144.882673, 13.641467 ], [ 144.882781, 13.641344 ], [ 144.882882, 13.641209 ], [ 144.882883, 13.641189 ], [ 144.882922, 13.641142 ], [ 144.882997, 13.641018 ], [ 144.883061, 13.640928 ], [ 144.88312, 13.640871 ], [ 144.88316, 13.640785 ], [ 144.883186, 13.640694 ], [ 144.883319, 13.640519 ], [ 144.883418, 13.640414 ], [ 144.883507, 13.6403 ], [ 144.883616, 13.640172 ], [ 144.883705, 13.64001 ], [ 144.883859, 13.639796 ], [ 144.883938, 13.639706 ], [ 144.884002, 13.639606 ], [ 144.884113, 13.639469 ], [ 144.884178, 13.639359 ], [ 144.884262, 13.639269 ], [ 144.884326, 13.639183 ], [ 144.884371, 13.639107 ], [ 144.884396, 13.639026 ], [ 144.884411, 13.63895 ], [ 144.884475, 13.638893 ], [ 144.884535, 13.638784 ], [ 144.884619, 13.63867 ], [ 144.884728, 13.63857 ], [ 144.884802, 13.638508 ], [ 144.884905, 13.63839 ], [ 144.884985, 13.638271 ], [ 144.885088, 13.638167 ], [ 144.885195, 13.638015 ], [ 144.885333, 13.637848 ], [ 144.885422, 13.637734 ], [ 144.885536, 13.637577 ], [ 144.885669, 13.637426 ], [ 144.885702, 13.637384 ], [ 144.885877, 13.63716 ], [ 144.886055, 13.636898 ], [ 144.886139, 13.636784 ], [ 144.886206, 13.636703 ], [ 144.886222, 13.636598 ], [ 144.886355, 13.636422 ], [ 144.88645, 13.636285 ], [ 144.886553, 13.636161 ], [ 144.886608, 13.636056 ], [ 144.886628, 13.635985 ], [ 144.886707, 13.63589 ], [ 144.886771, 13.635833 ], [ 144.886801, 13.635824 ], [ 144.886806, 13.635757 ], [ 144.886851, 13.635671 ], [ 144.886935, 13.635538 ], [ 144.887019, 13.635443 ], [ 144.887101, 13.635372 ], [ 144.887135, 13.63532 ], [ 144.887185, 13.635263 ], [ 144.887249, 13.635211 ], [ 144.887322, 13.635192 ], [ 144.887396, 13.635097 ], [ 144.887505, 13.634998 ], [ 144.887554, 13.634958 ], [ 144.887564, 13.63495 ], [ 144.887604, 13.63486 ], [ 144.887653, 13.634798 ], [ 144.887728, 13.634617 ], [ 144.887783, 13.634536 ], [ 144.887803, 13.634479 ], [ 144.887882, 13.634374 ], [ 144.887961, 13.634294 ], [ 144.888196, 13.634009 ], [ 144.8883, 13.633876 ], [ 144.888418, 13.633673 ], [ 144.888424, 13.633656 ], [ 144.888443, 13.633662 ], [ 144.888479, 13.633547 ], [ 144.888518, 13.633476 ], [ 144.888563, 13.633409 ], [ 144.888588, 13.633343 ], [ 144.888633, 13.633281 ], [ 144.88877, 13.633177 ], [ 144.888835, 13.633101 ], [ 144.888904, 13.633011 ], [ 144.888978, 13.632882 ], [ 144.889063, 13.632759 ], [ 144.889147, 13.632621 ], [ 144.889211, 13.632506 ], [ 144.889281, 13.632335 ], [ 144.889321, 13.632268 ], [ 144.889351, 13.632173 ], [ 144.889401, 13.632068 ], [ 144.889471, 13.631968 ], [ 144.889594, 13.631855 ], [ 144.889648, 13.631769 ], [ 144.889693, 13.631683 ], [ 144.889743, 13.631602 ], [ 144.889871, 13.631446 ], [ 144.889906, 13.631369 ], [ 144.889961, 13.631289 ], [ 144.890059, 13.631179 ], [ 144.890146, 13.631099 ], [ 144.89021, 13.631023 ], [ 144.890294, 13.630894 ], [ 144.890343, 13.630842 ], [ 144.890393, 13.6308 ], [ 144.890466, 13.630767 ], [ 144.890496, 13.630748 ], [ 144.89055, 13.630701 ], [ 144.890629, 13.630606 ], [ 144.890668, 13.630587 ], [ 144.890698, 13.630549 ], [ 144.890723, 13.630487 ], [ 144.890787, 13.63043 ], [ 144.890856, 13.630392 ], [ 144.890905, 13.630335 ], [ 144.890994, 13.63025 ], [ 144.891216, 13.630013 ], [ 144.891433, 13.6298 ], [ 144.891545, 13.629662 ], [ 144.891629, 13.629543 ], [ 144.89172, 13.629439 ], [ 144.891777, 13.629401 ], [ 144.891821, 13.629353 ], [ 144.891914, 13.629311 ], [ 144.891983, 13.629293 ], [ 144.892066, 13.629284 ], [ 144.892115, 13.62927 ], [ 144.892209, 13.629213 ], [ 144.892277, 13.62918 ], [ 144.892317, 13.629152 ], [ 144.89239, 13.629124 ], [ 144.892435, 13.6291 ], [ 144.892597, 13.628963 ], [ 144.892676, 13.628916 ], [ 144.892784, 13.628835 ], [ 144.892882, 13.628769 ], [ 144.892966, 13.628703 ], [ 144.893064, 13.628651 ], [ 144.893089, 13.628623 ], [ 144.893226, 13.628576 ], [ 144.893305, 13.628539 ], [ 144.893379, 13.628477 ], [ 144.893488, 13.628335 ], [ 144.893503, 13.628273 ], [ 144.893542, 13.628225 ], [ 144.893596, 13.628197 ], [ 144.893606, 13.628183 ], [ 144.893656, 13.628121 ], [ 144.893754, 13.62805 ], [ 144.893868, 13.627917 ], [ 144.893903, 13.627817 ], [ 144.894011, 13.627746 ], [ 144.894056, 13.627699 ], [ 144.89409, 13.627641 ], [ 144.8941, 13.627594 ], [ 144.89415, 13.627556 ], [ 144.894204, 13.627542 ], [ 144.894218, 13.627528 ], [ 144.894263, 13.627466 ], [ 144.894293, 13.62738 ], [ 144.894303, 13.627309 ], [ 144.894343, 13.627261 ], [ 144.894407, 13.627204 ], [ 144.894471, 13.6272 ], [ 144.894589, 13.627134 ], [ 144.894648, 13.627072 ], [ 144.894673, 13.627006 ], [ 144.894693, 13.626968 ], [ 144.894791, 13.626858 ], [ 144.894846, 13.626811 ], [ 144.8949, 13.626754 ], [ 144.89494, 13.626668 ], [ 144.894979, 13.626611 ], [ 144.895058, 13.626545 ], [ 144.895152, 13.626493 ], [ 144.895304, 13.62637 ], [ 144.895373, 13.626294 ], [ 144.895438, 13.626233 ], [ 144.895507, 13.626161 ], [ 144.895532, 13.6261 ], [ 144.895557, 13.626018 ], [ 144.895607, 13.625941 ], [ 144.895621, 13.625919 ], [ 144.895725, 13.625786 ], [ 144.895733, 13.625768 ], [ 144.895785, 13.625657 ], [ 144.895894, 13.625519 ], [ 144.895948, 13.625438 ], [ 144.895988, 13.625367 ], [ 144.896042, 13.625291 ], [ 144.896094, 13.625242 ], [ 144.89619, 13.625154 ], [ 144.896235, 13.625084 ], [ 144.89626, 13.625044 ], [ 144.896339, 13.624959 ], [ 144.896422, 13.624892 ], [ 144.896452, 13.624835 ], [ 144.896507, 13.624778 ], [ 144.896517, 13.624702 ], [ 144.896586, 13.624621 ], [ 144.89665, 13.624569 ], [ 144.896774, 13.624436 ], [ 144.896892, 13.624342 ], [ 144.896988, 13.624247 ], [ 144.897087, 13.624157 ], [ 144.897229, 13.624072 ], [ 144.897599, 13.623712 ], [ 144.897702, 13.623636 ], [ 144.897909, 13.623432 ], [ 144.898058, 13.623261 ], [ 144.898216, 13.623095 ], [ 144.898319, 13.623005 ], [ 144.898425, 13.622901 ], [ 144.898529, 13.622811 ], [ 144.898617, 13.622721 ], [ 144.898696, 13.622631 ], [ 144.898805, 13.622546 ], [ 144.898918, 13.622489 ], [ 144.898992, 13.622413 ], [ 144.899061, 13.622332 ], [ 144.8991, 13.622295 ], [ 144.899169, 13.622271 ], [ 144.899194, 13.622248 ], [ 144.899243, 13.622152 ], [ 144.899307, 13.62211 ], [ 144.899376, 13.622086 ], [ 144.899402, 13.622057 ], [ 144.89941, 13.622049 ], [ 144.899406, 13.621991 ], [ 144.899309, 13.621919 ], [ 144.899211, 13.621877 ], [ 144.899207, 13.621851 ], [ 144.899154, 13.621793 ], [ 144.899144, 13.621731 ], [ 144.89917, 13.621645 ], [ 144.899209, 13.621588 ], [ 144.899229, 13.621531 ], [ 144.899254, 13.621478 ], [ 144.899303, 13.621436 ], [ 144.899382, 13.621407 ], [ 144.899373, 13.621312 ], [ 144.899407, 13.621283 ], [ 144.899481, 13.621255 ], [ 144.899535, 13.621218 ], [ 144.899589, 13.621151 ], [ 144.899605, 13.621113 ], [ 144.899664, 13.621027 ], [ 144.899719, 13.620908 ], [ 144.899844, 13.620598 ], [ 144.899859, 13.620527 ], [ 144.899943, 13.620403 ], [ 144.899954, 13.620317 ], [ 144.899988, 13.620265 ], [ 144.900008, 13.620227 ], [ 144.900014, 13.62015 ], [ 144.900043, 13.620132 ], [ 144.900176, 13.620094 ], [ 144.900161, 13.620056 ], [ 144.900186, 13.620004 ], [ 144.900226, 13.619951 ], [ 144.90029, 13.619914 ], [ 144.900378, 13.619905 ], [ 144.900451, 13.619877 ], [ 144.900511, 13.619829 ], [ 144.900579, 13.619782 ], [ 144.900619, 13.619716 ], [ 144.90062, 13.619673 ], [ 144.900654, 13.619601 ], [ 144.900704, 13.619539 ], [ 144.900787, 13.619478 ], [ 144.900837, 13.619421 ], [ 144.900874, 13.619388 ], [ 144.900899, 13.619307 ], [ 144.900939, 13.619221 ], [ 144.901076, 13.619146 ], [ 144.901092, 13.619055 ], [ 144.901068, 13.618969 ], [ 144.901098, 13.618868 ], [ 144.901173, 13.618683 ], [ 144.901209, 13.618568 ], [ 144.901273, 13.618454 ], [ 144.901313, 13.618349 ], [ 144.901437, 13.618178 ], [ 144.901457, 13.618073 ], [ 144.901505, 13.617963 ], [ 144.901554, 13.617901 ], [ 144.901614, 13.617835 ], [ 144.901648, 13.617792 ], [ 144.901634, 13.617716 ], [ 144.901669, 13.617616 ], [ 144.901733, 13.617602 ], [ 144.901856, 13.617545 ], [ 144.901944, 13.617513 ], [ 144.902013, 13.617408 ], [ 144.902053, 13.617322 ], [ 144.902122, 13.617237 ], [ 144.90226, 13.617157 ], [ 144.902266, 13.617047 ], [ 144.902276, 13.616975 ], [ 144.902297, 13.616889 ], [ 144.902401, 13.616708 ], [ 144.902434, 13.616613 ], [ 144.902493, 13.616566 ], [ 144.902503, 13.616494 ], [ 144.902538, 13.616427 ], [ 144.902621, 13.616371 ], [ 144.902652, 13.616189 ], [ 144.902653, 13.616132 ], [ 144.902752, 13.615994 ], [ 144.902846, 13.615832 ], [ 144.902856, 13.615775 ], [ 144.902915, 13.615756 ], [ 144.902901, 13.615718 ], [ 144.902897, 13.61567 ], [ 144.902946, 13.615632 ], [ 144.902924, 13.615575 ], [ 144.902911, 13.615562 ], [ 144.90294, 13.615522 ], [ 144.90296, 13.615484 ], [ 144.902956, 13.615403 ], [ 144.90301, 13.615356 ], [ 144.903089, 13.615256 ], [ 144.903223, 13.615042 ], [ 144.903327, 13.614909 ], [ 144.903377, 13.614818 ], [ 144.903432, 13.614685 ], [ 144.903518, 13.614356 ], [ 144.903573, 13.614184 ], [ 144.903628, 13.614046 ], [ 144.903683, 13.613955 ], [ 144.903761, 13.613899 ], [ 144.903801, 13.613808 ], [ 144.903807, 13.613722 ], [ 144.903797, 13.613684 ], [ 144.903856, 13.613632 ], [ 144.903921, 13.613541 ], [ 144.903956, 13.613484 ], [ 144.903981, 13.613394 ], [ 144.903967, 13.613327 ], [ 144.903953, 13.613221 ], [ 144.903953, 13.613173 ], [ 144.904013, 13.613097 ], [ 144.904126, 13.612988 ], [ 144.904166, 13.612912 ], [ 144.90426, 13.612765 ], [ 144.90431, 13.612636 ], [ 144.90435, 13.612502 ], [ 144.90442, 13.612417 ], [ 144.90443, 13.612341 ], [ 144.904426, 13.612202 ], [ 144.904462, 13.612068 ], [ 144.904498, 13.611901 ], [ 144.904506, 13.611777 ], [ 144.904546, 13.611672 ], [ 144.904576, 13.611543 ], [ 144.904655, 13.611463 ], [ 144.904705, 13.611391 ], [ 144.904725, 13.611324 ], [ 144.904686, 13.611295 ], [ 144.904716, 13.611257 ], [ 144.904795, 13.611182 ], [ 144.904806, 13.611126 ], [ 144.90481, 13.61111 ], [ 144.904796, 13.611019 ], [ 144.904763, 13.610942 ], [ 144.904704, 13.610908 ], [ 144.904705, 13.610865 ], [ 144.904739, 13.610827 ], [ 144.904813, 13.610799 ], [ 144.904877, 13.610752 ], [ 144.904907, 13.610647 ], [ 144.904913, 13.610527 ], [ 144.904889, 13.610451 ], [ 144.904836, 13.610359 ], [ 144.904778, 13.610278 ], [ 144.90478, 13.610134 ], [ 144.90479, 13.610005 ], [ 144.904826, 13.609862 ], [ 144.904842, 13.609738 ], [ 144.904906, 13.609662 ], [ 144.9049, 13.609499 ], [ 144.904911, 13.609308 ], [ 144.904942, 13.609155 ], [ 144.904953, 13.609026 ], [ 144.904924, 13.608964 ], [ 144.904915, 13.608902 ], [ 144.904926, 13.608734 ], [ 144.904947, 13.608591 ], [ 144.904992, 13.608438 ], [ 144.905033, 13.608314 ], [ 144.905078, 13.608219 ], [ 144.905098, 13.608081 ], [ 144.905153, 13.607928 ], [ 144.905218, 13.607771 ], [ 144.905278, 13.607671 ], [ 144.905376, 13.607629 ], [ 144.905421, 13.6075 ], [ 144.905475, 13.607199 ], [ 144.905486, 13.607084 ], [ 144.9055, 13.607053 ], [ 144.905541, 13.606961 ], [ 144.90559, 13.606896 ], [ 144.905625, 13.606851 ], [ 144.905725, 13.606728 ], [ 144.905852, 13.606571 ], [ 144.905952, 13.606489 ], [ 144.90598, 13.606467 ], [ 144.906113, 13.606406 ], [ 144.906202, 13.606301 ], [ 144.90632, 13.606216 ], [ 144.906417, 13.606175 ], [ 144.906555, 13.606118 ], [ 144.906894, 13.605963 ], [ 144.907105, 13.605879 ], [ 144.907277, 13.605799 ], [ 144.907395, 13.605685 ], [ 144.907438, 13.605636 ], [ 144.907519, 13.605547 ], [ 144.907686, 13.605415 ], [ 144.907735, 13.605387 ], [ 144.907576, 13.605329 ], [ 144.907099, 13.605157 ], [ 144.90694, 13.6051 ], [ 144.906569, 13.605027 ], [ 144.90628, 13.60497 ], [ 144.90598, 13.60487 ], [ 144.90559, 13.60475 ], [ 144.905478, 13.60473 ], [ 144.90518, 13.60468 ], [ 144.905106, 13.604666 ], [ 144.904828, 13.604614 ], [ 144.90448, 13.60455 ], [ 144.903992, 13.604474 ], [ 144.90396, 13.60447 ], [ 144.90371, 13.60446 ], [ 144.903137, 13.605125 ], [ 144.90266, 13.60568 ], [ 144.90178, 13.60671 ], [ 144.901418, 13.607119 ], [ 144.90103, 13.60756 ], [ 144.90083, 13.60777 ], [ 144.89972, 13.60663 ], [ 144.89929, 13.60623 ], [ 144.89909, 13.60606 ], [ 144.8989, 13.60596 ], [ 144.89841, 13.60576 ], [ 144.898303, 13.605711 ], [ 144.89764, 13.60541 ], [ 144.89731, 13.60524 ], [ 144.89705, 13.60503 ], [ 144.89681, 13.60479 ], [ 144.89658, 13.60445 ], [ 144.89645, 13.60409 ], [ 144.89642, 13.6038 ], [ 144.89648, 13.60349 ], [ 144.89656, 13.60327 ], [ 144.89665, 13.60312 ], [ 144.89683, 13.60291 ], [ 144.89703, 13.60271 ], [ 144.89725, 13.60256 ], [ 144.89756, 13.60241 ], [ 144.89805, 13.60212 ], [ 144.8982, 13.602 ], [ 144.89829, 13.60188 ], [ 144.89834, 13.60178 ], [ 144.89847, 13.60135 ], [ 144.89865, 13.60062 ], [ 144.89866, 13.60034 ], [ 144.89865, 13.59979 ], [ 144.89863, 13.59948 ], [ 144.89859, 13.59928 ], [ 144.89842, 13.59863 ], [ 144.89841, 13.5985 ], [ 144.89843, 13.59827 ], [ 144.898519, 13.597727 ], [ 144.89906, 13.59447 ], [ 144.89938, 13.59439 ], [ 144.899444, 13.594375 ], [ 144.90033, 13.59418 ], [ 144.90046, 13.59412 ], [ 144.90058, 13.594055 ], [ 144.90059, 13.59405 ], [ 144.90077, 13.59371 ], [ 144.90083, 13.59357 ], [ 144.90098, 13.59342 ], [ 144.90137, 13.59323 ], [ 144.90219, 13.59291 ], [ 144.903181, 13.592384 ], [ 144.90404, 13.59193 ], [ 144.90514, 13.59135 ], [ 144.90555, 13.59112 ], [ 144.90591, 13.59089 ], [ 144.90615, 13.59068 ], [ 144.90667, 13.59017 ], [ 144.90796, 13.58883 ], [ 144.90837, 13.58839 ], [ 144.90853, 13.58815 ], [ 144.90861, 13.58798 ], [ 144.90883, 13.5874 ], [ 144.909082, 13.586764 ], [ 144.90914, 13.58662 ], [ 144.90927, 13.58643 ], [ 144.9095, 13.58613 ], [ 144.91073, 13.58494 ], [ 144.91097, 13.58472 ], [ 144.91061, 13.58455 ], [ 144.9102, 13.58432 ], [ 144.90984, 13.58408 ], [ 144.90946, 13.5837 ], [ 144.90919, 13.58333 ], [ 144.90905, 13.583041 ], [ 144.90905, 13.58304 ], [ 144.90892, 13.58271 ], [ 144.90881, 13.58214 ], [ 144.90877, 13.58164 ], [ 144.90879, 13.58131 ], [ 144.90889, 13.58089 ], [ 144.90951, 13.57904 ], [ 144.91036, 13.57677 ], [ 144.91064, 13.57599 ], [ 144.910786, 13.57557 ], [ 144.91121, 13.57436 ], [ 144.911632, 13.573095 ], [ 144.911759, 13.572712 ], [ 144.91202, 13.57193 ], [ 144.912151, 13.571568 ], [ 144.91229, 13.57119 ], [ 144.91252, 13.57125 ], [ 144.91284, 13.57125 ], [ 144.913267, 13.571172 ], [ 144.91328, 13.57117 ], [ 144.91536, 13.5705 ], [ 144.916103, 13.570266 ], [ 144.91705, 13.56997 ], [ 144.917109, 13.56995 ], [ 144.917289, 13.569889 ], [ 144.91735, 13.56987 ], [ 144.917538, 13.569681 ], [ 144.91767, 13.56955 ], [ 144.91798, 13.56921 ], [ 144.918071, 13.569085 ], [ 144.91823, 13.56887 ], [ 144.918368, 13.568552 ], [ 144.91843, 13.56841 ], [ 144.918796, 13.567605 ], [ 144.91894, 13.56729 ], [ 144.919079, 13.567063 ], [ 144.91931, 13.56669 ], [ 144.919534, 13.566408 ], [ 144.9197, 13.5662 ], [ 144.91975, 13.566136 ], [ 144.919899, 13.565943 ], [ 144.91995, 13.56588 ], [ 144.920068, 13.565772 ], [ 144.92025, 13.56561 ], [ 144.920434, 13.565462 ], [ 144.92056, 13.565363 ], [ 144.92064, 13.5653 ], [ 144.920698, 13.565258 ], [ 144.92089, 13.56512 ], [ 144.921132, 13.56497 ], [ 144.92128, 13.56488 ], [ 144.921588, 13.564718 ], [ 144.92174, 13.56464 ], [ 144.922533, 13.564275 ], [ 144.92285, 13.56413 ], [ 144.923079, 13.564028 ], [ 144.92346, 13.56386 ], [ 144.923763, 13.563716 ], [ 144.92399, 13.56361 ], [ 144.923777, 13.563462 ], [ 144.92373, 13.56343 ], [ 144.923097, 13.563091 ], [ 144.92287, 13.56297 ], [ 144.922772, 13.562918 ], [ 144.922477, 13.562761 ], [ 144.92238, 13.56271 ], [ 144.922006, 13.562495 ], [ 144.920884, 13.561853 ], [ 144.92051, 13.56164 ], [ 144.92006, 13.56139 ], [ 144.91934, 13.56099 ], [ 144.91871, 13.560646 ], [ 144.91826, 13.5604 ], [ 144.91795, 13.56022 ], [ 144.9177, 13.56007 ], [ 144.917627, 13.560006 ], [ 144.91754, 13.55993 ], [ 144.91733, 13.5597 ], [ 144.91719, 13.55949 ], [ 144.91708, 13.55921 ], [ 144.91688, 13.55846 ], [ 144.916758, 13.557992 ], [ 144.91657, 13.55727 ], [ 144.916554, 13.557203 ], [ 144.91651, 13.55702 ], [ 144.916513, 13.557005 ], [ 144.91653, 13.55694 ], [ 144.914759, 13.557528 ], [ 144.913617, 13.557908 ], [ 144.909449, 13.559294 ], [ 144.907694, 13.559898 ], [ 144.907431, 13.55997 ], [ 144.906689, 13.56023 ], [ 144.906442, 13.560317 ], [ 144.903736, 13.561232 ], [ 144.899001, 13.562828 ], [ 144.89904, 13.56292 ], [ 144.899048, 13.562941 ], [ 144.899184, 13.563285 ], [ 144.89923, 13.5634 ], [ 144.8993, 13.56346 ], [ 144.899316, 13.563515 ], [ 144.89937, 13.56369 ], [ 144.89941, 13.56388 ], [ 144.899438, 13.564107 ], [ 144.89946, 13.56429 ], [ 144.89946, 13.56437 ], [ 144.89948, 13.56462 ], [ 144.89946, 13.56492 ], [ 144.89941, 13.56516 ], [ 144.89934, 13.56523 ], [ 144.89927, 13.56547 ], [ 144.89917, 13.56577 ], [ 144.899068, 13.566029 ], [ 144.899039, 13.566102 ], [ 144.89901, 13.56618 ], [ 144.898923, 13.56643 ], [ 144.89875, 13.56693 ], [ 144.898721, 13.567006 ], [ 144.898094, 13.568728 ], [ 144.89801, 13.56896 ], [ 144.897886, 13.569303 ], [ 144.897763, 13.569643 ], [ 144.89749, 13.5704 ], [ 144.897389, 13.570662 ], [ 144.89726, 13.571 ], [ 144.897045, 13.571603 ], [ 144.89678, 13.57235 ], [ 144.896741, 13.572451 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "950402", "GEOID10": "66010950402", "NAME10": "9504.02", "NAMELSAD10": "Census Tract 9504.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 5937521, "AWATER10": 0, "INTPTLAT10": "+13.5740667", "INTPTLON10": "+144.8650071" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.85929, 13.57033 ], [ 144.85906, 13.5703 ], [ 144.85829, 13.57012 ], [ 144.857678, 13.56997 ], [ 144.857479, 13.569921 ], [ 144.85702, 13.56981 ], [ 144.856788, 13.569758 ], [ 144.856092, 13.569602 ], [ 144.85586, 13.56955 ], [ 144.855446, 13.569446 ], [ 144.85506, 13.56935 ], [ 144.8542, 13.569152 ], [ 144.85419, 13.56915 ], [ 144.853787, 13.569049 ], [ 144.853726, 13.569033 ], [ 144.85363, 13.56901 ], [ 144.853547, 13.568974 ], [ 144.85349, 13.56895 ], [ 144.852643, 13.569245 ], [ 144.851853, 13.569606 ], [ 144.851342, 13.569818 ], [ 144.85103, 13.570015 ], [ 144.850813, 13.570279 ], [ 144.850561, 13.570759 ], [ 144.850392, 13.571089 ], [ 144.850162, 13.571498 ], [ 144.849919, 13.571736 ], [ 144.849704, 13.571872 ], [ 144.84888, 13.572432 ], [ 144.848815, 13.572439 ], [ 144.848622, 13.572462 ], [ 144.848558, 13.572471 ], [ 144.848699, 13.57273 ], [ 144.84895, 13.57319 ], [ 144.849119, 13.573512 ], [ 144.849258, 13.573774 ], [ 144.849287, 13.57383 ], [ 144.849376, 13.573999 ], [ 144.849406, 13.574056 ], [ 144.84944, 13.57412 ], [ 144.8497, 13.57458 ], [ 144.84984, 13.57479 ], [ 144.84987, 13.574829 ], [ 144.85044, 13.57556 ], [ 144.85116, 13.57646 ], [ 144.851559, 13.576949 ], [ 144.85213, 13.57765 ], [ 144.8525, 13.57811 ], [ 144.852515, 13.578128 ], [ 144.853683, 13.579552 ], [ 144.85378, 13.57967 ], [ 144.85407, 13.58003 ], [ 144.854413, 13.580456 ], [ 144.855442, 13.581736 ], [ 144.85567, 13.58202 ], [ 144.85579, 13.58216 ], [ 144.85609, 13.58254 ], [ 144.856165, 13.582631 ], [ 144.85688, 13.5835 ], [ 144.85731, 13.584031 ], [ 144.85769, 13.5845 ], [ 144.857881, 13.584747 ], [ 144.858, 13.5849 ], [ 144.85835, 13.58532 ], [ 144.858481, 13.585467 ], [ 144.85869, 13.5857 ], [ 144.858748, 13.585753 ], [ 144.858922, 13.585915 ], [ 144.85898, 13.58597 ], [ 144.859308, 13.586271 ], [ 144.85935, 13.58631 ], [ 144.85989, 13.58672 ], [ 144.860272, 13.586952 ], [ 144.8603, 13.58697 ], [ 144.860407, 13.587027 ], [ 144.8608, 13.587237 ], [ 144.86103, 13.58736 ], [ 144.861293, 13.587497 ], [ 144.86247, 13.58811 ], [ 144.86278, 13.588263 ], [ 144.86328, 13.58851 ], [ 144.86336, 13.588548 ], [ 144.8636, 13.588662 ], [ 144.86368, 13.5887 ], [ 144.864029, 13.588818 ], [ 144.86415, 13.58886 ], [ 144.86456, 13.58896 ], [ 144.86504, 13.58903 ], [ 144.865111, 13.589031 ], [ 144.86548, 13.58904 ], [ 144.865825, 13.589031 ], [ 144.86587, 13.58903 ], [ 144.86623, 13.58898 ], [ 144.86656, 13.58891 ], [ 144.86682, 13.58884 ], [ 144.86684, 13.588833 ], [ 144.86717, 13.58873 ], [ 144.867222, 13.588709 ], [ 144.867377, 13.588649 ], [ 144.86743, 13.58863 ], [ 144.867597, 13.588533 ], [ 144.86762, 13.58852 ], [ 144.868086, 13.588223 ], [ 144.86825, 13.58812 ], [ 144.868404, 13.58802 ], [ 144.868866, 13.58772 ], [ 144.86902, 13.58762 ], [ 144.869156, 13.587533 ], [ 144.869563, 13.587275 ], [ 144.8697, 13.58719 ], [ 144.869871, 13.587072 ], [ 144.87011, 13.58691 ], [ 144.870393, 13.586732 ], [ 144.87057, 13.586622 ], [ 144.870627, 13.586585 ], [ 144.870801, 13.586476 ], [ 144.87086, 13.58644 ], [ 144.871214, 13.586211 ], [ 144.871366, 13.586113 ], [ 144.87173, 13.58588 ], [ 144.87181, 13.58583 ], [ 144.872066, 13.584387 ], [ 144.872404, 13.582487 ], [ 144.872944, 13.579397 ], [ 144.873256, 13.577586 ], [ 144.873339, 13.577136 ], [ 144.873449, 13.577085 ], [ 144.873904, 13.576795 ], [ 144.874621, 13.576361 ], [ 144.875863, 13.575615 ], [ 144.875943, 13.575566 ], [ 144.875945, 13.572023 ], [ 144.875948, 13.569481 ], [ 144.875945, 13.569419 ], [ 144.875953, 13.56863 ], [ 144.875948, 13.568373 ], [ 144.875938, 13.567625 ], [ 144.875938, 13.567409 ], [ 144.875879, 13.566099 ], [ 144.875767, 13.564269 ], [ 144.875755, 13.563547 ], [ 144.875575, 13.55969 ], [ 144.875713, 13.558642 ], [ 144.874592, 13.559461 ], [ 144.874068, 13.559844 ], [ 144.873626, 13.559825 ], [ 144.872301, 13.559768 ], [ 144.87186, 13.55975 ], [ 144.8713, 13.55977 ], [ 144.871271, 13.55977 ], [ 144.87044, 13.55978 ], [ 144.86956, 13.55978 ], [ 144.869504, 13.559782 ], [ 144.86934, 13.55979 ], [ 144.86913, 13.55979 ], [ 144.86892, 13.55975 ], [ 144.868921, 13.559529 ], [ 144.868923, 13.559339 ], [ 144.868928, 13.558869 ], [ 144.86893, 13.55865 ], [ 144.86894, 13.55854 ], [ 144.868939, 13.558505 ], [ 144.868934, 13.558069 ], [ 144.868933, 13.557924 ], [ 144.868931, 13.557821 ], [ 144.86893, 13.55769 ], [ 144.86894, 13.55752 ], [ 144.868936, 13.557515 ], [ 144.86888, 13.55743 ], [ 144.86876, 13.55752 ], [ 144.868053, 13.557504 ], [ 144.86782, 13.5575 ], [ 144.867594, 13.5575 ], [ 144.865481, 13.557509 ], [ 144.86543, 13.55751 ], [ 144.864625, 13.557497 ], [ 144.864532, 13.557495 ], [ 144.864253, 13.557491 ], [ 144.86416, 13.55749 ], [ 144.864157, 13.557949 ], [ 144.86415, 13.55908 ], [ 144.864139, 13.559326 ], [ 144.86413, 13.55955 ], [ 144.86415, 13.55969 ], [ 144.8642, 13.55977 ], [ 144.8642, 13.56003 ], [ 144.864213, 13.562029 ], [ 144.864126, 13.562714 ], [ 144.86435, 13.56704 ], [ 144.864361, 13.567104 ], [ 144.86441, 13.56737 ], [ 144.864426, 13.56769 ], [ 144.86443, 13.56777 ], [ 144.86441, 13.56801 ], [ 144.86437, 13.56818 ], [ 144.86429, 13.56828 ], [ 144.86368, 13.5685 ], [ 144.86301, 13.56871 ], [ 144.862653, 13.568839 ], [ 144.86235, 13.56895 ], [ 144.86193, 13.56914 ], [ 144.86177, 13.56918 ], [ 144.861579, 13.569253 ], [ 144.86141, 13.56932 ], [ 144.86093, 13.56949 ], [ 144.860773, 13.569576 ], [ 144.86062, 13.56966 ], [ 144.860567, 13.569691 ], [ 144.86025, 13.56988 ], [ 144.85972, 13.57015 ], [ 144.859644, 13.570185 ], [ 144.85953, 13.57024 ], [ 144.85929, 13.57033 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "950802", "GEOID10": "66010950802", "NAME10": "9508.02", "NAMELSAD10": "Census Tract 9508.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 5074440, "AWATER10": 0, "INTPTLAT10": "+13.5321558", "INTPTLON10": "+144.8386823" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.85228, 13.53717 ], [ 144.852147, 13.536881 ], [ 144.851962, 13.536479 ], [ 144.851749, 13.536016 ], [ 144.85171, 13.53593 ], [ 144.85162, 13.535727 ], [ 144.851538, 13.535541 ], [ 144.851292, 13.534985 ], [ 144.85121, 13.5348 ], [ 144.85118, 13.534733 ], [ 144.85109, 13.534535 ], [ 144.85106, 13.534469 ], [ 144.851012, 13.534364 ], [ 144.850868, 13.534049 ], [ 144.850821, 13.533945 ], [ 144.850796, 13.53389 ], [ 144.850722, 13.533728 ], [ 144.850698, 13.533674 ], [ 144.850671, 13.533616 ], [ 144.850593, 13.533443 ], [ 144.850567, 13.533386 ], [ 144.850533, 13.533312 ], [ 144.850433, 13.533093 ], [ 144.8504, 13.53302 ], [ 144.85033, 13.532872 ], [ 144.85012, 13.532428 ], [ 144.85005, 13.53228 ], [ 144.850018, 13.532203 ], [ 144.849922, 13.531972 ], [ 144.84989, 13.531896 ], [ 144.849809, 13.531702 ], [ 144.84973, 13.53151 ], [ 144.849559, 13.531127 ], [ 144.849475, 13.530936 ], [ 144.849424, 13.53082 ], [ 144.849271, 13.530475 ], [ 144.84922, 13.53036 ], [ 144.849152, 13.530198 ], [ 144.84895, 13.529712 ], [ 144.8489, 13.52959 ], [ 144.848883, 13.529551 ], [ 144.848772, 13.529296 ], [ 144.8486, 13.5289 ], [ 144.848427, 13.52854 ], [ 144.84837, 13.52842 ], [ 144.84831, 13.52829 ], [ 144.848282, 13.528232 ], [ 144.848236, 13.528136 ], [ 144.848199, 13.52806 ], [ 144.848172, 13.528003 ], [ 144.848129, 13.527914 ], [ 144.848002, 13.527648 ], [ 144.84796, 13.52756 ], [ 144.84783, 13.527248 ], [ 144.84769, 13.52691 ], [ 144.847427, 13.526318 ], [ 144.84729, 13.52601 ], [ 144.847203, 13.525871 ], [ 144.846946, 13.525458 ], [ 144.84686, 13.52532 ], [ 144.846615, 13.524956 ], [ 144.84651, 13.5248 ], [ 144.8462, 13.52432 ], [ 144.84618, 13.52429 ], [ 144.84595, 13.52395 ], [ 144.845895, 13.523856 ], [ 144.84581, 13.52371 ], [ 144.84571, 13.52346 ], [ 144.845619, 13.523202 ], [ 144.84559, 13.52312 ], [ 144.845437, 13.522406 ], [ 144.84538, 13.52214 ], [ 144.844674, 13.522295 ], [ 144.84348, 13.52256 ], [ 144.842556, 13.522752 ], [ 144.84185, 13.5229 ], [ 144.841393, 13.523003 ], [ 144.84106, 13.52308 ], [ 144.840647, 13.523168 ], [ 144.84026, 13.52325 ], [ 144.84002, 13.523294 ], [ 144.83956, 13.52338 ], [ 144.839417, 13.5234 ], [ 144.838215, 13.523663 ], [ 144.83791, 13.52369 ], [ 144.837657, 13.523699 ], [ 144.836901, 13.523729 ], [ 144.83665, 13.52374 ], [ 144.836516, 13.52374 ], [ 144.836114, 13.52374 ], [ 144.83598, 13.52374 ], [ 144.83569, 13.52369 ], [ 144.835634, 13.523675 ], [ 144.83495, 13.5235 ], [ 144.834839, 13.523466 ], [ 144.83462, 13.5234 ], [ 144.834617, 13.523399 ], [ 144.83428, 13.5233 ], [ 144.834016, 13.523228 ], [ 144.83354, 13.5231 ], [ 144.833224, 13.523018 ], [ 144.83296, 13.52295 ], [ 144.8328, 13.52291 ], [ 144.832607, 13.52286 ], [ 144.831551, 13.52259 ], [ 144.8312, 13.5225 ], [ 144.831107, 13.522472 ], [ 144.830831, 13.522388 ], [ 144.83074, 13.52236 ], [ 144.830443, 13.522284 ], [ 144.83011, 13.5222 ], [ 144.82966, 13.52205 ], [ 144.82957, 13.522011 ], [ 144.82929, 13.52189 ], [ 144.828935, 13.521717 ], [ 144.82854, 13.52149 ], [ 144.82771, 13.52096 ], [ 144.827422, 13.521184 ], [ 144.82712, 13.52142 ], [ 144.826565, 13.521866 ], [ 144.826281, 13.522096 ], [ 144.82578, 13.5225 ], [ 144.825768, 13.522508 ], [ 144.82514, 13.52298 ], [ 144.82476, 13.52324 ], [ 144.82446, 13.52339 ], [ 144.824084, 13.523511 ], [ 144.82406, 13.52352 ], [ 144.82362, 13.52362 ], [ 144.82344, 13.52364 ], [ 144.82354, 13.52382 ], [ 144.823757, 13.524166 ], [ 144.82381, 13.52425 ], [ 144.82388, 13.52426 ], [ 144.824759, 13.525685 ], [ 144.82499, 13.52606 ], [ 144.825073, 13.526214 ], [ 144.82521, 13.52647 ], [ 144.82523, 13.526548 ], [ 144.82533, 13.52693 ], [ 144.825423, 13.527644 ], [ 144.825471, 13.528013 ], [ 144.825484, 13.528118 ], [ 144.825526, 13.528434 ], [ 144.82554, 13.52854 ], [ 144.825588, 13.528829 ], [ 144.82561, 13.52896 ], [ 144.82575, 13.52945 ], [ 144.825844, 13.52967 ], [ 144.82596, 13.52994 ], [ 144.825973, 13.529968 ], [ 144.826012, 13.530054 ], [ 144.826025, 13.530083 ], [ 144.826044, 13.530124 ], [ 144.826101, 13.530248 ], [ 144.82612, 13.53029 ], [ 144.826168, 13.530392 ], [ 144.826312, 13.530698 ], [ 144.82636, 13.5308 ], [ 144.826389, 13.530868 ], [ 144.82648, 13.531072 ], [ 144.82651, 13.53114 ], [ 144.826576, 13.531284 ], [ 144.826774, 13.531716 ], [ 144.82684, 13.53186 ], [ 144.826844, 13.53187 ], [ 144.826856, 13.5319 ], [ 144.82686, 13.53191 ], [ 144.826896, 13.531984 ], [ 144.827004, 13.532206 ], [ 144.82704, 13.53228 ], [ 144.827172, 13.532571 ], [ 144.82757, 13.533444 ], [ 144.827703, 13.533736 ], [ 144.827754, 13.533848 ], [ 144.827908, 13.534187 ], [ 144.82796, 13.5343 ], [ 144.828196, 13.53484 ], [ 144.82827, 13.53501 ], [ 144.8286, 13.53568 ], [ 144.82896, 13.53623 ], [ 144.82908, 13.536366 ], [ 144.82947, 13.53681 ], [ 144.830055, 13.537446 ], [ 144.83015, 13.53755 ], [ 144.83127, 13.53879 ], [ 144.831797, 13.53937 ], [ 144.83238, 13.54001 ], [ 144.832402, 13.540036 ], [ 144.832468, 13.540116 ], [ 144.83249, 13.540143 ], [ 144.83263, 13.54031 ], [ 144.832781, 13.540554 ], [ 144.83284, 13.54065 ], [ 144.83308, 13.54122 ], [ 144.83322, 13.54184 ], [ 144.8334, 13.54184 ], [ 144.833971, 13.541767 ], [ 144.83408, 13.5417 ], [ 144.83422, 13.54166 ], [ 144.834484, 13.541662 ], [ 144.835132, 13.541666 ], [ 144.835312, 13.541668 ], [ 144.83547, 13.54167 ], [ 144.835713, 13.54167 ], [ 144.836123, 13.54167 ], [ 144.836214, 13.54167 ], [ 144.836488, 13.54167 ], [ 144.83658, 13.54167 ], [ 144.836941, 13.541664 ], [ 144.837129, 13.54166 ], [ 144.837273, 13.541658 ], [ 144.837695, 13.541652 ], [ 144.837884, 13.54165 ], [ 144.838085, 13.541655 ], [ 144.838688, 13.541673 ], [ 144.83889, 13.54168 ], [ 144.839121, 13.541673 ], [ 144.839817, 13.541656 ], [ 144.84005, 13.54165 ], [ 144.840279, 13.541647 ], [ 144.840969, 13.541642 ], [ 144.8412, 13.54164 ], [ 144.841612, 13.541646 ], [ 144.842848, 13.541664 ], [ 144.84326, 13.54167 ], [ 144.843313, 13.541669 ], [ 144.843473, 13.541667 ], [ 144.843527, 13.541667 ], [ 144.843621, 13.541665 ], [ 144.843903, 13.541662 ], [ 144.843998, 13.541661 ], [ 144.84402, 13.54166 ], [ 144.844087, 13.54166 ], [ 144.84411, 13.54166 ], [ 144.844222, 13.541659 ], [ 144.844559, 13.541657 ], [ 144.844672, 13.541657 ], [ 144.844766, 13.541656 ], [ 144.84505, 13.541654 ], [ 144.845145, 13.541654 ], [ 144.845281, 13.541652 ], [ 144.845692, 13.54165 ], [ 144.845764, 13.54165 ], [ 144.84583, 13.54165 ], [ 144.845913, 13.541649 ], [ 144.845992, 13.541648 ], [ 144.846161, 13.541646 ], [ 144.846245, 13.541646 ], [ 144.846341, 13.541645 ], [ 144.846632, 13.541642 ], [ 144.846729, 13.541642 ], [ 144.846785, 13.541641 ], [ 144.84695, 13.54164 ], [ 144.846955, 13.54164 ], [ 144.847012, 13.541641 ], [ 144.847108, 13.541641 ], [ 144.847399, 13.541644 ], [ 144.847496, 13.541645 ], [ 144.847614, 13.541646 ], [ 144.847971, 13.541649 ], [ 144.84809, 13.54165 ], [ 144.848336, 13.54165 ], [ 144.848763, 13.54165 ], [ 144.848833, 13.54165 ], [ 144.849047, 13.54165 ], [ 144.849118, 13.54165 ], [ 144.849202, 13.54165 ], [ 144.849455, 13.54165 ], [ 144.84954, 13.54165 ], [ 144.849596, 13.54165 ], [ 144.849764, 13.54165 ], [ 144.849821, 13.54165 ], [ 144.849938, 13.54165 ], [ 144.850292, 13.54165 ], [ 144.85041, 13.54165 ], [ 144.850493, 13.54165 ], [ 144.850743, 13.541652 ], [ 144.850827, 13.541653 ], [ 144.850915, 13.541653 ], [ 144.851181, 13.541655 ], [ 144.85127, 13.541656 ], [ 144.85138, 13.541656 ], [ 144.85171, 13.541659 ], [ 144.85182, 13.54166 ], [ 144.851834, 13.54166 ], [ 144.851876, 13.54166 ], [ 144.85189, 13.54166 ], [ 144.851974, 13.541661 ], [ 144.852225, 13.541665 ], [ 144.85231, 13.541667 ], [ 144.852364, 13.541668 ], [ 144.852528, 13.541671 ], [ 144.852583, 13.541672 ], [ 144.852656, 13.541673 ], [ 144.852875, 13.541676 ], [ 144.852949, 13.541678 ], [ 144.85309, 13.54168 ], [ 144.853141, 13.541678 ], [ 144.85372, 13.541658 ], [ 144.853913, 13.541652 ], [ 144.85396, 13.54165 ], [ 144.853989, 13.541644 ], [ 144.85411, 13.54162 ], [ 144.854203, 13.541567 ], [ 144.85427, 13.54153 ], [ 144.854206, 13.541396 ], [ 144.854014, 13.540995 ], [ 144.853951, 13.540862 ], [ 144.853908, 13.540773 ], [ 144.853782, 13.540508 ], [ 144.85374, 13.54042 ], [ 144.853725, 13.540385 ], [ 144.85368, 13.54028 ], [ 144.853666, 13.540246 ], [ 144.853651, 13.540213 ], [ 144.853609, 13.540114 ], [ 144.853595, 13.540082 ], [ 144.853577, 13.54004 ], [ 144.853523, 13.539914 ], [ 144.853506, 13.539872 ], [ 144.853486, 13.539825 ], [ 144.853426, 13.539687 ], [ 144.853407, 13.539641 ], [ 144.853385, 13.53959 ], [ 144.853321, 13.53944 ], [ 144.8533, 13.53939 ], [ 144.853252, 13.539285 ], [ 144.853158, 13.539078 ], [ 144.853111, 13.538972 ], [ 144.853064, 13.538868 ], [ 144.853048, 13.538833 ], [ 144.853001, 13.53873 ], [ 144.852986, 13.538696 ], [ 144.852923, 13.538557 ], [ 144.85287, 13.53844 ], [ 144.852731, 13.538142 ], [ 144.852667, 13.538004 ], [ 144.852601, 13.537863 ], [ 144.852405, 13.53744 ], [ 144.85234, 13.5373 ], [ 144.852327, 13.537274 ], [ 144.852292, 13.537196 ], [ 144.85228, 13.53717 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "951902", "GEOID10": "66010951902", "NAME10": "9519.02", "NAMELSAD10": "Census Tract 9519.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 7584209, "AWATER10": 0, "INTPTLAT10": "+13.5122345", "INTPTLON10": "+144.8059908" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.803339, 13.526412 ], [ 144.803303, 13.526895 ], [ 144.803346, 13.527543 ], [ 144.803381, 13.528059 ], [ 144.803144, 13.529159 ], [ 144.803032, 13.529925 ], [ 144.803077, 13.530384 ], [ 144.803188, 13.530821 ], [ 144.80328, 13.531118 ], [ 144.803317, 13.531399 ], [ 144.803309, 13.531535 ], [ 144.803329, 13.531716 ], [ 144.803369, 13.531752 ], [ 144.803361, 13.531836 ], [ 144.80322, 13.53186 ], [ 144.80316, 13.531973 ], [ 144.803132, 13.532189 ], [ 144.80314, 13.532378 ], [ 144.803144, 13.532446 ], [ 144.803056, 13.53245 ], [ 144.803044, 13.532534 ], [ 144.803032, 13.532807 ], [ 144.803004, 13.532919 ], [ 144.802952, 13.533264 ], [ 144.802855, 13.533288 ], [ 144.802839, 13.533393 ], [ 144.802498, 13.533557 ], [ 144.802358, 13.533617 ], [ 144.802314, 13.533714 ], [ 144.802129, 13.533946 ], [ 144.802033, 13.534412 ], [ 144.801993, 13.534532 ], [ 144.802013, 13.534628 ], [ 144.802009, 13.535154 ], [ 144.802125, 13.535338 ], [ 144.802057, 13.535539 ], [ 144.802121, 13.535791 ], [ 144.802221, 13.5359 ], [ 144.803515, 13.537296 ], [ 144.803699, 13.537516 ], [ 144.803807, 13.537619 ], [ 144.80476, 13.538505 ], [ 144.805149, 13.538956 ], [ 144.805743, 13.539734 ], [ 144.80603, 13.53996 ], [ 144.806112, 13.540123 ], [ 144.806239, 13.540358 ], [ 144.806267, 13.540468 ], [ 144.806279, 13.540551 ], [ 144.80633, 13.540818 ], [ 144.806372, 13.540971 ], [ 144.806456, 13.541143 ], [ 144.806522, 13.541306 ], [ 144.806604, 13.541392 ], [ 144.806681, 13.541507 ], [ 144.806777, 13.541665 ], [ 144.80682, 13.541818 ], [ 144.807042, 13.542001 ], [ 144.807129, 13.542102 ], [ 144.807172, 13.542135 ], [ 144.807259, 13.542222 ], [ 144.80735, 13.542332 ], [ 144.807351, 13.542333 ], [ 144.807623, 13.542559 ], [ 144.80774, 13.542621 ], [ 144.807981, 13.542824 ], [ 144.808102, 13.542939 ], [ 144.808231, 13.543145 ], [ 144.808301, 13.54325 ], [ 144.808368, 13.54338 ], [ 144.80846, 13.543631 ], [ 144.808463, 13.543638 ], [ 144.808472, 13.543757 ], [ 144.808475, 13.543919 ], [ 144.808483, 13.544085 ], [ 144.808481, 13.544114 ], [ 144.809057, 13.543449 ], [ 144.809611, 13.542848 ], [ 144.810869, 13.541398 ], [ 144.810862, 13.541146 ], [ 144.810854, 13.540771 ], [ 144.811362, 13.538462 ], [ 144.811453, 13.538083 ], [ 144.811603, 13.53743 ], [ 144.811726, 13.5369 ], [ 144.81191, 13.53613 ], [ 144.81196, 13.535865 ], [ 144.812043, 13.535534 ], [ 144.812173, 13.534955 ], [ 144.812396, 13.533997 ], [ 144.812625, 13.532986 ], [ 144.812794, 13.53225 ], [ 144.813158, 13.530688 ], [ 144.813758, 13.527999 ], [ 144.81392, 13.527261 ], [ 144.814507, 13.524983 ], [ 144.814523, 13.524913 ], [ 144.814573, 13.524703 ], [ 144.81459, 13.524634 ], [ 144.814739, 13.523962 ], [ 144.814745, 13.523933 ], [ 144.815243, 13.521838 ], [ 144.81541, 13.52114 ], [ 144.815253, 13.521084 ], [ 144.814784, 13.520919 ], [ 144.814621, 13.520864 ], [ 144.814546, 13.520835 ], [ 144.814301, 13.520748 ], [ 144.81422, 13.52072 ], [ 144.81412, 13.520681 ], [ 144.81394, 13.52061 ], [ 144.813826, 13.520556 ], [ 144.81377, 13.52053 ], [ 144.813733, 13.520506 ], [ 144.81366, 13.52046 ], [ 144.813652, 13.520456 ], [ 144.813557, 13.520408 ], [ 144.81346, 13.52036 ], [ 144.813402, 13.52032 ], [ 144.813324, 13.520267 ], [ 144.81327, 13.52023 ], [ 144.813193, 13.520167 ], [ 144.8131, 13.52009 ], [ 144.81291, 13.51991 ], [ 144.812836, 13.519827 ], [ 144.81276, 13.51974 ], [ 144.812729, 13.519703 ], [ 144.8126, 13.51955 ], [ 144.81247, 13.51936 ], [ 144.812424, 13.519269 ], [ 144.81234, 13.5191 ], [ 144.81225, 13.51895 ], [ 144.81222, 13.51888 ], [ 144.81217, 13.51876 ], [ 144.81207, 13.51841 ], [ 144.81198, 13.518 ], [ 144.811926, 13.517764 ], [ 144.811853, 13.51756 ], [ 144.811809, 13.517246 ], [ 144.811782, 13.517128 ], [ 144.811702, 13.516774 ], [ 144.811676, 13.516657 ], [ 144.811664, 13.516606 ], [ 144.811629, 13.516453 ], [ 144.811618, 13.516402 ], [ 144.811598, 13.516315 ], [ 144.811539, 13.516056 ], [ 144.81152, 13.51597 ], [ 144.811514, 13.515946 ], [ 144.811498, 13.515876 ], [ 144.811493, 13.515853 ], [ 144.811453, 13.515683 ], [ 144.811334, 13.515175 ], [ 144.811295, 13.515006 ], [ 144.811287, 13.514972 ], [ 144.811263, 13.514873 ], [ 144.811256, 13.51484 ], [ 144.811244, 13.514791 ], [ 144.81121, 13.514645 ], [ 144.811199, 13.514597 ], [ 144.811193, 13.514574 ], [ 144.811178, 13.514507 ], [ 144.811173, 13.514485 ], [ 144.811145, 13.514367 ], [ 144.81113, 13.5143 ], [ 144.81112, 13.51424 ], [ 144.811061, 13.514016 ], [ 144.81106, 13.51401 ], [ 144.81103, 13.5139 ], [ 144.810994, 13.513747 ], [ 144.81094, 13.51351 ], [ 144.81091, 13.51341 ], [ 144.810883, 13.51329 ], [ 144.810849, 13.513138 ], [ 144.810826, 13.513035 ], [ 144.810757, 13.512726 ], [ 144.810734, 13.512624 ], [ 144.810721, 13.512568 ], [ 144.810683, 13.5124 ], [ 144.810671, 13.512345 ], [ 144.810566, 13.511879 ], [ 144.81056, 13.51185 ], [ 144.810405, 13.511194 ], [ 144.81039, 13.51113 ], [ 144.810244, 13.510485 ], [ 144.81014, 13.51002 ], [ 144.8101, 13.50985 ], [ 144.809982, 13.50934 ], [ 144.809943, 13.50917 ], [ 144.809868, 13.508848 ], [ 144.809804, 13.508572 ], [ 144.809644, 13.507882 ], [ 144.80957, 13.50756 ], [ 144.809505, 13.507273 ], [ 144.80937, 13.50667 ], [ 144.809261, 13.506432 ], [ 144.80916, 13.50621 ], [ 144.809135, 13.506168 ], [ 144.809014, 13.505967 ], [ 144.80895, 13.50586 ], [ 144.80873, 13.50557 ], [ 144.80858, 13.50542 ], [ 144.8085, 13.50534 ], [ 144.808405, 13.505267 ], [ 144.80848, 13.50516 ], [ 144.80879, 13.50508 ], [ 144.808858, 13.505095 ], [ 144.80909, 13.50515 ], [ 144.80944, 13.50524 ], [ 144.80978, 13.50534 ], [ 144.809987, 13.505404 ], [ 144.81036, 13.50552 ], [ 144.810565, 13.505592 ], [ 144.81087, 13.5057 ], [ 144.811183, 13.505802 ], [ 144.81139, 13.50587 ], [ 144.811413, 13.505878 ], [ 144.811483, 13.505905 ], [ 144.811507, 13.505914 ], [ 144.811557, 13.505933 ], [ 144.811709, 13.50599 ], [ 144.81176, 13.50601 ], [ 144.811818, 13.506027 ], [ 144.811992, 13.506082 ], [ 144.81205, 13.5061 ], [ 144.812062, 13.506103 ], [ 144.812098, 13.506115 ], [ 144.81211, 13.50612 ], [ 144.812255, 13.50617 ], [ 144.812694, 13.50632 ], [ 144.81284, 13.50637 ], [ 144.813047, 13.506442 ], [ 144.813672, 13.506658 ], [ 144.81388, 13.50673 ], [ 144.813931, 13.506749 ], [ 144.814085, 13.506806 ], [ 144.814137, 13.506826 ], [ 144.814235, 13.506862 ], [ 144.814531, 13.506973 ], [ 144.81463, 13.50701 ], [ 144.814667, 13.507026 ], [ 144.814782, 13.507074 ], [ 144.81482, 13.50709 ], [ 144.815124, 13.507215 ], [ 144.815288, 13.507282 ], [ 144.81567, 13.50744 ], [ 144.816022, 13.507593 ], [ 144.81659, 13.50784 ], [ 144.81669, 13.507867 ], [ 144.81685, 13.50791 ], [ 144.81719, 13.50794 ], [ 144.81727, 13.50798 ], [ 144.817444, 13.508162 ], [ 144.81751, 13.50823 ], [ 144.81782, 13.50852 ], [ 144.818184, 13.508872 ], [ 144.81843, 13.50911 ], [ 144.818624, 13.509304 ], [ 144.81864, 13.50932 ], [ 144.81873, 13.50924 ], [ 144.8188, 13.509 ], [ 144.81892, 13.50902 ], [ 144.81973, 13.50935 ], [ 144.81974, 13.50931 ], [ 144.81975, 13.50926 ], [ 144.819817, 13.509063 ], [ 144.81986, 13.50894 ], [ 144.82003, 13.508477 ], [ 144.820103, 13.508283 ], [ 144.820141, 13.508178 ], [ 144.82016, 13.50813 ], [ 144.82026, 13.50802 ], [ 144.820303, 13.507894 ], [ 144.82034, 13.50779 ], [ 144.820403, 13.507621 ], [ 144.820595, 13.507116 ], [ 144.82066, 13.506948 ], [ 144.820676, 13.506905 ], [ 144.820725, 13.506777 ], [ 144.820742, 13.506735 ], [ 144.820829, 13.506504 ], [ 144.82093, 13.50624 ], [ 144.821085, 13.505811 ], [ 144.82117, 13.50558 ], [ 144.821224, 13.505391 ], [ 144.8213, 13.50513 ], [ 144.82129, 13.5049 ], [ 144.821282, 13.504813 ], [ 144.82127, 13.50467 ], [ 144.821256, 13.504619 ], [ 144.821243, 13.504574 ], [ 144.82122, 13.50449 ], [ 144.821204, 13.504443 ], [ 144.82119, 13.5044 ], [ 144.821179, 13.504375 ], [ 144.82116, 13.50433 ], [ 144.821146, 13.504302 ], [ 144.821134, 13.504278 ], [ 144.821116, 13.504243 ], [ 144.82109, 13.50419 ], [ 144.82106, 13.504142 ], [ 144.82104, 13.50411 ], [ 144.820932, 13.503939 ], [ 144.82092, 13.50392 ], [ 144.820669, 13.503562 ], [ 144.820586, 13.503444 ], [ 144.82047, 13.50328 ], [ 144.820444, 13.503242 ], [ 144.820366, 13.503127 ], [ 144.82034, 13.50309 ], [ 144.82014, 13.502782 ], [ 144.81999, 13.50255 ], [ 144.81987, 13.50251 ], [ 144.81975, 13.50221 ], [ 144.81971, 13.50206 ], [ 144.81968, 13.501846 ], [ 144.81968, 13.50184 ], [ 144.8197, 13.5017 ], [ 144.819625, 13.501689 ], [ 144.819446, 13.501693 ], [ 144.817628, 13.500689 ], [ 144.81362, 13.498462 ], [ 144.808988, 13.496412 ], [ 144.809148, 13.496077 ], [ 144.809233, 13.495903 ], [ 144.809686, 13.49483 ], [ 144.808705, 13.494382 ], [ 144.807428, 13.493808 ], [ 144.804618, 13.492569 ], [ 144.803614, 13.492226 ], [ 144.803517, 13.492209 ], [ 144.803151, 13.492148 ], [ 144.802766, 13.492068 ], [ 144.802404, 13.492024 ], [ 144.802042, 13.491964 ], [ 144.802052, 13.491874 ], [ 144.802313, 13.491903 ], [ 144.80254, 13.4919 ], [ 144.802739, 13.491861 ], [ 144.802814, 13.49185 ], [ 144.80285, 13.49184 ], [ 144.802966, 13.491787 ], [ 144.803046, 13.491752 ], [ 144.803376, 13.491557 ], [ 144.803546, 13.491372 ], [ 144.803629, 13.491283 ], [ 144.803829, 13.490955 ], [ 144.804116, 13.490243 ], [ 144.804221, 13.490009 ], [ 144.803256, 13.48956 ], [ 144.802011, 13.489071 ], [ 144.802071, 13.488927 ], [ 144.801756, 13.488795 ], [ 144.801735, 13.488787 ], [ 144.801672, 13.488765 ], [ 144.801652, 13.488758 ], [ 144.801637, 13.488752 ], [ 144.801592, 13.488735 ], [ 144.801578, 13.48873 ], [ 144.800816, 13.488396 ], [ 144.799948, 13.488015 ], [ 144.7995, 13.488954 ], [ 144.800103, 13.489218 ], [ 144.800052, 13.489345 ], [ 144.800479, 13.489553 ], [ 144.801217, 13.489887 ], [ 144.801438, 13.489989 ], [ 144.801203, 13.490507 ], [ 144.801048, 13.490853 ], [ 144.801007, 13.49088 ], [ 144.800514, 13.490755 ], [ 144.800402, 13.490726 ], [ 144.800283, 13.490746 ], [ 144.800207, 13.490753 ], [ 144.800122, 13.490762 ], [ 144.800027, 13.490772 ], [ 144.799983, 13.490776 ], [ 144.799908, 13.490784 ], [ 144.799765, 13.490786 ], [ 144.799338, 13.490794 ], [ 144.799196, 13.490798 ], [ 144.79907, 13.490924 ], [ 144.799046, 13.490946 ], [ 144.799001, 13.490991 ], [ 144.798569, 13.491362 ], [ 144.79841, 13.4915 ], [ 144.798222, 13.491557 ], [ 144.79815, 13.49158 ], [ 144.79789, 13.49169 ], [ 144.797695, 13.491814 ], [ 144.79753, 13.49192 ], [ 144.79737, 13.49204 ], [ 144.797125, 13.492252 ], [ 144.79706, 13.49231 ], [ 144.79647, 13.49284 ], [ 144.796366, 13.492925 ], [ 144.79626, 13.49301 ], [ 144.795938, 13.49328 ], [ 144.79575, 13.49344 ], [ 144.79554, 13.49362 ], [ 144.79542, 13.49367 ], [ 144.795269, 13.493811 ], [ 144.79526, 13.49382 ], [ 144.79509, 13.49396 ], [ 144.79466, 13.49434 ], [ 144.794499, 13.494466 ], [ 144.79433, 13.4946 ], [ 144.79424, 13.49468 ], [ 144.794254, 13.494704 ], [ 144.794296, 13.494776 ], [ 144.79431, 13.4948 ], [ 144.794566, 13.495234 ], [ 144.79457, 13.49524 ], [ 144.79507, 13.49603 ], [ 144.79533, 13.49643 ], [ 144.795387, 13.496506 ], [ 144.79569, 13.49691 ], [ 144.79578, 13.497031 ], [ 144.79586, 13.49714 ], [ 144.79606, 13.49739 ], [ 144.796155, 13.497509 ], [ 144.796175, 13.497535 ], [ 144.796238, 13.497613 ], [ 144.79626, 13.49764 ], [ 144.796537, 13.497991 ], [ 144.7966, 13.49807 ], [ 144.79711, 13.49871 ], [ 144.797373, 13.499044 ], [ 144.79759, 13.49932 ], [ 144.79765, 13.499397 ], [ 144.797684, 13.499441 ], [ 144.797786, 13.499573 ], [ 144.797821, 13.499618 ], [ 144.797864, 13.499674 ], [ 144.797996, 13.499843 ], [ 144.79804, 13.4999 ], [ 144.798095, 13.499971 ], [ 144.798261, 13.500186 ], [ 144.798317, 13.500258 ], [ 144.798343, 13.500292 ], [ 144.798423, 13.500395 ], [ 144.79845, 13.50043 ], [ 144.798616, 13.500642 ], [ 144.79906, 13.50121 ], [ 144.799121, 13.501277 ], [ 144.79917, 13.50133 ], [ 144.7993, 13.50148 ], [ 144.79916, 13.50155 ], [ 144.79907, 13.50158 ], [ 144.799045, 13.501587 ], [ 144.7987, 13.50169 ], [ 144.79856, 13.50178 ], [ 144.798266, 13.501863 ], [ 144.798, 13.50194 ], [ 144.79791, 13.50193 ], [ 144.797881, 13.501939 ], [ 144.797751, 13.50198 ], [ 144.797536, 13.502048 ], [ 144.79753, 13.50205 ], [ 144.79746, 13.50214 ], [ 144.79727, 13.50222 ], [ 144.797111, 13.502299 ], [ 144.79711, 13.5023 ], [ 144.79699, 13.50238 ], [ 144.79688, 13.50244 ], [ 144.79676, 13.50247 ], [ 144.79652, 13.50262 ], [ 144.79636, 13.50276 ], [ 144.79627, 13.50288 ], [ 144.796221, 13.502977 ], [ 144.79622, 13.50298 ], [ 144.79611, 13.50324 ], [ 144.79607, 13.50333 ], [ 144.795975, 13.503294 ], [ 144.795694, 13.503186 ], [ 144.7956, 13.50315 ], [ 144.79556, 13.503135 ], [ 144.79544, 13.503093 ], [ 144.7954, 13.50308 ], [ 144.79458, 13.502755 ], [ 144.794525, 13.50268 ], [ 144.794094, 13.502515 ], [ 144.793808, 13.502405 ], [ 144.793563, 13.502362 ], [ 144.793216, 13.502228 ], [ 144.793106, 13.50212 ], [ 144.792722, 13.501977 ], [ 144.792609, 13.50192 ], [ 144.79247, 13.501912 ], [ 144.79182, 13.501688 ], [ 144.791733, 13.50167 ], [ 144.791368, 13.501593 ], [ 144.791293, 13.501579 ], [ 144.79113, 13.50155 ], [ 144.791075, 13.501518 ], [ 144.79101, 13.50148 ], [ 144.790818, 13.501442 ], [ 144.79035, 13.50135 ], [ 144.79025, 13.50138 ], [ 144.790245, 13.501379 ], [ 144.790053, 13.501348 ], [ 144.78989, 13.501321 ], [ 144.78964, 13.50128 ], [ 144.78945, 13.50124 ], [ 144.789404, 13.50124 ], [ 144.78932, 13.50124 ], [ 144.78924, 13.50123 ], [ 144.789216, 13.50123 ], [ 144.789144, 13.50123 ], [ 144.78912, 13.50123 ], [ 144.78903, 13.50122 ], [ 144.78886, 13.50124 ], [ 144.788748, 13.501262 ], [ 144.78866, 13.50128 ], [ 144.78845, 13.50133 ], [ 144.78823, 13.50142 ], [ 144.78796, 13.50155 ], [ 144.78787, 13.50159 ], [ 144.787705, 13.501672 ], [ 144.78737, 13.50184 ], [ 144.78721, 13.50189 ], [ 144.787157, 13.501914 ], [ 144.78679, 13.50209 ], [ 144.78655, 13.50217 ], [ 144.786535, 13.502174 ], [ 144.78632, 13.50224 ], [ 144.786101, 13.502286 ], [ 144.78599, 13.50231 ], [ 144.78553, 13.50238 ], [ 144.78544, 13.502389 ], [ 144.78534, 13.5024 ], [ 144.78522, 13.50238 ], [ 144.785138, 13.502956 ], [ 144.784799, 13.503528 ], [ 144.78477, 13.503574 ], [ 144.784288, 13.50436 ], [ 144.783378, 13.505805 ], [ 144.782607, 13.506818 ], [ 144.782419, 13.507067 ], [ 144.782299, 13.507394 ], [ 144.782247, 13.508033 ], [ 144.782301, 13.508038 ], [ 144.782428, 13.508034 ], [ 144.782506, 13.508044 ], [ 144.782691, 13.508084 ], [ 144.782711, 13.508104 ], [ 144.78275, 13.508109 ], [ 144.782788, 13.508133 ], [ 144.782803, 13.508157 ], [ 144.782847, 13.508172 ], [ 144.782881, 13.508201 ], [ 144.782988, 13.508197 ], [ 144.783027, 13.508212 ], [ 144.78308, 13.50827 ], [ 144.783114, 13.508289 ], [ 144.783163, 13.508294 ], [ 144.783197, 13.508323 ], [ 144.783227, 13.508314 ], [ 144.783326, 13.508251 ], [ 144.783349, 13.508258 ], [ 144.783356, 13.508258 ], [ 144.783393, 13.508258 ], [ 144.783437, 13.508268 ], [ 144.783442, 13.508234 ], [ 144.783457, 13.508211 ], [ 144.783492, 13.508201 ], [ 144.783531, 13.508187 ], [ 144.78355, 13.508168 ], [ 144.783575, 13.50813 ], [ 144.783605, 13.508112 ], [ 144.783635, 13.508054 ], [ 144.783669, 13.50804 ], [ 144.783694, 13.507974 ], [ 144.783748, 13.507941 ], [ 144.783807, 13.507913 ], [ 144.783846, 13.507889 ], [ 144.78394, 13.507842 ], [ 144.783999, 13.507804 ], [ 144.784062, 13.507781 ], [ 144.78414, 13.507777 ], [ 144.784175, 13.507768 ], [ 144.784204, 13.507753 ], [ 144.784288, 13.507697 ], [ 144.784327, 13.507678 ], [ 144.784366, 13.507664 ], [ 144.784386, 13.507645 ], [ 144.784391, 13.507626 ], [ 144.784425, 13.507636 ], [ 144.784459, 13.507641 ], [ 144.784528, 13.507637 ], [ 144.784557, 13.507627 ], [ 144.784582, 13.507642 ], [ 144.78462, 13.507676 ], [ 144.784645, 13.507686 ], [ 144.78465, 13.507652 ], [ 144.78468, 13.507614 ], [ 144.784749, 13.507543 ], [ 144.784759, 13.507519 ], [ 144.784759, 13.507491 ], [ 144.784769, 13.507467 ], [ 144.784793, 13.507457 ], [ 144.784823, 13.507458 ], [ 144.784847, 13.507444 ], [ 144.784877, 13.507406 ], [ 144.784902, 13.507387 ], [ 144.784936, 13.507368 ], [ 144.784975, 13.507373 ], [ 144.785039, 13.507369 ], [ 144.785087, 13.50736 ], [ 144.785112, 13.507365 ], [ 144.785146, 13.50736 ], [ 144.785181, 13.507337 ], [ 144.785195, 13.507318 ], [ 144.785239, 13.507304 ], [ 144.785284, 13.507275 ], [ 144.785373, 13.507166 ], [ 144.785491, 13.507071 ], [ 144.785555, 13.506996 ], [ 144.785599, 13.506958 ], [ 144.785653, 13.50692 ], [ 144.785739, 13.506882 ], [ 144.785769, 13.50684 ], [ 144.785848, 13.506812 ], [ 144.785906, 13.506774 ], [ 144.785955, 13.506765 ], [ 144.786, 13.506751 ], [ 144.786012, 13.506736 ], [ 144.786029, 13.506703 ], [ 144.786039, 13.50667 ], [ 144.786074, 13.506646 ], [ 144.786108, 13.506613 ], [ 144.786143, 13.50657 ], [ 144.786153, 13.506542 ], [ 144.786201, 13.506489 ], [ 144.786232, 13.506456 ], [ 144.786281, 13.506423 ], [ 144.78631, 13.506424 ], [ 144.786335, 13.506438 ], [ 144.786374, 13.506439 ], [ 144.786473, 13.50632 ], [ 144.786468, 13.506248 ], [ 144.786475, 13.506076 ], [ 144.786485, 13.506019 ], [ 144.786481, 13.505966 ], [ 144.786491, 13.505904 ], [ 144.786521, 13.505837 ], [ 144.786571, 13.505694 ], [ 144.786646, 13.505561 ], [ 144.786668, 13.505494 ], [ 144.786703, 13.505447 ], [ 144.786757, 13.505404 ], [ 144.786782, 13.505347 ], [ 144.786807, 13.505323 ], [ 144.786856, 13.505314 ], [ 144.786915, 13.505296 ], [ 144.786998, 13.505244 ], [ 144.787082, 13.505168 ], [ 144.787121, 13.505125 ], [ 144.787175, 13.505102 ], [ 144.787215, 13.505078 ], [ 144.787225, 13.50505 ], [ 144.787259, 13.505026 ], [ 144.787337, 13.505008 ], [ 144.787372, 13.50497 ], [ 144.78745, 13.504942 ], [ 144.787469, 13.504918 ], [ 144.78749, 13.504894 ], [ 144.787529, 13.504866 ], [ 144.787578, 13.504838 ], [ 144.787618, 13.504781 ], [ 144.787647, 13.504776 ], [ 144.787731, 13.504748 ], [ 144.78779, 13.50472 ], [ 144.787834, 13.504687 ], [ 144.787878, 13.504668 ], [ 144.788059, 13.50466 ], [ 144.788123, 13.504646 ], [ 144.788245, 13.504643 ], [ 144.788352, 13.504634 ], [ 144.788563, 13.504588 ], [ 144.78869, 13.50457 ], [ 144.788786, 13.504547 ], [ 144.788947, 13.504486 ], [ 144.789193, 13.504364 ], [ 144.789332, 13.5043 ], [ 144.789521, 13.504276 ], [ 144.789639, 13.504249 ], [ 144.789893, 13.504227 ], [ 144.79002, 13.504228 ], [ 144.790113, 13.504238 ], [ 144.790196, 13.504239 ], [ 144.790308, 13.50425 ], [ 144.790396, 13.50425 ], [ 144.79045, 13.504251 ], [ 144.790533, 13.504261 ], [ 144.790587, 13.504262 ], [ 144.790616, 13.504267 ], [ 144.790645, 13.504301 ], [ 144.790684, 13.50431 ], [ 144.790708, 13.504325 ], [ 144.790842, 13.504341 ], [ 144.791023, 13.50438 ], [ 144.791311, 13.504426 ], [ 144.791392, 13.504441 ], [ 144.791467, 13.504456 ], [ 144.791618, 13.504496 ], [ 144.791779, 13.504531 ], [ 144.791959, 13.504589 ], [ 144.792285, 13.504712 ], [ 144.792577, 13.504829 ], [ 144.79266, 13.504868 ], [ 144.792738, 13.504917 ], [ 144.792798, 13.504937 ], [ 144.792984, 13.505 ], [ 144.793169, 13.505102 ], [ 144.793349, 13.50518 ], [ 144.793533, 13.505321 ], [ 144.79366, 13.505384 ], [ 144.793752, 13.505404 ], [ 144.793811, 13.505433 ], [ 144.793894, 13.505458 ], [ 144.794069, 13.505454 ], [ 144.79429, 13.505437 ], [ 144.794602, 13.505473 ], [ 144.79467, 13.505493 ], [ 144.794753, 13.505508 ], [ 144.794873, 13.505524 ], [ 144.794951, 13.505558 ], [ 144.795004, 13.505601 ], [ 144.79516, 13.505588 ], [ 144.795229, 13.505603 ], [ 144.795311, 13.505638 ], [ 144.795379, 13.505686 ], [ 144.795652, 13.505794 ], [ 144.795789, 13.505833 ], [ 144.795945, 13.505868 ], [ 144.796061, 13.505907 ], [ 144.796451, 13.506021 ], [ 144.796549, 13.50606 ], [ 144.796617, 13.506079 ], [ 144.796705, 13.506114 ], [ 144.796902, 13.506173 ], [ 144.797014, 13.506188 ], [ 144.797027, 13.506193 ], [ 144.797126, 13.506232 ], [ 144.797238, 13.506271 ], [ 144.797345, 13.506315 ], [ 144.797624, 13.506445 ], [ 144.79771, 13.506486 ], [ 144.797842, 13.506559 ], [ 144.798031, 13.506694 ], [ 144.798182, 13.506786 ], [ 144.798343, 13.506895 ], [ 144.798361, 13.506907 ], [ 144.798415, 13.506943 ], [ 144.798434, 13.506956 ], [ 144.798453, 13.506971 ], [ 144.79851, 13.507019 ], [ 144.79853, 13.507036 ], [ 144.79858, 13.507077 ], [ 144.798662, 13.507154 ], [ 144.798999, 13.507401 ], [ 144.79914, 13.507522 ], [ 144.799156, 13.507533 ], [ 144.799193, 13.50758 ], [ 144.799219, 13.507605 ], [ 144.7993, 13.507681 ], [ 144.799372, 13.507768 ], [ 144.799445, 13.507826 ], [ 144.799552, 13.507898 ], [ 144.799649, 13.507971 ], [ 144.799746, 13.508053 ], [ 144.799906, 13.508207 ], [ 144.799925, 13.508255 ], [ 144.799997, 13.508352 ], [ 144.800046, 13.508395 ], [ 144.800104, 13.508434 ], [ 144.800153, 13.508473 ], [ 144.800205, 13.508559 ], [ 144.80022, 13.508602 ], [ 144.800273, 13.508665 ], [ 144.800372, 13.508771 ], [ 144.80044, 13.508862 ], [ 144.800532, 13.508954 ], [ 144.800589, 13.509045 ], [ 144.800662, 13.509132 ], [ 144.800769, 13.509238 ], [ 144.800817, 13.509277 ], [ 144.800856, 13.509296 ], [ 144.8009, 13.509335 ], [ 144.800996, 13.50947 ], [ 144.801049, 13.509523 ], [ 144.801054, 13.509533 ], [ 144.801083, 13.50959 ], [ 144.801117, 13.509638 ], [ 144.801131, 13.509701 ], [ 144.80113, 13.509734 ], [ 144.801145, 13.509777 ], [ 144.801178, 13.50983 ], [ 144.801314, 13.510003 ], [ 144.801362, 13.510085 ], [ 144.801422, 13.510167 ], [ 144.801436, 13.510248 ], [ 144.801476, 13.510306 ], [ 144.801489, 13.510325 ], [ 144.801566, 13.510426 ], [ 144.801624, 13.510513 ], [ 144.801632, 13.51053 ], [ 144.801687, 13.510647 ], [ 144.801768, 13.510777 ], [ 144.801787, 13.510849 ], [ 144.801816, 13.510935 ], [ 144.801854, 13.510984 ], [ 144.801873, 13.51106 ], [ 144.801907, 13.511128 ], [ 144.801955, 13.511204 ], [ 144.801984, 13.511263 ], [ 144.801989, 13.511272 ], [ 144.802022, 13.511325 ], [ 144.802099, 13.511478 ], [ 144.80211, 13.511506 ], [ 144.802135, 13.511574 ], [ 144.802212, 13.511671 ], [ 144.80227, 13.511762 ], [ 144.802362, 13.511892 ], [ 144.802439, 13.511983 ], [ 144.802546, 13.512094 ], [ 144.802627, 13.512219 ], [ 144.802666, 13.512291 ], [ 144.802715, 13.512355 ], [ 144.802758, 13.512412 ], [ 144.802825, 13.512508 ], [ 144.802888, 13.51259 ], [ 144.802941, 13.512681 ], [ 144.803013, 13.512782 ], [ 144.803056, 13.512878 ], [ 144.803102, 13.51296 ], [ 144.803184, 13.513075 ], [ 144.80329, 13.513234 ], [ 144.803367, 13.513359 ], [ 144.803454, 13.513479 ], [ 144.803546, 13.513624 ], [ 144.803715, 13.513845 ], [ 144.803793, 13.513939 ], [ 144.803811, 13.513985 ], [ 144.803874, 13.514076 ], [ 144.80397, 13.514182 ], [ 144.804038, 13.514278 ], [ 144.804188, 13.514466 ], [ 144.804323, 13.514606 ], [ 144.804454, 13.514784 ], [ 144.804535, 13.514912 ], [ 144.804627, 13.515058 ], [ 144.8047, 13.515126 ], [ 144.804758, 13.515217 ], [ 144.804801, 13.515294 ], [ 144.804902, 13.515443 ], [ 144.80494, 13.515544 ], [ 144.805008, 13.515645 ], [ 144.805017, 13.515697 ], [ 144.805066, 13.515741 ], [ 144.805087, 13.51579 ], [ 144.805089, 13.515794 ], [ 144.805103, 13.51587 ], [ 144.805147, 13.515928 ], [ 144.805205, 13.516034 ], [ 144.805243, 13.516115 ], [ 144.805276, 13.516202 ], [ 144.805295, 13.516293 ], [ 144.805331, 13.516398 ], [ 144.805358, 13.516604 ], [ 144.805372, 13.516676 ], [ 144.805435, 13.516796 ], [ 144.805458, 13.516873 ], [ 144.805456, 13.517098 ], [ 144.80548, 13.517179 ], [ 144.805484, 13.517222 ], [ 144.805513, 13.517309 ], [ 144.805532, 13.517352 ], [ 144.805571, 13.517395 ], [ 144.805619, 13.51752 ], [ 144.805638, 13.517549 ], [ 144.805662, 13.517611 ], [ 144.805676, 13.517697 ], [ 144.805702, 13.517793 ], [ 144.805749, 13.517927 ], [ 144.805757, 13.517944 ], [ 144.805766, 13.51799 ], [ 144.805785, 13.518014 ], [ 144.805814, 13.518038 ], [ 144.805824, 13.518062 ], [ 144.80583, 13.518096 ], [ 144.805833, 13.51811 ], [ 144.805847, 13.518158 ], [ 144.805905, 13.518254 ], [ 144.805943, 13.518374 ], [ 144.805962, 13.518484 ], [ 144.805966, 13.518532 ], [ 144.806068, 13.518638 ], [ 144.806077, 13.518691 ], [ 144.806065, 13.518705 ], [ 144.806079, 13.518762 ], [ 144.806112, 13.51882 ], [ 144.806141, 13.518854 ], [ 144.80619, 13.518935 ], [ 144.806203, 13.519093 ], [ 144.806202, 13.51917 ], [ 144.806221, 13.519213 ], [ 144.806255, 13.519256 ], [ 144.80622, 13.519352 ], [ 144.80618, 13.519394 ], [ 144.80618, 13.519447 ], [ 144.806214, 13.519466 ], [ 144.806253, 13.5195 ], [ 144.806302, 13.519501 ], [ 144.806341, 13.51953 ], [ 144.806369, 13.519626 ], [ 144.806373, 13.519669 ], [ 144.806363, 13.519731 ], [ 144.806352, 13.519869 ], [ 144.806332, 13.519912 ], [ 144.806298, 13.519945 ], [ 144.806275, 13.519993 ], [ 144.806299, 13.520017 ], [ 144.806329, 13.520036 ], [ 144.806318, 13.520113 ], [ 144.806293, 13.520156 ], [ 144.806254, 13.520194 ], [ 144.806229, 13.520208 ], [ 144.806214, 13.520251 ], [ 144.806209, 13.520284 ], [ 144.806189, 13.520351 ], [ 144.806184, 13.520394 ], [ 144.806193, 13.520432 ], [ 144.806192, 13.520485 ], [ 144.806173, 13.520499 ], [ 144.806167, 13.520552 ], [ 144.806153, 13.520575 ], [ 144.806142, 13.520609 ], [ 144.806123, 13.520623 ], [ 144.806079, 13.520646 ], [ 144.806078, 13.520685 ], [ 144.806059, 13.520694 ], [ 144.806058, 13.520727 ], [ 144.806043, 13.520761 ], [ 144.806019, 13.520761 ], [ 144.805995, 13.520746 ], [ 144.805941, 13.520746 ], [ 144.805911, 13.520779 ], [ 144.80594, 13.520827 ], [ 144.805935, 13.52087 ], [ 144.80592, 13.520903 ], [ 144.805905, 13.520917 ], [ 144.805861, 13.520917 ], [ 144.805822, 13.520902 ], [ 144.805793, 13.520883 ], [ 144.805793, 13.520854 ], [ 144.805789, 13.520835 ], [ 144.805759, 13.52082 ], [ 144.805691, 13.520839 ], [ 144.805603, 13.520829 ], [ 144.805569, 13.520833 ], [ 144.805515, 13.520828 ], [ 144.805504, 13.520813 ], [ 144.805466, 13.520808 ], [ 144.805447, 13.520818 ], [ 144.805446, 13.520866 ], [ 144.805397, 13.52086 ], [ 144.805378, 13.520851 ], [ 144.805354, 13.520831 ], [ 144.805329, 13.520831 ], [ 144.805285, 13.520845 ], [ 144.805261, 13.520835 ], [ 144.805192, 13.520844 ], [ 144.805173, 13.520834 ], [ 144.805134, 13.520829 ], [ 144.80509, 13.520834 ], [ 144.805055, 13.520848 ], [ 144.805016, 13.520833 ], [ 144.804973, 13.520823 ], [ 144.804929, 13.520828 ], [ 144.804894, 13.520846 ], [ 144.80487, 13.520865 ], [ 144.80484, 13.52087 ], [ 144.804821, 13.520879 ], [ 144.80484, 13.520908 ], [ 144.80482, 13.520927 ], [ 144.804791, 13.520922 ], [ 144.804756, 13.520936 ], [ 144.804712, 13.520974 ], [ 144.804688, 13.520969 ], [ 144.804654, 13.520954 ], [ 144.804614, 13.520987 ], [ 144.80458, 13.521025 ], [ 144.804545, 13.521035 ], [ 144.804511, 13.521039 ], [ 144.804506, 13.521092 ], [ 144.804457, 13.52112 ], [ 144.804427, 13.521153 ], [ 144.804408, 13.521148 ], [ 144.804383, 13.521124 ], [ 144.804364, 13.521124 ], [ 144.804334, 13.521138 ], [ 144.8043, 13.521176 ], [ 144.804266, 13.521176 ], [ 144.804207, 13.521185 ], [ 144.804148, 13.521189 ], [ 144.804104, 13.521212 ], [ 144.804065, 13.521226 ], [ 144.804011, 13.521231 ], [ 144.803987, 13.521216 ], [ 144.803948, 13.521206 ], [ 144.803908, 13.521235 ], [ 144.80389, 13.521228 ], [ 144.803874, 13.521215 ], [ 144.803855, 13.521215 ], [ 144.803845, 13.521239 ], [ 144.80382, 13.521229 ], [ 144.803777, 13.5212 ], [ 144.803659, 13.521199 ], [ 144.803596, 13.521194 ], [ 144.803571, 13.521203 ], [ 144.803532, 13.521231 ], [ 144.803522, 13.521274 ], [ 144.803502, 13.521312 ], [ 144.803482, 13.521365 ], [ 144.803462, 13.521384 ], [ 144.803462, 13.521417 ], [ 144.803471, 13.521446 ], [ 144.8035, 13.521484 ], [ 144.80351, 13.521537 ], [ 144.80349, 13.521585 ], [ 144.803509, 13.521609 ], [ 144.803519, 13.521642 ], [ 144.803494, 13.52169 ], [ 144.803483, 13.521757 ], [ 144.803483, 13.52179 ], [ 144.803463, 13.521809 ], [ 144.803439, 13.521823 ], [ 144.803429, 13.521857 ], [ 144.803443, 13.521895 ], [ 144.803433, 13.521933 ], [ 144.803428, 13.521972 ], [ 144.803398, 13.521986 ], [ 144.803378, 13.522 ], [ 144.803368, 13.522043 ], [ 144.803324, 13.522052 ], [ 144.803314, 13.52209 ], [ 144.803289, 13.522114 ], [ 144.803289, 13.522157 ], [ 144.803279, 13.522214 ], [ 144.803254, 13.522228 ], [ 144.803229, 13.522248 ], [ 144.80322, 13.522257 ], [ 144.803215, 13.522285 ], [ 144.803224, 13.522314 ], [ 144.803243, 13.522348 ], [ 144.803272, 13.522377 ], [ 144.803292, 13.52241 ], [ 144.803291, 13.522439 ], [ 144.803281, 13.522463 ], [ 144.803291, 13.522496 ], [ 144.80331, 13.522525 ], [ 144.803339, 13.52253 ], [ 144.803369, 13.522521 ], [ 144.803408, 13.522517 ], [ 144.803462, 13.52246 ], [ 144.803531, 13.522432 ], [ 144.803548, 13.522441 ], [ 144.803569, 13.52248 ], [ 144.803579, 13.522523 ], [ 144.803583, 13.522618 ], [ 144.80357, 13.522671 ], [ 144.803554, 13.522876 ], [ 144.803558, 13.522948 ], [ 144.803553, 13.522996 ], [ 144.803542, 13.523044 ], [ 144.803542, 13.523087 ], [ 144.803536, 13.523149 ], [ 144.803522, 13.523182 ], [ 144.803521, 13.52323 ], [ 144.803545, 13.523278 ], [ 144.80355, 13.523312 ], [ 144.803544, 13.523383 ], [ 144.803529, 13.523412 ], [ 144.803557, 13.523522 ], [ 144.803576, 13.523623 ], [ 144.803634, 13.523724 ], [ 144.803648, 13.523786 ], [ 144.803648, 13.523829 ], [ 144.803667, 13.523867 ], [ 144.803705, 13.52392 ], [ 144.803719, 13.523987 ], [ 144.803764, 13.524155 ], [ 144.803782, 13.52425 ], [ 144.803828, 13.524435 ], [ 144.804005, 13.524997 ], [ 144.804043, 13.525481 ], [ 144.803979, 13.52569 ], [ 144.803788, 13.525759 ], [ 144.803587, 13.525851 ], [ 144.803439, 13.525931 ], [ 144.803355, 13.52604 ], [ 144.803351, 13.526144 ], [ 144.803341, 13.526363 ], [ 144.803339, 13.526412 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "950502", "GEOID10": "66010950502", "NAME10": "9505.02", "NAMELSAD10": "Census Tract 9505.02", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 9857106, "AWATER10": 0, "INTPTLAT10": "+13.5526020", "INTPTLON10": "+144.8856695" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.876932, 13.550607 ], [ 144.876816, 13.551108 ], [ 144.87674, 13.55187 ], [ 144.87623, 13.55525 ], [ 144.875713, 13.558642 ], [ 144.875575, 13.55969 ], [ 144.875755, 13.563547 ], [ 144.875767, 13.564269 ], [ 144.876113, 13.564304 ], [ 144.876215, 13.564307 ], [ 144.876521, 13.564318 ], [ 144.876623, 13.564322 ], [ 144.877139, 13.56434 ], [ 144.87853, 13.56439 ], [ 144.878688, 13.564404 ], [ 144.87875, 13.56441 ], [ 144.87896, 13.56441 ], [ 144.8792, 13.56439 ], [ 144.879204, 13.56439 ], [ 144.879516, 13.564409 ], [ 144.87952, 13.56441 ], [ 144.87963, 13.5644 ], [ 144.87977, 13.56437 ], [ 144.87991, 13.56432 ], [ 144.8801, 13.5643 ], [ 144.88034, 13.56429 ], [ 144.880438, 13.564309 ], [ 144.88049, 13.56432 ], [ 144.88068, 13.56443 ], [ 144.880711, 13.564456 ], [ 144.88064, 13.564494 ], [ 144.880576, 13.564548 ], [ 144.880526, 13.564597 ], [ 144.880407, 13.564716 ], [ 144.880693, 13.565608 ], [ 144.881096, 13.566862 ], [ 144.881153, 13.567124 ], [ 144.880204, 13.568983 ], [ 144.880057, 13.569112 ], [ 144.879912, 13.569154 ], [ 144.879902, 13.569158 ], [ 144.87977, 13.569065 ], [ 144.879306, 13.569031 ], [ 144.878986, 13.56903 ], [ 144.878913, 13.569132 ], [ 144.87895, 13.569386 ], [ 144.87893, 13.569532 ], [ 144.87889, 13.56984 ], [ 144.87891, 13.56984 ], [ 144.87912, 13.56987 ], [ 144.87933, 13.56994 ], [ 144.87966, 13.57001 ], [ 144.87974, 13.57008 ], [ 144.87998, 13.5707 ], [ 144.88016, 13.57115 ], [ 144.88025, 13.57136 ], [ 144.88029, 13.57153 ], [ 144.88035, 13.57169 ], [ 144.88044, 13.57176 ], [ 144.88062, 13.57178 ], [ 144.88074, 13.57186 ], [ 144.88098, 13.57179 ], [ 144.88136, 13.57178 ], [ 144.8816, 13.57178 ], [ 144.88181, 13.57183 ], [ 144.88206, 13.57192 ], [ 144.88235, 13.57208 ], [ 144.88268, 13.57238 ], [ 144.88351, 13.57304 ], [ 144.88426, 13.57372 ], [ 144.8846, 13.57398 ], [ 144.88576, 13.57495 ], [ 144.88679, 13.5758 ], [ 144.88803, 13.57681 ], [ 144.88817, 13.57698 ], [ 144.88857, 13.57751 ], [ 144.88891, 13.57782 ], [ 144.88924, 13.57806 ], [ 144.8897, 13.57824 ], [ 144.89038, 13.57848 ], [ 144.89072, 13.57862 ], [ 144.89095, 13.57875 ], [ 144.8913, 13.57905 ], [ 144.89181, 13.57953 ], [ 144.89214, 13.57913 ], [ 144.89251, 13.57866 ], [ 144.89287, 13.57816 ], [ 144.893229, 13.577671 ], [ 144.8937, 13.57703 ], [ 144.894521, 13.575891 ], [ 144.89466, 13.5757 ], [ 144.89539, 13.57471 ], [ 144.89596, 13.57391 ], [ 144.896204, 13.573555 ], [ 144.89625, 13.57349 ], [ 144.89632, 13.57338 ], [ 144.89641, 13.57324 ], [ 144.89654, 13.57298 ], [ 144.896741, 13.572451 ], [ 144.89678, 13.57235 ], [ 144.897045, 13.571603 ], [ 144.89726, 13.571 ], [ 144.897389, 13.570662 ], [ 144.89749, 13.5704 ], [ 144.897763, 13.569643 ], [ 144.897886, 13.569303 ], [ 144.89801, 13.56896 ], [ 144.898094, 13.568728 ], [ 144.898721, 13.567006 ], [ 144.89875, 13.56693 ], [ 144.898923, 13.56643 ], [ 144.89901, 13.56618 ], [ 144.899039, 13.566102 ], [ 144.899068, 13.566029 ], [ 144.89917, 13.56577 ], [ 144.89927, 13.56547 ], [ 144.89934, 13.56523 ], [ 144.89941, 13.56516 ], [ 144.89946, 13.56492 ], [ 144.89948, 13.56462 ], [ 144.89946, 13.56437 ], [ 144.89946, 13.56429 ], [ 144.899438, 13.564107 ], [ 144.89941, 13.56388 ], [ 144.89937, 13.56369 ], [ 144.899316, 13.563515 ], [ 144.8993, 13.56346 ], [ 144.89923, 13.5634 ], [ 144.899184, 13.563285 ], [ 144.899048, 13.562941 ], [ 144.89904, 13.56292 ], [ 144.899001, 13.562828 ], [ 144.89896, 13.56273 ], [ 144.89889, 13.5627 ], [ 144.89885, 13.562599 ], [ 144.898531, 13.561789 ], [ 144.898425, 13.56152 ], [ 144.898393, 13.561441 ], [ 144.89833, 13.56128 ], [ 144.898299, 13.561204 ], [ 144.898267, 13.561126 ], [ 144.898258, 13.561104 ], [ 144.898231, 13.56104 ], [ 144.898223, 13.561019 ], [ 144.898211, 13.56099 ], [ 144.898175, 13.560903 ], [ 144.898164, 13.560875 ], [ 144.898153, 13.560848 ], [ 144.89812, 13.560768 ], [ 144.898109, 13.560742 ], [ 144.898093, 13.560703 ], [ 144.898045, 13.560588 ], [ 144.89803, 13.56055 ], [ 144.897968, 13.560377 ], [ 144.897782, 13.559861 ], [ 144.89772, 13.55969 ], [ 144.897654, 13.559529 ], [ 144.897635, 13.559481 ], [ 144.897383, 13.558855 ], [ 144.897299, 13.558647 ], [ 144.897261, 13.558553 ], [ 144.897147, 13.558273 ], [ 144.89711, 13.55818 ], [ 144.89704, 13.557997 ], [ 144.89683, 13.557451 ], [ 144.89676, 13.55727 ], [ 144.89674, 13.55722 ], [ 144.896681, 13.557072 ], [ 144.896662, 13.557023 ], [ 144.896604, 13.556878 ], [ 144.896432, 13.556443 ], [ 144.896375, 13.556299 ], [ 144.89626, 13.55601 ], [ 144.896221, 13.55591 ], [ 144.895766, 13.554741 ], [ 144.895615, 13.554352 ], [ 144.895572, 13.554241 ], [ 144.895519, 13.554106 ], [ 144.895443, 13.55391 ], [ 144.8954, 13.5538 ], [ 144.895321, 13.553602 ], [ 144.895219, 13.553342 ], [ 144.8948, 13.55228 ], [ 144.89467, 13.551973 ], [ 144.89448, 13.55152 ], [ 144.894352, 13.551184 ], [ 144.893968, 13.550176 ], [ 144.89384, 13.54984 ], [ 144.893805, 13.549752 ], [ 144.893703, 13.549488 ], [ 144.89367, 13.5494 ], [ 144.893561, 13.549124 ], [ 144.893234, 13.548299 ], [ 144.89316, 13.54811 ], [ 144.893127, 13.548024 ], [ 144.893037, 13.547789 ], [ 144.892767, 13.547087 ], [ 144.892678, 13.546853 ], [ 144.892642, 13.54676 ], [ 144.892535, 13.546482 ], [ 144.8925, 13.54639 ], [ 144.892306, 13.545895 ], [ 144.891724, 13.544413 ], [ 144.89153, 13.54392 ], [ 144.891418, 13.543632 ], [ 144.891082, 13.542769 ], [ 144.89097, 13.542482 ], [ 144.890944, 13.542415 ], [ 144.890866, 13.542216 ], [ 144.89084, 13.54215 ], [ 144.890772, 13.541981 ], [ 144.8907, 13.5418 ], [ 144.890561, 13.541478 ], [ 144.89049, 13.541312 ], [ 144.890476, 13.541279 ], [ 144.890434, 13.541182 ], [ 144.89042, 13.54115 ], [ 144.8903, 13.54085 ], [ 144.889943, 13.539953 ], [ 144.889824, 13.539654 ], [ 144.88981, 13.53962 ], [ 144.889655, 13.539257 ], [ 144.889193, 13.538173 ], [ 144.888984, 13.537695 ], [ 144.88901, 13.53765 ], [ 144.888842, 13.537303 ], [ 144.88858, 13.53676 ], [ 144.88835, 13.536259 ], [ 144.88819, 13.53591 ], [ 144.88818, 13.53589 ], [ 144.88815, 13.53583 ], [ 144.88814, 13.53581 ], [ 144.888116, 13.535762 ], [ 144.888044, 13.535618 ], [ 144.88802, 13.53557 ], [ 144.887898, 13.535327 ], [ 144.88779, 13.53511 ], [ 144.88773, 13.535 ], [ 144.88759, 13.53473 ], [ 144.887535, 13.534599 ], [ 144.88743, 13.53435 ], [ 144.887406, 13.534287 ], [ 144.887334, 13.534101 ], [ 144.88731, 13.53404 ], [ 144.887255, 13.533906 ], [ 144.887117, 13.533567 ], [ 144.887093, 13.533508 ], [ 144.887039, 13.533375 ], [ 144.887023, 13.533336 ], [ 144.886975, 13.533219 ], [ 144.88696, 13.53318 ], [ 144.88692, 13.53308 ], [ 144.8868, 13.532779 ], [ 144.88676, 13.53268 ], [ 144.88675, 13.532654 ], [ 144.88672, 13.532576 ], [ 144.88671, 13.53255 ], [ 144.886632, 13.532356 ], [ 144.886398, 13.531774 ], [ 144.88632, 13.53158 ], [ 144.886186, 13.531251 ], [ 144.885784, 13.530267 ], [ 144.88565, 13.52994 ], [ 144.885615, 13.529852 ], [ 144.885511, 13.52959 ], [ 144.885477, 13.529503 ], [ 144.885451, 13.529438 ], [ 144.885375, 13.529244 ], [ 144.88535, 13.52918 ], [ 144.88532, 13.529107 ], [ 144.885231, 13.528888 ], [ 144.885202, 13.528816 ], [ 144.88519, 13.528788 ], [ 144.885157, 13.528705 ], [ 144.885146, 13.528678 ], [ 144.88512, 13.528616 ], [ 144.885045, 13.528431 ], [ 144.88502, 13.52837 ], [ 144.884949, 13.528213 ], [ 144.8848, 13.52788 ], [ 144.884725, 13.527749 ], [ 144.88464, 13.5276 ], [ 144.884568, 13.527439 ], [ 144.88438, 13.52702 ], [ 144.884347, 13.526962 ], [ 144.88426, 13.52681 ], [ 144.884222, 13.526748 ], [ 144.884108, 13.526562 ], [ 144.88407, 13.5265 ], [ 144.883978, 13.526358 ], [ 144.88383, 13.52613 ], [ 144.883696, 13.525938 ], [ 144.8836, 13.5258 ], [ 144.883534, 13.525712 ], [ 144.883336, 13.525447 ], [ 144.88327, 13.52536 ], [ 144.883214, 13.52529 ], [ 144.883046, 13.52508 ], [ 144.88299, 13.52501 ], [ 144.882868, 13.524874 ], [ 144.882502, 13.524466 ], [ 144.88238, 13.52433 ], [ 144.88218, 13.524145 ], [ 144.88199, 13.52397 ], [ 144.881665, 13.523706 ], [ 144.88156, 13.52362 ], [ 144.88134, 13.52346 ], [ 144.881232, 13.52338 ], [ 144.880975, 13.523188 ], [ 144.88095, 13.52317 ], [ 144.880908, 13.523144 ], [ 144.880794, 13.523076 ], [ 144.880753, 13.523051 ], [ 144.88063, 13.522977 ], [ 144.88059, 13.522953 ], [ 144.880556, 13.522932 ], [ 144.880454, 13.52287 ], [ 144.88042, 13.52285 ], [ 144.880245, 13.522765 ], [ 144.879722, 13.522513 ], [ 144.87959, 13.52245 ], [ 144.879547, 13.522432 ], [ 144.879491, 13.522409 ], [ 144.879325, 13.522342 ], [ 144.87927, 13.52232 ], [ 144.879183, 13.522294 ], [ 144.878925, 13.522216 ], [ 144.87884, 13.52219 ], [ 144.878753, 13.522162 ], [ 144.878494, 13.522078 ], [ 144.878408, 13.522051 ], [ 144.87829, 13.522013 ], [ 144.877937, 13.521899 ], [ 144.87782, 13.521862 ], [ 144.877732, 13.521833 ], [ 144.877468, 13.521748 ], [ 144.87738, 13.52172 ], [ 144.877114, 13.521627 ], [ 144.87658, 13.52144 ], [ 144.876316, 13.52135 ], [ 144.87605, 13.52126 ], [ 144.87593, 13.52166 ], [ 144.875863, 13.521874 ], [ 144.8756, 13.52273 ], [ 144.875587, 13.522794 ], [ 144.875521, 13.522977 ], [ 144.875178, 13.523384 ], [ 144.87506, 13.523816 ], [ 144.875253, 13.524596 ], [ 144.875132, 13.525541 ], [ 144.875096, 13.526437 ], [ 144.875094, 13.526491 ], [ 144.875084, 13.526727 ], [ 144.875099, 13.526868 ], [ 144.875115, 13.527031 ], [ 144.87519, 13.52778 ], [ 144.875139, 13.528197 ], [ 144.874988, 13.529448 ], [ 144.874938, 13.529866 ], [ 144.874932, 13.529926 ], [ 144.874918, 13.530107 ], [ 144.874914, 13.530168 ], [ 144.874889, 13.5304 ], [ 144.875168, 13.531847 ], [ 144.875221, 13.532125 ], [ 144.875375, 13.53292 ], [ 144.876646, 13.539713 ], [ 144.877151, 13.542503 ], [ 144.877549, 13.544394 ], [ 144.877791, 13.545925 ], [ 144.877809, 13.546037 ], [ 144.877836, 13.547203 ], [ 144.877608, 13.547495 ], [ 144.877434, 13.547733 ], [ 144.877423, 13.54809 ], [ 144.87737, 13.548514 ], [ 144.877332, 13.548996 ], [ 144.877169, 13.549597 ], [ 144.877162, 13.549623 ], [ 144.876932, 13.550607 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "954400", "GEOID10": "66010954400", "NAME10": "9544", "NAMELSAD10": "Census Tract 9544", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 16588029, "AWATER10": 9513319, "INTPTLAT10": "+13.4500307", "INTPTLON10": "+144.6625498" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.696222, 13.455403 ], [ 144.69576, 13.454072 ], [ 144.69574, 13.454013 ], [ 144.698693, 13.45108 ], [ 144.699287, 13.450492 ], [ 144.699806, 13.450251 ], [ 144.700343, 13.450583 ], [ 144.701957, 13.451581 ], [ 144.702495, 13.451914 ], [ 144.702791, 13.452099 ], [ 144.703047, 13.45226 ], [ 144.703761, 13.45204 ], [ 144.704096, 13.451938 ], [ 144.704532, 13.451804 ], [ 144.70584, 13.451405 ], [ 144.706277, 13.451273 ], [ 144.706533, 13.451183 ], [ 144.706954, 13.451036 ], [ 144.707239, 13.450942 ], [ 144.707259, 13.450299 ], [ 144.707294, 13.448806 ], [ 144.707667, 13.4481 ], [ 144.707868, 13.447694 ], [ 144.708492, 13.447222 ], [ 144.708935, 13.446859 ], [ 144.709298, 13.446702 ], [ 144.709348, 13.446348 ], [ 144.709428, 13.445865 ], [ 144.709627, 13.444566 ], [ 144.709697, 13.444154 ], [ 144.709834, 13.443354 ], [ 144.709958, 13.44254 ], [ 144.710698, 13.437941 ], [ 144.710897, 13.436826 ], [ 144.710776, 13.436887 ], [ 144.710664, 13.436822 ], [ 144.710571, 13.43672 ], [ 144.710342, 13.436649 ], [ 144.710047, 13.436633 ], [ 144.709915, 13.436655 ], [ 144.709685, 13.436767 ], [ 144.709083, 13.436623 ], [ 144.708861, 13.436631 ], [ 144.708521, 13.436519 ], [ 144.70835, 13.436421 ], [ 144.708217, 13.436286 ], [ 144.708142, 13.436132 ], [ 144.707768, 13.435737 ], [ 144.707611, 13.43544 ], [ 144.707335, 13.434832 ], [ 144.707049, 13.43427 ], [ 144.706734, 13.433862 ], [ 144.706669, 13.433541 ], [ 144.706583, 13.433072 ], [ 144.706337, 13.43229 ], [ 144.706062, 13.43169 ], [ 144.706034, 13.431588 ], [ 144.706035, 13.431424 ], [ 144.706057, 13.431177 ], [ 144.706134, 13.430919 ], [ 144.70608, 13.4307 ], [ 144.70595, 13.430634 ], [ 144.705823, 13.430198 ], [ 144.705663, 13.430072 ], [ 144.705263, 13.429857 ], [ 144.70502, 13.429818 ], [ 144.704702, 13.429742 ], [ 144.704155, 13.429039 ], [ 144.703878, 13.428587 ], [ 144.702819, 13.427802 ], [ 144.702386, 13.427479 ], [ 144.702036, 13.427176 ], [ 144.701729, 13.426889 ], [ 144.701535, 13.426603 ], [ 144.701329, 13.426463 ], [ 144.701161, 13.426369 ], [ 144.70107, 13.426222 ], [ 144.700948, 13.426065 ], [ 144.700744, 13.425861 ], [ 144.700671, 13.425723 ], [ 144.70089, 13.42532 ], [ 144.700962, 13.425141 ], [ 144.701055, 13.424799 ], [ 144.701132, 13.424598 ], [ 144.701267, 13.424196 ], [ 144.701176, 13.423891 ], [ 144.701139, 13.423753 ], [ 144.701029, 13.423625 ], [ 144.700887, 13.423538 ], [ 144.700815, 13.423392 ], [ 144.700704, 13.423226 ], [ 144.70029, 13.422883 ], [ 144.700364, 13.422737 ], [ 144.700288, 13.422567 ], [ 144.700157, 13.422384 ], [ 144.699868, 13.422212 ], [ 144.699612, 13.422203 ], [ 144.699734, 13.421928 ], [ 144.70047, 13.420288 ], [ 144.700518, 13.419872 ], [ 144.70059, 13.419554 ], [ 144.700733, 13.419298 ], [ 144.700793, 13.419157 ], [ 144.700868, 13.418934 ], [ 144.70089, 13.418727 ], [ 144.701053, 13.418551 ], [ 144.701135, 13.418431 ], [ 144.701202, 13.418271 ], [ 144.701223, 13.418083 ], [ 144.701206, 13.417808 ], [ 144.700969, 13.417334 ], [ 144.7007, 13.416964 ], [ 144.700783, 13.416632 ], [ 144.700384, 13.415832 ], [ 144.700361, 13.415771 ], [ 144.700319, 13.415746 ], [ 144.700222, 13.415711 ], [ 144.700196, 13.415675 ], [ 144.70018, 13.415633 ], [ 144.700181, 13.415555 ], [ 144.700181, 13.415508 ], [ 144.700163, 13.415472 ], [ 144.700105, 13.415451 ], [ 144.700005, 13.415441 ], [ 144.69987, 13.415423 ], [ 144.697232, 13.413537 ], [ 144.69714, 13.413438 ], [ 144.696982, 13.413118 ], [ 144.696889, 13.413076 ], [ 144.696617, 13.413099 ], [ 144.696471, 13.413059 ], [ 144.696179, 13.413076 ], [ 144.696082, 13.413039 ], [ 144.696034, 13.412862 ], [ 144.695943, 13.412732 ], [ 144.695465, 13.412244 ], [ 144.695225, 13.412193 ], [ 144.695005, 13.41215 ], [ 144.694657, 13.412114 ], [ 144.694566, 13.411995 ], [ 144.694296, 13.411934 ], [ 144.694113, 13.411766 ], [ 144.694021, 13.411643 ], [ 144.693918, 13.411559 ], [ 144.693779, 13.411507 ], [ 144.69368, 13.411556 ], [ 144.693595, 13.411671 ], [ 144.693523, 13.411732 ], [ 144.693398, 13.411686 ], [ 144.693341, 13.411585 ], [ 144.69336, 13.411422 ], [ 144.693314, 13.411287 ], [ 144.693285, 13.411161 ], [ 144.693243, 13.411029 ], [ 144.693052, 13.410936 ], [ 144.692979, 13.41103 ], [ 144.692979, 13.411178 ], [ 144.692856, 13.411185 ], [ 144.692508, 13.410927 ], [ 144.692368, 13.410625 ], [ 144.692273, 13.410489 ], [ 144.69192, 13.410432 ], [ 144.691284, 13.410564 ], [ 144.691104, 13.410655 ], [ 144.691066, 13.410826 ], [ 144.690987, 13.410986 ], [ 144.690886, 13.411007 ], [ 144.690712, 13.410934 ], [ 144.690564, 13.411045 ], [ 144.690366, 13.410998 ], [ 144.690211, 13.410983 ], [ 144.689764, 13.411101 ], [ 144.689598, 13.411234 ], [ 144.689473, 13.411309 ], [ 144.689294, 13.41137 ], [ 144.689165, 13.411373 ], [ 144.689088, 13.411305 ], [ 144.689083, 13.411256 ], [ 144.689125, 13.411184 ], [ 144.689356, 13.411061 ], [ 144.68937, 13.41102 ], [ 144.689302, 13.410939 ], [ 144.689215, 13.410915 ], [ 144.688779, 13.410911 ], [ 144.688742, 13.410947 ], [ 144.688782, 13.411109 ], [ 144.688746, 13.411172 ], [ 144.688164, 13.411373 ], [ 144.688131, 13.411458 ], [ 144.688195, 13.411504 ], [ 144.688357, 13.411856 ], [ 144.688299, 13.412064 ], [ 144.688204, 13.412079 ], [ 144.688034, 13.412197 ], [ 144.688018, 13.412262 ], [ 144.688082, 13.412357 ], [ 144.688059, 13.412408 ], [ 144.687956, 13.412527 ], [ 144.687872, 13.41262 ], [ 144.68797, 13.41276 ], [ 144.687879, 13.412881 ], [ 144.687648, 13.413059 ], [ 144.687467, 13.41321 ], [ 144.687379, 13.413284 ], [ 144.687182, 13.413297 ], [ 144.687132, 13.413234 ], [ 144.687023, 13.413129 ], [ 144.686897, 13.413073 ], [ 144.686794, 13.413131 ], [ 144.686815, 13.413258 ], [ 144.686796, 13.413343 ], [ 144.686685, 13.413387 ], [ 144.686323, 13.41333 ], [ 144.686221, 13.413405 ], [ 144.686092, 13.41344 ], [ 144.68565, 13.413394 ], [ 144.6855, 13.41347 ], [ 144.685438, 13.413663 ], [ 144.685239, 13.413832 ], [ 144.685064, 13.413867 ], [ 144.684873, 13.414059 ], [ 144.684872, 13.414203 ], [ 144.684871, 13.414351 ], [ 144.684778, 13.414399 ], [ 144.684506, 13.414532 ], [ 144.684143, 13.414533 ], [ 144.683834, 13.414306 ], [ 144.683418, 13.414299 ], [ 144.683177, 13.414321 ], [ 144.682912, 13.414202 ], [ 144.682606, 13.41446 ], [ 144.68243, 13.415012 ], [ 144.682095, 13.415473 ], [ 144.681659, 13.415962 ], [ 144.681801, 13.416098 ], [ 144.681887, 13.416267 ], [ 144.681862, 13.416418 ], [ 144.681774, 13.416502 ], [ 144.681688, 13.416601 ], [ 144.68168, 13.416717 ], [ 144.68149, 13.417153 ], [ 144.681168, 13.417784 ], [ 144.68089, 13.418329 ], [ 144.681036, 13.418665 ], [ 144.681069, 13.418799 ], [ 144.681055, 13.418996 ], [ 144.680897, 13.419348 ], [ 144.680778, 13.419596 ], [ 144.680763, 13.419815 ], [ 144.680845, 13.41996 ], [ 144.680792, 13.420075 ], [ 144.68057, 13.420359 ], [ 144.680267, 13.420532 ], [ 144.680188, 13.420615 ], [ 144.680116, 13.420724 ], [ 144.680093, 13.42084 ], [ 144.680133, 13.420907 ], [ 144.68011, 13.420999 ], [ 144.680024, 13.421059 ], [ 144.679872, 13.421165 ], [ 144.679603, 13.421259 ], [ 144.679446, 13.421412 ], [ 144.679302, 13.421563 ], [ 144.678986, 13.421751 ], [ 144.678907, 13.421831 ], [ 144.678779, 13.422029 ], [ 144.678807, 13.422252 ], [ 144.678805, 13.422428 ], [ 144.678737, 13.422521 ], [ 144.678567, 13.422542 ], [ 144.678096, 13.422819 ], [ 144.677985, 13.423007 ], [ 144.678, 13.423204 ], [ 144.678053, 13.423426 ], [ 144.678036, 13.423637 ], [ 144.67798, 13.42388 ], [ 144.677738, 13.424237 ], [ 144.677377, 13.425166 ], [ 144.677237, 13.425409 ], [ 144.677014, 13.425638 ], [ 144.676752, 13.42605 ], [ 144.676665, 13.426414 ], [ 144.676495, 13.427626 ], [ 144.676495, 13.427906 ], [ 144.676346, 13.428162 ], [ 144.675921, 13.428318 ], [ 144.675506, 13.428667 ], [ 144.666977, 13.436427 ], [ 144.666964, 13.437096 ], [ 144.666797, 13.445752 ], [ 144.639384, 13.451187 ], [ 144.627417, 13.453561 ], [ 144.626826, 13.453746 ], [ 144.625054, 13.454303 ], [ 144.624464, 13.454489 ], [ 144.624352, 13.454446 ], [ 144.624308, 13.45443 ], [ 144.624057, 13.454613 ], [ 144.623961, 13.454684 ], [ 144.623976, 13.454701 ], [ 144.624024, 13.454753 ], [ 144.62404, 13.454771 ], [ 144.624033, 13.45479 ], [ 144.624013, 13.454908 ], [ 144.624002, 13.455011 ], [ 144.62403, 13.455101 ], [ 144.624068, 13.455153 ], [ 144.62414, 13.455196 ], [ 144.624235, 13.455244 ], [ 144.624321, 13.455301 ], [ 144.624398, 13.455358 ], [ 144.62445, 13.455425 ], [ 144.624464, 13.455477 ], [ 144.624521, 13.455506 ], [ 144.624583, 13.455577 ], [ 144.62465, 13.45562 ], [ 144.624697, 13.4557 ], [ 144.624735, 13.455748 ], [ 144.624812, 13.455762 ], [ 144.624874, 13.455834 ], [ 144.624863, 13.45589 ], [ 144.624882, 13.455951 ], [ 144.624944, 13.45599 ], [ 144.62503, 13.456066 ], [ 144.625134, 13.456198 ], [ 144.625206, 13.45627 ], [ 144.625282, 13.456369 ], [ 144.625348, 13.456497 ], [ 144.625409, 13.456601 ], [ 144.625495, 13.456653 ], [ 144.625562, 13.456748 ], [ 144.625667, 13.456825 ], [ 144.625695, 13.456895 ], [ 144.6258, 13.456981 ], [ 144.625852, 13.457019 ], [ 144.625909, 13.457086 ], [ 144.625947, 13.457152 ], [ 144.626028, 13.457223 ], [ 144.626085, 13.457294 ], [ 144.626167, 13.457342 ], [ 144.626238, 13.457395 ], [ 144.626343, 13.45749 ], [ 144.626509, 13.457675 ], [ 144.626571, 13.457732 ], [ 144.626768, 13.457814 ], [ 144.62693, 13.457909 ], [ 144.62704, 13.457967 ], [ 144.627097, 13.458019 ], [ 144.627179, 13.458067 ], [ 144.62725, 13.458101 ], [ 144.627336, 13.458163 ], [ 144.627399, 13.458168 ], [ 144.627447, 13.458159 ], [ 144.627495, 13.458178 ], [ 144.627567, 13.458216 ], [ 144.627624, 13.458226 ], [ 144.627672, 13.45826 ], [ 144.627744, 13.458293 ], [ 144.62783, 13.458327 ], [ 144.627921, 13.458342 ], [ 144.628003, 13.458376 ], [ 144.628045, 13.458423 ], [ 144.628093, 13.458461 ], [ 144.628162, 13.458486 ], [ 144.628224, 13.458523 ], [ 144.62837, 13.458558 ], [ 144.628438, 13.458621 ], [ 144.628526, 13.458636 ], [ 144.628594, 13.458684 ], [ 144.628671, 13.458728 ], [ 144.628764, 13.458758 ], [ 144.628852, 13.458792 ], [ 144.628939, 13.458841 ], [ 144.629036, 13.458885 ], [ 144.62908, 13.458928 ], [ 144.629123, 13.458962 ], [ 144.62924, 13.458996 ], [ 144.629313, 13.459031 ], [ 144.629381, 13.45905 ], [ 144.629513, 13.459114 ], [ 144.629561, 13.459162 ], [ 144.629653, 13.459225 ], [ 144.62977, 13.459245 ], [ 144.629882, 13.459299 ], [ 144.63015, 13.459407 ], [ 144.630276, 13.459451 ], [ 144.630451, 13.459543 ], [ 144.630548, 13.459654 ], [ 144.630645, 13.459736 ], [ 144.630781, 13.459819 ], [ 144.630941, 13.459945 ], [ 144.631057, 13.460008 ], [ 144.631164, 13.460129 ], [ 144.63126, 13.46022 ], [ 144.631363, 13.460269 ], [ 144.631484, 13.460356 ], [ 144.631551, 13.460448 ], [ 144.631639, 13.460506 ], [ 144.631755, 13.460608 ], [ 144.631867, 13.460661 ], [ 144.631915, 13.460729 ], [ 144.632022, 13.460816 ], [ 144.632153, 13.460912 ], [ 144.632235, 13.460961 ], [ 144.632317, 13.461034 ], [ 144.632395, 13.461092 ], [ 144.632429, 13.461149 ], [ 144.632521, 13.461184 ], [ 144.632652, 13.461266 ], [ 144.632749, 13.461339 ], [ 144.632973, 13.461484 ], [ 144.63303, 13.461557 ], [ 144.633186, 13.461668 ], [ 144.633341, 13.461765 ], [ 144.633448, 13.461862 ], [ 144.633608, 13.461983 ], [ 144.633685, 13.462089 ], [ 144.633869, 13.462229 ], [ 144.633995, 13.462312 ], [ 144.634097, 13.462389 ], [ 144.63416, 13.462485 ], [ 144.634271, 13.462577 ], [ 144.634358, 13.462631 ], [ 144.634475, 13.462746 ], [ 144.634581, 13.462819 ], [ 144.634712, 13.462935 ], [ 144.634761, 13.462991 ], [ 144.634804, 13.463041 ], [ 144.634881, 13.463104 ], [ 144.635099, 13.463307 ], [ 144.635226, 13.463375 ], [ 144.635342, 13.463448 ], [ 144.635424, 13.463549 ], [ 144.635579, 13.463661 ], [ 144.635647, 13.463728 ], [ 144.635764, 13.463806 ], [ 144.635895, 13.463903 ], [ 144.636055, 13.46399 ], [ 144.636293, 13.464102 ], [ 144.636488, 13.464181 ], [ 144.636726, 13.464259 ], [ 144.636848, 13.464313 ], [ 144.637014, 13.464377 ], [ 144.637242, 13.464451 ], [ 144.637374, 13.464505 ], [ 144.63751, 13.464554 ], [ 144.637929, 13.464672 ], [ 144.638124, 13.464741 ], [ 144.638343, 13.464796 ], [ 144.638494, 13.464807 ], [ 144.6387, 13.46479 ], [ 144.638817, 13.464805 ], [ 144.638958, 13.464816 ], [ 144.63909, 13.464803 ], [ 144.639189, 13.464765 ], [ 144.63933, 13.464772 ], [ 144.639472, 13.464768 ], [ 144.639599, 13.46475 ], [ 144.639912, 13.464748 ], [ 144.640146, 13.464755 ], [ 144.640674, 13.464765 ], [ 144.640811, 13.464762 ], [ 144.641021, 13.464764 ], [ 144.641177, 13.46477 ], [ 144.641597, 13.46475 ], [ 144.64191, 13.464753 ], [ 144.642105, 13.464764 ], [ 144.642315, 13.464766 ], [ 144.642511, 13.464749 ], [ 144.642696, 13.464741 ], [ 144.642809, 13.464771 ], [ 144.642965, 13.464763 ], [ 144.643107, 13.464764 ], [ 144.643258, 13.46477 ], [ 144.64338, 13.464767 ], [ 144.643458, 13.464786 ], [ 144.64358, 13.464768 ], [ 144.643698, 13.464765 ], [ 144.643908, 13.464752 ], [ 144.644284, 13.464742 ], [ 144.644435, 13.464757 ], [ 144.644572, 13.464749 ], [ 144.644782, 13.464746 ], [ 144.644929, 13.464776 ], [ 144.645031, 13.464759 ], [ 144.64505, 13.464763 ], [ 144.645261, 13.46476 ], [ 144.645442, 13.464748 ], [ 144.645632, 13.464749 ], [ 144.64573, 13.464755 ], [ 144.645886, 13.464771 ], [ 144.646018, 13.464777 ], [ 144.646155, 13.464788 ], [ 144.646277, 13.464765 ], [ 144.646404, 13.464747 ], [ 144.64659, 13.464744 ], [ 144.646805, 13.464746 ], [ 144.647035, 13.464739 ], [ 144.647762, 13.464745 ], [ 144.647889, 13.464751 ], [ 144.648021, 13.464748 ], [ 144.648285, 13.46476 ], [ 144.648476, 13.464762 ], [ 144.648661, 13.464754 ], [ 144.648847, 13.464765 ], [ 144.649159, 13.464773 ], [ 144.649301, 13.464798 ], [ 144.649496, 13.46481 ], [ 144.649814, 13.46476 ], [ 144.650005, 13.464766 ], [ 144.650098, 13.464753 ], [ 144.650229, 13.464769 ], [ 144.650474, 13.464752 ], [ 144.650791, 13.464764 ], [ 144.650943, 13.464761 ], [ 144.651138, 13.464763 ], [ 144.65129, 13.464759 ], [ 144.651597, 13.464762 ], [ 144.651724, 13.464754 ], [ 144.651802, 13.464774 ], [ 144.651939, 13.464785 ], [ 144.6521, 13.464776 ], [ 144.652555, 13.464766 ], [ 144.652662, 13.464772 ], [ 144.652765, 13.464764 ], [ 144.652853, 13.464769 ], [ 144.652936, 13.464756 ], [ 144.653038, 13.464766 ], [ 144.653234, 13.464792 ], [ 144.653326, 13.464783 ], [ 144.653414, 13.464784 ], [ 144.653536, 13.464799 ], [ 144.653673, 13.464791 ], [ 144.653825, 13.464807 ], [ 144.653981, 13.464775 ], [ 144.654147, 13.464781 ], [ 144.654284, 13.464797 ], [ 144.654411, 13.464803 ], [ 144.654562, 13.464795 ], [ 144.654704, 13.464796 ], [ 144.654924, 13.464803 ], [ 144.655124, 13.464776 ], [ 144.655217, 13.464801 ], [ 144.655315, 13.464806 ], [ 144.655417, 13.464784 ], [ 144.65551, 13.464789 ], [ 144.655598, 13.4648 ], [ 144.655754, 13.464801 ], [ 144.655752, 13.464821 ], [ 144.655783, 13.464816 ], [ 144.655915, 13.464826 ], [ 144.656043, 13.464804 ], [ 144.656199, 13.464796 ], [ 144.656355, 13.464811 ], [ 144.656785, 13.464815 ], [ 144.657078, 13.464809 ], [ 144.657225, 13.46481 ], [ 144.657543, 13.464784 ], [ 144.65783, 13.464811 ], [ 144.658026, 13.464813 ], [ 144.658197, 13.464838 ], [ 144.658255, 13.46482 ], [ 144.658393, 13.464787 ], [ 144.658568, 13.464794 ], [ 144.658808, 13.464772 ], [ 144.658954, 13.464778 ], [ 144.659081, 13.464822 ], [ 144.659218, 13.4648 ], [ 144.659355, 13.464792 ], [ 144.659633, 13.464785 ], [ 144.659751, 13.46479 ], [ 144.659931, 13.464787 ], [ 144.660156, 13.464813 ], [ 144.660444, 13.464806 ], [ 144.660615, 13.464808 ], [ 144.660718, 13.464785 ], [ 144.660908, 13.464796 ], [ 144.661172, 13.464775 ], [ 144.66143, 13.464775 ], [ 144.661637, 13.464775 ], [ 144.661749, 13.46479 ], [ 144.661963, 13.464878 ], [ 144.662162, 13.465004 ], [ 144.66224, 13.465048 ], [ 144.662342, 13.465121 ], [ 144.662351, 13.465173 ], [ 144.662375, 13.465231 ], [ 144.662355, 13.465269 ], [ 144.662344, 13.465331 ], [ 144.662315, 13.465379 ], [ 144.66228, 13.465421 ], [ 144.662236, 13.465406 ], [ 144.662212, 13.465373 ], [ 144.662164, 13.465339 ], [ 144.66211, 13.465348 ], [ 144.66209, 13.465391 ], [ 144.662031, 13.4654 ], [ 144.661982, 13.465423 ], [ 144.661981, 13.465576 ], [ 144.66199, 13.465624 ], [ 144.662024, 13.465634 ], [ 144.662028, 13.465691 ], [ 144.662087, 13.465721 ], [ 144.662115, 13.465783 ], [ 144.66215, 13.465774 ], [ 144.662179, 13.46576 ], [ 144.662223, 13.465779 ], [ 144.662212, 13.465846 ], [ 144.662261, 13.465861 ], [ 144.66231, 13.465857 ], [ 144.662291, 13.465837 ], [ 144.662296, 13.465794 ], [ 144.662349, 13.465824 ], [ 144.662364, 13.465843 ], [ 144.662398, 13.465838 ], [ 144.662413, 13.46581 ], [ 144.662442, 13.465834 ], [ 144.662461, 13.465887 ], [ 144.66249, 13.46592 ], [ 144.662522, 13.465911 ], [ 144.662534, 13.465897 ], [ 144.662544, 13.465921 ], [ 144.662583, 13.46594 ], [ 144.662617, 13.465922 ], [ 144.662647, 13.465912 ], [ 144.662676, 13.465927 ], [ 144.66269, 13.465946 ], [ 144.66272, 13.465918 ], [ 144.662749, 13.465923 ], [ 144.662767, 13.465918 ], [ 144.662803, 13.465919 ], [ 144.662823, 13.465895 ], [ 144.662818, 13.465842 ], [ 144.662843, 13.465828 ], [ 144.662867, 13.4658 ], [ 144.662883, 13.465791 ], [ 144.662897, 13.465809 ], [ 144.662887, 13.465852 ], [ 144.66291, 13.4659 ], [ 144.662935, 13.465915 ], [ 144.662979, 13.465906 ], [ 144.663018, 13.465873 ], [ 144.663018, 13.465849 ], [ 144.663011, 13.465832 ], [ 144.663029, 13.465815 ], [ 144.663029, 13.465782 ], [ 144.663034, 13.465749 ], [ 144.663029, 13.465725 ], [ 144.663054, 13.465725 ], [ 144.663073, 13.465744 ], [ 144.663117, 13.465745 ], [ 144.663215, 13.465712 ], [ 144.6632, 13.465736 ], [ 144.663229, 13.465755 ], [ 144.663264, 13.465741 ], [ 144.663279, 13.465722 ], [ 144.663313, 13.465737 ], [ 144.663317, 13.46577 ], [ 144.663312, 13.465799 ], [ 144.663371, 13.4658 ], [ 144.663415, 13.465805 ], [ 144.663448, 13.465839 ], [ 144.663492, 13.465839 ], [ 144.663517, 13.465806 ], [ 144.663571, 13.465792 ], [ 144.663635, 13.465792 ], [ 144.663742, 13.465774 ], [ 144.664036, 13.465691 ], [ 144.664075, 13.465687 ], [ 144.664153, 13.465687 ], [ 144.664222, 13.465669 ], [ 144.664291, 13.465641 ], [ 144.664364, 13.465618 ], [ 144.664472, 13.465552 ], [ 144.664556, 13.465509 ], [ 144.664658, 13.465515 ], [ 144.664717, 13.465511 ], [ 144.664771, 13.465449 ], [ 144.664821, 13.465402 ], [ 144.664889, 13.465388 ], [ 144.664943, 13.46536 ], [ 144.6651, 13.465309 ], [ 144.665159, 13.465266 ], [ 144.665247, 13.46521 ], [ 144.665306, 13.465201 ], [ 144.665336, 13.465172 ], [ 144.665429, 13.465135 ], [ 144.665522, 13.465112 ], [ 144.66561, 13.465118 ], [ 144.665678, 13.465156 ], [ 144.665717, 13.465205 ], [ 144.665751, 13.465181 ], [ 144.665766, 13.465109 ], [ 144.665865, 13.465048 ], [ 144.665953, 13.465016 ], [ 144.666041, 13.464992 ], [ 144.666144, 13.464998 ], [ 144.666217, 13.46498 ], [ 144.666271, 13.464975 ], [ 144.66631, 13.465004 ], [ 144.666383, 13.465 ], [ 144.666437, 13.464972 ], [ 144.666471, 13.464944 ], [ 144.666499, 13.464932 ], [ 144.666564, 13.464921 ], [ 144.666623, 13.464902 ], [ 144.666706, 13.464884 ], [ 144.666765, 13.464904 ], [ 144.666804, 13.464933 ], [ 144.666838, 13.464904 ], [ 144.666863, 13.464857 ], [ 144.666888, 13.46479 ], [ 144.666942, 13.46479 ], [ 144.666986, 13.46481 ], [ 144.66704, 13.464782 ], [ 144.667079, 13.464744 ], [ 144.667143, 13.464706 ], [ 144.667202, 13.464688 ], [ 144.667256, 13.464683 ], [ 144.66729, 13.464688 ], [ 144.667358, 13.46467 ], [ 144.667398, 13.464618 ], [ 144.667462, 13.464585 ], [ 144.667545, 13.46461 ], [ 144.667735, 13.464607 ], [ 144.667788, 13.464669 ], [ 144.667832, 13.464674 ], [ 144.667901, 13.464642 ], [ 144.66795, 13.46458 ], [ 144.66801, 13.464523 ], [ 144.668112, 13.464495 ], [ 144.66822, 13.464482 ], [ 144.668274, 13.464482 ], [ 144.668323, 13.464459 ], [ 144.668347, 13.46443 ], [ 144.668353, 13.46434 ], [ 144.668388, 13.464321 ], [ 144.668417, 13.464345 ], [ 144.668426, 13.464383 ], [ 144.668465, 13.464365 ], [ 144.668525, 13.464308 ], [ 144.66854, 13.46427 ], [ 144.668569, 13.464251 ], [ 144.668618, 13.464251 ], [ 144.668676, 13.464261 ], [ 144.668711, 13.464257 ], [ 144.66875, 13.464224 ], [ 144.668809, 13.464186 ], [ 144.668883, 13.464153 ], [ 144.668961, 13.46413 ], [ 144.669049, 13.464126 ], [ 144.669093, 13.464136 ], [ 144.669142, 13.464122 ], [ 144.669162, 13.464079 ], [ 144.669187, 13.464056 ], [ 144.669206, 13.46407 ], [ 144.66925, 13.464047 ], [ 144.669324, 13.464019 ], [ 144.669358, 13.464043 ], [ 144.669461, 13.463972 ], [ 144.669554, 13.46393 ], [ 144.669647, 13.463926 ], [ 144.669715, 13.463941 ], [ 144.669789, 13.463937 ], [ 144.669832, 13.463957 ], [ 144.669847, 13.464 ], [ 144.669905, 13.464 ], [ 144.66994, 13.463953 ], [ 144.669989, 13.463901 ], [ 144.670087, 13.463897 ], [ 144.670131, 13.463854 ], [ 144.670156, 13.463821 ], [ 144.670244, 13.463803 ], [ 144.670298, 13.463781 ], [ 144.670314, 13.463791 ], [ 144.670347, 13.463799 ], [ 144.670352, 13.463765 ], [ 144.670386, 13.463747 ], [ 144.670475, 13.463714 ], [ 144.670514, 13.46369 ], [ 144.670568, 13.463686 ], [ 144.670622, 13.463677 ], [ 144.670685, 13.463673 ], [ 144.670817, 13.463684 ], [ 144.670861, 13.463674 ], [ 144.670915, 13.463646 ], [ 144.671023, 13.463642 ], [ 144.671057, 13.463609 ], [ 144.671116, 13.46361 ], [ 144.67114, 13.46362 ], [ 144.671194, 13.463601 ], [ 144.671336, 13.463569 ], [ 144.671458, 13.463556 ], [ 144.671507, 13.463547 ], [ 144.671561, 13.463518 ], [ 144.671605, 13.463533 ], [ 144.671639, 13.46351 ], [ 144.671728, 13.463486 ], [ 144.671781, 13.463487 ], [ 144.67185, 13.463454 ], [ 144.671919, 13.46344 ], [ 144.671987, 13.463436 ], [ 144.67206, 13.463423 ], [ 144.672163, 13.463395 ], [ 144.672266, 13.463391 ], [ 144.672319, 13.463411 ], [ 144.672378, 13.463402 ], [ 144.672432, 13.463402 ], [ 144.672461, 13.463422 ], [ 144.67251, 13.463446 ], [ 144.672593, 13.463432 ], [ 144.672666, 13.463443 ], [ 144.672686, 13.463409 ], [ 144.672691, 13.463371 ], [ 144.672697, 13.463369 ], [ 144.672755, 13.463353 ], [ 144.672804, 13.463334 ], [ 144.672892, 13.463339 ], [ 144.67296, 13.463316 ], [ 144.673004, 13.463307 ], [ 144.673122, 13.463241 ], [ 144.673376, 13.463267 ], [ 144.673425, 13.463254 ], [ 144.673479, 13.463273 ], [ 144.673566, 13.463293 ], [ 144.673684, 13.463294 ], [ 144.673718, 13.463271 ], [ 144.673743, 13.463209 ], [ 144.673797, 13.463185 ], [ 144.673914, 13.463234 ], [ 144.674002, 13.463225 ], [ 144.674104, 13.463222 ], [ 144.674197, 13.463203 ], [ 144.674251, 13.46318 ], [ 144.674363, 13.46321 ], [ 144.6745, 13.46323 ], [ 144.674632, 13.463231 ], [ 144.674676, 13.463232 ], [ 144.674676, 13.463241 ], [ 144.674744, 13.463237 ], [ 144.674876, 13.463238 ], [ 144.674891, 13.463258 ], [ 144.674935, 13.463263 ], [ 144.674969, 13.46323 ], [ 144.674989, 13.463182 ], [ 144.675072, 13.463178 ], [ 144.675146, 13.463145 ], [ 144.675253, 13.463117 ], [ 144.675366, 13.463099 ], [ 144.675493, 13.463101 ], [ 144.675644, 13.463126 ], [ 144.675712, 13.463165 ], [ 144.675746, 13.463198 ], [ 144.675726, 13.463222 ], [ 144.675726, 13.463251 ], [ 144.67576, 13.463251 ], [ 144.675843, 13.463271 ], [ 144.675907, 13.463281 ], [ 144.67597, 13.463296 ], [ 144.676063, 13.463307 ], [ 144.676141, 13.463331 ], [ 144.676199, 13.463337 ], [ 144.676238, 13.463346 ], [ 144.676321, 13.463386 ], [ 144.676355, 13.463376 ], [ 144.676462, 13.463396 ], [ 144.676477, 13.463425 ], [ 144.676476, 13.463478 ], [ 144.67651, 13.463478 ], [ 144.676545, 13.46345 ], [ 144.676613, 13.463474 ], [ 144.676876, 13.463591 ], [ 144.676934, 13.463635 ], [ 144.677012, 13.463679 ], [ 144.677062, 13.463689 ], [ 144.677163, 13.463692 ], [ 144.67728, 13.463717 ], [ 144.677387, 13.463704 ], [ 144.677465, 13.463733 ], [ 144.677479, 13.463781 ], [ 144.677479, 13.463815 ], [ 144.677567, 13.463844 ], [ 144.677649, 13.463878 ], [ 144.677718, 13.463879 ], [ 144.677801, 13.463899 ], [ 144.677854, 13.463952 ], [ 144.677844, 13.46399 ], [ 144.677868, 13.464043 ], [ 144.677902, 13.464072 ], [ 144.678052, 13.464135 ], [ 144.678072, 13.464174 ], [ 144.678115, 13.464193 ], [ 144.678188, 13.464208 ], [ 144.678203, 13.464247 ], [ 144.6783, 13.464324 ], [ 144.678343, 13.464353 ], [ 144.678426, 13.464397 ], [ 144.678494, 13.464412 ], [ 144.678577, 13.464446 ], [ 144.678626, 13.464475 ], [ 144.678689, 13.464481 ], [ 144.67884, 13.464544 ], [ 144.678961, 13.464603 ], [ 144.679054, 13.464656 ], [ 144.679068, 13.46469 ], [ 144.679146, 13.4647 ], [ 144.679224, 13.464715 ], [ 144.679268, 13.46474 ], [ 144.679414, 13.46477 ], [ 144.679472, 13.464818 ], [ 144.679686, 13.464906 ], [ 144.679803, 13.46495 ], [ 144.679949, 13.465028 ], [ 144.679983, 13.465052 ], [ 144.680061, 13.465086 ], [ 144.680104, 13.465139 ], [ 144.680168, 13.465173 ], [ 144.680226, 13.465212 ], [ 144.680225, 13.465255 ], [ 144.68025, 13.465279 ], [ 144.680396, 13.465338 ], [ 144.680405, 13.465381 ], [ 144.680536, 13.465435 ], [ 144.680585, 13.465488 ], [ 144.680658, 13.465527 ], [ 144.680706, 13.46558 ], [ 144.680779, 13.465624 ], [ 144.680788, 13.465648 ], [ 144.680832, 13.465667 ], [ 144.680876, 13.465701 ], [ 144.680914, 13.46574 ], [ 144.681016, 13.465798 ], [ 144.68105, 13.465827 ], [ 144.68107, 13.465865 ], [ 144.681094, 13.465885 ], [ 144.681147, 13.4659 ], [ 144.681196, 13.465938 ], [ 144.681225, 13.466001 ], [ 144.681288, 13.466016 ], [ 144.681453, 13.466103 ], [ 144.681526, 13.466147 ], [ 144.681526, 13.46618 ], [ 144.681506, 13.466233 ], [ 144.68154, 13.466262 ], [ 144.681588, 13.466262 ], [ 144.68162, 13.46627 ], [ 144.681603, 13.466279 ], [ 144.681639, 13.466317 ], [ 144.681676, 13.466315 ], [ 144.681722, 13.466325 ], [ 144.681753, 13.466357 ], [ 144.681823, 13.466405 ], [ 144.68185, 13.466439 ], [ 144.681869, 13.466475 ], [ 144.681876, 13.466513 ], [ 144.681934, 13.466544 ], [ 144.681987, 13.466547 ], [ 144.682001, 13.466559 ], [ 144.682058, 13.466574 ], [ 144.68208, 13.466598 ], [ 144.682162, 13.466625 ], [ 144.682213, 13.466652 ], [ 144.682332, 13.466674 ], [ 144.682349, 13.466703 ], [ 144.682407, 13.466718 ], [ 144.682443, 13.466744 ], [ 144.682502, 13.466769 ], [ 144.682572, 13.466777 ], [ 144.682611, 13.466791 ], [ 144.682604, 13.466815 ], [ 144.682581, 13.466832 ], [ 144.682676, 13.466851 ], [ 144.682697, 13.466883 ], [ 144.682734, 13.466897 ], [ 144.682772, 13.46687 ], [ 144.682814, 13.466869 ], [ 144.682832, 13.466879 ], [ 144.682847, 13.466913 ], [ 144.682925, 13.466904 ], [ 144.68298, 13.466903 ], [ 144.683036, 13.46693 ], [ 144.683123, 13.466954 ], [ 144.683246, 13.467016 ], [ 144.683243, 13.46706 ], [ 144.683225, 13.467092 ], [ 144.683264, 13.467075 ], [ 144.68328, 13.467043 ], [ 144.683311, 13.46707 ], [ 144.683343, 13.467047 ], [ 144.683338, 13.467082 ], [ 144.683321, 13.467112 ], [ 144.683389, 13.467124 ], [ 144.683462, 13.467146 ], [ 144.683585, 13.467156 ], [ 144.683672, 13.467203 ], [ 144.683736, 13.467226 ], [ 144.683812, 13.467244 ], [ 144.683863, 13.467247 ], [ 144.68391, 13.467259 ], [ 144.684014, 13.467298 ], [ 144.684067, 13.467344 ], [ 144.684088, 13.467376 ], [ 144.684171, 13.467417 ], [ 144.684182, 13.467471 ], [ 144.684301, 13.467531 ], [ 144.684343, 13.467537 ], [ 144.684392, 13.467538 ], [ 144.684557, 13.467623 ], [ 144.684613, 13.467646 ], [ 144.684654, 13.467649 ], [ 144.684689, 13.467647 ], [ 144.684703, 13.467662 ], [ 144.684718, 13.467689 ], [ 144.684747, 13.467707 ], [ 144.68484, 13.467719 ], [ 144.684908, 13.467731 ], [ 144.684922, 13.467748 ], [ 144.684947, 13.467751 ], [ 144.68496, 13.467745 ], [ 144.684967, 13.467743 ], [ 144.685054, 13.46774 ], [ 144.685078, 13.46774 ], [ 144.685126, 13.467767 ], [ 144.685214, 13.467766 ], [ 144.685319, 13.467752 ], [ 144.685384, 13.467724 ], [ 144.685429, 13.467721 ], [ 144.685517, 13.46771 ], [ 144.685552, 13.467693 ], [ 144.685577, 13.467701 ], [ 144.685618, 13.4677 ], [ 144.685655, 13.467719 ], [ 144.685678, 13.467773 ], [ 144.68572, 13.467796 ], [ 144.685759, 13.467808 ], [ 144.685794, 13.467798 ], [ 144.685816, 13.467802 ], [ 144.685864, 13.467835 ], [ 144.685924, 13.467859 ], [ 144.685934, 13.467876 ], [ 144.685951, 13.467889 ], [ 144.686017, 13.4679 ], [ 144.686019, 13.467899 ], [ 144.686051, 13.467898 ], [ 144.68608, 13.467904 ], [ 144.686085, 13.467954 ], [ 144.686093, 13.467982 ], [ 144.686112, 13.468007 ], [ 144.686188, 13.468031 ], [ 144.686252, 13.468035 ], [ 144.686285, 13.468058 ], [ 144.68631, 13.468061 ], [ 144.686341, 13.468051 ], [ 144.686377, 13.468034 ], [ 144.686396, 13.468012 ], [ 144.686418, 13.467995 ], [ 144.686461, 13.467993 ], [ 144.686488, 13.468009 ], [ 144.686513, 13.468005 ], [ 144.686531, 13.467998 ], [ 144.686556, 13.467981 ], [ 144.686591, 13.467975 ], [ 144.686625, 13.467976 ], [ 144.686652, 13.46797 ], [ 144.686683, 13.467969 ], [ 144.686707, 13.467956 ], [ 144.686724, 13.467931 ], [ 144.686738, 13.467912 ], [ 144.686766, 13.467912 ], [ 144.686785, 13.467905 ], [ 144.686795, 13.467882 ], [ 144.686801, 13.467848 ], [ 144.686799, 13.467825 ], [ 144.686813, 13.467812 ], [ 144.686819, 13.467793 ], [ 144.68685, 13.467797 ], [ 144.686874, 13.467795 ], [ 144.686895, 13.467784 ], [ 144.686905, 13.467767 ], [ 144.686905, 13.467748 ], [ 144.686935, 13.467729 ], [ 144.68696, 13.467739 ], [ 144.686978, 13.467722 ], [ 144.68699, 13.467697 ], [ 144.687017, 13.467691 ], [ 144.68703, 13.467678 ], [ 144.687052, 13.467676 ], [ 144.68705, 13.467656 ], [ 144.687068, 13.467637 ], [ 144.68709, 13.467621 ], [ 144.687111, 13.467624 ], [ 144.687135, 13.467609 ], [ 144.687156, 13.467616 ], [ 144.68717, 13.467599 ], [ 144.687166, 13.467573 ], [ 144.687141, 13.467551 ], [ 144.687135, 13.46753 ], [ 144.687153, 13.467517 ], [ 144.687169, 13.467527 ], [ 144.687188, 13.467527 ], [ 144.687204, 13.467518 ], [ 144.687206, 13.467495 ], [ 144.687198, 13.467474 ], [ 144.687191, 13.467447 ], [ 144.687156, 13.467426 ], [ 144.687178, 13.467405 ], [ 144.687197, 13.467407 ], [ 144.687222, 13.467409 ], [ 144.687238, 13.467396 ], [ 144.687246, 13.467369 ], [ 144.687266, 13.467354 ], [ 144.687268, 13.467326 ], [ 144.687223, 13.467316 ], [ 144.687198, 13.467279 ], [ 144.687193, 13.467258 ], [ 144.687193, 13.467237 ], [ 144.687152, 13.467208 ], [ 144.687141, 13.467193 ], [ 144.687139, 13.467168 ], [ 144.687127, 13.467154 ], [ 144.687094, 13.467137 ], [ 144.687089, 13.467078 ], [ 144.687055, 13.467034 ], [ 144.687037, 13.467018 ], [ 144.687028, 13.466999 ], [ 144.687026, 13.466976 ], [ 144.687014, 13.466957 ], [ 144.686999, 13.466942 ], [ 144.68697, 13.466926 ], [ 144.686964, 13.466921 ], [ 144.686947, 13.466905 ], [ 144.686955, 13.466879 ], [ 144.686943, 13.466865 ], [ 144.686916, 13.466855 ], [ 144.686895, 13.466853 ], [ 144.68686, 13.466839 ], [ 144.686856, 13.466807 ], [ 144.686846, 13.466784 ], [ 144.686804, 13.466776 ], [ 144.686767, 13.466736 ], [ 144.686698, 13.466649 ], [ 144.686592, 13.466532 ], [ 144.686551, 13.466493 ], [ 144.686538, 13.466434 ], [ 144.686572, 13.466354 ], [ 144.686629, 13.466288 ], [ 144.686661, 13.466241 ], [ 144.686722, 13.466165 ], [ 144.686779, 13.466116 ], [ 144.686786, 13.466026 ], [ 144.686808, 13.465926 ], [ 144.686854, 13.46584 ], [ 144.686921, 13.465745 ], [ 144.687042, 13.465518 ], [ 144.687089, 13.465444 ], [ 144.687148, 13.465387 ], [ 144.687266, 13.465329 ], [ 144.687319, 13.465246 ], [ 144.68735, 13.465229 ], [ 144.68737, 13.465181 ], [ 144.68761, 13.464957 ], [ 144.687657, 13.464927 ], [ 144.687689, 13.464915 ], [ 144.68773, 13.46491 ], [ 144.687761, 13.464893 ], [ 144.687786, 13.464871 ], [ 144.687806, 13.464838 ], [ 144.687826, 13.464835 ], [ 144.687836, 13.464816 ], [ 144.687863, 13.464793 ], [ 144.687898, 13.464774 ], [ 144.68793, 13.464725 ], [ 144.687961, 13.464708 ], [ 144.687997, 13.464676 ], [ 144.688024, 13.464659 ], [ 144.688089, 13.464593 ], [ 144.688152, 13.46455 ], [ 144.688183, 13.464521 ], [ 144.688213, 13.464501 ], [ 144.688237, 13.464459 ], [ 144.688283, 13.464459 ], [ 144.688299, 13.464446 ], [ 144.688303, 13.464416 ], [ 144.688323, 13.46438 ], [ 144.688348, 13.464378 ], [ 144.68837, 13.464386 ], [ 144.688401, 13.464384 ], [ 144.688419, 13.464373 ], [ 144.68845, 13.464373 ], [ 144.688469, 13.464377 ], [ 144.688479, 13.464393 ], [ 144.688453, 13.46443 ], [ 144.688486, 13.464448 ], [ 144.688525, 13.46445 ], [ 144.688559, 13.464416 ], [ 144.688576, 13.464432 ], [ 144.688605, 13.464449 ], [ 144.68863, 13.464457 ], [ 144.688648, 13.464438 ], [ 144.68873, 13.464399 ], [ 144.688771, 13.464393 ], [ 144.688851, 13.4644 ], [ 144.6889, 13.464398 ], [ 144.688979, 13.464414 ], [ 144.689013, 13.464405 ], [ 144.68904, 13.464417 ], [ 144.689071, 13.464442 ], [ 144.689086, 13.464465 ], [ 144.689074, 13.464486 ], [ 144.689078, 13.464505 ], [ 144.689099, 13.464526 ], [ 144.689134, 13.464511 ], [ 144.689164, 13.46449 ], [ 144.68916, 13.464456 ], [ 144.689137, 13.464437 ], [ 144.689139, 13.464399 ], [ 144.689238, 13.464258 ], [ 144.689278, 13.4642 ], [ 144.689305, 13.464148 ], [ 144.689358, 13.464101 ], [ 144.689384, 13.464056 ], [ 144.689401, 13.463898 ], [ 144.689413, 13.46386 ], [ 144.689502, 13.46379 ], [ 144.689601, 13.463793 ], [ 144.689648, 13.463772 ], [ 144.689677, 13.463749 ], [ 144.689715, 13.463685 ], [ 144.68976, 13.463658 ], [ 144.689764, 13.463657 ], [ 144.689827, 13.463629 ], [ 144.689875, 13.463625 ], [ 144.689983, 13.46363 ], [ 144.690064, 13.463642 ], [ 144.690121, 13.463658 ], [ 144.690178, 13.463656 ], [ 144.690243, 13.463679 ], [ 144.690326, 13.46369 ], [ 144.690491, 13.463744 ], [ 144.690608, 13.463764 ], [ 144.690706, 13.463789 ], [ 144.690715, 13.463822 ], [ 144.690754, 13.463866 ], [ 144.690798, 13.46389 ], [ 144.690846, 13.463895 ], [ 144.690847, 13.463871 ], [ 144.69091, 13.463862 ], [ 144.690969, 13.463887 ], [ 144.691002, 13.46393 ], [ 144.691036, 13.46395 ], [ 144.691162, 13.464046 ], [ 144.69126, 13.464114 ], [ 144.691347, 13.464153 ], [ 144.691454, 13.464212 ], [ 144.69147, 13.464219 ], [ 144.691548, 13.464021 ], [ 144.691654, 13.463754 ], [ 144.691664, 13.463402 ], [ 144.691671, 13.46319 ], [ 144.691905, 13.461789 ], [ 144.691932, 13.461629 ], [ 144.691708, 13.460657 ], [ 144.690544, 13.46101 ], [ 144.690225, 13.460159 ], [ 144.690172, 13.460025 ], [ 144.69012, 13.46007 ], [ 144.68999, 13.46014 ], [ 144.68993, 13.45996 ], [ 144.689665, 13.459289 ], [ 144.68939, 13.45859 ], [ 144.689512, 13.458549 ], [ 144.689881, 13.458427 ], [ 144.690004, 13.458387 ], [ 144.690105, 13.458353 ], [ 144.690408, 13.458253 ], [ 144.69051, 13.45822 ], [ 144.690618, 13.458183 ], [ 144.69084, 13.45811 ], [ 144.690948, 13.458085 ], [ 144.69106, 13.45806 ], [ 144.69116, 13.45803 ], [ 144.691454, 13.457968 ], [ 144.69159, 13.45794 ], [ 144.69206, 13.45786 ], [ 144.69264, 13.4578 ], [ 144.692659, 13.4578 ], [ 144.693065, 13.4578 ], [ 144.693163, 13.4578 ], [ 144.69334, 13.4578 ], [ 144.693458, 13.457802 ], [ 144.693557, 13.457804 ], [ 144.694402, 13.457818 ], [ 144.69446, 13.45782 ], [ 144.69519, 13.45786 ], [ 144.69614, 13.45797 ], [ 144.69678, 13.45807 ], [ 144.696921, 13.458101 ], [ 144.69745, 13.45822 ], [ 144.697746, 13.458289 ], [ 144.697576, 13.457984 ], [ 144.697066, 13.457069 ], [ 144.696896, 13.456765 ], [ 144.696863, 13.456701 ], [ 144.696765, 13.45651 ], [ 144.696733, 13.456447 ], [ 144.696653, 13.456227 ], [ 144.696603, 13.45609 ], [ 144.696335, 13.455606 ], [ 144.696222, 13.455403 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "953400", "GEOID10": "66010953400", "NAME10": "9534", "NAMELSAD10": "Census Tract 9534", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2447929, "AWATER10": 145654, "INTPTLAT10": "+13.4741028", "INTPTLON10": "+144.7501368" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.73262, 13.47507 ], [ 144.732521, 13.475183 ], [ 144.732458, 13.475255 ], [ 144.73241, 13.47531 ], [ 144.732252, 13.475443 ], [ 144.732358, 13.475782 ], [ 144.732358, 13.47587 ], [ 144.732309, 13.475951 ], [ 144.732226, 13.47599 ], [ 144.731993, 13.476011 ], [ 144.731791, 13.475969 ], [ 144.73155, 13.475985 ], [ 144.731349, 13.476039 ], [ 144.731297, 13.476039 ], [ 144.731141, 13.476113 ], [ 144.731149, 13.476168 ], [ 144.73121, 13.476238 ], [ 144.731318, 13.476283 ], [ 144.731419, 13.476374 ], [ 144.731435, 13.476496 ], [ 144.731297, 13.476751 ], [ 144.731249, 13.476857 ], [ 144.731283, 13.477061 ], [ 144.731332, 13.477153 ], [ 144.73148, 13.477308 ], [ 144.73154, 13.477456 ], [ 144.731603, 13.477513 ], [ 144.731666, 13.477629 ], [ 144.731725, 13.477805 ], [ 144.731709, 13.477878 ], [ 144.731782, 13.478059 ], [ 144.731531, 13.478065 ], [ 144.73135, 13.47807 ], [ 144.731268, 13.47807 ], [ 144.731022, 13.47807 ], [ 144.73094, 13.47807 ], [ 144.730664, 13.478078 ], [ 144.7306, 13.47808 ], [ 144.729839, 13.478116 ], [ 144.729565, 13.47813 ], [ 144.72936, 13.478132 ], [ 144.729038, 13.478136 ], [ 144.728635, 13.478958 ], [ 144.728661, 13.479054 ], [ 144.728674, 13.479169 ], [ 144.728688, 13.479246 ], [ 144.728746, 13.479309 ], [ 144.72878, 13.479331 ], [ 144.72879, 13.479338 ], [ 144.728853, 13.479353 ], [ 144.728917, 13.479363 ], [ 144.728985, 13.479368 ], [ 144.729009, 13.479392 ], [ 144.729023, 13.47945 ], [ 144.729003, 13.479536 ], [ 144.728943, 13.479621 ], [ 144.728899, 13.479664 ], [ 144.728816, 13.479716 ], [ 144.728776, 13.479749 ], [ 144.728624, 13.479795 ], [ 144.728565, 13.479819 ], [ 144.728501, 13.479885 ], [ 144.728486, 13.479952 ], [ 144.728461, 13.480023 ], [ 144.728421, 13.480085 ], [ 144.72841, 13.480185 ], [ 144.728424, 13.480291 ], [ 144.728448, 13.480367 ], [ 144.728531, 13.48045 ], [ 144.728569, 13.480488 ], [ 144.728642, 13.480537 ], [ 144.72868, 13.48057 ], [ 144.728695, 13.480633 ], [ 144.728704, 13.480695 ], [ 144.728718, 13.480728 ], [ 144.728708, 13.480791 ], [ 144.728673, 13.480915 ], [ 144.728667, 13.480938 ], [ 144.728657, 13.480996 ], [ 144.728681, 13.481053 ], [ 144.728715, 13.481077 ], [ 144.728798, 13.481107 ], [ 144.728876, 13.481108 ], [ 144.728949, 13.481104 ], [ 144.729042, 13.481052 ], [ 144.729121, 13.481033 ], [ 144.729145, 13.48101 ], [ 144.729292, 13.481016 ], [ 144.729346, 13.480964 ], [ 144.729379, 13.480957 ], [ 144.729395, 13.480955 ], [ 144.729483, 13.480955 ], [ 144.729547, 13.480927 ], [ 144.72968, 13.48078 ], [ 144.729734, 13.480757 ], [ 144.729808, 13.480738 ], [ 144.72995, 13.480634 ], [ 144.730043, 13.480597 ], [ 144.730107, 13.480564 ], [ 144.730167, 13.480464 ], [ 144.730275, 13.480422 ], [ 144.730309, 13.48037 ], [ 144.730398, 13.48028 ], [ 144.730403, 13.480246 ], [ 144.730423, 13.480189 ], [ 144.730458, 13.480185 ], [ 144.730497, 13.480152 ], [ 144.730503, 13.48009 ], [ 144.730532, 13.480052 ], [ 144.730577, 13.480004 ], [ 144.730626, 13.479942 ], [ 144.730754, 13.479824 ], [ 144.73076, 13.479772 ], [ 144.730784, 13.479729 ], [ 144.730814, 13.479719 ], [ 144.730867, 13.479739 ], [ 144.730921, 13.479749 ], [ 144.730931, 13.479692 ], [ 144.730912, 13.479658 ], [ 144.730947, 13.479615 ], [ 144.730962, 13.479573 ], [ 144.730933, 13.479529 ], [ 144.730899, 13.4795 ], [ 144.730934, 13.479395 ], [ 144.730935, 13.479352 ], [ 144.730891, 13.479231 ], [ 144.730887, 13.479218 ], [ 144.730883, 13.479146 ], [ 144.730884, 13.479051 ], [ 144.730904, 13.478965 ], [ 144.730953, 13.478941 ], [ 144.730988, 13.478913 ], [ 144.731076, 13.478895 ], [ 144.731135, 13.478866 ], [ 144.731174, 13.478809 ], [ 144.731185, 13.478743 ], [ 144.73121, 13.478685 ], [ 144.731254, 13.478633 ], [ 144.731352, 13.47862 ], [ 144.731364, 13.47862 ], [ 144.731474, 13.478621 ], [ 144.731601, 13.478632 ], [ 144.731694, 13.478651 ], [ 144.731767, 13.478681 ], [ 144.731805, 13.478743 ], [ 144.731824, 13.47882 ], [ 144.73185, 13.478887 ], [ 144.731943, 13.478922 ], [ 144.732026, 13.478932 ], [ 144.732134, 13.47888 ], [ 144.732198, 13.478833 ], [ 144.732296, 13.478772 ], [ 144.732369, 13.478815 ], [ 144.732432, 13.478878 ], [ 144.732529, 13.478946 ], [ 144.732616, 13.47898 ], [ 144.732738, 13.479 ], [ 144.732865, 13.479002 ], [ 144.733022, 13.478993 ], [ 144.733203, 13.47899 ], [ 144.733501, 13.478974 ], [ 144.733652, 13.47898 ], [ 144.733789, 13.478976 ], [ 144.733945, 13.478978 ], [ 144.73407, 13.478989 ], [ 144.734172, 13.479018 ], [ 144.734363, 13.479025 ], [ 144.734499, 13.47904 ], [ 144.73461, 13.479058 ], [ 144.734646, 13.479065 ], [ 144.734797, 13.479086 ], [ 144.735012, 13.479102 ], [ 144.735427, 13.479087 ], [ 144.735618, 13.479069 ], [ 144.735718, 13.479025 ], [ 144.735784, 13.479023 ], [ 144.735863, 13.479009 ], [ 144.735941, 13.47901 ], [ 144.736053, 13.47904 ], [ 144.736131, 13.479069 ], [ 144.736277, 13.479095 ], [ 144.736341, 13.479093 ], [ 144.736375, 13.479103 ], [ 144.736546, 13.479099 ], [ 144.736717, 13.479101 ], [ 144.736832, 13.479111 ], [ 144.737042, 13.479113 ], [ 144.737794, 13.479158 ], [ 144.738028, 13.479161 ], [ 144.738081, 13.479158 ], [ 144.738341, 13.479149 ], [ 144.738524, 13.479151 ], [ 144.738695, 13.479138 ], [ 144.738832, 13.479115 ], [ 144.738965, 13.479078 ], [ 144.739048, 13.479063 ], [ 144.739121, 13.479051 ], [ 144.739293, 13.479014 ], [ 144.739425, 13.479001 ], [ 144.739567, 13.47894 ], [ 144.739684, 13.478922 ], [ 144.739816, 13.478928 ], [ 144.740056, 13.478906 ], [ 144.740193, 13.478884 ], [ 144.740438, 13.478814 ], [ 144.740852, 13.478631 ], [ 144.741053, 13.478547 ], [ 144.741201, 13.478462 ], [ 144.741363, 13.478354 ], [ 144.741629, 13.47817 ], [ 144.741737, 13.478118 ], [ 144.741908, 13.478072 ], [ 144.742109, 13.478031 ], [ 144.742246, 13.478017 ], [ 144.742369, 13.477942 ], [ 144.742482, 13.477881 ], [ 144.742852, 13.47776 ], [ 144.74316, 13.477686 ], [ 144.743356, 13.477654 ], [ 144.743625, 13.477633 ], [ 144.743815, 13.477625 ], [ 144.743972, 13.477631 ], [ 144.744157, 13.477628 ], [ 144.744533, 13.477641 ], [ 144.744643, 13.477633 ], [ 144.744847, 13.477643 ], [ 144.744853, 13.477644 ], [ 144.744936, 13.477669 ], [ 144.745034, 13.477689 ], [ 144.745205, 13.477685 ], [ 144.745396, 13.477668 ], [ 144.745503, 13.477683 ], [ 144.745698, 13.477685 ], [ 144.745821, 13.477662 ], [ 144.745913, 13.477668 ], [ 144.746016, 13.477645 ], [ 144.74609, 13.477622 ], [ 144.746153, 13.477641 ], [ 144.746246, 13.477661 ], [ 144.746309, 13.477662 ], [ 144.746392, 13.477658 ], [ 144.746442, 13.47762 ], [ 144.746495, 13.477611 ], [ 144.746618, 13.477607 ], [ 144.746637, 13.477617 ], [ 144.746646, 13.477651 ], [ 144.7467, 13.477661 ], [ 144.746759, 13.477661 ], [ 144.746793, 13.477623 ], [ 144.746817, 13.477621 ], [ 144.746845, 13.477652 ], [ 144.746879, 13.477705 ], [ 144.746927, 13.477739 ], [ 144.74701, 13.477763 ], [ 144.747071, 13.477754 ], [ 144.747213, 13.477751 ], [ 144.747453, 13.477681 ], [ 144.747551, 13.477682 ], [ 144.747585, 13.477697 ], [ 144.747663, 13.477693 ], [ 144.747698, 13.477631 ], [ 144.747747, 13.477631 ], [ 144.747864, 13.477613 ], [ 144.747982, 13.477585 ], [ 144.748094, 13.477586 ], [ 144.748177, 13.477582 ], [ 144.748221, 13.477616 ], [ 144.748291, 13.477649 ], [ 144.74831, 13.477653 ], [ 144.748313, 13.477996 ], [ 144.748322, 13.478832 ], [ 144.748318, 13.479484 ], [ 144.748315, 13.47998 ], [ 144.748314, 13.480205 ], [ 144.747445, 13.480232 ], [ 144.746842, 13.480252 ], [ 144.746793, 13.480293 ], [ 144.746756, 13.480335 ], [ 144.74673, 13.480436 ], [ 144.74674, 13.481398 ], [ 144.74677, 13.48147 ], [ 144.74683, 13.481525 ], [ 144.746909, 13.481561 ], [ 144.747019, 13.481592 ], [ 144.74815, 13.481583 ], [ 144.748411, 13.481581 ], [ 144.748473, 13.481557 ], [ 144.748528, 13.481516 ], [ 144.74859, 13.481457 ], [ 144.748615, 13.481397 ], [ 144.748634, 13.481302 ], [ 144.748618, 13.480966 ], [ 144.748733, 13.480967 ], [ 144.751099, 13.480977 ], [ 144.751099, 13.481228 ], [ 144.751083, 13.481688 ], [ 144.751114, 13.481766 ], [ 144.75119, 13.481875 ], [ 144.751465, 13.482236 ], [ 144.751501, 13.482247 ], [ 144.751526, 13.482254 ], [ 144.751545, 13.482239 ], [ 144.752501, 13.482073 ], [ 144.752868, 13.482009 ], [ 144.752912, 13.482024 ], [ 144.752941, 13.482024 ], [ 144.75299, 13.481996 ], [ 144.753414, 13.481589 ], [ 144.753507, 13.48158 ], [ 144.753605, 13.481552 ], [ 144.753698, 13.481505 ], [ 144.753821, 13.481434 ], [ 144.753895, 13.481349 ], [ 144.75395, 13.481259 ], [ 144.754014, 13.481135 ], [ 144.75404, 13.481025 ], [ 144.754095, 13.480834 ], [ 144.754144, 13.480797 ], [ 144.754191, 13.48074 ], [ 144.754246, 13.480635 ], [ 144.754316, 13.480516 ], [ 144.754356, 13.480397 ], [ 144.754381, 13.480277 ], [ 144.754397, 13.480153 ], [ 144.754393, 13.480067 ], [ 144.754399, 13.479914 ], [ 144.754415, 13.479771 ], [ 144.754446, 13.479666 ], [ 144.754477, 13.479499 ], [ 144.754494, 13.479217 ], [ 144.754498, 13.479064 ], [ 144.754519, 13.47893 ], [ 144.754594, 13.478654 ], [ 144.754585, 13.478582 ], [ 144.754615, 13.478558 ], [ 144.75463, 13.478549 ], [ 144.754639, 13.478544 ], [ 144.754626, 13.478463 ], [ 144.754573, 13.478328 ], [ 144.75457, 13.478156 ], [ 144.754581, 13.477998 ], [ 144.754613, 13.477712 ], [ 144.754634, 13.477564 ], [ 144.754654, 13.477463 ], [ 144.754675, 13.47732 ], [ 144.754671, 13.47721 ], [ 144.754658, 13.477119 ], [ 144.754746, 13.477115 ], [ 144.75475, 13.477173 ], [ 144.754744, 13.477259 ], [ 144.754771, 13.47757 ], [ 144.754789, 13.477685 ], [ 144.754837, 13.477795 ], [ 144.754885, 13.477882 ], [ 144.754958, 13.477935 ], [ 144.75505, 13.47796 ], [ 144.755148, 13.477946 ], [ 144.755236, 13.477923 ], [ 144.755413, 13.477829 ], [ 144.755467, 13.477786 ], [ 144.755536, 13.477753 ], [ 144.755583, 13.477726 ], [ 144.755776, 13.477751 ], [ 144.755966, 13.477733 ], [ 144.756115, 13.477735 ], [ 144.756194, 13.477738 ], [ 144.756418, 13.477747 ], [ 144.756628, 13.477768 ], [ 144.75676, 13.477788 ], [ 144.756965, 13.477809 ], [ 144.757091, 13.477834 ], [ 144.757213, 13.477864 ], [ 144.757291, 13.477917 ], [ 144.757418, 13.477952 ], [ 144.75753, 13.477977 ], [ 144.757863, 13.477932 ], [ 144.757975, 13.477943 ], [ 144.758383, 13.477951 ], [ 144.758593, 13.477977 ], [ 144.758744, 13.477973 ], [ 144.758944, 13.477994 ], [ 144.759516, 13.478028 ], [ 144.759813, 13.478069 ], [ 144.760004, 13.478085 ], [ 144.760126, 13.478091 ], [ 144.760284, 13.478107 ], [ 144.760411, 13.478098 ], [ 144.760685, 13.47811 ], [ 144.760802, 13.478135 ], [ 144.760988, 13.478137 ], [ 144.761134, 13.478143 ], [ 144.761261, 13.478158 ], [ 144.761402, 13.478193 ], [ 144.761666, 13.478215 ], [ 144.761827, 13.478259 ], [ 144.761959, 13.478279 ], [ 144.762071, 13.478304 ], [ 144.762173, 13.47832 ], [ 144.762244, 13.478349 ], [ 144.762424, 13.478365 ], [ 144.762665, 13.478404 ], [ 144.762732, 13.478415 ], [ 144.762995, 13.47847 ], [ 144.763117, 13.478514 ], [ 144.763234, 13.47853 ], [ 144.763346, 13.47856 ], [ 144.76356, 13.478628 ], [ 144.76378, 13.478702 ], [ 144.763872, 13.478765 ], [ 144.763998, 13.478833 ], [ 144.764101, 13.478868 ], [ 144.764246, 13.47896 ], [ 144.764329, 13.479003 ], [ 144.76438, 13.479047 ], [ 144.764516, 13.479129 ], [ 144.764671, 13.479202 ], [ 144.764681, 13.479207 ], [ 144.764808, 13.479261 ], [ 144.764969, 13.479306 ], [ 144.76511, 13.47934 ], [ 144.765193, 13.479341 ], [ 144.765335, 13.479333 ], [ 144.765447, 13.479343 ], [ 144.765569, 13.479364 ], [ 144.765701, 13.479403 ], [ 144.765852, 13.479423 ], [ 144.766105, 13.479502 ], [ 144.766256, 13.479561 ], [ 144.766344, 13.47961 ], [ 144.766411, 13.479668 ], [ 144.766477, 13.479735 ], [ 144.766621, 13.47975 ], [ 144.766672, 13.479756 ], [ 144.766784, 13.479781 ], [ 144.766911, 13.479815 ], [ 144.767082, 13.47985 ], [ 144.767301, 13.479938 ], [ 144.767422, 13.479997 ], [ 144.767554, 13.480032 ], [ 144.767597, 13.480046 ], [ 144.767592, 13.479762 ], [ 144.767587, 13.479396 ], [ 144.767388, 13.479151 ], [ 144.767059, 13.478705 ], [ 144.766555, 13.478608 ], [ 144.766242, 13.478578 ], [ 144.765817, 13.478577 ], [ 144.765441, 13.478553 ], [ 144.76503, 13.478462 ], [ 144.764667, 13.478382 ], [ 144.764539, 13.478293 ], [ 144.764558, 13.478157 ], [ 144.764451, 13.478174 ], [ 144.764262, 13.478043 ], [ 144.76394, 13.477819 ], [ 144.763671, 13.477698 ], [ 144.763474, 13.477593 ], [ 144.763242, 13.47749 ], [ 144.763045, 13.477319 ], [ 144.762932, 13.477197 ], [ 144.762812, 13.477062 ], [ 144.762283, 13.477058 ], [ 144.762222, 13.477041 ], [ 144.761489, 13.476999 ], [ 144.761349, 13.477027 ], [ 144.760824, 13.477017 ], [ 144.760824, 13.477089 ], [ 144.760764, 13.477101 ], [ 144.760249, 13.477208 ], [ 144.759826, 13.477151 ], [ 144.75927, 13.47707 ], [ 144.758958, 13.476846 ], [ 144.758993, 13.476566 ], [ 144.759034, 13.47655 ], [ 144.75906, 13.476178 ], [ 144.758865, 13.476084 ], [ 144.75886, 13.47593 ], [ 144.758861, 13.475788 ], [ 144.758865, 13.475338 ], [ 144.758775, 13.475188 ], [ 144.758704, 13.475072 ], [ 144.758631, 13.474917 ], [ 144.758409, 13.474466 ], [ 144.758371, 13.47438 ], [ 144.758468, 13.474363 ], [ 144.758645, 13.474283 ], [ 144.758711, 13.474212 ], [ 144.758758, 13.474122 ], [ 144.758796, 13.473977 ], [ 144.758843, 13.473856 ], [ 144.758838, 13.473786 ], [ 144.758892, 13.473678 ], [ 144.759007, 13.473573 ], [ 144.759184, 13.473412 ], [ 144.759257, 13.473322 ], [ 144.759302, 13.473253 ], [ 144.759422, 13.472853 ], [ 144.759472, 13.472499 ], [ 144.759483, 13.472359 ], [ 144.759522, 13.472229 ], [ 144.759553, 13.472064 ], [ 144.75956, 13.471993 ], [ 144.759632, 13.471947 ], [ 144.759682, 13.471922 ], [ 144.759713, 13.471898 ], [ 144.759766, 13.471805 ], [ 144.759771, 13.471772 ], [ 144.759775, 13.471702 ], [ 144.75973, 13.471618 ], [ 144.759709, 13.47154 ], [ 144.75968, 13.471439 ], [ 144.759681, 13.471368 ], [ 144.759734, 13.471295 ], [ 144.759802, 13.471281 ], [ 144.759827, 13.471222 ], [ 144.759804, 13.47111 ], [ 144.759787, 13.470974 ], [ 144.759782, 13.470844 ], [ 144.759904, 13.470792 ], [ 144.759896, 13.470745 ], [ 144.759863, 13.470595 ], [ 144.75981, 13.470312 ], [ 144.759752, 13.470212 ], [ 144.759705, 13.470144 ], [ 144.759663, 13.470081 ], [ 144.759656, 13.469992 ], [ 144.759628, 13.469779 ], [ 144.759601, 13.469626 ], [ 144.759597, 13.46951 ], [ 144.759585, 13.469427 ], [ 144.759591, 13.469342 ], [ 144.75972, 13.469101 ], [ 144.760002, 13.468701 ], [ 144.760107, 13.468402 ], [ 144.760255, 13.468078 ], [ 144.760575, 13.467826 ], [ 144.760865, 13.467392 ], [ 144.761248, 13.467042 ], [ 144.761395, 13.466801 ], [ 144.761395, 13.466736 ], [ 144.761364, 13.466579 ], [ 144.761367, 13.466534 ], [ 144.761274, 13.466364 ], [ 144.761193, 13.46619 ], [ 144.761121, 13.466054 ], [ 144.761105, 13.465972 ], [ 144.761102, 13.465771 ], [ 144.760895, 13.465662 ], [ 144.760774, 13.465568 ], [ 144.76067, 13.465467 ], [ 144.760559, 13.465367 ], [ 144.760381, 13.465219 ], [ 144.759921, 13.464817 ], [ 144.759348, 13.464328 ], [ 144.75838, 13.46378 ], [ 144.75823, 13.46371 ], [ 144.75821, 13.463698 ], [ 144.7581, 13.46363 ], [ 144.758016, 13.463639 ], [ 144.757536, 13.463648 ], [ 144.757293, 13.463735 ], [ 144.757058, 13.463843 ], [ 144.757021, 13.463875 ], [ 144.75683, 13.464041 ], [ 144.756679, 13.464187 ], [ 144.756572, 13.46419 ], [ 144.75633, 13.46456 ], [ 144.756274, 13.464632 ], [ 144.75614, 13.46481 ], [ 144.75578, 13.46518 ], [ 144.755115, 13.465726 ], [ 144.75499, 13.46583 ], [ 144.7547, 13.46606 ], [ 144.75448, 13.46627 ], [ 144.75446, 13.466294 ], [ 144.75431, 13.46649 ], [ 144.75421, 13.46669 ], [ 144.75414, 13.46689 ], [ 144.754102, 13.467014 ], [ 144.75408, 13.46709 ], [ 144.754066, 13.467205 ], [ 144.75405, 13.46734 ], [ 144.754057, 13.46751 ], [ 144.753394, 13.46734 ], [ 144.752684, 13.467135 ], [ 144.752444, 13.467062 ], [ 144.752336, 13.467044 ], [ 144.752315, 13.467069 ], [ 144.75229, 13.4671 ], [ 144.752264, 13.467151 ], [ 144.75225, 13.46718 ], [ 144.75224, 13.4672 ], [ 144.75221, 13.46726 ], [ 144.7522, 13.46728 ], [ 144.752187, 13.46731 ], [ 144.75215, 13.467403 ], [ 144.752138, 13.467434 ], [ 144.75212, 13.46748 ], [ 144.752095, 13.467548 ], [ 144.751971, 13.467894 ], [ 144.75193, 13.46801 ], [ 144.751918, 13.468043 ], [ 144.751883, 13.468143 ], [ 144.751872, 13.468177 ], [ 144.75185, 13.46824 ], [ 144.751832, 13.468286 ], [ 144.75173, 13.46856 ], [ 144.751716, 13.468616 ], [ 144.75169, 13.46873 ], [ 144.75168, 13.46877 ], [ 144.75165, 13.46889 ], [ 144.75164, 13.46893 ], [ 144.751594, 13.469142 ], [ 144.75155, 13.46935 ], [ 144.7515, 13.46966 ], [ 144.751492, 13.469783 ], [ 144.75148, 13.47 ], [ 144.751428, 13.470281 ], [ 144.75131, 13.47037 ], [ 144.751261, 13.470411 ], [ 144.75109, 13.47056 ], [ 144.75089, 13.4707 ], [ 144.75073, 13.47079 ], [ 144.750667, 13.470817 ], [ 144.75057, 13.47086 ], [ 144.75045, 13.47092 ], [ 144.750217, 13.471002 ], [ 144.74977, 13.47116 ], [ 144.749521, 13.471253 ], [ 144.74929, 13.47134 ], [ 144.749168, 13.471386 ], [ 144.748802, 13.471524 ], [ 144.74868, 13.47157 ], [ 144.748644, 13.471581 ], [ 144.748536, 13.471613 ], [ 144.748501, 13.471625 ], [ 144.748372, 13.471663 ], [ 144.747988, 13.47178 ], [ 144.74786, 13.47182 ], [ 144.747807, 13.471837 ], [ 144.74777, 13.47185 ], [ 144.747646, 13.47188 ], [ 144.747619, 13.471887 ], [ 144.747593, 13.471894 ], [ 144.74754, 13.471907 ], [ 144.747382, 13.471946 ], [ 144.74733, 13.47196 ], [ 144.747336, 13.471985 ], [ 144.747349, 13.472042 ], [ 144.746898, 13.472118 ], [ 144.746865, 13.472136 ], [ 144.747127, 13.472997 ], [ 144.746991, 13.473314 ], [ 144.746401, 13.473848 ], [ 144.746162, 13.4742 ], [ 144.74591, 13.474458 ], [ 144.745678, 13.474697 ], [ 144.745255, 13.475062 ], [ 144.744781, 13.474991 ], [ 144.744387, 13.475252 ], [ 144.743929, 13.475404 ], [ 144.743346, 13.475424 ], [ 144.742715, 13.475485 ], [ 144.741647, 13.475357 ], [ 144.740864, 13.475202 ], [ 144.740507, 13.475132 ], [ 144.740139, 13.475184 ], [ 144.73954, 13.475219 ], [ 144.739324, 13.475376 ], [ 144.738987, 13.475682 ], [ 144.738953, 13.475736 ], [ 144.738766, 13.475963 ], [ 144.738375, 13.476159 ], [ 144.737968, 13.47612 ], [ 144.736758, 13.476059 ], [ 144.73665, 13.475992 ], [ 144.735829, 13.475858 ], [ 144.735444, 13.47586 ], [ 144.734965, 13.475998 ], [ 144.734791, 13.475987 ], [ 144.734226, 13.476 ], [ 144.733351, 13.475908 ], [ 144.733051, 13.475891 ], [ 144.733075, 13.475224 ], [ 144.73296, 13.475185 ], [ 144.732753, 13.475115 ], [ 144.73262, 13.47507 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "953500", "GEOID10": "66010953500", "NAME10": "9535", "NAMELSAD10": "Census Tract 9535", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 505282, "AWATER10": 0, "INTPTLAT10": "+13.4739068", "INTPTLON10": "+144.7401656" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.746889, 13.471979 ], [ 144.74667, 13.471986 ], [ 144.74654, 13.47199 ], [ 144.74637, 13.47199 ], [ 144.74586, 13.47199 ], [ 144.74569, 13.47199 ], [ 144.74546, 13.47199 ], [ 144.74477, 13.47199 ], [ 144.74454, 13.47199 ], [ 144.744522, 13.47199 ], [ 144.744468, 13.47199 ], [ 144.74445, 13.47199 ], [ 144.744276, 13.471986 ], [ 144.743754, 13.471974 ], [ 144.74358, 13.47197 ], [ 144.743404, 13.471968 ], [ 144.742876, 13.471962 ], [ 144.7427, 13.47196 ], [ 144.742563, 13.47196 ], [ 144.74222, 13.47196 ], [ 144.742155, 13.471956 ], [ 144.74202, 13.47195 ], [ 144.741942, 13.47195 ], [ 144.74183, 13.47195 ], [ 144.741709, 13.47195 ], [ 144.741632, 13.47195 ], [ 144.741539, 13.47195 ], [ 144.741262, 13.47195 ], [ 144.74117, 13.47195 ], [ 144.74083, 13.47194 ], [ 144.740122, 13.47193 ], [ 144.7401, 13.47193 ], [ 144.7395, 13.47193 ], [ 144.73872, 13.47191 ], [ 144.73827, 13.47191 ], [ 144.7379, 13.47195 ], [ 144.73748, 13.47209 ], [ 144.73728, 13.47219 ], [ 144.7371, 13.47233 ], [ 144.737081, 13.472346 ], [ 144.73686, 13.47254 ], [ 144.7367, 13.47266 ], [ 144.73645, 13.4728 ], [ 144.736211, 13.472919 ], [ 144.73611, 13.47297 ], [ 144.73596, 13.47309 ], [ 144.735886, 13.473175 ], [ 144.73584, 13.47323 ], [ 144.73565, 13.47347 ], [ 144.7355, 13.47362 ], [ 144.73527, 13.47377 ], [ 144.73502, 13.47389 ], [ 144.734908, 13.473912 ], [ 144.73482, 13.47393 ], [ 144.73455, 13.47394 ], [ 144.734492, 13.47394 ], [ 144.73434, 13.47394 ], [ 144.7342, 13.47397 ], [ 144.734157, 13.473988 ], [ 144.73375, 13.47417 ], [ 144.73325, 13.47441 ], [ 144.733229, 13.474422 ], [ 144.73301, 13.47456 ], [ 144.732947, 13.474613 ], [ 144.73289, 13.47466 ], [ 144.73288, 13.474676 ], [ 144.73283, 13.47476 ], [ 144.732728, 13.474909 ], [ 144.732677, 13.474986 ], [ 144.73262, 13.47507 ], [ 144.732753, 13.475115 ], [ 144.73296, 13.475185 ], [ 144.733075, 13.475224 ], [ 144.733051, 13.475891 ], [ 144.733351, 13.475908 ], [ 144.734226, 13.476 ], [ 144.734791, 13.475987 ], [ 144.734965, 13.475998 ], [ 144.735444, 13.47586 ], [ 144.735829, 13.475858 ], [ 144.73665, 13.475992 ], [ 144.736758, 13.476059 ], [ 144.737968, 13.47612 ], [ 144.738375, 13.476159 ], [ 144.738766, 13.475963 ], [ 144.738953, 13.475736 ], [ 144.738987, 13.475682 ], [ 144.739324, 13.475376 ], [ 144.73954, 13.475219 ], [ 144.740139, 13.475184 ], [ 144.740507, 13.475132 ], [ 144.740864, 13.475202 ], [ 144.741647, 13.475357 ], [ 144.742715, 13.475485 ], [ 144.743346, 13.475424 ], [ 144.743929, 13.475404 ], [ 144.744387, 13.475252 ], [ 144.744781, 13.474991 ], [ 144.745255, 13.475062 ], [ 144.745678, 13.474697 ], [ 144.74591, 13.474458 ], [ 144.746162, 13.4742 ], [ 144.746401, 13.473848 ], [ 144.746991, 13.473314 ], [ 144.747127, 13.472997 ], [ 144.746865, 13.472136 ], [ 144.746875, 13.472039 ], [ 144.746889, 13.471979 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "953600", "GEOID10": "66010953600", "NAME10": "9536", "NAMELSAD10": "Census Tract 9536", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2156282, "AWATER10": 0, "INTPTLAT10": "+13.4640273", "INTPTLON10": "+144.7457229" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.74654, 13.47199 ], [ 144.74667, 13.471986 ], [ 144.746889, 13.471979 ], [ 144.746875, 13.472039 ], [ 144.746865, 13.472136 ], [ 144.746898, 13.472118 ], [ 144.747349, 13.472042 ], [ 144.747336, 13.471985 ], [ 144.74733, 13.47196 ], [ 144.747382, 13.471946 ], [ 144.74754, 13.471907 ], [ 144.747593, 13.471894 ], [ 144.747619, 13.471887 ], [ 144.747646, 13.47188 ], [ 144.74777, 13.47185 ], [ 144.747807, 13.471837 ], [ 144.74786, 13.47182 ], [ 144.747988, 13.47178 ], [ 144.748372, 13.471663 ], [ 144.748501, 13.471625 ], [ 144.748536, 13.471613 ], [ 144.748644, 13.471581 ], [ 144.74868, 13.47157 ], [ 144.748802, 13.471524 ], [ 144.749168, 13.471386 ], [ 144.74929, 13.47134 ], [ 144.749521, 13.471253 ], [ 144.74977, 13.47116 ], [ 144.750217, 13.471002 ], [ 144.75045, 13.47092 ], [ 144.75057, 13.47086 ], [ 144.750667, 13.470817 ], [ 144.75073, 13.47079 ], [ 144.75089, 13.4707 ], [ 144.75109, 13.47056 ], [ 144.751261, 13.470411 ], [ 144.75131, 13.47037 ], [ 144.751428, 13.470281 ], [ 144.75148, 13.47 ], [ 144.751492, 13.469783 ], [ 144.7515, 13.46966 ], [ 144.75155, 13.46935 ], [ 144.751594, 13.469142 ], [ 144.75164, 13.46893 ], [ 144.75165, 13.46889 ], [ 144.75168, 13.46877 ], [ 144.75169, 13.46873 ], [ 144.751716, 13.468616 ], [ 144.75173, 13.46856 ], [ 144.751832, 13.468286 ], [ 144.75185, 13.46824 ], [ 144.751872, 13.468177 ], [ 144.751883, 13.468143 ], [ 144.751918, 13.468043 ], [ 144.75193, 13.46801 ], [ 144.751971, 13.467894 ], [ 144.752095, 13.467548 ], [ 144.75212, 13.46748 ], [ 144.752138, 13.467434 ], [ 144.75215, 13.467403 ], [ 144.752187, 13.46731 ], [ 144.7522, 13.46728 ], [ 144.752025, 13.466885 ], [ 144.752027, 13.466422 ], [ 144.75202, 13.46515 ], [ 144.75206, 13.46503 ], [ 144.75206, 13.465028 ], [ 144.75209, 13.46478 ], [ 144.75209, 13.464647 ], [ 144.75209, 13.46452 ], [ 144.752091, 13.464325 ], [ 144.752094, 13.463743 ], [ 144.752096, 13.463549 ], [ 144.752096, 13.463405 ], [ 144.752098, 13.462973 ], [ 144.7521, 13.46283 ], [ 144.752099, 13.462801 ], [ 144.752098, 13.462714 ], [ 144.752098, 13.462686 ], [ 144.752094, 13.46245 ], [ 144.75209, 13.46208 ], [ 144.75209, 13.461744 ], [ 144.75209, 13.46157 ], [ 144.7521, 13.46151 ], [ 144.752098, 13.4613 ], [ 144.752092, 13.46067 ], [ 144.75209, 13.46046 ], [ 144.75209, 13.46042 ], [ 144.75209, 13.4603 ], [ 144.75209, 13.46026 ], [ 144.75209, 13.46018 ], [ 144.75209, 13.45994 ], [ 144.75209, 13.45986 ], [ 144.75209, 13.459606 ], [ 144.75209, 13.45916 ], [ 144.75206, 13.459 ], [ 144.752032, 13.45892 ], [ 144.752017, 13.458644 ], [ 144.752016, 13.458457 ], [ 144.752149, 13.45826 ], [ 144.752156, 13.458089 ], [ 144.752278, 13.458084 ], [ 144.752325, 13.458012 ], [ 144.752184, 13.457671 ], [ 144.751981, 13.457108 ], [ 144.751954, 13.457111 ], [ 144.75174, 13.45713 ], [ 144.75142, 13.45708 ], [ 144.75124, 13.45704 ], [ 144.750927, 13.456888 ], [ 144.750881, 13.456865 ], [ 144.75087, 13.45686 ], [ 144.750738, 13.456816 ], [ 144.75069, 13.4568 ], [ 144.7506, 13.4568 ], [ 144.75044, 13.45687 ], [ 144.75023, 13.457 ], [ 144.75008, 13.45706 ], [ 144.75, 13.45707 ], [ 144.74971, 13.45703 ], [ 144.749703, 13.457029 ], [ 144.74915, 13.45699 ], [ 144.74901, 13.45699 ], [ 144.74869, 13.45689 ], [ 144.74809, 13.45671 ], [ 144.74782, 13.45666 ], [ 144.74729, 13.4566 ], [ 144.746596, 13.456558 ], [ 144.745545, 13.456496 ], [ 144.74386, 13.456381 ], [ 144.742945, 13.45632 ], [ 144.740387, 13.456034 ], [ 144.73995, 13.456727 ], [ 144.739506, 13.457433 ], [ 144.738539, 13.458589 ], [ 144.738421, 13.459427 ], [ 144.738272, 13.459655 ], [ 144.738259, 13.45975 ], [ 144.738256, 13.460027 ], [ 144.738297, 13.460216 ], [ 144.738332, 13.460431 ], [ 144.738299, 13.460579 ], [ 144.738287, 13.460663 ], [ 144.738322, 13.460723 ], [ 144.738543, 13.460833 ], [ 144.738782, 13.460883 ], [ 144.738965, 13.460845 ], [ 144.739107, 13.460837 ], [ 144.739142, 13.460887 ], [ 144.739067, 13.460959 ], [ 144.738895, 13.461077 ], [ 144.738771, 13.461291 ], [ 144.738746, 13.461423 ], [ 144.738939, 13.461701 ], [ 144.739241, 13.461959 ], [ 144.73957, 13.461995 ], [ 144.739697, 13.461996 ], [ 144.739794, 13.462033 ], [ 144.739964, 13.462166 ], [ 144.740205, 13.462138 ], [ 144.740443, 13.46211 ], [ 144.740603, 13.462112 ], [ 144.740774, 13.462173 ], [ 144.741119, 13.462565 ], [ 144.741354, 13.463115 ], [ 144.741474, 13.463485 ], [ 144.741508, 13.46356 ], [ 144.741622, 13.463941 ], [ 144.741736, 13.464138 ], [ 144.741744, 13.464305 ], [ 144.741889, 13.464704 ], [ 144.741961, 13.464991 ], [ 144.742118, 13.465306 ], [ 144.742173, 13.465549 ], [ 144.741969, 13.466636 ], [ 144.741768, 13.467014 ], [ 144.74174, 13.467101 ], [ 144.741704, 13.467225 ], [ 144.741741, 13.467488 ], [ 144.741814, 13.467868 ], [ 144.741821, 13.468135 ], [ 144.741719, 13.46852 ], [ 144.741558, 13.468781 ], [ 144.741106, 13.468997 ], [ 144.740787, 13.469152 ], [ 144.740505, 13.46931 ], [ 144.740447, 13.469354 ], [ 144.739615, 13.470343 ], [ 144.739524, 13.470417 ], [ 144.738895, 13.470547 ], [ 144.738425, 13.470728 ], [ 144.738267, 13.470847 ], [ 144.738168, 13.470993 ], [ 144.738065, 13.471212 ], [ 144.737991, 13.471325 ], [ 144.737928, 13.471438 ], [ 144.737775, 13.471552 ], [ 144.737644, 13.471684 ], [ 144.737509, 13.471753 ], [ 144.737363, 13.471808 ], [ 144.737227, 13.471853 ], [ 144.736992, 13.471914 ], [ 144.736861, 13.47199 ], [ 144.736762, 13.472071 ], [ 144.736755, 13.472107 ], [ 144.736701, 13.472199 ], [ 144.736617, 13.472346 ], [ 144.73657, 13.472446 ], [ 144.736439, 13.472503 ], [ 144.736294, 13.472515 ], [ 144.736164, 13.472545 ], [ 144.736132, 13.472569 ], [ 144.73601, 13.472658 ], [ 144.735818, 13.472751 ], [ 144.735508, 13.473019 ], [ 144.73545, 13.473092 ], [ 144.735434, 13.473215 ], [ 144.735342, 13.473336 ], [ 144.735191, 13.473518 ], [ 144.73514, 13.473571 ], [ 144.734858, 13.473639 ], [ 144.734638, 13.473649 ], [ 144.734545, 13.473656 ], [ 144.734425, 13.473652 ], [ 144.734093, 13.473724 ], [ 144.733929, 13.473801 ], [ 144.7337, 13.473863 ], [ 144.73336, 13.474085 ], [ 144.733164, 13.474215 ], [ 144.732867, 13.474416 ], [ 144.732386, 13.474948 ], [ 144.732296, 13.475021 ], [ 144.73223, 13.475105 ], [ 144.732186, 13.4752 ], [ 144.732181, 13.475273 ], [ 144.732215, 13.475341 ], [ 144.732252, 13.475443 ], [ 144.73241, 13.47531 ], [ 144.732458, 13.475255 ], [ 144.732521, 13.475183 ], [ 144.73262, 13.47507 ], [ 144.732677, 13.474986 ], [ 144.732728, 13.474909 ], [ 144.73283, 13.47476 ], [ 144.73288, 13.474676 ], [ 144.73289, 13.47466 ], [ 144.732947, 13.474613 ], [ 144.73301, 13.47456 ], [ 144.733229, 13.474422 ], [ 144.73325, 13.47441 ], [ 144.73375, 13.47417 ], [ 144.734157, 13.473988 ], [ 144.7342, 13.47397 ], [ 144.73434, 13.47394 ], [ 144.734492, 13.47394 ], [ 144.73455, 13.47394 ], [ 144.73482, 13.47393 ], [ 144.734908, 13.473912 ], [ 144.73502, 13.47389 ], [ 144.73527, 13.47377 ], [ 144.7355, 13.47362 ], [ 144.73565, 13.47347 ], [ 144.73584, 13.47323 ], [ 144.735886, 13.473175 ], [ 144.73596, 13.47309 ], [ 144.73611, 13.47297 ], [ 144.736211, 13.472919 ], [ 144.73645, 13.4728 ], [ 144.7367, 13.47266 ], [ 144.73686, 13.47254 ], [ 144.737081, 13.472346 ], [ 144.7371, 13.47233 ], [ 144.73728, 13.47219 ], [ 144.73748, 13.47209 ], [ 144.7379, 13.47195 ], [ 144.73827, 13.47191 ], [ 144.73872, 13.47191 ], [ 144.7395, 13.47193 ], [ 144.7401, 13.47193 ], [ 144.740122, 13.47193 ], [ 144.74083, 13.47194 ], [ 144.74117, 13.47195 ], [ 144.741262, 13.47195 ], [ 144.741539, 13.47195 ], [ 144.741632, 13.47195 ], [ 144.741709, 13.47195 ], [ 144.74183, 13.47195 ], [ 144.741942, 13.47195 ], [ 144.74202, 13.47195 ], [ 144.742155, 13.471956 ], [ 144.74222, 13.47196 ], [ 144.742563, 13.47196 ], [ 144.7427, 13.47196 ], [ 144.742876, 13.471962 ], [ 144.743404, 13.471968 ], [ 144.74358, 13.47197 ], [ 144.743754, 13.471974 ], [ 144.744276, 13.471986 ], [ 144.74445, 13.47199 ], [ 144.744468, 13.47199 ], [ 144.744522, 13.47199 ], [ 144.74454, 13.47199 ], [ 144.74477, 13.47199 ], [ 144.74546, 13.47199 ], [ 144.74569, 13.47199 ], [ 144.74586, 13.47199 ], [ 144.74637, 13.47199 ], [ 144.74654, 13.47199 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "954700", "GEOID10": "66010954700", "NAME10": "9547", "NAMELSAD10": "Census Tract 9547", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1690592, "AWATER10": 2939, "INTPTLAT10": "+13.3867929", "INTPTLON10": "+144.6626051" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.660739, 13.401939 ], [ 144.660625, 13.401915 ], [ 144.660511, 13.401834 ], [ 144.660393, 13.401813 ], [ 144.660258, 13.401852 ], [ 144.660171, 13.401903 ], [ 144.660162, 13.402038 ], [ 144.660174, 13.402171 ], [ 144.6603, 13.402243 ], [ 144.66042, 13.402249 ], [ 144.660535, 13.402207 ], [ 144.660655, 13.402144 ], [ 144.660748, 13.402045 ], [ 144.660739, 13.401939 ] ] ], [ [ [ 144.660342, 13.401217 ], [ 144.660294, 13.401169 ], [ 144.660216, 13.401124 ], [ 144.66015, 13.401151 ], [ 144.660062, 13.401154 ], [ 144.659987, 13.401238 ], [ 144.659903, 13.401371 ], [ 144.659873, 13.401503 ], [ 144.659867, 13.40165 ], [ 144.659936, 13.401783 ], [ 144.660029, 13.401834 ], [ 144.660095, 13.401837 ], [ 144.660222, 13.401726 ], [ 144.660351, 13.401599 ], [ 144.660333, 13.401491 ], [ 144.660291, 13.401331 ], [ 144.660342, 13.401217 ] ] ], [ [ [ 144.655716, 13.386618 ], [ 144.65572, 13.386532 ], [ 144.655454, 13.386262 ], [ 144.65538, 13.386234 ], [ 144.655047, 13.386559 ], [ 144.654777, 13.386798 ], [ 144.653908, 13.387202 ], [ 144.6539, 13.387327 ], [ 144.653909, 13.387399 ], [ 144.654209, 13.387417 ], [ 144.654252, 13.387452 ], [ 144.654397, 13.387495 ], [ 144.654459, 13.38747 ], [ 144.654601, 13.387378 ], [ 144.654769, 13.387198 ], [ 144.654894, 13.387072 ], [ 144.655016, 13.386998 ], [ 144.65518, 13.386916 ], [ 144.655266, 13.386861 ], [ 144.655427, 13.38674 ], [ 144.655716, 13.386618 ] ] ], [ [ [ 144.668083, 13.384316 ], [ 144.665807, 13.3835 ], [ 144.665665, 13.383363 ], [ 144.66557, 13.383331 ], [ 144.665513, 13.383312 ], [ 144.665323, 13.383888 ], [ 144.665304, 13.38411 ], [ 144.66528, 13.384406 ], [ 144.665195, 13.384392 ], [ 144.664813, 13.384377 ], [ 144.664056, 13.38435 ], [ 144.663748, 13.384282 ], [ 144.663799, 13.384142 ], [ 144.663846, 13.383967 ], [ 144.663847, 13.383966 ], [ 144.663762, 13.383822 ], [ 144.663496, 13.383685 ], [ 144.663538, 13.383666 ], [ 144.663667, 13.383608 ], [ 144.66371, 13.38359 ], [ 144.663443, 13.383608 ], [ 144.662934, 13.383643 ], [ 144.662817, 13.383375 ], [ 144.66271, 13.38313 ], [ 144.662715, 13.383084 ], [ 144.66272, 13.38305 ], [ 144.662754, 13.382953 ], [ 144.66277, 13.38291 ], [ 144.6628, 13.3828 ], [ 144.662864, 13.382671 ], [ 144.66291, 13.38258 ], [ 144.663249, 13.382002 ], [ 144.66338, 13.38178 ], [ 144.663302, 13.38173 ], [ 144.66313, 13.38162 ], [ 144.663067, 13.381581 ], [ 144.662989, 13.381532 ], [ 144.662885, 13.381467 ], [ 144.662573, 13.381274 ], [ 144.66247, 13.38121 ], [ 144.66229, 13.3811 ], [ 144.662251, 13.381083 ], [ 144.66212, 13.38103 ], [ 144.66195, 13.381 ], [ 144.66181, 13.38099 ], [ 144.66164, 13.38099 ], [ 144.661506, 13.381004 ], [ 144.66146, 13.38101 ], [ 144.66126, 13.38106 ], [ 144.661212, 13.380938 ], [ 144.661068, 13.380572 ], [ 144.66102, 13.38045 ], [ 144.660586, 13.380608 ], [ 144.66028, 13.38072 ], [ 144.6594, 13.38101 ], [ 144.659274, 13.381054 ], [ 144.65884, 13.38121 ], [ 144.658737, 13.381246 ], [ 144.658431, 13.381353 ], [ 144.65833, 13.38139 ], [ 144.658225, 13.381433 ], [ 144.65814, 13.38147 ], [ 144.65795, 13.38156 ], [ 144.65792, 13.381582 ], [ 144.65783, 13.38165 ], [ 144.657742, 13.381733 ], [ 144.6576, 13.38187 ], [ 144.657501, 13.382002 ], [ 144.65743, 13.3821 ], [ 144.65738, 13.38224 ], [ 144.65731, 13.38248 ], [ 144.657281, 13.382673 ], [ 144.65726, 13.38282 ], [ 144.657131, 13.382808 ], [ 144.65682, 13.38278 ], [ 144.656747, 13.382769 ], [ 144.65662, 13.38275 ], [ 144.65644, 13.3827 ], [ 144.65632, 13.38266 ], [ 144.656259, 13.382627 ], [ 144.65615, 13.38257 ], [ 144.65605, 13.38251 ], [ 144.6559, 13.38237 ], [ 144.65581, 13.38227 ], [ 144.65568, 13.38208 ], [ 144.655466, 13.38182 ], [ 144.6554, 13.38174 ], [ 144.6553, 13.38163 ], [ 144.65525, 13.38158 ], [ 144.6552, 13.38155 ], [ 144.65507, 13.38152 ], [ 144.655001, 13.38152 ], [ 144.65491, 13.38152 ], [ 144.65471, 13.38155 ], [ 144.65442, 13.38161 ], [ 144.654406, 13.381614 ], [ 144.65431, 13.38165 ], [ 144.65422, 13.38169 ], [ 144.654197, 13.381647 ], [ 144.654131, 13.381518 ], [ 144.654109, 13.381476 ], [ 144.654065, 13.381511 ], [ 144.653934, 13.38162 ], [ 144.653891, 13.381656 ], [ 144.653969, 13.38179 ], [ 144.654093, 13.38205 ], [ 144.654169, 13.382235 ], [ 144.654284, 13.382515 ], [ 144.65435, 13.382722 ], [ 144.654412, 13.382899 ], [ 144.654493, 13.383062 ], [ 144.654727, 13.383619 ], [ 144.65476, 13.383753 ], [ 144.654813, 13.383864 ], [ 144.654953, 13.383975 ], [ 144.654983, 13.383999 ], [ 144.655142, 13.384159 ], [ 144.65533, 13.384385 ], [ 144.655388, 13.384449 ], [ 144.655509, 13.384583 ], [ 144.655639, 13.384766 ], [ 144.655698, 13.384883 ], [ 144.655764, 13.385015 ], [ 144.65584, 13.385226 ], [ 144.6559, 13.385317 ], [ 144.655937, 13.385419 ], [ 144.655989, 13.385601 ], [ 144.656007, 13.38575 ], [ 144.655987, 13.385874 ], [ 144.655947, 13.38596 ], [ 144.655868, 13.386045 ], [ 144.655805, 13.386082 ], [ 144.655766, 13.386086 ], [ 144.65574, 13.386081 ], [ 144.655727, 13.386096 ], [ 144.655723, 13.386125 ], [ 144.655728, 13.386154 ], [ 144.655744, 13.386179 ], [ 144.655765, 13.386194 ], [ 144.65583, 13.386197 ], [ 144.655838, 13.386195 ], [ 144.655849, 13.386194 ], [ 144.655868, 13.386196 ], [ 144.655891, 13.386201 ], [ 144.655946, 13.386225 ], [ 144.656046, 13.386281 ], [ 144.656089, 13.3863 ], [ 144.656211, 13.386383 ], [ 144.656244, 13.386412 ], [ 144.656256, 13.386432 ], [ 144.656294, 13.38646 ], [ 144.656328, 13.386494 ], [ 144.656376, 13.386542 ], [ 144.656423, 13.386605 ], [ 144.656452, 13.386645 ], [ 144.656578, 13.386817 ], [ 144.656694, 13.386961 ], [ 144.65682, 13.387072 ], [ 144.657053, 13.387213 ], [ 144.6573, 13.387387 ], [ 144.657472, 13.387532 ], [ 144.657705, 13.387721 ], [ 144.657903, 13.387907 ], [ 144.657952, 13.387953 ], [ 144.658087, 13.388069 ], [ 144.658189, 13.388127 ], [ 144.658268, 13.388128 ], [ 144.658366, 13.388081 ], [ 144.658469, 13.387972 ], [ 144.658528, 13.387958 ], [ 144.658674, 13.388012 ], [ 144.658878, 13.38811 ], [ 144.659067, 13.388269 ], [ 144.659231, 13.388476 ], [ 144.659288, 13.388625 ], [ 144.659355, 13.388769 ], [ 144.659461, 13.388899 ], [ 144.659616, 13.389049 ], [ 144.659746, 13.389243 ], [ 144.659775, 13.389285 ], [ 144.659852, 13.389438 ], [ 144.659904, 13.389611 ], [ 144.659976, 13.389769 ], [ 144.660072, 13.389861 ], [ 144.660224, 13.389936 ], [ 144.660281, 13.389964 ], [ 144.660397, 13.390146 ], [ 144.66055, 13.390425 ], [ 144.66067, 13.39066 ], [ 144.660775, 13.390905 ], [ 144.660842, 13.391097 ], [ 144.660884, 13.391274 ], [ 144.660915, 13.391619 ], [ 144.660973, 13.39172 ], [ 144.660989, 13.39202 ], [ 144.660955, 13.392021 ], [ 144.660957, 13.392053 ], [ 144.660981, 13.392337 ], [ 144.660943, 13.392795 ], [ 144.660861, 13.393153 ], [ 144.660826, 13.393234 ], [ 144.66085, 13.393273 ], [ 144.66084, 13.393301 ], [ 144.660791, 13.39331 ], [ 144.660772, 13.393277 ], [ 144.660733, 13.393253 ], [ 144.66066, 13.39329 ], [ 144.660615, 13.393371 ], [ 144.660652, 13.393515 ], [ 144.660777, 13.393678 ], [ 144.660785, 13.393689 ], [ 144.660792, 13.393698 ], [ 144.660814, 13.393721 ], [ 144.660824, 13.393732 ], [ 144.660971, 13.393886 ], [ 144.661121, 13.39405 ], [ 144.661158, 13.394119 ], [ 144.661246, 13.39428 ], [ 144.661344, 13.394516 ], [ 144.661425, 13.394665 ], [ 144.661433, 13.394885 ], [ 144.661471, 13.395019 ], [ 144.661571, 13.39523 ], [ 144.661633, 13.395417 ], [ 144.661648, 13.395562 ], [ 144.661655, 13.395623 ], [ 144.661698, 13.395738 ], [ 144.661834, 13.395873 ], [ 144.661925, 13.395979 ], [ 144.661964, 13.396054 ], [ 144.662021, 13.396162 ], [ 144.662049, 13.396294 ], [ 144.662068, 13.396378 ], [ 144.662096, 13.396444 ], [ 144.66214, 13.396546 ], [ 144.662172, 13.396649 ], [ 144.662195, 13.396719 ], [ 144.662201, 13.396737 ], [ 144.662234, 13.396886 ], [ 144.662318, 13.397021 ], [ 144.662407, 13.39725 ], [ 144.662437, 13.397328 ], [ 144.662532, 13.397606 ], [ 144.662584, 13.39786 ], [ 144.66267, 13.39799 ], [ 144.662954, 13.39849 ], [ 144.663053, 13.398841 ], [ 144.663091, 13.398974 ], [ 144.663126, 13.399323 ], [ 144.663132, 13.399411 ], [ 144.663143, 13.399581 ], [ 144.663175, 13.399816 ], [ 144.66321, 13.399944 ], [ 144.663246, 13.400075 ], [ 144.663302, 13.400334 ], [ 144.663314, 13.400645 ], [ 144.663298, 13.400726 ], [ 144.663259, 13.40074 ], [ 144.66321, 13.400715 ], [ 144.663162, 13.400701 ], [ 144.663137, 13.400782 ], [ 144.663078, 13.401057 ], [ 144.663122, 13.401033 ], [ 144.66321, 13.401044 ], [ 144.663302, 13.401049 ], [ 144.663565, 13.401074 ], [ 144.663629, 13.401081 ], [ 144.663815, 13.401069 ], [ 144.664001, 13.401037 ], [ 144.664241, 13.400986 ], [ 144.664192, 13.400876 ], [ 144.664182, 13.400854 ], [ 144.664221, 13.400845 ], [ 144.66431, 13.400807 ], [ 144.664438, 13.400754 ], [ 144.664577, 13.400707 ], [ 144.664825, 13.400588 ], [ 144.664932, 13.400535 ], [ 144.665012, 13.400488 ], [ 144.665135, 13.400399 ], [ 144.665192, 13.400357 ], [ 144.665284, 13.400274 ], [ 144.665369, 13.400174 ], [ 144.665497, 13.399977 ], [ 144.665543, 13.399896 ], [ 144.665589, 13.399778 ], [ 144.665661, 13.399488 ], [ 144.665665, 13.399477 ], [ 144.666078, 13.398149 ], [ 144.666172, 13.398031 ], [ 144.666239, 13.397988 ], [ 144.666392, 13.397979 ], [ 144.667083, 13.398079 ], [ 144.667227, 13.398058 ], [ 144.667353, 13.397975 ], [ 144.667425, 13.397848 ], [ 144.667443, 13.397726 ], [ 144.667507, 13.397496 ], [ 144.667609, 13.39732 ], [ 144.667914, 13.397154 ], [ 144.667944, 13.39683 ], [ 144.668, 13.396515 ], [ 144.667983, 13.396382 ], [ 144.667737, 13.395918 ], [ 144.667733, 13.395781 ], [ 144.667777, 13.39572 ], [ 144.667856, 13.395611 ], [ 144.668027, 13.395423 ], [ 144.668057, 13.395334 ], [ 144.668048, 13.395155 ], [ 144.668013, 13.395002 ], [ 144.668092, 13.394797 ], [ 144.668114, 13.394669 ], [ 144.668114, 13.394571 ], [ 144.668018, 13.394435 ], [ 144.667886, 13.394413 ], [ 144.667602, 13.394439 ], [ 144.667573, 13.394408 ], [ 144.667599, 13.394251 ], [ 144.667698, 13.394175 ], [ 144.667749, 13.394109 ], [ 144.667769, 13.394047 ], [ 144.667783, 13.39395 ], [ 144.667772, 13.393876 ], [ 144.667712, 13.393774 ], [ 144.667654, 13.393735 ], [ 144.667551, 13.393718 ], [ 144.667491, 13.393678 ], [ 144.667453, 13.393628 ], [ 144.667462, 13.393581 ], [ 144.667494, 13.393565 ], [ 144.667581, 13.393573 ], [ 144.667895, 13.393547 ], [ 144.667939, 13.393513 ], [ 144.668138, 13.393262 ], [ 144.66902, 13.392758 ], [ 144.66929, 13.392452 ], [ 144.669533, 13.392356 ], [ 144.669288, 13.391939 ], [ 144.6692, 13.391789 ], [ 144.66797, 13.39211 ], [ 144.66752, 13.391827 ], [ 144.666911, 13.391568 ], [ 144.666043, 13.391201 ], [ 144.666634, 13.390344 ], [ 144.66701, 13.3898 ], [ 144.666552, 13.389086 ], [ 144.667102, 13.388047 ], [ 144.667761, 13.385321 ], [ 144.668083, 13.384316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "953900", "GEOID10": "66010953900", "NAME10": "9539", "NAMELSAD10": "Census Tract 9539", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 37068459, "AWATER10": 16674, "INTPTLAT10": "+13.4137344", "INTPTLON10": "+144.7408931" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.760515, 13.392605 ], [ 144.760435, 13.392902 ], [ 144.760526, 13.39332 ], [ 144.759553, 13.394016 ], [ 144.758985, 13.394729 ], [ 144.758304, 13.395587 ], [ 144.75794, 13.396344 ], [ 144.757913, 13.396401 ], [ 144.757521, 13.396817 ], [ 144.757048, 13.397289 ], [ 144.756398, 13.398199 ], [ 144.75522, 13.399156 ], [ 144.755026, 13.399563 ], [ 144.754998, 13.399624 ], [ 144.755028, 13.400016 ], [ 144.754766, 13.400217 ], [ 144.754542, 13.400133 ], [ 144.754153, 13.40009 ], [ 144.753919, 13.400231 ], [ 144.753797, 13.400627 ], [ 144.753561, 13.400485 ], [ 144.753398, 13.400453 ], [ 144.753224, 13.40042 ], [ 144.753168, 13.400128 ], [ 144.752935, 13.399686 ], [ 144.752724, 13.399406 ], [ 144.75262, 13.399267 ], [ 144.75242, 13.39909 ], [ 144.75221, 13.398965 ], [ 144.752189, 13.398953 ], [ 144.751822, 13.398673 ], [ 144.751673, 13.398477 ], [ 144.751525, 13.398284 ], [ 144.751505, 13.398088 ], [ 144.751491, 13.397946 ], [ 144.751382, 13.397515 ], [ 144.751334, 13.397325 ], [ 144.751379, 13.397074 ], [ 144.751413, 13.396905 ], [ 144.75142, 13.396871 ], [ 144.75179, 13.396643 ], [ 144.751852, 13.396552 ], [ 144.752122, 13.396103 ], [ 144.752224, 13.395957 ], [ 144.752353, 13.395775 ], [ 144.752445, 13.395751 ], [ 144.752552, 13.39577 ], [ 144.752615, 13.395769 ], [ 144.752692, 13.395769 ], [ 144.752788, 13.39571 ], [ 144.752843, 13.395678 ], [ 144.752823, 13.395623 ], [ 144.752798, 13.39555 ], [ 144.752723, 13.39549 ], [ 144.752678, 13.395455 ], [ 144.752551, 13.395405 ], [ 144.752335, 13.395322 ], [ 144.752231, 13.395179 ], [ 144.752151, 13.39507 ], [ 144.751443, 13.393584 ], [ 144.751054, 13.392026 ], [ 144.750702, 13.391409 ], [ 144.750449, 13.390964 ], [ 144.749932, 13.389164 ], [ 144.748887, 13.388222 ], [ 144.74825, 13.38801 ], [ 144.746653, 13.386879 ], [ 144.746238, 13.385573 ], [ 144.746089, 13.385329 ], [ 144.745791, 13.385272 ], [ 144.745411, 13.385368 ], [ 144.745279, 13.385457 ], [ 144.744543, 13.38552 ], [ 144.744395, 13.385641 ], [ 144.74423, 13.386095 ], [ 144.744296, 13.386265 ], [ 144.744586, 13.386509 ], [ 144.744636, 13.386728 ], [ 144.744545, 13.386825 ], [ 144.743949, 13.387003 ], [ 144.743471, 13.387147 ], [ 144.742933, 13.386967 ], [ 144.742288, 13.387046 ], [ 144.742131, 13.387022 ], [ 144.741949, 13.386964 ], [ 144.7418, 13.386697 ], [ 144.74137, 13.386655 ], [ 144.741006, 13.386322 ], [ 144.740377, 13.386109 ], [ 144.739956, 13.386108 ], [ 144.739121, 13.386212 ], [ 144.738807, 13.386373 ], [ 144.737873, 13.386476 ], [ 144.737666, 13.386581 ], [ 144.737592, 13.386824 ], [ 144.737749, 13.387238 ], [ 144.737724, 13.387351 ], [ 144.737651, 13.387691 ], [ 144.737486, 13.387975 ], [ 144.736949, 13.3882 ], [ 144.736858, 13.388411 ], [ 144.736743, 13.389464 ], [ 144.736603, 13.38965 ], [ 144.736587, 13.39008 ], [ 144.736496, 13.390339 ], [ 144.736001, 13.390849 ], [ 144.73544, 13.391432 ], [ 144.734936, 13.391956 ], [ 144.734176, 13.392546 ], [ 144.734152, 13.393616 ], [ 144.734086, 13.393762 ], [ 144.733227, 13.393979 ], [ 144.732971, 13.394764 ], [ 144.733228, 13.395357 ], [ 144.733411, 13.395649 ], [ 144.733452, 13.395819 ], [ 144.733469, 13.395884 ], [ 144.733221, 13.396054 ], [ 144.732932, 13.396207 ], [ 144.732634, 13.39645 ], [ 144.732214, 13.397454 ], [ 144.732363, 13.397843 ], [ 144.732397, 13.398119 ], [ 144.732215, 13.39824 ], [ 144.731711, 13.398368 ], [ 144.731512, 13.398313 ], [ 144.731323, 13.397987 ], [ 144.731233, 13.397904 ], [ 144.73104, 13.397903 ], [ 144.730744, 13.397716 ], [ 144.730355, 13.397944 ], [ 144.729687, 13.397762 ], [ 144.729631, 13.397638 ], [ 144.72968, 13.397405 ], [ 144.729537, 13.397291 ], [ 144.729161, 13.397388 ], [ 144.728755, 13.3976 ], [ 144.72823, 13.397728 ], [ 144.728155, 13.397747 ], [ 144.727863, 13.397832 ], [ 144.727518, 13.397726 ], [ 144.727536, 13.397344 ], [ 144.727432, 13.397229 ], [ 144.727085, 13.397244 ], [ 144.726489, 13.397787 ], [ 144.725575, 13.3981 ], [ 144.725356, 13.398274 ], [ 144.725211, 13.398361 ], [ 144.72508, 13.398376 ], [ 144.724938, 13.398096 ], [ 144.724753, 13.397999 ], [ 144.724423, 13.398046 ], [ 144.723918, 13.397841 ], [ 144.723493, 13.397569 ], [ 144.723338, 13.397537 ], [ 144.723192, 13.397575 ], [ 144.722523, 13.397432 ], [ 144.722184, 13.397382 ], [ 144.721801, 13.39722 ], [ 144.721669, 13.397042 ], [ 144.721587, 13.396841 ], [ 144.721393, 13.396841 ], [ 144.721159, 13.39704 ], [ 144.72102, 13.397021 ], [ 144.720948, 13.39714 ], [ 144.720824, 13.397154 ], [ 144.720478, 13.397111 ], [ 144.720187, 13.397246 ], [ 144.719755, 13.397246 ], [ 144.719337, 13.396992 ], [ 144.719319, 13.396673 ], [ 144.719696, 13.396417 ], [ 144.719723, 13.395911 ], [ 144.719419, 13.395731 ], [ 144.719326, 13.395737 ], [ 144.718818, 13.395772 ], [ 144.718627, 13.395807 ], [ 144.718494, 13.395833 ], [ 144.718435, 13.395399 ], [ 144.718085, 13.395196 ], [ 144.717752, 13.394782 ], [ 144.717703, 13.394605 ], [ 144.704468, 13.413587 ], [ 144.701202, 13.418271 ], [ 144.701135, 13.418431 ], [ 144.701053, 13.418551 ], [ 144.70089, 13.418727 ], [ 144.700868, 13.418934 ], [ 144.700793, 13.419157 ], [ 144.700733, 13.419298 ], [ 144.70059, 13.419554 ], [ 144.700518, 13.419872 ], [ 144.70047, 13.420288 ], [ 144.699734, 13.421928 ], [ 144.699612, 13.422203 ], [ 144.699868, 13.422212 ], [ 144.700157, 13.422384 ], [ 144.700288, 13.422567 ], [ 144.700364, 13.422737 ], [ 144.70029, 13.422883 ], [ 144.700704, 13.423226 ], [ 144.700815, 13.423392 ], [ 144.700887, 13.423538 ], [ 144.701029, 13.423625 ], [ 144.701139, 13.423753 ], [ 144.701176, 13.423891 ], [ 144.701267, 13.424196 ], [ 144.701132, 13.424598 ], [ 144.701055, 13.424799 ], [ 144.700962, 13.425141 ], [ 144.70089, 13.42532 ], [ 144.700671, 13.425723 ], [ 144.700744, 13.425861 ], [ 144.700948, 13.426065 ], [ 144.70107, 13.426222 ], [ 144.701161, 13.426369 ], [ 144.701329, 13.426463 ], [ 144.701535, 13.426603 ], [ 144.701729, 13.426889 ], [ 144.702036, 13.427176 ], [ 144.702386, 13.427479 ], [ 144.702819, 13.427802 ], [ 144.703878, 13.428587 ], [ 144.704155, 13.429039 ], [ 144.704702, 13.429742 ], [ 144.70502, 13.429818 ], [ 144.705263, 13.429857 ], [ 144.705663, 13.430072 ], [ 144.705823, 13.430198 ], [ 144.70595, 13.430634 ], [ 144.70608, 13.4307 ], [ 144.706134, 13.430919 ], [ 144.706057, 13.431177 ], [ 144.706035, 13.431424 ], [ 144.706034, 13.431588 ], [ 144.706062, 13.43169 ], [ 144.706337, 13.43229 ], [ 144.706583, 13.433072 ], [ 144.706669, 13.433541 ], [ 144.706734, 13.433862 ], [ 144.707049, 13.43427 ], [ 144.707335, 13.434832 ], [ 144.707611, 13.43544 ], [ 144.707768, 13.435737 ], [ 144.708142, 13.436132 ], [ 144.708217, 13.436286 ], [ 144.70835, 13.436421 ], [ 144.708521, 13.436519 ], [ 144.708861, 13.436631 ], [ 144.709083, 13.436623 ], [ 144.709685, 13.436767 ], [ 144.709915, 13.436655 ], [ 144.710047, 13.436633 ], [ 144.710342, 13.436649 ], [ 144.710571, 13.43672 ], [ 144.710664, 13.436822 ], [ 144.710776, 13.436887 ], [ 144.710897, 13.436826 ], [ 144.710928, 13.436645 ], [ 144.710828, 13.436424 ], [ 144.710813, 13.436311 ], [ 144.710736, 13.436078 ], [ 144.710786, 13.435709 ], [ 144.71082, 13.43557 ], [ 144.71094, 13.43542 ], [ 144.71101, 13.43529 ], [ 144.71112, 13.43512 ], [ 144.71132, 13.43496 ], [ 144.711541, 13.434954 ], [ 144.71165, 13.435016 ], [ 144.711751, 13.435089 ], [ 144.712007, 13.435258 ], [ 144.712299, 13.435327 ], [ 144.712413, 13.435407 ], [ 144.712574, 13.435624 ], [ 144.713177, 13.436245 ], [ 144.713189, 13.436327 ], [ 144.713563, 13.436916 ], [ 144.713519, 13.437101 ], [ 144.713556, 13.437123 ], [ 144.713631, 13.437169 ], [ 144.713824, 13.437464 ], [ 144.714041, 13.437451 ], [ 144.714116, 13.437489 ], [ 144.714198, 13.437733 ], [ 144.714406, 13.437763 ], [ 144.714457, 13.437932 ], [ 144.714637, 13.437971 ], [ 144.714782, 13.438435 ], [ 144.715223, 13.438867 ], [ 144.715717, 13.439222 ], [ 144.716215, 13.439614 ], [ 144.716393, 13.439926 ], [ 144.716516, 13.439993 ], [ 144.716699, 13.440012 ], [ 144.717063, 13.440112 ], [ 144.717183, 13.440102 ], [ 144.717354, 13.440071 ], [ 144.717528, 13.440108 ], [ 144.717837, 13.440001 ], [ 144.718083, 13.440121 ], [ 144.718412, 13.440371 ], [ 144.71852, 13.440393 ], [ 144.718754, 13.440266 ], [ 144.718824, 13.440414 ], [ 144.718954, 13.44032 ], [ 144.719186, 13.440281 ], [ 144.719364, 13.440455 ], [ 144.71957, 13.440472 ], [ 144.719735, 13.440653 ], [ 144.720089, 13.440756 ], [ 144.720154, 13.440554 ], [ 144.72013, 13.440334 ], [ 144.720206, 13.440242 ], [ 144.720531, 13.440281 ], [ 144.720632, 13.440393 ], [ 144.720674, 13.44058 ], [ 144.720724, 13.440622 ], [ 144.721188, 13.440747 ], [ 144.721633, 13.440909 ], [ 144.721961, 13.441191 ], [ 144.722044, 13.441479 ], [ 144.722207, 13.441539 ], [ 144.722687, 13.441592 ], [ 144.723076, 13.44184 ], [ 144.723275, 13.442078 ], [ 144.723227, 13.442261 ], [ 144.723438, 13.442468 ], [ 144.723946, 13.442489 ], [ 144.724152, 13.442671 ], [ 144.724138, 13.442865 ], [ 144.72414, 13.443029 ], [ 144.72428, 13.443117 ], [ 144.724426, 13.443166 ], [ 144.724627, 13.443433 ], [ 144.7248, 13.443412 ], [ 144.724978, 13.44341 ], [ 144.725368, 13.443481 ], [ 144.725704, 13.443302 ], [ 144.726325, 13.442972 ], [ 144.726701, 13.442928 ], [ 144.727191, 13.442976 ], [ 144.727426, 13.443093 ], [ 144.727457, 13.443345 ], [ 144.727544, 13.443536 ], [ 144.727746, 13.443445 ], [ 144.727895, 13.4432 ], [ 144.728168, 13.442711 ], [ 144.728581, 13.442709 ], [ 144.728861, 13.443003 ], [ 144.728921, 13.443243 ], [ 144.728682, 13.443335 ], [ 144.72844, 13.443288 ], [ 144.728122, 13.443407 ], [ 144.728142, 13.443772 ], [ 144.728234, 13.444177 ], [ 144.72832, 13.444449 ], [ 144.728417, 13.444472 ], [ 144.728635, 13.444153 ], [ 144.728809, 13.444002 ], [ 144.729127, 13.444124 ], [ 144.729314, 13.444098 ], [ 144.729237, 13.443876 ], [ 144.729212, 13.443555 ], [ 144.729731, 13.442985 ], [ 144.730319, 13.442618 ], [ 144.730826, 13.442536 ], [ 144.731149, 13.442137 ], [ 144.731526, 13.442048 ], [ 144.731584, 13.441924 ], [ 144.731446, 13.441789 ], [ 144.73168, 13.441204 ], [ 144.732118, 13.44102 ], [ 144.732751, 13.440998 ], [ 144.733048, 13.440826 ], [ 144.733092, 13.440717 ], [ 144.733024, 13.440404 ], [ 144.733068, 13.44022 ], [ 144.733366, 13.440114 ], [ 144.733561, 13.440145 ], [ 144.733696, 13.440152 ], [ 144.734116, 13.440149 ], [ 144.734495, 13.440046 ], [ 144.734879, 13.439952 ], [ 144.734971, 13.440075 ], [ 144.734992, 13.440242 ], [ 144.734874, 13.440462 ], [ 144.73483, 13.440707 ], [ 144.734895, 13.44105 ], [ 144.735109, 13.441305 ], [ 144.735502, 13.441335 ], [ 144.735848, 13.441124 ], [ 144.73582, 13.440756 ], [ 144.735721, 13.440243 ], [ 144.735921, 13.43991 ], [ 144.736061, 13.439952 ], [ 144.736239, 13.44002 ], [ 144.736419, 13.439942 ], [ 144.736778, 13.439922 ], [ 144.737045, 13.440125 ], [ 144.737496, 13.440408 ], [ 144.73773, 13.440427 ], [ 144.737759, 13.440135 ], [ 144.73757, 13.439601 ], [ 144.737263, 13.439137 ], [ 144.737329, 13.43876 ], [ 144.737277, 13.438668 ], [ 144.736977, 13.438481 ], [ 144.736875, 13.438266 ], [ 144.737044, 13.438033 ], [ 144.737241, 13.438032 ], [ 144.737689, 13.43808 ], [ 144.737899, 13.43799 ], [ 144.737921, 13.437776 ], [ 144.738089, 13.437316 ], [ 144.738306, 13.43683 ], [ 144.738505, 13.43672 ], [ 144.738767, 13.43687 ], [ 144.739096, 13.437031 ], [ 144.739519, 13.436958 ], [ 144.739829, 13.436671 ], [ 144.739903, 13.43641 ], [ 144.739709, 13.436149 ], [ 144.739775, 13.435721 ], [ 144.739943, 13.4356 ], [ 144.740042, 13.435699 ], [ 144.740212, 13.435837 ], [ 144.74043, 13.435962 ], [ 144.740626, 13.435908 ], [ 144.740633, 13.435552 ], [ 144.740404, 13.435179 ], [ 144.740488, 13.435044 ], [ 144.740839, 13.435015 ], [ 144.740939, 13.435068 ], [ 144.74125, 13.435443 ], [ 144.741593, 13.435814 ], [ 144.742018, 13.43583 ], [ 144.742238, 13.435583 ], [ 144.742543, 13.434981 ], [ 144.742737, 13.43505 ], [ 144.742769, 13.435241 ], [ 144.7428, 13.435611 ], [ 144.74298, 13.435915 ], [ 144.743265, 13.436075 ], [ 144.743367, 13.436233 ], [ 144.743486, 13.436453 ], [ 144.743538, 13.436466 ], [ 144.743697, 13.43646 ], [ 144.743893, 13.436271 ], [ 144.744263, 13.435605 ], [ 144.744397, 13.435523 ], [ 144.744623, 13.435505 ], [ 144.744874, 13.435663 ], [ 144.745181, 13.435805 ], [ 144.74569, 13.435953 ], [ 144.74621, 13.435899 ], [ 144.746417, 13.435733 ], [ 144.746644, 13.435766 ], [ 144.747357, 13.43563 ], [ 144.747438, 13.435585 ], [ 144.747416, 13.435451 ], [ 144.747435, 13.434655 ], [ 144.747686, 13.434499 ], [ 144.747955, 13.434529 ], [ 144.748277, 13.43484 ], [ 144.74847, 13.434754 ], [ 144.748657, 13.434541 ], [ 144.748862, 13.434481 ], [ 144.748929, 13.434538 ], [ 144.749145, 13.434663 ], [ 144.749429, 13.4348 ], [ 144.749732, 13.434822 ], [ 144.750082, 13.43499 ], [ 144.750655, 13.435378 ], [ 144.751004, 13.435633 ], [ 144.750961, 13.435757 ], [ 144.750783, 13.435926 ], [ 144.750806, 13.436042 ], [ 144.750992, 13.436037 ], [ 144.751363, 13.435819 ], [ 144.751595, 13.435571 ], [ 144.751619, 13.435382 ], [ 144.751552, 13.435264 ], [ 144.75153, 13.435269 ], [ 144.751332, 13.435308 ], [ 144.751222, 13.435235 ], [ 144.75124, 13.43501 ], [ 144.751318, 13.434844 ], [ 144.751484, 13.43473 ], [ 144.75163, 13.434718 ], [ 144.752243, 13.434982 ], [ 144.752525, 13.435082 ], [ 144.75336, 13.435388 ], [ 144.753497, 13.435602 ], [ 144.753397, 13.435756 ], [ 144.753188, 13.435847 ], [ 144.7532, 13.436001 ], [ 144.753417, 13.436178 ], [ 144.753732, 13.436249 ], [ 144.754, 13.436252 ], [ 144.754133, 13.436223 ], [ 144.754328, 13.436081 ], [ 144.754497, 13.436082 ], [ 144.754472, 13.436239 ], [ 144.754238, 13.436623 ], [ 144.754098, 13.436824 ], [ 144.754087, 13.437045 ], [ 144.754232, 13.437076 ], [ 144.754543, 13.437073 ], [ 144.75483, 13.437162 ], [ 144.755061, 13.437134 ], [ 144.755174, 13.437077 ], [ 144.755297, 13.437116 ], [ 144.755333, 13.437173 ], [ 144.755452, 13.437125 ], [ 144.755468, 13.436982 ], [ 144.755385, 13.43683 ], [ 144.755325, 13.436671 ], [ 144.755332, 13.436576 ], [ 144.755442, 13.436461 ], [ 144.755512, 13.436416 ], [ 144.755736, 13.436365 ], [ 144.755921, 13.436427 ], [ 144.756073, 13.436685 ], [ 144.75611, 13.436882 ], [ 144.756309, 13.436974 ], [ 144.756554, 13.43718 ], [ 144.756714, 13.437393 ], [ 144.756776, 13.437394 ], [ 144.756962, 13.437229 ], [ 144.75703, 13.436974 ], [ 144.757023, 13.436535 ], [ 144.756887, 13.436326 ], [ 144.756916, 13.436112 ], [ 144.757105, 13.435954 ], [ 144.757569, 13.435807 ], [ 144.758122, 13.435577 ], [ 144.758521, 13.435529 ], [ 144.758775, 13.435546 ], [ 144.758913, 13.435585 ], [ 144.759061, 13.435481 ], [ 144.759191, 13.435047 ], [ 144.759289, 13.434744 ], [ 144.759393, 13.43457 ], [ 144.759692, 13.434437 ], [ 144.759916, 13.43441 ], [ 144.760105, 13.434393 ], [ 144.760254, 13.43423 ], [ 144.760339, 13.434042 ], [ 144.760435, 13.433711 ], [ 144.760438, 13.433583 ], [ 144.760499, 13.43337 ], [ 144.76047, 13.433304 ], [ 144.760526, 13.4331 ], [ 144.760636, 13.432887 ], [ 144.760682, 13.43283 ], [ 144.760668, 13.432775 ], [ 144.76063, 13.432678 ], [ 144.760608, 13.432662 ], [ 144.7605, 13.432652 ], [ 144.760423, 13.432641 ], [ 144.760431, 13.432533 ], [ 144.760462, 13.432473 ], [ 144.760548, 13.43233 ], [ 144.760603, 13.432278 ], [ 144.760664, 13.432271 ], [ 144.760681, 13.432223 ], [ 144.760712, 13.432167 ], [ 144.760712, 13.43209 ], [ 144.760736, 13.43203 ], [ 144.760845, 13.431963 ], [ 144.760891, 13.431926 ], [ 144.761007, 13.431912 ], [ 144.761069, 13.43192 ], [ 144.761136, 13.432034 ], [ 144.761175, 13.432132 ], [ 144.761259, 13.432223 ], [ 144.761359, 13.432262 ], [ 144.761544, 13.432279 ], [ 144.761652, 13.43225 ], [ 144.761736, 13.432274 ], [ 144.761844, 13.432365 ], [ 144.761913, 13.432395 ], [ 144.76202, 13.432335 ], [ 144.762052, 13.432298 ], [ 144.762012, 13.43216 ], [ 144.761947, 13.432056 ], [ 144.761786, 13.431956 ], [ 144.761709, 13.43188 ], [ 144.761679, 13.431812 ], [ 144.761664, 13.431721 ], [ 144.761665, 13.431623 ], [ 144.761689, 13.431555 ], [ 144.761728, 13.43151 ], [ 144.761806, 13.431458 ], [ 144.761921, 13.431452 ], [ 144.762029, 13.431498 ], [ 144.762169, 13.431598 ], [ 144.762277, 13.431678 ], [ 144.762353, 13.431754 ], [ 144.762412, 13.431842 ], [ 144.762455, 13.431918 ], [ 144.76249, 13.431991 ], [ 144.762502, 13.432056 ], [ 144.762502, 13.432084 ], [ 144.762468, 13.432182 ], [ 144.762445, 13.432253 ], [ 144.762382, 13.432342 ], [ 144.762354, 13.432415 ], [ 144.762297, 13.432572 ], [ 144.762258, 13.43273 ], [ 144.762303, 13.432776 ], [ 144.76251, 13.432861 ], [ 144.762717, 13.43284 ], [ 144.762848, 13.432676 ], [ 144.762816, 13.432275 ], [ 144.762903, 13.432042 ], [ 144.763183, 13.43178 ], [ 144.763495, 13.431466 ], [ 144.763774, 13.431287 ], [ 144.763876, 13.431238 ], [ 144.763976, 13.431176 ], [ 144.763938, 13.431085 ], [ 144.763908, 13.430979 ], [ 144.763916, 13.430949 ], [ 144.763856, 13.43082 ], [ 144.763802, 13.430804 ], [ 144.763735, 13.430756 ], [ 144.763719, 13.430607 ], [ 144.763736, 13.430479 ], [ 144.763806, 13.430374 ], [ 144.763862, 13.430209 ], [ 144.763878, 13.430065 ], [ 144.763826, 13.429869 ], [ 144.7638, 13.429745 ], [ 144.763828, 13.429619 ], [ 144.763991, 13.42956 ], [ 144.764121, 13.429652 ], [ 144.764158, 13.429796 ], [ 144.764206, 13.429992 ], [ 144.764302, 13.430093 ], [ 144.764486, 13.430199 ], [ 144.764724, 13.430142 ], [ 144.764922, 13.429935 ], [ 144.764946, 13.429697 ], [ 144.764855, 13.429478 ], [ 144.764726, 13.429358 ], [ 144.764751, 13.429099 ], [ 144.764883, 13.428964 ], [ 144.765047, 13.428838 ], [ 144.765087, 13.428649 ], [ 144.764928, 13.428342 ], [ 144.764729, 13.428163 ], [ 144.764667, 13.427841 ], [ 144.764852, 13.427416 ], [ 144.764904, 13.42716 ], [ 144.76504, 13.427112 ], [ 144.765173, 13.427256 ], [ 144.765366, 13.427251 ], [ 144.765592, 13.427068 ], [ 144.765671, 13.426964 ], [ 144.76588, 13.426917 ], [ 144.765944, 13.4269 ], [ 144.765968, 13.426829 ], [ 144.765878, 13.426754 ], [ 144.765682, 13.426621 ], [ 144.765653, 13.426475 ], [ 144.765796, 13.426394 ], [ 144.765932, 13.426405 ], [ 144.76602, 13.426523 ], [ 144.766215, 13.426659 ], [ 144.766317, 13.426728 ], [ 144.766494, 13.426863 ], [ 144.76675, 13.427024 ], [ 144.766922, 13.427045 ], [ 144.76711, 13.426988 ], [ 144.767381, 13.426956 ], [ 144.767725, 13.426984 ], [ 144.767896, 13.426931 ], [ 144.768089, 13.426775 ], [ 144.768479, 13.426741 ], [ 144.768966, 13.426683 ], [ 144.769102, 13.426532 ], [ 144.769068, 13.42636 ], [ 144.769029, 13.426204 ], [ 144.768997, 13.425776 ], [ 144.768883, 13.425507 ], [ 144.768757, 13.425396 ], [ 144.768551, 13.425238 ], [ 144.768362, 13.425077 ], [ 144.768315, 13.425058 ], [ 144.768349, 13.424891 ], [ 144.768441, 13.424798 ], [ 144.768527, 13.424807 ], [ 144.768548, 13.424904 ], [ 144.768592, 13.425024 ], [ 144.768677, 13.425071 ], [ 144.768963, 13.425111 ], [ 144.769193, 13.424945 ], [ 144.769308, 13.424927 ], [ 144.769403, 13.424825 ], [ 144.769405, 13.42476 ], [ 144.769345, 13.424634 ], [ 144.769302, 13.424404 ], [ 144.76949, 13.424214 ], [ 144.769936, 13.424073 ], [ 144.770031, 13.424119 ], [ 144.770285, 13.424322 ], [ 144.770401, 13.424394 ], [ 144.770449, 13.424345 ], [ 144.770469, 13.424199 ], [ 144.770486, 13.424027 ], [ 144.770634, 13.423891 ], [ 144.770911, 13.423891 ], [ 144.771026, 13.423961 ], [ 144.771204, 13.424102 ], [ 144.771185, 13.424177 ], [ 144.771069, 13.424261 ], [ 144.770927, 13.424259 ], [ 144.770831, 13.424304 ], [ 144.770744, 13.424434 ], [ 144.770743, 13.424518 ], [ 144.770837, 13.424679 ], [ 144.77093, 13.42468 ], [ 144.771243, 13.424599 ], [ 144.771555, 13.424413 ], [ 144.771788, 13.424005 ], [ 144.771875, 13.423857 ], [ 144.771976, 13.423858 ], [ 144.772061, 13.423834 ], [ 144.772175, 13.423644 ], [ 144.772324, 13.423475 ], [ 144.773002, 13.423214 ], [ 144.773446, 13.423188 ], [ 144.77354, 13.423347 ], [ 144.773474, 13.423475 ], [ 144.773298, 13.423625 ], [ 144.773136, 13.423718 ], [ 144.773049, 13.42381 ], [ 144.773059, 13.423921 ], [ 144.773151, 13.423999 ], [ 144.773334, 13.42401 ], [ 144.773496, 13.423813 ], [ 144.773815, 13.423482 ], [ 144.774217, 13.42342 ], [ 144.774373, 13.423529 ], [ 144.774521, 13.423572 ], [ 144.774652, 13.423721 ], [ 144.77467, 13.423843 ], [ 144.77489, 13.423893 ], [ 144.775024, 13.423843 ], [ 144.775127, 13.423692 ], [ 144.77513, 13.423463 ], [ 144.774907, 13.423125 ], [ 144.774651, 13.422973 ], [ 144.774659, 13.42277 ], [ 144.774748, 13.422696 ], [ 144.774901, 13.422706 ], [ 144.775263, 13.422803 ], [ 144.775975, 13.422722 ], [ 144.776532, 13.422775 ], [ 144.776674, 13.422889 ], [ 144.776701, 13.42301 ], [ 144.776623, 13.423198 ], [ 144.776574, 13.423281 ], [ 144.776657, 13.423347 ], [ 144.776717, 13.423338 ], [ 144.776852, 13.423217 ], [ 144.777076, 13.422706 ], [ 144.777069, 13.422314 ], [ 144.7769, 13.422013 ], [ 144.776729, 13.421821 ], [ 144.776666, 13.421693 ], [ 144.776771, 13.421619 ], [ 144.777052, 13.421503 ], [ 144.777477, 13.421455 ], [ 144.777698, 13.421675 ], [ 144.777789, 13.421852 ], [ 144.77777, 13.421984 ], [ 144.777825, 13.42207 ], [ 144.777936, 13.422149 ], [ 144.778007, 13.422182 ], [ 144.778064, 13.422163 ], [ 144.778242, 13.421877 ], [ 144.778337, 13.421586 ], [ 144.778358, 13.421391 ], [ 144.778315, 13.421239 ], [ 144.77821, 13.421053 ], [ 144.778143, 13.420893 ], [ 144.77801, 13.420772 ], [ 144.777931, 13.420673 ], [ 144.777841, 13.42048 ], [ 144.777812, 13.420346 ], [ 144.77788, 13.420199 ], [ 144.778144, 13.420106 ], [ 144.778443, 13.420031 ], [ 144.778701, 13.420036 ], [ 144.778752, 13.42004 ], [ 144.778955, 13.420103 ], [ 144.779227, 13.420202 ], [ 144.779411, 13.420279 ], [ 144.779702, 13.420432 ], [ 144.779911, 13.420536 ], [ 144.780234, 13.420698 ], [ 144.780443, 13.420821 ], [ 144.780652, 13.420935 ], [ 144.780743, 13.421036 ], [ 144.780765, 13.421066 ], [ 144.780953, 13.421311 ], [ 144.781062, 13.421548 ], [ 144.781095, 13.421592 ], [ 144.781151, 13.421678 ], [ 144.781272, 13.421879 ], [ 144.781303, 13.422044 ], [ 144.781324, 13.422202 ], [ 144.781389, 13.422679 ], [ 144.781411, 13.422838 ], [ 144.78154, 13.422922 ], [ 144.78175, 13.422972 ], [ 144.781908, 13.42296 ], [ 144.782218, 13.42292 ], [ 144.782671, 13.422802 ], [ 144.782867, 13.42272 ], [ 144.783128, 13.422517 ], [ 144.783291, 13.422388 ], [ 144.783465, 13.422201 ], [ 144.7836, 13.422054 ], [ 144.783706, 13.421923 ], [ 144.783822, 13.421776 ], [ 144.783947, 13.421626 ], [ 144.783846, 13.421539 ], [ 144.783877, 13.421443 ], [ 144.7839, 13.4213 ], [ 144.783899, 13.421283 ], [ 144.783894, 13.421183 ], [ 144.783965, 13.420999 ], [ 144.784023, 13.4208 ], [ 144.784067, 13.420581 ], [ 144.784072, 13.420523 ], [ 144.784091, 13.420342 ], [ 144.784096, 13.420263 ], [ 144.784105, 13.420128 ], [ 144.784111, 13.42004 ], [ 144.784147, 13.419862 ], [ 144.784159, 13.419729 ], [ 144.784173, 13.419595 ], [ 144.784217, 13.419129 ], [ 144.784197, 13.419033 ], [ 144.784198, 13.418937 ], [ 144.784213, 13.418786 ], [ 144.784208, 13.418642 ], [ 144.784208, 13.41863 ], [ 144.784239, 13.418272 ], [ 144.784282, 13.418142 ], [ 144.78436, 13.418033 ], [ 144.78441, 13.417938 ], [ 144.784446, 13.417849 ], [ 144.78451, 13.417781 ], [ 144.784601, 13.417707 ], [ 144.784707, 13.417632 ], [ 144.784894, 13.41751 ], [ 144.784971, 13.417449 ], [ 144.785042, 13.417381 ], [ 144.78505, 13.417313 ], [ 144.785107, 13.417231 ], [ 144.7851, 13.417162 ], [ 144.785066, 13.417114 ], [ 144.785045, 13.417025 ], [ 144.785053, 13.416908 ], [ 144.785089, 13.416847 ], [ 144.785132, 13.416751 ], [ 144.785147, 13.416642 ], [ 144.785189, 13.416587 ], [ 144.785225, 13.416526 ], [ 144.785309, 13.41652 ], [ 144.785415, 13.416486 ], [ 144.785527, 13.416481 ], [ 144.785597, 13.41646 ], [ 144.785618, 13.416454 ], [ 144.785639, 13.416392 ], [ 144.78564, 13.416331 ], [ 144.78571, 13.416318 ], [ 144.78578, 13.416332 ], [ 144.785865, 13.416278 ], [ 144.785886, 13.416223 ], [ 144.785925, 13.416155 ], [ 144.785975, 13.416107 ], [ 144.786073, 13.416053 ], [ 144.78613, 13.416027 ], [ 144.786327, 13.416018 ], [ 144.786396, 13.416015 ], [ 144.786663, 13.415935 ], [ 144.786861, 13.415853 ], [ 144.786923, 13.415828 ], [ 144.787007, 13.415829 ], [ 144.787105, 13.415816 ], [ 144.787175, 13.415775 ], [ 144.787302, 13.415749 ], [ 144.787435, 13.415743 ], [ 144.787554, 13.415717 ], [ 144.787646, 13.41567 ], [ 144.7878, 13.415644 ], [ 144.78787, 13.415589 ], [ 144.78792, 13.415535 ], [ 144.788004, 13.415536 ], [ 144.788095, 13.41555 ], [ 144.788186, 13.415496 ], [ 144.788229, 13.415442 ], [ 144.788201, 13.415393 ], [ 144.788181, 13.415284 ], [ 144.788184, 13.415251 ], [ 144.788204, 13.415085 ], [ 144.788219, 13.415023 ], [ 144.788276, 13.414948 ], [ 144.788339, 13.414922 ], [ 144.788395, 13.414915 ], [ 144.788382, 13.414812 ], [ 144.788384, 13.414803 ], [ 144.788397, 13.414737 ], [ 144.788446, 13.414676 ], [ 144.788482, 13.414559 ], [ 144.788497, 13.41445 ], [ 144.788505, 13.41434 ], [ 144.788541, 13.414245 ], [ 144.788626, 13.41417 ], [ 144.78871, 13.414109 ], [ 144.788759, 13.414123 ], [ 144.788829, 13.41411 ], [ 144.78883, 13.414007 ], [ 144.788838, 13.413946 ], [ 144.788839, 13.413795 ], [ 144.788854, 13.413678 ], [ 144.788883, 13.413624 ], [ 144.788905, 13.413562 ], [ 144.788905, 13.413514 ], [ 144.7888, 13.413486 ], [ 144.788702, 13.413485 ], [ 144.788506, 13.413504 ], [ 144.788457, 13.413503 ], [ 144.788373, 13.413427 ], [ 144.788374, 13.413331 ], [ 144.788438, 13.413277 ], [ 144.788418, 13.413195 ], [ 144.788306, 13.413187 ], [ 144.788249, 13.413248 ], [ 144.788138, 13.413178 ], [ 144.788061, 13.413109 ], [ 144.787978, 13.413013 ], [ 144.787888, 13.412929 ], [ 144.787882, 13.412833 ], [ 144.787819, 13.412805 ], [ 144.787778, 13.412709 ], [ 144.787722, 13.412633 ], [ 144.787758, 13.412551 ], [ 144.787745, 13.412455 ], [ 144.787711, 13.4124 ], [ 144.787496, 13.412385 ], [ 144.787484, 13.412334 ], [ 144.78745, 13.412291 ], [ 144.787406, 13.412267 ], [ 144.787406, 13.412243 ], [ 144.787387, 13.41218 ], [ 144.787383, 13.412128 ], [ 144.78736, 13.412017 ], [ 144.787326, 13.41195 ], [ 144.787322, 13.411902 ], [ 144.787254, 13.411782 ], [ 144.787191, 13.411729 ], [ 144.787128, 13.411709 ], [ 144.787079, 13.411719 ], [ 144.78704, 13.411718 ], [ 144.787011, 13.411689 ], [ 144.786992, 13.411641 ], [ 144.786933, 13.411612 ], [ 144.786875, 13.411616 ], [ 144.786831, 13.411606 ], [ 144.7868, 13.411571 ], [ 144.786797, 13.411568 ], [ 144.786748, 13.411553 ], [ 144.786695, 13.411553 ], [ 144.786558, 13.411508 ], [ 144.786505, 13.411484 ], [ 144.786427, 13.411474 ], [ 144.786358, 13.411449 ], [ 144.7863, 13.411415 ], [ 144.786232, 13.411381 ], [ 144.786198, 13.411357 ], [ 144.786145, 13.411309 ], [ 144.786101, 13.41128 ], [ 144.786062, 13.411241 ], [ 144.786023, 13.411226 ], [ 144.78596, 13.411226 ], [ 144.785899, 13.411192 ], [ 144.785802, 13.411129 ], [ 144.785753, 13.411128 ], [ 144.785709, 13.411133 ], [ 144.78567, 13.411108 ], [ 144.785637, 13.411079 ], [ 144.785568, 13.411079 ], [ 144.78552, 13.411045 ], [ 144.785486, 13.411006 ], [ 144.785432, 13.410992 ], [ 144.785383, 13.410991 ], [ 144.78533, 13.410981 ], [ 144.785261, 13.410961 ], [ 144.785193, 13.410918 ], [ 144.78516, 13.41086 ], [ 144.785091, 13.410855 ], [ 144.785067, 13.410816 ], [ 144.785053, 13.410778 ], [ 144.785019, 13.410768 ], [ 144.78498, 13.410739 ], [ 144.784897, 13.410753 ], [ 144.784819, 13.410728 ], [ 144.784756, 13.410689 ], [ 144.784717, 13.410675 ], [ 144.784644, 13.410679 ], [ 144.784585, 13.41064 ], [ 144.784512, 13.41062 ], [ 144.784435, 13.410562 ], [ 144.784391, 13.410571 ], [ 144.784362, 13.410518 ], [ 144.784201, 13.410503 ], [ 144.784113, 13.410459 ], [ 144.784075, 13.41042 ], [ 144.784006, 13.41041 ], [ 144.783992, 13.410343 ], [ 144.783968, 13.410305 ], [ 144.7839, 13.410285 ], [ 144.783812, 13.410274 ], [ 144.783779, 13.410212 ], [ 144.783769, 13.410159 ], [ 144.783711, 13.410116 ], [ 144.783663, 13.410039 ], [ 144.78361, 13.409981 ], [ 144.783576, 13.409904 ], [ 144.783548, 13.409799 ], [ 144.783597, 13.409727 ], [ 144.783593, 13.409684 ], [ 144.783569, 13.40966 ], [ 144.783534, 13.40966 ], [ 144.783519, 13.409648 ], [ 144.783506, 13.409607 ], [ 144.783492, 13.40954 ], [ 144.783492, 13.409483 ], [ 144.783478, 13.40943 ], [ 144.78341, 13.409343 ], [ 144.783416, 13.409209 ], [ 144.783446, 13.409148 ], [ 144.783427, 13.409114 ], [ 144.783404, 13.409004 ], [ 144.783404, 13.408956 ], [ 144.783423, 13.408955 ], [ 144.783445, 13.408764 ], [ 144.783513, 13.408707 ], [ 144.783548, 13.408669 ], [ 144.783582, 13.408655 ], [ 144.783563, 13.408583 ], [ 144.78353, 13.408549 ], [ 144.78354, 13.408506 ], [ 144.783511, 13.408449 ], [ 144.783531, 13.408406 ], [ 144.783492, 13.408338 ], [ 144.783542, 13.408253 ], [ 144.783577, 13.408205 ], [ 144.783572, 13.408143 ], [ 144.783495, 13.408104 ], [ 144.783446, 13.408094 ], [ 144.783388, 13.408008 ], [ 144.783364, 13.407921 ], [ 144.783365, 13.407859 ], [ 144.78342, 13.407735 ], [ 144.783415, 13.407692 ], [ 144.783362, 13.407639 ], [ 144.783314, 13.407557 ], [ 144.783266, 13.40749 ], [ 144.783232, 13.407404 ], [ 144.783252, 13.407356 ], [ 144.783228, 13.407318 ], [ 144.783174, 13.407327 ], [ 144.783141, 13.407255 ], [ 144.783117, 13.407178 ], [ 144.783152, 13.407145 ], [ 144.783157, 13.407116 ], [ 144.783138, 13.407082 ], [ 144.783035, 13.407067 ], [ 144.782944, 13.406918 ], [ 144.782925, 13.406856 ], [ 144.782911, 13.406789 ], [ 144.782911, 13.406741 ], [ 144.782868, 13.406688 ], [ 144.782824, 13.406659 ], [ 144.782785, 13.406625 ], [ 144.782771, 13.406582 ], [ 144.782751, 13.406582 ], [ 144.782717, 13.406572 ], [ 144.782684, 13.406529 ], [ 144.782686, 13.406505 ], [ 144.782677, 13.406428 ], [ 144.782638, 13.406433 ], [ 144.782589, 13.406427 ], [ 144.78253, 13.406441 ], [ 144.782487, 13.406398 ], [ 144.782439, 13.40633 ], [ 144.782347, 13.406263 ], [ 144.782293, 13.406195 ], [ 144.782211, 13.406147 ], [ 144.782133, 13.406089 ], [ 144.78212, 13.405979 ], [ 144.782086, 13.405887 ], [ 144.782058, 13.405763 ], [ 144.78201, 13.405657 ], [ 144.781972, 13.405542 ], [ 144.781987, 13.405499 ], [ 144.781983, 13.405447 ], [ 144.781934, 13.405417 ], [ 144.781876, 13.405364 ], [ 144.781795, 13.405187 ], [ 144.781776, 13.40512 ], [ 144.781722, 13.405081 ], [ 144.781679, 13.405061 ], [ 144.781561, 13.40507 ], [ 144.781508, 13.405026 ], [ 144.781494, 13.40495 ], [ 144.78147, 13.404873 ], [ 144.781421, 13.404882 ], [ 144.781378, 13.404853 ], [ 144.781336, 13.40458 ], [ 144.781352, 13.404446 ], [ 144.781353, 13.404332 ], [ 144.781334, 13.404241 ], [ 144.781305, 13.404212 ], [ 144.781287, 13.404125 ], [ 144.781283, 13.404039 ], [ 144.781312, 13.403977 ], [ 144.781303, 13.40393 ], [ 144.781299, 13.403882 ], [ 144.781324, 13.403753 ], [ 144.781363, 13.403734 ], [ 144.781427, 13.403711 ], [ 144.781495, 13.403726 ], [ 144.781559, 13.403712 ], [ 144.781618, 13.403679 ], [ 144.781696, 13.403703 ], [ 144.78174, 13.403728 ], [ 144.781779, 13.403709 ], [ 144.781804, 13.403657 ], [ 144.781819, 13.403595 ], [ 144.781834, 13.403547 ], [ 144.781839, 13.403513 ], [ 144.781838, 13.403494 ], [ 144.781852, 13.403481 ], [ 144.781925, 13.403175 ], [ 144.781931, 13.40307 ], [ 144.781939, 13.402788 ], [ 144.781935, 13.402677 ], [ 144.781955, 13.402611 ], [ 144.78198, 13.402506 ], [ 144.78202, 13.402458 ], [ 144.78204, 13.402372 ], [ 144.78208, 13.402287 ], [ 144.782086, 13.402196 ], [ 144.782057, 13.402129 ], [ 144.782004, 13.402071 ], [ 144.782005, 13.402004 ], [ 144.78203, 13.401942 ], [ 144.782025, 13.401856 ], [ 144.781982, 13.401798 ], [ 144.781992, 13.40175 ], [ 144.781979, 13.401631 ], [ 144.781951, 13.401482 ], [ 144.781902, 13.40142 ], [ 144.781874, 13.401348 ], [ 144.78186, 13.401271 ], [ 144.78189, 13.401228 ], [ 144.781871, 13.401166 ], [ 144.781834, 13.401142 ], [ 144.781699, 13.401021 ], [ 144.781709, 13.400983 ], [ 144.781695, 13.400906 ], [ 144.781661, 13.400834 ], [ 144.781676, 13.400763 ], [ 144.781674, 13.400757 ], [ 144.781667, 13.400724 ], [ 144.781541, 13.400637 ], [ 144.781488, 13.40057 ], [ 144.781469, 13.400517 ], [ 144.78144, 13.400474 ], [ 144.78147, 13.400412 ], [ 144.781465, 13.400388 ], [ 144.781402, 13.400373 ], [ 144.781368, 13.400339 ], [ 144.781354, 13.400258 ], [ 144.781305, 13.400224 ], [ 144.781286, 13.400147 ], [ 144.781253, 13.40008 ], [ 144.78118, 13.400079 ], [ 144.781136, 13.400007 ], [ 144.781118, 13.39993 ], [ 144.781069, 13.399868 ], [ 144.78103, 13.399882 ], [ 144.780982, 13.399819 ], [ 144.780958, 13.399728 ], [ 144.7809, 13.399637 ], [ 144.780857, 13.399555 ], [ 144.780848, 13.399464 ], [ 144.780829, 13.399426 ], [ 144.780825, 13.399359 ], [ 144.780796, 13.399315 ], [ 144.780698, 13.399305 ], [ 144.780591, 13.399266 ], [ 144.780523, 13.399227 ], [ 144.780436, 13.399183 ], [ 144.780377, 13.39914 ], [ 144.780344, 13.399077 ], [ 144.78028, 13.399067 ], [ 144.780222, 13.399009 ], [ 144.78013, 13.398956 ], [ 144.780028, 13.398917 ], [ 144.77995, 13.398844 ], [ 144.779902, 13.39882 ], [ 144.779804, 13.398805 ], [ 144.779722, 13.398704 ], [ 144.779644, 13.398679 ], [ 144.779556, 13.398678 ], [ 144.779469, 13.398649 ], [ 144.779449, 13.398606 ], [ 144.779401, 13.398557 ], [ 144.779342, 13.398571 ], [ 144.779284, 13.398551 ], [ 144.779255, 13.398503 ], [ 144.779216, 13.398455 ], [ 144.779153, 13.398431 ], [ 144.778998, 13.398267 ], [ 144.778926, 13.398166 ], [ 144.778814, 13.398074 ], [ 144.778732, 13.39803 ], [ 144.778664, 13.397972 ], [ 144.778572, 13.397885 ], [ 144.778529, 13.397813 ], [ 144.778393, 13.397721 ], [ 144.778359, 13.397625 ], [ 144.778308, 13.397531 ], [ 144.778196, 13.397327 ], [ 144.778091, 13.397063 ], [ 144.778032, 13.396951 ], [ 144.778, 13.39689 ], [ 144.777979, 13.396872 ], [ 144.778, 13.396867 ], [ 144.777909, 13.396684 ], [ 144.777851, 13.396631 ], [ 144.777783, 13.396597 ], [ 144.77772, 13.396515 ], [ 144.777667, 13.396424 ], [ 144.777619, 13.396395 ], [ 144.777556, 13.396289 ], [ 144.77744, 13.396187 ], [ 144.777378, 13.395976 ], [ 144.77733, 13.39589 ], [ 144.777277, 13.395808 ], [ 144.7772, 13.395712 ], [ 144.777064, 13.395582 ], [ 144.777026, 13.395514 ], [ 144.776968, 13.395461 ], [ 144.776947, 13.395444 ], [ 144.776895, 13.395403 ], [ 144.776823, 13.395321 ], [ 144.776755, 13.395263 ], [ 144.776644, 13.395124 ], [ 144.776595, 13.395099 ], [ 144.776556, 13.395056 ], [ 144.776527, 13.395008 ], [ 144.776504, 13.394987 ], [ 144.776484, 13.394969 ], [ 144.776416, 13.394954 ], [ 144.776375, 13.394934 ], [ 144.776357, 13.394925 ], [ 144.776328, 13.394882 ], [ 144.776289, 13.394896 ], [ 144.776235, 13.394938 ], [ 144.776126, 13.395109 ], [ 144.776118, 13.395147 ], [ 144.776116, 13.395162 ], [ 144.776062, 13.395219 ], [ 144.776014, 13.395218 ], [ 144.775895, 13.395217 ], [ 144.77566, 13.395292 ], [ 144.775479, 13.395343 ], [ 144.775308, 13.39538 ], [ 144.775205, 13.395383 ], [ 144.775076, 13.395387 ], [ 144.774939, 13.395376 ], [ 144.774832, 13.395356 ], [ 144.774705, 13.395317 ], [ 144.774647, 13.395259 ], [ 144.774618, 13.395201 ], [ 144.774604, 13.395153 ], [ 144.774497, 13.395133 ], [ 144.774263, 13.395064 ], [ 144.774151, 13.395059 ], [ 144.774053, 13.395043 ], [ 144.774005, 13.39501 ], [ 144.773936, 13.394999 ], [ 144.773882, 13.395028 ], [ 144.773843, 13.395085 ], [ 144.773745, 13.395132 ], [ 144.773666, 13.395179 ], [ 144.77346, 13.395263 ], [ 144.773333, 13.395286 ], [ 144.773211, 13.395285 ], [ 144.773104, 13.395279 ], [ 144.773006, 13.395249 ], [ 144.772929, 13.395221 ], [ 144.772899, 13.39521 ], [ 144.772817, 13.395152 ], [ 144.77272, 13.395075 ], [ 144.772632, 13.394988 ], [ 144.772522, 13.39482 ], [ 144.772484, 13.394704 ], [ 144.77247, 13.394594 ], [ 144.772471, 13.394577 ], [ 144.772475, 13.394527 ], [ 144.772467, 13.394403 ], [ 144.772433, 13.394364 ], [ 144.772403, 13.394372 ], [ 144.772335, 13.394392 ], [ 144.772252, 13.394392 ], [ 144.772203, 13.39441 ], [ 144.772149, 13.394391 ], [ 144.772106, 13.394333 ], [ 144.772039, 13.394203 ], [ 144.771985, 13.394179 ], [ 144.771937, 13.394178 ], [ 144.771912, 13.39414 ], [ 144.771879, 13.394049 ], [ 144.77185, 13.394022 ], [ 144.771826, 13.394 ], [ 144.771817, 13.393914 ], [ 144.771783, 13.393861 ], [ 144.771754, 13.393793 ], [ 144.771745, 13.39377 ], [ 144.771721, 13.393722 ], [ 144.771697, 13.39365 ], [ 144.771703, 13.393564 ], [ 144.771713, 13.393507 ], [ 144.771694, 13.393473 ], [ 144.77165, 13.393449 ], [ 144.771604, 13.393431 ], [ 144.771597, 13.393429 ], [ 144.771553, 13.393434 ], [ 144.771528, 13.393458 ], [ 144.771537, 13.393505 ], [ 144.771561, 13.393549 ], [ 144.77158, 13.393664 ], [ 144.771545, 13.393697 ], [ 144.771359, 13.393743 ], [ 144.771222, 13.393804 ], [ 144.771178, 13.393842 ], [ 144.771119, 13.393841 ], [ 144.771089, 13.393874 ], [ 144.770963, 13.393932 ], [ 144.771315, 13.393418 ], [ 144.77043, 13.393909 ], [ 144.770413, 13.393913 ], [ 144.770363, 13.393927 ], [ 144.770347, 13.393933 ], [ 144.770174, 13.39395 ], [ 144.769868, 13.394002 ], [ 144.768968, 13.393583 ], [ 144.768286, 13.393265 ], [ 144.767884, 13.393384 ], [ 144.767559, 13.393818 ], [ 144.767314, 13.394054 ], [ 144.766924, 13.394174 ], [ 144.766564, 13.394228 ], [ 144.766137, 13.394167 ], [ 144.764951, 13.394223 ], [ 144.764513, 13.394372 ], [ 144.76441, 13.39413 ], [ 144.764369, 13.393653 ], [ 144.764274, 13.393353 ], [ 144.764104, 13.392779 ], [ 144.764069, 13.392658 ], [ 144.76411, 13.392399 ], [ 144.76411, 13.392208 ], [ 144.764001, 13.391772 ], [ 144.763662, 13.391579 ], [ 144.763306, 13.391376 ], [ 144.762924, 13.391281 ], [ 144.762433, 13.391349 ], [ 144.762215, 13.39154 ], [ 144.762093, 13.391731 ], [ 144.761315, 13.392072 ], [ 144.760975, 13.392399 ], [ 144.760515, 13.392605 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "954800", "GEOID10": "66010954800", "NAME10": "9548", "NAMELSAD10": "Census Tract 9548", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 11294834, "AWATER10": 0, "INTPTLAT10": "+13.3561164", "INTPTLON10": "+144.6564551" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.651225, 13.37995 ], [ 144.651296, 13.379963 ], [ 144.651368, 13.379902 ], [ 144.651429, 13.379828 ], [ 144.651466, 13.37975 ], [ 144.651461, 13.379673 ], [ 144.651427, 13.379588 ], [ 144.65137, 13.379514 ], [ 144.651314, 13.379467 ], [ 144.651249, 13.379458 ], [ 144.651188, 13.379473 ], [ 144.651147, 13.379504 ], [ 144.651119, 13.37958 ], [ 144.651112, 13.379629 ], [ 144.651099, 13.379747 ], [ 144.651125, 13.379841 ], [ 144.651153, 13.379906 ], [ 144.651225, 13.37995 ] ] ], [ [ [ 144.648027, 13.381195 ], [ 144.648001, 13.381105 ], [ 144.647949, 13.381018 ], [ 144.647852, 13.380924 ], [ 144.647755, 13.380856 ], [ 144.647645, 13.380714 ], [ 144.647341, 13.380309 ], [ 144.64726, 13.380225 ], [ 144.647063, 13.379951 ], [ 144.646992, 13.379876 ], [ 144.64683, 13.37976 ], [ 144.646717, 13.379719 ], [ 144.646633, 13.379782 ], [ 144.64661, 13.379899 ], [ 144.646688, 13.380145 ], [ 144.646773, 13.380371 ], [ 144.64685, 13.380533 ], [ 144.646691, 13.38073 ], [ 144.646662, 13.380853 ], [ 144.646701, 13.381105 ], [ 144.646859, 13.381279 ], [ 144.647128, 13.38148 ], [ 144.647264, 13.381515 ], [ 144.647393, 13.381496 ], [ 144.647564, 13.381457 ], [ 144.647755, 13.381418 ], [ 144.647975, 13.381318 ], [ 144.648027, 13.381195 ] ] ], [ [ [ 144.650734, 13.377115 ], [ 144.650712, 13.377077 ], [ 144.650606, 13.376991 ], [ 144.650486, 13.376906 ], [ 144.650437, 13.376915 ], [ 144.650404, 13.376941 ], [ 144.650388, 13.376988 ], [ 144.650345, 13.377013 ], [ 144.650271, 13.377041 ], [ 144.650208, 13.377046 ], [ 144.650163, 13.377064 ], [ 144.650094, 13.377136 ], [ 144.650002, 13.377128 ], [ 144.64999, 13.377209 ], [ 144.649997, 13.377259 ], [ 144.650033, 13.377365 ], [ 144.650085, 13.377457 ], [ 144.650121, 13.377492 ], [ 144.650164, 13.377545 ], [ 144.650191, 13.377585 ], [ 144.650239, 13.377607 ], [ 144.65027, 13.377655 ], [ 144.650301, 13.377686 ], [ 144.65038, 13.377752 ], [ 144.650446, 13.377747 ], [ 144.650485, 13.377774 ], [ 144.65052, 13.377774 ], [ 144.650575, 13.377825 ], [ 144.650652, 13.377866 ], [ 144.650692, 13.37791 ], [ 144.650723, 13.377924 ], [ 144.65078, 13.377963 ], [ 144.650819, 13.377998 ], [ 144.650846, 13.378002 ], [ 144.650873, 13.378005 ], [ 144.650891, 13.378028 ], [ 144.65092, 13.378032 ], [ 144.650945, 13.378024 ], [ 144.650963, 13.378004 ], [ 144.650982, 13.377984 ], [ 144.651018, 13.37795 ], [ 144.651035, 13.377892 ], [ 144.651091, 13.377809 ], [ 144.651123, 13.377752 ], [ 144.651126, 13.377722 ], [ 144.651123, 13.377689 ], [ 144.65114, 13.377624 ], [ 144.651154, 13.377552 ], [ 144.651164, 13.377511 ], [ 144.651149, 13.377457 ], [ 144.651107, 13.377459 ], [ 144.651081, 13.377445 ], [ 144.651062, 13.377416 ], [ 144.651045, 13.377403 ], [ 144.651023, 13.377382 ], [ 144.651004, 13.377376 ], [ 144.650981, 13.377385 ], [ 144.65096, 13.377389 ], [ 144.650934, 13.377386 ], [ 144.650925, 13.37737 ], [ 144.650908, 13.377342 ], [ 144.650893, 13.377315 ], [ 144.650876, 13.37729 ], [ 144.650861, 13.377285 ], [ 144.650827, 13.377277 ], [ 144.650796, 13.37722 ], [ 144.650779, 13.377193 ], [ 144.650763, 13.377176 ], [ 144.650748, 13.377158 ], [ 144.650734, 13.377115 ] ] ], [ [ [ 144.636656, 13.356504 ], [ 144.636532, 13.356604 ], [ 144.636448, 13.356692 ], [ 144.636144, 13.356823 ], [ 144.63594, 13.356882 ], [ 144.63581, 13.356937 ], [ 144.635755, 13.357066 ], [ 144.635807, 13.357187 ], [ 144.635795, 13.357315 ], [ 144.635745, 13.357504 ], [ 144.635775, 13.357634 ], [ 144.63593, 13.357698 ], [ 144.636124, 13.357748 ], [ 144.636308, 13.357743 ], [ 144.636412, 13.357753 ], [ 144.636547, 13.357838 ], [ 144.636626, 13.357942 ], [ 144.636706, 13.358002 ], [ 144.63684, 13.358012 ], [ 144.63694, 13.358097 ], [ 144.636965, 13.358256 ], [ 144.637004, 13.358465 ], [ 144.637064, 13.358629 ], [ 144.637238, 13.358768 ], [ 144.637539, 13.358889 ], [ 144.637746, 13.358947 ], [ 144.637965, 13.358908 ], [ 144.638184, 13.358778 ], [ 144.638308, 13.358614 ], [ 144.638358, 13.35839 ], [ 144.638373, 13.358141 ], [ 144.638308, 13.358017 ], [ 144.638113, 13.357869 ], [ 144.63795, 13.357793 ], [ 144.637826, 13.357619 ], [ 144.637696, 13.35745 ], [ 144.637527, 13.357305 ], [ 144.637298, 13.357201 ], [ 144.637124, 13.357047 ], [ 144.637124, 13.356902 ], [ 144.637009, 13.356773 ], [ 144.63683, 13.356564 ], [ 144.636656, 13.356504 ] ] ], [ [ [ 144.63346, 13.341451 ], [ 144.633389, 13.341335 ], [ 144.633199, 13.341242 ], [ 144.632955, 13.341138 ], [ 144.632743, 13.341055 ], [ 144.63253, 13.341079 ], [ 144.632454, 13.341167 ], [ 144.632371, 13.341291 ], [ 144.6322, 13.341403 ], [ 144.632134, 13.341484 ], [ 144.632093, 13.341625 ], [ 144.632, 13.341842 ], [ 144.632076, 13.341918 ], [ 144.632199, 13.341983 ], [ 144.632304, 13.341959 ], [ 144.632586, 13.342012 ], [ 144.632844, 13.342006 ], [ 144.633084, 13.341989 ], [ 144.633225, 13.341912 ], [ 144.633336, 13.341778 ], [ 144.633418, 13.341631 ], [ 144.63346, 13.341451 ] ] ], [ [ [ 144.666527, 13.331326 ], [ 144.661099, 13.333063 ], [ 144.656523, 13.334526 ], [ 144.651133, 13.33625 ], [ 144.64641, 13.33776 ], [ 144.639756, 13.339889 ], [ 144.638314, 13.340445 ], [ 144.638202, 13.340481 ], [ 144.637868, 13.340592 ], [ 144.637757, 13.34063 ], [ 144.637292, 13.340778 ], [ 144.6359, 13.341224 ], [ 144.635437, 13.341373 ], [ 144.63545, 13.341412 ], [ 144.635523, 13.341475 ], [ 144.635625, 13.341538 ], [ 144.635746, 13.341687 ], [ 144.635848, 13.341726 ], [ 144.636018, 13.34178 ], [ 144.636438, 13.341799 ], [ 144.636535, 13.341809 ], [ 144.636552, 13.341809 ], [ 144.636657, 13.341815 ], [ 144.636642, 13.341877 ], [ 144.63672, 13.341916 ], [ 144.636881, 13.341927 ], [ 144.636905, 13.34198 ], [ 144.636899, 13.342075 ], [ 144.636967, 13.342153 ], [ 144.637122, 13.342226 ], [ 144.637297, 13.34229 ], [ 144.637468, 13.342306 ], [ 144.637568, 13.342306 ], [ 144.637685, 13.342322 ], [ 144.637816, 13.342385 ], [ 144.637948, 13.342396 ], [ 144.63808, 13.342421 ], [ 144.638202, 13.342427 ], [ 144.638352, 13.342505 ], [ 144.638537, 13.342588 ], [ 144.638673, 13.34268 ], [ 144.638731, 13.342767 ], [ 144.638798, 13.34282 ], [ 144.638915, 13.342855 ], [ 144.63925, 13.343111 ], [ 144.639376, 13.343213 ], [ 144.639458, 13.343319 ], [ 144.639588, 13.343458 ], [ 144.639651, 13.343542 ], [ 144.639685, 13.343588 ], [ 144.639853, 13.343829 ], [ 144.63992, 13.343964 ], [ 144.639987, 13.344084 ], [ 144.640045, 13.344223 ], [ 144.640088, 13.344305 ], [ 144.640189, 13.344401 ], [ 144.640281, 13.344522 ], [ 144.640333, 13.344607 ], [ 144.640423, 13.344757 ], [ 144.640485, 13.344853 ], [ 144.64049, 13.344916 ], [ 144.64046, 13.344925 ], [ 144.64044, 13.344977 ], [ 144.640554, 13.34527 ], [ 144.640703, 13.34552 ], [ 144.640833, 13.345722 ], [ 144.640929, 13.345914 ], [ 144.64102, 13.346073 ], [ 144.641137, 13.346165 ], [ 144.641252, 13.346319 ], [ 144.641294, 13.346359 ], [ 144.641557, 13.346609 ], [ 144.641697, 13.346758 ], [ 144.641779, 13.346912 ], [ 144.641829, 13.347027 ], [ 144.641857, 13.347185 ], [ 144.641865, 13.347319 ], [ 144.641854, 13.347419 ], [ 144.641863, 13.347501 ], [ 144.641975, 13.347597 ], [ 144.642076, 13.347727 ], [ 144.642143, 13.347843 ], [ 144.642181, 13.347944 ], [ 144.64219, 13.348044 ], [ 144.642228, 13.348121 ], [ 144.642311, 13.348213 ], [ 144.642355, 13.348175 ], [ 144.64239, 13.348127 ], [ 144.642438, 13.348175 ], [ 144.642466, 13.348257 ], [ 144.642538, 13.348401 ], [ 144.642582, 13.348425 ], [ 144.642738, 13.348403 ], [ 144.642816, 13.348428 ], [ 144.642875, 13.348466 ], [ 144.642952, 13.348529 ], [ 144.643097, 13.348669 ], [ 144.64315, 13.348761 ], [ 144.643211, 13.348972 ], [ 144.643289, 13.349068 ], [ 144.643325, 13.34914 ], [ 144.643382, 13.349279 ], [ 144.643395, 13.349423 ], [ 144.643399, 13.349552 ], [ 144.643392, 13.34969 ], [ 144.643406, 13.349853 ], [ 144.643439, 13.34994 ], [ 144.643536, 13.349988 ], [ 144.64356, 13.350036 ], [ 144.643554, 13.35017 ], [ 144.643591, 13.350314 ], [ 144.643638, 13.35052 ], [ 144.643676, 13.350659 ], [ 144.643753, 13.350822 ], [ 144.643844, 13.350928 ], [ 144.643907, 13.351058 ], [ 144.643896, 13.351158 ], [ 144.643904, 13.351307 ], [ 144.643949, 13.351373 ], [ 144.643976, 13.351412 ], [ 144.643999, 13.351561 ], [ 144.644076, 13.351743 ], [ 144.644093, 13.352006 ], [ 144.644076, 13.352174 ], [ 144.644046, 13.352317 ], [ 144.644074, 13.352413 ], [ 144.644132, 13.352451 ], [ 144.644191, 13.352457 ], [ 144.64432, 13.352711 ], [ 144.644372, 13.352874 ], [ 144.644439, 13.353028 ], [ 144.64453, 13.353182 ], [ 144.644568, 13.35325 ], [ 144.644607, 13.353321 ], [ 144.644728, 13.353499 ], [ 144.644814, 13.353639 ], [ 144.644844, 13.35369 ], [ 144.64485, 13.3537 ], [ 144.644853, 13.35372 ], [ 144.644944, 13.353893 ], [ 144.645039, 13.354086 ], [ 144.645197, 13.35445 ], [ 144.645293, 13.354595 ], [ 144.645394, 13.354825 ], [ 144.645451, 13.354897 ], [ 144.645558, 13.354994 ], [ 144.645614, 13.355022 ], [ 144.645616, 13.355023 ], [ 144.64565, 13.355052 ], [ 144.645621, 13.355076 ], [ 144.645537, 13.355113 ], [ 144.645561, 13.355224 ], [ 144.645622, 13.355396 ], [ 144.64565, 13.355436 ], [ 144.645699, 13.355507 ], [ 144.645776, 13.355632 ], [ 144.645907, 13.355748 ], [ 144.645975, 13.35583 ], [ 144.64612, 13.355965 ], [ 144.646124, 13.35598 ], [ 144.646231, 13.356368 ], [ 144.646302, 13.356574 ], [ 144.646324, 13.356813 ], [ 144.6464, 13.357043 ], [ 144.646456, 13.357288 ], [ 144.646513, 13.35748 ], [ 144.646604, 13.357629 ], [ 144.646686, 13.357782 ], [ 144.646758, 13.357931 ], [ 144.646832, 13.358023 ], [ 144.646883, 13.358086 ], [ 144.647004, 13.358216 ], [ 144.647071, 13.358307 ], [ 144.647083, 13.358393 ], [ 144.647198, 13.358576 ], [ 144.647233, 13.358619 ], [ 144.647345, 13.358758 ], [ 144.647473, 13.358918 ], [ 144.647525, 13.359086 ], [ 144.647554, 13.35924 ], [ 144.647576, 13.359349 ], [ 144.647582, 13.359417 ], [ 144.647587, 13.359474 ], [ 144.647594, 13.35955 ], [ 144.647633, 13.35964 ], [ 144.647656, 13.359694 ], [ 144.647681, 13.35974 ], [ 144.647742, 13.359853 ], [ 144.647756, 13.359882 ], [ 144.647779, 13.359931 ], [ 144.647829, 13.360036 ], [ 144.647904, 13.360145 ], [ 144.647949, 13.360209 ], [ 144.648001, 13.360334 ], [ 144.648064, 13.360425 ], [ 144.64817, 13.360546 ], [ 144.648242, 13.360651 ], [ 144.648297, 13.360774 ], [ 144.648305, 13.360791 ], [ 144.648362, 13.360939 ], [ 144.648385, 13.361007 ], [ 144.648438, 13.36116 ], [ 144.648452, 13.361185 ], [ 144.648505, 13.361275 ], [ 144.648558, 13.361357 ], [ 144.648596, 13.361448 ], [ 144.648615, 13.361525 ], [ 144.648668, 13.361626 ], [ 144.648722, 13.361685 ], [ 144.648726, 13.361689 ], [ 144.648799, 13.361675 ], [ 144.648824, 13.361608 ], [ 144.648858, 13.361631 ], [ 144.648931, 13.361681 ], [ 144.649109, 13.361955 ], [ 144.649276, 13.362196 ], [ 144.649282, 13.362205 ], [ 144.649334, 13.362364 ], [ 144.649397, 13.362493 ], [ 144.649404, 13.362541 ], [ 144.649391, 13.362555 ], [ 144.649374, 13.362761 ], [ 144.649329, 13.36288 ], [ 144.649299, 13.363033 ], [ 144.649259, 13.363138 ], [ 144.649199, 13.363266 ], [ 144.649202, 13.363376 ], [ 144.649211, 13.363491 ], [ 144.649229, 13.36362 ], [ 144.649262, 13.363764 ], [ 144.649286, 13.363826 ], [ 144.649273, 13.363917 ], [ 144.649168, 13.364232 ], [ 144.649165, 13.364242 ], [ 144.649087, 13.364475 ], [ 144.648933, 13.364741 ], [ 144.648888, 13.364879 ], [ 144.648901, 13.365013 ], [ 144.648924, 13.365152 ], [ 144.648962, 13.365258 ], [ 144.649034, 13.365368 ], [ 144.64916, 13.36548 ], [ 144.649276, 13.365629 ], [ 144.649402, 13.36574 ], [ 144.649518, 13.365798 ], [ 144.649674, 13.365819 ], [ 144.649811, 13.365825 ], [ 144.649908, 13.365864 ], [ 144.649996, 13.365932 ], [ 144.650088, 13.366019 ], [ 144.650165, 13.366139 ], [ 144.650223, 13.366202 ], [ 144.650283, 13.366246 ], [ 144.650295, 13.366255 ], [ 144.650346, 13.366337 ], [ 144.650472, 13.36641 ], [ 144.65052, 13.366472 ], [ 144.650529, 13.366606 ], [ 144.650552, 13.366707 ], [ 144.650585, 13.366803 ], [ 144.650614, 13.36687 ], [ 144.650653, 13.366923 ], [ 144.650701, 13.366962 ], [ 144.650694, 13.367148 ], [ 144.650689, 13.367249 ], [ 144.650697, 13.367339 ], [ 144.650196, 13.367674 ], [ 144.650191, 13.367712 ], [ 144.650239, 13.367756 ], [ 144.65018, 13.367803 ], [ 144.650164, 13.367966 ], [ 144.650474, 13.367763 ], [ 144.6506, 13.36795 ], [ 144.650687, 13.368107 ], [ 144.650705, 13.368172 ], [ 144.650711, 13.368571 ], [ 144.650705, 13.369069 ], [ 144.650704, 13.369658 ], [ 144.650712, 13.369737 ], [ 144.650723, 13.369759 ], [ 144.650763, 13.369804 ], [ 144.650805, 13.369832 ], [ 144.650932, 13.369857 ], [ 144.651088, 13.369848 ], [ 144.65123, 13.369855 ], [ 144.651302, 13.369937 ], [ 144.651398, 13.370086 ], [ 144.651455, 13.370258 ], [ 144.651569, 13.370494 ], [ 144.651564, 13.370514 ], [ 144.651641, 13.370724 ], [ 144.651688, 13.370901 ], [ 144.651689, 13.370918 ], [ 144.651706, 13.371078 ], [ 144.651759, 13.37116 ], [ 144.651856, 13.371257 ], [ 144.651899, 13.371343 ], [ 144.651952, 13.371473 ], [ 144.651979, 13.371616 ], [ 144.652089, 13.371919 ], [ 144.652126, 13.372062 ], [ 144.652144, 13.372259 ], [ 144.652162, 13.372388 ], [ 144.652171, 13.372512 ], [ 144.652292, 13.372652 ], [ 144.652354, 13.372806 ], [ 144.65236, 13.37287 ], [ 144.652371, 13.372987 ], [ 144.65238, 13.37314 ], [ 144.652421, 13.37337 ], [ 144.6524, 13.373542 ], [ 144.6524, 13.3736 ], [ 144.652403, 13.373738 ], [ 144.652377, 13.373939 ], [ 144.65236, 13.374149 ], [ 144.652355, 13.374287 ], [ 144.652315, 13.374287 ], [ 144.652306, 13.374746 ], [ 144.652298, 13.375028 ], [ 144.652252, 13.375721 ], [ 144.652247, 13.375764 ], [ 144.652225, 13.37597 ], [ 144.65214, 13.376198 ], [ 144.652065, 13.376346 ], [ 144.651985, 13.376435 ], [ 144.651942, 13.376483 ], [ 144.651849, 13.376554 ], [ 144.65172, 13.376701 ], [ 144.651551, 13.376932 ], [ 144.651522, 13.376972 ], [ 144.651516, 13.376982 ], [ 144.651463, 13.377077 ], [ 144.651456, 13.377149 ], [ 144.651452, 13.377186 ], [ 144.651454, 13.377231 ], [ 144.65146, 13.377344 ], [ 144.651488, 13.377474 ], [ 144.651489, 13.377476 ], [ 144.651524, 13.377552 ], [ 144.651541, 13.377589 ], [ 144.651603, 13.377676 ], [ 144.651624, 13.377702 ], [ 144.651666, 13.377753 ], [ 144.651763, 13.377821 ], [ 144.651836, 13.377883 ], [ 144.651853, 13.378065 ], [ 144.651881, 13.378144 ], [ 144.651887, 13.378161 ], [ 144.651925, 13.378252 ], [ 144.65197, 13.378301 ], [ 144.651983, 13.378315 ], [ 144.651989, 13.378317 ], [ 144.652056, 13.37834 ], [ 144.652062, 13.378343 ], [ 144.652086, 13.378355 ], [ 144.652153, 13.378388 ], [ 144.652226, 13.378442 ], [ 144.652289, 13.378523 ], [ 144.652301, 13.378564 ], [ 144.652354, 13.378801 ], [ 144.652399, 13.378981 ], [ 144.652434, 13.379118 ], [ 144.652578, 13.379415 ], [ 144.652669, 13.379584 ], [ 144.65275, 13.379752 ], [ 144.652818, 13.379877 ], [ 144.65289, 13.379983 ], [ 144.652898, 13.380088 ], [ 144.652956, 13.380174 ], [ 144.653087, 13.380281 ], [ 144.653213, 13.380435 ], [ 144.653352, 13.380651 ], [ 144.65346, 13.380829 ], [ 144.653498, 13.380873 ], [ 144.6536, 13.380993 ], [ 144.653667, 13.381123 ], [ 144.653757, 13.38142 ], [ 144.653809, 13.381536 ], [ 144.653815, 13.38155 ], [ 144.653823, 13.381561 ], [ 144.653875, 13.381631 ], [ 144.653882, 13.381641 ], [ 144.653891, 13.381656 ], [ 144.653934, 13.38162 ], [ 144.654065, 13.381511 ], [ 144.654109, 13.381476 ], [ 144.654131, 13.381518 ], [ 144.654197, 13.381647 ], [ 144.65422, 13.38169 ], [ 144.65431, 13.38165 ], [ 144.654406, 13.381614 ], [ 144.65442, 13.38161 ], [ 144.65471, 13.38155 ], [ 144.65491, 13.38152 ], [ 144.655001, 13.38152 ], [ 144.65507, 13.38152 ], [ 144.6552, 13.38155 ], [ 144.65525, 13.38158 ], [ 144.6553, 13.38163 ], [ 144.6554, 13.38174 ], [ 144.655466, 13.38182 ], [ 144.65568, 13.38208 ], [ 144.65581, 13.38227 ], [ 144.6559, 13.38237 ], [ 144.65605, 13.38251 ], [ 144.65615, 13.38257 ], [ 144.656259, 13.382627 ], [ 144.65632, 13.38266 ], [ 144.65644, 13.3827 ], [ 144.65662, 13.38275 ], [ 144.656747, 13.382769 ], [ 144.65682, 13.38278 ], [ 144.657131, 13.382808 ], [ 144.65726, 13.38282 ], [ 144.657281, 13.382673 ], [ 144.65731, 13.38248 ], [ 144.65738, 13.38224 ], [ 144.65743, 13.3821 ], [ 144.657501, 13.382002 ], [ 144.6576, 13.38187 ], [ 144.657742, 13.381733 ], [ 144.65783, 13.38165 ], [ 144.65792, 13.381582 ], [ 144.65795, 13.38156 ], [ 144.65814, 13.38147 ], [ 144.658225, 13.381433 ], [ 144.65833, 13.38139 ], [ 144.658431, 13.381353 ], [ 144.658737, 13.381246 ], [ 144.65884, 13.38121 ], [ 144.659274, 13.381054 ], [ 144.6594, 13.38101 ], [ 144.66028, 13.38072 ], [ 144.660586, 13.380608 ], [ 144.66102, 13.38045 ], [ 144.661068, 13.380572 ], [ 144.661212, 13.380938 ], [ 144.66126, 13.38106 ], [ 144.66146, 13.38101 ], [ 144.661506, 13.381004 ], [ 144.66164, 13.38099 ], [ 144.66181, 13.38099 ], [ 144.66195, 13.381 ], [ 144.66212, 13.38103 ], [ 144.662251, 13.381083 ], [ 144.66229, 13.3811 ], [ 144.66247, 13.38121 ], [ 144.662573, 13.381274 ], [ 144.662885, 13.381467 ], [ 144.662989, 13.381532 ], [ 144.663067, 13.381581 ], [ 144.66313, 13.38162 ], [ 144.663302, 13.38173 ], [ 144.66338, 13.38178 ], [ 144.663249, 13.382002 ], [ 144.66291, 13.38258 ], [ 144.662864, 13.382671 ], [ 144.6628, 13.3828 ], [ 144.66277, 13.38291 ], [ 144.662754, 13.382953 ], [ 144.66272, 13.38305 ], [ 144.662715, 13.383084 ], [ 144.66271, 13.38313 ], [ 144.662817, 13.383375 ], [ 144.662934, 13.383643 ], [ 144.663443, 13.383608 ], [ 144.66371, 13.38359 ], [ 144.663667, 13.383608 ], [ 144.663538, 13.383666 ], [ 144.663496, 13.383685 ], [ 144.663762, 13.383822 ], [ 144.663847, 13.383966 ], [ 144.663846, 13.383967 ], [ 144.663799, 13.384142 ], [ 144.663748, 13.384282 ], [ 144.664056, 13.38435 ], [ 144.664813, 13.384377 ], [ 144.665195, 13.384392 ], [ 144.66528, 13.384406 ], [ 144.665304, 13.38411 ], [ 144.665323, 13.383888 ], [ 144.665513, 13.383312 ], [ 144.66557, 13.383331 ], [ 144.665665, 13.383363 ], [ 144.665807, 13.3835 ], [ 144.668083, 13.384316 ], [ 144.668808, 13.382064 ], [ 144.669321, 13.381452 ], [ 144.66919, 13.381413 ], [ 144.668805, 13.381297 ], [ 144.668457, 13.381055 ], [ 144.667585, 13.380354 ], [ 144.66712, 13.380032 ], [ 144.666707, 13.377516 ], [ 144.666572, 13.376694 ], [ 144.666812, 13.375583 ], [ 144.667101, 13.375 ], [ 144.667404, 13.374612 ], [ 144.667533, 13.374158 ], [ 144.667689, 13.373476 ], [ 144.667537, 13.373099 ], [ 144.667332, 13.372617 ], [ 144.666704, 13.371602 ], [ 144.666685, 13.370363 ], [ 144.66668, 13.370034 ], [ 144.666629, 13.367815 ], [ 144.666623, 13.367227 ], [ 144.666605, 13.365464 ], [ 144.666599, 13.364877 ], [ 144.666594, 13.364589 ], [ 144.66658, 13.363727 ], [ 144.666576, 13.36344 ], [ 144.666568, 13.363148 ], [ 144.666383, 13.355922 ], [ 144.666349, 13.35459 ], [ 144.666186, 13.348224 ], [ 144.669595, 13.343983 ], [ 144.666729, 13.338186 ], [ 144.663509, 13.340232 ], [ 144.661435, 13.338627 ], [ 144.662488, 13.337116 ], [ 144.666527, 13.331326 ] ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "951600", "GEOID10": "66010951600", "NAME10": "9516", "NAMELSAD10": "Census Tract 9516", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 7726260, "AWATER10": 0, "INTPTLAT10": "+13.4701854", "INTPTLON10": "+144.8206492" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.806656, 13.473444 ], [ 144.806946, 13.473746 ], [ 144.807267, 13.474105 ], [ 144.807528, 13.474396 ], [ 144.807908, 13.47483 ], [ 144.808001, 13.474936 ], [ 144.808453, 13.475399 ], [ 144.809062, 13.476025 ], [ 144.80908, 13.476092 ], [ 144.809176, 13.476449 ], [ 144.80923, 13.47665 ], [ 144.809345, 13.47681 ], [ 144.80941, 13.4769 ], [ 144.809666, 13.477309 ], [ 144.809771, 13.477477 ], [ 144.809788, 13.477505 ], [ 144.809842, 13.477591 ], [ 144.80986, 13.47762 ], [ 144.80994, 13.47775 ], [ 144.80989, 13.47778 ], [ 144.810534, 13.478803 ], [ 144.81235, 13.48169 ], [ 144.812808, 13.482406 ], [ 144.81281, 13.48241 ], [ 144.81312, 13.48282 ], [ 144.81344, 13.48312 ], [ 144.81381, 13.4834 ], [ 144.813939, 13.483476 ], [ 144.81413, 13.48359 ], [ 144.814341, 13.48368 ], [ 144.81448, 13.48374 ], [ 144.814824, 13.483898 ], [ 144.815152, 13.48405 ], [ 144.81591, 13.48422 ], [ 144.816147, 13.484274 ], [ 144.816283, 13.484285 ], [ 144.816682, 13.484296 ], [ 144.816984, 13.484306 ], [ 144.817751, 13.484325 ], [ 144.817882, 13.484327 ], [ 144.818282, 13.484336 ], [ 144.818405, 13.484284 ], [ 144.818537, 13.484231 ], [ 144.818616, 13.484204 ], [ 144.818659, 13.484183 ], [ 144.818787, 13.484166 ], [ 144.81892, 13.48415 ], [ 144.819134, 13.484108 ], [ 144.819776, 13.483982 ], [ 144.81999, 13.48394 ], [ 144.82004, 13.483954 ], [ 144.820191, 13.483996 ], [ 144.820242, 13.48401 ], [ 144.820456, 13.484006 ], [ 144.8211, 13.483997 ], [ 144.821315, 13.483994 ], [ 144.821591, 13.484013 ], [ 144.822422, 13.484071 ], [ 144.822557, 13.484081 ], [ 144.8227, 13.48409 ], [ 144.823943, 13.483979 ], [ 144.832103, 13.483971 ], [ 144.832839, 13.483976 ], [ 144.832848, 13.482969 ], [ 144.832863, 13.482744 ], [ 144.832906, 13.482141 ], [ 144.832953, 13.477688 ], [ 144.833005, 13.473304 ], [ 144.832998, 13.472991 ], [ 144.832974, 13.471936 ], [ 144.832946, 13.470652 ], [ 144.832905, 13.468771 ], [ 144.832882, 13.467716 ], [ 144.832897, 13.467344 ], [ 144.832944, 13.466231 ], [ 144.83296, 13.46586 ], [ 144.832974, 13.464721 ], [ 144.83298, 13.46106 ], [ 144.832955, 13.461042 ], [ 144.83288, 13.460988 ], [ 144.832855, 13.460971 ], [ 144.832803, 13.460934 ], [ 144.832649, 13.460823 ], [ 144.832598, 13.460787 ], [ 144.83172, 13.46016 ], [ 144.83137, 13.45987 ], [ 144.83104, 13.4595 ], [ 144.83081, 13.45917 ], [ 144.83059, 13.4588 ], [ 144.830426, 13.458516 ], [ 144.829488, 13.456892 ], [ 144.827614, 13.456911 ], [ 144.820457, 13.456988 ], [ 144.818467, 13.457005 ], [ 144.807597, 13.457103 ], [ 144.807615, 13.457754 ], [ 144.807705, 13.461014 ], [ 144.807735, 13.462101 ], [ 144.807717, 13.462448 ], [ 144.807668, 13.463456 ], [ 144.807665, 13.463491 ], [ 144.807638, 13.463839 ], [ 144.807613, 13.464494 ], [ 144.807601, 13.464827 ], [ 144.807542, 13.466461 ], [ 144.807519, 13.467117 ], [ 144.807507, 13.467263 ], [ 144.807472, 13.467702 ], [ 144.807461, 13.467849 ], [ 144.807449, 13.468133 ], [ 144.807416, 13.468985 ], [ 144.807405, 13.46927 ], [ 144.80742, 13.469271 ], [ 144.807465, 13.469277 ], [ 144.80748, 13.46928 ], [ 144.80752, 13.46928 ], [ 144.807555, 13.469285 ], [ 144.807781, 13.469319 ], [ 144.807857, 13.469331 ], [ 144.80798, 13.46935 ], [ 144.80805, 13.469367 ], [ 144.80843, 13.46946 ], [ 144.808621, 13.469515 ], [ 144.80881, 13.46957 ], [ 144.808868, 13.469586 ], [ 144.809042, 13.469636 ], [ 144.80909, 13.46965 ], [ 144.8091, 13.469654 ], [ 144.809127, 13.469665 ], [ 144.809207, 13.469698 ], [ 144.809235, 13.469709 ], [ 144.809169, 13.469994 ], [ 144.808971, 13.470852 ], [ 144.808906, 13.471138 ], [ 144.808882, 13.471227 ], [ 144.808812, 13.471495 ], [ 144.80879, 13.471585 ], [ 144.80873, 13.471586 ], [ 144.808552, 13.471589 ], [ 144.808493, 13.471591 ], [ 144.807943, 13.471685 ], [ 144.806327, 13.471964 ], [ 144.806314, 13.471992 ], [ 144.806088, 13.472501 ], [ 144.806088, 13.472604 ], [ 144.806089, 13.472877 ], [ 144.806118, 13.4729 ], [ 144.806199, 13.472966 ], [ 144.806469, 13.473248 ], [ 144.806656, 13.473444 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "951700", "GEOID10": "66010951700", "NAME10": "9517", "NAMELSAD10": "Census Tract 9517", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 2912814, "AWATER10": 0, "INTPTLAT10": "+13.4914614", "INTPTLON10": "+144.8259037" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.8138, 13.483754 ], [ 144.814072, 13.483965 ], [ 144.814484, 13.484163 ], [ 144.815064, 13.484315 ], [ 144.815725, 13.484841 ], [ 144.816268, 13.485351 ], [ 144.816474, 13.485713 ], [ 144.81658, 13.485849 ], [ 144.816791, 13.486117 ], [ 144.816949, 13.486933 ], [ 144.81683, 13.487686 ], [ 144.816513, 13.488439 ], [ 144.81572, 13.49008 ], [ 144.815322, 13.490848 ], [ 144.815158, 13.491174 ], [ 144.815071, 13.491348 ], [ 144.819254, 13.492927 ], [ 144.819294, 13.492939 ], [ 144.819418, 13.492977 ], [ 144.819459, 13.49299 ], [ 144.819986, 13.493303 ], [ 144.82157, 13.494245 ], [ 144.822098, 13.494559 ], [ 144.82213, 13.4947 ], [ 144.822133, 13.494787 ], [ 144.82214, 13.49492 ], [ 144.82213, 13.49518 ], [ 144.82209, 13.49542 ], [ 144.822072, 13.495479 ], [ 144.82203, 13.49563 ], [ 144.822, 13.4957 ], [ 144.821911, 13.495777 ], [ 144.82184, 13.49584 ], [ 144.821695, 13.496052 ], [ 144.82163, 13.49615 ], [ 144.82162, 13.496235 ], [ 144.82162, 13.49624 ], [ 144.82158, 13.49629 ], [ 144.821467, 13.496444 ], [ 144.821417, 13.496514 ], [ 144.821304, 13.496668 ], [ 144.820967, 13.497132 ], [ 144.82086, 13.49728 ], [ 144.820855, 13.497287 ], [ 144.820779, 13.497386 ], [ 144.82064, 13.49757 ], [ 144.820563, 13.497691 ], [ 144.82052, 13.49776 ], [ 144.820498, 13.497798 ], [ 144.820428, 13.497916 ], [ 144.82042, 13.49793 ], [ 144.82028, 13.49823 ], [ 144.820257, 13.498291 ], [ 144.82021, 13.49842 ], [ 144.820189, 13.498479 ], [ 144.820267, 13.498518 ], [ 144.820339, 13.498554 ], [ 144.820769, 13.498786 ], [ 144.821127, 13.499049 ], [ 144.82186, 13.499581 ], [ 144.822061, 13.499777 ], [ 144.822333, 13.500226 ], [ 144.822829, 13.500746 ], [ 144.823023, 13.500867 ], [ 144.823116, 13.500946 ], [ 144.82351, 13.50119 ], [ 144.823674, 13.501266 ], [ 144.823874, 13.501332 ], [ 144.824078, 13.501387 ], [ 144.824471, 13.501285 ], [ 144.824507, 13.501141 ], [ 144.824807, 13.500117 ], [ 144.824877, 13.49988 ], [ 144.82508, 13.499236 ], [ 144.82564, 13.49926 ], [ 144.827982, 13.499393 ], [ 144.828989, 13.499436 ], [ 144.830164, 13.49951 ], [ 144.83163, 13.49959 ], [ 144.832156, 13.499586 ], [ 144.832338, 13.499597 ], [ 144.834631, 13.499749 ], [ 144.834657, 13.499575 ], [ 144.834707, 13.499253 ], [ 144.834717, 13.499194 ], [ 144.834675, 13.498628 ], [ 144.834625, 13.497931 ], [ 144.834545, 13.497222 ], [ 144.834487, 13.496702 ], [ 144.834215, 13.494278 ], [ 144.83382, 13.49143 ], [ 144.833402, 13.488435 ], [ 144.83288, 13.484581 ], [ 144.832838, 13.484181 ], [ 144.832838, 13.484163 ], [ 144.832839, 13.483976 ], [ 144.832103, 13.483971 ], [ 144.823943, 13.483979 ], [ 144.8227, 13.48409 ], [ 144.822557, 13.484081 ], [ 144.822422, 13.484071 ], [ 144.821591, 13.484013 ], [ 144.821315, 13.483994 ], [ 144.8211, 13.483997 ], [ 144.820456, 13.484006 ], [ 144.820242, 13.48401 ], [ 144.820191, 13.483996 ], [ 144.82004, 13.483954 ], [ 144.81999, 13.48394 ], [ 144.819776, 13.483982 ], [ 144.819134, 13.484108 ], [ 144.81892, 13.48415 ], [ 144.818787, 13.484166 ], [ 144.818659, 13.484183 ], [ 144.818616, 13.484204 ], [ 144.818537, 13.484231 ], [ 144.818405, 13.484284 ], [ 144.818282, 13.484336 ], [ 144.817882, 13.484327 ], [ 144.817751, 13.484325 ], [ 144.816984, 13.484306 ], [ 144.816682, 13.484296 ], [ 144.816283, 13.484285 ], [ 144.816147, 13.484274 ], [ 144.81591, 13.48422 ], [ 144.815152, 13.48405 ], [ 144.814824, 13.483898 ], [ 144.81448, 13.48374 ], [ 144.814341, 13.48368 ], [ 144.81413, 13.48359 ], [ 144.813939, 13.483476 ], [ 144.81381, 13.4834 ], [ 144.813808, 13.483454 ], [ 144.813803, 13.483617 ], [ 144.813802, 13.483672 ], [ 144.8138, 13.483754 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "951800", "GEOID10": "66010951800", "NAME10": "9518", "NAMELSAD10": "Census Tract 9518", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 7161044, "AWATER10": 0, "INTPTLAT10": "+13.4835400", "INTPTLON10": "+144.8013676" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.815064, 13.484315 ], [ 144.814484, 13.484163 ], [ 144.814072, 13.483965 ], [ 144.8138, 13.483754 ], [ 144.813802, 13.483672 ], [ 144.813803, 13.483617 ], [ 144.813808, 13.483454 ], [ 144.81381, 13.4834 ], [ 144.81344, 13.48312 ], [ 144.81312, 13.48282 ], [ 144.81281, 13.48241 ], [ 144.812808, 13.482406 ], [ 144.81235, 13.48169 ], [ 144.810534, 13.478803 ], [ 144.80989, 13.47778 ], [ 144.80994, 13.47775 ], [ 144.80986, 13.47762 ], [ 144.809842, 13.477591 ], [ 144.809788, 13.477505 ], [ 144.809771, 13.477477 ], [ 144.809666, 13.477309 ], [ 144.80941, 13.4769 ], [ 144.809345, 13.47681 ], [ 144.80923, 13.47665 ], [ 144.80904, 13.47638 ], [ 144.8089, 13.47619 ], [ 144.80877, 13.47611 ], [ 144.80851, 13.47576 ], [ 144.80829, 13.47551 ], [ 144.807785, 13.474922 ], [ 144.80762, 13.47473 ], [ 144.80741, 13.4745 ], [ 144.807144, 13.474218 ], [ 144.80675, 13.4738 ], [ 144.80653, 13.473563 ], [ 144.806353, 13.473372 ], [ 144.80609, 13.47309 ], [ 144.806023, 13.473018 ], [ 144.805822, 13.472802 ], [ 144.805756, 13.47273 ], [ 144.805728, 13.472699 ], [ 144.805644, 13.472609 ], [ 144.805616, 13.472579 ], [ 144.805586, 13.472547 ], [ 144.805497, 13.472451 ], [ 144.805468, 13.47242 ], [ 144.80541, 13.472358 ], [ 144.805239, 13.472173 ], [ 144.805182, 13.472112 ], [ 144.805028, 13.471946 ], [ 144.804568, 13.471451 ], [ 144.80452, 13.4714 ], [ 144.804413, 13.471288 ], [ 144.804384, 13.471258 ], [ 144.804298, 13.471169 ], [ 144.80427, 13.47114 ], [ 144.803976, 13.470825 ], [ 144.80385, 13.47069 ], [ 144.80342, 13.47028 ], [ 144.80313, 13.47009 ], [ 144.802978, 13.470023 ], [ 144.80279, 13.46994 ], [ 144.80258, 13.46986 ], [ 144.80241, 13.46982 ], [ 144.802347, 13.469826 ], [ 144.80221, 13.46984 ], [ 144.80184, 13.46989 ], [ 144.801642, 13.469931 ], [ 144.80141, 13.46998 ], [ 144.80125, 13.470013 ], [ 144.80077, 13.470116 ], [ 144.80061, 13.47015 ], [ 144.80024, 13.47022 ], [ 144.800021, 13.470273 ], [ 144.799751, 13.470339 ], [ 144.79967, 13.47036 ], [ 144.799183, 13.470541 ], [ 144.799139, 13.470557 ], [ 144.798791, 13.470687 ], [ 144.79836, 13.47085 ], [ 144.798318, 13.470866 ], [ 144.79776, 13.47109 ], [ 144.797529, 13.471179 ], [ 144.79684, 13.471449 ], [ 144.79661, 13.47154 ], [ 144.796487, 13.471588 ], [ 144.796122, 13.471732 ], [ 144.796, 13.47178 ], [ 144.79593, 13.47181 ], [ 144.79587, 13.471832 ], [ 144.79548, 13.47198 ], [ 144.79535, 13.47203 ], [ 144.795218, 13.472078 ], [ 144.794822, 13.472224 ], [ 144.794691, 13.472273 ], [ 144.79451, 13.47234 ], [ 144.794392, 13.472385 ], [ 144.79381, 13.47261 ], [ 144.793496, 13.472722 ], [ 144.79342, 13.47275 ], [ 144.793193, 13.472821 ], [ 144.7931, 13.47285 ], [ 144.792954, 13.472874 ], [ 144.7928, 13.4729 ], [ 144.792224, 13.472935 ], [ 144.79198, 13.47295 ], [ 144.79181, 13.47297 ], [ 144.791711, 13.472974 ], [ 144.790904, 13.473007 ], [ 144.79084, 13.47301 ], [ 144.790636, 13.473027 ], [ 144.79048, 13.47304 ], [ 144.790464, 13.473043 ], [ 144.79016, 13.47311 ], [ 144.789962, 13.47317 ], [ 144.78993, 13.47318 ], [ 144.7898, 13.47323 ], [ 144.78977, 13.47324 ], [ 144.789685, 13.473293 ], [ 144.78953, 13.47339 ], [ 144.789357, 13.473513 ], [ 144.78925, 13.47359 ], [ 144.78918, 13.47365 ], [ 144.789038, 13.473749 ], [ 144.78881, 13.47391 ], [ 144.78863, 13.47402 ], [ 144.78853, 13.47408 ], [ 144.78846, 13.47411 ], [ 144.788361, 13.474163 ], [ 144.78822, 13.47424 ], [ 144.78812, 13.47427 ], [ 144.787988, 13.474312 ], [ 144.78787, 13.47435 ], [ 144.787584, 13.474404 ], [ 144.787449, 13.474431 ], [ 144.787395, 13.474441 ], [ 144.7873, 13.47446 ], [ 144.787234, 13.474465 ], [ 144.78718, 13.47447 ], [ 144.78714, 13.474473 ], [ 144.787023, 13.474485 ], [ 144.786984, 13.47449 ], [ 144.786932, 13.474495 ], [ 144.786778, 13.474511 ], [ 144.786727, 13.474517 ], [ 144.786663, 13.474523 ], [ 144.786473, 13.474543 ], [ 144.78641, 13.47455 ], [ 144.786191, 13.474569 ], [ 144.78618, 13.47457 ], [ 144.785537, 13.474644 ], [ 144.78532, 13.47467 ], [ 144.785091, 13.474698 ], [ 144.78484, 13.47473 ], [ 144.784407, 13.474788 ], [ 144.78418, 13.47482 ], [ 144.783569, 13.474903 ], [ 144.78213, 13.4751 ], [ 144.781739, 13.475154 ], [ 144.78113, 13.47524 ], [ 144.781094, 13.475245 ], [ 144.780988, 13.47526 ], [ 144.780953, 13.475266 ], [ 144.780812, 13.475286 ], [ 144.78039, 13.475348 ], [ 144.78025, 13.47537 ], [ 144.780214, 13.475559 ], [ 144.780108, 13.476126 ], [ 144.780074, 13.476316 ], [ 144.780069, 13.476364 ], [ 144.780054, 13.476511 ], [ 144.78005, 13.47656 ], [ 144.779959, 13.477074 ], [ 144.779936, 13.47721 ], [ 144.779737, 13.478957 ], [ 144.779647, 13.479662 ], [ 144.779641, 13.479686 ], [ 144.779653, 13.479901 ], [ 144.779653, 13.480201 ], [ 144.779655, 13.480413 ], [ 144.779659, 13.480834 ], [ 144.779677, 13.480915 ], [ 144.779696, 13.481001 ], [ 144.779705, 13.481361 ], [ 144.779713, 13.481711 ], [ 144.780189, 13.481767 ], [ 144.780506, 13.481877 ], [ 144.780889, 13.482084 ], [ 144.781442, 13.482383 ], [ 144.781625, 13.482483 ], [ 144.781846, 13.482555 ], [ 144.783419, 13.483339 ], [ 144.785225, 13.48425 ], [ 144.785577, 13.484411 ], [ 144.786115, 13.484658 ], [ 144.786497, 13.484899 ], [ 144.787401, 13.484956 ], [ 144.787701, 13.484975 ], [ 144.787952, 13.485159 ], [ 144.788958, 13.485767 ], [ 144.789833, 13.486297 ], [ 144.790222, 13.486437 ], [ 144.791028, 13.486849 ], [ 144.792712, 13.487993 ], [ 144.792667, 13.488347 ], [ 144.794594, 13.489131 ], [ 144.797615, 13.490011 ], [ 144.79779, 13.49003 ], [ 144.797862, 13.490039 ], [ 144.798297, 13.490178 ], [ 144.798465, 13.490232 ], [ 144.798728, 13.490332 ], [ 144.799892, 13.490594 ], [ 144.800293, 13.490694 ], [ 144.800402, 13.490726 ], [ 144.800514, 13.490755 ], [ 144.801007, 13.49088 ], [ 144.801048, 13.490853 ], [ 144.801203, 13.490507 ], [ 144.801438, 13.489989 ], [ 144.801217, 13.489887 ], [ 144.800479, 13.489553 ], [ 144.800052, 13.489345 ], [ 144.800103, 13.489218 ], [ 144.7995, 13.488954 ], [ 144.799948, 13.488015 ], [ 144.800816, 13.488396 ], [ 144.801578, 13.48873 ], [ 144.801592, 13.488735 ], [ 144.801637, 13.488752 ], [ 144.801652, 13.488758 ], [ 144.801672, 13.488765 ], [ 144.801735, 13.488787 ], [ 144.801756, 13.488795 ], [ 144.802071, 13.488927 ], [ 144.802011, 13.489071 ], [ 144.803256, 13.48956 ], [ 144.804221, 13.490009 ], [ 144.804116, 13.490243 ], [ 144.803829, 13.490955 ], [ 144.803629, 13.491283 ], [ 144.803546, 13.491372 ], [ 144.803376, 13.491557 ], [ 144.803046, 13.491752 ], [ 144.802966, 13.491787 ], [ 144.80285, 13.49184 ], [ 144.802814, 13.49185 ], [ 144.802739, 13.491861 ], [ 144.80254, 13.4919 ], [ 144.802313, 13.491903 ], [ 144.802052, 13.491874 ], [ 144.802042, 13.491964 ], [ 144.802404, 13.492024 ], [ 144.802766, 13.492068 ], [ 144.803151, 13.492148 ], [ 144.803517, 13.492209 ], [ 144.803614, 13.492226 ], [ 144.804618, 13.492569 ], [ 144.807428, 13.493808 ], [ 144.808705, 13.494382 ], [ 144.809686, 13.49483 ], [ 144.809233, 13.495903 ], [ 144.809148, 13.496077 ], [ 144.808988, 13.496412 ], [ 144.81362, 13.498462 ], [ 144.817628, 13.500689 ], [ 144.819446, 13.501693 ], [ 144.819625, 13.501689 ], [ 144.8197, 13.5017 ], [ 144.819709, 13.501482 ], [ 144.81971, 13.50145 ], [ 144.81974, 13.50116 ], [ 144.819742, 13.501143 ], [ 144.81977, 13.50092 ], [ 144.81983, 13.5006 ], [ 144.819898, 13.500133 ], [ 144.819948, 13.499797 ], [ 144.819979, 13.499581 ], [ 144.82003, 13.49924 ], [ 144.820077, 13.498935 ], [ 144.82008, 13.49892 ], [ 144.820122, 13.498722 ], [ 144.820135, 13.49866 ], [ 144.820154, 13.498579 ], [ 144.820189, 13.498479 ], [ 144.82021, 13.49842 ], [ 144.820257, 13.498291 ], [ 144.82028, 13.49823 ], [ 144.82042, 13.49793 ], [ 144.820428, 13.497916 ], [ 144.820498, 13.497798 ], [ 144.82052, 13.49776 ], [ 144.820563, 13.497691 ], [ 144.82064, 13.49757 ], [ 144.820779, 13.497386 ], [ 144.820855, 13.497287 ], [ 144.82086, 13.49728 ], [ 144.820967, 13.497132 ], [ 144.821304, 13.496668 ], [ 144.821417, 13.496514 ], [ 144.821467, 13.496444 ], [ 144.82158, 13.49629 ], [ 144.82162, 13.49624 ], [ 144.82162, 13.496235 ], [ 144.82163, 13.49615 ], [ 144.821695, 13.496052 ], [ 144.82184, 13.49584 ], [ 144.821911, 13.495777 ], [ 144.822, 13.4957 ], [ 144.82203, 13.49563 ], [ 144.822072, 13.495479 ], [ 144.82209, 13.49542 ], [ 144.82213, 13.49518 ], [ 144.82214, 13.49492 ], [ 144.822133, 13.494787 ], [ 144.82213, 13.4947 ], [ 144.822098, 13.494559 ], [ 144.82157, 13.494245 ], [ 144.819986, 13.493303 ], [ 144.819459, 13.49299 ], [ 144.819418, 13.492977 ], [ 144.819294, 13.492939 ], [ 144.819254, 13.492927 ], [ 144.815071, 13.491348 ], [ 144.815158, 13.491174 ], [ 144.815322, 13.490848 ], [ 144.81572, 13.49008 ], [ 144.816513, 13.488439 ], [ 144.81683, 13.487686 ], [ 144.816949, 13.486933 ], [ 144.816791, 13.486117 ], [ 144.81658, 13.485849 ], [ 144.816474, 13.485713 ], [ 144.816268, 13.485351 ], [ 144.815725, 13.484841 ], [ 144.815064, 13.484315 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "952700", "GEOID10": "66010952700", "NAME10": "9527", "NAMELSAD10": "Census Tract 9527", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 3234368, "AWATER10": 0, "INTPTLAT10": "+13.4652924", "INTPTLON10": "+144.7927073" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.800728, 13.466622 ], [ 144.80072, 13.46649 ], [ 144.80072, 13.466478 ], [ 144.80072, 13.4664 ], [ 144.800714, 13.466321 ], [ 144.8007, 13.46613 ], [ 144.800703, 13.466087 ], [ 144.80071, 13.46601 ], [ 144.800725, 13.465793 ], [ 144.80073, 13.46573 ], [ 144.8008, 13.46523 ], [ 144.800819, 13.46515 ], [ 144.80087, 13.46494 ], [ 144.800882, 13.464892 ], [ 144.800918, 13.464748 ], [ 144.80093, 13.4647 ], [ 144.800942, 13.464651 ], [ 144.80096, 13.46458 ], [ 144.800984, 13.464507 ], [ 144.801, 13.46446 ], [ 144.801022, 13.464406 ], [ 144.801087, 13.464244 ], [ 144.80111, 13.46419 ], [ 144.80114, 13.4641 ], [ 144.80116, 13.464062 ], [ 144.801354, 13.4637 ], [ 144.80142, 13.46358 ], [ 144.801503, 13.463445 ], [ 144.801629, 13.463246 ], [ 144.801755, 13.463043 ], [ 144.80184, 13.46291 ], [ 144.801865, 13.462867 ], [ 144.80194, 13.46274 ], [ 144.801967, 13.462698 ], [ 144.802001, 13.462644 ], [ 144.802105, 13.462485 ], [ 144.80214, 13.462432 ], [ 144.802203, 13.462333 ], [ 144.802396, 13.462038 ], [ 144.80246, 13.46194 ], [ 144.80258, 13.46175 ], [ 144.802662, 13.461623 ], [ 144.803278, 13.460677 ], [ 144.8034, 13.46049 ], [ 144.80348, 13.46036 ], [ 144.803617, 13.460145 ], [ 144.804032, 13.459503 ], [ 144.80417, 13.45929 ], [ 144.804223, 13.4592 ], [ 144.80426, 13.45914 ], [ 144.804357, 13.458916 ], [ 144.8044, 13.45882 ], [ 144.804528, 13.458487 ], [ 144.80462, 13.45825 ], [ 144.80478, 13.45759 ], [ 144.804796, 13.457454 ], [ 144.80484, 13.4571 ], [ 144.804555, 13.457113 ], [ 144.80422, 13.45713 ], [ 144.803703, 13.457149 ], [ 144.80368, 13.45715 ], [ 144.80342, 13.457171 ], [ 144.803347, 13.457176 ], [ 144.803131, 13.457194 ], [ 144.80306, 13.4572 ], [ 144.802941, 13.457206 ], [ 144.80289, 13.45721 ], [ 144.802587, 13.457231 ], [ 144.80247, 13.45724 ], [ 144.802416, 13.457244 ], [ 144.802254, 13.457256 ], [ 144.8022, 13.45726 ], [ 144.802083, 13.457268 ], [ 144.801736, 13.457292 ], [ 144.80162, 13.4573 ], [ 144.80156, 13.45731 ], [ 144.801464, 13.45731 ], [ 144.80137, 13.45731 ], [ 144.80122, 13.45723 ], [ 144.80111, 13.45712 ], [ 144.801074, 13.457086 ], [ 144.80096, 13.45698 ], [ 144.80085, 13.45691 ], [ 144.800799, 13.456894 ], [ 144.80075, 13.45688 ], [ 144.80047, 13.45688 ], [ 144.800252, 13.456887 ], [ 144.80016, 13.45689 ], [ 144.80007, 13.4569 ], [ 144.800054, 13.456901 ], [ 144.800006, 13.456908 ], [ 144.79999, 13.45691 ], [ 144.7998, 13.456935 ], [ 144.79977, 13.45694 ], [ 144.79957, 13.45698 ], [ 144.79941, 13.45708 ], [ 144.799313, 13.457195 ], [ 144.79926, 13.45726 ], [ 144.79922, 13.45736 ], [ 144.79919, 13.45744 ], [ 144.799177, 13.457503 ], [ 144.79914, 13.4577 ], [ 144.799145, 13.457948 ], [ 144.799149, 13.458098 ], [ 144.798411, 13.458157 ], [ 144.798258, 13.458148 ], [ 144.797929, 13.45822 ], [ 144.797323, 13.458416 ], [ 144.797255, 13.458197 ], [ 144.796642, 13.458108 ], [ 144.796577, 13.457376 ], [ 144.796518, 13.457375 ], [ 144.796141, 13.457367 ], [ 144.795534, 13.457503 ], [ 144.794822, 13.457642 ], [ 144.794656, 13.457511 ], [ 144.794187, 13.457372 ], [ 144.793684, 13.457049 ], [ 144.793645, 13.456712 ], [ 144.793556, 13.456587 ], [ 144.792851, 13.455665 ], [ 144.792761, 13.455724 ], [ 144.792539, 13.455414 ], [ 144.792298, 13.455566 ], [ 144.791949, 13.455668 ], [ 144.791377, 13.455842 ], [ 144.791176, 13.455912 ], [ 144.790989, 13.455976 ], [ 144.790848, 13.456093 ], [ 144.790709, 13.45628 ], [ 144.790606, 13.45632 ], [ 144.790171, 13.456482 ], [ 144.790018, 13.457371 ], [ 144.78959, 13.45754 ], [ 144.789001, 13.457847 ], [ 144.788903, 13.457902 ], [ 144.788799, 13.457966 ], [ 144.788629, 13.458069 ], [ 144.788573, 13.458095 ], [ 144.788414, 13.458159 ], [ 144.788304, 13.4582 ], [ 144.78825, 13.458224 ], [ 144.788107, 13.458281 ], [ 144.787873, 13.458384 ], [ 144.78785, 13.458393 ], [ 144.787728, 13.458448 ], [ 144.787236, 13.458671 ], [ 144.787133, 13.458717 ], [ 144.787158, 13.458763 ], [ 144.787186, 13.458803 ], [ 144.78722, 13.45885 ], [ 144.78722, 13.45898 ], [ 144.787225, 13.459025 ], [ 144.78724, 13.45914 ], [ 144.787234, 13.459186 ], [ 144.78722, 13.45931 ], [ 144.78716, 13.45943 ], [ 144.787089, 13.459507 ], [ 144.78707, 13.45953 ], [ 144.78703, 13.45967 ], [ 144.78702, 13.45972 ], [ 144.786976, 13.459807 ], [ 144.78695, 13.45986 ], [ 144.78676, 13.46006 ], [ 144.786706, 13.460104 ], [ 144.786207, 13.460115 ], [ 144.786055, 13.460122 ], [ 144.786017, 13.460123 ], [ 144.78567, 13.460373 ], [ 144.785539, 13.460468 ], [ 144.78547, 13.46049 ], [ 144.78538, 13.460552 ], [ 144.78537, 13.46056 ], [ 144.78527, 13.46066 ], [ 144.785261, 13.460674 ], [ 144.785081, 13.460803 ], [ 144.784873, 13.460949 ], [ 144.784599, 13.461174 ], [ 144.784306, 13.461414 ], [ 144.784165, 13.461536 ], [ 144.78416, 13.461545 ], [ 144.78414, 13.46158 ], [ 144.784186, 13.46161 ], [ 144.784324, 13.4617 ], [ 144.78437, 13.46173 ], [ 144.78436, 13.46182 ], [ 144.78442, 13.46195 ], [ 144.784476, 13.462038 ], [ 144.78449, 13.46206 ], [ 144.784512, 13.46209 ], [ 144.78461, 13.46222 ], [ 144.78468, 13.46238 ], [ 144.78469, 13.46256 ], [ 144.78469, 13.46282 ], [ 144.78471, 13.46293 ], [ 144.784753, 13.462977 ], [ 144.78482, 13.46305 ], [ 144.78499, 13.46322 ], [ 144.78505, 13.463287 ], [ 144.78509, 13.46333 ], [ 144.785237, 13.463484 ], [ 144.7853, 13.46355 ], [ 144.785367, 13.463617 ], [ 144.78543, 13.46368 ], [ 144.785551, 13.463835 ], [ 144.78561, 13.46391 ], [ 144.78563, 13.463936 ], [ 144.78564, 13.46395 ], [ 144.785665, 13.46403 ], [ 144.785675, 13.464062 ], [ 144.785697, 13.464135 ], [ 144.78573, 13.46424 ], [ 144.78576, 13.464355 ], [ 144.78578, 13.46443 ], [ 144.785784, 13.464448 ], [ 144.785796, 13.464502 ], [ 144.7858, 13.46452 ], [ 144.7858, 13.4646 ], [ 144.7858, 13.46461 ], [ 144.78581, 13.46471 ], [ 144.785803, 13.464839 ], [ 144.7858, 13.46492 ], [ 144.7858, 13.464983 ], [ 144.7858, 13.465172 ], [ 144.7858, 13.4652 ], [ 144.785798, 13.465236 ], [ 144.785783, 13.465458 ], [ 144.78577, 13.46566 ], [ 144.78577, 13.46593 ], [ 144.78575, 13.4661 ], [ 144.785742, 13.466125 ], [ 144.78568, 13.46634 ], [ 144.785657, 13.466414 ], [ 144.78565, 13.46644 ], [ 144.78557, 13.4666 ], [ 144.785553, 13.466624 ], [ 144.78551, 13.46669 ], [ 144.785473, 13.466747 ], [ 144.785365, 13.466921 ], [ 144.78533, 13.46698 ], [ 144.785229, 13.467139 ], [ 144.784929, 13.467619 ], [ 144.78483, 13.46778 ], [ 144.784813, 13.467807 ], [ 144.784763, 13.467888 ], [ 144.784747, 13.467916 ], [ 144.78473, 13.467943 ], [ 144.78472, 13.46796 ], [ 144.784677, 13.468023 ], [ 144.78466, 13.46805 ], [ 144.784532, 13.46826 ], [ 144.78424, 13.46874 ], [ 144.78416, 13.46889 ], [ 144.784156, 13.468895 ], [ 144.78402, 13.4691 ], [ 144.78401, 13.469114 ], [ 144.78398, 13.469156 ], [ 144.78397, 13.46917 ], [ 144.783938, 13.46922 ], [ 144.783842, 13.46937 ], [ 144.78381, 13.46942 ], [ 144.783777, 13.469467 ], [ 144.783681, 13.469611 ], [ 144.78365, 13.46966 ], [ 144.783581, 13.469772 ], [ 144.78348, 13.46994 ], [ 144.783371, 13.470108 ], [ 144.7833, 13.47022 ], [ 144.78328, 13.470251 ], [ 144.783224, 13.470347 ], [ 144.783205, 13.470379 ], [ 144.783178, 13.470422 ], [ 144.783101, 13.470553 ], [ 144.783075, 13.470597 ], [ 144.783021, 13.470685 ], [ 144.782863, 13.470952 ], [ 144.78281, 13.471041 ], [ 144.782532, 13.47151 ], [ 144.782486, 13.47156 ], [ 144.78232, 13.47184 ], [ 144.782289, 13.471886 ], [ 144.782198, 13.472025 ], [ 144.782168, 13.472072 ], [ 144.782048, 13.472253 ], [ 144.781689, 13.472798 ], [ 144.78157, 13.47298 ], [ 144.781561, 13.472991 ], [ 144.781536, 13.473028 ], [ 144.781528, 13.47304 ], [ 144.781508, 13.473067 ], [ 144.781449, 13.473152 ], [ 144.78143, 13.47318 ], [ 144.781419, 13.473196 ], [ 144.78139, 13.473246 ], [ 144.78138, 13.473263 ], [ 144.781371, 13.473276 ], [ 144.781348, 13.473316 ], [ 144.78134, 13.47333 ], [ 144.781171, 13.473586 ], [ 144.78082, 13.47412 ], [ 144.780674, 13.47436 ], [ 144.780515, 13.474623 ], [ 144.780501, 13.474644 ], [ 144.780463, 13.474708 ], [ 144.78045, 13.47473 ], [ 144.780433, 13.474759 ], [ 144.780386, 13.474847 ], [ 144.780371, 13.474877 ], [ 144.780355, 13.474905 ], [ 144.78032, 13.47497 ], [ 144.780313, 13.474992 ], [ 144.780304, 13.475023 ], [ 144.780298, 13.475038 ], [ 144.780284, 13.475084 ], [ 144.78028, 13.4751 ], [ 144.780272, 13.475131 ], [ 144.78026, 13.47518 ], [ 144.780254, 13.475227 ], [ 144.78025, 13.47526 ], [ 144.78025, 13.475282 ], [ 144.78025, 13.475348 ], [ 144.78025, 13.47537 ], [ 144.78039, 13.475348 ], [ 144.780812, 13.475286 ], [ 144.780953, 13.475266 ], [ 144.780988, 13.47526 ], [ 144.781094, 13.475245 ], [ 144.78113, 13.47524 ], [ 144.781739, 13.475154 ], [ 144.78213, 13.4751 ], [ 144.783569, 13.474903 ], [ 144.78418, 13.47482 ], [ 144.784407, 13.474788 ], [ 144.78484, 13.47473 ], [ 144.785091, 13.474698 ], [ 144.78532, 13.47467 ], [ 144.785537, 13.474644 ], [ 144.78618, 13.47457 ], [ 144.786191, 13.474569 ], [ 144.78641, 13.47455 ], [ 144.786473, 13.474543 ], [ 144.786663, 13.474523 ], [ 144.786727, 13.474517 ], [ 144.786778, 13.474511 ], [ 144.786932, 13.474495 ], [ 144.786984, 13.47449 ], [ 144.787023, 13.474485 ], [ 144.78714, 13.474473 ], [ 144.78718, 13.47447 ], [ 144.787234, 13.474465 ], [ 144.7873, 13.47446 ], [ 144.787395, 13.474441 ], [ 144.787449, 13.474431 ], [ 144.787584, 13.474404 ], [ 144.78787, 13.47435 ], [ 144.787988, 13.474312 ], [ 144.78812, 13.47427 ], [ 144.78822, 13.47424 ], [ 144.788361, 13.474163 ], [ 144.78846, 13.47411 ], [ 144.78853, 13.47408 ], [ 144.78863, 13.47402 ], [ 144.78881, 13.47391 ], [ 144.789038, 13.473749 ], [ 144.78918, 13.47365 ], [ 144.78925, 13.47359 ], [ 144.789357, 13.473513 ], [ 144.78953, 13.47339 ], [ 144.789685, 13.473293 ], [ 144.78977, 13.47324 ], [ 144.7898, 13.47323 ], [ 144.78993, 13.47318 ], [ 144.789962, 13.47317 ], [ 144.79016, 13.47311 ], [ 144.790464, 13.473043 ], [ 144.79048, 13.47304 ], [ 144.790636, 13.473027 ], [ 144.79084, 13.47301 ], [ 144.790904, 13.473007 ], [ 144.791711, 13.472974 ], [ 144.79181, 13.47297 ], [ 144.79198, 13.47295 ], [ 144.792224, 13.472935 ], [ 144.7928, 13.4729 ], [ 144.792954, 13.472874 ], [ 144.7931, 13.47285 ], [ 144.793193, 13.472821 ], [ 144.79342, 13.47275 ], [ 144.793496, 13.472722 ], [ 144.79381, 13.47261 ], [ 144.794392, 13.472385 ], [ 144.79451, 13.47234 ], [ 144.794691, 13.472273 ], [ 144.794822, 13.472224 ], [ 144.795218, 13.472078 ], [ 144.79535, 13.47203 ], [ 144.79548, 13.47198 ], [ 144.79587, 13.471832 ], [ 144.79593, 13.47181 ], [ 144.796, 13.47178 ], [ 144.796122, 13.471732 ], [ 144.796487, 13.471588 ], [ 144.79661, 13.47154 ], [ 144.79684, 13.471449 ], [ 144.797529, 13.471179 ], [ 144.79776, 13.47109 ], [ 144.798318, 13.470866 ], [ 144.79836, 13.47085 ], [ 144.798791, 13.470687 ], [ 144.799139, 13.470557 ], [ 144.799183, 13.470541 ], [ 144.79967, 13.47036 ], [ 144.799751, 13.470339 ], [ 144.800021, 13.470273 ], [ 144.80024, 13.47022 ], [ 144.80061, 13.47015 ], [ 144.80077, 13.470116 ], [ 144.80125, 13.470013 ], [ 144.80141, 13.46998 ], [ 144.801339, 13.469622 ], [ 144.80126, 13.46922 ], [ 144.80115, 13.4687 ], [ 144.801114, 13.468554 ], [ 144.80103, 13.4682 ], [ 144.801012, 13.468114 ], [ 144.800958, 13.467856 ], [ 144.80094, 13.46777 ], [ 144.800911, 13.467658 ], [ 144.80084, 13.46738 ], [ 144.800829, 13.467323 ], [ 144.80081, 13.46721 ], [ 144.800796, 13.467126 ], [ 144.800754, 13.466873 ], [ 144.80074, 13.46679 ], [ 144.800734, 13.466712 ], [ 144.800728, 13.466622 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "955600", "GEOID10": "66010955600", "NAME10": "9556", "NAMELSAD10": "Census Tract 9556", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 969931, "AWATER10": 0, "INTPTLAT10": "+13.4653305", "INTPTLON10": "+144.8049834" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.800728, 13.466622 ], [ 144.800734, 13.466712 ], [ 144.80074, 13.46679 ], [ 144.800754, 13.466873 ], [ 144.800796, 13.467126 ], [ 144.80081, 13.46721 ], [ 144.800829, 13.467323 ], [ 144.80084, 13.46738 ], [ 144.800911, 13.467658 ], [ 144.80094, 13.46777 ], [ 144.800958, 13.467856 ], [ 144.801012, 13.468114 ], [ 144.80103, 13.4682 ], [ 144.801114, 13.468554 ], [ 144.80115, 13.4687 ], [ 144.80126, 13.46922 ], [ 144.801339, 13.469622 ], [ 144.80141, 13.46998 ], [ 144.801642, 13.469931 ], [ 144.80184, 13.46989 ], [ 144.80221, 13.46984 ], [ 144.802347, 13.469826 ], [ 144.80241, 13.46982 ], [ 144.80258, 13.46986 ], [ 144.80279, 13.46994 ], [ 144.802978, 13.470023 ], [ 144.80313, 13.47009 ], [ 144.80342, 13.47028 ], [ 144.80385, 13.47069 ], [ 144.803976, 13.470825 ], [ 144.80427, 13.47114 ], [ 144.804298, 13.471169 ], [ 144.804384, 13.471258 ], [ 144.804413, 13.471288 ], [ 144.80452, 13.4714 ], [ 144.804568, 13.471451 ], [ 144.805028, 13.471946 ], [ 144.805182, 13.472112 ], [ 144.805239, 13.472173 ], [ 144.80541, 13.472358 ], [ 144.805468, 13.47242 ], [ 144.805497, 13.472451 ], [ 144.805586, 13.472547 ], [ 144.805616, 13.472579 ], [ 144.805644, 13.472609 ], [ 144.805728, 13.472699 ], [ 144.805756, 13.47273 ], [ 144.805822, 13.472802 ], [ 144.806023, 13.473018 ], [ 144.80609, 13.47309 ], [ 144.806353, 13.473372 ], [ 144.80653, 13.473563 ], [ 144.80675, 13.4738 ], [ 144.807144, 13.474218 ], [ 144.80741, 13.4745 ], [ 144.80762, 13.47473 ], [ 144.807785, 13.474922 ], [ 144.80829, 13.47551 ], [ 144.80851, 13.47576 ], [ 144.80877, 13.47611 ], [ 144.8089, 13.47619 ], [ 144.80904, 13.47638 ], [ 144.80923, 13.47665 ], [ 144.809176, 13.476449 ], [ 144.80908, 13.476092 ], [ 144.809062, 13.476025 ], [ 144.808453, 13.475399 ], [ 144.808001, 13.474936 ], [ 144.807908, 13.47483 ], [ 144.807528, 13.474396 ], [ 144.807267, 13.474105 ], [ 144.806946, 13.473746 ], [ 144.806656, 13.473444 ], [ 144.806469, 13.473248 ], [ 144.806199, 13.472966 ], [ 144.806118, 13.4729 ], [ 144.806089, 13.472877 ], [ 144.806088, 13.472604 ], [ 144.806088, 13.472501 ], [ 144.806314, 13.471992 ], [ 144.806327, 13.471964 ], [ 144.807943, 13.471685 ], [ 144.808493, 13.471591 ], [ 144.808552, 13.471589 ], [ 144.80873, 13.471586 ], [ 144.80879, 13.471585 ], [ 144.808812, 13.471495 ], [ 144.808882, 13.471227 ], [ 144.808906, 13.471138 ], [ 144.808971, 13.470852 ], [ 144.809169, 13.469994 ], [ 144.809235, 13.469709 ], [ 144.809207, 13.469698 ], [ 144.809127, 13.469665 ], [ 144.8091, 13.469654 ], [ 144.80909, 13.46965 ], [ 144.809042, 13.469636 ], [ 144.808868, 13.469586 ], [ 144.80881, 13.46957 ], [ 144.808621, 13.469515 ], [ 144.80843, 13.46946 ], [ 144.80805, 13.469367 ], [ 144.80798, 13.46935 ], [ 144.807857, 13.469331 ], [ 144.807781, 13.469319 ], [ 144.807555, 13.469285 ], [ 144.80752, 13.46928 ], [ 144.80748, 13.46928 ], [ 144.807465, 13.469277 ], [ 144.80742, 13.469271 ], [ 144.807405, 13.46927 ], [ 144.807416, 13.468985 ], [ 144.807449, 13.468133 ], [ 144.807461, 13.467849 ], [ 144.807472, 13.467702 ], [ 144.807507, 13.467263 ], [ 144.807519, 13.467117 ], [ 144.807542, 13.466461 ], [ 144.807601, 13.464827 ], [ 144.807613, 13.464494 ], [ 144.807638, 13.463839 ], [ 144.807665, 13.463491 ], [ 144.807668, 13.463456 ], [ 144.807717, 13.462448 ], [ 144.807735, 13.462101 ], [ 144.807705, 13.461014 ], [ 144.807615, 13.457754 ], [ 144.807597, 13.457103 ], [ 144.806528, 13.457101 ], [ 144.806118, 13.457101 ], [ 144.805437, 13.4571 ], [ 144.80484, 13.4571 ], [ 144.804796, 13.457454 ], [ 144.80478, 13.45759 ], [ 144.80462, 13.45825 ], [ 144.804528, 13.458487 ], [ 144.8044, 13.45882 ], [ 144.804357, 13.458916 ], [ 144.80426, 13.45914 ], [ 144.804223, 13.4592 ], [ 144.80417, 13.45929 ], [ 144.804032, 13.459503 ], [ 144.803617, 13.460145 ], [ 144.80348, 13.46036 ], [ 144.8034, 13.46049 ], [ 144.803278, 13.460677 ], [ 144.802662, 13.461623 ], [ 144.80258, 13.46175 ], [ 144.80246, 13.46194 ], [ 144.802396, 13.462038 ], [ 144.802203, 13.462333 ], [ 144.80214, 13.462432 ], [ 144.802105, 13.462485 ], [ 144.802001, 13.462644 ], [ 144.801967, 13.462698 ], [ 144.80194, 13.46274 ], [ 144.801865, 13.462867 ], [ 144.80184, 13.46291 ], [ 144.801755, 13.463043 ], [ 144.801629, 13.463246 ], [ 144.801503, 13.463445 ], [ 144.80142, 13.46358 ], [ 144.801354, 13.4637 ], [ 144.80116, 13.464062 ], [ 144.80114, 13.4641 ], [ 144.80111, 13.46419 ], [ 144.801087, 13.464244 ], [ 144.801022, 13.464406 ], [ 144.801, 13.46446 ], [ 144.800984, 13.464507 ], [ 144.80096, 13.46458 ], [ 144.800942, 13.464651 ], [ 144.80093, 13.4647 ], [ 144.800918, 13.464748 ], [ 144.800882, 13.464892 ], [ 144.80087, 13.46494 ], [ 144.800819, 13.46515 ], [ 144.8008, 13.46523 ], [ 144.80073, 13.46573 ], [ 144.800725, 13.465793 ], [ 144.80071, 13.46601 ], [ 144.800703, 13.466087 ], [ 144.8007, 13.46613 ], [ 144.800714, 13.466321 ], [ 144.80072, 13.4664 ], [ 144.80072, 13.466478 ], [ 144.80072, 13.46649 ], [ 144.800728, 13.466622 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "954000", "GEOID10": "66010954000", "NAME10": "9540", "NAMELSAD10": "Census Tract 9540", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 15038714, "AWATER10": 1325, "INTPTLAT10": "+13.3859400", "INTPTLON10": "+144.7540570" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.760515, 13.392605 ], [ 144.760975, 13.392399 ], [ 144.761315, 13.392072 ], [ 144.762093, 13.391731 ], [ 144.762215, 13.39154 ], [ 144.762433, 13.391349 ], [ 144.762924, 13.391281 ], [ 144.763306, 13.391376 ], [ 144.763662, 13.391579 ], [ 144.764001, 13.391772 ], [ 144.76411, 13.392208 ], [ 144.76411, 13.392399 ], [ 144.764069, 13.392658 ], [ 144.764104, 13.392779 ], [ 144.764274, 13.393353 ], [ 144.764369, 13.393653 ], [ 144.76441, 13.39413 ], [ 144.764513, 13.394372 ], [ 144.764951, 13.394223 ], [ 144.766137, 13.394167 ], [ 144.766564, 13.394228 ], [ 144.766924, 13.394174 ], [ 144.767314, 13.394054 ], [ 144.767559, 13.393818 ], [ 144.767884, 13.393384 ], [ 144.768286, 13.393265 ], [ 144.768968, 13.393583 ], [ 144.769868, 13.394002 ], [ 144.770174, 13.39395 ], [ 144.770347, 13.393933 ], [ 144.770363, 13.393927 ], [ 144.770413, 13.393913 ], [ 144.77043, 13.393909 ], [ 144.771315, 13.393418 ], [ 144.771561, 13.393051 ], [ 144.77161, 13.393066 ], [ 144.771644, 13.393086 ], [ 144.771678, 13.393076 ], [ 144.771712, 13.393053 ], [ 144.771737, 13.392991 ], [ 144.771777, 13.392929 ], [ 144.771881, 13.392791 ], [ 144.771921, 13.39272 ], [ 144.771999, 13.392654 ], [ 144.772147, 13.392588 ], [ 144.77224, 13.392555 ], [ 144.772347, 13.392537 ], [ 144.772399, 13.392542 ], [ 144.772467, 13.392509 ], [ 144.77256, 13.392486 ], [ 144.772751, 13.392459 ], [ 144.772773, 13.392451 ], [ 144.772908, 13.392403 ], [ 144.773035, 13.392381 ], [ 144.773187, 13.392305 ], [ 144.773246, 13.392253 ], [ 144.773291, 13.392192 ], [ 144.773325, 13.392134 ], [ 144.773375, 13.392092 ], [ 144.773429, 13.392068 ], [ 144.773447, 13.392062 ], [ 144.773476, 13.392007 ], [ 144.773539, 13.391974 ], [ 144.773598, 13.391955 ], [ 144.773662, 13.391922 ], [ 144.773795, 13.39178 ], [ 144.77382, 13.391732 ], [ 144.77383, 13.391666 ], [ 144.77386, 13.391623 ], [ 144.773894, 13.391594 ], [ 144.77389, 13.391547 ], [ 144.773925, 13.391504 ], [ 144.773954, 13.391461 ], [ 144.773969, 13.391418 ], [ 144.773994, 13.391394 ], [ 144.774009, 13.391347 ], [ 144.774019, 13.391299 ], [ 144.77401, 13.391256 ], [ 144.773971, 13.391213 ], [ 144.773947, 13.391174 ], [ 144.773962, 13.391136 ], [ 144.773948, 13.391088 ], [ 144.773924, 13.39105 ], [ 144.773949, 13.391007 ], [ 144.773984, 13.390931 ], [ 144.774009, 13.390826 ], [ 144.774054, 13.390721 ], [ 144.774118, 13.390635 ], [ 144.774177, 13.390588 ], [ 144.774251, 13.390574 ], [ 144.774256, 13.390522 ], [ 144.774291, 13.390426 ], [ 144.774405, 13.390255 ], [ 144.77443, 13.390203 ], [ 144.774454, 13.390189 ], [ 144.774504, 13.390137 ], [ 144.77451, 13.390008 ], [ 144.77453, 13.389969 ], [ 144.774574, 13.389932 ], [ 144.774599, 13.389879 ], [ 144.774599, 13.389817 ], [ 144.77461, 13.389741 ], [ 144.774596, 13.389635 ], [ 144.774612, 13.389559 ], [ 144.774604, 13.389486 ], [ 144.774603, 13.389473 ], [ 144.774618, 13.389353 ], [ 144.774678, 13.389234 ], [ 144.774703, 13.389192 ], [ 144.774752, 13.389202 ], [ 144.77479, 13.389245 ], [ 144.774824, 13.389293 ], [ 144.774926, 13.389385 ], [ 144.77495, 13.389433 ], [ 144.774969, 13.389514 ], [ 144.775022, 13.389539 ], [ 144.775071, 13.389539 ], [ 144.77512, 13.389554 ], [ 144.775139, 13.389592 ], [ 144.775114, 13.389621 ], [ 144.775119, 13.389664 ], [ 144.775157, 13.389741 ], [ 144.775186, 13.389741 ], [ 144.775216, 13.389727 ], [ 144.775235, 13.389751 ], [ 144.775235, 13.389789 ], [ 144.775283, 13.389804 ], [ 144.775298, 13.389771 ], [ 144.775314, 13.389713 ], [ 144.775314, 13.38967 ], [ 144.775344, 13.389628 ], [ 144.775378, 13.389613 ], [ 144.775422, 13.389614 ], [ 144.775467, 13.389538 ], [ 144.775496, 13.389509 ], [ 144.775501, 13.389476 ], [ 144.775526, 13.389447 ], [ 144.77557, 13.389429 ], [ 144.775605, 13.389391 ], [ 144.775679, 13.389262 ], [ 144.775723, 13.389267 ], [ 144.775738, 13.389282 ], [ 144.775757, 13.389292 ], [ 144.775774, 13.389284 ], [ 144.775791, 13.389278 ], [ 144.775861, 13.389173 ], [ 144.775935, 13.389025 ], [ 144.775936, 13.388959 ], [ 144.775917, 13.388882 ], [ 144.775913, 13.388805 ], [ 144.775914, 13.38871 ], [ 144.775895, 13.388623 ], [ 144.775896, 13.388537 ], [ 144.775872, 13.388485 ], [ 144.775868, 13.388422 ], [ 144.775873, 13.388355 ], [ 144.775928, 13.38826 ], [ 144.775948, 13.388208 ], [ 144.775963, 13.388155 ], [ 144.775954, 13.388055 ], [ 144.775935, 13.388007 ], [ 144.77596, 13.387974 ], [ 144.775984, 13.38796 ], [ 144.776028, 13.387965 ], [ 144.776038, 13.387927 ], [ 144.776034, 13.387893 ], [ 144.77601, 13.387867 ], [ 144.776058, 13.387884 ], [ 144.776067, 13.387936 ], [ 144.776111, 13.387965 ], [ 144.77616, 13.387966 ], [ 144.77619, 13.387928 ], [ 144.776268, 13.387948 ], [ 144.776302, 13.387953 ], [ 144.776346, 13.387948 ], [ 144.776365, 13.38792 ], [ 144.7764, 13.38793 ], [ 144.776453, 13.387964 ], [ 144.776478, 13.387902 ], [ 144.776581, 13.387898 ], [ 144.776693, 13.387865 ], [ 144.776708, 13.387837 ], [ 144.776738, 13.387843 ], [ 144.776752, 13.387847 ], [ 144.776806, 13.387866 ], [ 144.776835, 13.387852 ], [ 144.776874, 13.387867 ], [ 144.776942, 13.387853 ], [ 144.776991, 13.387892 ], [ 144.777045, 13.387873 ], [ 144.777098, 13.387874 ], [ 144.777083, 13.387945 ], [ 144.777112, 13.387974 ], [ 144.777185, 13.387975 ], [ 144.777224, 13.388009 ], [ 144.777263, 13.388028 ], [ 144.777336, 13.388019 ], [ 144.777386, 13.387996 ], [ 144.777381, 13.387967 ], [ 144.77741, 13.387953 ], [ 144.777439, 13.387972 ], [ 144.777493, 13.387982 ], [ 144.777562, 13.387959 ], [ 144.777582, 13.387911 ], [ 144.777553, 13.387873 ], [ 144.777578, 13.387835 ], [ 144.777641, 13.387788 ], [ 144.777715, 13.387745 ], [ 144.777823, 13.38767 ], [ 144.777868, 13.387618 ], [ 144.777868, 13.387565 ], [ 144.77781, 13.387526 ], [ 144.777717, 13.387506 ], [ 144.777664, 13.387467 ], [ 144.777552, 13.387428 ], [ 144.777488, 13.387452 ], [ 144.777366, 13.387412 ], [ 144.777274, 13.387388 ], [ 144.77722, 13.387363 ], [ 144.777123, 13.387386 ], [ 144.777025, 13.38739 ], [ 144.776912, 13.387437 ], [ 144.776843, 13.387455 ], [ 144.776736, 13.387459 ], [ 144.776677, 13.387454 ], [ 144.776609, 13.38743 ], [ 144.776551, 13.387415 ], [ 144.776512, 13.387371 ], [ 144.776469, 13.38727 ], [ 144.776465, 13.387208 ], [ 144.77645, 13.387194 ], [ 144.776391, 13.387212 ], [ 144.776357, 13.387246 ], [ 144.776303, 13.387236 ], [ 144.776245, 13.38724 ], [ 144.776191, 13.387249 ], [ 144.776074, 13.387248 ], [ 144.77604, 13.387243 ], [ 144.77602, 13.387223 ], [ 144.775996, 13.387238 ], [ 144.775956, 13.387256 ], [ 144.775888, 13.387261 ], [ 144.775844, 13.387232 ], [ 144.775835, 13.387203 ], [ 144.775845, 13.387165 ], [ 144.775875, 13.387127 ], [ 144.775953, 13.387108 ], [ 144.775948, 13.387089 ], [ 144.775914, 13.38705 ], [ 144.775885, 13.387026 ], [ 144.775861, 13.386988 ], [ 144.775837, 13.386959 ], [ 144.775725, 13.386948 ], [ 144.775691, 13.386929 ], [ 144.775672, 13.38689 ], [ 144.775555, 13.386861 ], [ 144.77555, 13.386837 ], [ 144.775551, 13.386751 ], [ 144.775526, 13.386741 ], [ 144.775497, 13.386717 ], [ 144.775483, 13.38665 ], [ 144.775435, 13.386592 ], [ 144.77544, 13.386535 ], [ 144.775456, 13.386487 ], [ 144.775495, 13.38643 ], [ 144.77551, 13.386354 ], [ 144.77553, 13.386301 ], [ 144.775584, 13.386292 ], [ 144.775589, 13.386263 ], [ 144.775574, 13.386242 ], [ 144.775565, 13.38623 ], [ 144.775571, 13.386163 ], [ 144.775557, 13.386115 ], [ 144.775533, 13.386062 ], [ 144.775582, 13.386024 ], [ 144.775558, 13.385976 ], [ 144.775593, 13.385876 ], [ 144.775598, 13.385838 ], [ 144.775628, 13.385819 ], [ 144.775681, 13.385815 ], [ 144.775687, 13.385791 ], [ 144.775682, 13.385767 ], [ 144.775643, 13.385738 ], [ 144.775614, 13.385747 ], [ 144.77557, 13.385742 ], [ 144.775516, 13.385722 ], [ 144.775468, 13.38566 ], [ 144.775478, 13.385622 ], [ 144.775469, 13.385583 ], [ 144.775518, 13.385569 ], [ 144.775576, 13.385579 ], [ 144.775611, 13.385541 ], [ 144.775572, 13.385508 ], [ 144.775558, 13.385474 ], [ 144.775504, 13.385435 ], [ 144.775451, 13.385382 ], [ 144.775422, 13.385344 ], [ 144.775359, 13.385324 ], [ 144.7753, 13.385295 ], [ 144.775237, 13.385294 ], [ 144.775208, 13.385246 ], [ 144.775233, 13.385208 ], [ 144.775277, 13.385185 ], [ 144.775312, 13.385137 ], [ 144.775287, 13.385108 ], [ 144.775229, 13.385103 ], [ 144.775141, 13.385078 ], [ 144.775073, 13.385082 ], [ 144.775015, 13.385044 ], [ 144.774986, 13.38501 ], [ 144.774957, 13.384967 ], [ 144.774967, 13.384933 ], [ 144.774923, 13.384895 ], [ 144.774923, 13.384856 ], [ 144.774929, 13.384828 ], [ 144.774929, 13.384766 ], [ 144.774901, 13.384679 ], [ 144.774847, 13.384626 ], [ 144.774823, 13.384593 ], [ 144.774839, 13.384535 ], [ 144.77487, 13.384492 ], [ 144.774873, 13.384474 ], [ 144.774912, 13.384459 ], [ 144.774932, 13.384445 ], [ 144.774933, 13.384369 ], [ 144.774919, 13.384311 ], [ 144.774875, 13.384263 ], [ 144.774861, 13.384196 ], [ 144.774895, 13.384187 ], [ 144.77492, 13.384134 ], [ 144.774887, 13.384077 ], [ 144.774868, 13.384029 ], [ 144.774873, 13.383976 ], [ 144.774874, 13.383847 ], [ 144.774865, 13.38377 ], [ 144.774831, 13.383703 ], [ 144.774788, 13.383665 ], [ 144.774789, 13.383569 ], [ 144.774799, 13.383473 ], [ 144.77479, 13.383397 ], [ 144.774776, 13.38333 ], [ 144.774827, 13.383172 ], [ 144.774847, 13.383077 ], [ 144.774882, 13.382991 ], [ 144.774858, 13.38291 ], [ 144.774836, 13.382709 ], [ 144.774786, 13.382589 ], [ 144.774737, 13.382517 ], [ 144.77466, 13.382439 ], [ 144.774548, 13.382376 ], [ 144.77451, 13.38229 ], [ 144.774511, 13.382213 ], [ 144.774487, 13.38217 ], [ 144.774443, 13.382127 ], [ 144.774444, 13.382069 ], [ 144.774458, 13.382041 ], [ 144.774449, 13.382007 ], [ 144.774415, 13.381978 ], [ 144.774362, 13.381949 ], [ 144.774406, 13.381911 ], [ 144.774455, 13.381859 ], [ 144.77448, 13.381802 ], [ 144.774555, 13.381688 ], [ 144.774589, 13.381607 ], [ 144.774595, 13.381492 ], [ 144.77462, 13.381444 ], [ 144.774636, 13.381378 ], [ 144.774631, 13.381311 ], [ 144.774574, 13.381148 ], [ 144.774546, 13.381056 ], [ 144.774512, 13.38098 ], [ 144.774435, 13.380855 ], [ 144.774382, 13.380797 ], [ 144.774329, 13.380753 ], [ 144.774266, 13.380691 ], [ 144.774257, 13.380633 ], [ 144.774267, 13.380581 ], [ 144.774214, 13.380456 ], [ 144.774171, 13.380422 ], [ 144.774132, 13.380321 ], [ 144.774114, 13.38023 ], [ 144.77411, 13.380125 ], [ 144.774116, 13.380029 ], [ 144.774111, 13.379972 ], [ 144.774082, 13.37991 ], [ 144.774025, 13.379837 ], [ 144.773958, 13.379688 ], [ 144.7739, 13.379521 ], [ 144.773911, 13.37943 ], [ 144.773883, 13.37932 ], [ 144.773782, 13.379161 ], [ 144.773715, 13.378974 ], [ 144.773672, 13.378892 ], [ 144.773599, 13.378805 ], [ 144.773493, 13.378709 ], [ 144.773381, 13.378617 ], [ 144.773299, 13.378521 ], [ 144.773222, 13.378453 ], [ 144.773178, 13.378391 ], [ 144.773149, 13.378342 ], [ 144.773145, 13.378275 ], [ 144.773132, 13.378191 ], [ 144.773156, 13.378113 ], [ 144.773157, 13.378041 ], [ 144.773173, 13.377908 ], [ 144.773173, 13.37785 ], [ 144.773199, 13.37776 ], [ 144.773233, 13.377693 ], [ 144.773244, 13.377597 ], [ 144.77324, 13.377516 ], [ 144.773207, 13.377415 ], [ 144.773028, 13.377203 ], [ 144.772839, 13.377073 ], [ 144.772742, 13.376986 ], [ 144.772669, 13.376928 ], [ 144.772609, 13.376851 ], [ 144.77259, 13.37674 ], [ 144.772577, 13.376621 ], [ 144.772593, 13.376473 ], [ 144.772595, 13.376253 ], [ 144.772566, 13.376138 ], [ 144.772567, 13.376033 ], [ 144.772627, 13.37588 ], [ 144.772628, 13.37578 ], [ 144.772624, 13.375679 ], [ 144.772625, 13.375593 ], [ 144.772597, 13.375507 ], [ 144.772564, 13.375358 ], [ 144.772546, 13.375224 ], [ 144.772542, 13.375109 ], [ 144.772563, 13.374985 ], [ 144.772568, 13.374961 ], [ 144.772589, 13.374756 ], [ 144.772619, 13.37468 ], [ 144.772605, 13.374617 ], [ 144.772581, 13.374574 ], [ 144.772591, 13.374522 ], [ 144.77265, 13.374494 ], [ 144.772662, 13.37446 ], [ 144.772653, 13.374384 ], [ 144.772635, 13.374293 ], [ 144.772635, 13.374211 ], [ 144.772612, 13.374149 ], [ 144.772588, 13.374053 ], [ 144.77254, 13.373943 ], [ 144.772527, 13.373828 ], [ 144.772484, 13.373717 ], [ 144.77248, 13.373641 ], [ 144.772466, 13.373555 ], [ 144.772486, 13.373426 ], [ 144.772521, 13.373378 ], [ 144.772526, 13.373321 ], [ 144.772527, 13.37324 ], [ 144.772499, 13.37312 ], [ 144.772451, 13.372986 ], [ 144.772413, 13.372923 ], [ 144.772375, 13.372798 ], [ 144.772393, 13.372445 ], [ 144.772418, 13.372325 ], [ 144.772443, 13.372254 ], [ 144.772483, 13.372187 ], [ 144.772522, 13.372159 ], [ 144.772576, 13.372155 ], [ 144.772592, 13.372078 ], [ 144.772568, 13.371959 ], [ 144.772574, 13.371872 ], [ 144.772565, 13.371791 ], [ 144.772527, 13.37169 ], [ 144.772474, 13.371589 ], [ 144.77247, 13.371503 ], [ 144.772471, 13.371413 ], [ 144.772423, 13.371316 ], [ 144.772385, 13.371225 ], [ 144.772327, 13.371105 ], [ 144.772284, 13.371052 ], [ 144.77222, 13.371047 ], [ 144.772147, 13.371008 ], [ 144.772143, 13.370936 ], [ 144.772112, 13.37089 ], [ 144.772095, 13.370864 ], [ 144.771993, 13.370811 ], [ 144.771925, 13.370786 ], [ 144.77187, 13.370833 ], [ 144.771797, 13.370828 ], [ 144.771735, 13.370732 ], [ 144.771642, 13.370659 ], [ 144.771731, 13.370593 ], [ 144.771726, 13.37056 ], [ 144.771673, 13.370526 ], [ 144.77159, 13.370496 ], [ 144.771552, 13.370453 ], [ 144.771518, 13.370436 ], [ 144.771475, 13.370328 ], [ 144.771451, 13.370256 ], [ 144.771427, 13.370208 ], [ 144.771369, 13.370174 ], [ 144.771304, 13.370161 ], [ 144.771291, 13.370159 ], [ 144.771223, 13.370115 ], [ 144.771169, 13.370057 ], [ 144.771121, 13.369976 ], [ 144.771107, 13.369904 ], [ 144.771079, 13.369832 ], [ 144.771011, 13.369783 ], [ 144.770724, 13.369422 ], [ 144.770622, 13.369259 ], [ 144.770444, 13.369028 ], [ 144.770377, 13.368879 ], [ 144.770305, 13.368773 ], [ 144.770223, 13.368605 ], [ 144.770166, 13.368466 ], [ 144.770113, 13.368322 ], [ 144.770046, 13.368168 ], [ 144.770004, 13.368029 ], [ 144.769961, 13.367933 ], [ 144.769937, 13.367847 ], [ 144.769933, 13.367737 ], [ 144.769914, 13.367651 ], [ 144.769881, 13.367536 ], [ 144.769872, 13.36744 ], [ 144.769829, 13.367368 ], [ 144.769771, 13.367286 ], [ 144.769733, 13.367204 ], [ 144.76966, 13.367127 ], [ 144.769595, 13.367041 ], [ 144.769567, 13.366983 ], [ 144.769621, 13.366897 ], [ 144.76968, 13.366817 ], [ 144.76973, 13.366764 ], [ 144.769789, 13.366727 ], [ 144.769809, 13.366683 ], [ 144.769814, 13.366674 ], [ 144.769815, 13.366555 ], [ 144.769796, 13.366435 ], [ 144.769792, 13.366354 ], [ 144.769827, 13.366239 ], [ 144.769872, 13.366173 ], [ 144.769955, 13.366135 ], [ 144.770048, 13.366103 ], [ 144.770078, 13.36605 ], [ 144.770093, 13.365988 ], [ 144.770138, 13.365946 ], [ 144.770211, 13.365951 ], [ 144.770279, 13.365961 ], [ 144.770314, 13.365923 ], [ 144.770324, 13.365847 ], [ 144.770331, 13.36566 ], [ 144.768656, 13.366136 ], [ 144.768353, 13.365926 ], [ 144.768045, 13.365709 ], [ 144.767913, 13.365709 ], [ 144.767494, 13.366199 ], [ 144.767436, 13.366529 ], [ 144.767345, 13.366588 ], [ 144.767206, 13.366571 ], [ 144.766637, 13.366792 ], [ 144.766198, 13.367378 ], [ 144.766139, 13.367528 ], [ 144.765924, 13.367556 ], [ 144.76576, 13.367921 ], [ 144.765619, 13.367931 ], [ 144.765411, 13.368094 ], [ 144.765234, 13.368123 ], [ 144.76521, 13.368324 ], [ 144.765041, 13.368565 ], [ 144.765062, 13.368683 ], [ 144.76531, 13.369003 ], [ 144.76538, 13.369397 ], [ 144.765386, 13.369748 ], [ 144.765279, 13.37004 ], [ 144.765097, 13.370232 ], [ 144.765005, 13.370291 ], [ 144.764803, 13.37031 ], [ 144.764549, 13.370321 ], [ 144.764076, 13.370173 ], [ 144.763797, 13.370158 ], [ 144.763526, 13.369921 ], [ 144.763224, 13.369841 ], [ 144.762921, 13.369808 ], [ 144.762518, 13.37001 ], [ 144.7623, 13.370084 ], [ 144.762325, 13.370237 ], [ 144.76232, 13.370291 ], [ 144.762183, 13.370306 ], [ 144.762041, 13.370143 ], [ 144.761808, 13.370089 ], [ 144.761722, 13.370021 ], [ 144.761559, 13.369995 ], [ 144.76145, 13.370122 ], [ 144.761402, 13.370015 ], [ 144.761275, 13.369822 ], [ 144.761168, 13.369822 ], [ 144.760321, 13.370597 ], [ 144.760244, 13.370573 ], [ 144.760072, 13.370508 ], [ 144.759135, 13.370804 ], [ 144.758663, 13.371762 ], [ 144.758521, 13.371846 ], [ 144.758418, 13.372098 ], [ 144.758313, 13.372182 ], [ 144.758157, 13.372148 ], [ 144.757786, 13.372003 ], [ 144.757519, 13.3719 ], [ 144.757405, 13.3719 ], [ 144.75708, 13.371836 ], [ 144.756232, 13.372108 ], [ 144.755304, 13.372009 ], [ 144.754887, 13.371466 ], [ 144.754624, 13.371491 ], [ 144.754502, 13.371367 ], [ 144.754487, 13.37112 ], [ 144.754771, 13.370883 ], [ 144.754545, 13.370607 ], [ 144.754375, 13.370453 ], [ 144.754392, 13.370207 ], [ 144.754255, 13.369851 ], [ 144.754514, 13.369644 ], [ 144.75409, 13.36909 ], [ 144.754078, 13.368888 ], [ 144.753702, 13.368618 ], [ 144.753699, 13.368397 ], [ 144.753558, 13.368377 ], [ 144.753351, 13.368593 ], [ 144.753074, 13.368637 ], [ 144.752672, 13.368641 ], [ 144.752544, 13.368369 ], [ 144.750632, 13.368527 ], [ 144.743008, 13.36916 ], [ 144.732176, 13.370068 ], [ 144.73204, 13.370041 ], [ 144.722162, 13.368102 ], [ 144.722131, 13.368083 ], [ 144.722147, 13.374626 ], [ 144.722165, 13.381211 ], [ 144.72226, 13.38773 ], [ 144.722194, 13.387898 ], [ 144.72214, 13.38804 ], [ 144.72204, 13.3882 ], [ 144.72193, 13.38834 ], [ 144.721914, 13.388354 ], [ 144.721782, 13.388477 ], [ 144.72165, 13.3886 ], [ 144.721579, 13.388662 ], [ 144.7213, 13.38891 ], [ 144.720955, 13.389202 ], [ 144.720746, 13.389381 ], [ 144.721331, 13.389848 ], [ 144.720702, 13.390506 ], [ 144.720186, 13.391045 ], [ 144.717703, 13.394605 ], [ 144.717752, 13.394782 ], [ 144.718085, 13.395196 ], [ 144.718435, 13.395399 ], [ 144.718494, 13.395833 ], [ 144.718627, 13.395807 ], [ 144.718818, 13.395772 ], [ 144.719326, 13.395737 ], [ 144.719419, 13.395731 ], [ 144.719723, 13.395911 ], [ 144.719696, 13.396417 ], [ 144.719319, 13.396673 ], [ 144.719337, 13.396992 ], [ 144.719755, 13.397246 ], [ 144.720187, 13.397246 ], [ 144.720478, 13.397111 ], [ 144.720824, 13.397154 ], [ 144.720948, 13.39714 ], [ 144.72102, 13.397021 ], [ 144.721159, 13.39704 ], [ 144.721393, 13.396841 ], [ 144.721587, 13.396841 ], [ 144.721669, 13.397042 ], [ 144.721801, 13.39722 ], [ 144.722184, 13.397382 ], [ 144.722523, 13.397432 ], [ 144.723192, 13.397575 ], [ 144.723338, 13.397537 ], [ 144.723493, 13.397569 ], [ 144.723918, 13.397841 ], [ 144.724423, 13.398046 ], [ 144.724753, 13.397999 ], [ 144.724938, 13.398096 ], [ 144.72508, 13.398376 ], [ 144.725211, 13.398361 ], [ 144.725356, 13.398274 ], [ 144.725575, 13.3981 ], [ 144.726489, 13.397787 ], [ 144.727085, 13.397244 ], [ 144.727432, 13.397229 ], [ 144.727536, 13.397344 ], [ 144.727518, 13.397726 ], [ 144.727863, 13.397832 ], [ 144.728155, 13.397747 ], [ 144.72823, 13.397728 ], [ 144.728755, 13.3976 ], [ 144.729161, 13.397388 ], [ 144.729537, 13.397291 ], [ 144.72968, 13.397405 ], [ 144.729631, 13.397638 ], [ 144.729687, 13.397762 ], [ 144.730355, 13.397944 ], [ 144.730744, 13.397716 ], [ 144.73104, 13.397903 ], [ 144.731233, 13.397904 ], [ 144.731323, 13.397987 ], [ 144.731512, 13.398313 ], [ 144.731711, 13.398368 ], [ 144.732215, 13.39824 ], [ 144.732397, 13.398119 ], [ 144.732363, 13.397843 ], [ 144.732214, 13.397454 ], [ 144.732634, 13.39645 ], [ 144.732932, 13.396207 ], [ 144.733221, 13.396054 ], [ 144.733469, 13.395884 ], [ 144.733452, 13.395819 ], [ 144.733411, 13.395649 ], [ 144.733228, 13.395357 ], [ 144.732971, 13.394764 ], [ 144.733227, 13.393979 ], [ 144.734086, 13.393762 ], [ 144.734152, 13.393616 ], [ 144.734176, 13.392546 ], [ 144.734936, 13.391956 ], [ 144.73544, 13.391432 ], [ 144.736001, 13.390849 ], [ 144.736496, 13.390339 ], [ 144.736587, 13.39008 ], [ 144.736603, 13.38965 ], [ 144.736743, 13.389464 ], [ 144.736858, 13.388411 ], [ 144.736949, 13.3882 ], [ 144.737486, 13.387975 ], [ 144.737651, 13.387691 ], [ 144.737724, 13.387351 ], [ 144.737749, 13.387238 ], [ 144.737592, 13.386824 ], [ 144.737666, 13.386581 ], [ 144.737873, 13.386476 ], [ 144.738807, 13.386373 ], [ 144.739121, 13.386212 ], [ 144.739956, 13.386108 ], [ 144.740377, 13.386109 ], [ 144.741006, 13.386322 ], [ 144.74137, 13.386655 ], [ 144.7418, 13.386697 ], [ 144.741949, 13.386964 ], [ 144.742131, 13.387022 ], [ 144.742288, 13.387046 ], [ 144.742933, 13.386967 ], [ 144.743471, 13.387147 ], [ 144.743949, 13.387003 ], [ 144.744545, 13.386825 ], [ 144.744636, 13.386728 ], [ 144.744586, 13.386509 ], [ 144.744296, 13.386265 ], [ 144.74423, 13.386095 ], [ 144.744395, 13.385641 ], [ 144.744543, 13.38552 ], [ 144.745279, 13.385457 ], [ 144.745411, 13.385368 ], [ 144.745791, 13.385272 ], [ 144.746089, 13.385329 ], [ 144.746238, 13.385573 ], [ 144.746653, 13.386879 ], [ 144.74825, 13.38801 ], [ 144.748887, 13.388222 ], [ 144.749932, 13.389164 ], [ 144.750449, 13.390964 ], [ 144.750702, 13.391409 ], [ 144.751054, 13.392026 ], [ 144.751443, 13.393584 ], [ 144.752151, 13.39507 ], [ 144.752231, 13.395179 ], [ 144.752335, 13.395322 ], [ 144.752551, 13.395405 ], [ 144.752678, 13.395455 ], [ 144.752723, 13.39549 ], [ 144.752798, 13.39555 ], [ 144.752823, 13.395623 ], [ 144.752843, 13.395678 ], [ 144.752788, 13.39571 ], [ 144.752692, 13.395769 ], [ 144.752615, 13.395769 ], [ 144.752552, 13.39577 ], [ 144.752445, 13.395751 ], [ 144.752353, 13.395775 ], [ 144.752224, 13.395957 ], [ 144.752122, 13.396103 ], [ 144.751852, 13.396552 ], [ 144.75179, 13.396643 ], [ 144.75142, 13.396871 ], [ 144.751413, 13.396905 ], [ 144.751379, 13.397074 ], [ 144.751334, 13.397325 ], [ 144.751382, 13.397515 ], [ 144.751491, 13.397946 ], [ 144.751505, 13.398088 ], [ 144.751525, 13.398284 ], [ 144.751673, 13.398477 ], [ 144.751822, 13.398673 ], [ 144.752189, 13.398953 ], [ 144.75221, 13.398965 ], [ 144.75242, 13.39909 ], [ 144.75262, 13.399267 ], [ 144.752724, 13.399406 ], [ 144.752935, 13.399686 ], [ 144.753168, 13.400128 ], [ 144.753224, 13.40042 ], [ 144.753398, 13.400453 ], [ 144.753561, 13.400485 ], [ 144.753797, 13.400627 ], [ 144.753919, 13.400231 ], [ 144.754153, 13.40009 ], [ 144.754542, 13.400133 ], [ 144.754766, 13.400217 ], [ 144.755028, 13.400016 ], [ 144.754998, 13.399624 ], [ 144.755026, 13.399563 ], [ 144.75522, 13.399156 ], [ 144.756398, 13.398199 ], [ 144.757048, 13.397289 ], [ 144.757521, 13.396817 ], [ 144.757913, 13.396401 ], [ 144.75794, 13.396344 ], [ 144.758304, 13.395587 ], [ 144.758985, 13.394729 ], [ 144.759553, 13.394016 ], [ 144.760526, 13.39332 ], [ 144.760435, 13.392902 ], [ 144.760515, 13.392605 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "950300", "GEOID10": "66010950300", "NAME10": "9503", "NAMELSAD10": "Census Tract 9503", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 36451663, "AWATER10": 0, "INTPTLAT10": "+13.5880325", "INTPTLON10": "+144.8422400" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.836562, 13.601821 ], [ 144.836527, 13.601883 ], [ 144.836526, 13.601955 ], [ 144.836516, 13.602026 ], [ 144.836476, 13.602079 ], [ 144.83653, 13.602098 ], [ 144.836633, 13.602104 ], [ 144.836691, 13.602119 ], [ 144.83671, 13.602171 ], [ 144.836744, 13.602229 ], [ 144.836802, 13.602249 ], [ 144.836856, 13.602254 ], [ 144.836885, 13.602269 ], [ 144.83689, 13.602307 ], [ 144.836833, 13.602325 ], [ 144.83678, 13.60233 ], [ 144.836589, 13.602366 ], [ 144.836515, 13.602399 ], [ 144.836466, 13.602447 ], [ 144.836436, 13.602528 ], [ 144.836347, 13.602627 ], [ 144.836321, 13.602747 ], [ 144.836345, 13.602785 ], [ 144.836345, 13.602838 ], [ 144.836374, 13.602881 ], [ 144.836422, 13.602901 ], [ 144.836496, 13.602911 ], [ 144.836578, 13.602954 ], [ 144.836593, 13.602993 ], [ 144.836592, 13.603036 ], [ 144.836576, 13.603045 ], [ 144.836489, 13.603059 ], [ 144.836435, 13.603135 ], [ 144.83639, 13.603249 ], [ 144.83635, 13.603311 ], [ 144.836311, 13.603383 ], [ 144.83631, 13.603478 ], [ 144.836329, 13.603536 ], [ 144.836362, 13.603598 ], [ 144.836416, 13.603637 ], [ 144.836469, 13.603666 ], [ 144.836518, 13.603705 ], [ 144.836503, 13.603762 ], [ 144.836495, 13.60381 ], [ 144.836568, 13.603825 ], [ 144.836568, 13.603863 ], [ 144.836519, 13.603891 ], [ 144.836455, 13.603943 ], [ 144.836434, 13.604015 ], [ 144.836458, 13.604087 ], [ 144.836506, 13.604149 ], [ 144.83656, 13.604169 ], [ 144.836569, 13.604226 ], [ 144.83653, 13.60424 ], [ 144.836491, 13.604269 ], [ 144.836539, 13.604322 ], [ 144.836553, 13.604379 ], [ 144.836568, 13.604413 ], [ 144.836612, 13.604413 ], [ 144.836651, 13.604437 ], [ 144.836724, 13.604462 ], [ 144.836762, 13.604496 ], [ 144.836757, 13.604529 ], [ 144.836713, 13.604534 ], [ 144.836659, 13.604581 ], [ 144.836659, 13.604614 ], [ 144.83661, 13.604638 ], [ 144.836541, 13.604642 ], [ 144.836448, 13.60466 ], [ 144.836399, 13.604708 ], [ 144.836388, 13.604813 ], [ 144.836388, 13.604842 ], [ 144.836368, 13.604899 ], [ 144.836324, 13.604913 ], [ 144.836265, 13.604941 ], [ 144.836235, 13.604998 ], [ 144.836259, 13.60507 ], [ 144.836288, 13.605075 ], [ 144.836333, 13.605162 ], [ 144.836328, 13.605238 ], [ 144.836322, 13.605262 ], [ 144.836313, 13.60531 ], [ 144.836258, 13.605367 ], [ 144.836184, 13.605418 ], [ 144.83613, 13.60548 ], [ 144.83609, 13.605542 ], [ 144.836026, 13.605623 ], [ 144.835991, 13.605708 ], [ 144.83599, 13.605795 ], [ 144.836009, 13.605866 ], [ 144.83597, 13.605909 ], [ 144.835925, 13.60599 ], [ 144.835881, 13.606052 ], [ 144.83586, 13.606128 ], [ 144.835879, 13.6062 ], [ 144.835937, 13.606239 ], [ 144.836006, 13.606263 ], [ 144.836036, 13.606383 ], [ 144.836031, 13.60645 ], [ 144.83604, 13.606522 ], [ 144.836059, 13.606603 ], [ 144.836063, 13.606675 ], [ 144.836003, 13.606789 ], [ 144.836003, 13.606842 ], [ 144.836012, 13.60688 ], [ 144.835968, 13.606932 ], [ 144.835904, 13.606956 ], [ 144.835825, 13.606998 ], [ 144.835762, 13.607041 ], [ 144.835746, 13.607103 ], [ 144.835745, 13.607198 ], [ 144.835784, 13.60727 ], [ 144.835847, 13.607295 ], [ 144.835861, 13.607386 ], [ 144.835856, 13.607453 ], [ 144.83586, 13.607534 ], [ 144.83584, 13.607601 ], [ 144.835858, 13.607673 ], [ 144.835902, 13.60773 ], [ 144.835867, 13.607787 ], [ 144.835823, 13.607816 ], [ 144.835774, 13.60783 ], [ 144.835783, 13.607887 ], [ 144.835793, 13.607921 ], [ 144.835744, 13.607939 ], [ 144.835728, 13.607987 ], [ 144.835782, 13.60804 ], [ 144.835809, 13.608073 ], [ 144.835793, 13.608122 ], [ 144.835792, 13.608232 ], [ 144.835802, 13.608289 ], [ 144.835806, 13.608366 ], [ 144.835849, 13.608438 ], [ 144.835898, 13.608472 ], [ 144.835916, 13.608553 ], [ 144.83592, 13.608649 ], [ 144.835894, 13.608845 ], [ 144.835889, 13.608931 ], [ 144.835908, 13.608993 ], [ 144.835926, 13.60907 ], [ 144.835938, 13.609094 ], [ 144.835923, 13.609175 ], [ 144.835888, 13.609246 ], [ 144.835907, 13.609318 ], [ 144.835906, 13.609399 ], [ 144.835881, 13.609442 ], [ 144.835822, 13.609499 ], [ 144.835802, 13.60958 ], [ 144.835811, 13.609666 ], [ 144.83584, 13.609719 ], [ 144.835844, 13.609786 ], [ 144.835818, 13.609968 ], [ 144.835788, 13.610029 ], [ 144.835759, 13.610053 ], [ 144.83571, 13.610053 ], [ 144.835695, 13.610033 ], [ 144.835631, 13.610052 ], [ 144.835597, 13.6101 ], [ 144.835548, 13.610104 ], [ 144.835504, 13.610084 ], [ 144.835465, 13.610094 ], [ 144.835459, 13.610161 ], [ 144.835503, 13.610209 ], [ 144.835493, 13.610252 ], [ 144.835478, 13.61028 ], [ 144.835446, 13.610294 ], [ 144.835372, 13.610318 ], [ 144.835313, 13.610355 ], [ 144.835293, 13.610408 ], [ 144.835327, 13.61047 ], [ 144.835346, 13.610537 ], [ 144.83536, 13.610604 ], [ 144.835354, 13.610729 ], [ 144.835383, 13.610729 ], [ 144.835408, 13.610724 ], [ 144.835457, 13.610734 ], [ 144.835496, 13.610759 ], [ 144.835515, 13.610778 ], [ 144.835515, 13.610802 ], [ 144.835461, 13.610806 ], [ 144.835304, 13.610867 ], [ 144.835235, 13.610914 ], [ 144.835176, 13.610971 ], [ 144.835155, 13.611124 ], [ 144.835159, 13.611191 ], [ 144.835183, 13.611239 ], [ 144.835222, 13.611273 ], [ 144.835281, 13.611273 ], [ 144.835325, 13.611269 ], [ 144.835329, 13.611312 ], [ 144.835328, 13.611431 ], [ 144.835337, 13.611508 ], [ 144.835376, 13.611547 ], [ 144.835395, 13.611609 ], [ 144.835418, 13.611709 ], [ 144.835426, 13.61192 ], [ 144.83544, 13.612044 ], [ 144.835448, 13.612183 ], [ 144.835448, 13.61225 ], [ 144.835471, 13.612351 ], [ 144.8355, 13.612408 ], [ 144.835529, 13.61249 ], [ 144.835546, 13.612782 ], [ 144.83559, 13.612889 ], [ 144.835582, 13.613026 ], [ 144.835607, 13.613313 ], [ 144.835635, 13.613399 ], [ 144.835664, 13.613505 ], [ 144.835692, 13.613567 ], [ 144.835677, 13.613687 ], [ 144.835691, 13.613749 ], [ 144.835749, 13.613821 ], [ 144.835811, 13.613927 ], [ 144.83584, 13.614032 ], [ 144.835858, 13.614171 ], [ 144.835861, 13.614358 ], [ 144.835874, 13.61452 ], [ 144.835939, 13.614722 ], [ 144.835947, 13.614861 ], [ 144.835893, 13.614913 ], [ 144.835843, 13.614998 ], [ 144.835818, 13.615098 ], [ 144.835851, 13.615161 ], [ 144.835895, 13.615228 ], [ 144.835914, 13.615286 ], [ 144.835888, 13.6154 ], [ 144.835878, 13.615496 ], [ 144.835902, 13.615525 ], [ 144.835956, 13.615544 ], [ 144.835974, 13.615631 ], [ 144.835974, 13.615884 ], [ 144.835958, 13.616047 ], [ 144.835962, 13.616223 ], [ 144.835941, 13.616348 ], [ 144.835947, 13.616764 ], [ 144.835946, 13.617084 ], [ 144.83595, 13.617218 ], [ 144.835963, 13.617438 ], [ 144.836006, 13.617577 ], [ 144.836038, 13.617726 ], [ 144.836076, 13.617855 ], [ 144.836123, 13.618056 ], [ 144.836146, 13.618253 ], [ 144.836161, 13.618482 ], [ 144.836189, 13.61864 ], [ 144.836163, 13.61876 ], [ 144.836176, 13.61897 ], [ 144.836179, 13.6192 ], [ 144.836172, 13.619396 ], [ 144.836195, 13.619544 ], [ 144.836224, 13.619597 ], [ 144.836252, 13.619736 ], [ 144.836237, 13.619831 ], [ 144.836287, 13.619932 ], [ 144.836345, 13.620033 ], [ 144.836402, 13.620211 ], [ 144.836521, 13.620532 ], [ 144.836491, 13.620632 ], [ 144.836431, 13.620756 ], [ 144.836411, 13.620875 ], [ 144.836468, 13.620986 ], [ 144.836473, 13.621282 ], [ 144.836467, 13.621383 ], [ 144.836466, 13.621474 ], [ 144.83646, 13.621574 ], [ 144.83645, 13.621646 ], [ 144.836425, 13.621717 ], [ 144.836415, 13.621784 ], [ 144.836443, 13.621851 ], [ 144.836529, 13.622105 ], [ 144.836604, 13.622685 ], [ 144.836612, 13.622905 ], [ 144.83663, 13.623077 ], [ 144.836634, 13.623225 ], [ 144.836613, 13.623603 ], [ 144.836612, 13.623741 ], [ 144.836635, 13.623885 ], [ 144.836696, 13.624139 ], [ 144.836774, 13.624231 ], [ 144.836832, 13.624308 ], [ 144.83687, 13.624413 ], [ 144.836869, 13.624518 ], [ 144.836902, 13.624619 ], [ 144.837013, 13.624849 ], [ 144.837062, 13.624921 ], [ 144.837056, 13.624941 ], [ 144.837153, 13.625135 ], [ 144.837482, 13.625611 ], [ 144.83763, 13.625837 ], [ 144.837716, 13.62604 ], [ 144.837841, 13.626274 ], [ 144.838013, 13.626477 ], [ 144.838178, 13.626657 ], [ 144.838426, 13.626825 ], [ 144.838514, 13.626945 ], [ 144.838655, 13.627071 ], [ 144.83879, 13.627215 ], [ 144.839111, 13.627452 ], [ 144.839183, 13.627549 ], [ 144.839304, 13.62766 ], [ 144.839394, 13.627789 ], [ 144.839617, 13.628016 ], [ 144.839684, 13.628122 ], [ 144.839785, 13.628266 ], [ 144.839843, 13.628377 ], [ 144.839935, 13.628488 ], [ 144.840032, 13.628589 ], [ 144.840148, 13.628724 ], [ 144.84025, 13.62882 ], [ 144.840537, 13.629205 ], [ 144.840633, 13.629369 ], [ 144.840755, 13.629494 ], [ 144.841035, 13.629812 ], [ 144.84119, 13.629976 ], [ 144.841316, 13.630101 ], [ 144.841442, 13.630208 ], [ 144.841573, 13.630338 ], [ 144.841812, 13.630651 ], [ 144.841929, 13.630776 ], [ 144.842155, 13.631099 ], [ 144.842257, 13.631238 ], [ 144.842363, 13.631402 ], [ 144.842495, 13.631547 ], [ 144.842503, 13.631556 ], [ 144.842619, 13.631696 ], [ 144.842706, 13.631816 ], [ 144.842774, 13.631946 ], [ 144.842899, 13.632147 ], [ 144.843068, 13.632331 ], [ 144.843223, 13.632509 ], [ 144.843344, 13.632687 ], [ 144.843499, 13.632856 ], [ 144.843635, 13.632957 ], [ 144.843659, 13.632972 ], [ 144.843671, 13.632987 ], [ 144.843731, 13.633042 ], [ 144.843847, 13.633173 ], [ 144.843935, 13.633226 ], [ 144.843988, 13.633289 ], [ 144.844105, 13.633404 ], [ 144.84424, 13.633549 ], [ 144.844342, 13.633679 ], [ 144.844574, 13.633949 ], [ 144.844685, 13.634093 ], [ 144.844781, 13.634242 ], [ 144.844822, 13.634353 ], [ 144.844846, 13.634439 ], [ 144.844991, 13.634593 ], [ 144.845029, 13.634689 ], [ 144.84514, 13.634877 ], [ 144.845168, 13.634963 ], [ 144.845221, 13.635059 ], [ 144.84536, 13.635357 ], [ 144.845404, 13.635414 ], [ 144.845486, 13.635482 ], [ 144.845564, 13.635574 ], [ 144.845629, 13.635636 ], [ 144.845803, 13.635867 ], [ 144.845905, 13.636017 ], [ 144.845948, 13.636055 ], [ 144.846036, 13.636123 ], [ 144.846176, 13.636272 ], [ 144.846234, 13.636359 ], [ 144.846331, 13.636474 ], [ 144.846427, 13.636628 ], [ 144.846557, 13.636806 ], [ 144.846627, 13.636965 ], [ 144.846709, 13.637061 ], [ 144.846772, 13.637162 ], [ 144.84682, 13.637292 ], [ 144.846872, 13.637393 ], [ 144.846973, 13.637604 ], [ 144.846997, 13.637671 ], [ 144.847055, 13.637748 ], [ 144.847088, 13.637844 ], [ 144.847156, 13.637954 ], [ 144.847199, 13.638055 ], [ 144.847223, 13.638142 ], [ 144.847271, 13.638204 ], [ 144.847348, 13.638277 ], [ 144.847437, 13.638526 ], [ 144.847519, 13.638613 ], [ 144.847644, 13.63881 ], [ 144.847687, 13.63892 ], [ 144.847846, 13.639252 ], [ 144.847942, 13.639401 ], [ 144.848005, 13.639516 ], [ 144.848038, 13.639655 ], [ 144.848076, 13.639727 ], [ 144.848126, 13.639846 ], [ 144.848138, 13.639876 ], [ 144.848234, 13.64013 ], [ 144.848257, 13.640245 ], [ 144.848275, 13.640393 ], [ 144.848309, 13.64048 ], [ 144.848444, 13.640667 ], [ 144.84857, 13.640788 ], [ 144.848628, 13.640884 ], [ 144.848654, 13.64091 ], [ 144.848664, 13.641205 ], [ 144.848672, 13.641415 ], [ 144.848701, 13.641468 ], [ 144.84875, 13.641492 ], [ 144.848781, 13.641498 ], [ 144.848804, 13.641665 ], [ 144.848847, 13.641771 ], [ 144.848871, 13.641895 ], [ 144.848938, 13.641996 ], [ 144.84904, 13.642126 ], [ 144.849083, 13.642232 ], [ 144.849155, 13.642376 ], [ 144.849241, 13.642511 ], [ 144.849328, 13.642674 ], [ 144.849366, 13.642789 ], [ 144.849431, 13.64289 ], [ 144.84947, 13.643049 ], [ 144.84953, 13.643288 ], [ 144.849669, 13.643657 ], [ 144.849794, 13.643869 ], [ 144.849862, 13.643946 ], [ 144.849935, 13.644219 ], [ 144.850055, 13.644497 ], [ 144.850155, 13.644747 ], [ 144.850218, 13.644857 ], [ 144.850294, 13.645016 ], [ 144.850421, 13.645395 ], [ 144.850526, 13.64563 ], [ 144.850607, 13.645851 ], [ 144.850698, 13.646076 ], [ 144.850789, 13.646244 ], [ 144.850856, 13.646436 ], [ 144.850915, 13.646642 ], [ 144.851059, 13.646997 ], [ 144.851101, 13.647165 ], [ 144.851178, 13.647314 ], [ 144.85125, 13.647491 ], [ 144.851317, 13.647636 ], [ 144.851375, 13.647779 ], [ 144.851466, 13.647943 ], [ 144.851576, 13.648159 ], [ 144.851659, 13.64827 ], [ 144.851751, 13.648328 ], [ 144.851931, 13.648415 ], [ 144.852004, 13.648454 ], [ 144.852087, 13.648527 ], [ 144.852198, 13.648638 ], [ 144.852271, 13.648724 ], [ 144.852338, 13.648792 ], [ 144.852455, 13.648865 ], [ 144.852538, 13.648937 ], [ 144.85262, 13.649019 ], [ 144.852664, 13.649055 ], [ 144.852721, 13.649154 ], [ 144.852804, 13.649269 ], [ 144.852886, 13.649375 ], [ 144.853055, 13.649559 ], [ 144.853249, 13.649732 ], [ 144.853428, 13.649916 ], [ 144.853528, 13.649998 ], [ 144.85363, 13.650109 ], [ 144.85377, 13.65021 ], [ 144.853946, 13.650322 ], [ 144.854238, 13.650473 ], [ 144.854417, 13.650589 ], [ 144.854524, 13.650676 ], [ 144.854801, 13.65085 ], [ 144.854903, 13.650952 ], [ 144.854966, 13.651057 ], [ 144.855106, 13.651197 ], [ 144.855171, 13.651313 ], [ 144.855224, 13.651442 ], [ 144.855282, 13.651524 ], [ 144.855349, 13.651606 ], [ 144.855371, 13.651625 ], [ 144.855388, 13.65164 ], [ 144.855461, 13.651659 ], [ 144.855568, 13.651751 ], [ 144.855661, 13.651785 ], [ 144.855768, 13.651844 ], [ 144.855845, 13.651911 ], [ 144.855943, 13.65196 ], [ 144.856016, 13.652032 ], [ 144.856176, 13.65212 ], [ 144.856268, 13.652192 ], [ 144.856414, 13.652323 ], [ 144.856482, 13.652343 ], [ 144.85658, 13.652386 ], [ 144.857034, 13.652735 ], [ 144.857199, 13.652851 ], [ 144.857641, 13.653213 ], [ 144.857781, 13.653344 ], [ 144.857927, 13.65346 ], [ 144.858058, 13.653585 ], [ 144.858245, 13.653735 ], [ 144.85831, 13.653788 ], [ 144.858417, 13.65388 ], [ 144.858531, 13.653967 ], [ 144.858799, 13.654108 ], [ 144.859028, 13.654206 ], [ 144.85912, 13.654268 ], [ 144.859242, 13.654336 ], [ 144.859334, 13.654361 ], [ 144.859481, 13.654391 ], [ 144.859569, 13.654401 ], [ 144.859666, 13.654402 ], [ 144.859769, 13.654384 ], [ 144.86026, 13.65235 ], [ 144.860421, 13.650561 ], [ 144.860494, 13.65013 ], [ 144.862037, 13.641041 ], [ 144.862374, 13.639276 ], [ 144.862594, 13.638081 ], [ 144.86507, 13.623795 ], [ 144.866429, 13.618368 ], [ 144.867458, 13.61426 ], [ 144.867746, 13.613185 ], [ 144.868046, 13.610918 ], [ 144.868253, 13.608894 ], [ 144.868956, 13.602025 ], [ 144.87067, 13.59199 ], [ 144.87181, 13.58583 ], [ 144.87173, 13.58588 ], [ 144.871366, 13.586113 ], [ 144.871214, 13.586211 ], [ 144.87086, 13.58644 ], [ 144.870801, 13.586476 ], [ 144.870627, 13.586585 ], [ 144.87057, 13.586622 ], [ 144.870393, 13.586732 ], [ 144.87011, 13.58691 ], [ 144.869871, 13.587072 ], [ 144.8697, 13.58719 ], [ 144.869563, 13.587275 ], [ 144.869156, 13.587533 ], [ 144.86902, 13.58762 ], [ 144.868866, 13.58772 ], [ 144.868404, 13.58802 ], [ 144.86825, 13.58812 ], [ 144.868086, 13.588223 ], [ 144.86762, 13.58852 ], [ 144.867597, 13.588533 ], [ 144.86743, 13.58863 ], [ 144.867377, 13.588649 ], [ 144.867222, 13.588709 ], [ 144.86717, 13.58873 ], [ 144.86684, 13.588833 ], [ 144.86682, 13.58884 ], [ 144.86656, 13.58891 ], [ 144.86623, 13.58898 ], [ 144.86587, 13.58903 ], [ 144.865825, 13.589031 ], [ 144.86548, 13.58904 ], [ 144.865111, 13.589031 ], [ 144.86504, 13.58903 ], [ 144.86456, 13.58896 ], [ 144.86415, 13.58886 ], [ 144.864029, 13.588818 ], [ 144.86368, 13.5887 ], [ 144.8636, 13.588662 ], [ 144.86336, 13.588548 ], [ 144.86328, 13.58851 ], [ 144.86278, 13.588263 ], [ 144.86247, 13.58811 ], [ 144.861293, 13.587497 ], [ 144.86103, 13.58736 ], [ 144.8608, 13.587237 ], [ 144.860407, 13.587027 ], [ 144.8603, 13.58697 ], [ 144.860272, 13.586952 ], [ 144.85989, 13.58672 ], [ 144.85935, 13.58631 ], [ 144.859308, 13.586271 ], [ 144.85898, 13.58597 ], [ 144.858922, 13.585915 ], [ 144.858748, 13.585753 ], [ 144.85869, 13.5857 ], [ 144.858481, 13.585467 ], [ 144.85835, 13.58532 ], [ 144.858, 13.5849 ], [ 144.857881, 13.584747 ], [ 144.85769, 13.5845 ], [ 144.85731, 13.584031 ], [ 144.85688, 13.5835 ], [ 144.856165, 13.582631 ], [ 144.85609, 13.58254 ], [ 144.85579, 13.58216 ], [ 144.85567, 13.58202 ], [ 144.855442, 13.581736 ], [ 144.854413, 13.580456 ], [ 144.85407, 13.58003 ], [ 144.85378, 13.57967 ], [ 144.853683, 13.579552 ], [ 144.852515, 13.578128 ], [ 144.8525, 13.57811 ], [ 144.85213, 13.57765 ], [ 144.851559, 13.576949 ], [ 144.85116, 13.57646 ], [ 144.85044, 13.57556 ], [ 144.84987, 13.574829 ], [ 144.84984, 13.57479 ], [ 144.8497, 13.57458 ], [ 144.84944, 13.57412 ], [ 144.849406, 13.574056 ], [ 144.849376, 13.573999 ], [ 144.849287, 13.57383 ], [ 144.849258, 13.573774 ], [ 144.849119, 13.573512 ], [ 144.84895, 13.57319 ], [ 144.848699, 13.57273 ], [ 144.848558, 13.572471 ], [ 144.848504, 13.572372 ], [ 144.84847, 13.57231 ], [ 144.848347, 13.572073 ], [ 144.848296, 13.571974 ], [ 144.848244, 13.571875 ], [ 144.848091, 13.571578 ], [ 144.84804, 13.57148 ], [ 144.847612, 13.570658 ], [ 144.84714, 13.56975 ], [ 144.846931, 13.56936 ], [ 144.846314, 13.568202 ], [ 144.84611, 13.56782 ], [ 144.84591, 13.56737 ], [ 144.84571, 13.566998 ], [ 144.84541, 13.56644 ], [ 144.845128, 13.565876 ], [ 144.84494, 13.5655 ], [ 144.844904, 13.565437 ], [ 144.844799, 13.56525 ], [ 144.844764, 13.565188 ], [ 144.844737, 13.56514 ], [ 144.844656, 13.564997 ], [ 144.84463, 13.56495 ], [ 144.844329, 13.564355 ], [ 144.84421, 13.56412 ], [ 144.84413, 13.56398 ], [ 144.84381, 13.56338 ], [ 144.843703, 13.563174 ], [ 144.843397, 13.562586 ], [ 144.84329, 13.56238 ], [ 144.843099, 13.561991 ], [ 144.843087, 13.561966 ], [ 144.843051, 13.561894 ], [ 144.84304, 13.56187 ], [ 144.842903, 13.56162 ], [ 144.842493, 13.560871 ], [ 144.8424, 13.5607 ], [ 144.84236, 13.56062 ], [ 144.842252, 13.560402 ], [ 144.841928, 13.559748 ], [ 144.84182, 13.55953 ], [ 144.8418, 13.55948 ], [ 144.84176, 13.559409 ], [ 144.841562, 13.559056 ], [ 144.841497, 13.558939 ], [ 144.841437, 13.558833 ], [ 144.841259, 13.558515 ], [ 144.8412, 13.55841 ], [ 144.841106, 13.558234 ], [ 144.840824, 13.557706 ], [ 144.84073, 13.55753 ], [ 144.840483, 13.557108 ], [ 144.839742, 13.555843 ], [ 144.839495, 13.555422 ], [ 144.83943, 13.55531 ], [ 144.839405, 13.555267 ], [ 144.839138, 13.554804 ], [ 144.83905, 13.55465 ], [ 144.838953, 13.554483 ], [ 144.838662, 13.553985 ], [ 144.838566, 13.553819 ], [ 144.838528, 13.553755 ], [ 144.838417, 13.553563 ], [ 144.83838, 13.5535 ], [ 144.8383, 13.55337 ], [ 144.838193, 13.553186 ], [ 144.83816, 13.55313 ], [ 144.837652, 13.552235 ], [ 144.837472, 13.551918 ], [ 144.837446, 13.551872 ], [ 144.837368, 13.551736 ], [ 144.837343, 13.551691 ], [ 144.837319, 13.551648 ], [ 144.837247, 13.551522 ], [ 144.837223, 13.55148 ], [ 144.837192, 13.551427 ], [ 144.837102, 13.551268 ], [ 144.837073, 13.551216 ], [ 144.83703, 13.55114 ], [ 144.837011, 13.551102 ], [ 144.836837, 13.550755 ], [ 144.83678, 13.55064 ], [ 144.836668, 13.550424 ], [ 144.836371, 13.549851 ], [ 144.836332, 13.549776 ], [ 144.83622, 13.54956 ], [ 144.8359, 13.54895 ], [ 144.835816, 13.548788 ], [ 144.8355, 13.548174 ], [ 144.83525, 13.54769 ], [ 144.835138, 13.547466 ], [ 144.83469, 13.54657 ], [ 144.834643, 13.546457 ], [ 144.834563, 13.546261 ], [ 144.83446, 13.54601 ], [ 144.83432, 13.54565 ], [ 144.834089, 13.545028 ], [ 144.83377, 13.54417 ], [ 144.83358, 13.5434 ], [ 144.833517, 13.543126 ], [ 144.83337, 13.54248 ], [ 144.833306, 13.54221 ], [ 144.833254, 13.541987 ], [ 144.83322, 13.54184 ], [ 144.83308, 13.54122 ], [ 144.83284, 13.54065 ], [ 144.832781, 13.540554 ], [ 144.83263, 13.54031 ], [ 144.83249, 13.540143 ], [ 144.832468, 13.540116 ], [ 144.832402, 13.540036 ], [ 144.83238, 13.54001 ], [ 144.831797, 13.53937 ], [ 144.83127, 13.53879 ], [ 144.83015, 13.53755 ], [ 144.830055, 13.537446 ], [ 144.82947, 13.53681 ], [ 144.82908, 13.536366 ], [ 144.82896, 13.53623 ], [ 144.8286, 13.53568 ], [ 144.82827, 13.53501 ], [ 144.828196, 13.53484 ], [ 144.82796, 13.5343 ], [ 144.827908, 13.534187 ], [ 144.827754, 13.533848 ], [ 144.827703, 13.533736 ], [ 144.82757, 13.533444 ], [ 144.827172, 13.532571 ], [ 144.82704, 13.53228 ], [ 144.827004, 13.532206 ], [ 144.826896, 13.531984 ], [ 144.82686, 13.53191 ], [ 144.826856, 13.5319 ], [ 144.826844, 13.53187 ], [ 144.82684, 13.53186 ], [ 144.826774, 13.531716 ], [ 144.826576, 13.531284 ], [ 144.82651, 13.53114 ], [ 144.82648, 13.531072 ], [ 144.826389, 13.530868 ], [ 144.82636, 13.5308 ], [ 144.826312, 13.530698 ], [ 144.826168, 13.530392 ], [ 144.82612, 13.53029 ], [ 144.826101, 13.530248 ], [ 144.826044, 13.530124 ], [ 144.826025, 13.530083 ], [ 144.826012, 13.530054 ], [ 144.825973, 13.529968 ], [ 144.82596, 13.52994 ], [ 144.825844, 13.52967 ], [ 144.82575, 13.52945 ], [ 144.82561, 13.52896 ], [ 144.825588, 13.528829 ], [ 144.82554, 13.52854 ], [ 144.825526, 13.528434 ], [ 144.825484, 13.528118 ], [ 144.825471, 13.528013 ], [ 144.825423, 13.527644 ], [ 144.82533, 13.52693 ], [ 144.82523, 13.526548 ], [ 144.82521, 13.52647 ], [ 144.825073, 13.526214 ], [ 144.82499, 13.52606 ], [ 144.824759, 13.525685 ], [ 144.82388, 13.52426 ], [ 144.82381, 13.52425 ], [ 144.823757, 13.524166 ], [ 144.82354, 13.52382 ], [ 144.82344, 13.52364 ], [ 144.823003, 13.52364 ], [ 144.82295, 13.52364 ], [ 144.82267, 13.52362 ], [ 144.82248, 13.52359 ], [ 144.8223, 13.52355 ], [ 144.82215, 13.52351 ], [ 144.821731, 13.523363 ], [ 144.82158, 13.52331 ], [ 144.82132, 13.523216 ], [ 144.82086, 13.52305 ], [ 144.820418, 13.522896 ], [ 144.818857, 13.522352 ], [ 144.81825, 13.52214 ], [ 144.817711, 13.521949 ], [ 144.816812, 13.521629 ], [ 144.816736, 13.521604 ], [ 144.816514, 13.521526 ], [ 144.81644, 13.5215 ], [ 144.816234, 13.521427 ], [ 144.815617, 13.521208 ], [ 144.81551, 13.52117 ], [ 144.81541, 13.52114 ], [ 144.815243, 13.521838 ], [ 144.814745, 13.523933 ], [ 144.814739, 13.523962 ], [ 144.81459, 13.524634 ], [ 144.814573, 13.524703 ], [ 144.814523, 13.524913 ], [ 144.814507, 13.524983 ], [ 144.81392, 13.527261 ], [ 144.813758, 13.527999 ], [ 144.813158, 13.530688 ], [ 144.812794, 13.53225 ], [ 144.812625, 13.532986 ], [ 144.812396, 13.533997 ], [ 144.812173, 13.534955 ], [ 144.812043, 13.535534 ], [ 144.81196, 13.535865 ], [ 144.81191, 13.53613 ], [ 144.811726, 13.5369 ], [ 144.811603, 13.53743 ], [ 144.811453, 13.538083 ], [ 144.811362, 13.538462 ], [ 144.810854, 13.540771 ], [ 144.810862, 13.541146 ], [ 144.810869, 13.541398 ], [ 144.809611, 13.542848 ], [ 144.809057, 13.543449 ], [ 144.808481, 13.544114 ], [ 144.808477, 13.54419 ], [ 144.808452, 13.54428 ], [ 144.808345, 13.544318 ], [ 144.808306, 13.544303 ], [ 144.808238, 13.544288 ], [ 144.808145, 13.54434 ], [ 144.808147, 13.544371 ], [ 144.808149, 13.544392 ], [ 144.808183, 13.544454 ], [ 144.808178, 13.544502 ], [ 144.808192, 13.54455 ], [ 144.808223, 13.544588 ], [ 144.808275, 13.544722 ], [ 144.808314, 13.544765 ], [ 144.808377, 13.544809 ], [ 144.808386, 13.544866 ], [ 144.808435, 13.544885 ], [ 144.808488, 13.544871 ], [ 144.808561, 13.544905 ], [ 144.808697, 13.544978 ], [ 144.808759, 13.545083 ], [ 144.808894, 13.545256 ], [ 144.808936, 13.545385 ], [ 144.809018, 13.545471 ], [ 144.809173, 13.545539 ], [ 144.80927, 13.545607 ], [ 144.809396, 13.545708 ], [ 144.809599, 13.545881 ], [ 144.809659, 13.545968 ], [ 144.80974, 13.546106 ], [ 144.809822, 13.546231 ], [ 144.80986, 13.546355 ], [ 144.809907, 13.54647 ], [ 144.809994, 13.546593 ], [ 144.810109, 13.546757 ], [ 144.81021, 13.546916 ], [ 144.810335, 13.547102 ], [ 144.8104, 13.547208 ], [ 144.810471, 13.54738 ], [ 144.810511, 13.547465 ], [ 144.810619, 13.547696 ], [ 144.81069, 13.547891 ], [ 144.810723, 13.548035 ], [ 144.81078, 13.548164 ], [ 144.810784, 13.548217 ], [ 144.810789, 13.548283 ], [ 144.810803, 13.548354 ], [ 144.810827, 13.548383 ], [ 144.810871, 13.548393 ], [ 144.810895, 13.548441 ], [ 144.810887, 13.548469 ], [ 144.810871, 13.548603 ], [ 144.810831, 13.548779 ], [ 144.810896, 13.54907 ], [ 144.810968, 13.54918 ], [ 144.810996, 13.549304 ], [ 144.811019, 13.549438 ], [ 144.811062, 13.549586 ], [ 144.811032, 13.549661 ], [ 144.810987, 13.549728 ], [ 144.811001, 13.549795 ], [ 144.81103, 13.549857 ], [ 144.811007, 13.549971 ], [ 144.811065, 13.550081 ], [ 144.811088, 13.550176 ], [ 144.811106, 13.550353 ], [ 144.811115, 13.550488 ], [ 144.811119, 13.550529 ], [ 144.811156, 13.550744 ], [ 144.811178, 13.550963 ], [ 144.811274, 13.551126 ], [ 144.81129, 13.551259 ], [ 144.811291, 13.551262 ], [ 144.811319, 13.551312 ], [ 144.811347, 13.551427 ], [ 144.811346, 13.551527 ], [ 144.811379, 13.551584 ], [ 144.811418, 13.551665 ], [ 144.81147, 13.551823 ], [ 144.811537, 13.551933 ], [ 144.811589, 13.552038 ], [ 144.811686, 13.55212 ], [ 144.811758, 13.552216 ], [ 144.811796, 13.552307 ], [ 144.81181, 13.552407 ], [ 144.811851, 13.552446 ], [ 144.811893, 13.552617 ], [ 144.81192, 13.552889 ], [ 144.811928, 13.553123 ], [ 144.811921, 13.553299 ], [ 144.811886, 13.55347 ], [ 144.811836, 13.553593 ], [ 144.81182, 13.553746 ], [ 144.811782, 13.553874 ], [ 144.811723, 13.553954 ], [ 144.811581, 13.554048 ], [ 144.811483, 13.554081 ], [ 144.811376, 13.554089 ], [ 144.811278, 13.554117 ], [ 144.81111, 13.55419 ], [ 144.811053, 13.554215 ], [ 144.810984, 13.554305 ], [ 144.810974, 13.55441 ], [ 144.810953, 13.554543 ], [ 144.810986, 13.554672 ], [ 144.811063, 13.554782 ], [ 144.811183, 13.554945 ], [ 144.811299, 13.555032 ], [ 144.811425, 13.555133 ], [ 144.811517, 13.555181 ], [ 144.811623, 13.555249 ], [ 144.811818, 13.555303 ], [ 144.811861, 13.555365 ], [ 144.811899, 13.555432 ], [ 144.811986, 13.555495 ], [ 144.812039, 13.555548 ], [ 144.812112, 13.555572 ], [ 144.81216, 13.555611 ], [ 144.81219, 13.555597 ], [ 144.81221, 13.555521 ], [ 144.812211, 13.555445 ], [ 144.812206, 13.555392 ], [ 144.812246, 13.555331 ], [ 144.812261, 13.555264 ], [ 144.812257, 13.555216 ], [ 144.812354, 13.555155 ], [ 144.812452, 13.555156 ], [ 144.812603, 13.555148 ], [ 144.812673, 13.555158 ], [ 144.812902, 13.555227 ], [ 144.813177, 13.55541 ], [ 144.813337, 13.555526 ], [ 144.813589, 13.555685 ], [ 144.813728, 13.555844 ], [ 144.813912, 13.556031 ], [ 144.814066, 13.556237 ], [ 144.814244, 13.556425 ], [ 144.814325, 13.556573 ], [ 144.814368, 13.556688 ], [ 144.814421, 13.556779 ], [ 144.814478, 13.556931 ], [ 144.814477, 13.557046 ], [ 144.814467, 13.557161 ], [ 144.814433, 13.557218 ], [ 144.814408, 13.557237 ], [ 144.81434, 13.55726 ], [ 144.814256, 13.557298 ], [ 144.814173, 13.557359 ], [ 144.814197, 13.557403 ], [ 144.814294, 13.557432 ], [ 144.814402, 13.557428 ], [ 144.8145, 13.557415 ], [ 144.814661, 13.557431 ], [ 144.814827, 13.557423 ], [ 144.815037, 13.557439 ], [ 144.815242, 13.557484 ], [ 144.815364, 13.557518 ], [ 144.815432, 13.557552 ], [ 144.8155, 13.557572 ], [ 144.815807, 13.557685 ], [ 144.815939, 13.557729 ], [ 144.816041, 13.557782 ], [ 144.816187, 13.557865 ], [ 144.816328, 13.557938 ], [ 144.816527, 13.558059 ], [ 144.816682, 13.55818 ], [ 144.817075, 13.558509 ], [ 144.817177, 13.558634 ], [ 144.817273, 13.558759 ], [ 144.817404, 13.558899 ], [ 144.8175, 13.559057 ], [ 144.817587, 13.559178 ], [ 144.817624, 13.559256 ], [ 144.817606, 13.559283 ], [ 144.81761, 13.559393 ], [ 144.817604, 13.559465 ], [ 144.817643, 13.559546 ], [ 144.817676, 13.559597 ], [ 144.817696, 13.559628 ], [ 144.817739, 13.559667 ], [ 144.817768, 13.559729 ], [ 144.817758, 13.559753 ], [ 144.817747, 13.559829 ], [ 144.817752, 13.559906 ], [ 144.81778, 13.559968 ], [ 144.817838, 13.56005 ], [ 144.817892, 13.560113 ], [ 144.81793, 13.560185 ], [ 144.817959, 13.560262 ], [ 144.817958, 13.560319 ], [ 144.817962, 13.560386 ], [ 144.817981, 13.560482 ], [ 144.817956, 13.560553 ], [ 144.817941, 13.560615 ], [ 144.81793, 13.560692 ], [ 144.817949, 13.560725 ], [ 144.818018, 13.56074 ], [ 144.818042, 13.560774 ], [ 144.818061, 13.560855 ], [ 144.81809, 13.560899 ], [ 144.818128, 13.56098 ], [ 144.818142, 13.561052 ], [ 144.818166, 13.561124 ], [ 144.81817, 13.561201 ], [ 144.818189, 13.561268 ], [ 144.818242, 13.561393 ], [ 144.81828, 13.561469 ], [ 144.818314, 13.561508 ], [ 144.818341, 13.561523 ], [ 144.818335, 13.56157 ], [ 144.818379, 13.561638 ], [ 144.818348, 13.561747 ], [ 144.818342, 13.561853 ], [ 144.818352, 13.56192 ], [ 144.818395, 13.56203 ], [ 144.818443, 13.562116 ], [ 144.81851, 13.562208 ], [ 144.818559, 13.562223 ], [ 144.818598, 13.562252 ], [ 144.818578, 13.56228 ], [ 144.818602, 13.562376 ], [ 144.818625, 13.562448 ], [ 144.818698, 13.562482 ], [ 144.818771, 13.562511 ], [ 144.818844, 13.56256 ], [ 144.818897, 13.562637 ], [ 144.818916, 13.562713 ], [ 144.818959, 13.562829 ], [ 144.819032, 13.562891 ], [ 144.81908, 13.562964 ], [ 144.819109, 13.56304 ], [ 144.819157, 13.563103 ], [ 144.819181, 13.563151 ], [ 144.8192, 13.563208 ], [ 144.819303, 13.563209 ], [ 144.819297, 13.563252 ], [ 144.819272, 13.56331 ], [ 144.819306, 13.563358 ], [ 144.819345, 13.563387 ], [ 144.819413, 13.563406 ], [ 144.819442, 13.563445 ], [ 144.819456, 13.563498 ], [ 144.819485, 13.563555 ], [ 144.819529, 13.563608 ], [ 144.819607, 13.563642 ], [ 144.819762, 13.56373 ], [ 144.81985, 13.563788 ], [ 144.819893, 13.563836 ], [ 144.819912, 13.563918 ], [ 144.819917, 13.563965 ], [ 144.819946, 13.564009 ], [ 144.819955, 13.564076 ], [ 144.819956, 13.564148 ], [ 144.81999, 13.564229 ], [ 144.820043, 13.564311 ], [ 144.820097, 13.56433 ], [ 144.820165, 13.564341 ], [ 144.820306, 13.564371 ], [ 144.820355, 13.564438 ], [ 144.820378, 13.5645 ], [ 144.820412, 13.564525 ], [ 144.820446, 13.564573 ], [ 144.82047, 13.564621 ], [ 144.820499, 13.564664 ], [ 144.820553, 13.564698 ], [ 144.820615, 13.564785 ], [ 144.820654, 13.564809 ], [ 144.820658, 13.564885 ], [ 144.820697, 13.564987 ], [ 144.820706, 13.56501 ], [ 144.820706, 13.565063 ], [ 144.820681, 13.56511 ], [ 144.82069, 13.565201 ], [ 144.820709, 13.56524 ], [ 144.820757, 13.565307 ], [ 144.820742, 13.565374 ], [ 144.82078, 13.565503 ], [ 144.820824, 13.565542 ], [ 144.820837, 13.565642 ], [ 144.820817, 13.565733 ], [ 144.820845, 13.565824 ], [ 144.820908, 13.565896 ], [ 144.820991, 13.565945 ], [ 144.82104, 13.56595 ], [ 144.821078, 13.566003 ], [ 144.821107, 13.566061 ], [ 144.821136, 13.566104 ], [ 144.821189, 13.566162 ], [ 144.821253, 13.566205 ], [ 144.821277, 13.566254 ], [ 144.821276, 13.566311 ], [ 144.821315, 13.566369 ], [ 144.821363, 13.566431 ], [ 144.821431, 13.56647 ], [ 144.821445, 13.566508 ], [ 144.82143, 13.566551 ], [ 144.821425, 13.566613 ], [ 144.821468, 13.566647 ], [ 144.821517, 13.566705 ], [ 144.821546, 13.566753 ], [ 144.821599, 13.566811 ], [ 144.821603, 13.566878 ], [ 144.821617, 13.566964 ], [ 144.821621, 13.56705 ], [ 144.821611, 13.567127 ], [ 144.821571, 13.567203 ], [ 144.821546, 13.567294 ], [ 144.821486, 13.567384 ], [ 144.821417, 13.567465 ], [ 144.821343, 13.56754 ], [ 144.821269, 13.567607 ], [ 144.821224, 13.567707 ], [ 144.821194, 13.567764 ], [ 144.82114, 13.56783 ], [ 144.821139, 13.567883 ], [ 144.821203, 13.567936 ], [ 144.821319, 13.568163 ], [ 144.821308, 13.56821 ], [ 144.821296, 13.568358 ], [ 144.821335, 13.568377 ], [ 144.821379, 13.568411 ], [ 144.821393, 13.568459 ], [ 144.821392, 13.568607 ], [ 144.82145, 13.56867 ], [ 144.821464, 13.568713 ], [ 144.821473, 13.56879 ], [ 144.821487, 13.568861 ], [ 144.82157, 13.568886 ], [ 144.821599, 13.568915 ], [ 144.821638, 13.568968 ], [ 144.821652, 13.569006 ], [ 144.821618, 13.569059 ], [ 144.821598, 13.569106 ], [ 144.821592, 13.569173 ], [ 144.821611, 13.569288 ], [ 144.821649, 13.569308 ], [ 144.821708, 13.569322 ], [ 144.821732, 13.569366 ], [ 144.821737, 13.569404 ], [ 144.821731, 13.569466 ], [ 144.821721, 13.569509 ], [ 144.82176, 13.569519 ], [ 144.821804, 13.569562 ], [ 144.821832, 13.569625 ], [ 144.821876, 13.569668 ], [ 144.821926, 13.569656 ], [ 144.821944, 13.569664 ], [ 144.82192, 13.569712 ], [ 144.821875, 13.569749 ], [ 144.82185, 13.569797 ], [ 144.82185, 13.569835 ], [ 144.821884, 13.569855 ], [ 144.821943, 13.56986 ], [ 144.822021, 13.569856 ], [ 144.822064, 13.569904 ], [ 144.822118, 13.569948 ], [ 144.822156, 13.570001 ], [ 144.82221, 13.570054 ], [ 144.822268, 13.570049 ], [ 144.82238, 13.57016 ], [ 144.822423, 13.570194 ], [ 144.822462, 13.570238 ], [ 144.822496, 13.57029 ], [ 144.822525, 13.570353 ], [ 144.822553, 13.570473 ], [ 144.822665, 13.57055 ], [ 144.822703, 13.570598 ], [ 144.822776, 13.570642 ], [ 144.822849, 13.570695 ], [ 144.822927, 13.570729 ], [ 144.822985, 13.570759 ], [ 144.823014, 13.570807 ], [ 144.823082, 13.570831 ], [ 144.823122, 13.570827 ], [ 144.823185, 13.570827 ], [ 144.823229, 13.570789 ], [ 144.823225, 13.570742 ], [ 144.823269, 13.570708 ], [ 144.823295, 13.570608 ], [ 144.823344, 13.57059 ], [ 144.823422, 13.570581 ], [ 144.823456, 13.570557 ], [ 144.823515, 13.570534 ], [ 144.823574, 13.570539 ], [ 144.823627, 13.570559 ], [ 144.823671, 13.570588 ], [ 144.823686, 13.570621 ], [ 144.823685, 13.570679 ], [ 144.823709, 13.570727 ], [ 144.823846, 13.570756 ], [ 144.823885, 13.570733 ], [ 144.823919, 13.570728 ], [ 144.823978, 13.570748 ], [ 144.824026, 13.570787 ], [ 144.824026, 13.570835 ], [ 144.824055, 13.570868 ], [ 144.824113, 13.570869 ], [ 144.824113, 13.570917 ], [ 144.824054, 13.57095 ], [ 144.824064, 13.570978 ], [ 144.824086, 13.57099 ], [ 144.824063, 13.570997 ], [ 144.824, 13.571035 ], [ 144.823955, 13.571054 ], [ 144.823857, 13.571072 ], [ 144.823832, 13.571129 ], [ 144.823783, 13.571153 ], [ 144.823759, 13.571191 ], [ 144.823729, 13.57121 ], [ 144.823715, 13.571186 ], [ 144.823627, 13.571194 ], [ 144.823606, 13.571198 ], [ 144.823582, 13.571204 ], [ 144.823558, 13.571203 ], [ 144.82349, 13.571155 ], [ 144.823441, 13.571183 ], [ 144.823431, 13.571241 ], [ 144.82346, 13.571279 ], [ 144.82344, 13.571312 ], [ 144.823415, 13.571327 ], [ 144.823385, 13.571369 ], [ 144.823366, 13.571412 ], [ 144.823395, 13.571436 ], [ 144.823419, 13.571475 ], [ 144.823452, 13.571556 ], [ 144.823491, 13.571595 ], [ 144.823535, 13.571614 ], [ 144.823569, 13.571605 ], [ 144.823613, 13.57161 ], [ 144.823695, 13.571697 ], [ 144.823754, 13.571712 ], [ 144.823793, 13.571755 ], [ 144.823875, 13.571814 ], [ 144.823933, 13.571919 ], [ 144.823952, 13.571967 ], [ 144.823976, 13.572006 ], [ 144.823995, 13.572054 ], [ 144.823966, 13.572077 ], [ 144.823931, 13.572096 ], [ 144.823925, 13.57222 ], [ 144.823969, 13.572273 ], [ 144.824012, 13.572302 ], [ 144.824051, 13.572341 ], [ 144.82406, 13.572413 ], [ 144.82407, 13.572456 ], [ 144.824089, 13.572499 ], [ 144.824157, 13.572528 ], [ 144.824171, 13.572572 ], [ 144.824205, 13.57262 ], [ 144.82421, 13.572658 ], [ 144.824258, 13.572692 ], [ 144.824297, 13.572735 ], [ 144.82436, 13.572817 ], [ 144.824403, 13.572837 ], [ 144.824418, 13.572894 ], [ 144.824412, 13.572942 ], [ 144.824412, 13.572985 ], [ 144.824441, 13.573019 ], [ 144.824495, 13.573024 ], [ 144.824524, 13.573062 ], [ 144.824523, 13.573139 ], [ 144.824532, 13.573177 ], [ 144.824591, 13.573206 ], [ 144.824615, 13.57324 ], [ 144.824732, 13.573308 ], [ 144.82478, 13.573304 ], [ 144.824795, 13.573323 ], [ 144.824809, 13.573352 ], [ 144.824834, 13.573388 ], [ 144.824872, 13.573443 ], [ 144.824896, 13.573506 ], [ 144.824949, 13.57354 ], [ 144.824988, 13.573597 ], [ 144.824992, 13.57364 ], [ 144.825016, 13.573727 ], [ 144.825045, 13.57376 ], [ 144.825114, 13.573766 ], [ 144.825148, 13.573752 ], [ 144.825207, 13.573757 ], [ 144.825265, 13.573772 ], [ 144.825245, 13.57381 ], [ 144.825221, 13.573829 ], [ 144.825191, 13.573881 ], [ 144.825205, 13.57391 ], [ 144.825229, 13.573939 ], [ 144.825254, 13.573953 ], [ 144.825273, 13.573982 ], [ 144.825292, 13.573997 ], [ 144.825322, 13.573992 ], [ 144.825376, 13.573974 ], [ 144.825425, 13.57395 ], [ 144.825489, 13.573836 ], [ 144.825519, 13.573836 ], [ 144.825567, 13.573846 ], [ 144.825606, 13.57387 ], [ 144.825635, 13.573895 ], [ 144.825684, 13.573919 ], [ 144.825748, 13.573929 ], [ 144.825782, 13.573948 ], [ 144.82583, 13.573968 ], [ 144.825859, 13.574002 ], [ 144.825864, 13.57405 ], [ 144.825878, 13.574078 ], [ 144.825927, 13.574103 ], [ 144.825941, 13.574141 ], [ 144.825941, 13.574175 ], [ 144.826107, 13.574176 ], [ 144.826121, 13.5742 ], [ 144.826072, 13.574276 ], [ 144.826037, 13.574295 ], [ 144.826003, 13.574319 ], [ 144.826022, 13.574352 ], [ 144.826066, 13.574386 ], [ 144.826105, 13.574406 ], [ 144.826114, 13.574439 ], [ 144.826114, 13.574468 ], [ 144.826148, 13.574502 ], [ 144.826162, 13.574535 ], [ 144.826226, 13.574536 ], [ 144.82626, 13.574531 ], [ 144.826304, 13.574541 ], [ 144.826319, 13.574556 ], [ 144.826313, 13.574599 ], [ 144.826298, 13.574637 ], [ 144.826298, 13.57468 ], [ 144.826312, 13.574713 ], [ 144.826361, 13.574743 ], [ 144.826439, 13.574777 ], [ 144.826541, 13.574778 ], [ 144.82659, 13.574816 ], [ 144.826653, 13.574831 ], [ 144.826741, 13.574827 ], [ 144.826775, 13.574851 ], [ 144.826844, 13.574866 ], [ 144.826883, 13.574886 ], [ 144.826907, 13.574929 ], [ 144.826921, 13.574977 ], [ 144.826916, 13.575025 ], [ 144.82694, 13.575054 ], [ 144.827008, 13.575092 ], [ 144.827052, 13.575122 ], [ 144.8271, 13.575146 ], [ 144.827198, 13.575151 ], [ 144.827212, 13.575176 ], [ 144.827261, 13.5752 ], [ 144.82729, 13.5752 ], [ 144.827321, 13.57521 ], [ 144.827324, 13.575253 ], [ 144.827367, 13.575363 ], [ 144.827371, 13.575416 ], [ 144.82742, 13.575436 ], [ 144.827469, 13.575412 ], [ 144.827499, 13.575403 ], [ 144.827548, 13.575408 ], [ 144.827605, 13.575504 ], [ 144.827639, 13.575538 ], [ 144.827634, 13.575581 ], [ 144.827604, 13.5756 ], [ 144.827604, 13.575638 ], [ 144.827633, 13.575672 ], [ 144.827672, 13.575686 ], [ 144.827686, 13.57572 ], [ 144.827681, 13.575763 ], [ 144.827705, 13.575811 ], [ 144.827715, 13.57584 ], [ 144.827724, 13.575892 ], [ 144.827763, 13.575936 ], [ 144.827802, 13.575946 ], [ 144.827855, 13.576018 ], [ 144.827908, 13.576047 ], [ 144.827952, 13.576119 ], [ 144.82801, 13.576153 ], [ 144.828083, 13.576154 ], [ 144.828142, 13.576164 ], [ 144.828225, 13.576122 ], [ 144.82828, 13.576074 ], [ 144.828324, 13.576046 ], [ 144.828353, 13.576032 ], [ 144.828422, 13.576032 ], [ 144.828461, 13.576042 ], [ 144.82849, 13.576057 ], [ 144.828534, 13.576072 ], [ 144.828538, 13.576096 ], [ 144.828538, 13.576139 ], [ 144.828523, 13.576182 ], [ 144.828513, 13.576234 ], [ 144.828488, 13.576248 ], [ 144.828463, 13.576291 ], [ 144.828448, 13.576329 ], [ 144.828477, 13.576372 ], [ 144.828472, 13.576415 ], [ 144.828462, 13.576454 ], [ 144.828437, 13.576473 ], [ 144.828403, 13.576515 ], [ 144.828363, 13.576539 ], [ 144.82837, 13.576572 ], [ 144.828316, 13.576629 ], [ 144.828301, 13.576663 ], [ 144.82832, 13.576701 ], [ 144.828403, 13.576764 ], [ 144.828437, 13.576807 ], [ 144.828456, 13.576841 ], [ 144.828519, 13.576865 ], [ 144.828582, 13.576899 ], [ 144.828612, 13.576928 ], [ 144.82866, 13.576934 ], [ 144.828729, 13.57691 ], [ 144.828763, 13.576887 ], [ 144.828788, 13.576849 ], [ 144.828837, 13.576839 ], [ 144.828867, 13.57684 ], [ 144.828911, 13.576802 ], [ 144.828936, 13.576754 ], [ 144.828967, 13.576713 ], [ 144.82897, 13.576711 ], [ 144.828976, 13.576678 ], [ 144.828957, 13.57662 ], [ 144.828932, 13.576577 ], [ 144.828899, 13.576486 ], [ 144.828924, 13.576458 ], [ 144.828978, 13.576434 ], [ 144.829032, 13.576401 ], [ 144.829052, 13.576377 ], [ 144.829091, 13.576354 ], [ 144.82913, 13.576345 ], [ 144.829213, 13.576336 ], [ 144.829243, 13.576312 ], [ 144.829306, 13.576303 ], [ 144.82936, 13.576318 ], [ 144.829424, 13.576328 ], [ 144.829492, 13.576348 ], [ 144.829526, 13.57631 ], [ 144.829585, 13.576325 ], [ 144.82958, 13.576358 ], [ 144.829614, 13.576378 ], [ 144.829687, 13.576373 ], [ 144.829711, 13.576402 ], [ 144.829765, 13.576412 ], [ 144.829824, 13.576408 ], [ 144.829872, 13.576418 ], [ 144.829887, 13.576442 ], [ 144.829887, 13.576466 ], [ 144.829906, 13.576461 ], [ 144.829955, 13.576433 ], [ 144.829965, 13.576409 ], [ 144.830068, 13.57642 ], [ 144.830097, 13.576434 ], [ 144.830122, 13.576435 ], [ 144.83021, 13.576411 ], [ 144.830317, 13.576417 ], [ 144.83039, 13.576442 ], [ 144.830439, 13.57648 ], [ 144.830482, 13.576538 ], [ 144.830506, 13.576577 ], [ 144.830564, 13.576654 ], [ 144.830588, 13.57673 ], [ 144.830637, 13.576764 ], [ 144.830714, 13.576861 ], [ 144.830743, 13.576913 ], [ 144.830796, 13.576971 ], [ 144.830917, 13.57714 ], [ 144.830941, 13.577197 ], [ 144.830984, 13.57725 ], [ 144.831008, 13.577313 ], [ 144.83101, 13.577365 ], [ 144.831053, 13.577437 ], [ 144.831121, 13.577524 ], [ 144.831159, 13.57761 ], [ 144.831217, 13.577711 ], [ 144.831246, 13.577793 ], [ 144.83126, 13.577869 ], [ 144.831308, 13.57798 ], [ 144.831327, 13.578037 ], [ 144.831336, 13.578109 ], [ 144.831335, 13.578152 ], [ 144.831393, 13.578239 ], [ 144.831412, 13.578306 ], [ 144.831426, 13.578373 ], [ 144.83145, 13.578435 ], [ 144.831484, 13.578503 ], [ 144.831517, 13.578584 ], [ 144.831536, 13.578647 ], [ 144.83155, 13.578733 ], [ 144.831554, 13.5788 ], [ 144.831515, 13.578838 ], [ 144.831495, 13.578876 ], [ 144.831395, 13.579128 ], [ 144.831365, 13.579219 ], [ 144.83132, 13.579276 ], [ 144.831291, 13.579295 ], [ 144.831251, 13.579347 ], [ 144.831236, 13.57939 ], [ 144.831216, 13.579418 ], [ 144.831177, 13.579437 ], [ 144.831143, 13.579427 ], [ 144.831026, 13.579417 ], [ 144.830967, 13.579426 ], [ 144.830928, 13.579454 ], [ 144.830868, 13.579535 ], [ 144.830824, 13.579549 ], [ 144.8308, 13.579544 ], [ 144.830765, 13.579567 ], [ 144.830672, 13.5796 ], [ 144.830647, 13.579624 ], [ 144.830603, 13.579647 ], [ 144.830612, 13.5797 ], [ 144.830632, 13.579738 ], [ 144.830685, 13.579763 ], [ 144.830719, 13.579787 ], [ 144.830743, 13.579826 ], [ 144.830762, 13.579869 ], [ 144.830762, 13.579897 ], [ 144.830791, 13.579945 ], [ 144.830815, 13.579998 ], [ 144.830815, 13.580032 ], [ 144.830775, 13.580055 ], [ 144.830648, 13.580054 ], [ 144.830624, 13.580097 ], [ 144.830677, 13.580126 ], [ 144.830731, 13.580146 ], [ 144.83073, 13.580189 ], [ 144.830739, 13.58028 ], [ 144.830763, 13.580323 ], [ 144.830797, 13.580419 ], [ 144.830821, 13.580472 ], [ 144.830835, 13.580515 ], [ 144.830864, 13.580515 ], [ 144.830879, 13.58053 ], [ 144.830864, 13.580577 ], [ 144.830829, 13.580591 ], [ 144.830805, 13.58061 ], [ 144.830824, 13.580673 ], [ 144.830848, 13.58073 ], [ 144.830847, 13.580754 ], [ 144.830823, 13.580783 ], [ 144.830847, 13.580811 ], [ 144.830866, 13.58084 ], [ 144.830905, 13.580879 ], [ 144.830929, 13.580913 ], [ 144.830968, 13.580942 ], [ 144.830924, 13.580975 ], [ 144.830909, 13.581003 ], [ 144.830948, 13.581023 ], [ 144.830962, 13.581042 ], [ 144.830971, 13.581076 ], [ 144.830986, 13.581104 ], [ 144.830985, 13.581147 ], [ 144.830995, 13.581167 ], [ 144.831024, 13.581167 ], [ 144.831058, 13.581191 ], [ 144.831068, 13.581215 ], [ 144.831048, 13.581244 ], [ 144.831043, 13.581277 ], [ 144.831043, 13.58131 ], [ 144.831052, 13.581334 ], [ 144.831047, 13.581354 ], [ 144.830949, 13.581391 ], [ 144.830929, 13.581424 ], [ 144.830948, 13.581472 ], [ 144.830958, 13.581511 ], [ 144.830987, 13.581535 ], [ 144.831001, 13.581568 ], [ 144.831015, 13.581655 ], [ 144.831034, 13.581679 ], [ 144.831059, 13.581679 ], [ 144.831093, 13.581665 ], [ 144.831112, 13.581688 ], [ 144.831065, 13.581753 ], [ 144.831043, 13.58191 ], [ 144.830996, 13.582014 ], [ 144.830995, 13.582139 ], [ 144.831093, 13.582329 ], [ 144.831116, 13.582388 ], [ 144.831209, 13.582422 ], [ 144.831256, 13.582429 ], [ 144.831283, 13.582462 ], [ 144.831275, 13.582534 ], [ 144.831255, 13.582599 ], [ 144.831307, 13.582671 ], [ 144.83134, 13.582744 ], [ 144.83138, 13.582803 ], [ 144.831379, 13.582888 ], [ 144.831419, 13.582941 ], [ 144.831452, 13.583 ], [ 144.83145, 13.583144 ], [ 144.831409, 13.583255 ], [ 144.831449, 13.58334 ], [ 144.831562, 13.583387 ], [ 144.831662, 13.58344 ], [ 144.831681, 13.583571 ], [ 144.83172, 13.583657 ], [ 144.831786, 13.583742 ], [ 144.831799, 13.583821 ], [ 144.831838, 13.583874 ], [ 144.831925, 13.583946 ], [ 144.831924, 13.584038 ], [ 144.831936, 13.58413 ], [ 144.831989, 13.584176 ], [ 144.832056, 13.584216 ], [ 144.832075, 13.584288 ], [ 144.832061, 13.58436 ], [ 144.832083, 13.58451 ], [ 144.832157, 13.584557 ], [ 144.832236, 13.584682 ], [ 144.832248, 13.584747 ], [ 144.832321, 13.58484 ], [ 144.832347, 13.584905 ], [ 144.83242, 13.585004 ], [ 144.832419, 13.585083 ], [ 144.832492, 13.585136 ], [ 144.832505, 13.585181 ], [ 144.832619, 13.585222 ], [ 144.832712, 13.585281 ], [ 144.832811, 13.585387 ], [ 144.832891, 13.585499 ], [ 144.832943, 13.585604 ], [ 144.833228, 13.585849 ], [ 144.833308, 13.585941 ], [ 144.833307, 13.585993 ], [ 144.833337, 13.586059 ], [ 144.833457, 13.586099 ], [ 144.83355, 13.586185 ], [ 144.833589, 13.586258 ], [ 144.833702, 13.58633 ], [ 144.833829, 13.586358 ], [ 144.833902, 13.586437 ], [ 144.833921, 13.586561 ], [ 144.834001, 13.586641 ], [ 144.834013, 13.5867 ], [ 144.834147, 13.586733 ], [ 144.834186, 13.586819 ], [ 144.834325, 13.587036 ], [ 144.834303, 13.587271 ], [ 144.834355, 13.58735 ], [ 144.834469, 13.58741 ], [ 144.834535, 13.587411 ], [ 144.834555, 13.58749 ], [ 144.834514, 13.587555 ], [ 144.83452, 13.58764 ], [ 144.834536, 13.587725 ], [ 144.834622, 13.587863 ], [ 144.834734, 13.587988 ], [ 144.83478, 13.588087 ], [ 144.834912, 13.588271 ], [ 144.834898, 13.588376 ], [ 144.834977, 13.588462 ], [ 144.835023, 13.588593 ], [ 144.835089, 13.588718 ], [ 144.835173, 13.588974 ], [ 144.835206, 13.589059 ], [ 144.835299, 13.589165 ], [ 144.835288, 13.589243 ], [ 144.835254, 13.589334 ], [ 144.835239, 13.589445 ], [ 144.835265, 13.589557 ], [ 144.835318, 13.589642 ], [ 144.835404, 13.589722 ], [ 144.835464, 13.589735 ], [ 144.835551, 13.589795 ], [ 144.835576, 13.589906 ], [ 144.835676, 13.589973 ], [ 144.835609, 13.589998 ], [ 144.835535, 13.590063 ], [ 144.835494, 13.590135 ], [ 144.835553, 13.590266 ], [ 144.835652, 13.590404 ], [ 144.835738, 13.590562 ], [ 144.835817, 13.590694 ], [ 144.835809, 13.590759 ], [ 144.835842, 13.590818 ], [ 144.835976, 13.590852 ], [ 144.836056, 13.590859 ], [ 144.836069, 13.590899 ], [ 144.836035, 13.590964 ], [ 144.835997, 13.591101 ], [ 144.835943, 13.591159 ], [ 144.835962, 13.591225 ], [ 144.836023, 13.591226 ], [ 144.836083, 13.59122 ], [ 144.836149, 13.591279 ], [ 144.836209, 13.591325 ], [ 144.836283, 13.591333 ], [ 144.836356, 13.591399 ], [ 144.836481, 13.59155 ], [ 144.836501, 13.591635 ], [ 144.836473, 13.591701 ], [ 144.836446, 13.591779 ], [ 144.836405, 13.591831 ], [ 144.836385, 13.591883 ], [ 144.836444, 13.591942 ], [ 144.836471, 13.591995 ], [ 144.836456, 13.592073 ], [ 144.836483, 13.592146 ], [ 144.836542, 13.592212 ], [ 144.836562, 13.592284 ], [ 144.836567, 13.592408 ], [ 144.83658, 13.592487 ], [ 144.836633, 13.59252 ], [ 144.836632, 13.592535 ], [ 144.836632, 13.592625 ], [ 144.836651, 13.59271 ], [ 144.836624, 13.592808 ], [ 144.83657, 13.592807 ], [ 144.836527, 13.5928 ], [ 144.83646, 13.592826 ], [ 144.836425, 13.592917 ], [ 144.836438, 13.593002 ], [ 144.836498, 13.593049 ], [ 144.836504, 13.593121 ], [ 144.836537, 13.593193 ], [ 144.836617, 13.593233 ], [ 144.836676, 13.593338 ], [ 144.836682, 13.593436 ], [ 144.836654, 13.593508 ], [ 144.836607, 13.59358 ], [ 144.836546, 13.593651 ], [ 144.836572, 13.593723 ], [ 144.836665, 13.593816 ], [ 144.836664, 13.593894 ], [ 144.836623, 13.593973 ], [ 144.836582, 13.59407 ], [ 144.836568, 13.594155 ], [ 144.836601, 13.594254 ], [ 144.836573, 13.594332 ], [ 144.836512, 13.594403 ], [ 144.836532, 13.594469 ], [ 144.836632, 13.594503 ], [ 144.836732, 13.594504 ], [ 144.836798, 13.594576 ], [ 144.836858, 13.594668 ], [ 144.836917, 13.594715 ], [ 144.836991, 13.594741 ], [ 144.837037, 13.594794 ], [ 144.837083, 13.594899 ], [ 144.837149, 13.594985 ], [ 144.837235, 13.595058 ], [ 144.837362, 13.595104 ], [ 144.837287, 13.595202 ], [ 144.837433, 13.595602 ], [ 144.837481, 13.595657 ], [ 144.837476, 13.595718 ], [ 144.837409, 13.595753 ], [ 144.837353, 13.595825 ], [ 144.837296, 13.59593 ], [ 144.837264, 13.596026 ], [ 144.837353, 13.596162 ], [ 144.837417, 13.596275 ], [ 144.837441, 13.596371 ], [ 144.837481, 13.596419 ], [ 144.837585, 13.596419 ], [ 144.837633, 13.596515 ], [ 144.837738, 13.596636 ], [ 144.83773, 13.596844 ], [ 144.837649, 13.597149 ], [ 144.837569, 13.59735 ], [ 144.837168, 13.59747 ], [ 144.837024, 13.59755 ], [ 144.836895, 13.597663 ], [ 144.836791, 13.597751 ], [ 144.836799, 13.597815 ], [ 144.836799, 13.597927 ], [ 144.836784, 13.598083 ], [ 144.836663, 13.598144 ], [ 144.836638, 13.5982 ], [ 144.836719, 13.598296 ], [ 144.836695, 13.598369 ], [ 144.836727, 13.598441 ], [ 144.836638, 13.598489 ], [ 144.836655, 13.598625 ], [ 144.836646, 13.598722 ], [ 144.836671, 13.59881 ], [ 144.836719, 13.598842 ], [ 144.836783, 13.598906 ], [ 144.836743, 13.59901 ], [ 144.836687, 13.599026 ], [ 144.836695, 13.599147 ], [ 144.836655, 13.599203 ], [ 144.83663, 13.599251 ], [ 144.836606, 13.599315 ], [ 144.836646, 13.599363 ], [ 144.836663, 13.599387 ], [ 144.836622, 13.59946 ], [ 144.836622, 13.599564 ], [ 144.836574, 13.599652 ], [ 144.836534, 13.599732 ], [ 144.836574, 13.599893 ], [ 144.836526, 13.600037 ], [ 144.83651, 13.60011 ], [ 144.83651, 13.600174 ], [ 144.836534, 13.600238 ], [ 144.836574, 13.600334 ], [ 144.836622, 13.60039 ], [ 144.836598, 13.600511 ], [ 144.83655, 13.600559 ], [ 144.836446, 13.600559 ], [ 144.836398, 13.600559 ], [ 144.836406, 13.600623 ], [ 144.83635, 13.600647 ], [ 144.836366, 13.600751 ], [ 144.836342, 13.600864 ], [ 144.836334, 13.600976 ], [ 144.836398, 13.601032 ], [ 144.836422, 13.601088 ], [ 144.836438, 13.601169 ], [ 144.836494, 13.601249 ], [ 144.836542, 13.601417 ], [ 144.836646, 13.601481 ], [ 144.836775, 13.601473 ], [ 144.836815, 13.601538 ], [ 144.836735, 13.601594 ], [ 144.836646, 13.601706 ], [ 144.836562, 13.601821 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "950900", "GEOID10": "66010950900", "NAME10": "9509", "NAMELSAD10": "Census Tract 9509", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 1922592, "AWATER10": 0, "INTPTLAT10": "+13.5167465", "INTPTLON10": "+144.8240084" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.818832, 13.511961 ], [ 144.818745, 13.5122 ], [ 144.818581, 13.51265 ], [ 144.81845, 13.51301 ], [ 144.818442, 13.513029 ], [ 144.818278, 13.513456 ], [ 144.818214, 13.51362 ], [ 144.818023, 13.514115 ], [ 144.81796, 13.51428 ], [ 144.81792, 13.51439 ], [ 144.817898, 13.514448 ], [ 144.817835, 13.514624 ], [ 144.817815, 13.514683 ], [ 144.817775, 13.514794 ], [ 144.817655, 13.515126 ], [ 144.817616, 13.515238 ], [ 144.81748, 13.515616 ], [ 144.81712, 13.51662 ], [ 144.817036, 13.516734 ], [ 144.81701, 13.51677 ], [ 144.81687, 13.5171 ], [ 144.816846, 13.517153 ], [ 144.81679, 13.51728 ], [ 144.816778, 13.517314 ], [ 144.81676, 13.51737 ], [ 144.816741, 13.517422 ], [ 144.816686, 13.51758 ], [ 144.816669, 13.517633 ], [ 144.816636, 13.517728 ], [ 144.816536, 13.518013 ], [ 144.816504, 13.518108 ], [ 144.816401, 13.518404 ], [ 144.81632, 13.51864 ], [ 144.8163, 13.51885 ], [ 144.816272, 13.518926 ], [ 144.816136, 13.519304 ], [ 144.81603, 13.5196 ], [ 144.816022, 13.519624 ], [ 144.815998, 13.519696 ], [ 144.81599, 13.51972 ], [ 144.815948, 13.519833 ], [ 144.815884, 13.520011 ], [ 144.81579, 13.52027 ], [ 144.81569, 13.52036 ], [ 144.81552, 13.52085 ], [ 144.81544, 13.52104 ], [ 144.81541, 13.52114 ], [ 144.81551, 13.52117 ], [ 144.815617, 13.521208 ], [ 144.816234, 13.521427 ], [ 144.81644, 13.5215 ], [ 144.816514, 13.521526 ], [ 144.816736, 13.521604 ], [ 144.816812, 13.521629 ], [ 144.817711, 13.521949 ], [ 144.81825, 13.52214 ], [ 144.818857, 13.522352 ], [ 144.820418, 13.522896 ], [ 144.82086, 13.52305 ], [ 144.82132, 13.523216 ], [ 144.82158, 13.52331 ], [ 144.821731, 13.523363 ], [ 144.82215, 13.52351 ], [ 144.8223, 13.52355 ], [ 144.82248, 13.52359 ], [ 144.82267, 13.52362 ], [ 144.82295, 13.52364 ], [ 144.823003, 13.52364 ], [ 144.82344, 13.52364 ], [ 144.82362, 13.52362 ], [ 144.82406, 13.52352 ], [ 144.824084, 13.523511 ], [ 144.82446, 13.52339 ], [ 144.82476, 13.52324 ], [ 144.82514, 13.52298 ], [ 144.825768, 13.522508 ], [ 144.82578, 13.5225 ], [ 144.826281, 13.522096 ], [ 144.826565, 13.521866 ], [ 144.82712, 13.52142 ], [ 144.827422, 13.521184 ], [ 144.82771, 13.52096 ], [ 144.827839, 13.520856 ], [ 144.828036, 13.520693 ], [ 144.82886, 13.52002 ], [ 144.829018, 13.519893 ], [ 144.829348, 13.519631 ], [ 144.829751, 13.519309 ], [ 144.83028, 13.51889 ], [ 144.830934, 13.518373 ], [ 144.830965, 13.518349 ], [ 144.831375, 13.51803 ], [ 144.83141, 13.518 ], [ 144.83147, 13.51795 ], [ 144.831729, 13.517742 ], [ 144.83252, 13.51711 ], [ 144.83269, 13.516972 ], [ 144.83301, 13.516714 ], [ 144.833319, 13.516464 ], [ 144.83366, 13.51619 ], [ 144.83409, 13.51588 ], [ 144.834283, 13.515764 ], [ 144.83434, 13.51573 ], [ 144.83463, 13.51557 ], [ 144.83475, 13.5155 ], [ 144.83471, 13.51535 ], [ 144.834677, 13.515217 ], [ 144.83461, 13.51494 ], [ 144.83451, 13.5147 ], [ 144.83438, 13.5145 ], [ 144.834315, 13.514435 ], [ 144.83425, 13.51437 ], [ 144.83409, 13.51425 ], [ 144.834018, 13.51422 ], [ 144.833802, 13.51413 ], [ 144.83373, 13.5141 ], [ 144.833603, 13.514055 ], [ 144.833226, 13.513923 ], [ 144.8331, 13.51388 ], [ 144.832857, 13.513794 ], [ 144.8325, 13.51367 ], [ 144.832124, 13.513549 ], [ 144.83188, 13.51347 ], [ 144.831541, 13.513355 ], [ 144.83126, 13.51326 ], [ 144.830527, 13.513006 ], [ 144.83026, 13.512914 ], [ 144.83019, 13.51289 ], [ 144.830118, 13.512865 ], [ 144.829904, 13.51279 ], [ 144.829833, 13.512766 ], [ 144.829768, 13.512743 ], [ 144.829576, 13.512676 ], [ 144.829512, 13.512654 ], [ 144.82939, 13.512611 ], [ 144.829027, 13.512485 ], [ 144.828906, 13.512443 ], [ 144.828795, 13.512404 ], [ 144.828465, 13.512289 ], [ 144.82841, 13.51227 ], [ 144.828356, 13.512251 ], [ 144.828312, 13.512235 ], [ 144.82818, 13.512187 ], [ 144.828137, 13.512172 ], [ 144.828023, 13.512131 ], [ 144.827683, 13.51201 ], [ 144.82757, 13.51197 ], [ 144.827417, 13.511915 ], [ 144.827145, 13.511819 ], [ 144.82709, 13.5118 ], [ 144.826958, 13.511753 ], [ 144.826806, 13.511699 ], [ 144.826475, 13.511581 ], [ 144.8263, 13.51152 ], [ 144.825481, 13.511235 ], [ 144.82515, 13.51112 ], [ 144.82499, 13.51106 ], [ 144.824972, 13.511054 ], [ 144.82467, 13.51095 ], [ 144.824437, 13.510864 ], [ 144.82426, 13.5108 ], [ 144.824244, 13.510796 ], [ 144.824196, 13.510784 ], [ 144.82418, 13.51078 ], [ 144.823318, 13.510479 ], [ 144.82286, 13.51032 ], [ 144.82143, 13.50981 ], [ 144.820735, 13.509578 ], [ 144.81987, 13.50929 ], [ 144.819846, 13.509284 ], [ 144.819774, 13.509266 ], [ 144.81975, 13.50926 ], [ 144.81974, 13.50931 ], [ 144.81973, 13.50935 ], [ 144.81971, 13.509402 ], [ 144.819552, 13.50982 ], [ 144.8195, 13.50996 ], [ 144.81943, 13.510157 ], [ 144.81939, 13.51027 ], [ 144.81924, 13.51074 ], [ 144.819237, 13.510754 ], [ 144.8192, 13.51096 ], [ 144.819174, 13.51103 ], [ 144.819096, 13.51124 ], [ 144.81907, 13.51131 ], [ 144.818913, 13.511739 ], [ 144.818832, 13.511961 ] ] ] } }, +{ "type": "Feature", "properties": { "STATEFP10": "66", "COUNTYFP10": "010", "TRACTCE10": "951100", "GEOID10": "66010951100", "NAME10": "9511", "NAMELSAD10": "Census Tract 9511", "MTFCC10": "G5020", "FUNCSTAT10": "S", "ALAND10": 4937532, "AWATER10": 0, "INTPTLAT10": "+13.5054591", "INTPTLON10": "+144.8364908" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.845792, 13.512679 ], [ 144.84579, 13.51257 ], [ 144.845847, 13.512454 ], [ 144.84585, 13.51245 ], [ 144.845835, 13.512068 ], [ 144.84583, 13.51194 ], [ 144.845824, 13.511541 ], [ 144.845806, 13.510347 ], [ 144.8458, 13.50995 ], [ 144.845799, 13.50969 ], [ 144.845798, 13.509452 ], [ 144.845796, 13.50891 ], [ 144.845795, 13.508651 ], [ 144.845795, 13.508634 ], [ 144.845795, 13.508584 ], [ 144.845795, 13.508568 ], [ 144.845794, 13.508318 ], [ 144.845791, 13.507569 ], [ 144.84579, 13.50732 ], [ 144.84579, 13.507196 ], [ 144.84579, 13.506824 ], [ 144.84579, 13.5067 ], [ 144.845792, 13.506405 ], [ 144.845799, 13.505523 ], [ 144.8458, 13.50542 ], [ 144.84578, 13.50523 ], [ 144.845778, 13.505211 ], [ 144.845772, 13.505157 ], [ 144.84577, 13.50514 ], [ 144.845772, 13.504989 ], [ 144.845779, 13.504539 ], [ 144.84578, 13.50453 ], [ 144.84577, 13.50439 ], [ 144.845771, 13.504323 ], [ 144.845776, 13.504123 ], [ 144.845779, 13.504057 ], [ 144.84578, 13.50402 ], [ 144.845783, 13.504014 ], [ 144.84583, 13.50395 ], [ 144.845873, 13.503923 ], [ 144.84591, 13.5039 ], [ 144.845957, 13.503897 ], [ 144.84608, 13.50389 ], [ 144.8461, 13.50389 ], [ 144.846148, 13.50389 ], [ 144.8463, 13.50389 ], [ 144.846758, 13.50389 ], [ 144.84682, 13.50389 ], [ 144.84691, 13.50388 ], [ 144.847274, 13.503898 ], [ 144.84749, 13.50391 ], [ 144.84821, 13.5041 ], [ 144.84833, 13.50411 ], [ 144.848342, 13.504109 ], [ 144.8485, 13.5041 ], [ 144.84859, 13.50407 ], [ 144.84869, 13.50402 ], [ 144.84875, 13.504074 ], [ 144.84893, 13.504236 ], [ 144.84899, 13.50429 ], [ 144.849793, 13.504234 ], [ 144.85021, 13.50422 ], [ 144.850459, 13.504118 ], [ 144.850648, 13.503925 ], [ 144.850655, 13.503887 ], [ 144.850732, 13.503493 ], [ 144.850955, 13.502329 ], [ 144.852219, 13.502296 ], [ 144.853953, 13.502256 ], [ 144.854168, 13.503041 ], [ 144.854217, 13.503219 ], [ 144.854401, 13.503896 ], [ 144.854516, 13.504025 ], [ 144.854621, 13.504067 ], [ 144.855249, 13.504047 ], [ 144.856483, 13.50398 ], [ 144.857174, 13.503944 ], [ 144.857226, 13.501026 ], [ 144.857127, 13.501014 ], [ 144.85709, 13.50101 ], [ 144.85688, 13.49983 ], [ 144.856906, 13.499578 ], [ 144.855134, 13.498752 ], [ 144.85496, 13.49877 ], [ 144.854812, 13.498802 ], [ 144.85469, 13.49883 ], [ 144.85439, 13.49893 ], [ 144.854379, 13.498932 ], [ 144.854233, 13.498969 ], [ 144.853162, 13.499107 ], [ 144.849802, 13.497959 ], [ 144.848603, 13.497642 ], [ 144.84487, 13.49848 ], [ 144.84464, 13.49852 ], [ 144.844631, 13.498521 ], [ 144.84414, 13.49864 ], [ 144.843927, 13.498696 ], [ 144.8438, 13.49873 ], [ 144.84369, 13.49873 ], [ 144.843547, 13.498743 ], [ 144.84348, 13.49875 ], [ 144.843137, 13.498755 ], [ 144.843117, 13.498749 ], [ 144.84298, 13.49871 ], [ 144.842617, 13.498611 ], [ 144.842495, 13.498579 ], [ 144.842261, 13.498535 ], [ 144.842077, 13.498499 ], [ 144.841921, 13.498508 ], [ 144.841794, 13.4985 ], [ 144.84085, 13.49844 ], [ 144.840477, 13.498403 ], [ 144.84004, 13.49836 ], [ 144.839868, 13.49835 ], [ 144.839352, 13.498321 ], [ 144.83933, 13.49832 ], [ 144.839181, 13.498307 ], [ 144.839098, 13.498299 ], [ 144.838852, 13.498277 ], [ 144.83877, 13.49827 ], [ 144.8381, 13.49822 ], [ 144.837993, 13.498208 ], [ 144.83783, 13.49819 ], [ 144.83767, 13.49815 ], [ 144.83744, 13.49814 ], [ 144.83709, 13.49815 ], [ 144.8366, 13.4981 ], [ 144.83593, 13.49807 ], [ 144.835668, 13.498049 ], [ 144.834892, 13.497989 ], [ 144.834833, 13.497984 ], [ 144.834793, 13.497967 ], [ 144.834625, 13.497931 ], [ 144.834675, 13.498628 ], [ 144.834717, 13.499194 ], [ 144.834707, 13.499253 ], [ 144.834657, 13.499575 ], [ 144.834631, 13.499749 ], [ 144.832338, 13.499597 ], [ 144.832156, 13.499586 ], [ 144.83163, 13.49959 ], [ 144.830164, 13.49951 ], [ 144.828989, 13.499436 ], [ 144.827982, 13.499393 ], [ 144.82564, 13.49926 ], [ 144.82508, 13.499236 ], [ 144.824877, 13.49988 ], [ 144.824807, 13.500117 ], [ 144.824507, 13.501141 ], [ 144.824471, 13.501285 ], [ 144.824078, 13.501387 ], [ 144.823874, 13.501332 ], [ 144.823674, 13.501266 ], [ 144.82351, 13.50119 ], [ 144.823116, 13.500946 ], [ 144.823023, 13.500867 ], [ 144.822829, 13.500746 ], [ 144.822333, 13.500226 ], [ 144.822061, 13.499777 ], [ 144.82186, 13.499581 ], [ 144.821127, 13.499049 ], [ 144.820769, 13.498786 ], [ 144.820339, 13.498554 ], [ 144.820267, 13.498518 ], [ 144.820189, 13.498479 ], [ 144.820154, 13.498579 ], [ 144.820135, 13.49866 ], [ 144.820122, 13.498722 ], [ 144.82008, 13.49892 ], [ 144.820077, 13.498935 ], [ 144.82003, 13.49924 ], [ 144.819979, 13.499581 ], [ 144.819948, 13.499797 ], [ 144.819898, 13.500133 ], [ 144.81983, 13.5006 ], [ 144.81977, 13.50092 ], [ 144.819742, 13.501143 ], [ 144.81974, 13.50116 ], [ 144.81971, 13.50145 ], [ 144.819709, 13.501482 ], [ 144.8197, 13.5017 ], [ 144.81968, 13.50184 ], [ 144.81968, 13.501846 ], [ 144.81971, 13.50206 ], [ 144.81975, 13.50221 ], [ 144.81987, 13.50251 ], [ 144.81999, 13.50255 ], [ 144.82014, 13.502782 ], [ 144.82034, 13.50309 ], [ 144.820366, 13.503127 ], [ 144.820444, 13.503242 ], [ 144.82047, 13.50328 ], [ 144.820586, 13.503444 ], [ 144.820669, 13.503562 ], [ 144.82092, 13.50392 ], [ 144.820932, 13.503939 ], [ 144.82104, 13.50411 ], [ 144.82106, 13.504142 ], [ 144.82109, 13.50419 ], [ 144.821116, 13.504243 ], [ 144.821134, 13.504278 ], [ 144.821146, 13.504302 ], [ 144.82116, 13.50433 ], [ 144.821179, 13.504375 ], [ 144.82119, 13.5044 ], [ 144.821204, 13.504443 ], [ 144.82122, 13.50449 ], [ 144.821243, 13.504574 ], [ 144.821256, 13.504619 ], [ 144.82127, 13.50467 ], [ 144.821282, 13.504813 ], [ 144.82129, 13.5049 ], [ 144.8213, 13.50513 ], [ 144.821224, 13.505391 ], [ 144.82117, 13.50558 ], [ 144.821085, 13.505811 ], [ 144.82093, 13.50624 ], [ 144.820829, 13.506504 ], [ 144.820742, 13.506735 ], [ 144.820725, 13.506777 ], [ 144.820676, 13.506905 ], [ 144.82066, 13.506948 ], [ 144.820595, 13.507116 ], [ 144.820403, 13.507621 ], [ 144.82034, 13.50779 ], [ 144.820303, 13.507894 ], [ 144.82026, 13.50802 ], [ 144.82016, 13.50813 ], [ 144.820141, 13.508178 ], [ 144.820103, 13.508283 ], [ 144.82003, 13.508477 ], [ 144.81986, 13.50894 ], [ 144.819817, 13.509063 ], [ 144.81975, 13.50926 ], [ 144.819774, 13.509266 ], [ 144.819846, 13.509284 ], [ 144.81987, 13.50929 ], [ 144.820735, 13.509578 ], [ 144.82143, 13.50981 ], [ 144.82286, 13.51032 ], [ 144.823318, 13.510479 ], [ 144.82418, 13.51078 ], [ 144.824196, 13.510784 ], [ 144.824244, 13.510796 ], [ 144.82426, 13.5108 ], [ 144.824437, 13.510864 ], [ 144.82467, 13.51095 ], [ 144.824972, 13.511054 ], [ 144.82499, 13.51106 ], [ 144.82515, 13.51112 ], [ 144.825481, 13.511235 ], [ 144.8263, 13.51152 ], [ 144.826475, 13.511581 ], [ 144.826806, 13.511699 ], [ 144.826958, 13.511753 ], [ 144.82709, 13.5118 ], [ 144.827145, 13.511819 ], [ 144.827417, 13.511915 ], [ 144.82757, 13.51197 ], [ 144.827683, 13.51201 ], [ 144.828023, 13.512131 ], [ 144.828137, 13.512172 ], [ 144.82818, 13.512187 ], [ 144.828312, 13.512235 ], [ 144.828356, 13.512251 ], [ 144.82841, 13.51227 ], [ 144.828465, 13.512289 ], [ 144.828795, 13.512404 ], [ 144.828906, 13.512443 ], [ 144.829027, 13.512485 ], [ 144.82939, 13.512611 ], [ 144.829512, 13.512654 ], [ 144.829576, 13.512676 ], [ 144.829768, 13.512743 ], [ 144.829833, 13.512766 ], [ 144.829904, 13.51279 ], [ 144.830118, 13.512865 ], [ 144.83019, 13.51289 ], [ 144.83026, 13.512914 ], [ 144.830527, 13.513006 ], [ 144.83126, 13.51326 ], [ 144.831541, 13.513355 ], [ 144.83188, 13.51347 ], [ 144.832124, 13.513549 ], [ 144.8325, 13.51367 ], [ 144.832857, 13.513794 ], [ 144.8331, 13.51388 ], [ 144.833226, 13.513923 ], [ 144.833603, 13.514055 ], [ 144.83373, 13.5141 ], [ 144.833802, 13.51413 ], [ 144.834018, 13.51422 ], [ 144.83409, 13.51425 ], [ 144.83425, 13.51437 ], [ 144.834315, 13.514435 ], [ 144.83438, 13.5145 ], [ 144.83451, 13.5147 ], [ 144.83461, 13.51494 ], [ 144.834677, 13.515217 ], [ 144.83471, 13.51535 ], [ 144.83475, 13.5155 ], [ 144.83511, 13.51535 ], [ 144.835129, 13.515343 ], [ 144.83556, 13.5152 ], [ 144.83617, 13.51505 ], [ 144.836317, 13.515018 ], [ 144.836719, 13.514933 ], [ 144.837026, 13.514867 ], [ 144.83744, 13.51478 ], [ 144.83795, 13.514675 ], [ 144.838259, 13.514612 ], [ 144.838295, 13.514604 ], [ 144.838405, 13.514582 ], [ 144.838442, 13.514575 ], [ 144.838478, 13.514567 ], [ 144.838586, 13.514545 ], [ 144.838623, 13.514538 ], [ 144.83864, 13.514534 ], [ 144.838692, 13.514523 ], [ 144.83871, 13.51452 ], [ 144.838769, 13.514505 ], [ 144.838947, 13.514463 ], [ 144.839007, 13.514449 ], [ 144.839019, 13.514445 ], [ 144.839055, 13.514437 ], [ 144.839068, 13.514435 ], [ 144.83934, 13.51437 ], [ 144.839348, 13.514368 ], [ 144.8398, 13.51428 ], [ 144.840203, 13.514239 ], [ 144.84049, 13.51421 ], [ 144.840978, 13.514217 ], [ 144.84115, 13.51422 ], [ 144.84235, 13.51428 ], [ 144.842441, 13.514283 ], [ 144.84293, 13.5143 ], [ 144.843073, 13.514308 ], [ 144.843506, 13.514332 ], [ 144.84365, 13.51434 ], [ 144.84364, 13.51427 ], [ 144.843875, 13.514283 ], [ 144.84451, 13.51432 ], [ 144.844791, 13.514346 ], [ 144.845097, 13.514375 ], [ 144.845242, 13.514388 ], [ 144.84536, 13.5144 ], [ 144.84568, 13.514436 ], [ 144.845826, 13.514453 ], [ 144.845818, 13.514076 ], [ 144.845797, 13.512946 ], [ 144.845792, 13.512679 ] ] ] } } +] +} diff --git a/data/data-pipeline/data_pipeline/tests/sources/census_decennial/test_etl.py b/data/data-pipeline/data_pipeline/tests/sources/census_decennial/test_etl.py index 4f489674..feb3f8d9 100644 --- a/data/data-pipeline/data_pipeline/tests/sources/census_decennial/test_etl.py +++ b/data/data-pipeline/data_pipeline/tests/sources/census_decennial/test_etl.py @@ -10,6 +10,11 @@ from data_pipeline.etl.sources.census_decennial.etl import CensusDecennialETL from data_pipeline.score import field_names +def _check_fields_exist(df: pd.DataFrame, field_names: list): + for field in field_names: + assert field in df.columns + + @pytest.fixture def territory_params_fixture(): return [ @@ -31,25 +36,39 @@ def territory_params_fixture(): @pytest.fixture -def extract_path_fixture(): +def extract_path_fixture() -> Path: return Path(__file__).parents[0] / "data/extract" @pytest.fixture -def transform_path_fixture(): +def transform_path_fixture() -> Path: return Path(__file__).parents[0] / "data/transform" @pytest.fixture -def transformed_data_fixture(transform_path_fixture): - """Load the test data and call the ETL transform""" - dec = CensusDecennialETL() - dec.df_all = pd.read_csv( +def imputed_path_fixture() -> Path: + return Path(__file__).parents[0] / "data/imputation" + + +@pytest.fixture +def extracted_data_fixture( + transform_path_fixture: pd.DataFrame, +) -> pd.DataFrame: + return pd.read_csv( transform_path_fixture / "usa.csv", # Make sure these columns are string as expected of the original dtype={"state": "object", "county": "object", "tract": "object"}, ) - dec.transform() + + +@pytest.fixture +def transformed_data_fixture( + extracted_data_fixture: pd.DataFrame, imputed_path_fixture: Path +) -> pd.DataFrame: + """Load the test data and call the ETL transform""" + dec = CensusDecennialETL() + dec.df_all = extracted_data_fixture + dec.transform(imputed_path_fixture / "census-us-territory-geojson.json") return dec.df_all @@ -67,7 +86,7 @@ def test_no_files_found(territory_params_fixture): ) -def test_load_data(extract_path_fixture, territory_params_fixture): +def test_load_data(extract_path_fixture: Path, territory_params_fixture): """Test the ETL loads and translates the data""" dec = CensusDecennialETL() dec.extract( @@ -103,10 +122,10 @@ def test_load_data(extract_path_fixture, territory_params_fixture): ).any() -############### +################# # Transform tests -############### -def test_geo_tract_generation(transformed_data_fixture): +################# +def test_geo_tract_generation(transformed_data_fixture: pd.DataFrame): result = transformed_data_fixture assert field_names.GEOID_TRACT_FIELD in result.columns assert result[field_names.GEOID_TRACT_FIELD].notnull().all() @@ -118,7 +137,7 @@ def test_geo_tract_generation(transformed_data_fixture): ) -def test_merge_tracts(transformed_data_fixture): +def test_merge_tracts(transformed_data_fixture: pd.DataFrame): result = transformed_data_fixture # 69120950200 exists, but the tract split does now assert ( @@ -138,15 +157,103 @@ def test_merge_tracts(transformed_data_fixture): ) -def test_remove_invalid_values(transformed_data_fixture): +def test_remove_invalid_values(transformed_data_fixture: pd.DataFrame): numeric_df = transformed_data_fixture.select_dtypes(include="number") assert not (numeric_df < -999).any().any() -def test_race_fields(transformed_data_fixture): +def test_race_fields(transformed_data_fixture: pd.DataFrame): for race_field_name in OUTPUT_RACE_FIELDS: assert race_field_name in transformed_data_fixture.columns assert any( col.startswith(field_names.PERCENT_PREFIX + race_field_name) for col in transformed_data_fixture.columns ) + + +def test_transformation_fields(transformed_data_fixture: pd.DataFrame): + _check_fields_exist( + transformed_data_fixture, + [ + field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_100_FPL_FIELD_2019, + field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_200_FPL_FIELD_2019, + field_names.CENSUS_DECENNIAL_HIGH_SCHOOL_ED_FIELD_2019, + field_names.CENSUS_DECENNIAL_UNEMPLOYMENT_FIELD_2019, + field_names.CENSUS_DECENNIAL_AREA_MEDIAN_INCOME_PERCENT_FIELD_2019, + DEC_FIELD_NAMES.COLLEGE_ATTENDANCE_POPULATION, + DEC_FIELD_NAMES.COLLEGE_ATTENDANCE_PERCENT, + ], + ) + + +################## +# Imputation tests +################## +def test_merge_geojson(transformed_data_fixture: pd.DataFrame): + _check_fields_exist(transformed_data_fixture, ["STATEFP10", "COUNTYFP10"]) + + +def test_imputation_added(transformed_data_fixture: pd.DataFrame): + assert ( + DEC_FIELD_NAMES.IMPUTED_PERCENTAGE_HOUSEHOLDS_BELOW_200_PERC_POVERTY_LEVEL + in transformed_data_fixture.columns + ) + + # All rows with population > 0 need to have an value (real or imputed) + df_has_pop = transformed_data_fixture[ + transformed_data_fixture[ + field_names.CENSUS_DECENNIAL_TOTAL_POPULATION_FIELD_2019 + ] + > 0 + ] + assert ( + df_has_pop[ + DEC_FIELD_NAMES.IMPUTED_PERCENTAGE_HOUSEHOLDS_BELOW_200_PERC_POVERTY_LEVEL + ] + .notnull() + .all() + ) + + # The imputed value equals the real value when available + df_has_real_data = transformed_data_fixture[ + transformed_data_fixture[ + field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_200_FPL_FIELD_2019 + ].notnull() + ] + assert ( + df_has_real_data[ + DEC_FIELD_NAMES.IMPUTED_PERCENTAGE_HOUSEHOLDS_BELOW_200_PERC_POVERTY_LEVEL + ] + == df_has_real_data[ + field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_200_FPL_FIELD_2019 + ] + ).all() + + # The imputed value exists when no real value exists + df_missing_data = transformed_data_fixture[ + transformed_data_fixture[ + field_names.CENSUS_DECENNIAL_POVERTY_LESS_THAN_200_FPL_FIELD_2019 + ].isnull() + ] + assert ( + df_missing_data[ + df_missing_data[ + DEC_FIELD_NAMES.IMPUTED_PERCENTAGE_HOUSEHOLDS_BELOW_200_PERC_POVERTY_LEVEL + ].notnull() + ][ + DEC_FIELD_NAMES.IMPUTED_PERCENTAGE_HOUSEHOLDS_BELOW_200_PERC_POVERTY_LEVEL + ] + .notnull() + .all() + ) + + # Test the imputation flag is set + df_missing_no_pop = df_missing_data[ + df_missing_data[ + field_names.CENSUS_DECENNIAL_TOTAL_POPULATION_FIELD_2019 + ] + > 0 + ] + assert df_missing_no_pop[ + field_names.ISLAND_AREAS_IMPUTED_INCOME_FLAG_FIELD + ].all() From 999c1f6deeef22b0eb637e5e7fb1268d4cad67c3 Mon Sep 17 00:00:00 2001 From: ericiwamoto <100735505+ericiwamoto@users.noreply.github.com> Date: Fri, 22 Nov 2024 08:39:39 -0800 Subject: [PATCH 11/28] Staging Data Pipeline --- .github/workflows/deploy_backend_main.yml | 126 ++++++++++++++++++++++ 1 file changed, 126 insertions(+) create mode 100644 .github/workflows/deploy_backend_main.yml diff --git a/.github/workflows/deploy_backend_main.yml b/.github/workflows/deploy_backend_main.yml new file mode 100644 index 00000000..fb928dc3 --- /dev/null +++ b/.github/workflows/deploy_backend_main.yml @@ -0,0 +1,126 @@ +name: Deploy Backend Main +on: + workflow_dispatch: + inputs: + score_version: + description: "Which version of the score are you generating?" + required: true + default: '2.0' + type: choice + options: + - beta + - 1.0 + - 2.0 + - test + +env: + CENSUS_API_KEY: ${{ secrets.CENSUS_API_KEY }} + J40_VERSION_LABEL_STRING: ${{ inputs.score_version }} + +jobs: + generate-score-tiles: + runs-on: ubuntu-latest + defaults: + run: + working-directory: data/data-pipeline + strategy: + matrix: + python-version: [3.10] + steps: + - name: Checkout source + uses: actions/checkout@v2 + - name: Print variables to help debug + uses: hmarr/debug-action@v2 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + - name: Load cached Poetry installation + id: cached-poetry-dependencies + uses: actions/cache@v4 + with: + path: ~/.cache/pypoetry/virtualenvs + key: env-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}-${{ hashFiles('.github/workflows/deploy_backend_main.yml') }} + - name: Install poetry + uses: snok/install-poetry@v1 + - name: Print Poetry settings + run: poetry show -v + - name: Install dependencies + run: poetry add s4cmd && poetry install + if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' + - name: Configure AWS Credentials + uses: aws-actions/configure-aws-credentials@v1 + with: + aws-access-key-id: ${{ secrets.DATA_DEV_AWS_ACCESS_KEY_ID }} + aws-secret-access-key: ${{ secrets.DATA_DEV_AWS_SECRET_ACCESS_KEY }} + aws-region: us-east-1 + - name: Install GDAL/ogr2ogr + run: | + sudo apt-get update + sudo apt-get -y install gdal-bin + ogrinfo --version + - name: Generate Score + run: | + poetry run python3 data_pipeline/application.py score-full-run + - name: Generate Score Post + run: | + poetry run python3 data_pipeline/application.py generate-score-post -s aws + - name: Confirm we generated the version of the score we think we did + if: ${{ env.J40_VERSION_LABEL_STRING == '1.0' || env.J40_VERSION_LABEL_STRING == 'test' }} + run: | + grep "Identified as disadvantaged due to tribal overlap" data_pipeline/data/score/downloadable/* > /dev/null + - name: Confirm we generated the version of the score we think we did + if: ${{ env.J40_VERSION_LABEL_STRING == '2.0' || env.J40_VERSION_LABEL_STRING == 'beta' }} + run: | + grep -v "Identified as disadvantaged due to tribal overlap" data_pipeline/data/score/downloadable/* > /dev/null + - name: Generate Score Geo + run: | + poetry run python3 data_pipeline/application.py geo-score + - name: Run smoketest for 1.0 + if: ${{ env.J40_VERSION_LABEL_STRING == '1.0' || env.J40_VERSION_LABEL_STRING == 'test' }} + run: | + poetry run pytest data_pipeline/ -m smoketest + - name: Deploy Score to Geoplatform AWS + run: | + poetry run s4cmd put ./data_pipeline/data/score/csv/ s3://${{secrets.S3_DATA_BUCKET}}/data-versions/${{env.J40_VERSION_LABEL_STRING}}/data/score/csv --recursive --force + poetry run s4cmd put ./data_pipeline/files/ s3://${{secrets.S3_DATA_BUCKET}}/data-versions/${{env.J40_VERSION_LABEL_STRING}}/data/score/downloadable --recursive --force + poetry run s4cmd put ./data_pipeline/data/score/downloadable/ s3://${{secrets.S3_DATA_BUCKET}}/data-versions/${{env.J40_VERSION_LABEL_STRING}}/data/score/downloadable --recursive --force + - name: Confirm we generated the version of the score we think we did + if: ${{ env.J40_VERSION_LABEL_STRING == '1.0' || env.J40_VERSION_LABEL_STRING == 'test' }} + run: | + curl "${{secrets.DATA_URL}}/data-versions/1.0/data/score/downloadable/1.0-shapefile-codebook.zip" -s -f -I -o /dev/null && \ + curl "${{secrets.DATA_URL}}/data-versions/1.0/data/score/downloadable/1.0-communities.xlsx" -s -f -I -o /dev/null && \ + curl "${{secrets.DATA_URL}}/data-versions/1.0/data/score/downloadable/1.0-communities.csv" -s -f -I -o /dev/null && \ + curl "${{secrets.DATA_URL}}/data-versions/1.0/data/score/downloadable/1.0-shapefile-codebook.zip" -s -f -I -o /dev/null && \ + curl "${{secrets.DATA_URL}}/data-versions/1.0/data/score/downloadable/cejst-technical-support-document.pdf" -s -f -I -o /dev/null && \ + curl "${{secrets.DATA_URL}}/data-versions/1.0/data/score/downloadable/draft-communities-list.pdf" -s -f -I -o /dev/null + - name: Confirm we generated the version of the score we think we did + if: ${{ env.J40_VERSION_LABEL_STRING == '2.0' || env.J40_VERSION_LABEL_STRING == 'beta' }} + run: | + curl "${{secrets.DATA_URL}}/data-versions/2.0/data/score/downloadable/2.0-data-documentation.zip" -s -f -I -o /dev/null && \ + curl "${{secrets.DATA_URL}}/data-versions/2.0/data/score/downloadable/2.0-shapefile-codebook.zip" -s -f -I -o /dev/null + - name: Set timezone for tippecanoe + uses: szenius/set-timezone@v1.0 + with: + timezoneLinux: "America/Los_Angeles" + - name: Get tippecanoe + run: | + sudo apt-get install -y software-properties-common libsqlite3-dev zlib1g-dev + sudo apt-add-repository -y ppa:git-core/ppa + sudo mkdir -p /tmp/tippecanoe-src + sudo git clone https://github.com/mapbox/tippecanoe.git /tmp/tippecanoe-src + - name: Make tippecanoe + working-directory: /tmp/tippecanoe-src + run: | + sudo /usr/bin/bash -c make + mkdir -p /usr/local/bin + cp tippecanoe /usr/local/bin/tippecanoe + tippecanoe -v + - name: Generate Tiles + run: | + poetry run python3 data_pipeline/application.py generate-map-tiles + - name: Deploy Map to Geoplatform AWS + run: | + poetry run s4cmd put ./data_pipeline/data/score/geojson/ s3://${{secrets.S3_DATA_BUCKET}}/data-versions/${{env.J40_VERSION_LABEL_STRING}}/data/score/geojson --recursive --force --num-threads=250 + poetry run s4cmd put ./data_pipeline/data/score/shapefile/ s3://${{secrets.S3_DATA_BUCKET}}/data-versions/${{env.J40_VERSION_LABEL_STRING}}/data/score/shapefile --recursive --force + poetry run s4cmd put ./data_pipeline/data/score/tiles/ s3://${{secrets.S3_DATA_BUCKET}}/data-versions/${{env.J40_VERSION_LABEL_STRING}}/data/score/tiles --recursive --force --num-threads=250 From 1f5df1195448b088b689fefea74c516c93a2abf3 Mon Sep 17 00:00:00 2001 From: ericiwamoto <100735505+ericiwamoto@users.noreply.github.com> Date: Mon, 25 Nov 2024 08:17:15 -0800 Subject: [PATCH 12/28] Fix data pipeline first-run errors --- .github/workflows/deploy_backend_main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy_backend_main.yml b/.github/workflows/deploy_backend_main.yml index fb928dc3..e2f0245a 100644 --- a/.github/workflows/deploy_backend_main.yml +++ b/.github/workflows/deploy_backend_main.yml @@ -25,14 +25,14 @@ jobs: working-directory: data/data-pipeline strategy: matrix: - python-version: [3.10] + python-version: ['3.10'] steps: - name: Checkout source - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Print variables to help debug - uses: hmarr/debug-action@v2 + uses: hmarr/debug-action@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Load cached Poetry installation From 3654aac8190a0e3e0e3196e66484131e6ffe288e Mon Sep 17 00:00:00 2001 From: ericiwamoto <100735505+ericiwamoto@users.noreply.github.com> Date: Mon, 25 Nov 2024 12:56:50 -0800 Subject: [PATCH 13/28] More data pipeline fixes --- .github/workflows/deploy_backend_main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/deploy_backend_main.yml b/.github/workflows/deploy_backend_main.yml index e2f0245a..a3077ca2 100644 --- a/.github/workflows/deploy_backend_main.yml +++ b/.github/workflows/deploy_backend_main.yml @@ -26,6 +26,7 @@ jobs: strategy: matrix: python-version: ['3.10'] + environment: Staging steps: - name: Checkout source uses: actions/checkout@v4 @@ -59,6 +60,9 @@ jobs: sudo apt-get update sudo apt-get -y install gdal-bin ogrinfo --version + - name: Get Census Data + run: | + poetry run python3 data_pipeline/application.py pull-census-data -s aws - name: Generate Score run: | poetry run python3 data_pipeline/application.py score-full-run From 313f4f7c8fceace299cbd0d7ac9af65990f33998 Mon Sep 17 00:00:00 2001 From: ericiwamoto <100735505+ericiwamoto@users.noreply.github.com> Date: Tue, 26 Nov 2024 09:36:42 -0800 Subject: [PATCH 14/28] Null frontend change to trigger workflow --- client/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/client/README.md b/client/README.md index 48b8d7e3..da2079b3 100644 --- a/client/README.md +++ b/client/README.md @@ -214,6 +214,7 @@ When developing, to use a flag: 6. Set breakpoints in VS code! + ## Package Versions The following attemps to explain why certain packages versions have been chosen and what their current limitations are From 35f1cffbb451704b8c3e8de3e96f9d41c9d4fc8d Mon Sep 17 00:00:00 2001 From: Carlos Felix <63804190+carlosfelix2@users.noreply.github.com> Date: Tue, 26 Nov 2024 13:51:00 -0500 Subject: [PATCH 15/28] Comparison tool can use local files instead of downloading production score --- .../data-pipeline/data_pipeline/comparator.py | 96 +++++++++++-------- 1 file changed, 56 insertions(+), 40 deletions(-) diff --git a/data/data-pipeline/data_pipeline/comparator.py b/data/data-pipeline/data_pipeline/comparator.py index 6cf184b6..6aa85ffd 100644 --- a/data/data-pipeline/data_pipeline/comparator.py +++ b/data/data-pipeline/data_pipeline/comparator.py @@ -2,6 +2,7 @@ import sys import click import difflib import pandas as pd +from pathlib import Path from data_pipeline.etl.score import constants from data_pipeline.utils import get_module_logger, download_file_from_url @@ -16,6 +17,22 @@ pd.set_option("display.width", 10000) pd.set_option("display.colheader_justify", "left") +def _read_from_file(file_path: Path): + """Read a CSV file into a Dataframe.""" + if not file_path.is_file(): + logger.error( + f"- No score file exists at {file_path}. " + "Please generate the score and try again." + ) + sys.exit(1) + return pd.read_csv( + file_path, + index_col="GEOID10_TRACT", + dtype={"GEOID10_TRACT": str}, + low_memory=False, + ).sort_index() + + @click.group() def cli(): """ @@ -33,8 +50,22 @@ def cli(): default="1.0", required=False, type=str, + help="Set the production score version to compare to", ) -def compare_score(compare_to_version: str): +@click.option( + "-f", + "--compare_to_file", + type=click.Path(exists=True, dir_okay=False, path_type=Path), + help="Compare to the specified score CSV file instead of downloading from production", +) +@click.option( + "-l", + "--local_score_file", + type=click.Path(exists=True, dir_okay=False, path_type=Path), + default=constants.DATA_SCORE_CSV_FULL_FILE_PATH, + help="Compare to the specified score CSV file instead of downloading from production", +) +def compare_score(compare_to_version: str, compare_to_file: str, local_score_file: str): """Compares the score in the production environment to the locally generated score. The algorithm is pretty simple: @@ -56,39 +87,25 @@ def compare_score(compare_to_version: str): log_title("Compare Score", "Compare production score to local score") - locally_generated_score_path = constants.DATA_SCORE_CSV_FULL_FILE_PATH - if not locally_generated_score_path.is_file(): - logger.error( - f"- No score file exists at {locally_generated_score_path}. Please generate the score and try again." + if compare_to_file: + log_info(f"Comparing to file {compare_to_file}...") + production_score_path = compare_to_file + else: + # TODO: transition to downloader code when it's available + production_score_url = f"https://justice40-data.s3.amazonaws.com/data-versions/{compare_to_version}/data/score/csv/full/usa.csv" + production_score_path = WORKING_PATH / "usa.csv" + + log_info(f"Fetching score version {compare_to_version} from AWS") + production_score_path.parent.mkdir(parents=True, exist_ok=True) + download_file_from_url( + file_url=production_score_url, + download_file_name=production_score_path, ) - sys.exit(1) - # TODO: transition to downloader code when it's available - production_score_url = f"https://justice40-data.s3.amazonaws.com/data-versions/{compare_to_version}/data/score/csv/full/usa.csv" - production_score_path = ( - WORKING_PATH / f"prod-score-csv-full-{compare_to_version}-usa.csv" - ) - - log_info(f"Fetching score version {compare_to_version} from AWS") - production_score_path.parent.mkdir(parents=True, exist_ok=True) - download_file_from_url( - file_url=production_score_url, download_file_name=production_score_path - ) - - log_info("Loading files into pandas for comparisons") - - local_score_df = pd.read_csv( - locally_generated_score_path, - index_col="GEOID10_TRACT", - dtype={"GEOID10_TRACT": str}, - low_memory=False, - ).sort_index() - production_score_df = pd.read_csv( - production_score_path, - index_col="GEOID10_TRACT", - dtype={"GEOID10_TRACT": str}, - low_memory=False, - ).sort_index() + log_info(f"Loading local score from {local_score_file}") + local_score_df = _read_from_file(local_score_file) + log_info(f"Loading production score from {production_score_path}") + production_score_df = _read_from_file(production_score_path) # Because of variations in Python versions and machine-level calculations, some of # our numbers can be really close but not the same. That throws off our comparisons. @@ -241,17 +258,16 @@ def compare_score(compare_to_version: str): summary += "* I compared all values across all census tracts." summary += f" There are {len(comparison_results_df.index):,} tracts with at least one difference." summary += " Please examine the logs or run the score comparison locally to view them all.\n" + log_info( f"There are {len(comparison_results_df.index)} rows with any differences." ) - - log_info("Those differences are:") - log_info("\n" + str(comparison_results_df)) - - comparison_path = WORKING_PATH / "deltas.csv" - comparison_results_df.to_csv(path_or_buf=comparison_path) - - log_info(f"Wrote comparison results to {comparison_path}") + if len(comparison_results_df.index) > 0: + log_info("Those differences are:") + log_info("\n" + str(comparison_results_df)) + comparison_path = WORKING_PATH / "deltas.csv" + comparison_results_df.to_csv(path_or_buf=comparison_path) + log_info(f"Wrote comparison results to {comparison_path}") except ValueError as e: summary += "* I could not run a full comparison. This is likely because there are column or index (census tract) differences." From dd6af869d782c6108a574486128d8b5330db8304 Mon Sep 17 00:00:00 2001 From: Carlos Felix <63804190+carlosfelix2@users.noreply.github.com> Date: Tue, 26 Nov 2024 13:51:22 -0500 Subject: [PATCH 16/28] Removed old score files and updated some dev dependencies --- data/data-pipeline/.flake8 | 10 +- data/data-pipeline/poetry.lock | 428 ++++++++++++++---------------- data/data-pipeline/pyproject.toml | 10 +- 3 files changed, 211 insertions(+), 237 deletions(-) diff --git a/data/data-pipeline/.flake8 b/data/data-pipeline/.flake8 index f217b57d..c9ae846f 100644 --- a/data/data-pipeline/.flake8 +++ b/data/data-pipeline/.flake8 @@ -1,9 +1,11 @@ [flake8] +# E266, to many leading '#' for block comment +# W503, line break before binary operator +# TODO: Uncomment and fix the issues here that we care about, see +# https://github.com/usds/justice40-tool/issues/1123 ignore = - E266, # to many leading '#' for block comment - W503, # line break before binary operator - # TODO: Uncomment and fix the issues here that we care about, see - # https://github.com/usds/justice40-tool/issues/1123 + E266, + W503, PD002, PD003, PD004, diff --git a/data/data-pipeline/poetry.lock b/data/data-pipeline/poetry.lock index 5df8dbec..51b54284 100644 --- a/data/data-pipeline/poetry.lock +++ b/data/data-pipeline/poetry.lock @@ -24,87 +24,87 @@ files = [ [[package]] name = "aiohttp" -version = "3.11.2" +version = "3.11.7" description = "Async http client/server framework (asyncio)" optional = false python-versions = ">=3.9" files = [ - {file = "aiohttp-3.11.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:783741f534c14957fbe657d62a34b947ec06db23d45a2fd4a8aeb73d9c84d7e6"}, - {file = "aiohttp-3.11.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:435f7a08d8aa42371a94e7c141205a9cb092ba551084b5e0c57492e6673601a3"}, - {file = "aiohttp-3.11.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c681f34e2814bc6e1eef49752b338061b94a42c92734d0be9513447d3f83718c"}, - {file = "aiohttp-3.11.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:73a664478ae1ea011b5a710fb100b115ca8b2146864fa0ce4143ff944df714b8"}, - {file = "aiohttp-3.11.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f1d06c8fd8b453c3e553c956bd3b8395100401060430572174bb7876dd95ad49"}, - {file = "aiohttp-3.11.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b1f4844909321ef2c1cee50ddeccbd6018cd8c8d1ddddda3f553e94a5859497"}, - {file = "aiohttp-3.11.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdc6f8dce09281ae534eaf08a54f0d38612398375f28dad733a8885f3bf9b978"}, - {file = "aiohttp-3.11.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d2d942421cf3a1d1eceae8fa192f1fbfb74eb9d3e207d35ad2696bd2ce2c987c"}, - {file = "aiohttp-3.11.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:08ebe7a1d6c1e5ca766d68407280d69658f5f98821c2ba6c41c63cabfed159af"}, - {file = "aiohttp-3.11.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:2793d3297f3e49015140e6d3ea26142c967e07998e2fb00b6ee8d041138fbc4e"}, - {file = "aiohttp-3.11.2-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:4a23475d8d5c56e447b7752a1e2ac267c1f723f765e406c81feddcd16cdc97bc"}, - {file = "aiohttp-3.11.2-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:556564d89e2f4a6e8fe000894c03e4e84cf0b6cfa5674e425db122633ee244d1"}, - {file = "aiohttp-3.11.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:57993f406ce3f114b2a6756d7809be3ffd0cc40f33e8f8b9a4aa1b027fd4e3eb"}, - {file = "aiohttp-3.11.2-cp310-cp310-win32.whl", hash = "sha256:177b000efaf8d2f7012c649e8aee5b0bf488677b1162be5e7511aa4f9d567607"}, - {file = "aiohttp-3.11.2-cp310-cp310-win_amd64.whl", hash = "sha256:ff5d22eece44528023254b595c670dfcf9733ac6af74c4b6cb4f6a784dc3870c"}, - {file = "aiohttp-3.11.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:50e0aee4adc9abcd2109c618a8d1b2c93b85ac277b24a003ab147d91e068b06d"}, - {file = "aiohttp-3.11.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9aa4e68f1e4f303971ec42976fb170204fb5092de199034b57199a1747e78a2d"}, - {file = "aiohttp-3.11.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d84930b4145991214602372edd7305fc76b700220db79ac0dd57d3afd0f0a1ca"}, - {file = "aiohttp-3.11.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4ec8afd362356b8798c8caa806e91deb3f0602d8ffae8e91d2d3ced2a90c35e"}, - {file = "aiohttp-3.11.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fb0544a0e8294a5a5e20d3cacdaaa9a911d7c0a9150f5264aef36e7d8fdfa07e"}, - {file = "aiohttp-3.11.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7b0a1618060e3f5aa73d3526ca2108a16a1b6bf86612cd0bb2ddcbef9879d06"}, - {file = "aiohttp-3.11.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d878a0186023ac391861958035174d0486f3259cabf8fd94e591985468da3ea"}, - {file = "aiohttp-3.11.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e33a7eddcd07545ccf5c3ab230f60314a17dc33e285475e8405e26e21f02660"}, - {file = "aiohttp-3.11.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:4d7fad8c456d180a6d2f44c41cfab4b80e2e81451815825097db48b8293f59d5"}, - {file = "aiohttp-3.11.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8d954ba0eae7f33884d27dc00629ca4389d249eb8d26ca07c30911257cae8c96"}, - {file = "aiohttp-3.11.2-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:afa55e863224e664a782effa62245df73fdfc55aee539bed6efacf35f6d4e4b7"}, - {file = "aiohttp-3.11.2-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:10a5f91c319d9d4afba812f72984816b5fcd20742232ff7ecc1610ffbf3fc64d"}, - {file = "aiohttp-3.11.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6e8e19a80ba194db5c06915a9df23c0c06e0e9ca9a4db9386a6056cca555a027"}, - {file = "aiohttp-3.11.2-cp311-cp311-win32.whl", hash = "sha256:9c8d1db4f65bbc9d75b7b271d68fb996f1c8c81a525263862477d93611856c2d"}, - {file = "aiohttp-3.11.2-cp311-cp311-win_amd64.whl", hash = "sha256:2adb967454e10e69478ba4a8d8afbba48a7c7a8619216b7c807f8481cc66ddfb"}, - {file = "aiohttp-3.11.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:f833a80d9de9307d736b6af58c235b17ef7f90ebea7b9c49cd274dec7a66a2f1"}, - {file = "aiohttp-3.11.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:382f853516664d2ebfc75dc01da4a10fdef5edcb335fe7b45cf471ce758ecb18"}, - {file = "aiohttp-3.11.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d3a2bcf6c81639a165da93469e1e0aff67c956721f3fa9c0560f07dd1e505116"}, - {file = "aiohttp-3.11.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de3b4d5fb5d69749104b880a157f38baeea7765c93d9cd3837cedd5b84729e10"}, - {file = "aiohttp-3.11.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0a90a0dc4b054b5af299a900bf950fe8f9e3e54322bc405005f30aa5cacc5c98"}, - {file = "aiohttp-3.11.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:32334f35824811dd20a12cc90825d000e6b50faaeaa71408d42269151a66140d"}, - {file = "aiohttp-3.11.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0cba0b8d25aa2d450762f3dd6df85498f5e7c3ad0ddeb516ef2b03510f0eea32"}, - {file = "aiohttp-3.11.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bbb2dbc2701ab7e9307ca3a8fa4999c5b28246968e0a0202a5afabf48a42e22"}, - {file = "aiohttp-3.11.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:97fba98fc5d9ccd3d33909e898d00f2494d6a9eec7cbda3d030632e2c8bb4d00"}, - {file = "aiohttp-3.11.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0ebdf5087e2ce903d8220cc45dcece90c2199ae4395fd83ca616fcc81010db2c"}, - {file = "aiohttp-3.11.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:122768e3ae9ce74f981b46edefea9c6e5a40aea38aba3ac50168e6370459bf20"}, - {file = "aiohttp-3.11.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:5587da333b7d280a312715b843d43e734652aa382cba824a84a67c81f75b338b"}, - {file = "aiohttp-3.11.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:85de9904bc360fd29a98885d2bfcbd4e02ab33c53353cb70607f2bea2cb92468"}, - {file = "aiohttp-3.11.2-cp312-cp312-win32.whl", hash = "sha256:b470de64d17156c37e91effc109d3b032b39867000e2c126732fe01d034441f9"}, - {file = "aiohttp-3.11.2-cp312-cp312-win_amd64.whl", hash = "sha256:3f617a48b70f4843d54f52440ea1e58da6bdab07b391a3a6aed8d3b311a4cc04"}, - {file = "aiohttp-3.11.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:5d90b5a3b0f32a5fecf5dd83d828713986c019585f5cddf40d288ff77f366615"}, - {file = "aiohttp-3.11.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:d23854e5867650d40cba54d49956aad8081452aa80b2cf0d8c310633f4f48510"}, - {file = "aiohttp-3.11.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:486273d3b5af75a80c31c311988931bdd2a4b96a74d5c7f422bad948f99988ef"}, - {file = "aiohttp-3.11.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9075313f8e41b481e4cb10af405054564b0247dc335db5398ed05f8ec38787e2"}, - {file = "aiohttp-3.11.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44b69c69c194ffacbc50165911cf023a4b1b06422d1e1199d3aea82eac17004e"}, - {file = "aiohttp-3.11.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b339d91ac9060bd6ecdc595a82dc151045e5d74f566e0864ef3f2ba0887fec42"}, - {file = "aiohttp-3.11.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:64e8f5178958a9954043bc8cd10a5ae97352c3f2fc99aa01f2aebb0026010910"}, - {file = "aiohttp-3.11.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3129151378f858cdc4a0a4df355c9a0d060ab49e2eea7e62e9f085bac100551b"}, - {file = "aiohttp-3.11.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:14eb6c628432720e41b4fab1ada879d56cfe7034159849e083eb536b4c2afa99"}, - {file = "aiohttp-3.11.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:e57a10aacedcf24666f4c90d03e599f71d172d1c5e00dcf48205c445806745b0"}, - {file = "aiohttp-3.11.2-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:66e58a2e8c7609a3545c4b38fb8b01a6b8346c4862e529534f7674c5265a97b8"}, - {file = "aiohttp-3.11.2-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:9b6d15adc9768ff167614ca853f7eeb6ee5f1d55d5660e3af85ce6744fed2b82"}, - {file = "aiohttp-3.11.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:2914061f5ca573f990ec14191e6998752fa8fe50d518e3405410353c3f44aa5d"}, - {file = "aiohttp-3.11.2-cp313-cp313-win32.whl", hash = "sha256:1c2496182e577042e0e07a328d91c949da9e77a2047c7291071e734cd7a6e780"}, - {file = "aiohttp-3.11.2-cp313-cp313-win_amd64.whl", hash = "sha256:cccb2937bece1310c5c0163d0406aba170a2e5fb1f0444d7b0e7fdc9bd6bb713"}, - {file = "aiohttp-3.11.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:994cb893936dd2e1803655ae8667a45066bfd53360b148e22b4e3325cc5ea7a3"}, - {file = "aiohttp-3.11.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3666c750b73ce463a413692e3a57c60f7089e2d9116a2aa5a0f0eaf2ae325148"}, - {file = "aiohttp-3.11.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6ad9a7d2a3a0f235184426425f80bd3b26c66b24fd5fddecde66be30c01ebe6e"}, - {file = "aiohttp-3.11.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4c979fc92aba66730b66099cd5becb42d869a26c0011119bc1c2478408a8bf7a"}, - {file = "aiohttp-3.11.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:766d0ebf8703d28f854f945982aa09224d5a27a29594c70d921c43c3930fe7ac"}, - {file = "aiohttp-3.11.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:79efd1ee3827b2f16797e14b1e45021206c3271249b4d0025014466d416d7413"}, - {file = "aiohttp-3.11.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d6e069b882c1fdcbe5577dc4be372eda705180197140577a4cddb648c29d22e"}, - {file = "aiohttp-3.11.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5e9a766c346b2ed7e88937919d84ed64b4ef489dad1d8939f806ee52901dc142"}, - {file = "aiohttp-3.11.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:2b02a68b9445c70d7f5c8b578c5f5e5866b1d67ca23eb9e8bc8658ae9e3e2c74"}, - {file = "aiohttp-3.11.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:374baefcb1b6275f350da605951f5f02487a9bc84a574a7d5b696439fabd49a3"}, - {file = "aiohttp-3.11.2-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:d2f991c18132f3e505c108147925372ffe4549173b7c258cf227df1c5977a635"}, - {file = "aiohttp-3.11.2-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:34f37c59b12bc3afc52bab6fcd9cd3be82ff01c4598a84cbea934ccb3a9c54a0"}, - {file = "aiohttp-3.11.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:33af11eca7bb0f5c6ffaf5e7d9d2336c2448f9c6279b93abdd6f3c35f9ee321f"}, - {file = "aiohttp-3.11.2-cp39-cp39-win32.whl", hash = "sha256:83a70e22e0f6222effe7f29fdeba6c6023f9595e59a0479edacfbd7de4b77bb7"}, - {file = "aiohttp-3.11.2-cp39-cp39-win_amd64.whl", hash = "sha256:c28c1677ea33ccb8b14330560094cc44d3ff4fad617a544fd18beb90403fe0f1"}, - {file = "aiohttp-3.11.2.tar.gz", hash = "sha256:68d1f46f9387db3785508f5225d3acbc5825ca13d9c29f2b5cce203d5863eb79"}, + {file = "aiohttp-3.11.7-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8bedb1f6cb919af3b6353921c71281b1491f948ca64408871465d889b4ee1b66"}, + {file = "aiohttp-3.11.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f5022504adab881e2d801a88b748ea63f2a9d130e0b2c430824682a96f6534be"}, + {file = "aiohttp-3.11.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e22d1721c978a6494adc824e0916f9d187fa57baeda34b55140315fa2f740184"}, + {file = "aiohttp-3.11.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e993676c71288618eb07e20622572b1250d8713e7e00ab3aabae28cb70f3640d"}, + {file = "aiohttp-3.11.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e13a05db87d3b241c186d0936808d0e4e12decc267c617d54e9c643807e968b6"}, + {file = "aiohttp-3.11.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4ba8d043fed7ffa117024d7ba66fdea011c0e7602327c6d73cacaea38abe4491"}, + {file = "aiohttp-3.11.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dda3ed0a7869d2fa16aa41f9961ade73aa2c2e3b2fcb0a352524e7b744881889"}, + {file = "aiohttp-3.11.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43bfd25113c1e98aec6c70e26d5f4331efbf4aa9037ba9ad88f090853bf64d7f"}, + {file = "aiohttp-3.11.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3dd3e7e7c9ef3e7214f014f1ae260892286647b3cf7c7f1b644a568fd410f8ca"}, + {file = "aiohttp-3.11.7-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:78c657ece7a73b976905ab9ec8be9ef2df12ed8984c24598a1791c58ce3b4ce4"}, + {file = "aiohttp-3.11.7-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:db70a47987e34494b451a334605bee57a126fe8d290511349e86810b4be53b01"}, + {file = "aiohttp-3.11.7-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:9e67531370a3b07e49b280c1f8c2df67985c790ad2834d1b288a2f13cd341c5f"}, + {file = "aiohttp-3.11.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:9202f184cc0582b1db15056f2225ab4c1e3dac4d9ade50dd0613ac3c46352ac2"}, + {file = "aiohttp-3.11.7-cp310-cp310-win32.whl", hash = "sha256:2257bdd5cf54a4039a4337162cd8048f05a724380a2283df34620f55d4e29341"}, + {file = "aiohttp-3.11.7-cp310-cp310-win_amd64.whl", hash = "sha256:b7215bf2b53bc6cb35808149980c2ae80a4ae4e273890ac85459c014d5aa60ac"}, + {file = "aiohttp-3.11.7-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:cea52d11e02123f125f9055dfe0ccf1c3857225fb879e4a944fae12989e2aef2"}, + {file = "aiohttp-3.11.7-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3ce18f703b7298e7f7633efd6a90138d99a3f9a656cb52c1201e76cb5d79cf08"}, + {file = "aiohttp-3.11.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:670847ee6aeb3a569cd7cdfbe0c3bec1d44828bbfbe78c5d305f7f804870ef9e"}, + {file = "aiohttp-3.11.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4dda726f89bfa5c465ba45b76515135a3ece0088dfa2da49b8bb278f3bdeea12"}, + {file = "aiohttp-3.11.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c25b74a811dba37c7ea6a14d99eb9402d89c8d739d50748a75f3cf994cf19c43"}, + {file = "aiohttp-3.11.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5522ee72f95661e79db691310290c4618b86dff2d9b90baedf343fd7a08bf79"}, + {file = "aiohttp-3.11.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fbf41a6bbc319a7816ae0f0177c265b62f2a59ad301a0e49b395746eb2a9884"}, + {file = "aiohttp-3.11.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:59ee1925b5a5efdf6c4e7be51deee93984d0ac14a6897bd521b498b9916f1544"}, + {file = "aiohttp-3.11.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:24054fce8c6d6f33a3e35d1c603ef1b91bbcba73e3f04a22b4f2f27dac59b347"}, + {file = "aiohttp-3.11.7-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:351849aca2c6f814575c1a485c01c17a4240413f960df1bf9f5deb0003c61a53"}, + {file = "aiohttp-3.11.7-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:12724f3a211fa243570e601f65a8831372caf1a149d2f1859f68479f07efec3d"}, + {file = "aiohttp-3.11.7-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:7ea4490360b605804bea8173d2d086b6c379d6bb22ac434de605a9cbce006e7d"}, + {file = "aiohttp-3.11.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e0bf378db07df0a713a1e32381a1b277e62ad106d0dbe17b5479e76ec706d720"}, + {file = "aiohttp-3.11.7-cp311-cp311-win32.whl", hash = "sha256:cd8d62cab363dfe713067027a5adb4907515861f1e4ce63e7be810b83668b847"}, + {file = "aiohttp-3.11.7-cp311-cp311-win_amd64.whl", hash = "sha256:bf0e6cce113596377cadda4e3ac5fb89f095bd492226e46d91b4baef1dd16f60"}, + {file = "aiohttp-3.11.7-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:4bb7493c3e3a36d3012b8564bd0e2783259ddd7ef3a81a74f0dbfa000fce48b7"}, + {file = "aiohttp-3.11.7-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:e143b0ef9cb1a2b4f74f56d4fbe50caa7c2bb93390aff52f9398d21d89bc73ea"}, + {file = "aiohttp-3.11.7-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f7c58a240260822dc07f6ae32a0293dd5bccd618bb2d0f36d51c5dbd526f89c0"}, + {file = "aiohttp-3.11.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d20cfe63a1c135d26bde8c1d0ea46fd1200884afbc523466d2f1cf517d1fe33"}, + {file = "aiohttp-3.11.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:12e4d45847a174f77b2b9919719203769f220058f642b08504cf8b1cf185dacf"}, + {file = "aiohttp-3.11.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cf4efa2d01f697a7dbd0509891a286a4af0d86902fc594e20e3b1712c28c0106"}, + {file = "aiohttp-3.11.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ee6a4cdcbf54b8083dc9723cdf5f41f722c00db40ccf9ec2616e27869151129"}, + {file = "aiohttp-3.11.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c6095aaf852c34f42e1bd0cf0dc32d1e4b48a90bfb5054abdbb9d64b36acadcb"}, + {file = "aiohttp-3.11.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1cf03d27885f8c5ebf3993a220cc84fc66375e1e6e812731f51aab2b2748f4a6"}, + {file = "aiohttp-3.11.7-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:1a17f6a230f81eb53282503823f59d61dff14fb2a93847bf0399dc8e87817307"}, + {file = "aiohttp-3.11.7-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:481f10a1a45c5f4c4a578bbd74cff22eb64460a6549819242a87a80788461fba"}, + {file = "aiohttp-3.11.7-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:db37248535d1ae40735d15bdf26ad43be19e3d93ab3f3dad8507eb0f85bb8124"}, + {file = "aiohttp-3.11.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:9d18a8b44ec8502a7fde91446cd9c9b95ce7c49f1eacc1fb2358b8907d4369fd"}, + {file = "aiohttp-3.11.7-cp312-cp312-win32.whl", hash = "sha256:3d1c9c15d3999107cbb9b2d76ca6172e6710a12fda22434ee8bd3f432b7b17e8"}, + {file = "aiohttp-3.11.7-cp312-cp312-win_amd64.whl", hash = "sha256:018f1b04883a12e77e7fc161934c0f298865d3a484aea536a6a2ca8d909f0ba0"}, + {file = "aiohttp-3.11.7-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:241a6ca732d2766836d62c58c49ca7a93d08251daef0c1e3c850df1d1ca0cbc4"}, + {file = "aiohttp-3.11.7-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:aa3705a8d14de39898da0fbad920b2a37b7547c3afd2a18b9b81f0223b7d0f68"}, + {file = "aiohttp-3.11.7-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9acfc7f652b31853eed3b92095b0acf06fd5597eeea42e939bd23a17137679d5"}, + {file = "aiohttp-3.11.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dcefcf2915a2dbdbce37e2fc1622129a1918abfe3d06721ce9f6cdac9b6d2eaa"}, + {file = "aiohttp-3.11.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c1f6490dd1862af5aae6cfcf2a274bffa9a5b32a8f5acb519a7ecf5a99a88866"}, + {file = "aiohttp-3.11.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f1ac5462582d6561c1c1708853a9faf612ff4e5ea5e679e99be36143d6eabd8e"}, + {file = "aiohttp-3.11.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c1a6309005acc4b2bcc577ba3b9169fea52638709ffacbd071f3503264620da"}, + {file = "aiohttp-3.11.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f5b973cce96793725ef63eb449adfb74f99c043c718acb76e0d2a447ae369962"}, + {file = "aiohttp-3.11.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ce91a24aac80de6be8512fb1c4838a9881aa713f44f4e91dd7bb3b34061b497d"}, + {file = "aiohttp-3.11.7-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:875f7100ce0e74af51d4139495eec4025affa1a605280f23990b6434b81df1bd"}, + {file = "aiohttp-3.11.7-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c171fc35d3174bbf4787381716564042a4cbc008824d8195eede3d9b938e29a8"}, + {file = "aiohttp-3.11.7-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:ee9afa1b0d2293c46954f47f33e150798ad68b78925e3710044e0d67a9487791"}, + {file = "aiohttp-3.11.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8360c7cc620abb320e1b8d603c39095101391a82b1d0be05fb2225471c9c5c52"}, + {file = "aiohttp-3.11.7-cp313-cp313-win32.whl", hash = "sha256:7a9318da4b4ada9a67c1dd84d1c0834123081e746bee311a16bb449f363d965e"}, + {file = "aiohttp-3.11.7-cp313-cp313-win_amd64.whl", hash = "sha256:fc6da202068e0a268e298d7cd09b6e9f3997736cd9b060e2750963754552a0a9"}, + {file = "aiohttp-3.11.7-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:17829f37c0d31d89aa6b8b010475a10233774771f9b6dc2cc352ea4f8ce95d9a"}, + {file = "aiohttp-3.11.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d6177077a31b1aecfc3c9070bd2f11419dbb4a70f30f4c65b124714f525c2e48"}, + {file = "aiohttp-3.11.7-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:badda65ac99555791eed75e234afb94686ed2317670c68bff8a4498acdaee935"}, + {file = "aiohttp-3.11.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0de6466b9d742b4ee56fe1b2440706e225eb48c77c63152b1584864a236e7a50"}, + {file = "aiohttp-3.11.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:04b0cc74d5a882c9dacaeeccc1444f0233212b6f5be8bc90833feef1e1ce14b9"}, + {file = "aiohttp-3.11.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c7af3e50e5903d21d7b935aceed901cc2475463bc16ddd5587653548661fdb"}, + {file = "aiohttp-3.11.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c63f898f683d1379b9be5afc3dd139e20b30b0b1e0bf69a3fc3681f364cf1629"}, + {file = "aiohttp-3.11.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fdadc3f6a32d6eca45f9a900a254757fd7855dfb2d8f8dcf0e88f0fae3ff8eb1"}, + {file = "aiohttp-3.11.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d329300fb23e14ed1f8c6d688dfd867d1dcc3b1d7cd49b7f8c5b44e797ce0932"}, + {file = "aiohttp-3.11.7-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:5578cf40440eafcb054cf859964bc120ab52ebe0e0562d2b898126d868749629"}, + {file = "aiohttp-3.11.7-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:7b2f8107a3c329789f3c00b2daad0e35f548d0a55cda6291579136622099a46e"}, + {file = "aiohttp-3.11.7-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:43dd89a6194f6ab02a3fe36b09e42e2df19c211fc2050ce37374d96f39604997"}, + {file = "aiohttp-3.11.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:d2fa6fc7cc865d26ff42480ac9b52b8c9b7da30a10a6442a9cdf429de840e949"}, + {file = "aiohttp-3.11.7-cp39-cp39-win32.whl", hash = "sha256:a7d9a606355655617fee25dd7e54d3af50804d002f1fd3118dd6312d26692d70"}, + {file = "aiohttp-3.11.7-cp39-cp39-win_amd64.whl", hash = "sha256:53c921b58fdc6485d6b2603e0132bb01cd59b8f0620ffc0907f525e0ba071687"}, + {file = "aiohttp-3.11.7.tar.gz", hash = "sha256:01a8aca4af3da85cea5c90141d23f4b0eee3cbecfd33b029a45a80f28c66c668"}, ] [package.dependencies] @@ -308,16 +308,6 @@ six = ">=1.12.0" astroid = ["astroid (>=1,<2)", "astroid (>=2,<4)"] test = ["astroid (>=1,<2)", "astroid (>=2,<4)", "pytest"] -[[package]] -name = "atomicwrites" -version = "1.4.1" -description = "Atomic file writes." -optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -files = [ - {file = "atomicwrites-1.4.1.tar.gz", hash = "sha256:81b2c9071a49367a7f770170e5eec8cb66567cfbbc8c73d20ce5ca4a8d71cf11"}, -] - [[package]] name = "attrs" version = "24.2.0" @@ -709,21 +699,6 @@ traitlets = ">=4" [package.extras] test = ["pytest"] -[[package]] -name = "configparser" -version = "7.1.0" -description = "Updated configparser from stdlib for earlier Pythons." -optional = false -python-versions = ">=3.8" -files = [ - {file = "configparser-7.1.0-py3-none-any.whl", hash = "sha256:98e374573c4e10e92399651e3ba1c47a438526d633c44ee96143dec26dad4299"}, - {file = "configparser-7.1.0.tar.gz", hash = "sha256:eb82646c892dbdf773dae19c633044d163c3129971ae09b49410a303b8e0a5f7"}, -] - -[package.extras] -doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] -test = ["pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-ruff (>=0.2.1)", "types-backports"] - [[package]] name = "contourpy" version = "1.3.1" @@ -1063,19 +1038,19 @@ test = ["boto3 (>=1.2.4)", "mock", "pytest (>=3)", "pytest-cov"] [[package]] name = "flake8" -version = "3.9.2" +version = "7.1.1" description = "the modular source code checker: pep8 pyflakes and co" optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" +python-versions = ">=3.8.1" files = [ - {file = "flake8-3.9.2-py2.py3-none-any.whl", hash = "sha256:bf8fd333346d844f616e8d47905ef3a3384edae6b4e9beb0c5101e25e3110907"}, - {file = "flake8-3.9.2.tar.gz", hash = "sha256:07528381786f2a6237b061f6e96610a4167b226cb926e2aa2b6b1d78057c576b"}, + {file = "flake8-7.1.1-py2.py3-none-any.whl", hash = "sha256:597477df7860daa5aa0fdd84bf5208a043ab96b8e96ab708770ae0364dd03213"}, + {file = "flake8-7.1.1.tar.gz", hash = "sha256:049d058491e228e03e67b390f311bbf88fce2dbaa8fa673e7aea87b7198b8d38"}, ] [package.dependencies] -mccabe = ">=0.6.0,<0.7.0" -pycodestyle = ">=2.7.0,<2.8.0" -pyflakes = ">=2.3.0,<2.4.0" +mccabe = ">=0.7.0,<0.8.0" +pycodestyle = ">=2.12.0,<2.13.0" +pyflakes = ">=3.2.0,<3.3.0" [[package]] name = "fonttools" @@ -2134,17 +2109,16 @@ files = [ [[package]] name = "liccheck" -version = "0.6.5" +version = "0.9.2" description = "Check python packages from requirement.txt and report issues" optional = false -python-versions = ">=2.7" +python-versions = ">=3.5" files = [ - {file = "liccheck-0.6.5-py2.py3-none-any.whl", hash = "sha256:10846e587127d08609a973570eb3b8ee8cfe32a4689c8fd76d6dc74c29013c7a"}, - {file = "liccheck-0.6.5.tar.gz", hash = "sha256:d4009f1876eb7e4228ecf495e36573ef5b8a226d4cd91235138e417f990a67e8"}, + {file = "liccheck-0.9.2-py2.py3-none-any.whl", hash = "sha256:15cbedd042515945fe9d58b62e0a5af2f2a7795def216f163bb35b3016a16637"}, + {file = "liccheck-0.9.2.tar.gz", hash = "sha256:bdc2190f8e95af3c8f9c19edb784ba7d41ecb2bf9189422eae6112bf84c08cd5"}, ] [package.dependencies] -configparser = {version = "*", markers = "python_version >= \"3.4\""} semantic-version = ">=2.7.0" toml = "*" @@ -2507,13 +2481,13 @@ traitlets = "*" [[package]] name = "mccabe" -version = "0.6.1" +version = "0.7.0" description = "McCabe checker, plugin for flake8" optional = false -python-versions = "*" +python-versions = ">=3.6" files = [ - {file = "mccabe-0.6.1-py2.py3-none-any.whl", hash = "sha256:ab8a6258860da4b6677da4bd2fe5dc2c659cff31b3ee4f7f5d64e79735b80d42"}, - {file = "mccabe-0.6.1.tar.gz", hash = "sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f"}, + {file = "mccabe-0.7.0-py2.py3-none-any.whl", hash = "sha256:6c2d30ab6be0e4a46919781807b4f0d834ebdd6c6e3dca0bda5a15f863427b6e"}, + {file = "mccabe-0.7.0.tar.gz", hash = "sha256:348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325"}, ] [[package]] @@ -3404,13 +3378,13 @@ files = [ [[package]] name = "pycodestyle" -version = "2.7.0" +version = "2.12.1" description = "Python style guide checker" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +python-versions = ">=3.8" files = [ - {file = "pycodestyle-2.7.0-py2.py3-none-any.whl", hash = "sha256:514f76d918fcc0b55c6680472f0a37970994e07bbb80725808c17089be302068"}, - {file = "pycodestyle-2.7.0.tar.gz", hash = "sha256:c389c1d06bf7904078ca03399a4816f974a1d590090fecea0c63ec26ebaf1cef"}, + {file = "pycodestyle-2.12.1-py2.py3-none-any.whl", hash = "sha256:46f0fb92069a7c28ab7bb558f05bfc0110dac69a0cd23c61ea0040283a9d78b3"}, + {file = "pycodestyle-2.12.1.tar.gz", hash = "sha256:6838eae08bbce4f6accd5d5572075c63626a15ee3e6f842df996bf62f6d73521"}, ] [[package]] @@ -3485,13 +3459,13 @@ email = ["email-validator (>=1.0.3)"] [[package]] name = "pyflakes" -version = "2.3.1" +version = "3.2.0" description = "passive checker of Python programs" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +python-versions = ">=3.8" files = [ - {file = "pyflakes-2.3.1-py2.py3-none-any.whl", hash = "sha256:7893783d01b8a89811dd72d7dfd4d84ff098e5eed95cfa8905b22bbffe52efc3"}, - {file = "pyflakes-2.3.1.tar.gz", hash = "sha256:f5bc8ecabc05bb9d291eb5203d6810b49040f6ff446a756326104746cc00c1db"}, + {file = "pyflakes-3.2.0-py2.py3-none-any.whl", hash = "sha256:84b5be138a2dfbb40689ca07e2152deb896a65c3a3e24c251c5c62489568074a"}, + {file = "pyflakes-3.2.0.tar.gz", hash = "sha256:1c61603ff154621fb2a9172037d84dca3500def8c8b630657d1701f026f8af3f"}, ] [[package]] @@ -3600,27 +3574,25 @@ certifi = "*" [[package]] name = "pytest" -version = "6.2.5" +version = "8.3.3" description = "pytest: simple powerful testing with Python" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "pytest-6.2.5-py3-none-any.whl", hash = "sha256:7310f8d27bc79ced999e760ca304d69f6ba6c6649c0b60fb0e04a4a77cacc134"}, - {file = "pytest-6.2.5.tar.gz", hash = "sha256:131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89"}, + {file = "pytest-8.3.3-py3-none-any.whl", hash = "sha256:a6853c7375b2663155079443d2e45de913a911a11d669df02a50814944db57b2"}, + {file = "pytest-8.3.3.tar.gz", hash = "sha256:70b98107bd648308a7952b06e6ca9a50bc660be218d53c257cc1fc94fda10181"}, ] [package.dependencies] -atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} -attrs = ">=19.2.0" colorama = {version = "*", markers = "sys_platform == \"win32\""} +exceptiongroup = {version = ">=1.0.0rc8", markers = "python_version < \"3.11\""} iniconfig = "*" packaging = "*" -pluggy = ">=0.12,<2.0" -py = ">=1.8.2" -toml = "*" +pluggy = ">=1.5,<2" +tomli = {version = ">=1", markers = "python_version < \"3.11\""} [package.extras] -testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "requests", "xmlschema"] +dev = ["argcomplete", "attrs (>=19.2)", "hypothesis (>=3.56)", "mock", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"] [[package]] name = "pytest-mock" @@ -3641,13 +3613,13 @@ dev = ["pre-commit", "pytest-asyncio", "tox"] [[package]] name = "pytest-snapshot" -version = "0.8.1" +version = "0.9.0" description = "A plugin for snapshot testing with pytest." optional = false python-versions = ">=3.5" files = [ - {file = "pytest-snapshot-0.8.1.tar.gz", hash = "sha256:0f8872d56bc3ceacb465967072b059a36714898a37c9eb1c75cd4054110106f2"}, - {file = "pytest_snapshot-0.8.1-py3-none-any.whl", hash = "sha256:ccb72c8e40dd1ec96b40caf0d328a9e9124b91d6a06204ad47d67403d83a4fd2"}, + {file = "pytest-snapshot-0.9.0.tar.gz", hash = "sha256:c7013c3abc3e860f9feff899f8b4debe3708650d8d8242a61bf2625ff64db7f3"}, + {file = "pytest_snapshot-0.9.0-py3-none-any.whl", hash = "sha256:4b9fe1c21c868fe53a545e4e3184d36bc1c88946e3f5c1d9dd676962a9b3d4ab"}, ] [package.dependencies] @@ -4284,23 +4256,23 @@ win32 = ["pywin32"] [[package]] name = "setuptools" -version = "75.5.0" +version = "75.6.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.9" files = [ - {file = "setuptools-75.5.0-py3-none-any.whl", hash = "sha256:87cb777c3b96d638ca02031192d40390e0ad97737e27b6b4fa831bea86f2f829"}, - {file = "setuptools-75.5.0.tar.gz", hash = "sha256:5c4ccb41111392671f02bb5f8436dfc5a9a7185e80500531b133f5775c4163ef"}, + {file = "setuptools-75.6.0-py3-none-any.whl", hash = "sha256:ce74b49e8f7110f9bf04883b730f4765b774ef3ef28f722cce7c273d253aaf7d"}, + {file = "setuptools-75.6.0.tar.gz", hash = "sha256:8199222558df7c86216af4f84c30e9b34a61d8ba19366cc914424cdbd28252f6"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.7.0)"] -core = ["importlib-metadata (>=6)", "jaraco.collections", "jaraco.functools (>=4)", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24.2)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib_metadata (>=6)", "jaraco.collections", "jaraco.functools (>=4)", "jaraco.text (>=3.7)", "more_itertools", "more_itertools (>=8.8)", "packaging", "packaging (>=24.2)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test (>=5.5)", "packaging (>=24.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] -type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (>=1.12,<1.14)", "pytest-mypy"] +type = ["importlib_metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (>=1.12,<1.14)", "pytest-mypy"] [[package]] name = "shapely" @@ -4965,93 +4937,93 @@ files = [ [[package]] name = "yarl" -version = "1.17.2" +version = "1.18.0" description = "Yet another URL library" optional = false python-versions = ">=3.9" files = [ - {file = "yarl-1.17.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:93771146ef048b34201bfa382c2bf74c524980870bb278e6df515efaf93699ff"}, - {file = "yarl-1.17.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8281db240a1616af2f9c5f71d355057e73a1409c4648c8949901396dc0a3c151"}, - {file = "yarl-1.17.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:170ed4971bf9058582b01a8338605f4d8c849bd88834061e60e83b52d0c76870"}, - {file = "yarl-1.17.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bc61b005f6521fcc00ca0d1243559a5850b9dd1e1fe07b891410ee8fe192d0c0"}, - {file = "yarl-1.17.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:871e1b47eec7b6df76b23c642a81db5dd6536cbef26b7e80e7c56c2fd371382e"}, - {file = "yarl-1.17.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3a58a2f2ca7aaf22b265388d40232f453f67a6def7355a840b98c2d547bd037f"}, - {file = "yarl-1.17.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:736bb076f7299c5c55dfef3eb9e96071a795cb08052822c2bb349b06f4cb2e0a"}, - {file = "yarl-1.17.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8fd51299e21da709eabcd5b2dd60e39090804431292daacbee8d3dabe39a6bc0"}, - {file = "yarl-1.17.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:358dc7ddf25e79e1cc8ee16d970c23faee84d532b873519c5036dbb858965795"}, - {file = "yarl-1.17.2-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:50d866f7b1a3f16f98603e095f24c0eeba25eb508c85a2c5939c8b3870ba2df8"}, - {file = "yarl-1.17.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:8b9c4643e7d843a0dca9cd9d610a0876e90a1b2cbc4c5ba7930a0d90baf6903f"}, - {file = "yarl-1.17.2-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:d63123bfd0dce5f91101e77c8a5427c3872501acece8c90df457b486bc1acd47"}, - {file = "yarl-1.17.2-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:4e76381be3d8ff96a4e6c77815653063e87555981329cf8f85e5be5abf449021"}, - {file = "yarl-1.17.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:734144cd2bd633a1516948e477ff6c835041c0536cef1d5b9a823ae29899665b"}, - {file = "yarl-1.17.2-cp310-cp310-win32.whl", hash = "sha256:26bfb6226e0c157af5da16d2d62258f1ac578d2899130a50433ffee4a5dfa673"}, - {file = "yarl-1.17.2-cp310-cp310-win_amd64.whl", hash = "sha256:76499469dcc24759399accd85ec27f237d52dec300daaca46a5352fcbebb1071"}, - {file = "yarl-1.17.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:792155279dc093839e43f85ff7b9b6493a8eaa0af1f94f1f9c6e8f4de8c63500"}, - {file = "yarl-1.17.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:38bc4ed5cae853409cb193c87c86cd0bc8d3a70fd2268a9807217b9176093ac6"}, - {file = "yarl-1.17.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4a8c83f6fcdc327783bdc737e8e45b2e909b7bd108c4da1892d3bc59c04a6d84"}, - {file = "yarl-1.17.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c6d5fed96f0646bfdf698b0a1cebf32b8aae6892d1bec0c5d2d6e2df44e1e2d"}, - {file = "yarl-1.17.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:782ca9c58f5c491c7afa55518542b2b005caedaf4685ec814fadfcee51f02493"}, - {file = "yarl-1.17.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ff6af03cac0d1a4c3c19e5dcc4c05252411bf44ccaa2485e20d0a7c77892ab6e"}, - {file = "yarl-1.17.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6a3f47930fbbed0f6377639503848134c4aa25426b08778d641491131351c2c8"}, - {file = "yarl-1.17.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d1fa68a3c921365c5745b4bd3af6221ae1f0ea1bf04b69e94eda60e57958907f"}, - {file = "yarl-1.17.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:187df91395c11e9f9dc69b38d12406df85aa5865f1766a47907b1cc9855b6303"}, - {file = "yarl-1.17.2-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:93d1c8cc5bf5df401015c5e2a3ce75a5254a9839e5039c881365d2a9dcfc6dc2"}, - {file = "yarl-1.17.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:11d86c6145ac5c706c53d484784cf504d7d10fa407cb73b9d20f09ff986059ef"}, - {file = "yarl-1.17.2-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:c42774d1d1508ec48c3ed29e7b110e33f5e74a20957ea16197dbcce8be6b52ba"}, - {file = "yarl-1.17.2-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:0c8e589379ef0407b10bed16cc26e7392ef8f86961a706ade0a22309a45414d7"}, - {file = "yarl-1.17.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:1056cadd5e850a1c026f28e0704ab0a94daaa8f887ece8dfed30f88befb87bb0"}, - {file = "yarl-1.17.2-cp311-cp311-win32.whl", hash = "sha256:be4c7b1c49d9917c6e95258d3d07f43cfba2c69a6929816e77daf322aaba6628"}, - {file = "yarl-1.17.2-cp311-cp311-win_amd64.whl", hash = "sha256:ac8eda86cc75859093e9ce390d423aba968f50cf0e481e6c7d7d63f90bae5c9c"}, - {file = "yarl-1.17.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:dd90238d3a77a0e07d4d6ffdebc0c21a9787c5953a508a2231b5f191455f31e9"}, - {file = "yarl-1.17.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:c74f0b0472ac40b04e6d28532f55cac8090e34c3e81f118d12843e6df14d0909"}, - {file = "yarl-1.17.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4d486ddcaca8c68455aa01cf53d28d413fb41a35afc9f6594a730c9779545876"}, - {file = "yarl-1.17.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25b7e93f5414b9a983e1a6c1820142c13e1782cc9ed354c25e933aebe97fcf2"}, - {file = "yarl-1.17.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3a0baff7827a632204060f48dca9e63fbd6a5a0b8790c1a2adfb25dc2c9c0d50"}, - {file = "yarl-1.17.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:460024cacfc3246cc4d9f47a7fc860e4fcea7d1dc651e1256510d8c3c9c7cde0"}, - {file = "yarl-1.17.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5870d620b23b956f72bafed6a0ba9a62edb5f2ef78a8849b7615bd9433384171"}, - {file = "yarl-1.17.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2941756754a10e799e5b87e2319bbec481ed0957421fba0e7b9fb1c11e40509f"}, - {file = "yarl-1.17.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9611b83810a74a46be88847e0ea616794c406dbcb4e25405e52bff8f4bee2d0a"}, - {file = "yarl-1.17.2-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:cd7e35818d2328b679a13268d9ea505c85cd773572ebb7a0da7ccbca77b6a52e"}, - {file = "yarl-1.17.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:6b981316fcd940f085f646b822c2ff2b8b813cbd61281acad229ea3cbaabeb6b"}, - {file = "yarl-1.17.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:688058e89f512fb7541cb85c2f149c292d3fa22f981d5a5453b40c5da49eb9e8"}, - {file = "yarl-1.17.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:56afb44a12b0864d17b597210d63a5b88915d680f6484d8d202ed68ade38673d"}, - {file = "yarl-1.17.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:17931dfbb84ae18b287279c1f92b76a3abcd9a49cd69b92e946035cff06bcd20"}, - {file = "yarl-1.17.2-cp312-cp312-win32.whl", hash = "sha256:ff8d95e06546c3a8c188f68040e9d0360feb67ba8498baf018918f669f7bc39b"}, - {file = "yarl-1.17.2-cp312-cp312-win_amd64.whl", hash = "sha256:4c840cc11163d3c01a9d8aad227683c48cd3e5be5a785921bcc2a8b4b758c4f3"}, - {file = "yarl-1.17.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:3294f787a437cb5d81846de3a6697f0c35ecff37a932d73b1fe62490bef69211"}, - {file = "yarl-1.17.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f1e7fedb09c059efee2533119666ca7e1a2610072076926fa028c2ba5dfeb78c"}, - {file = "yarl-1.17.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:da9d3061e61e5ae3f753654813bc1cd1c70e02fb72cf871bd6daf78443e9e2b1"}, - {file = "yarl-1.17.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:91c012dceadc695ccf69301bfdccd1fc4472ad714fe2dd3c5ab4d2046afddf29"}, - {file = "yarl-1.17.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f11fd61d72d93ac23718d393d2a64469af40be2116b24da0a4ca6922df26807e"}, - {file = "yarl-1.17.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:46c465ad06971abcf46dd532f77560181387b4eea59084434bdff97524444032"}, - {file = "yarl-1.17.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ef6eee1a61638d29cd7c85f7fd3ac7b22b4c0fabc8fd00a712b727a3e73b0685"}, - {file = "yarl-1.17.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4434b739a8a101a837caeaa0137e0e38cb4ea561f39cb8960f3b1e7f4967a3fc"}, - {file = "yarl-1.17.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:752485cbbb50c1e20908450ff4f94217acba9358ebdce0d8106510859d6eb19a"}, - {file = "yarl-1.17.2-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:17791acaa0c0f89323c57da7b9a79f2174e26d5debbc8c02d84ebd80c2b7bff8"}, - {file = "yarl-1.17.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:5c6ea72fe619fee5e6b5d4040a451d45d8175f560b11b3d3e044cd24b2720526"}, - {file = "yarl-1.17.2-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:db5ac3871ed76340210fe028f535392f097fb31b875354bcb69162bba2632ef4"}, - {file = "yarl-1.17.2-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:7a1606ba68e311576bcb1672b2a1543417e7e0aa4c85e9e718ba6466952476c0"}, - {file = "yarl-1.17.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9bc27dd5cfdbe3dc7f381b05e6260ca6da41931a6e582267d5ca540270afeeb2"}, - {file = "yarl-1.17.2-cp313-cp313-win32.whl", hash = "sha256:52492b87d5877ec405542f43cd3da80bdcb2d0c2fbc73236526e5f2c28e6db28"}, - {file = "yarl-1.17.2-cp313-cp313-win_amd64.whl", hash = "sha256:8e1bf59e035534ba4077f5361d8d5d9194149f9ed4f823d1ee29ef3e8964ace3"}, - {file = "yarl-1.17.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c556fbc6820b6e2cda1ca675c5fa5589cf188f8da6b33e9fc05b002e603e44fa"}, - {file = "yarl-1.17.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f2f44a4247461965fed18b2573f3a9eb5e2c3cad225201ee858726cde610daca"}, - {file = "yarl-1.17.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3a3ede8c248f36b60227eb777eac1dbc2f1022dc4d741b177c4379ca8e75571a"}, - {file = "yarl-1.17.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2654caaf5584449d49c94a6b382b3cb4a246c090e72453493ea168b931206a4d"}, - {file = "yarl-1.17.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0d41c684f286ce41fa05ab6af70f32d6da1b6f0457459a56cf9e393c1c0b2217"}, - {file = "yarl-1.17.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2270d590997445a0dc29afa92e5534bfea76ba3aea026289e811bf9ed4b65a7f"}, - {file = "yarl-1.17.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18662443c6c3707e2fc7fad184b4dc32dd428710bbe72e1bce7fe1988d4aa654"}, - {file = "yarl-1.17.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:75ac158560dec3ed72f6d604c81090ec44529cfb8169b05ae6fcb3e986b325d9"}, - {file = "yarl-1.17.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1fee66b32e79264f428dc8da18396ad59cc48eef3c9c13844adec890cd339db5"}, - {file = "yarl-1.17.2-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:585ce7cd97be8f538345de47b279b879e091c8b86d9dbc6d98a96a7ad78876a3"}, - {file = "yarl-1.17.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:c019abc2eca67dfa4d8fb72ba924871d764ec3c92b86d5b53b405ad3d6aa56b0"}, - {file = "yarl-1.17.2-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:c6e659b9a24d145e271c2faf3fa6dd1fcb3e5d3f4e17273d9e0350b6ab0fe6e2"}, - {file = "yarl-1.17.2-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:d17832ba39374134c10e82d137e372b5f7478c4cceeb19d02ae3e3d1daed8721"}, - {file = "yarl-1.17.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:bc3003710e335e3f842ae3fd78efa55f11a863a89a72e9a07da214db3bf7e1f8"}, - {file = "yarl-1.17.2-cp39-cp39-win32.whl", hash = "sha256:f5ffc6b7ace5b22d9e73b2a4c7305740a339fbd55301d52735f73e21d9eb3130"}, - {file = "yarl-1.17.2-cp39-cp39-win_amd64.whl", hash = "sha256:48e424347a45568413deec6f6ee2d720de2cc0385019bedf44cd93e8638aa0ed"}, - {file = "yarl-1.17.2-py3-none-any.whl", hash = "sha256:dd7abf4f717e33b7487121faf23560b3a50924f80e4bef62b22dab441ded8f3b"}, - {file = "yarl-1.17.2.tar.gz", hash = "sha256:753eaaa0c7195244c84b5cc159dc8204b7fd99f716f11198f999f2332a86b178"}, + {file = "yarl-1.18.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:074fee89caab89a97e18ef5f29060ef61ba3cae6cd77673acc54bfdd3214b7b7"}, + {file = "yarl-1.18.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b026cf2c32daf48d90c0c4e406815c3f8f4cfe0c6dfccb094a9add1ff6a0e41a"}, + {file = "yarl-1.18.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ae38bd86eae3ba3d2ce5636cc9e23c80c9db2e9cb557e40b98153ed102b5a736"}, + {file = "yarl-1.18.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:685cc37f3f307c6a8e879986c6d85328f4c637f002e219f50e2ef66f7e062c1d"}, + {file = "yarl-1.18.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8254dbfce84ee5d1e81051ee7a0f1536c108ba294c0fdb5933476398df0654f3"}, + {file = "yarl-1.18.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:20de4a8b04de70c49698dc2390b7fd2d18d424d3b876371f9b775e2b462d4b41"}, + {file = "yarl-1.18.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b0a2074a37285570d54b55820687de3d2f2b9ecf1b714e482e48c9e7c0402038"}, + {file = "yarl-1.18.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3f576ed278860df2721a5d57da3381040176ef1d07def9688a385c8330db61a1"}, + {file = "yarl-1.18.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3a3709450a574d61be6ac53d582496014342ea34876af8dc17cc16da32826c9a"}, + {file = "yarl-1.18.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:bd80ed29761490c622edde5dd70537ca8c992c2952eb62ed46984f8eff66d6e8"}, + {file = "yarl-1.18.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:32141e13a1d5a48525e519c9197d3f4d9744d818d5c7d6547524cc9eccc8971e"}, + {file = "yarl-1.18.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8b8d3e4e014fb4274f1c5bf61511d2199e263909fb0b8bda2a7428b0894e8dc6"}, + {file = "yarl-1.18.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:701bb4a8f4de191c8c0cc9a1e6d5142f4df880e9d1210e333b829ca9425570ed"}, + {file = "yarl-1.18.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:a45d94075ac0647621eaaf693c8751813a3eccac455d423f473ffed38c8ac5c9"}, + {file = "yarl-1.18.0-cp310-cp310-win32.whl", hash = "sha256:34176bfb082add67cb2a20abd85854165540891147f88b687a5ed0dc225750a0"}, + {file = "yarl-1.18.0-cp310-cp310-win_amd64.whl", hash = "sha256:73553bbeea7d6ec88c08ad8027f4e992798f0abc459361bf06641c71972794dc"}, + {file = "yarl-1.18.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:b8e8c516dc4e1a51d86ac975b0350735007e554c962281c432eaa5822aa9765c"}, + {file = "yarl-1.18.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2e6b4466714a73f5251d84b471475850954f1fa6acce4d3f404da1d55d644c34"}, + {file = "yarl-1.18.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c893f8c1a6d48b25961e00922724732d00b39de8bb0b451307482dc87bddcd74"}, + {file = "yarl-1.18.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:13aaf2bdbc8c86ddce48626b15f4987f22e80d898818d735b20bd58f17292ee8"}, + {file = "yarl-1.18.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dd21c0128e301851de51bc607b0a6da50e82dc34e9601f4b508d08cc89ee7929"}, + {file = "yarl-1.18.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:205de377bd23365cd85562c9c6c33844050a93661640fda38e0567d2826b50df"}, + {file = "yarl-1.18.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ed69af4fe2a0949b1ea1d012bf065c77b4c7822bad4737f17807af2adb15a73c"}, + {file = "yarl-1.18.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8e1c18890091aa3cc8a77967943476b729dc2016f4cfe11e45d89b12519d4a93"}, + {file = "yarl-1.18.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91b8fb9427e33f83ca2ba9501221ffaac1ecf0407f758c4d2f283c523da185ee"}, + {file = "yarl-1.18.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:536a7a8a53b75b2e98ff96edb2dfb91a26b81c4fed82782035767db5a465be46"}, + {file = "yarl-1.18.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:a64619a9c47c25582190af38e9eb382279ad42e1f06034f14d794670796016c0"}, + {file = "yarl-1.18.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:c73a6bbc97ba1b5a0c3c992ae93d721c395bdbb120492759b94cc1ac71bc6350"}, + {file = "yarl-1.18.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:a173401d7821a2a81c7b47d4e7d5c4021375a1441af0c58611c1957445055056"}, + {file = "yarl-1.18.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:7520e799b1f84e095cce919bd6c23c9d49472deeef25fe1ef960b04cca51c3fc"}, + {file = "yarl-1.18.0-cp311-cp311-win32.whl", hash = "sha256:c4cb992d8090d5ae5f7afa6754d7211c578be0c45f54d3d94f7781c495d56716"}, + {file = "yarl-1.18.0-cp311-cp311-win_amd64.whl", hash = "sha256:52c136f348605974c9b1c878addd6b7a60e3bf2245833e370862009b86fa4689"}, + {file = "yarl-1.18.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:1ece25e2251c28bab737bdf0519c88189b3dd9492dc086a1d77336d940c28ced"}, + {file = "yarl-1.18.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:454902dc1830d935c90b5b53c863ba2a98dcde0fbaa31ca2ed1ad33b2a7171c6"}, + {file = "yarl-1.18.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:01be8688fc211dc237e628fcc209dda412d35de7642453059a0553747018d075"}, + {file = "yarl-1.18.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d26f1fa9fa2167bb238f6f4b20218eb4e88dd3ef21bb8f97439fa6b5313e30d"}, + {file = "yarl-1.18.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b234a4a9248a9f000b7a5dfe84b8cb6210ee5120ae70eb72a4dcbdb4c528f72f"}, + {file = "yarl-1.18.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe94d1de77c4cd8caff1bd5480e22342dbd54c93929f5943495d9c1e8abe9f42"}, + {file = "yarl-1.18.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9b4c90c5363c6b0a54188122b61edb919c2cd1119684999d08cd5e538813a28e"}, + {file = "yarl-1.18.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:49a98ecadc5a241c9ba06de08127ee4796e1009555efd791bac514207862b43d"}, + {file = "yarl-1.18.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9106025c7f261f9f5144f9aa7681d43867eed06349a7cfb297a1bc804de2f0d1"}, + {file = "yarl-1.18.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:f275ede6199d0f1ed4ea5d55a7b7573ccd40d97aee7808559e1298fe6efc8dbd"}, + {file = "yarl-1.18.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:f7edeb1dcc7f50a2c8e08b9dc13a413903b7817e72273f00878cb70e766bdb3b"}, + {file = "yarl-1.18.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c083f6dd6951b86e484ebfc9c3524b49bcaa9c420cb4b2a78ef9f7a512bfcc85"}, + {file = "yarl-1.18.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:80741ec5b471fbdfb997821b2842c59660a1c930ceb42f8a84ba8ca0f25a66aa"}, + {file = "yarl-1.18.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b1a3297b9cad594e1ff0c040d2881d7d3a74124a3c73e00c3c71526a1234a9f7"}, + {file = "yarl-1.18.0-cp312-cp312-win32.whl", hash = "sha256:cd6ab7d6776c186f544f893b45ee0c883542b35e8a493db74665d2e594d3ca75"}, + {file = "yarl-1.18.0-cp312-cp312-win_amd64.whl", hash = "sha256:039c299a0864d1f43c3e31570045635034ea7021db41bf4842693a72aca8df3a"}, + {file = "yarl-1.18.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:6fb64dd45453225f57d82c4764818d7a205ee31ce193e9f0086e493916bd4f72"}, + {file = "yarl-1.18.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:3adaaf9c6b1b4fc258584f4443f24d775a2086aee82d1387e48a8b4f3d6aecf6"}, + {file = "yarl-1.18.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:da206d1ec78438a563c5429ab808a2b23ad7bc025c8adbf08540dde202be37d5"}, + {file = "yarl-1.18.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:576d258b21c1db4c6449b1c572c75d03f16a482eb380be8003682bdbe7db2f28"}, + {file = "yarl-1.18.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c60e547c0a375c4bfcdd60eef82e7e0e8698bf84c239d715f5c1278a73050393"}, + {file = "yarl-1.18.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e3818eabaefb90adeb5e0f62f047310079d426387991106d4fbf3519eec7d90a"}, + {file = "yarl-1.18.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a5f72421246c21af6a92fbc8c13b6d4c5427dfd949049b937c3b731f2f9076bd"}, + {file = "yarl-1.18.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7fa7d37f2ada0f42e0723632993ed422f2a679af0e200874d9d861720a54f53e"}, + {file = "yarl-1.18.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:42ba84e2ac26a3f252715f8ec17e6fdc0cbf95b9617c5367579fafcd7fba50eb"}, + {file = "yarl-1.18.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:6a49ad0102c0f0ba839628d0bf45973c86ce7b590cdedf7540d5b1833ddc6f00"}, + {file = "yarl-1.18.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:96404e8d5e1bbe36bdaa84ef89dc36f0e75939e060ca5cd45451aba01db02902"}, + {file = "yarl-1.18.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:a0509475d714df8f6d498935b3f307cd122c4ca76f7d426c7e1bb791bcd87eda"}, + {file = "yarl-1.18.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:1ff116f0285b5c8b3b9a2680aeca29a858b3b9e0402fc79fd850b32c2bcb9f8b"}, + {file = "yarl-1.18.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e2580c1d7e66e6d29d6e11855e3b1c6381971e0edd9a5066e6c14d79bc8967af"}, + {file = "yarl-1.18.0-cp313-cp313-win32.whl", hash = "sha256:14408cc4d34e202caba7b5ac9cc84700e3421a9e2d1b157d744d101b061a4a88"}, + {file = "yarl-1.18.0-cp313-cp313-win_amd64.whl", hash = "sha256:1db1537e9cb846eb0ff206eac667f627794be8b71368c1ab3207ec7b6f8c5afc"}, + {file = "yarl-1.18.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:fa2c9cb607e0f660d48c54a63de7a9b36fef62f6b8bd50ff592ce1137e73ac7d"}, + {file = "yarl-1.18.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c0f4808644baf0a434a3442df5e0bedf8d05208f0719cedcd499e168b23bfdc4"}, + {file = "yarl-1.18.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7db9584235895a1dffca17e1c634b13870852094f6389b68dcc6338086aa7b08"}, + {file = "yarl-1.18.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:309f8d27d6f93ceeeb80aa6980e883aa57895270f7f41842b92247e65d7aeddf"}, + {file = "yarl-1.18.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:609ffd44fed2ed88d9b4ef62ee860cf86446cf066333ad4ce4123505b819e581"}, + {file = "yarl-1.18.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f172b8b2c72a13a06ea49225a9c47079549036ad1b34afa12d5491b881f5b993"}, + {file = "yarl-1.18.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d89ae7de94631b60d468412c18290d358a9d805182373d804ec839978b120422"}, + {file = "yarl-1.18.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:466d31fd043ef9af822ee3f1df8fdff4e8c199a7f4012c2642006af240eade17"}, + {file = "yarl-1.18.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7609b8462351c4836b3edce4201acb6dd46187b207c589b30a87ffd1813b48dc"}, + {file = "yarl-1.18.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:d9d4f5e471e8dc49b593a80766c2328257e405f943c56a3dc985c125732bc4cf"}, + {file = "yarl-1.18.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:67b336c15e564d76869c9a21316f90edf546809a5796a083b8f57c845056bc01"}, + {file = "yarl-1.18.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:b212452b80cae26cb767aa045b051740e464c5129b7bd739c58fbb7deb339e7b"}, + {file = "yarl-1.18.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:38b39b7b3e692b6c92b986b00137a3891eddb66311b229d1940dcbd4f025083c"}, + {file = "yarl-1.18.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a7ee6884a8848792d58b854946b685521f41d8871afa65e0d4a774954e9c9e89"}, + {file = "yarl-1.18.0-cp39-cp39-win32.whl", hash = "sha256:b4095c5019bb889aa866bf12ed4c85c0daea5aafcb7c20d1519f02a1e738f07f"}, + {file = "yarl-1.18.0-cp39-cp39-win_amd64.whl", hash = "sha256:2d90f2e4d16a5b0915ee065218b435d2ef619dd228973b1b47d262a6f7cd8fa5"}, + {file = "yarl-1.18.0-py3-none-any.whl", hash = "sha256:dbf53db46f7cf176ee01d8d98c39381440776fcda13779d269a8ba664f69bec0"}, + {file = "yarl-1.18.0.tar.gz", hash = "sha256:20d95535e7d833889982bfe7cc321b7f63bf8879788fee982c76ae2b24cfb715"}, ] [package.dependencies] @@ -5081,4 +5053,4 @@ test = ["mypy", "pre-commit", "pytest", "pytest-asyncio", "websockets (>=10.0)"] [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "9edd0100b93348259a826b0f4e2aea10c46f04a648e172b5cda930eb158b9316" +content-hash = "bdce0f2249243262fbfd1e73df3f2525c8ca624df6da458480636a19db26c4fe" diff --git a/data/data-pipeline/pyproject.toml b/data/data-pipeline/pyproject.toml index 303408db..e6fff8e8 100644 --- a/data/data-pipeline/pyproject.toml +++ b/data/data-pipeline/pyproject.toml @@ -44,18 +44,18 @@ fiona = "~1.8.21" [tool.poetry.group.dev.dependencies] black = "^21" -flake8 = "^3.9.2" -liccheck = "^0.6.2" +flake8 = "^7.1.1" +liccheck = "^0.9.2" mypy = "^0.910" openpyxl = "^3.0.7" pylint = "^2.9.6" -pytest = "^6.2.4" +pytest = "^8.3.3" safety = "^2.3.1" tox = "^3.24.0" -pytest-mock = "^3.6.1" +pytest-mock = "^3.14.0" tox-poetry = "^0.4.1" pandas-vet = "^0.2.2" -pytest-snapshot = "^0.8.1" +pytest-snapshot = "^0.9.0" seaborn = "^0.11.2" papermill = "^2.3.4" jupyterlab = "^3.6.7" From 179660944cb150168d8fa54d68d597d552b3d4df Mon Sep 17 00:00:00 2001 From: ericiwamoto <100735505+ericiwamoto@users.noreply.github.com> Date: Wed, 27 Nov 2024 08:26:47 -0800 Subject: [PATCH 17/28] Update frontend test snapshots --- .gitignore | 3 +++ client/package.json | 1 + .../MapLegend/tests/__snapshots__/mapLegend.test.tsx.snap | 4 ++-- .../__snapshots__/SidePanelInfo.test.tsx.snap | 8 ++++---- .../components/__snapshots__/mapInfoPanel.test.tsx.snap | 8 ++++---- 5 files changed, 14 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index 36c2ca61..07d1cb50 100644 --- a/.gitignore +++ b/.gitignore @@ -150,3 +150,6 @@ node_modules .python-version .DS_Store temp_dir + +# asdf tooling +.tool-versions diff --git a/client/package.json b/client/package.json index fefac8fd..0bd78a81 100644 --- a/client/package.json +++ b/client/package.json @@ -68,6 +68,7 @@ "husky": "^7.0.4", "identity-obj-proxy": "^3.0.0", "jest": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", "license-checker": "^25.0.1", "prettier": "^2.6.0", "react-test-renderer": "^17.0.2", diff --git a/client/src/components/MapLegend/tests/__snapshots__/mapLegend.test.tsx.snap b/client/src/components/MapLegend/tests/__snapshots__/mapLegend.test.tsx.snap index f772b0dd..a464fdc3 100644 --- a/client/src/components/MapLegend/tests/__snapshots__/mapLegend.test.tsx.snap +++ b/client/src/components/MapLegend/tests/__snapshots__/mapLegend.test.tsx.snap @@ -18,8 +18,8 @@ exports[`rendering of the MapLegend checks if snapshots have changed 1`] = ` class="secondary" > - Communities identified as disadvantaged by the map are those that are marginalized, underserved, - and overburdened by pollution. These communities are at or above the thresholds in one or + Communities identified as disadvantaged by the map are those that are marginalized, underserved, + and overburdened by pollution. These communities are at or above the thresholds in one or more of eight categories of criteria.

diff --git a/client/src/components/SidePanelInfo/__snapshots__/SidePanelInfo.test.tsx.snap b/client/src/components/SidePanelInfo/__snapshots__/SidePanelInfo.test.tsx.snap index 332c2f33..15688eec 100644 --- a/client/src/components/SidePanelInfo/__snapshots__/SidePanelInfo.test.tsx.snap +++ b/client/src/components/SidePanelInfo/__snapshots__/SidePanelInfo.test.tsx.snap @@ -34,7 +34,7 @@ exports[`rendering of the component expects the render to match snapshot 1`] = ` tabindex="0" /> - , or locate yourself + , or locate yourself 
@@ -70,7 +70,7 @@ exports[`rendering of the component expects the render to match snapshot 1`] = `
         tabindex= - . Census tracts are a small unit of geography. They generally have populations + . Census tracts are a small unit of geography. They generally have populations 
@@ -87,7 +87,7 @@ exports[`rendering of the component expects the render to match snapshot 1`] = `
       tabindex= - Communities that are disadvantaged live in tracts that experience burdens. These tracts are highlighted + Communities that are disadvantaged live in tracts that experience burdens. These tracts are highlighted 
@@ -131,7 +131,7 @@ exports[`rendering of the component expects the render to match snapshot 1`] = `
         tabindex= - , or cutoffs, are used to determine if communities in a tract are disadvantaged. Certain burdens use percentages + , or cutoffs, are used to determine if communities in a tract are disadvantaged. Certain burdens use percentages 
diff --git a/client/src/components/__snapshots__/mapInfoPanel.test.tsx.snap b/client/src/components/__snapshots__/mapInfoPanel.test.tsx.snap
index a619ebb2..4c6cf268 100644
--- a/client/src/components/__snapshots__/mapInfoPanel.test.tsx.snap
+++ b/client/src/components/__snapshots__/mapInfoPanel.test.tsx.snap
@@ -39,7 +39,7 @@ exports[`simulate app starting up, no click on map should match the snapshot of
           tabindex= - , or locate yourself + , or locate yourself 
@@ -75,7 +75,7 @@ exports[`simulate app starting up, no click on map should match the snapshot of
           tabindex= - . Census tracts are a small unit of geography. They generally have populations + . Census tracts are a small unit of geography. They generally have populations 
@@ -92,7 +92,7 @@ exports[`simulate app starting up, no click on map should match the snapshot of
         tabindex= - Communities that are disadvantaged live in tracts that experience burdens. These tracts are highlighted + Communities that are disadvantaged live in tracts that experience burdens. These tracts are highlighted 
@@ -136,7 +136,7 @@ exports[`simulate app starting up, no click on map should match the snapshot of
           tabindex= - , or cutoffs, are used to determine if communities in a tract are disadvantaged. Certain burdens use percentages + , or cutoffs, are used to determine if communities in a tract are disadvantaged. Certain burdens use percentages 

From 3b5e040f3a27a900f6b0950ccb837b24c8901bb5 Mon Sep 17 00:00:00 2001
From: ericiwamoto <100735505+ericiwamoto@users.noreply.github.com>
Date: Wed, 27 Nov 2024 08:51:53 -0800
Subject: [PATCH 18/28] Refactor markdown check workflow

---
 .github/workflows/markdown-link-check.yml | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/.github/workflows/markdown-link-check.yml b/.github/workflows/markdown-link-check.yml
index 780dd59c..9db37edb 100644
--- a/.github/workflows/markdown-link-check.yml
+++ b/.github/workflows/markdown-link-check.yml
@@ -1,15 +1,14 @@
-name: Check Markdown links
+name: Check Markdown Links
 on:
   pull_request:
-    # The branches below must be a subset of the branches above
     branches: [ main ]
-    # Run only if the pull request changes a markdown file:
-    # https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#onpushpull_requestpaths
     paths:
       - '**.md'
 jobs:
-  markdown-link-check:
-    runs-on: ubuntu-latest
+  check-links:
+    name: runner / linkspector
+    runs-on: ubuntu-22.04
     steps:
-    - uses: actions/checkout@v2
-    - uses: gaurav-nelson/github-action-markdown-link-check@v1
+      - uses: actions/checkout@v4
+      - name: Run linkspector
+        uses: umbrelladocs/action-linkspector@v1
\ No newline at end of file

From f8bd1acf26f9b70329705a9897758755db8cbec1 Mon Sep 17 00:00:00 2001
From: ericiwamoto <100735505+ericiwamoto@users.noreply.github.com>
Date: Wed, 27 Nov 2024 09:07:17 -0800
Subject: [PATCH 19/28] Even more data pipeline fixes

---
 .github/workflows/deploy_backend_main.yml                 | 8 ++++----
 .../data_pipeline/files/readme-version-2.0.md             | 0
 2 files changed, 4 insertions(+), 4 deletions(-)
 create mode 100644 data/data-pipeline/data_pipeline/files/readme-version-2.0.md

diff --git a/.github/workflows/deploy_backend_main.yml b/.github/workflows/deploy_backend_main.yml
index a3077ca2..7cc0684a 100644
--- a/.github/workflows/deploy_backend_main.yml
+++ b/.github/workflows/deploy_backend_main.yml
@@ -50,7 +50,7 @@ jobs:
         run: poetry add s4cmd && poetry install
         if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
       - name: Configure AWS Credentials
-        uses: aws-actions/configure-aws-credentials@v1
+        uses: aws-actions/configure-aws-credentials@v4
         with:
           aws-access-key-id: ${{ secrets.DATA_DEV_AWS_ACCESS_KEY_ID }}
           aws-secret-access-key: ${{ secrets.DATA_DEV_AWS_SECRET_ACCESS_KEY }}
@@ -89,7 +89,7 @@ jobs:
           poetry run s4cmd put ./data_pipeline/data/score/csv/ s3://${{secrets.S3_DATA_BUCKET}}/data-versions/${{env.J40_VERSION_LABEL_STRING}}/data/score/csv --recursive --force
           poetry run s4cmd put ./data_pipeline/files/ s3://${{secrets.S3_DATA_BUCKET}}/data-versions/${{env.J40_VERSION_LABEL_STRING}}/data/score/downloadable --recursive --force
           poetry run s4cmd put ./data_pipeline/data/score/downloadable/ s3://${{secrets.S3_DATA_BUCKET}}/data-versions/${{env.J40_VERSION_LABEL_STRING}}/data/score/downloadable --recursive --force
-      - name: Confirm we generated the version of the score we think we did
+      - name: Deploy 1.0 score post
         if: ${{ env.J40_VERSION_LABEL_STRING == '1.0' || env.J40_VERSION_LABEL_STRING == 'test' }}
         run: |
           curl Date: Mon, 2 Dec 2024 09:03:23 -0800 Subject: [PATCH 20/28] Multiple workflow fixes --- .github/workflows/deploy_backend_main.yml | 50 +++++++++++----------- .github/workflows/deploy_frontend_main.yml | 6 +-- .github/workflows/markdown-link-check.yml | 4 +- 3 files changed, 32 insertions(+), 28 deletions(-) diff --git a/.github/workflows/deploy_backend_main.yml b/.github/workflows/deploy_backend_main.yml index 7cc0684a..1a420687 100644 --- a/.github/workflows/deploy_backend_main.yml +++ b/.github/workflows/deploy_backend_main.yml @@ -1,21 +1,12 @@ name: Deploy Backend Main on: - workflow_dispatch: - inputs: - score_version: - description: "Which version of the score are you generating?" - required: true - default: '2.0' - type: choice - options: - - beta - - 1.0 - - 2.0 - - test - + push: + branches: [main] + paths: + - "data/**" env: CENSUS_API_KEY: ${{ secrets.CENSUS_API_KEY }} - J40_VERSION_LABEL_STRING: ${{ inputs.score_version }} + J40_VERSION_LABEL_STRING: ${{ vars.SCORE_VERSION }} jobs: generate-score-tiles: @@ -81,28 +72,31 @@ jobs: run: | poetry run python3 data_pipeline/application.py geo-score - name: Run smoketest for 1.0 - if: ${{ env.J40_VERSION_LABEL_STRING == '1.0' || env.J40_VERSION_LABEL_STRING == 'test' }} + if: ${{ env.J40_VERSION_LABEL_STRING == '1.0' }} run: | poetry run pytest data_pipeline/ -m smoketest - name: Deploy Score to Geoplatform AWS run: | - poetry run s4cmd put ./data_pipeline/data/score/csv/ s3://${{secrets.S3_DATA_BUCKET}}/data-versions/${{env.J40_VERSION_LABEL_STRING}}/data/score/csv --recursive --force - poetry run s4cmd put ./data_pipeline/files/ s3://${{secrets.S3_DATA_BUCKET}}/data-versions/${{env.J40_VERSION_LABEL_STRING}}/data/score/downloadable --recursive --force - poetry run s4cmd put ./data_pipeline/data/score/downloadable/ s3://${{secrets.S3_DATA_BUCKET}}/data-versions/${{env.J40_VERSION_LABEL_STRING}}/data/score/downloadable --recursive --force + poetry run s4cmd put ./data_pipeline/data/score/csv/ s3://${{secrets.S3_DATA_BUCKET}}/data-versions/${{env.J40_VERSION_LABEL_STRING}}/data/score/csv --sync-check --recursive --force + poetry run s4cmd put ./data_pipeline/files/ s3://${{secrets.S3_DATA_BUCKET}}/data-versions/${{env.J40_VERSION_LABEL_STRING}}/data/score/downloadable --sync-check --recursive --force + poetry run s4cmd put ./data_pipeline/data/score/downloadable/ s3://${{secrets.S3_DATA_BUCKET}}/data-versions/${{env.J40_VERSION_LABEL_STRING}}/data/score/downloadable --sync-check --recursive --force - name: Deploy 1.0 score post - if: ${{ env.J40_VERSION_LABEL_STRING == '1.0' || env.J40_VERSION_LABEL_STRING == 'test' }} + if: ${{ env.J40_VERSION_LABEL_STRING == '1.0' }} run: | curl "${{secrets.DATA_URL}}/data-versions/1.0/data/score/downloadable/1.0-shapefile-codebook.zip" -s -f -I -o /dev/null && \ curl "${{secrets.DATA_URL}}/data-versions/1.0/data/score/downloadable/1.0-communities.xlsx" -s -f -I -o /dev/null && \ curl "${{secrets.DATA_URL}}/data-versions/1.0/data/score/downloadable/1.0-communities.csv" -s -f -I -o /dev/null && \ - curl "${{secrets.DATA_URL}}/data-versions/1.0/data/score/downloadable/1.0-shapefile-codebook.zip" -s -f -I -o /dev/null && \ curl "${{secrets.DATA_URL}}/data-versions/1.0/data/score/downloadable/cejst-technical-support-document.pdf" -s -f -I -o /dev/null && \ curl "${{secrets.DATA_URL}}/data-versions/1.0/data/score/downloadable/draft-communities-list.pdf" -s -f -I -o /dev/null - name: Deploy 2.0 score post - if: ${{ env.J40_VERSION_LABEL_STRING == '2.0' || env.J40_VERSION_LABEL_STRING == 'beta' }} + if: ${{ env.J40_VERSION_LABEL_STRING == '2.0' }} run: | curl "${{secrets.DATA_URL}}/data-versions/2.0/data/score/downloadable/2.0-data-documentation.zip" -s -f -I -o /dev/null && \ curl "${{secrets.DATA_URL}}/data-versions/2.0/data/score/downloadable/2.0-shapefile-codebook.zip" -s -f -I -o /dev/null + curl "${{secrets.DATA_URL}}/data-versions/2.0/data/score/downloadable/2.0-communities.xlsx" -s -f -I -o /dev/null && \ + curl "${{secrets.DATA_URL}}/data-versions/2.0/data/score/downloadable/2.0-communities.csv" -s -f -I -o /dev/null && \ + curl "${{secrets.DATA_URL}}/data-versions/2.0/data/score/downloadable/cejst-technical-support-document.pdf" -s -f -I -o /dev/null && \ + curl "${{secrets.DATA_URL}}/data-versions/2.0/data/score/downloadable/draft-communities-list.pdf" -s -f -I -o /dev/null - name: Set timezone for tippecanoe uses: szenius/set-timezone@v2.0 with: @@ -125,6 +119,14 @@ jobs: poetry run python3 data_pipeline/application.py generate-map-tiles - name: Deploy Map to Geoplatform AWS run: | - poetry run s4cmd put ./data_pipeline/data/score/geojson/ s3://${{secrets.S3_DATA_BUCKET}}/data-versions/${{env.J40_VERSION_LABEL_STRING}}/data/score/geojson --recursive --force --num-threads=250 - poetry run s4cmd put ./data_pipeline/data/score/shapefile/ s3://${{secrets.S3_DATA_BUCKET}}/data-versions/${{env.J40_VERSION_LABEL_STRING}}/data/score/shapefile --recursive --force - poetry run s4cmd put ./data_pipeline/data/score/tiles/ s3://${{secrets.S3_DATA_BUCKET}}/data-versions/${{env.J40_VERSION_LABEL_STRING}}/data/score/tiles --recursive --force --num-threads=250 + poetry run s4cmd put ./data_pipeline/data/score/geojson/ s3://${{secrets.S3_DATA_BUCKET}}/data-versions/${{env.J40_VERSION_LABEL_STRING}}/data/score/geojson --sync-check --recursive --force --delete-removed --num-threads=250 + poetry run s4cmd put ./data_pipeline/data/score/shapefile/ s3://${{secrets.S3_DATA_BUCKET}}/data-versions/${{env.J40_VERSION_LABEL_STRING}}/data/score/shapefile --sync-check --recursive --force --delete-removed + poetry run s4cmd put ./data_pipeline/data/score/tiles/ s3://${{secrets.S3_DATA_BUCKET}}/data-versions/${{env.J40_VERSION_LABEL_STRING}}/data/score/tiles --sync-check --recursive --force --delete-removed --num-threads=250 + - name: Invalidate cache on AWS CDN + uses: chetan/invalidate-cloudfront-action@master + env: + DISTRIBUTION: ${{secrets.DATA_CDN_ID}} + PATHS: "/*" + AWS_REGION: "us-east-1" + AWS_ACCESS_KEY_ID: ${{ secrets.CLIENT_DEV_AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.CLIENT_DEV_AWS_SECRET_ACCESS_KEY }} diff --git a/.github/workflows/deploy_frontend_main.yml b/.github/workflows/deploy_frontend_main.yml index 35efb709..662edeaa 100644 --- a/.github/workflows/deploy_frontend_main.yml +++ b/.github/workflows/deploy_frontend_main.yml @@ -15,7 +15,7 @@ jobs: matrix: node-version: [14.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v2 with: @@ -58,7 +58,7 @@ jobs: environment: Staging steps: - name: Checkout source - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Download Artifacts uses: actions/download-artifact@v4 with: @@ -68,7 +68,7 @@ jobs: run: | echo "DESTINATION_FOLDER=main" >> $GITHUB_ENV - name: Configure AWS Credentials - uses: aws-actions/configure-aws-credentials@v1 + uses: aws-actions/configure-aws-credentials@v4 with: aws-access-key-id: ${{ secrets.CLIENT_DEV_AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.CLIENT_DEV_AWS_SECRET_ACCESS_KEY }} diff --git a/.github/workflows/markdown-link-check.yml b/.github/workflows/markdown-link-check.yml index 9db37edb..dfe4d024 100644 --- a/.github/workflows/markdown-link-check.yml +++ b/.github/workflows/markdown-link-check.yml @@ -11,4 +11,6 @@ jobs: steps: - uses: actions/checkout@v4 - name: Run linkspector - uses: umbrelladocs/action-linkspector@v1 \ No newline at end of file + uses: umbrelladocs/action-linkspector@v1 + with: + fail_on_error: true \ No newline at end of file From a983a42b55a47cd95d64a1b180f54b46caaca151 Mon Sep 17 00:00:00 2001 From: Carlos Felix <63804190+carlosfelix2@users.noreply.github.com> Date: Mon, 2 Dec 2024 12:55:34 -0500 Subject: [PATCH 21/28] Fixed Decennial 2020 tract removal bug --- .../data_pipeline/etl/sources/census_decennial/etl.py | 2 +- .../data_pipeline/tests/sources/census_decennial/test_etl.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/data/data-pipeline/data_pipeline/etl/sources/census_decennial/etl.py b/data/data-pipeline/data_pipeline/etl/sources/census_decennial/etl.py index 6794b45d..8d32ec98 100644 --- a/data/data-pipeline/data_pipeline/etl/sources/census_decennial/etl.py +++ b/data/data-pipeline/data_pipeline/etl/sources/census_decennial/etl.py @@ -128,7 +128,7 @@ class CensusDecennialETL(ExtractTransformLoad): > 0, DEC_FIELD_NAMES.TERRITORY_MEDIAN_INCOME, ] = territory["median_income"] - self.df_all = pd.concat([self.df_all, df]) + self.df_all = pd.concat([self.df_all, df], ignore_index=True) def _merge_tracts_2010_compatibility(self): """Merges tract 69120950200 to match 2010 tracts""" diff --git a/data/data-pipeline/data_pipeline/tests/sources/census_decennial/test_etl.py b/data/data-pipeline/data_pipeline/tests/sources/census_decennial/test_etl.py index feb3f8d9..0471733b 100644 --- a/data/data-pipeline/data_pipeline/tests/sources/census_decennial/test_etl.py +++ b/data/data-pipeline/data_pipeline/tests/sources/census_decennial/test_etl.py @@ -97,6 +97,7 @@ def test_load_data(extract_path_fixture: Path, territory_params_fixture): df = dec.df_all assert len(df) == 64 assert len(df.columns) == 30 + assert df.index.is_unique # Columns should not have any census variable names census_vars = list(DEC_TERRITORY_PARAMS[0]["xwalk"].keys()) + list( From 0ad64588ea509af11bcd65de00a67c8bd292013e Mon Sep 17 00:00:00 2001 From: Carlos Felix <63804190+carlosfelix2@users.noreply.github.com> Date: Mon, 2 Dec 2024 15:14:02 -0500 Subject: [PATCH 22/28] Comparator generate delta even with column differences --- .../data-pipeline/data_pipeline/comparator.py | 221 ++++++++++-------- 1 file changed, 121 insertions(+), 100 deletions(-) diff --git a/data/data-pipeline/data_pipeline/comparator.py b/data/data-pipeline/data_pipeline/comparator.py index 6aa85ffd..eed14b4f 100644 --- a/data/data-pipeline/data_pipeline/comparator.py +++ b/data/data-pipeline/data_pipeline/comparator.py @@ -1,6 +1,5 @@ import sys import click -import difflib import pandas as pd from pathlib import Path @@ -16,6 +15,26 @@ pd.set_option("display.max_rows", None) pd.set_option("display.width", 10000) pd.set_option("display.colheader_justify", "left") +result_text = [] + + +def _add_text(text: str): + """Add a line to the output result. + + Args: + line (str): a line to add + """ + result_text.append(text) + + +def _get_result_doc() -> str: + """Gets the document with results. + + Returns: + str: the results document as text + """ + return "".join(result_text) + def _read_from_file(file_path: Path): """Read a CSV file into a Dataframe.""" @@ -65,7 +84,9 @@ def cli(): default=constants.DATA_SCORE_CSV_FULL_FILE_PATH, help="Compare to the specified score CSV file instead of downloading from production", ) -def compare_score(compare_to_version: str, compare_to_file: str, local_score_file: str): +def compare_score( + compare_to_version: str, compare_to_file: str, local_score_file: str +): """Compares the score in the production environment to the locally generated score. The algorithm is pretty simple: @@ -81,10 +102,6 @@ def compare_score(compare_to_version: str, compare_to_file: str, local_score_fil FLOAT_ROUNDING_PLACES = 2 WORKING_PATH = constants.TMP_PATH / "Comparator" / "Score" - summary = "# Score Comparison Summary\n" - summary += f"Hi! I'm the Score Comparator. I compared the score in production (version {compare_to_version}) to the" - summary += " locally calculated score. Here are the results.\n" - log_title("Compare Score", "Compare production score to local score") if compare_to_file: @@ -118,59 +135,73 @@ def compare_score(compare_to_version: str, compare_to_file: str, local_score_fil production_score_df_columns = sorted( production_score_df.columns.array.tolist() ) - - log_info("Comparing columns (production vs local). Differences are: ") - summary += "\n## Columns\n" - summary += "I compared the columns. Here's what I found.\n" - - col_diff = difflib.unified_diff( - production_score_df_columns, local_score_df_columns + extra_cols_in_local = set(local_score_df_columns) - set( + production_score_df_columns + ) + extra_cols_in_prod = set(production_score_df_columns) - set( + local_score_df_columns ) - col_diff_res = "" - for d in col_diff: - col_diff_res += str(d) + "\n" - if len(col_diff_res) == 0: - log_info("None. Columns are the same") - summary += "* There are no differences in the column names.\n" + _add_text("# Score Comparison Summary\n") + _add_text( + f"Hi! I'm the Score Comparator. I compared the score in production (version {compare_to_version}) to the" + " locally calculated score. Here are the results:\n\n" + ) + + ##################### + # Compare the columns + ##################### + log_info("Comparing columns (production vs local)") + _add_text("## Columns\n") + if len(extra_cols_in_local) == 0 and len(extra_cols_in_prod) == 0: + _add_text("* There are no differences in the column names.\n") else: - log_info("There are differences. The diff is:") - log_info(col_diff_res) - summary += f"* There are differences in the column names. Here's a diff:\n{col_diff_res}\n" + _add_text( + f"* There are {len(extra_cols_in_local)} columns that were added as compared to the production score." + ) + if len(extra_cols_in_local) > 0: + _add_text(f" Those colums are:\n{extra_cols_in_local}") + _add_text( + f"\n* There are {len(extra_cols_in_prod)} columns that were removed as compared to the production score." + ) + if len(extra_cols_in_prod) > 0: + _add_text(f" Those colums are:\n{extra_cols_in_prod}") + #################### + # Compare the scores + #################### log_info("Comparing dataframe contents (production vs local)") - summary += "\n## Scores\n" - summary += "I compared the scores, too. Here's what I found.\n" + _add_text("\n\n## Scores\n") production_row_count = len(production_score_df.index) local_row_count = len(local_score_df.index) - summary += f"* The production score has {production_row_count:,} census tracts, and the freshly calculated score has {local_row_count:,}." - summary += ( - " They match!\n" - if production_row_count == local_row_count - else " They don't match.\n" + _add_text( + f"* The production score has {production_row_count:,} census tracts, and the freshly calculated score has {local_row_count:,}." ) + if production_row_count == local_row_count: + _add_text(" They match!\n") + else: + _add_text(" They don't match. The differences are:\n") + _add_text( + " * New tracts added to the local score are:\n" + f"{local_score_df.index.difference(production_score_df.index).to_list()}" + "\n * Tracts removed from the local score are:\n" + f"{production_score_df.index.difference(local_score_df.index).to_list()}" + "\n" + ) production_total_population = production_score_df["Total population"].sum() local_total_population = local_score_df["Total population"].sum() - log_info( - f"The total population in all census tracts in production is {production_total_population:,}." + _add_text( + f"* The total population in all census tracts in the production score is {production_total_population:,}. " + f"The total population in all census tracts locally is {local_total_population:,}. " ) - log_info( - f"The total population in all census tracts locally is {local_total_population:,}." - ) - log_info( - f"The difference in population is {abs(production_total_population - local_total_population):,}." - ) - - summary += f"* The total population in all census tracts in the production score is {production_total_population:,}." - summary += f" The total population in all census tracts locally is {local_total_population:,}." - summary += ( - " They match!\n" + _add_text( + "They match!\n" if production_total_population == local_total_population - else f" The difference is {abs(production_total_population - local_total_population):,}.\n" + else f"The difference is {abs(production_total_population - local_total_population):,}.\n" ) production_disadvantaged_tracts_df = production_score_df.query( @@ -196,30 +227,18 @@ def compare_score(compare_to_version: str, compare_to_file: str, local_score_fil / local_total_population ) - log_info( - f"There are {len(production_disadvantaged_tracts_set):,} disadvantaged tracts in the production score." + _add_text( + f"* There are {len(production_disadvantaged_tracts_set):,} disadvantaged tracts in the production score representing" + f" {production_pct_of_population_represented:.1%} of the total population, and {len(local_disadvantaged_tracts_set):,}" ) - log_info( - f"This represents {production_pct_of_population_represented:.1%} of the total population." + _add_text( + f" in the locally generated score representing {local_pct_of_population_represented:.1%} of the total population." ) - log_info( - f"There are {len(local_disadvantaged_tracts_set):,} in the locally generated score." - ) - log_info( - f"This represents {local_pct_of_population_represented:.1%} of the total population." - ) - log_info( - f"The difference is {abs(len(production_disadvantaged_tracts_set) - len(local_disadvantaged_tracts_set)):,} tract(s)." - ) - - summary += f"* There are {len(production_disadvantaged_tracts_set):,} disadvantaged tracts in the production score representing" - summary += f" {production_pct_of_population_represented:.1%} of the total population, and {len(local_disadvantaged_tracts_set):,}" - summary += f" in the locally generated score representing {local_pct_of_population_represented:.1%} of the total population." - summary += ( - " The number of tracts match!\n" + _add_text( + " The number of tracts match!\n " if len(production_disadvantaged_tracts_set) == len(local_disadvantaged_tracts_set) - else f" The difference is {abs(len(production_disadvantaged_tracts_set) - len(local_disadvantaged_tracts_set))} tract(s).\n" + else f" The difference is {abs(len(production_disadvantaged_tracts_set) - len(local_disadvantaged_tracts_set))} tract(s).\n " ) removed_tracts = production_disadvantaged_tracts_set.difference( @@ -228,58 +247,60 @@ def compare_score(compare_to_version: str, compare_to_file: str, local_score_fil added_tracts = local_disadvantaged_tracts_set.difference( production_disadvantaged_tracts_set ) - removed_tracts_str = ", ".join(list(removed_tracts)) - added_tracts_str = ", ".join(list(added_tracts)) - - log_info( - f"There are {len(removed_tracts):,} tract(s) marked as disadvantaged in the prod " - "score that are not disadvantaged in the local score. Those tracts are:" - ) - log_info(removed_tracts_str) - log_info( - f"There are {len(added_tracts):,} tract(s) marked as disadvantaged in the local " - "score that are not disadvantaged in the prod score. Those tracts are:" - ) - log_info(added_tracts_str) - - summary += ( + _add_text( f"* There are {len(removed_tracts):,} tract(s) marked as disadvantaged in the production score that are not disadvantaged in the locally" - f" generated score (i.e. disadvantaged tracts that were removed by the new score). Those tracts are:\n{removed_tracts_str}\n" - f" There are {len(added_tracts):,} tract(s) marked as disadvantaged in the locally generated score that are not disadvantaged in the" - f" production score (i.e. disadvantaged tracts that were added by the new score). Those tracts are:\n{added_tracts_str}\n\n" + f" generated score (i.e. disadvantaged tracts that were removed by the new score). " ) + if len(removed_tracts) > 0: + _add_text(f"Those tracts are:\n{removed_tracts}\n") + _add_text( + f"* There are {len(added_tracts):,} tract(s) marked as disadvantaged in the locally generated score that are not disadvantaged in the" + f" production score (i.e. disadvantaged tracts that were added by the new score). " + ) + if len(added_tracts) > 0: + _add_text(f"Those tracts are:\n{added_tracts}\n") + + ################ + # Create a delta + ################ + _add_text("\n## Delta\n") + # First we make the columns on two dataframes to be the same to be able to compare + trimmed_prod_df = production_score_df.drop(extra_cols_in_prod, axis=1) + trimmed_local_df = local_score_df.drop(extra_cols_in_local, axis=1) try: - comparison_results_df = production_score_df.compare( - local_score_df, align_axis=1, keep_shape=False, keep_equal=False + comparison_results_df = trimmed_prod_df.compare( + trimmed_local_df, align_axis=1, keep_shape=False, keep_equal=False ).rename({"self": "Production", "other": "Local"}, axis=1, level=1) - summary += "* I compared all values across all census tracts." - summary += f" There are {len(comparison_results_df.index):,} tracts with at least one difference." - summary += " Please examine the logs or run the score comparison locally to view them all.\n" - - log_info( - f"There are {len(comparison_results_df.index)} rows with any differences." + _add_text( + "* I compared all values across all census tracts. Note this ignores any columns that have been added or removed." + f" There are {len(comparison_results_df.index):,} tracts with at least one difference.\n" ) - if len(comparison_results_df.index) > 0: - log_info("Those differences are:") - log_info("\n" + str(comparison_results_df)) - comparison_path = WORKING_PATH / "deltas.csv" - comparison_results_df.to_csv(path_or_buf=comparison_path) - log_info(f"Wrote comparison results to {comparison_path}") + + comparison_path = WORKING_PATH / "deltas.csv" + comparison_results_df.to_csv(path_or_buf=comparison_path) + + _add_text(f"* Wrote comparison results to {comparison_path}") except ValueError as e: - summary += "* I could not run a full comparison. This is likely because there are column or index (census tract) differences." - summary += " Please examine the logs or run the score comparison locally to find out more.\n" - log_info( - f"Encountered an exception while performing the comparison: {repr(e)}" + _add_text( + "* I could not run a full comparison. This is likely because there are column or index (census tract) differences." + " Please examine the logs or run the score comparison locally to find out more.\n" + ) + _add_text( + f"Encountered an exception while performing the comparison: {repr(e)}\n" ) + result_doc = _get_result_doc() + print(result_doc) + + # Write the report summary_path = WORKING_PATH / "comparison-summary.md" with open(summary_path, "w", encoding="utf-8") as f: - f.write(summary) + f.write(result_doc) log_info(f"Wrote comparison summary to {summary_path}") log_goodbye() From 84c1a3aaf4cf8fd369cab260adb734e37cdd8134 Mon Sep 17 00:00:00 2001 From: alene Date: Tue, 3 Dec 2024 10:46:45 -0500 Subject: [PATCH 23/28] Donut Hole DAC Qualification - Solution for Water Boundaries --- .../ipython/donut_hole_testing_2024.ipynb | 5773 +++++++++++++++++ .../data_pipeline/score/field_names.py | 3 + .../data_pipeline/score/utils.py | 40 + 3 files changed, 5816 insertions(+) create mode 100644 data/data-pipeline/data_pipeline/ipython/donut_hole_testing_2024.ipynb diff --git a/data/data-pipeline/data_pipeline/ipython/donut_hole_testing_2024.ipynb b/data/data-pipeline/data_pipeline/ipython/donut_hole_testing_2024.ipynb new file mode 100644 index 00000000..ba196d42 --- /dev/null +++ b/data/data-pipeline/data_pipeline/ipython/donut_hole_testing_2024.ipynb @@ -0,0 +1,5773 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "75d2705f", + "metadata": {}, + "source": [ + "# EXPLORATION OF DONUT HOLE WATER BOUNDARY ISSUE" + ] + }, + { + "cell_type": "markdown", + "id": "dea57328", + "metadata": {}, + "source": [ + "## Imports, constants, and data load" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "7ac0d5d9", + "metadata": {}, + "outputs": [], + "source": [ + "import geopandas as gpd\n", + "import pandas as pd\n", + "import numpy as np\n", + "import os\n", + "import sys\n", + "\n", + "module_path = os.path.abspath(os.path.join(\"../..\"))\n", + "if module_path not in sys.path:\n", + " sys.path.append(module_path)\n", + "\n", + "from data_pipeline.config import settings\n", + "from data_pipeline.etl.sources.geo_utils import (\n", + " add_tracts_for_geometries,\n", + " get_tract_geojson,\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "16b9ffd5", + "metadata": {}, + "outputs": [], + "source": [ + "# pull out necessary definitions from field_names.py\n", + "ORIGINAL_TRACT = \"ORIGINAL_TRACT\"\n", + "SCORE_N_COMMUNITIES = \"Definition N (communities)\"\n", + "GEOID_TRACT_FIELD = \"GEOID10_TRACT\"\n", + "ADJACENT_MEAN_SUFFIX = \" (based on adjacency index and low income alone)\"\n", + "ADJACENCY_INDEX_SUFFIX = \" (average of neighbors)\"\n", + "CAM_ID = '48061012305'" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "b3c256f9", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2024-11-19 19:29:38,131 [ data_pipeline.etl.sources.geo_utils] DEBUG Loading tract geometry data from census ETL\n" + ] + }, + { + "data": { + "text/plain": [ + "Index(['STATEFP10', 'COUNTYFP10', 'TRACTCE10', 'GEOID10_TRACT', 'NAME10',\n", + " 'NAMELSAD10', 'MTFCC10', 'FUNCSTAT10', 'ALAND10', 'AWATER10',\n", + " 'INTPTLAT10', 'INTPTLON10', 'geometry'],\n", + " dtype='object')" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# load Census data\n", + "tract_data = get_tract_geojson()\n", + "tract_data.columns" + ] + }, + { + "cell_type": "markdown", + "id": "f829c206", + "metadata": {}, + "source": [ + "## Look at example tract in Cameron, TX" + ] + }, + { + "cell_type": "markdown", + "id": "f6d133ca", + "metadata": {}, + "source": [ + "Tract no. 48061012305 in Cameron, TX is an example of a tract that displays the donut hole water boundary issue: all the tracts that it borders are classified as disadvantaged, and it meets the poverty threshold, yet it is being incorrectly categorized as non-disadvantaged due to its water boundary. Here we pull all adjacent tracts, compare to what we see on the map, and then look for solutions." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "106425b6", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
STATEFP10COUNTYFP10TRACTCE10ORIGINAL_TRACTNAME10NAMELSAD10MTFCC10FUNCSTAT10ALAND10AWATER10INTPTLAT10INTPTLON10geometryDefinition N (communities)
04806101230548061012305123.05Census Tract 123.05G5020S25920881324996211+26.2732070-097.2763703POLYGON ((-97.22490 26.41153, -97.22436 26.411...False
\n", + "
" + ], + "text/plain": [ + " STATEFP10 COUNTYFP10 TRACTCE10 ORIGINAL_TRACT NAME10 NAMELSAD10 \\\n", + "0 48 061 012305 48061012305 123.05 Census Tract 123.05 \n", + "\n", + " MTFCC10 FUNCSTAT10 ALAND10 AWATER10 INTPTLAT10 INTPTLON10 \\\n", + "0 G5020 S 25920881 324996211 +26.2732070 -097.2763703 \n", + "\n", + " geometry \\\n", + "0 POLYGON ((-97.22490 26.41153, -97.22436 26.411... \n", + "\n", + " Definition N (communities) \n", + "0 False " + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "## look at census data for Cameron\n", + "cam_only_df = pd.DataFrame({GEOID_TRACT_FIELD:[CAM_ID], SCORE_N_COMMUNITIES:[False]})\n", + "\n", + "cam_only_df: gpd.GeoDataFrame = tract_data.merge(\n", + " cam_only_df, on=GEOID_TRACT_FIELD\n", + " )\n", + "cam_only_df = cam_only_df.rename(columns={GEOID_TRACT_FIELD: ORIGINAL_TRACT})\n", + "cam_only_df" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "87cdbbaf", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
STATEFP10_leftCOUNTYFP10_leftTRACTCE10_leftORIGINAL_TRACTNAME10_leftNAMELSAD10_leftMTFCC10_leftFUNCSTAT10_leftALAND10_leftAWATER10_left...TRACTCE10_rightGEOID10_TRACTNAME10_rightNAMELSAD10_rightMTFCC10_rightFUNCSTAT10_rightALAND10_rightAWATER10_rightINTPTLAT10_rightINTPTLON10_right
04806101230548061012305123.05Census Tract 123.05G5020S25920881324996211...01010048061010100101Census Tract 101G5020S365458278113041841+26.2713946-097.4414470
04806101230548061012305123.05Census Tract 123.05G5020S25920881324996211...950700484899507009507Census Tract 9507G5020S1025415174377000048+26.5154317-097.5790835
04806101230548061012305123.05Census Tract 123.05G5020S25920881324996211...990000484899900009900Census Tract 9900G5020S0121414926+26.5064260-097.2240134
04806101230548061012305123.05Census Tract 123.05G5020S25920881324996211...01270048061012700127Census Tract 127G5020S12962279967725054+25.9786218-097.2580863
04806101230548061012305123.05Census Tract 123.05G5020S25920881324996211...01230448061012304123.04Census Tract 123.04G5020S57612996286773+26.0631407-097.2184868
04806101230548061012305123.05Census Tract 123.05G5020S25920881324996211...01230148061012301123.01Census Tract 123.01G5020S137622651119430273+26.1581170-097.3180348
04806101230548061012305123.05Census Tract 123.05G5020S25920881324996211...990000480619900009900Census Tract 9900G5020S0268272237+26.1902408-097.1473235
\n", + "

7 rows × 27 columns

\n", + "
" + ], + "text/plain": [ + " STATEFP10_left COUNTYFP10_left TRACTCE10_left ORIGINAL_TRACT NAME10_left \\\n", + "0 48 061 012305 48061012305 123.05 \n", + "0 48 061 012305 48061012305 123.05 \n", + "0 48 061 012305 48061012305 123.05 \n", + "0 48 061 012305 48061012305 123.05 \n", + "0 48 061 012305 48061012305 123.05 \n", + "0 48 061 012305 48061012305 123.05 \n", + "0 48 061 012305 48061012305 123.05 \n", + "\n", + " NAMELSAD10_left MTFCC10_left FUNCSTAT10_left ALAND10_left \\\n", + "0 Census Tract 123.05 G5020 S 25920881 \n", + "0 Census Tract 123.05 G5020 S 25920881 \n", + "0 Census Tract 123.05 G5020 S 25920881 \n", + "0 Census Tract 123.05 G5020 S 25920881 \n", + "0 Census Tract 123.05 G5020 S 25920881 \n", + "0 Census Tract 123.05 G5020 S 25920881 \n", + "0 Census Tract 123.05 G5020 S 25920881 \n", + "\n", + " AWATER10_left ... TRACTCE10_right GEOID10_TRACT NAME10_right \\\n", + "0 324996211 ... 010100 48061010100 101 \n", + "0 324996211 ... 950700 48489950700 9507 \n", + "0 324996211 ... 990000 48489990000 9900 \n", + "0 324996211 ... 012700 48061012700 127 \n", + "0 324996211 ... 012304 48061012304 123.04 \n", + "0 324996211 ... 012301 48061012301 123.01 \n", + "0 324996211 ... 990000 48061990000 9900 \n", + "\n", + " NAMELSAD10_right MTFCC10_right FUNCSTAT10_right ALAND10_right \\\n", + "0 Census Tract 101 G5020 S 365458278 \n", + "0 Census Tract 9507 G5020 S 1025415174 \n", + "0 Census Tract 9900 G5020 S 0 \n", + "0 Census Tract 127 G5020 S 129622799 \n", + "0 Census Tract 123.04 G5020 S 5761299 \n", + "0 Census Tract 123.01 G5020 S 137622651 \n", + "0 Census Tract 9900 G5020 S 0 \n", + "\n", + " AWATER10_right INTPTLAT10_right INTPTLON10_right \n", + "0 113041841 +26.2713946 -097.4414470 \n", + "0 377000048 +26.5154317 -097.5790835 \n", + "0 121414926 +26.5064260 -097.2240134 \n", + "0 67725054 +25.9786218 -097.2580863 \n", + "0 6286773 +26.0631407 -097.2184868 \n", + "0 119430273 +26.1581170 -097.3180348 \n", + "0 268272237 +26.1902408 -097.1473235 \n", + "\n", + "[7 rows x 27 columns]" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# get all the tracts that are adjacent to cameron\n", + "cam_adjacent_tracts: gpd.GeoDataFrame = cam_only_df.sjoin(\n", + " tract_data, predicate=\"touches\"\n", + " )\n", + "cam_adjacent_tracts" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "af3aa581", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['STATEFP10_left', 'COUNTYFP10_left', 'TRACTCE10_left', 'ORIGINAL_TRACT',\n", + " 'NAME10_left', 'NAMELSAD10_left', 'MTFCC10_left', 'FUNCSTAT10_left',\n", + " 'ALAND10_left', 'AWATER10_left', 'INTPTLAT10_left', 'INTPTLON10_left',\n", + " 'geometry', 'Definition N (communities)', 'index_right',\n", + " 'STATEFP10_right', 'COUNTYFP10_right', 'TRACTCE10_right',\n", + " 'GEOID10_TRACT', 'NAME10_right', 'NAMELSAD10_right', 'MTFCC10_right',\n", + " 'FUNCSTAT10_right', 'ALAND10_right', 'AWATER10_right',\n", + " 'INTPTLAT10_right', 'INTPTLON10_right'],\n", + " dtype='object')" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "cam_adjacent_tracts.columns" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "85559ed4", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ORIGINAL_TRACTGEOID10_TRACTAWATER10_leftALAND10_leftAWATER10_rightALAND10_right
0480610123054806101010032499621125920881113041841365458278
04806101230548489950700324996211259208813770000481025415174
04806101230548489990000324996211259208811214149260
048061012305480610127003249962112592088167725054129622799
048061012305480610123043249962112592088162867735761299
0480610123054806101230132499621125920881119430273137622651
04806101230548061990000324996211259208812682722370
\n", + "
" + ], + "text/plain": [ + " ORIGINAL_TRACT GEOID10_TRACT AWATER10_left ALAND10_left AWATER10_right \\\n", + "0 48061012305 48061010100 324996211 25920881 113041841 \n", + "0 48061012305 48489950700 324996211 25920881 377000048 \n", + "0 48061012305 48489990000 324996211 25920881 121414926 \n", + "0 48061012305 48061012700 324996211 25920881 67725054 \n", + "0 48061012305 48061012304 324996211 25920881 6286773 \n", + "0 48061012305 48061012301 324996211 25920881 119430273 \n", + "0 48061012305 48061990000 324996211 25920881 268272237 \n", + "\n", + " ALAND10_right \n", + "0 365458278 \n", + "0 1025415174 \n", + "0 0 \n", + "0 129622799 \n", + "0 5761299 \n", + "0 137622651 \n", + "0 0 " + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "cam_adjacent_tracts[['ORIGINAL_TRACT', 'GEOID10_TRACT', \n", + " 'AWATER10_left', 'ALAND10_left', 'AWATER10_right', 'ALAND10_right']]" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "60d0801f", + "metadata": {}, + "outputs": [], + "source": [ + "# # compare to what I see on the map for Cameron:\n", + "\n", + "# 48489950700 Willacy County\n", + "# 48061010100 Cameron County (contains Laguna Atascosa)\n", + "# 48061012301 Cameron County (contains KPIL)\n", + "# 48061012304 Cameron County (contains Port Isabel)\n", + "# 48061012700 Cameron County (contains Boca Chica Village)\n", + "\n", + "# # what about 48489990000 and 48061990000?\n", + "# both have ALAND10 = 0\n", + "# and both tract IDs end in 9990000" + ] + }, + { + "cell_type": "markdown", + "id": "5201e422", + "metadata": {}, + "source": [ + "Proposed solution: remove tracts where ALAND10=10 (ie water-only tracts)" + ] + }, + { + "cell_type": "markdown", + "id": "43dc09e8", + "metadata": {}, + "source": [ + "## Compare water-only tracts to tracts with land area" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "4045bb4f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "367" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# How many of these water-only tracts exist?\n", + "len(tract_data[tract_data.ALAND10==0])" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "37fdf29b", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
STATEFP10COUNTYFP10TRACTCE10GEOID10_TRACTNAME10NAMELSAD10MTFCC10FUNCSTAT10ALAND10AWATER10INTPTLAT10INTPTLON10geometrywater_only
80836063990000360639900009900Census Tract 9900G5020S01550634668+43.4569085-078.7926530POLYGON ((-78.46554 43.37337, -78.47053 43.372...True
1015360850089003608500890089Census Tract 89G5020S0100710+40.6469814-074.1024106POLYGON ((-74.10504 40.64808, -74.10025 40.648...True
114936085990100360859901009901Census Tract 9901G5020S080255151+40.5255512-074.1085829POLYGON ((-74.25482 40.49390, -74.25308 40.491...True
121936013990000360139900009900Census Tract 9900G5020S01015062614+42.5006582-079.5141161POLYGON ((-79.24982 42.53745, -79.24982 42.537...True
122636075990000360759900009900Census Tract 9900G5020S0724224875+43.5955454-076.4442549POLYGON ((-76.55001 43.45923, -76.55064 43.458...True
.............................................
7337923015990000230159900009900Census Tract 9900G5020S0375299033+43.8029690-069.4652520POLYGON ((-69.68695 43.81613, -69.68695 43.815...True
7339923031990100230319901009901Census Tract 9901G5020S0567248819+43.1483531-070.4998364POLYGON ((-70.22209 43.46688, -70.22432 43.464...True
7350923023990000230239900009900Census Tract 9900G5020S0161372101+43.7084463-069.7721513POLYGON ((-69.69756 43.81594, -69.69755 43.813...True
7352723013990000230139900009900Census Tract 9900G5020S01636919697+43.9538894-068.9327255POLYGON ((-68.73563 44.11917, -68.73179 44.117...True
7362923005990000230059900009900Census Tract 9900G5020S0361952519+43.6058367-070.0776892POLYGON ((-70.07870 43.66881, -70.06517 43.673...True
\n", + "

367 rows × 14 columns

\n", + "
" + ], + "text/plain": [ + " STATEFP10 COUNTYFP10 TRACTCE10 GEOID10_TRACT NAME10 NAMELSAD10 \\\n", + "808 36 063 990000 36063990000 9900 Census Tract 9900 \n", + "1015 36 085 008900 36085008900 89 Census Tract 89 \n", + "1149 36 085 990100 36085990100 9901 Census Tract 9901 \n", + "1219 36 013 990000 36013990000 9900 Census Tract 9900 \n", + "1226 36 075 990000 36075990000 9900 Census Tract 9900 \n", + "... ... ... ... ... ... ... \n", + "73379 23 015 990000 23015990000 9900 Census Tract 9900 \n", + "73399 23 031 990100 23031990100 9901 Census Tract 9901 \n", + "73509 23 023 990000 23023990000 9900 Census Tract 9900 \n", + "73527 23 013 990000 23013990000 9900 Census Tract 9900 \n", + "73629 23 005 990000 23005990000 9900 Census Tract 9900 \n", + "\n", + " MTFCC10 FUNCSTAT10 ALAND10 AWATER10 INTPTLAT10 INTPTLON10 \\\n", + "808 G5020 S 0 1550634668 +43.4569085 -078.7926530 \n", + "1015 G5020 S 0 100710 +40.6469814 -074.1024106 \n", + "1149 G5020 S 0 80255151 +40.5255512 -074.1085829 \n", + "1219 G5020 S 0 1015062614 +42.5006582 -079.5141161 \n", + "1226 G5020 S 0 724224875 +43.5955454 -076.4442549 \n", + "... ... ... ... ... ... ... \n", + "73379 G5020 S 0 375299033 +43.8029690 -069.4652520 \n", + "73399 G5020 S 0 567248819 +43.1483531 -070.4998364 \n", + "73509 G5020 S 0 161372101 +43.7084463 -069.7721513 \n", + "73527 G5020 S 0 1636919697 +43.9538894 -068.9327255 \n", + "73629 G5020 S 0 361952519 +43.6058367 -070.0776892 \n", + "\n", + " geometry water_only \n", + "808 POLYGON ((-78.46554 43.37337, -78.47053 43.372... True \n", + "1015 POLYGON ((-74.10504 40.64808, -74.10025 40.648... True \n", + "1149 POLYGON ((-74.25482 40.49390, -74.25308 40.491... True \n", + "1219 POLYGON ((-79.24982 42.53745, -79.24982 42.537... True \n", + "1226 POLYGON ((-76.55001 43.45923, -76.55064 43.458... True \n", + "... ... ... \n", + "73379 POLYGON ((-69.68695 43.81613, -69.68695 43.815... True \n", + "73399 POLYGON ((-70.22209 43.46688, -70.22432 43.464... True \n", + "73509 POLYGON ((-69.69756 43.81594, -69.69755 43.813... True \n", + "73527 POLYGON ((-68.73563 44.11917, -68.73179 44.117... True \n", + "73629 POLYGON ((-70.07870 43.66881, -70.06517 43.673... True \n", + "\n", + "[367 rows x 14 columns]" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# make a copy of the tract data\n", + "tract_explore = tract_data.copy()\n", + "\n", + "# add bool for whether tract has land area\n", + "tract_explore['water_only'] = tract_explore.ALAND10==0\n", + "\n", + "# preview water tracts\n", + "tract_explore[tract_explore.water_only]" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "d0c30aef", + "metadata": {}, + "outputs": [], + "source": [ + "# confirm we can get the tract code stored in TRACTCE10 by taking last 6 chars of GEOID10_TRACT\n", + "# (because input df may not contain the isolated tract code column)\n", + "tract_explore['tract_code'] = tract_explore.GEOID10_TRACT.apply(lambda x: x[-6:])\n", + "assert all(tract_explore.tract_code==tract_explore.TRACTCE10)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "5436fdd6", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTTRACTCE10tract_codetract_code_num
020071958100958100958100958100
120175965600965600965600965600
220175965700965700965700965700
32004302030002030002030020300
42004302020002020002020020200
\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT TRACTCE10 tract_code tract_code_num\n", + "0 20071958100 958100 958100 958100\n", + "1 20175965600 965600 965600 965600\n", + "2 20175965700 965700 965700 965700\n", + "3 20043020300 020300 020300 20300\n", + "4 20043020200 020200 020200 20200" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# convert tract codes to ints to check ranges\n", + "tract_explore['tract_code_num'] = tract_explore['tract_code'].apply(lambda x: int(x))\n", + "tract_explore[['GEOID10_TRACT', 'TRACTCE10', 'tract_code', 'tract_code_num']].head()" + ] + }, + { + "cell_type": "markdown", + "id": "a2e1814b", + "metadata": {}, + "source": [ + "Per Census documentation:\n", + "\n", + "- 000100 to 989900—Basic number range for census tracts\n", + "- 990000 to 990099—Basic number for census tracts in water areas\n", + "- 990100 to 998900—Basic number range for census tracts\n", + "\n", + "source: https://www2.census.gov/geo/pdfs/maps-data/data/tiger/tgrshp2017/TGRSHP2017_TechDoc_Ch3.pdf (page 3-26)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "cf09b1b6", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTTRACTCE10tract_codetract_code_numtract_in_water_range
020071958100958100958100958100False
120175965600965600965600965600False
220175965700965700965700965700False
32004302030002030002030020300False
42004302020002020002020020200False
\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT TRACTCE10 tract_code tract_code_num tract_in_water_range\n", + "0 20071958100 958100 958100 958100 False\n", + "1 20175965600 965600 965600 965600 False\n", + "2 20175965700 965700 965700 965700 False\n", + "3 20043020300 020300 020300 20300 False\n", + "4 20043020200 020200 020200 20200 False" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "def in_water_range(x):\n", + " if x >= 990000 and x <= 990099:\n", + " return True\n", + " return False\n", + "\n", + "tract_explore['tract_in_water_range'] = tract_explore['tract_code_num'].apply(in_water_range)\n", + "tract_explore[['GEOID10_TRACT', 'TRACTCE10', 'tract_code', 'tract_code_num', 'tract_in_water_range']].head()" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "1c0fab10", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTTRACTCE10tract_codetract_code_numtract_in_water_range
80836063990000990000990000990000True
1015360850089000089000089008900False
114936085990100990100990100990100False
121936013990000990000990000990000True
122636075990000990000990000990000True
..................
7337923015990000990000990000990000True
7339923031990100990100990100990100False
7350923023990000990000990000990000True
7352723013990000990000990000990000True
7362923005990000990000990000990000True
\n", + "

367 rows × 5 columns

\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT TRACTCE10 tract_code tract_code_num tract_in_water_range\n", + "808 36063990000 990000 990000 990000 True\n", + "1015 36085008900 008900 008900 8900 False\n", + "1149 36085990100 990100 990100 990100 False\n", + "1219 36013990000 990000 990000 990000 True\n", + "1226 36075990000 990000 990000 990000 True\n", + "... ... ... ... ... ...\n", + "73379 23015990000 990000 990000 990000 True\n", + "73399 23031990100 990100 990100 990100 False\n", + "73509 23023990000 990000 990000 990000 True\n", + "73527 23013990000 990000 990000 990000 True\n", + "73629 23005990000 990000 990000 990000 True\n", + "\n", + "[367 rows x 5 columns]" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# look at water-only tracts\n", + "tract_explore[tract_explore.water_only]\\\n", + " [['GEOID10_TRACT', 'TRACTCE10', 'tract_code', 'tract_code_num', 'tract_in_water_range']]" + ] + }, + { + "cell_type": "markdown", + "id": "4ba84ff5", + "metadata": {}, + "source": [ + "Some of the tracts with ALAND10=0 have tract numbers not in the water-only range." + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "320bd044", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTtract_in_water_range
countsummean
water_only
False7376700.000000
True3672270.618529
\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT tract_in_water_range \n", + " count sum mean\n", + "water_only \n", + "False 73767 0 0.000000\n", + "True 367 227 0.618529" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tract_explore.groupby('water_only').agg({'GEOID10_TRACT': 'count', \n", + " 'tract_in_water_range': ['sum', 'mean']})" + ] + }, + { + "cell_type": "markdown", + "id": "612c72b8", + "metadata": {}, + "source": [ + "There are no tracts with land area that have tract codes in the water-only range. But about 38% of tracts with 0 land area have normal tract codes outside the water range." + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "e0d5fb77", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
STATEFP10COUNTYFP10TRACTCE10GEOID10_TRACTNAME10NAMELSAD10MTFCC10FUNCSTAT10ALAND10AWATER10INTPTLAT10INTPTLON10geometrywater_onlytract_codetract_code_numtract_in_water_range
1015360850089003608500890089Census Tract 89G5020S0100710+40.6469814-074.1024106POLYGON ((-74.10504 40.64808, -74.10025 40.648...True0089008900False
114936085990100360859901009901Census Tract 9901G5020S080255151+40.5255512-074.1085829POLYGON ((-74.25482 40.49390, -74.25308 40.491...True990100990100False
284036047990100360479901009901Census Tract 9901G5020S017793514+40.5649933-074.0148865POLYGON ((-74.00620 40.59437, -74.00619 40.594...True990100990100False
309536059990100360599901009901Census Tract 9901G5020S013672168+40.8790568-073.7020503POLYGON ((-73.76050 40.84184, -73.76102 40.841...True990100990100False
309636059990200360599902009902Census Tract 9902G5020S027086403+40.9078457-073.6526612POLYGON ((-73.65151 40.88524, -73.66481 40.875...True990200990200False
......................................................
6894615009990200150099902009902Census Tract 9902G5020S01643042883+20.6128423-156.5486800POLYGON ((-156.70541 20.82632, -156.70658 20.8...True990200990200False
6894915009991200150099912009912Census Tract 9912G5020S0482573725+20.9476085-156.9795251POLYGON ((-157.11121 20.87500, -157.11725 20.8...True991200991200False
7033939093990200390939902009902Census Tract 9902G5020S01094173093+41.6347746-082.1526215POLYGON ((-82.16712 41.47534, -82.16943 41.474...True990200990200False
7097939043990100390439901009901Census Tract 9901G5020S0853315204+41.5559059-082.5241364POLYGON ((-82.51199 41.39475, -82.51472 41.395...True990100990100False
7339923031990100230319901009901Census Tract 9901G5020S0567248819+43.1483531-070.4998364POLYGON ((-70.22209 43.46688, -70.22432 43.464...True990100990100False
\n", + "

140 rows × 17 columns

\n", + "
" + ], + "text/plain": [ + " STATEFP10 COUNTYFP10 TRACTCE10 GEOID10_TRACT NAME10 NAMELSAD10 \\\n", + "1015 36 085 008900 36085008900 89 Census Tract 89 \n", + "1149 36 085 990100 36085990100 9901 Census Tract 9901 \n", + "2840 36 047 990100 36047990100 9901 Census Tract 9901 \n", + "3095 36 059 990100 36059990100 9901 Census Tract 9901 \n", + "3096 36 059 990200 36059990200 9902 Census Tract 9902 \n", + "... ... ... ... ... ... ... \n", + "68946 15 009 990200 15009990200 9902 Census Tract 9902 \n", + "68949 15 009 991200 15009991200 9912 Census Tract 9912 \n", + "70339 39 093 990200 39093990200 9902 Census Tract 9902 \n", + "70979 39 043 990100 39043990100 9901 Census Tract 9901 \n", + "73399 23 031 990100 23031990100 9901 Census Tract 9901 \n", + "\n", + " MTFCC10 FUNCSTAT10 ALAND10 AWATER10 INTPTLAT10 INTPTLON10 \\\n", + "1015 G5020 S 0 100710 +40.6469814 -074.1024106 \n", + "1149 G5020 S 0 80255151 +40.5255512 -074.1085829 \n", + "2840 G5020 S 0 17793514 +40.5649933 -074.0148865 \n", + "3095 G5020 S 0 13672168 +40.8790568 -073.7020503 \n", + "3096 G5020 S 0 27086403 +40.9078457 -073.6526612 \n", + "... ... ... ... ... ... ... \n", + "68946 G5020 S 0 1643042883 +20.6128423 -156.5486800 \n", + "68949 G5020 S 0 482573725 +20.9476085 -156.9795251 \n", + "70339 G5020 S 0 1094173093 +41.6347746 -082.1526215 \n", + "70979 G5020 S 0 853315204 +41.5559059 -082.5241364 \n", + "73399 G5020 S 0 567248819 +43.1483531 -070.4998364 \n", + "\n", + " geometry water_only \\\n", + "1015 POLYGON ((-74.10504 40.64808, -74.10025 40.648... True \n", + "1149 POLYGON ((-74.25482 40.49390, -74.25308 40.491... True \n", + "2840 POLYGON ((-74.00620 40.59437, -74.00619 40.594... True \n", + "3095 POLYGON ((-73.76050 40.84184, -73.76102 40.841... True \n", + "3096 POLYGON ((-73.65151 40.88524, -73.66481 40.875... True \n", + "... ... ... \n", + "68946 POLYGON ((-156.70541 20.82632, -156.70658 20.8... True \n", + "68949 POLYGON ((-157.11121 20.87500, -157.11725 20.8... True \n", + "70339 POLYGON ((-82.16712 41.47534, -82.16943 41.474... True \n", + "70979 POLYGON ((-82.51199 41.39475, -82.51472 41.395... True \n", + "73399 POLYGON ((-70.22209 43.46688, -70.22432 43.464... True \n", + "\n", + " tract_code tract_code_num tract_in_water_range \n", + "1015 008900 8900 False \n", + "1149 990100 990100 False \n", + "2840 990100 990100 False \n", + "3095 990100 990100 False \n", + "3096 990200 990200 False \n", + "... ... ... ... \n", + "68946 990200 990200 False \n", + "68949 991200 991200 False \n", + "70339 990200 990200 False \n", + "70979 990100 990100 False \n", + "73399 990100 990100 False \n", + "\n", + "[140 rows x 17 columns]" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# view the exceptions (no land area, but tract code not in water range)\n", + "water_exceptions = tract_explore[(tract_explore.water_only==True) & (tract_explore.tract_in_water_range==False)]\n", + "water_exceptions" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "b36fdc0d", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "36063990000, 36013990000, 36075990000, 36055990000, 36045990001, 36029990000, 36073990000, 41007990000, 41039990000, 41019990000, 01003990000, 01097990000, 17031990000, 17097990000, 10001990000, 10005990000, 06083990000, 06053990000, 06061990000, 06015990000, 06079990000, 06013990000, 06017990000, 06001990000, 51710990000, 26157990000, 26011990000, 26001990000, 26141990000, 26019990000, 26069990000, 26053990000, 26147990000, 26153990000, 26063990000, 26159990000, 26033990000, 26005990000, 26103990000, 26061990000, 26003990000, 26095990000, 26041990000, 26031990000, 26009990000, 26139990000, 26047990000, 26109990000, 26007990000, 26021990000, 26089990000, 26017990000, 26115990000, 26151990000, 26055990000, 26127990000, 26097990000, 26121990000, 26105990000, 26101990000, 26029990000, 66010990000, 27031990000, 69100990000, 69110990000, 69120990000, 28045990000, 28059990000, 28047990000, 53031990000, 53061990002, 53027990000, 12009990000, 12017990000, 12037990000, 12011990000, 12087990000, 12081990000, 12093990000, 12029990000, 12031990000, 12071990000, 12065990000, 12033990000, 12045990000, 12086990000, 12129990000, 12103990000, 12057990000, 12115990000, 12101990000, 12123990000, 12085990000, 12051990000, 12005990000, 12035990000, 12053990000, 12043990000, 12131990000, 12099990000, 12075990000, 12015990000, 12061990000, 12095990000, 12021990000, 12113990000, 12089990000, 12111990000, 12127990000, 32031990000, 32005990000, 32510990000, 24029990000, 24017990000, 24047990000, 24041990000, 24037990000, 24035990000, 24019990000, 24003990000, 48039990000, 48489990000, 48261990000, 48355990000, 48273990000, 48321990000, 48167990000, 48061990000, 48071990000, 48007990000, 48245990000, 48057990000, 09001990000, 09009990000, 25001990000, 25023990003, 25005990000, 25007990000, 25019990000, 72059990001, 72027990000, 72005990000, 72091990025, 72037990000, 72095990000, 72145990000, 72147990000, 72111990000, 72097990000, 72031990000, 72115990000, 72133990000, 72089990001, 72011990000, 72137990000, 72065990016, 72071990000, 72103990013, 72087990000, 72151990000, 72003990000, 72017990000, 72075990001, 72023990000, 72143990000, 72055990000, 72051990021, 72109990000, 72127990000, 33015990000, 44005990000, 13039990000, 13127990000, 13051990000, 13179990000, 13191990000, 34001990000, 34029990000, 34033990000, 34011990000, 34025990000, 22071990000, 22087990000, 22109990000, 22045990000, 22023990000, 22101990000, 22113990000, 22057990000, 22075990000, 22103990000, 22051990000, 18091990000, 18089990000, 18127990000, 55031990000, 55061990000, 55051990000, 55083990000, 55059990000, 55101990000, 55007990000, 55075990000, 55003990000, 55029990000, 55079990000, 55071990000, 55117990000, 55089990000, 42049990000, 15003990001, 15001990000, 15005990000, 15009990000, 78010990000, 78020990000, 78030990000, 39007990000, 39085990000, 39095990000, 39035990000, 23029990000, 23009990000, 23015990000, 23023990000, 23013990000, 23005990000\n" + ] + } + ], + "source": [ + "# print list of \"normal\" water-only IDs to put into compare tool\n", + "water_normals = tract_explore[(tract_explore.water_only==True) & (tract_explore.tract_in_water_range==True)]\n", + "print(', '.join(water_normals.GEOID10_TRACT.values))" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "e9380f21", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "36063990000, 36085008900, 36085990100, 36013990000, 36075990000, 36055990000, 36045990001, 36047990100, 36059990100, 36059990200, 36059990301, 36059990302, 36059990400, 36081990100, 36029990000, 36073990000, 36103990100, 36117990100, 36011990200, 41007990000, 41057990100, 41039990000, 41041990100, 41015990101, 41011990101, 41019990000, 01003990000, 01097990000, 17031990000, 17097990000, 37031990100, 37031990200, 37053990100, 37019990100, 37055990100, 37055990200, 37129990100, 37095990100, 37095990200, 37141990100, 37137990100, 37133990100, 10001990000, 10005990000, 10003990100, 06083990000, 06053990000, 06061990000, 06059990100, 06097990100, 06045990100, 06073990100, 06041990100, 06015990000, 06081990100, 06079990000, 06013990000, 06111990100, 06017990000, 06001990000, 06075990100, 06087990100, 06023990100, 06037990200, 06037990300, 06037990100, 51103990100, 51115990100, 51650990100, 51131990100, 51735990100, 51810990100, 51133990100, 51001990100, 51001990200, 51119990100, 51199990100, 51710990000, 26157990000, 26011990000, 26163990100, 26163990200, 26001990000, 26141990000, 26011990100, 26019990000, 26069990000, 26053990000, 26147990000, 26153990000, 26063990000, 26159990000, 26033990000, 26033990100, 26131990100, 26005990000, 26103990000, 26099990100, 26061990000, 26061990100, 26003990000, 26095990000, 26041990000, 26031990000, 26009990000, 26083990100, 26139990000, 26041990100, 26047990000, 26109990000, 26007990000, 26021990000, 26089990000, 26017990000, 26115990000, 26151990000, 26013990100, 26055990000, 26127990000, 26097990000, 26121990000, 26105990000, 26101990000, 26029990000, 66010990000, 27137990100, 27031990000, 27075990100, 69100990000, 69110990000, 69120990000, 28045990000, 28059990000, 28047990000, 53061990100, 53035990100, 53057990100, 53009990100, 53067990100, 53049990100, 53031990000, 53033990100, 53061990002, 53029992201, 53027990000, 53055990100, 12009990000, 12017990000, 12037990000, 12037990100, 12011990000, 12087990000, 12081990000, 12093990000, 12029990000, 12031990000, 12071990000, 12065990000, 12033990000, 12045990000, 12103990100, 12086990000, 12129990000, 12103990000, 12057990000, 12057990100, 12115990000, 12101990000, 12109990200, 12109990100, 12123990000, 12085990000, 12085990100, 12051990000, 12005990000, 12035990000, 12053990000, 12043990000, 12131990000, 12099990000, 12075990000, 12015990000, 12099990100, 12061990000, 12095990000, 12021990000, 12113990000, 12089990000, 12111990000, 12127990000, 12091990200, 12091990100, 45013990100, 45053990100, 45019990100, 45029990100, 45043990100, 45051990100, 32031990000, 32031990100, 32005990000, 32510990000, 24029990000, 24017990000, 24047990000, 24041990000, 24039990100, 24037990000, 24035990200, 24035990100, 24035990000, 24019990000, 24003990000, 24009990100, 48039990000, 48489990000, 48261990000, 48355990000, 48273990000, 48321990000, 48167990000, 48061990000, 48071990000, 48007990000, 48245990000, 48057990000, 09001990000, 09011990100, 09007990100, 09009990000, 25001990000, 25023990003, 25005990000, 25025990101, 25009990100, 25007990000, 25019990000, 72049990501, 72059990001, 72027990000, 72033990201, 72053990103, 72113993000, 72015991500, 72005990000, 72091990025, 72013992900, 72037990000, 72095990000, 72145990000, 72117990400, 72147990000, 72111990000, 72097990000, 72079991100, 72031990000, 72115990000, 72133990000, 72089990001, 72011990000, 72123992800, 72137990000, 72065990016, 72071990000, 72103990013, 72087990000, 72069991800, 72151990000, 72003990000, 72057992600, 72017990000, 72075990001, 72119992700, 72023990000, 72143990000, 72055990000, 72051990021, 72109990000, 72127990000, 33015990000, 44009990200, 44009990100, 44005990000, 13039990000, 13127990000, 13051990000, 13179990000, 13191990000, 34001990000, 34029990000, 34033990000, 34011990000, 34009990100, 34025990000, 22071990000, 22087990000, 22109990000, 22045990000, 22023990000, 22101990000, 22113990000, 22057990000, 22051990100, 22075990000, 22103990000, 22051990000, 18091990000, 18089990000, 18127990000, 55031990000, 55061990000, 55051990000, 55083990000, 55059990000, 55101990000, 55007990000, 55025991703, 55025991702, 55075990000, 55003990000, 55029990000, 55079990000, 55071990000, 55117990000, 55089990000, 42049990000, 15003990001, 15001991700, 15001990400, 15001990000, 15001990300, 15001991100, 15001991200, 15001991500, 15001991300, 15001991400, 15001991600, 15001991000, 15001990100, 15001990500, 15001990600, 15001990900, 15001990800, 15001990700, 15005990000, 15007990100, 15007990300, 15007990200, 15009990200, 15009991200, 15009990000, 78010990000, 78020990000, 78030990000, 39007990000, 39085990000, 39093990200, 39043990100, 39095990000, 39035990000, 23029990000, 23009990000, 23015990000, 23031990100, 23023990000, 23013990000, 23005990000\n" + ] + } + ], + "source": [ + "# print list of ALAND10=0 IDs to put into compare tool\n", + "print(', '.join(tract_explore[tract_explore.water_only==True].GEOID10_TRACT.values))" + ] + }, + { + "cell_type": "markdown", + "id": "8d82e594", + "metadata": {}, + "source": [ + "Tract comparison tool shoes that 21 of the 140 \"water exception\" tracts are in Hawaii. California next highest with 13. Puerto Rico has 12. (No other territories have \"water exception\" tracts.)" + ] + }, + { + "cell_type": "markdown", + "id": "74544236", + "metadata": {}, + "source": [ + "## Simulate calculate_tract_adjacency_scores()" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "3703ffb1", + "metadata": {}, + "outputs": [], + "source": [ + "def calculate_tract_adjacency_scores(\n", + " df: pd.DataFrame, score_column: str, tract_data\n", + ") -> pd.DataFrame:\n", + " \"\"\"Calculate the mean score of each tract in df based on its neighbors\n", + "\n", + " Args:\n", + " df (pandas.DataFrame): A dataframe with at least the following columns:\n", + " * field_names.GEOID_TRACT_FIELD\n", + " * score_column\n", + "\n", + " score_column (str): The name of the column that contains the scores\n", + " to average\n", + " \n", + " tract_data (GeoDataFrame): tract data normally loaded in first line of \n", + " function: tract_data = get_tract_geojson()\n", + " Returns :\n", + " tuple containing final returned df in actual function, as well as intermediates:\n", + " - returned_donut_bools (pandas.DataFrame): A dataframe with two columns:\n", + " * field_names.GEOID_TRACT_FIELD\n", + " * {score_column}_ADJACENT_MEAN, which is the average of score_column for\n", + " each tract that touches the tract identified\n", + " in field_names.GEOID_TRACT_FIELD\n", + " NB: this is the df that gets returned in the actual function\n", + " - df (pandas.DataFrame): input df after merging with Census data\n", + " - adjacent_tracts (pandas.DataFrame): adjacency df\n", + " \"\"\"\n", + "\n", + " df: gpd.GeoDataFrame = tract_data.merge(\n", + " df, on=GEOID_TRACT_FIELD\n", + " )\n", + " df = df.rename(columns={GEOID_TRACT_FIELD: ORIGINAL_TRACT})\n", + "\n", + "\n", + " adjacent_tracts: gpd.GeoDataFrame = df.sjoin(\n", + " tract_data, predicate=\"touches\"\n", + " )\n", + "\n", + "\n", + " returned_donut_bools = (\n", + " adjacent_tracts.groupby(GEOID_TRACT_FIELD)[[score_column]]\n", + " .mean()\n", + " .reset_index()\n", + " .rename(\n", + " columns={\n", + " score_column: f\"{score_column}{ADJACENCY_INDEX_SUFFIX}\",\n", + " }\n", + " )\n", + " )\n", + " \n", + " return (returned_donut_bools, df, adjacent_tracts)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "d4f50253", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['48061010100',\n", + " '48489950700',\n", + " '48489990000',\n", + " '48061012700',\n", + " '48061012304',\n", + " '48061012301',\n", + " '48061990000']" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# save tract ids that are adjacent to cameron so we can simulate \n", + "# passing them into calculate_tract_adjacency_scores() via df arg\n", + "adjacent_track_id_list_cam = list(cam_adjacent_tracts.GEOID10_TRACT.unique())\n", + "adjacent_track_id_list_cam" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "4bac089c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTDefinition N (communities)
048061012305False
148061010100True
248489950700True
348489990000False
448061012700True
548061012304True
648061012301True
748061990000False
\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT Definition N (communities)\n", + "0 48061012305 False\n", + "1 48061010100 True\n", + "2 48489950700 True\n", + "3 48489990000 False\n", + "4 48061012700 True\n", + "5 48061012304 True\n", + "6 48061012301 True\n", + "7 48061990000 False" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# df is passed into the function, must contain the score column we're looking at\n", + "# (in this case, SCORE_N_COMMUNITIES)\n", + "# here we pass in our water boundary issue example in Cameron TX pluss all its adjacencies.\n", + "# initialize disadvantaged bool as FALSE for our example, and TRUE for others.\n", + "df_cam_plus = pd.DataFrame({GEOID_TRACT_FIELD:[CAM_ID]+adjacent_track_id_list_cam, \n", + " SCORE_N_COMMUNITIES:[False]+([True]*len(adjacent_track_id_list_cam))})\n", + "\n", + "# set disadvantaged bool to False for water tracts\n", + "df_cam_plus.loc[df_cam_plus[GEOID_TRACT_FIELD].isin(['48489990000', '48061990000']), SCORE_N_COMMUNITIES]=False\n", + "\n", + "df_cam_plus" + ] + }, + { + "cell_type": "markdown", + "id": "ad9570b0", + "metadata": {}, + "source": [ + "### Simulate v1 run of of calculate_tract_adjacency_scores()" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "74826fc9", + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "returned_donut_bools__v1, df_census__v1, adjacent_tracts__v1 = calculate_tract_adjacency_scores(\n", + " df=df_cam_plus, score_column=SCORE_N_COMMUNITIES, tract_data=tract_data\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "8e69447f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
STATEFP10_leftCOUNTYFP10_leftTRACTCE10_leftORIGINAL_TRACTNAME10_leftNAMELSAD10_leftMTFCC10_leftFUNCSTAT10_leftALAND10_leftAWATER10_left...TRACTCE10_rightGEOID10_TRACTNAME10_rightNAMELSAD10_rightMTFCC10_rightFUNCSTAT10_rightALAND10_rightAWATER10_rightINTPTLAT10_rightINTPTLON10_right
048489990000484899900009900Census Tract 9900G5020S0121414926...01230548061012305123.05Census Tract 123.05G5020S25920881324996211+26.2732070-097.2763703
148489950700484899507009507Census Tract 9507G5020S1025415174377000048...01230548061012305123.05Census Tract 123.05G5020S25920881324996211+26.2732070-097.2763703
248061990000480619900009900Census Tract 9900G5020S0268272237...01230548061012305123.05Census Tract 123.05G5020S25920881324996211+26.2732070-097.2763703
44806101230448061012304123.04Census Tract 123.04G5020S57612996286773...01230548061012305123.05Census Tract 123.05G5020S25920881324996211+26.2732070-097.2763703
54806101010048061010100101Census Tract 101G5020S365458278113041841...01230548061012305123.05Census Tract 123.05G5020S25920881324996211+26.2732070-097.2763703
64806101270048061012700127Census Tract 127G5020S12962279967725054...01230548061012305123.05Census Tract 123.05G5020S25920881324996211+26.2732070-097.2763703
74806101230148061012301123.01Census Tract 123.01G5020S137622651119430273...01230548061012305123.05Census Tract 123.05G5020S25920881324996211+26.2732070-097.2763703
048489990000484899900009900Census Tract 9900G5020S0121414926...950700484899507009507Census Tract 9507G5020S1025415174377000048+26.5154317-097.5790835
34806101230548061012305123.05Census Tract 123.05G5020S25920881324996211...950700484899507009507Census Tract 9507G5020S1025415174377000048+26.5154317-097.5790835
54806101010048061010100101Census Tract 101G5020S365458278113041841...950700484899507009507Census Tract 9507G5020S1025415174377000048+26.5154317-097.5790835
048489990000484899900009900Census Tract 9900G5020S0121414926...990000482619900009900Census Tract 9900G5020S0394659578+26.9389899-097.3234546
148489950700484899507009507Census Tract 9507G5020S1025415174377000048...990000482619900009900Census Tract 9900G5020S0394659578+26.9389899-097.3234546
048489990000484899900009900Census Tract 9900G5020S0121414926...950100482619501009501Census Tract 9501G5020S3777053964867877948+26.9241932-097.6694694
148489950700484899507009507Census Tract 9507G5020S1025415174377000048...950100482619501009501Census Tract 9501G5020S3777053964867877948+26.9241932-097.6694694
048489990000484899900009900Census Tract 9900G5020S0121414926...990000480619900009900Census Tract 9900G5020S0268272237+26.1902408-097.1473235
34806101230548061012305123.05Census Tract 123.05G5020S25920881324996211...990000480619900009900Census Tract 9900G5020S0268272237+26.1902408-097.1473235
64806101270048061012700127Census Tract 127G5020S12962279967725054...990000480619900009900Census Tract 9900G5020S0268272237+26.1902408-097.1473235
148489950700484899507009507Census Tract 9507G5020S1025415174377000048...01020148061010201102.01Census Tract 102.01G5020S138787038773532+26.2865300-097.6765589
54806101010048061010100101Census Tract 101G5020S365458278113041841...01020148061010201102.01Census Tract 102.01G5020S138787038773532+26.2865300-097.6765589
148489950700484899507009507Census Tract 9507G5020S1025415174377000048...01010048061010100101Census Tract 101G5020S365458278113041841+26.2713946-097.4414470
34806101230548061012305123.05Census Tract 123.05G5020S25920881324996211...01010048061010100101Census Tract 101G5020S365458278113041841+26.2713946-097.4414470
74806101230148061012301123.01Census Tract 123.01G5020S137622651119430273...01010048061010100101Census Tract 101G5020S365458278113041841+26.2713946-097.4414470
148489950700484899507009507Census Tract 9507G5020S1025415174377000048...950600484899506009506Census Tract 9506G5020S142823217867417+26.3413027-097.6980863
54806101010048061010100101Census Tract 101G5020S365458278113041841...950600484899506009506Census Tract 9506G5020S142823217867417+26.3413027-097.6980863
148489950700484899507009507Census Tract 9507G5020S1025415174377000048...950500484899505009505Census Tract 9505G5020S1986630411916760+26.4046271-097.7275193
148489950700484899507009507Census Tract 9507G5020S1025415174377000048...950400484899504009504Census Tract 9504G5020S95793488440761+26.4857271-097.7274534
148489950700484899507009507Census Tract 9507G5020S1025415174377000048...990000484899900009900Census Tract 9900G5020S0121414926+26.5064260-097.2240134
248061990000480619900009900Census Tract 9900G5020S0268272237...990000484899900009900Census Tract 9900G5020S0121414926+26.5064260-097.2240134
34806101230548061012305123.05Census Tract 123.05G5020S25920881324996211...990000484899900009900Census Tract 9900G5020S0121414926+26.5064260-097.2240134
148489950700484899507009507Census Tract 9507G5020S1025415174377000048...02430248215024302243.02Census Tract 243.02G5020S15223338310002679+26.4228640-097.9710985
148489950700484899507009507Census Tract 9507G5020S1025415174377000048...950300484899503009503Census Tract 9503G5020S6683375575864+26.4851686-097.8236397
148489950700484899507009507Census Tract 9507G5020S1025415174377000048...02430148215024301243.01Census Tract 243.01G5020S1426811393527958+26.6175624-098.1948738
248061990000480619900009900Census Tract 9900G5020S0268272237...01270048061012700127Census Tract 127G5020S12962279967725054+25.9786218-097.2580863
34806101230548061012305123.05Census Tract 123.05G5020S25920881324996211...01270048061012700127Census Tract 127G5020S12962279967725054+25.9786218-097.2580863
44806101230448061012304123.04Census Tract 123.04G5020S57612996286773...01270048061012700127Census Tract 127G5020S12962279967725054+25.9786218-097.2580863
34806101230548061012305123.05Census Tract 123.05G5020S25920881324996211...01230448061012304123.04Census Tract 123.04G5020S57612996286773+26.0631407-097.2184868
64806101270048061012700127Census Tract 127G5020S12962279967725054...01230448061012304123.04Census Tract 123.04G5020S57612996286773+26.0631407-097.2184868
74806101230148061012301123.01Census Tract 123.01G5020S137622651119430273...01230448061012304123.04Census Tract 123.04G5020S57612996286773+26.0631407-097.2184868
34806101230548061012305123.05Census Tract 123.05G5020S25920881324996211...01230148061012301123.01Census Tract 123.01G5020S137622651119430273+26.1581170-097.3180348
44806101230448061012304123.04Census Tract 123.04G5020S57612996286773...01230148061012301123.01Census Tract 123.01G5020S137622651119430273+26.1581170-097.3180348
54806101010048061010100101Census Tract 101G5020S365458278113041841...01230148061012301123.01Census Tract 123.01G5020S137622651119430273+26.1581170-097.3180348
44806101230448061012304123.04Census Tract 123.04G5020S57612996286773...01420048061014200142Census Tract 142G5020S22948544652743725+26.0321232-097.3592760
64806101270048061012700127Census Tract 127G5020S12962279967725054...01420048061014200142Census Tract 142G5020S22948544652743725+26.0321232-097.3592760
74806101230148061012301123.01Census Tract 123.01G5020S137622651119430273...01420048061014200142Census Tract 142G5020S22948544652743725+26.0321232-097.3592760
54806101010048061010100101Census Tract 101G5020S365458278113041841...01080048061010800108Census Tract 108G5020S24214554372874+26.2018913-097.6365382
54806101010048061010100101Census Tract 101G5020S365458278113041841...01020348061010203102.03Census Tract 102.03G5020S36355923529676+26.2392001-097.7004164
54806101010048061010100101Census Tract 101G5020S365458278113041841...01220048061012200122Census Tract 122G5020S1810870879690866+26.1431884-097.4883500
74806101230148061012301123.01Census Tract 123.01G5020S137622651119430273...01220048061012200122Census Tract 122G5020S1810870879690866+26.1431884-097.4883500
54806101010048061010100101Census Tract 101G5020S365458278113041841...01140048061011400114Census Tract 114G5020S525950691716432+26.1576649-097.6030070
64806101270048061012700127Census Tract 127G5020S12962279967725054...01410048061014100141Census Tract 141G5020S587505421786306+25.8820153-097.4007135
64806101270048061012700127Census Tract 127G5020S12962279967725054...01320748061013207132.07Census Tract 132.07G5020S3884436409892+25.9278897-097.4159201
64806101270048061012700127Census Tract 127G5020S12962279967725054...01320348061013203132.03Census Tract 132.03G5020S11039573034+25.9335830-097.4379216
64806101270048061012700127Census Tract 127G5020S12962279967725054...01260748061012607126.07Census Tract 126.07G5020S3230089151343+25.9479994-097.4340712
\n", + "

53 rows × 27 columns

\n", + "
" + ], + "text/plain": [ + " STATEFP10_left COUNTYFP10_left TRACTCE10_left ORIGINAL_TRACT NAME10_left \\\n", + "0 48 489 990000 48489990000 9900 \n", + "1 48 489 950700 48489950700 9507 \n", + "2 48 061 990000 48061990000 9900 \n", + "4 48 061 012304 48061012304 123.04 \n", + "5 48 061 010100 48061010100 101 \n", + "6 48 061 012700 48061012700 127 \n", + "7 48 061 012301 48061012301 123.01 \n", + "0 48 489 990000 48489990000 9900 \n", + "3 48 061 012305 48061012305 123.05 \n", + "5 48 061 010100 48061010100 101 \n", + "0 48 489 990000 48489990000 9900 \n", + "1 48 489 950700 48489950700 9507 \n", + "0 48 489 990000 48489990000 9900 \n", + "1 48 489 950700 48489950700 9507 \n", + "0 48 489 990000 48489990000 9900 \n", + "3 48 061 012305 48061012305 123.05 \n", + "6 48 061 012700 48061012700 127 \n", + "1 48 489 950700 48489950700 9507 \n", + "5 48 061 010100 48061010100 101 \n", + "1 48 489 950700 48489950700 9507 \n", + "3 48 061 012305 48061012305 123.05 \n", + "7 48 061 012301 48061012301 123.01 \n", + "1 48 489 950700 48489950700 9507 \n", + "5 48 061 010100 48061010100 101 \n", + "1 48 489 950700 48489950700 9507 \n", + "1 48 489 950700 48489950700 9507 \n", + "1 48 489 950700 48489950700 9507 \n", + "2 48 061 990000 48061990000 9900 \n", + "3 48 061 012305 48061012305 123.05 \n", + "1 48 489 950700 48489950700 9507 \n", + "1 48 489 950700 48489950700 9507 \n", + "1 48 489 950700 48489950700 9507 \n", + "2 48 061 990000 48061990000 9900 \n", + "3 48 061 012305 48061012305 123.05 \n", + "4 48 061 012304 48061012304 123.04 \n", + "3 48 061 012305 48061012305 123.05 \n", + "6 48 061 012700 48061012700 127 \n", + "7 48 061 012301 48061012301 123.01 \n", + "3 48 061 012305 48061012305 123.05 \n", + "4 48 061 012304 48061012304 123.04 \n", + "5 48 061 010100 48061010100 101 \n", + "4 48 061 012304 48061012304 123.04 \n", + "6 48 061 012700 48061012700 127 \n", + "7 48 061 012301 48061012301 123.01 \n", + "5 48 061 010100 48061010100 101 \n", + "5 48 061 010100 48061010100 101 \n", + "5 48 061 010100 48061010100 101 \n", + "7 48 061 012301 48061012301 123.01 \n", + "5 48 061 010100 48061010100 101 \n", + "6 48 061 012700 48061012700 127 \n", + "6 48 061 012700 48061012700 127 \n", + "6 48 061 012700 48061012700 127 \n", + "6 48 061 012700 48061012700 127 \n", + "\n", + " NAMELSAD10_left MTFCC10_left FUNCSTAT10_left ALAND10_left \\\n", + "0 Census Tract 9900 G5020 S 0 \n", + "1 Census Tract 9507 G5020 S 1025415174 \n", + "2 Census Tract 9900 G5020 S 0 \n", + "4 Census Tract 123.04 G5020 S 5761299 \n", + "5 Census Tract 101 G5020 S 365458278 \n", + "6 Census Tract 127 G5020 S 129622799 \n", + "7 Census Tract 123.01 G5020 S 137622651 \n", + "0 Census Tract 9900 G5020 S 0 \n", + "3 Census Tract 123.05 G5020 S 25920881 \n", + "5 Census Tract 101 G5020 S 365458278 \n", + "0 Census Tract 9900 G5020 S 0 \n", + "1 Census Tract 9507 G5020 S 1025415174 \n", + "0 Census Tract 9900 G5020 S 0 \n", + "1 Census Tract 9507 G5020 S 1025415174 \n", + "0 Census Tract 9900 G5020 S 0 \n", + "3 Census Tract 123.05 G5020 S 25920881 \n", + "6 Census Tract 127 G5020 S 129622799 \n", + "1 Census Tract 9507 G5020 S 1025415174 \n", + "5 Census Tract 101 G5020 S 365458278 \n", + "1 Census Tract 9507 G5020 S 1025415174 \n", + "3 Census Tract 123.05 G5020 S 25920881 \n", + "7 Census Tract 123.01 G5020 S 137622651 \n", + "1 Census Tract 9507 G5020 S 1025415174 \n", + "5 Census Tract 101 G5020 S 365458278 \n", + "1 Census Tract 9507 G5020 S 1025415174 \n", + "1 Census Tract 9507 G5020 S 1025415174 \n", + "1 Census Tract 9507 G5020 S 1025415174 \n", + "2 Census Tract 9900 G5020 S 0 \n", + "3 Census Tract 123.05 G5020 S 25920881 \n", + "1 Census Tract 9507 G5020 S 1025415174 \n", + "1 Census Tract 9507 G5020 S 1025415174 \n", + "1 Census Tract 9507 G5020 S 1025415174 \n", + "2 Census Tract 9900 G5020 S 0 \n", + "3 Census Tract 123.05 G5020 S 25920881 \n", + "4 Census Tract 123.04 G5020 S 5761299 \n", + "3 Census Tract 123.05 G5020 S 25920881 \n", + "6 Census Tract 127 G5020 S 129622799 \n", + "7 Census Tract 123.01 G5020 S 137622651 \n", + "3 Census Tract 123.05 G5020 S 25920881 \n", + "4 Census Tract 123.04 G5020 S 5761299 \n", + "5 Census Tract 101 G5020 S 365458278 \n", + "4 Census Tract 123.04 G5020 S 5761299 \n", + "6 Census Tract 127 G5020 S 129622799 \n", + "7 Census Tract 123.01 G5020 S 137622651 \n", + "5 Census Tract 101 G5020 S 365458278 \n", + "5 Census Tract 101 G5020 S 365458278 \n", + "5 Census Tract 101 G5020 S 365458278 \n", + "7 Census Tract 123.01 G5020 S 137622651 \n", + "5 Census Tract 101 G5020 S 365458278 \n", + "6 Census Tract 127 G5020 S 129622799 \n", + "6 Census Tract 127 G5020 S 129622799 \n", + "6 Census Tract 127 G5020 S 129622799 \n", + "6 Census Tract 127 G5020 S 129622799 \n", + "\n", + " AWATER10_left ... TRACTCE10_right GEOID10_TRACT NAME10_right \\\n", + "0 121414926 ... 012305 48061012305 123.05 \n", + "1 377000048 ... 012305 48061012305 123.05 \n", + "2 268272237 ... 012305 48061012305 123.05 \n", + "4 6286773 ... 012305 48061012305 123.05 \n", + "5 113041841 ... 012305 48061012305 123.05 \n", + "6 67725054 ... 012305 48061012305 123.05 \n", + "7 119430273 ... 012305 48061012305 123.05 \n", + "0 121414926 ... 950700 48489950700 9507 \n", + "3 324996211 ... 950700 48489950700 9507 \n", + "5 113041841 ... 950700 48489950700 9507 \n", + "0 121414926 ... 990000 48261990000 9900 \n", + "1 377000048 ... 990000 48261990000 9900 \n", + "0 121414926 ... 950100 48261950100 9501 \n", + "1 377000048 ... 950100 48261950100 9501 \n", + "0 121414926 ... 990000 48061990000 9900 \n", + "3 324996211 ... 990000 48061990000 9900 \n", + "6 67725054 ... 990000 48061990000 9900 \n", + "1 377000048 ... 010201 48061010201 102.01 \n", + "5 113041841 ... 010201 48061010201 102.01 \n", + "1 377000048 ... 010100 48061010100 101 \n", + "3 324996211 ... 010100 48061010100 101 \n", + "7 119430273 ... 010100 48061010100 101 \n", + "1 377000048 ... 950600 48489950600 9506 \n", + "5 113041841 ... 950600 48489950600 9506 \n", + "1 377000048 ... 950500 48489950500 9505 \n", + "1 377000048 ... 950400 48489950400 9504 \n", + "1 377000048 ... 990000 48489990000 9900 \n", + "2 268272237 ... 990000 48489990000 9900 \n", + "3 324996211 ... 990000 48489990000 9900 \n", + "1 377000048 ... 024302 48215024302 243.02 \n", + "1 377000048 ... 950300 48489950300 9503 \n", + "1 377000048 ... 024301 48215024301 243.01 \n", + "2 268272237 ... 012700 48061012700 127 \n", + "3 324996211 ... 012700 48061012700 127 \n", + "4 6286773 ... 012700 48061012700 127 \n", + "3 324996211 ... 012304 48061012304 123.04 \n", + "6 67725054 ... 012304 48061012304 123.04 \n", + "7 119430273 ... 012304 48061012304 123.04 \n", + "3 324996211 ... 012301 48061012301 123.01 \n", + "4 6286773 ... 012301 48061012301 123.01 \n", + "5 113041841 ... 012301 48061012301 123.01 \n", + "4 6286773 ... 014200 48061014200 142 \n", + "6 67725054 ... 014200 48061014200 142 \n", + "7 119430273 ... 014200 48061014200 142 \n", + "5 113041841 ... 010800 48061010800 108 \n", + "5 113041841 ... 010203 48061010203 102.03 \n", + "5 113041841 ... 012200 48061012200 122 \n", + "7 119430273 ... 012200 48061012200 122 \n", + "5 113041841 ... 011400 48061011400 114 \n", + "6 67725054 ... 014100 48061014100 141 \n", + "6 67725054 ... 013207 48061013207 132.07 \n", + "6 67725054 ... 013203 48061013203 132.03 \n", + "6 67725054 ... 012607 48061012607 126.07 \n", + "\n", + " NAMELSAD10_right MTFCC10_right FUNCSTAT10_right ALAND10_right \\\n", + "0 Census Tract 123.05 G5020 S 25920881 \n", + "1 Census Tract 123.05 G5020 S 25920881 \n", + "2 Census Tract 123.05 G5020 S 25920881 \n", + "4 Census Tract 123.05 G5020 S 25920881 \n", + "5 Census Tract 123.05 G5020 S 25920881 \n", + "6 Census Tract 123.05 G5020 S 25920881 \n", + "7 Census Tract 123.05 G5020 S 25920881 \n", + "0 Census Tract 9507 G5020 S 1025415174 \n", + "3 Census Tract 9507 G5020 S 1025415174 \n", + "5 Census Tract 9507 G5020 S 1025415174 \n", + "0 Census Tract 9900 G5020 S 0 \n", + "1 Census Tract 9900 G5020 S 0 \n", + "0 Census Tract 9501 G5020 S 3777053964 \n", + "1 Census Tract 9501 G5020 S 3777053964 \n", + "0 Census Tract 9900 G5020 S 0 \n", + "3 Census Tract 9900 G5020 S 0 \n", + "6 Census Tract 9900 G5020 S 0 \n", + "1 Census Tract 102.01 G5020 S 138787038 \n", + "5 Census Tract 102.01 G5020 S 138787038 \n", + "1 Census Tract 101 G5020 S 365458278 \n", + "3 Census Tract 101 G5020 S 365458278 \n", + "7 Census Tract 101 G5020 S 365458278 \n", + "1 Census Tract 9506 G5020 S 142823217 \n", + "5 Census Tract 9506 G5020 S 142823217 \n", + "1 Census Tract 9505 G5020 S 198663041 \n", + "1 Census Tract 9504 G5020 S 95793488 \n", + "1 Census Tract 9900 G5020 S 0 \n", + "2 Census Tract 9900 G5020 S 0 \n", + "3 Census Tract 9900 G5020 S 0 \n", + "1 Census Tract 243.02 G5020 S 152233383 \n", + "1 Census Tract 9503 G5020 S 66833755 \n", + "1 Census Tract 243.01 G5020 S 1426811393 \n", + "2 Census Tract 127 G5020 S 129622799 \n", + "3 Census Tract 127 G5020 S 129622799 \n", + "4 Census Tract 127 G5020 S 129622799 \n", + "3 Census Tract 123.04 G5020 S 5761299 \n", + "6 Census Tract 123.04 G5020 S 5761299 \n", + "7 Census Tract 123.04 G5020 S 5761299 \n", + "3 Census Tract 123.01 G5020 S 137622651 \n", + "4 Census Tract 123.01 G5020 S 137622651 \n", + "5 Census Tract 123.01 G5020 S 137622651 \n", + "4 Census Tract 142 G5020 S 229485446 \n", + "6 Census Tract 142 G5020 S 229485446 \n", + "7 Census Tract 142 G5020 S 229485446 \n", + "5 Census Tract 108 G5020 S 24214554 \n", + "5 Census Tract 102.03 G5020 S 36355923 \n", + "5 Census Tract 122 G5020 S 181087087 \n", + "7 Census Tract 122 G5020 S 181087087 \n", + "5 Census Tract 114 G5020 S 52595069 \n", + "6 Census Tract 141 G5020 S 58750542 \n", + "6 Census Tract 132.07 G5020 S 3884436 \n", + "6 Census Tract 132.03 G5020 S 1103957 \n", + "6 Census Tract 126.07 G5020 S 3230089 \n", + "\n", + " AWATER10_right INTPTLAT10_right INTPTLON10_right \n", + "0 324996211 +26.2732070 -097.2763703 \n", + "1 324996211 +26.2732070 -097.2763703 \n", + "2 324996211 +26.2732070 -097.2763703 \n", + "4 324996211 +26.2732070 -097.2763703 \n", + "5 324996211 +26.2732070 -097.2763703 \n", + "6 324996211 +26.2732070 -097.2763703 \n", + "7 324996211 +26.2732070 -097.2763703 \n", + "0 377000048 +26.5154317 -097.5790835 \n", + "3 377000048 +26.5154317 -097.5790835 \n", + "5 377000048 +26.5154317 -097.5790835 \n", + "0 394659578 +26.9389899 -097.3234546 \n", + "1 394659578 +26.9389899 -097.3234546 \n", + "0 867877948 +26.9241932 -097.6694694 \n", + "1 867877948 +26.9241932 -097.6694694 \n", + "0 268272237 +26.1902408 -097.1473235 \n", + "3 268272237 +26.1902408 -097.1473235 \n", + "6 268272237 +26.1902408 -097.1473235 \n", + "1 773532 +26.2865300 -097.6765589 \n", + "5 773532 +26.2865300 -097.6765589 \n", + "1 113041841 +26.2713946 -097.4414470 \n", + "3 113041841 +26.2713946 -097.4414470 \n", + "7 113041841 +26.2713946 -097.4414470 \n", + "1 867417 +26.3413027 -097.6980863 \n", + "5 867417 +26.3413027 -097.6980863 \n", + "1 1916760 +26.4046271 -097.7275193 \n", + "1 440761 +26.4857271 -097.7274534 \n", + "1 121414926 +26.5064260 -097.2240134 \n", + "2 121414926 +26.5064260 -097.2240134 \n", + "3 121414926 +26.5064260 -097.2240134 \n", + "1 10002679 +26.4228640 -097.9710985 \n", + "1 75864 +26.4851686 -097.8236397 \n", + "1 527958 +26.6175624 -098.1948738 \n", + "2 67725054 +25.9786218 -097.2580863 \n", + "3 67725054 +25.9786218 -097.2580863 \n", + "4 67725054 +25.9786218 -097.2580863 \n", + "3 6286773 +26.0631407 -097.2184868 \n", + "6 6286773 +26.0631407 -097.2184868 \n", + "7 6286773 +26.0631407 -097.2184868 \n", + "3 119430273 +26.1581170 -097.3180348 \n", + "4 119430273 +26.1581170 -097.3180348 \n", + "5 119430273 +26.1581170 -097.3180348 \n", + "4 52743725 +26.0321232 -097.3592760 \n", + "6 52743725 +26.0321232 -097.3592760 \n", + "7 52743725 +26.0321232 -097.3592760 \n", + "5 372874 +26.2018913 -097.6365382 \n", + "5 529676 +26.2392001 -097.7004164 \n", + "5 9690866 +26.1431884 -097.4883500 \n", + "7 9690866 +26.1431884 -097.4883500 \n", + "5 1716432 +26.1576649 -097.6030070 \n", + "6 1786306 +25.8820153 -097.4007135 \n", + "6 409892 +25.9278897 -097.4159201 \n", + "6 3034 +25.9335830 -097.4379216 \n", + "6 151343 +25.9479994 -097.4340712 \n", + "\n", + "[53 rows x 27 columns]" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "adjacent_tracts__v1" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "id": "f3033c5d", + "metadata": {}, + "outputs": [], + "source": [ + "### check for duplicates\n", + "assert len(adjacent_tracts__v1[['ORIGINAL_TRACT', 'GEOID10_TRACT']].drop_duplicates()) == len(adjacent_tracts__v1[['ORIGINAL_TRACT', 'GEOID10_TRACT']])" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "id": "4b1770de", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTDefinition N (communities) (average of neighbors)
0480610101000.666667
1480610102011.000000
2480610102031.000000
3480610108001.000000
4480610114001.000000
5480610122001.000000
6480610123010.666667
7480610123040.666667
8480610123050.714286
9480610126071.000000
10480610127000.333333
11480610132031.000000
12480610132071.000000
13480610141001.000000
14480610142001.000000
15480619900000.333333
16482150243011.000000
17482150243021.000000
18482619501000.500000
19482619900000.500000
20484899503001.000000
21484899504001.000000
22484899505001.000000
23484899506001.000000
24484899507000.333333
25484899900000.333333
\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT Definition N (communities) (average of neighbors)\n", + "0 48061010100 0.666667\n", + "1 48061010201 1.000000\n", + "2 48061010203 1.000000\n", + "3 48061010800 1.000000\n", + "4 48061011400 1.000000\n", + "5 48061012200 1.000000\n", + "6 48061012301 0.666667\n", + "7 48061012304 0.666667\n", + "8 48061012305 0.714286\n", + "9 48061012607 1.000000\n", + "10 48061012700 0.333333\n", + "11 48061013203 1.000000\n", + "12 48061013207 1.000000\n", + "13 48061014100 1.000000\n", + "14 48061014200 1.000000\n", + "15 48061990000 0.333333\n", + "16 48215024301 1.000000\n", + "17 48215024302 1.000000\n", + "18 48261950100 0.500000\n", + "19 48261990000 0.500000\n", + "20 48489950300 1.000000\n", + "21 48489950400 1.000000\n", + "22 48489950500 1.000000\n", + "23 48489950600 1.000000\n", + "24 48489950700 0.333333\n", + "25 48489990000 0.333333" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "returned_donut_bools__v1" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "id": "c2aa4682", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTDefinition N (communities) (average of neighbors)
8480610123050.714286
\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT Definition N (communities) (average of neighbors)\n", + "8 48061012305 0.714286" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# check result for our example tract\n", + "returned_donut_bools__v1[returned_donut_bools__v1.GEOID10_TRACT==CAM_ID]" + ] + }, + { + "cell_type": "markdown", + "id": "936d0ebc", + "metadata": {}, + "source": [ + "Demonstrates that because 2 of the 7 adjacent tracts have meaningless water-only non-disadvantaged status, the average of neighbors is less than 1. This is why our example tract isn't being classified as disadvantaged in v1." + ] + }, + { + "cell_type": "markdown", + "id": "a02b6194", + "metadata": {}, + "source": [ + "### Simulate proposed v2 implementations of calculate_tract_adjacency_scores()" + ] + }, + { + "cell_type": "markdown", + "id": "5688387a", + "metadata": {}, + "source": [ + "Testing three ways to do this: filtering tract_data, filtering df, and filtering both. For the first two ways, we'll test both land area and tract ID range methods." + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "id": "72963a39", + "metadata": {}, + "outputs": [], + "source": [ + "def view_results(returned_donut_bools, post_merge_df, adjacent_tracts):\n", + " # function to print what we need to see after each experiment\n", + " \n", + " print(f'Length of input df after Census merge: {len(post_merge_df)}') \n", + " print(f'That is {len(df_census__v1) - len(post_merge_df)} less than in v1')\n", + " \n", + " print(f'\\nLength of adjacency frame: {len(adjacent_tracts)}')\n", + " print(f'That is {len(adjacent_tracts__v1) - len(adjacent_tracts)} less than in v1')\n", + " \n", + " n_dupes = len(adjacent_tracts[['ORIGINAL_TRACT', 'GEOID10_TRACT']])\\\n", + " - len(adjacent_tracts[['ORIGINAL_TRACT', 'GEOID10_TRACT']].drop_duplicates())\n", + " if n_dupes>0:\n", + " print(\"ALERT: duplicates present in adjacency frame!\")\n", + "\n", + " \n", + " print(f'\\nLength of returned frame with donut bools: {len(returned_donut_bools)}')\n", + " if len(returned_donut_bools__v1) == len(returned_donut_bools):\n", + " print('Returning same number of final bools as in v1')\n", + " else:\n", + " print(f'ALERT: returning {len(returned_donut_bools__v1) - len(returned_donut_bools)} less than in v1')\n", + "\n", + " cam_return = returned_donut_bools[returned_donut_bools.GEOID10_TRACT==CAM_ID]\n", + " display(cam_return)\n", + "\n", + " if cam_return['Definition N (communities) (average of neighbors)'].values[0]==1:\n", + " print('SUCCESSFULLY RE-ASSIGNING CAMERON, TX EXAMPLE TO DISADVANTAGED STATUS')\n", + " else:\n", + " print('ALERT: CAMERON, TX EXAMPLE IS STILL BEING MARKED NON-DISADVANTAGED')" + ] + }, + { + "cell_type": "markdown", + "id": "c1712378", + "metadata": {}, + "source": [ + "#### Implementation 1a: Filter water-only tracts out of tract_data using ALAND10" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "id": "9e0401e1", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Length of input df after Census merge: 6\n", + "That is 2 less than in v1\n", + "\n", + "Length of adjacency frame: 40\n", + "That is 13 less than in v1\n", + "\n", + "Length of returned frame with donut bools: 23\n", + "ALERT: returning 3 less than in v1\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTDefinition N (communities) (average of neighbors)
8480610123051.0
\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT Definition N (communities) (average of neighbors)\n", + "8 48061012305 1.0" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SUCCESSFULLY RE-ASSIGNING CAMERON, TX EXAMPLE TO DISADVANTAGED STATUS\n" + ] + } + ], + "source": [ + "tract_data_land_area_only = tract_data.copy()\n", + "tract_data_land_area_only = tract_data_land_area_only[tract_data_land_area_only.ALAND10>0]\n", + "\n", + "returned_donut_bools__filter_tracts_aland10,\\\n", + "df_census__filter_tracts_aland10,\\\n", + "adjacent_tracts__filter_tracts_aland10 =calculate_tract_adjacency_scores(\n", + " df=df_cam_plus, \n", + " score_column=SCORE_N_COMMUNITIES, \n", + " tract_data=tract_data_land_area_only\n", + ")\n", + "\n", + "view_results(returned_donut_bools=returned_donut_bools__filter_tracts_aland10, \n", + " post_merge_df=df_census__filter_tracts_aland10, \n", + " adjacent_tracts=adjacent_tracts__filter_tracts_aland10)" + ] + }, + { + "cell_type": "markdown", + "id": "f277cc9a", + "metadata": {}, + "source": [ + "#### Implementation 1b: Filter water-only tracts out of df using tract range" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "id": "0ea48370", + "metadata": {}, + "outputs": [], + "source": [ + "def full_geo_id_to_water_range_bool(x:str):\n", + " num_x = int(x[-6:])\n", + " return(in_water_range(num_x))" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "id": "a2ef8844", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Length of input df after Census merge: 6\n", + "That is 2 less than in v1\n", + "\n", + "Length of adjacency frame: 40\n", + "That is 13 less than in v1\n", + "\n", + "Length of returned frame with donut bools: 23\n", + "ALERT: returning 3 less than in v1\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTDefinition N (communities) (average of neighbors)
8480610123051.0
\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT Definition N (communities) (average of neighbors)\n", + "8 48061012305 1.0" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SUCCESSFULLY RE-ASSIGNING CAMERON, TX EXAMPLE TO DISADVANTAGED STATUS\n" + ] + } + ], + "source": [ + "tract_data_non_water_range_only = tract_data.copy()\n", + "tract_data_non_water_range_only = tract_data_non_water_range_only[tract_data_non_water_range_only.GEOID10_TRACT\\\n", + " .apply(full_geo_id_to_water_range_bool)\\\n", + " ==False]\n", + "\n", + "returned_donut_bools__filter_tracts_id_range,\\\n", + "df_census__filter_tracts_id_range,\\\n", + "adjacent_tracts__filter_tracts_id_range =calculate_tract_adjacency_scores(\n", + " df=df_cam_plus, \n", + " score_column=SCORE_N_COMMUNITIES, \n", + " tract_data=tract_data_non_water_range_only\n", + ")\n", + "\n", + "view_results(returned_donut_bools=returned_donut_bools__filter_tracts_id_range, \n", + " post_merge_df=df_census__filter_tracts_id_range, \n", + " adjacent_tracts=adjacent_tracts__filter_tracts_id_range)" + ] + }, + { + "cell_type": "markdown", + "id": "1fcee2e2", + "metadata": {}, + "source": [ + "#### Implementation 2a: Filter water-only tracts out of df using ALAND10" + ] + }, + { + "cell_type": "markdown", + "id": "477a886c", + "metadata": {}, + "source": [ + "Note: we can't filter the input df based on ALAND10 using the standard calculate_tract_adjacency_scores() function, because it doesn't have the ALAND10 column until after it is merged with tract data. Need to write a new test function for this method." + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "id": "9ad212d3", + "metadata": {}, + "outputs": [], + "source": [ + "def calculate_tract_adjacency_scores__filter_df_aland10(\n", + " df: pd.DataFrame, score_column: str, tract_data\n", + ") -> pd.DataFrame:\n", + " \"\"\"Calculate the mean score of each tract in df based on its neighbors\n", + "\n", + " Args:\n", + " df (pandas.DataFrame): A dataframe with at least the following columns:\n", + " * field_names.GEOID_TRACT_FIELD\n", + " * score_column\n", + "\n", + " score_column (str): The name of the column that contains the scores\n", + " to average\n", + " \n", + " tract_data (GeoDataFrame): tract data normally loaded in first line of \n", + " function: tract_data = get_tract_geojson()\n", + " Returns :\n", + " tuple containing final returned df in actual function, as well as intermediates:\n", + " - returned_donut_bools (pandas.DataFrame): A dataframe with two columns:\n", + " * field_names.GEOID_TRACT_FIELD\n", + " * {score_column}_ADJACENT_MEAN, which is the average of score_column for\n", + " each tract that touches the tract identified\n", + " in field_names.GEOID_TRACT_FIELD\n", + " NB: this is the df that gets returned in the actual function\n", + " - df (pandas.DataFrame): input df after merging with Census data\n", + " - adjacent_tracts (pandas.DataFrame): adjacency df\n", + " \"\"\"\n", + "\n", + " df: gpd.GeoDataFrame = tract_data.merge(\n", + " df, on=GEOID_TRACT_FIELD\n", + " )\n", + " df = df.rename(columns={GEOID_TRACT_FIELD: ORIGINAL_TRACT})\n", + " \n", + " \n", + " # remove water areas from input frame\n", + " df = df[df['ALAND10']>0]\n", + "\n", + "\n", + " adjacent_tracts: gpd.GeoDataFrame = df.sjoin(\n", + " tract_data, predicate=\"touches\"\n", + " )\n", + "\n", + "\n", + " returned_donut_bools = (\n", + " adjacent_tracts.groupby(GEOID_TRACT_FIELD)[[score_column]]\n", + " .mean()\n", + " .reset_index()\n", + " .rename(\n", + " columns={\n", + " score_column: f\"{score_column}{ADJACENCY_INDEX_SUFFIX}\",\n", + " }\n", + " )\n", + " )\n", + " \n", + " return (returned_donut_bools, df, adjacent_tracts)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "id": "ff9d13cd", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Length of input df after Census merge: 6\n", + "That is 2 less than in v1\n", + "\n", + "Length of adjacency frame: 45\n", + "That is 8 less than in v1\n", + "\n", + "Length of returned frame with donut bools: 26\n", + "Returning same number of final bools as in v1\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTDefinition N (communities) (average of neighbors)
8480610123051.0
\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT Definition N (communities) (average of neighbors)\n", + "8 48061012305 1.0" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SUCCESSFULLY RE-ASSIGNING CAMERON, TX EXAMPLE TO DISADVANTAGED STATUS\n" + ] + } + ], + "source": [ + "returned_donut_bools__filter_df_aland10,\\\n", + "df_census__filter_df_aland10,\\\n", + "adjacent_tracts__filter_df_aland10 = calculate_tract_adjacency_scores__filter_df_aland10(\n", + " df=df_cam_plus, \n", + " score_column=SCORE_N_COMMUNITIES, \n", + " tract_data=tract_data\n", + ")\n", + "\n", + "view_results(returned_donut_bools=returned_donut_bools__filter_df_aland10, \n", + " post_merge_df=df_census__filter_df_aland10, \n", + " adjacent_tracts=adjacent_tracts__filter_df_aland10)" + ] + }, + { + "cell_type": "markdown", + "id": "c7401f01", + "metadata": {}, + "source": [ + "#### Implementation 2b: Filter water-only tracts out of df using tract range" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "id": "3cb027ab", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Length of input df after Census merge: 6\n", + "That is 2 less than in v1\n", + "\n", + "Length of adjacency frame: 45\n", + "That is 8 less than in v1\n", + "\n", + "Length of returned frame with donut bools: 26\n", + "Returning same number of final bools as in v1\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTDefinition N (communities) (average of neighbors)
8480610123051.0
\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT Definition N (communities) (average of neighbors)\n", + "8 48061012305 1.0" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SUCCESSFULLY RE-ASSIGNING CAMERON, TX EXAMPLE TO DISADVANTAGED STATUS\n" + ] + } + ], + "source": [ + "df_cam_plus_no_water = df_cam_plus.copy()\n", + "df_cam_plus_no_water = df_cam_plus_no_water[df_cam_plus_no_water.GEOID10_TRACT\\\n", + " .apply(full_geo_id_to_water_range_bool)\\\n", + " ==False]\n", + "\n", + "returned_donut_bools__filter_df_id_range,\\\n", + "df_census__filter_df_id_range,\\\n", + "adjacent_tracts__filter_df_id_range = calculate_tract_adjacency_scores(\n", + " df=df_cam_plus_no_water, \n", + " score_column=SCORE_N_COMMUNITIES, \n", + " tract_data=tract_data\n", + ")\n", + "\n", + "view_results(returned_donut_bools=returned_donut_bools__filter_df_id_range, \n", + " post_merge_df=df_census__filter_df_id_range, \n", + " adjacent_tracts=adjacent_tracts__filter_df_id_range)" + ] + }, + { + "cell_type": "markdown", + "id": "c0f94a03", + "metadata": {}, + "source": [ + "#### Implementation 3: Filter water-only tracts out of both tract_data and df" + ] + }, + { + "cell_type": "markdown", + "id": "e96c981f", + "metadata": {}, + "source": [ + "Note: test id method for simplicity" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "id": "8e385e22", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Length of input df after Census merge: 6\n", + "That is 2 less than in v1\n", + "\n", + "Length of adjacency frame: 40\n", + "That is 13 less than in v1\n", + "\n", + "Length of returned frame with donut bools: 23\n", + "ALERT: returning 3 less than in v1\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTDefinition N (communities) (average of neighbors)
8480610123051.0
\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT Definition N (communities) (average of neighbors)\n", + "8 48061012305 1.0" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SUCCESSFULLY RE-ASSIGNING CAMERON, TX EXAMPLE TO DISADVANTAGED STATUS\n" + ] + } + ], + "source": [ + "returned_donut_bools__filter_both,\\\n", + "df_census__filter_both,\\\n", + "adjacent_tracts__filter_both =calculate_tract_adjacency_scores(\n", + " df=df_cam_plus_no_water, \n", + " score_column=SCORE_N_COMMUNITIES, \n", + " tract_data=tract_data_non_water_range_only\n", + ")\n", + "\n", + "view_results(returned_donut_bools=returned_donut_bools__filter_both, \n", + " post_merge_df=df_census__filter_both, \n", + " adjacent_tracts=adjacent_tracts__filter_both)" + ] + }, + { + "cell_type": "markdown", + "id": "dde21850", + "metadata": {}, + "source": [ + "#### Summary of results: All solutions successfully re-assigned our example tract to disadvantaged status. Only implementations 2a & 2b (filtering on the dataframe) also preserved the number of tracts that the function returns" + ] + }, + { + "cell_type": "markdown", + "id": "04d07bdb", + "metadata": {}, + "source": [ + "## Compare full scoring runs from different methods" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "id": "aa462404", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTdac_adj_avg_proddac_adj_avg_localis_donut_hole_prodis_donut_hole_localfinal_dac_prodfinal_dac_localclass_change
332120879710010.671.0FalseTrueFalseTrueTrue
370121010302020.831.0FalseTrueFalseTrueTrue
376121010303030.831.0FalseTrueFalseTrueTrue
419121270811020.751.0FalseTrueFalseTrueTrue
806260690002000.861.0FalseTrueFalseTrueTrue
812260830001000.331.0FalseTrueFalseTrueTrue
912280470014000.881.0FalseTrueFalseTrueTrue
1138390070006020.751.0FalseTrueFalseTrueTrue
1654410419503030.751.0FalseTrueFalseTrueTrue
1739480610123050.711.0FalseTrueFalseTrueTrue
1766510010906000.831.0FalseTrueFalseTrueTrue
1780511319302000.671.0FalseTrueFalseTrueTrue
1944551010001000.751.0FalseTrueFalseTrueTrue
2012720133010000.711.0FalseTrueFalseTrueTrue
2037720371601000.831.0FalseTrueFalseTrueTrue
\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT dac_adj_avg_prod dac_adj_avg_local is_donut_hole_prod \\\n", + "332 12087971001 0.67 1.0 False \n", + "370 12101030202 0.83 1.0 False \n", + "376 12101030303 0.83 1.0 False \n", + "419 12127081102 0.75 1.0 False \n", + "806 26069000200 0.86 1.0 False \n", + "812 26083000100 0.33 1.0 False \n", + "912 28047001400 0.88 1.0 False \n", + "1138 39007000602 0.75 1.0 False \n", + "1654 41041950303 0.75 1.0 False \n", + "1739 48061012305 0.71 1.0 False \n", + "1766 51001090600 0.83 1.0 False \n", + "1780 51131930200 0.67 1.0 False \n", + "1944 55101000100 0.75 1.0 False \n", + "2012 72013301000 0.71 1.0 False \n", + "2037 72037160100 0.83 1.0 False \n", + "\n", + " is_donut_hole_local final_dac_prod final_dac_local class_change \n", + "332 True False True True \n", + "370 True False True True \n", + "376 True False True True \n", + "419 True False True True \n", + "806 True False True True \n", + "812 True False True True \n", + "912 True False True True \n", + "1138 True False True True \n", + "1654 True False True True \n", + "1739 True False True True \n", + "1766 True False True True \n", + "1780 True False True True \n", + "1944 True False True True \n", + "2012 True False True True \n", + "2037 True False True True " + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# read in CSV with deltas from implementation 1a \n", + "# (water areas filtered from tract_data via ALAND10)\n", + "deltas__tract_area = pd.read_csv('../data/tmp/Comparator/Score/deltas__tract_area.csv')\n", + "\n", + "# rename key columns\n", + "deltas__tract_area.rename(columns = {'Unnamed: 0': 'GEOID10_TRACT',\n", + " 'Definition N community, including adjacency index tracts': 'final_dac_prod',\n", + " 'Definition N community, including adjacency index tracts.1': 'final_dac_local',\n", + " 'Definition N (communities) (average of neighbors)': 'dac_adj_avg_prod',\n", + " 'Definition N (communities) (average of neighbors).1': 'dac_adj_avg_local',\n", + " 'Is the tract surrounded by disadvantaged communities?': 'is_donut_hole_prod',\n", + " 'Is the tract surrounded by disadvantaged communities?.1': 'is_donut_hole_local'\n", + " },\n", + " inplace=True) \n", + "\n", + "# drop first two rows, which old column information\n", + "deltas__tract_area.drop(index=[0,1], inplace=True)\n", + "\n", + "# create bool to store whether final DAC designation was updated\n", + "deltas__tract_area['class_change'] = deltas__tract_area.final_dac_prod!=deltas__tract_area.final_dac_local\n", + "\n", + "# set class change bool to false where both designations are null\n", + "deltas__tract_area.loc[((deltas__tract_area.final_dac_prod.isna()==True)\\\n", + " & (deltas__tract_area.final_dac_local.isna()==True)), \n", + " 'class_change'] = False\n", + "\n", + "# view tracts that had their status updated with this method\n", + "deltas__tract_area[deltas__tract_area.class_change][['GEOID10_TRACT', \n", + " 'dac_adj_avg_prod', 'dac_adj_avg_local',\n", + " 'is_donut_hole_prod', 'is_donut_hole_local',\n", + " 'final_dac_prod', 'final_dac_local',\n", + " 'class_change']]" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "id": "3dc9500a", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTdac_adj_avg_proddac_adj_avg_localis_donut_hole_prodis_donut_hole_localfinal_dac_prodfinal_dac_localclass_change
312120879710010.671.0FalseTrueFalseTrueTrue
346121010302020.831.0FalseTrueFalseTrueTrue
352121010303030.831.0FalseTrueFalseTrueTrue
388121270811020.751.0FalseTrueFalseTrueTrue
741260690002000.861.0FalseTrueFalseTrueTrue
747260830001000.331.0FalseTrueFalseTrueTrue
836280470014000.881.0FalseTrueFalseTrueTrue
1044390070006020.751.0FalseTrueFalseTrueTrue
1559410419503030.751.0FalseTrueFalseTrueTrue
1643480610123050.711.0FalseTrueFalseTrueTrue
1668510010906000.831.0FalseTrueFalseTrueTrue
1679511319302000.671.0FalseTrueFalseTrueTrue
1828551010001000.751.0FalseTrueFalseTrueTrue
1894720133010000.711.0FalseTrueFalseTrueTrue
1919720371601000.831.0FalseTrueFalseTrueTrue
\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT dac_adj_avg_prod dac_adj_avg_local is_donut_hole_prod \\\n", + "312 12087971001 0.67 1.0 False \n", + "346 12101030202 0.83 1.0 False \n", + "352 12101030303 0.83 1.0 False \n", + "388 12127081102 0.75 1.0 False \n", + "741 26069000200 0.86 1.0 False \n", + "747 26083000100 0.33 1.0 False \n", + "836 28047001400 0.88 1.0 False \n", + "1044 39007000602 0.75 1.0 False \n", + "1559 41041950303 0.75 1.0 False \n", + "1643 48061012305 0.71 1.0 False \n", + "1668 51001090600 0.83 1.0 False \n", + "1679 51131930200 0.67 1.0 False \n", + "1828 55101000100 0.75 1.0 False \n", + "1894 72013301000 0.71 1.0 False \n", + "1919 72037160100 0.83 1.0 False \n", + "\n", + " is_donut_hole_local final_dac_prod final_dac_local class_change \n", + "312 True False True True \n", + "346 True False True True \n", + "352 True False True True \n", + "388 True False True True \n", + "741 True False True True \n", + "747 True False True True \n", + "836 True False True True \n", + "1044 True False True True \n", + "1559 True False True True \n", + "1643 True False True True \n", + "1668 True False True True \n", + "1679 True False True True \n", + "1828 True False True True \n", + "1894 True False True True \n", + "1919 True False True True " + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# read in CSV with deltas from implementation 2a \n", + "# (water areas filtered from input df via ALAND10)\n", + "deltas__df_area = pd.read_csv('../data/tmp/Comparator/Score/deltas__df_area.csv')\n", + "\n", + "# rename key columns\n", + "deltas__df_area.rename(columns = {'Unnamed: 0': 'GEOID10_TRACT',\n", + " 'Definition N community, including adjacency index tracts': 'final_dac_prod',\n", + " 'Definition N community, including adjacency index tracts.1': 'final_dac_local',\n", + " 'Definition N (communities) (average of neighbors)': 'dac_adj_avg_prod',\n", + " 'Definition N (communities) (average of neighbors).1': 'dac_adj_avg_local',\n", + " 'Is the tract surrounded by disadvantaged communities?': 'is_donut_hole_prod',\n", + " 'Is the tract surrounded by disadvantaged communities?.1': 'is_donut_hole_local'\n", + " },\n", + " inplace=True) \n", + "\n", + "# drop first two rows, which old column information\n", + "deltas__df_area.drop(index=[0,1], inplace=True)\n", + "\n", + "# create bool to store whether final DAC designation was updated\n", + "deltas__df_area['class_change'] = deltas__df_area.final_dac_prod!=deltas__df_area.final_dac_local\n", + "\n", + "# set class change bool to false where both designations are null\n", + "deltas__df_area.loc[((deltas__df_area.final_dac_prod.isna()==True)\\\n", + " & (deltas__df_area.final_dac_local.isna()==True)), \n", + " 'class_change'] = False\n", + "\n", + "# view tracts that had their status updated with this method\n", + "deltas__df_area[deltas__df_area.class_change][['GEOID10_TRACT', \n", + " 'dac_adj_avg_prod', 'dac_adj_avg_local',\n", + " 'is_donut_hole_prod', 'is_donut_hole_local',\n", + " 'final_dac_prod', 'final_dac_local',\n", + " 'class_change']]" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "id": "5187abcb", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTdac_adj_avg_proddac_adj_avg_localis_donut_hole_prodis_donut_hole_localfinal_dac_prodfinal_dac_localclass_change
228120879710010.671.0FalseTrueFalseTrueTrue
261121010302020.831.0FalseTrueFalseTrueTrue
267121010303030.831.0FalseTrueFalseTrueTrue
292121270811020.751.0FalseTrueFalseTrueTrue
570260690002000.861.0FalseTrueFalseTrueTrue
648280470014000.881.0FalseTrueFalseTrueTrue
755390070006020.751.0FalseTrueFalseTrueTrue
1281480610123050.711.0FalseTrueFalseTrueTrue
1388551010001000.751.0FalseTrueFalseTrueTrue
1470720371601000.831.0FalseTrueFalseTrueTrue
\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT dac_adj_avg_prod dac_adj_avg_local is_donut_hole_prod \\\n", + "228 12087971001 0.67 1.0 False \n", + "261 12101030202 0.83 1.0 False \n", + "267 12101030303 0.83 1.0 False \n", + "292 12127081102 0.75 1.0 False \n", + "570 26069000200 0.86 1.0 False \n", + "648 28047001400 0.88 1.0 False \n", + "755 39007000602 0.75 1.0 False \n", + "1281 48061012305 0.71 1.0 False \n", + "1388 55101000100 0.75 1.0 False \n", + "1470 72037160100 0.83 1.0 False \n", + "\n", + " is_donut_hole_local final_dac_prod final_dac_local class_change \n", + "228 True False True True \n", + "261 True False True True \n", + "267 True False True True \n", + "292 True False True True \n", + "570 True False True True \n", + "648 True False True True \n", + "755 True False True True \n", + "1281 True False True True \n", + "1388 True False True True \n", + "1470 True False True True " + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# read in CSV with deltas from implementation 2b \n", + "# (water areas filtered from input df via IDs)\n", + "deltas__df_id = pd.read_csv('../data/tmp/Comparator/Score/deltas__df_id.csv')\n", + "\n", + "# rename key columns\n", + "deltas__df_id.rename(columns = {'Unnamed: 0': 'GEOID10_TRACT',\n", + " 'Definition N community, including adjacency index tracts': 'final_dac_prod',\n", + " 'Definition N community, including adjacency index tracts.1': 'final_dac_local',\n", + " 'Definition N (communities) (average of neighbors)': 'dac_adj_avg_prod',\n", + " 'Definition N (communities) (average of neighbors).1': 'dac_adj_avg_local',\n", + " 'Is the tract surrounded by disadvantaged communities?': 'is_donut_hole_prod',\n", + " 'Is the tract surrounded by disadvantaged communities?.1': 'is_donut_hole_local'\n", + " },\n", + " inplace=True) \n", + "\n", + "# drop first two rows, which old column information\n", + "deltas__df_id.drop(index=[0,1], inplace=True)\n", + "\n", + "# create bool to store whether final DAC designation was updated\n", + "deltas__df_id['class_change'] = deltas__df_id.final_dac_prod!=deltas__df_id.final_dac_local\n", + "\n", + "# set class change bool to false where both designations are null\n", + "deltas__df_id.loc[((deltas__df_id.final_dac_prod.isna()==True)\\\n", + " & (deltas__df_id.final_dac_local.isna()==True)), \n", + " 'class_change'] = False\n", + "\n", + "# view tracts that had their status updated with this method\n", + "deltas__df_id[deltas__df_id.class_change][['GEOID10_TRACT', \n", + " 'dac_adj_avg_prod', 'dac_adj_avg_local',\n", + " 'is_donut_hole_prod', 'is_donut_hole_local',\n", + " 'final_dac_prod', 'final_dac_local',\n", + " 'class_change']]" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "id": "6d1c7b0e", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12087971001, 12101030202, 12101030303, 12127081102, 26069000200, 26083000100, 28047001400, 39007000602, 41041950303, 48061012305, 51001090600, 51131930200, 55101000100, 72013301000, 72037160100\n" + ] + } + ], + "source": [ + "# print list of tract IDs where status was updated by method 1a\n", + "updated_ids__tract_area = deltas__tract_area[deltas__tract_area.class_change]['GEOID10_TRACT'].values\n", + "print(', '.join(updated_ids__tract_area))" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "id": "a1ea1384", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12087971001, 12101030202, 12101030303, 12127081102, 26069000200, 26083000100, 28047001400, 39007000602, 41041950303, 48061012305, 51001090600, 51131930200, 55101000100, 72013301000, 72037160100\n" + ] + } + ], + "source": [ + "# print list of tract IDs where status was updated by method 2a\n", + "updated_ids__df_area = deltas__df_area[deltas__df_area.class_change]['GEOID10_TRACT'].values\n", + "print(', '.join(updated_ids__df_area))" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "id": "f6516263", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "12087971001, 12101030202, 12101030303, 12127081102, 26069000200, 28047001400, 39007000602, 48061012305, 55101000100, 72037160100\n" + ] + } + ], + "source": [ + "# print list of tract IDs where status was updated by method 2b\n", + "updated_ids__df_id = deltas__df_id[deltas__df_id.class_change]['GEOID10_TRACT'].values\n", + "print(', '.join(updated_ids__df_id))" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "id": "f540133f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "15" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# how many tracts updated by method 1a?\n", + "len(updated_ids__tract_area)" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "id": "ffb41759", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "15" + ] + }, + "execution_count": 42, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# how many tracts updated by method 2a?\n", + "len(updated_ids__df_area)" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "id": "4e5099ff", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "10" + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# how many tracts updated by method 2b?\n", + "len(updated_ids__df_id)" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "id": "8534563c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "15" + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# how many tracts are changed by both 1a and 2a?\n", + "len(set(updated_ids__tract_area) & set(updated_ids__df_area))" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "id": "b8270c9a", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "10" + ] + }, + "execution_count": 45, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# how many tracts are changed by all 3?\n", + "len(set(updated_ids__tract_area) & set(updated_ids__df_id))" + ] + }, + { + "cell_type": "markdown", + "id": "6494e4c3", + "metadata": {}, + "source": [ + "Implementations 1a & 2a result in the same designations. They makes all the same changes as implementation 2b, plus 5 more." + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "id": "8c80b1d6", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'26083000100', '41041950303', '51001090600', '51131930200', '72013301000'}" + ] + }, + "execution_count": 46, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# view the tracts that are changed with 1a/2a but not with 2b\n", + "\n", + "set(updated_ids__tract_area) - set(updated_ids__df_id)" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "id": "bb4a3c4b", + "metadata": {}, + "outputs": [], + "source": [ + "### VA:\n", + "# 51001090600\n", + "# https://screeningtool.geoplatform.gov/en/#9.26/37.7027/-75.8891\n", + "# 51131930200\n", + "# https://screeningtool.geoplatform.gov/en/#9.84/37.3186/-75.9043\n", + "\n", + "### MI: \n", + "# 26083000100\n", + "# https://screeningtool.geoplatform.gov/en/#8.87/47.3424/-88.1965\n", + "\n", + "### OR:\n", + "# 41041950303\n", + "# https://screeningtool.geoplatform.gov/en/#11.94/45.015/-123.98189\n", + "\n", + "### PR:\n", + "# 72013301000\n", + "# https://screeningtool.geoplatform.gov/en/#13.45/18.47558/-66.75585" + ] + }, + { + "cell_type": "markdown", + "id": "9c3e7297", + "metadata": {}, + "source": [ + "These all look like they should be re-classified. Indicates we should not go with 2b." + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "id": "67bbb703", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'12087971001',\n", + " '12101030202',\n", + " '12101030303',\n", + " '12127081102',\n", + " '26069000200',\n", + " '28047001400',\n", + " '39007000602',\n", + " '48061012305',\n", + " '55101000100',\n", + " '72037160100'}" + ] + }, + "execution_count": 48, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# check the rest of the changed tracts\n", + "set(updated_ids__tract_area) & set(updated_ids__df_id)" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "id": "b51cfa18", + "metadata": {}, + "outputs": [], + "source": [ + "### FL:\n", + "# 12087971001\n", + "# https://screeningtool.geoplatform.gov/en/#12.3/24.73756/-81.0061\n", + "# 12101030202\n", + "# https://screeningtool.geoplatform.gov/en/#13.28/28.34631/-82.71162\n", + "# 12101030303\n", + "# https://screeningtool.geoplatform.gov/en/#12.8/28.22897/-82.75138\n", + "# 12127081102\n", + "# https://screeningtool.geoplatform.gov/en/#13.54/29.24789/-81.02269\n", + "\n", + "### MI:\n", + "# 26069000200\n", + "# https://screeningtool.geoplatform.gov/en/#9.71/44.3623/-83.5055\n", + "\n", + "### MS:\n", + "# 28047001400\n", + "# https://screeningtool.geoplatform.gov/en/#11.54/30.3705/-89.0511\n", + "\n", + "### OH:\n", + "# 39007000602\n", + "# https://screeningtool.geoplatform.gov/en/#12.33/41.89305/-80.82678\n", + "\n", + "### TX:\n", + "# 48061012305\n", + "# https://screeningtool.geoplatform.gov/en/#9.76/26.2291/-97.2455\n", + "\n", + "### WI:\n", + "# 55101000100\n", + "# https://screeningtool.geoplatform.gov/en/#13.44/42.7299/-87.77935\n", + "\n", + "### PR:\n", + "# 72037160100\n", + "# https://screeningtool.geoplatform.gov/en/#11.59/18.2405/-65.6222" + ] + }, + { + "cell_type": "markdown", + "id": "3410f026", + "metadata": {}, + "source": [ + "These all look like legitimate donut holes." + ] + }, + { + "cell_type": "markdown", + "id": "327894d4", + "metadata": {}, + "source": [ + "#### Final recommendation: Use implementation 2a (filter the input df using ALAND10). This will allow us to update the status of all 15 of the above Census tracts, and will also let the function continue to return rows for the water tracts (as we currently do in prod)." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "4455847a", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/data/data-pipeline/data_pipeline/score/field_names.py b/data/data-pipeline/data_pipeline/score/field_names.py index de69d24b..f03dce3a 100644 --- a/data/data-pipeline/data_pipeline/score/field_names.py +++ b/data/data-pipeline/data_pipeline/score/field_names.py @@ -10,6 +10,9 @@ GEOID_TRACT_FIELD = "GEOID10_TRACT" STATE_FIELD = "State/Territory" COUNTY_FIELD = "County Name" +# Census per-tract land area field name +LAND_AREA_FIELD = "ALAND10" + # Definition Narwhal fields SCORE_N_COMMUNITIES = "Definition N (communities)" N_CLIMATE = "Climate Factor (Definition N)" diff --git a/data/data-pipeline/data_pipeline/score/utils.py b/data/data-pipeline/data_pipeline/score/utils.py index 5450faf6..092bc646 100644 --- a/data/data-pipeline/data_pipeline/score/utils.py +++ b/data/data-pipeline/data_pipeline/score/utils.py @@ -11,6 +11,42 @@ from data_pipeline.utils import get_module_logger logger = get_module_logger(__name__) +def in_water_range(x: int): + """Check if a tract ID is within the water area ID range + + Input must be integer representation of the 6-char census tract code + (equivalent to last 6 characters of full geo ID) + + Returns TRUE if ID is in the water area range. + Returns FALSE if ID is NOT in the water area range. + + NB: Not currently in use; artifact of attempt to filter + water areas using Census tract ID rangers. + """ + if x >= 990000 and x <= 990099: + return True + return False + + +def full_geo_id_to_water_range_bool(x: str): + """Check if a geo ID is within the water area ID range. + + First, convert full ID string to int of last six digits, + Then check if this int is in the correct range. + + Input should be the 11 character Census tract identifier, + the last 6 characters of which are the census tract code. + + Returns TRUE if ID is in the water area range. + Returns FALSE if ID is NOT in the water area range. + + NB: Not currently in use; artifact of attempt to filter + water areas using Census tract ID rangers. + """ + num_x = int(x[-6:]) + return in_water_range(num_x) + + def calculate_tract_adjacency_scores( df: pd.DataFrame, score_column: str ) -> pd.DataFrame: @@ -33,11 +69,15 @@ def calculate_tract_adjacency_scores( ORIGINAL_TRACT = "ORIGINAL_TRACT" logger.debug("Calculating tract adjacency scores") tract_data = get_tract_geojson() + df: gpd.GeoDataFrame = tract_data.merge( df, on=field_names.GEOID_TRACT_FIELD ) df = df.rename(columns={field_names.GEOID_TRACT_FIELD: ORIGINAL_TRACT}) + # remove water areas from input frame + df = df[df[field_names.LAND_AREA_FIELD] > 0] + logger.debug("Perfoming spatial join to find all adjacent tracts") adjacent_tracts: gpd.GeoDataFrame = df.sjoin( tract_data, predicate="touches" From 77e09964416bc4f4508c85c60d225c5b6f07ff62 Mon Sep 17 00:00:00 2001 From: ericiwamoto <100735505+ericiwamoto@users.noreply.github.com> Date: Tue, 3 Dec 2024 08:06:44 -0800 Subject: [PATCH 24/28] Change frontent variable references from v1.0 to v2.0 --- client/.env.development | 24 +-- client/.env.production | 24 +-- .../MapTractLayers/MapTractLayers.tsx | 4 +- .../ReleaseUpdate/ReleaseUpdate.tsx | 188 +++++++++--------- client/src/data/copy/about.tsx | 14 +- client/src/data/copy/common.tsx | 6 +- client/src/data/copy/downloads.tsx | 48 ++--- client/src/data/copy/previousVer.tsx | 4 +- .../tests/__snapshots__/about.test.tsx.snap | 6 +- .../freqAskedQuestions.test.tsx.snap | 2 +- 10 files changed, 160 insertions(+), 160 deletions(-) diff --git a/client/.env.development b/client/.env.development index 0c6c369a..a9594395 100644 --- a/client/.env.development +++ b/client/.env.development @@ -10,7 +10,7 @@ GATSBY_DATA_PIPELINE_SCORE_PATH_LOCAL=data_pipeline/data/score GATSBY_DATA_PIPELINE_TRIBAL_PATH=data-pipeline/data/tribal GATSBY_BETA_SCORE_PATH = data-versions/beta/data/score -GATSBY_1_0_SCORE_PATH = data-versions/1.0/data/score +GATSBY_2_0_SCORE_PATH = data-versions/2.0/data/score GATSBY_FILE_DL_PATH_BETA_COMMUNITIES_LIST_XLS=downloadable/beta-communities.xlsx GATSBY_FILE_DL_PATH_BETA_COMMUNITIES_LIST_CSV=downloadable/beta-communities.csv @@ -19,17 +19,17 @@ GATSBY_FILE_DL_PATH_BETA_DATA_DOC=downloadable/beta-data-documentation.zip GATSBY_FILE_DL_PATH_BETA_TRAINING_SLIDES_PPT=downloadable/technical-training-slides.pptx -GATSBY_FILE_DL_PATH_1_0_COMMUNITIES_LIST_XLS=downloadable/1.0-communities.xlsx -GATSBY_FILE_DL_PATH_1_0_COMMUNITIES_LIST_CSV=downloadable/1.0-communities.csv -GATSBY_FILE_DL_PATH_1_0_COMMUNITIES_LIST_PDF=downloadable/1.0-communities-list.pdf -GATSBY_FILE_DL_PATH_1_0_COMMUNITIES_LIST_ES_PDF=downloadable/1.0-communities-list-es.pdf -GATSBY_FILE_DL_PATH_1_0_SHAPE_FILE_ZIP=downloadable/1.0-shapefile-codebook.zip -GATSBY_FILE_DL_PATH_1_0_INSTRUCT_PDF=downloadable/CEQ-CEJST-Instructions.pdf -GATSBY_FILE_DL_PATH_1_0_INSTRUCT_ES_PDF=downloadable/CEQ-CEJST-Instructions-es.pdf -GATSBY_FILE_DL_PATH_1_0_COMP_CHART_PDF=downloadable/total-comparison-chart.pdf -GATSBY_FILE_DL_PATH_1_0_TSD_PDF=downloadable/1.0-cejst-technical-support-document.pdf -GATSBY_FILE_DL_PATH_1_0_TOOL_COMP_PDF=downloadable/1.0-climate-and-environmental-burden-tool-comparison.pdf -GATSBY_FILE_DL_PATH_1_0_M_23_09_SIGNED_PDF=downloadable/M-23-09_Signed_CEQ_CPO_es.pdf +GATSBY_FILE_DL_PATH_2_0_COMMUNITIES_LIST_XLS=downloadable/2.0-communities.xlsx +GATSBY_FILE_DL_PATH_2_0_COMMUNITIES_LIST_CSV=downloadable/2.0-communities.csv +GATSBY_FILE_DL_PATH_2_0_COMMUNITIES_LIST_PDF=downloadable/2.0-communities-list.pdf +GATSBY_FILE_DL_PATH_2_0_COMMUNITIES_LIST_ES_PDF=downloadable/2.0-communities-list-es.pdf +GATSBY_FILE_DL_PATH_2_0_SHAPE_FILE_ZIP=downloadable/2.0-shapefile-codebook.zip +GATSBY_FILE_DL_PATH_2_0_INSTRUCT_PDF=downloadable/CEQ-CEJST-Instructions.pdf +GATSBY_FILE_DL_PATH_2_0_INSTRUCT_ES_PDF=downloadable/CEQ-CEJST-Instructions-es.pdf +GATSBY_FILE_DL_PATH_2_0_COMP_CHART_PDF=downloadable/total-comparison-chart.pdf +GATSBY_FILE_DL_PATH_2_0_TSD_PDF=downloadable/2.0-cejst-technical-support-document.pdf +GATSBY_FILE_DL_PATH_2_0_TOOL_COMP_PDF=downloadable/2.0-climate-and-environmental-burden-tool-comparison.pdf +GATSBY_FILE_DL_PATH_2_0_M_23_09_SIGNED_PDF=downloadable/M-23-09_Signed_CEQ_CPO_es.pdf GATSBY_FILE_DL_PATH_TSD_ES_PDF=downloadable/cejst-technical-support-document-es.pdf GATSBY_FILE_DL_PATH_HOW_TO_COMMUNITIES_PDF=downloadable/draft-communities-list.pdf diff --git a/client/.env.production b/client/.env.production index 41ec89a8..a925c4a2 100644 --- a/client/.env.production +++ b/client/.env.production @@ -8,7 +8,7 @@ GATSBY_CDN_TILES_BASE_URL=https://dig0wsohit6js.cloudfront.net GATSBY_DATA_PIPELINE_TRIBAL_PATH=data-pipeline/data/tribal GATSBY_BETA_SCORE_PATH = data-versions/beta/data/score -GATSBY_1_0_SCORE_PATH = data-versions/1.0/data/score +GATSBY_2_0_SCORE_PATH = data-versions/2.0/data/score GATSBY_FILE_DL_PATH_BETA_COMMUNITIES_LIST_XLS=downloadable/beta-communities.xlsx GATSBY_FILE_DL_PATH_BETA_COMMUNITIES_LIST_CSV=downloadable/beta-communities.csv @@ -16,17 +16,17 @@ GATSBY_FILE_DL_PATH_BETA_SHAPE_FILE_ZIP=downloadable/beta-shapefile-codebook.zip GATSBY_FILE_DL_PATH_BETA_DATA_DOC=downloadable/beta-data-documentation.zip GATSBY_FILE_DL_PATH_BETA_TRAINING_SLIDES_PPT=downloadable/technical-training-slides.pptx -GATSBY_FILE_DL_PATH_1_0_COMMUNITIES_LIST_XLS=downloadable/1.0-communities.xlsx -GATSBY_FILE_DL_PATH_1_0_COMMUNITIES_LIST_CSV=downloadable/1.0-communities.csv -GATSBY_FILE_DL_PATH_1_0_COMMUNITIES_LIST_PDF=downloadable/1.0-communities-list.pdf -GATSBY_FILE_DL_PATH_1_0_COMMUNITIES_LIST_ES_PDF=downloadable/1.0-communities-list-es.pdf -GATSBY_FILE_DL_PATH_1_0_SHAPE_FILE_ZIP=downloadable/1.0-shapefile-codebook.zip -GATSBY_FILE_DL_PATH_1_0_INSTRUCT_PDF=downloadable/CEQ-CEJST-Instructions.pdf -GATSBY_FILE_DL_PATH_1_0_INSTRUCT_ES_PDF=downloadable/CEQ-CEJST-Instructions-es.pdf -GATSBY_FILE_DL_PATH_1_0_COMP_CHART_PDF=downloadable/total-comparison-chart.pdf -GATSBY_FILE_DL_PATH_1_0_TSD_PDF=downloadable/1.0-cejst-technical-support-document.pdf -GATSBY_FILE_DL_PATH_1_0_TOOL_COMP_PDF=downloadable/1.0-climate-and-environmental-burden-tool-comparison.pdf -GATSBY_FILE_DL_PATH_1_0_M_23_09_SIGNED_PDF=downloadable/M-23-09_Signed_CEQ_CPO_es.pdf +GATSBY_FILE_DL_PATH_2_0_COMMUNITIES_LIST_XLS=downloadable/2.0-communities.xlsx +GATSBY_FILE_DL_PATH_2_0_COMMUNITIES_LIST_CSV=downloadable/2.0-communities.csv +GATSBY_FILE_DL_PATH_2_0_COMMUNITIES_LIST_PDF=downloadable/2.0-communities-list.pdf +GATSBY_FILE_DL_PATH_2_0_COMMUNITIES_LIST_ES_PDF=downloadable/2.0-communities-list-es.pdf +GATSBY_FILE_DL_PATH_2_0_SHAPE_FILE_ZIP=downloadable/2.0-shapefile-codebook.zip +GATSBY_FILE_DL_PATH_2_0_INSTRUCT_PDF=downloadable/CEQ-CEJST-Instructions.pdf +GATSBY_FILE_DL_PATH_2_0_INSTRUCT_ES_PDF=downloadable/CEQ-CEJST-Instructions-es.pdf +GATSBY_FILE_DL_PATH_2_0_COMP_CHART_PDF=downloadable/total-comparison-chart.pdf +GATSBY_FILE_DL_PATH_2_0_TSD_PDF=downloadable/2.0-cejst-technical-support-document.pdf +GATSBY_FILE_DL_PATH_2_0_TOOL_COMP_PDF=downloadable/2.0-climate-and-environmental-burden-tool-comparison.pdf +GATSBY_FILE_DL_PATH_2_0_M_23_09_SIGNED_PDF=downloadable/M-23-09_Signed_CEQ_CPO_es.pdf GATSBY_FILE_DL_PATH_TSD_ES_PDF=downloadable/cejst-technical-support-document-es.pdf GATSBY_FILE_DL_PATH_HOW_TO_COMMUNITIES_PDF=downloadable/draft-communities-list.pdf diff --git a/client/src/components/MapTractLayers/MapTractLayers.tsx b/client/src/components/MapTractLayers/MapTractLayers.tsx index 7970d4d1..c36295e8 100644 --- a/client/src/components/MapTractLayers/MapTractLayers.tsx +++ b/client/src/components/MapTractLayers/MapTractLayers.tsx @@ -24,7 +24,7 @@ interface IMapTractLayers { export const featureURLForTilesetName = (tilesetName: string): string => { const flags = useFlags(); - const pipelineStagingBaseURL = `https://justice40-data.s3.amazonaws.com/data-pipeline-staging`; + const pipelineStagingBaseURL = process.env.GATSBY_CDN_TILES_BASE_URL +`/data-pipeline-staging`; const XYZ_SUFFIX = '{z}/{x}/{y}.pbf'; if ('stage_hash' in flags) { @@ -44,7 +44,7 @@ export const featureURLForTilesetName = (tilesetName: string): string => { const featureTilePath = process.env.DATA_SOURCE === 'local' ? process.env.GATSBY_DATA_PIPELINE_SCORE_PATH_LOCAL : - process.env.GATSBY_1_0_SCORE_PATH; + process.env.GATSBY_2_0_SCORE_PATH; return [ featureTileBaseURL, diff --git a/client/src/components/ReleaseUpdate/ReleaseUpdate.tsx b/client/src/components/ReleaseUpdate/ReleaseUpdate.tsx index 57b4f3e4..fc509e81 100644 --- a/client/src/components/ReleaseUpdate/ReleaseUpdate.tsx +++ b/client/src/components/ReleaseUpdate/ReleaseUpdate.tsx @@ -77,195 +77,195 @@ const ReleaseUpdate = ({}: IReleaseUpdateProps) => {
- {DOWNLOAD_COPY.RELEASE_1_0.UPDATE_1} + {DOWNLOAD_COPY.RELEASE_2_0.UPDATE_1}
- {DOWNLOAD_COPY.RELEASE_1_0.SECTION1} + {DOWNLOAD_COPY.RELEASE_2_0.SECTION1}
    -
  • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B1}
  • -
  • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B2}
  • +
  • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B1}
  • +
  • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B2}
    • -
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B2_1}
    • +
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B2_1}
      • -
      • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B2_1_1}
      • -
      • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B2_1_2}
      • +
      • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B2_1_1}
      • +
      • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B2_1_2}
      -
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B2_2}
    • +
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B2_2}
      • -
      • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B2_1_3}
      • -
      • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B2_2_2}
      • -
      • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B2_2_1}
      • +
      • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B2_1_3}
      • +
      • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B2_2_2}
      • +
      • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B2_2_1}
      -
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B2_3}
    • +
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B2_3}
      • -
      • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B2_3_1}
      • -
      • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B2_3_2}
      • +
      • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B2_3_1}
      • +
      • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B2_3_2}
      -
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B2_4}
    • +
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B2_4}
      • -
      • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B2_4_1}
      • +
      • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B2_4_1}
      -
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B2_5}
    • +
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B2_5}
      • -
      • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B2_5_1}
      • +
      • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B2_5_1}
    -
  • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B3}
  • -
  • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B4}
  • +
  • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B3}
  • +
  • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B4}
    • -
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B4_1}
    • -
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B4_2}
    • -
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B4_3}
    • +
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B4_1}
    • +
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B4_2}
    • +
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B4_3}
    -
  • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B5}
  • +
  • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B5}
    • -
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B5_1}
    • -
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B5_2}
    • -
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B5_3}
    • +
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B5_1}
    • +
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B5_2}
    • +
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B5_3}
    -
  • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6}
  • +
  • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6}
    • -
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1}
    • +
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1}
      • -
      • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_1}
      • - {/*
      • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2}
      • +
      • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_1}
      • + {/*
      • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2}
        • -
        • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_1}
        • +
        • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_1}
          • -
          • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_1_1}
          • +
          • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_1_1}
          -
        • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_2}
        • +
        • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_2}
          • -
          • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_2_1}
          • -
          • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_2_2}
          • -
          • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_2_3}
          • -
          • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_2_4}
          • +
          • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_2_1}
          • +
          • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_2_2}
          • +
          • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_2_3}
          • +
          • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_2_4}
        */}
      -
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_2}
    • +
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_2}
      • -
      • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_2_1}
      • - {/*
      • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2}
      • +
      • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_2_1}
      • + {/*
      • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2}
        • -
        • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_1}
        • +
        • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_1}
          • -
          • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_1_1}
          • +
          • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_1_1}
          -
        • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_2}
        • +
        • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_2}
          • -
          • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_2_1}
          • -
          • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_2_2}
          • -
          • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_2_3}
          • -
          • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_2_4}
          • +
          • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_2_1}
          • +
          • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_2_2}
          • +
          • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_2_3}
          • +
          • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_2_4}
        */}
      - {/*
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_3}
    • + {/*
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_3}
      • -
      • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2}
      • +
      • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2}
        • -
        • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_1}
        • +
        • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_1}
          • -
          • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_1_1}
          • +
          • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_1_1}
          -
        • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_2}
        • +
        • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_2}
          • -
          • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_2_2}
          • -
          • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_2_4}
          • +
          • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_2_2}
          • +
          • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_2_4}
      -
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_4}
    • +
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_4}
      • -
      • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2}
      • +
      • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2}
        • -
        • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_1}
        • +
        • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_1}
          • -
          • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_1_1}
          • +
          • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_1_1}
          -
        • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_2}
        • +
        • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_2}
          • -
          • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_2_4}
          • +
          • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_2_4}
      */} -
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_5}
    • +
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_5}
      • -
      • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_5_1}
      • -
      • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_5_2}
      • +
      • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_5_1}
      • +
      • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_5_2}
        • -
        • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_5_2_1}
        • -
        • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_5_2_2}
        • -
        • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_5_2_3}
        • -
        • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_5_2_4}
        • -
        • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_2_1}
        • -
        • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_2_2}
        • +
        • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_5_2_1}
        • +
        • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_5_2_2}
        • +
        • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_5_2_3}
        • +
        • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_5_2_4}
        • +
        • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_2_1}
        • +
        • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_2_2}
    - {/*
  • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B7}
  • + {/*
  • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B7}
    • -
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_1}
    • +
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_1}
      • -
      • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B7_1_1}
      • +
      • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B7_1_1}
      -
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B6_1_2_2}
    • +
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B6_1_2_2}
      • -
      • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B7_2_1}
      • -
      • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B7_2_2}
      • -
      • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B7_2_3}
      • +
      • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B7_2_1}
      • +
      • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B7_2_2}
      • +
      • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B7_2_3}
      -
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B7_3}
    • +
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B7_3}
      • -
      • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B7_3_1}
      • +
      • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B7_3_1}
    */} -
  • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B8}
  • +
  • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B8}
    • -
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B8_1}
    • -
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B8_2}
    • -
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B8_3}
    • -
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B8_4}
    • +
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B8_1}
    • +
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B8_2}
    • +
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B8_3}
    • +
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B8_4}
    -
  • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B9}
  • +
  • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B9}
    • -
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B9_1}
    • -
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B9_2}
    • -
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B9_3}
    • -
    • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B9_4}
    • +
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B9_1}
    • +
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B9_2}
    • +
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B9_3}
    • +
    • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B9_4}
    -
  • {DOWNLOAD_COPY.RELEASE_1_0.SECTION1_B10}
  • +
  • {DOWNLOAD_COPY.RELEASE_2_0.SECTION1_B10}
- {DOWNLOAD_COPY.RELEASE_1_0.SECTION2} + {DOWNLOAD_COPY.RELEASE_2_0.SECTION2}
    -
  • {DOWNLOAD_COPY.RELEASE_1_0.SECTION2_P1}
  • -
  • {DOWNLOAD_COPY.RELEASE_1_0.SECTION2_P2}
  • +
  • {DOWNLOAD_COPY.RELEASE_2_0.SECTION2_P1}
  • +
  • {DOWNLOAD_COPY.RELEASE_2_0.SECTION2_P2}
- {DOWNLOAD_COPY.RELEASE_1_0.FOOTER} + {DOWNLOAD_COPY.RELEASE_2_0.FOOTER}
diff --git a/client/src/data/copy/about.tsx b/client/src/data/copy/about.tsx index 4326ef4b..78a15480 100644 --- a/client/src/data/copy/about.tsx +++ b/client/src/data/copy/about.tsx @@ -12,16 +12,16 @@ export const FAQS_LINK = 'https://www.whitehouse.gov/wp-content/uploads/2022/02/ export const FED_RECOGNIZED_INDIAN_ENTITIES = `https://www.federalregister.gov/documents/2022/01/28/2022-01789/indian-entities-recognized-by-and-eligible-to-receive-services-from-the-united-states-bureau-of`; export const EJSCREEN = 'https://www.epa.gov/ejscreen/how-does-epa-use-ejscreen'; -export const CEJST_INSTRUCT = `https://static-data-screeningtool.geoplatform.gov/data-versions/1.0/data/score/downloadable/CEQ-CEJST-Instructions.pdf`; -export const CEJST_INSTRUCT_ES = `https://static-data-screeningtool.geoplatform.gov/data-versions/1.0/data/score/downloadable/CEQ-CEJST-Instructions-es.pdf`; +export const CEJST_INSTRUCT = process.env.GATSBY_CDN_TILES_BASE_URL +`/data-versions/2.0/data/score/downloadable/CEQ-CEJST-Instructions.pdf`; +export const CEJST_INSTRUCT_ES = process.env.GATSBY_CDN_TILES_BASE_URL +`/data-versions/2.0/data/score/downloadable/CEQ-CEJST-Instructions-es.pdf`; export const CEJST_MEMO = `https://www.whitehouse.gov/wp-content/uploads/2023/01/M-23-09_Signed_CEQ_CPO.pdf`; -export const CEJST_MEMO_ES = `https://static-data-screeningtool.geoplatform.gov/data-versions/1.0/data/score/downloadable/M-23-09_Signed_CEQ_CPO_es.pdf`; +export const CEJST_MEMO_ES = process.env.GATSBY_CDN_TILES_BASE_URL +`/data-versions/2.0/data/score/downloadable/M-23-09_Signed_CEQ_CPO_es.pdf`; -export const USE_MAP_TUTORIAL_LINK = `https://static-data-screeningtool.geoplatform.gov/data-versions/1.0/data/score/downloadable/Using-the-CEJST-Tutorial.pdf`; -export const USE_MAP_TUTORIAL_LINK_ES = `https://static-data-screeningtool.geoplatform.gov/data-versions/1.0/data/score/downloadable/Using-the-CEJST-Tutorial-es.pdf`; -export const USE_DATA_TUTORIAL_LINK = `https://static-data-screeningtool.geoplatform.gov/data-versions/1.0/data/score/downloadable/Using-the-CEJST-Spreadsheet-Tutorial.pdf`; -export const USE_DATA_TUTORIAL_LINK_ES = `https://static-data-screeningtool.geoplatform.gov/data-versions/1.0/data/score/downloadable/Using-the-CEJST-Spreadsheet-Tutorial-es.pdf`; +export const USE_MAP_TUTORIAL_LINK = process.env.GATSBY_CDN_TILES_BASE_URL +`/data-versions/2.0/data/score/downloadable/Using-the-CEJST-Tutorial.pdf`; +export const USE_MAP_TUTORIAL_LINK_ES = process.env.GATSBY_CDN_TILES_BASE_URL +`/data-versions/2.0/data/score/downloadable/Using-the-CEJST-Tutorial-es.pdf`; +export const USE_DATA_TUTORIAL_LINK = process.env.GATSBY_CDN_TILES_BASE_URL +`/data-versions/2.0/data/score/downloadable/Using-the-CEJST-Spreadsheet-Tutorial.pdf`; +export const USE_DATA_TUTORIAL_LINK_ES = process.env.GATSBY_CDN_TILES_BASE_URL +`/data-versions/2.0/data/score/downloadable/Using-the-CEJST-Spreadsheet-Tutorial-es.pdf`; export const GITHUB_LINK = 'https://github.com/usds/justice40-tool'; export const GITHUB_LINK_ES = 'https://github.com/usds/justice40-tool/blob/main/README-es.md'; diff --git a/client/src/data/copy/common.tsx b/client/src/data/copy/common.tsx index 1433615f..f9248517 100644 --- a/client/src/data/copy/common.tsx +++ b/client/src/data/copy/common.tsx @@ -28,7 +28,7 @@ export const linkFn = (to:string | IDefineMessage, isInternal:boolean, isOpenNew export const FEEDBACK_EMAIL = 'Screeningtool-Support@omb.eop.gov'; -export const METH_1_0_RELEASE_DATE = new Date(2022, 10, 22, 11, 59, 59); // Nov 22 2022 +export const METH_2_0_RELEASE_DATE = new Date(2022, 10, 22, 11, 59, 59); // Nov 22 2022 export const METH_BETA_RELEASE_DATE = new Date(2022, 1, 18, 11, 59, 59); // Feb 18 2022 @@ -40,7 +40,7 @@ export const BETA_BANNER_CONTENT = { return [ process.env.GATSBY_CDN_TILES_BASE_URL, - (isBeta ? process.env.GATSBY_BETA_SCORE_PATH : process.env.GATSBY_1_0_SCORE_PATH), + (isBeta ? process.env.GATSBY_BETA_SCORE_PATH : process.env.GATSBY_2_0_SCORE_PATH), filePath, ].join('/'); }; @@ -41,58 +41,58 @@ export const DOWNLOAD_FILES = { NARWAL: { COMMUNITIES_LIST_XLS: { SIZE: 35.6, // MB - URL: getDownloadFileUrl(process.env.GATSBY_FILE_DL_PATH_1_0_COMMUNITIES_LIST_XLS, false), - LAST_UPDATED: COMMON_COPY.METH_1_0_RELEASE_DATE, + URL: getDownloadFileUrl(process.env.GATSBY_FILE_DL_PATH_2_0_COMMUNITIES_LIST_XLS, false), + LAST_UPDATED: COMMON_COPY.METH_2_0_RELEASE_DATE, }, COMMUNITIES_LIST_CSV: { SIZE: 42, // MB - URL: getDownloadFileUrl(process.env.GATSBY_FILE_DL_PATH_1_0_COMMUNITIES_LIST_CSV, false), - LAST_UPDATED: COMMON_COPY.METH_1_0_RELEASE_DATE, + URL: getDownloadFileUrl(process.env.GATSBY_FILE_DL_PATH_2_0_COMMUNITIES_LIST_CSV, false), + LAST_UPDATED: COMMON_COPY.METH_2_0_RELEASE_DATE, }, SHAPE_FILE: { SIZE: 356.8, // MB - URL: getDownloadFileUrl(process.env.GATSBY_FILE_DL_PATH_1_0_SHAPE_FILE_ZIP, false), - LAST_UPDATED: COMMON_COPY.METH_1_0_RELEASE_DATE, + URL: getDownloadFileUrl(process.env.GATSBY_FILE_DL_PATH_2_0_SHAPE_FILE_ZIP, false), + LAST_UPDATED: COMMON_COPY.METH_2_0_RELEASE_DATE, }, TSD: { SIZE: 4.4, // MB - URL: getDownloadFileUrl(process.env.GATSBY_FILE_DL_PATH_1_0_TSD_PDF, false), - LAST_UPDATED: COMMON_COPY.METH_1_0_RELEASE_DATE, + URL: getDownloadFileUrl(process.env.GATSBY_FILE_DL_PATH_2_0_TSD_PDF, false), + LAST_UPDATED: COMMON_COPY.METH_2_0_RELEASE_DATE, }, TSD_ES: { SIZE: 4.8, // MB URL: getDownloadFileUrl(process.env.GATSBY_FILE_DL_PATH_TSD_ES_PDF, false), - LAST_UPDATED: COMMON_COPY.METH_1_0_RELEASE_DATE, + LAST_UPDATED: COMMON_COPY.METH_2_0_RELEASE_DATE, }, HOW_TO_COMMUNITIES: { SIZE: 687.9, // KB - URL: getDownloadFileUrl(process.env.GATSBY_FILE_DL_PATH_1_0_COMMUNITIES_LIST_PDF, false), - LAST_UPDATED: COMMON_COPY.METH_1_0_RELEASE_DATE, + URL: getDownloadFileUrl(process.env.GATSBY_FILE_DL_PATH_2_0_COMMUNITIES_LIST_PDF, false), + LAST_UPDATED: COMMON_COPY.METH_2_0_RELEASE_DATE, }, HOW_TO_COMMUNITIES_ES: { SIZE: 761.8, // KB - URL: getDownloadFileUrl(process.env.GATSBY_FILE_DL_PATH_1_0_COMMUNITIES_LIST_ES_PDF, false), - LAST_UPDATED: COMMON_COPY.METH_1_0_RELEASE_DATE, + URL: getDownloadFileUrl(process.env.GATSBY_FILE_DL_PATH_2_0_COMMUNITIES_LIST_ES_PDF, false), + LAST_UPDATED: COMMON_COPY.METH_2_0_RELEASE_DATE, }, INSTRUCTIONS: { SIZE: 228.4, // KB // Todo: Update when actual file is uploaded - URL: getDownloadFileUrl(process.env.GATSBY_FILE_DL_PATH_1_0_INSTRUCT_PDF, false), - LAST_UPDATED: COMMON_COPY.METH_1_0_RELEASE_DATE, + URL: getDownloadFileUrl(process.env.GATSBY_FILE_DL_PATH_2_0_INSTRUCT_PDF, false), + LAST_UPDATED: COMMON_COPY.METH_2_0_RELEASE_DATE, }, INSTRUCTIONS_ES: { SIZE: 173.6, // KB // Todo: Update when actual file is uploaded - URL: getDownloadFileUrl(process.env.GATSBY_FILE_DL_PATH_1_0_INSTRUCT_ES_PDF, false), - LAST_UPDATED: COMMON_COPY.METH_1_0_RELEASE_DATE, + URL: getDownloadFileUrl(process.env.GATSBY_FILE_DL_PATH_2_0_INSTRUCT_ES_PDF, false), + LAST_UPDATED: COMMON_COPY.METH_2_0_RELEASE_DATE, }, COMP_CHART: { SIZE: 33.1, // KB - URL: getDownloadFileUrl(process.env.GATSBY_FILE_DL_PATH_1_0_TOOL_COMP_PDF, false), - LAST_UPDATED: COMMON_COPY.METH_1_0_RELEASE_DATE, + URL: getDownloadFileUrl(process.env.GATSBY_FILE_DL_PATH_2_0_TOOL_COMP_PDF, false), + LAST_UPDATED: COMMON_COPY.METH_2_0_RELEASE_DATE, }, M_23_09_ES: { SIZE: 120.5, // KB - URL: getDownloadFileUrl(process.env.GATSBY_FILE_DL_PATH_1_0_M_23_09_SIGNED_PDF, false), - LAST_UPDATED: COMMON_COPY.METH_1_0_RELEASE_DATE, + URL: getDownloadFileUrl(process.env.GATSBY_FILE_DL_PATH_2_0_M_23_09_SIGNED_PDF, false), + LAST_UPDATED: COMMON_COPY.METH_2_0_RELEASE_DATE, }, }, BETA: { @@ -138,7 +138,7 @@ export const getDownloadIconAltTag = () => defineMessages({ }, }); -export const RELEASE_1_0 = { +export const RELEASE_2_0 = { UPDATE_1: , releaseDate: @@ -614,7 +614,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis @@ -681,7 +681,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis diff --git a/client/src/pages/tests/__snapshots__/freqAskedQuestions.test.tsx.snap b/client/src/pages/tests/__snapshots__/freqAskedQuestions.test.tsx.snap index a337eaa5..d3d90ca8 100644 --- a/client/src/pages/tests/__snapshots__/freqAskedQuestions.test.tsx.snap +++ b/client/src/pages/tests/__snapshots__/freqAskedQuestions.test.tsx.snap @@ -490,7 +490,7 @@ exports[`rendering of the DatasetContainer checks if various text fields are vis From e0bb33211af189e7f9ac0fb5b4ec55beb092f8e5 Mon Sep 17 00:00:00 2001 From: Carlos Felix <63804190+carlosfelix2@users.noreply.github.com> Date: Wed, 4 Dec 2024 10:00:14 -0500 Subject: [PATCH 25/28] Added grandfathering of v1.0 DACS --- .../data-pipeline/data_pipeline/comparator.py | 39 +- .../content/static_data/README.md | 5 + .../static_data/v1.0-score-results-usa.csv | 74135 ++++++++++++++++ .../data_pipeline/etl/score/constants.py | 2 + .../data_pipeline/etl/score/etl_score.py | 19 + .../data_pipeline/etl/score/tests/conftest.py | 10 + .../etl/score/tests/snapshots/README.md | 23 + .../snapshots/create_tile_data_expected.pkl | Bin 0 -> 6657 bytes .../create_tile_score_data_input.pkl | Bin 0 -> 28696 bytes .../etl/score/tests/test_score_post.py | 6 +- .../data_pipeline/score/field_names.py | 5 + .../data_pipeline/score/score_narwhal.py | 15 + .../tests/score/test_score_narwhal_methods.py | 27 + 13 files changed, 74271 insertions(+), 15 deletions(-) create mode 100644 data/data-pipeline/data_pipeline/content/static_data/README.md create mode 100644 data/data-pipeline/data_pipeline/content/static_data/v1.0-score-results-usa.csv create mode 100644 data/data-pipeline/data_pipeline/etl/score/tests/snapshots/README.md create mode 100644 data/data-pipeline/data_pipeline/etl/score/tests/snapshots/create_tile_data_expected.pkl create mode 100644 data/data-pipeline/data_pipeline/etl/score/tests/snapshots/create_tile_score_data_input.pkl diff --git a/data/data-pipeline/data_pipeline/comparator.py b/data/data-pipeline/data_pipeline/comparator.py index eed14b4f..860be7bb 100644 --- a/data/data-pipeline/data_pipeline/comparator.py +++ b/data/data-pipeline/data_pipeline/comparator.py @@ -6,6 +6,7 @@ from pathlib import Path from data_pipeline.etl.score import constants from data_pipeline.utils import get_module_logger, download_file_from_url from data_pipeline.application import log_title, log_info, log_goodbye +from data_pipeline.score import field_names logger = get_module_logger(__name__) @@ -176,6 +177,7 @@ def compare_score( production_row_count = len(production_score_df.index) local_row_count = len(local_score_df.index) + # Tract comparison _add_text( f"* The production score has {production_row_count:,} census tracts, and the freshly calculated score has {local_row_count:,}." ) @@ -191,8 +193,11 @@ def compare_score( "\n" ) - production_total_population = production_score_df["Total population"].sum() - local_total_population = local_score_df["Total population"].sum() + # Population comparison + production_total_population = production_score_df[ + field_names.TOTAL_POP_FIELD + ].sum() + local_total_population = local_score_df[field_names.TOTAL_POP_FIELD].sum() _add_text( f"* The total population in all census tracts in the production score is {production_total_population:,}. " @@ -204,12 +209,9 @@ def compare_score( else f"The difference is {abs(production_total_population - local_total_population):,}.\n" ) - production_disadvantaged_tracts_df = production_score_df.query( - "`Definition N community, including adjacency index tracts` == True" - ) - local_disadvantaged_tracts_df = local_score_df.query( - "`Definition N community, including adjacency index tracts` == True" - ) + dacs_query = f"`{field_names.FINAL_SCORE_N_BOOLEAN}` == True" + production_disadvantaged_tracts_df = production_score_df.query(dacs_query) + local_disadvantaged_tracts_df = local_score_df.query(dacs_query) production_disadvantaged_tracts_set = set( production_disadvantaged_tracts_df.index.array @@ -219,14 +221,15 @@ def compare_score( ) production_pct_of_population_represented = ( - production_disadvantaged_tracts_df["Total population"].sum() + production_disadvantaged_tracts_df[field_names.TOTAL_POP_FIELD].sum() / production_total_population ) local_pct_of_population_represented = ( - local_disadvantaged_tracts_df["Total population"].sum() + local_disadvantaged_tracts_df[field_names.TOTAL_POP_FIELD].sum() / local_total_population ) + # DACS comparison _add_text( f"* There are {len(production_disadvantaged_tracts_set):,} disadvantaged tracts in the production score representing" f" {production_pct_of_population_represented:.1%} of the total population, and {len(local_disadvantaged_tracts_set):,}" @@ -252,15 +255,27 @@ def compare_score( f" generated score (i.e. disadvantaged tracts that were removed by the new score). " ) if len(removed_tracts) > 0: - _add_text(f"Those tracts are:\n{removed_tracts}\n") + _add_text(f"Those tracts are:\n{removed_tracts}") _add_text( - f"* There are {len(added_tracts):,} tract(s) marked as disadvantaged in the locally generated score that are not disadvantaged in the" + f"\n* There are {len(added_tracts):,} tract(s) marked as disadvantaged in the locally generated score that are not disadvantaged in the" f" production score (i.e. disadvantaged tracts that were added by the new score). " ) if len(added_tracts) > 0: _add_text(f"Those tracts are:\n{added_tracts}\n") + # Grandfathered tracts from v1.0 + grandfathered_tracts = local_score_df.loc[ + local_score_df[field_names.GRANDFATHERED_N_COMMUNITIES_V1_0] + ].index + if len(grandfathered_tracts) > 0: + _add_text( + f"* This includes {len(grandfathered_tracts)} grandfathered tract(s) from v1.0 scoring. They are:\n" + f"{grandfathered_tracts.to_list()}\n" + ) + else: + _add_text("* There are NO grandfathered tracts from v1.0 scoring.\n") + ################ # Create a delta ################ diff --git a/data/data-pipeline/data_pipeline/content/static_data/README.md b/data/data-pipeline/data_pipeline/content/static_data/README.md new file mode 100644 index 00000000..840e2f78 --- /dev/null +++ b/data/data-pipeline/data_pipeline/content/static_data/README.md @@ -0,0 +1,5 @@ +Static data is used in the computation of the score as stated. + +# v1.0-score-results-usa.csv +This is the v1.0 score results used for grandfathering computations. It is a +stripped down version of the v1.0 score to include only the columns needed. \ No newline at end of file diff --git a/data/data-pipeline/data_pipeline/content/static_data/v1.0-score-results-usa.csv b/data/data-pipeline/data_pipeline/content/static_data/v1.0-score-results-usa.csv new file mode 100644 index 00000000..79b1f26b --- /dev/null +++ b/data/data-pipeline/data_pipeline/content/static_data/v1.0-score-results-usa.csv @@ -0,0 +1,74135 @@ +GEOID10_TRACT,Total population,Is low income (imputed and adjusted)?,"Definition N community, including adjacency index tracts" +01001020100,1993.0,False,False +01001020200,1959.0,True,False +01001020300,3507.0,False,False +01001020400,3878.0,False,False +01001020500,10596.0,False,False +01001020600,3668.0,True,False +01001020700,3586.0,True,False +01001020801,3196.0,False,False +01001020802,11142.0,False,False +01001020900,6143.0,False,False +01001021000,2527.0,True,False +01001021100,3185.0,True,True +01003010100,3433.0,True,True +01003010200,3158.0,True,True +01003010300,8284.0,False,False +01003010400,5181.0,False,False +01003010500,5463.0,False,False +01003010600,3730.0,True,True +01003010701,8756.0,False,False +01003010703,19962.0,False,False +01003010704,6456.0,True,False +01003010705,9344.0,False,False +01003010800,6856.0,False,False +01003010903,6235.0,False,False +01003010904,6605.0,False,False +01003010905,8316.0,False,False +01003010906,5188.0,True,False +01003011000,4644.0,True,True +01003011101,11802.0,False,False +01003011102,4903.0,False,False +01003011201,5091.0,False,False +01003011202,5997.0,False,True +01003011300,5269.0,False,False +01003011401,11757.0,False,False +01003011403,11169.0,False,False +01003011405,4624.0,False,False +01003011406,3140.0,False,False +01003011407,5005.0,False,False +01003011408,558.0,False,False +01003011501,6931.0,False,False +01003011502,12957.0,True,True +01003011601,5873.0,False,False +01003011602,6143.0,False,False +01003990000,0.0,False,False +01005950100,3091.0,True,True +01005950200,3949.0,True,True +01005950300,1598.0,True,True +01005950400,3817.0,True,True +01005950500,3285.0,True,True +01005950600,1960.0,True,True +01005950700,1521.0,True,True +01005950800,2259.0,True,True +01005950900,3881.0,True,True +01007010001,2242.0,True,True +01007010002,5694.0,True,True +01007010003,4922.0,False,False +01007010004,9635.0,True,True +01009050101,7594.0,False,False +01009050102,7108.0,True,True +01009050200,4249.0,True,True +01009050300,4972.0,True,True +01009050400,3868.0,False,True +01009050500,7840.0,True,True +01009050601,4268.0,False,False +01009050602,9148.0,False,False +01009050700,8634.0,True,True +01011952100,1579.0,True,True +01011952200,5814.0,True,True +01011952500,2855.0,True,True +01013952700,1930.0,True,True +01013952800,1278.0,False,True +01013952900,2336.0,True,True +01013953000,1565.0,True,True +01013953100,2939.0,True,True +01013953200,3610.0,True,True +01013953300,1861.0,False,True +01013953400,2765.0,True,True +01013953500,1544.0,True,True +01015000200,2324.0,True,True +01015000300,2377.0,True,True +01015000400,3143.0,True,True +01015000500,1031.0,True,True +01015000600,1893.0,True,True +01015000700,2918.0,True,True +01015000800,981.0,True,True +01015000900,3617.0,True,True +01015001000,5992.0,False,False +01015001100,7389.0,False,False +01015001201,2830.0,True,True +01015001202,4260.0,True,True +01015001300,2009.0,True,True +01015001400,3105.0,True,True +01015001500,5076.0,True,True +01015001600,3621.0,True,True +01015001700,6858.0,True,True +01015001800,7051.0,False,True +01015002000,7331.0,False,False +01015002101,3327.0,False,True +01015002102,3350.0,False,False +01015002103,6784.0,True,True +01015002200,3391.0,True,True +01015002300,3454.0,True,True +01015002400,4636.0,False,False +01015002501,6719.0,False,False +01015002502,4557.0,False,False +01015002600,4594.0,False,False +01015981901,0.0,False,False +01015981902,0.0,False,False +01015981903,0.0,False,False +01017953800,3767.0,True,True +01017953900,3128.0,True,True +01017954000,5946.0,True,True +01017954200,3445.0,True,True +01017954300,5311.0,False,False +01017954400,796.0,True,True +01017954500,3883.0,True,True +01017954600,3163.0,True,True +01017954700,4221.0,False,False +01019955701,3236.0,True,True +01019955702,3549.0,True,True +01019955800,5571.0,True,True +01019955900,3912.0,True,True +01019956000,4168.0,False,False +01019956100,5467.0,False,False +01021060101,4623.0,True,True +01021060102,6884.0,True,True +01021060200,2756.0,False,False +01021060300,3622.0,True,True +01021060401,5157.0,True,True +01021060402,9362.0,True,True +01021060500,3302.0,True,True +01021060600,3545.0,True,False +01021060700,4804.0,False,False +01023956700,3395.0,True,True +01023956800,4043.0,True,True +01023956900,3365.0,True,True +01023957000,2122.0,True,True +01025957500,1384.0,True,True +01025957601,1008.0,True,True +01025957602,5064.0,True,True +01025957700,1420.0,True,True +01025957800,4785.0,True,True +01025957901,3172.0,True,True +01025957902,4073.0,False,True +01025958001,1781.0,True,True +01025958002,1441.0,True,True +01027958900,5457.0,True,True +01027959000,2908.0,True,True +01027959100,2723.0,True,True +01027959200,2249.0,True,True +01029959500,2985.0,True,True +01029959600,3931.0,True,True +01029959700,3611.0,False,False +01029959800,4389.0,False,False +01031010100,2125.0,True,True +01031010200,1740.0,False,False +01031010300,4742.0,False,False +01031010400,1710.0,True,True +01031010500,4777.0,True,True +01031010600,1560.0,True,True +01031010700,2264.0,False,False +01031010800,2902.0,False,False +01031010900,2307.0,True,True +01031011000,3374.0,False,False +01031011100,2104.0,True,False +01031011201,9072.0,False,False +01031011202,8896.0,False,False +01031011300,4089.0,True,True +01033020100,3175.0,True,True +01033020200,1895.0,True,True +01033020300,2081.0,True,True +01033020400,1822.0,False,False +01033020500,5568.0,False,False +01033020600,4421.0,True,False +01033020701,6546.0,False,False +01033020703,4941.0,False,False +01033020704,4408.0,False,False +01033020801,4269.0,False,False +01033020802,3811.0,True,False +01033020901,4463.0,True,True +01033020902,3567.0,True,True +01033021000,3804.0,True,True +01035960200,2070.0,True,True +01035960300,1807.0,True,True +01035960400,3362.0,True,True +01035960500,1644.0,True,True +01035960600,3511.0,True,True +01037961000,3587.0,True,True +01037961100,3459.0,False,False +01037961200,3711.0,True,True +01039961600,4324.0,False,False +01039961700,3744.0,True,True +01039961800,2957.0,True,True +01039961900,2103.0,False,True +01039962000,3815.0,True,True +01039962100,2009.0,True,True +01039962300,3378.0,True,True +01039962400,3085.0,False,False +01039962500,1392.0,True,True +01039962600,1579.0,True,True +01039962700,1717.0,True,True +01039962800,1821.0,True,True +01039962900,1954.0,False,False +01039963000,3322.0,True,True +01041963400,1979.0,True,True +01041963500,1910.0,True,True +01041963600,2999.0,True,True +01041963700,3892.0,False,False +01041963800,1453.0,True,True +01041963900,1611.0,True,True +01043964100,6624.0,True,True +01043964200,7055.0,False,False +01043964300,4924.0,True,True +01043964400,4218.0,True,False +01043964500,4400.0,True,False +01043964600,3773.0,False,False +01043964700,5553.0,True,False +01043964800,4151.0,True,False +01043964900,6595.0,False,False +01043965000,6499.0,False,False +01043965100,3777.0,False,False +01043965200,2618.0,True,True +01043965300,4589.0,True,True +01043965401,3280.0,True,True +01043965402,4282.0,True,True +01043965500,5315.0,True,True +01043965600,2397.0,True,True +01043965700,2803.0,True,True +01045020000,5311.0,False,False +01045020100,3335.0,True,True +01045020200,2120.0,False,False +01045020300,2266.0,True,False +01045020400,2599.0,False,False +01045020500,1831.0,True,True +01045020700,3176.0,True,True +01045020801,3231.0,True,True +01045020802,4237.0,False,False +01045021101,4768.0,False,False +01045021102,4087.0,True,True +01045021200,2642.0,True,True +01045021300,4433.0,False,False +01045021400,5241.0,True,True +01047956100,6406.0,False,False +01047956201,2324.0,True,True +01047956202,1987.0,False,False +01047956300,3817.0,True,True +01047956400,3020.0,True,True +01047956500,3083.0,True,True +01047956600,2389.0,True,True +01047956701,2008.0,False,False +01047956702,1595.0,True,True +01047956800,2326.0,True,True +01047956900,2567.0,True,True +01047957000,1183.0,True,True +01047957100,1412.0,True,True +01047957200,1278.0,True,True +01047957300,3754.0,True,True +01049960100,5794.0,False,False +01049960200,3172.0,True,True +01049960300,7454.0,True,True +01049960400,6047.0,True,False +01049960500,5782.0,True,True +01049960600,5839.0,True,True +01049960700,8082.0,True,True +01049960800,5064.0,True,True +01049960900,3913.0,True,True +01049961000,4425.0,True,True +01049961100,3306.0,True,True +01049961200,2302.0,False,False +01049961300,6002.0,True,True +01049961400,4128.0,True,True +01051030100,9137.0,False,False +01051030200,4710.0,False,False +01051030300,2583.0,False,False +01051030400,7073.0,False,False +01051030500,4764.0,False,False +01051030600,6834.0,True,True +01051030701,7860.0,False,False +01051030702,3774.0,False,False +01051030800,6799.0,False,False +01051030901,6379.0,False,False +01051030902,3815.0,False,False +01051031000,7260.0,True,False +01051031100,3910.0,False,False +01051031200,1604.0,True,True +01051031300,4642.0,False,False +01053969800,5567.0,True,True +01053969900,3831.0,True,True +01053970100,4703.0,False,False +01053970200,1677.0,True,True +01053970300,3558.0,True,True +01053970400,5625.0,True,True +01053970500,4354.0,True,True +01053970600,3968.0,True,True +01053970700,3774.0,True,True +01055000200,3508.0,True,True +01055000300,2838.0,True,True +01055000400,3698.0,False,False +01055000500,1762.0,True,True +01055000600,2172.0,True,True +01055000700,1136.0,True,True +01055000800,1209.0,True,True +01055000900,2213.0,True,True +01055001000,1421.0,True,True +01055001100,5339.0,False,False +01055001200,2812.0,True,True +01055001300,2927.0,True,True +01055001600,3242.0,True,True +01055001700,1682.0,True,True +01055010100,2198.0,False,False +01055010200,5027.0,True,True +01055010300,2560.0,True,True +01055010401,4100.0,True,True +01055010402,4835.0,False,False +01055010501,8468.0,False,False +01055010502,5167.0,False,False +01055010601,5289.0,False,False +01055010602,3596.0,True,True +01055010700,3459.0,True,True +01055010800,2891.0,True,True +01055010900,1693.0,True,True +01055011001,5186.0,True,True +01055011002,4594.0,True,True +01055011100,5135.0,True,True +01055011200,2591.0,True,True +01057020000,1435.0,True,True +01057020100,3177.0,True,True +01057020200,4243.0,False,True +01057020300,3903.0,True,True +01057020400,3736.0,True,True +01059972900,4005.0,True,True +01059973000,4773.0,True,True +01059973100,2394.0,False,True +01059973200,3912.0,True,True +01059973300,3145.0,True,True +01059973400,2650.0,True,True +01059973500,2546.0,True,True +01059973600,1441.0,True,True +01059973700,6600.0,True,True +01061050100,4448.0,True,True +01061050200,2522.0,False,False +01061050300,5617.0,True,True +01061050400,5449.0,True,True +01061050500,4502.0,False,False +01061050600,3879.0,True,True +01063060000,1747.0,True,True +01063060100,4012.0,True,True +01063060200,2565.0,True,True +01065040000,3514.0,True,True +01065040100,1298.0,True,True +01065040200,1178.0,True,True +01065040300,2177.0,False,False +01065040400,5116.0,True,True +01065040500,1526.0,True,True +01067030100,1445.0,True,True +01067030200,2864.0,True,True +01067030300,2784.0,True,True +01067030400,1814.0,True,True +01067030500,6530.0,False,False +01067030600,1696.0,True,True +01069040100,5753.0,False,False +01069040201,9885.0,False,False +01069040202,8780.0,False,False +01069040301,3816.0,True,True +01069040302,3967.0,True,True +01069040400,2482.0,False,False +01069040500,3676.0,False,False +01069040600,1945.0,True,True +01069040700,2788.0,True,True +01069040800,8833.0,True,True +01069040900,4977.0,False,False +01069041000,5186.0,True,True +01069041100,3589.0,True,False +01069041200,1995.0,True,True +01069041400,3454.0,True,True +01069041500,3865.0,True,True +01069041600,5273.0,True,True +01069041700,1254.0,True,True +01069041800,1904.0,True,True +01069041900,7969.0,True,True +01069042000,5591.0,True,True +01069042100,7720.0,True,True +01071950100,6326.0,True,True +01071950200,3056.0,True,True +01071950300,5877.0,True,True +01071950400,1986.0,True,True +01071950500,3316.0,True,True +01071950600,6978.0,True,True +01071950700,4416.0,True,True +01071950800,3603.0,True,True +01071950900,5370.0,False,True +01071951000,4262.0,True,True +01071951100,6662.0,True,True +01073000100,3127.0,True,True +01073000300,1819.0,True,True +01073000400,3347.0,True,True +01073000500,3022.0,True,True +01073000700,2542.0,True,True +01073000800,3217.0,True,True +01073001100,4781.0,False,False +01073001200,2464.0,True,True +01073001400,1946.0,True,True +01073001500,2555.0,True,True +01073001600,3011.0,True,True +01073001902,1878.0,True,True +01073002000,4080.0,True,True +01073002100,2677.0,True,True +01073002200,2601.0,True,True +01073002303,3086.0,True,True +01073002305,3361.0,False,False +01073002306,3864.0,False,False +01073002400,3886.0,True,True +01073002700,3630.0,True,True +01073002900,1968.0,True,True +01073003001,3481.0,False,True +01073003002,2439.0,True,True +01073003100,3469.0,True,True +01073003200,1187.0,True,True +01073003300,1172.0,True,True +01073003400,2168.0,True,True +01073003500,2425.0,True,True +01073003600,4396.0,True,True +01073003700,4502.0,True,True +01073003802,5291.0,True,True +01073003803,4002.0,True,True +01073003900,1271.0,True,True +01073004000,2533.0,True,True +01073004200,1738.0,True,True +01073004500,5177.0,False,False +01073004701,3707.0,False,False +01073004702,3658.0,False,False +01073004800,2061.0,False,False +01073004901,1142.0,False,False +01073004902,3591.0,False,False +01073005000,3541.0,False,False +01073005101,1467.0,True,True +01073005103,2689.0,True,True +01073005104,3132.0,True,True +01073005200,3915.0,True,True +01073005302,4009.0,False,False +01073005500,1746.0,True,True +01073005600,4787.0,False,False +01073005701,2369.0,True,True +01073005702,2473.0,True,True +01073005800,3925.0,True,False +01073005903,6118.0,True,True +01073005905,6287.0,True,True +01073005907,2409.0,False,False +01073005908,3702.0,True,True +01073005909,2691.0,False,False +01073005910,5838.0,False,False +01073010001,4940.0,True,True +01073010002,4406.0,True,True +01073010100,1349.0,True,True +01073010200,2813.0,True,True +01073010301,2856.0,True,True +01073010302,3819.0,True,True +01073010401,3842.0,True,True +01073010402,2478.0,False,False +01073010500,1218.0,True,True +01073010602,6026.0,False,True +01073010603,2242.0,True,True +01073010701,1508.0,False,False +01073010702,5039.0,False,False +01073010703,2465.0,False,False +01073010704,5009.0,False,False +01073010705,3782.0,False,False +01073010706,5047.0,False,False +01073010801,7051.0,False,False +01073010802,3058.0,False,False +01073010803,6282.0,False,False +01073010804,3014.0,False,False +01073010805,7215.0,False,False +01073010900,4734.0,True,True +01073011001,5923.0,False,False +01073011002,1806.0,True,True +01073011104,7821.0,False,False +01073011107,11749.0,False,False +01073011108,4853.0,False,False +01073011109,4243.0,False,False +01073011110,5428.0,False,False +01073011111,8926.0,False,False +01073011205,2142.0,False,False +01073011206,5406.0,False,False +01073011207,5475.0,True,False +01073011208,4106.0,False,False +01073011209,3563.0,True,True +01073011210,3898.0,True,True +01073011301,3468.0,False,False +01073011302,6587.0,False,False +01073011400,6934.0,False,False +01073011500,5916.0,False,False +01073011600,3656.0,False,False +01073011703,9548.0,False,False +01073011704,4060.0,False,False +01073011705,7626.0,False,False +01073011706,2366.0,True,True +01073011802,7356.0,True,True +01073011803,4482.0,True,True +01073011804,2868.0,True,False +01073011901,2556.0,True,True +01073011904,2326.0,True,True +01073012001,4039.0,False,True +01073012002,7777.0,False,False +01073012103,4147.0,False,True +01073012104,2446.0,False,False +01073012200,3603.0,False,False +01073012302,4026.0,False,True +01073012304,2456.0,False,False +01073012305,7434.0,False,False +01073012401,3795.0,False,False +01073012402,2597.0,True,True +01073012403,3211.0,False,False +01073012500,3908.0,True,True +01073012602,2894.0,True,True +01073012701,3727.0,True,True +01073012703,6255.0,False,False +01073012704,2466.0,False,False +01073012802,2505.0,False,False +01073012803,4471.0,False,False +01073012905,4212.0,False,False +01073012906,6368.0,False,False +01073012907,4811.0,False,False +01073012908,5516.0,True,True +01073012910,3934.0,False,False +01073012911,5506.0,False,False +01073012912,4663.0,True,True +01073012913,4398.0,False,False +01073012914,1954.0,False,False +01073012915,6200.0,False,False +01073013002,1759.0,True,True +01073013100,3837.0,True,True +01073013200,2238.0,True,True +01073013300,3173.0,True,True +01073013400,4696.0,False,True +01073013601,3459.0,True,True +01073013801,2096.0,True,True +01073013901,1525.0,True,True +01073013902,2205.0,False,False +01073014001,3681.0,False,False +01073014002,3681.0,False,False +01073014102,4557.0,False,False +01073014104,3237.0,False,False +01073014105,4769.0,False,False +01073014203,13851.0,False,False +01073014204,9888.0,False,False +01073014301,2510.0,True,True +01073014302,9119.0,False,False +01073014404,6179.0,False,False +01073014405,4164.0,False,False +01073014406,5529.0,False,False +01073014408,3289.0,False,False +01073014409,2951.0,False,False +01073014410,5210.0,False,False +01073014412,4193.0,False,False +01073014413,9914.0,False,False +01075030000,4491.0,True,True +01075030100,5482.0,True,True +01075030200,3912.0,True,True +01077010100,1799.0,False,True +01077010200,2175.0,True,True +01077010300,1119.0,True,True +01077010400,3023.0,False,False +01077010600,3150.0,True,True +01077010700,1534.0,True,True +01077010800,3660.0,True,True +01077010900,7190.0,True,False +01077011000,4691.0,True,True +01077011101,5542.0,False,False +01077011102,4616.0,False,False +01077011200,3893.0,False,False +01077011300,2049.0,True,True +01077011400,6147.0,False,False +01077011501,7568.0,False,False +01077011502,5411.0,False,False +01077011602,4447.0,False,False +01077011603,4628.0,True,True +01077011604,6917.0,False,False +01077011700,4633.0,False,False +01077011801,4498.0,False,False +01077011802,3866.0,False,False +01079979100,1586.0,False,False +01079979200,4020.0,True,True +01079979300,4773.0,False,False +01079979400,4203.0,True,True +01079979500,6251.0,True,True +01079979600,4604.0,False,False +01079979700,2132.0,True,True +01079979800,3550.0,False,False +01079979900,1939.0,True,True +01081040200,5380.0,False,False +01081040300,2327.0,False,True +01081040400,6991.0,False,False +01081040500,10552.0,False,False +01081040602,6413.0,False,False +01081040603,831.0,False,False +01081040604,5202.0,False,False +01081040700,5309.0,False,False +01081040800,2617.0,False,False +01081040901,4163.0,False,False +01081040902,5410.0,False,True +01081041000,9494.0,False,False +01081041100,10870.0,True,False +01081041200,4787.0,False,False +01081041300,3185.0,True,False +01081041400,3729.0,True,True +01081041600,3985.0,True,True +01081041700,10459.0,False,False +01081041800,8373.0,True,True +01081041900,8753.0,False,False +01081042002,7404.0,False,False +01081042003,3529.0,False,False +01081042004,11358.0,False,False +01081042005,5124.0,False,False +01081042006,2113.0,True,False +01081042101,3774.0,True,False +01081042102,9020.0,False,False +01083020101,4769.0,False,False +01083020102,5828.0,True,False +01083020201,4531.0,True,False +01083020202,5361.0,False,False +01083020300,3624.0,False,False +01083020401,6626.0,True,True +01083020402,5712.0,False,False +01083020500,2727.0,True,True +01083020600,4946.0,True,True +01083020700,2416.0,True,True +01083020801,8494.0,False,True +01083020802,11132.0,False,False +01083020900,4765.0,False,False +01083021000,2848.0,False,False +01083021100,6317.0,False,False +01083021200,14631.0,False,False +01085780800,3373.0,True,True +01085781000,2480.0,True,True +01085781100,1499.0,True,True +01085781200,2727.0,True,True +01087231400,1387.0,True,True +01087231500,2633.0,True,True +01087231601,1139.0,False,True +01087231602,1586.0,True,True +01087231603,954.0,True,True +01087231700,2494.0,False,True +01087231800,920.0,True,True +01087231900,1391.0,True,True +01087232000,1033.0,True,True +01087232100,1295.0,False,True +01087232200,2519.0,True,True +01087232300,1357.0,True,True +01089000201,925.0,True,True +01089000202,3712.0,False,True +01089000301,3849.0,True,True +01089000302,3737.0,True,True +01089000403,4935.0,False,False +01089000501,2031.0,True,True +01089000502,2438.0,True,True +01089000503,1558.0,True,False +01089000601,1230.0,False,False +01089000602,2062.0,True,True +01089000701,2478.0,True,True +01089000702,2441.0,True,True +01089000901,4509.0,False,False +01089000902,2084.0,False,False +01089001000,2801.0,False,False +01089001200,2698.0,True,True +01089001301,3335.0,True,True +01089001302,1955.0,True,True +01089001401,2025.0,False,False +01089001402,5240.0,False,False +01089001500,4719.0,False,False +01089001700,1777.0,False,False +01089001801,3560.0,False,False +01089001901,3676.0,False,False +01089001902,1657.0,False,False +01089001903,2178.0,False,False +01089002000,2048.0,False,False +01089002100,3139.0,True,True +01089002200,1787.0,True,True +01089002300,4657.0,True,True +01089002400,4273.0,True,True +01089002501,3313.0,True,True +01089002502,3336.0,True,True +01089002600,3931.0,False,False +01089002701,2636.0,False,False +01089002721,4123.0,False,False +01089002722,2916.0,False,False +01089002801,4514.0,False,False +01089002802,7349.0,False,False +01089002911,4157.0,False,False +01089002912,2394.0,False,False +01089002921,6128.0,False,False +01089002922,3676.0,False,False +01089003000,2638.0,True,True +01089003100,5293.0,False,False +01089010100,9807.0,False,False +01089010200,5879.0,False,False +01089010301,7817.0,False,False +01089010302,4626.0,False,False +01089010401,6088.0,False,False +01089010402,6127.0,False,False +01089010501,13020.0,False,False +01089010502,3735.0,False,False +01089010612,6424.0,False,False +01089010621,7631.0,False,False +01089010622,11973.0,False,False +01089010623,7246.0,False,False +01089010624,8143.0,False,False +01089010701,9867.0,False,False +01089010702,8035.0,False,False +01089010800,10211.0,False,False +01089010901,17121.0,False,False +01089010902,3100.0,True,True +01089011011,10355.0,False,False +01089011012,5528.0,False,False +01089011013,5383.0,False,False +01089011014,9565.0,False,False +01089011021,5218.0,False,False +01089011022,7686.0,False,False +01089011100,1348.0,False,False +01089011200,12718.0,False,False +01089011300,7158.0,False,False +01089011400,4549.0,False,False +01091972900,5105.0,True,True +01091973000,3977.0,True,True +01091973100,1502.0,True,True +01091973200,2909.0,True,True +01091973300,2054.0,True,True +01091973400,3774.0,False,True +01093964000,4605.0,True,True +01093964100,2634.0,True,True +01093964200,1420.0,False,False +01093964300,5310.0,True,True +01093964400,4866.0,True,True +01093964500,2059.0,True,True +01093964600,3512.0,True,True +01093964700,5460.0,True,True +01095030100,3093.0,True,True +01095030201,5263.0,False,True +01095030202,5354.0,True,True +01095030300,6663.0,False,False +01095030401,4496.0,True,True +01095030402,3430.0,False,False +01095030500,7767.0,True,True +01095030600,6481.0,True,True +01095030701,3646.0,True,True +01095030702,3832.0,True,True +01095030801,5167.0,True,True +01095030802,8277.0,True,True +01095030902,4655.0,False,False +01095030903,4867.0,True,True +01095030904,5475.0,True,True +01095031000,6052.0,True,True +01095031100,5305.0,True,True +01095031200,5820.0,True,True +01097000200,1306.0,True,True +01097000401,1118.0,True,True +01097000402,824.0,True,True +01097000500,1484.0,True,True +01097000600,1836.0,True,True +01097000701,1904.0,True,True +01097000702,2506.0,True,True +01097000800,4648.0,True,True +01097000901,1831.0,True,True +01097000902,2128.0,False,False +01097000903,1359.0,True,True +01097001001,1560.0,True,True +01097001002,1648.0,True,True +01097001100,2332.0,True,True +01097001200,4074.0,True,True +01097001302,2707.0,True,True +01097001400,1596.0,True,True +01097001501,1386.0,True,True +01097001502,1358.0,True,True +01097001800,2522.0,True,True +01097001901,2288.0,True,True +01097001902,3353.0,True,True +01097002000,1646.0,False,False +01097002100,3962.0,True,True +01097002200,2735.0,True,True +01097002301,2247.0,True,True +01097002302,1699.0,True,True +01097002400,2995.0,True,True +01097002501,3495.0,False,False +01097002502,2380.0,False,False +01097002600,2492.0,True,True +01097002700,2443.0,True,True +01097002800,4638.0,True,True +01097002900,4342.0,True,True +01097003000,3218.0,False,False +01097003100,4646.0,False,False +01097003202,2536.0,True,True +01097003203,2829.0,False,False +01097003204,4078.0,False,False +01097003205,2579.0,True,True +01097003301,2432.0,False,False +01097003302,4209.0,False,False +01097003402,4068.0,True,True +01097003404,2597.0,True,True +01097003405,1897.0,False,False +01097003406,2873.0,True,True +01097003407,6956.0,False,False +01097003408,3431.0,True,True +01097003501,3747.0,False,False +01097003502,2448.0,False,False +01097003602,1589.0,True,True +01097003605,951.0,False,False +01097003606,3278.0,False,False +01097003607,3297.0,False,False +01097003608,1262.0,False,False +01097003703,3663.0,False,False +01097003704,4604.0,False,False +01097003705,4394.0,False,False +01097003706,3190.0,False,False +01097003707,4546.0,False,False +01097003708,4795.0,False,False +01097003709,7656.0,False,False +01097003710,4230.0,False,False +01097003800,1367.0,True,True +01097003901,2145.0,True,True +01097003902,835.0,True,True +01097004000,2755.0,True,True +01097004100,600.0,True,True +01097004800,921.0,True,True +01097004900,3711.0,True,True +01097005000,1671.0,True,True +01097005100,1522.0,True,True +01097005200,1440.0,True,True +01097005300,1937.0,True,True +01097005400,4643.0,False,False +01097005500,2966.0,True,True +01097005600,7379.0,False,False +01097005700,7474.0,False,False +01097005800,4525.0,True,True +01097005900,4574.0,False,False +01097006000,5309.0,True,True +01097006102,2583.0,True,True +01097006103,5796.0,True,True +01097006104,4720.0,True,True +01097006105,7322.0,False,False +01097006200,5246.0,True,True +01097006301,10840.0,True,True +01097006302,8363.0,False,False +01097006402,4071.0,True,True +01097006403,1682.0,True,True +01097006404,11826.0,False,False +01097006405,9078.0,False,False +01097006406,9564.0,False,False +01097006407,5527.0,False,False +01097006501,5031.0,False,False +01097006502,12930.0,False,False +01097006600,5609.0,False,False +01097006701,6277.0,True,True +01097006702,4163.0,True,True +01097006801,7567.0,False,False +01097006802,2960.0,True,True +01097006901,7821.0,True,True +01097006902,3959.0,True,True +01097007000,4096.0,False,False +01097007101,4983.0,True,True +01097007102,3105.0,True,True +01097007103,3130.0,False,False +01097007201,2771.0,True,True +01097007202,2790.0,False,False +01097007300,4263.0,True,True +01097007400,3064.0,True,True +01097007500,1297.0,True,True +01097007600,1939.0,True,True +01097007700,1126.0,True,True +01097990000,0.0,False,False +01099075600,1174.0,True,True +01099075700,1665.0,True,True +01099075800,1504.0,True,True +01099075900,5826.0,True,True +01099076000,2986.0,True,True +01099076100,6420.0,True,True +01099076200,1695.0,True,True +01101000100,419.0,True,True +01101000200,1278.0,True,True +01101000300,1214.0,True,True +01101000400,4128.0,True,True +01101000500,2618.0,True,True +01101000600,1663.0,True,True +01101000700,1488.0,True,True +01101000900,2171.0,False,False +01101001000,1391.0,True,True +01101001100,2806.0,True,True +01101001200,1397.0,True,True +01101001300,1985.0,True,True +01101001400,3627.0,False,False +01101001500,3536.0,False,True +01101001600,3444.0,True,True +01101001700,5196.0,True,False +01101001800,3328.0,True,True +01101001900,3380.0,False,False +01101002000,4452.0,False,False +01101002100,3925.0,True,True +01101002201,3670.0,True,True +01101002202,744.0,True,True +01101002300,2530.0,True,True +01101002400,1707.0,True,True +01101002500,2454.0,True,True +01101002600,5828.0,False,False +01101002700,5051.0,False,False +01101002800,5093.0,True,False +01101002900,7844.0,True,True +01101003000,2109.0,True,True +01101003100,3999.0,True,True +01101003200,5880.0,True,True +01101003301,3648.0,False,False +01101003302,5849.0,False,False +01101005101,3534.0,False,False +01101005102,4711.0,True,True +01101005301,1058.0,False,False +01101005302,2119.0,True,True +01101005402,6268.0,True,False +01101005403,4520.0,True,False +01101005406,9005.0,False,False +01101005407,4351.0,False,False +01101005408,7584.0,False,False +01101005409,2850.0,False,False +01101005410,4820.0,False,False +01101005501,1728.0,False,False +01101005502,3718.0,False,False +01101005503,5471.0,False,False +01101005504,1391.0,False,False +01101005603,7149.0,True,True +01101005604,3617.0,False,False +01101005605,3451.0,False,False +01101005606,3824.0,True,False +01101005607,5272.0,False,False +01101005608,1875.0,False,False +01101005609,4840.0,False,False +01101005610,1469.0,False,False +01101005611,3980.0,False,False +01101005612,2054.0,False,False +01101005700,1360.0,False,False +01101005800,2049.0,True,True +01101005901,4512.0,False,False +01101005902,3102.0,True,True +01101006000,3074.0,True,True +01101006100,2333.0,True,True +01103000100,4069.0,True,True +01103000200,3328.0,False,False +01103000300,3027.0,False,False +01103000400,3920.0,True,True +01103000600,2538.0,True,True +01103000700,3862.0,True,True +01103000800,2723.0,True,True +01103000900,5151.0,True,True +01103001000,3763.0,True,True +01103005101,5054.0,False,False +01103005103,1148.0,False,False +01103005105,2351.0,False,False +01103005106,6450.0,True,True +01103005107,4551.0,False,False +01103005108,3700.0,False,False +01103005109,4015.0,True,True +01103005200,6379.0,False,False +01103005301,8480.0,False,False +01103005302,3912.0,False,False +01103005303,3594.0,False,False +01103005304,5874.0,False,False +01103005404,5862.0,False,False +01103005405,4363.0,False,False +01103005500,5912.0,True,True +01103005600,6106.0,False,False +01103005701,2420.0,False,False +01103005702,6661.0,True,True +01105686800,870.0,True,True +01105687000,5875.0,True,True +01105687100,2548.0,True,True +01107050000,4436.0,False,False +01107050100,3345.0,True,True +01107050200,2029.0,True,True +01107050300,4956.0,True,True +01107050400,5477.0,True,True +01109188600,2051.0,True,True +01109188700,1824.0,True,True +01109188800,2433.0,False,False +01109188900,4384.0,False,True +01109189000,7499.0,False,False +01109189100,7963.0,False,True +01109189200,3149.0,True,True +01109189300,4030.0,True,True +01111000100,3172.0,True,True +01111000200,3569.0,True,True +01111000300,4257.0,True,True +01111000400,4913.0,True,True +01111000500,4506.0,True,False +01111000600,2230.0,True,False +01113030200,2052.0,True,True +01113030300,2797.0,True,True +01113030401,6074.0,False,False +01113030402,3437.0,False,False +01113030500,2480.0,True,True +01113030600,7549.0,True,True +01113030700,3731.0,True,True +01113030800,3214.0,True,True +01113030901,6435.0,True,True +01113030902,11493.0,False,False +01113031000,3488.0,False,False +01113031100,1768.0,True,True +01113031200,3434.0,True,True +01115040103,9311.0,False,False +01115040104,4955.0,False,False +01115040105,4996.0,True,True +01115040106,6942.0,False,False +01115040201,6143.0,True,True +01115040203,6372.0,True,False +01115040204,7009.0,True,False +01115040205,5989.0,False,False +01115040300,5328.0,True,True +01115040401,5301.0,True,True +01115040402,3597.0,True,True +01115040501,11271.0,False,False +01115040502,10775.0,False,False +01117030102,3856.0,True,True +01117030103,880.0,False,False +01117030211,3192.0,False,False +01117030212,3387.0,False,False +01117030213,5312.0,False,False +01117030214,8747.0,False,False +01117030215,4717.0,False,False +01117030216,8375.0,False,False +01117030217,5592.0,False,False +01117030303,8410.0,False,False +01117030304,6051.0,False,False +01117030305,4151.0,False,False +01117030306,3480.0,False,False +01117030314,2934.0,False,False +01117030315,5269.0,False,False +01117030316,5340.0,False,False +01117030317,3871.0,False,False +01117030319,2495.0,True,True +01117030320,5798.0,False,False +01117030330,6207.0,False,False +01117030331,4462.0,False,False +01117030332,1165.0,False,False +01117030333,4867.0,False,False +01117030334,4303.0,False,False +01117030336,7606.0,False,False +01117030337,1690.0,False,False +01117030340,5791.0,False,False +01117030341,2632.0,False,False +01117030342,2659.0,False,False +01117030344,3293.0,False,False +01117030345,2972.0,False,False +01117030405,1376.0,True,False +01117030406,3187.0,False,False +01117030407,2201.0,False,False +01117030408,3079.0,True,True +01117030501,7248.0,False,False +01117030502,2676.0,False,False +01117030604,7759.0,False,False +01117030605,8410.0,False,False +01117030607,6155.0,False,False +01117030608,3481.0,False,False +01117030609,9195.0,False,False +01117030701,4729.0,False,False +01117030703,4149.0,True,False +01117030704,3468.0,False,False +01117030800,4218.0,False,False +01117030900,2597.0,True,True +01117980000,0.0,False,False +01119011300,6175.0,False,True +01119011400,1521.0,True,True +01119011500,4119.0,True,True +01119011600,982.0,True,True +01121010101,4874.0,False,False +01121010102,4910.0,True,True +01121010201,3830.0,False,False +01121010202,4461.0,True,False +01121010301,3247.0,True,True +01121010302,4441.0,False,True +01121010400,2853.0,True,True +01121010500,2488.0,True,True +01121010600,3247.0,True,True +01121010700,2972.0,False,True +01121010900,2707.0,False,True +01121011000,3084.0,False,True +01121011100,4684.0,True,True +01121011200,3037.0,True,True +01121011300,5564.0,True,True +01121011400,2557.0,True,True +01121011500,5938.0,True,False +01121011600,4846.0,True,True +01121011700,4009.0,True,True +01121011800,1916.0,True,True +01121011900,2818.0,False,False +01121012000,1904.0,True,False +01123961900,2443.0,True,True +01123962000,3980.0,True,False +01123962100,3894.0,True,True +01123962200,4877.0,True,False +01123962300,6333.0,True,False +01123962400,4069.0,True,True +01123962501,4267.0,False,False +01123962502,2943.0,False,False +01123962600,1851.0,True,True +01123962700,5884.0,True,True +01125010101,4607.0,False,False +01125010102,3189.0,False,False +01125010103,6390.0,False,False +01125010201,3666.0,False,False +01125010202,10129.0,False,False +01125010203,2437.0,False,False +01125010204,5222.0,False,False +01125010301,6773.0,False,False +01125010302,3360.0,True,True +01125010303,2856.0,False,False +01125010403,4018.0,False,False +01125010404,2324.0,True,True +01125010405,4565.0,False,False +01125010406,5144.0,False,False +01125010407,3584.0,False,False +01125010500,2134.0,True,True +01125010601,4414.0,False,False +01125010602,10032.0,False,False +01125010701,7475.0,False,False +01125010702,7736.0,False,False +01125010703,2938.0,False,False +01125010802,4750.0,False,False +01125010803,2861.0,True,True +01125010804,2614.0,True,False +01125011200,7352.0,False,False +01125011401,2702.0,False,False +01125011402,1866.0,False,True +01125011600,3578.0,True,True +01125011701,3249.0,True,True +01125011703,4787.0,True,True +01125011800,2661.0,True,True +01125011901,3201.0,True,True +01125011902,2087.0,True,True +01125012000,2510.0,False,True +01125012100,6292.0,False,False +01125012303,8166.0,True,False +01125012304,3709.0,True,True +01125012305,5404.0,True,False +01125012403,3644.0,False,False +01125012404,3385.0,False,False +01125012405,6216.0,True,True +01125012501,1997.0,True,True +01125012502,6950.0,False,False +01125012503,4315.0,False,False +01125012600,1995.0,False,False +01125012700,5112.0,True,False +01125012800,2909.0,True,True +01127020100,2732.0,True,True +01127020200,4410.0,True,True +01127020300,6615.0,False,False +01127020400,2090.0,True,True +01127020600,2785.0,True,True +01127020700,2901.0,False,False +01127020800,5899.0,True,True +01127020900,5039.0,True,True +01127021000,3658.0,True,True +01127021100,3237.0,True,True +01127021200,2643.0,True,True +01127021300,3769.0,True,True +01127021400,3587.0,True,True +01127021500,3302.0,True,True +01127021600,1540.0,True,True +01127021700,4163.0,True,True +01127021800,3633.0,True,True +01127021900,2107.0,True,True +01129043900,2706.0,True,True +01129044000,3658.0,True,True +01129044100,3644.0,True,True +01129044200,4179.0,True,True +01129044300,2354.0,False,True +01131034700,1528.0,True,True +01131034800,4549.0,True,True +01131035100,3152.0,True,True +01131035200,1452.0,True,True +01133965501,2532.0,True,True +01133965502,2736.0,True,True +01133965503,2721.0,True,True +01133965600,5451.0,True,True +01133965700,4013.0,True,True +01133965800,4064.0,True,True +01133965900,2267.0,True,True +02013000100,3385.0,True,True +02016000100,974.0,False,False +02016000200,4724.0,False,False +02020000101,5870.0,False,False +02020000102,4934.0,False,False +02020000201,4743.0,False,False +02020000202,6743.0,False,False +02020000203,11384.0,False,False +02020000204,3631.0,False,False +02020000300,8492.0,False,False +02020000400,4816.0,False,False +02020000500,1963.0,False,False +02020000600,6955.0,True,True +02020000701,7038.0,False,False +02020000702,5404.0,False,False +02020000703,5604.0,True,True +02020000801,7505.0,True,True +02020000802,5033.0,True,True +02020000901,5164.0,True,True +02020000902,2924.0,False,False +02020001000,3360.0,False,True +02020001100,895.0,True,True +02020001200,3945.0,False,False +02020001300,3092.0,False,False +02020001400,4570.0,False,False +02020001500,5328.0,False,False +02020001601,4082.0,False,False +02020001602,4562.0,False,False +02020001701,6386.0,False,False +02020001702,4755.0,False,False +02020001731,6284.0,False,False +02020001732,6591.0,False,False +02020001801,4671.0,False,False +02020001802,5065.0,False,False +02020001900,3408.0,False,False +02020002000,3598.0,True,True +02020002100,3174.0,False,False +02020002201,5038.0,False,False +02020002202,2824.0,False,False +02020002301,7788.0,False,False +02020002302,4951.0,False,False +02020002303,9792.0,False,False +02020002400,2935.0,False,False +02020002501,5407.0,False,False +02020002502,5310.0,False,False +02020002601,4750.0,False,False +02020002602,6292.0,False,False +02020002603,5743.0,False,False +02020002702,9440.0,False,False +02020002711,6763.0,False,False +02020002712,9429.0,False,False +02020002811,6317.0,False,False +02020002812,7977.0,False,False +02020002813,4645.0,False,False +02020002821,4838.0,False,False +02020002822,3922.0,False,False +02020002823,5327.0,False,False +02020002900,2074.0,False,False +02050000100,10262.0,True,True +02050000200,6472.0,False,True +02050000300,1400.0,True,True +02060000100,875.0,False,False +02068000100,2246.0,True,True +02070000100,2682.0,True,True +02070000200,2279.0,False,True +02090000100,1078.0,True,True +02090000200,3215.0,False,False +02090000300,4550.0,True,True +02090000400,3875.0,False,False +02090000500,2864.0,False,True +02090000600,4225.0,False,False +02090000700,4102.0,False,False +02090000800,5047.0,False,False +02090000900,6148.0,False,False +02090001000,1252.0,False,False +02090001100,10016.0,False,False +02090001200,7765.0,False,False +02090001300,6331.0,False,False +02090001400,7151.0,False,False +02090001500,10852.0,False,False +02090001600,4826.0,False,False +02090001700,1143.0,False,False +02090001800,3425.0,False,False +02090001900,11207.0,False,False +02100000100,2518.0,False,False +02105000200,72.0,False,True +02105000300,2067.0,False,False +02110000100,4824.0,False,False +02110000200,6814.0,False,False +02110000300,5788.0,False,False +02110000400,5380.0,False,False +02110000500,3224.0,False,False +02110000600,6197.0,False,False +02122000100,526.0,True,True +02122000200,5549.0,False,False +02122000300,1092.0,False,False +02122000400,6510.0,False,False +02122000500,7410.0,False,False +02122000600,7742.0,False,False +02122000700,10785.0,False,False +02122000800,3799.0,False,False +02122000900,2565.0,False,False +02122001000,4389.0,False,False +02122001100,3065.0,False,False +02122001200,904.0,True,True +02122001300,4128.0,True,True +02130000100,3530.0,False,False +02130000200,4809.0,False,False +02130000300,3031.0,False,False +02130000400,2430.0,False,False +02150000100,1711.0,False,True +02150000200,7188.0,False,False +02150000300,2328.0,False,False +02150000400,688.0,False,False +02150000500,1536.0,False,False +02164000100,1393.0,True,True +02170000101,526.0,True,True +02170000102,2283.0,False,False +02170000200,1898.0,True,True +02170000300,7478.0,False,False +02170000401,1977.0,True,True +02170000402,1973.0,True,True +02170000501,1564.0,True,True +02170000502,1662.0,False,False +02170000601,5826.0,False,False +02170000603,7276.0,False,False +02170000604,5259.0,False,False +02170000701,3537.0,False,False +02170000703,3985.0,False,False +02170000705,4522.0,False,False +02170000706,6437.0,False,False +02170000800,6189.0,False,False +02170000900,3424.0,False,False +02170001001,3986.0,False,False +02170001003,4457.0,False,False +02170001004,5712.0,False,False +02170001100,7067.0,False,False +02170001201,6101.0,False,False +02170001202,5699.0,False,False +02170001300,6531.0,False,False +02180000100,5877.0,True,True +02180000200,4111.0,False,False +02185000100,4457.0,False,True +02185000200,2540.0,True,True +02185000300,2795.0,False,False +02188000100,4428.0,True,True +02188000200,3287.0,False,True +02195000200,3257.0,False,False +02198000100,2322.0,True,True +02198000200,2417.0,False,True +02198000300,14.0,False,False +02198940100,1654.0,True,True +02220000100,3327.0,False,False +02220000200,5313.0,False,False +02230000100,1107.0,False,False +02240000100,2442.0,False,True +02240000400,4436.0,False,False +02261000100,2080.0,True,True +02261000200,2832.0,False,False +02261000300,4331.0,False,False +02270000100,,False,False +02275000300,2502.0,True,True +02282000100,649.0,True,True +02290000100,1158.0,True,True +02290000200,1272.0,False,False +02290000300,1821.0,True,True +02290000400,1126.0,True,True +04001942600,1742.0,True,True +04001942700,5345.0,True,True +04001944000,6547.0,True,True +04001944100,5987.0,True,True +04001944201,4473.0,True,True +04001944202,4009.0,True,True +04001944300,6011.0,True,True +04001944901,3999.0,True,True +04001944902,4986.0,True,True +04001945001,4128.0,True,True +04001945002,3911.0,True,True +04001945100,2748.0,True,True +04001970200,4552.0,False,False +04001970300,4007.0,True,False +04001970501,5127.0,True,True +04001970502,3939.0,False,False +04003000100,1705.0,True,True +04003000201,3449.0,True,True +04003000202,3686.0,True,True +04003000203,2771.0,True,True +04003000301,3668.0,True,True +04003000302,4009.0,False,False +04003000303,3488.0,True,True +04003000400,1995.0,False,False +04003000500,7594.0,True,True +04003000600,3575.0,True,True +04003000700,4328.0,True,True +04003000800,3985.0,True,True +04003000901,2383.0,True,True +04003000902,2083.0,True,True +04003001000,1496.0,True,True +04003001100,3260.0,True,True +04003001200,3122.0,True,True +04003001300,5375.0,True,True +04003001401,4204.0,False,False +04003001402,1105.0,False,False +04003001501,3173.0,False,False +04003001502,3326.0,True,True +04003001601,5519.0,True,True +04003001602,3205.0,True,True +04003001701,4166.0,True,True +04003001702,3415.0,True,True +04003001703,4485.0,False,False +04003001800,9033.0,False,False +04003001900,6654.0,False,False +04003002001,5773.0,True,True +04003002002,5001.0,False,False +04003002100,4836.0,False,False +04005000100,3541.0,False,False +04005000200,3700.0,False,False +04005000300,6034.0,True,True +04005000400,5319.0,False,False +04005000500,4240.0,False,False +04005000600,5378.0,False,False +04005000700,3986.0,False,False +04005000800,6522.0,False,True +04005000900,6587.0,False,False +04005001000,12877.0,False,False +04005001101,4495.0,False,False +04005001102,8003.0,False,False +04005001200,2788.0,False,False +04005001301,5317.0,False,False +04005001302,5404.0,False,False +04005001500,3006.0,False,False +04005001600,3140.0,False,False +04005001700,3712.0,True,True +04005002000,1872.0,True,True +04005002100,7531.0,False,True +04005002200,6882.0,False,False +04005002300,6182.0,False,False +04005942201,3712.0,True,True +04005942202,3594.0,True,True +04005944900,4904.0,True,True +04005945000,4164.0,True,True +04005945100,4063.0,True,True +04005945200,4321.0,True,True +04007000100,2763.0,False,False +04007000200,2454.0,True,True +04007000301,5805.0,True,True +04007000302,2737.0,True,True +04007000400,4438.0,False,True +04007000500,5324.0,True,True +04007000600,1369.0,True,True +04007000700,1993.0,True,True +04007000800,1161.0,True,True +04007000900,2709.0,True,True +04007001000,4561.0,True,True +04007001100,3822.0,True,True +04007001200,5102.0,False,True +04007001300,1142.0,True,True +04007940200,2261.0,True,True +04007940400,5905.0,True,True +04009940500,4805.0,True,True +04009961100,4194.0,True,True +04009961201,3621.0,False,False +04009961202,3815.0,False,False +04009961300,3114.0,True,True +04009961400,5109.0,False,False +04009961500,4725.0,False,False +04009961600,2929.0,False,False +04009961700,5684.0,True,True +04011960100,2658.0,True,True +04011960200,4111.0,False,False +04011960300,2753.0,True,True +04012020100,2388.0,True,True +04012020201,1854.0,True,True +04012020202,862.0,False,False +04012020501,1845.0,True,True +04012020502,4248.0,True,True +04012020602,1527.0,True,True +04012940200,3132.0,False,True +04012940300,4937.0,True,True +04012980000,0.0,False,False +04013010101,5062.0,False,False +04013010102,5127.0,False,False +04013030401,5245.0,False,False +04013030402,4541.0,False,False +04013040502,5304.0,False,False +04013040506,5559.0,False,False +04013040507,6731.0,False,False +04013040512,1776.0,False,False +04013040513,2978.0,False,False +04013040514,3156.0,False,False +04013040515,4654.0,True,True +04013040516,5407.0,False,False +04013040517,8553.0,False,True +04013040518,7639.0,False,False +04013040519,7078.0,False,False +04013040520,6181.0,False,False +04013040521,8898.0,False,False +04013040522,4134.0,False,False +04013040523,3077.0,False,False +04013040524,1433.0,False,False +04013040525,3263.0,False,False +04013040526,2082.0,False,False +04013040527,4094.0,False,False +04013040528,5728.0,False,False +04013040529,3116.0,False,False +04013040530,3788.0,False,False +04013040531,3602.0,False,False +04013050603,5926.0,False,True +04013050604,3701.0,False,False +04013050605,9418.0,False,False +04013050606,10341.0,False,False +04013050607,8272.0,False,True +04013050608,7935.0,False,False +04013050609,5140.0,False,False +04013050610,12543.0,False,False +04013050611,6081.0,False,False +04013050701,6526.0,True,True +04013050702,4979.0,True,True +04013060801,5737.0,True,True +04013060802,2937.0,True,True +04013060901,5497.0,False,False +04013060902,3273.0,True,True +04013060903,5912.0,True,True +04013060904,3820.0,True,True +04013061009,11277.0,False,False +04013061010,5800.0,False,False +04013061011,7931.0,False,False +04013061012,7935.0,False,False +04013061013,6719.0,False,False +04013061014,6849.0,False,False +04013061015,5573.0,False,False +04013061016,7929.0,False,False +04013061017,3657.0,False,False +04013061018,4298.0,False,False +04013061019,5366.0,False,False +04013061020,3622.0,False,False +04013061021,2100.0,False,False +04013061022,10228.0,False,False +04013061023,11567.0,False,False +04013061024,1895.0,False,False +04013061025,11393.0,False,False +04013061026,5875.0,False,False +04013061027,5552.0,False,False +04013061028,3064.0,False,False +04013061029,4809.0,False,False +04013061030,8451.0,False,False +04013061031,5098.0,False,False +04013061032,6521.0,False,False +04013061033,6917.0,False,False +04013061034,8147.0,False,False +04013061035,7154.0,False,False +04013061036,4306.0,False,False +04013061037,5671.0,False,False +04013061038,4524.0,False,False +04013061039,4423.0,False,False +04013061040,4294.0,False,False +04013061041,4543.0,False,False +04013061042,2274.0,False,False +04013061043,2783.0,False,False +04013061044,9169.0,False,False +04013061045,6892.0,False,False +04013061046,6397.0,True,True +04013061047,3871.0,False,False +04013061100,2401.0,False,False +04013061200,5924.0,True,True +04013061300,1891.0,True,True +04013061401,2257.0,True,True +04013061402,6184.0,True,True +04013071503,4646.0,False,False +04013071504,3408.0,False,False +04013071505,6820.0,True,True +04013071506,3983.0,False,False +04013071509,5490.0,False,False +04013071510,4038.0,False,False +04013071511,3468.0,False,False +04013071512,6404.0,False,False +04013071513,1662.0,False,False +04013071514,3843.0,False,False +04013071515,3535.0,False,False +04013071516,3246.0,False,False +04013071517,3836.0,False,False +04013071600,3943.0,True,True +04013071701,3041.0,True,True +04013071702,3091.0,True,True +04013071801,5205.0,True,True +04013071802,3427.0,True,True +04013071903,5632.0,False,False +04013071906,5497.0,False,False +04013071909,4030.0,False,False +04013071910,6616.0,False,False +04013071911,3276.0,False,False +04013071912,3183.0,True,True +04013071913,5350.0,True,False +04013071914,3080.0,False,False +04013071915,3552.0,False,False +04013082002,7225.0,True,False +04013082007,4589.0,True,True +04013082008,5793.0,True,True +04013082009,5894.0,True,True +04013082010,4996.0,True,True +04013082012,7742.0,True,True +04013082016,2843.0,False,False +04013082017,4721.0,True,True +04013082018,5881.0,True,True +04013082019,2856.0,False,False +04013082020,3860.0,False,False +04013082021,2457.0,False,False +04013082022,4824.0,False,False +04013082023,5347.0,False,False +04013082024,4533.0,False,False +04013082025,2799.0,False,False +04013082026,6119.0,False,False +04013082027,4705.0,False,False +04013082028,4671.0,True,True +04013082203,11710.0,False,False +04013082204,6953.0,False,False +04013082205,7008.0,False,False +04013082206,5036.0,False,False +04013082207,3687.0,True,True +04013082208,3070.0,True,True +04013082209,3058.0,True,True +04013082210,5138.0,False,False +04013082211,6171.0,False,False +04013083000,7246.0,True,True +04013092305,4425.0,True,False +04013092306,6429.0,False,False +04013092307,6183.0,True,False +04013092308,7129.0,True,False +04013092309,6188.0,True,False +04013092311,3637.0,True,True +04013092312,5161.0,True,True +04013092401,4933.0,True,False +04013092402,3453.0,True,False +04013092500,4771.0,True,False +04013092600,3171.0,True,True +04013092705,4612.0,True,True +04013092708,2197.0,False,False +04013092709,4283.0,False,False +04013092710,5005.0,False,False +04013092711,3513.0,True,False +04013092712,6101.0,True,False +04013092713,5351.0,False,False +04013092715,4504.0,False,False +04013092716,4311.0,False,True +04013092717,5547.0,True,True +04013092718,3945.0,True,True +04013092719,4886.0,False,False +04013092720,6144.0,False,False +04013092721,3689.0,False,False +04013092723,3837.0,False,False +04013092724,3976.0,True,True +04013092801,5350.0,True,True +04013092802,6747.0,True,True +04013092900,3303.0,True,True +04013093001,5696.0,True,True +04013093002,4905.0,True,True +04013093101,5040.0,True,True +04013093104,5107.0,True,True +04013093105,5467.0,True,True +04013093106,5293.0,True,True +04013093200,4053.0,True,True +04013103205,2943.0,False,False +04013103206,2624.0,False,False +04013103207,2625.0,False,False +04013103208,3709.0,False,False +04013103209,5276.0,False,False +04013103210,7348.0,False,False +04013103211,4323.0,False,False +04013103212,4244.0,False,False +04013103214,4401.0,False,False +04013103215,3224.0,False,False +04013103216,4954.0,False,False +04013103217,6068.0,False,False +04013103219,3263.0,False,False +04013103220,3095.0,False,False +04013103302,7237.0,True,True +04013103303,3739.0,True,False +04013103304,5304.0,True,True +04013103305,3234.0,True,True +04013103306,4466.0,True,True +04013103400,4728.0,False,False +04013103501,3040.0,False,False +04013103502,6195.0,False,False +04013103604,4843.0,True,False +04013103605,6154.0,False,False +04013103606,4778.0,False,False +04013103607,4566.0,False,False +04013103608,4413.0,False,False +04013103609,5647.0,True,True +04013103611,5244.0,False,False +04013103612,5573.0,False,False +04013103614,2909.0,False,False +04013103615,5990.0,True,True +04013103701,4635.0,False,False +04013103702,3423.0,False,False +04013103900,6272.0,True,True +04013104000,7256.0,True,False +04013104100,7241.0,False,False +04013104202,5346.0,False,False +04013104203,7325.0,False,False +04013104204,3883.0,False,False +04013104205,5948.0,True,True +04013104206,4376.0,False,False +04013104207,4257.0,False,False +04013104212,6230.0,False,False +04013104214,2424.0,False,False +04013104215,4000.0,False,False +04013104216,5545.0,False,False +04013104217,5645.0,False,False +04013104218,4081.0,False,False +04013104219,3284.0,False,False +04013104221,5974.0,False,False +04013104222,6079.0,False,False +04013104223,2120.0,False,False +04013104224,6002.0,False,False +04013104225,4012.0,False,False +04013104226,4450.0,False,False +04013104227,2197.0,True,True +04013104301,4015.0,False,False +04013104302,3862.0,True,True +04013104401,4591.0,True,True +04013104402,2703.0,False,False +04013104501,4321.0,True,True +04013104502,5884.0,True,True +04013104600,4026.0,True,True +04013104701,2836.0,True,True +04013104702,4289.0,True,True +04013104801,3609.0,False,False +04013104802,5736.0,False,False +04013104900,4437.0,False,False +04013105002,3026.0,False,False +04013105003,4694.0,False,False +04013105004,3649.0,False,False +04013105101,4381.0,False,False +04013105102,4573.0,False,False +04013105103,3236.0,False,False +04013105200,6975.0,False,False +04013105300,5417.0,False,False +04013105400,4216.0,False,False +04013105501,2609.0,True,True +04013105502,2011.0,True,True +04013105503,3684.0,True,True +04013105601,3989.0,True,True +04013105602,6552.0,True,True +04013105701,3583.0,True,False +04013105702,4880.0,True,True +04013105800,6968.0,True,False +04013105900,5132.0,True,True +04013106001,1723.0,True,True +04013106002,2766.0,True,True +04013106003,4207.0,True,True +04013106100,5569.0,False,False +04013106200,3369.0,False,False +04013106300,5023.0,False,False +04013106400,2966.0,False,False +04013106501,3306.0,False,False +04013106502,3451.0,False,False +04013106600,4098.0,False,False +04013106701,4940.0,True,True +04013106702,1377.0,False,False +04013106703,2351.0,False,False +04013106801,4694.0,True,True +04013106802,3558.0,True,True +04013106900,8561.0,True,True +04013107000,9081.0,True,False +04013107101,4504.0,True,True +04013107102,6246.0,True,True +04013107201,1825.0,False,True +04013107202,5254.0,True,True +04013107300,6635.0,True,True +04013107400,7683.0,True,False +04013107500,3843.0,False,False +04013107601,3581.0,False,False +04013107602,3137.0,False,False +04013107700,4333.0,False,False +04013107800,2217.0,False,False +04013107900,3729.0,False,False +04013108000,2924.0,False,False +04013108100,2377.0,False,False +04013108200,3366.0,False,False +04013108301,3487.0,False,False +04013108302,2930.0,False,False +04013108400,5642.0,False,False +04013108501,2437.0,False,False +04013108502,3521.0,False,False +04013108601,2833.0,True,True +04013108602,6632.0,True,False +04013108802,2030.0,False,False +04013108901,2107.0,False,False +04013108902,5116.0,True,True +04013109001,4952.0,True,True +04013109002,4674.0,True,True +04013109003,6165.0,True,True +04013109101,3917.0,True,True +04013109102,6637.0,True,True +04013109200,3935.0,True,True +04013109300,5343.0,True,True +04013109400,9113.0,True,True +04013109500,6561.0,True,True +04013109601,5491.0,True,True +04013109602,7269.0,True,True +04013109603,5317.0,True,True +04013109604,4253.0,True,True +04013109701,8685.0,True,True +04013109702,5902.0,True,True +04013109703,3279.0,True,True +04013109704,2586.0,True,True +04013109705,2449.0,True,True +04013109801,4994.0,True,True +04013109802,5894.0,True,True +04013109900,9128.0,True,True +04013110001,5362.0,True,True +04013110002,4064.0,True,True +04013110100,7122.0,True,True +04013110400,5179.0,True,True +04013110501,3027.0,False,False +04013110502,2605.0,False,False +04013110600,4251.0,False,False +04013110701,2674.0,True,True +04013110702,4305.0,True,True +04013110801,5502.0,True,True +04013110802,2227.0,True,True +04013110901,3149.0,True,True +04013110902,5277.0,True,True +04013111000,4619.0,False,False +04013111100,4541.0,False,False +04013111201,6592.0,False,False +04013111202,2418.0,True,True +04013111203,1567.0,True,True +04013111204,2766.0,False,False +04013111300,6007.0,False,False +04013111401,4584.0,True,True +04013111402,4125.0,True,True +04013111501,2148.0,True,True +04013111502,6364.0,True,True +04013111601,3591.0,True,True +04013111602,5242.0,True,True +04013111700,6238.0,False,False +04013111800,4584.0,False,False +04013111900,2481.0,False,False +04013112100,3748.0,True,True +04013112201,4941.0,True,True +04013112202,4515.0,True,True +04013112301,5768.0,True,True +04013112302,7777.0,True,True +04013112401,6004.0,True,True +04013112402,6661.0,True,True +04013112502,6582.0,True,True +04013112503,9960.0,True,True +04013112504,4468.0,True,True +04013112505,9863.0,True,True +04013112507,3069.0,True,True +04013112508,2211.0,True,True +04013112509,11473.0,True,True +04013112510,4995.0,False,False +04013112511,10117.0,False,False +04013112512,770.0,True,True +04013112513,9486.0,True,True +04013112514,5225.0,False,False +04013112601,3804.0,True,True +04013112602,8617.0,True,True +04013112700,7403.0,True,True +04013112900,4835.0,True,True +04013113000,2318.0,False,False +04013113100,4277.0,False,False +04013113201,2674.0,True,True +04013113202,2095.0,True,True +04013113203,2642.0,True,True +04013113300,4987.0,True,True +04013113400,343.0,True,True +04013113501,4824.0,True,True +04013113502,3366.0,True,True +04013113601,5272.0,True,True +04013113602,4090.0,True,True +04013113700,8039.0,True,True +04013113801,2252.0,False,False +04013113802,0.0,False,False +04013113900,1457.0,True,True +04013114000,1996.0,False,True +04013114100,1533.0,False,False +04013114200,994.0,True,True +04013114301,565.0,True,True +04013114302,3173.0,True,True +04013114401,1458.0,True,True +04013114402,2085.0,True,True +04013114500,4044.0,True,True +04013114600,1611.0,True,True +04013114703,5255.0,True,True +04013114800,3493.0,True,True +04013114900,2562.0,True,True +04013115200,3110.0,True,True +04013115300,3181.0,True,True +04013115400,2056.0,True,True +04013115500,4230.0,True,True +04013115600,3864.0,True,True +04013115700,7395.0,True,False +04013115801,4522.0,True,True +04013115802,3420.0,True,True +04013115900,6660.0,True,True +04013116000,6713.0,True,True +04013116100,4310.0,True,True +04013116202,5598.0,True,True +04013116203,5813.0,False,False +04013116204,3843.0,True,True +04013116205,4506.0,True,True +04013116300,7197.0,True,True +04013116400,6000.0,True,False +04013116500,5108.0,True,True +04013116602,8129.0,True,True +04013116603,7586.0,False,False +04013116604,4966.0,False,False +04013116605,7270.0,False,False +04013116606,6947.0,True,False +04013116607,3954.0,True,True +04013116608,4912.0,True,True +04013116609,5386.0,False,False +04013116610,6047.0,False,False +04013116611,3687.0,False,False +04013116612,6274.0,False,False +04013116613,7933.0,False,False +04013116702,9026.0,True,False +04013116703,5611.0,False,False +04013116704,9060.0,False,False +04013116707,2947.0,False,False +04013116708,5198.0,False,False +04013116709,2682.0,False,False +04013116710,5081.0,False,False +04013116711,2320.0,False,False +04013116712,7911.0,False,False +04013116713,6420.0,False,False +04013116714,3560.0,False,False +04013116715,1978.0,False,False +04013116717,3298.0,False,False +04013116718,3057.0,False,False +04013116719,7137.0,False,False +04013116720,4528.0,False,False +04013116721,3388.0,False,False +04013116725,5301.0,False,False +04013116727,3988.0,False,False +04013116728,4657.0,False,False +04013116729,4103.0,False,False +04013116730,1821.0,False,False +04013116731,3189.0,False,False +04013116732,3956.0,True,True +04013116733,260.0,False,False +04013116800,2794.0,True,True +04013116900,2661.0,True,True +04013117000,7040.0,True,True +04013117100,2712.0,False,False +04013117200,1309.0,True,True +04013117300,1263.0,True,True +04013216806,3468.0,False,False +04013216807,5145.0,False,False +04013216809,5258.0,False,False +04013216810,1673.0,False,False +04013216813,4141.0,False,False +04013216816,6656.0,False,False +04013216818,7437.0,False,False +04013216819,6481.0,False,False +04013216820,4462.0,False,False +04013216821,6349.0,False,False +04013216822,4290.0,False,False +04013216826,4566.0,False,False +04013216829,5669.0,False,False +04013216830,3299.0,False,False +04013216831,3098.0,False,False +04013216832,2283.0,False,False +04013216833,4917.0,False,False +04013216834,2255.0,False,False +04013216835,2874.0,False,False +04013216836,4336.0,False,False +04013216837,5358.0,False,False +04013216838,5310.0,False,False +04013216839,4162.0,False,False +04013216840,4967.0,False,False +04013216841,3996.0,False,False +04013216842,3847.0,False,False +04013216843,3438.0,False,False +04013216844,4612.0,False,False +04013216845,2165.0,False,False +04013216846,7373.0,False,False +04013216847,7943.0,False,False +04013216848,6781.0,False,False +04013216849,6670.0,False,False +04013216850,4576.0,False,False +04013216851,4293.0,False,False +04013216852,3189.0,False,False +04013216853,5288.0,False,False +04013216901,3323.0,False,False +04013216902,4252.0,False,False +04013217001,4628.0,False,False +04013217002,6017.0,False,False +04013217101,2879.0,False,False +04013217102,2926.0,False,False +04013217201,2237.0,False,False +04013217203,3678.0,False,False +04013217204,3624.0,False,False +04013217300,4425.0,False,False +04013217400,3232.0,False,False +04013217501,3831.0,True,True +04013217502,3173.0,False,False +04013217600,4891.0,False,False +04013217700,5211.0,False,False +04013217800,6345.0,False,False +04013217900,4194.0,False,False +04013218000,5983.0,False,False +04013218100,2274.0,False,False +04013218200,9097.0,False,False +04013218300,4629.0,True,True +04013318400,5590.0,False,False +04013318501,3389.0,True,True +04013318700,3843.0,False,False +04013318800,7334.0,False,False +04013318900,7018.0,False,False +04013319000,9085.0,False,False +04013319101,3291.0,False,False +04013319103,5318.0,False,True +04013319104,7228.0,False,False +04013319201,6849.0,True,True +04013319202,3539.0,False,True +04013319300,3005.0,True,True +04013319401,7236.0,False,False +04013319402,4094.0,False,False +04013319403,4926.0,False,False +04013319404,3626.0,False,False +04013319500,6406.0,False,False +04013319600,6403.0,False,False +04013319703,4552.0,False,False +04013319704,1935.0,False,False +04013319705,3713.0,False,False +04013319706,5873.0,True,True +04013319800,6761.0,False,False +04013319902,2983.0,False,False +04013319903,6049.0,False,False +04013319904,5234.0,False,False +04013319905,5362.0,False,False +04013319906,3596.0,False,False +04013319907,2266.0,False,False +04013319908,2699.0,False,False +04013319909,2495.0,False,False +04013319910,5635.0,False,False +04013320001,8801.0,False,False +04013320002,6482.0,True,True +04013320007,7235.0,False,False +04013320100,3409.0,False,False +04013420104,5887.0,False,False +04013420105,6102.0,False,False +04013420107,6743.0,False,False +04013420108,1758.0,False,False +04013420109,4874.0,False,False +04013420110,5552.0,False,False +04013420111,3865.0,False,False +04013420112,3299.0,False,False +04013420113,3807.0,True,True +04013420114,4003.0,True,True +04013420115,3288.0,True,True +04013420116,2876.0,True,True +04013420202,5605.0,False,False +04013420206,3634.0,False,False +04013420207,2881.0,False,False +04013420208,5770.0,False,False +04013420209,4022.0,False,False +04013420210,5590.0,False,False +04013420211,4238.0,False,False +04013420212,3240.0,False,False +04013420213,1947.0,False,False +04013420214,4128.0,True,True +04013420215,2335.0,False,False +04013420216,4319.0,False,False +04013420301,2386.0,False,False +04013420302,4761.0,False,False +04013420303,4775.0,False,False +04013420304,1131.0,False,False +04013420401,4766.0,True,True +04013420402,4161.0,False,False +04013420501,7585.0,True,False +04013420503,3917.0,True,True +04013420504,3653.0,False,False +04013420602,5364.0,False,False +04013420603,4059.0,False,False +04013420604,4762.0,False,False +04013420704,4968.0,False,False +04013420705,3946.0,False,False +04013420706,5048.0,False,False +04013420707,2373.0,False,False +04013420708,3679.0,True,True +04013420709,3472.0,True,True +04013420710,3845.0,True,True +04013420800,5429.0,False,False +04013420901,4126.0,True,False +04013420902,3761.0,False,False +04013421001,3991.0,True,True +04013421002,3445.0,True,True +04013421101,4987.0,True,False +04013421102,7069.0,True,False +04013421201,4976.0,False,False +04013421202,3997.0,True,True +04013421302,5504.0,True,True +04013421303,6196.0,True,True +04013421304,3237.0,True,True +04013421400,2452.0,True,True +04013421501,3911.0,True,True +04013421502,3340.0,True,True +04013421601,3767.0,True,True +04013421602,4622.0,True,True +04013421701,5185.0,True,False +04013421702,4678.0,True,True +04013421801,3029.0,False,False +04013421802,5205.0,True,False +04013421901,3944.0,True,False +04013421902,6686.0,True,True +04013422001,4452.0,True,True +04013422002,4330.0,True,True +04013422102,4825.0,True,True +04013422103,5308.0,True,True +04013422104,6508.0,True,True +04013422105,3384.0,True,False +04013422106,6200.0,True,True +04013422107,4365.0,True,True +04013422203,5493.0,True,True +04013422204,3049.0,False,False +04013422205,1612.0,False,False +04013422209,6660.0,False,False +04013422210,5292.0,False,False +04013422211,2633.0,False,False +04013422212,4434.0,False,False +04013422213,2765.0,False,False +04013422215,2254.0,False,False +04013422216,6512.0,False,False +04013422217,3618.0,False,False +04013422218,2765.0,False,False +04013422219,2922.0,False,False +04013422220,2008.0,False,False +04013422221,4051.0,False,False +04013422222,2365.0,False,False +04013422301,5667.0,True,True +04013422302,5512.0,False,False +04013422304,2843.0,False,False +04013422305,5275.0,False,False +04013422307,4070.0,False,False +04013422308,5554.0,False,False +04013422309,4815.0,False,False +04013422401,2969.0,False,False +04013422402,5240.0,False,False +04013422403,4863.0,False,False +04013422404,4403.0,False,False +04013422501,6305.0,False,False +04013422502,6503.0,False,False +04013422503,6946.0,False,False +04013422504,5144.0,False,False +04013422506,4854.0,False,False +04013422507,4473.0,False,False +04013422508,3002.0,False,False +04013422509,5023.0,False,False +04013422510,3086.0,False,False +04013422511,2722.0,False,False +04013422512,4891.0,False,False +04013422513,4408.0,False,False +04013422514,5795.0,False,False +04013422606,11064.0,False,False +04013422607,4198.0,False,False +04013422609,4556.0,False,False +04013422610,3138.0,False,False +04013422615,7098.0,False,False +04013422616,4779.0,False,False +04013422617,5846.0,False,False +04013422618,2632.0,False,False +04013422620,3262.0,False,False +04013422621,4476.0,False,False +04013422622,4091.0,False,False +04013422623,7425.0,False,False +04013422624,2589.0,False,False +04013422625,4541.0,True,True +04013422626,2664.0,False,False +04013422627,3723.0,True,False +04013422628,3472.0,True,True +04013422629,3103.0,False,False +04013422630,4999.0,True,True +04013422631,4512.0,False,False +04013422632,3992.0,False,False +04013422633,2966.0,False,False +04013422634,5069.0,True,True +04013422635,1791.0,False,False +04013422636,2661.0,False,False +04013422637,3487.0,False,False +04013422638,4390.0,False,False +04013422639,3603.0,False,False +04013422640,4563.0,False,False +04013422641,7881.0,False,False +04013422642,5533.0,False,False +04013422643,6065.0,False,False +04013422644,9764.0,False,False +04013422646,13026.0,False,False +04013522800,981.0,False,False +04013522901,4387.0,False,False +04013522903,4765.0,True,True +04013522904,4795.0,True,False +04013523002,5676.0,True,True +04013523003,6678.0,False,False +04013523005,4741.0,False,False +04013523006,5910.0,False,False +04013523102,5540.0,True,False +04013523103,5751.0,False,False +04013523104,6136.0,True,True +04013610000,8147.0,False,False +04013610100,630.0,False,False +04013610200,7313.0,False,False +04013610300,9538.0,False,False +04013610400,5617.0,False,False +04013610500,7271.0,False,False +04013610600,6069.0,False,False +04013610700,7048.0,False,False +04013610800,5472.0,False,False +04013610900,10472.0,False,False +04013611000,2768.0,False,False +04013611100,3757.0,False,False +04013611200,6325.0,False,False +04013611300,6568.0,False,False +04013611400,6419.0,False,False +04013611500,7645.0,False,False +04013611600,2910.0,False,False +04013611700,7181.0,False,False +04013611800,7094.0,False,False +04013611900,2949.0,False,False +04013612000,3423.0,False,False +04013612200,5975.0,False,False +04013612300,8309.0,False,False +04013612400,8161.0,False,False +04013612500,4303.0,False,False +04013612600,2444.0,False,False +04013612700,2276.0,False,False +04013612800,2335.0,False,False +04013612900,2769.0,False,False +04013613000,5393.0,False,False +04013613100,3215.0,False,False +04013613200,4246.0,False,False +04013613300,7507.0,False,False +04013613400,3654.0,False,False +04013613500,4449.0,False,False +04013613600,6292.0,False,False +04013613700,4911.0,False,False +04013613800,4333.0,False,False +04013613900,6276.0,False,False +04013614000,4352.0,False,False +04013614100,6643.0,False,False +04013614200,4754.0,False,False +04013614300,3112.0,False,False +04013614400,4025.0,False,False +04013614500,4283.0,False,False +04013614600,6515.0,False,False +04013614700,2977.0,True,True +04013614800,3933.0,False,False +04013614900,4273.0,False,False +04013615000,10113.0,False,False +04013615100,4495.0,False,False +04013615200,7785.0,False,False +04013615300,1983.0,True,True +04013615400,2835.0,False,False +04013615500,2553.0,False,False +04013615600,2958.0,False,False +04013615700,3159.0,False,False +04013615800,4908.0,False,False +04013615900,4252.0,False,False +04013616000,2192.0,False,False +04013616100,3669.0,False,False +04013616200,3557.0,False,False +04013616300,2216.0,False,False +04013616400,5932.0,False,False +04013616500,3591.0,False,False +04013616600,6025.0,False,False +04013616700,5231.0,False,False +04013616800,5214.0,False,False +04013616900,3991.0,False,False +04013617000,6344.0,False,False +04013617100,2403.0,False,False +04013617200,2628.0,False,False +04013617300,3419.0,False,False +04013617400,7063.0,False,False +04013617500,3605.0,False,False +04013617600,5660.0,False,False +04013617700,3540.0,False,False +04013617800,2350.0,False,False +04013617900,2828.0,False,False +04013618000,4605.0,False,False +04013618100,4483.0,False,False +04013618200,4143.0,False,False +04013618300,3136.0,False,False +04013618400,3858.0,False,False +04013618500,4286.0,False,False +04013618600,5247.0,False,False +04013618700,2982.0,False,False +04013618800,4922.0,True,True +04013618900,6934.0,True,False +04013619000,3061.0,False,False +04013619100,3334.0,True,True +04013619200,5692.0,True,True +04013619300,5282.0,True,True +04013619400,5737.0,False,False +04013619500,6077.0,False,False +04013619600,1877.0,False,False +04013619700,4005.0,True,True +04013619800,4731.0,False,False +04013619900,6397.0,False,False +04013723303,106.0,False,False +04013723304,5200.0,False,False +04013723305,2611.0,True,True +04013723306,6413.0,True,True +04013723307,2022.0,False,False +04013723308,9969.0,False,False +04013810000,2949.0,False,False +04013810100,6609.0,False,False +04013810200,3905.0,False,False +04013810300,6097.0,False,False +04013810400,4891.0,False,False +04013810500,4557.0,False,False +04013810600,6635.0,False,False +04013810700,7068.0,False,False +04013810800,4330.0,False,False +04013810900,6128.0,False,False +04013811000,2898.0,False,False +04013811100,2977.0,False,False +04013811200,2871.0,False,False +04013811300,3045.0,False,False +04013811400,5067.0,False,False +04013811500,2606.0,False,False +04013811600,4451.0,False,False +04013811700,4438.0,False,False +04013811800,2203.0,False,False +04013811900,5970.0,False,False +04013812000,4989.0,False,False +04013812100,6662.0,False,False +04013812200,7472.0,False,False +04013812300,4909.0,False,False +04013812400,5207.0,False,False +04013812500,2246.0,False,False +04013812600,5273.0,False,False +04013812700,6544.0,False,False +04013812800,7052.0,False,False +04013812900,2840.0,False,False +04013813000,5168.0,False,False +04013813100,3563.0,False,False +04013813200,3958.0,False,False +04013813300,5824.0,False,False +04013813400,3570.0,False,False +04013813500,3302.0,False,False +04013813600,3877.0,False,False +04013813700,2478.0,False,False +04013813800,2629.0,False,False +04013813900,5662.0,False,False +04013814000,2573.0,False,False +04013814100,5222.0,False,False +04013814200,2642.0,False,False +04013814300,4000.0,False,False +04013814400,4522.0,False,False +04013814500,5060.0,False,False +04013814600,5088.0,False,False +04013814700,4034.0,False,False +04013814800,9087.0,False,False +04013814900,2979.0,False,False +04013815000,3969.0,False,False +04013815100,5541.0,False,False +04013815200,10771.0,False,False +04013815300,3772.0,False,False +04013815400,9601.0,False,False +04013815500,7471.0,False,False +04013815600,6381.0,False,False +04013815700,5179.0,False,False +04013815800,6486.0,False,False +04013815900,10513.0,False,False +04013816000,18328.0,False,False +04013816100,6801.0,False,False +04013816200,3729.0,False,False +04013816300,6318.0,False,False +04013816400,7707.0,False,False +04013816500,4164.0,False,False +04013816600,5675.0,False,False +04013816700,2174.0,False,False +04013816800,6148.0,False,False +04013816900,8390.0,False,False +04013817000,3551.0,False,False +04013817100,10074.0,False,False +04013817200,7141.0,False,False +04013817300,5485.0,False,False +04013817400,2790.0,False,False +04013817500,2911.0,False,False +04013817600,2527.0,False,False +04013940700,123.0,True,True +04013941000,3191.0,True,True +04013941100,25.0,True,True +04013941200,1053.0,True,True +04013941300,7727.0,True,True +04013980100,0.0,False,False +04013980400,13.0,True,True +04013980500,0.0,False,False +04013980600,4291.0,False,False +04013980700,0.0,False,False +04015940400,1480.0,True,True +04015940501,2427.0,True,True +04015950100,10387.0,True,True +04015950401,2222.0,True,True +04015950402,4267.0,True,True +04015950500,1551.0,True,True +04015950600,10176.0,True,True +04015950703,4008.0,True,True +04015950704,7179.0,False,False +04015950705,4485.0,True,True +04015950706,3841.0,True,True +04015951401,4217.0,True,True +04015951402,3603.0,False,False +04015951501,4002.0,True,True +04015951502,5270.0,False,False +04015951601,3422.0,True,True +04015951602,4269.0,True,True +04015951700,5908.0,True,True +04015951800,3603.0,True,True +04015951900,3965.0,False,False +04015952001,2036.0,True,True +04015952002,7386.0,False,False +04015952003,5098.0,True,True +04015952004,3737.0,True,True +04015952400,2759.0,False,False +04015952500,5311.0,False,False +04015952600,3115.0,True,False +04015952700,6120.0,True,True +04015952800,6421.0,False,False +04015952900,5891.0,True,False +04015953000,5016.0,True,False +04015953100,3837.0,True,True +04015953200,2950.0,False,False +04015953300,5633.0,False,False +04015953401,5297.0,False,False +04015953402,5405.0,False,False +04015953601,9195.0,False,False +04015953602,3352.0,True,True +04015953800,6082.0,True,True +04015953900,7106.0,False,False +04015954800,7043.0,True,True +04015954900,3792.0,False,False +04015955000,4831.0,True,True +04017940008,984.0,True,True +04017940010,2877.0,True,True +04017940011,2126.0,True,True +04017940012,3190.0,True,True +04017940013,5190.0,True,True +04017940014,2415.0,True,True +04017940015,4547.0,True,True +04017940100,4819.0,True,True +04017940301,4614.0,True,True +04017940302,3114.0,True,True +04017942300,2081.0,True,True +04017942400,2577.0,True,True +04017942500,5554.0,True,True +04017960100,1728.0,True,False +04017960200,3687.0,True,True +04017960400,3552.0,True,True +04017960500,4791.0,True,True +04017960600,4124.0,True,True +04017961300,3009.0,True,True +04017961700,6267.0,False,False +04017962500,3363.0,False,False +04017963300,4727.0,True,True +04017963400,3388.0,True,True +04017963700,1516.0,True,True +04017963800,4652.0,True,True +04017964201,1475.0,False,True +04017964202,1783.0,True,True +04017964800,4410.0,True,True +04017964900,1954.0,False,False +04017965200,5188.0,False,False +04017965300,5568.0,True,True +04019000100,896.0,False,False +04019000200,4751.0,True,True +04019000300,1432.0,True,True +04019000400,3149.0,False,False +04019000500,12176.0,False,False +04019000600,5248.0,False,False +04019000700,5493.0,False,False +04019000800,1705.0,True,True +04019000900,2589.0,True,True +04019001000,1165.0,True,True +04019001100,2892.0,True,True +04019001200,3934.0,True,True +04019001302,1758.0,True,True +04019001303,2709.0,True,True +04019001304,5474.0,True,True +04019001400,6410.0,False,True +04019001500,5309.0,False,False +04019001600,3446.0,False,False +04019001700,2807.0,False,False +04019001801,4755.0,True,True +04019001802,2245.0,False,False +04019001900,3648.0,False,False +04019002000,6333.0,True,True +04019002100,6106.0,True,True +04019002201,3562.0,True,True +04019002202,3213.0,True,True +04019002300,5667.0,True,True +04019002400,5565.0,True,True +04019002501,5993.0,True,True +04019002503,4323.0,True,True +04019002504,5945.0,True,True +04019002505,6608.0,True,True +04019002506,8274.0,True,True +04019002602,4703.0,True,True +04019002603,3451.0,True,True +04019002604,3537.0,True,True +04019002701,,False,False +04019002702,4530.0,False,False +04019002703,3944.0,False,False +04019002801,2032.0,True,True +04019002802,4020.0,True,True +04019002803,2322.0,True,True +04019002901,6327.0,True,False +04019002903,,False,False +04019002904,3213.0,False,False +04019002905,3786.0,True,False +04019003002,4855.0,True,True +04019003003,4339.0,True,True +04019003004,1618.0,True,True +04019003101,5424.0,True,True +04019003102,3728.0,True,True +04019003200,5604.0,False,False +04019003302,4138.0,True,False +04019003303,3805.0,True,False +04019003304,3196.0,False,False +04019003400,6055.0,True,True +04019003501,7761.0,True,True +04019003502,4115.0,True,True +04019003503,4288.0,True,False +04019003504,2869.0,True,False +04019003600,5557.0,False,False +04019003702,6997.0,True,True +04019003704,5001.0,True,True +04019003705,6377.0,True,True +04019003706,5267.0,True,True +04019003707,3321.0,True,True +04019003801,3312.0,True,True +04019003802,5337.0,True,True +04019003901,2041.0,True,True +04019003902,2843.0,True,True +04019003903,3472.0,True,True +04019004008,4233.0,False,False +04019004010,2974.0,False,False +04019004011,8024.0,True,False +04019004022,7021.0,False,False +04019004025,6874.0,False,False +04019004026,5749.0,False,False +04019004029,4395.0,True,False +04019004030,1879.0,False,False +04019004031,3802.0,False,False +04019004032,3564.0,False,False +04019004033,4306.0,True,True +04019004034,3904.0,True,False +04019004035,3718.0,True,True +04019004036,2737.0,False,False +04019004037,2923.0,False,False +04019004038,3069.0,True,False +04019004039,2379.0,True,True +04019004042,5161.0,False,False +04019004043,4161.0,False,False +04019004044,3866.0,False,False +04019004046,4409.0,True,True +04019004047,2736.0,False,False +04019004048,4100.0,False,False +04019004049,2857.0,False,False +04019004050,1984.0,False,False +04019004051,4930.0,False,False +04019004052,1692.0,False,False +04019004053,2935.0,False,False +04019004054,1587.0,False,False +04019004055,3455.0,False,False +04019004056,2141.0,False,False +04019004057,4515.0,False,False +04019004058,4061.0,False,False +04019004061,5005.0,False,False +04019004062,7049.0,False,False +04019004063,6910.0,False,False +04019004064,9703.0,False,False +04019004065,3854.0,False,False +04019004066,2765.0,False,False +04019004067,2599.0,False,False +04019004068,4624.0,False,False +04019004069,3631.0,True,True +04019004070,2928.0,True,True +04019004071,4178.0,True,True +04019004072,2416.0,True,False +04019004073,5329.0,False,False +04019004074,1907.0,False,False +04019004107,11841.0,False,False +04019004109,5043.0,False,False +04019004110,3182.0,False,True +04019004112,3022.0,True,True +04019004113,5884.0,True,True +04019004114,4966.0,True,True +04019004115,7707.0,True,True +04019004116,2579.0,True,True +04019004117,6433.0,True,False +04019004119,8290.0,False,False +04019004120,1076.0,False,False +04019004122,4026.0,True,True +04019004307,3006.0,False,False +04019004310,2472.0,False,False +04019004311,4590.0,False,False +04019004312,6261.0,True,True +04019004313,4488.0,True,True +04019004316,3453.0,True,True +04019004317,2602.0,True,True +04019004320,2824.0,True,True +04019004321,5248.0,True,True +04019004322,6494.0,True,True +04019004323,3472.0,False,False +04019004324,2691.0,False,False +04019004325,1640.0,False,False +04019004326,3756.0,False,False +04019004327,4796.0,False,False +04019004328,3299.0,False,False +04019004329,11305.0,False,False +04019004330,1664.0,False,False +04019004331,3907.0,False,False +04019004332,1454.0,False,False +04019004333,3545.0,False,False +04019004334,11324.0,True,True +04019004404,3172.0,False,False +04019004407,6000.0,True,True +04019004411,7432.0,False,False +04019004412,3327.0,False,False +04019004413,3217.0,False,False +04019004414,3638.0,False,True +04019004415,1678.0,False,False +04019004418,3543.0,False,False +04019004419,6486.0,True,True +04019004421,6896.0,False,False +04019004422,5132.0,False,False +04019004423,4567.0,False,False +04019004424,4012.0,True,True +04019004425,5992.0,True,True +04019004426,2638.0,False,False +04019004427,9845.0,False,False +04019004428,3241.0,False,False +04019004429,7814.0,False,False +04019004430,3088.0,False,False +04019004431,5025.0,False,False +04019004504,6947.0,True,True +04019004505,4592.0,True,True +04019004506,5433.0,True,True +04019004508,5509.0,True,True +04019004510,3636.0,False,True +04019004511,4487.0,True,True +04019004512,4132.0,True,False +04019004513,2651.0,True,True +04019004610,6713.0,False,False +04019004613,4094.0,True,True +04019004614,3118.0,False,False +04019004615,3327.0,False,False +04019004616,4132.0,False,False +04019004617,2499.0,False,False +04019004618,3332.0,False,False +04019004619,3370.0,False,False +04019004620,1841.0,True,True +04019004621,2226.0,False,False +04019004622,3414.0,False,False +04019004623,6397.0,False,False +04019004624,6052.0,False,False +04019004625,1956.0,False,False +04019004626,3897.0,True,True +04019004627,2429.0,True,True +04019004628,1328.0,False,False +04019004630,1936.0,False,False +04019004631,3369.0,False,False +04019004632,2556.0,False,False +04019004633,2666.0,False,False +04019004634,1593.0,False,False +04019004635,5036.0,False,False +04019004636,7321.0,False,False +04019004638,13105.0,False,False +04019004639,4827.0,False,False +04019004640,5795.0,False,False +04019004641,3893.0,False,False +04019004642,4170.0,False,False +04019004643,4129.0,False,False +04019004644,2848.0,False,False +04019004645,5263.0,False,False +04019004646,4598.0,False,False +04019004647,3978.0,False,False +04019004710,3715.0,False,False +04019004711,4410.0,False,False +04019004712,3136.0,False,False +04019004713,3998.0,False,False +04019004714,5350.0,False,False +04019004715,4478.0,True,True +04019004716,6439.0,False,False +04019004717,1823.0,False,False +04019004718,2197.0,False,False +04019004719,5404.0,False,False +04019004720,1339.0,False,False +04019004721,3612.0,False,False +04019004722,2367.0,False,False +04019004723,4906.0,False,False +04019004724,2406.0,False,False +04019004725,3345.0,False,False +04019004726,4063.0,False,False +04019410501,,False,False +04019410502,,False,False +04019410503,,False,False +04019470400,,False,False +04019470500,,False,False +04019940600,1077.0,True,True +04019940700,1493.0,True,True +04019940800,4877.0,True,True +04019940900,2227.0,True,True +04019941000,4187.0,True,True +04021000201,5298.0,False,False +04021000204,12147.0,False,False +04021000205,17235.0,False,False +04021000206,5810.0,False,False +04021000207,12528.0,False,False +04021000208,2428.0,False,False +04021000209,13594.0,False,False +04021000210,9596.0,False,False +04021000211,4671.0,False,False +04021000212,6430.0,False,False +04021000213,12256.0,False,False +04021000214,11329.0,False,False +04021000215,2213.0,False,False +04021000307,2825.0,False,False +04021000308,5147.0,True,True +04021000309,3597.0,True,True +04021000310,3560.0,False,False +04021000311,3284.0,False,False +04021000312,3959.0,True,True +04021000313,4834.0,True,True +04021000314,5880.0,False,False +04021000315,5257.0,True,True +04021000316,8047.0,False,False +04021000317,2666.0,False,False +04021000318,8448.0,False,False +04021000319,1611.0,False,False +04021000400,3071.0,True,True +04021000603,6354.0,False,False +04021000604,4591.0,False,False +04021000700,3692.0,True,True +04021000801,14287.0,False,True +04021000802,5668.0,False,False +04021000803,13640.0,True,True +04021000901,4765.0,True,True +04021000902,2741.0,True,True +04021001000,4463.0,True,True +04021001100,8478.0,False,True +04021001200,4913.0,True,True +04021001301,7958.0,False,False +04021001303,1618.0,False,False +04021001304,9988.0,False,False +04021001305,6684.0,False,False +04021001306,5397.0,True,True +04021001403,5433.0,True,True +04021001404,4487.0,False,False +04021001405,4684.0,False,False +04021001406,5115.0,True,True +04021001407,2297.0,True,True +04021001408,2530.0,False,False +04021001500,4173.0,True,True +04021001600,6795.0,True,True +04021001701,923.0,False,False +04021001702,2494.0,False,False +04021001703,2214.0,True,True +04021001704,6693.0,False,False +04021001705,6975.0,False,False +04021001706,5261.0,False,False +04021001707,5278.0,False,False +04021001708,6338.0,False,False +04021001709,4945.0,False,False +04021001710,4951.0,False,False +04021001711,3495.0,False,False +04021001900,2643.0,True,True +04021002001,4396.0,True,True +04021002002,10070.0,True,True +04021002003,3850.0,True,True +04021002101,7549.0,True,True +04021002102,1249.0,True,True +04021002103,8068.0,False,False +04021002200,5326.0,False,True +04021002300,2673.0,False,False +04021002400,2461.0,True,True +04021941200,5750.0,True,True +04021941300,1913.0,True,True +04021941400,8806.0,True,True +04023966000,3078.0,False,False +04023966101,2368.0,False,False +04023966103,1100.0,True,True +04023966104,10593.0,True,True +04023966105,9247.0,True,True +04023966200,4695.0,True,True +04023966301,4687.0,True,True +04023966302,3300.0,True,True +04023966401,3113.0,True,True +04023966402,4299.0,True,True +04025000202,9138.0,False,False +04025000203,6080.0,False,False +04025000204,6877.0,True,True +04025000300,6133.0,False,False +04025000401,6889.0,False,False +04025000402,5122.0,False,False +04025000500,6010.0,False,False +04025000604,5177.0,False,False +04025000605,10605.0,False,False +04025000606,7179.0,True,True +04025000607,6007.0,False,False +04025000608,4200.0,False,False +04025000609,4884.0,True,True +04025000610,5136.0,True,True +04025000700,4354.0,True,True +04025000801,3319.0,False,False +04025000802,3494.0,False,False +04025000900,4504.0,True,True +04025001001,4927.0,False,False +04025001002,3395.0,False,False +04025001101,4387.0,False,False +04025001102,4383.0,False,False +04025001200,6415.0,False,False +04025001300,2080.0,False,False +04025001401,2791.0,True,True +04025001402,3576.0,True,True +04025001403,3654.0,False,False +04025001500,8679.0,False,True +04025001601,6605.0,True,True +04025001602,3992.0,True,True +04025001603,5293.0,True,True +04025001701,6207.0,False,False +04025001702,4580.0,False,False +04025001703,2896.0,False,False +04025001801,3534.0,False,False +04025001802,4754.0,False,False +04025001900,14518.0,False,False +04025002001,4934.0,True,True +04025002002,5089.0,True,True +04025002003,4548.0,True,True +04025002004,8929.0,False,False +04025002100,2793.0,True,True +04027000100,2173.0,True,True +04027000200,3419.0,True,True +04027000301,2838.0,True,True +04027000302,4492.0,True,True +04027000402,3234.0,True,True +04027000403,1158.0,True,True +04027000404,3634.0,True,True +04027000501,3137.0,False,False +04027000502,3120.0,False,False +04027000600,4973.0,True,True +04027000700,3752.0,True,True +04027000800,5185.0,True,False +04027000901,3252.0,True,False +04027000902,3078.0,False,False +04027000903,3684.0,False,False +04027000905,8028.0,False,False +04027000907,6936.0,False,False +04027000908,3722.0,False,False +04027001001,2325.0,True,True +04027001003,894.0,False,True +04027001004,2046.0,True,True +04027001100,5722.0,True,True +04027001200,3687.0,False,False +04027010905,3313.0,True,True +04027010907,5848.0,False,False +04027010910,1637.0,True,True +04027010911,6478.0,False,True +04027010913,1457.0,True,True +04027010914,684.0,True,True +04027011000,1848.0,True,True +04027011104,4177.0,True,True +04027011106,7999.0,False,False +04027011107,2446.0,False,False +04027011108,4184.0,False,False +04027011110,3142.0,False,False +04027011111,3504.0,True,True +04027011112,2779.0,False,False +04027011114,2393.0,True,True +04027011115,3228.0,True,True +04027011201,4634.0,True,True +04027011202,1608.0,True,True +04027011403,4389.0,True,True +04027011405,5962.0,True,True +04027011406,10510.0,True,True +04027011501,2289.0,True,True +04027011503,6117.0,True,True +04027011504,9619.0,True,True +04027011600,10005.0,True,True +04027011700,1522.0,False,True +04027011800,7980.0,True,True +04027012100,1117.0,False,False +04027980003,0.0,False,False +04027980004,0.0,False,False +04027980005,247.0,True,True +04027980006,3863.0,True,True +05001480100,1428.0,False,False +05001480200,1450.0,False,False +05001480300,2950.0,True,True +05001480400,2296.0,True,True +05001480500,3772.0,True,True +05001480600,1900.0,False,False +05001480700,2638.0,True,True +05001480800,1480.0,True,True +05003960100,1624.0,True,True +05003960200,2972.0,False,False +05003960300,4526.0,True,True +05003960400,1571.0,True,True +05003960500,2677.0,False,False +05003960600,5139.0,True,True +05003960700,1761.0,True,True +05005950100,4832.0,True,True +05005950200,4512.0,False,False +05005950300,4987.0,False,False +05005950400,3413.0,True,True +05005950500,4688.0,True,True +05005950600,3773.0,True,True +05005950700,3108.0,True,True +05005950800,6263.0,True,True +05005950900,5851.0,True,True +05007020101,5904.0,False,False +05007020102,7368.0,True,False +05007020201,4724.0,True,True +05007020203,3026.0,False,False +05007020205,6236.0,True,True +05007020206,7231.0,True,True +05007020301,4239.0,True,True +05007020302,4148.0,True,True +05007020304,3964.0,False,False +05007020305,4198.0,False,False +05007020401,7003.0,True,False +05007020402,5279.0,True,True +05007020404,5102.0,True,True +05007020405,3786.0,False,False +05007020501,5599.0,False,False +05007020503,4284.0,True,False +05007020504,3279.0,True,False +05007020603,10323.0,False,False +05007020604,4873.0,False,False +05007020605,4443.0,False,False +05007020606,4258.0,False,False +05007020701,5579.0,False,False +05007020703,5036.0,False,False +05007020704,4534.0,False,False +05007020801,4631.0,False,False +05007020803,4185.0,False,False +05007020805,4795.0,False,False +05007020806,6320.0,False,False +05007020901,10176.0,False,False +05007020902,7568.0,False,False +05007021001,5455.0,True,True +05007021002,7652.0,True,True +05007021101,4602.0,True,True +05007021102,3824.0,True,True +05007021201,5143.0,False,False +05007021202,3177.0,True,True +05007021301,7178.0,False,False +05007021304,9086.0,False,False +05007021305,6187.0,False,False +05007021306,4055.0,False,False +05007021308,5352.0,False,False +05007021310,9061.0,False,False +05007021311,8260.0,False,False +05007021404,3904.0,True,True +05007021405,2133.0,False,False +05007021406,5779.0,False,False +05007021407,4670.0,False,False +05007021408,5823.0,True,False +05007021409,2327.0,False,False +05009790100,6583.0,False,False +05009790200,6117.0,True,True +05009790300,5712.0,True,True +05009790400,5930.0,False,False +05009790501,3837.0,True,True +05009790502,3967.0,True,True +05009790600,5185.0,True,True +05011950100,2775.0,False,True +05011950200,1811.0,True,True +05011950300,2057.0,True,True +05011950400,1507.0,True,True +05011950500,2724.0,True,True +05013480100,2443.0,False,True +05013480200,2749.0,True,True +05015950100,2669.0,True,True +05015950200,5830.0,True,True +05015950300,7578.0,True,True +05015950400,4388.0,True,True +05015950500,7500.0,True,True +05017080100,3043.0,True,True +05017080200,2457.0,True,True +05017080300,2621.0,True,True +05017080400,2494.0,True,True +05019953601,5001.0,False,False +05019953602,4636.0,False,False +05019953700,4128.0,False,False +05019953800,3742.0,True,False +05019953900,4879.0,True,True +05021950100,1965.0,False,True +05021950200,2017.0,True,True +05021950300,2062.0,True,True +05021950400,3104.0,True,True +05021950500,2057.0,True,True +05021950600,3684.0,True,True +05023480100,4037.0,True,True +05023480201,1361.0,True,True +05023480202,3792.0,True,True +05023480300,5268.0,False,False +05023480400,4483.0,True,True +05023480501,2754.0,True,True +05023480502,3405.0,False,False +05025970100,4789.0,True,False +05025970200,3339.0,True,True +05027950100,4031.0,True,True +05027950200,4418.0,True,True +05027950300,4472.0,True,True +05027950400,6933.0,False,False +05027950500,3922.0,True,True +05029950100,5030.0,True,True +05029950200,3095.0,True,True +05029950300,5423.0,True,True +05029950400,2609.0,True,True +05029950500,2682.0,False,False +05029950600,2019.0,True,True +05031000101,3675.0,True,True +05031000102,3644.0,True,True +05031000200,4181.0,True,True +05031000300,7246.0,False,False +05031000401,5554.0,True,True +05031000402,8569.0,True,True +05031000501,7536.0,False,False +05031000502,5353.0,False,False +05031000601,6771.0,True,True +05031000602,6483.0,False,True +05031000700,7812.0,False,False +05031000801,8571.0,False,False +05031000802,7970.0,False,False +05031000900,5925.0,True,True +05031001000,3839.0,True,True +05031001100,9335.0,False,False +05031001200,4881.0,True,True +05033020100,5903.0,True,True +05033020201,5864.0,True,True +05033020203,8049.0,True,True +05033020204,5185.0,False,False +05033020301,4506.0,False,False +05033020302,4559.0,True,True +05033020401,5453.0,True,True +05033020402,4823.0,True,True +05033020501,4558.0,True,True +05033020502,4747.0,True,True +05033020600,9092.0,False,False +05035030101,2152.0,True,True +05035030102,2867.0,True,True +05035030201,5803.0,True,True +05035030202,3313.0,False,False +05035030301,3173.0,True,True +05035030302,2425.0,True,True +05035030501,615.0,True,True +05035030502,547.0,True,True +05035030600,4545.0,True,True +05035030701,1057.0,True,True +05035030702,1135.0,True,True +05035030703,2069.0,True,True +05035030803,1746.0,False,False +05035030804,3716.0,False,False +05035030805,2743.0,False,False +05035030806,3658.0,False,False +05035030807,1702.0,True,True +05035031000,1515.0,True,True +05035031100,2547.0,True,True +05035031200,1344.0,True,True +05037950100,892.0,True,True +05037950200,3276.0,True,True +05037950300,1395.0,True,True +05037950400,2827.0,False,False +05037950500,4442.0,True,True +05037950600,3992.0,False,False +05039970100,1291.0,False,False +05039970200,1841.0,True,True +05039970300,4147.0,True,True +05041950100,1260.0,True,True +05041950200,4177.0,True,True +05041950300,1438.0,True,True +05041950400,3068.0,True,True +05041950500,1766.0,True,True +05043490100,2179.0,False,False +05043490200,2476.0,True,True +05043490300,6445.0,False,False +05043490400,3088.0,True,True +05043490500,4229.0,True,True +05045030101,2881.0,False,False +05045030102,5519.0,False,False +05045030103,3388.0,False,False +05045030104,5611.0,False,False +05045030200,5658.0,True,True +05045030301,5781.0,False,False +05045030302,5875.0,False,False +05045030303,4750.0,True,True +05045030401,2274.0,False,False +05045030402,3869.0,False,False +05045030403,3857.0,True,True +05045030404,2907.0,False,False +05045030501,12365.0,False,False +05045030502,4566.0,False,False +05045030600,5544.0,False,False +05045030701,3773.0,False,True +05045030702,4122.0,True,True +05045030800,5879.0,False,False +05045030900,3504.0,True,True +05045031001,4653.0,False,False +05045031003,2463.0,True,True +05045031005,9269.0,False,False +05045031006,4143.0,False,False +05045031101,5642.0,True,True +05045031102,5331.0,False,False +05047950100,3912.0,True,True +05047950200,6786.0,True,True +05047950300,7040.0,True,True +05049550100,5245.0,True,True +05049550200,6986.0,True,True +05051010300,6239.0,True,True +05051010400,6767.0,True,True +05051010500,6635.0,True,True +05051010600,3571.0,True,True +05051010700,1835.0,True,True +05051010800,2471.0,False,True +05051010900,3345.0,True,True +05051011000,4850.0,True,True +05051011100,8782.0,False,False +05051011200,9202.0,False,False +05051011300,4958.0,True,True +05051011400,3372.0,True,True +05051011500,2285.0,True,True +05051011601,5236.0,False,False +05051011602,4967.0,False,False +05051011700,5547.0,True,True +05051011800,4512.0,True,True +05051011900,5567.0,False,False +05051012001,4568.0,True,True +05051012002,3846.0,False,False +05053470100,5332.0,False,False +05053470200,2986.0,False,False +05053470300,3817.0,True,True +05053470400,5991.0,True,True +05055480100,2977.0,True,True +05055480200,4193.0,False,False +05055480300,3600.0,False,False +05055480400,6706.0,True,False +05055480500,7280.0,True,True +05055480600,8236.0,False,False +05055480700,2018.0,True,True +05055480801,5425.0,False,False +05055480802,4502.0,False,False +05057480100,5056.0,True,True +05057480200,2489.0,False,False +05057480300,5026.0,True,True +05057480400,4474.0,True,True +05057480500,4797.0,True,True +05059020100,6975.0,False,False +05059020200,2899.0,True,True +05059020300,2240.0,True,True +05059020400,5610.0,True,True +05059020500,5958.0,True,True +05059020600,3713.0,False,False +05059020700,6202.0,True,True +05061950100,4054.0,True,True +05061950200,4739.0,True,True +05061950300,4518.0,True,True +05063490100,6525.0,True,True +05063490200,2574.0,False,False +05063490300,7050.0,True,True +05063490400,4346.0,True,True +05063490500,2528.0,False,False +05063490600,2870.0,True,True +05063490700,6778.0,True,True +05063490800,4756.0,True,True +05065960100,3304.0,True,True +05065960200,4183.0,True,True +05065960300,3681.0,True,True +05065960400,2402.0,True,True +05067480100,3684.0,True,True +05067480200,2984.0,True,True +05067480300,4020.0,True,True +05067480400,4596.0,True,True +05067480500,1743.0,True,True +05069000102,1657.0,False,False +05069000301,2945.0,False,False +05069000302,5607.0,False,False +05069000303,3360.0,True,True +05069000502,2818.0,False,True +05069000900,3126.0,True,True +05069001000,1193.0,True,True +05069001200,1626.0,True,True +05069001300,1544.0,True,True +05069001401,1808.0,True,True +05069001402,2235.0,True,True +05069001501,4171.0,True,True +05069001502,2854.0,True,True +05069001600,2741.0,True,True +05069001700,2367.0,True,True +05069001800,3119.0,True,True +05069001901,1322.0,True,True +05069001903,2019.0,True,True +05069002000,5402.0,False,False +05069002103,5042.0,False,False +05069002104,4506.0,False,False +05069002300,2935.0,True,True +05069002400,4068.0,False,False +05069002500,817.0,True,True +05071951700,4968.0,True,True +05071951800,5010.0,True,True +05071951900,3276.0,False,False +05071952000,4057.0,True,True +05071952100,3634.0,True,True +05071952200,5427.0,True,True +05073470100,4281.0,True,True +05073470200,2519.0,True,True +05075470100,1624.0,False,False +05075470200,4522.0,True,True +05075470300,1939.0,True,True +05075470400,1530.0,False,False +05075470501,2537.0,True,True +05075470502,4397.0,True,True +05077470100,2499.0,True,True +05077470200,1755.0,True,True +05077470300,3777.0,True,True +05077470400,1163.0,True,True +05079960300,2347.0,True,True +05079960400,3100.0,True,True +05079960500,1734.0,False,False +05079960600,6274.0,True,True +05081030101,2392.0,True,True +05081030102,4407.0,True,True +05081030200,2714.0,False,False +05081030300,2834.0,False,False +05083950100,4270.0,True,True +05083950200,3666.0,True,True +05083950300,3699.0,True,True +05083950400,3187.0,False,False +05083950500,4049.0,True,True +05083950600,2797.0,True,True +05085020101,8287.0,False,False +05085020102,6274.0,True,True +05085020103,6754.0,False,False +05085020104,7670.0,False,False +05085020201,3717.0,False,False +05085020202,3412.0,False,False +05085020204,5679.0,False,False +05085020205,4884.0,False,False +05085020206,4851.0,False,False +05085020301,4157.0,True,False +05085020302,3616.0,False,False +05085020400,3011.0,True,True +05085020500,4687.0,False,False +05085020600,1499.0,True,True +05085020700,2982.0,True,True +05085020800,1048.0,False,False +05087960100,3899.0,False,False +05087960200,3676.0,True,True +05087960300,5318.0,True,True +05087960400,3318.0,True,True +05089960100,4215.0,True,True +05089960201,3217.0,True,True +05089960202,3996.0,True,True +05089960300,5048.0,True,True +05091020100,4020.0,True,True +05091020200,2781.0,True,True +05091020400,2942.0,True,True +05091020500,2410.0,True,True +05091020600,2160.0,True,True +05091020701,3674.0,True,True +05091020702,3425.0,True,True +05091020801,2726.0,False,False +05091020802,2168.0,False,False +05091020900,8929.0,False,False +05091021000,8268.0,True,True +05091980000,69.0,False,False +05093010100,1376.0,True,True +05093010200,5229.0,True,True +05093010300,2815.0,True,True +05093010600,6354.0,True,True +05093010700,4023.0,False,False +05093010800,7052.0,True,True +05093010900,2329.0,True,True +05093011000,3873.0,True,True +05093011100,3064.0,True,True +05093011200,2051.0,True,True +05093011300,1737.0,True,True +05093011400,2223.0,False,False +05095950100,3218.0,True,True +05095950200,1918.0,True,True +05095950300,1914.0,True,True +05097953000,3083.0,True,True +05097953100,2172.0,True,True +05097953200,3695.0,True,True +05099090100,2687.0,True,True +05099090200,4128.0,True,True +05099090300,1536.0,True,True +05101180100,4012.0,True,True +05101180200,3800.0,True,True +05103950100,5338.0,False,True +05103950200,2581.0,True,True +05103950300,4897.0,True,True +05103950400,3214.0,True,True +05103950500,3823.0,True,True +05103950600,3977.0,True,True +05105952700,5087.0,False,False +05105952800,3359.0,True,True +05105952900,1909.0,False,False +05107480100,3027.0,True,True +05107480200,5028.0,True,True +05107480300,5697.0,True,True +05107480400,1564.0,True,True +05107480500,1783.0,True,True +05107480600,1507.0,True,True +05109953300,3746.0,True,False +05109953400,2193.0,True,True +05109953500,4817.0,True,True +05111490100,4442.0,True,True +05111490200,1710.0,False,False +05111490300,3111.0,True,True +05111490400,4387.0,False,False +05111490500,6474.0,True,True +05111490600,1601.0,True,True +05111490700,2171.0,True,True +05113950100,3539.0,True,True +05113950200,5765.0,True,True +05113950300,2983.0,True,True +05113950400,3014.0,True,True +05113950500,2030.0,True,True +05113950600,2763.0,True,True +05115950700,3841.0,True,True +05115950800,4660.0,True,True +05115950900,7337.0,False,False +05115951000,4414.0,True,True +05115951100,3895.0,True,True +05115951200,8554.0,False,False +05115951300,7989.0,True,True +05115951400,4918.0,False,True +05115951501,3394.0,False,False +05115951502,6052.0,True,True +05115951600,8707.0,True,True +05117460100,3679.0,True,True +05117460200,2480.0,True,True +05117460300,2030.0,True,True +05119000200,756.0,True,True +05119000500,1952.0,True,True +05119001100,1979.0,True,True +05119001200,1589.0,True,True +05119001300,2072.0,True,True +05119001501,4235.0,False,False +05119001502,3701.0,False,False +05119001600,6115.0,False,False +05119001800,4352.0,True,True +05119001900,3271.0,True,True +05119002001,5532.0,True,True +05119002002,4828.0,True,True +05119002102,5276.0,True,True +05119002103,3232.0,False,False +05119002104,4968.0,False,False +05119002203,5551.0,False,False +05119002204,6885.0,False,False +05119002206,3413.0,True,True +05119002208,2065.0,False,False +05119002209,3442.0,False,False +05119002403,4100.0,True,False +05119002405,5126.0,False,False +05119002406,2974.0,True,False +05119002407,1807.0,False,False +05119002408,7024.0,True,True +05119002500,1158.0,False,False +05119002600,1010.0,True,True +05119002700,7284.0,True,True +05119002800,2190.0,True,True +05119002900,993.0,True,True +05119003001,3050.0,True,True +05119003002,2759.0,True,True +05119003100,865.0,True,True +05119003202,7584.0,True,False +05119003205,0.0,False,False +05119003207,1904.0,False,False +05119003208,3590.0,True,False +05119003303,4856.0,False,False +05119003304,5674.0,False,False +05119003305,3919.0,True,False +05119003306,3481.0,False,False +05119003402,6733.0,False,False +05119003403,2840.0,False,False +05119003404,4050.0,False,False +05119003500,2924.0,False,False +05119003604,6853.0,False,False +05119003605,5056.0,True,True +05119003606,3078.0,True,True +05119003607,5295.0,True,True +05119003608,5320.0,True,True +05119003609,4363.0,True,False +05119003703,6784.0,False,False +05119003704,3851.0,False,False +05119003706,1036.0,False,False +05119003707,3879.0,False,False +05119003710,3211.0,False,False +05119003711,4936.0,False,False +05119003712,4290.0,False,False +05119003713,4247.0,False,False +05119003800,4035.0,True,True +05119003900,4285.0,False,False +05119004001,2023.0,True,True +05119004004,3585.0,True,True +05119004005,3162.0,True,True +05119004006,3841.0,True,True +05119004007,2819.0,True,True +05119004103,4639.0,True,True +05119004104,2147.0,True,True +05119004105,5796.0,True,True +05119004106,4818.0,True,True +05119004107,2883.0,True,True +05119004108,6169.0,True,True +05119004201,2644.0,False,False +05119004202,3788.0,False,False +05119004205,4233.0,False,False +05119004207,9751.0,False,False +05119004212,6856.0,False,False +05119004213,4649.0,False,False +05119004214,2891.0,False,False +05119004215,5504.0,False,False +05119004216,6827.0,False,False +05119004218,2959.0,False,False +05119004219,5524.0,False,False +05119004220,6894.0,True,False +05119004221,5320.0,False,False +05119004302,4982.0,False,False +05119004303,13181.0,False,False +05119004305,7498.0,False,False +05119004306,5609.0,False,False +05119004400,1556.0,True,True +05119004500,2121.0,True,True +05119004600,2247.0,True,True +05119004700,3207.0,True,True +05119004800,2963.0,False,False +05119004900,6253.0,False,False +05121960100,4245.0,True,True +05121960200,6014.0,True,True +05121960301,4110.0,True,True +05121960302,3326.0,True,True +05123960100,2691.0,True,True +05123960200,5763.0,True,True +05123960300,2540.0,True,True +05123960400,4543.0,True,True +05123960500,3118.0,True,True +05123960600,7245.0,True,True +05125010101,3913.0,False,False +05125010102,10363.0,False,False +05125010103,9749.0,False,False +05125010301,4772.0,False,False +05125010302,3848.0,False,False +05125010303,4082.0,False,False +05125010404,7612.0,False,False +05125010405,4583.0,False,False +05125010406,4994.0,False,False +05125010407,4711.0,False,False +05125010408,7053.0,False,False +05125010409,2869.0,True,True +05125010503,7173.0,False,False +05125010506,6892.0,False,False +05125010507,3378.0,False,False +05125010508,4522.0,False,False +05125010509,5001.0,False,False +05125010510,9779.0,False,False +05125010511,4982.0,False,False +05125010512,2900.0,False,False +05125010600,6239.0,True,True +05127950100,4638.0,True,True +05127950200,3924.0,True,True +05127950300,1814.0,True,True +05129970100,1905.0,True,True +05129970200,3701.0,True,True +05129970300,2302.0,True,True +05131000100,6746.0,True,True +05131000200,5424.0,True,True +05131000300,2336.0,True,True +05131000400,3878.0,True,True +05131000501,5693.0,True,True +05131000502,3322.0,True,False +05131000600,4916.0,False,False +05131000700,5569.0,True,False +05131000800,4322.0,True,True +05131001001,4958.0,True,True +05131001002,2131.0,False,False +05131001101,3792.0,False,False +05131001102,2931.0,True,True +05131001201,3489.0,False,False +05131001202,2558.0,True,True +05131001301,2651.0,False,False +05131001302,10117.0,True,True +05131001303,6815.0,False,False +05131001304,6954.0,False,False +05131001305,4521.0,False,False +05131010101,5948.0,False,False +05131010102,7026.0,False,False +05131010201,4777.0,False,False +05131010202,4019.0,True,True +05131010301,6090.0,False,False +05131010302,6608.0,True,True +05133080100,3581.0,False,False +05133080200,4379.0,True,True +05133080300,6581.0,True,True +05133080400,2540.0,True,True +05135470100,2098.0,True,True +05135470200,4963.0,True,True +05135470300,3900.0,True,True +05135470400,6178.0,True,True +05137950100,3732.0,True,True +05137950201,1620.0,True,True +05137950202,7123.0,True,True +05139950100,3040.0,True,True +05139950200,4028.0,True,True +05139950300,2117.0,True,True +05139950400,6112.0,True,True +05139950500,5883.0,False,True +05139950600,3551.0,True,True +05139950700,5077.0,True,True +05139950800,3193.0,False,False +05139950900,2527.0,True,True +05139951000,3921.0,True,True +05141460100,3517.0,True,True +05141460200,3783.0,True,True +05141460301,1796.0,True,True +05141460302,3504.0,True,True +05141460400,4042.0,True,True +05143010101,4389.0,True,True +05143010102,9491.0,False,False +05143010104,6284.0,False,False +05143010105,9533.0,False,False +05143010106,5981.0,False,False +05143010107,6023.0,False,False +05143010200,7885.0,True,True +05143010301,9970.0,True,True +05143010302,15439.0,True,True +05143010401,6660.0,True,True +05143010402,5026.0,True,True +05143010403,8168.0,True,True +05143010501,6367.0,False,False +05143010503,8851.0,False,False +05143010504,7312.0,False,False +05143010506,11279.0,False,False +05143010507,9086.0,False,False +05143010508,6770.0,False,False +05143010509,8745.0,False,False +05143010510,4952.0,False,False +05143010600,6848.0,False,False +05143010701,7539.0,False,True +05143010702,5883.0,False,False +05143011001,10011.0,False,False +05143011002,5240.0,True,True +05143011003,5145.0,False,False +05143011004,3272.0,True,True +05143011101,7921.0,True,True +05143011102,7550.0,False,False +05143011103,3918.0,False,False +05143011200,2081.0,True,True +05143011300,8670.0,False,False +05145070100,3992.0,True,True +05145070200,5290.0,True,True +05145070300,5207.0,True,True +05145070401,5573.0,False,False +05145070402,4292.0,False,False +05145070500,6642.0,True,True +05145070600,3870.0,True,True +05145070700,3661.0,False,False +05145070800,7337.0,False,False +05145070900,8394.0,False,False +05145071000,7416.0,False,False +05145071100,6411.0,True,True +05145071200,10677.0,True,True +05147490100,3983.0,True,True +05147490200,2550.0,True,True +05149952301,3184.0,True,True +05149952302,2926.0,True,True +05149952401,2927.0,True,True +05149952402,5461.0,True,True +05149952500,4329.0,True,True +05149952600,2637.0,True,True +06001400100,3120.0,False,False +06001400200,2007.0,False,False +06001400300,5051.0,False,False +06001400400,4007.0,False,False +06001400500,4124.0,False,False +06001400600,1745.0,False,False +06001400700,5128.0,False,False +06001400800,4069.0,False,False +06001400900,2471.0,False,False +06001401000,6133.0,False,False +06001401100,4287.0,False,False +06001401200,2619.0,False,False +06001401300,3921.0,True,True +06001401400,4732.0,True,True +06001401500,2839.0,False,False +06001401600,2289.0,True,True +06001401700,3018.0,False,False +06001401800,1801.0,False,False +06001402200,2477.0,True,True +06001402400,2866.0,False,True +06001402500,1781.0,True,True +06001402600,1243.0,True,True +06001402700,1890.0,False,True +06001402800,4480.0,True,True +06001402900,1406.0,True,True +06001403000,2905.0,True,True +06001403100,2101.0,True,True +06001403300,4178.0,True,True +06001403400,4340.0,False,False +06001403501,4492.0,True,True +06001403502,2044.0,False,False +06001403600,5570.0,False,False +06001403701,2968.0,False,False +06001403702,1930.0,False,False +06001403800,3351.0,False,False +06001403900,4051.0,False,False +06001404000,2895.0,False,False +06001404101,3017.0,False,False +06001404102,2653.0,False,False +06001404200,3877.0,False,False +06001404300,3443.0,False,False +06001404400,5628.0,False,False +06001404501,1809.0,False,False +06001404502,5891.0,False,False +06001404600,4625.0,False,False +06001404700,2137.0,False,False +06001404800,2647.0,False,False +06001404900,4197.0,False,False +06001405000,3394.0,False,False +06001405100,4285.0,False,False +06001405200,5183.0,False,False +06001405301,2954.0,False,False +06001405302,2373.0,True,True +06001405401,3648.0,False,True +06001405402,3357.0,True,True +06001405500,3880.0,False,False +06001405600,3269.0,False,False +06001405700,3531.0,False,False +06001405800,4370.0,True,True +06001405901,4426.0,True,True +06001405902,2942.0,True,True +06001406000,3796.0,True,True +06001406100,4733.0,True,True +06001406201,4995.0,True,True +06001406202,4817.0,True,True +06001406300,4383.0,False,True +06001406400,2545.0,True,True +06001406500,6586.0,True,True +06001406601,4955.0,True,True +06001406602,2698.0,True,True +06001406700,5159.0,False,False +06001406800,3611.0,False,False +06001406900,3608.0,False,False +06001407000,5869.0,False,True +06001407101,3821.0,True,True +06001407102,4387.0,True,True +06001407200,6985.0,True,True +06001407300,2420.0,True,True +06001407400,4531.0,True,True +06001407500,4299.0,True,True +06001407600,6327.0,False,False +06001407700,4122.0,False,False +06001407800,2728.0,False,False +06001407900,2873.0,False,False +06001408000,2700.0,False,False +06001408100,6320.0,False,False +06001408200,4570.0,False,False +06001408300,5047.0,False,True +06001408400,3201.0,True,True +06001408500,5977.0,True,True +06001408600,7096.0,True,True +06001408700,7909.0,True,True +06001408800,7149.0,True,True +06001408900,3546.0,True,True +06001409000,4687.0,True,True +06001409100,2490.0,True,True +06001409200,3672.0,True,True +06001409300,5303.0,True,True +06001409400,4780.0,True,True +06001409500,4128.0,True,True +06001409600,4978.0,True,True +06001409700,4991.0,True,True +06001409800,3516.0,False,False +06001409900,3642.0,False,False +06001410000,3242.0,False,False +06001410100,2667.0,False,False +06001410200,3630.0,False,False +06001410300,3857.0,True,True +06001410400,4477.0,False,False +06001410500,2705.0,True,True +06001420100,2440.0,False,False +06001420200,3332.0,False,False +06001420300,4977.0,False,False +06001420400,3062.0,False,False +06001420500,2557.0,False,False +06001420600,3436.0,False,False +06001421100,2084.0,False,False +06001421200,3594.0,False,False +06001421300,3873.0,False,False +06001421400,1634.0,False,False +06001421500,3694.0,False,False +06001421600,3617.0,False,False +06001421700,3492.0,False,False +06001421800,2144.0,False,False +06001421900,4171.0,False,False +06001422000,2156.0,False,False +06001422100,3073.0,False,False +06001422200,3237.0,False,False +06001422300,3643.0,False,False +06001422400,4487.0,False,False +06001422500,4400.0,False,False +06001422600,1043.0,False,False +06001422700,5266.0,False,False +06001422800,9064.0,False,False +06001422900,5761.0,False,False +06001423000,4962.0,False,False +06001423100,4413.0,False,False +06001423200,2982.0,False,False +06001423300,3504.0,False,False +06001423400,5163.0,False,False +06001423500,3426.0,False,False +06001423601,2671.0,False,False +06001423602,6528.0,False,False +06001423700,4148.0,False,False +06001423800,2986.0,False,False +06001423901,2054.0,False,False +06001423902,1605.0,False,False +06001424001,4027.0,False,False +06001424002,2583.0,False,False +06001425101,1659.0,False,False +06001425102,3906.0,False,False +06001425103,2795.0,False,False +06001425104,3539.0,False,False +06001426100,6521.0,False,False +06001426200,4796.0,False,False +06001427100,3975.0,False,False +06001427200,4180.0,False,False +06001427300,5346.0,False,False +06001427600,5200.0,False,False +06001427700,5201.0,False,False +06001427800,4954.0,False,False +06001427900,5052.0,False,False +06001428000,2877.0,False,False +06001428100,4839.0,False,False +06001428200,6606.0,False,False +06001428301,7277.0,False,False +06001428302,7424.0,False,False +06001428400,4568.0,False,False +06001428500,3097.0,False,False +06001428600,3454.0,False,False +06001428700,4472.0,False,False +06001430101,6842.0,False,False +06001430102,2424.0,False,False +06001430200,6878.0,False,False +06001430300,3826.0,False,False +06001430400,2107.0,False,False +06001430500,5987.0,False,False +06001430600,6486.0,False,False +06001430700,4170.0,False,False +06001430800,5282.0,False,False +06001430900,5309.0,False,False +06001431000,2777.0,False,False +06001431100,3561.0,False,False +06001431200,5574.0,False,False +06001432100,3574.0,False,False +06001432200,4078.0,False,False +06001432300,4744.0,False,False +06001432400,7003.0,False,False +06001432501,4854.0,False,True +06001432502,5178.0,False,True +06001432600,7043.0,False,False +06001432700,2816.0,False,False +06001432800,3979.0,False,False +06001433000,3654.0,False,True +06001433102,4485.0,False,False +06001433103,3523.0,False,False +06001433104,3724.0,False,True +06001433200,7991.0,True,True +06001433300,7761.0,False,True +06001433400,5934.0,False,True +06001433500,4830.0,False,True +06001433600,6094.0,False,True +06001433700,3503.0,False,False +06001433800,8179.0,False,True +06001433900,7685.0,True,True +06001434000,5334.0,True,True +06001435102,6189.0,False,False +06001435103,7420.0,False,False +06001435104,6117.0,False,True +06001435200,4659.0,False,False +06001435300,4739.0,False,False +06001435400,4538.0,False,False +06001435500,3983.0,False,False +06001435601,5662.0,False,True +06001435602,5453.0,False,True +06001435700,5231.0,False,True +06001435800,5543.0,False,False +06001435900,5371.0,False,False +06001436000,5063.0,False,False +06001436100,5977.0,False,True +06001436200,4266.0,False,True +06001436300,9444.0,False,True +06001436401,7173.0,False,False +06001436402,2704.0,False,False +06001436500,5375.0,False,True +06001436601,6938.0,False,True +06001436602,5113.0,False,True +06001436700,3265.0,False,False +06001436800,4382.0,False,False +06001436900,6745.0,False,True +06001437000,3493.0,False,False +06001437101,7867.0,False,False +06001437102,4521.0,False,True +06001437200,7489.0,False,False +06001437300,3277.0,False,False +06001437400,3485.0,False,False +06001437500,4531.0,False,True +06001437600,3536.0,False,True +06001437701,3773.0,False,True +06001437702,4295.0,True,True +06001437800,4997.0,False,False +06001437900,2321.0,False,True +06001438000,3952.0,False,False +06001438100,8307.0,False,False +06001438201,5144.0,False,False +06001438203,3888.0,False,True +06001438204,5838.0,False,False +06001438300,3767.0,False,False +06001438400,2757.0,False,False +06001440100,2799.0,False,False +06001440200,6125.0,False,False +06001440301,7596.0,False,False +06001440304,5035.0,False,True +06001440305,4190.0,False,False +06001440306,4322.0,False,False +06001440307,4748.0,False,False +06001440308,6171.0,False,False +06001440331,3276.0,False,False +06001440332,3505.0,False,False +06001440333,2982.0,False,False +06001440334,4414.0,False,False +06001440335,7051.0,False,False +06001440336,4437.0,False,False +06001441100,4625.0,False,False +06001441200,7277.0,False,False +06001441301,3301.0,False,False +06001441302,5937.0,False,False +06001441401,8082.0,False,False +06001441402,5407.0,False,False +06001441501,6546.0,False,False +06001441503,8013.0,False,False +06001441521,6175.0,False,False +06001441522,5233.0,False,False +06001441523,4418.0,False,False +06001441524,4215.0,False,False +06001441601,4982.0,False,False +06001441602,8113.0,False,True +06001441700,8527.0,False,False +06001441800,7543.0,False,False +06001441921,3909.0,False,False +06001441923,6250.0,False,False +06001441924,7481.0,False,False +06001441925,7291.0,False,False +06001441926,4595.0,False,False +06001441927,4492.0,False,False +06001442000,3419.0,False,False +06001442100,5462.0,False,False +06001442200,7473.0,False,False +06001442301,5496.0,False,False +06001442302,6366.0,False,False +06001442400,6822.0,False,False +06001442500,7374.0,False,True +06001442601,4160.0,False,False +06001442602,5059.0,False,False +06001442700,3048.0,False,False +06001442800,2952.0,False,False +06001442900,7761.0,False,False +06001443001,2891.0,False,False +06001443002,6930.0,False,True +06001443102,5065.0,False,False +06001443103,4107.0,False,False +06001443104,5620.0,False,False +06001443105,4785.0,False,False +06001443200,4053.0,False,False +06001443301,4355.0,False,False +06001443321,3368.0,False,False +06001443322,3308.0,False,False +06001444100,7556.0,False,False +06001444200,7112.0,False,False +06001444301,3973.0,False,False +06001444302,5185.0,False,False +06001444400,5477.0,False,False +06001444500,7518.0,False,False +06001444601,5787.0,False,False +06001444602,4563.0,False,False +06001450101,5750.0,False,False +06001450102,5664.0,False,False +06001450200,5244.0,False,False +06001450300,5212.0,False,False +06001450400,7286.0,False,False +06001450501,3156.0,False,False +06001450502,5490.0,False,False +06001450601,3641.0,False,False +06001450602,10265.0,False,False +06001450603,5155.0,False,False +06001450604,5505.0,False,False +06001450605,3893.0,False,False +06001450606,6254.0,False,False +06001450607,5717.0,False,False +06001450701,8596.0,False,False +06001450741,5852.0,False,False +06001450742,5436.0,False,False +06001450743,6684.0,False,False +06001450744,6273.0,False,False +06001450745,6712.0,False,False +06001450746,3525.0,False,False +06001450750,5630.0,False,False +06001450751,11119.0,False,False +06001450752,7343.0,False,False +06001451101,8692.0,False,False +06001451102,4003.0,False,False +06001451201,7695.0,False,False +06001451202,5188.0,False,False +06001451300,6903.0,False,False +06001451401,6191.0,False,False +06001451403,2308.0,False,False +06001451404,7094.0,False,False +06001451501,4693.0,False,False +06001451503,6182.0,False,False +06001451504,1709.0,False,False +06001451505,3418.0,False,False +06001451506,3385.0,False,False +06001451601,5362.0,False,False +06001451602,6809.0,False,False +06001451701,3112.0,False,False +06001451703,4080.0,False,False +06001451704,4519.0,False,False +06001981900,58.0,False,False +06001982000,63.0,False,True +06001983200,583.0,False,False +06001990000,0.0,False,False +06003010000,1039.0,True,True +06005000101,3908.0,False,False +06005000102,1982.0,True,True +06005000200,4748.0,False,False +06005000301,5105.0,False,False +06005000303,5623.0,False,False +06005000304,4597.0,False,False +06005000401,4675.0,False,False +06005000402,4639.0,False,False +06005000500,3152.0,False,False +06007000102,4032.0,False,False +06007000103,5393.0,False,False +06007000104,5517.0,False,False +06007000201,4075.0,False,False +06007000202,3703.0,False,False +06007000300,4764.0,True,True +06007000401,4186.0,False,False +06007000402,7973.0,False,False +06007000501,4793.0,False,False +06007000502,4402.0,False,True +06007000601,3530.0,False,False +06007000603,3681.0,False,True +06007000604,4245.0,False,False +06007000700,4626.0,False,False +06007000800,5664.0,False,False +06007000901,2656.0,False,False +06007000903,6697.0,False,False +06007000904,7107.0,False,False +06007001000,4122.0,False,False +06007001100,4388.0,False,False +06007001200,3706.0,False,False +06007001300,3689.0,True,True +06007001400,6088.0,False,False +06007001500,5834.0,False,False +06007001600,4753.0,False,False +06007001702,5727.0,False,False +06007001703,2731.0,True,True +06007001704,3583.0,True,True +06007001800,4356.0,True,True +06007001900,2625.0,False,False +06007002000,4974.0,False,False +06007002100,3603.0,True,True +06007002200,5138.0,True,True +06007002300,4263.0,False,False +06007002400,4660.0,True,True +06007002500,5946.0,True,True +06007002601,2599.0,False,False +06007002602,3628.0,True,True +06007002700,5953.0,True,True +06007002800,3883.0,True,True +06007002900,2907.0,True,True +06007003001,2553.0,True,True +06007003002,3158.0,True,True +06007003100,4573.0,False,False +06007003200,4210.0,True,True +06007003300,4083.0,True,True +06007003400,3681.0,False,False +06007003501,3773.0,False,True +06007003502,4495.0,False,False +06007003600,4202.0,False,False +06007003700,4889.0,True,True +06009000120,4694.0,False,False +06009000121,4483.0,False,False +06009000122,3560.0,False,False +06009000210,11100.0,False,False +06009000220,6795.0,False,False +06009000300,7496.0,True,True +06009000400,2722.0,True,True +06009000501,2776.0,False,False +06009000503,1431.0,False,False +06009000504,457.0,False,False +06011000100,5647.0,False,True +06011000200,5027.0,False,False +06011000300,5963.0,True,True +06011000400,2252.0,True,True +06011000500,2565.0,False,False +06013301000,5150.0,False,False +06013302005,7290.0,True,True +06013302006,3775.0,False,False +06013302007,6652.0,False,False +06013302008,8781.0,False,False +06013302009,7279.0,False,False +06013302010,11767.0,False,False +06013303102,9625.0,False,False +06013303103,12652.0,False,False +06013303201,12171.0,False,False +06013303202,7439.0,False,False +06013303203,10070.0,False,False +06013303204,4751.0,False,False +06013303205,8931.0,False,False +06013304001,5272.0,False,False +06013304002,1463.0,False,False +06013304003,3793.0,False,False +06013304004,4114.0,False,False +06013304005,8766.0,False,False +06013305000,6561.0,True,True +06013306002,3837.0,False,False +06013306003,5193.0,False,True +06013306004,3616.0,False,False +06013307101,4516.0,False,False +06013307102,5330.0,True,True +06013307201,3803.0,True,True +06013307202,4299.0,True,True +06013307204,4386.0,False,False +06013307205,7557.0,True,True +06013308001,7653.0,False,True +06013308002,4472.0,False,False +06013309000,3546.0,False,False +06013310000,6257.0,True,True +06013311000,5329.0,True,True +06013312000,2243.0,True,True +06013313101,7178.0,True,True +06013313102,4595.0,False,True +06013313103,8866.0,False,False +06013313203,3456.0,False,False +06013313204,5538.0,False,False +06013313205,1696.0,False,False +06013313206,6377.0,False,False +06013314102,6561.0,False,True +06013314103,5629.0,True,True +06013314104,9278.0,False,True +06013314200,7748.0,True,True +06013315000,3862.0,False,False +06013316000,1055.0,True,True +06013317000,2040.0,False,False +06013318000,3734.0,False,False +06013319000,8558.0,False,False +06013320001,3671.0,False,False +06013320003,2721.0,False,False +06013320004,6587.0,False,False +06013321101,6654.0,False,False +06013321102,6913.0,False,False +06013321103,4739.0,False,False +06013321200,5634.0,False,False +06013322000,6250.0,False,False +06013323000,4476.0,False,False +06013324001,5480.0,False,False +06013324002,5247.0,False,False +06013325000,6300.0,False,False +06013326000,3810.0,False,False +06013327000,7430.0,False,False +06013328000,2340.0,False,True +06013329000,6115.0,False,False +06013330000,5592.0,False,False +06013331000,7360.0,False,False +06013332000,8763.0,False,False +06013333101,4441.0,False,False +06013333102,4274.0,False,False +06013333200,6070.0,False,False +06013334001,3914.0,False,False +06013334004,7945.0,False,False +06013334006,4755.0,False,False +06013334200,7652.0,False,False +06013335000,3483.0,False,False +06013336101,5236.0,True,True +06013336102,7319.0,True,True +06013336201,4056.0,False,True +06013336202,6222.0,True,True +06013337100,3403.0,False,False +06013337200,8470.0,False,False +06013337300,6097.0,False,False +06013338101,5352.0,False,True +06013338102,3600.0,False,False +06013338201,4144.0,False,False +06013338203,5685.0,False,False +06013338204,6817.0,False,False +06013338301,2990.0,False,False +06013338302,5996.0,False,False +06013339001,3694.0,False,False +06013339002,6934.0,False,False +06013340001,6154.0,False,False +06013340002,7789.0,False,False +06013341000,5240.0,False,False +06013343001,4850.0,False,False +06013343002,4859.0,False,False +06013343003,3969.0,False,False +06013345101,5781.0,False,False +06013345102,3907.0,False,False +06013345103,4992.0,False,False +06013345105,6525.0,False,False +06013345108,7299.0,False,False +06013345111,5217.0,False,False +06013345112,6455.0,False,False +06013345113,4548.0,False,False +06013345114,6687.0,False,False +06013345115,5910.0,False,False +06013345116,2794.0,False,False +06013345202,7688.0,False,False +06013345203,6743.0,False,False +06013345204,3763.0,False,False +06013346101,3404.0,False,False +06013346102,5610.0,False,False +06013346201,7859.0,False,False +06013346203,4123.0,False,False +06013346204,7708.0,False,False +06013347000,6426.0,False,False +06013348000,5066.0,False,False +06013349000,5554.0,False,False +06013350000,6111.0,False,False +06013351101,2683.0,False,False +06013351102,3791.0,False,False +06013351103,2012.0,False,False +06013351200,6292.0,False,False +06013352101,3406.0,False,False +06013352102,5669.0,False,False +06013352201,6658.0,False,False +06013352202,2758.0,False,False +06013353001,4008.0,False,False +06013353002,4397.0,False,False +06013354001,2136.0,False,False +06013354002,7169.0,False,False +06013355107,5361.0,False,False +06013355108,13457.0,False,False +06013355109,7559.0,False,False +06013355110,4447.0,False,False +06013355111,6218.0,False,False +06013355112,5687.0,False,False +06013355113,4947.0,False,False +06013355114,11848.0,False,False +06013355115,7981.0,False,False +06013355116,8933.0,False,False +06013355117,7292.0,False,False +06013355200,11140.0,False,False +06013355301,8635.0,False,False +06013355302,3515.0,False,False +06013355304,8763.0,False,False +06013355306,5315.0,False,False +06013356001,4379.0,False,False +06013356002,5522.0,False,False +06013357000,3317.0,False,False +06013358000,6285.0,False,False +06013359102,5982.0,False,False +06013359103,5237.0,False,False +06013359104,2086.0,False,False +06013359105,5006.0,False,False +06013359202,6043.0,False,False +06013359203,7248.0,False,False +06013359204,4915.0,False,False +06013360101,4405.0,False,False +06013360102,4115.0,False,False +06013360200,5173.0,False,False +06013361000,5093.0,False,False +06013362000,2798.0,False,False +06013363000,7408.0,False,False +06013364002,5531.0,False,False +06013365002,5590.0,True,True +06013365003,5164.0,False,False +06013366001,4514.0,False,True +06013366002,6627.0,False,True +06013367100,5342.0,False,True +06013367200,6042.0,False,False +06013368001,4817.0,True,True +06013368002,3782.0,False,True +06013369001,7254.0,True,True +06013369002,3045.0,False,False +06013370000,2850.0,False,False +06013371000,5960.0,False,True +06013372000,7541.0,False,True +06013373000,4468.0,True,True +06013374000,4752.0,True,True +06013375000,4897.0,True,True +06013376000,6245.0,True,True +06013377000,7323.0,False,True +06013378000,3327.0,False,False +06013379000,7003.0,True,True +06013380000,5931.0,False,False +06013381000,6521.0,True,True +06013382000,8159.0,True,True +06013383000,4877.0,False,False +06013384000,3913.0,False,False +06013385100,2940.0,False,False +06013385200,1308.0,False,False +06013386000,3538.0,False,True +06013387000,2928.0,False,False +06013388000,2741.0,False,False +06013389100,2271.0,False,False +06013389200,1779.0,False,False +06013390100,2454.0,False,False +06013390200,1797.0,False,False +06013391000,2676.0,False,False +06013392000,2653.0,False,False +06013392200,11304.0,False,False +06013392300,3126.0,False,False +06013990000,0.0,False,False +06015000101,4101.0,True,True +06015000102,3302.0,True,True +06015000104,2428.0,True,True +06015000105,6714.0,False,False +06015000201,6108.0,True,False +06015000202,3591.0,False,False +06015000203,1251.0,True,True +06015990000,0.0,False,False +06017030200,5591.0,False,False +06017030301,2712.0,False,False +06017030302,2859.0,True,True +06017030401,3011.0,False,False +06017030402,4368.0,False,False +06017030502,2551.0,False,False +06017030504,2460.0,False,False +06017030505,2398.0,False,False +06017030601,5446.0,False,False +06017030602,7911.0,True,True +06017030603,3668.0,False,False +06017030701,6167.0,False,False +06017030704,9602.0,False,False +06017030706,6492.0,False,False +06017030709,4697.0,False,False +06017030710,5029.0,False,False +06017030801,4712.0,False,False +06017030803,7443.0,False,False +06017030804,6779.0,False,False +06017030807,4008.0,False,False +06017030808,6266.0,False,False +06017030809,2497.0,False,False +06017030810,3915.0,False,False +06017030901,3251.0,False,False +06017030902,4818.0,False,False +06017031000,6284.0,False,False +06017031100,5326.0,False,False +06017031200,5138.0,False,False +06017031301,3495.0,False,False +06017031302,4562.0,True,True +06017031402,5889.0,False,False +06017031404,2475.0,False,False +06017031405,2500.0,False,False +06017031406,5635.0,False,False +06017031502,5953.0,False,False +06017031503,2467.0,False,False +06017031504,5906.0,False,False +06017031600,3326.0,True,True +06017031700,3078.0,False,False +06017031800,6895.0,False,False +06017031900,94.0,False,False +06017032000,889.0,False,False +06017990000,0.0,False,False +06019000100,3676.0,True,True +06019000200,2689.0,True,True +06019000300,4225.0,True,True +06019000400,5498.0,True,True +06019000501,2532.0,True,True +06019000502,3594.0,True,True +06019000600,4750.0,True,True +06019000700,3664.0,True,True +06019000800,1292.0,True,True +06019000901,2759.0,True,True +06019000902,5191.0,True,True +06019001000,4255.0,True,True +06019001100,2780.0,True,True +06019001201,5935.0,True,True +06019001202,4561.0,True,True +06019001301,5342.0,True,True +06019001303,2420.0,True,True +06019001304,5383.0,True,True +06019001407,4798.0,True,True +06019001408,2677.0,False,True +06019001409,2174.0,False,False +06019001410,12169.0,False,False +06019001411,6926.0,True,True +06019001412,2979.0,False,False +06019001413,6823.0,False,False +06019001414,8555.0,False,False +06019001500,2407.0,True,True +06019001600,5177.0,True,True +06019001700,6945.0,False,True +06019001800,4837.0,True,True +06019001900,2868.0,True,True +06019002000,6284.0,True,True +06019002100,6200.0,True,True +06019002200,3617.0,True,True +06019002300,3559.0,True,True +06019002400,4401.0,True,True +06019002501,4720.0,True,True +06019002502,4577.0,True,True +06019002601,4971.0,True,True +06019002602,3480.0,True,True +06019002701,4209.0,True,True +06019002702,4891.0,True,True +06019002800,4435.0,True,True +06019002903,3791.0,True,True +06019002904,3132.0,True,True +06019002905,3046.0,True,True +06019002906,5229.0,True,True +06019003001,3241.0,True,True +06019003003,4366.0,True,True +06019003004,2412.0,True,True +06019003102,7558.0,True,True +06019003103,5339.0,True,True +06019003104,4159.0,True,True +06019003201,5151.0,True,True +06019003202,5745.0,True,True +06019003301,3179.0,True,True +06019003302,4666.0,True,True +06019003400,5456.0,True,True +06019003500,4901.0,True,True +06019003600,4528.0,False,False +06019003701,3462.0,True,True +06019003702,4581.0,True,True +06019003803,10542.0,False,True +06019003804,6349.0,True,True +06019003805,7392.0,True,True +06019003807,3496.0,True,True +06019003808,5042.0,False,True +06019003809,5362.0,False,True +06019003810,5704.0,False,False +06019003900,6477.0,True,True +06019004001,8458.0,False,True +06019004002,7209.0,True,True +06019004100,3404.0,True,True +06019004205,6153.0,True,True +06019004207,11921.0,False,False +06019004208,7367.0,False,False +06019004210,3702.0,False,False +06019004211,6982.0,False,False +06019004212,12379.0,True,True +06019004213,3324.0,False,True +06019004214,4570.0,False,False +06019004215,4557.0,False,False +06019004216,3454.0,False,False +06019004301,4129.0,False,False +06019004302,5243.0,False,False +06019004303,4526.0,False,False +06019004404,3152.0,True,True +06019004405,3663.0,False,False +06019004406,5328.0,False,False +06019004408,3566.0,False,False +06019004409,3232.0,False,False +06019004503,5176.0,False,False +06019004504,5245.0,True,True +06019004505,5425.0,True,True +06019004506,3254.0,False,False +06019004601,3136.0,False,False +06019004602,2837.0,False,False +06019004701,6923.0,True,True +06019004703,4130.0,True,True +06019004704,5345.0,True,True +06019004801,4811.0,True,True +06019004802,4448.0,True,True +06019004901,4057.0,True,True +06019004902,2233.0,True,True +06019005000,4548.0,True,True +06019005100,6799.0,True,True +06019005202,3050.0,True,True +06019005203,5107.0,True,True +06019005204,4299.0,True,True +06019005301,6018.0,False,False +06019005302,5355.0,True,True +06019005304,5365.0,False,False +06019005305,3648.0,True,True +06019005403,4872.0,True,True +06019005405,4693.0,False,False +06019005406,4192.0,False,False +06019005407,3476.0,False,False +06019005408,2268.0,False,False +06019005409,3328.0,False,False +06019005410,3536.0,False,False +06019005503,5706.0,False,False +06019005504,3384.0,False,False +06019005505,7095.0,False,False +06019005507,5503.0,False,False +06019005508,5671.0,False,False +06019005509,5128.0,False,False +06019005510,4983.0,False,False +06019005512,5376.0,False,False +06019005513,2995.0,False,False +06019005514,4041.0,False,False +06019005515,1820.0,False,False +06019005516,6180.0,False,False +06019005517,7978.0,False,False +06019005518,5790.0,False,False +06019005520,2997.0,False,False +06019005522,4860.0,False,False +06019005524,4660.0,False,False +06019005525,1041.0,False,False +06019005602,4991.0,True,True +06019005605,1745.0,False,False +06019005606,4010.0,False,False +06019005607,4688.0,True,True +06019005608,3137.0,True,True +06019005701,3582.0,False,False +06019005702,5254.0,False,False +06019005703,5199.0,False,False +06019005704,5186.0,True,True +06019005801,4699.0,False,False +06019005802,4800.0,False,False +06019005804,6940.0,False,False +06019005805,6416.0,False,False +06019005904,6398.0,False,False +06019005905,7435.0,False,False +06019005906,2427.0,False,False +06019005907,3485.0,False,False +06019005909,8035.0,False,False +06019005911,6018.0,False,False +06019005912,5865.0,False,False +06019006000,9788.0,True,True +06019006100,8126.0,True,True +06019006201,2357.0,True,True +06019006202,6202.0,True,True +06019006300,7507.0,False,False +06019006402,2779.0,False,False +06019006403,6101.0,False,False +06019006404,4731.0,False,False +06019006405,5217.0,False,False +06019006501,6871.0,True,True +06019006502,4810.0,True,True +06019006602,6083.0,True,True +06019006603,2312.0,True,True +06019006604,7768.0,True,True +06019006700,6345.0,True,True +06019006802,3339.0,True,True +06019006900,3293.0,True,True +06019007002,4943.0,True,True +06019007003,8061.0,True,True +06019007004,5813.0,True,True +06019007100,7637.0,True,True +06019007201,8196.0,False,False +06019007202,5144.0,False,False +06019007300,4325.0,True,True +06019007400,3407.0,True,True +06019007500,5068.0,True,True +06019007600,4273.0,True,True +06019007700,5221.0,True,True +06019007801,2731.0,True,True +06019007802,5354.0,True,True +06019007901,3251.0,True,True +06019007902,2952.0,True,False +06019008000,5360.0,False,False +06019008100,6532.0,True,True +06019008200,6768.0,True,True +06019008301,6009.0,True,True +06019008302,7406.0,True,True +06019008401,8857.0,True,True +06019008402,980.0,True,True +06019008501,4420.0,True,True +06019008502,9242.0,True,True +06021010100,8712.0,True,True +06021010200,5018.0,False,False +06021010300,1956.0,False,False +06021010400,7118.0,True,True +06021010501,3578.0,True,True +06021010502,1594.0,False,False +06023000100,4242.0,True,True +06023000200,5428.0,False,False +06023000300,5788.0,True,False +06023000400,4304.0,True,False +06023000500,4450.0,True,True +06023000600,4998.0,False,False +06023000700,5316.0,False,False +06023000800,5229.0,False,False +06023000900,5229.0,False,False +06023001000,6338.0,False,True +06023001101,6841.0,False,False +06023001200,4675.0,False,False +06023001300,1320.0,True,True +06023010102,2423.0,False,False +06023010200,2775.0,True,True +06023010300,3346.0,False,False +06023010400,3659.0,False,False +06023010501,7876.0,False,False +06023010502,6308.0,True,False +06023010600,1902.0,False,False +06023010700,7741.0,False,False +06023010800,4606.0,True,False +06023010901,4655.0,True,True +06023010902,4179.0,False,False +06023011000,4687.0,True,False +06023011100,4347.0,True,True +06023011200,3309.0,False,False +06023011500,3241.0,False,False +06023011600,3465.0,True,True +06023940000,3263.0,True,True +06023990100,0.0,False,False +06025010101,4137.0,True,True +06025010102,4108.0,True,True +06025010200,2728.0,True,True +06025010300,1046.0,True,True +06025010400,7303.0,True,True +06025010500,7421.0,True,True +06025010600,6910.0,True,True +06025010700,4409.0,True,True +06025010800,1128.0,False,True +06025010900,7497.0,True,True +06025011000,14848.0,False,True +06025011100,4219.0,True,True +06025011201,6221.0,False,True +06025011202,5626.0,True,True +06025011300,11695.0,True,True +06025011400,4570.0,True,True +06025011500,6227.0,True,True +06025011600,5728.0,True,True +06025011700,5243.0,True,True +06025011801,4423.0,False,False +06025011802,5336.0,True,True +06025011803,6106.0,False,False +06025011900,11456.0,True,True +06025012001,3884.0,True,True +06025012002,10765.0,False,True +06025012100,6779.0,True,True +06025012200,7237.0,True,True +06025012301,4984.0,False,True +06025012302,6290.0,True,True +06025012400,713.0,True,True +06025940000,1664.0,True,True +06027000100,2754.0,False,False +06027000200,1878.0,False,False +06027000300,2541.0,False,False +06027000400,5466.0,False,False +06027000500,2284.0,False,False +06027000800,3054.0,True,True +06029000101,12972.0,True,True +06029000102,3349.0,True,True +06029000200,7448.0,True,True +06029000300,5322.0,True,True +06029000400,4300.0,True,True +06029000503,8331.0,False,False +06029000504,4977.0,False,True +06029000505,3806.0,False,False +06029000506,2371.0,False,False +06029000507,3736.0,False,False +06029000600,7491.0,True,True +06029000700,5562.0,False,False +06029000800,5451.0,True,True +06029000902,3411.0,True,True +06029000903,4046.0,True,True +06029000904,4667.0,True,True +06029000905,2721.0,False,True +06029000906,4518.0,True,True +06029000907,2521.0,True,True +06029000908,5104.0,False,False +06029000909,2728.0,False,False +06029000910,11403.0,False,False +06029001000,10642.0,True,True +06029001101,6282.0,True,True +06029001102,6840.0,True,True +06029001103,5400.0,True,True +06029001201,2936.0,True,True +06029001202,6049.0,True,True +06029001300,7114.0,True,True +06029001400,8000.0,True,True +06029001500,2586.0,True,True +06029001600,1967.0,True,True +06029001700,3739.0,False,False +06029001801,5614.0,True,True +06029001802,5613.0,False,False +06029001901,3697.0,False,False +06029001902,4595.0,True,True +06029002000,6941.0,True,True +06029002100,3190.0,True,True +06029002200,5633.0,True,True +06029002301,10772.0,True,True +06029002302,3803.0,True,True +06029002400,8384.0,True,True +06029002500,9052.0,True,True +06029002600,3477.0,True,True +06029002700,5903.0,True,True +06029002804,2510.0,False,False +06029002806,2112.0,False,False +06029002807,3713.0,False,False +06029002808,7110.0,False,False +06029002811,3437.0,False,False +06029002812,5021.0,True,True +06029002813,4412.0,True,True +06029002814,4038.0,True,True +06029002815,4006.0,True,True +06029002816,5837.0,True,True +06029002817,5373.0,True,True +06029002818,4050.0,False,False +06029002819,4782.0,False,False +06029002820,6506.0,False,False +06029002821,4850.0,False,False +06029002900,7424.0,True,True +06029003000,7552.0,True,True +06029003103,4084.0,True,True +06029003112,5221.0,True,True +06029003113,4993.0,True,True +06029003114,7835.0,True,True +06029003115,4816.0,True,True +06029003121,8339.0,True,True +06029003122,7970.0,True,True +06029003123,18877.0,False,False +06029003124,6123.0,False,False +06029003202,18784.0,True,True +06029003203,2260.0,False,False +06029003204,11455.0,False,False +06029003205,10285.0,False,False +06029003206,21438.0,False,False +06029003303,1521.0,True,True +06029003304,3358.0,True,True +06029003305,3487.0,True,True +06029003306,4199.0,False,True +06029003400,4762.0,True,True +06029003500,8292.0,True,True +06029003600,4194.0,True,True +06029003700,3415.0,True,True +06029003803,8602.0,False,False +06029003804,16789.0,False,False +06029003805,9244.0,False,False +06029003806,5167.0,False,False +06029003807,3745.0,False,False +06029003808,4495.0,False,False +06029003809,12184.0,False,False +06029003810,2811.0,False,False +06029003811,2723.0,False,False +06029003812,4405.0,False,False +06029003813,8070.0,False,False +06029003900,1963.0,True,True +06029004000,9516.0,True,True +06029004101,5476.0,True,True +06029004102,5253.0,True,True +06029004200,1448.0,True,True +06029004301,8948.0,True,True +06029004302,5571.0,True,True +06029004401,8342.0,True,True +06029004402,4436.0,True,True +06029004500,2635.0,True,True +06029004601,3267.0,True,True +06029004603,2231.0,True,True +06029004604,14840.0,True,True +06029004701,11517.0,True,True +06029004702,3761.0,True,True +06029004800,9530.0,True,True +06029004901,5863.0,True,True +06029004902,8674.0,False,True +06029005003,3797.0,True,True +06029005004,7061.0,True,True +06029005103,2437.0,False,False +06029005104,4220.0,False,False +06029005201,4522.0,True,True +06029005203,4942.0,True,True +06029005204,5963.0,True,True +06029005300,1993.0,True,True +06029005401,6255.0,False,False +06029005402,5027.0,False,False +06029005403,9119.0,False,False +06029005404,6819.0,False,False +06029005501,6015.0,False,False +06029005506,5964.0,False,False +06029005507,7067.0,True,True +06029005508,4414.0,True,True +06029005600,2221.0,True,True +06029005700,2827.0,False,False +06029005801,6604.0,False,False +06029005802,9479.0,True,True +06029005900,3394.0,True,True +06029006002,4228.0,False,False +06029006003,6018.0,True,True +06029006004,1225.0,True,True +06029006006,3878.0,False,False +06029006007,6245.0,True,True +06029006008,6011.0,False,False +06029006100,8240.0,True,True +06029006201,2923.0,True,True +06029006202,8427.0,True,True +06029006301,4074.0,True,True +06029006303,5922.0,True,True +06029006304,4395.0,True,True +06029006401,7230.0,True,True +06029006403,6603.0,True,True +06029006404,3170.0,True,True +06029006500,4501.0,True,True +06031000100,3053.0,False,True +06031000200,2287.0,True,True +06031000300,6858.0,False,False +06031000402,5976.0,False,False +06031000403,5007.0,False,False +06031000404,10622.0,False,False +06031000405,6796.0,True,True +06031000500,5358.0,True,True +06031000601,9844.0,False,False +06031000602,5962.0,False,False +06031000701,5656.0,False,False +06031000702,4342.0,False,True +06031000800,5055.0,True,True +06031000900,7956.0,True,True +06031001001,4519.0,False,False +06031001002,5094.0,True,True +06031001003,6811.0,True,True +06031001100,6631.0,True,True +06031001200,2445.0,True,True +06031001300,4811.0,True,True +06031001401,2646.0,True,True +06031001402,2168.0,True,True +06031001500,4671.0,True,True +06031001601,4101.0,True,True +06031001602,9035.0,True,True +06031001701,10015.0,True,True +06031981800,2972.0,True,True +06033000100,3376.0,True,True +06033000300,4307.0,True,True +06033000400,5646.0,False,False +06033000501,3047.0,True,True +06033000502,2446.0,True,True +06033000600,3955.0,True,True +06033000701,4171.0,True,True +06033000702,4107.0,True,True +06033000801,2703.0,True,True +06033000802,4617.0,True,True +06033000900,6608.0,False,False +06033001000,6076.0,True,True +06033001100,2849.0,False,False +06033001200,3179.0,True,True +06033001300,7108.0,False,False +06035040100,1445.0,True,True +06035040200,2587.0,False,False +06035040302,4056.0,False,False +06035040303,2400.0,True,True +06035040304,1600.0,True,True +06035040305,3001.0,False,False +06035040400,9280.0,True,True +06035040500,3240.0,False,False +06035040600,3209.0,False,True +06037101110,4283.0,False,False +06037101122,3405.0,False,False +06037101210,6347.0,True,True +06037101220,3702.0,True,True +06037101300,3884.0,False,False +06037101400,3458.0,False,False +06037102103,1763.0,False,False +06037102104,3721.0,False,False +06037102105,1905.0,True,True +06037102107,4349.0,False,False +06037103101,2428.0,False,False +06037103102,4734.0,False,True +06037103200,6349.0,False,False +06037103300,3781.0,False,False +06037103400,6416.0,False,False +06037104103,3431.0,False,False +06037104105,6054.0,True,True +06037104108,6001.0,True,True +06037104124,3875.0,False,True +06037104201,4569.0,True,True +06037104203,5441.0,True,True +06037104204,3679.0,True,True +06037104310,4962.0,True,True +06037104320,5292.0,False,True +06037104401,3270.0,True,True +06037104403,3341.0,False,True +06037104404,3084.0,True,True +06037104500,3025.0,True,True +06037104610,3386.0,True,True +06037104620,3528.0,True,True +06037104701,4402.0,True,True +06037104703,2174.0,True,True +06037104704,4321.0,True,True +06037104810,5631.0,True,True +06037104821,3551.0,False,True +06037104822,2839.0,True,True +06037106010,3093.0,False,False +06037106020,5420.0,False,False +06037106111,4191.0,False,False +06037106112,5611.0,False,False +06037106113,3697.0,False,False +06037106114,6324.0,True,True +06037106403,3667.0,True,True +06037106405,4758.0,True,True +06037106406,5839.0,False,False +06037106407,3119.0,True,True +06037106408,3667.0,True,True +06037106510,5618.0,False,False +06037106520,5920.0,False,True +06037106603,3156.0,False,False +06037106604,5068.0,True,True +06037106641,2372.0,False,False +06037106642,2961.0,False,False +06037106643,4577.0,False,False +06037106645,3650.0,False,False +06037106646,3161.0,False,False +06037106648,4546.0,False,True +06037106649,2661.0,False,False +06037107010,3141.0,True,True +06037107020,5317.0,False,True +06037108101,2327.0,False,False +06037108102,3552.0,False,False +06037108103,3099.0,False,False +06037108104,1836.0,False,False +06037108201,5460.0,False,False +06037108202,7487.0,False,False +06037109100,2797.0,False,False +06037109200,2846.0,False,False +06037109300,2962.0,False,False +06037109400,3903.0,False,False +06037109500,4832.0,True,True +06037109601,4945.0,False,False +06037109603,4297.0,True,True +06037109604,3195.0,False,False +06037109700,4616.0,False,False +06037109800,5534.0,False,False +06037111100,3179.0,False,False +06037111201,3628.0,False,False +06037111202,5169.0,False,False +06037111204,6114.0,False,False +06037111205,3869.0,False,False +06037111206,4379.0,False,False +06037111301,7552.0,False,True +06037111302,5163.0,False,False +06037111400,8735.0,False,False +06037113101,3719.0,False,False +06037113102,3021.0,False,False +06037113211,4109.0,False,False +06037113212,3494.0,False,False +06037113213,5248.0,False,False +06037113231,2303.0,False,False +06037113232,4315.0,False,False +06037113233,7345.0,True,True +06037113234,4823.0,False,True +06037113235,1824.0,False,False +06037113237,4194.0,False,False +06037113301,3509.0,False,False +06037113303,4191.0,False,False +06037113321,6180.0,False,False +06037113322,4572.0,False,False +06037113401,6550.0,False,False +06037113421,6879.0,False,True +06037113422,6306.0,False,False +06037115101,5083.0,False,False +06037115103,3381.0,False,False +06037115104,4377.0,False,False +06037115201,6647.0,False,False +06037115202,5684.0,False,False +06037115301,4524.0,False,False +06037115302,3957.0,True,True +06037115401,6373.0,False,True +06037115403,3583.0,True,True +06037115404,2800.0,False,True +06037117101,5224.0,False,True +06037117102,2861.0,False,False +06037117201,5191.0,False,True +06037117202,2633.0,False,False +06037117301,3910.0,False,False +06037117302,5229.0,False,False +06037117303,3754.0,False,False +06037117404,5324.0,False,False +06037117405,3574.0,True,True +06037117407,3836.0,True,True +06037117408,3073.0,True,True +06037117510,3687.0,True,True +06037117520,4168.0,True,True +06037117530,6742.0,True,True +06037119001,4435.0,False,False +06037119002,7976.0,False,True +06037119201,4547.0,False,True +06037119202,4759.0,False,True +06037119310,4087.0,True,True +06037119320,4906.0,True,True +06037119340,4264.0,True,True +06037119341,2890.0,True,True +06037119342,2911.0,True,True +06037119400,5499.0,False,True +06037119700,4913.0,False,False +06037119800,6054.0,False,True +06037119900,5245.0,False,False +06037120010,2704.0,True,True +06037120020,3872.0,True,True +06037120030,2666.0,True,True +06037120103,3452.0,True,True +06037120104,2228.0,True,True +06037120105,2832.0,True,True +06037120106,4763.0,True,True +06037120107,3893.0,True,True +06037120108,4732.0,True,True +06037120300,5238.0,False,True +06037120400,6769.0,False,True +06037121010,4934.0,False,False +06037121020,3610.0,False,True +06037121101,2862.0,False,False +06037121102,2479.0,True,True +06037121210,2926.0,False,True +06037121221,2420.0,False,False +06037121222,5139.0,True,True +06037121600,2735.0,False,False +06037121801,3127.0,True,True +06037121802,3216.0,True,True +06037121900,3761.0,False,True +06037122000,5892.0,True,True +06037122120,5011.0,True,True +06037122121,2829.0,True,True +06037122122,2728.0,True,True +06037122200,3469.0,True,True +06037122410,3457.0,True,True +06037122420,4503.0,True,True +06037123010,4027.0,True,True +06037123020,3250.0,True,True +06037123103,3808.0,True,True +06037123104,4416.0,True,True +06037123203,4094.0,True,True +06037123204,3129.0,True,True +06037123205,2492.0,True,True +06037123206,2572.0,True,True +06037123301,4530.0,False,True +06037123303,3087.0,False,True +06037123304,4362.0,True,True +06037123410,4181.0,False,True +06037123420,4408.0,True,True +06037123510,4795.0,True,True +06037123520,2816.0,True,True +06037123601,4803.0,False,True +06037123602,3659.0,False,False +06037123700,4435.0,False,True +06037123800,6018.0,False,False +06037123901,4696.0,False,False +06037123902,2668.0,False,False +06037124000,5219.0,False,False +06037124102,3551.0,True,True +06037124103,1950.0,True,True +06037124104,2492.0,True,True +06037124105,2538.0,True,True +06037124201,3348.0,False,False +06037124203,2384.0,True,True +06037124204,2192.0,True,True +06037124300,2988.0,True,True +06037124400,4858.0,False,False +06037124500,2925.0,False,False +06037124600,2691.0,False,False +06037124700,5539.0,False,False +06037124902,2706.0,False,False +06037124903,3499.0,False,False +06037125100,5892.0,False,False +06037125200,3907.0,False,False +06037125310,4313.0,False,True +06037125320,5106.0,False,True +06037125401,4966.0,False,False +06037125402,4889.0,False,False +06037125501,3052.0,False,False +06037125502,3488.0,False,False +06037125600,2811.0,False,False +06037127102,5779.0,True,True +06037127103,3109.0,True,True +06037127104,3821.0,True,True +06037127210,5838.0,True,True +06037127220,5045.0,True,True +06037127300,3809.0,False,True +06037127400,6558.0,True,True +06037127520,4870.0,True,True +06037127603,3068.0,True,True +06037127604,3157.0,True,True +06037127605,4329.0,True,True +06037127606,3322.0,False,True +06037127711,3588.0,True,True +06037127712,3560.0,True,True +06037127803,4790.0,True,True +06037127804,4352.0,True,True +06037127805,3627.0,True,True +06037127806,3293.0,True,True +06037127910,5097.0,True,True +06037127920,4716.0,True,True +06037128101,3735.0,True,True +06037128102,4625.0,True,True +06037128210,5008.0,True,True +06037128220,2912.0,True,True +06037128302,5000.0,True,True +06037128303,4176.0,True,True +06037128400,4502.0,False,False +06037128500,4108.0,False,False +06037128601,4369.0,True,True +06037128602,3472.0,False,False +06037128702,5810.0,False,False +06037128801,3419.0,False,False +06037128802,4670.0,False,False +06037128910,4657.0,False,False +06037131010,6686.0,False,True +06037131020,6704.0,False,True +06037131100,3197.0,False,False +06037131200,3417.0,False,False +06037131300,5102.0,False,False +06037131400,6367.0,False,False +06037131600,5336.0,False,False +06037131701,5587.0,False,True +06037131702,3770.0,False,True +06037131800,6157.0,False,True +06037131900,4597.0,False,False +06037132001,3463.0,False,True +06037132002,3354.0,False,True +06037132101,4645.0,False,False +06037132102,5401.0,False,True +06037132300,7912.0,False,True +06037132501,4566.0,False,True +06037132502,3922.0,True,True +06037132700,4873.0,False,True +06037132900,3885.0,False,True +06037133000,4778.0,False,False +06037133100,5609.0,False,True +06037134001,3864.0,True,True +06037134002,3665.0,True,True +06037134101,5579.0,False,True +06037134103,4659.0,False,False +06037134104,4618.0,False,True +06037134201,4735.0,False,True +06037134302,4112.0,False,False +06037134303,5942.0,False,False +06037134304,3042.0,False,False +06037134305,4183.0,True,True +06037134306,4305.0,False,True +06037134421,4234.0,False,False +06037134422,4924.0,False,False +06037134423,3539.0,False,False +06037134424,2916.0,False,False +06037134520,6065.0,True,True +06037134521,3691.0,True,True +06037134522,4167.0,True,True +06037134710,5836.0,True,True +06037134720,5074.0,False,True +06037134800,6399.0,False,False +06037134901,3140.0,False,False +06037134903,6919.0,False,True +06037134904,4043.0,False,True +06037134905,4552.0,False,False +06037135102,3726.0,False,False +06037135111,3313.0,False,False +06037135113,3485.0,False,False +06037135114,5106.0,False,False +06037135201,2788.0,False,False +06037135202,4708.0,False,False +06037135203,7515.0,False,False +06037137103,5382.0,False,False +06037137104,2754.0,False,False +06037137201,6029.0,False,False +06037137301,2271.0,False,False +06037137302,4449.0,False,False +06037137401,4299.0,False,False +06037137402,5365.0,False,False +06037137501,4915.0,False,False +06037137502,4549.0,False,False +06037137504,2155.0,False,False +06037138000,4780.0,False,False +06037139001,5639.0,False,False +06037139200,5662.0,False,False +06037139301,4445.0,False,False +06037139302,5000.0,True,True +06037139303,4260.0,False,False +06037139401,2706.0,False,False +06037139402,2899.0,False,False +06037139502,2917.0,False,False +06037139503,5946.0,False,False +06037139504,3998.0,False,False +06037139600,5060.0,False,False +06037139701,5320.0,False,False +06037139702,6447.0,False,False +06037139703,2861.0,False,False +06037139801,3488.0,False,False +06037139802,4126.0,False,False +06037141101,4674.0,False,False +06037141102,3074.0,False,False +06037141201,4583.0,False,False +06037141202,2674.0,False,False +06037141302,6037.0,False,False +06037141303,3477.0,False,False +06037141304,2995.0,False,False +06037141400,5099.0,False,False +06037141500,2982.0,False,False +06037141600,4178.0,False,False +06037141700,3161.0,False,False +06037143100,4389.0,False,False +06037143200,4085.0,False,False +06037143300,6643.0,False,False +06037143400,7056.0,False,False +06037143500,5482.0,False,False +06037143602,4769.0,False,False +06037143603,2392.0,False,False +06037143604,3720.0,False,False +06037143700,3811.0,False,False +06037143800,5770.0,False,False +06037143901,4069.0,False,False +06037143902,2766.0,False,False +06037181000,6458.0,False,False +06037181300,4059.0,False,False +06037181400,4943.0,False,False +06037181500,3956.0,False,False +06037181600,4631.0,False,True +06037183101,3323.0,False,True +06037183103,4355.0,False,True +06037183104,2146.0,False,False +06037183220,4155.0,False,True +06037183221,3522.0,True,True +06037183222,3493.0,False,False +06037183300,3487.0,False,False +06037183401,2531.0,True,True +06037183402,3006.0,False,False +06037183510,2577.0,False,False +06037183520,3758.0,True,True +06037183610,3215.0,True,True +06037183620,3111.0,True,True +06037183701,3720.0,False,False +06037183702,2775.0,False,False +06037183810,4163.0,True,True +06037183820,3445.0,True,True +06037185100,6070.0,False,False +06037185202,3627.0,False,False +06037185203,3566.0,True,True +06037185204,1921.0,False,False +06037185310,3131.0,False,True +06037185320,2991.0,True,True +06037186100,4985.0,False,False +06037186201,3201.0,False,True +06037186202,2007.0,False,False +06037186203,3416.0,False,False +06037186301,2906.0,True,True +06037186302,5096.0,False,False +06037186401,3489.0,True,True +06037186403,2698.0,False,True +06037186404,2631.0,False,True +06037187101,3438.0,False,False +06037187102,3739.0,True,True +06037187200,2963.0,False,False +06037187300,3597.0,False,False +06037188100,3918.0,False,True +06037188201,3473.0,False,False +06037188202,2426.0,False,False +06037188300,3800.0,False,False +06037189101,2521.0,False,False +06037189102,3356.0,False,False +06037189201,3216.0,False,False +06037189202,2396.0,False,False +06037189300,3117.0,False,False +06037189400,3164.0,False,False +06037189500,4180.0,False,False +06037189600,3939.0,False,False +06037189701,3228.0,False,False +06037189702,2201.0,False,False +06037189800,3833.0,False,False +06037189902,5371.0,False,False +06037189903,2089.0,False,False +06037189904,2435.0,False,False +06037189905,2432.0,False,False +06037190100,4453.0,True,True +06037190201,2632.0,False,True +06037190202,3225.0,True,True +06037190301,5569.0,True,True +06037190401,2977.0,True,True +06037190402,2372.0,True,True +06037190510,4051.0,True,True +06037190520,3979.0,True,True +06037190700,2685.0,True,True +06037190801,2682.0,True,True +06037190802,2982.0,True,True +06037190901,4587.0,True,True +06037190902,3518.0,True,True +06037191000,4454.0,False,False +06037191110,3478.0,True,True +06037191120,3900.0,True,True +06037191201,4414.0,True,True +06037191203,2383.0,True,True +06037191204,2033.0,True,True +06037191301,2224.0,True,True +06037191302,1947.0,True,True +06037191410,4646.0,True,True +06037191420,3096.0,False,True +06037191500,5931.0,True,True +06037191610,4237.0,True,True +06037191620,2532.0,True,True +06037191710,2937.0,True,True +06037191720,3224.0,True,True +06037191810,3367.0,True,True +06037191820,3176.0,False,True +06037191901,3060.0,False,False +06037191902,2788.0,False,False +06037192001,2370.0,False,False +06037192002,2597.0,False,False +06037192300,2463.0,False,False +06037192410,3700.0,False,False +06037192420,4280.0,True,True +06037192510,3840.0,True,True +06037192520,5269.0,True,True +06037192610,3703.0,True,True +06037192620,3542.0,True,True +06037192700,3449.0,True,True +06037194101,3277.0,False,False +06037194102,3189.0,False,False +06037194200,3524.0,False,False +06037194300,3262.0,False,False +06037194401,2391.0,False,False +06037194402,3579.0,False,False +06037194500,2019.0,False,False +06037195100,4978.0,False,False +06037195201,3128.0,False,False +06037195202,3304.0,False,False +06037195300,3089.0,False,False +06037195400,4451.0,False,False +06037195500,5548.0,False,False +06037195600,2948.0,True,True +06037195710,4487.0,True,True +06037195720,2000.0,True,True +06037195802,2691.0,True,True +06037195803,2634.0,False,False +06037195804,2533.0,False,False +06037195901,2237.0,False,False +06037195902,1864.0,False,False +06037195903,2008.0,False,False +06037197200,3909.0,False,True +06037197300,4052.0,False,False +06037197410,4331.0,False,False +06037197420,3564.0,False,True +06037197500,3914.0,False,True +06037197600,2166.0,False,False +06037197700,5332.0,True,True +06037199000,5391.0,True,True +06037199110,2705.0,True,True +06037199120,4511.0,True,True +06037199201,3660.0,True,True +06037199202,3155.0,False,False +06037199300,4202.0,False,False +06037199400,4759.0,True,True +06037199700,3063.0,True,True +06037199800,5828.0,True,True +06037199900,2692.0,True,True +06037201110,2147.0,False,True +06037201120,4144.0,False,False +06037201200,2893.0,True,True +06037201301,4498.0,False,True +06037201302,4341.0,False,True +06037201401,4693.0,True,True +06037201402,4995.0,True,True +06037201501,5367.0,True,True +06037201503,3364.0,True,True +06037201504,2302.0,True,True +06037201601,2323.0,False,True +06037201602,2960.0,False,False +06037201700,5514.0,False,True +06037203100,4498.0,True,True +06037203200,5695.0,True,True +06037203300,2000.0,True,True +06037203500,2907.0,True,True +06037203600,5276.0,True,True +06037203710,3270.0,True,True +06037203720,4072.0,True,True +06037203800,4829.0,True,True +06037203900,3353.0,True,True +06037204110,3286.0,False,True +06037204120,2971.0,True,True +06037204200,3657.0,True,True +06037204300,5445.0,True,True +06037204410,2575.0,True,True +06037204420,3154.0,True,True +06037204600,4080.0,True,True +06037204700,5510.0,True,True +06037204810,5277.0,True,True +06037204820,2241.0,True,True +06037204910,3341.0,True,True +06037204920,2751.0,True,True +06037205110,3904.0,True,True +06037205120,3548.0,True,True +06037206010,4121.0,True,True +06037206020,8947.0,False,False +06037206031,4131.0,False,False +06037206032,5687.0,True,True +06037206050,2031.0,True,True +06037206200,4001.0,True,True +06037206300,6103.0,True,True +06037207101,3717.0,True,True +06037207102,2926.0,True,True +06037207103,2393.0,True,True +06037207301,4911.0,False,True +06037207302,4806.0,True,True +06037207400,1539.0,False,True +06037207501,2193.0,False,False +06037207502,2888.0,True,True +06037207710,4667.0,False,False +06037207900,7162.0,False,False +06037208000,7508.0,True,True +06037208301,2148.0,True,True +06037208302,5269.0,True,True +06037208401,4765.0,True,True +06037208402,2896.0,True,True +06037208501,2267.0,True,True +06037208502,4364.0,True,True +06037208610,4351.0,True,True +06037208620,4446.0,True,True +06037208710,4858.0,False,False +06037208720,4319.0,True,True +06037208801,3027.0,True,True +06037208802,3069.0,True,True +06037208902,2692.0,True,True +06037208903,4345.0,True,True +06037208904,3978.0,True,True +06037209102,5950.0,True,True +06037209103,3679.0,True,True +06037209104,2560.0,True,True +06037209200,4545.0,True,True +06037209300,4885.0,True,True +06037209401,4472.0,True,True +06037209402,3963.0,True,True +06037209403,4148.0,True,True +06037209510,3076.0,True,True +06037209520,2797.0,True,True +06037209810,2594.0,True,True +06037209820,3073.0,True,True +06037210010,3561.0,True,True +06037211000,5124.0,False,False +06037211120,5635.0,True,True +06037211121,2253.0,True,True +06037211122,3163.0,True,True +06037211201,2562.0,True,True +06037211202,2239.0,True,True +06037211310,3873.0,True,True +06037211320,3337.0,True,True +06037211410,2736.0,False,True +06037211420,3573.0,True,True +06037211500,4175.0,False,True +06037211701,2596.0,False,False +06037211703,4841.0,False,True +06037211704,2796.0,True,True +06037211802,4682.0,True,True +06037211803,3701.0,False,False +06037211804,3221.0,False,False +06037211910,4371.0,True,True +06037211921,2521.0,True,True +06037211922,3269.0,True,True +06037212101,3187.0,False,True +06037212102,2291.0,True,True +06037212202,3424.0,True,True +06037212203,2914.0,True,True +06037212204,3584.0,True,True +06037212303,3837.0,True,True +06037212304,1832.0,True,True +06037212305,3025.0,True,True +06037212306,3413.0,True,True +06037212410,4318.0,True,True +06037212420,3517.0,True,True +06037212501,1940.0,True,True +06037212502,2810.0,True,True +06037212610,4447.0,True,True +06037212620,4087.0,True,True +06037212701,2276.0,True,True +06037212702,3632.0,False,False +06037212800,3543.0,False,True +06037212900,4067.0,True,True +06037213100,3014.0,True,True +06037213201,3932.0,True,True +06037213202,3942.0,True,True +06037213310,3015.0,True,True +06037213320,2469.0,True,True +06037213401,4859.0,True,True +06037213402,4857.0,True,True +06037214000,4277.0,False,False +06037214100,3668.0,False,False +06037214400,2916.0,False,False +06037214501,2702.0,False,False +06037214502,5285.0,False,False +06037214503,3422.0,False,False +06037214600,2383.0,False,False +06037214700,2414.0,False,False +06037214800,2813.0,False,False +06037214901,3250.0,False,False +06037214902,2550.0,False,False +06037215101,3015.0,False,False +06037215102,3059.0,False,False +06037216100,2151.0,False,False +06037216200,5778.0,False,False +06037216300,4367.0,False,False +06037216401,3772.0,False,False +06037216402,2521.0,False,False +06037216700,3835.0,False,False +06037216800,3203.0,False,False +06037216900,4886.0,False,False +06037217001,2724.0,False,False +06037217002,4639.0,False,False +06037217100,6219.0,False,False +06037217200,4156.0,False,False +06037218110,3195.0,True,True +06037218120,4638.0,True,True +06037218210,3721.0,True,True +06037218220,3859.0,True,True +06037218300,5290.0,True,True +06037218400,4737.0,True,True +06037218500,2641.0,True,True +06037218600,3148.0,False,True +06037218701,2324.0,True,True +06037218702,2056.0,True,True +06037218800,2752.0,False,True +06037218900,6149.0,True,True +06037219010,3027.0,True,True +06037219020,5411.0,True,True +06037219300,4239.0,True,True +06037219500,2084.0,False,False +06037219700,4507.0,True,True +06037219800,2861.0,True,True +06037219901,4150.0,True,True +06037219902,3809.0,True,True +06037220000,4711.0,True,True +06037220100,2415.0,False,True +06037221110,3705.0,True,True +06037221120,3197.0,True,True +06037221210,3165.0,True,True +06037221220,3376.0,True,True +06037221302,4373.0,True,True +06037221303,2806.0,True,True +06037221304,3656.0,True,True +06037221401,3628.0,True,True +06037221402,2851.0,True,True +06037221500,3875.0,True,True +06037221601,3141.0,True,True +06037221602,3030.0,True,True +06037221710,2833.0,True,True +06037221810,2892.0,False,True +06037221820,2363.0,False,False +06037221900,4248.0,False,True +06037222001,3142.0,False,False +06037222002,5243.0,True,True +06037222100,4331.0,False,True +06037222200,4016.0,True,True +06037222500,5120.0,False,True +06037222600,5549.0,False,True +06037222700,4071.0,False,False +06037224010,2845.0,True,True +06037224020,2733.0,True,True +06037224200,2557.0,True,True +06037224310,2422.0,True,True +06037224320,2972.0,True,True +06037224410,3194.0,True,True +06037224420,2637.0,True,True +06037224600,3385.0,True,True +06037224700,6238.0,False,False +06037226001,2615.0,True,True +06037226002,1820.0,True,True +06037226410,3665.0,True,True +06037226420,5531.0,True,True +06037226700,7661.0,True,True +06037227010,5705.0,True,True +06037227020,3623.0,True,True +06037228100,5505.0,True,True +06037228210,4233.0,True,True +06037228220,4375.0,True,True +06037228310,4523.0,True,True +06037228320,3122.0,True,True +06037228410,3600.0,True,True +06037228420,3304.0,True,True +06037228500,4869.0,True,True +06037228600,5301.0,True,True +06037228710,3982.0,True,True +06037228720,4825.0,True,True +06037228800,5353.0,True,True +06037228900,2918.0,True,True +06037229100,5146.0,True,True +06037229200,5072.0,True,True +06037229300,5715.0,True,True +06037229410,3697.0,True,True +06037229420,4759.0,True,True +06037231100,3474.0,True,True +06037231210,4040.0,True,True +06037231220,4653.0,True,True +06037231300,5754.0,True,True +06037231400,4745.0,True,True +06037231500,5396.0,True,True +06037231600,7420.0,True,True +06037231710,4165.0,True,True +06037231720,4934.0,True,True +06037231800,5436.0,True,True +06037231900,6162.0,True,True +06037232110,3038.0,True,True +06037232120,5567.0,True,True +06037232200,3487.0,True,True +06037232300,6006.0,True,True +06037232400,7361.0,True,True +06037232500,4940.0,True,True +06037232600,6833.0,True,True +06037232700,6568.0,True,True +06037232800,4489.0,True,True +06037234000,5417.0,False,False +06037234200,2424.0,False,False +06037234300,3805.0,False,False +06037234501,2845.0,False,False +06037234502,3017.0,True,True +06037234600,4908.0,False,False +06037234700,3690.0,False,False +06037234800,3317.0,False,False +06037234901,3321.0,True,True +06037234902,4088.0,True,True +06037235100,4401.0,False,True +06037235201,2682.0,True,True +06037235202,4331.0,True,True +06037236000,4181.0,False,False +06037236100,6170.0,True,True +06037236202,5764.0,True,True +06037236203,3118.0,True,True +06037236204,3109.0,True,True +06037236400,4282.0,False,False +06037237101,4409.0,True,True +06037237102,3407.0,True,True +06037237201,3814.0,True,True +06037237202,4556.0,True,True +06037237300,5311.0,True,True +06037237401,4217.0,True,True +06037237402,3335.0,False,False +06037237500,2922.0,True,True +06037237600,4101.0,True,True +06037237710,4410.0,True,True +06037237720,3707.0,True,True +06037237800,3796.0,False,False +06037237900,4405.0,False,True +06037238000,6174.0,False,False +06037238100,5163.0,False,False +06037238200,5565.0,False,False +06037238310,5002.0,True,True +06037238320,3804.0,True,True +06037238400,4694.0,False,False +06037239201,3753.0,True,True +06037239202,5999.0,True,True +06037239310,4501.0,True,True +06037239320,4086.0,True,True +06037239330,2458.0,True,True +06037239501,3729.0,True,True +06037239502,4016.0,True,True +06037239601,3682.0,True,True +06037239602,4016.0,True,True +06037239701,5134.0,True,True +06037239702,4334.0,True,True +06037239801,3705.0,True,True +06037239802,5461.0,True,True +06037240010,3737.0,True,True +06037240020,5223.0,True,True +06037240200,5159.0,True,True +06037240300,5637.0,True,True +06037240401,6379.0,True,True +06037240402,3763.0,True,True +06037240500,7326.0,True,True +06037240600,6167.0,True,True +06037240700,6596.0,True,True +06037240800,4341.0,True,True +06037240900,6736.0,True,True +06037241001,4197.0,True,True +06037241002,4144.0,True,True +06037241110,3356.0,True,True +06037241120,5146.0,True,True +06037241201,3015.0,True,True +06037241202,5776.0,True,True +06037241300,2480.0,True,True +06037241400,3785.0,True,True +06037242000,4189.0,True,True +06037242100,2852.0,True,True +06037242200,6402.0,True,True +06037242300,4952.0,True,True +06037242600,4756.0,True,True +06037242700,6035.0,True,True +06037243000,6829.0,True,True +06037243100,6772.0,True,True +06037261101,3389.0,False,False +06037261102,3520.0,False,False +06037261200,4182.0,False,False +06037262100,2678.0,False,False +06037262200,4405.0,False,False +06037262301,2748.0,False,False +06037262302,2845.0,False,False +06037262303,3038.0,False,False +06037262400,3059.0,False,False +06037262501,3785.0,False,False +06037262601,3539.0,False,False +06037262604,5523.0,False,False +06037262704,3561.0,False,False +06037262706,3571.0,False,False +06037262802,3424.0,False,False +06037264000,3069.0,False,False +06037264102,2998.0,False,False +06037264103,2658.0,False,False +06037264301,5552.0,False,False +06037264302,5882.0,False,False +06037265100,2454.0,False,False +06037265201,2567.0,False,False +06037265202,3981.0,False,False +06037265301,11977.0,False,False +06037265303,5156.0,False,False +06037265304,2878.0,False,False +06037265305,3990.0,False,False +06037265410,1495.0,False,False +06037265420,1838.0,False,False +06037265510,4663.0,False,False +06037265520,5059.0,False,False +06037265601,3615.0,False,False +06037265602,3044.0,False,False +06037265700,4636.0,False,False +06037267100,6649.0,False,False +06037267200,7004.0,False,False +06037267300,4235.0,False,False +06037267402,4872.0,False,False +06037267403,3000.0,False,False +06037267404,3475.0,False,False +06037267501,5993.0,False,False +06037267502,3632.0,False,True +06037267600,2916.0,False,False +06037267700,3276.0,False,False +06037267800,2666.0,False,False +06037267901,2428.0,False,False +06037267902,3365.0,False,False +06037269000,4813.0,False,False +06037269100,4274.0,False,False +06037269300,3840.0,False,False +06037269500,3797.0,False,False +06037269601,3393.0,False,False +06037269602,2865.0,False,False +06037269700,3546.0,False,False +06037269800,3046.0,False,False +06037269903,3421.0,False,False +06037269904,3927.0,False,False +06037269905,2459.0,False,False +06037269906,3158.0,False,False +06037269907,2692.0,False,False +06037270100,4202.0,False,False +06037270200,3226.0,False,False +06037270300,2542.0,False,False +06037271100,2445.0,False,False +06037271200,2770.0,False,False +06037271300,4395.0,False,False +06037271400,3743.0,False,False +06037271500,3187.0,False,False +06037271600,4811.0,False,False +06037271701,5694.0,False,False +06037271702,3918.0,False,False +06037271801,3071.0,False,False +06037271802,5644.0,False,False +06037271901,3245.0,False,False +06037271902,4207.0,False,False +06037272100,4578.0,False,False +06037272201,2390.0,False,False +06037272202,3359.0,False,False +06037272301,3045.0,False,False +06037272302,4457.0,False,True +06037273100,2742.0,False,False +06037273200,3229.0,False,False +06037273300,2915.0,False,False +06037273402,2641.0,False,False +06037273502,2861.0,False,False +06037273600,2375.0,False,False +06037273700,2895.0,False,False +06037273800,2872.0,False,False +06037273902,4221.0,False,False +06037274100,4838.0,False,False +06037274202,4284.0,False,False +06037275101,1161.0,False,False +06037275102,4338.0,True,True +06037275200,3751.0,False,False +06037275302,5059.0,False,False +06037275311,5462.0,False,False +06037275400,4069.0,False,False +06037275500,5449.0,True,True +06037275602,12100.0,False,False +06037275603,2537.0,False,False +06037276000,5657.0,False,False +06037276100,5739.0,False,False +06037276400,4071.0,False,False +06037276500,5674.0,False,False +06037276601,4115.0,False,False +06037276603,5489.0,False,False +06037276604,4624.0,False,False +06037277000,5566.0,False,False +06037277100,3100.0,False,False +06037277200,2196.0,False,False +06037277400,909.0,True,True +06037278001,2508.0,False,False +06037278102,3088.0,False,False +06037291110,4391.0,True,True +06037291120,2407.0,True,True +06037291130,3626.0,False,False +06037291210,5768.0,True,True +06037291220,3640.0,True,True +06037291300,3037.0,False,False +06037292000,6567.0,True,True +06037293201,6289.0,False,True +06037293202,6740.0,True,True +06037293301,3108.0,False,False +06037293302,5082.0,False,True +06037293304,4832.0,False,True +06037293306,2436.0,False,False +06037293307,2284.0,True,True +06037294110,4129.0,True,True +06037294120,2687.0,True,True +06037294200,4874.0,False,True +06037294301,2471.0,False,False +06037294302,4382.0,True,True +06037294410,5079.0,True,True +06037294421,2891.0,True,True +06037294510,5082.0,True,True +06037294520,3710.0,False,True +06037294610,4334.0,True,True +06037294620,4683.0,True,True +06037294701,3099.0,True,True +06037294810,4278.0,True,True +06037294820,3473.0,True,True +06037294830,4134.0,True,True +06037294900,3853.0,True,True +06037295103,5188.0,False,False +06037296210,3132.0,True,True +06037296220,4447.0,True,True +06037296300,5027.0,False,False +06037296401,3229.0,False,False +06037296402,3312.0,False,False +06037296500,3447.0,True,True +06037296600,5358.0,True,True +06037296901,4466.0,True,True +06037296902,4219.0,False,False +06037297000,5597.0,False,False +06037297110,4649.0,True,True +06037297120,3053.0,True,True +06037297201,4505.0,False,True +06037297202,3786.0,False,False +06037297300,2193.0,False,False +06037297400,3356.0,False,False +06037297500,4707.0,False,False +06037297601,2816.0,False,False +06037297602,3687.0,False,False +06037300100,6014.0,False,False +06037300200,5352.0,False,False +06037300301,6024.0,False,False +06037300400,5986.0,False,False +06037300501,3264.0,False,False +06037300502,5874.0,False,False +06037300600,9609.0,False,False +06037300701,5835.0,False,False +06037300702,5430.0,False,False +06037300800,7280.0,False,False +06037300901,6540.0,False,False +06037300902,1981.0,False,False +06037301000,5230.0,False,True +06037301100,7114.0,False,False +06037301203,4711.0,False,True +06037301204,5284.0,False,True +06037301205,2106.0,False,False +06037301206,5281.0,False,True +06037301300,1894.0,False,False +06037301400,4190.0,False,False +06037301501,1790.0,False,False +06037301502,6750.0,False,True +06037301601,6112.0,True,True +06037301602,4446.0,False,True +06037301701,2962.0,False,True +06037301702,5835.0,False,True +06037301801,5258.0,False,True +06037301802,4516.0,False,True +06037301900,8192.0,False,False +06037302002,3949.0,False,False +06037302003,3665.0,False,True +06037302004,4151.0,True,True +06037302102,5946.0,False,False +06037302103,5430.0,False,True +06037302104,4288.0,False,True +06037302201,4019.0,True,True +06037302202,5510.0,True,True +06037302301,3985.0,True,True +06037302302,5337.0,True,True +06037302401,7395.0,True,True +06037302503,4290.0,True,True +06037302504,4273.0,True,True +06037302505,4376.0,True,True +06037302506,3262.0,True,True +06037310100,5644.0,False,False +06037310201,5732.0,False,False +06037310202,5104.0,False,False +06037310300,2881.0,False,False +06037310400,3247.0,False,False +06037310501,4066.0,False,False +06037310601,6383.0,False,False +06037310602,2853.0,False,False +06037310701,2181.0,True,True +06037310702,6567.0,True,True +06037310703,4793.0,True,True +06037310800,5314.0,False,False +06037310900,6071.0,False,False +06037311000,3641.0,False,False +06037311100,4183.0,False,False +06037311200,3171.0,False,False +06037311300,3896.0,False,False +06037311400,2300.0,False,False +06037311500,5828.0,False,False +06037311600,6707.0,False,False +06037311700,6200.0,False,False +06037311801,2873.0,False,False +06037311802,4068.0,False,False +06037320000,0.0,False,False +06037320100,7601.0,False,False +06037320201,4049.0,True,True +06037320202,6151.0,False,True +06037320300,6734.0,True,True +06037400204,5637.0,False,False +06037400205,2846.0,False,False +06037400206,5365.0,False,False +06037400207,4608.0,False,False +06037400302,3154.0,False,False +06037400304,7788.0,False,False +06037400402,4305.0,False,False +06037400403,3906.0,False,False +06037400404,4268.0,False,False +06037400501,2049.0,False,False +06037400602,4250.0,False,False +06037400603,5201.0,False,False +06037400604,3501.0,False,False +06037400800,6967.0,False,False +06037400900,4424.0,False,False +06037401001,3062.0,False,False +06037401002,3678.0,False,False +06037401101,5582.0,False,False +06037401102,3896.0,False,False +06037401201,3377.0,False,False +06037401202,4706.0,False,False +06037401203,5224.0,False,False +06037401303,2074.0,False,False +06037401304,5449.0,False,False +06037401311,6120.0,False,False +06037401312,5401.0,False,False +06037401500,6213.0,False,False +06037401601,5368.0,False,False +06037401602,6294.0,False,False +06037401603,2951.0,False,False +06037401701,4488.0,False,False +06037401703,4107.0,False,False +06037401704,7108.0,False,False +06037401800,7927.0,False,False +06037401901,3945.0,False,False +06037401902,6223.0,False,False +06037402001,3294.0,False,False +06037402002,4125.0,False,False +06037402101,5558.0,True,True +06037402102,4858.0,False,False +06037402200,6782.0,False,False +06037402301,5464.0,True,True +06037402303,4080.0,True,True +06037402304,4057.0,True,True +06037402402,6635.0,False,False +06037402403,5231.0,False,False +06037402404,1862.0,False,False +06037402405,2875.0,True,True +06037402406,5329.0,True,True +06037402501,5591.0,True,True +06037402502,6839.0,True,True +06037402600,7493.0,True,True +06037402702,6365.0,True,True +06037402703,4661.0,False,False +06037402705,3254.0,False,False +06037402706,3834.0,False,False +06037402801,4976.0,True,True +06037402803,3270.0,True,True +06037402804,4238.0,True,True +06037402902,6903.0,True,True +06037402903,4363.0,True,True +06037402904,3705.0,False,False +06037403000,6950.0,True,True +06037403200,399.0,True,True +06037403303,2741.0,False,True +06037403304,4863.0,False,False +06037403305,2294.0,False,False +06037403312,5096.0,False,False +06037403316,6757.0,False,False +06037403317,4710.0,False,False +06037403318,6367.0,False,False +06037403319,4046.0,False,False +06037403320,4992.0,False,False +06037403321,6303.0,False,False +06037403322,3703.0,False,False +06037403323,5494.0,False,False +06037403324,7193.0,False,False +06037403325,5348.0,False,False +06037403401,5136.0,False,False +06037403402,3745.0,False,True +06037403403,4898.0,False,False +06037403404,2645.0,False,False +06037403405,1698.0,False,False +06037403406,2955.0,False,False +06037403407,2314.0,False,False +06037403408,6512.0,False,False +06037403500,1835.0,False,False +06037403600,6690.0,False,False +06037403702,3786.0,False,False +06037403703,4542.0,False,False +06037403721,4897.0,False,False +06037403722,5628.0,False,False +06037403801,6224.0,False,False +06037403802,6687.0,False,False +06037403901,3174.0,False,False +06037403902,5140.0,False,False +06037404000,4614.0,False,False +06037404100,6277.0,False,False +06037404201,3519.0,True,True +06037404202,4252.0,False,False +06037404301,5503.0,True,True +06037404302,2176.0,False,False +06037404401,3715.0,False,False +06037404402,5156.0,False,False +06037404501,2789.0,True,True +06037404503,2638.0,False,False +06037404504,5073.0,True,True +06037404600,1394.0,False,False +06037404701,5665.0,False,True +06037404702,5629.0,True,True +06037404703,3110.0,True,True +06037404801,7911.0,False,True +06037404802,4196.0,False,True +06037404803,1719.0,False,True +06037404901,5700.0,False,True +06037404902,3968.0,False,True +06037404903,2738.0,True,True +06037405001,6029.0,False,True +06037405002,3169.0,True,True +06037405101,5617.0,False,True +06037405102,5639.0,True,True +06037405201,4933.0,False,True +06037405202,4850.0,False,True +06037405203,3638.0,False,True +06037405301,3469.0,False,True +06037405302,5433.0,False,False +06037405400,4950.0,False,False +06037405500,6596.0,False,False +06037405600,5553.0,False,True +06037405701,3862.0,False,False +06037405702,4957.0,False,False +06037405800,5825.0,False,False +06037405900,3951.0,True,True +06037406000,5206.0,False,False +06037406101,3105.0,False,False +06037406102,6167.0,False,False +06037406200,5811.0,True,True +06037406300,5829.0,False,False +06037406402,2043.0,False,False +06037406411,2002.0,False,False +06037406412,2123.0,False,False +06037406500,6655.0,False,False +06037406601,5550.0,False,False +06037406602,5198.0,False,True +06037406701,3082.0,False,False +06037406702,6375.0,False,False +06037406800,4866.0,False,False +06037406901,4773.0,False,True +06037406902,3584.0,False,True +06037407001,6284.0,False,True +06037407002,3436.0,False,True +06037407101,4883.0,False,False +06037407102,5710.0,False,False +06037407200,6910.0,False,True +06037407301,4949.0,False,False +06037407302,3503.0,False,False +06037407400,1977.0,False,True +06037407501,4257.0,False,True +06037407502,4170.0,False,False +06037407601,4608.0,False,True +06037407602,3993.0,True,True +06037407701,4903.0,True,True +06037407702,6744.0,False,True +06037407801,5727.0,False,False +06037407802,3476.0,False,True +06037407900,6082.0,False,False +06037408003,4577.0,False,True +06037408004,2493.0,False,False +06037408005,5161.0,False,True +06037408006,3344.0,False,True +06037408133,5203.0,False,True +06037408134,2760.0,False,False +06037408135,3882.0,False,False +06037408136,4224.0,False,True +06037408137,4277.0,False,False +06037408138,5432.0,False,False +06037408139,4536.0,False,False +06037408140,3793.0,False,False +06037408141,5366.0,True,True +06037408202,2015.0,True,True +06037408211,6381.0,False,True +06037408212,5042.0,False,True +06037408301,5569.0,False,True +06037408302,3836.0,False,False +06037408303,4183.0,False,True +06037408401,4389.0,False,True +06037408402,6646.0,False,True +06037408501,3050.0,False,True +06037408503,6673.0,False,False +06037408504,5193.0,False,True +06037408505,2653.0,False,True +06037408623,3268.0,False,True +06037408624,2958.0,False,True +06037408625,4214.0,False,False +06037408626,4037.0,False,True +06037408627,3076.0,False,True +06037408628,5177.0,False,False +06037408629,3012.0,False,False +06037408630,2510.0,False,False +06037408631,5214.0,False,True +06037408703,6545.0,False,False +06037408704,3311.0,False,True +06037408705,5625.0,False,True +06037408706,1835.0,False,False +06037408722,4313.0,False,True +06037408723,2975.0,False,True +06037408724,5542.0,True,True +06037408800,4387.0,False,True +06037430002,6522.0,False,False +06037430003,4971.0,False,False +06037430101,5382.0,False,True +06037430102,4684.0,False,True +06037430200,1026.0,False,False +06037430301,4319.0,False,False +06037430302,5339.0,False,False +06037430400,4642.0,False,False +06037430501,4030.0,False,False +06037430502,6902.0,False,False +06037430600,4553.0,False,False +06037430701,5846.0,False,False +06037430721,3963.0,False,True +06037430723,4365.0,False,False +06037430724,4723.0,False,False +06037430801,6978.0,False,False +06037430802,4586.0,False,True +06037430803,5397.0,False,False +06037430901,4517.0,False,False +06037430902,4539.0,False,False +06037431001,7669.0,False,False +06037431002,3165.0,False,False +06037431100,6758.0,False,False +06037431200,6399.0,False,False +06037431300,2689.0,False,False +06037431400,4202.0,False,True +06037431501,4480.0,True,True +06037431502,4273.0,False,False +06037431600,4190.0,False,False +06037431700,6000.0,False,True +06037431800,5655.0,False,True +06037431900,4400.0,False,True +06037432000,7601.0,False,True +06037432101,4103.0,False,True +06037432102,5951.0,False,True +06037432201,4491.0,False,True +06037432202,4471.0,False,True +06037432300,4350.0,False,True +06037432401,3705.0,True,True +06037432402,6938.0,True,True +06037432500,8180.0,False,True +06037432601,7210.0,False,True +06037432602,4852.0,False,True +06037432700,5779.0,True,True +06037432801,2797.0,True,True +06037432802,5077.0,True,True +06037432901,3727.0,False,True +06037432902,3312.0,False,True +06037433101,2464.0,True,True +06037433102,5348.0,True,True +06037433200,6246.0,True,True +06037433302,1530.0,True,True +06037433304,5063.0,True,True +06037433305,4582.0,True,True +06037433306,3136.0,True,True +06037433307,3193.0,True,True +06037433401,3405.0,True,True +06037433402,4713.0,True,True +06037433403,4882.0,True,True +06037433501,1949.0,True,True +06037433503,3269.0,True,True +06037433504,4802.0,True,True +06037433601,5066.0,False,True +06037433602,2896.0,True,True +06037433700,3684.0,True,True +06037433801,5944.0,True,True +06037433802,3362.0,False,True +06037433901,6032.0,True,True +06037433902,3284.0,False,True +06037434001,4410.0,True,True +06037434003,4717.0,True,True +06037434004,3039.0,True,True +06037460000,4421.0,False,False +06037460100,6196.0,False,False +06037460200,5861.0,False,False +06037460301,4845.0,False,False +06037460302,4221.0,False,False +06037460401,985.0,False,False +06037460501,5614.0,False,False +06037460502,4277.0,False,False +06037460600,4416.0,False,False +06037460700,5139.0,False,False +06037460800,3103.0,False,False +06037460900,6731.0,False,False +06037461000,6249.0,False,False +06037461100,5419.0,False,False +06037461200,4535.0,False,False +06037461300,6840.0,False,False +06037461400,3119.0,False,False +06037461501,3971.0,False,False +06037461502,6423.0,True,True +06037461600,6058.0,False,False +06037461700,1526.0,False,False +06037461901,5051.0,True,True +06037461902,1801.0,False,False +06037462001,4460.0,True,True +06037462002,4043.0,True,True +06037462100,5748.0,False,True +06037462201,3941.0,True,True +06037462202,2775.0,False,False +06037462301,5265.0,True,True +06037462302,3213.0,False,False +06037462400,3944.0,False,False +06037462500,6146.0,False,True +06037462600,2152.0,False,False +06037462700,5413.0,False,False +06037462800,2827.0,False,False +06037462900,3797.0,False,False +06037463000,2665.0,False,False +06037463101,2373.0,False,False +06037463102,3878.0,False,False +06037463200,3563.0,False,False +06037463300,1970.0,False,False +06037463400,5787.0,False,False +06037463500,5982.0,False,False +06037463601,5988.0,False,False +06037463602,6057.0,False,False +06037463700,3138.0,False,False +06037463800,4066.0,False,False +06037463900,3290.0,False,False +06037464000,5623.0,False,False +06037464100,7121.0,False,False +06037464200,6073.0,False,False +06037480002,3623.0,False,False +06037480011,5466.0,False,True +06037480012,4975.0,False,True +06037480101,3731.0,False,True +06037480102,4487.0,False,True +06037480201,3787.0,False,False +06037480202,2553.0,False,False +06037480302,4672.0,False,True +06037480303,4103.0,True,True +06037480304,4506.0,False,True +06037480400,5538.0,False,False +06037480500,5108.0,False,False +06037480600,8038.0,False,False +06037480702,4284.0,False,False +06037480703,3612.0,False,False +06037480704,4619.0,False,False +06037480802,3162.0,False,True +06037480803,3699.0,False,False +06037480804,4892.0,False,True +06037480901,5407.0,False,True +06037480902,4109.0,True,True +06037480903,3248.0,True,True +06037481001,4369.0,True,True +06037481002,5646.0,True,True +06037481101,4513.0,False,True +06037481102,4000.0,False,True +06037481103,4926.0,False,True +06037481201,3910.0,False,True +06037481202,6188.0,False,True +06037481300,3299.0,False,True +06037481401,6267.0,True,True +06037481402,6598.0,True,True +06037481500,4489.0,False,True +06037481603,3486.0,True,True +06037481604,3701.0,False,True +06037481605,2831.0,False,True +06037481606,5013.0,True,True +06037481711,4246.0,True,True +06037481712,5329.0,True,True +06037481713,2736.0,False,True +06037481714,2739.0,True,True +06037481800,2558.0,False,True +06037481901,5775.0,False,False +06037481902,3443.0,False,True +06037482001,2650.0,False,True +06037482002,6760.0,False,True +06037482101,4750.0,False,True +06037482102,2943.0,False,True +06037482201,4076.0,True,True +06037482202,5087.0,True,True +06037482301,4941.0,True,True +06037482303,6156.0,True,True +06037482304,3216.0,True,True +06037482401,3670.0,True,True +06037482402,7566.0,True,True +06037482502,3310.0,True,True +06037482503,4293.0,False,True +06037482521,5842.0,False,True +06037482522,4478.0,False,True +06037482600,6262.0,False,True +06037482701,4323.0,False,False +06037482702,2373.0,False,False +06037482800,4524.0,False,False +06037500100,4840.0,False,False +06037500201,7267.0,False,False +06037500202,4988.0,False,False +06037500300,2973.0,False,False +06037500402,4856.0,False,True +06037500403,3829.0,False,False +06037500404,4551.0,False,False +06037500500,2703.0,False,True +06037500600,4912.0,False,True +06037500700,7150.0,False,False +06037500800,5362.0,False,False +06037500900,6363.0,False,False +06037501001,3046.0,False,False +06037501002,5013.0,False,False +06037501200,4864.0,False,False +06037501300,7154.0,False,False +06037501400,3669.0,False,False +06037501501,2272.0,False,False +06037501503,5280.0,False,False +06037501504,3369.0,True,True +06037501600,7769.0,False,False +06037501700,3425.0,False,False +06037501802,3311.0,False,False +06037501803,4427.0,True,True +06037501804,2175.0,True,True +06037501900,4153.0,False,False +06037502003,2634.0,False,False +06037502004,4251.0,False,True +06037502005,4930.0,False,False +06037502100,5036.0,False,False +06037502200,6937.0,False,False +06037502301,5794.0,False,False +06037502302,2970.0,True,True +06037502401,4957.0,False,False +06037502402,3874.0,False,False +06037502500,4274.0,False,False +06037502601,6939.0,False,False +06037502602,4477.0,False,False +06037502700,6919.0,False,False +06037502801,6468.0,False,False +06037502802,3221.0,True,True +06037502901,5816.0,False,False +06037502902,4168.0,True,True +06037503000,5606.0,False,False +06037503103,5204.0,False,False +06037503104,2542.0,True,True +06037503105,4228.0,False,False +06037503106,4091.0,False,False +06037503201,4144.0,False,False +06037503202,5028.0,False,True +06037503301,3374.0,False,False +06037503302,6784.0,False,False +06037503401,6492.0,False,False +06037503402,4129.0,False,False +06037503501,6444.0,False,False +06037503502,4655.0,False,False +06037503601,4151.0,False,False +06037503602,4212.0,False,False +06037503701,4840.0,False,False +06037503702,5516.0,False,False +06037503703,7622.0,False,True +06037503801,3851.0,False,False +06037503802,4900.0,False,False +06037503901,2942.0,False,False +06037503902,4939.0,False,False +06037504001,5860.0,False,False +06037504002,5461.0,False,False +06037504101,4826.0,False,True +06037504102,9.0,False,False +06037530003,3080.0,False,False +06037530004,3495.0,False,True +06037530005,3971.0,False,True +06037530006,4430.0,False,True +06037530101,5285.0,True,True +06037530102,4862.0,True,True +06037530202,4348.0,False,True +06037530203,2728.0,False,True +06037530204,3904.0,False,True +06037530301,2211.0,True,True +06037530302,6849.0,True,True +06037530400,3744.0,True,True +06037530500,3719.0,True,True +06037530601,2930.0,False,True +06037530602,1769.0,True,True +06037530700,2157.0,False,True +06037530801,5407.0,True,True +06037530802,3165.0,False,True +06037530901,3684.0,True,True +06037530902,3840.0,True,True +06037531000,5133.0,True,True +06037531101,4851.0,True,True +06037531102,3210.0,True,True +06037531201,5530.0,True,True +06037531202,4431.0,True,True +06037531301,4824.0,True,True +06037531302,6215.0,True,True +06037531502,3397.0,True,True +06037531503,2753.0,True,True +06037531504,4250.0,True,True +06037531602,4432.0,True,True +06037531603,3409.0,True,True +06037531604,3775.0,True,True +06037531701,5375.0,True,True +06037531702,5163.0,False,True +06037531800,4960.0,True,True +06037531901,6237.0,True,True +06037531902,4763.0,True,True +06037532001,3036.0,True,True +06037532002,3360.0,True,True +06037532101,6747.0,True,True +06037532102,3936.0,False,True +06037532200,7363.0,True,True +06037532302,4881.0,True,True +06037532303,4599.0,False,False +06037532304,4013.0,True,True +06037532400,45.0,False,False +06037532500,4195.0,True,True +06037532603,3289.0,True,True +06037532604,2739.0,True,True +06037532605,3301.0,True,True +06037532606,4405.0,True,True +06037532700,3417.0,True,True +06037532800,4590.0,True,True +06037532900,7058.0,True,True +06037533001,4709.0,True,True +06037533002,2705.0,True,True +06037533103,3283.0,True,True +06037533104,4415.0,True,True +06037533105,2510.0,True,True +06037533106,1655.0,True,True +06037533107,3503.0,True,True +06037533201,2788.0,True,True +06037533202,3124.0,True,True +06037533203,1931.0,True,True +06037533300,3346.0,True,True +06037533401,5098.0,False,True +06037533402,4240.0,True,True +06037533403,2848.0,False,True +06037533501,3051.0,True,True +06037533502,2143.0,True,True +06037533503,2141.0,True,True +06037533601,4762.0,True,True +06037533602,5546.0,True,True +06037533603,6986.0,True,True +06037533701,2998.0,True,True +06037533702,3543.0,True,True +06037533703,5259.0,True,True +06037533803,6324.0,True,True +06037533804,4207.0,True,True +06037533805,3485.0,True,True +06037533806,3794.0,True,True +06037533901,6320.0,True,True +06037533902,4049.0,True,True +06037534001,5125.0,True,True +06037534002,4628.0,True,True +06037534101,2358.0,True,True +06037534102,6219.0,True,True +06037534201,4768.0,True,True +06037534202,5748.0,True,True +06037534203,3206.0,True,True +06037534301,4320.0,True,True +06037534302,3720.0,True,True +06037534403,2795.0,True,True +06037534404,3677.0,True,True +06037534405,4351.0,True,True +06037534406,5027.0,True,True +06037534501,5226.0,True,True +06037534502,4654.0,True,True +06037534700,4435.0,False,True +06037534802,3136.0,True,True +06037534803,4589.0,True,True +06037534804,3736.0,True,True +06037534900,6319.0,False,True +06037535001,4512.0,True,True +06037535002,3648.0,True,True +06037535101,7949.0,True,True +06037535102,4621.0,True,True +06037535200,6111.0,True,True +06037535300,6524.0,True,True +06037535400,3553.0,True,True +06037535501,3898.0,True,True +06037535502,5411.0,True,True +06037535503,2240.0,True,True +06037535603,3998.0,True,True +06037535604,4476.0,True,True +06037535605,4440.0,True,True +06037535606,2007.0,True,True +06037535607,4946.0,True,True +06037535701,5237.0,True,True +06037535702,5638.0,True,True +06037535802,6600.0,True,True +06037535803,4246.0,True,True +06037535804,5328.0,True,True +06037535901,5578.0,False,True +06037535902,7209.0,False,True +06037536000,3701.0,True,True +06037536102,3155.0,False,True +06037536103,5353.0,False,True +06037536104,3900.0,False,True +06037536200,7281.0,False,True +06037540000,7139.0,True,True +06037540101,6743.0,False,False +06037540102,6905.0,True,True +06037540201,2587.0,True,True +06037540202,7116.0,True,True +06037540203,5807.0,True,True +06037540300,4728.0,True,True +06037540400,2109.0,True,True +06037540501,6713.0,False,True +06037540502,6163.0,True,True +06037540600,4981.0,True,True +06037540700,3230.0,True,True +06037540800,5287.0,False,False +06037540901,4904.0,True,True +06037540902,4707.0,False,True +06037541001,1144.0,False,False +06037541002,3318.0,False,True +06037541100,3251.0,True,True +06037541200,6546.0,False,False +06037541300,5512.0,True,True +06037541400,7989.0,True,True +06037541500,6273.0,True,True +06037541603,3059.0,True,True +06037541604,5917.0,True,True +06037541605,4805.0,True,True +06037541606,2348.0,True,True +06037541700,6638.0,True,True +06037541801,6180.0,True,True +06037541802,5306.0,False,True +06037542000,4708.0,False,True +06037542103,3685.0,True,True +06037542104,3473.0,True,True +06037542105,4781.0,True,True +06037542106,3523.0,True,True +06037542200,7155.0,True,True +06037542401,4735.0,True,True +06037542402,3306.0,True,True +06037542501,4891.0,True,True +06037542502,5006.0,True,True +06037542601,3295.0,True,True +06037542602,5934.0,True,True +06037542700,6129.0,True,True +06037542800,2980.0,True,True +06037542900,3254.0,True,True +06037543000,4531.0,False,False +06037543100,7254.0,True,True +06037543201,3605.0,True,True +06037543202,5124.0,True,True +06037543304,5872.0,False,False +06037543305,3776.0,False,False +06037543306,7863.0,False,False +06037543321,5446.0,False,False +06037543322,7959.0,False,False +06037543400,3731.0,False,False +06037543501,7457.0,False,False +06037543502,4218.0,False,True +06037543503,5696.0,False,True +06037543601,3781.0,False,False +06037543602,7864.0,False,True +06037543603,4301.0,False,False +06037543604,5226.0,False,False +06037543701,3057.0,False,False +06037543702,6637.0,False,False +06037543703,3370.0,False,False +06037543801,5159.0,False,False +06037543802,6478.0,False,False +06037543903,3740.0,False,True +06037543905,4636.0,True,True +06037544001,4574.0,False,False +06037544002,3187.0,False,False +06037550000,1982.0,True,True +06037550100,7329.0,False,False +06037550201,2911.0,False,False +06037550202,5710.0,False,False +06037550300,8421.0,False,False +06037550400,1226.0,False,False +06037550500,8316.0,False,False +06037550601,5960.0,False,True +06037550602,4328.0,False,False +06037550700,6104.0,False,False +06037550800,7403.0,False,False +06037550901,4141.0,False,False +06037550902,5803.0,False,False +06037551000,7281.0,False,False +06037551101,3964.0,True,True +06037551102,5427.0,False,False +06037551201,3272.0,False,True +06037551202,7840.0,False,False +06037551300,5449.0,False,False +06037551401,4582.0,False,False +06037551402,4677.0,False,False +06037551501,4596.0,False,False +06037551502,4898.0,False,False +06037551600,31.0,False,False +06037551700,6262.0,False,False +06037551800,7267.0,False,False +06037551900,5203.0,False,False +06037552001,4188.0,False,False +06037552002,3409.0,False,False +06037552100,6624.0,True,True +06037552200,5686.0,True,True +06037552301,4482.0,False,True +06037552302,4107.0,False,False +06037552400,2423.0,False,False +06037552601,5260.0,False,True +06037552602,4416.0,False,True +06037552700,6819.0,False,False +06037552800,6198.0,False,True +06037552900,7156.0,False,False +06037553000,5033.0,False,False +06037553100,6770.0,False,False +06037553200,7637.0,False,False +06037553300,3214.0,True,True +06037553400,3495.0,False,False +06037553502,4066.0,False,True +06037553503,2906.0,True,True +06037553504,5363.0,False,False +06037553601,4699.0,True,True +06037553602,4752.0,False,False +06037553701,3981.0,True,True +06037553702,4723.0,True,True +06037553801,4954.0,True,True +06037553802,6881.0,True,True +06037553901,6773.0,False,True +06037553902,5415.0,False,False +06037554001,3756.0,False,False +06037554002,5856.0,False,False +06037554101,3548.0,True,True +06037554103,1396.0,False,False +06037554104,2414.0,False,False +06037554105,4478.0,True,True +06037554201,4356.0,False,False +06037554203,3730.0,False,True +06037554204,4313.0,True,True +06037554301,3499.0,False,False +06037554302,4393.0,False,False +06037554403,5848.0,True,True +06037554404,4206.0,False,False +06037554405,3015.0,False,False +06037554406,4766.0,False,False +06037554511,4140.0,False,False +06037554512,6455.0,False,False +06037554513,2758.0,False,False +06037554514,4700.0,False,False +06037554515,3793.0,False,False +06037554516,3885.0,False,False +06037554517,4510.0,False,False +06037554518,5511.0,False,False +06037554519,3498.0,False,False +06037554521,5949.0,False,False +06037554522,4944.0,False,False +06037554600,4173.0,False,True +06037554700,4328.0,False,True +06037554801,2744.0,True,True +06037554802,6378.0,False,False +06037554900,7636.0,False,False +06037555001,5321.0,False,False +06037555002,3625.0,False,False +06037555102,5987.0,True,True +06037555103,4873.0,False,False +06037555104,4210.0,False,True +06037555202,3661.0,False,False +06037555211,5652.0,True,True +06037555212,5110.0,True,True +06037570001,4764.0,False,False +06037570002,2679.0,False,False +06037570003,4119.0,False,False +06037570100,3192.0,False,False +06037570202,6124.0,False,True +06037570203,4165.0,True,True +06037570204,4201.0,True,True +06037570301,7273.0,True,True +06037570303,4471.0,True,True +06037570304,5094.0,True,True +06037570402,3400.0,False,True +06037570403,4832.0,True,True +06037570404,3676.0,False,False +06037570501,8042.0,True,True +06037570502,6588.0,True,True +06037570601,5610.0,True,True +06037570602,6177.0,False,False +06037570603,5172.0,True,True +06037570701,7372.0,False,False +06037570702,2296.0,False,False +06037570800,5300.0,False,False +06037570901,5752.0,False,False +06037570902,3583.0,False,False +06037571000,5628.0,False,False +06037571101,4402.0,False,False +06037571102,4073.0,False,False +06037571200,8175.0,False,False +06037571300,4484.0,False,False +06037571400,4844.0,False,False +06037571502,4739.0,False,False +06037571503,3878.0,False,False +06037571504,4512.0,False,False +06037571600,2309.0,True,True +06037571701,6247.0,True,True +06037571703,3557.0,False,True +06037571704,4076.0,True,True +06037571800,3222.0,False,False +06037571900,5413.0,False,False +06037572001,5957.0,False,False +06037572002,4723.0,False,False +06037572100,1113.0,False,False +06037572201,5592.0,False,False +06037572202,3614.0,False,False +06037572301,3841.0,True,True +06037572302,3610.0,False,False +06037572400,1425.0,False,True +06037572500,3643.0,True,True +06037572600,5357.0,True,True +06037572700,5268.0,False,False +06037572800,986.0,True,True +06037572900,5360.0,True,True +06037573002,4086.0,True,True +06037573003,1843.0,True,True +06037573004,4577.0,True,True +06037573100,7547.0,False,False +06037573201,4597.0,True,True +06037573202,6379.0,True,True +06037573300,4158.0,True,True +06037573401,1642.0,False,False +06037573402,6384.0,False,False +06037573403,3519.0,False,False +06037573601,6402.0,False,False +06037573700,5009.0,False,False +06037573800,4309.0,False,False +06037573902,2031.0,False,False +06037574000,5165.0,False,False +06037574100,5014.0,False,False +06037574201,3100.0,False,False +06037574202,2251.0,False,False +06037574300,6052.0,False,False +06037574400,5474.0,False,False +06037574500,6631.0,False,False +06037574601,2276.0,False,False +06037574602,1291.0,False,False +06037574700,133.0,False,False +06037574800,2961.0,False,False +06037574901,3697.0,False,False +06037574902,5549.0,False,False +06037575001,3688.0,False,False +06037575002,4843.0,False,False +06037575101,4339.0,True,True +06037575102,4151.0,True,True +06037575103,5171.0,False,False +06037575201,4772.0,True,True +06037575202,4175.0,True,True +06037575300,4360.0,True,True +06037575401,4788.0,True,True +06037575402,4129.0,True,True +06037575500,93.0,True,True +06037575801,2254.0,True,True +06037575802,5664.0,True,True +06037575803,3229.0,True,True +06037575901,3553.0,True,True +06037575902,5208.0,False,False +06037576001,5174.0,False,False +06037576200,5324.0,True,True +06037576301,4165.0,True,True +06037576302,4077.0,True,True +06037576401,5021.0,True,True +06037576402,5015.0,True,True +06037576403,5140.0,True,True +06037576501,2986.0,True,True +06037576502,4658.0,True,True +06037576503,4469.0,False,False +06037576601,4293.0,False,False +06037576602,4423.0,False,False +06037576700,3935.0,False,False +06037576801,4070.0,False,False +06037576802,4061.0,False,False +06037576901,5357.0,True,True +06037576903,3644.0,True,True +06037576904,3157.0,False,False +06037577000,7288.0,False,False +06037577100,7185.0,False,False +06037577200,5848.0,False,False +06037577300,5431.0,False,False +06037577400,2947.0,False,False +06037577501,3370.0,False,False +06037577504,1378.0,False,False +06037577602,3259.0,False,False +06037577603,8457.0,False,False +06037577604,1367.0,False,False +06037599000,3684.0,False,False +06037599100,483.0,False,False +06037600100,7410.0,True,True +06037600201,5063.0,True,True +06037600202,7767.0,True,True +06037600302,3086.0,True,True +06037600303,3883.0,True,True +06037600304,3910.0,True,True +06037600400,4147.0,False,True +06037600501,2712.0,False,False +06037600502,2097.0,False,False +06037600601,2653.0,False,False +06037600602,2542.0,True,True +06037600702,4306.0,False,False +06037600703,1783.0,False,False +06037600704,3373.0,False,False +06037600801,3199.0,False,False +06037600802,2485.0,False,False +06037600902,6491.0,True,True +06037600911,3146.0,False,False +06037600912,5659.0,True,True +06037601001,2381.0,False,False +06037601002,5167.0,False,False +06037601100,6869.0,True,True +06037601202,4000.0,False,True +06037601211,2880.0,True,True +06037601212,6774.0,True,True +06037601301,1921.0,False,False +06037601302,7333.0,True,True +06037601303,5084.0,False,False +06037601401,5949.0,True,True +06037601402,4793.0,False,True +06037601501,3918.0,True,True +06037601502,4059.0,True,True +06037601600,4439.0,True,True +06037601700,5126.0,True,True +06037601801,2834.0,True,True +06037601802,3945.0,False,True +06037601900,4847.0,True,True +06037602002,3057.0,True,True +06037602003,4760.0,True,True +06037602004,3709.0,False,True +06037602103,6650.0,True,True +06037602104,6091.0,True,True +06037602105,4116.0,True,True +06037602106,5403.0,True,True +06037602200,7200.0,False,False +06037602301,6311.0,False,False +06037602302,4819.0,False,False +06037602402,6869.0,False,False +06037602403,5199.0,False,True +06037602404,5457.0,True,True +06037602504,4961.0,False,False +06037602505,4590.0,True,True +06037602506,4297.0,True,True +06037602507,5122.0,True,True +06037602508,6922.0,False,True +06037602509,4457.0,False,True +06037602600,8118.0,False,False +06037602700,3770.0,False,False +06037602801,3718.0,True,True +06037602802,5019.0,False,True +06037602900,4443.0,True,True +06037603001,7498.0,False,True +06037603004,1549.0,False,True +06037603005,5928.0,False,False +06037603006,1898.0,False,False +06037603101,4139.0,False,False +06037603102,3664.0,True,True +06037603200,3394.0,False,False +06037603301,3617.0,False,True +06037603302,4048.0,False,True +06037603400,4113.0,False,False +06037603500,3042.0,False,False +06037603600,4258.0,False,False +06037603702,4777.0,False,False +06037603703,2491.0,False,False +06037603704,6609.0,True,True +06037603801,4748.0,True,True +06037603802,4040.0,True,True +06037603900,7666.0,True,True +06037604001,4207.0,False,False +06037604002,4856.0,True,True +06037604100,7302.0,False,False +06037609900,2057.0,False,False +06037620001,4251.0,False,False +06037620002,3493.0,False,False +06037620101,5632.0,False,False +06037620102,3355.0,False,False +06037620201,1529.0,False,False +06037620301,4819.0,False,False +06037620303,4502.0,False,False +06037620305,5845.0,False,False +06037620400,5279.0,False,False +06037620501,5726.0,False,False +06037620521,3958.0,False,False +06037620522,5024.0,False,False +06037620601,5278.0,False,False +06037620602,5040.0,False,False +06037620701,7211.0,False,False +06037620702,7375.0,False,False +06037620800,7844.0,False,False +06037620901,2785.0,False,False +06037620904,2897.0,False,False +06037621001,4373.0,False,False +06037621002,879.0,False,False +06037621004,4086.0,False,False +06037621102,3069.0,False,False +06037621104,7132.0,False,False +06037621201,6724.0,False,False +06037621204,3052.0,False,False +06037621301,6973.0,False,False +06037621324,3740.0,False,False +06037621326,3017.0,False,False +06037621400,4305.0,False,False +06037650001,5805.0,False,False +06037650003,3202.0,False,False +06037650004,4125.0,False,False +06037650101,6018.0,False,False +06037650102,2211.0,False,False +06037650200,5930.0,False,False +06037650300,6824.0,False,False +06037650401,4758.0,False,False +06037650501,3044.0,False,False +06037650502,4259.0,False,False +06037650602,7315.0,False,False +06037650603,3849.0,False,False +06037650604,5567.0,False,False +06037650605,3064.0,False,False +06037650701,2529.0,False,False +06037650702,4731.0,False,False +06037650800,6423.0,False,False +06037650901,5366.0,False,False +06037650902,6769.0,False,False +06037651001,5444.0,False,False +06037651002,4702.0,False,False +06037651101,5036.0,False,False +06037651102,3534.0,False,False +06037651201,5018.0,False,False +06037651221,3697.0,False,False +06037651222,6459.0,False,False +06037651302,6204.0,False,False +06037651304,4852.0,False,False +06037651401,2521.0,False,False +06037651402,6236.0,False,False +06037670001,3406.0,False,False +06037670002,3939.0,False,False +06037670003,5707.0,False,False +06037670100,6642.0,False,False +06037670201,3820.0,False,False +06037670202,2637.0,False,False +06037670324,5091.0,False,False +06037670326,3613.0,False,False +06037670328,4730.0,False,False +06037670403,2733.0,False,False +06037670405,2864.0,False,False +06037670406,1759.0,False,False +06037670407,6269.0,False,False +06037670411,4356.0,False,False +06037670413,4433.0,False,False +06037670416,4513.0,False,False +06037670500,1513.0,False,False +06037670602,6862.0,False,False +06037670701,7185.0,False,False +06037670702,5649.0,False,False +06037700101,5200.0,False,False +06037700102,4506.0,False,False +06037700200,7446.0,False,False +06037700300,6223.0,False,False +06037700400,5162.0,False,False +06037700501,3526.0,False,False +06037700502,4387.0,False,False +06037700600,5021.0,False,False +06037700700,3575.0,False,False +06037700801,4610.0,False,False +06037700802,4092.0,False,False +06037700901,3600.0,False,False +06037700902,7352.0,False,False +06037701000,5936.0,False,False +06037701100,1101.0,True,True +06037701201,4088.0,False,False +06037701202,3381.0,False,False +06037701302,4868.0,False,False +06037701304,6212.0,False,False +06037701402,5577.0,False,False +06037701501,5267.0,False,False +06037701502,3530.0,False,False +06037701601,4194.0,False,False +06037701602,3987.0,False,False +06037701701,3305.0,False,False +06037701702,3437.0,False,False +06037701801,7001.0,False,False +06037701802,4645.0,False,False +06037701902,4659.0,True,True +06037702002,6443.0,False,False +06037702102,6065.0,False,False +06037702201,4110.0,False,False +06037702202,3969.0,False,False +06037702300,6839.0,False,False +06037702400,4367.0,False,False +06037702501,4965.0,False,False +06037702502,3757.0,False,False +06037702600,6389.0,False,False +06037702700,3435.0,False,False +06037702801,4679.0,False,False +06037702802,2293.0,False,False +06037702803,3063.0,True,True +06037702901,9852.0,False,False +06037703001,6503.0,False,False +06037703002,6721.0,False,False +06037703100,6068.0,False,False +06037703200,5688.0,False,False +06037800101,5738.0,False,False +06037800102,7213.0,False,False +06037800202,6065.0,False,False +06037800203,5533.0,False,False +06037800204,4495.0,False,False +06037800324,6966.0,False,False +06037800325,3573.0,False,False +06037800326,4741.0,False,False +06037800327,5827.0,False,False +06037800328,2733.0,False,False +06037800329,6953.0,False,False +06037800330,882.0,False,False +06037800331,732.0,False,False +06037800332,6543.0,False,False +06037800406,2529.0,False,False +06037800408,7274.0,False,False +06037800410,4031.0,False,False +06037800504,2334.0,False,False +06037800506,3270.0,False,False +06037900102,710.0,True,True +06037900103,5939.0,True,True +06037900104,5822.0,True,True +06037900201,1129.0,False,False +06037900300,5613.0,False,False +06037900501,7225.0,True,True +06037900504,7261.0,False,False +06037900505,3427.0,True,True +06037900506,4188.0,False,False +06037900507,7333.0,True,True +06037900508,4016.0,True,True +06037900602,5542.0,True,True +06037900605,7539.0,True,True +06037900606,3532.0,True,True +06037900607,3651.0,True,True +06037900608,3445.0,True,True +06037900609,4978.0,True,True +06037900701,5012.0,True,True +06037900703,4349.0,True,True +06037900704,2910.0,True,True +06037900705,3980.0,False,False +06037900803,8751.0,True,True +06037900804,3359.0,True,True +06037900805,4916.0,False,False +06037900806,4634.0,True,True +06037900900,4018.0,False,False +06037901003,4895.0,False,False +06037901004,12463.0,False,False +06037901007,2094.0,False,False +06037901008,2744.0,False,False +06037901009,5388.0,False,False +06037901010,5723.0,True,True +06037901011,5314.0,False,False +06037901101,5519.0,False,False +06037901102,5337.0,False,False +06037901205,10783.0,False,False +06037901209,1634.0,True,True +06037901210,1631.0,False,False +06037901213,3853.0,False,False +06037910001,6345.0,True,True +06037910002,7723.0,True,True +06037910101,1863.0,True,True +06037910201,4063.0,True,True +06037910202,5823.0,False,False +06037910205,1225.0,True,False +06037910206,3776.0,False,False +06037910207,6033.0,False,False +06037910208,6210.0,False,False +06037910209,5134.0,False,False +06037910210,7239.0,False,False +06037910301,3874.0,False,False +06037910302,5517.0,False,False +06037910401,6359.0,False,False +06037910402,3583.0,True,True +06037910403,2278.0,True,True +06037910404,4284.0,False,False +06037910501,5218.0,True,True +06037910502,4537.0,True,True +06037910504,4254.0,True,True +06037910505,3217.0,False,False +06037910601,6726.0,True,True +06037910602,4433.0,True,True +06037910603,6928.0,True,True +06037910605,4715.0,True,True +06037910606,3121.0,True,True +06037910705,11613.0,False,False +06037910706,6301.0,False,True +06037910707,5420.0,False,False +06037910709,2039.0,False,False +06037910711,7655.0,False,True +06037910712,2904.0,False,True +06037910713,5787.0,False,True +06037910714,3870.0,True,True +06037910715,6653.0,True,True +06037910716,5770.0,False,False +06037910804,2964.0,False,False +06037910805,4722.0,False,False +06037910807,6424.0,False,False +06037910808,3445.0,False,False +06037910809,2070.0,False,False +06037910810,2599.0,False,False +06037910811,179.0,False,False +06037910812,363.0,False,False +06037910813,4080.0,False,False +06037911001,3926.0,True,True +06037920011,172.0,False,False +06037920012,1111.0,False,False +06037920013,7174.0,False,False +06037920015,6578.0,False,False +06037920016,3563.0,False,False +06037920017,4309.0,False,False +06037920018,2024.0,False,False +06037920020,6501.0,False,False +06037920023,2615.0,False,False +06037920026,386.0,True,True +06037920028,7091.0,False,False +06037920029,5632.0,False,False +06037920030,5088.0,False,False +06037920031,4343.0,False,False +06037920032,3558.0,False,False +06037920033,598.0,False,True +06037920034,3790.0,False,False +06037920035,6895.0,False,False +06037920036,3145.0,False,False +06037920037,10318.0,False,True +06037920038,1710.0,False,False +06037920039,2191.0,False,False +06037920040,3979.0,False,False +06037920041,1668.0,False,False +06037920042,6990.0,False,False +06037920043,7130.0,False,False +06037920044,2399.0,False,False +06037920045,4282.0,False,False +06037920102,5466.0,False,False +06037920104,2933.0,False,False +06037920106,3381.0,False,False +06037920107,6295.0,False,False +06037920108,5386.0,False,False +06037920109,5696.0,False,False +06037920110,3088.0,False,False +06037920111,2738.0,False,False +06037920112,4211.0,False,False +06037920114,6518.0,False,False +06037920115,3957.0,False,False +06037920116,5481.0,False,False +06037920118,6035.0,False,False +06037920119,1974.0,False,False +06037920200,5393.0,False,False +06037920303,1608.0,False,False +06037920312,5826.0,False,False +06037920313,4821.0,False,False +06037920314,2920.0,False,False +06037920322,2854.0,False,False +06037920326,6324.0,False,False +06037920328,2036.0,False,False +06037920329,7152.0,False,False +06037920330,3225.0,False,False +06037920331,3482.0,False,False +06037920332,2438.0,False,False +06037920334,6217.0,False,False +06037920336,6881.0,True,True +06037920337,6943.0,True,True +06037920338,5711.0,False,False +06037920339,7420.0,False,False +06037930101,90.0,False,False +06037930200,461.0,True,True +06037930301,796.0,False,False +06037930401,,False,False +06037980001,0.0,False,False +06037980002,0.0,False,False +06037980003,0.0,False,False +06037980004,0.0,False,False +06037980005,0.0,False,False +06037980006,0.0,False,False +06037980007,0.0,False,False +06037980008,68.0,True,True +06037980009,5.0,False,False +06037980010,95.0,True,True +06037980013,0.0,False,False +06037980014,9.0,False,False +06037980015,671.0,False,False +06037980018,0.0,False,False +06037980019,138.0,False,False +06037980020,0.0,False,False +06037980021,33.0,False,False +06037980022,0.0,False,False +06037980023,0.0,False,False +06037980024,223.0,False,False +06037980025,0.0,False,False +06037980026,26.0,False,False +06037980028,0.0,False,False +06037980030,0.0,False,False +06037980031,1175.0,False,False +06037980033,16.0,True,True +06037990100,0.0,False,False +06037990200,0.0,False,False +06037990300,0.0,False,False +06039000102,4060.0,False,False +06039000103,5197.0,True,True +06039000104,4503.0,False,False +06039000106,5692.0,False,False +06039000108,6669.0,False,False +06039000109,2161.0,False,True +06039000201,8718.0,True,True +06039000202,5738.0,False,False +06039000300,7844.0,True,True +06039000400,1279.0,True,True +06039000502,12934.0,True,True +06039000503,9292.0,False,False +06039000506,6471.0,False,False +06039000507,10535.0,False,True +06039000508,7591.0,False,False +06039000509,6374.0,False,False +06039000602,4296.0,True,True +06039000603,5963.0,True,True +06039000604,5485.0,True,True +06039000700,11600.0,False,False +06039000800,6793.0,True,True +06039000900,11006.0,True,True +06039001000,5232.0,False,False +06041101100,2677.0,False,False +06041101200,3015.0,False,False +06041102100,2421.0,False,False +06041102202,6142.0,False,False +06041102203,5761.0,False,False +06041103100,7887.0,False,False +06041103200,7290.0,False,False +06041104101,8039.0,False,False +06041104102,5760.0,False,False +06041104200,5894.0,False,False +06041104300,1653.0,False,False +06041105000,7077.0,False,False +06041106001,4582.0,False,False +06041106002,5598.0,False,False +06041107000,6803.0,False,False +06041108100,6543.0,False,False +06041108200,6901.0,False,False +06041109001,4280.0,False,False +06041109002,3851.0,False,False +06041110100,5903.0,False,False +06041110200,5016.0,False,False +06041111000,5204.0,False,False +06041112100,4512.0,False,False +06041112201,8175.0,True,True +06041112202,4771.0,True,True +06041113000,3371.0,False,False +06041114100,5206.0,False,False +06041114200,3242.0,False,False +06041115000,7528.0,False,False +06041116000,3154.0,False,False +06041117000,4212.0,False,False +06041118100,2290.0,False,False +06041119100,4983.0,False,False +06041119201,3601.0,False,False +06041119202,3546.0,False,False +06041120000,5857.0,False,False +06041121100,5453.0,False,False +06041121200,6414.0,False,False +06041122000,2649.0,False,False +06041123000,2124.0,False,False +06041124100,5889.0,False,False +06041124200,5716.0,False,False +06041125000,4177.0,False,False +06041126100,6195.0,False,False +06041126200,4224.0,False,False +06041127000,4583.0,False,False +06041128100,6911.0,False,False +06041128200,4957.0,False,False +06041129000,2939.0,True,True +06041130201,3232.0,False,False +06041130202,4377.0,False,False +06041131100,1234.0,False,False +06041132100,1825.0,False,False +06041132200,1641.0,False,False +06041133000,2658.0,False,False +06041990100,0.0,False,False +06043000101,3883.0,True,True +06043000102,2576.0,True,True +06043000200,2857.0,True,True +06043000301,3771.0,False,False +06043000302,2631.0,False,False +06043000400,1702.0,False,False +06045010100,2674.0,True,True +06045010200,3542.0,True,True +06045010300,4115.0,False,False +06045010400,3276.0,True,False +06045010500,4687.0,True,False +06045010600,6346.0,True,True +06045010700,6344.0,True,True +06045010801,5322.0,False,False +06045010802,1869.0,True,True +06045010900,4989.0,True,True +06045011001,2210.0,False,False +06045011002,6135.0,False,False +06045011102,4188.0,False,False +06045011200,3023.0,True,True +06045011300,5673.0,True,True +06045011400,4556.0,False,False +06045011500,6639.0,True,True +06045011600,5488.0,True,True +06045011700,4097.0,False,False +06045011800,2051.0,True,True +06045990100,0.0,False,False +06047000201,3918.0,True,True +06047000202,1889.0,True,True +06047000203,10533.0,True,True +06047000301,5499.0,True,True +06047000303,2540.0,True,True +06047000304,10132.0,False,True +06047000401,1526.0,True,True +06047000402,9060.0,False,True +06047000503,3231.0,True,True +06047000504,6569.0,True,True +06047000505,6663.0,True,True +06047000601,4719.0,True,True +06047000602,4192.0,True,True +06047000603,5882.0,True,True +06047000701,3226.0,True,True +06047000702,5681.0,False,False +06047000801,5539.0,True,True +06047000802,4109.0,False,False +06047000901,4028.0,True,True +06047000902,9505.0,False,False +06047001002,15901.0,False,True +06047001003,4281.0,True,True +06047001004,3650.0,True,True +06047001005,2461.0,True,True +06047001101,5681.0,False,False +06047001200,5636.0,False,False +06047001301,2662.0,True,True +06047001302,2873.0,True,True +06047001401,4194.0,True,True +06047001402,4423.0,True,True +06047001501,2425.0,False,False +06047001502,2329.0,True,True +06047001503,4585.0,True,True +06047001601,4238.0,True,True +06047001602,7877.0,True,True +06047001700,6684.0,True,True +06047001801,5719.0,False,False +06047001901,5517.0,True,True +06047001902,2345.0,True,True +06047002000,8712.0,True,True +06047002100,4246.0,True,True +06047002201,6249.0,True,True +06047002202,10170.0,True,True +06047002301,6759.0,False,False +06047002302,15950.0,True,True +06047002401,1406.0,True,True +06047002402,7637.0,True,True +06047002500,2389.0,True,True +06047002600,5942.0,False,False +06049000100,3509.0,True,True +06049000200,1650.0,True,True +06049000300,2441.0,False,True +06049000400,1307.0,True,True +06051000101,3697.0,False,False +06051000102,2444.0,False,True +06051000200,8169.0,False,False +06053000101,2283.0,False,True +06053000102,9315.0,False,False +06053000103,4695.0,False,False +06053000104,3878.0,False,False +06053000200,7489.0,True,True +06053000300,4794.0,True,False +06053000400,7745.0,True,True +06053000501,4416.0,True,True +06053000502,4182.0,True,True +06053000600,7302.0,True,True +06053000701,5869.0,True,True +06053000702,5883.0,True,True +06053000800,5802.0,True,True +06053000900,5657.0,True,True +06053001200,3003.0,False,False +06053001300,2508.0,True,True +06053001400,2679.0,False,False +06053001500,6354.0,False,False +06053001600,2700.0,False,False +06053001700,3963.0,True,True +06053001801,4185.0,False,True +06053001802,5475.0,True,True +06053010101,5024.0,True,True +06053010102,3539.0,False,False +06053010202,4943.0,False,False +06053010305,4555.0,False,False +06053010306,1592.0,True,True +06053010400,6521.0,True,True +06053010501,6392.0,False,False +06053010504,5246.0,False,False +06053010505,6016.0,False,True +06053010506,5247.0,True,True +06053010603,7448.0,False,False +06053010604,5643.0,False,True +06053010605,4799.0,False,True +06053010606,6479.0,False,True +06053010607,4146.0,True,True +06053010608,3227.0,True,True +06053010701,6464.0,False,False +06053010702,3266.0,False,False +06053010804,5469.0,True,True +06053010900,8821.0,False,True +06053011000,5844.0,False,False +06053011101,5924.0,True,True +06053011102,12388.0,False,True +06053011202,7263.0,True,True +06053011203,6986.0,True,True +06053011204,3749.0,True,True +06053011302,5933.0,True,True +06053011303,4175.0,False,False +06053011304,7595.0,True,True +06053011400,4462.0,False,False +06053011502,1987.0,False,False +06053011602,5991.0,False,False +06053011604,2087.0,False,False +06053011700,3852.0,False,False +06053011801,2125.0,False,False +06053011802,1705.0,False,False +06053011900,3991.0,False,False +06053012000,4074.0,False,False +06053012100,2113.0,False,False +06053012200,2755.0,False,False +06053012302,2072.0,False,False +06053012401,1667.0,False,False +06053012402,2841.0,False,False +06053012502,4894.0,False,False +06053012600,2366.0,False,False +06053012700,3472.0,False,False +06053012800,4881.0,False,False +06053013000,3379.0,False,False +06053013100,2200.0,False,False +06053013200,4176.0,False,False +06053013300,6199.0,False,False +06053013400,1525.0,False,False +06053013500,5029.0,False,False +06053013600,4679.0,True,False +06053013700,4325.0,True,True +06053013800,6200.0,False,False +06053013900,2362.0,False,False +06053014000,2427.0,True,False +06053014102,3399.0,False,False +06053014104,1892.0,False,False +06053014105,3461.0,False,False +06053014107,8240.0,False,False +06053014201,5414.0,False,False +06053014202,4411.0,False,True +06053014301,3561.0,False,False +06053014302,4471.0,False,False +06053014500,4474.0,False,False +06053014601,4980.0,False,True +06053014700,7873.0,False,True +06053014800,6527.0,False,False +06053980000,0.0,False,False +06053990000,0.0,False,False +06055200201,3528.0,False,False +06055200202,2461.0,False,True +06055200203,2231.0,False,False +06055200301,6037.0,False,False +06055200302,2755.0,False,False +06055200400,3747.0,False,False +06055200501,5011.0,False,False +06055200503,1706.0,True,True +06055200504,6064.0,False,True +06055200505,2583.0,False,False +06055200601,5633.0,False,False +06055200602,4124.0,False,False +06055200703,2860.0,False,False +06055200704,5312.0,False,False +06055200705,3017.0,False,False +06055200706,3213.0,False,False +06055200707,3240.0,False,False +06055200802,6228.0,False,False +06055200803,2133.0,False,False +06055200804,5573.0,False,False +06055200900,757.0,True,True +06055201003,5197.0,False,False +06055201004,5980.0,False,False +06055201005,2500.0,False,False +06055201006,3314.0,False,False +06055201007,4058.0,False,False +06055201101,2054.0,False,False +06055201102,1904.0,False,False +06055201200,5081.0,False,False +06055201300,2987.0,False,False +06055201401,3024.0,False,False +06055201402,2917.0,False,False +06055201403,738.0,False,False +06055201500,1846.0,False,False +06055201601,2783.0,False,False +06055201602,3318.0,False,False +06055201700,5288.0,False,False +06055201800,1737.0,False,False +06055201900,1413.0,False,False +06055202000,5271.0,False,False +06057000102,7040.0,False,False +06057000103,7787.0,False,False +06057000104,3149.0,False,False +06057000105,3143.0,False,False +06057000200,2668.0,False,False +06057000300,2666.0,False,False +06057000401,5783.0,False,False +06057000402,5606.0,False,False +06057000501,5515.0,False,False +06057000502,4959.0,False,False +06057000600,6943.0,True,True +06057000701,7334.0,False,False +06057000702,3936.0,False,False +06057000801,5450.0,False,False +06057000802,6854.0,False,False +06057000900,3754.0,True,True +06057001203,2538.0,False,False +06057001204,2273.0,False,False +06057001205,5183.0,False,False +06057001206,6663.0,False,False +06059001101,5031.0,False,False +06059001102,3237.0,False,False +06059001103,4594.0,False,True +06059001201,5594.0,False,True +06059001202,3662.0,False,True +06059001301,6519.0,False,False +06059001303,5884.0,False,False +06059001304,3982.0,True,True +06059001401,4495.0,False,True +06059001402,5023.0,False,False +06059001403,3023.0,False,False +06059001404,3934.0,True,True +06059001501,5792.0,False,False +06059001503,5049.0,False,False +06059001504,4844.0,False,False +06059001505,6931.0,False,False +06059001506,4286.0,False,False +06059001507,4745.0,False,False +06059001601,7986.0,False,False +06059001602,4924.0,False,False +06059001704,8256.0,False,False +06059001705,4002.0,False,False +06059001706,3648.0,False,False +06059001707,7291.0,False,False +06059001708,3619.0,False,False +06059001801,5510.0,False,True +06059001802,7823.0,False,True +06059001901,2552.0,False,False +06059001902,3213.0,False,False +06059001903,3713.0,False,False +06059011000,6077.0,False,False +06059011101,4191.0,False,True +06059011102,4134.0,False,False +06059011200,4374.0,False,False +06059011300,5153.0,False,False +06059011401,2219.0,False,False +06059011402,2608.0,False,False +06059011403,6654.0,False,False +06059011502,4485.0,False,False +06059011503,1839.0,False,False +06059011504,5916.0,False,False +06059011601,8430.0,True,True +06059011602,5314.0,True,True +06059011707,5911.0,False,False +06059011708,4566.0,False,False +06059011709,4610.0,False,False +06059011710,3455.0,False,False +06059011711,7878.0,False,False +06059011712,4734.0,False,False +06059011714,898.0,False,False +06059011715,6437.0,False,False +06059011716,5223.0,False,False +06059011717,2680.0,False,False +06059011718,3458.0,False,False +06059011720,6573.0,True,True +06059011721,5364.0,False,False +06059011722,2259.0,False,False +06059021802,6981.0,False,False +06059021807,4438.0,False,False +06059021809,3188.0,False,False +06059021810,3570.0,False,False +06059021812,6535.0,False,False +06059021813,4.0,True,True +06059021814,7192.0,False,False +06059021815,11591.0,False,False +06059021816,4966.0,False,False +06059021817,3848.0,False,False +06059021820,4259.0,False,False +06059021821,7772.0,False,False +06059021822,9543.0,False,False +06059021823,4238.0,False,False +06059021824,2782.0,False,False +06059021825,2940.0,False,False +06059021826,2806.0,False,False +06059021827,3064.0,False,False +06059021828,4146.0,False,False +06059021829,5278.0,False,False +06059021830,5943.0,False,False +06059021903,3825.0,False,False +06059021905,5145.0,False,False +06059021912,4365.0,False,False +06059021913,7435.0,False,False +06059021914,4306.0,False,False +06059021915,3997.0,False,False +06059021916,3308.0,False,False +06059021917,3221.0,False,False +06059021918,4710.0,False,False +06059021919,2825.0,False,False +06059021920,7041.0,False,False +06059021921,4217.0,False,False +06059021922,4841.0,False,False +06059021923,7141.0,False,False +06059021924,4314.0,False,False +06059032002,6833.0,False,False +06059032003,4824.0,False,False +06059032011,1639.0,False,False +06059032012,4104.0,False,False +06059032013,5275.0,False,False +06059032014,6397.0,False,False +06059032015,6679.0,False,False +06059032020,5890.0,False,False +06059032022,6792.0,False,False +06059032023,15339.0,False,False +06059032027,6583.0,False,False +06059032028,3247.0,False,False +06059032029,4297.0,False,False +06059032030,3971.0,False,False +06059032031,3641.0,False,False +06059032032,3065.0,False,False +06059032033,3623.0,False,False +06059032034,5786.0,False,False +06059032035,2461.0,False,False +06059032036,3674.0,False,False +06059032037,4882.0,False,False +06059032038,6361.0,False,False +06059032039,6762.0,False,False +06059032040,2620.0,False,False +06059032041,1011.0,False,False +06059032042,5355.0,False,False +06059032043,3736.0,False,False +06059032044,5700.0,False,False +06059032045,3352.0,False,False +06059032046,6004.0,False,False +06059032047,4534.0,False,False +06059032048,5742.0,False,False +06059032049,9613.0,False,False +06059032050,5143.0,False,False +06059032051,4423.0,False,False +06059032053,8131.0,False,False +06059032054,5452.0,False,False +06059032055,3671.0,False,False +06059032056,10803.0,False,False +06059032057,8499.0,False,False +06059032058,8226.0,False,False +06059032059,10275.0,False,False +06059032061,5521.0,False,False +06059042103,8067.0,False,False +06059042106,1696.0,False,False +06059042107,3490.0,False,False +06059042108,4997.0,False,False +06059042109,5175.0,False,False +06059042111,6004.0,False,False +06059042112,6700.0,False,False +06059042113,4294.0,False,False +06059042114,3636.0,False,False +06059042201,5207.0,False,False +06059042203,7896.0,False,False +06059042205,6813.0,False,False +06059042206,3478.0,False,False +06059042305,3492.0,False,False +06059042307,7090.0,False,False +06059042310,8190.0,False,False +06059042311,6022.0,False,False +06059042312,9752.0,True,True +06059042313,6723.0,False,False +06059042315,5824.0,False,False +06059042317,3156.0,False,False +06059042319,3448.0,False,False +06059042320,6011.0,False,False +06059042323,4913.0,False,False +06059042324,4465.0,False,False +06059042325,3551.0,False,False +06059042326,4781.0,False,False +06059042327,5124.0,False,False +06059042328,2526.0,False,False +06059042329,4059.0,False,False +06059042330,6489.0,False,False +06059042331,6215.0,False,False +06059042332,5318.0,False,False +06059042333,4207.0,False,False +06059042334,5453.0,False,False +06059042335,6869.0,False,False +06059042336,4201.0,False,False +06059042337,3352.0,False,False +06059042338,4603.0,False,False +06059042339,3472.0,False,False +06059052404,4220.0,False,False +06059052408,6342.0,False,False +06059052410,5452.0,False,False +06059052411,5264.0,False,False +06059052415,4110.0,False,False +06059052416,4318.0,False,False +06059052417,7893.0,False,False +06059052418,21717.0,False,False +06059052419,3434.0,False,False +06059052420,23390.0,False,False +06059052421,5447.0,False,False +06059052422,8974.0,False,False +06059052423,5905.0,False,False +06059052424,4884.0,False,False +06059052425,5925.0,False,False +06059052426,20544.0,False,False +06059052427,5662.0,False,False +06059052428,6359.0,False,False +06059052502,5951.0,False,False +06059052505,5283.0,False,False +06059052506,2561.0,False,False +06059052511,6532.0,False,False +06059052513,5728.0,False,False +06059052514,5202.0,False,False +06059052515,9253.0,False,False +06059052517,10849.0,False,False +06059052518,7589.0,False,False +06059052519,4565.0,False,False +06059052520,3665.0,False,False +06059052521,5147.0,False,False +06059052522,4222.0,False,False +06059052523,4510.0,False,False +06059052524,7988.0,False,False +06059052525,19462.0,False,False +06059052526,4794.0,False,False +06059052527,8917.0,False,False +06059052528,4059.0,False,False +06059062604,15355.0,False,False +06059062605,3028.0,False,False +06059062610,10440.0,False,False +06059062611,4963.0,False,False +06059062612,8225.0,False,False +06059062614,17197.0,False,False +06059062619,3867.0,False,False +06059062620,5053.0,False,False +06059062621,12331.0,False,False +06059062622,3868.0,False,False +06059062625,3975.0,False,True +06059062626,3167.0,False,False +06059062627,3549.0,False,False +06059062628,3812.0,False,False +06059062629,2545.0,False,False +06059062630,1739.0,False,False +06059062631,3182.0,False,False +06059062632,4089.0,False,False +06059062633,6480.0,False,False +06059062634,5121.0,False,False +06059062635,4160.0,False,False +06059062636,4067.0,False,False +06059062637,5188.0,False,False +06059062638,6737.0,False,False +06059062639,7277.0,False,False +06059062640,3741.0,False,False +06059062641,5376.0,False,False +06059062642,2834.0,False,False +06059062643,7231.0,False,False +06059062644,8487.0,False,False +06059062645,6527.0,False,False +06059062646,3433.0,False,False +06059062647,4553.0,False,False +06059062648,2640.0,False,False +06059062649,3204.0,False,False +06059062701,2764.0,False,False +06059062702,4245.0,False,False +06059062800,3888.0,False,False +06059062900,1527.0,False,False +06059063004,6718.0,False,False +06059063005,1406.0,False,False +06059063006,2519.0,False,False +06059063007,6285.0,False,False +06059063008,1093.0,False,False +06059063009,1835.0,False,False +06059063010,6275.0,False,False +06059063101,3236.0,False,False +06059063102,6971.0,False,False +06059063103,2636.0,False,False +06059063201,4016.0,False,False +06059063202,3768.0,False,False +06059063301,2946.0,False,False +06059063302,4457.0,False,False +06059063400,4906.0,False,False +06059063500,6360.0,False,False +06059063601,3835.0,False,False +06059063603,6173.0,False,False +06059063604,4070.0,False,False +06059063605,5387.0,True,True +06059063701,5930.0,True,True +06059063702,6583.0,True,True +06059063802,2857.0,False,False +06059063803,4416.0,False,False +06059063805,2615.0,False,False +06059063806,3836.0,False,False +06059063807,4910.0,False,False +06059063808,6052.0,True,True +06059063902,6745.0,False,False +06059063903,4019.0,False,False +06059063904,4492.0,False,False +06059063905,4254.0,False,False +06059063906,6334.0,False,False +06059063907,8311.0,False,False +06059063908,5725.0,False,False +06059074003,4230.0,False,False +06059074004,7765.0,False,False +06059074005,7903.0,False,True +06059074006,5778.0,False,False +06059074102,6631.0,False,True +06059074103,5021.0,False,False +06059074106,6719.0,False,False +06059074107,6671.0,False,False +06059074108,4939.0,False,False +06059074109,3358.0,False,False +06059074110,3910.0,False,False +06059074111,5523.0,False,False +06059074200,9608.0,True,True +06059074300,4051.0,False,False +06059074403,6240.0,True,True +06059074405,6662.0,True,True +06059074406,3693.0,True,True +06059074407,5648.0,True,True +06059074408,6300.0,True,True +06059074501,7241.0,True,True +06059074502,5413.0,True,True +06059074601,7602.0,True,True +06059074602,8382.0,True,True +06059074701,8184.0,True,True +06059074702,6078.0,False,True +06059074801,5767.0,True,True +06059074802,6772.0,True,True +06059074803,9166.0,False,True +06059074805,5288.0,True,True +06059074806,5205.0,True,True +06059074901,9933.0,True,True +06059074902,6221.0,True,True +06059075002,8236.0,True,True +06059075003,7500.0,True,True +06059075004,5267.0,True,True +06059075100,9934.0,True,True +06059075201,6089.0,True,True +06059075202,5592.0,False,True +06059075301,5751.0,False,False +06059075302,5137.0,False,False +06059075303,3372.0,False,False +06059075401,4258.0,False,False +06059075403,8105.0,False,False +06059075404,7202.0,False,False +06059075405,3448.0,False,False +06059075504,3857.0,False,False +06059075505,3355.0,False,False +06059075506,3636.0,False,False +06059075507,5257.0,False,False +06059075512,3866.0,False,False +06059075513,5200.0,False,False +06059075514,4192.0,True,True +06059075515,21127.0,False,False +06059075603,4120.0,False,False +06059075604,7867.0,False,False +06059075605,6113.0,False,False +06059075606,5911.0,False,False +06059075607,6381.0,False,False +06059075701,7155.0,False,False +06059075702,3809.0,False,False +06059075703,4508.0,False,False +06059075805,4147.0,False,False +06059075806,6273.0,False,False +06059075807,4163.0,False,False +06059075808,3300.0,False,False +06059075809,2822.0,False,False +06059075810,3028.0,False,False +06059075811,3344.0,False,False +06059075812,6477.0,False,False +06059075813,5060.0,False,False +06059075814,2915.0,False,False +06059075815,5545.0,False,False +06059075816,3630.0,False,False +06059075901,4011.0,False,False +06059075902,7308.0,False,False +06059076000,9150.0,False,False +06059076101,9594.0,False,False +06059076102,8492.0,False,True +06059076103,9563.0,True,True +06059076201,7619.0,False,False +06059076202,6159.0,False,False +06059076204,4639.0,True,True +06059076205,7424.0,False,False +06059076206,4692.0,False,False +06059076208,5412.0,False,False +06059086301,7075.0,False,False +06059086303,7535.0,False,False +06059086304,4864.0,False,False +06059086305,4266.0,False,False +06059086306,4773.0,False,False +06059086402,6071.0,False,False +06059086404,6350.0,False,True +06059086405,7658.0,True,True +06059086406,4189.0,False,True +06059086407,6379.0,False,False +06059086501,4254.0,True,True +06059086502,6318.0,True,True +06059086601,9185.0,True,True +06059086602,6447.0,False,False +06059086701,9054.0,False,False +06059086702,8069.0,False,True +06059086801,3878.0,False,False +06059086802,5874.0,False,True +06059086803,8751.0,False,False +06059086901,8270.0,True,True +06059086902,5624.0,False,False +06059086903,7128.0,False,True +06059087001,5272.0,False,False +06059087002,7887.0,False,True +06059087101,4741.0,True,True +06059087102,7084.0,False,False +06059087103,8986.0,False,False +06059087105,4614.0,False,True +06059087106,4819.0,True,True +06059087200,7725.0,False,True +06059087300,10714.0,True,True +06059087401,4946.0,False,False +06059087403,3701.0,True,True +06059087404,3891.0,True,True +06059087405,5627.0,True,True +06059087503,6011.0,True,True +06059087504,7286.0,True,True +06059087505,4913.0,True,True +06059087601,5348.0,True,True +06059087602,8007.0,True,True +06059087701,5901.0,False,False +06059087703,6222.0,False,False +06059087704,5411.0,False,False +06059087801,5195.0,False,True +06059087802,7163.0,False,True +06059087803,5902.0,True,True +06059087805,7494.0,False,False +06059087806,6654.0,True,True +06059087901,4030.0,True,True +06059087902,5408.0,True,True +06059088001,4527.0,False,True +06059088002,4157.0,False,True +06059088101,2285.0,False,False +06059088104,4743.0,False,True +06059088105,4793.0,False,False +06059088106,5008.0,False,True +06059088107,5977.0,True,True +06059088201,4082.0,True,True +06059088202,3286.0,False,False +06059088203,5530.0,False,True +06059088301,6566.0,False,True +06059088302,6040.0,False,True +06059088401,5393.0,False,False +06059088402,4700.0,False,True +06059088403,6923.0,False,True +06059088501,6883.0,False,True +06059088502,5598.0,False,True +06059088601,6742.0,False,True +06059088602,4488.0,False,True +06059088701,5935.0,True,True +06059088702,6243.0,False,True +06059088801,7689.0,False,True +06059088802,4984.0,True,True +06059088901,7018.0,False,True +06059088902,5019.0,False,True +06059088903,8826.0,False,True +06059088904,5684.0,False,True +06059088905,4657.0,True,True +06059089001,7077.0,True,True +06059089003,3856.0,False,True +06059089004,6883.0,True,True +06059089102,6686.0,False,True +06059089104,6434.0,True,True +06059089105,6889.0,True,True +06059089106,4226.0,True,True +06059089107,5664.0,False,False +06059099202,8826.0,False,True +06059099203,6215.0,False,True +06059099204,4582.0,False,True +06059099212,5524.0,False,False +06059099214,3825.0,False,False +06059099215,5074.0,False,False +06059099216,4658.0,False,False +06059099217,2454.0,False,False +06059099220,5770.0,False,False +06059099222,5346.0,False,True +06059099223,5095.0,False,True +06059099224,3448.0,False,False +06059099225,3554.0,False,False +06059099226,3772.0,False,True +06059099227,5806.0,False,False +06059099229,6176.0,False,True +06059099230,4717.0,False,False +06059099231,5431.0,False,False +06059099232,5557.0,False,False +06059099233,3074.0,False,False +06059099234,3499.0,False,False +06059099235,5123.0,False,False +06059099237,3198.0,False,False +06059099238,3974.0,False,False +06059099239,3824.0,False,False +06059099240,5275.0,False,False +06059099241,4202.0,False,False +06059099242,3647.0,False,False +06059099243,4034.0,False,False +06059099244,3528.0,False,False +06059099245,2948.0,False,False +06059099246,3476.0,False,False +06059099247,3330.0,False,True +06059099248,5636.0,True,True +06059099249,4356.0,True,True +06059099250,3046.0,False,True +06059099251,5767.0,False,False +06059099305,7490.0,False,False +06059099306,5909.0,False,False +06059099307,2557.0,False,False +06059099308,5996.0,False,False +06059099309,5072.0,False,False +06059099310,4057.0,False,False +06059099311,3425.0,False,False +06059099402,8190.0,True,True +06059099404,4420.0,False,False +06059099405,4335.0,False,False +06059099406,4779.0,False,False +06059099407,2380.0,False,False +06059099408,4594.0,False,False +06059099410,4903.0,False,False +06059099411,5851.0,False,False +06059099412,4875.0,False,False +06059099413,8633.0,False,False +06059099415,5338.0,False,False +06059099416,5536.0,False,False +06059099417,4845.0,False,False +06059099502,621.0,False,False +06059099504,2679.0,False,False +06059099506,919.0,False,False +06059099508,5116.0,False,False +06059099509,3352.0,False,False +06059099510,4449.0,False,False +06059099511,3023.0,False,False +06059099512,2959.0,False,False +06059099513,2106.0,False,False +06059099514,4897.0,False,False +06059099601,7230.0,True,True +06059099602,3275.0,False,False +06059099603,7113.0,False,False +06059099604,3874.0,False,False +06059099605,4951.0,False,False +06059099701,6441.0,True,True +06059099702,7897.0,False,True +06059099703,6157.0,False,True +06059099801,5742.0,False,True +06059099802,5472.0,True,True +06059099803,5697.0,True,True +06059099902,4299.0,False,False +06059099903,5764.0,False,True +06059099904,6116.0,True,True +06059099905,4265.0,False,False +06059099906,5270.0,False,False +06059110001,4691.0,False,False +06059110003,3141.0,False,False +06059110004,4953.0,False,False +06059110005,2981.0,False,False +06059110006,3248.0,False,False +06059110007,5148.0,False,False +06059110008,4486.0,False,False +06059110010,4801.0,False,False +06059110011,2799.0,False,False +06059110012,5131.0,False,False +06059110014,5274.0,False,False +06059110015,3354.0,False,False +06059110102,5785.0,False,False +06059110104,5631.0,False,False +06059110106,3670.0,False,False +06059110108,2677.0,False,False +06059110109,5410.0,False,False +06059110110,5809.0,False,True +06059110111,6189.0,False,False +06059110113,2110.0,False,False +06059110114,4827.0,False,False +06059110115,3993.0,False,False +06059110116,4698.0,False,False +06059110117,6393.0,False,False +06059110118,2355.0,False,False +06059110201,8236.0,False,True +06059110202,8018.0,False,True +06059110203,5512.0,False,False +06059110301,6980.0,False,False +06059110302,5975.0,False,False +06059110303,4661.0,False,False +06059110304,4966.0,False,False +06059110401,4906.0,False,False +06059110402,5588.0,True,True +06059110500,8677.0,True,True +06059110603,8669.0,True,True +06059110604,7704.0,False,False +06059110605,6740.0,False,False +06059110606,4541.0,False,True +06059110607,4254.0,False,False +06059980000,33.0,False,False +06059990100,0.0,False,False +06061020104,841.0,False,False +06061020105,1056.0,False,False +06061020106,1277.0,True,True +06061020107,2925.0,True,True +06061020200,6903.0,False,False +06061020300,4566.0,False,False +06061020401,2173.0,False,False +06061020402,3665.0,False,False +06061020501,2979.0,False,False +06061020502,4550.0,False,False +06061020601,7675.0,False,False +06061020602,8759.0,False,False +06061020604,6704.0,False,False +06061020605,6182.0,False,False +06061020606,4502.0,False,False +06061020710,4639.0,False,False +06061020711,4072.0,False,False +06061020712,3715.0,False,False +06061020713,3196.0,False,False +06061020714,4007.0,False,False +06061020715,3096.0,False,False +06061020717,4188.0,False,False +06061020805,3856.0,False,False +06061020806,3668.0,False,False +06061020901,2467.0,True,True +06061020908,6718.0,False,False +06061021003,6764.0,False,False +06061021034,4195.0,False,False +06061021035,7748.0,False,False +06061021037,1985.0,False,False +06061021038,7389.0,False,False +06061021039,1679.0,False,False +06061021040,3132.0,False,False +06061021043,3682.0,False,False +06061021044,5954.0,False,False +06061021045,3107.0,False,False +06061021046,5065.0,False,False +06061021103,3783.0,False,False +06061021106,2363.0,False,False +06061021108,3080.0,False,False +06061021109,5634.0,False,False +06061021122,3300.0,False,False +06061021123,7297.0,False,False +06061021128,2951.0,False,False +06061021129,3352.0,False,False +06061021130,2477.0,False,False +06061021131,5526.0,False,False +06061021203,7668.0,False,False +06061021204,2546.0,False,False +06061021304,6057.0,False,False +06061021309,14332.0,False,False +06061021322,20899.0,False,False +06061021401,2538.0,False,False +06061021403,6909.0,True,True +06061021501,5885.0,False,False +06061021502,3668.0,False,False +06061021603,4763.0,True,True +06061021604,3634.0,False,False +06061021801,4965.0,False,False +06061021802,6318.0,False,False +06061021901,3350.0,False,False +06061021902,4875.0,False,False +06061022002,7188.0,False,False +06061022011,1622.0,False,False +06061022013,2932.0,False,False +06061022014,1318.0,False,False +06061022100,525.0,False,False +06061022200,751.0,False,False +06061022300,415.0,True,True +06061022400,4402.0,False,False +06061022500,4721.0,False,False +06061022600,5042.0,False,False +06061022800,4685.0,False,False +06061022900,5394.0,False,False +06061023000,3623.0,False,False +06061023100,8339.0,False,False +06061023200,6000.0,False,False +06061023300,5930.0,False,False +06061023400,5674.0,False,False +06061023500,6011.0,False,False +06061023600,4182.0,False,False +06061023700,3197.0,False,False +06061023800,3023.0,False,False +06061023900,3289.0,False,False +06061990000,0.0,False,False +06063000100,5446.0,False,False +06063000201,1359.0,False,False +06063000202,1142.0,False,False +06063000300,4409.0,False,False +06063000400,2510.0,True,True +06063000501,2145.0,False,False +06063000502,1649.0,False,False +06065030101,1201.0,True,True +06065030103,2277.0,False,True +06065030104,7650.0,False,False +06065030200,4469.0,False,False +06065030300,4071.0,True,True +06065030400,6741.0,True,True +06065030501,4557.0,True,True +06065030502,1963.0,True,True +06065030503,3592.0,True,True +06065030601,5586.0,False,False +06065030602,3229.0,False,False +06065030603,3232.0,False,False +06065030700,5927.0,False,False +06065030800,7801.0,False,False +06065030900,3059.0,False,False +06065031001,5872.0,False,False +06065031002,5202.0,True,True +06065031100,5726.0,False,False +06065031200,7184.0,False,False +06065031300,3277.0,True,True +06065031401,7635.0,True,True +06065031402,7793.0,True,True +06065031501,7993.0,False,False +06065031502,8357.0,True,True +06065031601,4499.0,True,True +06065031602,6311.0,True,True +06065031701,2403.0,True,True +06065031702,2322.0,False,False +06065031703,4115.0,False,False +06065031704,5838.0,False,False +06065040101,4542.0,False,True +06065040102,4810.0,False,False +06065040201,6340.0,False,False +06065040202,3342.0,True,True +06065040203,4422.0,True,True +06065040204,4160.0,True,True +06065040301,8542.0,True,True +06065040302,7414.0,False,False +06065040303,4321.0,False,False +06065040402,4373.0,True,True +06065040403,5723.0,False,False +06065040404,2972.0,False,False +06065040405,6404.0,False,False +06065040501,7327.0,False,False +06065040502,6650.0,True,True +06065040503,4155.0,True,True +06065040603,3346.0,False,False +06065040604,5363.0,False,False +06065040605,3208.0,True,True +06065040606,3746.0,False,False +06065040607,12853.0,False,False +06065040609,14774.0,False,False +06065040611,8054.0,False,False +06065040613,11946.0,False,False +06065040615,10810.0,False,False +06065040616,8333.0,False,False +06065040701,2417.0,False,False +06065040702,2614.0,False,False +06065040703,2643.0,False,False +06065040806,3202.0,False,False +06065040807,3543.0,False,False +06065040808,8774.0,True,True +06065040809,4262.0,False,True +06065040812,4059.0,False,False +06065040813,6377.0,False,False +06065040814,5152.0,False,False +06065040815,3960.0,False,False +06065040816,2446.0,False,False +06065040821,5973.0,False,False +06065040901,8029.0,False,False +06065040902,6486.0,False,False +06065040903,2889.0,False,False +06065040904,4365.0,False,True +06065041001,2750.0,True,True +06065041002,3551.0,False,False +06065041003,2814.0,False,False +06065041004,4798.0,True,True +06065041101,6247.0,True,True +06065041102,4689.0,True,True +06065041201,4370.0,False,False +06065041202,4683.0,True,True +06065041203,3499.0,True,True +06065041301,3902.0,True,True +06065041302,4786.0,False,True +06065041403,4106.0,False,False +06065041404,3927.0,False,False +06065041405,4478.0,False,False +06065041406,5974.0,False,False +06065041407,5873.0,False,False +06065041408,4581.0,False,False +06065041409,16512.0,False,False +06065041410,2949.0,True,True +06065041411,2697.0,False,False +06065041412,5542.0,False,False +06065041500,3263.0,True,True +06065041600,6511.0,True,True +06065041702,5185.0,False,False +06065041703,6378.0,True,True +06065041704,3815.0,True,True +06065041803,7092.0,False,False +06065041804,4826.0,False,False +06065041805,6205.0,False,False +06065041806,4858.0,False,False +06065041807,2329.0,False,False +06065041808,6728.0,False,False +06065041809,5815.0,False,False +06065041810,6192.0,False,False +06065041812,3336.0,False,False +06065041813,7165.0,True,True +06065041904,5391.0,False,False +06065041905,3391.0,False,False +06065041906,6583.0,True,True +06065041909,5622.0,False,False +06065041910,7685.0,False,False +06065041911,13750.0,False,False +06065041912,6797.0,False,False +06065041913,5414.0,False,False +06065042003,6776.0,False,False +06065042004,3722.0,False,False +06065042005,5821.0,False,False +06065042007,5058.0,False,False +06065042008,8902.0,False,False +06065042009,8126.0,True,True +06065042010,6179.0,True,True +06065042012,6956.0,False,False +06065042013,7811.0,False,False +06065042014,11624.0,False,False +06065042206,5820.0,False,False +06065042207,2889.0,False,False +06065042208,2635.0,False,False +06065042209,5439.0,True,True +06065042210,4856.0,False,True +06065042212,6511.0,False,False +06065042213,4271.0,False,False +06065042214,6933.0,False,False +06065042217,5377.0,False,False +06065042300,8827.0,False,False +06065042401,2090.0,False,False +06065042402,4944.0,False,False +06065042403,4122.0,False,False +06065042404,2214.0,True,True +06065042405,5324.0,True,True +06065042406,4675.0,True,True +06065042407,3411.0,True,True +06065042408,3437.0,False,False +06065042409,3467.0,True,True +06065042410,5627.0,False,False +06065042411,2327.0,False,False +06065042412,4965.0,False,True +06065042505,3542.0,True,True +06065042506,9138.0,False,False +06065042507,4797.0,False,True +06065042508,5486.0,True,True +06065042509,3325.0,True,True +06065042510,5473.0,True,True +06065042511,3357.0,True,True +06065042512,3378.0,True,True +06065042513,2973.0,False,True +06065042514,3467.0,True,True +06065042515,3795.0,True,True +06065042516,4378.0,True,True +06065042517,3335.0,True,True +06065042518,3497.0,False,True +06065042519,1873.0,True,True +06065042520,4928.0,True,True +06065042521,5338.0,True,True +06065042617,11457.0,False,False +06065042618,8788.0,True,True +06065042619,12354.0,False,False +06065042620,14520.0,False,False +06065042621,7938.0,False,False +06065042622,4827.0,False,False +06065042623,3939.0,False,False +06065042624,4390.0,False,False +06065042706,8416.0,True,True +06065042708,5149.0,False,False +06065042709,4674.0,False,False +06065042711,4134.0,True,True +06065042714,3519.0,False,False +06065042715,14869.0,False,False +06065042716,5275.0,False,False +06065042717,5181.0,True,True +06065042719,5470.0,False,False +06065042720,5371.0,False,True +06065042723,6537.0,True,True +06065042724,4054.0,False,True +06065042726,9300.0,False,False +06065042728,2229.0,False,False +06065042729,9987.0,True,True +06065042730,5684.0,True,True +06065042731,8161.0,False,False +06065042732,6571.0,False,False +06065042733,11856.0,False,False +06065042737,2766.0,False,False +06065042738,8614.0,False,False +06065042739,7631.0,False,False +06065042740,1858.0,True,True +06065042741,2087.0,True,True +06065042742,4846.0,False,False +06065042743,3528.0,False,False +06065042744,4573.0,False,False +06065042745,5413.0,False,False +06065042800,9515.0,True,True +06065042901,7591.0,True,True +06065042902,5095.0,True,True +06065042903,6126.0,True,True +06065042904,10637.0,True,True +06065043001,7090.0,True,True +06065043003,7243.0,True,True +06065043005,5960.0,True,True +06065043006,5402.0,True,True +06065043007,7420.0,False,False +06065043008,7427.0,False,True +06065043009,5712.0,False,False +06065043010,5956.0,False,False +06065043206,7966.0,False,False +06065043211,5519.0,False,False +06065043216,6105.0,False,False +06065043217,3336.0,False,False +06065043218,5338.0,False,False +06065043220,4610.0,True,True +06065043222,5029.0,False,False +06065043227,7895.0,False,False +06065043228,3842.0,False,False +06065043229,5110.0,False,False +06065043235,10588.0,False,False +06065043239,7763.0,False,True +06065043240,12415.0,False,False +06065043242,9531.0,False,False +06065043244,9755.0,False,False +06065043246,5803.0,False,False +06065043247,14002.0,False,False +06065043248,4670.0,False,False +06065043250,10048.0,False,False +06065043252,9584.0,False,False +06065043254,5193.0,False,False +06065043256,3783.0,False,False +06065043257,9318.0,False,False +06065043262,5287.0,False,False +06065043264,7862.0,False,False +06065043265,8221.0,False,False +06065043266,5763.0,False,False +06065043267,6185.0,False,False +06065043270,6071.0,False,False +06065043271,3977.0,False,False +06065043272,4957.0,False,False +06065043274,2383.0,False,True +06065043276,3855.0,False,False +06065043278,6360.0,False,False +06065043279,5075.0,False,False +06065043291,9081.0,False,False +06065043304,7688.0,False,False +06065043306,5142.0,True,True +06065043307,6764.0,True,True +06065043308,2892.0,True,True +06065043309,2837.0,True,True +06065043310,3534.0,True,True +06065043311,2548.0,True,True +06065043312,4559.0,True,True +06065043313,4046.0,True,True +06065043314,3482.0,False,False +06065043315,2887.0,False,False +06065043316,3872.0,True,True +06065043317,8443.0,False,False +06065043401,6883.0,True,True +06065043403,2741.0,True,True +06065043404,2689.0,True,True +06065043405,4831.0,True,True +06065043503,3875.0,True,True +06065043504,8208.0,False,False +06065043505,3148.0,True,True +06065043506,6592.0,False,False +06065043507,6676.0,True,True +06065043508,6814.0,False,False +06065043509,5404.0,False,True +06065043512,7618.0,True,True +06065043513,3532.0,True,True +06065043517,7811.0,False,False +06065043601,5198.0,True,True +06065043602,3389.0,True,True +06065043701,4328.0,True,True +06065043702,4760.0,False,False +06065043703,3145.0,True,True +06065043802,5996.0,False,False +06065043807,7040.0,False,False +06065043809,4046.0,False,False +06065043810,4952.0,False,False +06065043811,4031.0,False,False +06065043812,6526.0,False,False +06065043813,4912.0,True,True +06065043814,944.0,False,False +06065043818,4567.0,False,False +06065043820,4870.0,False,False +06065043821,5389.0,False,False +06065043822,2898.0,False,False +06065043823,10092.0,False,False +06065043900,6698.0,False,True +06065044000,1734.0,True,True +06065044101,3409.0,True,True +06065044102,2907.0,True,True +06065044103,5735.0,True,True +06065044104,2983.0,False,False +06065044200,6541.0,True,True +06065044300,4847.0,True,True +06065044402,5266.0,False,False +06065044403,4114.0,True,True +06065044404,1122.0,False,False +06065044405,1463.0,False,False +06065044505,5781.0,False,False +06065044507,6817.0,True,True +06065044509,3693.0,True,True +06065044510,6649.0,True,True +06065044515,3971.0,True,True +06065044516,6109.0,True,True +06065044517,2435.0,False,False +06065044518,5302.0,True,True +06065044520,1424.0,True,True +06065044521,1332.0,True,True +06065044522,3812.0,True,True +06065044602,2907.0,False,False +06065044604,4151.0,False,False +06065044605,6107.0,True,True +06065044606,2734.0,True,True +06065044701,4039.0,True,True +06065044702,1738.0,True,True +06065044804,2704.0,True,True +06065044805,1590.0,False,False +06065044806,2081.0,True,True +06065044807,1642.0,True,True +06065044904,5192.0,True,False +06065044907,5461.0,True,True +06065044911,4194.0,True,True +06065044915,6799.0,True,True +06065044916,5334.0,True,True +06065044917,5033.0,False,False +06065044918,2919.0,False,False +06065044919,5011.0,False,False +06065044921,2448.0,False,False +06065044922,5812.0,False,False +06065044923,4122.0,False,True +06065044924,3998.0,False,False +06065044925,3978.0,False,False +06065044926,5407.0,True,True +06065044927,3619.0,False,False +06065044928,3342.0,False,False +06065044929,3627.0,False,False +06065044930,3606.0,True,True +06065044931,2093.0,True,True +06065044932,2883.0,False,False +06065045000,3314.0,True,True +06065045103,3557.0,False,False +06065045108,6767.0,True,True +06065045109,4137.0,False,False +06065045110,6290.0,False,False +06065045114,2153.0,False,False +06065045115,1890.0,False,False +06065045116,1479.0,False,False +06065045117,4053.0,False,False +06065045118,2636.0,True,True +06065045119,2772.0,False,False +06065045120,4788.0,True,True +06065045121,6454.0,True,True +06065045122,1514.0,False,False +06065045123,2428.0,False,False +06065045124,2157.0,False,False +06065045125,3159.0,False,False +06065045207,5449.0,True,True +06065045209,5946.0,True,True +06065045212,2601.0,False,False +06065045213,6526.0,True,True +06065045214,5112.0,False,False +06065045215,9761.0,False,False +06065045216,2407.0,False,False +06065045217,8275.0,True,True +06065045222,2686.0,True,True +06065045224,5878.0,False,True +06065045226,8410.0,False,True +06065045228,6517.0,False,False +06065045233,4367.0,False,False +06065045302,4027.0,True,True +06065045303,2639.0,True,True +06065045304,10800.0,False,True +06065045501,5936.0,True,True +06065045502,3788.0,True,True +06065045604,11044.0,True,True +06065045605,6734.0,True,True +06065045606,2648.0,False,False +06065045608,2686.0,False,False +06065045609,4318.0,True,True +06065045703,6332.0,True,True +06065045704,2723.0,True,True +06065045705,9353.0,True,True +06065045706,4821.0,True,True +06065045707,6493.0,True,True +06065045900,1645.0,True,True +06065046101,3320.0,False,False +06065046102,1881.0,True,True +06065046103,3532.0,False,False +06065046200,2871.0,True,True +06065046401,3575.0,False,False +06065046402,5762.0,True,True +06065046403,7457.0,True,True +06065046404,6661.0,True,True +06065046405,3710.0,False,False +06065046500,9412.0,False,True +06065046601,3385.0,False,False +06065046602,3963.0,False,False +06065046700,4721.0,True,True +06065046800,6788.0,False,False +06065046900,1631.0,True,True +06065047000,1675.0,True,True +06065047201,1848.0,True,True +06065047202,1656.0,True,True +06065047900,12628.0,False,False +06065048100,7365.0,False,False +06065048200,4522.0,False,False +06065048300,6632.0,False,False +06065048700,4872.0,False,False +06065048800,4917.0,True,True +06065048901,4000.0,True,True +06065048902,7835.0,True,True +06065049000,10135.0,False,False +06065049100,5339.0,False,False +06065049400,3067.0,True,True +06065049500,7220.0,True,True +06065049600,8220.0,False,False +06065049700,9342.0,False,False +06065049800,4621.0,False,False +06065050300,13390.0,False,False +06065050400,10943.0,False,False +06065050500,15912.0,False,False +06065050600,7748.0,False,False +06065050700,12772.0,False,False +06065050900,4682.0,False,False +06065051100,7242.0,False,False +06065051200,5113.0,False,False +06065051300,9719.0,True,True +06065051400,6755.0,False,False +06065940100,171.0,False,False +06065940400,6818.0,True,True +06065940500,2150.0,False,False +06065940600,3183.0,False,False +06065940700,2798.0,False,True +06065940800,2748.0,False,False +06065940900,2097.0,False,True +06065941000,3832.0,True,True +06065941100,2072.0,False,True +06065941200,2735.0,False,False +06065941300,3366.0,False,True +06065941400,3872.0,True,True +06065941500,5080.0,False,False +06065980004,0.0,False,False +06065981000,6196.0,False,True +06067000100,3871.0,False,False +06067000200,3755.0,False,False +06067000300,3418.0,False,False +06067000400,3933.0,False,False +06067000500,3461.0,False,False +06067000600,1123.0,True,True +06067000700,2567.0,True,True +06067000800,1703.0,False,False +06067001101,2583.0,True,True +06067001200,3527.0,False,False +06067001300,3231.0,False,False +06067001400,2362.0,False,False +06067001500,4723.0,False,False +06067001600,6023.0,False,False +06067001700,5513.0,False,True +06067001800,5152.0,False,False +06067001900,3123.0,False,False +06067002000,2617.0,False,True +06067002100,2096.0,False,False +06067002200,5103.0,True,True +06067002300,3358.0,False,False +06067002400,4772.0,False,False +06067002500,1613.0,False,False +06067002600,2448.0,False,False +06067002700,3404.0,False,False +06067002800,3814.0,True,True +06067002900,5016.0,False,False +06067003000,7450.0,True,True +06067003101,3479.0,True,True +06067003102,3158.0,True,True +06067003202,5098.0,True,True +06067003203,2680.0,True,True +06067003204,4965.0,True,True +06067003300,4548.0,False,False +06067003400,3929.0,False,False +06067003501,2393.0,False,False +06067003502,2638.0,False,False +06067003600,2767.0,True,True +06067003700,4496.0,True,True +06067003800,5674.0,True,True +06067003900,3267.0,False,False +06067004001,5832.0,False,False +06067004004,5986.0,False,False +06067004005,4367.0,False,False +06067004006,5346.0,False,False +06067004008,3666.0,False,False +06067004009,4991.0,False,False +06067004010,5981.0,False,False +06067004011,3111.0,False,False +06067004012,3655.0,False,False +06067004100,5107.0,True,True +06067004201,5707.0,True,True +06067004202,6353.0,True,True +06067004203,5583.0,True,True +06067004300,9867.0,True,True +06067004401,3788.0,True,True +06067004402,4295.0,True,True +06067004501,3463.0,True,True +06067004502,5407.0,True,True +06067004601,8155.0,True,True +06067004602,5725.0,True,True +06067004701,3318.0,True,True +06067004702,4946.0,True,True +06067004801,5931.0,True,True +06067004802,5177.0,True,True +06067004903,7493.0,True,True +06067004904,5824.0,True,True +06067004905,7492.0,True,True +06067004906,3290.0,True,True +06067005001,8176.0,True,True +06067005002,7108.0,True,True +06067005101,3787.0,True,True +06067005102,4654.0,True,True +06067005201,3707.0,False,False +06067005202,3831.0,False,False +06067005204,4476.0,False,False +06067005205,2400.0,False,True +06067005301,1598.0,True,True +06067005402,2729.0,False,False +06067005403,2518.0,False,False +06067005404,5440.0,False,False +06067005502,5779.0,True,True +06067005505,5997.0,True,True +06067005506,3843.0,True,True +06067005508,3338.0,True,True +06067005509,2122.0,True,True +06067005510,5522.0,True,True +06067005601,5969.0,True,True +06067005605,3890.0,False,False +06067005606,4405.0,False,False +06067005701,3143.0,False,False +06067005702,4864.0,False,False +06067005801,5304.0,False,False +06067005803,3606.0,False,False +06067005804,2425.0,False,False +06067005901,6428.0,False,False +06067005903,2837.0,True,True +06067005904,4884.0,False,False +06067006002,4566.0,False,False +06067006003,4960.0,True,True +06067006004,2438.0,False,False +06067006101,4886.0,True,True +06067006102,3367.0,True,True +06067006201,7359.0,True,True +06067006202,3644.0,True,True +06067006300,5161.0,True,True +06067006400,5521.0,True,True +06067006500,7004.0,True,True +06067006600,7385.0,True,True +06067006701,9349.0,True,True +06067006702,7927.0,True,True +06067006800,7168.0,True,True +06067006900,4858.0,True,True +06067007001,4205.0,True,True +06067007004,7953.0,True,True +06067007007,5756.0,False,False +06067007010,3878.0,False,False +06067007011,6865.0,False,False +06067007012,3452.0,False,False +06067007013,3149.0,False,False +06067007014,7336.0,False,False +06067007015,6158.0,False,False +06067007016,6040.0,False,False +06067007017,3309.0,False,False +06067007018,6096.0,False,False +06067007019,1461.0,True,True +06067007020,4336.0,False,False +06067007101,312.0,False,False +06067007102,8662.0,False,False +06067007103,3869.0,False,False +06067007104,8397.0,False,False +06067007105,7100.0,False,False +06067007106,8420.0,False,False +06067007107,3808.0,False,False +06067007202,4630.0,True,True +06067007204,4917.0,False,False +06067007206,4274.0,False,False +06067007207,4835.0,False,False +06067007208,4608.0,False,False +06067007209,3618.0,False,False +06067007301,5067.0,True,True +06067007402,6213.0,True,True +06067007403,5422.0,True,True +06067007406,8862.0,True,True +06067007413,7438.0,True,True +06067007414,4786.0,True,True +06067007415,3529.0,False,False +06067007416,4223.0,True,True +06067007417,3285.0,False,False +06067007421,9610.0,False,False +06067007422,2709.0,True,True +06067007423,5710.0,True,True +06067007424,3852.0,True,True +06067007426,2402.0,True,True +06067007427,6738.0,False,False +06067007428,3515.0,False,False +06067007429,5232.0,True,True +06067007430,8936.0,False,False +06067007431,3424.0,False,False +06067007432,5118.0,False,False +06067007433,8155.0,False,False +06067007501,6866.0,True,True +06067007503,5549.0,True,True +06067007504,2081.0,False,False +06067007601,6501.0,False,False +06067007602,4661.0,True,True +06067007701,7016.0,True,True +06067007702,4461.0,False,False +06067007801,5634.0,False,False +06067007802,4299.0,False,False +06067007903,4730.0,False,False +06067007904,5585.0,False,False +06067007905,4160.0,False,False +06067007906,3814.0,False,False +06067008005,4542.0,False,False +06067008006,5535.0,False,False +06067008007,3290.0,False,False +06067008008,4832.0,False,False +06067008009,4511.0,False,False +06067008010,4721.0,False,False +06067008111,6321.0,False,False +06067008113,3657.0,False,False +06067008117,2429.0,False,False +06067008119,6326.0,False,False +06067008120,4946.0,False,False +06067008122,3591.0,False,False +06067008124,4806.0,False,False +06067008125,5104.0,False,False +06067008127,5091.0,False,False +06067008128,2493.0,False,False +06067008129,3030.0,False,False +06067008130,3730.0,False,False +06067008131,5302.0,True,True +06067008132,3990.0,False,False +06067008133,2874.0,False,False +06067008134,5252.0,False,False +06067008135,4416.0,False,False +06067008136,2332.0,False,False +06067008137,2420.0,False,False +06067008138,3843.0,False,False +06067008139,3720.0,True,True +06067008140,3059.0,False,False +06067008141,7038.0,True,True +06067008142,3731.0,False,False +06067008143,4142.0,False,False +06067008144,2847.0,False,False +06067008145,7348.0,False,False +06067008203,4478.0,False,False +06067008204,4775.0,False,False +06067008206,6226.0,False,False +06067008207,4178.0,False,False +06067008208,4951.0,False,False +06067008209,4658.0,False,False +06067008210,5894.0,False,False +06067008211,2799.0,False,False +06067008402,5724.0,False,False +06067008403,6561.0,False,False +06067008404,3623.0,False,False +06067008501,7012.0,False,False +06067008504,5137.0,False,False +06067008505,2248.0,False,False +06067008506,2743.0,False,False +06067008507,4007.0,False,False +06067008508,7614.0,False,False +06067008509,4960.0,False,False +06067008510,4946.0,False,False +06067008512,4552.0,False,False +06067008513,3620.0,False,False +06067008600,6999.0,False,False +06067008702,2713.0,False,False +06067008703,4984.0,False,False +06067008704,3781.0,False,False +06067008705,8532.0,False,False +06067008801,4156.0,False,False +06067008905,4761.0,False,False +06067008907,5458.0,False,False +06067008908,4858.0,False,False +06067008909,2467.0,False,False +06067008910,3861.0,False,False +06067008911,2648.0,True,True +06067008912,3086.0,False,False +06067008913,4059.0,False,False +06067009004,3868.0,False,False +06067009005,3224.0,True,True +06067009006,5519.0,True,True +06067009007,2579.0,True,True +06067009008,5227.0,True,True +06067009010,5408.0,True,True +06067009011,4610.0,False,False +06067009103,3210.0,False,False +06067009105,2629.0,True,True +06067009106,4178.0,False,False +06067009107,3419.0,False,False +06067009108,3937.0,False,False +06067009109,5006.0,False,False +06067009110,2029.0,True,True +06067009111,5416.0,False,False +06067009112,4004.0,False,False +06067009201,5151.0,False,False +06067009307,5687.0,False,False +06067009308,6202.0,False,False +06067009309,2340.0,False,False +06067009310,7506.0,False,False +06067009311,6539.0,False,False +06067009312,6629.0,False,False +06067009314,5943.0,False,True +06067009316,4636.0,False,True +06067009317,6300.0,False,False +06067009318,2480.0,True,True +06067009319,4276.0,False,True +06067009320,4437.0,True,True +06067009321,5648.0,False,False +06067009322,13952.0,False,False +06067009323,6130.0,False,False +06067009324,2996.0,False,False +06067009325,802.0,False,False +06067009326,5041.0,False,False +06067009328,5851.0,False,False +06067009329,2327.0,True,True +06067009330,4040.0,False,False +06067009331,7545.0,False,False +06067009332,1339.0,False,False +06067009403,2010.0,False,False +06067009404,5953.0,False,False +06067009406,2300.0,False,False +06067009407,10900.0,False,False +06067009408,2017.0,False,False +06067009501,2829.0,False,True +06067009502,7971.0,False,False +06067009503,3123.0,True,True +06067009504,2564.0,False,False +06067009601,6772.0,True,True +06067009606,7488.0,True,True +06067009608,9519.0,False,False +06067009609,5517.0,False,False +06067009610,7007.0,False,False +06067009611,3525.0,False,True +06067009612,5361.0,False,False +06067009614,7010.0,False,False +06067009615,8108.0,False,False +06067009616,6100.0,False,False +06067009617,3668.0,False,False +06067009618,5274.0,False,False +06067009619,7863.0,False,False +06067009622,7991.0,False,False +06067009630,10015.0,False,False +06067009632,7457.0,False,False +06067009633,3579.0,True,True +06067009634,5062.0,True,True +06067009635,6558.0,False,False +06067009636,7741.0,False,False +06067009637,6704.0,False,False +06067009638,12225.0,False,False +06067009639,3892.0,False,True +06067009800,1514.0,True,True +06067009900,3571.0,True,True +06067988300,4860.0,False,False +06069000100,4600.0,False,False +06069000200,6263.0,False,False +06069000300,4588.0,False,False +06069000400,6348.0,False,True +06069000501,6207.0,False,False +06069000502,6930.0,False,False +06069000600,9187.0,False,False +06069000701,4851.0,True,True +06069000702,5416.0,False,False +06069000801,2937.0,False,False +06069000802,3049.0,False,False +06071000103,4438.0,False,False +06071000104,6928.0,False,False +06071000105,6392.0,False,False +06071000107,3062.0,False,False +06071000108,5923.0,False,False +06071000109,6953.0,False,False +06071000111,2721.0,False,False +06071000113,12332.0,False,False +06071000115,8187.0,False,False +06071000116,12989.0,False,False +06071000117,6956.0,False,False +06071000118,4697.0,False,False +06071000201,5240.0,False,True +06071000203,4349.0,False,False +06071000205,5449.0,False,False +06071000207,4456.0,False,False +06071000208,4808.0,False,False +06071000301,9434.0,True,True +06071000303,7837.0,True,True +06071000304,6223.0,False,True +06071000401,6350.0,False,False +06071000403,4261.0,False,False +06071000404,4048.0,False,False +06071000501,6286.0,False,False +06071000503,4698.0,False,False +06071000504,4530.0,False,False +06071000603,5508.0,False,False +06071000604,5436.0,False,True +06071000605,5087.0,True,True +06071000606,4119.0,False,True +06071000804,3191.0,False,False +06071000808,6084.0,False,False +06071000812,3812.0,False,False +06071000813,3254.0,False,False +06071000814,3940.0,False,False +06071000815,3491.0,False,False +06071000816,4205.0,False,False +06071000817,3897.0,False,False +06071000818,5228.0,False,False +06071000819,5013.0,False,False +06071000820,3874.0,False,False +06071000821,4017.0,False,False +06071000823,6604.0,False,False +06071000824,5645.0,True,True +06071000825,4129.0,True,True +06071000826,4158.0,False,False +06071000901,5051.0,False,False +06071000903,4344.0,True,True +06071000904,3662.0,False,False +06071001001,5557.0,True,True +06071001002,5929.0,True,True +06071001101,4173.0,True,True +06071001103,4426.0,False,False +06071001104,6140.0,False,False +06071001200,4905.0,False,False +06071001305,5788.0,True,True +06071001307,4212.0,False,False +06071001308,4643.0,False,False +06071001309,4658.0,False,False +06071001310,6193.0,False,False +06071001311,3350.0,False,False +06071001312,5127.0,False,False +06071001400,2863.0,True,True +06071001501,4218.0,True,True +06071001503,4126.0,True,True +06071001504,6006.0,True,True +06071001600,5363.0,True,True +06071001702,5300.0,False,True +06071001703,5680.0,False,False +06071001704,5273.0,False,False +06071001706,6283.0,True,True +06071001707,6525.0,False,False +06071001803,3263.0,False,True +06071001804,5250.0,False,False +06071001806,4797.0,False,False +06071001808,4644.0,False,False +06071001809,4975.0,True,True +06071001810,5273.0,False,False +06071001812,3477.0,True,True +06071001813,4855.0,True,True +06071001901,4664.0,False,False +06071001903,13753.0,False,False +06071001905,6981.0,False,True +06071001906,10032.0,False,False +06071002010,10458.0,False,False +06071002011,4233.0,False,False +06071002013,4084.0,False,False +06071002014,4801.0,False,False +06071002015,4533.0,False,False +06071002016,3660.0,False,False +06071002017,5599.0,False,False +06071002018,4607.0,False,False +06071002019,5579.0,False,False +06071002021,5402.0,False,False +06071002022,13434.0,False,False +06071002023,5846.0,False,False +06071002025,5211.0,False,False +06071002027,5415.0,False,False +06071002028,5229.0,False,False +06071002029,5886.0,False,False +06071002031,6262.0,False,False +06071002033,7734.0,False,False +06071002034,15502.0,False,False +06071002035,7445.0,False,False +06071002036,14218.0,False,False +06071002037,7949.0,False,False +06071002038,6890.0,False,False +06071002101,4960.0,True,True +06071002103,5334.0,True,True +06071002105,5920.0,False,False +06071002107,5577.0,False,False +06071002109,6121.0,False,False +06071002110,7460.0,False,False +06071002204,6624.0,True,True +06071002206,7293.0,False,False +06071002207,5553.0,False,False +06071002301,11473.0,False,False +06071002304,21798.0,False,False +06071002305,10909.0,False,False +06071002306,4079.0,False,True +06071002307,5149.0,False,False +06071002401,8682.0,True,True +06071002402,8364.0,True,True +06071002501,6840.0,True,True +06071002502,8979.0,False,True +06071002601,9594.0,False,False +06071002602,7566.0,False,False +06071002604,5592.0,False,False +06071002606,7857.0,False,False +06071002607,8987.0,False,False +06071002703,5670.0,False,False +06071002704,11527.0,False,False +06071002705,5273.0,False,False +06071002706,14133.0,False,False +06071002801,5781.0,True,True +06071002803,4226.0,True,True +06071002804,5747.0,True,True +06071002901,4691.0,True,True +06071002902,6182.0,True,True +06071003000,3254.0,True,True +06071003101,5287.0,False,True +06071003102,5919.0,True,True +06071003200,8222.0,False,True +06071003301,5306.0,True,True +06071003302,6450.0,True,True +06071003401,7654.0,True,True +06071003403,3975.0,True,True +06071003404,5165.0,True,True +06071003405,5833.0,True,True +06071003503,5777.0,False,True +06071003505,7473.0,True,True +06071003506,5535.0,False,False +06071003507,4367.0,False,False +06071003509,4343.0,True,True +06071003510,5368.0,True,True +06071003603,3938.0,False,False +06071003605,4468.0,False,False +06071003606,4309.0,True,True +06071003607,5532.0,True,True +06071003609,5363.0,True,True +06071003611,4874.0,False,True +06071003612,4676.0,True,True +06071003700,3782.0,True,True +06071003801,5112.0,False,False +06071003803,5531.0,True,True +06071003804,4951.0,False,True +06071003900,5857.0,True,True +06071004001,4366.0,True,True +06071004003,5975.0,True,True +06071004004,5599.0,False,False +06071004101,6404.0,False,True +06071004103,6290.0,True,True +06071004104,6360.0,True,True +06071004201,6943.0,True,True +06071004202,5704.0,True,True +06071004301,4449.0,False,True +06071004302,3655.0,True,True +06071004401,4284.0,True,True +06071004403,5054.0,False,True +06071004404,4598.0,True,True +06071004503,3718.0,False,False +06071004504,8479.0,False,False +06071004505,4989.0,True,True +06071004507,5498.0,True,True +06071004509,5251.0,False,False +06071004510,5422.0,False,False +06071004601,7261.0,False,False +06071004603,5526.0,True,True +06071004604,5621.0,True,True +06071004700,5424.0,True,True +06071004800,3263.0,True,True +06071004900,7113.0,True,True +06071005100,8442.0,True,True +06071005200,4508.0,True,True +06071005300,5363.0,True,True +06071005400,6750.0,True,True +06071005500,9180.0,True,True +06071005600,6727.0,True,True +06071005701,1580.0,True,True +06071005800,4013.0,True,True +06071006100,9735.0,True,True +06071006201,4435.0,True,True +06071006203,4995.0,True,True +06071006204,4277.0,True,True +06071006301,5721.0,True,True +06071006302,10389.0,True,True +06071006401,2778.0,True,True +06071006402,4813.0,True,True +06071006500,8416.0,True,True +06071006601,4477.0,False,False +06071006603,6248.0,False,False +06071006604,3383.0,True,True +06071006700,4391.0,True,True +06071007000,7368.0,True,True +06071007104,3913.0,False,False +06071007105,3168.0,False,True +06071007106,3825.0,False,False +06071007107,3714.0,True,True +06071007108,2191.0,False,False +06071007109,6611.0,False,False +06071007110,5084.0,False,False +06071007200,5964.0,True,True +06071007302,9458.0,False,False +06071007303,5039.0,False,True +06071007305,4909.0,True,True +06071007306,6070.0,False,False +06071007403,8102.0,True,True +06071007404,4644.0,False,False +06071007407,2939.0,True,True +06071007408,4796.0,True,True +06071007409,6979.0,True,True +06071007410,5922.0,True,True +06071007601,7655.0,True,True +06071007603,5166.0,True,True +06071007604,4806.0,False,False +06071007800,5698.0,False,False +06071007901,7394.0,False,False +06071007903,4512.0,False,False +06071007904,6378.0,False,False +06071008001,7008.0,False,False +06071008002,7585.0,True,True +06071008100,3048.0,True,True +06071008200,4865.0,False,False +06071008301,6422.0,False,False +06071008302,3467.0,False,False +06071008401,10335.0,False,False +06071008402,6968.0,False,False +06071008403,6201.0,False,False +06071008404,3010.0,True,True +06071008500,8540.0,False,False +06071008601,6112.0,False,False +06071008602,4182.0,False,False +06071008703,7573.0,False,False +06071008704,8118.0,False,False +06071008705,4795.0,False,False +06071008706,14184.0,False,False +06071008708,4304.0,False,False +06071008709,4035.0,False,False +06071008710,4417.0,True,True +06071008800,6286.0,False,False +06071008901,1954.0,True,False +06071009107,7661.0,False,False +06071009108,7605.0,True,True +06071009109,6639.0,True,True +06071009110,18069.0,False,True +06071009112,9555.0,True,True +06071009114,10227.0,True,True +06071009116,6700.0,True,True +06071009117,8697.0,True,True +06071009118,21531.0,False,False +06071009119,6128.0,False,False +06071009201,3984.0,False,False +06071009202,1858.0,False,False +06071009300,1037.0,True,True +06071009400,3262.0,True,True +06071009500,7903.0,True,True +06071009707,6433.0,False,False +06071009708,5488.0,False,True +06071009709,6657.0,False,False +06071009710,7740.0,True,True +06071009711,9766.0,False,False +06071009712,6196.0,True,True +06071009713,6537.0,True,True +06071009714,3920.0,False,False +06071009715,8818.0,False,False +06071009716,7658.0,True,True +06071009717,4216.0,False,False +06071009800,4820.0,True,True +06071009904,13319.0,True,True +06071009905,7795.0,True,True +06071009906,5087.0,False,False +06071009908,4509.0,False,True +06071009910,5851.0,True,False +06071009911,7388.0,False,True +06071009912,4745.0,True,True +06071009913,5926.0,True,True +06071010004,8600.0,False,False +06071010009,4025.0,False,False +06071010010,6458.0,True,False +06071010011,5540.0,True,True +06071010012,4965.0,True,True +06071010013,8283.0,True,True +06071010014,4933.0,True,True +06071010015,6315.0,True,True +06071010016,6086.0,True,True +06071010017,16448.0,False,False +06071010018,7323.0,True,True +06071010019,4911.0,True,True +06071010020,8328.0,True,True +06071010021,6713.0,False,True +06071010022,4692.0,True,True +06071010023,5962.0,True,True +06071010024,5354.0,False,False +06071010025,8440.0,True,True +06071010026,11255.0,False,True +06071010300,3547.0,True,True +06071010402,9593.0,True,False +06071010409,3096.0,True,True +06071010410,3126.0,True,True +06071010411,6659.0,True,True +06071010412,7582.0,False,True +06071010413,7226.0,True,True +06071010415,5316.0,False,True +06071010416,3094.0,True,True +06071010417,2931.0,True,True +06071010419,4903.0,True,True +06071010420,3961.0,True,True +06071010421,6003.0,True,True +06071010422,1859.0,True,False +06071010423,3461.0,True,True +06071010424,2078.0,True,True +06071010700,4011.0,True,True +06071010802,3820.0,False,False +06071010803,3171.0,False,False +06071010804,2620.0,False,False +06071010901,4121.0,False,False +06071010902,2097.0,False,False +06071011001,1929.0,True,True +06071011002,1423.0,False,False +06071011101,3232.0,True,True +06071011102,1760.0,False,False +06071011203,1404.0,True,True +06071011204,1685.0,False,False +06071011205,1163.0,True,True +06071011206,951.0,True,True +06071011300,1398.0,False,False +06071011401,4507.0,True,True +06071011403,3451.0,True,True +06071011404,4585.0,True,True +06071011500,2125.0,False,False +06071011600,8488.0,False,False +06071011700,1660.0,True,True +06071011800,7733.0,True,True +06071011900,2645.0,True,True +06071012001,5815.0,True,True +06071012002,5653.0,True,True +06071012101,5860.0,False,False +06071012103,3562.0,True,True +06071012104,5280.0,False,False +06071012200,18685.0,False,False +06071012300,4966.0,True,True +06071012400,3386.0,True,True +06071012500,4972.0,True,True +06071012700,3920.0,False,False +06071025000,9872.0,False,False +06071025100,1343.0,True,True +06071940100,1312.0,True,True +06071980100,0.0,False,False +06071980200,3817.0,True,True +06073000100,3093.0,False,False +06073000201,1891.0,False,False +06073000202,4542.0,False,False +06073000300,5239.0,False,False +06073000400,3801.0,False,False +06073000500,3151.0,False,False +06073000600,3207.0,False,False +06073000700,4624.0,False,False +06073000800,5178.0,False,False +06073000900,5741.0,False,False +06073001000,4472.0,False,False +06073001100,3168.0,False,False +06073001200,6037.0,False,False +06073001300,6256.0,False,False +06073001400,3456.0,False,False +06073001500,3827.0,False,False +06073001600,5821.0,True,True +06073001700,4448.0,False,False +06073001800,5417.0,False,False +06073001900,3271.0,False,False +06073002001,3306.0,False,False +06073002002,2610.0,False,False +06073002100,5471.0,True,True +06073002201,3328.0,True,True +06073002202,5477.0,True,True +06073002301,3073.0,True,True +06073002302,7300.0,True,True +06073002401,4791.0,True,True +06073002402,5189.0,True,True +06073002501,5406.0,True,True +06073002502,6479.0,True,True +06073002601,5609.0,True,True +06073002602,4452.0,True,True +06073002702,6350.0,False,False +06073002703,7083.0,False,False +06073002705,4133.0,False,True +06073002707,5405.0,True,True +06073002708,5395.0,True,True +06073002709,4470.0,True,True +06073002710,4640.0,True,True +06073002711,3279.0,False,False +06073002712,5658.0,True,True +06073002801,3214.0,False,False +06073002803,4897.0,False,True +06073002804,5750.0,False,False +06073002902,7598.0,False,False +06073002903,4031.0,False,False +06073002904,10078.0,False,False +06073002905,4278.0,False,False +06073003001,4664.0,False,False +06073003003,5719.0,False,False +06073003004,5264.0,True,True +06073003101,4041.0,True,True +06073003103,6105.0,False,False +06073003105,4664.0,False,False +06073003107,6145.0,False,False +06073003108,3797.0,False,True +06073003109,3258.0,False,False +06073003111,6402.0,True,True +06073003112,4456.0,False,True +06073003113,5420.0,False,False +06073003114,3462.0,False,False +06073003115,6874.0,False,True +06073003201,5157.0,False,True +06073003202,4297.0,False,False +06073003204,3285.0,False,False +06073003207,6278.0,False,False +06073003208,6658.0,False,False +06073003209,5469.0,False,True +06073003211,3555.0,False,False +06073003212,4154.0,False,False +06073003213,4582.0,False,False +06073003214,5314.0,False,True +06073003301,3820.0,True,True +06073003303,4821.0,True,True +06073003304,4099.0,True,True +06073003305,6601.0,True,True +06073003401,6382.0,False,False +06073003403,4094.0,True,True +06073003404,5062.0,True,True +06073003501,4929.0,True,True +06073003502,4754.0,True,True +06073003601,3006.0,True,True +06073003602,3427.0,True,True +06073003603,3907.0,True,True +06073003800,6372.0,True,True +06073003901,4379.0,True,True +06073003902,4388.0,True,True +06073004000,4513.0,True,True +06073004100,7307.0,False,False +06073004200,6291.0,False,False +06073004300,3943.0,False,False +06073004400,4099.0,False,False +06073004501,2505.0,True,True +06073004600,2004.0,False,False +06073004700,1703.0,True,True +06073004800,4171.0,True,True +06073004900,5505.0,True,True +06073005000,2195.0,True,True +06073005100,7702.0,True,True +06073005200,7087.0,False,False +06073005300,5847.0,False,False +06073005400,7888.0,False,False +06073005500,285.0,False,False +06073005600,4587.0,False,False +06073005700,1590.0,True,True +06073005800,3953.0,False,False +06073005900,3344.0,False,False +06073006000,3816.0,False,False +06073006100,2370.0,False,False +06073006200,23.0,False,False +06073006300,3760.0,False,False +06073006500,3359.0,False,False +06073006600,1811.0,True,True +06073006801,2971.0,False,False +06073006802,5883.0,False,False +06073006900,5854.0,False,False +06073007002,3114.0,False,False +06073007100,4535.0,False,False +06073007200,6054.0,False,False +06073007301,5413.0,False,False +06073007302,2268.0,False,False +06073007400,7540.0,False,False +06073007501,4244.0,False,False +06073007502,3319.0,False,False +06073007600,3978.0,False,False +06073007701,3673.0,False,False +06073007702,4016.0,False,False +06073007800,6155.0,False,False +06073007903,4318.0,False,False +06073007905,2659.0,False,False +06073007907,3576.0,False,False +06073007908,3726.0,False,False +06073007910,2937.0,False,False +06073008002,3004.0,False,False +06073008003,3845.0,False,False +06073008006,3903.0,False,False +06073008101,3760.0,False,False +06073008102,3413.0,False,False +06073008200,2970.0,False,False +06073008301,2924.0,False,False +06073008303,3496.0,False,False +06073008305,1460.0,False,False +06073008306,3191.0,False,False +06073008307,3914.0,False,False +06073008310,5725.0,False,False +06073008311,2936.0,False,False +06073008312,3528.0,False,False +06073008313,2214.0,False,False +06073008324,7226.0,False,False +06073008327,5881.0,False,False +06073008328,6440.0,False,False +06073008329,7256.0,False,False +06073008330,5271.0,False,False +06073008331,2621.0,False,False +06073008333,16363.0,False,False +06073008335,10138.0,False,False +06073008336,2423.0,False,False +06073008337,4660.0,False,False +06073008339,1987.0,False,False +06073008340,9762.0,False,False +06073008341,8348.0,False,False +06073008343,5067.0,False,False +06073008344,3764.0,False,False +06073008345,4012.0,False,False +06073008346,4910.0,False,False +06073008347,7480.0,False,False +06073008348,5691.0,False,False +06073008349,3841.0,False,False +06073008350,6979.0,False,False +06073008351,4225.0,False,False +06073008352,3687.0,False,True +06073008353,5133.0,False,False +06073008354,10247.0,False,False +06073008355,3461.0,False,False +06073008356,4028.0,False,False +06073008357,4939.0,False,True +06073008358,7467.0,False,False +06073008359,4540.0,False,False +06073008360,6801.0,False,True +06073008361,2634.0,False,False +06073008362,3414.0,False,False +06073008363,4997.0,False,False +06073008364,6031.0,False,False +06073008365,3007.0,False,False +06073008366,6753.0,False,False +06073008501,5969.0,False,False +06073008502,7345.0,False,False +06073008503,6933.0,False,False +06073008504,6526.0,False,False +06073008505,6388.0,False,False +06073008506,4620.0,False,False +06073008507,7812.0,False,False +06073008509,7369.0,False,False +06073008510,7083.0,False,False +06073008511,4989.0,False,False +06073008512,4829.0,False,False +06073008513,2828.0,False,False +06073008600,7378.0,False,True +06073008701,3192.0,False,False +06073008702,5320.0,False,False +06073008800,7217.0,True,True +06073008901,5686.0,False,False +06073008902,2231.0,False,False +06073009000,4979.0,False,False +06073009101,6153.0,False,False +06073009102,3660.0,False,False +06073009103,4157.0,False,False +06073009104,3194.0,False,False +06073009106,5112.0,False,False +06073009107,5095.0,False,False +06073009201,5745.0,False,False +06073009202,7034.0,False,False +06073009301,4935.0,False,False +06073009304,9191.0,False,False +06073009305,4530.0,False,False +06073009306,6308.0,False,False +06073009400,4356.0,True,True +06073009502,4216.0,False,False +06073009504,6455.0,False,False +06073009505,7124.0,False,False +06073009506,4681.0,False,False +06073009507,3873.0,False,False +06073009509,4883.0,False,False +06073009510,5049.0,False,False +06073009511,4413.0,False,False +06073009602,4174.0,False,False +06073009603,5544.0,False,False +06073009604,3628.0,False,False +06073009703,3494.0,False,False +06073009704,5868.0,False,False +06073009705,4232.0,False,False +06073009706,7880.0,False,False +06073009801,5194.0,False,False +06073009802,6715.0,False,False +06073009804,5286.0,False,False +06073009805,5025.0,False,False +06073009901,767.0,True,True +06073009902,0.0,False,False +06073010001,4991.0,False,False +06073010003,6081.0,False,False +06073010004,5218.0,True,True +06073010005,7803.0,True,True +06073010009,6978.0,True,True +06073010010,5431.0,True,True +06073010011,4134.0,False,False +06073010012,5199.0,True,True +06073010013,5670.0,True,True +06073010014,18854.0,False,False +06073010015,3821.0,False,False +06073010103,6284.0,False,True +06073010104,3758.0,False,False +06073010106,5815.0,True,True +06073010107,7188.0,False,True +06073010109,5341.0,False,False +06073010110,7871.0,True,True +06073010111,3230.0,True,True +06073010112,5683.0,True,True +06073010200,7155.0,False,False +06073010300,4485.0,False,True +06073010401,2542.0,True,True +06073010402,6131.0,True,True +06073010501,1547.0,False,True +06073010502,5455.0,True,True +06073010601,2153.0,False,False +06073010800,2736.0,False,False +06073010900,2224.0,False,False +06073011000,3567.0,False,False +06073011100,4807.0,False,False +06073011300,2467.0,False,False +06073011601,5470.0,True,True +06073011602,3900.0,True,True +06073011700,6078.0,True,True +06073011801,4169.0,True,True +06073011802,7401.0,True,True +06073011902,5673.0,False,False +06073012002,3548.0,True,True +06073012003,3336.0,False,True +06073012101,2104.0,True,True +06073012102,3385.0,True,True +06073012200,3657.0,True,True +06073012302,1708.0,True,True +06073012303,3242.0,False,True +06073012304,3696.0,False,False +06073012401,3539.0,True,True +06073012402,5107.0,False,True +06073012501,3283.0,True,True +06073012502,4330.0,True,True +06073012600,4798.0,True,True +06073012700,4868.0,True,True +06073012800,4406.0,False,True +06073012900,3471.0,False,False +06073013000,6061.0,True,True +06073013102,6385.0,False,True +06073013103,2506.0,True,True +06073013104,6473.0,False,True +06073013203,5992.0,True,True +06073013204,3970.0,True,True +06073013205,2431.0,True,True +06073013206,7185.0,True,True +06073013301,5205.0,False,False +06073013302,4773.0,False,False +06073013303,5111.0,False,False +06073013306,4517.0,False,True +06073013307,4780.0,False,True +06073013308,3669.0,False,True +06073013309,6733.0,False,False +06073013310,31118.0,False,False +06073013311,11136.0,False,False +06073013312,2549.0,False,False +06073013313,19689.0,False,False +06073013314,22349.0,False,False +06073013401,4374.0,False,False +06073013409,5421.0,False,False +06073013410,7827.0,False,False +06073013411,5160.0,False,False +06073013412,4691.0,False,False +06073013414,7428.0,False,False +06073013415,1302.0,False,False +06073013416,4261.0,False,False +06073013417,2071.0,False,False +06073013418,6698.0,False,False +06073013419,8876.0,False,False +06073013420,3468.0,False,False +06073013421,4488.0,False,False +06073013503,6265.0,False,False +06073013504,3789.0,False,False +06073013505,5676.0,False,False +06073013506,4103.0,False,False +06073013601,5799.0,False,False +06073013604,6636.0,False,False +06073013605,6227.0,False,False +06073013606,6480.0,False,False +06073013701,2433.0,False,False +06073013702,5528.0,False,False +06073013801,4946.0,False,False +06073013802,3523.0,True,True +06073013903,4299.0,False,False +06073013905,3897.0,False,False +06073013906,5291.0,False,False +06073013907,4670.0,True,True +06073013908,4120.0,False,False +06073013909,5068.0,False,False +06073014001,4500.0,False,False +06073014002,5051.0,False,False +06073014101,3370.0,False,False +06073014102,4198.0,False,False +06073014200,6513.0,False,False +06073014300,4131.0,False,False +06073014400,4412.0,True,True +06073014500,3880.0,False,False +06073014601,4854.0,False,False +06073014602,5445.0,False,False +06073014700,8008.0,False,False +06073014803,4818.0,False,False +06073014804,4112.0,False,False +06073014805,4358.0,False,False +06073014806,2778.0,True,True +06073014901,4086.0,False,False +06073014902,3176.0,False,False +06073015000,7367.0,False,False +06073015100,4916.0,False,False +06073015200,3773.0,False,False +06073015301,3560.0,False,True +06073015302,4477.0,False,False +06073015403,2619.0,False,False +06073015404,7831.0,False,False +06073015405,5569.0,False,False +06073015406,2468.0,False,False +06073015501,5180.0,False,False +06073015502,2889.0,False,False +06073015601,6043.0,False,False +06073015602,2432.0,False,False +06073015701,5966.0,True,True +06073015703,7146.0,True,True +06073015704,3936.0,True,True +06073015801,3544.0,True,True +06073015802,4877.0,True,True +06073015901,4037.0,True,True +06073015902,5178.0,False,True +06073016000,2265.0,False,False +06073016100,6322.0,False,False +06073016201,5382.0,False,False +06073016202,3868.0,False,False +06073016301,5338.0,True,True +06073016302,5865.0,True,True +06073016401,5340.0,False,False +06073016402,8404.0,True,True +06073016502,7635.0,True,True +06073016503,3481.0,False,True +06073016504,6856.0,True,True +06073016605,7830.0,False,False +06073016606,3575.0,False,False +06073016607,7432.0,False,False +06073016608,2737.0,False,False +06073016609,5467.0,False,False +06073016610,4082.0,False,False +06073016612,5936.0,False,False +06073016613,1881.0,False,False +06073016614,3987.0,False,False +06073016615,4488.0,False,False +06073016616,4441.0,False,False +06073016617,3453.0,False,False +06073016701,9508.0,False,False +06073016702,8517.0,False,False +06073016802,7213.0,False,False +06073016804,7501.0,False,False +06073016806,4856.0,False,False +06073016807,7615.0,False,False +06073016809,5625.0,False,False +06073016810,3022.0,False,False +06073016811,4818.0,False,False +06073016901,7427.0,False,False +06073016902,2841.0,False,False +06073017006,2957.0,False,False +06073017009,4857.0,False,False +06073017010,3275.0,False,False +06073017014,2553.0,False,False +06073017015,7756.0,False,False +06073017018,4087.0,False,False +06073017019,6673.0,False,False +06073017020,3675.0,False,False +06073017021,3368.0,False,False +06073017022,5469.0,False,False +06073017029,8548.0,False,False +06073017030,25348.0,False,False +06073017031,4170.0,False,False +06073017032,15361.0,False,False +06073017033,4936.0,False,False +06073017034,5054.0,False,False +06073017035,3505.0,False,False +06073017036,3606.0,False,False +06073017037,5575.0,False,False +06073017039,7364.0,False,False +06073017040,4488.0,False,False +06073017041,5923.0,False,False +06073017042,8163.0,False,False +06073017043,6780.0,False,False +06073017044,5826.0,False,False +06073017045,2686.0,False,False +06073017046,4037.0,False,False +06073017047,3971.0,False,False +06073017048,6758.0,False,False +06073017049,3364.0,False,False +06073017050,3104.0,False,False +06073017051,5188.0,False,False +06073017052,5277.0,False,False +06073017053,3305.0,False,False +06073017054,5731.0,False,False +06073017055,5453.0,False,False +06073017056,4486.0,False,False +06073017104,3906.0,False,False +06073017106,4538.0,False,False +06073017107,2874.0,False,False +06073017108,4859.0,False,False +06073017109,7115.0,False,False +06073017110,11906.0,False,False +06073017200,4301.0,False,False +06073017303,2932.0,False,False +06073017304,5982.0,False,False +06073017305,3250.0,False,False +06073017306,2439.0,False,False +06073017401,5686.0,False,False +06073017403,5345.0,False,False +06073017404,7099.0,False,False +06073017501,2898.0,False,False +06073017502,3713.0,False,False +06073017601,5584.0,False,False +06073017603,2573.0,False,False +06073017604,7441.0,False,False +06073017701,5141.0,False,False +06073017702,3627.0,False,False +06073017801,6842.0,False,False +06073017808,6482.0,False,False +06073017809,2214.0,False,False +06073017810,4578.0,False,False +06073017811,6665.0,False,False +06073017813,4018.0,False,False +06073017900,7099.0,False,False +06073018000,3258.0,False,False +06073018100,6114.0,False,False +06073018200,6754.0,True,True +06073018300,2119.0,False,False +06073018400,3399.0,False,False +06073018504,6595.0,False,False +06073018507,10139.0,False,False +06073018509,5454.0,True,True +06073018510,2816.0,False,False +06073018511,5502.0,False,False +06073018512,3960.0,True,True +06073018513,9921.0,False,False +06073018514,8953.0,False,False +06073018515,4767.0,False,False +06073018516,3899.0,False,False +06073018517,4704.0,False,False +06073018518,3764.0,False,False +06073018519,5546.0,False,False +06073018601,5491.0,False,False +06073018603,6747.0,True,True +06073018608,2812.0,False,False +06073018609,6437.0,False,False +06073018610,7801.0,True,True +06073018611,10106.0,False,False +06073018612,4092.0,False,False +06073018613,4073.0,False,False +06073018614,5700.0,False,False +06073018700,38754.0,True,True +06073018801,3911.0,False,False +06073018802,8320.0,False,False +06073018803,4841.0,False,False +06073018903,4905.0,True,True +06073018904,5554.0,True,True +06073018905,6891.0,False,False +06073018906,6798.0,True,True +06073019001,5837.0,False,False +06073019002,2175.0,False,False +06073019101,6925.0,False,False +06073019103,5682.0,False,False +06073019105,5716.0,False,False +06073019106,10544.0,False,False +06073019107,2067.0,False,False +06073019203,2826.0,False,False +06073019205,6273.0,False,False +06073019206,5909.0,True,False +06073019207,9668.0,False,False +06073019208,3369.0,False,False +06073019301,6726.0,False,False +06073019302,7692.0,False,False +06073019303,7921.0,False,False +06073019403,5270.0,False,False +06073019404,3409.0,False,False +06073019405,3994.0,False,False +06073019406,4888.0,False,False +06073019501,4068.0,True,True +06073019502,5928.0,True,True +06073019503,5638.0,False,False +06073019601,7468.0,False,False +06073019602,5397.0,False,False +06073019701,7214.0,False,False +06073019702,5070.0,False,False +06073019803,5115.0,False,False +06073019804,4412.0,False,False +06073019805,4264.0,True,True +06073019806,12647.0,False,False +06073019808,4354.0,False,False +06073019809,3987.0,False,False +06073019902,4276.0,False,False +06073019903,5035.0,False,False +06073019904,6916.0,False,False +06073019905,4309.0,False,False +06073020013,14679.0,False,False +06073020014,7835.0,False,False +06073020015,5001.0,False,False +06073020016,9713.0,False,False +06073020017,3342.0,False,False +06073020018,8741.0,True,True +06073020019,7093.0,False,False +06073020020,7883.0,False,False +06073020021,6701.0,False,False +06073020022,6847.0,False,False +06073020023,4656.0,False,False +06073020024,4517.0,False,False +06073020025,4771.0,False,False +06073020026,4461.0,False,False +06073020027,17461.0,False,False +06073020028,4825.0,True,True +06073020029,5808.0,True,True +06073020103,10191.0,False,False +06073020105,4029.0,False,False +06073020106,3704.0,False,False +06073020107,3923.0,False,False +06073020108,6524.0,True,True +06073020109,5405.0,False,False +06073020202,6789.0,True,True +06073020206,6077.0,True,True +06073020207,4794.0,True,True +06073020208,2565.0,False,False +06073020209,5224.0,True,True +06073020210,5084.0,True,True +06073020211,6481.0,True,True +06073020213,3865.0,True,True +06073020214,6194.0,True,True +06073020304,6813.0,False,False +06073020305,6221.0,False,False +06073020306,9659.0,False,False +06073020307,7434.0,False,False +06073020308,5815.0,True,True +06073020309,4410.0,False,True +06073020401,2208.0,False,False +06073020403,3705.0,False,False +06073020404,5025.0,False,False +06073020405,3505.0,False,False +06073020500,5078.0,True,True +06073020601,6234.0,True,True +06073020602,6022.0,True,False +06073020705,4840.0,False,False +06073020706,6597.0,False,False +06073020707,5122.0,True,True +06073020708,3640.0,False,False +06073020709,8339.0,False,False +06073020710,1818.0,False,False +06073020801,5677.0,False,False +06073020805,3322.0,False,False +06073020806,6379.0,False,False +06073020807,2720.0,False,False +06073020809,7493.0,False,False +06073020810,5229.0,False,False +06073020811,6100.0,False,False +06073020902,2235.0,False,False +06073020903,3045.0,True,True +06073020904,2223.0,False,False +06073021000,2706.0,True,True +06073021100,7998.0,True,True +06073021202,3727.0,False,False +06073021204,5545.0,False,False +06073021205,6813.0,False,False +06073021206,3274.0,False,False +06073021302,7616.0,False,False +06073021303,9456.0,False,False +06073021304,2699.0,False,False +06073021400,7407.0,False,False +06073021500,11078.0,False,False +06073021600,3282.0,False,False +06073021800,2403.0,False,False +06073021900,7107.0,True,True +06073022000,4681.0,True,True +06073022100,10005.0,False,False +06073990100,0.0,False,False +06075010100,3889.0,True,True +06075010200,4167.0,False,False +06075010300,4359.0,False,False +06075010400,4536.0,False,False +06075010500,2779.0,False,False +06075010600,3429.0,False,True +06075010700,5548.0,True,True +06075010800,5038.0,False,True +06075010900,4486.0,False,False +06075011000,5127.0,False,False +06075011100,4835.0,False,True +06075011200,3329.0,False,False +06075011300,2843.0,True,True +06075011700,1790.0,False,True +06075011800,1570.0,True,True +06075011901,2699.0,False,False +06075011902,2712.0,False,False +06075012000,3973.0,False,True +06075012100,3859.0,False,False +06075012201,4620.0,False,False +06075012202,3181.0,True,True +06075012301,2117.0,True,True +06075012302,2713.0,False,False +06075012401,4667.0,True,True +06075012402,4662.0,False,False +06075012501,4293.0,True,True +06075012502,3674.0,True,True +06075012601,2516.0,False,False +06075012602,2844.0,False,False +06075012700,4092.0,False,False +06075012800,4556.0,False,False +06075012901,2783.0,False,False +06075012902,3865.0,False,False +06075013000,4719.0,False,False +06075013101,4061.0,False,False +06075013102,3012.0,False,False +06075013200,4292.0,False,False +06075013300,4634.0,False,False +06075013400,3742.0,False,False +06075013500,2606.0,False,False +06075015100,2624.0,False,False +06075015200,4277.0,False,False +06075015300,2289.0,False,False +06075015400,5951.0,False,False +06075015500,3551.0,False,False +06075015600,3506.0,False,False +06075015700,8904.0,False,False +06075015801,3837.0,False,False +06075015802,3412.0,False,False +06075015900,4832.0,False,False +06075016000,2562.0,False,False +06075016100,5340.0,True,True +06075016200,3278.0,False,False +06075016300,4658.0,False,False +06075016400,4008.0,False,False +06075016500,5267.0,False,False +06075016600,5691.0,False,False +06075016700,5376.0,False,False +06075016801,4145.0,False,False +06075016802,3622.0,False,False +06075016900,3254.0,False,False +06075017000,4287.0,False,False +06075017101,4113.0,False,False +06075017102,4095.0,False,False +06075017601,10343.0,False,False +06075017700,1915.0,False,False +06075017801,3891.0,True,True +06075017802,6367.0,False,False +06075017902,3008.0,True,True +06075018000,3457.0,False,False +06075020100,6343.0,True,True +06075020200,6131.0,False,False +06075020300,3548.0,False,False +06075020401,3176.0,False,False +06075020402,4564.0,False,False +06075020500,3046.0,False,False +06075020600,5191.0,False,False +06075020700,4793.0,False,False +06075020800,6458.0,False,True +06075020900,4597.0,False,True +06075021000,4523.0,False,False +06075021100,4080.0,False,False +06075021200,3105.0,False,False +06075021300,2590.0,False,False +06075021400,3823.0,False,False +06075021500,5674.0,False,False +06075021600,4135.0,False,False +06075021700,4556.0,False,False +06075021800,4095.0,False,False +06075022600,3213.0,False,False +06075022702,2298.0,False,False +06075022704,3367.0,False,False +06075022801,5769.0,False,False +06075022802,2438.0,False,True +06075022803,5224.0,False,False +06075022901,4856.0,False,True +06075022902,2483.0,False,False +06075022903,3240.0,False,False +06075023001,5398.0,False,True +06075023003,4084.0,False,True +06075023102,4549.0,True,True +06075023103,2890.0,True,True +06075023200,3972.0,False,False +06075023300,3739.0,False,True +06075023400,3661.0,True,True +06075025100,3473.0,False,False +06075025200,5256.0,False,False +06075025300,4454.0,False,False +06075025401,3775.0,False,False +06075025402,3427.0,False,False +06075025403,4782.0,False,True +06075025500,9684.0,False,True +06075025600,5314.0,False,True +06075025701,5088.0,False,True +06075025702,4401.0,False,True +06075025800,2224.0,False,True +06075025900,4618.0,False,False +06075026001,5986.0,False,True +06075026002,3644.0,False,False +06075026003,5126.0,False,False +06075026004,4649.0,False,True +06075026100,7455.0,False,True +06075026200,7903.0,False,True +06075026301,5083.0,False,True +06075026302,5255.0,False,True +06075026303,4822.0,False,True +06075026401,3738.0,False,False +06075026402,5102.0,False,True +06075026403,4082.0,False,True +06075026404,2897.0,False,True +06075030101,5048.0,False,False +06075030102,5262.0,False,False +06075030201,4529.0,False,False +06075030202,4438.0,False,False +06075030301,5914.0,False,False +06075030302,4348.0,False,False +06075030400,5573.0,False,False +06075030500,3230.0,False,False +06075030600,2495.0,False,False +06075030700,7024.0,False,False +06075030800,6226.0,False,False +06075030900,7103.0,False,False +06075031000,3804.0,False,False +06075031100,6437.0,False,False +06075031201,6690.0,False,True +06075031202,3394.0,False,True +06075031301,4241.0,False,True +06075031302,6109.0,False,True +06075031400,7096.0,False,True +06075032601,5211.0,False,False +06075032602,4753.0,False,True +06075032700,6898.0,False,False +06075032801,4401.0,False,True +06075032802,4432.0,False,False +06075032901,5615.0,False,False +06075032902,4457.0,False,True +06075033000,8127.0,False,False +06075033100,3895.0,False,False +06075033201,4551.0,False,False +06075033203,3956.0,False,False +06075033204,4698.0,False,True +06075035100,9116.0,False,False +06075035201,5704.0,False,False +06075035202,5244.0,False,False +06075035300,7487.0,False,True +06075035400,7342.0,False,True +06075040100,4560.0,False,False +06075040200,5600.0,False,False +06075042601,4004.0,False,False +06075042602,2861.0,False,False +06075042700,5379.0,False,True +06075042800,2507.0,False,False +06075045100,5126.0,False,False +06075045200,7286.0,False,False +06075047600,5670.0,False,False +06075047701,4569.0,False,True +06075047702,3927.0,False,True +06075047801,4421.0,False,True +06075047802,3869.0,False,False +06075047901,7589.0,False,False +06075047902,3632.0,False,False +06075060100,4226.0,False,False +06075060400,1596.0,False,False +06075060502,3511.0,True,True +06075060700,13222.0,False,False +06075061000,4839.0,False,True +06075061100,4477.0,True,True +06075061200,3842.0,False,True +06075061400,6283.0,False,False +06075061500,16968.0,False,False +06075980200,312.0,False,False +06075980300,63.0,False,False +06075980401,0.0,False,False +06075980501,507.0,True,True +06075980600,690.0,False,False +06075980900,253.0,False,False +06075990100,0.0,False,False +06077000100,3688.0,True,True +06077000300,2048.0,True,True +06077000401,3034.0,True,True +06077000402,4153.0,True,True +06077000500,2280.0,True,True +06077000600,1703.0,True,True +06077000700,4680.0,True,True +06077000801,7624.0,True,True +06077000900,5620.0,True,True +06077001000,5185.0,True,True +06077001101,5220.0,False,True +06077001102,4763.0,False,False +06077001200,5515.0,False,False +06077001300,5227.0,True,True +06077001400,4677.0,False,True +06077001500,10290.0,True,True +06077001600,2292.0,True,True +06077001700,3957.0,True,True +06077001800,4438.0,True,True +06077001900,4681.0,True,True +06077002000,3357.0,True,True +06077002100,5727.0,True,True +06077002201,2856.0,True,True +06077002202,5079.0,True,True +06077002300,4334.0,True,True +06077002401,5328.0,True,True +06077002402,1663.0,True,True +06077002503,2258.0,True,True +06077002504,3884.0,False,True +06077002701,6246.0,True,True +06077002702,3726.0,True,True +06077002800,6097.0,True,True +06077003106,4100.0,False,False +06077003108,4599.0,False,False +06077003109,6120.0,False,False +06077003110,4103.0,False,False +06077003111,3930.0,True,True +06077003112,3214.0,False,False +06077003113,6844.0,True,True +06077003114,9923.0,False,False +06077003203,3669.0,False,False +06077003205,4325.0,False,False +06077003208,13561.0,False,False +06077003209,4139.0,False,False +06077003210,2816.0,False,True +06077003213,5185.0,True,True +06077003214,3266.0,False,False +06077003215,4248.0,False,False +06077003216,3324.0,True,True +06077003217,3749.0,True,True +06077003305,4375.0,True,True +06077003306,4993.0,True,True +06077003307,5225.0,True,True +06077003308,1873.0,True,True +06077003310,4938.0,True,True +06077003311,3838.0,True,True +06077003312,3083.0,True,True +06077003313,2895.0,True,True +06077003403,4800.0,True,True +06077003404,6374.0,True,True +06077003405,4507.0,True,True +06077003406,3938.0,True,True +06077003407,2671.0,True,True +06077003409,4159.0,True,True +06077003410,6284.0,True,True +06077003500,23978.0,False,False +06077003601,3281.0,False,False +06077003602,3429.0,True,True +06077003700,3154.0,True,True +06077003801,12573.0,True,True +06077003802,6955.0,False,True +06077003803,6299.0,True,True +06077003900,1518.0,True,True +06077004001,2215.0,True,True +06077004002,11749.0,False,False +06077004102,9919.0,False,False +06077004104,3638.0,False,False +06077004105,4762.0,False,False +06077004106,1604.0,False,False +06077004201,6505.0,False,False +06077004202,1660.0,False,False +06077004203,4068.0,True,True +06077004204,2924.0,False,False +06077004302,6399.0,True,True +06077004303,4735.0,False,False +06077004305,6320.0,False,False +06077004307,3961.0,False,False +06077004308,4402.0,True,True +06077004402,5541.0,False,False +06077004403,3798.0,True,True +06077004404,4131.0,True,True +06077004501,2377.0,True,True +06077004502,4301.0,True,True +06077004600,6061.0,False,False +06077004701,2902.0,False,False +06077004703,3753.0,False,False +06077004704,4621.0,False,False +06077004800,5944.0,False,False +06077004901,7838.0,False,False +06077004902,5541.0,False,False +06077005001,5927.0,False,False +06077005003,5947.0,False,False +06077005004,5993.0,False,False +06077005106,8926.0,False,False +06077005108,5012.0,True,True +06077005109,4209.0,True,True +06077005110,6885.0,True,True +06077005113,6353.0,False,False +06077005114,10238.0,False,False +06077005119,8947.0,False,False +06077005122,6635.0,False,False +06077005123,4720.0,False,False +06077005124,3474.0,False,False +06077005125,1916.0,True,True +06077005126,3882.0,True,True +06077005127,6089.0,False,False +06077005129,3437.0,False,False +06077005130,3064.0,False,False +06077005131,7055.0,True,True +06077005132,3141.0,True,True +06077005133,4439.0,False,False +06077005134,4970.0,False,True +06077005135,8321.0,False,False +06077005202,8606.0,False,False +06077005206,26742.0,False,False +06077005207,14686.0,False,False +06077005208,6652.0,False,False +06077005209,7415.0,False,False +06077005210,12302.0,False,False +06077005302,7395.0,False,False +06077005303,4870.0,True,True +06077005305,7083.0,False,False +06077005307,3352.0,False,False +06077005308,4818.0,False,False +06077005403,6313.0,False,False +06077005405,3630.0,False,True +06077005406,3495.0,True,True +06077005501,4129.0,False,False +06077005502,1981.0,False,False +06079010002,4621.0,False,False +06079010016,5029.0,True,True +06079010101,1669.0,False,False +06079010102,6937.0,True,True +06079010201,7491.0,False,False +06079010202,5178.0,False,False +06079010204,6712.0,False,False +06079010205,4653.0,False,False +06079010300,9434.0,False,False +06079010403,3444.0,False,False +06079010404,2203.0,False,False +06079010503,5429.0,False,False +06079010504,2630.0,False,False +06079010602,3713.0,False,False +06079010603,1513.0,False,False +06079010701,5437.0,False,False +06079010703,3672.0,True,False +06079010707,6720.0,False,False +06079010901,10885.0,False,False +06079010902,4098.0,False,False +06079011001,5006.0,False,False +06079011002,3409.0,False,False +06079011101,3575.0,False,False +06079011102,5784.0,False,False +06079011103,2973.0,False,False +06079011200,8150.0,False,False +06079011300,7298.0,False,False +06079011400,3075.0,False,False +06079011501,1819.0,False,False +06079011503,3375.0,False,False +06079011504,1958.0,False,False +06079011600,3908.0,False,False +06079011701,4432.0,False,False +06079011704,3729.0,False,False +06079011800,7469.0,False,False +06079011901,3270.0,False,False +06079011902,8589.0,False,False +06079012000,7700.0,False,False +06079012102,5835.0,False,False +06079012200,7033.0,False,False +06079012302,5686.0,False,False +06079012304,10975.0,False,False +06079012401,6720.0,False,False +06079012402,10049.0,False,False +06079012502,5572.0,False,False +06079012503,6689.0,False,False +06079012505,4884.0,False,False +06079012600,7956.0,False,False +06079012702,6793.0,False,False +06079012704,9131.0,False,False +06079012800,234.0,False,True +06079012900,4880.0,False,False +06079013000,2741.0,False,False +06079990000,0.0,False,False +06081600100,5051.0,False,False +06081600200,4279.0,False,True +06081600300,4100.0,False,True +06081600401,3115.0,False,True +06081600402,5068.0,False,False +06081600500,8445.0,False,True +06081600600,5637.0,False,True +06081600700,7466.0,False,True +06081600800,7804.0,False,False +06081600900,3965.0,False,False +06081601000,7094.0,False,False +06081601100,6406.0,False,False +06081601200,6940.0,False,False +06081601300,8524.0,False,True +06081601400,7059.0,False,True +06081601501,5256.0,False,True +06081601502,5685.0,False,True +06081601601,2810.0,False,False +06081601603,6009.0,False,False +06081601604,2513.0,False,False +06081601605,6310.0,False,False +06081601700,4335.0,False,False +06081601800,6697.0,False,False +06081601901,4363.0,False,False +06081601902,5604.0,False,False +06081602000,8593.0,False,False +06081602100,3700.0,False,True +06081602200,8444.0,False,True +06081602300,4196.0,False,False +06081602400,7554.0,False,False +06081602500,5143.0,False,False +06081602600,8489.0,False,False +06081602700,6464.0,False,False +06081602800,4902.0,False,False +06081602900,3775.0,False,False +06081603000,4371.0,False,False +06081603100,3388.0,False,False +06081603200,3760.0,False,False +06081603300,6395.0,False,False +06081603400,5929.0,False,False +06081603700,5819.0,False,False +06081603801,2384.0,False,False +06081603802,5083.0,False,False +06081603900,5586.0,False,False +06081604000,3326.0,False,False +06081604101,8053.0,False,False +06081604102,3020.0,False,False +06081604200,4135.0,False,False +06081604400,5271.0,False,False +06081604500,3811.0,False,False +06081604600,2722.0,False,False +06081604700,2781.0,False,False +06081604800,5028.0,False,False +06081604900,3012.0,False,False +06081605000,8376.0,False,False +06081605100,3181.0,False,False +06081605200,3494.0,False,False +06081605300,4651.0,False,False +06081605400,6142.0,False,False +06081605500,5469.0,False,False +06081605600,6099.0,False,False +06081605700,5348.0,False,False +06081605800,2572.0,False,False +06081605900,5880.0,False,True +06081606000,5162.0,False,True +06081606100,5378.0,True,True +06081606200,7788.0,True,True +06081606300,4110.0,False,False +06081606400,5134.0,False,False +06081606500,3501.0,False,False +06081606600,3723.0,False,False +06081606700,2455.0,False,False +06081606800,3535.0,False,False +06081606900,2898.0,False,False +06081607000,3588.0,False,False +06081607100,3111.0,False,False +06081607200,4089.0,False,False +06081607300,3642.0,False,False +06081607400,4870.0,False,False +06081607500,6150.0,False,False +06081607600,3611.0,False,False +06081607701,4396.0,False,False +06081607702,3324.0,False,False +06081607800,3380.0,False,False +06081607900,2988.0,False,False +06081608001,3818.0,False,False +06081608002,3640.0,False,False +06081608004,8738.0,False,False +06081608013,4011.0,False,False +06081608023,2598.0,False,False +06081608100,3775.0,False,False +06081608200,3833.0,False,False +06081608300,3584.0,False,False +06081608400,6030.0,False,False +06081608501,5110.0,False,False +06081608502,2675.0,False,False +06081608600,4614.0,False,False +06081608700,6999.0,False,False +06081608800,6328.0,False,False +06081608900,6948.0,False,False +06081609000,2470.0,False,False +06081609100,1534.0,False,False +06081609201,3628.0,False,False +06081609202,4838.0,False,False +06081609300,3431.0,False,False +06081609400,3359.0,False,False +06081609500,4930.0,False,False +06081609601,3363.0,False,False +06081609602,1803.0,False,False +06081609603,5226.0,False,False +06081609700,4936.0,False,False +06081609800,4884.0,False,False +06081609900,3206.0,False,False +06081610000,4985.0,False,False +06081610100,2544.0,False,False +06081610201,5568.0,False,True +06081610202,4013.0,False,False +06081610203,3878.0,True,True +06081610302,3751.0,False,False +06081610303,8045.0,False,False +06081610304,4416.0,False,False +06081610400,6049.0,False,False +06081610500,5245.0,False,True +06081610601,5432.0,True,True +06081610602,3695.0,False,False +06081610700,5801.0,False,False +06081610800,4871.0,True,True +06081610900,7137.0,True,True +06081611000,6965.0,False,False +06081611100,6453.0,False,False +06081611200,2816.0,False,False +06081611300,5377.0,False,False +06081611400,4332.0,False,False +06081611500,2836.0,False,False +06081611600,2451.0,False,False +06081611700,5801.0,False,True +06081611800,4479.0,False,False +06081611900,10368.0,False,False +06081612000,7091.0,False,False +06081612100,8646.0,True,True +06081612500,4470.0,False,False +06081612600,4538.0,False,False +06081612700,2219.0,False,False +06081612800,3591.0,False,False +06081612900,4788.0,False,False +06081613000,3774.0,False,False +06081613200,7148.0,False,False +06081613300,2970.0,False,False +06081613400,3154.0,False,False +06081613501,5341.0,False,False +06081613502,6519.0,False,False +06081613600,6108.0,False,False +06081613700,8999.0,False,False +06081613800,3944.0,False,False +06081613900,7097.0,False,False +06081614000,5695.0,False,False +06081984300,0.0,False,False +06081990100,0.0,False,False +06083000101,6111.0,False,False +06083000102,5424.0,False,False +06083000103,3433.0,False,False +06083000200,4927.0,False,False +06083000301,2604.0,False,False +06083000302,4391.0,False,False +06083000400,5426.0,False,False +06083000501,3350.0,False,False +06083000502,6315.0,False,False +06083000600,5555.0,False,False +06083000700,7004.0,False,False +06083000801,3550.0,False,True +06083000804,6396.0,False,False +06083000900,3574.0,False,False +06083001000,6081.0,False,False +06083001101,4973.0,True,True +06083001102,4556.0,True,True +06083001203,3008.0,False,False +06083001206,4336.0,False,False +06083001208,4331.0,False,False +06083001304,8127.0,False,False +06083001306,3549.0,False,False +06083001402,3014.0,False,False +06083001500,2526.0,False,False +06083001601,5768.0,False,False +06083001604,4659.0,False,False +06083001704,3192.0,False,True +06083001706,4072.0,False,False +06083001800,1050.0,True,True +06083001901,7519.0,False,False +06083001903,6445.0,False,False +06083001905,2620.0,False,False +06083001906,5938.0,False,False +06083002005,5691.0,False,False +06083002006,2805.0,False,False +06083002007,10983.0,False,False +06083002008,7074.0,False,False +06083002009,4008.0,False,True +06083002010,4496.0,False,False +06083002011,6302.0,False,False +06083002012,3196.0,False,False +06083002013,2716.0,False,False +06083002101,4291.0,False,True +06083002102,2398.0,False,False +06083002103,4495.0,True,True +06083002205,5606.0,True,True +06083002206,5033.0,True,True +06083002209,3613.0,True,True +06083002210,6876.0,False,False +06083002211,5742.0,False,False +06083002303,6601.0,True,True +06083002304,6041.0,True,True +06083002305,7077.0,True,True +06083002306,9003.0,False,False +06083002402,13173.0,True,True +06083002403,6850.0,True,True +06083002404,8949.0,True,True +06083002502,7573.0,True,True +06083002604,2879.0,False,True +06083002606,3400.0,False,False +06083002702,7781.0,True,True +06083002703,4416.0,False,False +06083002705,4162.0,True,True +06083002706,6440.0,True,True +06083002707,2173.0,False,False +06083002708,2302.0,False,False +06083002802,7591.0,False,False +06083002806,2505.0,False,True +06083002808,8114.0,False,False +06083002809,5229.0,False,False +06083002906,3663.0,False,False +06083002907,3662.0,False,False +06083002909,5852.0,False,False +06083002913,3852.0,False,False +06083002914,3237.0,False,False +06083002915,834.0,False,False +06083002922,11983.0,False,False +06083002924,6280.0,False,True +06083002926,6272.0,False,True +06083002928,4490.0,False,False +06083002930,8421.0,False,False +06083002932,2273.0,False,False +06083003001,5766.0,False,False +06083003004,4885.0,False,False +06083003005,5109.0,False,False +06083003007,3536.0,False,False +06083003102,3296.0,False,False +06083980000,0.0,False,False +06083980100,10.0,True,True +06083990000,0.0,False,False +06085500100,8306.0,False,True +06085500200,5969.0,False,False +06085500300,3788.0,False,False +06085500400,2657.0,False,False +06085500500,5500.0,False,False +06085500600,5884.0,False,False +06085500800,4180.0,False,False +06085500901,4197.0,False,False +06085500902,5659.0,False,True +06085501000,5414.0,False,True +06085501101,4695.0,False,True +06085501102,4305.0,False,False +06085501200,4111.0,False,False +06085501300,3951.0,False,False +06085501401,3226.0,False,True +06085501402,3046.0,False,True +06085501501,4623.0,False,True +06085501502,4843.0,True,True +06085501600,7716.0,False,True +06085501700,4982.0,True,True +06085501800,4823.0,False,False +06085501900,5401.0,False,False +06085502001,5093.0,False,False +06085502002,6052.0,False,False +06085502101,5081.0,False,False +06085502102,7726.0,False,False +06085502201,7541.0,False,False +06085502202,2735.0,False,False +06085502301,3535.0,False,False +06085502302,3000.0,False,False +06085502400,6909.0,False,False +06085502500,6746.0,False,False +06085502601,2673.0,False,False +06085502603,2830.0,False,False +06085502604,4116.0,False,False +06085502701,5235.0,False,False +06085502702,8456.0,False,False +06085502800,4363.0,False,False +06085502901,6104.0,False,False +06085502902,7893.0,False,False +06085502903,5172.0,False,False +06085502906,4542.0,False,False +06085502907,3936.0,False,False +06085502908,7294.0,False,False +06085502909,5416.0,False,False +06085502910,3733.0,False,False +06085503001,4123.0,False,False +06085503002,3589.0,False,False +06085503003,5388.0,False,False +06085503105,2460.0,False,True +06085503108,8222.0,False,False +06085503110,4917.0,True,True +06085503111,5132.0,False,True +06085503112,4141.0,True,True +06085503113,5052.0,True,True +06085503115,7372.0,False,False +06085503116,6178.0,False,False +06085503117,3071.0,True,True +06085503118,5286.0,False,True +06085503121,4788.0,True,True +06085503122,3602.0,True,True +06085503123,3901.0,True,True +06085503204,8105.0,False,True +06085503207,4150.0,False,True +06085503208,4631.0,False,False +06085503210,4254.0,False,True +06085503211,4592.0,False,True +06085503212,4379.0,False,True +06085503213,4925.0,False,True +06085503214,8468.0,True,True +06085503217,4834.0,False,True +06085503218,5118.0,True,True +06085503304,7213.0,False,True +06085503305,5810.0,False,True +06085503306,4373.0,False,True +06085503312,4027.0,False,True +06085503313,4629.0,False,False +06085503315,8637.0,False,True +06085503321,4690.0,False,True +06085503322,4495.0,False,False +06085503323,4763.0,False,False +06085503324,3625.0,False,False +06085503325,4722.0,False,True +06085503326,7263.0,False,False +06085503327,4504.0,False,True +06085503329,4107.0,False,False +06085503330,7849.0,False,False +06085503331,3405.0,False,False +06085503332,5642.0,False,False +06085503333,4896.0,False,False +06085503334,8938.0,False,False +06085503336,3580.0,False,False +06085503337,3455.0,False,True +06085503401,4468.0,False,True +06085503402,5286.0,True,True +06085503504,6346.0,False,False +06085503506,6816.0,False,True +06085503507,2397.0,False,True +06085503508,6533.0,False,True +06085503509,4449.0,False,False +06085503510,5826.0,False,True +06085503511,3620.0,False,True +06085503601,3383.0,True,True +06085503602,5602.0,False,True +06085503703,4073.0,False,True +06085503707,6087.0,False,True +06085503708,2955.0,False,True +06085503709,6457.0,True,True +06085503710,3858.0,False,True +06085503711,5368.0,False,True +06085503712,4484.0,False,True +06085503713,3550.0,True,True +06085503802,8810.0,False,False +06085503803,4704.0,False,True +06085503804,5285.0,False,True +06085503902,5973.0,False,True +06085503903,3773.0,False,True +06085504001,6078.0,False,True +06085504002,6772.0,False,True +06085504101,5095.0,False,False +06085504102,5883.0,False,True +06085504201,5079.0,False,False +06085504202,4359.0,False,True +06085504307,5532.0,False,False +06085504308,4537.0,False,True +06085504311,7331.0,False,False +06085504314,4897.0,False,False +06085504315,6781.0,False,True +06085504316,4760.0,False,True +06085504317,4786.0,False,False +06085504318,6095.0,False,True +06085504319,7633.0,False,False +06085504320,2931.0,False,True +06085504321,5574.0,False,True +06085504322,5936.0,False,False +06085504323,6005.0,False,True +06085504410,4724.0,False,True +06085504411,5884.0,False,True +06085504412,4873.0,False,False +06085504413,1981.0,False,True +06085504414,5221.0,False,False +06085504415,5836.0,False,False +06085504416,3777.0,False,False +06085504417,269.0,False,False +06085504418,5115.0,False,True +06085504420,4694.0,False,False +06085504421,5437.0,False,False +06085504422,3849.0,False,True +06085504423,2551.0,False,False +06085504504,12367.0,False,True +06085504505,9011.0,False,False +06085504506,7088.0,False,True +06085504507,6459.0,False,True +06085504601,1016.0,False,True +06085504602,2355.0,False,False +06085504700,588.0,False,False +06085504802,5516.0,False,False +06085504803,7021.0,False,False +06085504805,7286.0,False,False +06085504806,3052.0,False,False +06085504901,9956.0,False,False +06085505001,10204.0,False,False +06085505006,11441.0,False,False +06085505007,4239.0,False,False +06085505008,7769.0,False,False +06085505009,11332.0,False,False +06085505100,4076.0,False,False +06085505202,6936.0,False,False +06085505203,5964.0,False,False +06085505301,5197.0,False,False +06085505302,4168.0,False,False +06085505303,6345.0,False,True +06085505304,3266.0,False,False +06085505305,5859.0,False,False +06085505401,7423.0,False,False +06085505402,3125.0,False,False +06085505403,8742.0,False,False +06085505500,4365.0,False,False +06085505600,4557.0,False,False +06085505700,6726.0,False,False +06085505800,4279.0,False,False +06085505900,7393.0,False,False +06085506000,4752.0,False,False +06085506101,4381.0,False,False +06085506102,4158.0,False,False +06085506103,5090.0,False,False +06085506202,7389.0,False,False +06085506203,6589.0,False,False +06085506204,5568.0,False,False +06085506301,5443.0,False,False +06085506302,6778.0,False,False +06085506304,5262.0,False,False +06085506305,6726.0,False,True +06085506401,5017.0,False,False +06085506402,5784.0,False,False +06085506501,7421.0,False,True +06085506502,3941.0,False,False +06085506503,6241.0,False,False +06085506601,4568.0,False,False +06085506603,3923.0,False,False +06085506604,7753.0,False,False +06085506605,4387.0,False,False +06085506606,4468.0,False,False +06085506701,3998.0,False,False +06085506702,5860.0,False,False +06085506703,3564.0,False,False +06085506801,5832.0,False,False +06085506802,5674.0,False,False +06085506803,7344.0,False,False +06085506804,3920.0,False,False +06085506900,7939.0,False,False +06085507001,7095.0,False,False +06085507002,3050.0,False,False +06085507100,3211.0,False,False +06085507203,2971.0,False,False +06085507205,4853.0,False,False +06085507206,2426.0,False,False +06085507301,6602.0,False,False +06085507302,2892.0,False,False +06085507401,5858.0,False,False +06085507402,4013.0,False,False +06085507500,5927.0,False,False +06085507600,5566.0,False,False +06085507701,3534.0,False,False +06085507702,6161.0,False,False +06085507703,8116.0,False,False +06085507805,5465.0,False,False +06085507806,5971.0,False,False +06085507807,3383.0,False,False +06085507808,5580.0,False,False +06085507903,4968.0,False,False +06085507904,3195.0,False,False +06085507905,6063.0,False,False +06085507906,4286.0,False,False +06085508001,7487.0,False,False +06085508003,2480.0,False,False +06085508004,6221.0,False,False +06085508101,6768.0,False,False +06085508102,3408.0,False,False +06085508202,7600.0,False,False +06085508203,5630.0,False,False +06085508204,4122.0,False,False +06085508301,4667.0,False,False +06085508303,2518.0,False,False +06085508304,8452.0,False,False +06085508401,7144.0,False,False +06085508403,3131.0,False,False +06085508404,6947.0,False,False +06085508503,6575.0,False,False +06085508504,8604.0,False,False +06085508505,4871.0,False,False +06085508507,2926.0,False,False +06085508508,5576.0,False,False +06085508601,3722.0,False,False +06085508602,5054.0,False,False +06085508703,8274.0,False,False +06085508704,7587.0,False,False +06085508800,3884.0,False,True +06085508900,5184.0,False,True +06085509000,7570.0,False,False +06085509102,5051.0,False,False +06085509105,7166.0,False,False +06085509106,4473.0,False,False +06085509107,4957.0,False,False +06085509108,4428.0,False,False +06085509109,4978.0,False,False +06085509201,5524.0,False,False +06085509202,4708.0,False,False +06085509302,3241.0,False,False +06085509303,3563.0,False,True +06085509304,3607.0,False,False +06085509401,3806.0,False,False +06085509403,5779.0,False,False +06085509404,7129.0,False,True +06085509500,5729.0,False,False +06085509600,3686.0,False,False +06085509700,3135.0,False,False +06085509801,5606.0,False,False +06085509802,3167.0,False,False +06085509901,1938.0,False,False +06085509902,5125.0,False,False +06085510001,6564.0,False,False +06085510002,3616.0,False,False +06085510100,2906.0,False,False +06085510200,4624.0,False,False +06085510300,4246.0,False,False +06085510400,3705.0,False,False +06085510500,4541.0,False,False +06085510600,5761.0,False,False +06085510700,5240.0,False,False +06085510801,5954.0,False,False +06085510802,2038.0,False,False +06085510803,2700.0,False,False +06085510900,5494.0,False,False +06085511000,6833.0,False,False +06085511100,5543.0,False,False +06085511200,4698.0,False,False +06085511301,3888.0,False,False +06085511302,3998.0,False,False +06085511400,3505.0,False,False +06085511500,7992.0,False,False +06085511608,3302.0,False,False +06085511609,3407.0,False,False +06085511701,4392.0,False,False +06085511702,2635.0,False,False +06085511704,4789.0,False,False +06085511705,1113.0,False,False +06085511707,2820.0,False,False +06085511800,4335.0,False,False +06085511905,3408.0,False,False +06085511907,4223.0,False,False +06085511909,7737.0,False,False +06085511910,3145.0,False,False +06085511911,4934.0,False,False +06085511912,5678.0,False,False +06085511913,4320.0,False,False +06085511914,5722.0,False,False +06085511915,3664.0,False,True +06085511916,4797.0,False,False +06085512001,6868.0,False,False +06085512005,6817.0,False,False +06085512017,7565.0,False,True +06085512019,4863.0,False,False +06085512020,7825.0,False,False +06085512021,6491.0,False,False +06085512022,5523.0,False,False +06085512023,5553.0,False,False +06085512024,5187.0,False,False +06085512025,3124.0,False,False +06085512026,4120.0,False,False +06085512027,4830.0,False,False +06085512029,6698.0,False,False +06085512030,3350.0,False,False +06085512031,4661.0,False,False +06085512032,2997.0,False,False +06085512033,9884.0,False,False +06085512034,3082.0,False,False +06085512035,4924.0,False,False +06085512036,5187.0,False,False +06085512037,3416.0,False,False +06085512038,3254.0,False,False +06085512039,5402.0,False,True +06085512042,3020.0,False,False +06085512043,6583.0,True,True +06085512045,5653.0,False,False +06085512047,5808.0,False,False +06085512052,4473.0,False,False +06085512053,4451.0,False,False +06085512100,1527.0,False,False +06085512200,3859.0,False,False +06085512305,5039.0,False,False +06085512307,6884.0,False,False +06085512308,8784.0,False,False +06085512309,5026.0,False,False +06085512310,5050.0,False,False +06085512311,4211.0,False,False +06085512312,3624.0,False,False +06085512313,3843.0,False,False +06085512314,6522.0,False,False +06085512401,4635.0,False,False +06085512402,5030.0,False,False +06085512503,9105.0,False,False +06085512505,8465.0,False,False +06085512506,7227.0,False,False +06085512508,8351.0,True,True +06085512509,5952.0,False,False +06085512510,7345.0,False,False +06085512602,2404.0,False,False +06085512603,4634.0,True,True +06085512604,4886.0,False,False +06085513000,9578.0,False,False +06085513500,1202.0,False,False +06087100100,2234.0,False,False +06087100200,7156.0,False,False +06087100300,3563.0,False,False +06087100400,10486.0,False,False +06087100500,6440.0,False,False +06087100600,3665.0,False,False +06087100700,2015.0,False,False +06087100800,6608.0,False,False +06087100900,4397.0,False,False +06087101000,8081.0,False,True +06087101100,5567.0,False,False +06087101200,3174.0,False,False +06087110100,7760.0,True,True +06087110200,7957.0,True,True +06087110300,7275.0,True,True +06087110400,8077.0,True,True +06087110501,8594.0,True,True +06087110502,6423.0,True,True +06087110600,8241.0,False,True +06087110700,3159.0,False,True +06087120200,4684.0,False,False +06087120301,5312.0,False,False +06087120302,3054.0,False,False +06087120400,4884.0,False,False +06087120500,5738.0,False,False +06087120600,4781.0,False,False +06087120700,4307.0,False,False +06087120800,5779.0,False,False +06087120900,8746.0,False,False +06087121000,3578.0,False,False +06087121100,3229.0,False,False +06087121200,6547.0,False,False +06087121300,4271.0,False,False +06087121401,2755.0,False,False +06087121402,4309.0,False,False +06087121403,3382.0,False,False +06087121500,5196.0,True,True +06087121600,6578.0,False,False +06087121700,7387.0,False,False +06087121800,4352.0,False,False +06087122001,4926.0,False,False +06087122002,3253.0,False,False +06087122003,7248.0,False,False +06087122100,3286.0,False,False +06087122201,6506.0,False,False +06087122202,2328.0,False,False +06087122203,3971.0,False,False +06087122300,3796.0,False,False +06087122400,7247.0,False,False +06087122500,6988.0,False,True +06087123100,3193.0,False,False +06087123300,1479.0,False,False +06087990100,0.0,False,False +06089010100,1658.0,True,True +06089010200,2325.0,True,True +06089010300,4329.0,False,False +06089010400,4266.0,False,False +06089010500,5812.0,True,True +06089010601,2297.0,False,False +06089010602,5279.0,False,False +06089010603,1477.0,False,False +06089010702,3559.0,False,False +06089010703,3242.0,True,True +06089010704,3956.0,True,True +06089010803,5970.0,False,False +06089010804,2660.0,False,False +06089010805,4927.0,False,False +06089010806,2803.0,True,True +06089010807,4643.0,False,False +06089010900,4043.0,True,True +06089011001,1785.0,False,False +06089011002,5068.0,False,False +06089011100,3176.0,False,False +06089011209,6545.0,True,True +06089011300,4905.0,False,False +06089011401,4026.0,False,False +06089011402,3426.0,False,False +06089011403,2885.0,False,False +06089011500,5672.0,True,True +06089011600,3707.0,True,True +06089011701,2405.0,False,False +06089011702,3479.0,True,True +06089011703,3326.0,True,True +06089011801,2245.0,False,False +06089011802,2615.0,False,False +06089011803,2681.0,True,True +06089011900,4384.0,False,False +06089012000,4678.0,True,True +06089012101,4562.0,False,True +06089012102,2097.0,True,True +06089012200,6073.0,True,True +06089012301,2580.0,True,True +06089012302,5299.0,False,False +06089012303,4042.0,False,False +06089012400,3575.0,False,False +06089012500,1670.0,True,True +06089012601,5123.0,False,False +06089012603,4175.0,False,False +06089012604,2107.0,True,True +06089012701,4881.0,True,True +06089012702,2774.0,False,False +06091010000,3040.0,False,False +06093000100,1076.0,True,True +06093000200,1711.0,True,True +06093000300,3939.0,True,True +06093000400,656.0,True,True +06093000500,1834.0,True,True +06093000600,1733.0,True,True +06093000701,3777.0,False,False +06093000702,4436.0,True,True +06093000703,3354.0,True,True +06093000800,3625.0,True,True +06093000900,7510.0,False,False +06093001000,6544.0,True,True +06093001100,2012.0,True,True +06093001200,1261.0,True,True +06095250103,4873.0,False,False +06095250104,2233.0,False,False +06095250105,6655.0,False,False +06095250106,4541.0,False,False +06095250200,4355.0,False,False +06095250300,3038.0,True,True +06095250400,3002.0,False,False +06095250501,2189.0,False,False +06095250502,3578.0,False,False +06095250601,5289.0,False,False +06095250604,4017.0,False,False +06095250605,3630.0,False,False +06095250701,3529.0,True,True +06095250801,4135.0,False,False +06095250900,2654.0,True,True +06095251000,2654.0,True,True +06095251100,3124.0,False,False +06095251200,3663.0,False,False +06095251300,2969.0,False,False +06095251400,5899.0,False,False +06095251500,4326.0,True,True +06095251600,2580.0,True,True +06095251701,3211.0,False,False +06095251702,2623.0,False,False +06095251802,2770.0,True,True +06095251803,4846.0,False,False +06095251804,3485.0,False,False +06095251901,5119.0,False,True +06095251902,6173.0,False,True +06095251903,5963.0,False,True +06095252000,4739.0,False,False +06095252102,3900.0,False,False +06095252103,5753.0,False,False +06095252104,5659.0,False,False +06095252105,3305.0,False,False +06095252106,4186.0,False,False +06095252107,3739.0,False,False +06095252108,3153.0,False,False +06095252201,9421.0,False,False +06095252202,11383.0,False,False +06095252305,5336.0,False,False +06095252306,3353.0,False,False +06095252310,2913.0,False,False +06095252311,4312.0,False,False +06095252312,4038.0,False,False +06095252313,5627.0,False,False +06095252314,4221.0,False,False +06095252315,4035.0,False,False +06095252316,3498.0,False,False +06095252317,10131.0,False,False +06095252401,4705.0,False,False +06095252402,5549.0,False,True +06095252501,2816.0,False,False +06095252502,2106.0,True,True +06095252604,3900.0,True,True +06095252605,6226.0,True,True +06095252606,5465.0,False,True +06095252607,3898.0,True,True +06095252608,4160.0,True,True +06095252610,3134.0,False,False +06095252611,4011.0,True,True +06095252702,6598.0,False,False +06095252703,4437.0,False,False +06095252704,5410.0,False,False +06095252705,5937.0,False,False +06095252706,4087.0,False,False +06095252707,5233.0,False,False +06095252801,3014.0,False,False +06095252802,938.0,False,False +06095252903,3857.0,False,False +06095252904,7116.0,False,False +06095252908,3993.0,False,False +06095252909,3471.0,False,False +06095252910,5610.0,False,False +06095252911,4818.0,False,False +06095252912,5668.0,False,False +06095252913,4856.0,False,False +06095252914,6330.0,False,False +06095252915,5326.0,False,False +06095253000,6720.0,False,False +06095253101,5512.0,False,False +06095253105,6584.0,False,False +06095253106,3675.0,False,False +06095253107,6141.0,False,False +06095253108,4747.0,False,False +06095253201,4788.0,False,False +06095253203,4123.0,False,False +06095253204,7286.0,False,False +06095253205,2971.0,False,False +06095253206,3236.0,False,False +06095253300,2648.0,False,False +06095253402,8343.0,False,False +06095253403,4991.0,False,False +06095253404,6894.0,False,False +06095253500,10676.0,False,False +06095980000,0.0,False,False +06097150100,2631.0,False,False +06097150202,4927.0,False,False +06097150203,4561.0,False,False +06097150204,3633.0,False,False +06097150303,4493.0,False,False +06097150304,5610.0,False,False +06097150305,6183.0,False,True +06097150306,4225.0,False,False +06097150500,4782.0,False,False +06097150601,4413.0,False,False +06097150602,4271.0,False,False +06097150603,7691.0,False,False +06097150607,5145.0,False,False +06097150609,5033.0,False,False +06097150610,3983.0,False,False +06097150611,4147.0,False,False +06097150612,4676.0,False,False +06097150701,4939.0,False,False +06097150702,4915.0,False,False +06097150800,5401.0,False,False +06097150901,5053.0,False,False +06097150902,3423.0,False,False +06097151000,3968.0,False,False +06097151100,5619.0,False,False +06097151201,7069.0,False,False +06097151203,4460.0,False,False +06097151204,2987.0,False,False +06097151301,4970.0,False,False +06097151305,6038.0,False,False +06097151306,3841.0,False,False +06097151307,5783.0,False,False +06097151308,5119.0,False,False +06097151309,5737.0,False,False +06097151310,5716.0,False,False +06097151311,6575.0,False,False +06097151401,8050.0,False,False +06097151402,9853.0,True,True +06097151502,7069.0,False,False +06097151503,3448.0,False,False +06097151504,3554.0,False,False +06097151601,3013.0,False,False +06097151602,2985.0,False,False +06097151700,7457.0,False,False +06097151800,4848.0,False,False +06097151900,3286.0,True,True +06097152000,1980.0,False,False +06097152100,3136.0,False,False +06097152201,3937.0,False,False +06097152202,6510.0,False,False +06097152203,3535.0,False,False +06097152300,4115.0,False,False +06097152400,8367.0,False,False +06097152501,4352.0,False,False +06097152502,3782.0,False,False +06097152600,8131.0,False,False +06097152701,4804.0,False,False +06097152702,5342.0,False,False +06097152801,4631.0,False,False +06097152802,7564.0,True,True +06097152903,5488.0,False,True +06097152904,5459.0,False,False +06097152905,4458.0,False,False +06097152906,5576.0,False,False +06097153001,7147.0,False,False +06097153002,6864.0,False,False +06097153003,5669.0,False,False +06097153005,7207.0,False,False +06097153006,8199.0,False,False +06097153102,5976.0,False,False +06097153103,4507.0,True,True +06097153104,3949.0,True,True +06097153200,8327.0,False,False +06097153300,12385.0,False,False +06097153401,6373.0,False,False +06097153403,3910.0,False,False +06097153404,4382.0,False,False +06097153501,4816.0,False,False +06097153502,4266.0,False,False +06097153600,6265.0,False,False +06097153703,3506.0,False,False +06097153704,4071.0,False,False +06097153705,3936.0,False,False +06097153706,4440.0,False,False +06097153801,10263.0,False,False +06097153804,3534.0,False,False +06097153806,3244.0,False,False +06097153807,3459.0,False,False +06097153808,4393.0,False,False +06097153809,4388.0,False,False +06097153901,4966.0,False,False +06097153902,4617.0,False,False +06097153903,3876.0,False,False +06097154000,2606.0,False,False +06097154100,3644.0,False,False +06097154201,3959.0,True,True +06097154202,6050.0,False,False +06097154302,3848.0,False,False +06097154303,1528.0,False,False +06097154304,2455.0,False,False +06097990100,0.0,False,False +06099000101,5330.0,False,False +06099000102,4136.0,False,False +06099000201,5821.0,False,False +06099000202,7963.0,False,True +06099000203,10201.0,True,True +06099000301,2065.0,True,True +06099000302,2578.0,True,True +06099000303,6138.0,False,False +06099000304,5329.0,True,True +06099000402,11695.0,False,False +06099000403,4029.0,False,False +06099000404,6104.0,True,True +06099000501,8309.0,False,False +06099000503,4800.0,False,False +06099000504,8852.0,False,False +06099000505,5680.0,False,False +06099000506,4092.0,False,False +06099000510,8439.0,False,True +06099000601,4405.0,False,True +06099000602,3111.0,False,False +06099000801,6430.0,False,False +06099000803,5060.0,True,True +06099000805,6582.0,True,True +06099000806,4519.0,False,False +06099000807,3700.0,False,False +06099000905,5876.0,False,False +06099000906,5933.0,False,False +06099000907,3557.0,False,False +06099000908,5468.0,False,False +06099000909,5437.0,False,False +06099000910,7549.0,True,True +06099000911,4870.0,False,False +06099000912,17392.0,False,False +06099001001,6014.0,False,False +06099001002,3284.0,False,False +06099001100,4153.0,True,True +06099001200,3889.0,True,True +06099001300,5896.0,False,False +06099001400,6441.0,True,True +06099001500,7217.0,True,True +06099001601,4857.0,True,True +06099001603,6451.0,True,True +06099001604,3809.0,True,True +06099001700,2738.0,True,True +06099001800,2349.0,True,True +06099001900,4833.0,False,False +06099002002,4342.0,True,True +06099002004,6694.0,True,True +06099002005,4040.0,True,True +06099002006,4681.0,False,False +06099002100,3112.0,True,True +06099002200,6206.0,True,True +06099002301,8850.0,True,True +06099002302,3759.0,True,True +06099002401,3848.0,True,True +06099002402,5567.0,True,True +06099002501,6944.0,True,True +06099002503,4848.0,True,True +06099002504,4588.0,False,False +06099002602,5703.0,True,True +06099002603,3291.0,False,True +06099002604,4801.0,True,True +06099002605,3837.0,True,True +06099002701,3935.0,True,True +06099002702,6838.0,True,True +06099002801,5823.0,False,False +06099002802,6669.0,True,True +06099002803,2864.0,False,False +06099002901,4615.0,False,False +06099002902,8359.0,False,False +06099003001,10029.0,False,False +06099003002,7837.0,False,False +06099003100,4161.0,False,False +06099003201,4806.0,True,True +06099003202,17848.0,False,True +06099003300,6076.0,False,False +06099003400,1661.0,True,True +06099003500,12021.0,True,True +06099003603,3382.0,True,True +06099003604,9218.0,False,False +06099003605,8068.0,False,True +06099003606,12851.0,False,False +06099003700,4669.0,True,True +06099003802,5339.0,True,True +06099003803,3135.0,True,True +06099003804,7417.0,True,True +06099003805,3098.0,False,False +06099003904,4652.0,False,False +06099003905,4319.0,False,False +06099003906,5404.0,True,True +06099003907,7308.0,False,False +06099003908,2428.0,True,True +06099003909,5992.0,False,True +06099004000,3880.0,False,False +06101050101,6878.0,True,True +06101050102,5061.0,True,True +06101050201,3393.0,True,True +06101050202,3608.0,True,True +06101050301,2421.0,True,True +06101050302,5824.0,True,True +06101050401,4665.0,False,False +06101050402,3635.0,False,False +06101050403,3705.0,False,False +06101050501,6596.0,True,True +06101050503,7019.0,False,False +06101050504,7242.0,False,False +06101050601,6281.0,False,False +06101050603,4622.0,False,False +06101050604,4354.0,False,False +06101050701,4846.0,True,True +06101050702,6032.0,True,True +06101050800,3342.0,False,False +06101050900,1499.0,True,True +06101051000,2598.0,True,True +06101051100,2488.0,False,False +06103000100,4948.0,True,True +06103000200,7692.0,True,True +06103000300,4433.0,True,True +06103000400,6220.0,False,True +06103000500,5130.0,True,True +06103000600,5645.0,True,True +06103000700,7724.0,True,True +06103000800,4315.0,True,True +06103000900,3375.0,True,True +06103001000,6608.0,True,True +06103001100,7822.0,True,True +06105000101,2522.0,True,True +06105000102,4091.0,False,False +06105000200,2011.0,False,False +06105000300,3182.0,True,True +06105000400,894.0,True,True +06107000100,4845.0,False,False +06107000201,9384.0,True,True +06107000202,2369.0,True,True +06107000301,7486.0,True,True +06107000302,3205.0,True,True +06107000401,6242.0,True,True +06107000402,7415.0,True,True +06107000501,7097.0,True,True +06107000502,4107.0,True,True +06107000600,6998.0,True,True +06107000701,2425.0,True,True +06107000702,6028.0,True,True +06107000800,7837.0,True,True +06107000900,9746.0,True,True +06107001003,25636.0,False,False +06107001004,7791.0,True,True +06107001005,2785.0,False,False +06107001006,5144.0,False,False +06107001100,6950.0,True,True +06107001200,1245.0,True,True +06107001301,8734.0,True,True +06107001302,9219.0,True,True +06107001400,4826.0,False,True +06107001501,5421.0,True,True +06107001502,5745.0,True,True +06107001601,5422.0,True,True +06107001602,6023.0,True,True +06107001701,6626.0,True,True +06107001703,6458.0,False,False +06107001704,7474.0,False,False +06107001800,4608.0,True,True +06107001901,3761.0,False,False +06107001902,4337.0,False,False +06107002002,4370.0,False,False +06107002003,6426.0,False,False +06107002004,4972.0,False,False +06107002006,4364.0,False,False +06107002007,8642.0,False,False +06107002008,2562.0,True,True +06107002009,3795.0,True,True +06107002100,2536.0,True,True +06107002202,5765.0,True,True +06107002203,4663.0,False,True +06107002204,6280.0,True,True +06107002302,4611.0,False,False +06107002303,6636.0,False,False +06107002304,1885.0,True,True +06107002400,14401.0,False,False +06107002500,4035.0,True,True +06107002601,4635.0,True,True +06107002602,5749.0,True,True +06107002700,5237.0,True,True +06107002800,3599.0,True,True +06107002901,4202.0,True,True +06107002903,4717.0,False,False +06107002904,5175.0,True,True +06107003001,4702.0,True,True +06107003002,3525.0,True,True +06107003100,3515.0,True,True +06107003200,7396.0,True,True +06107003300,8019.0,True,True +06107003400,6781.0,True,True +06107003501,2879.0,False,True +06107003502,12394.0,False,True +06107003601,7569.0,True,True +06107003602,7130.0,True,True +06107003700,6449.0,True,True +06107003801,3021.0,True,True +06107003802,4604.0,True,True +06107003901,6648.0,True,True +06107003902,5549.0,True,True +06107004000,582.0,True,True +06107004101,9417.0,True,True +06107004102,1999.0,True,True +06107004200,5934.0,True,True +06107004300,7437.0,True,True +06107004400,7541.0,True,True +06107004500,6161.0,True,True +06109001100,3770.0,False,False +06109001200,3516.0,True,True +06109002100,4391.0,True,True +06109002200,8493.0,False,False +06109003100,5783.0,False,False +06109003200,5933.0,False,False +06109004100,5491.0,False,False +06109004200,3487.0,False,False +06109005100,8502.0,True,True +06109005201,2170.0,False,False +06109985202,2509.0,False,False +06111000100,620.0,False,False +06111000200,2387.0,True,True +06111000302,8257.0,False,False +06111000303,5076.0,False,False +06111000304,4279.0,False,True +06111000400,6021.0,False,True +06111000500,1697.0,True,True +06111000600,5969.0,True,True +06111000701,7508.0,False,True +06111000702,3240.0,False,False +06111000800,8465.0,False,False +06111000901,2503.0,False,False +06111000902,2026.0,False,False +06111000903,5854.0,False,False +06111001001,2560.0,False,False +06111001002,6357.0,False,False +06111001101,4957.0,False,False +06111001102,3660.0,False,False +06111001201,5147.0,False,False +06111001202,7385.0,False,False +06111001204,3036.0,False,False +06111001206,778.0,False,False +06111001301,7944.0,False,False +06111001302,2358.0,True,True +06111001401,4103.0,False,False +06111001402,5418.0,False,False +06111001502,9534.0,False,False +06111001503,5106.0,False,False +06111001506,5151.0,False,False +06111001507,4063.0,False,False +06111001601,1260.0,False,False +06111001602,2503.0,False,False +06111001700,3373.0,False,False +06111001800,4624.0,False,False +06111001900,4193.0,False,False +06111002000,2622.0,False,False +06111002102,1645.0,False,False +06111002200,6350.0,True,True +06111002300,6534.0,True,True +06111002400,2587.0,True,True +06111002500,5374.0,False,False +06111002600,3010.0,False,False +06111002700,4398.0,False,False +06111002800,6693.0,False,False +06111002901,5665.0,False,False +06111002905,5433.0,False,False +06111003010,3226.0,False,False +06111003011,5539.0,True,True +06111003012,675.0,True,True +06111003013,5509.0,False,False +06111003100,14299.0,False,False +06111003201,4230.0,True,True +06111003300,8956.0,False,False +06111003605,9631.0,False,False +06111003608,4024.0,False,False +06111003609,5863.0,False,False +06111003612,4962.0,False,False +06111003700,6687.0,True,True +06111003801,5033.0,True,True +06111003802,2849.0,True,True +06111003900,6984.0,True,True +06111004000,7179.0,True,True +06111004101,6947.0,False,True +06111004200,5797.0,False,False +06111004304,5978.0,False,False +06111004305,2295.0,False,False +06111004400,8086.0,True,True +06111004503,5112.0,True,True +06111004504,5777.0,True,True +06111004505,2208.0,False,False +06111004506,7788.0,True,True +06111004600,2035.0,True,True +06111004704,1372.0,True,True +06111004710,5707.0,True,True +06111004711,3552.0,True,True +06111004715,5417.0,False,True +06111004716,5066.0,False,True +06111004717,3951.0,True,True +06111004901,7229.0,False,False +06111004902,5072.0,True,True +06111005002,3339.0,True,True +06111005003,7261.0,True,True +06111005004,9833.0,False,False +06111005100,4099.0,False,False +06111005202,2570.0,False,False +06111005203,5762.0,False,False +06111005204,3449.0,False,False +06111005205,6072.0,False,False +06111005303,9578.0,False,False +06111005304,5623.0,False,False +06111005305,5437.0,False,False +06111005306,4843.0,False,False +06111005401,4312.0,False,False +06111005403,2582.0,False,False +06111005404,3924.0,False,False +06111005502,5227.0,False,False +06111005503,4364.0,False,False +06111005504,4255.0,False,False +06111005600,10497.0,False,False +06111005700,3702.0,False,False +06111005801,5257.0,False,False +06111005802,9547.0,False,False +06111005901,6623.0,False,False +06111005906,6463.0,False,False +06111005907,3467.0,False,False +06111005908,2892.0,False,False +06111005909,3335.0,False,False +06111005910,1796.0,False,False +06111005911,3643.0,False,False +06111006000,4947.0,False,False +06111006100,8324.0,False,True +06111006200,3032.0,False,False +06111006301,6502.0,False,False +06111006302,3618.0,False,False +06111006400,6859.0,False,False +06111006500,3563.0,False,False +06111006600,4129.0,False,False +06111006700,3431.0,False,False +06111006800,3705.0,False,False +06111006900,4048.0,False,False +06111007000,4277.0,False,True +06111007100,6846.0,False,False +06111007201,3606.0,False,False +06111007202,4446.0,False,False +06111007300,1997.0,False,False +06111007402,5981.0,False,False +06111007403,5965.0,False,False +06111007405,6026.0,False,False +06111007406,2390.0,False,False +06111007505,3170.0,False,False +06111007506,7186.0,False,False +06111007507,6469.0,False,False +06111007508,3609.0,False,False +06111007509,4500.0,False,False +06111007510,6421.0,False,False +06111007511,2217.0,False,False +06111007512,5579.0,False,False +06111007513,1767.0,False,False +06111007514,6317.0,False,False +06111007606,1859.0,False,False +06111007607,6243.0,False,False +06111007609,2530.0,False,False +06111007610,5339.0,False,False +06111007611,3923.0,False,True +06111007612,5071.0,False,False +06111007613,4894.0,False,False +06111007614,8375.0,False,False +06111007700,5813.0,False,False +06111007800,4072.0,False,True +06111007901,5361.0,False,False +06111007903,5042.0,False,False +06111007904,5668.0,False,False +06111008001,3871.0,False,False +06111008002,5020.0,False,False +06111008004,5292.0,False,False +06111008005,2706.0,False,False +06111008101,3233.0,False,False +06111008201,4843.0,False,False +06111008202,4576.0,False,False +06111008302,5736.0,False,False +06111008303,3895.0,False,False +06111008304,5853.0,False,False +06111008305,3786.0,False,False +06111008306,3970.0,False,False +06111008401,5271.0,False,False +06111008402,5574.0,False,False +06111008500,8106.0,False,False +06111008600,7920.0,True,True +06111008700,6029.0,True,True +06111008800,5582.0,False,False +06111008900,3385.0,False,False +06111009100,4870.0,True,True +06111980000,118.0,False,False +06111990100,0.0,False,False +06113010101,6796.0,True,True +06113010102,7729.0,True,True +06113010201,3549.0,False,False +06113010203,5355.0,True,True +06113010204,5189.0,True,True +06113010302,8701.0,False,False +06113010310,5699.0,False,False +06113010312,5617.0,False,False +06113010401,4771.0,False,False +06113010402,4548.0,False,False +06113010501,8606.0,False,False +06113010505,5047.0,False,False +06113010508,2657.0,False,False +06113010509,3672.0,False,False +06113010510,5246.0,False,False +06113010511,3422.0,False,False +06113010512,4106.0,False,False +06113010513,2918.0,False,False +06113010602,5748.0,False,False +06113010605,3270.0,False,False +06113010606,7745.0,False,False +06113010607,4156.0,False,False +06113010608,6424.0,False,False +06113010701,5140.0,False,False +06113010703,5915.0,False,False +06113010704,2659.0,False,False +06113010800,3532.0,True,True +06113010901,5464.0,False,False +06113010902,6110.0,False,False +06113011001,7486.0,True,True +06113011002,3739.0,False,False +06113011101,3237.0,False,False +06113011102,5182.0,True,True +06113011103,3069.0,False,False +06113011203,2895.0,False,False +06113011204,5607.0,False,False +06113011205,8168.0,False,False +06113011206,9269.0,False,False +06113011300,9111.0,False,False +06113011400,4076.0,True,True +06113011500,5722.0,False,False +06115040100,4770.0,True,True +06115040200,7981.0,False,False +06115040301,3306.0,True,True +06115040302,2396.0,True,True +06115040303,8940.0,False,False +06115040400,5434.0,True,True +06115040500,4052.0,True,True +06115040600,5702.0,True,True +06115040700,13334.0,False,False +06115040800,4652.0,False,False +06115040901,2720.0,False,False +06115040902,1653.0,False,False +06115041000,7298.0,False,False +06115041100,4122.0,True,True +08001007801,4215.0,True,True +08001007802,4389.0,True,True +08001007900,5627.0,True,True +08001008000,5818.0,True,True +08001008100,1574.0,False,True +08001008200,6576.0,True,True +08001008308,5648.0,True,True +08001008309,4251.0,True,True +08001008353,8538.0,False,False +08001008401,4978.0,False,False +08001008402,5141.0,False,False +08001008505,7266.0,False,False +08001008506,6775.0,True,True +08001008507,6703.0,False,False +08001008508,5672.0,False,False +08001008523,9226.0,False,False +08001008524,9158.0,False,False +08001008526,6915.0,False,False +08001008529,7446.0,False,False +08001008533,8035.0,False,False +08001008534,4946.0,False,False +08001008535,3883.0,False,False +08001008536,3495.0,False,False +08001008537,6846.0,False,False +08001008538,8171.0,False,False +08001008539,11059.0,False,False +08001008540,8029.0,False,False +08001008541,6241.0,False,False +08001008542,9823.0,False,False +08001008543,9090.0,False,False +08001008544,5729.0,False,False +08001008545,7138.0,False,False +08001008546,3926.0,False,False +08001008547,3663.0,False,False +08001008548,1639.0,False,False +08001008549,4022.0,False,False +08001008550,8220.0,False,False +08001008551,1569.0,False,False +08001008603,1937.0,True,True +08001008604,5254.0,False,False +08001008605,4278.0,False,False +08001008606,6120.0,False,False +08001008705,5511.0,True,True +08001008706,6056.0,True,True +08001008709,7668.0,True,True +08001008801,5160.0,True,True +08001008802,5396.0,True,True +08001008901,2800.0,True,True +08001009001,4420.0,False,False +08001009002,10038.0,False,False +08001009101,4639.0,False,False +08001009103,4435.0,True,True +08001009104,6355.0,True,True +08001009202,4554.0,True,True +08001009203,5220.0,True,True +08001009204,6836.0,False,False +08001009206,2340.0,False,False +08001009207,4760.0,False,False +08001009304,5756.0,False,False +08001009306,3588.0,False,False +08001009307,3483.0,False,False +08001009308,4445.0,False,False +08001009309,4268.0,False,True +08001009310,6290.0,False,False +08001009316,7372.0,True,True +08001009318,6254.0,True,True +08001009319,2595.0,True,True +08001009320,2643.0,True,True +08001009321,4031.0,True,False +08001009322,5296.0,True,False +08001009323,3837.0,False,False +08001009325,5515.0,False,False +08001009326,2817.0,False,False +08001009327,4435.0,False,False +08001009401,5406.0,False,False +08001009406,4586.0,False,False +08001009407,5133.0,True,False +08001009408,4754.0,False,False +08001009409,5473.0,False,False +08001009410,3064.0,False,False +08001009411,2974.0,False,False +08001009501,3234.0,False,False +08001009502,4977.0,False,False +08001009553,3760.0,False,True +08001009603,6273.0,False,False +08001009604,4499.0,False,False +08001009606,2758.0,False,False +08001009607,4796.0,False,False +08001009608,3225.0,False,False +08001009751,3944.0,True,True +08001009752,3257.0,False,False +08001015000,2984.0,True,True +08001060000,6338.0,False,False +08001060100,7879.0,False,False +08001060200,4157.0,False,False +08001061200,2795.0,False,False +08001988700,0.0,False,False +08003960000,1868.0,True,True +08003960100,2621.0,True,False +08003960200,6163.0,False,False +08003960300,5455.0,True,True +08005004951,1984.0,False,False +08005004952,3193.0,False,False +08005005551,2951.0,True,True +08005005552,2754.0,True,True +08005005553,4199.0,False,False +08005005611,5338.0,False,False +08005005612,3789.0,False,False +08005005614,3212.0,False,False +08005005619,5102.0,False,False +08005005620,3152.0,False,False +08005005621,2774.0,False,False +08005005622,2631.0,False,False +08005005623,4394.0,False,False +08005005624,2443.0,False,False +08005005625,3541.0,False,False +08005005626,3845.0,False,False +08005005627,4783.0,False,False +08005005628,5859.0,False,False +08005005629,2483.0,False,False +08005005630,5824.0,False,False +08005005631,3324.0,False,False +08005005632,3416.0,False,False +08005005633,3222.0,False,False +08005005634,3309.0,False,False +08005005635,4989.0,False,False +08005005636,1833.0,False,False +08005005700,3927.0,False,False +08005005800,2837.0,False,False +08005005951,4509.0,False,False +08005005952,3758.0,False,False +08005006000,2683.0,False,False +08005006100,3391.0,False,False +08005006200,3518.0,False,False +08005006300,2601.0,False,False +08005006400,3357.0,True,True +08005006501,2276.0,False,False +08005006502,3523.0,False,False +08005006601,5830.0,True,True +08005006603,3310.0,False,False +08005006604,4544.0,False,False +08005006704,4613.0,False,False +08005006705,2034.0,False,False +08005006706,5262.0,False,False +08005006707,5143.0,False,False +08005006708,5058.0,False,False +08005006709,5327.0,False,False +08005006711,4225.0,False,False +08005006712,1402.0,False,False +08005006713,1806.0,False,False +08005006808,5839.0,False,False +08005006815,4728.0,False,False +08005006854,3097.0,False,False +08005006855,5806.0,False,False +08005006856,9231.0,False,False +08005006857,2238.0,False,False +08005006858,5147.0,False,False +08005007101,5726.0,False,False +08005007103,1716.0,False,False +08005007104,5898.0,False,False +08005007105,7006.0,False,False +08005007106,6180.0,False,False +08005007107,11605.0,False,False +08005007201,4083.0,True,True +08005007202,4218.0,True,True +08005007301,2278.0,False,True +08005007302,5121.0,True,True +08005007400,5386.0,True,True +08005007500,2559.0,True,True +08005007600,3721.0,True,True +08005007702,4199.0,False,False +08005007703,4614.0,False,False +08005007704,5100.0,True,True +08005015100,2835.0,False,False +08005080000,3834.0,True,True +08005080100,4051.0,True,True +08005080200,6439.0,False,False +08005080300,5626.0,False,False +08005080400,4946.0,False,False +08005080500,3496.0,False,False +08005080600,3449.0,False,False +08005080700,5801.0,False,True +08005080800,3699.0,True,True +08005080900,4901.0,True,True +08005081000,5741.0,True,True +08005081100,6289.0,False,False +08005081200,5183.0,True,True +08005081300,3056.0,False,False +08005081400,4213.0,False,False +08005081500,2887.0,False,False +08005081600,5159.0,False,False +08005081700,2991.0,False,False +08005081800,5708.0,True,True +08005081900,6903.0,True,True +08005082000,4413.0,True,True +08005082100,7211.0,False,False +08005082200,6383.0,False,False +08005082300,4157.0,False,False +08005082400,4335.0,True,True +08005082500,2276.0,False,False +08005082600,5556.0,False,False +08005082700,3606.0,False,False +08005082800,5121.0,False,False +08005082900,4893.0,False,False +08005083000,3750.0,False,False +08005083100,6928.0,False,False +08005083200,9380.0,False,False +08005083300,4456.0,False,False +08005083400,7275.0,False,False +08005083500,6461.0,False,False +08005083600,3758.0,False,False +08005083700,4518.0,False,False +08005083800,2892.0,False,False +08005083900,3071.0,False,False +08005084000,2640.0,False,False +08005084100,4623.0,False,False +08005084200,3760.0,False,False +08005084300,3740.0,False,False +08005084400,3101.0,False,False +08005084500,2994.0,False,False +08005084600,5404.0,False,False +08005084700,4292.0,False,False +08005084800,3605.0,False,False +08005084900,3421.0,False,False +08005085000,2088.0,False,False +08005085100,6622.0,False,False +08005085200,3013.0,False,False +08005085300,2441.0,False,False +08005085400,4723.0,False,False +08005085500,5535.0,False,False +08005085600,3396.0,False,False +08005085700,4511.0,False,False +08005085800,1784.0,False,False +08005085900,6270.0,False,False +08005086000,8476.0,False,False +08005086100,4848.0,False,False +08005086200,6859.0,False,False +08005086300,4744.0,False,False +08005086400,1988.0,False,False +08005086500,5159.0,False,False +08005086600,5909.0,False,False +08005086700,5485.0,False,False +08005086800,7377.0,False,False +08005086900,3118.0,False,False +08005087000,5264.0,True,True +08005087100,2789.0,False,False +08005087200,4142.0,False,False +08005087300,8018.0,False,False +08007940400,1298.0,False,True +08007974200,5768.0,False,False +08007974300,3547.0,True,True +08007974400,2640.0,True,True +08009964600,1662.0,True,True +08009964700,1899.0,True,True +08011966700,5787.0,True,True +08013012101,4631.0,False,False +08013012102,7349.0,False,False +08013012103,3835.0,False,False +08013012104,2557.0,False,False +08013012105,5879.0,False,False +08013012201,3845.0,False,False +08013012202,6362.0,False,False +08013012203,7569.0,False,False +08013012204,4299.0,False,False +08013012300,6720.0,False,False +08013012401,6088.0,False,False +08013012501,2514.0,False,False +08013012505,4089.0,False,False +08013012507,4436.0,False,False +08013012508,3081.0,False,False +08013012509,3328.0,False,False +08013012510,4192.0,False,False +08013012511,6470.0,False,False +08013012603,3411.0,False,False +08013012605,1485.0,False,False +08013012607,5926.0,False,False +08013012608,2462.0,False,False +08013012701,5911.0,False,False +08013012705,4457.0,False,False +08013012707,2457.0,True,True +08013012708,4961.0,False,False +08013012709,1867.0,False,False +08013012710,3616.0,False,False +08013012800,12923.0,False,False +08013012903,2354.0,False,False +08013012904,5567.0,False,False +08013012905,2723.0,False,False +08013012907,3681.0,False,False +08013013003,7365.0,False,False +08013013004,3530.0,False,False +08013013005,3179.0,False,False +08013013006,6072.0,False,False +08013013201,1678.0,False,False +08013013202,1438.0,False,False +08013013205,5396.0,False,False +08013013207,4538.0,False,False +08013013208,6638.0,False,False +08013013210,5335.0,False,False +08013013211,6142.0,False,False +08013013212,4533.0,False,False +08013013213,9827.0,False,False +08013013302,5068.0,False,False +08013013305,5425.0,False,False +08013013306,4880.0,False,False +08013013307,4073.0,False,False +08013013308,3492.0,False,False +08013013401,3140.0,False,True +08013013402,8149.0,False,False +08013013503,5325.0,False,False +08013013505,4269.0,True,True +08013013506,4561.0,False,False +08013013507,3416.0,False,False +08013013508,7376.0,False,False +08013013601,4016.0,False,False +08013013602,867.0,False,False +08013013701,5990.0,False,False +08013013702,5735.0,False,False +08013060600,6110.0,False,False +08013060700,3132.0,False,False +08013060800,8831.0,False,False +08013060900,4608.0,False,False +08013061300,3336.0,False,False +08013061400,3995.0,False,False +08014030000,3579.0,False,False +08014030100,2271.0,False,False +08014030200,2052.0,False,False +08014030300,3922.0,False,False +08014030400,3998.0,False,False +08014030500,5836.0,False,False +08014030600,6027.0,False,False +08014030700,2941.0,False,False +08014030800,5958.0,False,False +08014030900,5423.0,False,False +08014031000,5731.0,False,False +08014031100,6385.0,False,False +08014031200,4872.0,False,False +08014031300,2574.0,False,False +08014031400,6317.0,False,False +08014980100,0.0,False,False +08014980200,0.0,False,False +08014980300,0.0,False,False +08015000100,2768.0,True,True +08015000200,4607.0,False,False +08015000300,3118.0,False,False +08015000401,4954.0,True,False +08015000402,4110.0,False,False +08017960600,2026.0,False,False +08019014700,5277.0,False,False +08019014800,1685.0,True,True +08019014900,2533.0,False,False +08021974800,3762.0,True,True +08021974900,4366.0,True,True +08023972600,2061.0,True,True +08023972700,1684.0,True,True +08025969600,5754.0,True,True +08027970100,4776.0,True,True +08029964600,3407.0,False,False +08029964700,4175.0,False,False +08029964800,4117.0,True,True +08029964900,5849.0,True,True +08029965000,4497.0,True,True +08029965100,3970.0,True,True +08029965200,4550.0,True,True +08031000102,3491.0,False,False +08031000201,3820.0,False,False +08031000202,4006.0,False,False +08031000301,5869.0,False,False +08031000302,4587.0,False,False +08031000303,4665.0,False,False +08031000401,3601.0,False,False +08031000402,5750.0,False,False +08031000501,2183.0,False,False +08031000502,6006.0,False,False +08031000600,3490.0,False,False +08031000701,4516.0,False,False +08031000702,4799.0,True,True +08031000800,1437.0,True,True +08031000902,6145.0,True,True +08031000903,6021.0,True,True +08031000904,5583.0,True,True +08031000905,4263.0,False,True +08031001000,4803.0,True,True +08031001101,2484.0,True,True +08031001102,4799.0,False,False +08031001301,5259.0,True,True +08031001302,3974.0,True,True +08031001401,6401.0,True,True +08031001402,4743.0,True,True +08031001403,3032.0,False,False +08031001500,4377.0,False,True +08031001600,12361.0,False,False +08031001701,7500.0,False,False +08031001702,4491.0,False,False +08031001800,3570.0,True,True +08031001901,3346.0,True,True +08031001902,778.0,False,False +08031002000,2256.0,False,False +08031002100,6568.0,False,False +08031002300,5528.0,False,False +08031002402,2034.0,False,False +08031002403,4529.0,True,True +08031002601,3869.0,False,False +08031002602,2885.0,False,False +08031002701,4592.0,False,False +08031002702,6495.0,False,False +08031002703,5217.0,False,False +08031002801,3002.0,False,False +08031002802,4060.0,False,False +08031002803,4999.0,False,False +08031002901,3559.0,False,False +08031002902,4239.0,False,False +08031003001,5874.0,False,False +08031003002,2780.0,False,False +08031003003,3346.0,False,False +08031003004,6559.0,False,False +08031003101,1812.0,False,False +08031003102,3527.0,False,False +08031003201,5853.0,False,False +08031003202,3456.0,False,False +08031003203,3032.0,False,False +08031003300,3215.0,False,False +08031003401,2658.0,False,False +08031003402,4856.0,False,False +08031003500,6636.0,True,True +08031003601,4552.0,True,True +08031003602,4862.0,True,True +08031003603,3530.0,False,False +08031003701,3677.0,False,False +08031003702,4994.0,False,False +08031003703,3266.0,False,False +08031003800,6850.0,False,False +08031003901,4204.0,False,False +08031003902,4502.0,False,False +08031004002,3525.0,False,False +08031004003,4217.0,False,False +08031004004,1965.0,False,False +08031004005,3299.0,False,False +08031004006,4857.0,False,False +08031004101,4589.0,True,True +08031004102,5054.0,True,True +08031004103,5593.0,False,False +08031004104,4758.0,False,False +08031004106,13570.0,False,False +08031004107,13352.0,False,False +08031004201,4979.0,False,False +08031004202,4567.0,False,False +08031004301,5086.0,False,False +08031004302,2662.0,False,False +08031004303,4199.0,False,False +08031004304,5739.0,False,False +08031004306,5325.0,False,False +08031004403,4342.0,False,False +08031004404,6698.0,True,True +08031004405,8976.0,False,False +08031004503,4390.0,True,True +08031004504,4638.0,True,True +08031004505,4884.0,True,True +08031004506,3795.0,True,True +08031004601,6481.0,False,False +08031004602,7698.0,True,True +08031004603,6117.0,True,True +08031004700,7221.0,True,False +08031004801,3627.0,False,False +08031005001,2718.0,False,False +08031005002,8056.0,True,True +08031005102,3519.0,False,False +08031005104,3863.0,True,True +08031005200,3479.0,False,False +08031005300,1547.0,False,False +08031005502,2223.0,False,False +08031005503,5025.0,False,False +08031006701,4080.0,False,False +08031006804,3168.0,False,False +08031006809,7800.0,False,False +08031006810,5836.0,False,False +08031006811,6497.0,False,False +08031006812,4096.0,False,False +08031006813,4293.0,False,False +08031006814,5296.0,True,True +08031006901,5827.0,False,False +08031007006,5228.0,True,True +08031007013,3927.0,False,False +08031007037,4361.0,True,True +08031007088,4922.0,False,False +08031007089,5194.0,True,True +08031008304,3790.0,True,True +08031008305,4792.0,True,True +08031008306,7188.0,True,True +08031008312,8245.0,True,True +08031008386,5449.0,True,True +08031008387,7596.0,True,True +08031008388,10738.0,False,False +08031008389,11639.0,False,False +08031008390,9739.0,False,False +08031008391,7315.0,False,False +08031011902,6229.0,False,False +08031011903,2496.0,False,False +08031012001,1977.0,False,False +08031012010,5322.0,False,False +08031012014,6819.0,False,False +08031015300,4019.0,False,False +08031015400,4868.0,False,False +08031015500,3576.0,False,False +08031015600,8879.0,True,True +08031015700,6011.0,True,False +08031980000,1708.0,False,False +08031980100,0.0,False,False +08033000100,1857.0,True,True +08035013901,7807.0,False,False +08035013904,4452.0,False,False +08035013905,4265.0,False,False +08035013907,5591.0,False,False +08035013908,6560.0,False,False +08035013909,6016.0,False,False +08035013910,7582.0,False,False +08035013911,7409.0,False,False +08035014001,8007.0,False,False +08035014005,5008.0,False,False +08035014006,6934.0,False,False +08035014007,3374.0,False,False +08035014008,9343.0,False,False +08035014009,4252.0,False,False +08035014010,5997.0,False,False +08035014011,5608.0,False,False +08035014012,7976.0,False,False +08035014013,8314.0,False,False +08035014107,3775.0,False,False +08035014108,4849.0,False,False +08035014109,2882.0,False,False +08035014110,5716.0,False,False +08035014112,3913.0,False,False +08035014113,3179.0,False,False +08035014114,3507.0,False,False +08035014115,4208.0,False,False +08035014116,5918.0,False,False +08035014122,7137.0,False,False +08035014123,3537.0,False,False +08035014124,5288.0,False,False +08035014125,5123.0,False,False +08035014126,2130.0,False,False +08035014127,5289.0,False,False +08035014128,4859.0,False,False +08035014129,3742.0,False,False +08035014130,7396.0,False,False +08035014131,5134.0,False,False +08035014132,6394.0,False,False +08035014133,6337.0,False,False +08035014134,6329.0,False,False +08035014135,4868.0,False,False +08035014136,9614.0,False,False +08035014137,9813.0,False,False +08035014138,3059.0,False,False +08035014139,4160.0,False,False +08035014140,5309.0,False,False +08035014202,2159.0,False,False +08035014203,6684.0,False,False +08035014204,3213.0,False,False +08035014300,923.0,False,False +08035014403,6148.0,False,False +08035014404,2612.0,False,False +08035014405,7560.0,False,False +08035014406,13460.0,False,False +08035014503,5683.0,False,False +08035014504,4637.0,False,False +08035014505,5797.0,False,False +08035014506,5410.0,False,False +08035014602,2658.0,False,False +08035014603,6892.0,False,False +08035014604,4245.0,False,False +08037000100,1463.0,False,False +08037000200,7439.0,False,False +08037000301,6964.0,False,False +08037000302,2253.0,False,False +08037000401,4387.0,False,False +08037000402,4800.0,False,False +08037000403,8857.0,False,False +08037000501,462.0,False,False +08037000502,4224.0,False,False +08037000503,6539.0,False,False +08037000600,1446.0,False,False +08037000701,1693.0,False,False +08037000702,1453.0,False,False +08037000703,2701.0,False,False +08039961100,2227.0,False,False +08039961204,8121.0,False,False +08039961205,2057.0,False,False +08039961206,3735.0,False,False +08039961207,3930.0,False,False +08039961208,3465.0,False,False +08039961209,2182.0,False,False +08041000101,5892.0,True,True +08041000102,3387.0,False,False +08041000202,4655.0,False,False +08041000203,4318.0,False,False +08041000301,3376.0,True,True +08041000302,5021.0,True,True +08041000400,2214.0,False,False +08041000500,2100.0,False,False +08041000600,3007.0,False,False +08041000700,3413.0,True,False +08041000800,2985.0,False,False +08041000900,2399.0,False,False +08041001000,2301.0,False,False +08041001101,1490.0,True,True +08041001104,3161.0,True,True +08041001301,2099.0,False,False +08041001302,5399.0,False,False +08041001400,3321.0,True,True +08041001500,2145.0,True,True +08041001600,3359.0,False,False +08041001700,1882.0,False,False +08041001800,1952.0,False,False +08041001900,4873.0,True,True +08041002000,6834.0,True,True +08041002101,3755.0,True,True +08041002102,4776.0,True,False +08041002200,2942.0,False,False +08041002300,1892.0,True,True +08041002400,5329.0,False,False +08041002501,3551.0,False,False +08041002502,4435.0,False,False +08041002700,3246.0,True,True +08041002800,6593.0,False,True +08041002900,5582.0,True,True +08041003000,3888.0,False,False +08041003100,4351.0,False,False +08041003303,5793.0,True,False +08041003305,7402.0,False,False +08041003306,3195.0,False,False +08041003307,3450.0,False,False +08041003308,6004.0,False,False +08041003400,3381.0,False,False +08041003701,7967.0,False,False +08041003702,5236.0,False,False +08041003705,5953.0,False,False +08041003706,4572.0,False,False +08041003707,3950.0,False,False +08041003708,3001.0,False,False +08041003709,6220.0,False,False +08041003801,2183.0,False,False +08041003802,4329.0,False,False +08041003902,14149.0,False,False +08041003905,4223.0,False,False +08041003906,6275.0,False,False +08041003909,6330.0,False,False +08041004008,3027.0,False,False +08041004009,1692.0,True,True +08041004100,5036.0,False,False +08041004200,3789.0,False,False +08041004300,6727.0,False,False +08041004401,9406.0,True,True +08041004402,5545.0,False,False +08041004403,1220.0,True,True +08041004501,5493.0,True,True +08041004502,6731.0,False,False +08041004503,15820.0,False,False +08041004506,5581.0,False,True +08041004507,3541.0,True,True +08041004508,7287.0,True,True +08041004510,11057.0,False,False +08041004511,7195.0,False,False +08041004601,4232.0,False,False +08041004602,4629.0,False,False +08041004603,7754.0,False,False +08041004701,4853.0,False,False +08041004702,2112.0,False,False +08041004703,5869.0,False,False +08041004705,8979.0,False,False +08041004706,5512.0,False,False +08041004800,5022.0,False,False +08041004901,3649.0,False,False +08041004902,5583.0,False,False +08041005000,5577.0,True,True +08041005104,10596.0,False,False +08041005105,7599.0,False,False +08041005106,10848.0,False,False +08041005107,9048.0,False,False +08041005108,9219.0,False,False +08041005109,8027.0,False,False +08041005110,4230.0,False,False +08041005111,8507.0,False,False +08041005201,4364.0,True,True +08041005202,3081.0,False,False +08041005300,4915.0,True,True +08041005400,6164.0,True,True +08041005501,4942.0,False,False +08041005502,4630.0,True,False +08041005601,5206.0,False,False +08041005602,3422.0,False,False +08041005700,6092.0,False,False +08041005800,3059.0,False,False +08041005900,6673.0,False,False +08041006000,7045.0,True,True +08041006100,4340.0,True,True +08041006200,5194.0,True,True +08041006301,5196.0,False,False +08041006302,6035.0,True,True +08041006400,7530.0,True,True +08041006501,3877.0,True,True +08041006502,7508.0,True,True +08041006600,2368.0,False,False +08041006700,6132.0,False,False +08041006801,4304.0,False,False +08041006802,4054.0,False,False +08041006901,5109.0,False,False +08041006902,5239.0,False,False +08041007000,4520.0,False,False +08041007101,10685.0,False,False +08041007102,10097.0,False,False +08041007201,10751.0,False,False +08041007202,9588.0,False,False +08041007300,10786.0,False,False +08041007400,8895.0,False,False +08041007500,8852.0,False,False +08041007601,9405.0,False,False +08041007602,3524.0,False,False +08041007700,6123.0,False,False +08041007800,5457.0,False,False +08041007900,2747.0,False,False +08041008000,4537.0,False,False +08043978100,3574.0,False,False +08043978200,3628.0,True,True +08043978300,5266.0,True,True +08043978400,2388.0,False,False +08043978500,5715.0,False,False +08043978600,3631.0,True,True +08043978800,2313.0,False,False +08043979000,3456.0,True,True +08043979100,3108.0,True,True +08043979200,1713.0,False,False +08043979400,3196.0,False,False +08043980100,308.0,False,False +08043980200,3073.0,False,False +08043980300,5952.0,True,True +08045951600,3806.0,False,False +08045951701,4162.0,False,False +08045951702,3183.0,False,False +08045951802,4109.0,False,False +08045951803,6379.0,False,False +08045951804,4533.0,False,False +08045951901,4936.0,False,False +08045951902,7182.0,False,False +08045952001,5347.0,True,True +08045952002,8604.0,False,False +08045952100,6814.0,False,False +08047013800,6018.0,False,False +08049000100,3432.0,False,False +08049000201,5225.0,False,False +08049000202,6646.0,False,False +08051963600,4437.0,False,False +08051963700,6622.0,False,False +08051963800,4710.0,False,False +08051963900,1033.0,False,False +08053973100,857.0,False,False +08055960600,3162.0,True,True +08055960900,3517.0,False,False +08057955600,1261.0,False,False +08059009806,3867.0,False,False +08059009807,1737.0,False,False +08059009808,6024.0,False,False +08059009815,5395.0,False,False +08059009823,4829.0,False,False +08059009824,4750.0,False,False +08059009827,6218.0,False,False +08059009828,5802.0,False,False +08059009829,1841.0,False,False +08059009830,2245.0,False,False +08059009831,2624.0,False,False +08059009832,2653.0,False,False +08059009833,5506.0,False,False +08059009834,4364.0,False,False +08059009835,3739.0,False,False +08059009836,4016.0,False,False +08059009837,6533.0,False,False +08059009838,4904.0,False,False +08059009839,2379.0,False,False +08059009840,3664.0,False,False +08059009841,2202.0,False,False +08059009842,3408.0,False,False +08059009843,8439.0,False,False +08059009845,4210.0,False,False +08059009846,4733.0,False,False +08059009847,3262.0,False,False +08059009848,2629.0,False,False +08059009849,5660.0,False,False +08059009850,2540.0,False,False +08059009851,3999.0,False,False +08059009852,4038.0,False,False +08059009900,2534.0,False,False +08059010000,5469.0,False,False +08059010100,5553.0,False,False +08059010205,2423.0,False,False +08059010206,3878.0,False,False +08059010208,5743.0,False,False +08059010209,6694.0,False,False +08059010210,3662.0,False,False +08059010211,3457.0,False,False +08059010212,4130.0,False,False +08059010213,4809.0,False,False +08059010303,5562.0,False,False +08059010304,2769.0,False,False +08059010305,3640.0,False,False +08059010306,2823.0,False,False +08059010307,5110.0,False,False +08059010308,5829.0,False,False +08059010402,5411.0,False,False +08059010403,5653.0,False,False +08059010405,2749.0,False,False +08059010406,2892.0,True,True +08059010502,5092.0,False,False +08059010503,4222.0,False,False +08059010504,3016.0,False,False +08059010603,3407.0,False,False +08059010604,2435.0,False,False +08059010701,4470.0,False,False +08059010702,5249.0,True,False +08059010801,2520.0,False,False +08059010901,5293.0,False,False +08059010902,2517.0,False,False +08059011000,6290.0,False,False +08059011100,6565.0,False,False +08059011202,4920.0,False,False +08059011300,3229.0,False,False +08059011401,2460.0,True,True +08059011402,4453.0,True,True +08059011550,6491.0,True,True +08059011601,3855.0,True,True +08059011602,4409.0,True,True +08059011701,4599.0,False,False +08059011702,5693.0,False,False +08059011708,4279.0,False,False +08059011709,3633.0,False,False +08059011710,3889.0,False,False +08059011711,4349.0,False,False +08059011712,4313.0,False,False +08059011720,4843.0,False,False +08059011721,2541.0,False,False +08059011723,3418.0,False,False +08059011724,6739.0,False,False +08059011725,1844.0,False,False +08059011726,6079.0,False,False +08059011727,3538.0,False,False +08059011728,2804.0,False,False +08059011729,4207.0,False,False +08059011730,3388.0,False,False +08059011731,4317.0,False,False +08059011732,4786.0,False,False +08059011733,1727.0,False,False +08059011803,5435.0,False,False +08059011804,4491.0,False,False +08059011805,5996.0,False,False +08059011806,5360.0,False,False +08059011904,2716.0,False,False +08059011951,3409.0,False,False +08059012022,5809.0,False,False +08059012023,3545.0,False,False +08059012024,5387.0,False,False +08059012026,3347.0,False,False +08059012027,3122.0,False,False +08059012030,3867.0,False,False +08059012031,4092.0,False,False +08059012032,2734.0,False,False +08059012033,2815.0,False,False +08059012034,3710.0,False,False +08059012035,5286.0,False,False +08059012036,3986.0,False,False +08059012037,3523.0,False,False +08059012038,3910.0,False,False +08059012039,5417.0,False,False +08059012041,5885.0,False,False +08059012042,3859.0,False,False +08059012043,5766.0,False,False +08059012044,4117.0,False,False +08059012045,6185.0,False,False +08059012046,2270.0,False,False +08059012047,4435.0,False,False +08059012048,2449.0,False,False +08059012049,3921.0,False,False +08059012050,4140.0,False,False +08059012051,3658.0,False,False +08059012052,5234.0,False,False +08059012053,4010.0,False,False +08059012054,3946.0,False,False +08059012055,4037.0,False,False +08059012057,5992.0,False,False +08059012058,3853.0,False,False +08059012059,3247.0,False,False +08059012060,3355.0,False,False +08059015800,4442.0,False,False +08059015900,3686.0,False,False +08059060300,4801.0,False,False +08059060400,3613.0,False,False +08059060500,7753.0,False,False +08059980000,0.0,False,False +08059980400,1308.0,False,False +08061960100,1489.0,True,True +08063962100,4826.0,False,False +08063962200,1540.0,True,True +08063962300,1081.0,False,False +08065961700,5649.0,False,False +08065961900,2102.0,True,True +08067940300,6378.0,False,True +08067940400,5868.0,False,True +08067970600,9621.0,False,False +08067970701,4995.0,False,False +08067970703,6047.0,False,False +08067970704,3955.0,False,False +08067970800,7187.0,False,False +08067970900,4055.0,False,False +08067971000,3297.0,False,False +08067971100,4214.0,False,False +08069000100,2843.0,False,False +08069000201,2923.0,False,False +08069000202,2435.0,False,False +08069000300,2779.0,False,False +08069000401,1972.0,False,False +08069000402,2528.0,False,False +08069000503,6379.0,False,False +08069000504,2996.0,False,False +08069000505,3768.0,False,False +08069000506,3243.0,False,False +08069000600,6523.0,False,False +08069000700,2805.0,False,False +08069000801,1576.0,False,False +08069000802,1305.0,False,False +08069000901,6051.0,False,False +08069000902,3895.0,False,False +08069001003,5421.0,False,False +08069001004,3541.0,False,False +08069001007,3553.0,False,False +08069001008,1974.0,False,False +08069001009,6381.0,False,False +08069001010,2898.0,False,False +08069001104,6099.0,False,False +08069001106,4949.0,False,False +08069001107,5212.0,False,False +08069001109,5130.0,False,False +08069001110,5589.0,False,False +08069001111,2279.0,False,False +08069001112,4675.0,False,False +08069001113,3688.0,False,False +08069001114,2293.0,False,False +08069001301,3509.0,False,False +08069001304,2846.0,True,True +08069001305,2943.0,False,False +08069001306,3038.0,False,False +08069001307,4571.0,False,False +08069001308,5737.0,False,False +08069001601,1581.0,False,False +08069001602,5632.0,False,False +08069001603,5681.0,False,False +08069001605,6220.0,False,False +08069001606,3645.0,False,False +08069001607,3892.0,False,False +08069001608,6411.0,False,False +08069001704,9989.0,False,False +08069001706,7216.0,False,False +08069001707,5964.0,False,False +08069001708,4645.0,False,False +08069001709,17875.0,False,False +08069001804,4018.0,False,False +08069001806,7824.0,False,False +08069001807,6186.0,False,False +08069001808,4665.0,False,False +08069001809,11434.0,False,False +08069001901,4437.0,False,False +08069001902,4455.0,False,False +08069001903,3595.0,False,False +08069002005,5523.0,False,False +08069002007,3681.0,False,False +08069002008,4194.0,False,False +08069002010,2565.0,False,False +08069002011,5188.0,False,False +08069002300,3513.0,False,False +08069002401,1352.0,False,False +08069002402,2700.0,False,False +08069002501,11250.0,False,False +08069002502,12151.0,False,False +08069002503,2666.0,False,False +08069002600,7794.0,False,False +08069002700,6321.0,False,False +08069002801,3507.0,False,False +08069002802,6616.0,False,False +08069002803,53.0,True,True +08071000100,3521.0,True,True +08071000200,2128.0,False,False +08071000300,2073.0,False,False +08071000400,2132.0,True,True +08071000500,1863.0,True,True +08071000800,2549.0,True,True +08073961700,3588.0,True,True +08073961800,1997.0,True,True +08075965900,1030.0,False,False +08075966000,2204.0,False,False +08075966100,7764.0,True,True +08075966200,4070.0,False,False +08075966300,5148.0,False,False +08075966400,2164.0,False,False +08077000200,2068.0,True,True +08077000300,1444.0,True,True +08077000400,3669.0,False,False +08077000500,3117.0,False,True +08077000601,4605.0,True,False +08077000602,4627.0,True,True +08077000700,4268.0,True,True +08077000800,9164.0,False,False +08077000900,3547.0,False,False +08077001001,5613.0,False,False +08077001002,6524.0,False,False +08077001101,8122.0,False,False +08077001102,4515.0,False,False +08077001200,2220.0,False,False +08077001301,8772.0,True,False +08077001302,5149.0,False,False +08077001402,5699.0,False,False +08077001403,3423.0,False,False +08077001404,5012.0,False,False +08077001501,13408.0,False,False +08077001502,7616.0,False,False +08077001600,3722.0,False,False +08077001702,4757.0,False,False +08077001703,4325.0,False,False +08077001705,5765.0,True,True +08077001706,6189.0,True,True +08077001707,5826.0,False,False +08077001800,3039.0,False,False +08077001900,5013.0,False,False +08079973600,824.0,False,False +08081000300,2693.0,False,False +08081000400,4602.0,False,False +08081000500,4558.0,False,False +08081000600,1274.0,True,True +08083941100,1815.0,True,True +08083969000,3407.0,False,False +08083969100,3718.0,True,True +08083969200,2632.0,False,False +08083969300,5973.0,False,False +08083969400,3628.0,True,True +08083969600,4858.0,False,False +08085966100,2239.0,False,False +08085966201,2547.0,False,False +08085966202,4211.0,True,True +08085966300,5849.0,True,True +08085966400,6513.0,False,False +08085966501,3021.0,False,False +08085966502,3737.0,False,False +08085966503,3773.0,True,True +08085966601,5155.0,True,True +08085966602,4641.0,False,False +08087000100,2794.0,False,False +08087000200,2915.0,False,False +08087000300,1973.0,True,True +08087000400,3963.0,True,True +08087000500,2664.0,True,True +08087000600,6518.0,True,False +08087000700,5971.0,False,False +08087000800,1719.0,False,False +08089968000,1593.0,True,False +08089968100,2527.0,True,True +08089968200,2764.0,True,True +08089968300,4104.0,True,True +08089968400,1101.0,True,True +08089968500,1608.0,False,True +08089968600,4585.0,True,True +08091967600,4796.0,False,False +08093000100,7051.0,False,False +08093000200,3836.0,False,False +08093000300,2900.0,False,False +08093000400,1378.0,False,False +08093000500,2702.0,True,True +08095967600,3050.0,True,True +08095967700,1240.0,False,False +08097000100,7440.0,False,False +08097000401,4779.0,False,False +08097000402,2926.0,False,False +08097000500,2781.0,False,False +08099000100,1490.0,False,False +08099000200,2421.0,True,True +08099000300,4575.0,False,False +08099000600,1365.0,True,True +08099000700,2171.0,True,True +08101000100,2576.0,False,False +08101000200,2019.0,True,True +08101000300,1838.0,True,True +08101000400,2714.0,True,True +08101000500,2062.0,False,False +08101000600,1920.0,True,True +08101000800,3130.0,True,True +08101000902,6327.0,False,False +08101000903,521.0,False,False +08101000904,3999.0,True,True +08101000905,2242.0,True,True +08101001000,4761.0,True,True +08101001100,2169.0,True,True +08101001200,2267.0,True,True +08101001400,1476.0,True,True +08101001500,2362.0,True,True +08101001600,1737.0,True,True +08101001700,4880.0,False,False +08101001800,2208.0,True,True +08101001900,1624.0,True,True +08101002000,3186.0,True,True +08101002100,1394.0,True,True +08101002200,1577.0,True,True +08101002300,3985.0,True,True +08101002400,1670.0,True,True +08101002500,2633.0,True,True +08101002600,4089.0,True,True +08101002700,5328.0,True,False +08101002801,5194.0,True,True +08101002802,3596.0,False,False +08101002804,4716.0,False,False +08101002806,4236.0,False,False +08101002807,4807.0,False,False +08101002808,3326.0,False,False +08101002901,2983.0,True,True +08101002903,7952.0,False,False +08101002906,4321.0,False,False +08101002911,2894.0,False,False +08101002912,1770.0,True,True +08101002913,3224.0,False,False +08101002914,3161.0,False,False +08101002915,2693.0,False,False +08101002916,3228.0,True,True +08101002917,3128.0,False,False +08101002918,7480.0,False,False +08101003001,1448.0,True,True +08101003004,2948.0,False,False +08101003103,1863.0,True,True +08101003104,2189.0,False,False +08101003105,3446.0,False,False +08101003106,1321.0,False,False +08101003200,3354.0,False,False +08101003500,1876.0,True,True +08101003600,2134.0,True,True +08101980100,0.0,False,False +08103951100,3696.0,False,False +08103951200,2688.0,False,False +08105976700,5079.0,True,True +08105976800,1805.0,True,True +08105977000,4421.0,True,True +08107000100,1988.0,False,False +08107000200,2293.0,False,False +08107000300,2323.0,False,False +08107000400,3949.0,False,False +08107000500,4488.0,False,False +08107000600,3017.0,False,False +08107000700,4919.0,False,False +08107000800,2095.0,False,False +08109977600,3368.0,True,True +08109977700,3224.0,True,True +08111972600,589.0,False,False +08113968101,1965.0,False,False +08113968102,2107.0,False,False +08113968103,2140.0,False,False +08113968200,1837.0,False,False +08115968300,2322.0,True,True +08117000100,8332.0,False,False +08117000200,7665.0,False,False +08117000300,4483.0,False,False +08117000401,4144.0,False,False +08117000402,6025.0,False,False +08119010103,8064.0,False,False +08119010104,2193.0,False,False +08119010105,6515.0,False,False +08119010106,4874.0,False,False +08119010201,2312.0,True,True +08119010202,566.0,True,True +08121924100,2043.0,False,False +08121924200,2825.0,False,False +08123000100,2789.0,True,True +08123000200,3861.0,False,True +08123000300,2323.0,False,False +08123000401,3560.0,False,False +08123000402,3969.0,True,True +08123000501,3534.0,True,True +08123000502,3684.0,True,True +08123000600,2268.0,True,True +08123000701,1653.0,True,True +08123000703,6713.0,True,True +08123000704,1112.0,False,False +08123000705,1663.0,True,True +08123000800,3189.0,False,True +08123000900,3575.0,False,False +08123001003,4616.0,True,True +08123001004,4292.0,True,True +08123001005,7495.0,False,False +08123001006,4892.0,False,False +08123001100,4859.0,False,False +08123001201,4419.0,True,True +08123001202,2833.0,False,False +08123001300,7162.0,True,True +08123001404,3178.0,True,False +08123001405,4782.0,False,False +08123001406,6065.0,False,False +08123001407,3506.0,False,False +08123001408,1924.0,False,False +08123001409,3522.0,False,False +08123001410,3505.0,False,False +08123001411,2615.0,False,False +08123001412,3147.0,False,False +08123001413,2716.0,False,False +08123001414,2339.0,False,False +08123001415,3638.0,False,False +08123001416,2837.0,False,False +08123001417,3000.0,True,True +08123001500,7357.0,False,False +08123001600,4552.0,False,False +08123001700,5460.0,False,False +08123001800,4678.0,False,False +08123001902,8270.0,False,False +08123001905,4655.0,False,False +08123001906,1716.0,True,False +08123001907,2965.0,False,False +08123001908,2901.0,False,False +08123002004,4528.0,False,False +08123002005,1158.0,False,False +08123002006,288.0,False,False +08123002007,6611.0,False,False +08123002008,5434.0,False,False +08123002009,2859.0,False,False +08123002010,2666.0,False,False +08123002011,1605.0,False,False +08123002012,1263.0,False,False +08123002013,3255.0,False,False +08123002014,2172.0,False,False +08123002015,1308.0,False,False +08123002016,3222.0,False,False +08123002017,683.0,False,False +08123002018,1856.0,False,False +08123002019,5860.0,False,False +08123002020,6041.0,False,False +08123002021,738.0,False,False +08123002101,10099.0,False,False +08123002102,13140.0,False,False +08123002103,10665.0,False,False +08123002203,2861.0,False,False +08123002204,1998.0,False,False +08123002205,4954.0,False,False +08123002206,3647.0,False,False +08123002207,3530.0,False,False +08123002208,6576.0,False,False +08123002209,2622.0,False,False +08123002210,1064.0,False,False +08123002300,5586.0,True,True +08123002501,5535.0,False,False +08123002502,7732.0,False,False +08125963100,4422.0,True,True +08125963200,5581.0,True,True +09001010101,4155.0,False,False +09001010102,4351.0,False,False +09001010201,3486.0,False,False +09001010202,5338.0,False,False +09001010300,3780.0,False,False +09001010400,5799.0,False,False +09001010500,5880.0,False,False +09001010600,2062.0,False,False +09001010700,3605.0,False,False +09001010800,3551.0,False,False +09001010900,5285.0,False,False +09001011000,5554.0,False,False +09001011100,4609.0,False,False +09001011200,1716.0,False,False +09001011300,3416.0,False,True +09001020100,5436.0,False,True +09001020200,3544.0,False,False +09001020300,6990.0,False,False +09001020400,3554.0,False,False +09001020500,4886.0,False,False +09001020600,5199.0,False,False +09001020700,4079.0,False,False +09001020800,2659.0,False,False +09001020900,4694.0,False,False +09001021000,3327.0,False,False +09001021100,6516.0,False,False +09001021200,4221.0,False,False +09001021300,4349.0,False,False +09001021400,7258.0,True,True +09001021500,6470.0,True,True +09001021600,7606.0,False,False +09001021700,7430.0,False,False +09001021801,4600.0,False,False +09001021802,5267.0,False,True +09001021900,6185.0,False,True +09001022000,2914.0,False,False +09001022100,8149.0,True,True +09001022200,6568.0,False,False +09001022300,5264.0,False,False +09001022400,2144.0,False,False +09001030100,3622.0,False,False +09001030200,3594.0,False,False +09001030300,4290.0,False,False +09001030400,4262.0,False,False +09001030500,5974.0,False,False +09001035100,7698.0,False,False +09001035200,3080.0,False,False +09001035300,4124.0,False,False +09001035400,5374.0,False,False +09001042500,3986.0,False,False +09001042600,4020.0,False,False +09001042700,5210.0,False,False +09001042800,4741.0,False,False +09001042900,1551.0,False,False +09001043000,2905.0,False,False +09001043100,4620.0,False,False +09001043200,3206.0,False,True +09001043300,2941.0,False,False +09001043400,4339.0,False,False +09001043500,2437.0,False,False +09001043600,3084.0,False,False +09001043700,2593.0,False,False +09001043800,7000.0,False,False +09001043900,6325.0,False,False +09001044000,5927.0,True,True +09001044100,3348.0,True,True +09001044200,4080.0,False,True +09001044300,4460.0,False,False +09001044400,4018.0,True,True +09001044500,4055.0,True,True +09001044600,3753.0,False,False +09001045101,4043.0,False,False +09001045102,6215.0,False,False +09001045200,2481.0,False,False +09001045300,2517.0,False,False +09001045400,3207.0,False,False +09001050100,4478.0,False,False +09001050200,3853.0,False,False +09001050300,8836.0,False,False +09001050400,2349.0,False,False +09001050500,5095.0,False,False +09001050600,3405.0,False,False +09001055100,5582.0,False,False +09001055200,4705.0,False,False +09001060100,4414.0,False,False +09001060200,4361.0,False,False +09001060300,3958.0,False,False +09001060400,4520.0,False,False +09001060500,2762.0,False,False +09001060600,2306.0,False,False +09001060700,7982.0,False,False +09001060800,2109.0,False,False +09001060900,2648.0,False,False +09001061000,3889.0,False,False +09001061100,3842.0,False,False +09001061200,2504.0,False,True +09001061300,3109.0,False,False +09001061400,3079.0,False,False +09001061500,4836.0,False,False +09001061600,5421.0,False,False +09001070100,4966.0,False,False +09001070200,3880.0,False,True +09001070300,1388.0,True,True +09001070400,1480.0,False,True +09001070500,1855.0,True,True +09001070600,2556.0,False,True +09001070900,2886.0,True,True +09001071000,3446.0,True,True +09001071100,4939.0,True,True +09001071200,5508.0,True,True +09001071300,2699.0,True,True +09001071400,3632.0,True,True +09001071600,2607.0,True,True +09001071900,4949.0,True,True +09001072000,3518.0,True,True +09001072100,5224.0,False,True +09001072200,3884.0,False,True +09001072300,5630.0,False,True +09001072400,3023.0,True,True +09001072500,5671.0,False,False +09001072600,7335.0,False,False +09001072700,3883.0,False,False +09001072800,5608.0,False,True +09001072900,4546.0,False,True +09001073000,2104.0,False,False +09001073100,6074.0,True,True +09001073200,2695.0,True,True +09001073300,3568.0,True,True +09001073400,4025.0,False,True +09001073500,3432.0,True,True +09001073600,2423.0,True,True +09001073700,4391.0,True,True +09001073800,2195.0,True,True +09001073900,3872.0,True,True +09001074000,2137.0,True,True +09001074300,4978.0,True,True +09001074400,4536.0,True,True +09001080100,5194.0,False,False +09001080200,4263.0,False,False +09001080400,6313.0,False,False +09001080500,3029.0,False,False +09001080600,2638.0,False,False +09001080700,1993.0,False,False +09001080800,4547.0,False,False +09001080900,5043.0,False,False +09001081000,4103.0,False,False +09001081100,4891.0,False,False +09001081200,4940.0,False,False +09001081300,5166.0,False,False +09001090100,3361.0,False,False +09001090200,8029.0,False,False +09001090300,4611.0,False,False +09001090400,6518.0,False,False +09001090500,4760.0,False,False +09001090600,3260.0,False,False +09001090700,5437.0,False,False +09001100100,5656.0,False,False +09001100200,7233.0,False,False +09001100300,6657.0,False,False +09001105100,3992.0,False,False +09001105200,3551.0,False,False +09001110100,2931.0,False,True +09001110201,4850.0,False,False +09001110202,4755.0,False,False +09001110301,6586.0,False,False +09001110302,3348.0,False,False +09001110400,4830.0,False,False +09001110500,5528.0,False,False +09001110600,8313.0,False,False +09001200100,3695.0,False,False +09001200200,5223.0,False,False +09001200301,5236.0,False,False +09001200302,5509.0,False,False +09001205100,4304.0,False,False +09001205200,6941.0,False,False +09001205300,5771.0,False,False +09001210100,5648.0,True,True +09001210200,6355.0,False,True +09001210300,5845.0,False,True +09001210400,9475.0,False,False +09001210500,8548.0,False,False +09001210600,5989.0,False,True +09001210701,5840.0,True,True +09001210702,4642.0,True,True +09001210800,5618.0,False,False +09001210900,5304.0,False,False +09001211000,4641.0,False,False +09001211100,963.0,False,False +09001211200,6696.0,False,False +09001211300,3981.0,False,False +09001211400,5074.0,False,False +09001220100,5381.0,False,False +09001220200,5063.0,False,False +09001220300,3511.0,False,False +09001230100,7181.0,False,False +09001230200,1879.0,False,False +09001230300,3575.0,False,False +09001230400,6023.0,False,False +09001230501,4113.0,False,False +09001230502,5051.0,False,False +09001240100,4603.0,False,False +09001240200,4573.0,False,False +09001245100,2889.0,False,False +09001245200,4490.0,False,False +09001245300,5002.0,False,False +09001245400,3027.0,False,False +09001245500,3040.0,False,False +09001245600,6594.0,False,False +09001257100,3649.0,False,False +09001257200,4096.0,True,True +09001990000,0.0,False,False +09003330100,1982.0,False,False +09003400100,7341.0,False,False +09003400200,6251.0,False,False +09003400300,6892.0,False,False +09003405100,3290.0,False,False +09003405200,3912.0,False,False +09003405300,6442.0,False,False +09003405401,3399.0,False,False +09003405402,3766.0,False,False +09003405500,5353.0,False,False +09003405600,7433.0,False,False +09003405700,2112.0,True,True +09003405800,7658.0,False,False +09003405900,4630.0,False,False +09003406001,4033.0,False,False +09003406002,4382.0,False,False +09003406100,3808.0,True,True +09003410101,5481.0,False,False +09003410102,4178.0,False,False +09003415300,2080.0,True,True +09003415400,6381.0,False,False +09003415500,2950.0,True,True +09003415600,4596.0,False,True +09003415700,3121.0,False,False +09003415800,2739.0,True,True +09003415900,1434.0,True,True +09003416000,4756.0,True,True +09003416100,4710.0,True,True +09003416200,2997.0,True,True +09003416300,3927.0,True,True +09003416400,3357.0,False,False +09003416500,4920.0,False,False +09003416600,2970.0,True,True +09003416700,6677.0,True,True +09003416800,2989.0,False,False +09003417100,1712.0,True,True +09003417200,1489.0,False,True +09003417300,1754.0,False,False +09003417400,2876.0,False,False +09003417500,4332.0,False,False +09003420400,3237.0,False,False +09003420500,4964.0,False,False +09003420600,5946.0,False,False +09003420700,3472.0,False,False +09003430100,4580.0,False,False +09003430201,3645.0,False,False +09003430202,4962.0,False,False +09003430203,4404.0,False,False +09003430301,3708.0,False,False +09003430302,2881.0,False,False +09003430400,4067.0,False,False +09003430500,6726.0,False,False +09003430601,5236.0,False,False +09003430602,3572.0,False,False +09003460100,3226.0,False,False +09003460202,4325.0,False,False +09003460203,3233.0,False,False +09003460204,6153.0,False,False +09003460301,4776.0,False,False +09003460302,3815.0,False,False +09003462101,6323.0,False,False +09003462102,3942.0,False,False +09003462201,5186.0,False,False +09003462202,2861.0,False,False +09003464101,5393.0,False,False +09003464102,4895.0,False,False +09003466101,4385.0,False,False +09003466102,4907.0,False,False +09003466201,2895.0,False,False +09003466202,4926.0,False,False +09003466300,5038.0,False,False +09003466400,2648.0,False,False +09003468101,7393.0,False,False +09003468102,3968.0,False,False +09003470100,5304.0,False,False +09003471100,3889.0,False,False +09003471200,3290.0,False,False +09003471300,4480.0,False,False +09003471400,5486.0,False,False +09003471500,3877.0,False,False +09003473100,6394.0,False,False +09003473400,1721.0,False,False +09003473501,4224.0,False,False +09003473502,3066.0,False,False +09003473601,3084.0,False,False +09003473602,2562.0,False,False +09003473700,6037.0,False,False +09003473800,1771.0,False,False +09003476100,4648.0,False,False +09003476200,2818.0,False,False +09003476300,5205.0,False,False +09003477101,4179.0,False,False +09003477102,8543.0,False,False +09003477200,2966.0,False,False +09003480300,2218.0,False,False +09003480400,3681.0,False,False +09003480500,3308.0,False,False +09003480600,4790.0,True,True +09003480700,2414.0,False,False +09003480800,4597.0,False,False +09003480900,2218.0,False,False +09003481000,3671.0,False,False +09003481100,3931.0,False,False +09003481200,3983.0,False,False +09003481300,2865.0,False,False +09003484100,5308.0,False,False +09003484200,6137.0,False,False +09003487100,7112.0,False,False +09003487201,4629.0,False,False +09003487202,3586.0,False,False +09003487300,1512.0,False,False +09003487400,2394.0,False,False +09003487500,6665.0,False,False +09003490100,5701.0,False,False +09003490302,8062.0,False,False +09003492100,3375.0,False,False +09003492200,3927.0,False,False +09003492300,5840.0,False,False +09003492400,3084.0,False,False +09003492500,3364.0,False,False +09003492600,6581.0,False,False +09003494100,5798.0,False,False +09003494201,4734.0,False,False +09003494202,2592.0,False,False +09003494300,4320.0,False,False +09003494400,4742.0,False,False +09003494500,4556.0,False,False +09003494600,3492.0,False,False +09003496100,2942.0,False,False +09003496200,4675.0,False,False +09003496300,3825.0,False,False +09003496400,2966.0,False,False +09003496500,2681.0,False,False +09003496600,2719.0,False,False +09003496700,3474.0,False,False +09003496800,3193.0,False,False +09003496900,6195.0,False,False +09003497000,4312.0,False,False +09003497100,4124.0,False,False +09003497200,2218.0,False,False +09003497300,5352.0,False,False +09003497400,4055.0,False,False +09003497500,3625.0,False,False +09003497600,2232.0,False,False +09003497700,4475.0,False,False +09003500100,3922.0,True,True +09003500200,2363.0,True,True +09003500300,2306.0,True,True +09003500400,1680.0,True,True +09003500500,1459.0,False,True +09003500700,907.0,True,True +09003500900,2107.0,True,True +09003501200,2849.0,True,True +09003501300,1745.0,True,True +09003501400,2602.0,True,True +09003501500,3120.0,True,True +09003501700,1722.0,True,True +09003501800,3019.0,True,True +09003502100,2403.0,False,False +09003502300,5967.0,False,True +09003502400,6167.0,True,True +09003502500,2154.0,True,True +09003502600,4045.0,True,True +09003502700,4962.0,False,True +09003502800,2826.0,True,True +09003502900,3047.0,True,True +09003503000,2848.0,True,True +09003503100,4153.0,True,True +09003503300,2819.0,True,True +09003503500,1575.0,True,True +09003503700,2387.0,True,True +09003503800,2765.0,False,True +09003503900,4781.0,False,False +09003504000,3169.0,False,False +09003504100,1805.0,True,True +09003504200,5045.0,True,True +09003504300,3034.0,True,True +09003504500,3273.0,True,True +09003504800,4955.0,True,True +09003504900,4683.0,True,True +09003510100,1923.0,False,False +09003510200,2599.0,True,True +09003510300,4127.0,True,True +09003510400,6556.0,True,True +09003510500,3027.0,False,False +09003510600,4617.0,True,True +09003510700,4532.0,False,False +09003510800,3200.0,False,False +09003510900,3673.0,False,False +09003511000,3596.0,False,False +09003511100,3302.0,False,False +09003511200,3240.0,True,True +09003511300,3660.0,False,False +09003511400,2220.0,False,False +09003514101,3456.0,False,False +09003514102,7953.0,False,False +09003514200,3050.0,False,False +09003514300,3951.0,False,False +09003514400,4307.0,False,False +09003514500,4607.0,False,False +09003514600,5226.0,False,False +09003514700,4506.0,False,True +09003514800,3253.0,True,True +09003514900,2786.0,False,False +09003515000,3078.0,False,False +09003515101,2462.0,False,False +09003515102,6061.0,False,False +09003515200,3109.0,False,False +09003520100,5946.0,False,False +09003520201,3612.0,False,False +09003520202,3971.0,False,False +09003520301,4384.0,False,False +09003520302,4168.0,False,False +09003520400,8165.0,False,False +09003520501,4318.0,False,False +09003524100,6368.0,False,False +09003524200,6405.0,False,False +09003524300,6467.0,False,False +09003524400,3337.0,True,True +09003524501,2512.0,False,True +09003524502,2054.0,False,False +09003524600,3012.0,True,True +09003524700,3509.0,False,True +09003980000,0.0,False,False +09005250100,1707.0,False,False +09005253100,3425.0,True,True +09005253200,6887.0,False,False +09005253300,2107.0,False,False +09005253400,6089.0,False,False +09005253500,5759.0,False,False +09005253600,2747.0,False,False +09005260200,3281.0,False,False +09005261100,3625.0,False,False +09005262100,2700.0,False,False +09005263200,1291.0,False,False +09005265100,1457.0,False,False +09005266100,2799.0,False,False +09005267100,3450.0,False,False +09005268100,2105.0,False,False +09005290100,3649.0,False,False +09005293100,1484.0,False,False +09005296100,2883.0,False,False +09005298300,2607.0,False,False +09005298400,2849.0,False,False +09005300100,2230.0,False,False +09005300400,2005.0,False,False +09005300500,3912.0,False,False +09005303100,2205.0,False,False +09005306100,6703.0,False,False +09005310100,4130.0,False,False +09005310200,2514.0,True,True +09005310300,1622.0,True,True +09005310400,2451.0,False,False +09005310500,1985.0,False,False +09005310601,3638.0,False,False +09005310602,4449.0,False,False +09005310700,3870.0,False,False +09005310801,2302.0,False,False +09005310803,4691.0,True,True +09005310804,2837.0,False,False +09005320100,6265.0,False,False +09005320200,4465.0,False,False +09005342100,3433.0,False,False +09005349100,5065.0,False,False +09005349200,2534.0,False,False +09005360100,4841.0,False,False +09005360200,7963.0,False,False +09005360300,3242.0,False,False +09005360400,5705.0,False,False +09005362101,4201.0,False,False +09005362102,5361.0,False,False +09005425300,3959.0,False,False +09005425400,4688.0,False,False +09005425500,3064.0,False,False +09005425600,2771.0,False,False +09007541100,2201.0,True,True +09007541200,5187.0,False,False +09007541300,6201.0,False,False +09007541401,3240.0,False,False +09007541402,5637.0,False,False +09007541500,3383.0,False,False +09007541600,1279.0,True,True +09007541700,3307.0,True,True +09007542000,4073.0,False,False +09007542100,3885.0,False,False +09007542200,1660.0,False,False +09007550100,5672.0,False,False +09007550201,3958.0,False,False +09007550202,3197.0,False,False +09007560100,5683.0,False,False +09007560200,3639.0,False,False +09007570100,4732.0,False,False +09007570200,3404.0,False,False +09007570300,5774.0,False,False +09007580100,4381.0,False,False +09007585100,7221.0,False,False +09007590100,8227.0,False,False +09007595101,3867.0,False,False +09007595102,5140.0,False,False +09007600100,4234.0,False,False +09007610100,1989.0,False,False +09007610200,3636.0,False,False +09007610300,4164.0,False,False +09007610400,3155.0,False,False +09007620100,4480.0,False,False +09007630100,6604.0,False,False +09007640100,6392.0,False,False +09007670100,4477.0,False,False +09007670200,5613.0,False,False +09007680100,6903.0,False,False +09007680200,6458.0,False,False +09007990100,0.0,False,False +09009120100,6237.0,False,False +09009120200,6248.0,True,True +09009125100,4864.0,False,False +09009125200,5686.0,False,False +09009125300,4759.0,False,False +09009125400,3493.0,True,True +09009130101,5231.0,False,False +09009130102,2943.0,False,False +09009130200,8334.0,False,False +09009140100,3519.0,False,False +09009140200,642.0,True,True +09009140300,2539.0,True,True +09009140400,3433.0,True,True +09009140500,3581.0,True,True +09009140600,5068.0,True,True +09009140700,3874.0,True,True +09009140800,3798.0,True,True +09009140900,4733.0,True,True +09009141000,3966.0,False,False +09009141100,2679.0,False,False +09009141200,4730.0,True,True +09009141300,6685.0,False,False +09009141400,4943.0,True,True +09009141500,7304.0,True,True +09009141600,5149.0,True,True +09009141800,4339.0,False,False +09009141900,5451.0,False,False +09009142000,3033.0,False,False +09009142100,1503.0,True,True +09009142200,1507.0,False,False +09009142300,5460.0,True,True +09009142400,6003.0,True,True +09009142500,5891.0,True,True +09009142601,5860.0,False,False +09009142603,4104.0,True,True +09009142604,2620.0,False,False +09009142700,7296.0,True,True +09009142800,4085.0,False,False +09009150100,4791.0,False,False +09009150200,3315.0,False,False +09009150300,3937.0,False,False +09009150400,4084.0,False,False +09009150500,4514.0,False,False +09009150600,7131.0,False,False +09009150700,4524.0,False,False +09009150800,3951.0,False,False +09009150900,3787.0,False,False +09009151000,4158.0,False,False +09009151100,6865.0,False,False +09009151200,3271.0,False,False +09009154100,8089.0,False,True +09009154200,6413.0,False,False +09009154500,4295.0,False,True +09009154600,4647.0,False,True +09009154700,6663.0,False,False +09009154800,5009.0,False,False +09009154900,3860.0,False,False +09009155000,5145.0,False,False +09009155100,3009.0,False,False +09009157100,2480.0,False,False +09009157200,3921.0,False,False +09009157300,3361.0,False,False +09009157400,4172.0,False,False +09009160100,3252.0,False,False +09009160200,5575.0,False,False +09009161100,5513.0,False,False +09009165100,4198.0,False,False +09009165200,2431.0,False,False +09009165300,2195.0,False,False +09009165400,4735.0,False,False +09009165500,4733.0,False,False +09009165600,5518.0,False,False +09009165700,4819.0,False,False +09009165801,5883.0,False,False +09009165802,4280.0,False,False +09009165900,7961.0,False,False +09009166001,6862.0,False,False +09009166002,7367.0,False,False +09009167100,8056.0,False,False +09009167201,4356.0,False,False +09009167202,4551.0,False,False +09009167300,6759.0,False,False +09009170100,1504.0,True,True +09009170200,1095.0,True,True +09009170300,2023.0,True,True +09009170400,1713.0,False,False +09009170500,6428.0,False,False +09009170600,2669.0,False,False +09009170700,2377.0,False,False +09009170800,6623.0,False,False +09009170900,2405.0,True,True +09009171000,1568.0,True,True +09009171100,5705.0,False,False +09009171200,8283.0,False,False +09009171300,3599.0,False,False +09009171400,1646.0,True,True +09009171500,3017.0,True,True +09009171600,5017.0,False,False +09009171700,4004.0,False,False +09009175100,3247.0,False,False +09009175200,2465.0,False,False +09009175300,4236.0,False,False +09009175400,4624.0,False,False +09009175500,7426.0,False,False +09009175600,4794.0,False,False +09009175700,2694.0,False,False +09009175800,4306.0,False,False +09009175900,5121.0,False,False +09009176000,5683.0,False,False +09009180100,7121.0,False,False +09009180200,5749.0,False,False +09009180300,2207.0,False,False +09009180400,2666.0,False,False +09009180500,4603.0,False,False +09009180601,2839.0,False,False +09009180602,3557.0,False,False +09009184100,4990.0,False,False +09009184200,4110.0,False,False +09009184300,4455.0,False,False +09009184400,3358.0,False,False +09009184500,2569.0,False,False +09009184600,2730.0,False,False +09009184700,5808.0,False,False +09009186100,7159.0,False,False +09009186200,7032.0,False,False +09009190100,3335.0,False,False +09009190200,3605.0,False,False +09009190301,6717.0,False,False +09009190302,5235.0,False,False +09009190303,3324.0,False,False +09009194100,4930.0,False,False +09009194201,7687.0,False,False +09009194202,5496.0,False,False +09009341100,6168.0,False,False +09009343101,5968.0,False,False +09009343102,3938.0,False,False +09009343200,5735.0,False,False +09009343300,6989.0,False,False +09009343400,6517.0,False,False +09009344100,4937.0,False,False +09009344200,2802.0,False,False +09009345100,7355.0,False,False +09009345201,7492.0,False,False +09009345202,4168.0,False,False +09009345300,6006.0,False,False +09009345400,6326.0,False,False +09009346101,6928.0,False,False +09009346102,6158.0,False,False +09009347100,5827.0,False,False +09009347200,3878.0,False,False +09009348111,2647.0,False,False +09009348122,4173.0,False,False +09009348123,5970.0,False,False +09009348124,2489.0,False,False +09009348125,4402.0,False,False +09009350100,3809.0,True,True +09009350200,2884.0,True,True +09009350300,1873.0,True,True +09009350400,2346.0,True,True +09009350500,2279.0,True,True +09009350800,5989.0,True,True +09009350900,2219.0,False,True +09009351000,3883.0,False,True +09009351100,3788.0,True,True +09009351200,4001.0,True,True +09009351300,5420.0,False,True +09009351400,4229.0,True,True +09009351500,4951.0,True,True +09009351601,3066.0,False,False +09009351602,7595.0,False,False +09009351700,3100.0,True,True +09009351800,3809.0,False,False +09009351900,2235.0,False,False +09009352000,4579.0,False,False +09009352100,4259.0,True,True +09009352200,2711.0,True,True +09009352300,2621.0,True,True +09009352400,3777.0,True,True +09009352500,3332.0,False,False +09009352600,5067.0,True,True +09009352701,3007.0,False,False +09009352702,5206.0,False,False +09009352800,6241.0,True,True +09009361100,6647.0,False,False +09009361200,5643.0,False,False +09009361300,4325.0,False,False +09009361401,3787.0,False,False +09009361402,2749.0,False,False +09009361500,7633.0,False,False +09009990000,0.0,False,False +09011650100,2499.0,False,False +09011660101,3232.0,False,False +09011660102,4164.0,False,False +09011690300,6304.0,True,True +09011690400,2029.0,True,True +09011690500,2576.0,True,True +09011690700,1230.0,True,True +09011690800,3348.0,True,True +09011690900,5030.0,False,False +09011693300,5430.0,False,False +09011693400,4036.0,False,False +09011693500,3446.0,False,False +09011693600,2909.0,False,False +09011693700,3114.0,False,False +09011695201,5371.0,False,False +09011695202,5435.0,False,False +09011696100,4705.0,True,False +09011696200,4674.0,False,False +09011696300,3154.0,False,False +09011696400,5227.0,True,True +09011696500,2921.0,False,False +09011696600,4072.0,False,False +09011696700,5955.0,True,False +09011696800,3218.0,True,True +09011697000,5334.0,True,True +09011700100,4657.0,False,False +09011701100,7888.0,False,False +09011701200,6873.0,False,False +09011702100,4103.0,False,False +09011702300,2341.0,False,False +09011702400,3571.0,False,False +09011702500,4387.0,True,True +09011702600,1072.0,False,False +09011702700,4960.0,False,False +09011702800,4285.0,False,False +09011702900,2201.0,False,False +09011703000,3589.0,False,False +09011705101,4080.0,False,False +09011705102,4178.0,False,False +09011705200,3655.0,False,False +09011705300,3757.0,False,False +09011705400,2775.0,False,False +09011707100,5223.0,False,False +09011708100,2535.0,False,False +09011709100,5786.0,False,False +09011709200,5836.0,False,False +09011710100,4247.0,False,False +09011711100,2906.0,False,False +09011712100,1778.0,False,False +09011713100,2589.0,False,False +09011714101,3162.0,False,False +09011714103,7362.0,False,False +09011714104,5336.0,False,False +09011715100,4112.0,False,False +09011716101,5620.0,False,False +09011716102,5591.0,False,False +09011870100,7215.0,False,False +09011870200,5679.0,True,True +09011870300,6449.0,False,True +09011870501,4395.0,False,False +09011870502,3634.0,False,False +09011870701,2079.0,False,False +09011870703,1667.0,False,False +09011870704,3767.0,False,False +09011980000,2637.0,False,False +09011990100,0.0,False,False +09013526101,4494.0,False,False +09013526102,5018.0,False,False +09013528100,3203.0,False,False +09013529100,4911.0,False,False +09013530100,2224.0,False,False +09013530200,6856.0,True,True +09013530301,5044.0,False,False +09013530302,6053.0,False,False +09013530400,3581.0,False,False +09013530500,2913.0,False,False +09013530600,2561.0,False,False +09013533101,9191.0,False,False +09013533102,5522.0,False,False +09013535100,9646.0,False,False +09013535200,6524.0,False,False +09013538100,1706.0,False,False +09013538201,5103.0,False,False +09013538202,4196.0,False,False +09013840100,5893.0,False,False +09013850100,5824.0,False,False +09013850200,6609.0,False,False +09013860100,5417.0,False,False +09013881100,4440.0,False,False +09013881200,10951.0,False,False +09013881300,4422.0,False,False +09013881500,5986.0,False,False +09013890100,3904.0,False,False +09013890201,3656.0,False,False +09013890202,5215.0,False,False +09015800300,7057.0,False,True +09015800400,3441.0,False,False +09015800500,6697.0,True,True +09015800600,3824.0,True,True +09015800700,3636.0,False,False +09015815000,2489.0,False,False +09015820000,1830.0,False,False +09015825000,1569.0,False,False +09015830100,4236.0,False,False +09015900100,4561.0,False,False +09015900200,4790.0,False,False +09015901100,7836.0,False,False +09015902200,1653.0,False,False +09015902500,4186.0,False,False +09015903100,6865.0,False,False +09015903200,2496.0,False,False +09015904100,7138.0,False,False +09015904400,4280.0,False,False +09015904500,5813.0,False,False +09015905100,8238.0,False,False +09015906100,5069.0,False,False +09015907100,4618.0,False,False +09015907200,5553.0,False,False +09015907300,4934.0,False,False +09015908100,3757.0,False,False +10001040100,7078.0,False,False +10001040201,4736.0,False,False +10001040202,16940.0,False,False +10001040203,5443.0,False,False +10001040501,4501.0,False,False +10001040502,2402.0,True,True +10001040700,4908.0,True,True +10001040900,2646.0,False,True +10001041000,6559.0,True,True +10001041100,3920.0,False,False +10001041200,4649.0,False,False +10001041300,2221.0,True,True +10001041400,3639.0,True,True +10001041500,4525.0,True,True +10001041600,2117.0,True,True +10001041701,6142.0,False,False +10001041702,4612.0,False,False +10001041801,10008.0,False,False +10001041802,6020.0,False,False +10001041900,5336.0,False,False +10001042000,3193.0,False,False +10001042100,3881.0,False,False +10001042201,12282.0,False,False +10001042202,9175.0,False,False +10001042500,3963.0,True,True +10001042800,7104.0,False,False +10001042900,4898.0,False,False +10001043000,5262.0,True,False +10001043100,2628.0,False,False +10001043202,4548.0,False,False +10001043300,6357.0,False,False +10001043400,5006.0,False,False +10001990000,0.0,False,False +10003000200,5351.0,False,False +10003000300,3000.0,True,True +10003000400,2945.0,True,True +10003000500,3909.0,True,True +10003000601,3311.0,True,True +10003000602,2786.0,True,True +10003000900,2344.0,True,True +10003001100,3380.0,False,False +10003001200,1793.0,False,False +10003001300,3524.0,False,False +10003001400,2232.0,False,False +10003001500,2252.0,False,False +10003001600,2211.0,True,True +10003001902,2148.0,True,True +10003002100,1872.0,True,True +10003002200,2518.0,True,True +10003002300,2331.0,True,True +10003002400,4346.0,True,True +10003002500,3170.0,True,True +10003002600,3651.0,True,True +10003002700,2559.0,True,True +10003002800,1647.0,False,False +10003002900,3827.0,True,True +10003003002,3537.0,True,True +10003010101,4082.0,False,False +10003010104,3620.0,False,False +10003010200,2241.0,False,False +10003010300,3625.0,False,False +10003010400,4537.0,False,False +10003010502,6331.0,False,False +10003010702,6190.0,True,False +10003010800,4614.0,False,False +10003010900,2536.0,False,False +10003011000,3206.0,False,False +10003011100,2854.0,False,False +10003011201,2947.0,False,False +10003011202,4128.0,False,False +10003011203,4637.0,False,False +10003011204,3500.0,False,False +10003011205,1865.0,False,False +10003011206,4294.0,False,False +10003011300,2199.0,False,False +10003011400,3348.0,False,False +10003011500,2924.0,False,False +10003011600,3432.0,False,False +10003011700,4148.0,False,False +10003011800,4167.0,False,False +10003011900,3292.0,False,False +10003012000,4460.0,False,False +10003012100,3064.0,False,False +10003012200,4538.0,False,False +10003012300,2784.0,True,True +10003012400,4310.0,False,False +10003012500,4963.0,False,False +10003012600,2977.0,False,False +10003012700,4008.0,False,False +10003012900,4787.0,True,True +10003013000,1881.0,False,False +10003013100,2311.0,False,False +10003013200,3116.0,False,False +10003013300,1860.0,False,False +10003013400,2245.0,False,False +10003013501,6952.0,False,False +10003013503,7151.0,False,False +10003013505,3130.0,False,False +10003013506,4373.0,False,False +10003013604,4372.0,False,False +10003013607,5806.0,False,False +10003013608,2083.0,False,False +10003013610,5700.0,False,False +10003013611,5750.0,False,False +10003013612,5865.0,False,False +10003013613,5384.0,False,False +10003013614,2971.0,True,True +10003013615,3593.0,True,False +10003013700,4079.0,False,False +10003013800,5783.0,False,False +10003013901,3364.0,False,False +10003013903,5122.0,False,False +10003013904,8306.0,False,False +10003014000,5004.0,False,False +10003014100,4107.0,True,True +10003014200,1825.0,False,False +10003014300,7165.0,False,False +10003014402,3243.0,False,False +10003014403,5377.0,False,False +10003014404,4370.0,False,False +10003014501,2414.0,False,False +10003014502,6555.0,False,False +10003014702,1766.0,False,False +10003014703,4775.0,False,False +10003014705,5524.0,False,False +10003014706,2856.0,False,False +10003014803,4113.0,False,False +10003014805,10479.0,False,False +10003014807,9106.0,False,False +10003014808,6387.0,False,False +10003014809,7700.0,False,False +10003014810,7435.0,False,False +10003014903,8211.0,False,False +10003014904,4803.0,False,False +10003014906,5097.0,False,False +10003014907,4915.0,False,False +10003014908,1947.0,True,True +10003014909,5878.0,False,False +10003015000,5848.0,False,False +10003015100,3474.0,False,False +10003015200,5779.0,False,False +10003015400,2974.0,False,False +10003015502,2880.0,True,True +10003015600,2638.0,False,False +10003015802,2268.0,True,True +10003015900,3615.0,False,False +10003016000,2617.0,True,True +10003016100,2176.0,False,False +10003016200,2657.0,False,False +10003016301,5557.0,False,False +10003016302,7349.0,False,False +10003016305,7896.0,False,False +10003016401,6271.0,False,False +10003016404,2977.0,False,False +10003016601,12837.0,False,False +10003016602,10739.0,False,False +10003016604,12083.0,False,False +10003016608,5577.0,False,False +10003016801,6654.0,False,False +10003016804,7581.0,False,False +10003016901,2264.0,False,False +10003016904,3953.0,False,False +10003980100,0.0,False,False +10003990100,0.0,False,False +10005050101,4006.0,False,False +10005050103,4648.0,False,False +10005050104,4901.0,False,False +10005050105,5582.0,False,False +10005050200,4065.0,True,True +10005050301,8632.0,False,False +10005050302,5162.0,False,False +10005050401,3454.0,False,False +10005050403,3774.0,False,False +10005050405,4373.0,False,False +10005050406,5038.0,True,False +10005050407,5219.0,False,False +10005050408,4456.0,False,False +10005050501,4400.0,False,False +10005050503,5198.0,True,True +10005050504,6727.0,False,False +10005050601,5127.0,False,False +10005050602,6516.0,True,True +10005050701,4550.0,False,False +10005050703,1963.0,True,True +10005050704,5408.0,False,False +10005050705,4815.0,False,False +10005050706,1680.0,False,False +10005050801,3796.0,False,False +10005050802,6388.0,False,False +10005050803,8963.0,False,False +10005050901,2591.0,False,False +10005050902,5028.0,False,False +10005051003,5896.0,False,False +10005051004,5544.0,False,False +10005051005,5385.0,False,False +10005051006,3543.0,False,False +10005051007,4939.0,False,False +10005051101,876.0,False,False +10005051102,985.0,False,False +10005051103,1262.0,False,False +10005051201,1510.0,False,False +10005051202,838.0,False,False +10005051203,624.0,False,False +10005051204,589.0,False,False +10005051205,716.0,False,False +10005051301,7162.0,False,False +10005051302,4030.0,False,False +10005051303,5400.0,False,False +10005051305,3490.0,False,False +10005051306,2831.0,False,False +10005051400,3586.0,False,False +10005051500,5487.0,False,False +10005051701,4043.0,False,False +10005051702,5570.0,False,False +10005051801,4971.0,True,False +10005051802,4399.0,True,False +10005051900,4248.0,False,False +10005990000,0.0,False,False +11001000100,4888.0,False,False +11001000201,3922.0,False,False +11001000202,4709.0,False,False +11001000300,6585.0,False,False +11001000400,1413.0,False,False +11001000501,3434.0,False,False +11001000502,3396.0,False,False +11001000600,4966.0,False,False +11001000701,5786.0,False,False +11001000702,2972.0,False,False +11001000801,6195.0,False,False +11001000802,3470.0,False,False +11001000901,7270.0,False,False +11001000902,2416.0,False,False +11001001001,7213.0,False,False +11001001002,3428.0,False,False +11001001100,4823.0,False,False +11001001200,5362.0,False,False +11001001301,4334.0,False,False +11001001302,7166.0,False,False +11001001401,3659.0,False,False +11001001402,3370.0,False,False +11001001500,6094.0,False,False +11001001600,4959.0,False,False +11001001702,3482.0,False,False +11001001803,4231.0,True,True +11001001804,5894.0,True,True +11001001901,4183.0,False,False +11001001902,2544.0,False,False +11001002001,3490.0,True,True +11001002002,4781.0,False,False +11001002101,5531.0,False,False +11001002102,5660.0,False,False +11001002201,3264.0,False,False +11001002202,3332.0,False,False +11001002301,3608.0,False,False +11001002302,1612.0,False,False +11001002400,4104.0,False,False +11001002501,3260.0,False,True +11001002502,6734.0,False,False +11001002600,2652.0,False,False +11001002701,5802.0,False,False +11001002702,6049.0,False,False +11001002801,4048.0,False,True +11001002802,5056.0,False,True +11001002900,4416.0,False,True +11001003000,3732.0,False,False +11001003100,3605.0,False,False +11001003200,5301.0,False,False +11001003301,4138.0,False,False +11001003302,2306.0,False,False +11001003400,5007.0,False,False +11001003500,5053.0,False,False +11001003600,4765.0,False,False +11001003700,5005.0,False,False +11001003800,5174.0,False,False +11001003900,4588.0,False,False +11001004001,4628.0,False,False +11001004002,3302.0,False,False +11001004100,2604.0,False,False +11001004201,3767.0,False,False +11001004202,2376.0,False,False +11001004300,4088.0,False,False +11001004400,5793.0,False,False +11001004600,3075.0,False,False +11001004701,4886.0,False,True +11001004702,3600.0,False,False +11001004801,2999.0,False,False +11001004802,3587.0,False,False +11001004901,3420.0,False,False +11001004902,3457.0,False,False +11001005001,2060.0,False,False +11001005002,5798.0,False,False +11001005201,5855.0,False,False +11001005301,5118.0,False,False +11001005500,6609.0,False,False +11001005600,6773.0,False,False +11001005800,3656.0,False,False +11001005900,2511.0,False,False +11001006202,58.0,False,False +11001006400,2834.0,True,True +11001006500,3010.0,False,False +11001006600,1996.0,False,False +11001006700,4424.0,False,False +11001006801,2454.0,False,False +11001006802,2578.0,False,False +11001006804,2800.0,True,True +11001006900,2699.0,False,False +11001007000,2444.0,False,False +11001007100,3369.0,True,True +11001007200,6827.0,False,False +11001007301,4803.0,False,False +11001007304,4245.0,True,True +11001007401,1721.0,True,True +11001007403,2805.0,True,True +11001007404,4061.0,False,False +11001007406,3809.0,True,True +11001007407,3234.0,True,True +11001007408,3193.0,True,True +11001007409,4405.0,True,True +11001007502,5933.0,True,True +11001007503,2619.0,True,True +11001007504,2999.0,True,True +11001007601,5162.0,True,True +11001007603,4214.0,True,True +11001007604,4189.0,False,True +11001007605,4256.0,True,True +11001007703,7050.0,True,True +11001007707,4748.0,True,True +11001007708,3055.0,True,True +11001007709,2410.0,True,True +11001007803,4354.0,True,True +11001007804,4220.0,True,True +11001007806,2480.0,False,True +11001007807,2298.0,True,True +11001007808,4159.0,True,True +11001007809,3111.0,False,True +11001007901,4692.0,True,True +11001007903,2002.0,False,False +11001008001,3144.0,False,False +11001008002,3397.0,False,False +11001008100,3374.0,False,False +11001008200,3172.0,False,False +11001008301,2601.0,False,False +11001008302,2946.0,False,False +11001008402,2333.0,False,False +11001008410,1632.0,False,False +11001008701,2539.0,False,False +11001008702,3337.0,False,False +11001008802,4419.0,False,False +11001008803,3312.0,False,True +11001008804,2648.0,True,True +11001008903,3300.0,True,True +11001008904,4237.0,True,True +11001009000,3798.0,False,True +11001009102,4821.0,True,True +11001009201,3213.0,False,False +11001009203,3031.0,False,False +11001009204,2895.0,False,True +11001009301,3512.0,False,False +11001009302,1565.0,False,False +11001009400,5135.0,False,False +11001009501,7368.0,False,True +11001009503,3182.0,False,False +11001009504,3424.0,False,False +11001009505,3721.0,False,False +11001009507,1991.0,False,True +11001009508,3754.0,False,False +11001009509,3412.0,False,False +11001009601,2352.0,True,True +11001009602,3793.0,True,True +11001009603,3969.0,True,True +11001009604,2377.0,False,False +11001009700,3271.0,True,True +11001009801,2196.0,True,True +11001009802,2071.0,True,True +11001009803,3070.0,True,True +11001009804,2787.0,True,True +11001009807,3388.0,True,True +11001009810,2828.0,True,True +11001009811,4633.0,True,True +11001009901,2777.0,False,False +11001009902,3202.0,False,False +11001009903,2244.0,False,True +11001009904,3121.0,True,True +11001009905,2793.0,True,True +11001009906,1550.0,True,True +11001009907,2675.0,True,True +11001010100,2728.0,False,False +11001010200,3654.0,False,False +11001010300,4162.0,False,False +11001010400,5258.0,True,True +11001010500,3921.0,False,False +11001010600,8925.0,False,False +11001010700,1768.0,False,False +11001010800,6460.0,False,False +11001010900,3779.0,True,True +11001011000,4099.0,False,False +11001011100,5700.0,False,False +12001000200,7557.0,False,False +12001000301,4426.0,False,False +12001000302,2319.0,True,True +12001000400,6256.0,True,True +12001000500,4973.0,False,False +12001000600,4963.0,True,True +12001000700,6505.0,True,True +12001000806,2526.0,False,False +12001000808,3430.0,False,False +12001000809,1287.0,False,False +12001000901,4403.0,False,False +12001000902,6684.0,False,True +12001001000,5703.0,False,False +12001001100,6977.0,False,False +12001001201,3471.0,False,False +12001001202,7857.0,False,False +12001001203,3506.0,False,False +12001001400,4652.0,True,True +12001001514,1689.0,False,False +12001001515,4919.0,False,True +12001001516,2422.0,False,False +12001001517,4547.0,False,False +12001001519,2622.0,False,False +12001001520,2494.0,False,False +12001001521,4221.0,False,True +12001001603,1716.0,False,False +12001001604,7469.0,False,False +12001001701,5161.0,False,False +12001001702,5804.0,False,False +12001001801,7612.0,False,False +12001001802,2668.0,True,True +12001001803,6254.0,False,False +12001001805,1562.0,False,False +12001001806,9267.0,False,False +12001001811,6975.0,False,False +12001001813,3826.0,False,False +12001001814,2650.0,False,False +12001001902,3259.0,True,True +12001001907,2779.0,False,False +12001001908,4922.0,True,True +12001002000,6210.0,True,True +12001002101,2152.0,False,False +12001002102,792.0,True,True +12001002201,5717.0,False,False +12001002202,6508.0,False,False +12001002204,11379.0,False,False +12001002205,12036.0,False,False +12001002207,3702.0,False,False +12001002208,2804.0,False,False +12001002209,9069.0,False,False +12001002210,4646.0,False,False +12001002217,5660.0,True,True +12001002218,1733.0,True,True +12001002219,6438.0,True,False +12001002220,2292.0,False,False +12001110800,1972.0,False,False +12003040101,6852.0,False,False +12003040102,7141.0,False,False +12003040201,8181.0,True,True +12003040202,6037.0,False,False +12005000201,4989.0,False,False +12005000202,6168.0,False,False +12005000300,7650.0,True,True +12005000400,8790.0,False,False +12005000500,6630.0,False,False +12005000600,1386.0,False,False +12005000700,2779.0,False,False +12005000803,6223.0,True,True +12005000804,1989.0,False,False +12005000805,4376.0,False,False +12005000806,3519.0,False,False +12005000900,4453.0,True,True +12005001000,2129.0,True,True +12005001100,5138.0,True,True +12005001200,3350.0,True,True +12005001301,5419.0,False,False +12005001302,6833.0,True,True +12005001402,7443.0,False,False +12005001403,2086.0,False,False +12005001404,8353.0,False,False +12005001501,5690.0,False,False +12005001502,6073.0,False,False +12005001600,3169.0,True,True +12005001700,2595.0,True,True +12005001800,1687.0,True,True +12005001900,4553.0,False,False +12005002000,1408.0,True,True +12005002200,4795.0,True,True +12005002300,3943.0,True,True +12005002400,3941.0,True,True +12005002500,3254.0,False,False +12005002601,2476.0,False,False +12005002603,3136.0,False,False +12005002604,8752.0,False,False +12005002605,1412.0,True,True +12005002606,1757.0,False,False +12005002607,1442.0,True,True +12005002608,3186.0,False,False +12005002701,5436.0,False,False +12005002702,2533.0,False,False +12005002703,2551.0,False,False +12005002704,6300.0,False,False +12005002705,2369.0,False,False +12005990000,0.0,False,False +12007000100,5739.0,True,True +12007000200,8677.0,True,True +12007000300,7113.0,False,False +12007000400,5788.0,True,True +12009060101,4281.0,False,False +12009060102,3305.0,False,False +12009060200,5766.0,False,False +12009060300,5065.0,False,False +12009060400,4136.0,True,True +12009060500,4730.0,False,False +12009060600,4762.0,True,True +12009060700,2464.0,True,True +12009061001,4744.0,False,False +12009061002,3779.0,False,False +12009061100,6369.0,False,False +12009061201,7656.0,True,True +12009061202,3396.0,False,False +12009062103,8300.0,False,False +12009062104,7397.0,False,False +12009062106,2843.0,True,True +12009062107,3243.0,True,True +12009062108,6387.0,False,False +12009062109,4668.0,False,False +12009062301,3890.0,True,True +12009062302,3335.0,True,True +12009062400,8142.0,True,True +12009062500,4124.0,True,True +12009062600,3179.0,True,True +12009062800,4198.0,False,False +12009062900,5695.0,False,False +12009063000,4311.0,False,False +12009063102,8181.0,False,False +12009063104,4143.0,False,False +12009063105,9067.0,False,False +12009063106,4515.0,False,False +12009063107,12187.0,False,False +12009064102,5608.0,False,False +12009064123,6265.0,False,False +12009064124,4563.0,False,False +12009064125,6491.0,False,False +12009064126,4122.0,False,False +12009064127,7959.0,False,False +12009064128,12294.0,False,False +12009064201,2294.0,True,True +12009064202,3088.0,True,False +12009064301,5659.0,False,False +12009064302,6308.0,True,True +12009064400,5108.0,False,True +12009064500,4268.0,True,True +12009064601,7297.0,False,False +12009064602,2415.0,True,True +12009064700,4002.0,True,True +12009064800,3142.0,True,True +12009064901,6756.0,False,False +12009064902,3938.0,True,True +12009065001,3382.0,False,False +12009065021,12032.0,False,False +12009065022,5758.0,False,False +12009065121,6589.0,True,True +12009065122,7355.0,True,True +12009065123,3953.0,True,True +12009065124,2257.0,True,True +12009065125,5881.0,False,False +12009065201,5943.0,False,False +12009065202,5263.0,False,False +12009065231,5951.0,False,False +12009065234,4206.0,True,True +12009065235,4886.0,True,True +12009065236,1353.0,False,False +12009066101,4537.0,False,False +12009066103,2422.0,False,False +12009066104,5015.0,False,False +12009066200,2787.0,False,False +12009066301,7302.0,False,False +12009066302,4942.0,False,False +12009066400,4851.0,False,False +12009066500,3881.0,False,False +12009066600,4441.0,False,False +12009066700,5000.0,False,False +12009066800,1543.0,False,False +12009066900,7361.0,False,False +12009067100,1533.0,True,False +12009068101,2235.0,False,False +12009068102,3238.0,False,False +12009068200,2908.0,False,False +12009068300,2790.0,False,False +12009068400,2001.0,False,False +12009068501,2140.0,False,False +12009068502,2492.0,False,False +12009068601,1978.0,False,False +12009068602,4272.0,False,False +12009069100,4651.0,False,False +12009069200,2614.0,False,False +12009069300,3322.0,False,False +12009069400,6575.0,False,False +12009069700,2399.0,True,True +12009069801,3918.0,False,False +12009069802,4816.0,False,False +12009069901,8373.0,False,False +12009069902,4111.0,True,True +12009071100,4149.0,False,False +12009071200,16751.0,False,False +12009071301,7268.0,False,False +12009071322,9678.0,True,False +12009071332,14535.0,True,True +12009071334,8772.0,True,False +12009071335,4387.0,False,False +12009071336,6934.0,True,True +12009071337,8765.0,False,False +12009071338,9153.0,False,False +12009071339,6603.0,False,False +12009071340,13662.0,False,False +12009071400,3369.0,True,True +12009071500,2263.0,False,False +12009071600,4126.0,False,False +12009980000,0.0,False,False +12009980100,0.0,False,False +12009990000,0.0,False,False +12011010102,2898.0,False,False +12011010103,3144.0,False,False +12011010104,2156.0,False,False +12011010200,6462.0,True,True +12011010304,4584.0,False,True +12011010305,4319.0,False,True +12011010306,2708.0,True,True +12011010307,4028.0,True,True +12011010308,5088.0,False,False +12011010401,4973.0,False,False +12011010402,3390.0,True,True +12011010403,4643.0,True,True +12011010405,6681.0,True,True +12011010406,4250.0,False,False +12011010407,5564.0,False,False +12011010502,4067.0,False,False +12011010503,18939.0,False,False +12011010504,6568.0,False,False +12011010601,8321.0,False,False +12011010603,5450.0,False,False +12011010604,4449.0,False,False +12011010605,7441.0,False,False +12011010606,8127.0,False,False +12011010607,10714.0,False,False +12011010609,4782.0,False,False +12011010610,7688.0,True,True +12011010611,3980.0,False,False +12011010612,6716.0,False,False +12011010701,6094.0,True,True +12011010702,10592.0,True,True +12011010800,8953.0,False,False +12011010901,2543.0,False,False +12011010902,3095.0,False,False +12011011000,1752.0,False,False +12011020101,8133.0,False,False +12011020103,5810.0,True,True +12011020104,3013.0,False,False +12011020204,6230.0,False,False +12011020205,6873.0,False,False +12011020206,4500.0,True,True +12011020207,6025.0,False,True +12011020209,2512.0,False,False +12011020210,6525.0,False,False +12011020211,2458.0,False,False +12011020212,3300.0,True,True +12011020302,8097.0,True,False +12011020308,6617.0,True,True +12011020309,6075.0,False,False +12011020311,3068.0,True,False +12011020312,5530.0,False,False +12011020313,6809.0,True,False +12011020314,5289.0,False,True +12011020315,5276.0,False,False +12011020316,4082.0,False,False +12011020317,3524.0,False,False +12011020318,9590.0,False,False +12011020319,6146.0,False,False +12011020320,5704.0,False,False +12011020321,1967.0,False,False +12011020322,3113.0,False,False +12011020323,4046.0,False,False +12011020324,6392.0,False,False +12011020325,3119.0,False,False +12011020326,7042.0,True,False +12011020404,8574.0,False,True +12011020405,5119.0,True,True +12011020406,7218.0,False,False +12011020407,7971.0,True,True +12011020409,7607.0,False,False +12011020411,6588.0,False,False +12011020412,3119.0,True,True +12011020413,7569.0,True,True +12011020414,5042.0,False,False +12011020415,4124.0,False,False +12011020501,5810.0,False,True +12011020502,7425.0,True,True +12011030100,4295.0,False,False +12011030201,4217.0,True,True +12011030202,1588.0,True,True +12011030203,4623.0,True,True +12011030301,3492.0,True,True +12011030302,7685.0,True,True +12011030401,3667.0,True,True +12011030402,3823.0,True,True +12011030500,6763.0,True,True +12011030600,8489.0,True,True +12011030702,3299.0,False,False +12011030703,4202.0,True,True +12011030704,5108.0,False,False +12011030705,4143.0,False,False +12011030801,8979.0,True,True +12011030802,6415.0,False,False +12011030902,3230.0,False,False +12011030903,4347.0,True,True +12011030904,4408.0,False,False +12011031001,2369.0,True,True +12011031002,4288.0,False,False +12011031101,2128.0,False,False +12011031102,3013.0,False,False +12011031202,6586.0,False,False +12011031203,1028.0,False,False +12011031204,2956.0,False,False +12011031205,1707.0,False,False +12011040101,1595.0,False,False +12011040102,2783.0,False,False +12011040203,1563.0,False,False +12011040204,2615.0,False,False +12011040205,5320.0,False,False +12011040206,2626.0,False,False +12011040300,4601.0,False,False +12011040401,2411.0,False,False +12011040402,2904.0,False,False +12011040502,3056.0,False,False +12011040503,1888.0,False,False +12011040504,3046.0,False,False +12011040601,3254.0,False,False +12011040602,2983.0,False,False +12011040701,2491.0,False,False +12011040702,4104.0,True,True +12011040801,5448.0,True,True +12011040802,4110.0,True,True +12011040901,5693.0,True,True +12011040902,4188.0,True,True +12011041000,2944.0,True,True +12011041100,5308.0,True,True +12011041200,4924.0,True,True +12011041300,9537.0,True,True +12011041400,3928.0,True,True +12011041500,4405.0,True,True +12011041600,6789.0,True,True +12011041700,4440.0,True,True +12011041801,1790.0,False,False +12011041802,3690.0,False,False +12011041900,2905.0,False,False +12011042000,2816.0,False,False +12011042100,1976.0,False,False +12011042200,2319.0,False,False +12011042301,3740.0,False,False +12011042302,1213.0,True,True +12011042400,1402.0,False,False +12011042500,7953.0,False,False +12011042600,5680.0,False,False +12011042700,5286.0,True,True +12011042800,7678.0,True,True +12011042900,10133.0,True,True +12011043001,1500.0,False,False +12011043002,8333.0,True,True +12011043100,4806.0,False,False +12011043301,4784.0,False,False +12011043302,2175.0,True,True +12011050100,4711.0,True,True +12011050204,5410.0,False,False +12011050205,2595.0,False,False +12011050206,4135.0,False,False +12011050207,7539.0,True,True +12011050208,4892.0,True,True +12011050301,9471.0,True,True +12011050306,4540.0,True,True +12011050307,7450.0,True,True +12011050308,3758.0,True,True +12011050309,2425.0,True,True +12011050310,4723.0,True,True +12011050311,3301.0,True,True +12011050312,2489.0,True,True +12011050401,4534.0,False,False +12011050402,4230.0,True,True +12011050501,3776.0,True,True +12011050502,4526.0,True,True +12011050601,3587.0,False,False +12011050602,3171.0,False,False +12011050701,4151.0,True,True +12011050702,6702.0,True,True +12011050800,5673.0,True,True +12011050900,5872.0,False,False +12011051001,3835.0,False,False +12011051002,2951.0,False,False +12011060105,6739.0,False,False +12011060107,3718.0,True,True +12011060109,2970.0,False,False +12011060111,5617.0,False,False +12011060112,7662.0,True,True +12011060113,6693.0,False,True +12011060114,6335.0,False,False +12011060115,7909.0,False,False +12011060116,7317.0,False,False +12011060117,6811.0,True,True +12011060118,4504.0,False,False +12011060119,6604.0,False,False +12011060120,7301.0,False,False +12011060121,5940.0,False,False +12011060122,5657.0,False,False +12011060123,3064.0,False,False +12011060124,5761.0,True,True +12011060125,2273.0,False,False +12011060126,5001.0,False,False +12011060127,3217.0,True,True +12011060128,6430.0,False,False +12011060203,7229.0,True,True +12011060206,5211.0,True,True +12011060207,4224.0,True,True +12011060208,6527.0,True,True +12011060209,3165.0,True,True +12011060210,3101.0,False,False +12011060211,3795.0,True,True +12011060212,3356.0,False,False +12011060213,4424.0,True,True +12011060302,6959.0,True,True +12011060303,6681.0,True,True +12011060304,3220.0,True,True +12011060305,2185.0,True,True +12011060306,1859.0,False,False +12011060401,4772.0,True,True +12011060402,6569.0,True,True +12011060403,5920.0,True,True +12011060501,7015.0,False,False +12011060503,4769.0,False,False +12011060504,4088.0,False,False +12011060505,4927.0,False,False +12011060603,5025.0,False,False +12011060605,3762.0,False,False +12011060606,5932.0,False,False +12011060607,3124.0,False,False +12011060608,7132.0,False,False +12011060609,3831.0,False,False +12011060700,3231.0,False,False +12011060801,1726.0,False,False +12011060802,7138.0,True,True +12011060900,3896.0,False,False +12011061001,6595.0,False,False +12011061002,10000.0,False,False +12011061100,8353.0,True,True +12011070101,10658.0,True,True +12011070102,1513.0,False,True +12011070204,5845.0,False,False +12011070205,6373.0,False,False +12011070207,6945.0,False,False +12011070208,7798.0,False,False +12011070209,5355.0,False,False +12011070210,3481.0,False,False +12011070211,6121.0,False,False +12011070304,7308.0,False,False +12011070305,7957.0,False,True +12011070306,8455.0,False,False +12011070310,3208.0,False,False +12011070311,6394.0,False,False +12011070312,7126.0,False,False +12011070313,11355.0,False,False +12011070314,5192.0,False,False +12011070315,5637.0,False,False +12011070316,5188.0,False,False +12011070317,15492.0,False,False +12011070318,7258.0,False,False +12011070319,4738.0,False,False +12011070320,7949.0,False,False +12011070321,3066.0,False,False +12011070322,7396.0,False,False +12011070401,7285.0,False,False +12011070402,3460.0,False,False +12011070403,5347.0,False,False +12011070404,3403.0,False,False +12011070405,5608.0,False,False +12011070501,6021.0,False,False +12011070502,12570.0,True,True +12011070601,5352.0,False,True +12011070602,5744.0,False,False +12011080101,5507.0,False,False +12011080102,4178.0,False,False +12011080103,1492.0,False,False +12011080200,910.0,False,False +12011080402,2615.0,True,True +12011080403,6841.0,True,True +12011080405,3473.0,True,True +12011080406,5820.0,False,False +12011080500,7228.0,True,True +12011090101,4685.0,False,False +12011090102,1727.0,False,False +12011090200,3921.0,False,False +12011090301,2987.0,True,True +12011090302,6281.0,True,True +12011090401,4674.0,False,False +12011090403,3381.0,True,True +12011090404,5292.0,True,True +12011090502,7188.0,False,False +12011090503,2563.0,False,False +12011090504,3060.0,False,False +12011090601,2999.0,False,True +12011090602,7604.0,False,True +12011090700,8606.0,False,False +12011090801,4235.0,False,False +12011090802,4467.0,False,False +12011090900,5520.0,False,False +12011091000,4304.0,False,False +12011091100,6997.0,True,True +12011091201,5828.0,True,True +12011091202,5588.0,False,True +12011091300,4115.0,False,False +12011091400,6667.0,True,True +12011091500,6293.0,True,True +12011091600,6059.0,True,True +12011091701,4485.0,False,False +12011091702,4794.0,False,True +12011091801,6648.0,True,True +12011091802,3641.0,False,False +12011091901,3955.0,True,True +12011091902,4844.0,True,True +12011092000,3729.0,False,False +12011100101,7180.0,False,False +12011100103,3066.0,False,True +12011100104,3005.0,False,False +12011100105,2578.0,False,False +12011100201,1886.0,True,True +12011100202,4965.0,True,True +12011100300,7424.0,True,True +12011100400,6627.0,True,True +12011100501,1014.0,True,True +12011100502,3651.0,True,True +12011100600,5510.0,False,False +12011100700,5796.0,True,True +12011100801,3899.0,True,True +12011100802,8643.0,True,True +12011110100,6975.0,False,False +12011110301,7047.0,False,False +12011110302,8714.0,False,False +12011110303,4299.0,False,False +12011110307,6014.0,False,False +12011110308,6927.0,False,False +12011110309,6967.0,False,False +12011110311,7237.0,False,False +12011110312,7720.0,False,False +12011110313,6404.0,False,True +12011110319,7091.0,False,False +12011110320,11706.0,False,False +12011110321,5522.0,False,False +12011110322,12192.0,False,False +12011110323,8597.0,False,False +12011110324,15938.0,False,False +12011110325,22583.0,False,False +12011110326,5222.0,False,False +12011110327,6088.0,False,False +12011110328,5227.0,False,False +12011110330,3505.0,False,False +12011110331,11362.0,False,False +12011110332,5739.0,False,False +12011110333,6929.0,False,False +12011110334,3100.0,True,True +12011110335,9555.0,True,True +12011110336,8710.0,False,False +12011110337,8182.0,False,False +12011110338,3772.0,False,False +12011110339,4491.0,False,False +12011110340,6889.0,False,False +12011110341,4148.0,False,False +12011110342,12992.0,False,False +12011110343,8630.0,False,False +12011110402,6028.0,False,False +12011110403,5628.0,False,False +12011110404,7307.0,True,True +12011110501,3627.0,False,False +12011110502,6707.0,False,False +12011110600,5509.0,False,False +12011980000,0.0,False,False +12011990000,0.0,False,False +12013010100,2232.0,False,False +12013010200,4320.0,True,True +12013010300,7810.0,False,False +12015010100,4700.0,False,False +12015010200,4715.0,True,True +12015010301,4043.0,False,False +12015010302,4137.0,True,True +12015010401,3154.0,False,False +12015010402,2508.0,False,False +12015010403,1968.0,False,False +12015010404,4747.0,False,False +12015010501,5522.0,False,False +12015010502,7557.0,False,False +12015020101,7580.0,False,False +12015020103,5619.0,False,False +12015020104,2570.0,False,False +12015020201,9120.0,False,False +12015020202,7707.0,False,False +12015020301,5767.0,True,True +12015020302,4460.0,False,True +12015020303,5120.0,True,True +12015020400,9812.0,False,False +12015020501,5063.0,False,False +12015020502,1366.0,False,False +12015020601,2786.0,False,False +12015020602,3493.0,True,True +12015020700,4661.0,True,True +12015020800,5094.0,True,True +12015020900,7267.0,True,True +12015021001,1759.0,False,False +12015021002,3474.0,False,False +12015021003,3550.0,True,True +12015030100,6769.0,True,True +12015030200,8088.0,False,False +12015030301,2638.0,False,False +12015030302,3656.0,False,True +12015030401,2050.0,False,False +12015030402,2101.0,True,True +12015030501,4728.0,False,False +12015030502,5611.0,True,True +12015030503,6107.0,False,False +12015990000,0.0,False,False +12017450101,6964.0,False,False +12017450102,4080.0,True,True +12017450201,4071.0,True,True +12017450202,5289.0,True,True +12017450302,8779.0,True,True +12017450303,6182.0,True,True +12017450304,10002.0,False,False +12017450400,6413.0,True,True +12017450500,4326.0,False,False +12017450601,4504.0,True,True +12017450602,4769.0,False,False +12017450701,7435.0,False,False +12017450702,8093.0,True,True +12017450800,4297.0,True,True +12017450901,3023.0,False,False +12017450902,2540.0,True,True +12017451000,6152.0,True,True +12017451101,2295.0,True,True +12017451102,6391.0,True,True +12017451200,3962.0,True,True +12017451300,3280.0,True,True +12017451400,5829.0,True,True +12017451501,3001.0,False,False +12017451502,6765.0,True,True +12017451601,6291.0,False,False +12017451602,6590.0,False,False +12017451700,3846.0,False,False +12017990000,0.0,False,False +12019030102,8665.0,True,True +12019030103,5544.0,True,True +12019030104,3860.0,True,True +12019030201,20669.0,False,False +12019030202,8849.0,False,False +12019030203,19039.0,False,False +12019030301,8960.0,False,False +12019030303,3329.0,False,False +12019030304,4563.0,False,False +12019030400,2442.0,True,True +12019030500,2500.0,False,False +12019030600,4471.0,False,False +12019030701,8051.0,False,False +12019030702,14262.0,False,False +12019030703,12516.0,False,False +12019030801,5723.0,False,False +12019030802,6320.0,False,False +12019030902,10342.0,False,False +12019030903,4273.0,False,False +12019030904,7252.0,False,False +12019031101,3395.0,False,False +12019031104,3904.0,True,True +12019031105,2001.0,True,True +12019031106,7775.0,True,True +12019031107,365.0,False,False +12019031108,1372.0,False,False +12019031200,15742.0,False,False +12019031300,7005.0,False,False +12019031400,5083.0,True,False +12019031500,3133.0,False,False +12021000101,1386.0,False,False +12021000102,1550.0,False,False +12021000200,2467.0,False,False +12021000301,3537.0,False,False +12021000302,1677.0,False,False +12021000401,2509.0,False,False +12021000402,1972.0,False,False +12021000500,1869.0,False,False +12021000600,1218.0,False,False +12021000700,1594.0,True,True +12021010102,6219.0,False,False +12021010105,4673.0,False,False +12021010106,3972.0,False,False +12021010107,4213.0,False,False +12021010108,3171.0,False,False +12021010109,2109.0,False,False +12021010110,4068.0,False,False +12021010205,2411.0,False,False +12021010208,3033.0,False,False +12021010209,2253.0,False,False +12021010210,3683.0,False,False +12021010211,1963.0,False,False +12021010212,6077.0,False,False +12021010213,4042.0,False,False +12021010215,3040.0,False,False +12021010300,4242.0,False,False +12021010401,4384.0,False,False +12021010405,12272.0,False,False +12021010408,3179.0,False,False +12021010410,10071.0,True,True +12021010411,7819.0,True,True +12021010412,12429.0,False,False +12021010413,8522.0,False,False +12021010414,8507.0,False,False +12021010415,16335.0,False,False +12021010416,6442.0,False,False +12021010417,5989.0,False,False +12021010418,6292.0,False,False +12021010419,3852.0,True,True +12021010420,7810.0,True,True +12021010505,7851.0,False,False +12021010506,5756.0,False,False +12021010507,4061.0,False,False +12021010508,3980.0,True,True +12021010509,5754.0,False,False +12021010510,3137.0,False,False +12021010601,2723.0,True,True +12021010602,3370.0,True,True +12021010604,2949.0,True,True +12021010605,3206.0,False,False +12021010606,2564.0,False,False +12021010701,4557.0,True,True +12021010702,3547.0,False,False +12021010801,3675.0,False,False +12021010802,12802.0,True,True +12021010803,5423.0,False,False +12021010902,3811.0,False,False +12021010903,5427.0,False,False +12021010904,1915.0,False,False +12021010905,3320.0,False,False +12021011001,1548.0,False,False +12021011002,2150.0,False,False +12021011102,10671.0,True,True +12021011103,2590.0,False,True +12021011105,2967.0,False,False +12021011106,3327.0,False,False +12021011201,11741.0,False,False +12021011202,26870.0,False,False +12021011204,4745.0,True,True +12021011205,3305.0,True,True +12021011301,6670.0,True,True +12021011302,7068.0,True,True +12021011400,5122.0,True,True +12021990000,0.0,False,False +12023110201,4132.0,False,False +12023110202,5641.0,True,True +12023110300,9262.0,True,True +12023110400,2603.0,True,True +12023110500,7764.0,True,False +12023110601,8329.0,False,False +12023110602,5030.0,False,False +12023110700,5071.0,False,False +12023110800,6211.0,False,False +12023110901,5692.0,True,True +12023110903,3966.0,True,True +12023110904,6267.0,False,False +12027010101,4271.0,True,True +12027010102,4730.0,True,True +12027010200,5761.0,True,True +12027010301,7423.0,True,True +12027010302,2735.0,True,True +12027010403,3855.0,False,False +12027010404,3213.0,True,True +12027010405,1275.0,False,False +12027010406,3640.0,True,True +12029970101,5537.0,True,True +12029970102,6746.0,True,True +12029970200,4306.0,True,True +12029990000,0.0,False,False +12031000100,5443.0,True,True +12031000200,2310.0,True,True +12031000300,2227.0,True,True +12031000600,5375.0,True,True +12031000700,4451.0,False,False +12031000800,2786.0,False,False +12031001000,4207.0,True,True +12031001100,1889.0,False,True +12031001200,1783.0,True,True +12031001300,3846.0,True,True +12031001400,5044.0,True,True +12031001500,4321.0,True,True +12031001600,1497.0,True,True +12031002101,3166.0,False,False +12031002102,2575.0,False,False +12031002200,4277.0,False,False +12031002300,1632.0,False,False +12031002400,1903.0,False,False +12031002501,3871.0,True,True +12031002502,3772.0,True,True +12031002600,3485.0,True,True +12031002701,3233.0,True,True +12031002702,4198.0,True,True +12031002801,4461.0,True,True +12031002802,4652.0,True,True +12031002901,3672.0,True,True +12031002902,3408.0,True,True +12031010101,8745.0,False,False +12031010102,10169.0,False,False +12031010103,6045.0,False,False +12031010201,10301.0,False,False +12031010202,3368.0,False,False +12031010301,5877.0,False,False +12031010303,7973.0,False,False +12031010304,7523.0,True,True +12031010401,3399.0,False,True +12031010402,4138.0,True,True +12031010500,16844.0,True,True +12031010600,5841.0,False,False +12031010700,5244.0,True,True +12031010800,4862.0,True,True +12031010900,3351.0,False,True +12031011000,4155.0,True,True +12031011100,3092.0,True,True +12031011200,3176.0,True,True +12031011300,2964.0,True,True +12031011400,2243.0,True,True +12031011500,4118.0,True,True +12031011600,3668.0,True,True +12031011700,2752.0,True,True +12031011800,2938.0,True,True +12031011901,7643.0,True,True +12031011902,10899.0,False,False +12031011903,5468.0,False,False +12031012000,4961.0,True,True +12031012100,1844.0,True,True +12031012200,8121.0,True,True +12031012300,3990.0,True,True +12031012400,2788.0,False,False +12031012500,4143.0,True,True +12031012601,3144.0,True,True +12031012602,6132.0,True,True +12031012702,6139.0,False,False +12031012703,5520.0,False,False +12031012704,5559.0,True,True +12031012800,7228.0,True,False +12031012900,2840.0,True,True +12031013000,2352.0,False,False +12031013100,2157.0,False,False +12031013200,2801.0,True,True +12031013300,7378.0,True,True +12031013402,5137.0,True,True +12031013403,3329.0,True,False +12031013404,3064.0,False,False +12031013502,3504.0,True,True +12031013503,8639.0,False,False +12031013504,5585.0,False,False +12031013521,12739.0,False,False +12031013522,3413.0,False,False +12031013721,12018.0,False,False +12031013723,8459.0,False,False +12031013726,8791.0,False,False +12031013727,7836.0,False,False +12031013800,4183.0,True,True +12031013901,5971.0,False,False +12031013902,5602.0,True,True +12031013904,4512.0,True,True +12031013905,4057.0,False,False +12031013906,4461.0,False,False +12031014001,4624.0,False,False +12031014002,2477.0,False,False +12031014101,4650.0,False,False +12031014102,4340.0,False,False +12031014202,4569.0,False,False +12031014203,4989.0,False,False +12031014204,4851.0,False,False +12031014311,5399.0,True,True +12031014312,6167.0,False,False +12031014326,8590.0,False,False +12031014328,7192.0,False,False +12031014329,3273.0,False,False +12031014330,4948.0,False,False +12031014331,4982.0,False,False +12031014332,8711.0,False,False +12031014333,3554.0,False,False +12031014334,5031.0,False,False +12031014335,8266.0,False,False +12031014336,6859.0,False,False +12031014337,10221.0,False,False +12031014338,4308.0,False,False +12031014401,13643.0,False,False +12031014404,9686.0,False,False +12031014406,7986.0,False,False +12031014408,4747.0,False,False +12031014409,11573.0,False,False +12031014410,8028.0,False,False +12031014411,8057.0,False,False +12031014412,20123.0,False,False +12031014413,5535.0,False,False +12031014500,4037.0,False,False +12031014601,5501.0,False,False +12031014603,5278.0,False,False +12031014604,5441.0,False,False +12031014701,8824.0,False,False +12031014702,2558.0,False,False +12031014800,5414.0,False,False +12031014901,6332.0,False,False +12031014902,7541.0,False,False +12031015001,5346.0,True,False +12031015002,4731.0,True,False +12031015100,4343.0,True,False +12031015200,3280.0,True,True +12031015300,3444.0,True,True +12031015400,2371.0,True,True +12031015501,3478.0,True,False +12031015502,4867.0,True,True +12031015600,3924.0,False,False +12031015700,5075.0,True,True +12031015801,6941.0,False,False +12031015802,7967.0,True,False +12031015922,3423.0,False,False +12031015923,9353.0,False,False +12031015924,4762.0,False,False +12031015925,5396.0,True,True +12031015926,7155.0,False,False +12031016000,7600.0,True,True +12031016100,8715.0,True,True +12031016200,2331.0,True,True +12031016300,2073.0,True,True +12031016400,5850.0,False,False +12031016500,5124.0,False,False +12031016601,6319.0,True,True +12031016603,3544.0,False,False +12031016604,4280.0,False,False +12031016711,4321.0,False,False +12031016722,8295.0,False,False +12031016724,4926.0,False,False +12031016725,4362.0,False,False +12031016726,4296.0,True,True +12031016727,3245.0,True,True +12031016728,4893.0,False,False +12031016729,6524.0,False,False +12031016801,2450.0,False,False +12031016803,7096.0,False,False +12031016804,7228.0,False,False +12031016805,7700.0,False,False +12031016806,16254.0,False,False +12031016807,4125.0,True,False +12031016808,3672.0,False,False +12031017100,6275.0,False,False +12031017200,2165.0,True,True +12031017300,7042.0,False,False +12031017400,2643.0,True,True +12031990000,0.0,False,False +12033000100,1377.0,False,False +12033000300,2743.0,True,True +12033000400,3508.0,True,True +12033000500,1324.0,False,False +12033000600,1567.0,True,True +12033000800,4563.0,False,False +12033000900,2435.0,False,False +12033001001,5722.0,False,False +12033001002,2979.0,False,False +12033001101,5657.0,False,False +12033001103,2568.0,False,False +12033001104,7067.0,True,True +12033001201,4821.0,False,False +12033001202,4712.0,True,True +12033001300,4450.0,True,True +12033001401,5918.0,False,False +12033001402,6372.0,False,False +12033001500,1484.0,True,True +12033001600,2827.0,True,True +12033001700,2565.0,True,True +12033001800,2179.0,True,True +12033001900,1987.0,True,True +12033002000,2064.0,True,True +12033002100,4888.0,True,True +12033002200,3427.0,True,True +12033002300,4789.0,True,True +12033002400,5383.0,True,True +12033002500,3379.0,False,False +12033002601,3474.0,False,False +12033002602,1574.0,False,False +12033002603,8471.0,False,False +12033002604,4483.0,False,False +12033002605,5481.0,False,False +12033002701,3310.0,False,False +12033002703,2564.0,True,True +12033002704,6467.0,True,True +12033002801,2912.0,True,True +12033002802,4957.0,False,False +12033002803,2966.0,True,True +12033002804,3459.0,False,False +12033002900,4470.0,True,True +12033003000,6066.0,True,True +12033003100,4898.0,True,True +12033003201,5079.0,False,False +12033003203,4902.0,False,False +12033003204,2838.0,False,False +12033003301,4362.0,False,False +12033003305,2605.0,False,False +12033003306,6064.0,False,False +12033003307,2099.0,False,True +12033003308,3882.0,False,False +12033003309,6597.0,False,False +12033003400,5567.0,True,True +12033003503,6724.0,False,False +12033003505,4780.0,True,True +12033003506,5050.0,True,True +12033003507,6580.0,False,False +12033003508,8034.0,True,True +12033003603,9313.0,False,False +12033003607,3420.0,False,True +12033003608,7823.0,False,False +12033003609,3589.0,False,False +12033003610,6344.0,False,False +12033003611,5752.0,False,False +12033003612,4896.0,False,False +12033003613,3858.0,False,False +12033003614,7135.0,False,False +12033003700,4462.0,False,False +12033003800,4098.0,False,False +12033003900,4540.0,False,False +12033004000,4791.0,True,True +12033990000,0.0,False,False +12035060103,2362.0,False,False +12035060104,4940.0,True,True +12035060105,4416.0,False,False +12035060106,3574.0,False,False +12035060107,5086.0,False,False +12035060204,8439.0,True,True +12035060205,8075.0,False,False +12035060206,4983.0,True,True +12035060207,5495.0,True,True +12035060208,8072.0,True,True +12035060209,7992.0,False,True +12035060210,4618.0,True,True +12035060211,7631.0,False,False +12035060212,5975.0,True,True +12035060213,6009.0,True,True +12035060214,6927.0,True,True +12035060301,5971.0,False,False +12035060302,3531.0,False,False +12035060303,2841.0,False,False +12035060304,2864.0,False,False +12035990000,0.0,False,False +12037970100,3943.0,True,True +12037970200,3100.0,True,True +12037970302,2719.0,True,True +12037970304,2049.0,True,True +12037990000,0.0,False,False +12037990100,0.0,False,False +12039020101,4836.0,False,False +12039020102,5692.0,True,True +12039020300,4455.0,True,True +12039020400,4816.0,True,True +12039020500,5687.0,False,False +12039020600,4506.0,False,False +12039020701,5131.0,True,True +12039020702,5822.0,True,True +12039020800,5000.0,True,True +12041950100,5894.0,True,True +12041950201,2096.0,True,True +12041950202,3497.0,False,True +12041950203,3210.0,True,True +12041950204,3256.0,True,True +12043000100,2410.0,True,True +12043000200,7541.0,True,True +12043000300,3565.0,False,True +12043990000,0.0,False,False +12045960100,6815.0,True,True +12045960200,3797.0,True,True +12045960300,4964.0,False,False +12045990000,0.0,False,False +12047960100,8725.0,True,True +12047960200,4207.0,True,True +12047960300,1394.0,True,True +12049970101,3851.0,True,True +12049970102,3799.0,True,True +12049970201,4010.0,True,True +12049970202,1127.0,False,False +12049970300,8864.0,True,True +12049970400,5480.0,True,True +12051000100,7781.0,True,True +12051000200,7177.0,True,True +12051000300,7403.0,True,True +12051000401,4433.0,True,True +12051000402,9507.0,True,True +12051000600,4431.0,True,True +12051990000,0.0,False,False +12053040101,4795.0,False,False +12053040102,1935.0,False,False +12053040201,2646.0,True,True +12053040202,6347.0,True,True +12053040301,1769.0,False,False +12053040302,4156.0,True,True +12053040303,2887.0,False,False +12053040400,2881.0,True,True +12053040501,3949.0,True,True +12053040502,3498.0,True,True +12053040601,2544.0,True,True +12053040602,2851.0,True,True +12053040701,6319.0,False,False +12053040702,4766.0,True,True +12053040801,3974.0,True,True +12053040802,4412.0,False,False +12053040901,5776.0,True,True +12053040905,6244.0,False,False +12053040906,7377.0,False,False +12053040907,2861.0,False,True +12053040908,7668.0,False,False +12053040909,4616.0,False,False +12053040910,4194.0,True,True +12053040911,5927.0,False,False +12053041003,3031.0,True,True +12053041004,7263.0,False,False +12053041005,2643.0,False,False +12053041006,7339.0,True,True +12053041103,4636.0,True,True +12053041104,3200.0,False,False +12053041105,4781.0,True,True +12053041106,4481.0,False,False +12053041201,4305.0,True,True +12053041203,4197.0,True,True +12053041204,3162.0,True,True +12053041302,3632.0,True,False +12053041303,2273.0,False,False +12053041304,1930.0,False,False +12053041305,1318.0,False,False +12053041401,5902.0,True,True +12053041402,5601.0,False,False +12053041501,3255.0,False,False +12053041502,3578.0,False,False +12053041600,5394.0,False,False +12053990000,0.0,False,False +12055960101,2931.0,False,False +12055960102,1316.0,True,True +12055960103,4914.0,True,True +12055960200,4931.0,True,True +12055960300,4756.0,True,True +12055960400,7620.0,True,True +12055960501,1056.0,True,True +12055960502,7897.0,False,False +12055960601,3120.0,False,False +12055960602,6124.0,True,True +12055960700,3877.0,False,False +12055960800,2715.0,True,True +12055960900,2503.0,True,True +12055961000,4925.0,True,True +12055961100,3623.0,True,True +12055961200,5799.0,True,True +12055961301,6571.0,False,False +12055961302,4234.0,True,True +12055961400,5953.0,False,False +12055961500,4895.0,True,True +12055961601,1190.0,False,False +12055961602,1213.0,False,False +12055961603,6180.0,True,True +12055961700,5065.0,True,True +12055980000,11.0,False,False +12055980100,0.0,False,False +12055980200,18.0,False,False +12057000101,4414.0,False,True +12057000102,6437.0,True,True +12057000201,3664.0,True,True +12057000202,6009.0,True,True +12057000300,8219.0,True,True +12057000401,2654.0,True,True +12057000402,3323.0,True,True +12057000500,4361.0,False,False +12057000601,5660.0,True,True +12057000602,2793.0,True,True +12057000700,6054.0,True,True +12057000800,3608.0,True,True +12057000901,2826.0,True,True +12057000902,4494.0,True,True +12057001001,4464.0,True,True +12057001002,5407.0,True,True +12057001100,2759.0,True,True +12057001200,2943.0,True,True +12057001300,6333.0,True,True +12057001400,4893.0,True,True +12057001500,2632.0,False,False +12057001600,1729.0,False,False +12057001700,4557.0,False,False +12057001800,4854.0,True,True +12057001900,3224.0,True,True +12057002000,3474.0,True,True +12057002100,3317.0,True,True +12057002200,1668.0,False,False +12057002300,3288.0,False,False +12057002400,4078.0,True,True +12057002500,6623.0,True,True +12057002600,1169.0,True,True +12057002700,7504.0,True,True +12057002800,3311.0,False,False +12057002900,2322.0,True,True +12057003000,2997.0,True,True +12057003100,2919.0,True,True +12057003200,2725.0,True,True +12057003300,1817.0,True,True +12057003400,2990.0,True,True +12057003500,2582.0,True,True +12057003600,4924.0,True,True +12057003700,880.0,True,True +12057003800,1040.0,True,True +12057003900,2193.0,True,True +12057004000,923.0,True,True +12057004100,1543.0,True,True +12057004200,1396.0,True,True +12057004300,1154.0,True,True +12057004400,2094.0,True,True +12057004500,3914.0,True,True +12057004600,5199.0,False,False +12057004700,2605.0,False,False +12057004800,3974.0,False,True +12057004900,4900.0,False,False +12057005000,6476.0,False,True +12057005101,1951.0,False,False +12057005102,4025.0,False,False +12057005301,3668.0,False,False +12057005302,1891.0,True,True +12057005401,5452.0,False,False +12057005500,2851.0,False,False +12057005700,4083.0,False,False +12057005800,5082.0,False,False +12057005900,6465.0,False,False +12057006000,5698.0,False,False +12057006101,3538.0,False,False +12057006103,4011.0,False,False +12057006200,4647.0,False,False +12057006300,4613.0,False,False +12057006400,4176.0,False,False +12057006501,3632.0,True,True +12057006502,2042.0,False,False +12057006600,4388.0,False,False +12057006700,6227.0,False,False +12057006801,4469.0,False,False +12057006802,3314.0,False,False +12057006900,6124.0,False,False +12057007001,3787.0,False,False +12057007002,3669.0,True,True +12057007102,3195.0,False,False +12057007103,4530.0,False,False +12057007200,4752.0,False,False +12057007300,2751.0,False,False +12057010103,4404.0,False,False +12057010105,4812.0,True,True +12057010106,5310.0,False,False +12057010107,3624.0,True,True +12057010108,2239.0,True,True +12057010203,1904.0,True,True +12057010204,5973.0,False,False +12057010205,10608.0,False,False +12057010209,14271.0,False,False +12057010210,4631.0,False,False +12057010211,6215.0,False,False +12057010212,5597.0,False,False +12057010213,1962.0,True,True +12057010214,249.0,False,True +12057010303,3699.0,True,True +12057010304,4009.0,False,False +12057010305,4075.0,True,True +12057010401,5846.0,True,True +12057010402,6200.0,True,True +12057010501,6450.0,True,True +12057010502,2816.0,False,False +12057010600,3419.0,False,False +12057010701,6162.0,False,False +12057010702,2915.0,False,False +12057010805,6199.0,True,True +12057010808,2311.0,True,True +12057010809,3105.0,False,False +12057010810,3632.0,False,False +12057010811,6640.0,False,False +12057010812,5951.0,False,False +12057010813,5649.0,False,True +12057010814,2578.0,True,True +12057010815,2274.0,True,True +12057010816,3897.0,True,True +12057010817,4786.0,True,True +12057010818,5066.0,True,True +12057010900,5331.0,False,True +12057011003,5089.0,False,False +12057011005,2865.0,False,False +12057011006,5770.0,False,False +12057011007,3163.0,False,False +12057011008,6712.0,False,False +12057011010,5878.0,False,False +12057011012,7296.0,False,False +12057011013,4349.0,False,False +12057011014,1416.0,False,False +12057011015,6981.0,False,False +12057011016,4233.0,False,False +12057011103,3666.0,False,False +12057011106,2052.0,False,False +12057011107,6752.0,False,False +12057011108,1561.0,False,False +12057011109,3906.0,False,False +12057011203,3666.0,False,False +12057011204,6108.0,False,False +12057011205,2849.0,False,False +12057011206,2711.0,True,True +12057011301,3935.0,False,False +12057011303,3137.0,False,False +12057011304,5666.0,False,False +12057011407,2258.0,False,False +12057011408,2899.0,False,False +12057011409,2681.0,False,False +12057011410,7502.0,False,False +12057011411,1802.0,False,False +12057011412,3290.0,False,False +12057011413,5526.0,False,False +12057011414,7911.0,False,False +12057011415,5621.0,False,False +12057011416,7699.0,False,False +12057011417,4690.0,False,False +12057011418,3865.0,False,False +12057011504,2358.0,False,False +12057011506,8947.0,False,False +12057011507,7646.0,False,False +12057011509,6566.0,False,False +12057011510,4978.0,False,False +12057011512,4042.0,False,False +12057011514,5984.0,False,False +12057011515,3509.0,False,False +12057011516,3047.0,False,False +12057011517,9957.0,False,False +12057011518,4381.0,False,False +12057011519,2236.0,False,False +12057011520,5094.0,False,False +12057011521,4331.0,False,False +12057011522,3833.0,False,False +12057011523,1751.0,False,False +12057011524,5606.0,False,False +12057011603,4908.0,False,True +12057011605,7243.0,True,True +12057011606,7257.0,False,False +12057011607,8932.0,True,True +12057011608,1319.0,False,False +12057011610,5140.0,True,True +12057011611,4513.0,False,True +12057011612,6415.0,False,True +12057011613,6498.0,True,True +12057011614,6905.0,True,True +12057011615,4810.0,True,True +12057011706,8064.0,False,False +12057011708,4562.0,False,False +12057011709,1327.0,False,False +12057011710,6355.0,False,False +12057011712,6266.0,False,False +12057011802,6190.0,True,True +12057011803,6675.0,True,True +12057011804,6195.0,True,True +12057011901,6157.0,True,True +12057011902,8646.0,True,True +12057011904,1540.0,True,True +12057011905,1651.0,True,True +12057011906,4705.0,False,True +12057012001,2949.0,True,True +12057012002,4107.0,True,True +12057012103,7966.0,True,True +12057012104,6795.0,True,True +12057012106,5157.0,False,False +12057012107,4560.0,True,True +12057012108,3558.0,False,False +12057012206,7111.0,False,False +12057012207,7231.0,False,False +12057012208,6298.0,False,False +12057012209,4765.0,False,False +12057012210,5188.0,False,False +12057012211,2581.0,True,True +12057012212,3880.0,True,True +12057012213,5214.0,False,False +12057012301,7125.0,False,False +12057012303,3283.0,True,False +12057012304,4561.0,True,False +12057012401,4720.0,True,True +12057012402,2655.0,True,True +12057012403,6441.0,True,False +12057012501,4975.0,False,False +12057012503,4595.0,False,False +12057012504,3495.0,False,False +12057012600,5545.0,False,False +12057012701,7306.0,True,True +12057012702,3697.0,True,True +12057012800,4200.0,True,True +12057012900,3251.0,True,True +12057013001,4212.0,False,False +12057013002,4968.0,False,False +12057013003,3479.0,True,False +12057013004,3701.0,True,True +12057013100,2971.0,True,True +12057013203,3343.0,False,False +12057013204,3395.0,False,False +12057013205,8633.0,False,False +12057013206,6318.0,False,False +12057013207,4334.0,False,False +12057013208,5278.0,False,False +12057013305,4856.0,False,False +12057013307,3966.0,True,False +12057013310,2758.0,False,False +12057013311,3227.0,False,False +12057013312,4978.0,False,False +12057013313,4508.0,False,False +12057013314,3175.0,False,False +12057013315,5240.0,False,False +12057013316,3287.0,True,True +12057013317,2700.0,True,False +12057013318,3260.0,False,False +12057013319,6575.0,False,False +12057013320,4039.0,False,False +12057013321,8451.0,False,False +12057013322,7607.0,False,False +12057013406,1346.0,True,True +12057013407,6928.0,False,False +12057013409,5422.0,False,False +12057013410,5336.0,True,False +12057013411,2702.0,False,False +12057013412,4499.0,False,False +12057013413,3857.0,False,False +12057013414,6428.0,False,False +12057013415,4322.0,False,False +12057013501,3706.0,True,True +12057013503,3865.0,True,True +12057013504,3460.0,True,True +12057013505,3452.0,True,True +12057013602,1903.0,True,True +12057013604,1234.0,True,True +12057013702,10886.0,False,False +12057013703,7299.0,False,False +12057013704,10177.0,False,False +12057013801,2701.0,True,True +12057013802,3872.0,True,True +12057013803,1584.0,True,True +12057013804,10347.0,False,False +12057013806,2459.0,False,False +12057013807,9057.0,False,False +12057013903,3475.0,False,False +12057013907,2023.0,False,False +12057013908,9821.0,False,False +12057013912,5040.0,False,False +12057013913,10808.0,True,True +12057013914,5310.0,True,True +12057013915,9064.0,False,False +12057013916,13018.0,False,False +12057013917,7818.0,False,False +12057013918,1905.0,True,True +12057013919,7154.0,False,False +12057013920,4007.0,False,False +12057013921,4623.0,False,False +12057013922,7130.0,False,False +12057013923,8562.0,False,False +12057014002,3381.0,True,True +12057014003,1552.0,False,False +12057014007,5590.0,False,False +12057014008,3575.0,False,False +12057014009,1963.0,False,False +12057014010,2450.0,True,True +12057014011,3587.0,True,True +12057014012,2882.0,False,False +12057014013,1442.0,True,True +12057014014,2065.0,False,False +12057014015,1844.0,False,False +12057014016,1061.0,False,False +12057014104,1592.0,True,True +12057014106,3577.0,False,False +12057014108,6487.0,True,True +12057014109,6669.0,False,False +12057014117,3012.0,False,False +12057014118,4123.0,False,False +12057014119,7679.0,False,False +12057014121,5610.0,False,False +12057014122,6775.0,True,True +12057980100,0.0,False,False +12057980200,0.0,False,False +12057980300,0.0,False,False +12057980400,81.0,True,True +12057980500,19.0,False,False +12057980600,0.0,False,False +12057980700,0.0,False,False +12057990000,0.0,False,False +12057990100,0.0,False,False +12059960100,3978.0,True,True +12059960200,5553.0,True,True +12059960300,3233.0,True,True +12059960400,6668.0,True,True +12061050100,7268.0,True,True +12061050200,4320.0,False,False +12061050301,3716.0,False,False +12061050302,6908.0,True,True +12061050401,3491.0,True,True +12061050402,2530.0,False,False +12061050501,5133.0,False,False +12061050503,4778.0,False,False +12061050504,1540.0,False,False +12061050505,3422.0,False,False +12061050601,2476.0,True,True +12061050602,4968.0,False,False +12061050603,6274.0,True,True +12061050604,1615.0,False,False +12061050605,1813.0,True,True +12061050606,13130.0,True,True +12061050702,5981.0,False,False +12061050703,9621.0,False,False +12061050704,2651.0,False,False +12061050705,4922.0,False,False +12061050802,9399.0,False,False +12061050804,6300.0,False,False +12061050805,4103.0,False,False +12061050806,4445.0,False,False +12061050807,6061.0,False,False +12061050808,4727.0,False,False +12061050902,6230.0,False,False +12061050903,8062.0,True,True +12061050904,8105.0,True,True +12061980000,0.0,False,False +12061990000,0.0,False,False +12063210100,3585.0,True,True +12063210200,1271.0,True,True +12063210300,6141.0,False,True +12063210400,3551.0,True,True +12063210500,3868.0,True,True +12063210600,5376.0,True,True +12063210700,4515.0,False,True +12063210800,4975.0,True,True +12063210900,6020.0,True,True +12063211000,4717.0,True,True +12063211100,3926.0,True,True +12065250101,5920.0,True,True +12065250102,4003.0,True,True +12065250200,4238.0,True,True +12065990000,0.0,False,False +12067960100,2574.0,True,True +12067960200,6063.0,True,True +12069030102,3560.0,True,True +12069030104,1800.0,True,True +12069030105,9948.0,False,False +12069030106,1392.0,True,True +12069030107,5900.0,True,True +12069030108,4776.0,False,False +12069030203,8480.0,False,False +12069030204,4729.0,True,True +12069030206,4797.0,True,True +12069030207,5879.0,False,False +12069030208,4688.0,False,False +12069030209,2607.0,True,True +12069030302,3742.0,False,False +12069030305,2765.0,False,False +12069030306,4098.0,False,False +12069030307,4643.0,True,True +12069030308,3962.0,True,True +12069030405,6226.0,True,True +12069030406,4087.0,False,False +12069030407,2997.0,True,True +12069030408,3842.0,False,False +12069030409,4764.0,False,False +12069030410,3395.0,False,False +12069030411,6502.0,True,True +12069030502,5640.0,True,True +12069030503,1618.0,True,True +12069030504,9575.0,True,True +12069030601,4478.0,True,True +12069030602,2984.0,True,True +12069030701,1998.0,False,False +12069030702,4999.0,False,False +12069030803,4569.0,True,True +12069030804,1516.0,False,False +12069030805,4949.0,True,True +12069030806,3798.0,True,True +12069030807,3633.0,False,False +12069030902,15771.0,False,False +12069030912,6367.0,False,False +12069030913,1478.0,False,False +12069030914,5671.0,True,True +12069031000,7765.0,False,False +12069031101,7453.0,False,True +12069031102,7051.0,False,False +12069031103,2245.0,False,False +12069031202,7044.0,False,False +12069031203,5927.0,True,True +12069031204,16637.0,False,False +12069031205,2916.0,True,True +12069031301,6394.0,False,False +12069031305,7553.0,True,False +12069031306,8007.0,False,False +12069031307,19513.0,False,False +12069031308,6353.0,False,False +12069031309,11358.0,False,False +12069031310,19587.0,False,False +12069031311,21441.0,False,False +12071000301,5418.0,True,True +12071000302,5708.0,True,True +12071000401,2886.0,True,True +12071000402,2372.0,False,False +12071000502,4559.0,True,True +12071000503,4456.0,True,True +12071000504,2886.0,True,True +12071000600,3532.0,True,True +12071000700,2660.0,True,True +12071000800,1694.0,True,True +12071000900,2854.0,False,False +12071001000,5967.0,False,False +12071001101,3281.0,True,True +12071001102,4780.0,True,True +12071001201,9106.0,True,True +12071001202,11244.0,False,False +12071001300,3158.0,True,True +12071001401,6027.0,True,True +12071001402,2845.0,False,False +12071001501,2751.0,False,False +12071001502,6899.0,True,True +12071001601,5281.0,False,False +12071001602,3034.0,False,False +12071001701,3462.0,False,False +12071001703,4101.0,False,False +12071001705,3972.0,False,False +12071001706,3016.0,False,False +12071001707,5063.0,False,False +12071001801,4591.0,False,False +12071001802,2563.0,False,False +12071001903,2799.0,False,False +12071001906,8319.0,True,True +12071001907,6046.0,False,False +12071001908,810.0,False,False +12071001910,1640.0,False,False +12071001911,873.0,False,False +12071001912,1830.0,False,False +12071001913,1703.0,False,False +12071001914,5127.0,False,False +12071001915,2617.0,False,False +12071010102,10300.0,False,False +12071010103,11991.0,False,False +12071010104,2097.0,False,False +12071010105,5905.0,False,False +12071010201,13090.0,False,False +12071010203,6925.0,False,False +12071010204,13152.0,False,False +12071010302,6634.0,True,False +12071010303,6437.0,False,False +12071010304,10046.0,False,False +12071010305,3667.0,False,False +12071010306,6325.0,False,False +12071010307,7577.0,True,False +12071010404,7933.0,False,False +12071010405,9438.0,False,False +12071010406,6367.0,False,False +12071010407,7808.0,False,False +12071010409,11516.0,False,False +12071010410,11928.0,False,False +12071010411,4331.0,False,False +12071010412,4861.0,False,False +12071010501,3784.0,False,False +12071010502,5545.0,False,False +12071010601,3978.0,False,False +12071010602,2542.0,True,True +12071010701,3445.0,False,False +12071010702,2809.0,False,False +12071010801,2190.0,False,False +12071010802,3424.0,True,True +12071010803,1947.0,False,False +12071020101,3919.0,False,False +12071020102,4344.0,False,False +12071020201,1599.0,False,False +12071020202,2576.0,False,False +12071020300,5674.0,True,True +12071020400,3396.0,False,False +12071020501,2691.0,True,True +12071020502,3824.0,False,False +12071020600,3276.0,True,True +12071020700,4056.0,False,False +12071020800,4586.0,True,True +12071030100,2920.0,False,False +12071030201,1451.0,False,False +12071030202,6778.0,True,True +12071030203,1792.0,False,False +12071030204,949.0,False,False +12071030300,3232.0,False,False +12071040108,3768.0,False,False +12071040109,7257.0,True,True +12071040110,3445.0,False,False +12071040111,2767.0,False,False +12071040112,4039.0,False,False +12071040113,1664.0,False,False +12071040114,7360.0,False,False +12071040115,6082.0,False,False +12071040116,8099.0,False,False +12071040117,3299.0,False,False +12071040118,1606.0,False,False +12071040119,2246.0,False,False +12071040120,1652.0,False,False +12071040121,4026.0,True,True +12071040122,8279.0,True,True +12071040123,4981.0,False,False +12071040124,7148.0,True,False +12071040125,2317.0,False,True +12071040126,3823.0,True,True +12071040127,3641.0,True,True +12071040203,11137.0,True,True +12071040205,6385.0,True,True +12071040206,1831.0,False,False +12071040207,4705.0,False,False +12071040208,2068.0,True,True +12071040209,3181.0,False,False +12071040210,2809.0,True,True +12071040301,8192.0,True,True +12071040302,4986.0,True,True +12071040303,7575.0,True,True +12071040304,5631.0,True,True +12071040305,3872.0,True,True +12071040308,4394.0,True,True +12071040309,7740.0,True,True +12071040310,2768.0,False,False +12071040311,4160.0,True,True +12071040312,1956.0,False,False +12071040313,2046.0,True,True +12071040314,2990.0,True,True +12071050103,1006.0,False,False +12071050104,2923.0,False,False +12071050105,2024.0,False,False +12071050106,4413.0,False,False +12071050203,4718.0,False,False +12071050204,2493.0,False,False +12071050205,1739.0,False,False +12071050206,3380.0,False,False +12071050207,2488.0,False,False +12071050208,6478.0,False,False +12071050209,8551.0,False,False +12071050305,3570.0,False,False +12071050306,2232.0,False,False +12071050307,3866.0,False,False +12071050308,9343.0,False,False +12071050310,6974.0,False,False +12071050311,8097.0,False,False +12071050312,3810.0,False,False +12071050313,5497.0,False,False +12071050314,4727.0,False,False +12071050400,11951.0,True,True +12071050500,7132.0,True,True +12071050601,3063.0,False,False +12071050602,6169.0,False,False +12071060101,872.0,True,True +12071060102,3014.0,False,False +12071060201,811.0,False,False +12071060202,1664.0,False,False +12071060203,1559.0,False,False +12071060300,1080.0,False,False +12071070101,1701.0,True,True +12071070102,3000.0,True,True +12071070200,3451.0,True,True +12071080100,195.0,True,True +12071080202,2830.0,False,False +12071080203,1836.0,False,False +12071080204,2653.0,False,False +12071080300,2580.0,False,False +12071090100,668.0,False,False +12071980000,0.0,False,False +12071990000,0.0,False,False +12073000200,4360.0,False,False +12073000301,1374.0,False,False +12073000302,2255.0,False,False +12073000303,4556.0,False,False +12073000400,2433.0,False,False +12073000500,2398.0,False,False +12073000600,4025.0,True,True +12073000700,1822.0,False,False +12073000800,3362.0,False,False +12073000901,8155.0,False,False +12073000903,2304.0,False,False +12073000904,3675.0,False,False +12073000905,3074.0,False,False +12073001001,3300.0,True,True +12073001002,2716.0,True,True +12073001101,2613.0,False,True +12073001102,2314.0,False,False +12073001200,1137.0,True,True +12073001300,5184.0,False,False +12073001401,1556.0,True,True +12073001402,5263.0,False,True +12073001500,4939.0,False,False +12073001601,5238.0,False,False +12073001602,3153.0,False,False +12073001700,7354.0,False,False +12073001801,4897.0,True,True +12073001802,6207.0,False,False +12073001901,1852.0,True,True +12073001902,4717.0,True,True +12073002003,3134.0,True,True +12073002004,6480.0,False,False +12073002005,3743.0,False,False +12073002006,4411.0,False,True +12073002101,4250.0,False,False +12073002103,3965.0,False,False +12073002104,8735.0,False,False +12073002201,6130.0,False,False +12073002205,5960.0,False,False +12073002206,3364.0,False,False +12073002207,2406.0,False,False +12073002208,5239.0,False,False +12073002302,3422.0,False,False +12073002303,4205.0,False,False +12073002304,3310.0,True,False +12073002403,2249.0,False,False +12073002408,8124.0,False,False +12073002410,6032.0,False,False +12073002411,1445.0,False,False +12073002412,9259.0,False,False +12073002413,2870.0,False,False +12073002414,4591.0,False,False +12073002415,4170.0,False,False +12073002416,2816.0,False,False +12073002417,7784.0,False,False +12073002505,6221.0,False,False +12073002507,2279.0,False,False +12073002508,9951.0,False,False +12073002509,4440.0,False,False +12073002510,6835.0,False,False +12073002511,1502.0,False,False +12073002512,3718.0,False,False +12073002513,4664.0,False,False +12073002603,4622.0,True,True +12073002604,3021.0,True,True +12073002605,5623.0,False,False +12073002606,3415.0,False,False +12073002701,4888.0,False,False +12073002702,4264.0,False,False +12075970101,2327.0,True,True +12075970102,8571.0,True,True +12075970200,4188.0,True,True +12075970301,1472.0,True,True +12075970302,5976.0,True,True +12075970400,2688.0,True,True +12075970500,7526.0,True,True +12075970600,3909.0,True,True +12075970700,3746.0,True,True +12075990000,0.0,False,False +12077950100,2200.0,True,True +12077950200,6145.0,True,True +12079110100,2911.0,True,True +12079110200,3607.0,True,True +12079110301,2418.0,True,True +12079110302,5834.0,True,True +12079110400,3690.0,True,True +12081000101,1729.0,False,False +12081000103,4698.0,True,True +12081000105,4919.0,True,True +12081000106,4662.0,True,True +12081000201,4639.0,True,True +12081000202,4419.0,True,True +12081000304,2451.0,False,True +12081000305,6309.0,True,True +12081000306,6544.0,True,True +12081000307,3262.0,True,True +12081000308,4880.0,True,True +12081000309,4304.0,True,True +12081000310,3933.0,True,True +12081000403,1716.0,False,False +12081000405,3030.0,False,False +12081000406,4568.0,False,False +12081000407,4327.0,False,False +12081000408,5583.0,True,True +12081000501,3281.0,True,True +12081000503,3873.0,False,False +12081000504,3890.0,False,False +12081000601,3022.0,True,True +12081000603,4126.0,True,True +12081000604,3632.0,True,True +12081000703,3263.0,True,True +12081000704,7307.0,True,True +12081000705,5605.0,True,True +12081000803,8624.0,True,False +12081000804,3650.0,False,False +12081000805,7119.0,False,False +12081000807,8403.0,False,False +12081000808,5742.0,False,False +12081000809,5057.0,False,False +12081000810,5695.0,False,False +12081000901,5841.0,True,True +12081000902,6337.0,False,False +12081001000,5815.0,False,False +12081001104,4526.0,False,False +12081001105,3761.0,False,False +12081001106,4186.0,True,False +12081001107,4094.0,True,True +12081001108,2784.0,False,False +12081001202,4247.0,False,False +12081001203,4603.0,False,False +12081001204,5868.0,False,False +12081001300,3955.0,True,True +12081001402,1560.0,False,False +12081001403,4753.0,True,True +12081001404,3818.0,False,False +12081001501,5598.0,True,False +12081001502,5946.0,True,True +12081001601,5145.0,False,False +12081001602,4248.0,False,True +12081001701,1522.0,False,False +12081001703,1911.0,False,False +12081001704,664.0,False,False +12081001800,4281.0,False,False +12081001904,6123.0,False,False +12081001907,5166.0,False,False +12081001908,6475.0,False,False +12081001909,2983.0,False,False +12081001910,5674.0,False,False +12081001911,8190.0,False,False +12081001912,6828.0,False,False +12081001913,4751.0,False,False +12081001914,2536.0,False,False +12081002003,5576.0,False,False +12081002005,5365.0,False,False +12081002007,11231.0,False,False +12081002008,6019.0,False,False +12081002010,3908.0,False,False +12081002011,3892.0,False,False +12081002012,4979.0,False,False +12081002013,16587.0,False,False +12081002014,5587.0,False,False +12081002015,8048.0,False,False +12081002016,5957.0,False,False +12081002017,4613.0,False,False +12081990000,0.0,False,False +12083000100,5726.0,False,False +12083000200,6886.0,True,True +12083000301,7997.0,False,False +12083000302,3960.0,True,True +12083000401,2183.0,True,True +12083000402,4641.0,True,True +12083000501,1911.0,False,False +12083000502,1238.0,True,True +12083000601,2914.0,True,True +12083000602,6040.0,True,True +12083000604,3922.0,True,True +12083000605,2694.0,True,True +12083000701,5202.0,True,True +12083000702,7877.0,False,False +12083000801,13908.0,False,False +12083000802,10612.0,False,False +12083000901,5510.0,True,True +12083000902,10668.0,True,True +12083001003,1515.0,True,True +12083001004,14266.0,False,False +12083001005,7266.0,False,True +12083001006,10425.0,False,False +12083001007,5926.0,False,False +12083001008,4738.0,False,False +12083001102,3163.0,True,True +12083001103,6972.0,False,False +12083001104,6999.0,True,True +12083001204,7651.0,True,True +12083001205,4249.0,True,True +12083001206,2082.0,True,True +12083001207,13074.0,True,True +12083001208,3948.0,False,False +12083001301,6430.0,True,True +12083001302,6656.0,True,True +12083001401,5428.0,True,True +12083001402,5245.0,True,True +12083001500,3407.0,True,True +12083001600,3990.0,True,True +12083001700,5232.0,True,True +12083001800,1656.0,True,True +12083001900,2583.0,True,True +12083002001,2724.0,True,True +12083002002,3777.0,True,False +12083002100,5337.0,False,False +12083002201,3412.0,True,True +12083002202,3190.0,False,False +12083002203,6932.0,False,False +12083002301,5767.0,False,False +12083002302,7540.0,False,False +12083002401,5189.0,False,False +12083002402,5370.0,False,True +12083002502,12318.0,False,False +12083002503,6300.0,True,True +12083002504,5155.0,True,True +12083002601,7099.0,True,True +12083002602,8879.0,True,True +12083002604,3560.0,False,False +12083002605,4806.0,False,False +12083002606,6550.0,False,False +12083002701,5839.0,True,True +12083002702,6992.0,True,True +12083980000,0.0,False,False +12083980100,0.0,False,False +12085000100,2567.0,False,False +12085000200,3679.0,False,False +12085000300,6504.0,False,False +12085000400,7787.0,False,False +12085000501,4456.0,False,False +12085000502,2099.0,False,False +12085000603,5674.0,False,False +12085000604,6364.0,False,False +12085000606,5802.0,False,False +12085000607,2757.0,False,False +12085000610,4243.0,False,False +12085000700,3533.0,False,False +12085000800,2303.0,True,True +12085000901,2302.0,False,False +12085000902,4534.0,False,False +12085001000,6346.0,True,True +12085001102,7357.0,False,False +12085001103,2318.0,False,False +12085001104,8688.0,False,False +12085001200,2558.0,True,True +12085001301,6336.0,True,True +12085001302,4437.0,False,False +12085001404,5879.0,False,False +12085001406,4005.0,False,False +12085001407,2072.0,True,True +12085001408,3707.0,True,True +12085001409,3400.0,False,False +12085001410,6177.0,False,False +12085001500,3768.0,False,False +12085001601,4728.0,False,False +12085001602,1148.0,False,False +12085001700,10983.0,False,False +12085001801,7325.0,True,True +12085001802,3229.0,True,True +12085990000,0.0,False,False +12085990100,0.0,False,False +12086000107,2699.0,False,False +12086000109,2991.0,True,True +12086000113,7966.0,False,False +12086000115,2713.0,False,False +12086000118,977.0,False,False +12086000119,4082.0,False,False +12086000120,4331.0,False,False +12086000121,1397.0,False,False +12086000122,4348.0,False,False +12086000123,4157.0,False,False +12086000124,3199.0,False,True +12086000125,2930.0,False,False +12086000126,2313.0,True,True +12086000127,2723.0,False,False +12086000128,3021.0,False,False +12086000129,2079.0,False,False +12086000130,2599.0,False,False +12086000131,3789.0,False,False +12086000132,4237.0,True,True +12086000133,6571.0,False,False +12086000134,2834.0,True,True +12086000140,4213.0,False,False +12086000202,6717.0,True,True +12086000204,4873.0,False,True +12086000206,6226.0,True,True +12086000209,9245.0,True,True +12086000211,2812.0,True,True +12086000212,4709.0,True,True +12086000213,5005.0,True,True +12086000214,6754.0,True,True +12086000215,4197.0,True,True +12086000216,4954.0,False,True +12086000217,6545.0,True,True +12086000218,3873.0,True,True +12086000219,5241.0,True,True +12086000220,4674.0,True,True +12086000301,7769.0,False,True +12086000302,2610.0,True,True +12086000305,8257.0,True,True +12086000306,5235.0,True,True +12086000307,4536.0,False,True +12086000308,5681.0,False,True +12086000402,3713.0,True,True +12086000403,7829.0,True,True +12086000404,7219.0,True,True +12086000405,4157.0,True,True +12086000408,5858.0,True,True +12086000409,4995.0,True,True +12086000410,4444.0,True,True +12086000411,5418.0,True,True +12086000412,7164.0,True,True +12086000413,4908.0,True,True +12086000414,4676.0,True,True +12086000501,7093.0,True,True +12086000503,7548.0,True,True +12086000504,4896.0,True,True +12086000505,6005.0,True,True +12086000601,4924.0,True,True +12086000602,5534.0,False,True +12086000603,4983.0,True,True +12086000604,6216.0,True,True +12086000605,4494.0,True,True +12086000607,4509.0,True,True +12086000608,6678.0,True,True +12086000705,5101.0,True,True +12086000706,7910.0,True,True +12086000707,7012.0,True,True +12086000708,6116.0,True,True +12086000709,6687.0,True,True +12086000710,5394.0,True,True +12086000711,6236.0,True,True +12086000712,2457.0,True,True +12086000804,4750.0,True,True +12086000805,5865.0,True,True +12086000806,4775.0,True,True +12086000807,3893.0,True,True +12086000808,4117.0,True,True +12086000901,7506.0,True,True +12086000902,5783.0,True,True +12086000903,3013.0,True,True +12086001002,6580.0,True,True +12086001003,5480.0,True,True +12086001004,6713.0,True,True +12086001005,2190.0,True,True +12086001006,4509.0,True,True +12086001101,6066.0,True,True +12086001102,5650.0,False,False +12086001103,3840.0,True,True +12086001104,4506.0,False,False +12086001203,7936.0,True,True +12086001204,5704.0,False,False +12086001205,3014.0,False,False +12086001206,4996.0,False,False +12086001301,5229.0,True,True +12086001302,5052.0,False,False +12086001401,5875.0,True,True +12086001402,6409.0,True,True +12086001501,3880.0,True,True +12086001502,3880.0,True,True +12086001602,6651.0,True,True +12086001603,3244.0,True,True +12086001605,3776.0,True,True +12086001606,4560.0,True,True +12086001701,4210.0,True,True +12086001702,3829.0,True,True +12086001703,4410.0,True,True +12086001801,5026.0,True,True +12086001802,4392.0,True,True +12086001803,3175.0,True,True +12086001901,4663.0,True,True +12086001903,3374.0,True,True +12086001904,4532.0,True,True +12086002001,4330.0,True,True +12086002003,3723.0,True,True +12086002004,3251.0,True,True +12086002100,2538.0,False,False +12086002201,4055.0,False,False +12086002202,6020.0,True,True +12086002300,5571.0,True,True +12086002402,6768.0,True,True +12086002403,5016.0,True,True +12086002404,5986.0,True,True +12086002501,6378.0,True,True +12086002502,3667.0,True,True +12086002600,7025.0,True,True +12086002702,4060.0,True,True +12086002703,6260.0,False,False +12086002705,3215.0,False,False +12086002706,4244.0,False,False +12086002800,1083.0,True,True +12086002900,6506.0,True,True +12086003001,2497.0,True,True +12086003003,6650.0,True,True +12086003004,6022.0,True,True +12086003100,5115.0,True,True +12086003400,2756.0,True,True +12086003601,4608.0,True,True +12086003602,6933.0,True,True +12086003702,6479.0,False,False +12086003703,2011.0,False,False +12086003704,1463.0,False,False +12086003705,1622.0,False,False +12086003706,1302.0,True,True +12086003707,1632.0,False,True +12086003801,5905.0,False,False +12086003803,3004.0,False,False +12086003804,5725.0,False,False +12086003906,3029.0,False,False +12086003909,1693.0,True,True +12086003911,4701.0,True,True +12086003912,4489.0,False,True +12086003913,4471.0,True,True +12086003914,4206.0,False,False +12086003915,5597.0,False,True +12086003916,4554.0,False,True +12086003917,5269.0,False,False +12086003918,2892.0,False,False +12086003919,2198.0,False,False +12086003921,3817.0,False,False +12086003922,1988.0,False,False +12086004000,4837.0,False,False +12086004102,2937.0,False,False +12086004103,2210.0,True,True +12086004105,2441.0,False,False +12086004106,2912.0,False,False +12086004203,4965.0,False,False +12086004204,2387.0,True,True +12086004205,2415.0,True,True +12086004206,1223.0,True,True +12086004301,2119.0,False,False +12086004303,2761.0,True,True +12086004304,2317.0,False,False +12086004403,3739.0,True,True +12086004404,2085.0,True,True +12086004405,3713.0,True,True +12086004406,2552.0,False,False +12086004500,4135.0,True,True +12086004602,3860.0,False,False +12086004605,3859.0,False,False +12086004607,3244.0,False,False +12086004608,1980.0,False,False +12086004701,4769.0,False,False +12086004702,6158.0,False,True +12086004703,5530.0,True,True +12086004901,3825.0,True,True +12086004902,6935.0,True,True +12086005001,7657.0,True,True +12086005002,5427.0,True,True +12086005102,3954.0,True,True +12086005103,2993.0,True,True +12086005104,4741.0,True,True +12086005201,6648.0,True,True +12086005202,5875.0,True,True +12086005302,7699.0,True,True +12086005303,4397.0,True,True +12086005304,4901.0,True,True +12086005403,1731.0,True,True +12086005405,4315.0,True,True +12086005406,3872.0,True,True +12086005407,2374.0,True,True +12086005409,4123.0,True,True +12086005410,3726.0,True,True +12086005501,7185.0,True,True +12086005502,6294.0,True,True +12086005600,5360.0,False,True +12086005701,6990.0,True,True +12086005703,7818.0,True,True +12086005704,9307.0,True,True +12086005801,8344.0,False,True +12086005802,11727.0,True,True +12086005901,5476.0,False,True +12086005902,4141.0,True,True +12086005903,5483.0,True,True +12086005904,5908.0,True,True +12086006001,6710.0,False,False +12086006002,5457.0,False,True +12086006101,5351.0,False,False +12086006102,5633.0,False,False +12086006201,2833.0,True,True +12086006203,2334.0,False,False +12086006205,4251.0,False,False +12086006206,3355.0,False,False +12086006301,7608.0,True,True +12086006302,5610.0,False,True +12086006401,4058.0,True,True +12086006402,4038.0,True,True +12086006403,3574.0,True,True +12086006501,3604.0,False,True +12086006503,2418.0,False,True +12086006504,2442.0,False,False +12086006601,7367.0,True,True +12086006602,6956.0,True,True +12086006702,11074.0,False,False +12086006705,3393.0,False,False +12086006706,2631.0,False,False +12086006707,4350.0,False,False +12086006709,1283.0,False,False +12086006711,2964.0,False,False +12086006713,2549.0,False,False +12086006714,1668.0,False,False +12086006801,2890.0,False,False +12086006802,3496.0,False,False +12086006900,6672.0,True,True +12086007001,10232.0,False,True +12086007002,7852.0,True,True +12086007101,2765.0,True,True +12086007103,1515.0,False,False +12086007104,3559.0,False,False +12086007200,2872.0,True,True +12086007300,4396.0,False,False +12086007400,7117.0,False,False +12086007501,2754.0,False,False +12086007503,837.0,False,False +12086007601,2705.0,False,False +12086007603,4047.0,False,True +12086007604,6120.0,False,False +12086007605,3886.0,False,False +12086007606,4649.0,False,False +12086007701,6812.0,False,True +12086007702,5826.0,False,False +12086007704,5133.0,False,False +12086007705,4519.0,False,False +12086007801,928.0,False,False +12086007804,7522.0,False,False +12086007805,4544.0,False,False +12086007806,4174.0,False,False +12086007807,4762.0,False,False +12086007901,3672.0,False,False +12086007902,2837.0,False,False +12086008000,5836.0,False,False +12086008101,3875.0,False,False +12086008102,5170.0,False,False +12086008202,4496.0,False,False +12086008205,3880.0,False,False +12086008206,3997.0,False,False +12086008207,4449.0,False,False +12086008208,4913.0,False,False +12086008209,4753.0,False,False +12086008304,9371.0,False,True +12086008305,5056.0,False,False +12086008306,8734.0,False,False +12086008307,6906.0,False,True +12086008308,4541.0,True,True +12086008309,5285.0,True,True +12086008405,6021.0,False,False +12086008407,6793.0,False,False +12086008409,5101.0,False,False +12086008410,5730.0,False,False +12086008412,6727.0,True,True +12086008414,6576.0,False,False +12086008415,5284.0,False,False +12086008416,3351.0,False,False +12086008417,5319.0,False,True +12086008418,2998.0,False,False +12086008419,4911.0,False,False +12086008501,6684.0,True,True +12086008502,4907.0,False,False +12086008601,5178.0,False,True +12086008602,6025.0,False,True +12086008701,5737.0,True,True +12086008702,5773.0,True,True +12086008803,7005.0,False,True +12086008804,7360.0,False,True +12086008805,5270.0,True,True +12086008806,4322.0,True,True +12086008901,6184.0,False,True +12086008902,7190.0,False,True +12086008904,2774.0,False,False +12086008906,5111.0,True,True +12086008907,4370.0,False,True +12086009006,10328.0,False,True +12086009010,6716.0,False,False +12086009014,4622.0,False,True +12086009015,5995.0,False,True +12086009017,6895.0,True,True +12086009019,4214.0,False,True +12086009020,2839.0,True,True +12086009021,5243.0,True,True +12086009022,2457.0,True,True +12086009023,6817.0,True,True +12086009024,6079.0,True,True +12086009026,2279.0,True,True +12086009027,4105.0,True,True +12086009028,5976.0,False,True +12086009029,4187.0,False,True +12086009030,5345.0,True,True +12086009031,4031.0,False,True +12086009034,10365.0,False,True +12086009035,6006.0,True,True +12086009036,8031.0,False,False +12086009038,8427.0,False,False +12086009039,4952.0,False,True +12086009040,3175.0,False,True +12086009043,4523.0,False,False +12086009044,3111.0,True,True +12086009046,1411.0,False,True +12086009047,3395.0,False,False +12086009100,7792.0,True,True +12086009200,3591.0,False,True +12086009305,5715.0,False,False +12086009306,7073.0,True,True +12086009307,6882.0,True,True +12086009308,7440.0,True,True +12086009309,6855.0,True,True +12086009311,6255.0,True,True +12086009312,5395.0,False,False +12086009313,5490.0,False,False +12086009314,4418.0,True,True +12086009315,3276.0,True,True +12086009400,6364.0,True,True +12086009501,5342.0,True,True +12086009503,4253.0,True,True +12086009504,4931.0,False,False +12086009600,7148.0,True,True +12086009703,3157.0,False,False +12086009704,5213.0,False,False +12086009705,3883.0,True,True +12086009706,3602.0,True,True +12086009803,6648.0,False,False +12086009804,3341.0,False,True +12086009806,2839.0,False,True +12086009807,7247.0,False,False +12086009808,5519.0,True,True +12086009901,10815.0,True,True +12086009903,5258.0,False,True +12086009904,2995.0,True,True +12086009905,5936.0,False,False +12086009906,6111.0,True,True +12086010001,6856.0,True,True +12086010005,6818.0,True,True +12086010006,7808.0,True,True +12086010009,6808.0,True,True +12086010010,4339.0,True,True +12086010011,6900.0,True,True +12086010012,5799.0,True,True +12086010013,4040.0,False,True +12086010015,3932.0,True,True +12086010016,5040.0,False,True +12086010193,4612.0,False,False +12086010198,3637.0,False,False +12086010201,4269.0,False,False +12086010204,7258.0,False,True +12086010205,5070.0,True,True +12086010207,3851.0,True,True +12086010208,5049.0,True,True +12086010209,6004.0,True,True +12086010210,6341.0,True,True +12086010300,8504.0,True,True +12086010400,4594.0,False,True +12086010500,12858.0,True,True +12086010604,4719.0,False,False +12086010606,6876.0,False,False +12086010608,5139.0,False,True +12086010609,5349.0,True,True +12086010610,4266.0,False,False +12086010612,10561.0,False,False +12086010613,5512.0,False,True +12086010614,9628.0,True,True +12086010617,8283.0,False,False +12086010703,15448.0,True,True +12086010704,11587.0,True,True +12086010801,8422.0,True,True +12086010802,10280.0,True,True +12086010900,6505.0,True,True +12086011001,9615.0,True,True +12086011003,4960.0,True,True +12086011005,6343.0,True,True +12086011007,9846.0,False,False +12086011008,4117.0,False,False +12086011009,5654.0,True,True +12086011101,8663.0,True,True +12086011102,7988.0,False,False +12086011201,7141.0,True,True +12086011202,7359.0,True,True +12086011300,9870.0,True,True +12086011401,18709.0,False,False +12086011403,6246.0,True,True +12086011404,8729.0,True,True +12086011500,6651.0,False,True +12086011600,7050.0,True,True +12086011700,6720.0,True,True +12086011800,3509.0,False,True +12086011900,5735.0,False,True +12086012000,9014.0,True,True +12086012100,16306.0,False,True +12086012200,5525.0,False,True +12086012300,6832.0,False,True +12086012400,10128.0,False,False +12086012500,6701.0,False,True +12086012600,7293.0,False,True +12086012700,11212.0,False,False +12086012800,9024.0,False,False +12086012900,4824.0,False,True +12086013000,4833.0,False,True +12086013100,6009.0,True,True +12086013200,6095.0,True,True +12086013300,6309.0,False,True +12086013400,5738.0,True,True +12086013500,6088.0,True,True +12086013600,6055.0,True,True +12086013700,6094.0,True,True +12086013800,8514.0,True,True +12086013900,4605.0,False,True +12086014000,312.0,False,True +12086014100,2765.0,False,False +12086014200,4923.0,False,True +12086014300,3445.0,False,True +12086014400,4864.0,False,False +12086014500,4579.0,False,True +12086014600,8460.0,True,True +12086014700,6133.0,False,True +12086014800,6448.0,True,True +12086014900,5834.0,False,True +12086015000,9482.0,False,True +12086015100,13848.0,False,False +12086015200,7723.0,False,False +12086015300,6282.0,False,True +12086015400,5466.0,False,True +12086015500,6073.0,False,True +12086015600,4699.0,False,True +12086015700,2580.0,False,False +12086015800,4728.0,True,True +12086015900,3744.0,False,True +12086016000,4911.0,False,True +12086016100,4599.0,False,True +12086016200,3318.0,False,False +12086016300,4915.0,False,False +12086016400,7442.0,False,False +12086016500,9049.0,False,False +12086016600,3700.0,False,True +12086016700,4994.0,False,True +12086016800,4214.0,False,False +12086016900,4582.0,False,True +12086017000,5769.0,False,True +12086017100,6520.0,True,True +12086017200,3896.0,False,True +12086017300,4597.0,False,True +12086017400,6042.0,False,True +12086017500,4208.0,True,True +12086017600,7494.0,True,True +12086017700,4385.0,False,True +12086017800,6583.0,True,True +12086017900,8962.0,False,True +12086018000,11612.0,False,False +12086018100,5179.0,False,False +12086018200,2914.0,False,True +12086018300,5710.0,False,True +12086018400,3910.0,False,True +12086018500,4686.0,False,False +12086018600,9275.0,False,True +12086018700,4881.0,False,False +12086018800,8876.0,False,False +12086018900,6634.0,False,False +12086019000,5969.0,False,False +12086019100,4767.0,False,False +12086019200,5071.0,False,False +12086019300,7186.0,False,False +12086019400,8428.0,False,False +12086019500,7506.0,False,False +12086019600,6611.0,False,False +12086019700,3900.0,False,False +12086019800,9855.0,False,False +12086019900,11924.0,False,True +12086020000,7475.0,False,False +12086020100,4783.0,False,True +12086020200,4891.0,True,True +12086020300,3440.0,True,True +12086490100,1620.0,False,True +12086980100,0.0,False,False +12086980200,0.0,False,False +12086980300,4755.0,False,False +12086980400,0.0,False,False +12086980500,0.0,False,False +12086980600,0.0,False,False +12086980700,1054.0,True,True +12086980800,0.0,False,False +12086980900,0.0,False,False +12086981000,0.0,False,False +12086990000,0.0,False,False +12087970200,927.0,False,False +12087970300,2308.0,False,False +12087970400,3762.0,True,True +12087970500,2289.0,False,False +12087970600,1593.0,False,False +12087970700,2692.0,False,False +12087970800,4178.0,False,False +12087970900,1695.0,False,False +12087971001,1071.0,False,False +12087971002,1563.0,True,True +12087971100,3758.0,True,True +12087971200,2522.0,False,False +12087971300,1394.0,True,True +12087971401,3309.0,False,False +12087971402,1624.0,False,False +12087971501,2105.0,False,False +12087971502,3105.0,False,False +12087971600,2083.0,False,False +12087971700,3218.0,False,False +12087971800,5740.0,False,True +12087971900,6237.0,True,True +12087972000,3720.0,False,False +12087972100,4843.0,False,False +12087972200,3184.0,False,True +12087972300,2507.0,False,False +12087972400,2572.0,False,False +12087972500,1104.0,False,False +12087972600,676.0,False,False +12087980000,19.0,False,False +12087980100,0.0,False,False +12087990000,0.0,False,False +12089050101,7408.0,False,False +12089050102,2888.0,False,False +12089050201,1850.0,False,False +12089050202,7163.0,False,False +12089050203,3842.0,False,False +12089050301,10517.0,False,False +12089050302,7705.0,False,False +12089050303,14452.0,False,False +12089050400,8909.0,False,False +12089050502,7546.0,False,False +12089050503,6661.0,True,True +12089050504,4157.0,False,False +12089990000,0.0,False,False +12091020100,7700.0,True,True +12091020200,1994.0,True,True +12091020301,9416.0,False,False +12091020302,6444.0,False,False +12091020400,7916.0,True,False +12091020500,8202.0,False,False +12091020600,10391.0,False,False +12091020700,11157.0,False,False +12091020800,4847.0,False,False +12091020900,6353.0,False,False +12091021001,6793.0,False,False +12091021002,5097.0,False,False +12091021101,3636.0,False,False +12091021102,7824.0,False,False +12091021200,6253.0,True,False +12091021400,1906.0,False,False +12091021501,3892.0,False,False +12091021502,4250.0,False,False +12091021600,2196.0,False,False +12091021700,2662.0,False,False +12091021801,5020.0,False,False +12091021802,5710.0,False,False +12091021900,7698.0,False,False +12091022001,4224.0,True,False +12091022002,3770.0,True,False +12091022100,3485.0,True,False +12091022300,2655.0,False,False +12091022400,4037.0,False,False +12091022500,4217.0,False,False +12091022600,3668.0,True,True +12091022700,3810.0,False,False +12091022800,2460.0,True,False +12091022900,4751.0,False,False +12091023100,8363.0,False,False +12091023200,1931.0,False,False +12091023303,1491.0,False,False +12091023304,4538.0,False,False +12091023305,4748.0,False,False +12091023306,2921.0,False,False +12091023307,2095.0,True,False +12091023308,3273.0,False,False +12091990100,0.0,False,False +12091990200,0.0,False,False +12093910101,6148.0,True,True +12093910102,3324.0,True,True +12093910201,4305.0,True,True +12093910202,4576.0,True,True +12093910300,2247.0,True,True +12093910401,3672.0,True,True +12093910402,2748.0,True,True +12093910403,3604.0,True,True +12093910500,4387.0,True,True +12093910601,4140.0,False,True +12093910602,1993.0,True,True +12093990000,0.0,False,False +12095010200,4935.0,False,False +12095010300,2396.0,False,False +12095010400,1138.0,True,True +12095010500,1218.0,True,True +12095010802,3294.0,False,False +12095011000,2912.0,True,True +12095011100,3683.0,False,False +12095011200,3305.0,False,False +12095011300,5472.0,False,False +12095011600,4838.0,True,True +12095011701,3749.0,True,True +12095011702,2834.0,True,True +12095012000,8768.0,True,True +12095012100,7871.0,True,True +12095012201,6399.0,True,True +12095012202,6011.0,True,True +12095012303,9417.0,False,False +12095012304,7536.0,True,True +12095012305,8139.0,True,True +12095012306,3825.0,False,False +12095012307,7086.0,True,True +12095012401,10224.0,True,True +12095012402,6355.0,True,True +12095012403,6007.0,True,True +12095012500,2314.0,False,False +12095012600,5142.0,False,False +12095012701,4799.0,False,False +12095012800,3651.0,False,False +12095012900,3014.0,False,False +12095013201,4778.0,True,True +12095013202,6513.0,True,True +12095013300,7009.0,True,True +12095013402,3543.0,True,True +12095013403,4103.0,True,True +12095013405,2378.0,True,True +12095013406,3821.0,True,True +12095013503,2655.0,True,True +12095013505,4904.0,True,True +12095013507,6915.0,False,False +12095013508,2768.0,True,True +12095013509,1303.0,True,True +12095013510,2375.0,True,True +12095013511,5313.0,True,True +12095013512,6233.0,True,True +12095013603,5574.0,True,True +12095013604,6011.0,False,False +12095013605,3858.0,False,False +12095013606,4048.0,True,True +12095013607,5148.0,False,False +12095013701,5178.0,True,True +12095013702,5710.0,True,True +12095013801,2635.0,True,False +12095013802,2825.0,False,False +12095013803,2747.0,False,False +12095013900,3881.0,False,False +12095014000,6691.0,False,False +12095014100,6851.0,False,False +12095014200,9980.0,True,True +12095014301,5268.0,False,True +12095014302,5238.0,True,True +12095014400,3430.0,False,False +12095014502,4896.0,True,True +12095014503,5449.0,True,True +12095014504,6002.0,True,True +12095014601,8275.0,True,True +12095014605,4199.0,True,True +12095014606,8008.0,True,True +12095014607,6375.0,False,False +12095014608,4566.0,True,True +12095014609,5922.0,True,True +12095014701,5546.0,True,True +12095014702,5715.0,True,True +12095014703,2617.0,False,False +12095014704,15342.0,False,False +12095014804,7235.0,False,False +12095014805,6275.0,True,True +12095014806,4562.0,False,False +12095014807,6857.0,False,False +12095014808,12005.0,False,False +12095014809,3240.0,False,False +12095014810,5512.0,False,False +12095014811,5311.0,False,False +12095014812,5562.0,True,True +12095014813,3832.0,False,False +12095014904,7091.0,True,True +12095014906,7030.0,False,False +12095014908,8118.0,True,True +12095014909,3540.0,False,True +12095015001,1890.0,True,True +12095015002,6727.0,True,True +12095015003,7219.0,True,True +12095015004,9106.0,False,False +12095015103,6797.0,False,False +12095015104,5687.0,True,True +12095015105,3818.0,True,True +12095015106,8502.0,False,False +12095015201,9947.0,True,True +12095015202,6201.0,True,True +12095015300,3489.0,False,False +12095015402,2145.0,False,False +12095015501,4419.0,False,False +12095015601,2261.0,False,False +12095015602,2148.0,False,False +12095015701,1892.0,False,False +12095015702,1980.0,False,False +12095015801,1840.0,False,False +12095015802,2610.0,False,False +12095015901,2774.0,False,False +12095015902,1727.0,False,False +12095016001,2259.0,False,False +12095016002,2544.0,False,False +12095016100,4445.0,False,False +12095016200,6644.0,False,False +12095016301,6746.0,False,False +12095016302,4609.0,True,True +12095016402,3143.0,True,True +12095016406,2423.0,False,False +12095016407,5431.0,False,True +12095016408,2179.0,False,False +12095016409,3469.0,False,False +12095016410,8850.0,True,True +12095016411,3111.0,False,False +12095016412,4786.0,False,False +12095016503,6159.0,False,False +12095016504,5857.0,False,False +12095016505,3145.0,False,False +12095016507,19398.0,False,False +12095016508,8336.0,False,False +12095016509,4583.0,False,False +12095016510,4118.0,False,True +12095016511,4297.0,False,False +12095016601,12274.0,False,False +12095016602,9857.0,False,False +12095016704,24985.0,False,False +12095016709,8394.0,True,True +12095016710,4139.0,False,False +12095016712,9548.0,True,True +12095016713,8749.0,True,True +12095016714,3752.0,False,False +12095016715,6230.0,True,True +12095016716,5942.0,False,False +12095016717,3457.0,False,False +12095016723,4939.0,False,False +12095016724,6686.0,True,True +12095016727,12048.0,False,False +12095016728,5788.0,False,False +12095016729,17892.0,False,False +12095016730,34230.0,False,False +12095016731,7031.0,False,False +12095016732,16937.0,False,False +12095016733,5897.0,False,False +12095016734,13603.0,False,False +12095016802,12987.0,False,False +12095016803,2542.0,False,False +12095016804,3714.0,False,True +12095016806,19348.0,False,False +12095016807,20252.0,False,False +12095016902,6000.0,True,True +12095016903,17140.0,True,True +12095016904,4367.0,True,True +12095016906,3665.0,True,True +12095016907,6171.0,True,True +12095017001,4652.0,False,False +12095017004,5163.0,True,True +12095017006,3299.0,False,True +12095017008,10122.0,True,True +12095017011,6046.0,True,True +12095017012,2825.0,False,False +12095017013,7553.0,False,True +12095017014,10335.0,False,False +12095017015,7566.0,False,False +12095017016,9619.0,False,False +12095017017,6462.0,False,False +12095017103,29497.0,False,False +12095017104,31263.0,False,False +12095017105,24226.0,False,False +12095017107,8118.0,False,False +12095017108,10158.0,False,False +12095017109,6033.0,False,False +12095017200,4834.0,False,False +12095017300,11141.0,True,True +12095017400,11532.0,False,False +12095017501,15101.0,False,False +12095017503,5913.0,True,True +12095017504,9179.0,False,False +12095017600,5090.0,True,True +12095017701,6197.0,False,False +12095017702,2206.0,False,False +12095017703,5079.0,True,True +12095017802,16411.0,False,False +12095017804,10899.0,False,False +12095017805,2965.0,False,False +12095017806,5710.0,False,False +12095017807,3926.0,False,False +12095017808,3755.0,False,False +12095017901,3648.0,False,False +12095017902,7649.0,False,False +12095018000,3057.0,True,True +12095018100,3043.0,True,True +12095018200,10939.0,False,False +12095018300,2251.0,True,True +12095018400,2596.0,True,True +12095018500,3228.0,True,True +12095018700,5524.0,True,True +12095018800,4593.0,False,False +12095018900,6970.0,True,True +12095990000,0.0,False,False +12097040801,1240.0,True,True +12097040802,9885.0,False,False +12097040803,10982.0,False,False +12097040804,6318.0,True,True +12097040901,4288.0,True,True +12097040902,7881.0,True,True +12097041001,9874.0,False,False +12097041002,14259.0,False,False +12097041100,21835.0,True,True +12097041300,17354.0,True,True +12097041500,16355.0,False,True +12097041600,4111.0,True,True +12097041700,5533.0,True,True +12097041800,3179.0,True,True +12097041900,6061.0,True,True +12097042000,8698.0,True,True +12097042100,10763.0,True,True +12097042200,10598.0,True,True +12097042300,7460.0,True,True +12097042400,7800.0,True,True +12097042500,7597.0,False,False +12097042601,4335.0,True,True +12097042602,15566.0,True,True +12097042701,10325.0,True,True +12097042702,7286.0,True,True +12097042800,14853.0,False,False +12097042900,21907.0,True,True +12097043100,3946.0,False,False +12097043201,299.0,False,False +12097043202,425.0,False,False +12097043203,4280.0,True,True +12097043204,21311.0,False,False +12097043205,1390.0,False,False +12097043206,358.0,True,True +12097043301,1706.0,False,False +12097043302,13799.0,False,False +12097043400,5756.0,True,True +12097043500,5834.0,True,True +12097043600,9305.0,False,False +12097043700,8670.0,False,False +12097043800,8533.0,False,False +12099000101,6966.0,False,False +12099000102,2950.0,False,False +12099000202,6396.0,True,True +12099000204,3958.0,False,False +12099000205,6196.0,False,False +12099000206,8582.0,False,False +12099000208,4322.0,False,False +12099000209,9392.0,False,False +12099000210,6344.0,False,False +12099000211,4208.0,False,False +12099000213,3117.0,True,True +12099000214,7686.0,False,False +12099000215,11295.0,False,False +12099000301,3596.0,False,False +12099000303,4415.0,False,False +12099000304,5729.0,False,False +12099000405,2576.0,False,False +12099000406,2561.0,False,False +12099000407,1728.0,False,False +12099000408,3479.0,False,False +12099000410,3754.0,False,False +12099000505,3006.0,False,False +12099000507,766.0,False,False +12099000509,1883.0,False,False +12099000511,2385.0,False,False +12099000600,1442.0,False,False +12099000702,2898.0,False,False +12099000703,3969.0,False,False +12099000802,3032.0,False,False +12099000803,3614.0,False,False +12099000804,2944.0,False,False +12099000902,3281.0,False,False +12099000903,5546.0,False,False +12099000904,4367.0,False,False +12099000905,5005.0,False,False +12099001002,7195.0,True,True +12099001003,4818.0,False,False +12099001004,5430.0,True,True +12099001101,6878.0,True,True +12099001102,1911.0,False,False +12099001200,4697.0,True,True +12099001301,5612.0,True,True +12099001302,5157.0,True,True +12099001402,2833.0,True,True +12099001403,3122.0,True,True +12099001404,4126.0,True,True +12099001500,2577.0,True,True +12099001600,3519.0,True,True +12099001700,4516.0,True,True +12099001801,5880.0,True,True +12099001802,4072.0,False,True +12099001904,2968.0,False,False +12099001907,3673.0,False,False +12099001908,6956.0,False,False +12099001909,2730.0,True,True +12099001910,1602.0,True,True +12099001911,904.0,True,True +12099001912,1729.0,True,True +12099001913,1811.0,True,True +12099001914,1834.0,False,False +12099001915,7179.0,False,False +12099001916,3674.0,False,False +12099001917,4690.0,False,False +12099002005,5217.0,True,True +12099002006,4926.0,True,True +12099002100,4690.0,True,True +12099002200,2308.0,True,True +12099002300,3313.0,True,True +12099002400,1699.0,True,True +12099002600,1301.0,False,False +12099002700,5233.0,False,False +12099002800,3351.0,False,False +12099002900,6927.0,True,True +12099003000,5622.0,True,True +12099003101,8162.0,True,True +12099003102,6655.0,True,True +12099003201,6182.0,True,True +12099003202,6686.0,False,False +12099003300,5413.0,True,True +12099003400,4152.0,False,True +12099003504,807.0,False,False +12099003507,2455.0,False,False +12099003509,2556.0,False,False +12099003511,1788.0,False,False +12099003600,5015.0,False,False +12099003700,6080.0,True,True +12099003800,8198.0,False,True +12099003901,4504.0,False,False +12099003902,6105.0,True,True +12099004005,4643.0,False,False +12099004007,7236.0,True,True +12099004008,6290.0,True,True +12099004009,3755.0,True,True +12099004010,3221.0,True,True +12099004011,5968.0,True,True +12099004012,4074.0,False,False +12099004013,3392.0,True,True +12099004101,5499.0,True,True +12099004102,3496.0,False,True +12099004201,8512.0,True,True +12099004202,5336.0,True,True +12099004203,3342.0,False,True +12099004300,6866.0,False,False +12099004401,4215.0,True,True +12099004402,4820.0,True,True +12099004500,7032.0,True,True +12099004601,4019.0,True,True +12099004602,5218.0,True,True +12099004702,6975.0,True,True +12099004704,7173.0,True,True +12099004705,5477.0,True,True +12099004706,2599.0,True,True +12099004809,1792.0,False,False +12099004810,5023.0,False,False +12099004811,3916.0,False,False +12099004812,9219.0,True,True +12099004813,6009.0,False,False +12099004815,7086.0,False,False +12099004816,3422.0,False,False +12099004817,4205.0,True,True +12099004818,2575.0,True,True +12099004819,4469.0,True,True +12099004902,1975.0,False,False +12099004903,5418.0,True,True +12099004904,6545.0,True,True +12099005000,6089.0,True,True +12099005101,2670.0,True,True +12099005102,5783.0,True,True +12099005202,4673.0,True,True +12099005203,2175.0,True,True +12099005204,3957.0,True,True +12099005300,4163.0,False,False +12099005405,1002.0,False,False +12099005407,1766.0,False,False +12099005409,971.0,False,False +12099005411,3446.0,False,False +12099005501,3385.0,True,True +12099005502,7166.0,False,True +12099005601,5395.0,True,True +12099005602,2795.0,False,False +12099005701,4002.0,True,True +12099005702,7578.0,True,True +12099005807,4917.0,False,False +12099005808,6525.0,False,False +12099005810,1804.0,True,True +12099005811,3603.0,False,False +12099005812,4232.0,False,False +12099005813,6590.0,False,False +12099005814,4761.0,True,True +12099005815,4646.0,False,False +12099005816,5969.0,False,False +12099005817,6173.0,True,True +12099005903,8212.0,False,False +12099005915,5258.0,False,False +12099005916,7703.0,False,False +12099005917,4618.0,False,False +12099005918,5407.0,False,False +12099005921,7535.0,False,False +12099005922,6012.0,False,False +12099005923,3385.0,False,False +12099005926,4398.0,False,False +12099005930,3801.0,False,False +12099005931,3157.0,False,False +12099005933,2821.0,False,False +12099005934,3417.0,False,False +12099005935,2377.0,False,False +12099005936,3201.0,False,False +12099005937,1668.0,False,False +12099005938,3740.0,False,False +12099005939,1390.0,True,True +12099005940,2401.0,True,True +12099005942,2687.0,False,False +12099005943,2346.0,True,True +12099005944,2540.0,True,True +12099005945,5263.0,False,False +12099005946,8962.0,False,False +12099005947,4378.0,False,False +12099005949,3238.0,False,False +12099005950,4793.0,False,False +12099005951,4584.0,False,False +12099005952,1331.0,False,False +12099005953,4820.0,False,False +12099005954,4153.0,False,False +12099005955,4358.0,False,False +12099005956,932.0,False,False +12099006005,3988.0,False,False +12099006006,2911.0,False,False +12099006007,3466.0,False,False +12099006008,2701.0,False,False +12099006009,2132.0,False,True +12099006010,4045.0,False,False +12099006011,3388.0,False,False +12099006012,4446.0,False,False +12099006100,4338.0,True,True +12099006201,4878.0,True,True +12099006202,2426.0,True,True +12099006203,2171.0,True,True +12099006300,6196.0,False,False +12099006401,2092.0,False,False +12099006402,4114.0,False,False +12099006501,1693.0,True,True +12099006502,3926.0,False,False +12099006602,3377.0,False,False +12099006603,4765.0,False,False +12099006604,5786.0,False,False +12099006605,4793.0,False,False +12099006700,2888.0,True,True +12099006801,7511.0,True,True +12099006802,3271.0,True,True +12099006906,5128.0,False,False +12099006907,3498.0,False,False +12099006908,4239.0,False,False +12099006909,2576.0,False,False +12099006910,2110.0,True,True +12099006911,3321.0,False,False +12099006912,4294.0,False,False +12099007002,4916.0,False,False +12099007005,3654.0,False,False +12099007006,4609.0,False,False +12099007007,4561.0,False,False +12099007008,4662.0,False,False +12099007009,3648.0,False,False +12099007010,1759.0,False,False +12099007011,2935.0,False,False +12099007100,2561.0,False,False +12099007201,7875.0,False,False +12099007202,4571.0,False,False +12099007203,5394.0,False,True +12099007301,4973.0,False,False +12099007302,5570.0,False,False +12099007407,1990.0,False,False +12099007410,1494.0,False,False +12099007412,1254.0,False,False +12099007414,1895.0,False,False +12099007416,3615.0,False,False +12099007418,1025.0,False,False +12099007420,3255.0,False,False +12099007501,3206.0,False,False +12099007504,3168.0,False,False +12099007505,3216.0,False,False +12099007602,4620.0,True,True +12099007603,2341.0,False,False +12099007604,6954.0,False,False +12099007605,4723.0,False,False +12099007607,5996.0,False,False +12099007610,4178.0,False,False +12099007612,5269.0,False,False +12099007613,3752.0,False,False +12099007614,4192.0,False,False +12099007615,3343.0,False,False +12099007616,2983.0,False,False +12099007617,1648.0,False,False +12099007618,3887.0,False,False +12099007705,5048.0,False,False +12099007710,5712.0,False,False +12099007713,19012.0,False,False +12099007716,4920.0,False,False +12099007721,4826.0,False,False +12099007723,2600.0,False,False +12099007724,5848.0,False,False +12099007725,6444.0,False,False +12099007730,6823.0,False,False +12099007731,4383.0,False,False +12099007732,5743.0,True,True +12099007733,3481.0,False,False +12099007734,2359.0,False,False +12099007735,5938.0,False,False +12099007736,3609.0,False,False +12099007738,3831.0,False,False +12099007739,3088.0,False,False +12099007740,5830.0,False,False +12099007741,3972.0,False,False +12099007742,4928.0,False,False +12099007743,4778.0,False,False +12099007744,3073.0,False,False +12099007746,1156.0,True,True +12099007747,2740.0,True,True +12099007748,4904.0,False,False +12099007749,6535.0,False,False +12099007750,4864.0,True,True +12099007751,3665.0,False,False +12099007752,7403.0,False,False +12099007753,8437.0,False,False +12099007754,5156.0,False,False +12099007756,5700.0,False,False +12099007757,4258.0,False,False +12099007758,6102.0,False,False +12099007759,1526.0,False,False +12099007760,4295.0,False,False +12099007762,2075.0,False,False +12099007763,8255.0,False,False +12099007764,1856.0,False,False +12099007765,10326.0,False,False +12099007766,3617.0,False,True +12099007767,3975.0,False,True +12099007805,6462.0,False,False +12099007808,5592.0,False,False +12099007809,3643.0,False,True +12099007812,5583.0,False,False +12099007813,6916.0,False,False +12099007814,2083.0,False,False +12099007817,7930.0,False,False +12099007818,2013.0,False,False +12099007820,2926.0,False,False +12099007821,2910.0,False,False +12099007822,6462.0,False,False +12099007823,4768.0,False,False +12099007828,1447.0,False,False +12099007830,3557.0,False,False +12099007831,3546.0,False,False +12099007832,2918.0,True,True +12099007833,5461.0,True,True +12099007834,1631.0,False,False +12099007835,3663.0,False,False +12099007836,8383.0,False,False +12099007837,7239.0,False,False +12099007838,8014.0,False,False +12099007839,7390.0,False,False +12099007908,9157.0,False,False +12099007909,4491.0,False,False +12099007910,8235.0,False,False +12099007912,9270.0,False,False +12099008001,3898.0,True,True +12099008002,4673.0,True,True +12099008101,7523.0,True,True +12099008102,0.0,False,False +12099008201,4094.0,True,True +12099008202,3830.0,True,True +12099008203,5302.0,True,True +12099008301,1857.0,True,True +12099008302,6149.0,True,True +12099980000,0.0,False,False +12099980100,0.0,False,False +12099980200,0.0,False,False +12099980400,0.0,False,False +12099980500,0.0,False,False +12099990000,0.0,False,False +12099990100,0.0,False,False +12101030101,2840.0,False,False +12101030102,2473.0,True,True +12101030202,2900.0,False,False +12101030203,1557.0,True,True +12101030204,1227.0,True,True +12101030205,2263.0,False,False +12101030301,2349.0,False,False +12101030302,2082.0,True,True +12101030303,3438.0,False,False +12101030404,2792.0,False,False +12101030405,2061.0,True,True +12101030406,2339.0,True,True +12101030407,2576.0,True,True +12101030408,2209.0,True,True +12101030409,2634.0,True,True +12101030410,1961.0,True,True +12101030411,3007.0,True,True +12101030412,2766.0,True,True +12101030501,1548.0,True,True +12101030502,4320.0,True,True +12101030601,1866.0,True,True +12101030602,2362.0,True,True +12101030700,4018.0,True,True +12101030800,3099.0,True,True +12101030901,3816.0,True,True +12101030903,2941.0,False,False +12101030904,2936.0,True,True +12101030905,3497.0,True,True +12101031003,6448.0,True,True +12101031005,4317.0,True,True +12101031006,1908.0,True,True +12101031007,6130.0,True,True +12101031008,2356.0,True,True +12101031009,3074.0,True,True +12101031010,5245.0,True,True +12101031011,2638.0,True,True +12101031012,5024.0,True,True +12101031013,3077.0,True,True +12101031014,3672.0,True,True +12101031101,4635.0,True,True +12101031102,5396.0,True,True +12101031203,2444.0,False,False +12101031204,2625.0,False,False +12101031205,4284.0,True,True +12101031206,3059.0,True,True +12101031207,2453.0,True,True +12101031208,4162.0,False,False +12101031301,3677.0,False,False +12101031302,6463.0,False,False +12101031401,4019.0,True,True +12101031404,3816.0,True,True +12101031405,1849.0,True,True +12101031406,3002.0,True,True +12101031407,2596.0,True,True +12101031408,2623.0,True,True +12101031409,6760.0,True,True +12101031503,2644.0,False,False +12101031504,1838.0,False,False +12101031505,6073.0,False,False +12101031506,3696.0,True,True +12101031507,5679.0,False,False +12101031508,4605.0,False,False +12101031601,6880.0,False,False +12101031602,7480.0,False,False +12101031603,10301.0,False,False +12101031604,6888.0,False,False +12101031605,4534.0,False,False +12101031701,3904.0,False,False +12101031703,4312.0,True,True +12101031704,5952.0,False,False +12101031705,4460.0,False,False +12101031706,3170.0,False,False +12101031707,3494.0,False,False +12101031708,5208.0,False,False +12101031804,3763.0,False,False +12101031805,3848.0,False,False +12101031806,5177.0,True,True +12101031807,2655.0,True,True +12101031808,3455.0,False,False +12101031809,3274.0,False,False +12101031901,2253.0,False,False +12101031902,9171.0,False,False +12101031903,6562.0,False,False +12101032001,6780.0,False,False +12101032005,4066.0,False,False +12101032006,8549.0,False,False +12101032007,2721.0,False,False +12101032008,5638.0,False,False +12101032009,8186.0,False,False +12101032010,3378.0,False,False +12101032011,5230.0,False,False +12101032012,3677.0,False,False +12101032013,6485.0,False,False +12101032014,6954.0,False,False +12101032103,7121.0,False,False +12101032104,4990.0,False,False +12101032105,7979.0,False,False +12101032106,8525.0,False,False +12101032107,6954.0,False,False +12101032108,6109.0,False,False +12101032109,5113.0,False,False +12101032110,3063.0,False,False +12101032111,4559.0,False,False +12101032112,4124.0,False,False +12101032113,4324.0,False,False +12101032200,5545.0,False,False +12101032300,2741.0,False,False +12101032401,2673.0,False,False +12101032402,3132.0,True,True +12101032500,6543.0,True,True +12101032601,3421.0,True,True +12101032602,3152.0,True,True +12101032700,2982.0,True,True +12101032801,1836.0,False,False +12101032802,3221.0,False,False +12101032803,1981.0,True,True +12101032804,2536.0,True,True +12101032901,6579.0,True,True +12101032902,1806.0,False,False +12101032903,3365.0,True,True +12101032904,2719.0,False,False +12101033005,4572.0,False,False +12101033006,2379.0,True,True +12101033007,1922.0,True,True +12101033008,2505.0,True,True +12101033009,3086.0,True,True +12101033010,4151.0,True,True +12101033011,1939.0,True,True +12101033012,2631.0,True,True +12101033013,3219.0,True,True +12101033014,2561.0,True,True +12101033101,2524.0,False,False +12101033102,1451.0,True,True +12101990000,0.0,False,False +12103020101,4855.0,True,True +12103020105,5262.0,False,False +12103020106,3437.0,False,False +12103020107,1637.0,False,False +12103020108,2222.0,False,False +12103020201,5711.0,False,False +12103020202,3607.0,False,False +12103020206,4572.0,False,False +12103020207,2903.0,False,False +12103020208,2345.0,False,False +12103020209,4449.0,False,False +12103020301,3063.0,False,False +12103020302,4315.0,False,False +12103020400,2402.0,False,False +12103020500,4309.0,True,True +12103020600,4267.0,True,True +12103020700,3237.0,True,True +12103020800,4799.0,True,True +12103021200,2846.0,True,True +12103021500,3607.0,False,False +12103021600,2496.0,True,True +12103021800,2516.0,True,True +12103021900,2832.0,False,False +12103022000,3058.0,True,True +12103022100,4760.0,False,False +12103022200,4519.0,False,False +12103022301,3009.0,False,False +12103022302,3942.0,False,False +12103022401,3606.0,False,False +12103022402,4643.0,False,False +12103022501,4934.0,False,False +12103022502,3698.0,False,False +12103022503,5727.0,False,False +12103022601,3732.0,False,False +12103022602,4545.0,False,False +12103022700,4191.0,False,False +12103022801,5383.0,True,True +12103022802,3841.0,False,False +12103022901,3077.0,False,False +12103022902,3238.0,True,True +12103023000,2833.0,True,True +12103023100,2450.0,False,True +12103023200,3024.0,False,False +12103023300,2323.0,False,False +12103023400,1673.0,False,False +12103023500,3464.0,True,True +12103023600,2905.0,False,False +12103023700,2770.0,False,False +12103023800,2524.0,False,False +12103023900,2169.0,False,False +12103024001,3312.0,False,False +12103024002,5955.0,False,False +12103024004,5373.0,False,False +12103024005,3214.0,False,False +12103024100,4804.0,False,False +12103024200,5617.0,False,False +12103024301,4632.0,False,False +12103024302,4772.0,False,False +12103024403,4446.0,True,True +12103024406,5619.0,False,False +12103024408,4506.0,True,True +12103024409,2946.0,False,False +12103024410,3487.0,False,False +12103024411,4174.0,False,False +12103024412,4591.0,False,False +12103024413,5366.0,False,False +12103024505,6822.0,False,False +12103024507,3688.0,False,False +12103024508,5080.0,False,False +12103024509,3671.0,False,False +12103024510,5880.0,True,True +12103024511,9058.0,False,False +12103024512,3296.0,False,False +12103024513,3952.0,False,False +12103024514,5158.0,True,True +12103024601,3788.0,True,True +12103024602,6152.0,True,True +12103024701,3703.0,True,True +12103024702,2149.0,False,False +12103024703,3585.0,True,True +12103024801,4103.0,False,False +12103024803,2254.0,True,True +12103024804,2249.0,True,True +12103024805,2802.0,False,False +12103024901,5477.0,True,True +12103024902,7236.0,True,True +12103024904,3270.0,False,False +12103024905,7152.0,True,True +12103024906,4070.0,True,True +12103025004,6378.0,True,True +12103025007,3873.0,False,False +12103025009,4385.0,False,False +12103025010,5159.0,False,False +12103025011,5303.0,False,False +12103025012,5308.0,False,False +12103025013,4065.0,False,False +12103025014,4732.0,False,False +12103025015,2741.0,False,False +12103025016,2195.0,False,False +12103025017,2355.0,True,True +12103025018,2193.0,True,True +12103025019,2261.0,True,True +12103025106,2558.0,False,False +12103025107,4090.0,False,False +12103025108,2221.0,False,False +12103025109,4332.0,False,False +12103025110,5344.0,False,False +12103025111,2955.0,True,True +12103025112,3543.0,False,False +12103025113,2804.0,False,False +12103025114,3033.0,False,False +12103025115,3415.0,True,True +12103025116,2104.0,False,False +12103025119,4983.0,False,False +12103025120,3548.0,False,False +12103025121,4638.0,False,False +12103025122,6236.0,False,False +12103025123,1909.0,False,False +12103025203,5875.0,False,False +12103025204,3362.0,False,False +12103025205,3848.0,False,False +12103025207,7342.0,True,False +12103025208,1653.0,False,False +12103025209,4755.0,False,False +12103025303,5228.0,True,True +12103025304,3146.0,False,False +12103025305,3029.0,True,True +12103025306,1449.0,False,False +12103025307,4552.0,False,False +12103025308,2334.0,True,True +12103025401,4810.0,False,False +12103025405,4324.0,False,False +12103025407,6188.0,False,False +12103025408,7240.0,True,True +12103025411,2010.0,False,False +12103025412,5056.0,False,False +12103025413,3058.0,False,False +12103025414,2614.0,False,False +12103025415,2834.0,False,False +12103025416,3333.0,False,False +12103025417,2774.0,True,True +12103025501,4470.0,False,False +12103025503,5279.0,True,True +12103025505,2771.0,True,True +12103025506,5767.0,False,False +12103025602,3100.0,True,True +12103025603,2632.0,True,True +12103025604,1368.0,True,True +12103025700,4091.0,False,False +12103025800,4574.0,True,True +12103025900,5428.0,True,True +12103026001,2749.0,False,False +12103026002,2665.0,False,False +12103026101,2347.0,True,True +12103026102,1254.0,False,False +12103026200,2324.0,True,True +12103026300,7738.0,True,True +12103026400,6703.0,True,True +12103026500,7544.0,True,True +12103026601,3743.0,False,False +12103026602,2758.0,True,True +12103026701,5161.0,True,True +12103026702,6512.0,False,False +12103026703,6726.0,True,True +12103026804,5406.0,False,False +12103026809,2784.0,False,False +12103026811,6100.0,False,False +12103026812,4792.0,False,False +12103026813,3865.0,False,False +12103026814,2335.0,False,False +12103026815,4818.0,False,False +12103026816,5873.0,False,False +12103026817,5598.0,False,False +12103026818,4545.0,True,True +12103026819,2747.0,True,True +12103026820,4613.0,False,False +12103026821,3004.0,False,False +12103026904,4667.0,True,True +12103026907,5968.0,False,False +12103026908,3917.0,False,False +12103026909,4800.0,False,False +12103026910,6247.0,False,False +12103026911,3813.0,False,False +12103026912,4591.0,True,True +12103026913,3214.0,False,False +12103027000,5432.0,False,False +12103027101,4068.0,True,True +12103027105,3202.0,False,False +12103027106,4939.0,False,False +12103027202,5695.0,False,False +12103027204,5031.0,False,False +12103027205,7412.0,False,False +12103027206,5944.0,False,False +12103027207,5075.0,False,False +12103027208,6883.0,False,False +12103027209,1177.0,True,True +12103027210,4980.0,False,False +12103027308,4095.0,True,True +12103027309,2040.0,False,False +12103027310,8420.0,False,False +12103027314,3607.0,False,False +12103027315,5928.0,False,False +12103027316,3965.0,False,False +12103027317,5509.0,False,False +12103027318,4301.0,False,False +12103027319,5418.0,False,False +12103027320,4304.0,False,False +12103027321,1562.0,False,False +12103027322,6863.0,False,False +12103027323,2850.0,False,False +12103027324,3946.0,False,False +12103027325,3849.0,False,False +12103027326,3318.0,False,False +12103027327,4686.0,False,False +12103027401,2726.0,False,False +12103027402,5669.0,True,True +12103027403,1742.0,True,True +12103027501,5695.0,False,False +12103027502,7872.0,False,False +12103027603,2301.0,False,False +12103027604,2038.0,False,False +12103027605,1565.0,False,False +12103027606,1942.0,False,False +12103027701,2450.0,False,False +12103027703,1002.0,False,False +12103027704,2448.0,False,False +12103027801,1588.0,False,False +12103027802,2691.0,False,False +12103027901,2140.0,False,False +12103027903,1548.0,False,False +12103027904,3201.0,False,False +12103028002,4321.0,False,False +12103028003,3049.0,False,False +12103028004,2062.0,False,False +12103028102,3335.0,False,False +12103028103,1677.0,False,False +12103028104,3438.0,True,True +12103028200,2178.0,False,False +12103028300,3583.0,False,False +12103028401,1566.0,True,True +12103028402,1320.0,False,False +12103028500,2157.0,False,False +12103028600,4608.0,False,False +12103028700,2243.0,True,True +12103990000,0.0,False,False +12103990100,0.0,False,False +12105010300,3750.0,True,True +12105010401,1470.0,False,False +12105010402,4128.0,False,False +12105010501,1830.0,False,False +12105010502,4149.0,False,False +12105010601,4151.0,False,False +12105010603,3989.0,False,False +12105010604,3565.0,False,False +12105010701,4843.0,True,True +12105010702,4096.0,False,False +12105010800,3849.0,True,True +12105010900,4555.0,True,True +12105011000,3251.0,True,True +12105011100,3362.0,True,True +12105011202,1729.0,True,True +12105011203,3720.0,True,True +12105011204,1469.0,True,True +12105011300,2078.0,True,True +12105011400,4791.0,True,True +12105011501,6357.0,True,True +12105011502,6384.0,False,False +12105011603,2062.0,True,True +12105011604,4702.0,True,True +12105011605,3342.0,True,True +12105011606,1969.0,True,True +12105011704,4823.0,True,True +12105011721,3405.0,True,True +12105011722,3183.0,True,True +12105011731,5931.0,False,True +12105011732,3295.0,True,True +12105011821,3090.0,False,False +12105011822,4214.0,False,False +12105011832,4766.0,False,False +12105011833,7896.0,False,False +12105011834,6189.0,False,False +12105011835,4727.0,False,False +12105011836,3562.0,False,False +12105011901,5521.0,True,False +12105011902,3659.0,False,False +12105011908,3927.0,False,False +12105011909,3073.0,False,False +12105011910,1588.0,False,False +12105011911,3074.0,False,False +12105011912,2268.0,False,False +12105011913,2653.0,True,False +12105012001,6218.0,True,True +12105012002,2520.0,True,True +12105012003,6361.0,True,True +12105012004,2260.0,False,False +12105012111,5325.0,False,False +12105012113,6529.0,False,False +12105012124,6143.0,True,True +12105012125,3193.0,True,True +12105012126,4458.0,False,False +12105012127,8129.0,False,False +12105012128,4819.0,False,False +12105012129,7615.0,False,False +12105012203,2690.0,True,True +12105012204,6343.0,False,False +12105012205,1247.0,False,False +12105012206,5336.0,False,False +12105012303,4251.0,False,False +12105012304,5343.0,False,False +12105012305,1617.0,True,True +12105012306,2174.0,False,False +12105012307,3550.0,True,True +12105012309,1648.0,False,False +12105012403,16443.0,False,False +12105012404,2359.0,False,False +12105012405,6119.0,False,False +12105012406,5093.0,False,False +12105012407,1277.0,False,False +12105012408,4387.0,False,False +12105012409,2112.0,False,False +12105012410,2466.0,False,True +12105012411,6474.0,False,False +12105012502,10127.0,False,False +12105012503,17246.0,False,False +12105012504,9233.0,True,True +12105012506,10157.0,True,True +12105012507,5977.0,False,False +12105012601,5738.0,True,True +12105012602,6149.0,True,True +12105012700,6030.0,True,True +12105012802,4786.0,False,False +12105012803,3712.0,False,False +12105012804,4672.0,True,True +12105012900,6020.0,True,True +12105013001,4056.0,False,False +12105013002,4591.0,True,True +12105013101,5006.0,False,False +12105013102,3805.0,True,True +12105013103,997.0,True,True +12105013200,2153.0,True,True +12105013300,2062.0,True,True +12105013400,6047.0,True,True +12105013500,3443.0,False,True +12105013600,5744.0,True,True +12105013701,1461.0,True,True +12105013702,7078.0,True,True +12105013801,3109.0,True,True +12105013802,6624.0,True,True +12105013901,3227.0,True,True +12105013902,5385.0,False,False +12105014001,6533.0,False,False +12105014003,3457.0,False,False +12105014005,3475.0,False,False +12105014006,3015.0,False,False +12105014103,13576.0,True,True +12105014104,839.0,False,True +12105014105,6841.0,True,True +12105014121,2982.0,True,True +12105014123,6860.0,True,True +12105014124,2372.0,True,True +12105014125,6311.0,True,True +12105014201,5859.0,True,True +12105014202,2550.0,False,False +12105014203,2329.0,True,True +12105014301,1538.0,True,True +12105014302,6639.0,False,False +12105014400,8215.0,False,False +12105014501,8420.0,True,True +12105014502,4018.0,True,True +12105014600,4437.0,True,True +12105014701,5480.0,True,True +12105014702,9248.0,True,True +12105014802,3096.0,True,True +12105014803,3385.0,False,False +12105014804,9927.0,False,False +12105014901,11143.0,False,False +12105014902,8050.0,True,True +12105015000,6266.0,True,True +12105015101,3788.0,False,False +12105015102,2347.0,False,False +12105015200,3779.0,True,True +12105015301,4596.0,True,True +12105015302,2270.0,True,True +12105015401,2792.0,True,True +12105015402,3874.0,False,False +12105015404,1179.0,False,False +12105015405,2597.0,True,True +12105015500,4206.0,True,True +12105015600,2699.0,True,True +12105015701,2233.0,False,False +12105015702,4366.0,True,True +12105015801,2413.0,True,True +12105015802,3771.0,True,True +12105015900,2261.0,True,True +12105016001,2757.0,True,True +12105016002,1804.0,True,True +12105016003,2355.0,True,True +12105016100,1461.0,True,True +12105016400,2240.0,True,True +12105980000,0.0,False,False +12107950100,4344.0,False,False +12107950201,5685.0,True,True +12107950202,3489.0,True,True +12107950300,7202.0,True,True +12107950400,2485.0,False,True +12107950500,6439.0,True,True +12107950600,5608.0,True,True +12107950700,3951.0,True,True +12107950800,3402.0,True,True +12107950900,6184.0,True,True +12107951000,4273.0,True,True +12107951100,4343.0,True,True +12107951200,4931.0,True,True +12107951300,3352.0,True,True +12107951401,3612.0,True,True +12107951402,3952.0,True,True +12107980000,0.0,False,False +12109020200,2493.0,False,False +12109020300,4335.0,True,True +12109020400,3417.0,False,False +12109020500,4118.0,False,False +12109020601,4921.0,False,False +12109020602,22550.0,False,False +12109020704,3417.0,False,False +12109020705,6097.0,False,False +12109020706,3390.0,False,False +12109020707,5236.0,False,False +12109020708,5626.0,False,False +12109020710,2351.0,False,False +12109020711,4841.0,False,False +12109020801,8609.0,False,False +12109020802,4043.0,False,False +12109020803,4539.0,False,False +12109020804,4560.0,False,False +12109020805,18593.0,False,False +12109020806,8960.0,False,False +12109020807,2481.0,False,False +12109020901,11077.0,False,False +12109020902,33907.0,False,False +12109021002,4812.0,True,False +12109021003,5963.0,True,True +12109021004,2723.0,False,False +12109021101,5723.0,True,True +12109021102,5060.0,False,False +12109021103,2122.0,False,False +12109021203,9243.0,False,False +12109021204,861.0,False,False +12109021205,1380.0,False,False +12109021206,6894.0,False,False +12109021301,7354.0,False,False +12109021302,5750.0,False,False +12109021403,1610.0,False,False +12109021404,3018.0,False,False +12109021405,5914.0,False,False +12109021406,5104.0,False,False +12109021407,1582.0,False,False +12109990100,0.0,False,False +12109990200,0.0,False,False +12111380100,787.0,True,True +12111380200,3642.0,True,True +12111380300,6354.0,True,True +12111380400,6669.0,True,True +12111380500,6159.0,True,True +12111380600,4052.0,True,True +12111380700,8563.0,True,True +12111380800,3285.0,True,True +12111380901,2438.0,True,True +12111380902,5980.0,True,True +12111381000,1353.0,False,False +12111381101,8614.0,False,False +12111381102,5487.0,False,False +12111381204,3930.0,False,False +12111381300,3733.0,False,False +12111381401,4416.0,True,True +12111381402,6874.0,True,True +12111381502,13221.0,True,True +12111381503,10824.0,False,False +12111381601,6054.0,False,False +12111381602,3806.0,False,False +12111381603,6682.0,True,True +12111381701,2529.0,False,False +12111381702,2675.0,False,False +12111381802,4159.0,True,True +12111381803,5258.0,False,False +12111381804,5871.0,True,True +12111381900,6950.0,False,False +12111382002,8908.0,True,True +12111382003,10244.0,False,False +12111382006,8866.0,False,False +12111382007,5338.0,False,False +12111382008,7987.0,False,False +12111382009,5030.0,False,False +12111382010,1979.0,True,True +12111382106,24866.0,False,False +12111382108,24205.0,False,False +12111382109,13191.0,False,False +12111382110,7231.0,False,False +12111382111,15061.0,False,False +12111382112,9075.0,False,False +12111382113,14472.0,False,False +12111382200,6129.0,True,True +12111980000,0.0,False,False +12111990000,0.0,False,False +12113010100,3460.0,True,True +12113010200,3725.0,False,False +12113010300,13940.0,False,False +12113010400,2639.0,False,False +12113010502,8288.0,False,False +12113010503,6528.0,False,False +12113010504,5483.0,False,False +12113010600,6156.0,True,True +12113010702,7612.0,False,False +12113010704,6690.0,False,False +12113010705,3462.0,True,True +12113010706,8331.0,False,False +12113010707,4189.0,False,False +12113010708,6030.0,False,False +12113010802,5066.0,False,False +12113010808,10146.0,True,True +12113010809,5386.0,False,False +12113010811,16774.0,False,False +12113010812,5059.0,False,False +12113010813,4915.0,False,False +12113010814,6304.0,False,False +12113010815,9685.0,False,False +12113010817,5245.0,False,False +12113010819,13096.0,False,False +12113010900,6546.0,False,False +12113990000,0.0,False,False +12115000101,4769.0,False,False +12115000102,4755.0,True,True +12115000200,5480.0,True,True +12115000300,4216.0,True,True +12115000401,4363.0,False,False +12115000404,1295.0,False,False +12115000405,4148.0,True,True +12115000406,3836.0,True,True +12115000407,4036.0,True,False +12115000501,1697.0,False,False +12115000502,3153.0,False,False +12115000503,3557.0,False,False +12115000601,2468.0,False,False +12115000602,3783.0,False,False +12115000700,2843.0,False,False +12115000801,2160.0,False,False +12115000802,2548.0,False,False +12115000900,2566.0,False,False +12115001000,3634.0,False,False +12115001101,5039.0,False,False +12115001102,5739.0,True,True +12115001201,8175.0,False,False +12115001202,4407.0,True,False +12115001203,4430.0,False,False +12115001204,4346.0,False,False +12115001301,3709.0,False,False +12115001302,4110.0,False,False +12115001303,3256.0,False,False +12115001304,1965.0,False,False +12115001401,8732.0,False,False +12115001402,4736.0,False,False +12115001403,7042.0,False,False +12115001503,3572.0,False,False +12115001504,3079.0,True,True +12115001505,4591.0,False,False +12115001506,5990.0,False,False +12115001507,6477.0,False,False +12115001601,4174.0,False,False +12115001602,3702.0,True,True +12115001702,6078.0,False,False +12115001703,3765.0,True,True +12115001704,2884.0,False,False +12115001801,3354.0,False,False +12115001803,2593.0,True,False +12115001804,2953.0,False,False +12115001805,1827.0,False,False +12115001903,1610.0,False,False +12115001904,2710.0,False,False +12115001905,1051.0,False,False +12115001907,965.0,False,False +12115001908,1129.0,False,False +12115002003,4097.0,False,False +12115002004,4131.0,False,False +12115002005,4465.0,False,False +12115002007,2402.0,False,False +12115002008,3144.0,False,False +12115002009,7874.0,False,False +12115002010,6554.0,False,False +12115002100,7035.0,False,False +12115002201,2932.0,False,False +12115002202,4685.0,False,False +12115002203,4062.0,False,False +12115002302,4747.0,False,False +12115002303,4769.0,False,False +12115002304,2087.0,False,False +12115002305,1416.0,False,False +12115002401,2882.0,False,False +12115002402,3605.0,False,False +12115002504,3119.0,False,False +12115002505,2423.0,False,False +12115002507,4968.0,False,False +12115002508,3331.0,False,False +12115002509,4377.0,False,False +12115002510,3945.0,False,False +12115002511,2917.0,False,False +12115002601,2462.0,False,False +12115002602,2592.0,False,False +12115002603,1840.0,False,False +12115002604,2886.0,False,False +12115002605,2194.0,True,True +12115002710,2686.0,True,True +12115002711,11035.0,False,False +12115002712,35818.0,False,False +12115002713,9730.0,False,False +12115002714,6427.0,False,False +12115002715,7255.0,False,False +12115002716,7027.0,False,False +12115002718,8931.0,False,False +12115002719,6236.0,False,False +12115002720,3075.0,False,False +12115002721,5262.0,True,True +12115002722,9283.0,False,False +12115002723,2850.0,False,False +12115002724,2443.0,False,False +12115990000,0.0,False,False +12117020101,1221.0,True,True +12117020102,1255.0,False,False +12117020201,2204.0,True,True +12117020202,4783.0,False,False +12117020301,2538.0,False,False +12117020302,2385.0,True,True +12117020401,1816.0,True,True +12117020402,3603.0,False,False +12117020500,2661.0,True,True +12117020600,14304.0,False,False +12117020701,17597.0,False,False +12117020703,6113.0,False,False +12117020704,7567.0,False,False +12117020705,2967.0,False,False +12117020803,6477.0,False,False +12117020805,9264.0,False,False +12117020806,7172.0,False,False +12117020807,7014.0,True,True +12117020808,4158.0,False,False +12117020810,3354.0,False,False +12117020811,6439.0,False,False +12117020812,3991.0,False,False +12117020901,4814.0,True,True +12117020902,2408.0,True,True +12117020903,10102.0,True,False +12117021000,4697.0,False,False +12117021100,3404.0,False,False +12117021201,5715.0,False,False +12117021203,6433.0,False,False +12117021204,10422.0,False,False +12117021306,8699.0,False,False +12117021307,7099.0,False,False +12117021311,5344.0,False,False +12117021312,5503.0,False,False +12117021313,7036.0,False,False +12117021314,4174.0,False,False +12117021315,7525.0,False,False +12117021316,4519.0,False,False +12117021317,9338.0,False,False +12117021318,8826.0,False,False +12117021319,1918.0,False,False +12117021320,7249.0,False,False +12117021321,3252.0,False,False +12117021401,8399.0,False,False +12117021403,8902.0,False,False +12117021404,7543.0,False,False +12117021502,5222.0,False,False +12117021503,1918.0,False,False +12117021504,2938.0,False,False +12117021505,4834.0,False,False +12117021506,3786.0,False,False +12117021604,4513.0,False,False +12117021606,6953.0,False,False +12117021608,6301.0,False,False +12117021609,3179.0,False,False +12117021611,4863.0,False,False +12117021612,4082.0,False,False +12117021613,3546.0,False,False +12117021614,6155.0,False,False +12117021615,3549.0,False,False +12117021616,3594.0,False,False +12117021704,4430.0,False,False +12117021705,5285.0,False,False +12117021706,3666.0,False,False +12117021707,6390.0,False,False +12117021708,7079.0,False,False +12117021802,4579.0,False,False +12117021803,3681.0,False,False +12117021805,1530.0,False,False +12117021806,4823.0,False,False +12117021901,5190.0,False,False +12117021902,4484.0,True,False +12117022001,2918.0,True,True +12117022002,4737.0,False,False +12117022004,2750.0,False,False +12117022005,8228.0,False,False +12117022101,6843.0,True,True +12117022104,6502.0,False,False +12117022105,3300.0,False,False +12117022106,7428.0,False,False +12117022201,5422.0,False,False +12117022205,3487.0,False,False +12117022206,5974.0,False,False +12117022207,6682.0,False,False +12117022208,4539.0,False,False +12117022209,3818.0,False,False +12119910100,3460.0,True,True +12119910300,2472.0,True,True +12119910401,2794.0,True,True +12119910402,2955.0,True,True +12119910500,5240.0,False,False +12119910601,5135.0,True,True +12119910602,2251.0,False,False +12119910700,6501.0,True,True +12119910800,3678.0,False,False +12119910900,6876.0,False,False +12119911000,1783.0,False,False +12119911200,39928.0,False,False +12119911301,3719.0,True,True +12119911302,877.0,True,True +12119911400,19762.0,False,False +12119911500,2093.0,False,False +12119911701,10273.0,False,False +12119911702,5247.0,False,False +12119980000,0.0,False,False +12121970100,7200.0,True,True +12121970200,4524.0,True,True +12121970301,1844.0,True,True +12121970302,6559.0,True,True +12121970400,7941.0,False,False +12121970500,8447.0,True,False +12121970600,7531.0,True,True +12123950100,3477.0,True,True +12123950200,4578.0,True,True +12123950300,5644.0,True,True +12123950400,8171.0,True,True +12123990000,0.0,False,False +12125960100,3822.0,True,True +12125960200,7657.0,True,True +12125960300,3824.0,True,True +12127080100,10100.0,False,False +12127080201,2404.0,False,False +12127080202,2490.0,False,False +12127080300,3416.0,True,True +12127080400,3498.0,False,False +12127080500,2735.0,False,False +12127080600,3331.0,False,False +12127080700,4293.0,False,False +12127080803,4819.0,False,False +12127080804,8766.0,True,True +12127080805,5473.0,True,True +12127080806,2775.0,False,False +12127080807,5446.0,False,False +12127080901,4362.0,True,True +12127080902,3895.0,True,True +12127081000,3768.0,True,True +12127081101,2705.0,True,True +12127081102,1913.0,False,False +12127081200,4322.0,True,True +12127081300,1792.0,False,False +12127081500,1531.0,True,True +12127081600,2766.0,True,True +12127081700,7776.0,True,True +12127081800,2955.0,True,True +12127081900,2946.0,False,True +12127082000,2640.0,False,True +12127082100,4473.0,True,True +12127082201,3791.0,True,True +12127082202,2080.0,False,False +12127082301,7061.0,True,False +12127082401,3782.0,True,True +12127082404,2508.0,True,True +12127082405,4017.0,False,False +12127082406,2698.0,False,False +12127082410,6920.0,False,False +12127082411,4146.0,False,False +12127082412,2576.0,False,False +12127082413,4196.0,False,False +12127082414,3773.0,False,False +12127082415,2735.0,True,True +12127082503,5819.0,True,True +12127082506,4070.0,False,False +12127082507,7645.0,True,True +12127082508,4688.0,False,False +12127082509,4515.0,False,False +12127082510,3598.0,False,False +12127082511,2662.0,True,True +12127082604,2629.0,False,False +12127082605,3568.0,False,False +12127082606,3230.0,False,False +12127082607,1940.0,False,False +12127082701,1806.0,False,False +12127082703,2854.0,False,False +12127082704,2464.0,False,False +12127082705,2375.0,False,False +12127082801,2692.0,False,False +12127082802,3914.0,False,False +12127082902,6092.0,False,False +12127082903,4959.0,True,True +12127082904,5529.0,False,False +12127083003,6232.0,True,True +12127083005,3926.0,False,False +12127083006,6855.0,False,False +12127083007,5032.0,True,True +12127083008,3080.0,True,True +12127083009,3919.0,False,False +12127083203,7858.0,False,False +12127083205,3610.0,False,False +12127083206,2954.0,False,False +12127083207,8412.0,False,False +12127083208,13562.0,False,False +12127083209,6610.0,False,False +12127090101,4452.0,True,True +12127090102,3666.0,True,True +12127090202,7049.0,True,True +12127090203,5896.0,True,True +12127090204,8361.0,False,False +12127090303,2903.0,False,False +12127090304,4963.0,True,True +12127090305,3726.0,False,False +12127090306,6219.0,False,False +12127090307,6996.0,False,False +12127090400,5645.0,False,False +12127090500,1852.0,True,True +12127090600,5914.0,True,True +12127090701,5587.0,False,False +12127090702,5348.0,True,True +12127090803,5103.0,False,False +12127090804,8157.0,True,True +12127090805,5464.0,False,False +12127090806,4749.0,True,True +12127090902,10715.0,False,False +12127090903,4610.0,False,False +12127090904,5808.0,False,False +12127091001,6161.0,False,False +12127091005,2343.0,False,False +12127091013,8200.0,False,False +12127091015,4783.0,False,False +12127091016,6587.0,True,False +12127091017,3959.0,True,False +12127091018,7005.0,True,False +12127091019,5340.0,False,False +12127091020,6647.0,False,False +12127091021,2658.0,False,False +12127091022,8499.0,False,False +12127091023,2989.0,False,False +12127091024,7577.0,False,False +12127091025,4563.0,False,False +12127091026,7293.0,False,False +12127091027,7412.0,False,False +12127091028,5111.0,True,True +12127091029,5076.0,False,False +12127092500,4329.0,False,False +12127990000,0.0,False,False +12129010100,5400.0,True,True +12129010201,9516.0,False,False +12129010202,8389.0,True,True +12129010203,9016.0,False,False +12129990000,0.0,False,False +12131950101,7180.0,True,True +12131950102,2983.0,False,True +12131950200,5933.0,True,True +12131950301,6646.0,True,True +12131950302,6000.0,True,True +12131950400,2892.0,True,True +12131950501,4129.0,True,True +12131950502,5510.0,False,False +12131950601,12535.0,False,False +12131950602,3919.0,False,False +12131950603,10535.0,False,False +12131990000,0.0,False,False +12133970102,1695.0,False,True +12133970103,3256.0,True,True +12133970104,2873.0,True,True +12133970200,3249.0,True,True +12133970301,2227.0,True,True +12133970302,7373.0,True,True +12133970303,4091.0,True,True +13001950100,3179.0,True,False +13001950200,4766.0,True,True +13001950300,5154.0,True,True +13001950400,1674.0,False,False +13001950500,3667.0,True,False +13003960100,2119.0,True,True +13003960200,4687.0,True,False +13003960300,1433.0,True,True +13005970100,2737.0,True,True +13005970201,4424.0,True,True +13005970202,4040.0,True,True +13007960100,1989.0,True,True +13007960200,1143.0,True,True +13009970100,6069.0,False,False +13009970200,6333.0,True,True +13009970300,6050.0,False,False +13009970400,4378.0,False,True +13009970500,6882.0,False,True +13009970600,3358.0,True,True +13009970701,2448.0,True,True +13009970702,2167.0,True,True +13009970800,7426.0,True,True +13011970100,5394.0,True,True +13011970200,4531.0,True,True +13011970300,4778.0,True,True +13011970400,4005.0,True,True +13013180103,5583.0,False,False +13013180104,1849.0,True,False +13013180105,2988.0,False,False +13013180106,2687.0,True,False +13013180107,4117.0,False,False +13013180108,2788.0,False,True +13013180203,3638.0,True,True +13013180204,2780.0,False,False +13013180205,4728.0,True,True +13013180206,2943.0,False,False +13013180301,2590.0,False,False +13013180302,6162.0,False,False +13013180303,5862.0,True,True +13013180401,6124.0,False,False +13013180402,6930.0,False,False +13013180501,6771.0,False,False +13013180502,4716.0,False,False +13013180503,5735.0,False,False +13015960101,1487.0,True,False +13015960102,10296.0,False,False +13015960200,11099.0,False,False +13015960300,6452.0,False,False +13015960401,10696.0,True,False +13015960402,8975.0,False,False +13015960500,8371.0,True,True +13015960600,8892.0,True,False +13015960700,7819.0,True,True +13015960801,3873.0,True,True +13015960802,3087.0,True,True +13015960803,5557.0,True,False +13015960901,3081.0,True,True +13015960902,7004.0,False,False +13015961000,8230.0,False,False +13017960100,2832.0,True,True +13017960200,1555.0,False,True +13017960300,3348.0,True,True +13017960400,4220.0,True,True +13017960500,5078.0,True,True +13019970100,1634.0,True,True +13019970200,4524.0,True,True +13019970300,2654.0,True,True +13019970400,3303.0,True,True +13019970500,3526.0,True,True +13019970600,3511.0,True,True +13021010100,1570.0,True,True +13021010200,1838.0,True,False +13021010300,1140.0,True,True +13021010400,1894.0,True,True +13021010500,2852.0,False,True +13021010800,1392.0,False,False +13021011000,4301.0,True,True +13021011100,1888.0,True,True +13021011500,1309.0,True,True +13021011701,2472.0,True,True +13021011702,4443.0,True,True +13021011800,3589.0,False,False +13021011900,1979.0,False,False +13021012000,4419.0,False,False +13021012101,2765.0,False,False +13021012102,5230.0,False,False +13021012200,2621.0,True,True +13021012300,2511.0,True,True +13021012400,4634.0,True,True +13021012500,2565.0,True,True +13021012600,4474.0,True,True +13021012700,1753.0,True,True +13021012800,3253.0,True,True +13021012900,1456.0,True,True +13021013101,5008.0,True,True +13021013102,4259.0,True,True +13021013201,6496.0,True,True +13021013202,2038.0,True,True +13021013302,4181.0,True,True +13021013407,4823.0,True,True +13021013408,4390.0,False,False +13021013409,4329.0,False,False +13021013410,5791.0,False,False +13021013411,3997.0,False,False +13021013502,1652.0,True,True +13021013503,2548.0,True,True +13021013504,8456.0,False,False +13021013603,5345.0,False,False +13021013604,5075.0,False,False +13021013605,5721.0,False,False +13021013606,6097.0,False,False +13021013700,3393.0,True,True +13021013800,1454.0,True,True +13021013900,1799.0,True,True +13023790100,4804.0,True,True +13023790200,2707.0,True,True +13023790300,5296.0,False,False +13025960100,7074.0,True,True +13025960200,6193.0,True,True +13025960300,5489.0,True,False +13027960200,1346.0,True,True +13027960300,5591.0,True,False +13027960400,3576.0,True,True +13027960500,2627.0,True,True +13027960600,2450.0,True,True +13029920101,5249.0,False,True +13029920102,5130.0,True,True +13029920301,2259.0,False,False +13029920303,5828.0,True,False +13029920305,4232.0,False,False +13029920306,14365.0,False,False +13029980000,0.0,False,False +13031110100,3704.0,True,True +13031110200,8601.0,True,True +13031110300,8511.0,False,False +13031110401,3838.0,True,True +13031110403,6739.0,True,True +13031110404,8938.0,False,True +13031110500,4451.0,False,False +13031110601,6190.0,False,False +13031110602,4412.0,True,True +13031110700,10438.0,False,False +13031110800,2616.0,True,True +13031110900,7682.0,True,True +13033950100,5865.0,False,False +13033950200,2586.0,True,True +13033950400,4582.0,True,True +13033950500,5099.0,True,True +13033950700,2772.0,True,True +13033950900,1616.0,True,True +13035150100,8485.0,False,False +13035150200,7843.0,True,True +13035150300,7762.0,True,True +13037950100,3228.0,True,True +13037950200,3137.0,True,True +13039010100,2618.0,False,False +13039010200,5252.0,False,False +13039010301,7897.0,True,False +13039010302,5038.0,True,True +13039010401,12602.0,False,False +13039010402,5576.0,False,False +13039010403,3861.0,False,False +13039010500,3158.0,True,False +13039010601,6074.0,True,True +13039010602,1155.0,True,True +13039990000,0.0,False,False +13043950100,4792.0,True,True +13043950200,3525.0,True,True +13043950300,2495.0,True,True +13045910101,5872.0,True,True +13045910103,5172.0,False,False +13045910104,10218.0,False,False +13045910200,12725.0,False,False +13045910300,6751.0,True,True +13045910400,3273.0,True,True +13045910501,8778.0,False,True +13045910502,3047.0,True,True +13045910600,6052.0,False,False +13045910701,9664.0,False,False +13045910702,8218.0,False,False +13045910703,8695.0,True,False +13045910800,4344.0,True,True +13045910900,4178.0,False,False +13045911000,6564.0,False,False +13045911100,7574.0,False,False +13045911200,6058.0,True,True +13047030100,6629.0,True,True +13047030201,5249.0,False,False +13047030202,7045.0,False,False +13047030301,8035.0,False,False +13047030303,3034.0,False,False +13047030304,3439.0,False,False +13047030401,7125.0,False,False +13047030402,6431.0,False,False +13047030500,6286.0,True,False +13047030600,5857.0,False,False +13047030700,7570.0,True,False +13049010100,9788.0,True,True +13049010200,3252.0,False,False +13051000100,1600.0,False,True +13051000300,1509.0,False,False +13051000601,4946.0,True,True +13051000900,997.0,False,False +13051001100,1865.0,True,True +13051001200,2494.0,True,True +13051001500,1177.0,False,True +13051002000,1430.0,True,True +13051002100,2149.0,True,True +13051002200,4361.0,True,True +13051002300,1615.0,True,True +13051002600,1732.0,False,False +13051002700,3146.0,True,True +13051002800,2830.0,True,True +13051002900,2858.0,False,False +13051003000,1778.0,False,False +13051003301,1797.0,True,True +13051003302,1871.0,True,True +13051003400,4440.0,False,False +13051003501,2769.0,True,True +13051003502,3569.0,True,True +13051003601,3721.0,True,True +13051003602,5061.0,True,True +13051003700,2070.0,True,True +13051003800,3064.0,False,False +13051003900,3521.0,True,False +13051004001,4499.0,False,False +13051004002,3219.0,False,False +13051004100,2065.0,False,False +13051004207,3349.0,True,True +13051004208,4853.0,False,False +13051004209,3386.0,True,True +13051004210,4999.0,True,False +13051004211,5339.0,False,False +13051004212,5629.0,False,False +13051004300,2864.0,True,True +13051004400,2460.0,True,True +13051004500,4286.0,True,True +13051010101,1025.0,True,True +13051010102,4517.0,False,False +13051010200,4781.0,False,False +13051010501,6176.0,True,True +13051010502,3700.0,True,True +13051010601,4099.0,True,True +13051010603,2095.0,False,False +13051010605,0.0,False,False +13051010700,26753.0,False,False +13051010801,3636.0,False,False +13051010802,8183.0,False,False +13051010803,10648.0,False,False +13051010806,6017.0,False,False +13051010807,6325.0,False,False +13051010808,11905.0,False,False +13051010809,11437.0,False,False +13051010901,3956.0,True,True +13051011003,6773.0,False,False +13051011004,3649.0,False,False +13051011005,4726.0,False,False +13051011006,4350.0,False,False +13051011103,3460.0,False,False +13051011104,5757.0,False,False +13051011106,5583.0,False,False +13051011107,3310.0,False,False +13051011108,3106.0,False,False +13051011109,6971.0,False,False +13051011200,1612.0,False,False +13051011300,2180.0,False,False +13051011400,1883.0,True,True +13051011500,2455.0,False,False +13051011600,2110.0,True,True +13051980000,0.0,False,False +13051990000,0.0,False,False +13053020100,2523.0,True,True +13053020201,3167.0,False,False +13053020203,1678.0,True,False +13053020205,2455.0,True,False +13053020206,737.0,True,False +13055010100,2004.0,False,False +13055010200,6370.0,True,True +13055010300,2737.0,True,True +13055010400,5344.0,True,True +13055010500,5807.0,True,True +13055010600,2550.0,False,False +13057090100,10145.0,False,False +13057090200,8370.0,False,False +13057090300,12544.0,False,False +13057090400,9110.0,True,True +13057090501,6848.0,False,False +13057090502,15936.0,False,False +13057090601,8038.0,True,True +13057090602,8263.0,False,False +13057090701,23491.0,False,False +13057090702,7697.0,False,False +13057090802,7584.0,False,False +13057090803,11939.0,False,False +13057090804,9670.0,False,False +13057090901,8527.0,False,False +13057090902,16463.0,False,False +13057090904,10465.0,False,False +13057090905,4206.0,False,False +13057091001,4922.0,False,False +13057091003,8172.0,False,False +13057091005,7399.0,False,False +13057091006,5259.0,False,False +13057091007,6719.0,False,False +13057091008,9507.0,False,False +13057091101,6501.0,False,False +13057091102,9623.0,False,False +13057091103,10117.0,False,False +13059000100,2285.0,False,False +13059000401,1410.0,False,False +13059000402,8352.0,False,False +13059000600,3239.0,False,True +13059000900,3967.0,True,True +13059001200,3163.0,False,False +13059001700,2086.0,True,False +13059001800,2303.0,False,False +13059001900,3207.0,False,False +13059002000,1849.0,False,False +13059002100,4199.0,False,False +13059002200,2505.0,False,False +13059030100,6171.0,True,True +13059030200,5327.0,True,True +13059130300,5816.0,True,True +13059130400,6054.0,False,False +13059130500,2907.0,False,False +13059130600,6858.0,True,False +13059130700,6103.0,False,False +13059140300,5429.0,True,True +13059140400,3575.0,True,True +13059140500,1899.0,True,True +13059140600,4674.0,False,False +13059150300,3392.0,False,False +13059150400,4325.0,False,False +13059150500,4869.0,False,False +13059150600,3688.0,True,False +13059150700,5566.0,False,False +13059150800,6674.0,False,False +13059150900,4284.0,False,False +13061960300,2951.0,True,True +13063040202,2850.0,True,True +13063040203,3735.0,False,True +13063040204,4648.0,True,False +13063040302,5740.0,True,True +13063040303,6666.0,True,True +13063040306,4502.0,True,True +13063040307,5038.0,True,True +13063040308,4262.0,True,True +13063040407,4046.0,True,True +13063040408,8489.0,False,True +13063040409,5915.0,False,False +13063040410,7166.0,True,True +13063040411,13311.0,False,False +13063040412,7920.0,True,True +13063040413,7329.0,True,True +13063040414,2068.0,True,True +13063040415,6527.0,True,True +13063040416,3746.0,True,True +13063040417,5850.0,True,True +13063040509,4698.0,False,False +13063040510,3892.0,True,True +13063040512,5552.0,True,True +13063040513,4604.0,False,False +13063040514,7778.0,True,False +13063040515,7359.0,True,True +13063040516,6535.0,True,True +13063040518,5789.0,True,True +13063040519,4854.0,True,True +13063040520,4153.0,True,True +13063040521,3563.0,True,False +13063040522,4969.0,True,True +13063040523,2984.0,True,False +13063040524,7343.0,True,False +13063040525,3124.0,True,True +13063040526,7061.0,True,True +13063040606,3894.0,True,False +13063040608,13393.0,False,False +13063040609,6698.0,True,True +13063040611,6850.0,True,True +13063040612,7938.0,True,True +13063040613,8399.0,False,False +13063040614,4971.0,False,False +13063040615,2111.0,False,False +13063040616,8451.0,True,False +13063040617,1329.0,True,True +13063040619,2556.0,False,False +13063040620,4575.0,False,False +13063040621,10083.0,True,False +13063040622,8224.0,True,True +13063980000,0.0,False,False +13065970100,5221.0,True,True +13065970200,1465.0,True,True +13067030101,7908.0,False,False +13067030103,9369.0,False,False +13067030104,3883.0,False,False +13067030106,7059.0,False,False +13067030107,5395.0,False,False +13067030209,7662.0,False,False +13067030214,7654.0,False,False +13067030215,9696.0,False,False +13067030218,5190.0,False,False +13067030219,10652.0,False,False +13067030220,1663.0,False,False +13067030222,5993.0,False,False +13067030223,6239.0,False,False +13067030224,6508.0,False,False +13067030226,11024.0,False,False +13067030227,8236.0,False,False +13067030228,7363.0,False,False +13067030229,6819.0,False,False +13067030230,13473.0,False,False +13067030231,8329.0,False,False +13067030232,6472.0,False,False +13067030233,4631.0,False,False +13067030234,6630.0,False,False +13067030235,4948.0,False,False +13067030236,4804.0,False,False +13067030238,6741.0,False,False +13067030239,7819.0,False,False +13067030310,8212.0,False,False +13067030311,5991.0,False,False +13067030312,6804.0,False,False +13067030313,8998.0,False,False +13067030314,7928.0,False,False +13067030318,7680.0,False,False +13067030319,4603.0,False,False +13067030320,7542.0,False,False +13067030322,3510.0,False,False +13067030324,3840.0,False,False +13067030326,4442.0,False,False +13067030327,4981.0,False,False +13067030328,6752.0,False,False +13067030329,4863.0,False,False +13067030330,6396.0,False,False +13067030331,5768.0,False,False +13067030332,3199.0,False,False +13067030333,5997.0,False,False +13067030334,3389.0,False,False +13067030335,5008.0,False,False +13067030336,7165.0,False,False +13067030337,4564.0,False,False +13067030339,6362.0,False,False +13067030340,3987.0,False,False +13067030341,4301.0,False,False +13067030342,4625.0,False,False +13067030343,4455.0,False,False +13067030344,3850.0,False,False +13067030345,5602.0,False,False +13067030405,6449.0,False,False +13067030407,4642.0,False,False +13067030408,2862.0,False,False +13067030409,3184.0,False,False +13067030410,4656.0,False,False +13067030411,2206.0,False,True +13067030412,5269.0,True,True +13067030413,5554.0,True,True +13067030414,3389.0,True,True +13067030502,7314.0,False,False +13067030504,5956.0,False,False +13067030505,6895.0,False,False +13067030506,4824.0,False,False +13067030507,4979.0,False,False +13067030601,9189.0,False,False +13067030602,6709.0,False,False +13067030700,4580.0,True,True +13067030800,6135.0,False,False +13067030901,8349.0,False,False +13067030902,6003.0,False,True +13067030904,7332.0,True,True +13067030905,8700.0,True,True +13067031001,5366.0,True,True +13067031002,9392.0,True,True +13067031004,8313.0,True,False +13067031005,5122.0,False,False +13067031101,6146.0,True,False +13067031106,8628.0,False,False +13067031108,5190.0,False,False +13067031110,3241.0,False,False +13067031111,3745.0,False,False +13067031112,5932.0,False,False +13067031113,1411.0,False,False +13067031114,7511.0,False,False +13067031115,4690.0,False,False +13067031116,4387.0,True,False +13067031117,6131.0,False,False +13067031118,6169.0,False,False +13067031205,6588.0,False,False +13067031206,10395.0,False,False +13067031207,4714.0,False,False +13067031208,6010.0,False,False +13067031209,4879.0,False,False +13067031211,4558.0,False,False +13067031212,2330.0,False,False +13067031306,4566.0,False,False +13067031307,6608.0,False,False +13067031308,5194.0,True,False +13067031309,6899.0,True,False +13067031310,8613.0,True,True +13067031311,9633.0,True,False +13067031312,10519.0,False,False +13067031313,10815.0,False,False +13067031404,6273.0,False,False +13067031405,8152.0,False,False +13067031406,8309.0,True,False +13067031408,6956.0,False,False +13067031409,6166.0,False,False +13067031503,9443.0,False,False +13067031505,7145.0,False,False +13067031506,5414.0,False,False +13067031507,3907.0,False,False +13067031508,6040.0,False,False +13067031509,11568.0,False,False +13069010100,3324.0,True,True +13069010200,2986.0,True,False +13069010300,5982.0,True,True +13069010400,5758.0,True,True +13069010500,3987.0,True,True +13069010600,5614.0,True,False +13069010700,6234.0,True,False +13069010801,4515.0,True,True +13069010802,4621.0,True,True +13071970100,5801.0,True,True +13071970200,2776.0,True,True +13071970300,5062.0,True,True +13071970400,3608.0,True,True +13071970500,3347.0,True,False +13071970600,5751.0,True,True +13071970701,6525.0,True,True +13071970702,2584.0,True,True +13071970800,3036.0,True,True +13071970900,6996.0,True,False +13073030102,10095.0,False,False +13073030103,3438.0,False,False +13073030105,5628.0,False,False +13073030106,3368.0,False,False +13073030201,7376.0,False,False +13073030202,2862.0,False,False +13073030203,6587.0,False,False +13073030302,11950.0,False,False +13073030304,10669.0,False,False +13073030306,6753.0,False,False +13073030307,7211.0,False,False +13073030308,11238.0,False,False +13073030309,10820.0,False,False +13073030401,2917.0,False,False +13073030402,11272.0,False,False +13073030503,9283.0,False,False +13073030504,3868.0,False,False +13073030505,8303.0,False,False +13073030506,12912.0,False,False +13073030603,4155.0,False,False +13075960100,2011.0,True,True +13075960200,3572.0,True,True +13075960300,6621.0,True,True +13075960400,4973.0,True,True +13077170100,7964.0,False,False +13077170200,7489.0,False,False +13077170303,6374.0,False,False +13077170304,7121.0,False,False +13077170305,11332.0,True,True +13077170306,10346.0,False,False +13077170402,9079.0,False,False +13077170403,5268.0,False,False +13077170404,5192.0,False,False +13077170405,7596.0,False,False +13077170406,4257.0,False,False +13077170501,7498.0,False,False +13077170502,6917.0,False,False +13077170503,6003.0,False,False +13077170601,8494.0,True,True +13077170602,8459.0,False,False +13077170603,5836.0,False,False +13077170700,7943.0,True,False +13077170801,5082.0,False,False +13077170802,5010.0,False,False +13079070100,3359.0,True,True +13079070201,5900.0,True,True +13079070202,3066.0,True,True +13081010100,3961.0,True,True +13081010201,4968.0,True,True +13081010202,2833.0,True,True +13081010300,3257.0,True,True +13081010400,6152.0,True,True +13081010500,1542.0,True,True +13083040101,4667.0,True,True +13083040102,3503.0,True,True +13083040200,3908.0,False,False +13083040300,4119.0,False,False +13085970100,8448.0,False,False +13085970201,7979.0,False,False +13085970202,8109.0,False,False +13087970100,3393.0,True,True +13087970200,2767.0,True,True +13087970300,6410.0,True,True +13087970400,4211.0,True,True +13087970600,5593.0,False,True +13087970700,1692.0,True,True +13087970800,2616.0,True,True +13089020100,1997.0,False,False +13089020200,1881.0,False,False +13089020300,4476.0,False,False +13089020400,2701.0,False,False +13089020500,3161.0,False,False +13089020600,2050.0,True,True +13089020700,2634.0,False,False +13089020801,2509.0,False,False +13089020802,4411.0,False,False +13089020900,5927.0,False,False +13089021101,3927.0,False,False +13089021102,6533.0,False,False +13089021202,9060.0,False,False +13089021204,3002.0,True,True +13089021208,4237.0,False,False +13089021209,6793.0,False,False +13089021210,5751.0,False,False +13089021211,5065.0,False,False +13089021213,3526.0,False,False +13089021214,6206.0,False,False +13089021215,6550.0,False,False +13089021216,7974.0,False,False +13089021217,2609.0,False,False +13089021218,6071.0,False,False +13089021301,3817.0,True,True +13089021303,5869.0,True,True +13089021305,4970.0,True,True +13089021306,5073.0,True,True +13089021307,4185.0,True,True +13089021308,4391.0,True,True +13089021405,4599.0,False,False +13089021409,3930.0,True,True +13089021410,5443.0,True,True +13089021411,3242.0,False,False +13089021412,3764.0,False,False +13089021413,4081.0,True,True +13089021414,4156.0,True,True +13089021415,3687.0,False,False +13089021416,2298.0,False,True +13089021417,6193.0,True,True +13089021502,4297.0,False,False +13089021503,3938.0,False,False +13089021504,5357.0,False,False +13089021602,3759.0,False,False +13089021603,4943.0,False,False +13089021604,3237.0,False,False +13089021605,6236.0,False,False +13089021703,4713.0,False,False +13089021704,6045.0,False,False +13089021705,4879.0,False,False +13089021706,4893.0,False,False +13089021805,7536.0,False,False +13089021806,6732.0,False,False +13089021808,5133.0,False,False +13089021809,6785.0,False,False +13089021810,5788.0,False,False +13089021812,2056.0,False,False +13089021813,2752.0,True,True +13089021814,6120.0,True,True +13089021906,5572.0,True,False +13089021907,9022.0,False,False +13089021908,5443.0,True,True +13089021909,7168.0,True,True +13089021910,6006.0,True,False +13089021911,1569.0,True,True +13089021912,3509.0,False,False +13089021913,4450.0,True,True +13089022001,4559.0,False,False +13089022004,5754.0,True,False +13089022005,5395.0,True,True +13089022007,4098.0,True,True +13089022008,7764.0,True,True +13089022009,5572.0,True,True +13089022010,2424.0,True,True +13089022100,3689.0,True,True +13089022203,2130.0,False,False +13089022204,8242.0,True,True +13089022301,6061.0,False,False +13089022302,4371.0,False,False +13089022401,3873.0,False,False +13089022402,6698.0,False,False +13089022403,3987.0,False,False +13089022500,7102.0,False,False +13089022600,6600.0,False,False +13089022700,5413.0,False,False +13089022800,4361.0,False,False +13089022900,3767.0,False,False +13089023000,2115.0,False,False +13089023101,4462.0,False,True +13089023102,3390.0,True,False +13089023107,4201.0,True,False +13089023108,4557.0,True,True +13089023111,2263.0,True,True +13089023112,4877.0,True,True +13089023113,2780.0,False,False +13089023114,2901.0,True,True +13089023115,2240.0,True,True +13089023204,7514.0,False,True +13089023206,8127.0,True,True +13089023208,7666.0,True,True +13089023209,5569.0,False,False +13089023210,8059.0,True,True +13089023211,3480.0,False,False +13089023212,3608.0,False,False +13089023213,7148.0,True,True +13089023214,6165.0,False,False +13089023303,7087.0,True,False +13089023306,7675.0,False,False +13089023309,10076.0,True,True +13089023310,10967.0,True,True +13089023311,5045.0,False,False +13089023312,10571.0,False,False +13089023313,5294.0,False,False +13089023314,6061.0,False,False +13089023315,5933.0,False,False +13089023316,8865.0,False,False +13089023410,4428.0,True,True +13089023411,3965.0,True,True +13089023412,6008.0,False,False +13089023413,4104.0,False,False +13089023414,6603.0,False,False +13089023416,7054.0,False,False +13089023418,16529.0,False,False +13089023419,10658.0,False,False +13089023421,9102.0,True,True +13089023422,6224.0,False,False +13089023423,7515.0,False,False +13089023424,5533.0,False,False +13089023425,6057.0,False,False +13089023426,4693.0,False,False +13089023427,2789.0,False,False +13089023428,10151.0,True,True +13089023501,3361.0,True,True +13089023504,3238.0,True,True +13089023505,3624.0,True,True +13089023506,6465.0,True,True +13089023507,4268.0,False,False +13089023601,3188.0,True,True +13089023602,2299.0,True,True +13089023603,3650.0,True,True +13089023700,6054.0,True,True +13089023801,4125.0,False,False +13089023802,4533.0,True,True +13089023803,5862.0,True,True +13089980000,0.0,False,False +13091960100,3614.0,True,True +13091960200,3582.0,True,False +13091960300,6050.0,False,False +13091960400,3723.0,True,True +13091960500,1897.0,True,False +13091960600,1963.0,True,True +13093970100,5145.0,True,True +13093970200,1970.0,True,True +13093970300,6621.0,True,True +13095000100,4940.0,True,True +13095000200,2585.0,True,True +13095000400,6357.0,True,True +13095000501,5021.0,False,False +13095000502,4070.0,False,False +13095000600,3607.0,True,True +13095000700,1603.0,False,False +13095000800,1305.0,True,True +13095000900,2165.0,True,True +13095001000,2614.0,False,True +13095001100,5173.0,True,True +13095001403,2233.0,True,True +13095001500,2432.0,True,True +13095010302,5982.0,True,True +13095010401,7284.0,False,False +13095010402,3399.0,True,True +13095010403,1572.0,False,False +13095010500,2023.0,False,False +13095010601,1911.0,True,True +13095010602,3337.0,True,True +13095010700,5731.0,True,True +13095010900,1690.0,True,True +13095011000,2549.0,True,True +13095011200,4173.0,True,True +13095011300,2975.0,True,True +13095011400,1337.0,True,True +13095011600,1635.0,True,True +13097080102,8288.0,False,False +13097080103,7616.0,False,False +13097080201,5410.0,True,True +13097080202,11259.0,False,False +13097080301,13020.0,True,True +13097080303,3603.0,True,False +13097080304,5463.0,True,False +13097080402,9296.0,False,False +13097080403,4817.0,False,False +13097080404,8201.0,False,False +13097080505,4588.0,False,False +13097080506,6069.0,False,False +13097080507,3613.0,False,True +13097080508,5339.0,False,True +13097080509,6189.0,False,False +13097080510,8492.0,False,False +13097080511,9531.0,False,False +13097080602,5478.0,False,False +13097080603,7293.0,False,False +13097080604,9751.0,False,False +13099090100,1143.0,True,True +13099090200,2543.0,True,True +13099090300,1055.0,True,True +13099090400,3736.0,True,True +13099090500,1835.0,True,True +13101880100,1486.0,False,False +13101880200,2495.0,True,False +13103030100,3560.0,False,False +13103030202,7317.0,False,False +13103030203,9431.0,False,False +13103030204,4053.0,False,False +13103030301,6356.0,False,False +13103030303,2685.0,False,False +13103030304,7485.0,False,False +13103030305,8038.0,False,False +13103030401,4849.0,False,False +13103030402,6703.0,False,False +13105000100,3697.0,True,True +13105000200,2887.0,True,True +13105000300,3478.0,True,True +13105000400,3937.0,True,True +13105000500,5167.0,True,True +13107970100,5290.0,True,True +13107970200,1746.0,True,True +13107970300,4560.0,True,True +13107970400,4834.0,True,True +13107970500,1304.0,True,True +13107970600,4799.0,True,True +13109970100,2549.0,True,False +13109970200,4005.0,False,False +13109970300,4133.0,True,True +13111050100,3792.0,True,True +13111050200,7205.0,True,True +13111050300,2401.0,False,False +13111050400,7150.0,False,False +13111050500,4847.0,False,False +13113140101,7826.0,False,False +13113140102,5511.0,False,False +13113140203,6181.0,False,False +13113140204,5572.0,False,False +13113140206,4282.0,False,False +13113140207,5618.0,False,False +13113140208,6864.0,False,False +13113140303,4912.0,False,False +13113140304,6938.0,False,False +13113140305,5079.0,False,False +13113140306,7908.0,False,False +13113140307,5484.0,False,False +13113140403,5174.0,False,False +13113140404,5612.0,False,False +13113140405,3999.0,False,False +13113140406,3587.0,False,False +13113140407,8390.0,False,False +13113140408,3145.0,False,False +13113140501,6804.0,False,False +13113140502,3417.0,False,False +13115000100,4616.0,True,False +13115000201,6634.0,True,False +13115000202,3769.0,False,False +13115000300,3053.0,False,False +13115000400,8102.0,False,False +13115000500,3871.0,True,True +13115000600,5167.0,True,False +13115000700,4814.0,False,False +13115000800,4741.0,False,False +13115000900,2213.0,False,False +13115001100,2562.0,True,True +13115001200,5162.0,True,True +13115001300,5899.0,True,True +13115001400,6989.0,False,False +13115001600,2884.0,True,True +13115001701,6478.0,False,False +13115001702,6419.0,True,True +13115001800,5352.0,True,False +13115002000,4327.0,False,False +13115002100,4317.0,True,True +13117130101,4035.0,False,False +13117130102,2494.0,False,False +13117130103,4288.0,False,False +13117130104,4213.0,False,False +13117130105,2959.0,True,False +13117130201,5551.0,False,False +13117130202,4729.0,False,False +13117130203,5147.0,False,False +13117130204,6738.0,False,False +13117130205,4717.0,False,False +13117130301,5888.0,False,False +13117130302,7928.0,False,False +13117130303,3588.0,False,False +13117130304,5040.0,False,False +13117130305,6304.0,False,False +13117130306,4988.0,False,False +13117130307,5952.0,False,False +13117130403,6130.0,False,False +13117130404,4724.0,False,False +13117130405,4942.0,False,False +13117130406,6762.0,False,False +13117130408,3537.0,False,False +13117130409,3396.0,False,False +13117130410,4723.0,False,False +13117130503,2730.0,False,False +13117130504,4113.0,False,False +13117130505,2701.0,False,False +13117130506,3597.0,False,False +13117130507,3147.0,False,False +13117130508,5570.0,False,False +13117130509,3839.0,False,False +13117130510,7510.0,False,False +13117130601,5988.0,False,False +13117130602,5376.0,False,False +13117130603,7826.0,False,False +13117130604,4907.0,False,False +13117130605,4646.0,False,False +13117130606,4659.0,False,False +13117130607,7628.0,False,False +13117130608,6062.0,False,False +13117130609,6671.0,False,False +13117130610,5954.0,False,False +13117130611,4286.0,False,False +13117130612,6832.0,False,False +13117130613,5568.0,False,False +13119890101,4468.0,True,True +13119890102,3912.0,True,True +13119890200,5923.0,True,True +13119890300,3295.0,False,False +13119890400,5168.0,True,True +13121000100,5410.0,False,False +13121000200,6175.0,False,False +13121000400,2047.0,False,False +13121000500,5219.0,False,False +13121000600,7952.0,False,False +13121000700,3339.0,False,False +13121001001,2904.0,False,False +13121001002,7305.0,False,False +13121001100,5193.0,False,False +13121001201,4527.0,False,False +13121001202,5206.0,False,False +13121001300,4421.0,False,False +13121001400,2345.0,False,False +13121001500,4617.0,False,False +13121001600,2237.0,False,False +13121001700,4911.0,False,False +13121001800,4281.0,False,False +13121001900,5064.0,False,False +13121002100,2409.0,True,True +13121002300,1268.0,True,True +13121002400,2902.0,True,True +13121002500,2814.0,True,True +13121002600,1672.0,True,True +13121002800,5231.0,False,False +13121002900,2425.0,False,False +13121003000,3630.0,False,False +13121003100,2051.0,False,False +13121003200,2389.0,False,False +13121003500,2074.0,True,True +13121003600,1254.0,False,True +13121003700,196.0,True,True +13121003800,4283.0,False,True +13121003900,2090.0,True,True +13121004000,2705.0,True,True +13121004100,2214.0,False,True +13121004200,2477.0,True,True +13121004300,2846.0,False,True +13121004400,3368.0,True,True +13121004800,988.0,True,True +13121004900,2835.0,False,False +13121005000,2586.0,False,False +13121005200,5170.0,False,False +13121005300,3861.0,False,False +13121005501,2547.0,True,True +13121005502,2846.0,True,True +13121005700,1493.0,True,True +13121005800,1479.0,True,True +13121006000,3722.0,True,True +13121006100,3908.0,True,True +13121006200,1725.0,True,True +13121006300,1492.0,True,True +13121006400,936.0,True,True +13121006500,3843.0,True,True +13121006601,1755.0,True,True +13121006602,1248.0,True,True +13121006700,3966.0,True,True +13121006801,2287.0,True,True +13121006802,2235.0,True,True +13121006900,3483.0,False,False +13121007001,4539.0,True,True +13121007002,2651.0,True,True +13121007100,2751.0,True,True +13121007200,2136.0,True,True +13121007300,6824.0,True,True +13121007400,3412.0,True,True +13121007500,3348.0,True,True +13121007602,2570.0,True,True +13121007603,4565.0,True,True +13121007604,2575.0,True,True +13121007703,4463.0,True,True +13121007704,5878.0,True,True +13121007705,4043.0,True,True +13121007706,9597.0,True,False +13121007802,10961.0,True,True +13121007805,3397.0,True,True +13121007806,7234.0,True,True +13121007807,3404.0,True,True +13121007808,4580.0,True,True +13121007900,5210.0,False,False +13121008000,5529.0,True,True +13121008101,1664.0,True,True +13121008102,6647.0,True,True +13121008201,6367.0,True,True +13121008202,2357.0,True,True +13121008301,2327.0,True,True +13121008302,1917.0,True,True +13121008400,2649.0,True,True +13121008500,2551.0,True,True +13121008601,4953.0,True,True +13121008602,1562.0,True,True +13121008700,5781.0,True,True +13121008800,5430.0,False,False +13121008902,8007.0,False,False +13121008903,2250.0,True,True +13121008904,5155.0,False,False +13121009000,5341.0,False,False +13121009101,5630.0,False,False +13121009102,3344.0,False,False +13121009200,7359.0,False,False +13121009300,5298.0,False,False +13121009402,5537.0,False,False +13121009403,5268.0,False,False +13121009404,4484.0,False,False +13121009501,3706.0,False,False +13121009502,3867.0,False,False +13121009601,2631.0,False,False +13121009602,5514.0,False,False +13121009603,4830.0,False,False +13121009700,3846.0,False,False +13121009801,4746.0,False,False +13121009802,4553.0,False,False +13121009900,5213.0,False,False +13121010001,4923.0,False,False +13121010002,8716.0,False,False +13121010106,4371.0,False,False +13121010107,1990.0,False,False +13121010108,3925.0,False,False +13121010110,8275.0,False,False +13121010113,5771.0,False,True +13121010114,6849.0,False,False +13121010115,2770.0,False,False +13121010117,4319.0,False,False +13121010118,5728.0,True,True +13121010119,6351.0,False,False +13121010120,2238.0,False,False +13121010121,2095.0,False,False +13121010122,6383.0,False,False +13121010123,5081.0,False,False +13121010204,5403.0,False,False +13121010205,5607.0,False,False +13121010206,5618.0,False,False +13121010208,4029.0,False,False +13121010209,5401.0,False,False +13121010210,6809.0,False,False +13121010211,2864.0,False,False +13121010212,5645.0,True,True +13121010301,21010.0,False,False +13121010303,10840.0,False,False +13121010304,16329.0,False,False +13121010400,8551.0,True,False +13121010507,7495.0,True,True +13121010508,3359.0,False,False +13121010510,15147.0,False,False +13121010511,8399.0,False,False +13121010512,6460.0,True,True +13121010513,14560.0,False,False +13121010514,13374.0,False,False +13121010515,5930.0,False,False +13121010516,8002.0,False,False +13121010601,3998.0,True,True +13121010603,4298.0,True,True +13121010604,2584.0,True,True +13121010800,6577.0,True,True +13121011000,3036.0,True,True +13121011100,2365.0,False,False +13121011201,3380.0,True,True +13121011202,3683.0,True,True +13121011301,5106.0,True,True +13121011303,9543.0,True,True +13121011305,5230.0,True,True +13121011306,2337.0,True,True +13121011405,7783.0,False,False +13121011410,6745.0,False,False +13121011411,7659.0,False,False +13121011412,9520.0,False,False +13121011414,7683.0,False,False +13121011416,5641.0,False,False +13121011417,5602.0,False,False +13121011418,6194.0,False,False +13121011419,5919.0,False,False +13121011420,8235.0,True,True +13121011421,4280.0,True,True +13121011422,3795.0,False,False +13121011423,4774.0,False,False +13121011424,5748.0,False,False +13121011425,7236.0,False,False +13121011426,2465.0,False,False +13121011427,7950.0,False,False +13121011503,11325.0,False,False +13121011504,13727.0,False,False +13121011505,4377.0,False,False +13121011506,5969.0,False,False +13121011610,5918.0,False,False +13121011611,8707.0,False,False +13121011612,3376.0,False,False +13121011613,7137.0,False,False +13121011614,15411.0,False,False +13121011615,10672.0,False,False +13121011616,6372.0,False,False +13121011617,7891.0,False,False +13121011618,4599.0,False,False +13121011619,7869.0,False,False +13121011620,10206.0,False,False +13121011621,6962.0,False,False +13121011622,11005.0,False,False +13121011623,12517.0,False,False +13121011624,4138.0,False,False +13121011625,8542.0,False,False +13121011626,9546.0,False,False +13121011800,1867.0,True,True +13121011900,3517.0,False,False +13121012000,3311.0,True,True +13121012300,2949.0,False,False +13121980000,0.0,False,False +13123080100,4045.0,False,False +13123080200,5916.0,False,False +13123080300,6991.0,True,True +13123080400,9362.0,True,True +13123080500,4100.0,True,True +13125010100,2996.0,False,False +13127000101,1517.0,False,False +13127000102,3039.0,False,False +13127000200,5384.0,False,False +13127000300,6762.0,False,False +13127000401,7958.0,False,False +13127000403,3298.0,False,False +13127000404,11691.0,False,False +13127000501,3759.0,True,True +13127000503,3720.0,True,True +13127000504,3855.0,True,True +13127000600,6025.0,True,True +13127000700,8078.0,True,True +13127000800,4673.0,True,True +13127000900,4207.0,True,True +13127001000,10504.0,False,False +13127990000,0.0,False,False +13129970100,5815.0,True,False +13129970200,6953.0,True,False +13129970300,9627.0,True,False +13129970400,6096.0,True,False +13129970500,4335.0,False,False +13129970600,6596.0,True,False +13129970700,4749.0,True,False +13129970800,5943.0,False,False +13129970900,7088.0,False,False +13131950100,2303.0,True,True +13131950200,3138.0,True,True +13131950300,4048.0,True,True +13131950400,6212.0,True,True +13131950500,7000.0,True,True +13131950600,2127.0,True,True +13133950100,2140.0,True,True +13133950200,2384.0,True,True +13133950301,2682.0,False,False +13133950302,2958.0,False,False +13133950303,4586.0,True,True +13133950400,1031.0,True,True +13133950500,1568.0,True,True +13135050103,11311.0,False,False +13135050105,5108.0,True,False +13135050106,11749.0,False,False +13135050107,8379.0,False,False +13135050108,10054.0,False,False +13135050109,8273.0,False,False +13135050205,4673.0,False,False +13135050208,8013.0,False,False +13135050209,9073.0,True,True +13135050210,8495.0,False,False +13135050211,5623.0,True,True +13135050212,13564.0,False,False +13135050213,13617.0,False,False +13135050214,8822.0,False,False +13135050215,2907.0,False,False +13135050216,10971.0,False,False +13135050217,9388.0,False,False +13135050218,4488.0,False,True +13135050219,3662.0,False,False +13135050220,6957.0,False,False +13135050304,5302.0,True,True +13135050306,3170.0,True,True +13135050308,4065.0,False,False +13135050309,8946.0,False,False +13135050310,5942.0,False,False +13135050311,2830.0,False,False +13135050313,9279.0,True,True +13135050314,9711.0,True,True +13135050315,6361.0,False,False +13135050317,3937.0,False,False +13135050318,2807.0,True,True +13135050319,6759.0,True,True +13135050320,5856.0,True,True +13135050321,4862.0,False,False +13135050322,4884.0,False,False +13135050410,6176.0,True,True +13135050415,4072.0,False,False +13135050416,3895.0,False,False +13135050417,5907.0,True,True +13135050418,7323.0,True,True +13135050419,7885.0,True,True +13135050421,7470.0,True,True +13135050422,8163.0,True,True +13135050423,7821.0,True,True +13135050424,8218.0,True,True +13135050425,5592.0,False,False +13135050426,6661.0,False,False +13135050427,6545.0,False,False +13135050428,6304.0,False,False +13135050429,7347.0,False,False +13135050430,5540.0,False,False +13135050431,8224.0,True,True +13135050432,6729.0,True,True +13135050433,2200.0,False,True +13135050434,8356.0,True,True +13135050435,3457.0,True,True +13135050436,8635.0,False,True +13135050511,12944.0,True,False +13135050520,5390.0,True,True +13135050521,5879.0,True,False +13135050522,4955.0,True,True +13135050523,8125.0,False,False +13135050524,6952.0,True,True +13135050525,8523.0,False,False +13135050526,4486.0,True,True +13135050527,6288.0,False,False +13135050528,4904.0,False,False +13135050529,4357.0,False,False +13135050530,6329.0,False,False +13135050531,9156.0,True,False +13135050532,8214.0,False,False +13135050533,9018.0,True,True +13135050534,9026.0,False,False +13135050535,7335.0,False,False +13135050536,5607.0,True,False +13135050537,4355.0,True,True +13135050538,7941.0,False,False +13135050539,5805.0,True,True +13135050540,7295.0,False,False +13135050541,4710.0,True,True +13135050542,5307.0,True,True +13135050543,7511.0,False,False +13135050544,13185.0,False,False +13135050545,15629.0,True,True +13135050546,18658.0,False,False +13135050547,9483.0,False,False +13135050548,11702.0,False,False +13135050549,5490.0,False,False +13135050605,14579.0,False,False +13135050606,26399.0,False,False +13135050607,18598.0,False,False +13135050608,19821.0,False,False +13135050609,14829.0,False,False +13135050610,16924.0,False,False +13135050709,13838.0,False,False +13135050712,7822.0,False,False +13135050713,7643.0,False,False +13135050714,6070.0,False,False +13135050715,5952.0,False,False +13135050718,8722.0,False,False +13135050719,5751.0,False,False +13135050720,6948.0,False,False +13135050721,8690.0,False,False +13135050722,3998.0,False,False +13135050723,8095.0,False,False +13135050724,18893.0,False,False +13135050725,6520.0,False,False +13135050726,10413.0,False,False +13135050727,10850.0,False,False +13135050728,15493.0,False,False +13135050729,3381.0,False,False +13135050730,7460.0,True,True +13135050731,10440.0,False,False +13137000100,4108.0,False,False +13137000201,4062.0,False,False +13137000202,5463.0,False,False +13137000300,4402.0,True,True +13137000400,5053.0,False,False +13137000500,8095.0,False,False +13137000601,6171.0,True,True +13137000602,7272.0,True,True +13139000101,4730.0,True,True +13139000102,3489.0,False,False +13139000201,6155.0,False,False +13139000203,4069.0,False,False +13139000204,4143.0,False,False +13139000302,7067.0,False,False +13139000303,2485.0,False,False +13139000304,3683.0,False,False +13139000305,4782.0,False,False +13139000400,6144.0,False,False +13139000500,7644.0,False,False +13139000600,6045.0,True,True +13139000701,6606.0,True,True +13139000702,5575.0,True,True +13139000800,4120.0,True,True +13139000900,6415.0,False,False +13139001002,7795.0,False,False +13139001003,6875.0,True,True +13139001004,3119.0,False,False +13139001101,5929.0,True,True +13139001102,4479.0,True,True +13139001201,7186.0,True,True +13139001202,6092.0,True,True +13139001301,7163.0,True,True +13139001302,5405.0,False,False +13139001402,5693.0,False,False +13139001403,5424.0,False,False +13139001404,5616.0,False,False +13139001501,4961.0,False,False +13139001502,4322.0,False,False +13139001603,5545.0,False,False +13139001604,7687.0,False,False +13139001605,5342.0,False,False +13139001606,3622.0,False,False +13139001607,6333.0,False,False +13139001608,6927.0,False,False +13141480300,1920.0,True,True +13141480400,6595.0,True,True +13143010100,4006.0,True,True +13143010200,5377.0,False,False +13143010301,3921.0,True,True +13143010302,7922.0,False,False +13143010400,8001.0,False,False +13145120198,4990.0,False,False +13145120200,3697.0,True,True +13145120300,9822.0,False,False +13145120401,6779.0,False,False +13145120402,8817.0,False,False +13147960100,5120.0,False,False +13147960200,3859.0,False,False +13147960300,3818.0,True,False +13147960400,5826.0,True,True +13147960500,7150.0,True,True +13149970100,4446.0,True,True +13149970200,4205.0,False,False +13149970300,3085.0,False,False +13151070104,14564.0,False,False +13151070106,6176.0,True,False +13151070107,6576.0,False,False +13151070108,5641.0,False,False +13151070109,3658.0,False,False +13151070110,7809.0,False,False +13151070111,8462.0,True,False +13151070113,4140.0,True,True +13151070114,5208.0,False,False +13151070202,11535.0,False,False +13151070203,18312.0,False,False +13151070204,4987.0,False,False +13151070205,11339.0,False,False +13151070304,12054.0,False,True +13151070305,9679.0,False,False +13151070306,11353.0,False,False +13151070307,4294.0,False,False +13151070309,7661.0,False,False +13151070310,5139.0,False,False +13151070311,11603.0,True,False +13151070402,13139.0,False,False +13151070403,11557.0,False,False +13151070404,8384.0,False,False +13151070501,7526.0,False,False +13151070502,14560.0,False,False +13153020105,5852.0,False,False +13153020106,2229.0,False,False +13153020108,5981.0,True,False +13153020109,8847.0,False,False +13153020200,5525.0,True,False +13153020300,5976.0,True,True +13153020400,2174.0,True,True +13153020600,1339.0,False,False +13153020700,3416.0,True,True +13153020800,2703.0,False,False +13153020900,4333.0,True,False +13153021000,7356.0,True,False +13153021103,12226.0,False,False +13153021104,8328.0,False,False +13153021105,7175.0,False,False +13153021107,8606.0,False,False +13153021108,6726.0,False,False +13153021113,21870.0,False,False +13153021201,9422.0,False,False +13153021202,5658.0,False,False +13153021300,3672.0,True,True +13153021400,10149.0,False,False +13153021500,3944.0,False,False +13155950100,2186.0,True,True +13155950200,7134.0,True,False +13157010101,7707.0,False,False +13157010102,7043.0,False,False +13157010103,6559.0,False,False +13157010200,4836.0,True,True +13157010300,5260.0,True,False +13157010400,5315.0,True,True +13157010500,5158.0,True,True +13157010600,9133.0,False,False +13157010701,2696.0,False,False +13157010702,10084.0,False,False +13157010703,4094.0,False,False +13159010100,2444.0,True,True +13159010200,2746.0,True,True +13159010500,8726.0,True,True +13161960100,7183.0,True,True +13161960200,6462.0,True,False +13161960300,1391.0,True,False +13163960100,4719.0,True,True +13163960200,2090.0,True,True +13163960300,5596.0,True,True +13163960400,3213.0,True,True +13165960100,5751.0,True,True +13165960200,3042.0,True,True +13167960100,3140.0,True,True +13167960200,4830.0,True,True +13167960300,1721.0,True,True +13169030101,2630.0,False,False +13169030103,2254.0,False,False +13169030104,6255.0,True,True +13169030200,3681.0,True,True +13169030301,7448.0,False,False +13169030302,6311.0,False,False +13171970100,6896.0,False,False +13171970200,7559.0,False,False +13171970300,4217.0,True,True +13173950100,2030.0,True,True +13173950200,8350.0,True,False +13175950100,2927.0,True,True +13175950201,4430.0,False,False +13175950202,4788.0,False,False +13175950300,1617.0,True,True +13175950400,3981.0,True,True +13175950500,3420.0,True,True +13175950600,2347.0,False,False +13175950700,2464.0,True,True +13175950800,4736.0,True,True +13175950900,2847.0,True,True +13175951000,6850.0,True,True +13175951100,4636.0,True,True +13175951400,2362.0,True,False +13177020100,6045.0,False,False +13177020200,1602.0,False,False +13177020300,6380.0,False,False +13177020402,8922.0,False,False +13177020403,6553.0,False,False +13179010101,5949.0,True,False +13179010102,2184.0,False,False +13179010103,1510.0,True,False +13179010202,4563.0,True,True +13179010204,2824.0,True,True +13179010205,5506.0,False,False +13179010206,5000.0,False,False +13179010207,5784.0,True,True +13179010208,6363.0,False,False +13179010300,6671.0,False,True +13179010400,5613.0,True,False +13179010501,3340.0,True,True +13179010502,4387.0,False,False +13179010600,1655.0,True,True +13179990000,0.0,False,False +13181970100,3467.0,True,True +13181970200,4389.0,True,True +13183970100,12018.0,True,True +13183970200,6674.0,True,False +13183980000,0.0,False,False +13185010101,4395.0,False,False +13185010102,6522.0,False,False +13185010103,4001.0,False,False +13185010201,3899.0,False,False +13185010202,13088.0,False,False +13185010301,4904.0,False,False +13185010302,2593.0,False,False +13185010401,1510.0,True,True +13185010402,8336.0,True,True +13185010500,4091.0,True,True +13185010601,6452.0,True,False +13185010604,5768.0,False,False +13185010700,3950.0,True,True +13185010800,5348.0,True,True +13185010900,1774.0,True,True +13185011000,2639.0,True,True +13185011100,2788.0,False,False +13185011200,5787.0,False,False +13185011301,4414.0,True,True +13185011302,2056.0,True,True +13185011401,2586.0,False,False +13185011402,2739.0,True,True +13185011403,7929.0,True,True +13185011500,3944.0,False,True +13185011600,3851.0,True,True +13187960101,7540.0,False,False +13187960102,7389.0,False,False +13187960201,10441.0,False,False +13187960202,7032.0,False,False +13189950100,2197.0,False,False +13189950200,5458.0,True,True +13189950300,3264.0,True,True +13189950400,5232.0,True,True +13189950500,5304.0,True,True +13191110100,4650.0,False,False +13191110200,5308.0,True,True +13191110300,4216.0,True,True +13191980000,0.0,False,False +13191990000,0.0,False,False +13193000100,1852.0,True,True +13193000200,1409.0,True,True +13193000300,5128.0,True,True +13193000400,4916.0,True,True +13195020100,5178.0,True,True +13195020200,4488.0,False,True +13195020300,4454.0,True,True +13195020400,5812.0,True,False +13195020500,7180.0,False,False +13195020600,2106.0,False,False +13197920100,4305.0,True,True +13197920200,4127.0,True,True +13199970500,5053.0,True,True +13199970600,3811.0,True,True +13199970700,7721.0,True,True +13199970800,4521.0,True,True +13201950100,1631.0,True,True +13201950200,1809.0,True,True +13201950300,2347.0,True,True +13205090100,3599.0,True,True +13205090200,3412.0,True,True +13205090300,2833.0,True,True +13205090400,6585.0,True,True +13205090500,5815.0,True,True +13207050101,5513.0,True,True +13207050102,3886.0,True,True +13207050200,5803.0,True,False +13207050301,5351.0,False,False +13207050302,6618.0,False,False +13209950100,1816.0,False,False +13209950200,5047.0,True,False +13209950300,2195.0,False,False +13211010100,2697.0,False,False +13211010200,4059.0,False,False +13211010300,6944.0,False,False +13211010400,3032.0,False,False +13211010500,1775.0,False,False +13213010100,3220.0,True,True +13213010201,2066.0,True,True +13213010202,8969.0,False,False +13213010300,3960.0,True,True +13213010400,6302.0,True,False +13213010500,5092.0,True,False +13213010600,4366.0,True,True +13213010700,5749.0,True,True +13215000200,2837.0,False,False +13215000300,1349.0,True,True +13215000400,2675.0,True,True +13215000800,2229.0,True,True +13215000900,2673.0,False,False +13215001000,4639.0,False,False +13215001100,2535.0,False,False +13215001200,3661.0,False,False +13215001400,1622.0,True,True +13215001600,2743.0,True,True +13215001800,1174.0,True,True +13215002000,3241.0,True,True +13215002100,2317.0,True,True +13215002200,2537.0,True,True +13215002300,1654.0,True,True +13215002400,1280.0,True,True +13215002500,724.0,True,True +13215002700,2094.0,True,True +13215002800,1576.0,True,True +13215002901,2688.0,True,True +13215002902,2564.0,True,True +13215003000,2082.0,True,True +13215003200,1836.0,True,True +13215003301,1633.0,True,True +13215003302,1903.0,True,True +13215003400,1647.0,True,True +13215010104,7384.0,False,False +13215010106,6240.0,False,False +13215010107,9177.0,False,False +13215010201,7010.0,False,False +13215010203,9545.0,False,False +13215010204,6588.0,False,False +13215010205,3742.0,False,False +13215010301,2319.0,False,False +13215010302,6722.0,False,False +13215010401,6658.0,False,False +13215010402,4352.0,False,False +13215010501,6102.0,True,False +13215010502,1470.0,True,True +13215010602,5362.0,True,True +13215010605,4162.0,True,True +13215010606,2255.0,False,False +13215010607,6336.0,True,True +13215010608,4436.0,True,True +13215010701,5989.0,True,True +13215010702,4987.0,False,False +13215010703,6414.0,True,True +13215010801,1649.0,False,False +13215010802,7995.0,True,False +13215011100,2039.0,True,True +13215011200,1815.0,True,True +13215011400,1924.0,True,True +13215011500,5154.0,True,True +13217100100,11914.0,False,False +13217100201,6368.0,False,False +13217100202,5358.0,False,False +13217100300,9636.0,False,False +13217100400,3592.0,True,True +13217100501,16734.0,True,True +13217100502,8707.0,False,False +13217100600,5929.0,True,True +13217100700,6255.0,True,True +13217100800,10812.0,True,True +13217100901,10738.0,False,False +13217100902,5583.0,True,True +13217100903,6453.0,True,False +13219030100,13503.0,False,False +13219030200,6723.0,False,False +13219030300,4995.0,False,False +13219030400,7447.0,False,False +13219030500,2206.0,False,False +13219030600,3258.0,False,False +13221960100,1752.0,True,True +13221960201,6404.0,False,False +13221960202,4997.0,True,False +13221960300,1778.0,False,False +13223120101,15465.0,False,False +13223120102,14821.0,False,False +13223120103,11456.0,False,False +13223120104,3114.0,False,False +13223120202,7119.0,False,False +13223120203,5098.0,False,False +13223120204,8609.0,False,False +13223120301,6517.0,False,False +13223120302,12972.0,False,False +13223120303,1772.0,False,False +13223120400,17862.0,False,False +13223120501,7469.0,False,False +13223120502,8616.0,False,False +13223120503,5142.0,False,False +13223120601,5064.0,False,False +13223120602,10417.0,False,False +13223120603,7395.0,True,True +13223120604,5424.0,False,False +13223120605,5493.0,False,False +13225040101,1592.0,False,False +13225040102,10552.0,False,False +13225040200,4403.0,True,True +13225040301,3106.0,True,True +13225040302,1975.0,True,True +13225040400,5517.0,False,True +13227050100,5374.0,False,False +13227050200,6591.0,False,False +13227050300,4594.0,True,True +13227050400,4028.0,False,False +13227050500,4690.0,False,False +13227050600,6110.0,False,False +13229960100,3147.0,True,True +13229960200,1741.0,True,True +13229960300,5976.0,True,False +13229960400,8386.0,True,True +13231010100,7188.0,False,False +13231010200,3507.0,False,False +13231010300,4266.0,False,False +13231010400,3366.0,False,False +13233010100,6186.0,False,False +13233010200,7314.0,True,True +13233010300,5411.0,True,True +13233010400,6592.0,True,True +13233010500,5728.0,True,True +13233010600,4689.0,True,True +13233010700,5988.0,True,True +13235950100,3236.0,True,True +13235950200,6497.0,True,False +13235950300,1483.0,True,True +13237960101,3315.0,True,True +13237960102,5468.0,False,False +13237960201,1328.0,True,True +13237960202,6908.0,True,True +13237960300,4672.0,False,False +13239960300,2289.0,True,True +13241970100,5496.0,True,True +13241970201,3512.0,True,False +13241970202,2611.0,True,True +13241970301,3266.0,True,True +13241970302,1760.0,True,True +13243790100,1660.0,True,True +13243790200,5313.0,True,True +13245000100,3916.0,False,False +13245000200,2862.0,True,True +13245000300,1004.0,True,True +13245000600,2995.0,True,True +13245000700,1045.0,True,True +13245000900,1290.0,True,True +13245001000,2500.0,False,True +13245001100,1722.0,False,False +13245001200,5108.0,True,True +13245001300,1557.0,False,True +13245001400,1124.0,True,True +13245001500,737.0,True,True +13245001601,3526.0,True,True +13245001602,4220.0,False,False +13245010101,2671.0,False,False +13245010104,3816.0,False,False +13245010105,4321.0,False,False +13245010106,4486.0,False,False +13245010107,2142.0,False,False +13245010201,4693.0,False,False +13245010203,4524.0,True,False +13245010204,16070.0,False,False +13245010300,5274.0,True,True +13245010400,3047.0,True,True +13245010504,6733.0,True,True +13245010506,4369.0,True,True +13245010507,5944.0,True,True +13245010508,3712.0,True,True +13245010509,4577.0,True,True +13245010510,4512.0,True,True +13245010511,3912.0,True,True +13245010512,5203.0,True,True +13245010513,3341.0,False,False +13245010600,5638.0,True,True +13245010706,5527.0,True,True +13245010707,3041.0,False,True +13245010708,6288.0,True,True +13245010709,5804.0,False,False +13245010710,6032.0,True,True +13245010711,3855.0,True,True +13245010712,9042.0,False,False +13245010800,7869.0,True,True +13245010903,4790.0,False,False +13245010904,3919.0,True,True +13245010905,5181.0,True,True +13245010906,6220.0,False,False +13245011000,1693.0,True,True +13247060101,3449.0,False,False +13247060102,5424.0,False,False +13247060201,4432.0,True,True +13247060202,10565.0,False,False +13247060304,6186.0,True,True +13247060305,5265.0,False,False +13247060306,3077.0,False,False +13247060307,11011.0,False,False +13247060308,8689.0,True,False +13247060309,6441.0,True,True +13247060403,3638.0,False,False +13247060404,6442.0,False,False +13247060405,6125.0,False,False +13247060406,5619.0,False,False +13247060407,3354.0,False,True +13249960100,2959.0,True,True +13249960200,2262.0,False,False +13251970200,1469.0,True,True +13251970300,3945.0,True,True +13251970400,4262.0,True,True +13251970500,2599.0,True,True +13251970600,1714.0,False,True +13253200100,2648.0,True,True +13253200200,3209.0,True,True +13253200300,2464.0,True,True +13255160100,5314.0,True,True +13255160200,7538.0,False,False +13255160300,3137.0,True,True +13255160400,6366.0,True,True +13255160500,6241.0,True,False +13255160600,4019.0,False,False +13255160700,8217.0,True,False +13255160800,3777.0,True,True +13255160900,2578.0,True,True +13255161000,5495.0,True,False +13255161100,4281.0,False,False +13255161200,8343.0,True,False +13257970100,6893.0,False,False +13257970200,5709.0,False,False +13257970301,3423.0,True,True +13257970302,2906.0,True,True +13257970400,6819.0,True,True +13259950100,1778.0,True,True +13259950400,4515.0,True,True +13261950100,964.0,False,False +13261950200,5177.0,True,False +13261950300,7087.0,True,True +13261950400,2766.0,True,True +13261950500,3145.0,True,False +13261950600,2074.0,True,True +13261950700,6483.0,False,True +13261950800,2368.0,True,True +13263960100,2279.0,True,True +13263960200,2350.0,True,True +13263960300,1692.0,True,True +13265010200,1611.0,True,True +13267950100,2883.0,True,False +13267950201,4263.0,True,True +13267950202,7402.0,True,True +13267950300,6027.0,True,True +13267950400,4807.0,False,False +13269950100,1288.0,False,True +13269950200,2312.0,True,True +13269950300,4516.0,True,True +13271950100,11573.0,True,True +13271950200,1572.0,True,True +13271950500,2890.0,True,True +13273120200,1526.0,True,True +13273120300,2828.0,True,True +13273120400,2948.0,True,True +13273120500,1435.0,True,True +13275960100,1425.0,True,True +13275960200,3999.0,True,False +13275960300,2280.0,True,True +13275960400,2316.0,True,True +13275960500,6960.0,False,False +13275960600,5675.0,True,False +13275960700,6613.0,True,True +13275960800,5371.0,True,True +13275960900,3435.0,True,True +13275961000,4155.0,False,False +13275961100,2401.0,True,True +13277960100,2083.0,False,False +13277960200,2692.0,True,False +13277960300,8046.0,False,False +13277960400,6256.0,True,False +13277960500,4356.0,False,False +13277960600,7232.0,True,True +13277960700,4502.0,True,True +13277960800,2313.0,True,True +13277960900,3061.0,True,True +13279970100,4793.0,True,True +13279970200,5456.0,True,True +13279970300,5935.0,True,False +13279970400,4388.0,True,True +13279970500,3310.0,True,True +13279970600,3090.0,True,True +13281960100,4418.0,False,False +13281960200,3254.0,False,False +13281960300,3945.0,True,True +13283960100,1844.0,True,True +13283960200,4951.0,True,True +13285960100,6518.0,True,True +13285960201,3151.0,False,False +13285960202,2373.0,False,False +13285960300,4191.0,False,False +13285960400,5817.0,True,True +13285960501,5066.0,True,True +13285960502,8270.0,True,True +13285960600,5353.0,True,True +13285960700,5522.0,True,True +13285960800,3904.0,True,True +13285960901,4131.0,True,True +13285960902,7230.0,False,False +13285961000,5501.0,True,True +13285961100,2892.0,False,False +13287970200,4760.0,True,True +13287970300,3183.0,True,True +13289060100,4640.0,True,True +13289060200,3589.0,True,True +13291000101,3224.0,False,False +13291000102,5466.0,True,True +13291000201,2808.0,False,False +13291000203,2323.0,False,False +13291000204,3147.0,True,False +13291000205,6320.0,False,False +13293010100,3018.0,True,True +13293010201,4763.0,True,True +13293010202,2825.0,True,False +13293010300,3375.0,False,False +13293010400,6056.0,True,True +13293010500,4602.0,True,True +13293010600,1597.0,True,True +13295020100,6302.0,True,True +13295020200,3606.0,True,True +13295020301,5379.0,True,True +13295020302,4512.0,False,True +13295020400,2937.0,False,False +13295020501,8021.0,False,False +13295020502,6843.0,False,False +13295020601,7549.0,False,False +13295020602,4892.0,True,True +13295020700,7439.0,True,True +13295020800,3281.0,True,True +13295020901,6224.0,False,False +13295020902,2054.0,False,False +13297110100,9214.0,False,False +13297110200,4983.0,False,False +13297110300,6758.0,True,True +13297110400,6734.0,True,False +13297110503,3973.0,False,False +13297110504,5377.0,False,False +13297110505,4716.0,False,False +13297110506,5892.0,False,False +13297110507,8043.0,False,False +13297110508,5243.0,False,False +13297110601,5154.0,False,False +13297110602,5704.0,False,False +13297110603,5176.0,False,False +13297110700,7571.0,False,True +13297110800,6904.0,False,False +13299950100,1491.0,True,False +13299950200,8111.0,True,True +13299950300,2296.0,True,True +13299950400,1994.0,True,True +13299950500,4424.0,True,False +13299950600,6236.0,True,False +13299950700,1706.0,True,True +13299950800,5845.0,True,True +13299950900,3490.0,True,False +13301970400,2691.0,True,True +13301970500,2606.0,True,True +13303950100,1844.0,False,False +13303950300,4773.0,True,True +13303950400,4549.0,True,True +13303950500,5432.0,True,True +13303950700,3838.0,True,True +13305970100,3508.0,False,False +13305970200,7899.0,True,True +13305970300,6117.0,True,True +13305970400,2982.0,True,False +13305970500,5771.0,True,False +13305970600,3511.0,True,False +13307960100,1335.0,False,True +13307960200,1275.0,True,True +13309780100,2545.0,True,True +13309780200,5383.0,True,True +13311950100,2663.0,False,False +13311950201,9478.0,False,False +13311950202,3182.0,False,False +13311950203,5750.0,False,False +13311950300,8416.0,True,True +13313000101,4322.0,False,False +13313000102,8927.0,False,False +13313000200,4364.0,True,False +13313000301,4105.0,True,False +13313000302,8870.0,False,False +13313000400,8411.0,True,True +13313000501,3904.0,False,False +13313000502,7852.0,True,False +13313000600,4414.0,True,False +13313000700,4357.0,True,False +13313000800,7727.0,False,False +13313000900,3453.0,True,False +13313001000,3492.0,True,True +13313001100,4935.0,True,False +13313001200,7340.0,True,True +13313001300,4449.0,True,True +13313001400,6285.0,False,False +13313001500,7030.0,True,False +13315960100,3966.0,True,True +13315960200,1469.0,True,True +13315960300,1507.0,True,True +13315960400,1882.0,True,True +13317010101,1486.0,True,True +13317010102,1927.0,True,True +13317010301,2084.0,True,True +13317010302,4347.0,True,True +13319960200,2738.0,False,False +13319960300,4231.0,True,True +13319960400,2041.0,True,True +13321950100,2988.0,True,True +13321950200,6831.0,False,True +13321950400,4215.0,True,True +13321950500,4310.0,True,True +13321950600,2150.0,False,False +15001020100,4280.0,False,False +15001020202,2649.0,False,False +15001020300,4310.0,True,True +15001020400,3310.0,True,True +15001020500,6250.0,True,True +15001020600,5649.0,False,False +15001020701,4449.0,False,False +15001020702,4739.0,False,False +15001020801,5087.0,False,False +15001020802,6660.0,False,False +15001020900,4534.0,False,False +15001021003,7095.0,True,True +15001021005,10867.0,False,False +15001021010,8606.0,True,True +15001021011,4080.0,True,True +15001021013,5052.0,True,True +15001021101,3054.0,True,True +15001021106,8014.0,True,True +15001021202,9885.0,True,True +15001021300,7249.0,False,False +15001021402,3778.0,False,False +15001021502,4587.0,False,False +15001021504,5042.0,False,False +15001021507,10323.0,False,False +15001021509,6855.0,False,False +15001021601,9877.0,False,False +15001021604,9198.0,False,False +15001021702,12049.0,False,False +15001021704,8240.0,False,False +15001021800,5998.0,False,False +15001021902,3529.0,False,False +15001022000,2584.0,False,False +15001022102,1580.0,True,True +15001990000,0.0,False,False +15001990100,0.0,False,False +15001990300,0.0,False,False +15001990400,0.0,False,False +15001990500,0.0,False,False +15001990600,0.0,False,False +15001990700,0.0,False,False +15001990800,0.0,False,False +15001990900,0.0,False,False +15001991000,0.0,False,False +15001991100,0.0,False,False +15001991200,0.0,False,False +15001991300,0.0,False,False +15001991400,0.0,False,False +15001991500,0.0,False,False +15001991600,0.0,False,False +15001991700,0.0,False,False +15003000106,7856.0,False,False +15003000107,2718.0,False,False +15003000108,2930.0,False,False +15003000110,4064.0,False,False +15003000111,4399.0,False,False +15003000112,5540.0,False,False +15003000114,1559.0,False,False +15003000200,5433.0,False,False +15003000301,2962.0,False,False +15003000302,2954.0,False,False +15003000401,2552.0,False,False +15003000402,3633.0,False,False +15003000500,3697.0,False,False +15003000600,1456.0,False,False +15003000700,3132.0,False,False +15003000800,3459.0,False,False +15003000901,2539.0,False,False +15003000902,4291.0,False,False +15003000903,3058.0,False,False +15003001000,3394.0,False,False +15003001100,3696.0,False,True +15003001201,3184.0,False,False +15003001202,2923.0,False,False +15003001300,4175.0,False,False +15003001400,2751.0,False,False +15003001500,3586.0,False,False +15003001600,3584.0,False,False +15003001700,1759.0,False,False +15003001801,922.0,False,False +15003001803,2596.0,False,False +15003001804,1380.0,False,False +15003001901,214.0,False,False +15003001903,2848.0,False,False +15003001904,3405.0,False,False +15003002003,1735.0,False,False +15003002004,1153.0,False,False +15003002005,1866.0,False,True +15003002006,1782.0,True,True +15003002100,3799.0,False,False +15003002201,3722.0,False,False +15003002202,3492.0,False,False +15003002300,5897.0,False,True +15003002401,3343.0,False,False +15003002402,3000.0,False,False +15003002500,3509.0,False,False +15003002600,4236.0,False,False +15003002701,5575.0,False,False +15003002702,5009.0,False,False +15003002800,3784.0,False,False +15003002900,2415.0,False,False +15003003000,4785.0,False,False +15003003101,4292.0,False,False +15003003102,3369.0,False,False +15003003200,743.0,False,False +15003003300,1315.0,False,False +15003003403,5614.0,False,False +15003003404,4872.0,False,False +15003003405,3470.0,False,False +15003003406,5795.0,False,False +15003003407,898.0,False,False +15003003501,2348.0,False,False +15003003502,3869.0,False,True +15003003601,3800.0,False,False +15003003603,2854.0,True,True +15003003604,2238.0,False,False +15003003700,7159.0,False,False +15003003800,6994.0,False,False +15003003900,283.0,True,True +15003004000,1265.0,False,False +15003004100,4322.0,False,False +15003004200,3267.0,False,False +15003004300,5610.0,False,False +15003004400,5275.0,False,False +15003004500,5308.0,False,False +15003004600,4010.0,False,False +15003004700,5076.0,False,False +15003004800,7272.0,False,False +15003004900,3766.0,False,False +15003005000,4394.0,False,True +15003005100,2896.0,True,True +15003005200,2386.0,True,True +15003005300,3952.0,True,True +15003005400,1681.0,True,True +15003005500,2115.0,False,True +15003005600,6852.0,True,True +15003005700,2640.0,True,True +15003005800,3081.0,False,True +15003005900,3531.0,False,True +15003006000,6470.0,False,True +15003006100,4189.0,False,True +15003006201,6423.0,False,True +15003006202,1444.0,True,True +15003006301,4388.0,False,False +15003006302,2954.0,True,True +15003006401,2285.0,False,False +15003006402,6709.0,False,True +15003006500,4746.0,False,False +15003006600,644.0,False,False +15003006701,5898.0,False,False +15003006702,2689.0,False,False +15003006802,8329.0,False,False +15003006804,5607.0,False,False +15003006805,6240.0,False,False +15003006806,1877.0,False,False +15003006808,4786.0,False,False +15003006809,5381.0,False,True +15003006900,4102.0,False,False +15003007000,4427.0,False,False +15003007100,3359.0,False,False +15003007302,5595.0,False,False +15003007303,433.0,False,False +15003007400,5274.0,False,False +15003007502,753.0,False,True +15003007503,5084.0,False,False +15003007504,3299.0,False,False +15003007505,5930.0,False,False +15003007506,986.0,False,False +15003007701,4074.0,False,False +15003007702,5564.0,False,False +15003007804,2217.0,False,False +15003007805,4912.0,False,False +15003007807,5605.0,False,False +15003007808,3786.0,False,False +15003007809,3070.0,False,False +15003007810,5889.0,False,False +15003007811,4652.0,False,False +15003008001,2412.0,False,False +15003008002,3043.0,False,False +15003008003,4235.0,False,False +15003008005,6411.0,False,False +15003008006,4395.0,False,False +15003008007,5635.0,False,False +15003008301,5013.0,False,False +15003008302,6541.0,False,False +15003008402,7938.0,False,False +15003008405,4632.0,False,False +15003008406,7073.0,False,False +15003008407,4283.0,False,False +15003008408,8870.0,False,False +15003008410,5060.0,False,False +15003008411,3316.0,False,False +15003008412,7396.0,False,False +15003008502,2491.0,True,True +15003008606,11489.0,False,False +15003008609,1941.0,False,False +15003008610,1020.0,False,False +15003008611,27.0,False,False +15003008612,6327.0,False,False +15003008613,1069.0,False,False +15003008614,10420.0,False,False +15003008617,10122.0,False,False +15003008622,4020.0,False,False +15003008701,8340.0,False,False +15003008702,5187.0,False,True +15003008703,7099.0,False,False +15003008800,8889.0,False,False +15003008906,3699.0,False,False +15003008907,4405.0,False,False +15003008908,5719.0,False,False +15003008909,3859.0,False,False +15003008912,2955.0,False,False +15003008913,4106.0,False,False +15003008914,5930.0,False,True +15003008915,5451.0,False,False +15003008917,4611.0,False,False +15003008918,5269.0,False,False +15003008920,4396.0,False,False +15003008921,2626.0,False,False +15003008922,7442.0,False,False +15003008923,4627.0,False,False +15003008924,7474.0,False,False +15003008925,7091.0,False,False +15003008926,1654.0,False,False +15003008927,4920.0,False,False +15003008928,3898.0,False,False +15003008929,4331.0,False,False +15003008930,2207.0,False,False +15003008931,3515.0,False,False +15003009000,2331.0,False,False +15003009100,4806.0,False,False +15003009200,7615.0,False,False +15003009300,4533.0,False,False +15003009400,4990.0,True,True +15003009501,6094.0,False,False +15003009502,4657.0,False,False +15003009503,4124.0,False,False +15003009504,1188.0,False,False +15003009507,3436.0,False,False +15003009603,12197.0,False,False +15003009608,4911.0,False,True +15003009701,5857.0,True,True +15003009703,7108.0,False,False +15003009704,3502.0,True,True +15003009801,2679.0,True,True +15003009802,6728.0,True,True +15003009902,3566.0,False,False +15003009904,5516.0,False,False +15003010000,4008.0,False,False +15003010100,6991.0,False,False +15003010201,4936.0,False,False +15003010202,7754.0,False,False +15003010303,4016.0,False,False +15003010305,5019.0,False,False +15003010306,5776.0,False,False +15003010308,3406.0,False,False +15003010503,1603.0,False,False +15003010504,4427.0,False,False +15003010505,2977.0,False,False +15003010507,5384.0,False,False +15003010508,2520.0,False,False +15003010601,3146.0,False,False +15003010602,5361.0,False,False +15003010701,4218.0,False,False +15003010702,3776.0,False,False +15003010801,3798.0,False,False +15003010802,7491.0,False,False +15003010901,2933.0,False,False +15003010903,3694.0,False,False +15003010904,3319.0,False,False +15003010905,2560.0,False,False +15003011000,4088.0,False,False +15003011103,3713.0,False,False +15003011104,4722.0,False,False +15003011105,3428.0,False,False +15003011106,6065.0,False,False +15003011201,4228.0,False,False +15003011202,1519.0,False,False +15003011300,5538.0,False,False +15003011400,3405.0,False,False +15003011500,10185.0,False,False +15003940001,4076.0,False,False +15003940002,6989.0,False,False +15003980000,0.0,False,False +15003980200,570.0,False,False +15003980300,0.0,False,False +15003980600,0.0,False,False +15003980700,0.0,False,False +15003980800,0.0,False,False +15003981000,0.0,False,False +15003981100,28.0,False,False +15003981200,0.0,False,False +15003981300,0.0,False,False +15003981400,4.0,False,False +15003990001,0.0,False,False +15005031900,66.0,False,False +15005990000,0.0,False,False +15007040103,5303.0,False,False +15007040104,770.0,True,True +15007040204,6235.0,False,False +15007040205,4182.0,False,False +15007040300,8164.0,False,False +15007040400,10871.0,False,False +15007040500,7058.0,False,False +15007040603,2984.0,False,False +15007040604,3529.0,True,False +15007040700,9552.0,False,False +15007040800,4201.0,False,False +15007040900,5424.0,False,False +15007041200,0.0,False,False +15007940000,3496.0,False,False +15007990100,0.0,False,False +15007990200,0.0,False,False +15007990300,0.0,False,False +15009030100,1405.0,False,False +15009030201,2340.0,False,False +15009030202,8694.0,False,False +15009030301,9613.0,False,False +15009030303,3704.0,False,False +15009030402,8562.0,False,False +15009030403,3955.0,False,False +15009030404,5792.0,False,False +15009030501,2249.0,False,False +15009030705,4722.0,False,False +15009030706,2523.0,False,False +15009030707,8504.0,False,False +15009030708,2931.0,False,False +15009030709,3722.0,False,False +15009030710,2631.0,False,False +15009030800,7879.0,False,False +15009030901,2467.0,True,True +15009030902,3475.0,False,False +15009030903,7287.0,False,False +15009031000,10406.0,False,False +15009031101,8690.0,False,False +15009031102,5783.0,False,True +15009031103,10757.0,False,False +15009031402,2802.0,False,False +15009031404,3639.0,False,False +15009031405,6335.0,False,False +15009031501,2075.0,False,False +15009031502,4448.0,False,False +15009031503,2381.0,False,False +15009031601,2730.0,False,True +15009031700,3892.0,True,True +15009031801,2317.0,True,True +15009031900,6379.0,False,False +15009032000,890.0,False,False +15009980000,0.0,False,False +15009990000,0.0,False,False +15009990200,0.0,False,False +15009991200,0.0,False,False +16001000100,3695.0,True,False +16001000201,3405.0,False,False +16001000202,5549.0,False,False +16001000302,3375.0,False,False +16001000303,2211.0,False,False +16001000304,6600.0,False,False +16001000400,5963.0,False,False +16001000500,6156.0,False,False +16001000600,5377.0,False,False +16001000701,5659.0,False,False +16001000702,4458.0,False,False +16001000802,5625.0,False,False +16001000803,4320.0,False,False +16001000804,6938.0,False,False +16001000805,3217.0,False,False +16001000900,6519.0,False,False +16001001000,7250.0,True,False +16001001100,4175.0,True,True +16001001201,3341.0,False,False +16001001202,6770.0,True,False +16001001400,5564.0,False,False +16001001500,3821.0,False,False +16001001600,4769.0,False,False +16001001700,6661.0,True,True +16001001800,4470.0,False,False +16001001900,4896.0,False,False +16001002000,4642.0,True,False +16001002100,1906.0,False,False +16001002221,9148.0,False,False +16001002222,6833.0,False,False +16001002223,4985.0,False,False +16001002224,6374.0,False,False +16001002302,8267.0,True,True +16001002310,10618.0,False,False +16001002312,5398.0,False,False +16001002313,4212.0,False,False +16001002410,8187.0,False,False +16001002411,5289.0,False,False +16001002412,4216.0,False,False +16001002413,8596.0,False,False +16001010100,8973.0,False,False +16001010201,14723.0,False,False +16001010221,8020.0,False,False +16001010223,7057.0,False,False +16001010224,4755.0,False,False +16001010225,8736.0,False,False +16001010313,28516.0,False,False +16001010321,7630.0,False,False +16001010322,7005.0,False,False +16001010331,27301.0,False,False +16001010332,14830.0,False,False +16001010333,12722.0,True,True +16001010334,7619.0,False,False +16001010335,24317.0,False,False +16001010401,23000.0,False,False +16001010402,12908.0,False,False +16001010501,7924.0,False,False +16001010503,4611.0,False,False +16001010504,6747.0,False,False +16003950100,1637.0,False,False +16003950200,2460.0,True,True +16005000200,3955.0,False,False +16005000300,9282.0,False,False +16005000400,6088.0,False,False +16005000500,2029.0,False,False +16005000600,4126.0,False,False +16005000700,4302.0,False,False +16005000800,2570.0,True,True +16005000900,2445.0,True,True +16005001000,3179.0,True,True +16005001101,7323.0,False,False +16005001102,3955.0,False,False +16005001200,3743.0,False,False +16005001300,2448.0,True,True +16005001400,4137.0,True,True +16005001500,5775.0,True,True +16005001601,2524.0,True,True +16005001602,3876.0,True,True +16005001603,2938.0,True,True +16005001700,3555.0,False,False +16005001900,5252.0,False,False +16005940000,1912.0,True,True +16005981800,351.0,False,False +16007950100,3434.0,True,True +16007950200,2566.0,False,False +16009940000,5057.0,True,True +16009950100,4081.0,True,True +16011940000,2643.0,True,True +16011950100,8385.0,False,False +16011950200,3845.0,False,False +16011950300,5884.0,True,True +16011950400,7186.0,True,True +16011950500,7517.0,False,False +16011950600,5279.0,False,False +16011950700,5100.0,False,False +16013960100,5353.0,False,False +16013960200,10020.0,True,True +16013960300,3729.0,False,False +16013960500,3271.0,False,False +16015950200,7378.0,False,False +16017950100,2184.0,True,True +16017950200,9272.0,False,False +16017950300,3610.0,True,True +16017950400,7295.0,True,True +16017950500,3425.0,True,True +16017950600,2023.0,False,True +16017950700,5092.0,True,True +16017950800,6508.0,False,False +16017950900,4202.0,False,False +16019970100,5549.0,False,False +16019970300,6988.0,False,False +16019970401,3186.0,False,False +16019970402,5671.0,False,False +16019970403,11652.0,True,False +16019970501,8666.0,False,False +16019970502,5722.0,False,False +16019970503,5894.0,False,False +16019970601,2913.0,True,True +16019970602,6206.0,True,False +16019970603,2231.0,False,False +16019970700,5589.0,True,False +16019970800,3799.0,True,True +16019970900,5145.0,False,False +16019971000,4951.0,True,False +16019971100,3257.0,True,True +16019971200,4571.0,True,True +16019971301,6362.0,False,False +16019971302,5081.0,True,False +16019971400,9272.0,False,False +16019971500,1687.0,False,False +16021970100,6833.0,True,True +16021970200,5012.0,True,True +16023970100,2581.0,True,True +16025970100,1048.0,True,True +16027020100,1084.0,True,True +16027020200,4681.0,True,True +16027020300,5009.0,True,True +16027020401,9349.0,True,True +16027020402,6307.0,True,True +16027020501,3521.0,True,False +16027020503,3254.0,False,False +16027020504,5655.0,True,True +16027020601,5834.0,True,True +16027020602,7973.0,True,True +16027020700,3901.0,False,False +16027020901,13916.0,False,False +16027020902,16328.0,False,False +16027021001,15911.0,True,True +16027021002,10662.0,True,True +16027021100,20124.0,True,True +16027021200,8862.0,True,True +16027021300,3006.0,True,True +16027021500,4994.0,True,True +16027021600,4333.0,True,True +16027021700,11701.0,True,True +16027021800,7423.0,False,False +16027021901,5774.0,True,True +16027021903,12309.0,False,False +16027021904,3606.0,True,True +16027022100,5059.0,True,False +16027022200,5711.0,False,False +16027022300,6653.0,True,True +16027022400,4693.0,False,False +16029960100,4386.0,False,False +16029960200,2567.0,False,False +16031950100,2879.0,True,True +16031950200,3753.0,True,True +16031950300,4864.0,True,True +16031950400,4062.0,True,True +16031950500,5218.0,False,False +16031950600,2914.0,True,True +16033950100,913.0,True,True +16035940000,5742.0,True,True +16035970100,2931.0,False,False +16037960200,4169.0,True,True +16039960100,2780.0,True,True +16039960200,9025.0,True,True +16039960300,3923.0,True,True +16039960400,8006.0,True,True +16039960500,3009.0,True,True +16041970100,6636.0,True,True +16041970200,6828.0,False,False +16043970100,1068.0,False,False +16043970200,3486.0,True,True +16043970300,8466.0,False,False +16045960100,4845.0,False,False +16045960200,5863.0,True,True +16045960300,6623.0,True,True +16047960100,7468.0,True,True +16047960200,7680.0,True,False +16049940000,4831.0,True,True +16049960100,2269.0,True,True +16049960200,5627.0,True,True +16049960300,2408.0,True,True +16049960400,1276.0,True,True +16051960100,3645.0,True,True +16051960200,4391.0,False,False +16051960300,8176.0,False,False +16051960400,12322.0,False,False +16053970100,3152.0,True,False +16053970200,4508.0,True,True +16053970300,5959.0,True,True +16053970400,3212.0,True,True +16053970500,6899.0,False,False +16055000100,7070.0,False,False +16055000200,9816.0,False,False +16055000301,6352.0,False,False +16055000302,7830.0,False,False +16055000401,5808.0,True,True +16055000402,8894.0,False,False +16055000500,14213.0,False,False +16055000601,4204.0,True,True +16055000602,6425.0,True,True +16055000700,20356.0,False,False +16055000800,4789.0,False,False +16055000900,5978.0,True,True +16055001001,6490.0,False,False +16055001002,4687.0,False,False +16055001100,2397.0,False,False +16055001200,6535.0,True,True +16055001300,4442.0,True,True +16055001400,2816.0,False,False +16055001500,3371.0,False,False +16055001600,2591.0,False,False +16055001700,4708.0,False,False +16055001800,8383.0,False,False +16055001900,3077.0,False,False +16055002000,3404.0,False,False +16055940000,2686.0,True,True +16057005100,7872.0,False,False +16057005200,6814.0,False,False +16057005300,7313.0,False,False +16057005400,6616.0,False,False +16057005500,3986.0,True,True +16057005600,3786.0,False,False +16057005700,3118.0,False,False +16059970100,2497.0,False,False +16059970200,2597.0,True,True +16059970300,2753.0,True,True +16061940001,1695.0,True,True +16061940002,2117.0,True,True +16061950300,26.0,True,True +16063950100,5350.0,True,True +16065950100,6035.0,False,False +16065950200,4602.0,False,False +16065950301,3208.0,False,True +16065950302,13852.0,False,False +16065950400,6531.0,False,False +16065950500,4872.0,False,False +16067970100,3298.0,False,False +16067970200,5682.0,False,False +16067970300,2873.0,False,False +16067970400,4494.0,True,True +16067970500,4358.0,True,True +16069940000,4866.0,True,True +16069960200,264.0,False,False +16069960300,4402.0,True,True +16069960400,3518.0,False,False +16069960500,3702.0,False,False +16069960600,5214.0,False,False +16069960700,5424.0,False,False +16069960800,3581.0,False,False +16069960900,3240.0,False,False +16069961000,6006.0,False,False +16071960100,4385.0,True,True +16073950101,4530.0,True,False +16073950102,3304.0,True,True +16073950200,3718.0,True,True +16075960100,6637.0,True,True +16075960200,3284.0,True,True +16075960300,8240.0,False,False +16075960400,5099.0,True,False +16077960100,2379.0,True,True +16077960200,5292.0,True,False +16079960200,3715.0,True,True +16079960300,3827.0,True,True +16079960400,5067.0,True,True +16081960100,11426.0,False,False +16083000200,7109.0,False,False +16083000300,4827.0,False,False +16083000400,4615.0,True,True +16083000500,6415.0,False,False +16083000600,3151.0,False,False +16083000700,13168.0,True,False +16083000800,6294.0,True,False +16083000900,5140.0,False,False +16083001000,8942.0,False,False +16083001100,3830.0,True,True +16083001200,8538.0,True,False +16083001300,8998.0,False,False +16083001400,1249.0,True,True +16083001500,2593.0,True,True +16085970100,2456.0,True,True +16085970200,3370.0,True,True +16085970300,4883.0,False,False +16087970100,1790.0,True,True +16087970200,3908.0,True,True +16087970300,4359.0,True,True +17001000100,4761.0,False,False +17001000201,1985.0,False,False +17001000202,2376.0,False,False +17001000400,3422.0,True,True +17001000500,2175.0,True,True +17001000600,4055.0,False,False +17001000700,1140.0,True,True +17001000800,2583.0,True,True +17001000900,2846.0,True,False +17001001001,3478.0,False,False +17001001002,3281.0,False,False +17001001100,8241.0,False,False +17001010100,4242.0,False,False +17001010200,3325.0,False,False +17001010300,5752.0,False,False +17001010400,3695.0,False,False +17001010500,2835.0,False,False +17001010600,5893.0,False,False +17003957600,2105.0,True,True +17003957700,1780.0,True,True +17003957800,1392.0,True,True +17003957900,983.0,True,True +17005951200,2840.0,False,False +17005951300,6511.0,False,False +17005951400,3037.0,False,False +17005951500,4201.0,False,False +17007010100,7527.0,True,True +17007010200,6194.0,True,True +17007010300,6700.0,True,True +17007010400,6734.0,False,False +17007010500,10478.0,False,False +17007010601,3829.0,False,False +17007010602,12075.0,False,False +17009970400,2402.0,False,False +17009970500,4226.0,False,False +17011964700,2809.0,False,False +17011964800,3403.0,False,False +17011964900,2467.0,False,False +17011965000,3960.0,False,False +17011965100,3871.0,False,False +17011965200,3423.0,False,False +17011965300,3299.0,False,False +17011965400,3494.0,False,False +17011965500,3557.0,False,False +17011965600,2839.0,False,False +17013951200,2651.0,True,True +17013951300,2179.0,False,False +17015960100,3254.0,False,False +17015960200,2146.0,False,False +17015960300,3028.0,True,True +17015960400,1979.0,False,False +17015960500,2536.0,False,False +17015960600,1523.0,False,False +17017960100,2246.0,False,False +17017960200,2469.0,False,False +17017960300,2587.0,False,False +17017960400,2590.0,True,True +17017960500,2601.0,True,True +17019000200,1871.0,True,True +17019000301,5260.0,False,False +17019000302,2699.0,False,False +17019000401,5138.0,False,False +17019000402,4237.0,False,False +17019000500,3797.0,False,False +17019000700,3241.0,True,True +17019000800,6166.0,False,False +17019000901,5104.0,True,True +17019000902,6797.0,False,False +17019001000,4442.0,False,False +17019001100,3647.0,False,False +17019001201,6826.0,True,False +17019001203,4891.0,False,False +17019001204,4043.0,False,False +17019001205,7405.0,False,False +17019001206,2053.0,False,False +17019001301,6328.0,False,False +17019001302,4470.0,False,False +17019001400,6835.0,False,False +17019005300,5556.0,False,False +17019005401,4391.0,True,True +17019005402,3572.0,True,True +17019005500,4825.0,False,False +17019005600,7104.0,False,False +17019005701,5045.0,True,False +17019005702,3555.0,False,False +17019005800,3890.0,False,False +17019005900,6054.0,False,False +17019006000,3551.0,False,False +17019010100,5151.0,True,True +17019010204,4673.0,True,True +17019010300,3420.0,True,True +17019010400,4637.0,False,False +17019010500,4473.0,False,False +17019010601,6427.0,False,False +17019010603,7068.0,False,False +17019010604,2390.0,False,False +17019010700,8007.0,False,False +17019010800,4614.0,False,False +17019010900,9366.0,False,False +17019011000,4463.0,False,False +17019011100,2440.0,False,False +17021958100,2857.0,False,False +17021958200,3485.0,False,False +17021958300,4715.0,True,True +17021958400,3543.0,True,True +17021958500,2051.0,True,True +17021958600,2059.0,False,False +17021958700,4478.0,False,False +17021958800,2381.0,False,False +17021958900,2661.0,True,True +17021959000,4701.0,False,False +17023060100,4662.0,False,False +17023060200,3866.0,False,False +17023060300,5236.0,True,True +17023060400,1952.0,False,False +17025971900,2313.0,True,False +17025972000,2665.0,True,False +17025972100,5156.0,True,False +17025972200,3153.0,False,False +17027900100,6014.0,False,False +17027900200,1992.0,False,False +17027900300,7197.0,False,False +17027900401,1338.0,False,False +17027900402,5215.0,False,False +17027900500,6551.0,True,False +17027900601,2546.0,False,False +17027900602,6781.0,False,False +17029000100,2962.0,False,False +17029000200,5872.0,False,False +17029000300,4530.0,True,True +17029000400,2844.0,True,True +17029000500,6927.0,True,True +17029000600,3390.0,False,False +17029000700,6118.0,False,False +17029000800,4248.0,False,True +17029000900,4228.0,False,False +17029001000,3084.0,True,True +17029001100,3761.0,True,True +17029001200,3389.0,False,False +17031010100,4599.0,True,True +17031010201,7455.0,True,True +17031010202,2896.0,True,True +17031010300,6485.0,False,False +17031010400,5213.0,False,False +17031010501,4102.0,False,False +17031010502,3089.0,False,False +17031010503,1806.0,True,True +17031010600,6395.0,False,False +17031010701,3620.0,False,False +17031010702,5082.0,True,True +17031020100,3618.0,False,True +17031020200,6840.0,False,False +17031020301,5384.0,False,False +17031020302,5137.0,False,False +17031020400,4258.0,False,False +17031020500,6775.0,True,True +17031020601,6525.0,True,True +17031020602,4765.0,True,True +17031020701,1844.0,False,False +17031020702,8226.0,True,True +17031020801,6175.0,False,True +17031020802,7916.0,True,True +17031020901,6155.0,True,True +17031020902,4848.0,True,True +17031030101,3911.0,True,True +17031030102,2841.0,False,False +17031030103,2242.0,False,False +17031030104,3411.0,False,True +17031030200,5702.0,False,False +17031030300,3676.0,True,True +17031030400,2631.0,False,False +17031030500,6786.0,False,False +17031030601,3353.0,True,True +17031030603,2410.0,False,False +17031030604,3763.0,False,False +17031030701,1625.0,True,True +17031030702,2211.0,False,False +17031030703,2947.0,True,True +17031030706,2845.0,False,False +17031030800,4169.0,False,False +17031030900,3126.0,False,False +17031031000,3907.0,False,False +17031031100,4720.0,False,False +17031031200,6359.0,True,True +17031031300,7775.0,True,True +17031031400,4964.0,False,False +17031031501,4474.0,True,True +17031031502,4628.0,True,True +17031031700,6785.0,True,True +17031031800,1889.0,False,False +17031031900,2558.0,False,False +17031032100,7106.0,False,False +17031040100,4139.0,False,False +17031040201,6814.0,False,False +17031040202,7634.0,True,True +17031040300,2953.0,False,True +17031040401,3250.0,False,False +17031040402,5154.0,False,False +17031040600,2607.0,False,False +17031040700,3435.0,False,False +17031040800,1691.0,False,False +17031040900,1904.0,False,False +17031050100,2736.0,False,False +17031050200,5092.0,False,False +17031050300,2483.0,False,False +17031050500,5914.0,False,False +17031050600,2160.0,False,False +17031050700,1742.0,False,False +17031050800,1402.0,False,False +17031050900,1414.0,False,False +17031051000,1829.0,False,False +17031051100,1732.0,False,False +17031051200,1546.0,False,False +17031051300,2893.0,False,False +17031051400,2073.0,False,False +17031060100,2939.0,False,False +17031060200,2248.0,False,False +17031060300,2936.0,False,False +17031060400,3877.0,False,False +17031060500,1197.0,False,True +17031060800,5037.0,False,False +17031060900,7292.0,False,False +17031061000,2202.0,False,False +17031061100,1368.0,False,False +17031061200,2164.0,False,False +17031061500,2000.0,False,False +17031061800,1415.0,False,False +17031061901,3492.0,False,False +17031061902,4759.0,False,False +17031062000,3027.0,False,False +17031062100,3722.0,False,False +17031062200,2988.0,False,False +17031062300,1595.0,False,False +17031062400,1571.0,False,False +17031062500,1556.0,False,False +17031062600,2442.0,False,False +17031062700,2982.0,False,False +17031062800,3460.0,False,False +17031062900,3818.0,False,False +17031063000,3456.0,False,False +17031063100,2238.0,False,False +17031063200,6745.0,False,False +17031063301,2735.0,False,False +17031063302,3967.0,False,False +17031063303,1243.0,False,False +17031063400,2443.0,False,False +17031070101,3885.0,False,False +17031070102,2918.0,False,False +17031070103,1636.0,False,False +17031070200,4216.0,False,False +17031070300,3634.0,False,False +17031070400,3151.0,False,False +17031070500,3458.0,False,False +17031070600,3296.0,False,False +17031070700,4191.0,False,False +17031071000,4634.0,False,False +17031071100,3394.0,False,False +17031071200,1956.0,False,False +17031071300,4308.0,False,False +17031071400,5096.0,False,False +17031071500,6187.0,False,False +17031071600,1914.0,False,False +17031071700,1670.0,False,False +17031071800,2613.0,False,False +17031080100,6741.0,False,False +17031080201,3160.0,False,False +17031080202,3339.0,False,False +17031080300,4911.0,False,False +17031080400,4331.0,True,True +17031081000,8204.0,False,False +17031081100,4200.0,False,False +17031081201,4711.0,False,False +17031081202,2928.0,False,False +17031081300,5393.0,False,False +17031081401,2224.0,False,False +17031081402,5651.0,False,False +17031081403,8450.0,False,False +17031081500,4521.0,False,False +17031081600,4040.0,False,False +17031081700,4118.0,False,False +17031081800,10298.0,False,False +17031081900,1026.0,False,False +17031090100,3509.0,False,False +17031090200,6416.0,False,False +17031090300,1339.0,False,False +17031100100,5630.0,False,False +17031100200,6819.0,False,False +17031100300,6259.0,False,False +17031100400,3404.0,False,False +17031100500,5840.0,False,True +17031100600,4792.0,False,False +17031100700,5180.0,False,False +17031110100,5514.0,False,False +17031110200,3095.0,False,False +17031110300,5331.0,False,False +17031110400,4666.0,False,False +17031110501,5323.0,False,True +17031110502,3574.0,False,False +17031120100,4158.0,False,False +17031120200,4607.0,False,False +17031120300,6892.0,False,False +17031120400,3727.0,False,False +17031130100,5341.0,False,True +17031130200,1571.0,False,False +17031130300,5509.0,False,False +17031140100,3194.0,True,True +17031140200,6514.0,False,True +17031140301,2839.0,True,True +17031140302,4189.0,False,True +17031140400,5978.0,False,False +17031140500,3920.0,False,True +17031140601,2886.0,True,True +17031140602,5003.0,True,True +17031140701,3028.0,False,True +17031140702,5882.0,False,True +17031140800,6373.0,False,True +17031150200,7753.0,False,False +17031150300,7862.0,False,False +17031150401,4909.0,False,False +17031150402,3817.0,False,False +17031150501,3903.0,False,False +17031150502,4339.0,False,False +17031150600,4063.0,False,False +17031150700,4040.0,False,True +17031150800,4814.0,False,False +17031151001,2803.0,False,True +17031151002,4892.0,False,True +17031151100,5335.0,False,True +17031151200,3616.0,False,True +17031160100,2537.0,False,True +17031160200,3023.0,False,False +17031160300,3524.0,False,False +17031160400,4734.0,False,False +17031160501,4019.0,True,True +17031160502,3729.0,True,True +17031160601,3362.0,False,False +17031160602,3735.0,False,False +17031160700,5811.0,False,True +17031160800,5459.0,False,False +17031160900,2535.0,False,False +17031161000,2171.0,False,False +17031161100,2038.0,False,False +17031161200,3121.0,False,True +17031161300,3732.0,False,True +17031170100,1931.0,False,False +17031170200,3754.0,False,False +17031170300,5338.0,False,True +17031170400,4189.0,False,False +17031170500,5519.0,False,False +17031170600,2487.0,False,False +17031170700,3295.0,False,False +17031170800,4099.0,False,True +17031170900,1943.0,False,True +17031171000,6877.0,False,True +17031171100,4013.0,False,True +17031180100,6228.0,False,True +17031190100,2453.0,True,True +17031190200,5838.0,False,True +17031190300,5518.0,False,True +17031190401,4394.0,False,False +17031190402,5385.0,True,True +17031190601,4976.0,False,True +17031190602,5123.0,True,True +17031190701,2735.0,True,True +17031190702,5056.0,True,True +17031190800,6951.0,True,True +17031190900,2235.0,False,True +17031191000,2730.0,False,False +17031191100,6927.0,True,True +17031191200,4053.0,True,True +17031191301,5525.0,True,True +17031191302,5046.0,True,True +17031200100,3836.0,False,True +17031200200,4848.0,True,True +17031200300,1919.0,False,True +17031200401,3697.0,True,True +17031200402,4477.0,True,True +17031210100,4102.0,False,False +17031210400,2580.0,True,True +17031210501,3033.0,True,True +17031210502,4470.0,False,False +17031210601,2841.0,False,False +17031210602,4092.0,False,False +17031210700,4240.0,False,False +17031210800,1165.0,False,True +17031210900,3058.0,False,False +17031220300,2068.0,False,False +17031220400,2747.0,False,False +17031220500,2503.0,False,False +17031220601,1612.0,False,False +17031220602,4916.0,False,False +17031220701,3213.0,False,False +17031220702,3902.0,False,True +17031220901,2998.0,True,True +17031220902,2808.0,True,True +17031221000,2771.0,True,True +17031221100,4868.0,False,False +17031221200,3174.0,False,False +17031221300,2879.0,False,False +17031221400,3144.0,False,False +17031221500,2726.0,False,True +17031221600,3268.0,False,False +17031222200,2327.0,False,False +17031222500,1692.0,False,False +17031222600,1663.0,False,False +17031222700,2564.0,True,True +17031222800,1012.0,True,True +17031222900,1005.0,True,True +17031230100,1620.0,False,False +17031230200,2258.0,True,True +17031230300,972.0,True,True +17031230400,2090.0,True,True +17031230500,3327.0,True,True +17031230600,6988.0,True,True +17031230700,6252.0,True,True +17031230800,1232.0,True,True +17031230900,4808.0,False,True +17031231100,1217.0,True,True +17031231200,6504.0,True,True +17031231500,5586.0,True,True +17031240200,1633.0,False,False +17031240300,1215.0,False,False +17031240500,2425.0,False,False +17031240600,1725.0,False,False +17031240700,1876.0,False,True +17031240800,1370.0,False,False +17031240900,981.0,True,True +17031241000,2097.0,True,True +17031241100,3758.0,False,False +17031241200,1820.0,False,False +17031241300,1995.0,False,False +17031241400,5480.0,False,False +17031241500,2791.0,False,False +17031241600,3480.0,False,False +17031242000,4763.0,False,False +17031242100,3855.0,False,False +17031242200,3670.0,False,False +17031242300,3517.0,False,False +17031242400,2729.0,False,False +17031242500,3477.0,False,True +17031242600,5293.0,False,True +17031242700,1682.0,True,True +17031242800,1621.0,False,False +17031242900,1803.0,False,False +17031243000,2182.0,False,False +17031243100,2274.0,False,False +17031243200,2139.0,False,False +17031243300,2457.0,False,False +17031243400,2849.0,False,False +17031243500,3601.0,False,False +17031250200,2866.0,True,True +17031250300,5122.0,True,True +17031250400,4769.0,True,True +17031250500,7242.0,False,False +17031250600,4252.0,True,True +17031250700,5214.0,True,True +17031250800,2621.0,True,True +17031251000,1022.0,True,True +17031251100,4811.0,True,True +17031251200,3807.0,True,True +17031251300,4047.0,True,True +17031251400,4029.0,True,True +17031251500,4342.0,True,True +17031251600,4261.0,True,True +17031251700,1182.0,False,False +17031251800,5300.0,True,True +17031251900,4653.0,True,True +17031252000,5259.0,True,True +17031252101,1270.0,True,True +17031252102,6864.0,True,True +17031252201,2646.0,True,True +17031252202,4127.0,True,True +17031260100,1204.0,True,True +17031260200,960.0,True,True +17031260300,1668.0,True,True +17031260400,1174.0,True,True +17031260500,1538.0,True,True +17031260600,2018.0,True,True +17031260700,1669.0,True,True +17031260800,2447.0,True,True +17031260900,1461.0,True,True +17031261000,2276.0,True,True +17031270500,1271.0,True,True +17031271200,1326.0,True,True +17031271300,1110.0,True,True +17031271400,1272.0,True,True +17031271500,1527.0,True,True +17031271800,730.0,True,True +17031280100,6603.0,False,False +17031280400,1585.0,True,True +17031280800,786.0,True,True +17031280900,890.0,True,True +17031281900,6221.0,False,False +17031282700,2285.0,False,False +17031282800,1607.0,False,False +17031283100,3194.0,False,False +17031283200,1622.0,False,False +17031283800,3668.0,False,False +17031290900,3857.0,True,True +17031291200,2124.0,True,True +17031291600,945.0,True,True +17031292200,2506.0,True,True +17031292400,2000.0,True,True +17031292500,3595.0,True,True +17031300500,2916.0,True,True +17031300600,3035.0,True,True +17031300700,4841.0,True,True +17031300800,3960.0,True,True +17031300900,4223.0,True,True +17031301100,2217.0,True,True +17031301200,4417.0,True,True +17031301600,4242.0,True,True +17031301701,3785.0,True,True +17031301702,4645.0,True,True +17031301801,3568.0,True,True +17031301802,3421.0,True,True +17031301803,4423.0,True,True +17031310200,1765.0,False,False +17031310300,1873.0,False,True +17031310400,1286.0,False,False +17031310500,1491.0,True,True +17031310600,4555.0,False,False +17031310700,1514.0,False,True +17031310800,4421.0,False,True +17031310900,5215.0,True,True +17031320100,13568.0,False,False +17031320400,3150.0,False,False +17031320600,5183.0,False,False +17031330100,20087.0,False,False +17031330200,3599.0,False,False +17031340300,1875.0,True,True +17031340400,1949.0,True,True +17031340500,1591.0,True,True +17031340600,981.0,True,True +17031350100,2432.0,False,False +17031350400,1979.0,True,True +17031351000,3269.0,False,False +17031351100,2418.0,True,True +17031351400,1841.0,True,True +17031351500,731.0,True,True +17031360200,1477.0,True,True +17031380100,1894.0,True,True +17031380200,1556.0,True,True +17031380500,856.0,True,True +17031380700,1330.0,False,True +17031381200,1852.0,False,True +17031381400,1415.0,True,True +17031381500,347.0,True,True +17031381700,0.0,False,False +17031381800,1252.0,True,True +17031381900,1129.0,False,True +17031390100,1626.0,False,False +17031390200,2143.0,False,False +17031390300,2980.0,True,True +17031390400,2582.0,True,True +17031390500,1565.0,False,False +17031390600,1686.0,False,False +17031390700,5372.0,False,False +17031400300,1329.0,True,True +17031400400,2084.0,True,True +17031400500,2102.0,True,True +17031400800,2452.0,True,True +17031410100,2007.0,False,False +17031410200,1475.0,False,False +17031410500,2525.0,False,False +17031410600,2516.0,False,False +17031410700,2186.0,False,False +17031410800,2898.0,False,False +17031410900,3342.0,False,False +17031411000,3509.0,False,False +17031411100,2330.0,False,False +17031411200,1689.0,False,False +17031420100,1548.0,True,True +17031420200,1713.0,True,True +17031420300,2768.0,False,False +17031420400,1142.0,True,True +17031420500,1735.0,True,True +17031420600,1894.0,True,True +17031420700,2674.0,True,True +17031420800,2377.0,False,False +17031421200,1126.0,True,True +17031430101,3199.0,True,True +17031430102,3120.0,True,True +17031430200,4863.0,True,True +17031430300,2450.0,True,True +17031430400,2765.0,True,True +17031430500,3481.0,True,True +17031430600,2168.0,True,True +17031430700,2682.0,True,True +17031430800,1957.0,True,True +17031430900,1481.0,False,True +17031431200,2696.0,False,False +17031431301,3236.0,True,True +17031431302,4329.0,True,True +17031431400,6924.0,True,True +17031440101,4088.0,True,True +17031440102,3473.0,True,True +17031440201,5198.0,True,True +17031440202,3012.0,True,True +17031440300,4706.0,False,False +17031440600,1786.0,False,False +17031440700,1469.0,False,False +17031440800,1820.0,True,True +17031440900,2333.0,True,True +17031450300,3733.0,False,True +17031460100,3523.0,True,True +17031460200,2468.0,True,True +17031460301,3634.0,True,True +17031460302,3322.0,True,True +17031460400,3311.0,True,True +17031460500,5889.0,False,False +17031460600,1200.0,True,True +17031460700,2651.0,True,True +17031461000,1288.0,True,True +17031470100,2006.0,True,True +17031480100,2175.0,False,False +17031480200,1146.0,False,False +17031480300,1109.0,False,False +17031480400,5446.0,False,False +17031480500,2939.0,True,True +17031490300,2302.0,False,False +17031490400,742.0,False,False +17031490500,2041.0,False,True +17031490600,1464.0,True,True +17031490700,2777.0,True,True +17031490800,4006.0,True,True +17031490901,3264.0,True,True +17031490902,4204.0,False,False +17031491000,3408.0,True,True +17031491100,4256.0,False,True +17031491200,1931.0,True,True +17031491300,2327.0,True,True +17031491400,3336.0,True,True +17031500100,3136.0,False,False +17031500200,2106.0,True,True +17031500300,1598.0,True,True +17031510100,3325.0,True,True +17031510200,4033.0,True,True +17031510300,4817.0,True,True +17031520100,2001.0,True,True +17031520200,3178.0,True,True +17031520300,5902.0,True,True +17031520400,4515.0,True,True +17031520500,5275.0,False,False +17031520600,2852.0,True,True +17031530100,2263.0,True,True +17031530200,4390.0,True,True +17031530300,4014.0,True,True +17031530400,2183.0,False,True +17031530501,4148.0,True,True +17031530502,1456.0,False,True +17031530503,6171.0,True,True +17031530600,2403.0,True,True +17031540101,4104.0,True,True +17031540102,3255.0,True,True +17031550100,6465.0,False,False +17031550200,2624.0,False,False +17031560100,1501.0,False,True +17031560200,1644.0,True,True +17031560300,3308.0,True,True +17031560400,1807.0,True,True +17031560700,3764.0,False,True +17031560800,5858.0,False,False +17031560900,5381.0,False,False +17031561000,6301.0,False,False +17031561100,5650.0,False,False +17031570100,1280.0,True,True +17031570200,2236.0,False,True +17031570300,5916.0,True,True +17031570400,1640.0,True,True +17031570500,2654.0,True,True +17031580100,2698.0,True,True +17031580200,3288.0,True,True +17031580300,2512.0,True,True +17031580400,4891.0,True,True +17031580501,4993.0,True,True +17031580502,5358.0,True,True +17031580600,5179.0,False,True +17031580700,5908.0,True,True +17031580800,2261.0,True,True +17031590500,1865.0,False,True +17031590600,3419.0,False,False +17031590700,3276.0,True,True +17031600400,4188.0,True,True +17031600600,3144.0,True,True +17031600700,2835.0,True,True +17031600900,3549.0,False,False +17031610300,5837.0,True,True +17031610400,1951.0,True,True +17031610800,1611.0,False,False +17031611000,823.0,True,True +17031611100,2552.0,True,True +17031611200,2340.0,True,True +17031611300,2650.0,True,True +17031611400,2846.0,True,True +17031611500,3210.0,True,True +17031611600,1589.0,True,True +17031611700,2012.0,True,True +17031611800,2246.0,True,True +17031611900,1639.0,True,True +17031612000,1347.0,True,True +17031612100,1022.0,True,True +17031620100,4785.0,True,True +17031620200,2138.0,False,True +17031620300,7810.0,True,True +17031620400,4393.0,False,True +17031630100,883.0,True,True +17031630200,1825.0,True,True +17031630300,5483.0,True,True +17031630400,6379.0,True,True +17031630500,5913.0,True,True +17031630800,6781.0,True,True +17031630900,5167.0,True,True +17031640100,1532.0,False,False +17031640300,6655.0,False,False +17031640400,3559.0,False,True +17031640500,3902.0,False,False +17031640600,4206.0,False,True +17031640700,3385.0,True,True +17031640800,1737.0,True,True +17031650100,4389.0,True,True +17031650200,7098.0,True,True +17031650301,4919.0,False,False +17031650302,4213.0,True,True +17031650400,6648.0,True,True +17031650500,4619.0,False,False +17031660301,1398.0,True,True +17031660302,4999.0,True,True +17031660400,5804.0,True,True +17031660500,4454.0,True,True +17031660600,5626.0,True,True +17031660700,1477.0,True,True +17031660800,4867.0,True,True +17031660900,4593.0,True,True +17031661000,5434.0,True,True +17031661100,7115.0,False,True +17031670100,1001.0,True,True +17031670200,930.0,True,True +17031670300,1087.0,True,True +17031670400,1689.0,True,True +17031670500,922.0,True,True +17031670600,975.0,True,True +17031670700,1113.0,True,True +17031670800,1015.0,True,True +17031670900,1290.0,True,True +17031671100,754.0,True,True +17031671200,1019.0,True,True +17031671300,2012.0,True,True +17031671400,1147.0,True,True +17031671500,2281.0,True,True +17031671600,1643.0,True,True +17031671800,1367.0,True,True +17031671900,1125.0,True,True +17031672000,3533.0,True,True +17031680500,1235.0,True,True +17031680600,1171.0,True,True +17031680900,3302.0,True,True +17031681000,2793.0,True,True +17031681100,2595.0,True,True +17031681200,2472.0,True,True +17031681300,2418.0,True,True +17031681400,2407.0,True,True +17031690300,2443.0,True,True +17031690400,2939.0,True,True +17031690500,632.0,True,True +17031690900,4273.0,True,True +17031691000,2256.0,False,True +17031691100,2811.0,True,True +17031691200,2735.0,True,True +17031691300,2452.0,True,True +17031691400,3160.0,True,True +17031691500,1968.0,True,True +17031700100,3605.0,False,False +17031700200,6521.0,False,True +17031700301,6530.0,False,False +17031700302,5836.0,False,False +17031700401,6337.0,False,False +17031700402,4484.0,False,True +17031700501,6594.0,False,False +17031700502,3449.0,False,False +17031710100,1250.0,True,True +17031710200,4335.0,True,True +17031710300,1544.0,True,True +17031710400,5608.0,True,True +17031710500,4336.0,True,True +17031710600,1719.0,True,True +17031710700,3192.0,True,True +17031710800,4694.0,True,True +17031710900,1972.0,True,True +17031711000,3301.0,True,True +17031711100,2351.0,False,True +17031711200,4949.0,False,False +17031711300,1583.0,False,True +17031711400,2572.0,True,True +17031711500,2503.0,True,True +17031720100,3381.0,False,False +17031720200,3791.0,False,False +17031720300,3929.0,False,False +17031720400,1935.0,False,False +17031720500,1909.0,False,False +17031720600,1768.0,False,False +17031720700,3078.0,False,False +17031730100,2703.0,False,True +17031730201,5262.0,True,True +17031730202,3098.0,False,False +17031730300,1103.0,True,True +17031730400,4141.0,False,False +17031730500,4233.0,False,True +17031730600,3758.0,True,True +17031730700,2444.0,True,True +17031740100,3136.0,False,False +17031740200,6640.0,False,False +17031740300,4949.0,False,False +17031740400,4465.0,False,False +17031750100,3743.0,True,True +17031750200,2903.0,False,False +17031750300,2526.0,False,False +17031750400,3096.0,False,False +17031750500,5376.0,False,True +17031750600,3406.0,True,True +17031760801,4520.0,False,False +17031760802,2553.0,False,True +17031760803,5788.0,True,True +17031770201,6075.0,False,False +17031770202,4749.0,False,False +17031770300,6924.0,False,False +17031770400,4503.0,False,False +17031770500,4030.0,True,True +17031770601,3234.0,False,False +17031770602,5198.0,True,True +17031770700,2301.0,False,False +17031770800,5248.0,False,True +17031770901,4948.0,False,True +17031770902,3309.0,False,True +17031800100,2304.0,False,False +17031800200,6584.0,False,False +17031800300,3334.0,False,False +17031800400,3637.0,False,False +17031800500,5400.0,False,False +17031800600,2351.0,False,False +17031800700,4779.0,False,False +17031800800,2281.0,False,False +17031800900,4399.0,False,False +17031801000,5159.0,False,False +17031801100,4913.0,False,False +17031801200,3578.0,False,False +17031801300,4310.0,False,False +17031801400,3138.0,False,False +17031801500,6115.0,False,False +17031801601,4449.0,False,False +17031801603,4097.0,True,True +17031801605,5512.0,False,False +17031801606,6082.0,False,False +17031801607,5204.0,False,False +17031801608,7067.0,False,False +17031801701,3890.0,False,False +17031801702,4602.0,False,False +17031801800,5703.0,False,False +17031801901,4280.0,False,False +17031801902,3474.0,False,False +17031802002,5444.0,False,False +17031802003,2581.0,False,False +17031802004,5029.0,True,True +17031802100,3466.0,False,False +17031802200,4769.0,False,False +17031802300,5513.0,False,False +17031802402,5977.0,True,True +17031802403,1340.0,False,False +17031802404,7463.0,True,True +17031802503,6302.0,False,False +17031802504,6610.0,False,False +17031802505,6579.0,True,True +17031802506,2476.0,False,True +17031802605,6916.0,False,False +17031802607,1253.0,False,False +17031802608,6383.0,False,False +17031802609,6299.0,False,True +17031802610,1655.0,False,False +17031802701,6911.0,False,False +17031802702,4763.0,False,False +17031802801,4812.0,False,False +17031802802,6578.0,False,False +17031802900,6111.0,False,False +17031803005,2475.0,False,False +17031803007,4909.0,False,False +17031803008,4583.0,False,False +17031803010,5444.0,False,False +17031803012,2050.0,False,False +17031803013,5423.0,False,False +17031803014,3560.0,False,True +17031803015,4402.0,False,False +17031803016,2616.0,False,False +17031803017,6051.0,False,False +17031803100,3416.0,False,False +17031803200,5310.0,False,False +17031803300,5633.0,False,False +17031803400,6364.0,False,False +17031803500,5765.0,False,False +17031803603,6924.0,False,False +17031803604,4243.0,False,False +17031803605,7266.0,False,False +17031803606,9148.0,True,True +17031803607,4912.0,False,False +17031803608,7141.0,False,False +17031803610,7195.0,False,False +17031803611,5784.0,False,False +17031803612,3517.0,True,True +17031803701,2766.0,False,False +17031803702,5950.0,False,False +17031803800,4514.0,False,False +17031803901,3687.0,False,False +17031803902,3374.0,False,False +17031804000,4545.0,False,False +17031804102,7263.0,False,False +17031804104,4790.0,False,False +17031804105,3875.0,False,False +17031804106,6982.0,False,False +17031804108,3931.0,False,False +17031804109,2793.0,False,False +17031804201,8743.0,False,False +17031804202,7278.0,False,False +17031804305,7041.0,False,False +17031804306,5771.0,False,False +17031804308,7012.0,False,False +17031804309,3086.0,False,False +17031804310,8918.0,False,False +17031804311,8211.0,False,False +17031804403,6696.0,False,False +17031804404,5834.0,False,False +17031804405,3507.0,False,False +17031804406,6646.0,False,False +17031804505,3445.0,False,False +17031804506,5133.0,False,False +17031804507,11526.0,False,False +17031804508,2399.0,True,True +17031804509,6201.0,False,False +17031804510,6287.0,False,False +17031804511,2483.0,True,True +17031804603,6137.0,False,False +17031804606,6888.0,False,False +17031804607,7239.0,False,False +17031804608,3429.0,False,False +17031804609,5695.0,False,False +17031804610,2305.0,False,False +17031804611,4418.0,False,False +17031804701,6122.0,False,False +17031804705,4470.0,False,False +17031804706,2441.0,False,False +17031804709,6003.0,False,False +17031804710,3767.0,False,False +17031804711,7733.0,False,False +17031804712,5225.0,False,False +17031804713,5873.0,False,False +17031804714,3169.0,False,False +17031804715,3178.0,True,True +17031804716,4675.0,False,False +17031804803,6037.0,False,False +17031804804,6331.0,False,False +17031804805,6481.0,False,False +17031804806,3930.0,False,False +17031804807,5397.0,False,False +17031804808,2618.0,False,False +17031804809,4165.0,False,False +17031804810,6818.0,False,False +17031804901,6649.0,False,False +17031804902,5303.0,False,False +17031805001,4918.0,False,False +17031805002,7042.0,False,True +17031805105,7186.0,False,True +17031805106,2994.0,False,False +17031805107,6246.0,False,True +17031805108,6435.0,False,True +17031805109,4178.0,False,False +17031805110,4462.0,False,False +17031805111,7354.0,False,True +17031805112,3294.0,False,False +17031805201,3963.0,False,False +17031805202,4376.0,False,False +17031805301,3161.0,False,True +17031805302,3722.0,False,False +17031805401,3877.0,False,True +17031805402,4973.0,False,False +17031805501,3712.0,False,False +17031805502,3950.0,False,False +17031805600,4470.0,False,False +17031805701,5001.0,False,False +17031805702,1939.0,False,False +17031805801,2465.0,False,False +17031805802,4799.0,False,False +17031805901,4060.0,False,False +17031805902,6139.0,False,False +17031806001,5501.0,False,True +17031806002,7347.0,False,True +17031806003,8183.0,False,True +17031806004,7182.0,False,True +17031806102,3739.0,False,False +17031806103,4849.0,False,False +17031806104,4202.0,True,True +17031806201,4845.0,False,True +17031806202,4838.0,False,False +17031806300,4644.0,False,False +17031806400,2507.0,False,False +17031806501,2349.0,False,False +17031806502,4529.0,False,False +17031806600,3541.0,False,False +17031806700,3921.0,False,False +17031806801,4129.0,False,False +17031806802,3030.0,False,False +17031806900,5056.0,False,False +17031807000,5851.0,False,False +17031807100,3522.0,False,False +17031807200,5313.0,False,False +17031807300,7811.0,False,True +17031807400,6962.0,False,True +17031807500,3358.0,False,False +17031807600,6228.0,False,True +17031807700,5228.0,False,True +17031807800,2589.0,False,False +17031807900,4093.0,False,False +17031808001,3693.0,False,False +17031808002,4648.0,False,False +17031808100,3686.0,True,True +17031808200,5367.0,False,False +17031808301,5805.0,False,False +17031808302,3937.0,False,False +17031808400,4289.0,False,False +17031808500,4017.0,False,False +17031808600,2080.0,False,False +17031808702,5225.0,False,False +17031808800,3866.0,False,False +17031808900,4200.0,False,False +17031809000,3976.0,False,False +17031809100,3193.0,False,False +17031809200,4401.0,True,True +17031809300,4521.0,False,False +17031809400,5273.0,False,False +17031809500,4119.0,False,False +17031809600,3110.0,False,True +17031809700,3792.0,False,False +17031809800,2660.0,False,False +17031809900,2846.0,False,False +17031810000,5112.0,False,False +17031810100,4349.0,False,False +17031810200,6428.0,False,False +17031810301,4429.0,False,False +17031810302,3087.0,False,False +17031810400,5481.0,False,False +17031810501,5268.0,False,False +17031810502,5490.0,False,True +17031810600,4386.0,False,True +17031810701,4981.0,False,True +17031810702,3801.0,False,False +17031810800,5242.0,False,False +17031810900,6375.0,False,False +17031811000,4069.0,False,False +17031811100,6152.0,False,True +17031811200,4957.0,False,False +17031811301,4510.0,False,False +17031811302,4154.0,True,True +17031811401,4490.0,False,False +17031811402,4158.0,False,False +17031811500,6441.0,False,True +17031811600,6373.0,False,True +17031811701,3870.0,True,True +17031811702,5274.0,False,True +17031811800,5130.0,False,False +17031811900,5841.0,False,False +17031812000,5129.0,False,False +17031812100,4721.0,False,False +17031812200,3790.0,False,False +17031812301,4153.0,False,False +17031812302,2790.0,False,False +17031812400,3188.0,False,False +17031812500,3173.0,False,False +17031812600,3291.0,False,False +17031812700,3285.0,False,False +17031812801,3367.0,False,False +17031812802,2538.0,False,False +17031812900,4670.0,False,False +17031813000,4051.0,False,False +17031813100,4954.0,False,False +17031813200,4262.0,False,False +17031813301,3229.0,True,True +17031813302,3057.0,True,True +17031813400,7660.0,True,True +17031813500,6434.0,False,True +17031813600,5422.0,True,True +17031813701,3710.0,True,True +17031813702,3900.0,True,True +17031813801,2717.0,True,True +17031813802,4973.0,True,True +17031813900,6493.0,True,True +17031814000,4573.0,True,True +17031814100,4257.0,True,True +17031814200,7032.0,True,True +17031814300,5065.0,True,True +17031814400,8066.0,True,True +17031814500,5742.0,False,False +17031814600,5722.0,True,True +17031814700,5320.0,False,False +17031814800,5921.0,False,False +17031814900,6502.0,False,False +17031815000,3806.0,False,True +17031815100,4507.0,False,False +17031815200,6718.0,False,False +17031815300,3335.0,False,False +17031815400,5124.0,False,False +17031815500,8452.0,False,False +17031815600,4979.0,False,False +17031815701,3595.0,False,False +17031815702,5111.0,False,False +17031815800,1626.0,False,False +17031815900,4930.0,False,False +17031816000,3205.0,False,False +17031816100,5792.0,False,False +17031816200,4219.0,False,False +17031816300,4915.0,True,True +17031816401,5186.0,True,True +17031816402,4254.0,True,True +17031816500,4209.0,True,True +17031816600,4704.0,True,True +17031816700,2809.0,True,True +17031816800,5277.0,False,False +17031816900,6042.0,False,False +17031817000,4977.0,True,True +17031817101,4757.0,True,True +17031817102,3220.0,False,False +17031817200,4275.0,False,True +17031817300,2622.0,True,True +17031817400,4052.0,False,False +17031817500,3509.0,True,True +17031817600,3964.0,True,True +17031817700,5156.0,False,False +17031817900,5756.0,False,True +17031818000,3968.0,False,False +17031818100,2329.0,False,False +17031818200,4540.0,False,False +17031818300,6014.0,False,False +17031818401,3421.0,False,False +17031818402,3131.0,False,False +17031818500,5413.0,False,False +17031818600,4958.0,False,False +17031818700,3769.0,False,False +17031818800,5240.0,False,False +17031818900,4333.0,False,False +17031819000,4573.0,False,False +17031819100,4132.0,False,False +17031819200,6391.0,False,False +17031819300,2694.0,False,False +17031819400,5406.0,False,False +17031819500,3365.0,False,False +17031819600,3745.0,False,False +17031819700,5656.0,False,False +17031819801,5543.0,False,False +17031819802,2586.0,False,False +17031819900,3298.0,False,False +17031820000,2215.0,False,False +17031820101,7220.0,False,False +17031820103,4286.0,False,False +17031820104,4138.0,False,False +17031820201,7405.0,False,False +17031820202,3137.0,False,False +17031820300,5617.0,False,True +17031820400,5643.0,True,True +17031820501,5875.0,False,True +17031820502,5282.0,False,True +17031820603,5880.0,True,True +17031820604,3933.0,True,True +17031820605,4625.0,True,True +17031820606,3846.0,False,False +17031820700,6679.0,False,False +17031820800,3882.0,False,False +17031820901,5452.0,False,False +17031820902,5076.0,False,True +17031821001,4787.0,False,False +17031821002,5404.0,False,True +17031821101,4735.0,False,True +17031821102,4394.0,False,False +17031821200,6327.0,True,True +17031821300,5470.0,True,True +17031821401,3881.0,True,True +17031821402,2992.0,False,True +17031821500,1792.0,True,True +17031821600,4401.0,False,False +17031821700,4623.0,False,False +17031821800,5412.0,False,False +17031821900,5043.0,False,False +17031822000,4272.0,True,True +17031822101,4309.0,False,False +17031822102,4343.0,False,False +17031822200,3965.0,False,False +17031822301,3539.0,False,False +17031822302,4123.0,False,False +17031822400,5949.0,True,True +17031822500,4366.0,False,False +17031822601,4731.0,False,False +17031822602,7086.0,False,False +17031822701,4524.0,False,False +17031822702,3674.0,False,False +17031822801,3147.0,False,False +17031822802,3488.0,False,False +17031822900,1921.0,False,False +17031823001,6496.0,True,True +17031823002,5981.0,False,False +17031823101,4380.0,True,True +17031823102,3588.0,False,False +17031823200,4847.0,False,False +17031823302,5787.0,False,False +17031823303,4495.0,False,False +17031823304,6064.0,False,False +17031823400,4985.0,False,False +17031823500,4623.0,False,False +17031823602,6280.0,False,False +17031823603,2313.0,True,True +17031823604,3676.0,False,False +17031823605,4210.0,False,False +17031823702,6148.0,False,False +17031823703,8642.0,False,True +17031823704,3922.0,False,False +17031823705,4509.0,True,True +17031823801,5530.0,False,False +17031823803,6510.0,False,False +17031823805,2916.0,False,False +17031823806,3766.0,False,False +17031823901,3839.0,False,False +17031823903,4569.0,False,False +17031823904,3964.0,False,False +17031824003,6124.0,False,False +17031824004,5462.0,False,False +17031824005,5749.0,False,False +17031824006,4728.0,False,False +17031824105,6686.0,False,False +17031824106,6849.0,False,False +17031824107,6847.0,False,False +17031824108,8101.0,False,False +17031824113,7070.0,False,False +17031824114,5186.0,False,False +17031824115,4053.0,False,False +17031824116,5373.0,False,False +17031824117,9453.0,False,False +17031824119,5655.0,False,False +17031824120,8970.0,False,False +17031824121,3153.0,False,False +17031824122,6526.0,False,False +17031824123,7348.0,False,False +17031824300,4778.0,True,True +17031824400,1968.0,True,True +17031824503,7047.0,False,False +17031824505,6364.0,False,False +17031824506,6897.0,False,False +17031824507,4153.0,False,False +17031824601,4556.0,False,False +17031824602,6490.0,False,False +17031824701,4122.0,False,False +17031824702,5488.0,False,False +17031824800,7846.0,True,True +17031824900,3395.0,True,True +17031825000,4792.0,False,False +17031825200,2200.0,False,False +17031825302,6585.0,False,False +17031825303,4010.0,False,False +17031825304,4338.0,False,False +17031825400,5269.0,False,False +17031825501,5626.0,False,False +17031825503,6283.0,False,False +17031825504,3511.0,False,False +17031825505,5878.0,True,False +17031825600,5245.0,True,True +17031825700,4158.0,True,True +17031825801,3377.0,False,False +17031825802,6522.0,True,True +17031825803,6238.0,True,True +17031825900,3488.0,False,True +17031826000,2923.0,True,True +17031826100,5786.0,True,True +17031826201,3270.0,False,False +17031826202,5761.0,True,True +17031826301,3864.0,True,True +17031826303,4291.0,True,True +17031826304,2848.0,True,True +17031826401,3990.0,False,False +17031826402,4947.0,True,True +17031826500,6031.0,True,True +17031826600,5888.0,True,True +17031826700,5113.0,True,True +17031826800,5175.0,True,True +17031826901,1822.0,True,True +17031826902,1625.0,True,True +17031827000,3995.0,True,True +17031827100,2452.0,True,True +17031827200,4169.0,True,True +17031827300,2549.0,True,True +17031827400,4074.0,True,True +17031827500,5160.0,True,True +17031827600,3479.0,True,True +17031827700,2844.0,True,True +17031827801,5246.0,False,False +17031827802,3626.0,False,False +17031827804,2969.0,False,False +17031827805,2934.0,False,False +17031827901,2357.0,False,True +17031827902,4381.0,True,True +17031828000,4947.0,False,False +17031828100,5292.0,True,False +17031828201,4167.0,False,False +17031828202,4512.0,False,False +17031828300,3203.0,False,False +17031828401,3645.0,False,False +17031828402,3799.0,False,False +17031828503,4152.0,True,True +17031828504,6343.0,True,True +17031828505,6517.0,False,False +17031828506,8891.0,False,False +17031828601,4026.0,False,False +17031828602,4546.0,False,False +17031828701,4198.0,False,False +17031828702,4874.0,False,False +17031828801,5610.0,False,False +17031828802,3233.0,False,False +17031828900,3658.0,True,True +17031829000,1316.0,True,True +17031829100,3528.0,True,True +17031829200,5541.0,True,True +17031829301,4127.0,False,True +17031829302,3871.0,True,True +17031829401,1096.0,True,True +17031829402,3270.0,True,True +17031829500,4076.0,True,False +17031829600,2847.0,False,False +17031829700,4247.0,True,True +17031829800,6220.0,False,False +17031829901,8977.0,False,False +17031829902,6418.0,False,False +17031830001,2300.0,True,True +17031830003,7940.0,False,False +17031830004,6895.0,False,False +17031830005,4163.0,False,False +17031830006,3055.0,False,False +17031830007,4924.0,True,True +17031830008,4400.0,False,False +17031830100,3399.0,False,False +17031830201,5324.0,False,False +17031830202,3563.0,False,False +17031830300,4473.0,True,True +17031830400,4335.0,False,False +17031830500,3901.0,True,True +17031830600,4733.0,True,True +17031830700,3814.0,True,True +17031830800,2522.0,False,False +17031830900,2993.0,False,False +17031831000,2177.0,False,False +17031831100,8537.0,True,True +17031831200,4704.0,True,True +17031831300,995.0,False,False +17031831400,3026.0,True,True +17031831500,3656.0,False,True +17031831600,8039.0,False,True +17031831700,2459.0,False,True +17031831800,6493.0,False,False +17031831900,3228.0,False,False +17031832000,1621.0,False,False +17031832100,3602.0,False,False +17031832200,3180.0,False,False +17031832300,1938.0,False,False +17031832400,3129.0,False,False +17031832500,3390.0,False,False +17031832600,3918.0,False,False +17031832900,2082.0,False,False +17031833000,4480.0,False,False +17031833100,7436.0,False,False +17031833300,2728.0,False,False +17031833900,2650.0,True,True +17031834000,3104.0,True,True +17031834200,4914.0,False,False +17031834300,5980.0,False,False +17031834400,4437.0,False,True +17031834500,1105.0,True,True +17031834600,1681.0,True,True +17031834700,1258.0,True,True +17031834800,1589.0,True,True +17031834900,1443.0,True,True +17031835000,5585.0,True,True +17031835100,5047.0,True,True +17031835200,1993.0,False,True +17031835500,1434.0,True,True +17031835600,896.0,True,True +17031835700,434.0,True,True +17031835800,1744.0,True,True +17031835900,3112.0,True,True +17031836000,2824.0,False,True +17031836100,1897.0,True,True +17031836200,1492.0,False,False +17031836300,1513.0,False,False +17031836400,3787.0,True,True +17031836500,1963.0,True,True +17031836600,2337.0,True,True +17031836700,2308.0,True,True +17031836800,2397.0,True,True +17031836900,1163.0,True,True +17031837000,1804.0,True,True +17031837100,1319.0,True,True +17031837300,2762.0,True,True +17031837400,2259.0,True,True +17031837800,2627.0,True,True +17031838000,2589.0,True,True +17031838100,1614.0,True,True +17031838200,2058.0,False,False +17031838300,1710.0,False,False +17031838600,1728.0,True,True +17031838700,3934.0,True,True +17031838800,3300.0,True,True +17031839000,9209.0,False,False +17031839100,7545.0,False,False +17031839200,2405.0,False,True +17031839500,1461.0,False,True +17031839600,1653.0,True,True +17031839700,4913.0,False,False +17031839800,2738.0,False,True +17031839900,4452.0,False,False +17031840000,2794.0,False,True +17031840100,3508.0,True,True +17031840200,2419.0,False,True +17031840300,3511.0,True,True +17031840400,3106.0,True,True +17031840700,3592.0,True,True +17031840800,3151.0,True,True +17031841000,1043.0,False,False +17031841100,7142.0,True,True +17031841200,4586.0,True,True +17031841300,4122.0,False,True +17031841400,897.0,True,True +17031841500,2689.0,True,True +17031841600,579.0,True,True +17031841700,1651.0,True,True +17031841800,2428.0,True,True +17031841900,6539.0,False,False +17031842000,3164.0,False,False +17031842100,7865.0,True,True +17031842200,3362.0,False,False +17031842300,3199.0,False,False +17031842400,3082.0,True,True +17031842500,2052.0,True,True +17031842600,4313.0,False,False +17031842800,7068.0,True,True +17031842900,2556.0,True,True +17031843000,2457.0,True,True +17031843100,1575.0,True,True +17031843200,2375.0,False,True +17031843300,1877.0,True,True +17031843400,1310.0,True,True +17031843500,10169.0,True,True +17031843600,2898.0,True,True +17031843700,2527.0,False,False +17031843800,1520.0,True,True +17031843900,3430.0,True,True +17031980000,0.0,False,False +17031980100,0.0,False,False +17031990000,0.0,False,False +17033880100,2631.0,False,False +17033880200,3381.0,False,False +17033880300,3131.0,True,True +17033880400,2576.0,False,False +17033880500,4234.0,False,False +17033880600,3019.0,False,False +17035972400,3126.0,False,False +17035972500,3297.0,False,False +17035972600,4413.0,False,False +17037000100,6709.0,False,False +17037000200,4767.0,False,False +17037000300,2671.0,False,False +17037000400,9674.0,False,False +17037000500,4063.0,False,False +17037000600,5364.0,False,False +17037000700,4003.0,False,False +17037000800,6046.0,False,False +17037000900,5982.0,False,False +17037001001,6112.0,False,False +17037001002,6678.0,False,True +17037001300,5805.0,False,False +17037001400,6764.0,False,False +17037001500,3890.0,True,True +17037001600,4607.0,False,False +17037001700,3410.0,False,False +17037001800,4191.0,False,False +17037001900,2557.0,False,False +17037002000,5143.0,False,False +17037002100,2171.0,True,True +17037002200,3759.0,False,False +17039971400,2462.0,False,False +17039971500,2745.0,False,False +17039971600,3824.0,False,False +17039971700,3526.0,False,False +17039971800,3375.0,True,True +17041952000,2441.0,False,False +17041952100,3988.0,False,False +17041952200,4524.0,False,False +17041952300,5050.0,True,True +17041952400,3620.0,True,True +17043840000,2812.0,False,True +17043840101,5516.0,False,True +17043840102,4381.0,False,False +17043840103,6325.0,False,False +17043840104,5690.0,True,True +17043840201,6479.0,False,False +17043840202,5681.0,False,False +17043840303,3779.0,False,True +17043840304,3906.0,False,False +17043840600,5287.0,False,False +17043840703,4207.0,False,False +17043840704,3152.0,False,True +17043840705,4064.0,False,False +17043840706,3420.0,False,False +17043840801,2592.0,True,True +17043840802,5739.0,False,True +17043840901,3811.0,False,False +17043840904,4302.0,True,True +17043840906,2940.0,False,False +17043840907,4419.0,False,False +17043840908,4155.0,False,False +17043840910,5051.0,True,True +17043840911,3154.0,False,False +17043841002,3056.0,False,False +17043841003,3489.0,False,False +17043841004,3506.0,False,False +17043841102,6145.0,False,False +17043841103,3714.0,False,False +17043841104,4471.0,False,False +17043841108,4725.0,False,False +17043841109,3978.0,False,False +17043841110,3357.0,False,False +17043841111,3506.0,False,False +17043841112,3156.0,False,False +17043841113,3795.0,False,False +17043841114,4370.0,False,False +17043841204,6013.0,False,False +17043841205,4692.0,False,False +17043841206,5124.0,False,False +17043841207,3003.0,False,False +17043841208,5692.0,False,False +17043841209,3735.0,False,False +17043841210,4536.0,False,False +17043841307,5959.0,False,False +17043841308,4276.0,False,False +17043841310,3739.0,False,False +17043841312,3879.0,False,False +17043841313,2868.0,False,False +17043841314,6523.0,False,False +17043841315,3591.0,False,False +17043841316,3347.0,False,False +17043841318,2853.0,False,False +17043841320,2583.0,False,False +17043841321,2621.0,False,False +17043841322,4905.0,False,False +17043841323,2925.0,False,False +17043841324,2974.0,False,False +17043841325,6000.0,False,False +17043841326,3318.0,False,False +17043841327,4369.0,False,False +17043841401,6661.0,False,False +17043841403,3977.0,False,False +17043841404,3249.0,False,False +17043841501,6323.0,True,True +17043841503,3922.0,False,False +17043841504,3223.0,False,False +17043841603,4249.0,True,True +17043841604,4307.0,False,False +17043841605,4091.0,False,True +17043841606,2168.0,False,False +17043841607,4517.0,False,False +17043841703,6999.0,True,True +17043841704,4379.0,False,False +17043841705,6006.0,False,False +17043841706,4368.0,False,True +17043841801,5221.0,False,False +17043841802,5244.0,False,False +17043841901,2574.0,False,False +17043841902,4362.0,False,False +17043842000,4156.0,False,False +17043842100,6093.0,False,False +17043842200,4703.0,False,False +17043842300,3538.0,False,False +17043842400,5059.0,False,False +17043842500,3396.0,False,False +17043842601,4066.0,False,False +17043842602,4033.0,False,False +17043842603,3716.0,False,False +17043842604,4242.0,False,False +17043842605,4275.0,False,False +17043842702,4738.0,False,False +17043842703,3982.0,False,False +17043842704,5592.0,False,False +17043842706,4422.0,False,False +17043842708,2617.0,False,False +17043842709,3743.0,False,False +17043842710,3818.0,False,False +17043842711,2445.0,False,False +17043842800,4635.0,False,False +17043842900,5769.0,False,False +17043843000,4446.0,False,False +17043843100,3948.0,False,False +17043843200,5234.0,False,False +17043843301,4347.0,False,False +17043843302,2815.0,False,False +17043843400,3452.0,False,False +17043843500,5534.0,False,False +17043843601,3536.0,False,False +17043843602,3085.0,False,False +17043843700,4212.0,False,False +17043843800,3268.0,False,False +17043843900,4232.0,False,False +17043844001,3965.0,False,False +17043844002,4529.0,False,False +17043844100,4133.0,False,False +17043844201,5540.0,False,False +17043844202,2634.0,False,False +17043844301,6482.0,False,False +17043844304,4008.0,False,False +17043844305,4034.0,False,False +17043844306,4546.0,False,False +17043844307,3822.0,False,False +17043844401,3137.0,False,False +17043844402,4791.0,False,False +17043844501,3811.0,False,False +17043844502,3344.0,False,False +17043844601,3767.0,False,False +17043844602,4844.0,False,False +17043844701,4258.0,False,False +17043844702,5687.0,False,False +17043844801,4191.0,False,False +17043844802,3189.0,False,False +17043844901,3616.0,False,False +17043844902,4092.0,False,False +17043845000,6329.0,False,False +17043845100,6469.0,False,False +17043845200,5028.0,False,False +17043845300,3368.0,False,False +17043845401,3715.0,False,False +17043845402,3026.0,False,False +17043845502,4918.0,False,False +17043845505,4346.0,False,False +17043845506,3624.0,False,False +17043845507,3335.0,False,False +17043845508,3721.0,False,False +17043845509,3260.0,False,False +17043845510,3292.0,False,False +17043845601,4133.0,False,False +17043845602,4994.0,False,False +17043845701,4001.0,False,False +17043845702,4617.0,False,False +17043845703,4692.0,False,False +17043845704,4872.0,False,False +17043845802,3649.0,False,False +17043845803,5576.0,True,True +17043845805,3679.0,False,False +17043845807,6303.0,False,False +17043845808,3618.0,False,False +17043845809,4361.0,False,False +17043845810,3887.0,False,False +17043845811,3922.0,False,False +17043845901,3240.0,False,False +17043845902,3477.0,False,False +17043846002,4655.0,False,False +17043846003,4180.0,False,False +17043846004,3287.0,False,False +17043846102,4509.0,False,False +17043846103,5587.0,False,False +17043846104,4505.0,False,False +17043846105,3564.0,False,False +17043846106,3831.0,False,False +17043846201,6191.0,False,False +17043846202,6647.0,False,False +17043846203,4323.0,False,False +17043846205,3762.0,False,False +17043846206,4359.0,False,False +17043846207,5626.0,False,False +17043846208,3315.0,False,False +17043846209,4134.0,False,False +17043846304,6404.0,False,False +17043846305,5625.0,False,False +17043846307,4641.0,False,False +17043846308,3663.0,False,False +17043846310,4712.0,False,False +17043846311,5553.0,False,False +17043846312,4458.0,False,False +17043846313,4859.0,False,False +17043846314,3332.0,False,False +17043846315,4068.0,False,False +17043846404,6279.0,False,False +17043846405,3760.0,False,False +17043846408,4059.0,False,False +17043846409,4726.0,False,False +17043846410,5324.0,False,False +17043846411,4656.0,False,False +17043846412,4525.0,False,False +17043846413,3500.0,False,False +17043846504,6371.0,False,False +17043846507,2578.0,False,False +17043846509,5600.0,False,False +17043846510,3163.0,False,False +17043846511,6503.0,False,False +17043846513,2568.0,False,False +17043846514,4120.0,False,False +17043846515,5080.0,False,False +17043846517,6019.0,False,False +17043846518,3442.0,False,False +17043846519,2963.0,False,False +17043846521,5391.0,False,False +17043846522,4097.0,False,False +17043846523,2726.0,False,False +17043846524,4802.0,False,False +17043846603,4159.0,True,True +17043846604,3758.0,False,False +17043846701,4597.0,False,True +17043846702,3990.0,False,False +17045070100,2434.0,False,False +17045070200,1898.0,False,False +17045070300,3758.0,True,True +17045070400,5545.0,False,False +17045070500,3772.0,False,False +17047956900,2098.0,False,False +17047957000,2161.0,False,False +17047957100,2196.0,False,False +17049950100,4098.0,False,False +17049950200,4452.0,False,False +17049950300,4181.0,False,False +17049950400,3639.0,False,False +17049950500,4412.0,False,False +17049950600,5529.0,False,False +17049950700,3578.0,True,True +17049950800,4248.0,True,True +17051950500,2794.0,True,True +17051950600,2504.0,True,True +17051950700,4432.0,True,False +17051950800,5161.0,True,False +17051950900,1993.0,True,True +17051951000,1691.0,True,True +17051951100,2990.0,False,False +17053961600,1874.0,True,True +17053961700,2070.0,False,False +17053961800,4222.0,False,False +17053961900,1575.0,False,False +17053962000,3529.0,False,False +17055040100,2832.0,False,False +17055040200,3072.0,False,False +17055040300,3143.0,True,True +17055040400,3878.0,True,True +17055040500,3241.0,True,True +17055040600,3013.0,True,True +17055040700,3997.0,True,True +17055040800,3724.0,True,True +17055040900,2592.0,True,True +17055041000,2777.0,True,True +17055041100,3117.0,True,True +17055041200,3537.0,False,False +17057952800,2591.0,False,False +17057952900,3102.0,False,False +17057953000,2343.0,False,False +17057953100,2476.0,False,False +17057953200,2630.0,False,False +17057953300,3303.0,False,False +17057953400,1812.0,True,True +17057953500,4748.0,True,False +17057953600,4307.0,True,True +17057953700,2486.0,False,False +17057953800,2639.0,False,False +17057953900,2655.0,True,True +17059972700,2369.0,False,False +17059972800,2695.0,True,True +17061973600,3422.0,False,False +17061973700,1766.0,True,True +17061973800,2139.0,False,False +17061973900,2332.0,True,False +17061974000,3473.0,False,False +17063000102,7761.0,False,False +17063000103,6169.0,False,False +17063000200,7030.0,False,False +17063000300,3092.0,False,False +17063000400,6172.0,False,False +17063000500,2937.0,False,False +17063000600,2988.0,False,False +17063000700,5593.0,False,False +17063000800,5103.0,False,False +17063000900,3821.0,False,False +17065973100,2901.0,False,False +17065973200,2225.0,False,False +17065973300,3050.0,False,False +17067953700,2055.0,False,False +17067953800,2460.0,False,False +17067953900,2156.0,True,True +17067954000,2325.0,False,False +17067954100,3121.0,False,False +17067954200,2314.0,False,False +17067954300,3552.0,True,False +17069970900,1969.0,True,True +17069971000,1970.0,False,True +17071973300,2382.0,False,False +17071973400,1715.0,False,False +17071973500,2712.0,False,False +17073030100,5750.0,False,False +17073030201,4618.0,False,False +17073030202,3850.0,False,False +17073030203,4303.0,False,False +17073030300,7015.0,False,False +17073030400,2616.0,False,False +17073030500,2234.0,False,False +17073030600,2781.0,True,True +17073030800,3571.0,True,True +17073030900,3496.0,True,True +17073031000,3511.0,False,False +17073031100,2649.0,True,True +17073031200,2873.0,False,False +17075950100,2843.0,True,True +17075950200,3605.0,False,False +17075950300,3267.0,False,False +17075950400,3463.0,True,True +17075950500,3883.0,False,False +17075950600,3224.0,False,False +17075950700,2868.0,False,False +17075950800,2343.0,False,False +17075950900,2316.0,True,True +17077010100,3149.0,False,False +17077010200,4082.0,True,True +17077010300,2566.0,True,True +17077010400,4637.0,False,False +17077010600,5780.0,True,True +17077010700,3235.0,True,True +17077010800,3693.0,True,True +17077010900,2360.0,True,True +17077011000,6669.0,False,False +17077011100,3341.0,False,False +17077011200,4488.0,False,False +17077011400,3766.0,False,False +17077011600,3959.0,False,False +17077011700,6252.0,False,False +17079977300,2874.0,False,False +17079977400,2726.0,True,False +17079977500,3994.0,False,False +17081050100,3860.0,False,False +17081050200,2903.0,False,False +17081050300,4462.0,False,False +17081050400,5352.0,False,False +17081050500,3788.0,True,True +17081050600,2994.0,False,False +17081050700,3906.0,False,False +17081050800,4152.0,False,False +17081050900,2825.0,True,True +17081051000,1537.0,True,True +17081051100,2206.0,True,True +17083010100,4962.0,False,False +17083010200,3404.0,False,False +17083010300,3838.0,False,False +17083010401,6243.0,False,False +17083010402,2028.0,False,False +17083010500,1462.0,False,False +17085020100,4485.0,False,False +17085020200,4767.0,False,False +17085020300,4400.0,False,False +17085020401,2026.0,False,False +17085020402,2835.0,True,True +17085020500,3075.0,False,False +17087977600,4010.0,False,False +17087977700,2875.0,False,False +17087977800,3384.0,True,True +17087980000,2225.0,True,True +17089850101,6306.0,False,False +17089850103,5863.0,False,False +17089850105,7032.0,False,False +17089850106,8296.0,False,False +17089850201,4424.0,False,False +17089850202,6657.0,True,False +17089850301,8372.0,True,True +17089850302,4597.0,True,False +17089850400,2532.0,False,False +17089850500,3993.0,False,False +17089850600,7407.0,False,False +17089850701,23965.0,False,False +17089850702,13948.0,False,False +17089850703,2224.0,False,False +17089850800,6800.0,False,False +17089851000,6757.0,False,False +17089851101,4417.0,False,False +17089851102,3946.0,False,False +17089851301,3766.0,True,True +17089851302,3432.0,True,True +17089851400,6585.0,True,True +17089851500,1163.0,True,True +17089851600,6760.0,True,True +17089851801,7439.0,False,False +17089851904,7852.0,False,False +17089851905,14174.0,False,False +17089851907,7798.0,False,False +17089851908,5394.0,False,False +17089851909,4432.0,False,False +17089851910,3854.0,False,False +17089852001,4891.0,False,False +17089852002,7084.0,False,False +17089852003,7722.0,False,False +17089852101,7146.0,False,False +17089852102,9160.0,False,False +17089852201,4573.0,False,False +17089852202,9212.0,False,False +17089852300,2001.0,False,False +17089852401,8677.0,False,False +17089852402,8609.0,False,False +17089852403,5284.0,False,False +17089852500,6551.0,False,False +17089852601,7835.0,False,False +17089852606,4769.0,False,False +17089852700,6774.0,False,False +17089852803,4952.0,False,False +17089852805,6025.0,False,False +17089852806,6893.0,False,False +17089852807,3683.0,False,False +17089852808,7542.0,False,False +17089852903,6373.0,False,False +17089852904,2859.0,True,True +17089852905,4695.0,True,True +17089852906,5768.0,False,False +17089852907,7122.0,True,True +17089853001,3058.0,False,False +17089853004,3380.0,False,False +17089853005,5943.0,True,False +17089853006,3445.0,False,False +17089853007,5964.0,False,False +17089853008,4467.0,False,True +17089853100,3272.0,True,True +17089853200,6591.0,True,True +17089853300,5080.0,True,True +17089853400,9252.0,True,True +17089853500,6572.0,True,True +17089853600,7796.0,True,True +17089853900,6131.0,False,False +17089854001,4723.0,False,False +17089854002,5475.0,False,False +17089854100,5360.0,True,True +17089854200,5881.0,True,True +17089854301,7156.0,True,True +17089854302,5092.0,False,False +17089854400,14251.0,False,False +17089854501,15502.0,False,False +17089854503,12243.0,False,False +17089854504,8508.0,False,False +17089854600,4199.0,True,True +17089854700,2261.0,True,True +17089854800,7824.0,False,False +17089854900,5565.0,True,False +17091010100,2395.0,False,False +17091010201,2019.0,False,False +17091010202,9669.0,False,False +17091010300,4031.0,False,False +17091010400,4706.0,False,False +17091010500,6400.0,False,False +17091010601,6125.0,False,False +17091010602,6325.0,False,False +17091010701,4271.0,False,False +17091010702,7048.0,False,False +17091010800,3502.0,False,False +17091010900,4325.0,True,True +17091011000,1709.0,True,True +17091011100,1939.0,False,False +17091011200,2072.0,False,False +17091011300,2140.0,False,False +17091011400,1760.0,True,True +17091011500,2171.0,True,True +17091011600,1482.0,True,True +17091011700,3758.0,True,True +17091011800,2544.0,False,False +17091011900,1301.0,False,False +17091012000,5772.0,False,False +17091012100,3715.0,False,False +17091012200,3203.0,False,False +17091012300,4384.0,True,True +17091012400,4419.0,True,True +17091012500,2699.0,True,True +17091012600,4753.0,False,False +17093890101,19843.0,False,False +17093890102,14863.0,False,False +17093890201,5099.0,False,False +17093890202,3849.0,False,False +17093890301,6369.0,False,False +17093890302,6410.0,False,False +17093890400,29089.0,False,False +17093890500,13871.0,False,False +17093890600,10370.0,False,False +17093890700,16291.0,False,False +17095000100,2924.0,False,False +17095000200,3082.0,False,False +17095000300,4276.0,True,True +17095000400,4489.0,False,False +17095000500,5723.0,False,False +17095000600,3558.0,True,True +17095000700,1754.0,True,True +17095000800,2541.0,False,True +17095000900,2160.0,True,True +17095001000,3885.0,True,True +17095001100,2324.0,True,True +17095001200,1431.0,False,False +17095001300,3694.0,True,True +17095001400,1504.0,False,False +17095001500,4055.0,True,True +17095001600,3108.0,False,False +17097860101,8340.0,False,False +17097860103,3591.0,False,False +17097860104,3269.0,False,False +17097860200,3573.0,False,False +17097860301,3906.0,True,True +17097860302,2711.0,True,True +17097860400,5739.0,False,False +17097860500,4596.0,True,True +17097860600,7067.0,True,True +17097860805,1885.0,False,False +17097860806,5006.0,False,False +17097860807,3356.0,False,False +17097860808,2654.0,False,False +17097860809,3128.0,False,False +17097860810,6953.0,False,False +17097860811,4217.0,False,False +17097860903,6125.0,False,False +17097860904,5029.0,False,False +17097860905,5861.0,False,False +17097860906,9593.0,False,False +17097861007,4255.0,False,False +17097861008,5408.0,False,False +17097861009,4997.0,False,False +17097861010,5939.0,False,False +17097861011,7559.0,False,False +17097861012,4966.0,False,False +17097861013,3064.0,False,False +17097861014,3869.0,False,False +17097861105,4265.0,False,False +17097861106,8257.0,False,False +17097861107,3832.0,False,False +17097861108,6048.0,False,False +17097861201,6809.0,False,False +17097861202,3990.0,False,False +17097861301,5286.0,False,False +17097861303,4763.0,True,True +17097861304,3468.0,False,False +17097861402,8931.0,False,False +17097861403,2434.0,True,True +17097861404,6199.0,False,False +17097861504,7976.0,False,False +17097861505,3418.0,False,False +17097861506,5855.0,False,False +17097861507,3054.0,False,False +17097861508,3697.0,False,False +17097861509,3451.0,False,False +17097861510,4797.0,False,False +17097861603,5771.0,False,False +17097861604,5310.0,False,False +17097861607,4465.0,False,False +17097861608,3678.0,False,False +17097861609,4559.0,False,False +17097861610,3510.0,False,False +17097861611,4409.0,False,False +17097861701,1533.0,False,False +17097861702,4411.0,False,False +17097861803,7054.0,False,False +17097861804,3641.0,True,True +17097861901,3277.0,False,False +17097861902,6522.0,True,True +17097862000,5538.0,True,True +17097862100,5628.0,True,True +17097862200,4255.0,False,False +17097862300,2701.0,True,True +17097862401,3221.0,True,True +17097862402,2828.0,True,True +17097862501,3679.0,True,True +17097862502,2680.0,True,True +17097862603,7649.0,True,True +17097862604,5172.0,True,True +17097862605,3938.0,True,True +17097862700,3680.0,True,True +17097862800,1585.0,True,True +17097862901,4178.0,True,True +17097862902,2422.0,True,True +17097863003,9102.0,True,True +17097863004,4680.0,False,False +17097863005,477.0,False,False +17097863006,0.0,False,False +17097863100,2541.0,True,True +17097863201,3593.0,True,True +17097863202,5312.0,False,False +17097863300,2322.0,False,False +17097863400,4207.0,False,False +17097863500,4393.0,False,False +17097863601,3573.0,False,False +17097863603,3234.0,False,False +17097863604,2891.0,False,False +17097863701,4906.0,False,False +17097863702,3805.0,False,False +17097863801,4586.0,False,False +17097863902,5822.0,False,False +17097863903,4160.0,False,False +17097863904,6456.0,False,False +17097864001,6277.0,False,False +17097864002,6379.0,True,True +17097864101,11126.0,False,False +17097864105,6325.0,False,False +17097864106,4284.0,False,False +17097864107,5151.0,False,False +17097864108,5569.0,False,False +17097864203,4430.0,False,False +17097864204,4475.0,False,False +17097864205,11204.0,False,False +17097864206,3640.0,False,False +17097864303,4226.0,False,False +17097864305,4014.0,False,False +17097864306,2214.0,False,False +17097864307,1567.0,False,False +17097864308,4602.0,False,False +17097864402,7487.0,False,False +17097864403,5415.0,False,False +17097864407,5623.0,False,False +17097864408,5967.0,False,False +17097864409,4894.0,False,False +17097864410,5545.0,False,False +17097864411,5182.0,False,False +17097864412,4272.0,False,False +17097864505,7317.0,False,False +17097864510,4863.0,False,False +17097864511,6365.0,False,True +17097864512,4332.0,False,False +17097864513,5741.0,False,False +17097864514,2486.0,False,False +17097864515,2736.0,False,False +17097864516,4447.0,False,False +17097864517,2797.0,False,False +17097864518,5004.0,False,False +17097864519,4729.0,False,False +17097864520,5170.0,False,False +17097864521,2711.0,False,False +17097864522,4642.0,False,False +17097864601,3873.0,False,False +17097864602,3918.0,False,False +17097864700,2696.0,False,False +17097864801,5628.0,False,False +17097864802,2826.0,False,False +17097864901,4413.0,False,False +17097864903,4869.0,False,False +17097864904,2554.0,False,False +17097865000,1221.0,False,False +17097865200,5662.0,True,True +17097865300,3446.0,False,False +17097865400,4344.0,False,False +17097865501,2202.0,False,False +17097865502,2257.0,False,False +17097865600,3665.0,False,False +17097865700,6016.0,False,False +17097865801,3106.0,False,False +17097865802,2833.0,False,False +17097866000,6749.0,False,False +17097866100,3526.0,True,True +17097866200,5921.0,False,False +17097990000,0.0,False,False +17099961701,6140.0,False,False +17099961702,2892.0,False,False +17099961800,3965.0,False,False +17099961900,4119.0,False,False +17099962000,3664.0,False,False +17099962100,5042.0,False,False +17099962200,4993.0,False,False +17099962300,7231.0,False,False +17099962400,3805.0,False,False +17099962500,2271.0,False,False +17099962600,5675.0,True,True +17099962700,2223.0,True,True +17099962800,3276.0,False,False +17099962900,2710.0,True,True +17099963000,4803.0,False,False +17099963100,3281.0,False,False +17099963200,2663.0,False,False +17099963300,2301.0,True,True +17099963400,3932.0,False,False +17099963500,4707.0,False,False +17099963600,3311.0,False,False +17099963700,5209.0,False,False +17099963800,4317.0,True,False +17099963900,5064.0,False,False +17099964000,2668.0,False,False +17099964100,3894.0,False,False +17099964200,2179.0,True,True +17099964300,3402.0,True,False +17101880700,3152.0,False,False +17101880800,5391.0,True,True +17101880900,2632.0,True,True +17101881000,2115.0,True,True +17101881100,2743.0,True,True +17103000100,2733.0,False,False +17103000200,3017.0,False,False +17103000300,4171.0,False,False +17103000400,7709.0,False,False +17103000500,4641.0,False,False +17103000600,3462.0,True,True +17103000700,1782.0,False,False +17103000800,3553.0,False,False +17103000900,3321.0,False,False +17105960100,4041.0,False,False +17105960200,3376.0,False,False +17105960300,2897.0,False,False +17105960400,3255.0,False,False +17105960500,2975.0,True,True +17105960600,4176.0,True,True +17105960700,5182.0,False,False +17105960800,5138.0,False,False +17105960900,2465.0,False,False +17105961000,2535.0,True,True +17107952900,3865.0,False,False +17107953000,2319.0,False,False +17107953100,3841.0,False,False +17107953200,3810.0,False,False +17107953300,3078.0,False,False +17107953400,3629.0,False,False +17107953500,5336.0,False,False +17107953600,3125.0,False,False +17109010100,3542.0,True,True +17109010200,2033.0,False,False +17109010300,2223.0,False,False +17109010400,5366.0,False,False +17109010500,2050.0,False,True +17109010600,2461.0,True,True +17109010700,4546.0,False,False +17109010900,3241.0,True,True +17109011000,2113.0,False,False +17109011100,2904.0,False,False +17111870101,7387.0,False,False +17111870102,6507.0,False,False +17111870200,6066.0,False,False +17111870301,4345.0,True,True +17111870302,4502.0,True,True +17111870401,8212.0,False,False +17111870402,5649.0,False,False +17111870500,9191.0,False,False +17111870603,5154.0,False,False +17111870604,6022.0,False,False +17111870605,6222.0,False,False +17111870606,4080.0,False,False +17111870702,7438.0,False,False +17111870703,5182.0,False,False +17111870704,3574.0,False,False +17111870803,7935.0,False,False +17111870807,5466.0,False,False +17111870808,3715.0,False,False +17111870809,6590.0,False,False +17111870810,4521.0,False,False +17111870811,4577.0,False,False +17111870812,4850.0,False,False +17111870902,8091.0,False,False +17111870903,3736.0,False,False +17111870904,4718.0,False,False +17111870905,4581.0,False,False +17111871003,4923.0,False,False +17111871004,5499.0,False,False +17111871104,16134.0,False,False +17111871105,5363.0,False,False +17111871106,9127.0,False,False +17111871107,5328.0,False,False +17111871108,5510.0,False,False +17111871109,5357.0,False,False +17111871201,6562.0,False,False +17111871202,5905.0,False,False +17111871205,4414.0,False,False +17111871206,6768.0,False,False +17111871207,4786.0,False,False +17111871208,3879.0,False,False +17111871209,3522.0,False,False +17111871301,4768.0,False,False +17111871304,3055.0,False,False +17111871305,6395.0,False,False +17111871306,8157.0,False,False +17111871307,4758.0,False,False +17111871310,4492.0,False,False +17111871311,4336.0,False,False +17111871402,5753.0,False,False +17111871404,4628.0,False,False +17111871500,14732.0,False,False +17111871600,5252.0,False,False +17113000102,8317.0,False,False +17113000104,11944.0,False,False +17113000105,3918.0,False,False +17113000200,4419.0,False,True +17113000301,4254.0,False,False +17113000302,5475.0,False,False +17113000400,3422.0,False,False +17113000501,2484.0,False,False +17113000502,2817.0,False,False +17113000504,5537.0,False,False +17113000505,6219.0,False,False +17113001103,3008.0,False,False +17113001104,8293.0,False,False +17113001105,4878.0,False,False +17113001106,3197.0,False,False +17113001200,2558.0,False,False +17113001301,1989.0,False,False +17113001302,2578.0,False,False +17113001303,2009.0,False,False +17113001402,3406.0,False,False +17113001403,3788.0,False,False +17113001404,4311.0,True,True +17113001500,2243.0,True,True +17113001600,2736.0,True,True +17113001700,2158.0,True,True +17113001800,3307.0,False,False +17113002101,4896.0,False,False +17113002102,1627.0,False,False +17113005101,9565.0,False,False +17113005102,7006.0,False,False +17113005201,1071.0,False,False +17113005202,3253.0,False,False +17113005400,10102.0,False,False +17113005501,2405.0,False,False +17113005502,2562.0,False,False +17113005601,2054.0,True,True +17113005602,2151.0,False,False +17113005700,4967.0,False,False +17113005800,3942.0,False,False +17113005900,4045.0,True,True +17113006000,3667.0,False,False +17115000200,2611.0,True,True +17115000300,3501.0,True,True +17115000400,1121.0,True,True +17115000500,2906.0,True,True +17115000600,1909.0,True,True +17115000900,1700.0,True,True +17115001000,1039.0,True,True +17115001100,3375.0,True,True +17115001200,3005.0,True,False +17115001300,2502.0,False,False +17115001400,2732.0,False,False +17115001500,4213.0,False,False +17115001600,2601.0,False,False +17115001700,2203.0,True,False +17115001801,2386.0,False,False +17115001802,2165.0,True,True +17115001900,1949.0,True,True +17115002000,3921.0,True,True +17115002100,1150.0,True,True +17115002200,4937.0,False,False +17115002300,2896.0,False,False +17115002401,2559.0,False,False +17115002402,4782.0,False,False +17115002500,7049.0,False,False +17115002601,4143.0,False,False +17115002602,1938.0,False,False +17115002700,2435.0,False,False +17115002800,4373.0,False,False +17115002901,3577.0,False,False +17115002902,4917.0,False,False +17115002903,4286.0,True,True +17115002904,5021.0,False,False +17115003000,3404.0,False,False +17115003100,2222.0,True,True +17117956000,3210.0,True,True +17117956100,3204.0,True,True +17117956200,2501.0,True,True +17117956300,3091.0,False,False +17117956400,5130.0,False,False +17117956500,2553.0,False,False +17117956600,4677.0,False,False +17117956700,4027.0,False,False +17117956800,2631.0,False,False +17117956900,3360.0,True,True +17117957000,3524.0,True,True +17117957100,2592.0,False,False +17117957200,4963.0,False,False +17119400101,2655.0,False,False +17119400102,4429.0,True,True +17119400200,4377.0,True,True +17119400600,2333.0,True,True +17119400700,2127.0,True,True +17119400801,2014.0,False,False +17119400802,6321.0,False,False +17119400903,5142.0,True,True +17119400904,3490.0,False,False +17119400951,5339.0,False,False +17119400952,3076.0,False,False +17119401000,2469.0,True,True +17119401100,6272.0,True,True +17119401200,1749.0,False,False +17119401300,5060.0,False,False +17119401400,3244.0,False,False +17119401500,2862.0,True,True +17119401701,2745.0,True,True +17119401721,5291.0,False,False +17119401722,2791.0,False,False +17119401800,5909.0,False,False +17119401901,1782.0,False,False +17119401903,4476.0,False,False +17119401904,639.0,False,False +17119402000,4409.0,True,False +17119402100,3132.0,True,True +17119402200,3327.0,True,True +17119402300,1804.0,False,False +17119402400,1650.0,True,True +17119402500,1684.0,True,True +17119402600,2525.0,True,True +17119402701,7043.0,False,False +17119402721,7539.0,False,False +17119402722,3109.0,False,False +17119402801,3472.0,False,False +17119402802,8179.0,False,False +17119402803,3121.0,False,False +17119402900,4850.0,False,False +17119403001,4882.0,False,False +17119403002,7003.0,False,False +17119403101,6892.0,False,False +17119403121,8881.0,False,False +17119403122,5765.0,False,False +17119403200,4440.0,False,False +17119403300,2553.0,True,False +17119403401,3845.0,False,False +17119403402,6402.0,True,False +17119403502,5698.0,False,False +17119403531,7593.0,False,False +17119403532,5213.0,False,False +17119403533,10401.0,False,False +17119403534,4163.0,False,False +17119403601,3306.0,False,False +17119403603,1782.0,False,False +17119403604,6708.0,False,False +17119403701,5959.0,False,False +17119403702,5722.0,False,False +17119403801,5299.0,False,False +17119403802,4191.0,False,False +17119404000,2590.0,True,True +17119404100,3052.0,False,False +17121951600,3310.0,False,False +17121951700,2477.0,False,False +17121951800,2345.0,True,True +17121951900,2974.0,False,False +17121952000,4328.0,True,True +17121952100,3018.0,True,True +17121952200,3974.0,False,False +17121952300,3529.0,False,False +17121952400,3866.0,False,False +17121952500,2375.0,True,True +17121952600,2036.0,True,True +17121952700,3511.0,True,True +17123961100,2550.0,False,False +17123961200,2710.0,False,False +17123961300,1965.0,False,False +17123961400,2633.0,False,False +17123961500,1821.0,False,False +17125956300,2610.0,False,False +17125956400,1826.0,True,True +17125956500,3236.0,True,True +17125956600,1568.0,True,True +17125956700,1904.0,False,False +17125956800,2477.0,True,True +17127970100,4695.0,True,True +17127970200,4121.0,True,True +17127970300,3358.0,True,True +17127970400,2045.0,True,True +17129010100,5885.0,False,False +17129010200,4031.0,False,False +17129010300,2390.0,False,False +17131040100,4584.0,False,False +17131040200,3357.0,False,False +17131040300,3599.0,False,False +17131040400,4049.0,False,False +17133600101,7908.0,False,False +17133600102,5135.0,False,False +17133600401,6483.0,False,False +17133600402,4686.0,False,False +17133600501,6546.0,False,False +17133600502,3410.0,False,False +17135957300,3222.0,False,False +17135957400,2427.0,True,True +17135957500,3064.0,True,True +17135957600,3198.0,False,False +17135957700,2693.0,True,False +17135957800,3521.0,True,True +17135957900,4575.0,False,False +17135958000,6128.0,False,False +17137951400,2408.0,True,True +17137951500,3128.0,False,False +17137951600,3053.0,True,True +17137951700,2258.0,True,True +17137951800,4938.0,False,False +17137951900,4521.0,False,False +17137952000,4080.0,True,False +17137952100,3502.0,False,False +17137952200,3065.0,False,False +17137952300,3294.0,False,False +17139976900,4954.0,False,False +17139977000,2422.0,False,False +17139977100,2982.0,False,False +17139977200,4283.0,True,True +17141960700,4391.0,False,False +17141960800,3518.0,False,False +17141960900,4262.0,False,False +17141961000,6683.0,False,False +17141961100,4890.0,False,False +17141961200,5824.0,False,False +17141961300,4711.0,False,False +17141961400,4289.0,False,False +17141961500,4419.0,False,False +17141961600,3280.0,False,False +17141961700,4758.0,False,False +17143000100,1237.0,True,True +17143000200,1796.0,True,True +17143000300,1698.0,True,True +17143000500,1481.0,True,True +17143000600,3252.0,True,True +17143000900,2673.0,True,True +17143001200,1431.0,True,True +17143001300,1954.0,True,True +17143001500,1733.0,True,True +17143001600,4108.0,True,True +17143001800,2940.0,False,True +17143001900,1529.0,False,False +17143002000,3127.0,False,False +17143002100,4680.0,True,True +17143002200,4062.0,True,True +17143002300,5092.0,False,False +17143002400,4497.0,False,False +17143002500,3893.0,True,True +17143002600,1703.0,False,False +17143002701,3754.0,False,False +17143002702,3411.0,False,False +17143002800,3344.0,False,False +17143002900,3669.0,False,False +17143003000,5202.0,False,False +17143003101,5394.0,False,False +17143003102,6008.0,False,False +17143003200,4501.0,False,False +17143003300,2992.0,False,False +17143003401,11160.0,False,False +17143003402,3780.0,False,False +17143003601,2685.0,False,False +17143003602,5440.0,True,False +17143003700,3457.0,False,False +17143003800,3272.0,False,False +17143003900,7487.0,False,False +17143004000,4627.0,False,False +17143004101,6768.0,False,False +17143004102,2843.0,True,False +17143004200,3374.0,False,False +17143004300,2416.0,True,True +17143004400,4646.0,False,False +17143004500,4798.0,False,False +17143004600,5437.0,False,False +17143004801,4661.0,False,False +17143004802,4197.0,False,False +17143004901,3638.0,False,False +17143004902,4747.0,False,False +17143005000,2176.0,True,True +17145030100,2923.0,False,False +17145030200,7213.0,True,True +17145030300,2219.0,False,False +17145030400,2605.0,True,True +17145030500,2380.0,False,False +17145030600,3911.0,True,False +17147954500,4251.0,False,False +17147954600,6281.0,False,False +17147954700,2939.0,True,True +17147954800,2930.0,False,False +17149952400,3481.0,True,True +17149952500,2683.0,False,False +17149952600,2915.0,False,False +17149952700,4483.0,True,False +17149952800,2110.0,True,True +17151971200,2298.0,True,True +17151971300,1905.0,True,True +17153971000,2907.0,True,True +17153971100,2603.0,True,True +17155954500,2857.0,False,False +17155954600,2864.0,False,False +17157950500,1985.0,False,False +17157950600,4352.0,False,False +17157950700,2822.0,True,True +17157950800,4565.0,False,False +17157950900,3351.0,False,False +17157951000,2513.0,False,False +17157951100,3635.0,False,False +17157951200,6148.0,True,False +17157951300,2924.0,False,False +17159977900,3767.0,False,False +17159978000,1721.0,True,True +17159978100,4282.0,False,False +17159978200,2774.0,True,True +17159978300,3222.0,False,False +17161020100,7640.0,False,False +17161020200,3544.0,False,False +17161020300,6381.0,True,True +17161020400,6150.0,False,False +17161020600,2229.0,False,False +17161020700,1505.0,True,True +17161020800,5197.0,False,False +17161020900,5459.0,False,False +17161021000,3757.0,False,False +17161021100,3732.0,False,False +17161021200,4366.0,False,False +17161021300,5026.0,False,False +17161021400,1304.0,False,False +17161021500,4196.0,False,False +17161021600,2174.0,False,False +17161021700,3863.0,True,True +17161021800,4722.0,False,False +17161021900,1415.0,True,True +17161022000,4104.0,False,False +17161022100,2541.0,False,False +17161022200,3739.0,True,True +17161022300,2146.0,True,True +17161022600,2203.0,True,True +17161022800,5558.0,False,False +17161022900,2475.0,False,False +17161023000,3773.0,False,False +17161023100,2424.0,False,False +17161023200,5232.0,False,False +17161023300,3194.0,True,True +17161023500,2274.0,True,True +17161023600,1913.0,True,True +17161023700,2173.0,True,True +17161024000,4116.0,False,False +17161024101,3673.0,False,False +17161024102,5306.0,False,False +17161024103,3550.0,False,False +17161024200,4091.0,False,False +17161024300,2571.0,False,False +17161024400,2011.0,True,True +17161024500,2146.0,True,True +17163500400,1659.0,True,True +17163500500,2838.0,True,True +17163500900,3579.0,True,True +17163501100,1484.0,True,True +17163501200,2607.0,True,True +17163501300,3801.0,True,True +17163501400,3345.0,True,True +17163501501,2140.0,False,False +17163501502,2725.0,False,False +17163501602,4563.0,False,False +17163501603,5418.0,False,False +17163501604,4342.0,False,False +17163501605,2518.0,False,False +17163501700,2543.0,True,True +17163501800,5459.0,False,False +17163501900,3274.0,False,False +17163502100,2170.0,True,True +17163502200,2020.0,True,True +17163502300,5701.0,True,True +17163502401,1646.0,True,True +17163502404,3397.0,True,True +17163502500,968.0,True,True +17163502602,5840.0,True,True +17163502603,3505.0,True,True +17163502700,982.0,True,True +17163502800,3143.0,True,True +17163502900,1757.0,True,True +17163503100,7304.0,True,True +17163503202,5913.0,False,False +17163503203,6456.0,False,False +17163503211,4053.0,False,False +17163503301,3644.0,False,False +17163503304,6739.0,False,False +17163503322,7329.0,False,False +17163503323,7099.0,False,False +17163503324,6599.0,False,False +17163503332,4875.0,False,False +17163503334,5860.0,False,False +17163503402,6531.0,False,False +17163503404,6282.0,False,False +17163503411,3410.0,True,True +17163503412,5668.0,False,False +17163503413,5675.0,False,False +17163503414,4337.0,False,False +17163503800,1047.0,False,False +17163503903,3720.0,False,False +17163503904,11063.0,False,False +17163503905,2969.0,False,False +17163503906,5176.0,False,False +17163504001,5004.0,False,False +17163504002,5537.0,False,False +17163504302,7633.0,False,False +17163504303,8343.0,False,False +17163504351,3348.0,False,False +17163504352,4331.0,False,False +17163504353,4271.0,False,False +17163504354,6688.0,False,False +17163504355,4915.0,False,False +17163504500,5232.0,True,True +17163504600,1863.0,True,True +17165955100,2260.0,True,True +17165955500,2448.0,True,True +17165955600,2311.0,False,False +17165955700,2551.0,False,False +17165955800,3381.0,True,True +17165955900,2397.0,True,True +17165956000,2857.0,True,True +17165956100,2629.0,True,True +17165956200,3160.0,False,False +17167000100,3721.0,True,True +17167000201,2303.0,False,False +17167000202,3132.0,True,True +17167000300,2727.0,True,True +17167000400,2118.0,True,True +17167000501,2153.0,False,False +17167000503,3716.0,False,False +17167000504,2585.0,False,False +17167000600,4309.0,True,True +17167000700,2254.0,True,True +17167000800,1975.0,True,True +17167000900,2468.0,True,True +17167001001,1882.0,False,False +17167001003,1263.0,False,False +17167001004,4883.0,False,False +17167001100,2420.0,False,False +17167001200,3797.0,False,False +17167001300,1824.0,False,False +17167001400,1036.0,True,True +17167001500,997.0,True,True +17167001600,3825.0,True,True +17167001700,1018.0,True,True +17167001800,2224.0,True,True +17167001900,3223.0,True,True +17167002000,6056.0,False,False +17167002100,3407.0,False,False +17167002200,3669.0,True,True +17167002300,1985.0,True,True +17167002400,3158.0,True,True +17167002500,5662.0,True,False +17167002600,2418.0,True,True +17167002700,3203.0,False,False +17167002801,2923.0,False,False +17167002802,3738.0,True,True +17167002900,5021.0,False,False +17167003000,6126.0,False,False +17167003100,7455.0,False,False +17167003201,4754.0,False,False +17167003202,4323.0,False,False +17167003203,6158.0,False,False +17167003300,4599.0,False,False +17167003400,6338.0,False,False +17167003500,5443.0,False,False +17167003601,2753.0,False,False +17167003602,4507.0,False,False +17167003603,5679.0,False,False +17167003604,4788.0,False,False +17167003700,8671.0,False,False +17167003801,2583.0,True,True +17167003802,6038.0,False,False +17167003901,5219.0,False,False +17167003902,3786.0,False,False +17167004000,4548.0,False,False +17169970100,2384.0,True,True +17169970200,2812.0,False,False +17169970300,1757.0,False,False +17171970600,1744.0,False,False +17171970700,3261.0,False,False +17173959100,3708.0,False,False +17173959200,3005.0,False,False +17173959300,4717.0,True,True +17173959400,3226.0,False,False +17173959500,3771.0,False,False +17173959600,3310.0,False,False +17175951400,2969.0,False,False +17175951500,2478.0,False,False +17177000100,4416.0,False,False +17177000200,2936.0,False,False +17177000300,3772.0,False,False +17177000400,2783.0,False,False +17177000500,3200.0,False,False +17177000600,3261.0,False,False +17177000700,1939.0,True,True +17177000800,2881.0,True,True +17177000900,4989.0,True,False +17177001000,4040.0,False,False +17177001100,3287.0,True,False +17177001200,3869.0,True,True +17177001300,3720.0,True,True +17179020100,2485.0,False,False +17179020301,4109.0,False,False +17179020302,4671.0,False,False +17179020400,5360.0,True,True +17179020500,4501.0,False,False +17179020600,1941.0,False,False +17179020700,4956.0,False,False +17179020800,2999.0,True,True +17179020900,1918.0,True,True +17179021000,5501.0,False,False +17179021101,6317.0,True,True +17179021102,5744.0,False,False +17179021201,5605.0,False,False +17179021202,3248.0,False,False +17179021203,5160.0,False,False +17179021500,6843.0,False,False +17179021603,5401.0,False,False +17179021604,2063.0,False,False +17179021605,2462.0,False,False +17179021606,6051.0,False,False +17179021701,6014.0,False,False +17179021702,5347.0,False,False +17179021801,5220.0,True,True +17179021802,1816.0,False,False +17179021900,4781.0,False,False +17179022000,4178.0,False,False +17179022100,3469.0,False,False +17179022200,4782.0,False,False +17179022300,5921.0,False,False +17179022400,4332.0,False,False +17181950100,4393.0,True,True +17181950200,2499.0,False,False +17181950300,1999.0,True,False +17181950400,4462.0,True,True +17181950500,3615.0,True,True +17183000100,2041.0,True,True +17183000200,1629.0,True,True +17183000300,2209.0,True,True +17183000400,3728.0,True,True +17183000500,3202.0,True,True +17183000600,2442.0,True,True +17183000700,3864.0,False,False +17183000800,2206.0,True,False +17183000900,2306.0,True,True +17183001200,2900.0,False,False +17183001300,3463.0,False,False +17183010100,3243.0,False,False +17183010200,5163.0,True,True +17183010300,4740.0,False,False +17183010400,2139.0,False,False +17183010500,3630.0,False,False +17183010600,4069.0,True,True +17183010701,3081.0,True,True +17183010702,2930.0,False,False +17183010800,3331.0,False,False +17183010900,2821.0,False,False +17183011000,3974.0,True,True +17183011100,2447.0,False,False +17183011200,6005.0,True,True +17185957200,3818.0,False,False +17185957300,3199.0,False,False +17185957400,2127.0,False,False +17185957500,2402.0,True,True +17187870100,2142.0,False,False +17187870200,2647.0,True,True +17187870300,2507.0,False,False +17187870400,5152.0,False,False +17187870500,4698.0,True,True +17189950100,3203.0,False,False +17189950200,3932.0,False,False +17189950300,3077.0,False,False +17189950400,3846.0,False,False +17191954900,3342.0,False,False +17191955000,4584.0,True,True +17191955100,2704.0,True,True +17191955200,3200.0,True,True +17191955300,2572.0,False,False +17193958000,2086.0,True,True +17193958100,3439.0,False,False +17193958200,2884.0,False,False +17193958300,2513.0,True,True +17193958400,2946.0,False,False +17195000100,3836.0,False,False +17195000200,3059.0,False,False +17195000300,3189.0,True,True +17195000400,3043.0,False,False +17195000500,3178.0,False,False +17195000600,3966.0,False,False +17195000700,2726.0,False,False +17195000800,2150.0,False,False +17195000900,3652.0,False,False +17195001000,2659.0,True,True +17195001100,4407.0,True,True +17195001200,4073.0,True,True +17195001300,2665.0,True,True +17195001400,2117.0,False,False +17195001500,3225.0,True,True +17195001600,2674.0,False,True +17195001700,3121.0,True,True +17195001800,2276.0,False,False +17197880105,7565.0,False,False +17197880106,4478.0,False,False +17197880107,5434.0,False,False +17197880109,4946.0,False,False +17197880111,3704.0,False,False +17197880112,2198.0,False,False +17197880113,4048.0,False,False +17197880114,2933.0,False,True +17197880115,3255.0,False,False +17197880116,3197.0,False,False +17197880117,3244.0,False,False +17197880118,4844.0,False,False +17197880119,4071.0,False,False +17197880120,10562.0,False,False +17197880121,9977.0,False,False +17197880202,4711.0,False,False +17197880203,4175.0,False,False +17197880204,5486.0,False,False +17197880303,4093.0,False,False +17197880304,4888.0,False,False +17197880305,4972.0,False,False +17197880306,6817.0,False,False +17197880307,6051.0,False,False +17197880308,9140.0,False,False +17197880309,4939.0,False,False +17197880310,13248.0,False,False +17197880312,11320.0,False,False +17197880313,11725.0,False,False +17197880314,7402.0,False,False +17197880404,11974.0,False,False +17197880408,5456.0,False,False +17197880410,8550.0,False,False +17197880411,3342.0,False,False +17197880412,4028.0,False,False +17197880414,4308.0,False,False +17197880415,7620.0,False,False +17197880416,3293.0,False,False +17197880417,2741.0,False,False +17197880418,5194.0,False,False +17197880419,8724.0,False,False +17197880420,10485.0,False,False +17197880421,6300.0,False,False +17197880502,5317.0,False,False +17197880503,4527.0,False,False +17197880505,7222.0,False,False +17197880507,7479.0,False,False +17197880601,3021.0,False,False +17197880602,3372.0,False,False +17197880701,4225.0,False,False +17197880702,3014.0,True,True +17197880901,5744.0,False,False +17197880903,2705.0,False,False +17197880905,2707.0,False,False +17197881001,5401.0,False,False +17197881002,5242.0,False,False +17197881005,3513.0,False,False +17197881006,2365.0,False,False +17197881007,5842.0,False,False +17197881009,6608.0,False,False +17197881010,3912.0,False,False +17197881011,3533.0,False,False +17197881012,3082.0,False,False +17197881105,6916.0,False,False +17197881107,2816.0,False,False +17197881108,6723.0,False,False +17197881109,4598.0,False,False +17197881111,2770.0,False,False +17197881112,5678.0,False,False +17197881113,4704.0,False,False +17197881115,4151.0,False,False +17197881116,3981.0,False,False +17197881200,4811.0,True,True +17197881301,2812.0,True,True +17197881302,1755.0,True,True +17197881401,3722.0,True,True +17197881402,3210.0,False,False +17197881500,2972.0,False,False +17197881601,2053.0,False,False +17197881603,3543.0,True,False +17197881604,2567.0,False,False +17197881700,3438.0,False,False +17197881800,4202.0,True,True +17197881900,3662.0,True,True +17197882000,3262.0,True,True +17197882100,2664.0,True,True +17197882200,4066.0,True,True +17197882300,3912.0,True,True +17197882400,3372.0,True,True +17197882500,2160.0,True,True +17197882601,3328.0,False,False +17197882602,2825.0,True,True +17197882701,2735.0,False,False +17197882702,3143.0,False,False +17197882801,2803.0,True,True +17197882802,3299.0,True,True +17197882900,2373.0,True,True +17197883000,3709.0,True,True +17197883100,4261.0,True,True +17197883206,3887.0,False,False +17197883208,2879.0,False,False +17197883209,3025.0,False,False +17197883210,2768.0,False,False +17197883211,6042.0,False,False +17197883212,5588.0,False,False +17197883213,5814.0,False,False +17197883214,2557.0,False,False +17197883215,11966.0,False,False +17197883216,2934.0,False,False +17197883303,3970.0,False,False +17197883304,1753.0,False,False +17197883305,3080.0,False,False +17197883306,3527.0,False,False +17197883307,4040.0,False,False +17197883401,4242.0,False,False +17197883402,1895.0,False,False +17197883504,5612.0,False,False +17197883505,8623.0,False,False +17197883507,3981.0,False,False +17197883509,4426.0,False,False +17197883510,5502.0,False,False +17197883511,4531.0,False,False +17197883513,5795.0,False,False +17197883514,6813.0,False,False +17197883515,4071.0,False,False +17197883516,7666.0,False,False +17197883517,3467.0,False,False +17197883519,5560.0,False,False +17197883521,3799.0,False,False +17197883522,3384.0,False,False +17197883602,5519.0,False,False +17197883603,3098.0,False,False +17197883605,2893.0,True,True +17197883606,4021.0,False,False +17197883700,3157.0,True,True +17197883803,2840.0,False,False +17197883804,2671.0,False,False +17197883806,3279.0,False,False +17197883808,1857.0,False,False +17197883809,3024.0,True,True +17197883810,3530.0,False,False +17197883811,3043.0,False,False +17197883902,6337.0,False,False +17197883903,1866.0,False,False +17197883904,4392.0,False,False +17197884003,4378.0,False,False +17197884004,2668.0,False,False +17197884005,1324.0,False,False +17197884006,2244.0,False,False +17197884101,4553.0,False,False +17197884103,2724.0,False,False +17197980000,0.0,False,False +17197980100,3435.0,False,False +17199020100,3601.0,True,True +17199020201,5495.0,False,False +17199020202,2744.0,False,False +17199020300,4523.0,False,False +17199020400,3814.0,True,True +17199020500,3576.0,True,False +17199020600,4083.0,True,False +17199020700,4763.0,False,False +17199020800,6314.0,False,False +17199020900,4941.0,False,False +17199021000,5329.0,True,True +17199021100,3093.0,True,True +17199021200,4839.0,True,True +17199021300,4764.0,False,False +17199021400,5223.0,False,False +17201000101,5205.0,False,False +17201000103,2732.0,False,False +17201000104,2513.0,True,True +17201000105,4053.0,False,False +17201000200,3155.0,True,True +17201000300,4090.0,False,False +17201000401,2194.0,False,False +17201000402,3004.0,False,False +17201000403,4467.0,False,False +17201000501,4990.0,False,False +17201000502,3401.0,True,True +17201000504,7143.0,False,False +17201000506,4273.0,False,False +17201000507,3803.0,False,False +17201000510,3408.0,False,False +17201000511,2522.0,False,False +17201000512,4925.0,False,False +17201000513,3993.0,False,False +17201000514,3484.0,False,False +17201000600,4401.0,False,False +17201000700,3121.0,False,False +17201000800,2316.0,True,True +17201001000,2958.0,True,True +17201001100,1369.0,True,True +17201001200,2214.0,True,True +17201001300,2347.0,True,True +17201001400,4274.0,True,True +17201001500,4937.0,False,False +17201001600,4994.0,True,True +17201001700,2992.0,False,False +17201001800,5618.0,True,True +17201001900,3476.0,True,True +17201002000,2654.0,True,True +17201002100,1747.0,True,True +17201002200,3370.0,True,True +17201002301,2289.0,True,True +17201002302,1166.0,True,True +17201002400,2358.0,True,True +17201002500,2702.0,True,True +17201002600,2969.0,True,True +17201002700,3287.0,True,True +17201002800,1380.0,True,True +17201002900,1120.0,True,True +17201003000,1728.0,True,True +17201003100,3505.0,True,True +17201003200,3748.0,True,True +17201003300,3462.0,True,True +17201003400,4637.0,True,True +17201003500,2194.0,False,False +17201003601,1707.0,True,True +17201003602,3998.0,True,True +17201003604,2865.0,True,True +17201003605,2094.0,True,True +17201003606,2627.0,True,True +17201003705,4626.0,False,False +17201003706,5991.0,False,False +17201003707,3740.0,False,False +17201003708,2900.0,True,True +17201003709,1816.0,True,True +17201003710,2356.0,False,False +17201003711,4382.0,False,False +17201003801,5965.0,False,False +17201003805,7131.0,False,False +17201003806,5153.0,False,False +17201003807,7812.0,False,False +17201003808,3249.0,False,False +17201003809,4645.0,True,False +17201003901,4757.0,False,False +17201003903,6240.0,False,False +17201003904,4565.0,False,False +17201004001,8825.0,False,False +17201004002,6352.0,False,False +17201004003,2090.0,True,True +17201004100,5039.0,False,False +17201004200,6217.0,False,False +17201004300,4981.0,False,False +17201980000,8.0,True,True +17203030100,2544.0,True,True +17203030200,2903.0,False,False +17203030300,2924.0,False,False +17203030400,5751.0,False,False +17203030501,7795.0,False,False +17203030502,2500.0,False,False +17203030601,6620.0,False,False +17203030602,3437.0,False,False +17203030700,4226.0,False,False +18001030100,4732.0,False,False +18001030200,5213.0,True,True +18001030300,5486.0,False,False +18001030400,3141.0,False,False +18001030500,6716.0,True,True +18001030600,3549.0,True,True +18001030700,6539.0,True,True +18003000100,2802.0,False,False +18003000300,3299.0,False,False +18003000400,2512.0,False,False +18003000500,3119.0,True,True +18003000600,1959.0,True,True +18003000701,3200.0,True,True +18003000704,2456.0,True,True +18003000800,4219.0,True,True +18003000900,3344.0,True,True +18003001000,1241.0,True,True +18003001100,1556.0,False,True +18003001200,1182.0,True,True +18003001300,1711.0,True,True +18003001600,2180.0,True,True +18003001700,2364.0,True,True +18003002000,3525.0,True,True +18003002100,2369.0,True,True +18003002200,4472.0,True,True +18003002300,5024.0,True,True +18003002500,3317.0,True,True +18003002600,3954.0,True,True +18003002800,2322.0,True,True +18003002900,2488.0,True,True +18003003000,4396.0,True,True +18003003100,2849.0,True,True +18003003200,5361.0,False,False +18003003301,3060.0,True,True +18003003304,4154.0,True,True +18003003400,4338.0,False,False +18003003500,4248.0,True,True +18003003600,5965.0,True,True +18003003700,2767.0,True,True +18003003800,3236.0,True,False +18003003901,3470.0,False,False +18003003902,2828.0,False,False +18003004000,3294.0,True,True +18003004101,2336.0,False,False +18003004103,6052.0,False,False +18003004300,2366.0,True,True +18003004400,3458.0,True,True +18003010100,5141.0,False,False +18003010201,7180.0,False,False +18003010202,6034.0,False,False +18003010304,7221.0,False,False +18003010305,5844.0,False,False +18003010306,5394.0,False,False +18003010307,5771.0,False,False +18003010308,6480.0,False,False +18003010400,3788.0,False,False +18003010500,2678.0,False,False +18003010601,3488.0,False,False +18003010602,4042.0,False,False +18003010603,1717.0,False,False +18003010604,2879.0,True,True +18003010705,5136.0,False,False +18003010706,4730.0,False,False +18003010707,5391.0,False,False +18003010803,5594.0,False,False +18003010804,4369.0,False,False +18003010807,4243.0,False,False +18003010808,5229.0,False,False +18003010809,5722.0,True,False +18003010811,5703.0,False,False +18003010812,4496.0,False,False +18003010813,4011.0,False,False +18003010815,5089.0,False,False +18003010816,4824.0,False,False +18003010817,4364.0,False,False +18003010819,5026.0,False,False +18003010821,4743.0,True,False +18003010900,6680.0,False,False +18003011000,2658.0,False,False +18003011100,2974.0,True,True +18003011201,2298.0,True,True +18003011202,2918.0,True,True +18003011204,3243.0,False,False +18003011205,3695.0,False,False +18003011302,5527.0,True,True +18003011303,1874.0,True,True +18003011304,5774.0,True,True +18003011501,3838.0,True,True +18003011502,3064.0,False,False +18003011603,6529.0,False,False +18003011604,4393.0,False,False +18003011605,3339.0,False,False +18003011606,5030.0,False,False +18003011607,5391.0,False,False +18003011608,6550.0,False,False +18003011609,6406.0,False,False +18003011701,3534.0,False,False +18003011702,3459.0,False,False +18003011801,4070.0,False,False +18003011802,1721.0,False,False +18003011900,1854.0,False,False +18003980001,617.0,False,False +18003980002,19.0,True,True +18005010100,4843.0,True,True +18005010200,4219.0,False,False +18005010300,3364.0,False,False +18005010400,6619.0,False,False +18005010500,5255.0,False,False +18005010600,5310.0,True,False +18005010700,3263.0,False,False +18005010800,4011.0,True,True +18005010900,6762.0,False,False +18005011000,5050.0,False,False +18005011100,8766.0,True,True +18005011200,5716.0,False,False +18005011300,5526.0,False,False +18005011400,4368.0,False,False +18005011500,9409.0,False,False +18007100100,3288.0,False,False +18007100200,2987.0,True,True +18007100300,2402.0,True,True +18009975100,3477.0,True,True +18009975200,2567.0,True,True +18009975300,2894.0,True,True +18009975400,3075.0,False,False +18011810100,3706.0,False,False +18011810200,3807.0,False,False +18011810300,6289.0,False,False +18011810400,5682.0,False,False +18011810500,6301.0,False,False +18011810601,6982.0,False,False +18011810603,15587.0,False,False +18011810604,5842.0,False,False +18011810605,6361.0,False,False +18011810700,4987.0,False,False +18013974600,2960.0,False,False +18013974700,2962.0,False,False +18013974800,4262.0,False,False +18013974900,4880.0,False,False +18015959300,2861.0,False,False +18015959400,2726.0,False,False +18015959500,2577.0,False,False +18015959600,3399.0,True,False +18015959700,3174.0,False,False +18015959800,2691.0,False,False +18015959900,2646.0,False,False +18017950900,4703.0,False,False +18017951000,2411.0,False,False +18017951100,3010.0,True,False +18017951200,2285.0,True,True +18017951300,2903.0,True,True +18017951400,2693.0,True,True +18017951500,4595.0,True,True +18017951600,5096.0,True,True +18017951700,2874.0,False,False +18017951800,3556.0,False,False +18017951900,3754.0,False,False +18019050100,1321.0,False,False +18019050200,3687.0,True,True +18019050303,2636.0,True,True +18019050304,5724.0,False,False +18019050305,2814.0,False,False +18019050306,2335.0,True,True +18019050401,2741.0,True,True +18019050403,2750.0,True,True +18019050404,4120.0,False,False +18019050501,1836.0,False,False +18019050503,5375.0,True,False +18019050504,3173.0,True,True +18019050603,6619.0,True,True +18019050604,6131.0,False,False +18019050605,5822.0,False,False +18019050606,4665.0,False,False +18019050701,5684.0,False,False +18019050703,5703.0,False,False +18019050704,6749.0,False,False +18019050801,6963.0,False,False +18019050803,5754.0,False,False +18019050804,4002.0,False,False +18019050902,4454.0,False,False +18019050903,3373.0,True,True +18019050904,6778.0,False,False +18019051000,5298.0,False,False +18021040100,4910.0,True,False +18021040200,6569.0,True,False +18021040300,3116.0,False,False +18021040400,4323.0,False,False +18021040500,3589.0,False,False +18021040600,3727.0,False,False +18023950100,2841.0,False,False +18023950200,5781.0,False,False +18023950300,5320.0,False,False +18023950400,4031.0,False,False +18023950500,4247.0,True,True +18023950600,3409.0,False,False +18023950700,3319.0,False,False +18023950800,3325.0,True,True +18025951900,3719.0,True,True +18025952000,4194.0,True,True +18025952100,2656.0,True,True +18027954300,4172.0,True,True +18027954400,2564.0,False,False +18027954500,10039.0,True,True +18027954600,4056.0,False,False +18027954700,4461.0,True,True +18027954800,3151.0,True,True +18027954900,4677.0,True,True +18029080101,3014.0,False,False +18029080103,5823.0,False,False +18029080104,3862.0,False,False +18029080201,2455.0,False,False +18029080202,6683.0,False,False +18029080300,5121.0,True,True +18029080400,5718.0,False,False +18029080500,4194.0,True,False +18029080600,6378.0,False,False +18029080700,6231.0,False,False +18031969000,5006.0,False,False +18031969100,3233.0,True,True +18031969200,4939.0,False,False +18031969300,3044.0,True,True +18031969400,6437.0,False,False +18031969500,3903.0,True,False +18033020100,4538.0,False,False +18033020200,4387.0,False,False +18033020300,4368.0,False,False +18033020400,7508.0,False,False +18033020500,6089.0,True,False +18033020601,3215.0,False,False +18033020602,4557.0,False,False +18033020700,3811.0,False,False +18033020800,4454.0,True,True +18035000300,1548.0,True,True +18035000400,1554.0,True,True +18035000500,3995.0,True,False +18035000600,1503.0,True,True +18035000700,3280.0,False,False +18035000800,4678.0,False,False +18035000902,5441.0,False,True +18035000903,2930.0,False,True +18035000904,5979.0,False,False +18035001000,5733.0,False,False +18035001100,3023.0,False,False +18035001200,2665.0,True,True +18035001300,3325.0,True,True +18035001400,1826.0,True,True +18035001500,2553.0,True,True +18035001600,2297.0,True,True +18035001700,1169.0,True,True +18035002000,4798.0,True,True +18035002100,2884.0,True,True +18035002200,6323.0,True,False +18035002301,3619.0,False,False +18035002302,3952.0,False,False +18035002401,5227.0,False,False +18035002402,8660.0,False,False +18035002500,5231.0,False,False +18035002601,7033.0,False,False +18035002602,2754.0,True,True +18035002700,4557.0,False,False +18035002800,2001.0,True,True +18035002900,4482.0,False,False +18037953200,6647.0,False,False +18037953300,7284.0,True,False +18037953400,5387.0,False,False +18037953500,4953.0,False,False +18037953600,5331.0,False,False +18037953700,7237.0,False,False +18037953800,5704.0,True,True +18039000100,2836.0,True,True +18039000200,7486.0,True,False +18039000301,4355.0,False,False +18039000302,6816.0,False,False +18039000400,5165.0,False,False +18039000501,6281.0,True,False +18039000502,4790.0,True,False +18039000600,10169.0,False,False +18039000700,7240.0,False,False +18039000801,3374.0,False,False +18039000802,9446.0,False,False +18039000900,7944.0,False,False +18039001000,4485.0,False,False +18039001100,4948.0,False,False +18039001200,5401.0,False,False +18039001300,6911.0,False,False +18039001400,9919.0,False,False +18039001501,4505.0,True,True +18039001502,7229.0,False,False +18039001601,4650.0,False,False +18039001602,4618.0,False,False +18039001701,3986.0,True,True +18039001702,5073.0,True,True +18039001801,4162.0,False,False +18039001802,7369.0,False,False +18039001901,5463.0,True,True +18039001902,3942.0,False,False +18039002000,7500.0,False,False +18039002101,4511.0,False,False +18039002102,5542.0,True,True +18039002200,10249.0,True,True +18039002300,2354.0,True,True +18039002400,4769.0,True,True +18039002600,4364.0,True,True +18039002700,1811.0,True,True +18039002900,4895.0,True,True +18041954000,3474.0,False,False +18041954100,2878.0,True,True +18041954200,3172.0,False,False +18041954300,2460.0,True,True +18041954400,4418.0,True,True +18041954500,3673.0,True,True +18041954600,3119.0,True,False +18043070200,1770.0,True,True +18043070301,2680.0,False,False +18043070302,3582.0,False,False +18043070400,2702.0,True,True +18043070500,2677.0,True,True +18043070600,2522.0,False,False +18043070700,2461.0,True,True +18043070801,3486.0,True,True +18043070802,4378.0,False,False +18043070901,5480.0,False,False +18043070902,1449.0,True,True +18043071003,7137.0,False,False +18043071004,4659.0,False,False +18043071005,5859.0,False,False +18043071006,4509.0,False,False +18043071007,5083.0,False,False +18043071101,5785.0,False,False +18043071103,4433.0,False,False +18043071104,4866.0,False,False +18043071200,1802.0,False,False +18045957600,2694.0,False,False +18045957700,2236.0,True,True +18045957800,3677.0,False,False +18045957900,4324.0,True,True +18045958000,3499.0,False,False +18047960100,4850.0,False,False +18047969600,5788.0,False,False +18047969700,2480.0,True,True +18047969800,5377.0,False,False +18047969900,4279.0,True,True +18049953000,3174.0,False,False +18049953100,5909.0,False,False +18049953200,3507.0,False,False +18049953300,1893.0,True,True +18049953400,2677.0,False,False +18049953500,2936.0,False,False +18051050100,4012.0,False,False +18051050200,8397.0,False,False +18051050300,5261.0,False,False +18051050401,3322.0,False,False +18051050402,4382.0,False,False +18051050501,3380.0,False,False +18051050502,4902.0,True,False +18053000100,3884.0,True,True +18053000200,3578.0,True,True +18053000400,3400.0,True,True +18053000500,4867.0,False,False +18053000600,2348.0,True,True +18053000700,3493.0,True,True +18053000800,6974.0,False,False +18053000900,2822.0,True,True +18053010100,6224.0,False,False +18053010200,4038.0,False,False +18053010300,3884.0,True,True +18053010400,2794.0,True,True +18053010500,5001.0,True,True +18053010600,3281.0,True,True +18053010700,5535.0,False,False +18053010800,4329.0,False,False +18055954701,4706.0,False,False +18055954702,3553.0,True,True +18055954800,3602.0,False,False +18055954900,4785.0,False,False +18055955000,2877.0,True,False +18055955100,2925.0,True,True +18055955200,2169.0,True,True +18055955300,4205.0,False,False +18055955400,3337.0,False,False +18057110100,11483.0,False,False +18057110201,4571.0,False,False +18057110202,5938.0,False,False +18057110300,17135.0,False,False +18057110401,4318.0,False,False +18057110403,10670.0,False,False +18057110404,5314.0,False,False +18057110505,7829.0,False,False +18057110506,12492.0,False,False +18057110507,15169.0,False,False +18057110508,11742.0,False,False +18057110509,5199.0,False,False +18057110511,5248.0,False,False +18057110512,4777.0,False,False +18057110600,4191.0,False,False +18057110700,2883.0,True,True +18057110804,19060.0,False,False +18057110805,7099.0,False,False +18057110806,14605.0,False,False +18057110807,6720.0,False,False +18057110808,20475.0,False,False +18057110809,11006.0,False,False +18057110810,7188.0,False,False +18057110811,4601.0,False,False +18057110812,6755.0,False,False +18057110903,12768.0,False,False +18057110904,4877.0,False,False +18057110905,4163.0,False,False +18057110906,6813.0,False,False +18057110907,5430.0,False,False +18057110908,12515.0,False,False +18057111001,13053.0,False,False +18057111003,4864.0,False,False +18057111004,3119.0,False,False +18057111006,4407.0,False,False +18057111007,4336.0,False,False +18057111008,7712.0,False,False +18057111101,3802.0,False,False +18057111102,8790.0,False,False +18059410100,4104.0,False,False +18059410200,12891.0,False,False +18059410300,12035.0,False,False +18059410400,6823.0,True,True +18059410500,3242.0,True,True +18059410600,5348.0,False,False +18059410700,6109.0,False,False +18059410800,9509.0,False,False +18059410900,8844.0,False,False +18059411000,6259.0,False,False +18061060100,7049.0,True,True +18061060200,7984.0,False,False +18061060300,4667.0,False,False +18061060400,7956.0,False,False +18061060500,5665.0,False,False +18061060600,6619.0,False,False +18063210102,19903.0,False,False +18063210103,3980.0,False,False +18063210104,8756.0,False,False +18063210201,3613.0,False,False +18063210202,8901.0,False,False +18063210300,6971.0,False,False +18063210400,5140.0,False,False +18063210501,6837.0,False,False +18063210502,6301.0,False,False +18063210603,9979.0,False,False +18063210604,16331.0,False,False +18063210605,10467.0,False,False +18063210606,13677.0,False,False +18063210607,5694.0,False,False +18063210608,3411.0,False,False +18063210700,12597.0,False,False +18063210801,3466.0,False,False +18063210802,4686.0,False,False +18063210900,3239.0,False,False +18063211000,6130.0,False,False +18063211100,3720.0,False,False +18065975500,5884.0,False,False +18065975600,4468.0,False,False +18065975700,4184.0,False,False +18065975800,4586.0,False,False +18065975900,4564.0,False,False +18065976000,3107.0,True,True +18065976100,2512.0,True,True +18065976300,1757.0,True,True +18065976400,4565.0,False,False +18065976500,2040.0,True,True +18065976600,2197.0,True,True +18065976700,4757.0,True,False +18065976800,3634.0,False,False +18067000200,3605.0,True,True +18067000300,3104.0,True,True +18067000400,3411.0,True,True +18067000500,3631.0,True,True +18067000600,2917.0,True,True +18067000700,5722.0,False,False +18067000800,5147.0,False,False +18067000900,3485.0,True,True +18067001000,1898.0,False,False +18067001100,5277.0,True,True +18067001200,3058.0,True,True +18067001300,2537.0,False,False +18067001400,4485.0,False,False +18067001500,3645.0,True,False +18067010100,6368.0,False,False +18067010200,5944.0,False,False +18067010300,4172.0,False,False +18067010400,3592.0,False,False +18067010500,5082.0,False,False +18067010600,5251.0,False,False +18069961300,4525.0,False,False +18069961400,3989.0,False,False +18069961500,4767.0,False,False +18069961600,3969.0,True,True +18069961700,4420.0,False,False +18069961800,3014.0,True,True +18069961900,4251.0,False,False +18069962000,4289.0,False,False +18069962100,3135.0,False,False +18071967500,9268.0,False,False +18071967600,4407.0,True,True +18071967700,3956.0,False,False +18071967800,2184.0,True,True +18071967901,4837.0,True,True +18071967902,3010.0,True,True +18071968000,4967.0,False,False +18071968100,4201.0,False,False +18071968200,3802.0,False,False +18071968300,3393.0,False,False +18073100400,1299.0,False,False +18073100800,5278.0,False,False +18073100901,3235.0,False,False +18073100902,6806.0,False,False +18073101000,5700.0,False,False +18073101100,3689.0,True,True +18073101200,3944.0,False,False +18073101300,3496.0,False,False +18075962700,3271.0,True,True +18075962800,3786.0,True,True +18075962900,2806.0,False,False +18075963000,2309.0,True,True +18075963100,3821.0,True,True +18075963200,2698.0,True,True +18075963300,2149.0,True,True +18077966000,4077.0,False,False +18077966100,6548.0,False,False +18077966200,4739.0,False,False +18077966300,3893.0,False,False +18077966400,5924.0,False,False +18077966500,4979.0,True,True +18077966600,2041.0,True,True +18079960200,4975.0,False,False +18079960301,4400.0,False,False +18079960302,4200.0,False,False +18079960400,6912.0,False,False +18079960500,2588.0,True,False +18079960600,4635.0,False,False +18081610100,18708.0,False,False +18081610201,4735.0,False,False +18081610202,9568.0,False,False +18081610300,3662.0,False,False +18081610401,5349.0,False,False +18081610403,5875.0,True,False +18081610404,4725.0,False,False +18081610500,8948.0,False,False +18081610603,7162.0,False,False +18081610604,8947.0,False,False +18081610605,5289.0,False,False +18081610606,5271.0,False,False +18081610701,13276.0,False,False +18081610702,7177.0,False,False +18081610801,7630.0,False,False +18081610802,8040.0,False,False +18081610900,4808.0,False,False +18081611000,4277.0,False,False +18081611100,3349.0,False,False +18081611200,4765.0,False,False +18081611300,4049.0,True,True +18081611400,8106.0,False,False +18083955000,3040.0,True,True +18083955100,3007.0,False,False +18083955200,5511.0,False,False +18083955300,3598.0,False,True +18083955400,2451.0,True,True +18083955500,2974.0,True,True +18083955600,3062.0,False,False +18083955700,4559.0,False,False +18083955800,3443.0,False,False +18083955900,5420.0,False,False +18085960900,2943.0,False,False +18085961000,4301.0,False,False +18085961100,5799.0,False,False +18085961200,5968.0,False,False +18085961300,3384.0,False,False +18085961400,3019.0,False,False +18085961500,2579.0,False,False +18085961600,1628.0,False,False +18085961700,4307.0,False,False +18085961800,5897.0,False,False +18085961900,2850.0,True,True +18085962000,4815.0,True,False +18085962100,7687.0,False,False +18085962200,4864.0,True,False +18085962300,5652.0,False,False +18085962400,3894.0,False,False +18085962500,3105.0,False,False +18085962600,2692.0,False,False +18085962700,3651.0,True,True +18087970100,6670.0,True,True +18087970200,5265.0,False,False +18087970300,8445.0,False,False +18087970401,4446.0,True,True +18087970402,5236.0,False,True +18087970500,3497.0,True,False +18087970600,2494.0,False,False +18087970700,3140.0,False,False +18089010100,4802.0,False,False +18089010201,5999.0,True,True +18089010203,2328.0,True,True +18089010205,1393.0,True,True +18089010302,3370.0,True,True +18089010304,2889.0,True,True +18089010400,3280.0,True,True +18089010500,776.0,True,True +18089010600,998.0,True,True +18089010900,1027.0,True,True +18089011000,1695.0,True,True +18089011100,5030.0,True,True +18089011200,4689.0,True,True +18089011300,1827.0,True,True +18089011400,1439.0,True,True +18089011500,2825.0,True,True +18089011600,2114.0,True,True +18089011700,609.0,True,True +18089011800,1295.0,True,True +18089011900,1446.0,True,True +18089012000,935.0,True,True +18089012100,517.0,True,True +18089012200,1257.0,True,True +18089012300,2057.0,True,True +18089012400,4232.0,True,True +18089012500,4611.0,True,True +18089012600,2211.0,True,True +18089012700,3299.0,True,True +18089012800,2718.0,True,True +18089020100,4642.0,False,False +18089020200,2863.0,False,False +18089020300,5933.0,True,True +18089020400,5533.0,True,True +18089020500,3583.0,True,True +18089020600,1931.0,True,True +18089020700,4794.0,True,True +18089020800,3362.0,True,True +18089020900,3911.0,False,False +18089021000,5719.0,True,True +18089021100,2734.0,True,True +18089021300,3515.0,False,False +18089021400,4541.0,True,True +18089021500,2706.0,False,False +18089021600,2829.0,False,False +18089021700,4591.0,True,True +18089021800,3471.0,True,True +18089021900,5234.0,True,True +18089022000,4655.0,False,True +18089030100,1344.0,True,True +18089030200,1346.0,True,True +18089030300,1678.0,True,True +18089030400,3241.0,True,True +18089030500,4283.0,True,True +18089030600,4344.0,True,True +18089030700,1911.0,True,True +18089030800,4788.0,True,True +18089030900,3758.0,True,True +18089031000,1508.0,True,True +18089040100,1606.0,True,True +18089040200,3208.0,True,True +18089040300,7752.0,False,False +18089040401,5054.0,False,False +18089040402,4099.0,False,False +18089040403,5784.0,False,False +18089040501,3599.0,False,False +18089040502,3244.0,False,False +18089040600,3455.0,False,False +18089040700,4615.0,False,False +18089040801,3777.0,False,False +18089040802,3891.0,False,False +18089040900,6875.0,False,False +18089041001,4292.0,False,False +18089041002,4914.0,False,False +18089041100,1972.0,True,True +18089041200,2370.0,True,True +18089041302,2632.0,True,True +18089041400,2812.0,True,True +18089041500,1619.0,True,True +18089041600,3987.0,True,True +18089041700,4561.0,True,True +18089041800,6196.0,False,False +18089041900,4704.0,False,False +18089042000,6437.0,False,False +18089042100,5610.0,True,True +18089042200,6526.0,False,False +18089042300,6370.0,False,False +18089042401,6290.0,False,False +18089042402,6347.0,False,False +18089042403,3911.0,False,False +18089042501,6482.0,False,False +18089042503,3013.0,False,False +18089042504,7814.0,False,False +18089042505,7322.0,False,False +18089042602,6332.0,False,False +18089042605,8967.0,False,False +18089042606,3050.0,False,False +18089042607,6730.0,False,False +18089042608,4627.0,False,False +18089042609,8717.0,False,False +18089042702,5215.0,False,False +18089042703,5053.0,False,False +18089042704,4094.0,False,False +18089042801,9372.0,False,False +18089042802,5245.0,False,False +18089042901,6792.0,False,False +18089042902,6741.0,False,False +18089043001,4276.0,False,False +18089043002,5144.0,False,False +18089043101,2919.0,False,False +18089043102,8609.0,False,False +18089043201,3627.0,False,False +18089043202,8795.0,False,False +18089043300,11164.0,False,False +18089043401,6819.0,False,False +18089043403,6826.0,False,False +18089043404,1672.0,False,False +18089043405,5365.0,False,False +18089990000,0.0,False,False +18091040100,4307.0,True,True +18091040300,2062.0,True,True +18091040400,2889.0,True,False +18091040500,3411.0,False,False +18091040600,4387.0,True,True +18091040700,1650.0,True,True +18091040800,2806.0,True,True +18091040900,2793.0,True,True +18091041100,2278.0,False,False +18091041200,924.0,False,False +18091041300,2350.0,True,True +18091041400,4393.0,True,True +18091041500,5316.0,False,False +18091041600,6551.0,False,False +18091041700,3357.0,False,False +18091041800,5761.0,False,False +18091041900,6017.0,False,False +18091042000,2572.0,False,False +18091042100,5839.0,True,True +18091042200,3074.0,False,False +18091042300,2208.0,True,True +18091042400,7820.0,True,True +18091042500,4961.0,False,False +18091042600,8251.0,False,False +18091042700,4759.0,False,False +18091042800,3117.0,False,False +18091042900,3659.0,False,False +18091043000,2642.0,True,True +18091990000,0.0,False,False +18093950400,3764.0,False,False +18093950500,4610.0,False,False +18093950600,7113.0,False,False +18093950700,6901.0,False,False +18093950800,3822.0,True,True +18093950900,2731.0,True,True +18093951000,3374.0,False,False +18093951100,2969.0,True,True +18093951200,7119.0,False,False +18093951300,3145.0,True,True +18095000300,2719.0,True,True +18095000400,2347.0,True,True +18095000500,2504.0,True,True +18095000800,2035.0,True,True +18095000900,2163.0,True,True +18095001000,2416.0,True,True +18095001100,2710.0,False,False +18095001200,3099.0,True,True +18095001300,4986.0,False,False +18095001400,3629.0,True,True +18095001500,4286.0,False,False +18095001600,2798.0,False,False +18095001700,3519.0,True,True +18095001800,4863.0,True,True +18095001900,5655.0,True,True +18095002000,3657.0,True,True +18095010100,3057.0,False,False +18095010200,4936.0,True,True +18095010300,2928.0,True,True +18095010400,2809.0,False,False +18095010500,3750.0,False,False +18095010600,4868.0,True,True +18095010700,3314.0,False,False +18095010800,3320.0,False,False +18095010900,2460.0,False,False +18095011000,1841.0,False,False +18095011100,3867.0,False,False +18095011200,6242.0,False,False +18095011300,2561.0,False,False +18095011400,3846.0,False,False +18095011501,4867.0,False,False +18095011502,4226.0,False,False +18095011600,3116.0,True,True +18095011700,2248.0,False,False +18095011800,7524.0,False,False +18095011900,1806.0,True,True +18095012000,2483.0,True,True +18097310103,7878.0,False,False +18097310104,2934.0,False,False +18097310105,3766.0,False,False +18097310106,4184.0,False,False +18097310108,3290.0,False,False +18097310110,3064.0,False,False +18097310111,3965.0,True,False +18097310201,3886.0,False,False +18097310203,5611.0,False,False +18097310204,5830.0,False,False +18097310305,5956.0,True,True +18097310306,5956.0,True,True +18097310308,3438.0,False,False +18097310309,3837.0,True,False +18097310310,5056.0,False,False +18097310311,6477.0,False,False +18097310312,7215.0,True,True +18097320105,4581.0,False,False +18097320106,2557.0,False,False +18097320107,1997.0,False,False +18097320108,5642.0,True,True +18097320109,2452.0,False,False +18097320202,4548.0,False,False +18097320203,2756.0,False,False +18097320204,5791.0,False,False +18097320301,3264.0,False,False +18097320303,3520.0,False,False +18097320304,6947.0,False,False +18097320400,2888.0,False,False +18097320500,3322.0,False,False +18097320600,2323.0,False,False +18097320700,2004.0,False,False +18097320800,2985.0,False,False +18097320901,6934.0,False,False +18097320902,4249.0,True,True +18097320903,5063.0,True,True +18097321001,2943.0,True,True +18097321002,4894.0,False,False +18097321100,3513.0,False,False +18097321200,5045.0,False,False +18097321300,2794.0,False,False +18097321400,5339.0,False,False +18097321600,5796.0,False,False +18097321700,4224.0,False,False +18097321800,3543.0,False,False +18097321900,5862.0,False,False +18097322000,3437.0,True,True +18097322100,2778.0,False,False +18097322200,2251.0,False,False +18097322300,2445.0,False,False +18097322400,2923.0,False,False +18097322500,1559.0,True,True +18097322600,3876.0,True,True +18097322700,1899.0,False,False +18097330103,4734.0,False,False +18097330105,5021.0,False,False +18097330106,4090.0,True,True +18097330107,6165.0,False,False +18097330108,3878.0,False,False +18097330109,4851.0,False,False +18097330202,11717.0,True,True +18097330203,5993.0,False,False +18097330204,6610.0,False,False +18097330206,5154.0,False,False +18097330208,2904.0,False,False +18097330209,9533.0,False,False +18097330401,6453.0,False,False +18097330500,6746.0,True,True +18097330600,6461.0,True,True +18097330700,5681.0,True,True +18097330803,3816.0,True,True +18097330804,3072.0,True,True +18097330805,2493.0,True,True +18097330806,4130.0,True,True +18097330900,6166.0,True,True +18097331000,3877.0,True,True +18097340101,4000.0,False,False +18097340102,3724.0,True,True +18097340108,2444.0,True,True +18097340109,1196.0,False,False +18097340110,4816.0,False,False +18097340111,3863.0,False,False +18097340112,5119.0,False,False +18097340113,4268.0,False,False +18097340114,3923.0,False,False +18097340201,3530.0,True,True +18097340202,4225.0,True,True +18097340300,8910.0,True,True +18097340400,3662.0,True,True +18097340500,5750.0,True,True +18097340600,5664.0,True,True +18097340700,4317.0,True,True +18097340800,1745.0,False,False +18097340901,3844.0,False,False +18097340902,6055.0,False,False +18097341000,1657.0,False,False +18097341100,2319.0,True,True +18097341200,2444.0,True,True +18097341600,1895.0,True,True +18097341700,4869.0,True,True +18097341902,3649.0,False,False +18097341903,5905.0,True,True +18097341904,2365.0,True,True +18097342000,6726.0,False,False +18097342101,5627.0,True,True +18097342200,5722.0,True,True +18097342300,6533.0,True,True +18097342400,1568.0,True,True +18097342500,4850.0,True,True +18097342600,3756.0,True,True +18097350100,1257.0,True,True +18097350300,2577.0,True,True +18097350400,2721.0,True,True +18097350500,2180.0,True,True +18097350600,5336.0,True,True +18097350700,1582.0,True,True +18097350800,1774.0,True,True +18097350900,1557.0,True,True +18097351000,2620.0,True,True +18097351200,2690.0,True,True +18097351500,1740.0,True,True +18097351600,2395.0,False,False +18097351700,2318.0,True,True +18097351900,2677.0,True,True +18097352100,1929.0,True,True +18097352300,1090.0,True,True +18097352400,2701.0,True,True +18097352500,2833.0,True,True +18097352600,3671.0,True,True +18097352700,2492.0,True,True +18097352800,1060.0,True,True +18097353300,2421.0,False,False +18097353500,2428.0,False,False +18097353600,3122.0,True,True +18097354200,7882.0,False,False +18097354400,1532.0,False,False +18097354500,2095.0,True,True +18097354700,1569.0,True,True +18097354800,1800.0,True,True +18097354900,2804.0,True,True +18097355000,2207.0,True,True +18097355100,1883.0,True,True +18097355300,2411.0,True,True +18097355400,3075.0,True,True +18097355500,3998.0,True,True +18097355600,2075.0,True,True +18097355700,2135.0,True,True +18097355900,2045.0,True,True +18097356200,4092.0,False,False +18097356400,3808.0,True,True +18097356900,2195.0,True,True +18097357000,2194.0,True,True +18097357100,2142.0,True,True +18097357200,2355.0,True,True +18097357300,2137.0,True,True +18097357400,5070.0,True,True +18097357500,4033.0,True,True +18097357600,6613.0,True,True +18097357800,1838.0,True,True +18097357900,3428.0,True,True +18097358000,1251.0,True,True +18097358100,2819.0,True,True +18097360101,2305.0,True,True +18097360102,2112.0,True,True +18097360201,3586.0,True,True +18097360202,3272.0,True,True +18097360301,3557.0,True,True +18097360302,2314.0,True,True +18097360401,6240.0,True,True +18097360402,2000.0,True,True +18097360404,7443.0,True,True +18097360405,6236.0,True,False +18097360501,5966.0,False,False +18097360502,6294.0,False,True +18097360601,5015.0,True,True +18097360602,6091.0,True,True +18097360700,1980.0,False,False +18097360800,2191.0,True,True +18097360900,5622.0,True,True +18097361000,2433.0,False,False +18097361100,3521.0,False,False +18097361200,3462.0,True,True +18097361300,2157.0,True,True +18097361400,10992.0,True,False +18097361600,9909.0,False,False +18097370201,4565.0,True,True +18097370202,6175.0,True,True +18097370301,10322.0,False,False +18097370302,9273.0,False,False +18097380100,21249.0,True,True +18097380200,3227.0,True,True +18097380300,4603.0,False,True +18097380402,4728.0,True,True +18097380403,4396.0,False,False +18097380404,3832.0,False,False +18097380501,2164.0,True,True +18097380502,3800.0,True,True +18097380600,5589.0,True,True +18097380700,5999.0,False,True +18097380800,2719.0,True,True +18097380901,4926.0,False,False +18097380902,5790.0,False,False +18097381001,6772.0,True,True +18097381002,3045.0,False,False +18097381101,5597.0,False,False +18097381102,6412.0,False,False +18097381201,6937.0,False,False +18097381203,3142.0,True,True +18097381204,3014.0,True,True +18097381205,6684.0,True,False +18097390101,9088.0,False,False +18097390102,5891.0,True,True +18097390200,4538.0,False,False +18097390300,5855.0,False,False +18097390402,12058.0,False,False +18097390403,10461.0,False,False +18097390404,5497.0,False,False +18097390405,4399.0,False,False +18097390500,2173.0,True,True +18097390600,5650.0,True,False +18097390700,3151.0,True,True +18097390800,3893.0,False,False +18097390900,2805.0,False,False +18097391000,6323.0,False,False +18099020101,5035.0,True,True +18099020102,3780.0,False,False +18099020201,4242.0,True,True +18099020202,2789.0,False,False +18099020301,3963.0,False,False +18099020302,3137.0,True,True +18099020400,3111.0,True,True +18099020500,3375.0,True,True +18099020600,5605.0,False,False +18099020701,3294.0,False,False +18099020702,3079.0,False,False +18099020800,5051.0,False,False +18101950100,2644.0,False,False +18101950200,3716.0,False,False +18101950300,3852.0,False,False +18103952000,4502.0,False,False +18103952100,4346.0,False,False +18103952200,2859.0,True,True +18103952300,3027.0,True,True +18103952400,2655.0,True,True +18103952500,2214.0,True,True +18103952600,3425.0,False,False +18103952700,7117.0,True,True +18103952800,3013.0,False,False +18103952900,2657.0,True,True +18105000100,4506.0,False,True +18105000201,6776.0,False,False +18105000202,6490.0,False,False +18105000301,4341.0,False,False +18105000302,3181.0,False,False +18105000401,4184.0,False,False +18105000402,5438.0,False,False +18105000501,5048.0,False,False +18105000502,3280.0,True,False +18105000601,3942.0,True,True +18105000602,3676.0,True,True +18105000700,3174.0,False,False +18105000800,5909.0,False,False +18105000901,3284.0,False,False +18105000903,5344.0,False,False +18105000904,5370.0,False,False +18105001001,5432.0,False,False +18105001002,6126.0,False,False +18105001101,5959.0,True,True +18105001102,4933.0,False,False +18105001103,2720.0,False,False +18105001200,6191.0,False,False +18105001301,5756.0,False,False +18105001303,6151.0,False,False +18105001304,4089.0,False,False +18105001305,2489.0,False,False +18105001401,2338.0,False,False +18105001402,5683.0,False,False +18105001501,6109.0,False,False +18105001502,2891.0,False,False +18105001600,5651.0,False,False +18107956700,3541.0,False,False +18107956800,3050.0,False,False +18107956900,5372.0,True,False +18107957000,4638.0,False,False +18107957100,4570.0,True,False +18107957200,4366.0,True,True +18107957300,4255.0,False,False +18107957400,4895.0,False,False +18107957500,3600.0,False,False +18109510100,9796.0,False,False +18109510201,4420.0,False,False +18109510202,3823.0,False,False +18109510300,5030.0,False,False +18109510401,3934.0,False,False +18109510402,5671.0,False,False +18109510500,4341.0,False,False +18109510600,8406.0,False,False +18109510701,3385.0,True,True +18109510702,6096.0,False,False +18109510800,3497.0,True,True +18109510900,4008.0,True,True +18109511000,7515.0,False,False +18111100400,6045.0,False,True +18111100500,3022.0,True,True +18111100600,2727.0,True,True +18111100700,2198.0,True,True +18113971700,6186.0,False,False +18113971800,3204.0,True,True +18113971900,5090.0,True,False +18113972000,3125.0,False,False +18113972100,4528.0,False,False +18113972200,4788.0,True,False +18113972300,4761.0,False,False +18113972400,4780.0,False,False +18113972500,6609.0,False,False +18113972600,4435.0,False,False +18115965700,2358.0,False,False +18115965800,3516.0,False,False +18117951300,3540.0,True,True +18117951400,3346.0,False,False +18117951500,3174.0,True,True +18117951600,3255.0,False,False +18117951700,2964.0,True,True +18117951800,3266.0,True,True +18119955500,3895.0,True,True +18119955600,3419.0,True,True +18119955700,5051.0,True,True +18119955800,3782.0,True,True +18119955900,4688.0,False,False +18121030100,4062.0,False,False +18121030200,3146.0,False,False +18121030300,4904.0,True,True +18121030400,4834.0,False,False +18123952200,5344.0,False,False +18123952300,3284.0,False,False +18123952400,3981.0,False,False +18123952500,4419.0,False,False +18123952600,2074.0,True,True +18125953900,3251.0,False,False +18125954000,3087.0,False,False +18125954100,3154.0,False,False +18125954200,2886.0,True,True +18127050101,9612.0,False,False +18127050103,8166.0,False,False +18127050202,6754.0,False,False +18127050203,6565.0,False,False +18127050300,7170.0,False,False +18127050402,7985.0,False,False +18127050405,1163.0,False,False +18127050407,3482.0,False,False +18127050501,6173.0,False,False +18127050503,5070.0,True,True +18127050505,2576.0,False,False +18127050506,5920.0,False,False +18127050507,3917.0,False,False +18127050508,6209.0,True,False +18127050509,4735.0,False,False +18127050602,4769.0,False,False +18127050603,3838.0,False,False +18127050604,8529.0,False,False +18127050702,8578.0,True,False +18127050703,3109.0,False,False +18127050704,5400.0,False,False +18127050800,6330.0,False,False +18127050900,4554.0,False,False +18127051002,8706.0,False,False +18127051005,4845.0,False,False +18127051006,4193.0,False,False +18127051007,7391.0,False,False +18127051008,2136.0,False,False +18127051101,6195.0,False,False +18127051102,4566.0,False,False +18127980001,0.0,False,False +18127980002,0.0,False,False +18127990000,0.0,False,False +18129040100,5476.0,False,False +18129040200,2352.0,False,False +18129040300,2434.0,False,False +18129040400,5732.0,False,False +18129040500,3578.0,False,False +18129040600,3077.0,False,False +18129040700,2911.0,True,True +18131958900,2742.0,False,False +18131959000,3504.0,True,False +18131959100,3353.0,True,True +18131959200,2960.0,False,False +18133956000,3208.0,False,False +18133956100,2762.0,False,False +18133956200,5196.0,False,False +18133956300,7476.0,False,False +18133956400,7164.0,False,False +18133956500,5599.0,False,False +18133956600,5979.0,False,False +18135951400,2499.0,False,False +18135951500,2808.0,False,False +18135951600,3480.0,True,True +18135951700,3341.0,False,False +18135951800,2290.0,True,True +18135951900,4426.0,True,True +18135952000,3153.0,False,False +18135952100,2929.0,False,False +18137968400,7295.0,False,False +18137968500,4616.0,False,False +18137968600,5096.0,True,True +18137968700,3276.0,False,False +18137968800,3203.0,False,False +18137968900,4905.0,False,False +18139974100,2824.0,False,False +18139974200,3462.0,False,False +18139974300,3588.0,True,False +18139974400,2752.0,False,False +18139974500,4015.0,True,True +18141000100,2148.0,True,True +18141000200,3977.0,True,True +18141000301,2402.0,True,True +18141000302,2454.0,True,True +18141000400,2043.0,True,True +18141000500,1730.0,True,True +18141000600,2155.0,True,True +18141000700,1768.0,False,False +18141000800,1679.0,False,False +18141000900,1155.0,True,True +18141001000,3267.0,True,True +18141001100,4206.0,True,True +18141001200,2309.0,False,False +18141001300,1976.0,False,False +18141001400,3218.0,True,False +18141001500,3160.0,True,True +18141001600,2161.0,False,False +18141001700,1188.0,True,True +18141001900,894.0,True,True +18141002000,1583.0,True,True +18141002100,1608.0,True,True +18141002200,2999.0,True,True +18141002300,1194.0,True,True +18141002400,3038.0,True,True +18141002500,2438.0,True,True +18141002600,3478.0,True,True +18141002700,1899.0,True,True +18141002800,2480.0,True,True +18141002900,1185.0,True,True +18141003000,1681.0,True,True +18141003100,4087.0,False,False +18141003200,5438.0,False,False +18141003300,3309.0,True,True +18141003400,3887.0,True,True +18141003500,2733.0,True,True +18141010100,2769.0,True,True +18141010200,5667.0,True,True +18141010300,6118.0,True,False +18141010400,3363.0,False,False +18141010500,3080.0,False,False +18141010600,3647.0,False,False +18141010700,3549.0,True,True +18141010800,4650.0,False,False +18141010900,7789.0,False,False +18141011000,6980.0,False,False +18141011100,4477.0,True,True +18141011201,615.0,False,False +18141011202,8351.0,False,False +18141011301,5699.0,False,False +18141011302,6696.0,False,False +18141011303,6140.0,False,False +18141011304,2314.0,False,False +18141011305,4362.0,False,False +18141011306,3022.0,False,False +18141011403,5903.0,False,False +18141011404,6857.0,False,False +18141011405,3754.0,False,False +18141011406,5126.0,False,False +18141011501,3960.0,True,True +18141011503,1888.0,False,False +18141011504,1537.0,False,False +18141011505,3200.0,False,False +18141011506,5121.0,True,True +18141011601,8149.0,False,False +18141011602,7930.0,False,False +18141011701,3908.0,False,False +18141011702,8086.0,False,False +18141011801,1329.0,False,False +18141011802,6416.0,False,False +18141011900,4015.0,False,False +18141012000,4153.0,False,False +18141012100,3813.0,False,False +18141012200,3132.0,False,False +18141012300,3679.0,False,False +18141012400,2045.0,False,False +18143966700,4685.0,True,True +18143966800,3477.0,True,True +18143966900,4318.0,False,False +18143967000,5611.0,False,False +18143967100,5668.0,False,False +18145710100,3902.0,False,False +18145710200,5516.0,False,False +18145710300,4950.0,False,False +18145710400,3426.0,True,True +18145710500,4760.0,True,False +18145710601,2930.0,True,True +18145710602,3088.0,True,True +18145710700,6400.0,False,False +18145710800,4929.0,False,False +18145710900,4537.0,False,False +18147952700,7394.0,False,False +18147952800,3189.0,False,False +18147952900,2724.0,False,False +18147953000,3798.0,False,False +18147953100,3342.0,True,True +18149953600,3043.0,False,False +18149953700,3317.0,False,False +18149953800,3505.0,True,True +18149953900,1930.0,False,False +18149954000,3630.0,True,True +18149954100,3635.0,False,False +18149954200,3892.0,True,True +18151970800,3761.0,True,False +18151970900,2354.0,False,False +18151971000,4142.0,True,True +18151971100,3195.0,False,False +18151971200,3342.0,False,False +18151971300,5161.0,False,False +18151971400,5600.0,False,False +18151971500,2845.0,False,False +18151971600,4053.0,False,False +18153050100,6099.0,True,True +18153050200,3037.0,False,False +18153050300,5683.0,True,True +18153050400,1954.0,True,True +18153050500,3957.0,False,False +18155965700,4786.0,True,True +18155965800,3075.0,True,True +18155965900,2824.0,True,True +18157000100,2970.0,True,True +18157000200,1899.0,True,True +18157000300,3507.0,False,False +18157000400,4237.0,True,True +18157000700,3815.0,True,True +18157000800,1977.0,True,True +18157001000,1389.0,False,False +18157001100,3178.0,False,False +18157001200,3035.0,True,True +18157001300,4827.0,False,False +18157001400,3305.0,True,True +18157001501,5039.0,False,False +18157001502,6489.0,False,False +18157001600,11518.0,False,False +18157001700,6877.0,True,True +18157001800,3982.0,True,False +18157001900,4641.0,False,False +18157005101,3683.0,False,False +18157005102,5469.0,False,False +18157005200,5983.0,False,False +18157005300,4186.0,False,False +18157005400,7596.0,False,False +18157005500,4872.0,False,False +18157010100,6064.0,False,False +18157010201,5224.0,False,False +18157010203,10907.0,False,False +18157010204,14657.0,False,False +18157010300,3315.0,False,True +18157010400,6259.0,False,False +18157010500,2245.0,False,True +18157010600,5754.0,False,False +18157010700,5739.0,False,False +18157010800,5334.0,False,False +18157010901,8298.0,False,False +18157010902,4464.0,False,False +18157011000,4680.0,False,False +18157011100,4139.0,True,True +18159020100,2583.0,False,False +18159020200,3345.0,False,False +18159020300,2814.0,False,False +18159020400,6420.0,True,True +18161960700,4147.0,False,False +18161960800,2966.0,True,False +18163000100,2054.0,True,True +18163000201,7505.0,False,False +18163000202,2123.0,False,False +18163000300,3551.0,False,False +18163000400,2362.0,False,False +18163000500,2111.0,False,False +18163000600,1878.0,False,False +18163000800,3116.0,True,True +18163000900,5832.0,True,True +18163001000,4652.0,True,True +18163001100,2532.0,True,True +18163001200,1636.0,True,True +18163001300,1944.0,True,True +18163001400,1721.0,True,True +18163001500,1981.0,True,True +18163001700,1893.0,True,True +18163001800,665.0,True,True +18163001900,982.0,True,True +18163002000,993.0,True,True +18163002100,2229.0,True,True +18163002300,2776.0,True,True +18163002400,3382.0,True,True +18163002500,1870.0,True,True +18163002600,3445.0,True,True +18163002800,2865.0,True,True +18163002900,1135.0,False,False +18163003000,4713.0,True,False +18163003100,2647.0,False,False +18163003200,3991.0,True,True +18163003300,3713.0,True,True +18163003400,2710.0,False,False +18163003500,3292.0,True,False +18163003600,4342.0,True,True +18163003701,1961.0,False,False +18163003702,4865.0,True,False +18163003801,4949.0,False,False +18163003803,5452.0,False,False +18163003804,5922.0,False,False +18163003900,3149.0,False,False +18163010100,6121.0,True,True +18163010201,11896.0,False,False +18163010202,3104.0,False,False +18163010203,8822.0,False,False +18163010403,6576.0,False,False +18163010404,7344.0,False,False +18163010500,7822.0,False,False +18163010600,1679.0,False,False +18163010700,8919.0,False,False +18163980100,69.0,False,False +18165020100,3487.0,False,False +18165020200,2450.0,False,False +18165020300,2858.0,False,False +18165020400,2038.0,False,False +18165020500,4706.0,True,True +18167000300,2092.0,True,True +18167000400,2795.0,True,True +18167000500,1762.0,True,True +18167000600,2070.0,True,True +18167000700,2147.0,True,True +18167000900,2355.0,True,True +18167001000,3695.0,False,False +18167001100,3298.0,True,True +18167001200,2478.0,True,True +18167001300,2231.0,True,True +18167001400,3330.0,False,False +18167001500,3571.0,True,True +18167001600,4945.0,False,False +18167001700,5052.0,True,True +18167001800,2743.0,True,True +18167001900,1983.0,True,True +18167010100,5625.0,False,False +18167010201,4969.0,False,False +18167010202,2999.0,True,True +18167010300,3666.0,False,False +18167010400,3674.0,False,False +18167010500,2352.0,True,True +18167010600,6057.0,False,False +18167010701,6779.0,False,False +18167010702,6186.0,False,False +18167011000,3611.0,False,False +18167011100,6031.0,False,True +18167011200,8963.0,False,False +18169102200,5710.0,False,False +18169102300,4363.0,False,False +18169102400,3091.0,True,True +18169102500,4316.0,False,False +18169102600,3341.0,True,True +18169102700,3946.0,False,True +18169102800,3242.0,True,True +18169102900,3380.0,False,False +18171951000,4529.0,False,False +18171951100,3708.0,False,False +18173030100,3639.0,False,False +18173030200,3892.0,False,False +18173030300,5500.0,False,False +18173030400,2644.0,False,False +18173030500,6997.0,False,False +18173030600,6293.0,False,False +18173030702,7100.0,False,False +18173030703,5661.0,False,False +18173030704,4808.0,False,False +18173030705,9083.0,False,False +18173030800,6663.0,False,False +18175967200,4864.0,True,True +18175967300,4547.0,True,True +18175967400,4181.0,False,False +18175967500,3092.0,True,True +18175967600,4282.0,False,False +18175967700,6882.0,False,False +18177000200,3780.0,True,True +18177000400,3788.0,False,False +18177000500,3930.0,True,True +18177000600,2099.0,True,True +18177000700,6029.0,False,False +18177000800,4563.0,False,False +18177000900,5601.0,True,True +18177001000,3859.0,True,True +18177001100,6946.0,False,False +18177010100,2644.0,False,False +18177010200,3240.0,False,False +18177010300,3439.0,False,False +18177010400,3314.0,False,False +18177010500,2117.0,False,False +18177010600,4245.0,True,True +18177010700,3953.0,False,False +18177010800,2795.0,False,False +18179040100,5853.0,False,False +18179040200,3832.0,False,False +18179040300,4228.0,False,False +18179040400,3316.0,True,True +18179040500,2685.0,False,False +18179040600,4271.0,True,True +18179040700,3826.0,False,False +18181958100,2189.0,False,False +18181958200,2890.0,True,True +18181958300,2221.0,False,False +18181958400,2234.0,False,False +18181958500,3691.0,False,False +18181958600,4976.0,True,True +18181958700,2845.0,False,False +18181958800,3103.0,False,False +18183050100,5285.0,False,False +18183050200,5041.0,False,False +18183050300,5515.0,False,False +18183050400,7468.0,False,False +18183050500,5145.0,True,True +18183050600,1952.0,False,False +18183050700,3324.0,False,False +19001960100,2763.0,False,False +19001960200,1571.0,True,True +19001960300,2751.0,False,False +19003950100,1651.0,True,True +19003950200,2019.0,False,False +19005960100,1872.0,False,False +19005960200,2465.0,False,False +19005960300,3888.0,False,False +19005960400,2147.0,True,True +19005960500,3441.0,False,True +19007950100,2592.0,False,False +19007950200,1728.0,False,False +19007950300,2859.0,True,True +19007950400,2971.0,True,True +19007950500,2302.0,True,True +19009070100,1856.0,False,False +19009070200,2063.0,True,True +19009070300,1652.0,True,True +19011960100,2906.0,False,False +19011960200,3282.0,False,False +19011960300,5348.0,False,False +19011960400,3253.0,False,False +19011960500,5680.0,False,False +19011960600,2539.0,False,False +19011960700,2628.0,True,False +19013000100,1546.0,True,True +19013000200,2639.0,True,True +19013000300,3351.0,True,True +19013000400,1705.0,True,True +19013000500,1752.0,True,True +19013000700,1353.0,True,True +19013000800,3861.0,True,True +19013000900,2032.0,True,True +19013001000,3602.0,False,False +19013001100,2628.0,False,False +19013001200,2251.0,False,False +19013001301,4148.0,False,False +19013001302,3681.0,False,False +19013001400,4516.0,False,False +19013001501,3142.0,True,True +19013001502,4185.0,False,False +19013001503,3696.0,False,False +19013001600,2705.0,True,False +19013001701,1909.0,True,True +19013001702,2353.0,True,True +19013001800,2040.0,True,True +19013001900,1924.0,True,True +19013002000,5353.0,False,False +19013002200,4066.0,False,False +19013002301,2421.0,False,False +19013002303,4258.0,False,False +19013002304,2218.0,False,False +19013002400,3927.0,False,False +19013002500,6134.0,False,False +19013002601,5057.0,False,False +19013002603,11669.0,False,False +19013002604,4203.0,False,False +19013002700,4206.0,False,False +19013002800,3012.0,False,False +19013002901,1266.0,False,False +19013002902,4136.0,False,False +19013003001,5700.0,False,False +19013003002,3748.0,False,False +19015020100,3085.0,False,False +19015020200,3758.0,False,False +19015020300,6255.0,False,False +19015020400,2421.0,False,False +19015020500,4922.0,False,False +19015020600,2264.0,False,False +19015020700,3665.0,False,False +19017004000,2554.0,False,False +19017004100,3550.0,False,False +19017004200,4261.0,False,False +19017004300,1699.0,False,False +19017004400,2789.0,False,False +19017004500,2667.0,False,False +19017004600,5167.0,False,False +19017004700,2177.0,False,False +19019950100,2629.0,True,True +19019950200,3535.0,False,False +19019950300,3359.0,False,False +19019950400,3143.0,False,False +19019950500,3740.0,False,False +19019950600,4712.0,False,False +19021960100,1420.0,False,False +19021960200,1774.0,False,False +19021960300,1845.0,False,False +19021960400,5996.0,True,True +19021960500,5443.0,True,True +19021960600,3580.0,False,False +19023070100,3251.0,False,False +19023070200,1895.0,True,True +19023070300,2712.0,False,False +19023070400,3669.0,False,False +19023070500,3101.0,False,False +19025950100,2416.0,False,False +19025950200,2924.0,False,False +19025950300,2140.0,False,False +19025950400,2264.0,False,False +19027960100,3805.0,False,False +19027960200,2341.0,False,False +19027960300,6054.0,False,False +19027960400,3986.0,True,True +19027960500,1840.0,False,False +19027960600,2255.0,False,False +19029190100,2412.0,False,False +19029190200,2209.0,False,False +19029190300,1504.0,False,False +19029190400,4200.0,True,True +19029190500,2766.0,True,True +19031450100,3173.0,False,False +19031450200,3603.0,False,False +19031450300,3460.0,False,False +19031450400,2986.0,False,False +19031450500,5235.0,False,False +19033950102,4324.0,True,True +19033950200,6422.0,False,False +19033950300,4585.0,False,False +19033950402,4126.0,True,True +19033950600,2028.0,False,False +19033950700,4005.0,False,False +19033950800,5073.0,False,False +19033950900,1734.0,False,False +19033951000,2385.0,False,False +19033951400,3858.0,False,False +19033951600,4294.0,False,False +19035080100,5210.0,True,False +19035080200,2551.0,False,False +19035080300,1506.0,False,False +19035080400,2076.0,False,False +19037070100,3140.0,False,False +19037070200,2415.0,False,False +19037070300,2663.0,False,False +19037070400,3808.0,False,False +19039960100,5139.0,True,True +19039960200,2118.0,False,False +19039960300,2103.0,False,False +19041080100,2016.0,False,False +19041080200,4784.0,True,True +19041080300,6420.0,False,False +19041080400,2991.0,False,False +19043070100,2935.0,False,False +19043070200,3562.0,False,False +19043070300,3455.0,True,True +19043070400,2347.0,False,False +19043070500,2190.0,True,True +19043070600,3136.0,False,False +19045000100,2578.0,True,True +19045000200,1826.0,True,True +19045000300,5263.0,True,True +19045000400,3622.0,False,False +19045000500,4873.0,False,False +19045000600,3439.0,False,False +19045000700,3831.0,False,False +19045000800,5368.0,False,False +19045000900,6313.0,False,False +19045001000,3844.0,False,False +19045001100,2151.0,False,False +19045001200,3801.0,False,False +19047070100,1943.0,False,False +19047070200,2084.0,False,False +19047070300,2148.0,True,True +19047070400,8953.0,False,True +19047070500,1906.0,False,False +19049050100,6203.0,False,False +19049050200,3602.0,False,False +19049050300,4508.0,True,True +19049050400,3138.0,True,True +19049050500,1928.0,False,False +19049050600,2711.0,False,False +19049050700,5178.0,False,False +19049050803,9479.0,False,False +19049050805,6241.0,False,False +19049050807,9278.0,False,False +19049050809,10705.0,False,False +19049050811,12871.0,False,False +19049050812,3142.0,False,False +19049050901,3860.0,False,False +19049050902,4255.0,False,False +19051080100,4215.0,False,False +19051080200,4705.0,False,False +19053960100,2279.0,False,False +19053960200,3684.0,False,False +19053960300,2016.0,True,True +19055950100,3889.0,False,False +19055950200,3136.0,False,False +19055950300,5084.0,False,False +19055950400,5074.0,False,False +19057000200,3037.0,True,True +19057000300,3547.0,True,True +19057000400,3340.0,True,True +19057000500,5097.0,True,True +19057000600,4010.0,False,False +19057000700,3048.0,False,False +19057000800,3342.0,False,False +19057000900,3275.0,False,False +19057001000,4708.0,False,False +19057001100,3535.0,False,False +19057001200,2447.0,False,False +19059450200,2337.0,False,False +19059450500,5085.0,False,False +19059450800,3278.0,False,False +19059451000,2740.0,False,False +19059451100,3687.0,False,False +19061000100,3040.0,True,True +19061000300,2190.0,True,True +19061000400,3719.0,False,False +19061000500,3489.0,True,True +19061000600,3001.0,False,False +19061000701,3914.0,False,False +19061000702,3090.0,False,False +19061000801,3988.0,False,False +19061000802,3357.0,False,False +19061000900,3680.0,False,False +19061001101,3561.0,False,False +19061001102,6921.0,False,False +19061001201,4100.0,False,False +19061001202,2224.0,True,True +19061001204,2768.0,False,False +19061001205,3910.0,False,False +19061010101,2040.0,True,False +19061010103,3206.0,False,False +19061010104,5601.0,False,False +19061010105,4096.0,False,False +19061010201,6462.0,False,False +19061010202,4185.0,False,False +19061010300,3213.0,False,False +19061010400,3840.0,False,False +19061010500,4556.0,False,False +19061010600,2831.0,False,False +19063070100,1843.0,True,True +19063070200,1638.0,False,False +19063070300,3374.0,False,False +19063070400,2583.0,False,False +19065080100,2679.0,False,False +19065080200,3107.0,False,False +19065080300,2447.0,False,False +19065080400,2968.0,True,True +19065080500,3278.0,True,True +19065080600,2176.0,False,False +19065080700,3148.0,False,False +19067480100,3039.0,False,False +19067480200,2691.0,False,False +19067480300,2447.0,False,False +19067480400,3089.0,True,True +19067480500,4520.0,True,True +19069360100,3278.0,False,False +19069360200,4457.0,True,True +19069360300,2427.0,False,False +19071970100,1937.0,False,False +19071970200,2753.0,False,False +19071970300,2256.0,True,True +19073080100,1763.0,True,True +19073080200,2588.0,True,True +19073080300,2739.0,False,False +19073080500,1860.0,False,False +19075960100,4481.0,False,False +19075960200,2745.0,False,False +19075960300,2962.0,False,False +19075960400,2111.0,False,False +19077950100,4055.0,False,False +19077950200,2230.0,False,False +19077950300,4384.0,False,False +19079960100,1973.0,False,False +19079960200,3238.0,False,False +19079960300,2893.0,False,False +19079960400,5071.0,False,False +19079960500,1822.0,False,False +19081270100,3864.0,False,False +19081270200,2486.0,False,False +19081270300,2411.0,True,True +19081270400,2041.0,False,False +19083480100,2607.0,False,False +19083480200,2221.0,False,False +19083480300,3684.0,False,False +19083480400,2891.0,False,False +19083480500,2839.0,False,False +19083480600,2819.0,True,False +19085290100,2412.0,False,False +19085290200,3295.0,False,False +19085290300,2855.0,False,False +19085290400,3137.0,True,True +19085290500,2390.0,False,False +19087970100,4000.0,False,False +19087970200,3093.0,False,False +19087970300,4198.0,False,False +19087970400,4962.0,True,False +19087970500,3688.0,False,False +19089960100,3842.0,False,False +19089960200,2746.0,False,False +19089960300,2638.0,False,False +19091970100,2072.0,False,False +19091970200,1707.0,False,False +19091970300,2890.0,False,False +19091970400,2885.0,True,True +19093090100,2541.0,False,False +19093090200,2149.0,False,False +19093090300,2211.0,False,False +19095960100,3946.0,False,False +19095960200,3964.0,False,False +19095960300,3134.0,False,False +19095960400,5145.0,False,False +19097950100,2550.0,False,False +19097950200,3211.0,False,False +19097950300,3400.0,False,False +19097950400,3860.0,False,False +19097950500,4116.0,False,False +19097950600,2264.0,True,True +19099040100,3799.0,False,False +19099040200,3956.0,False,False +19099040300,2583.0,True,True +19099040400,5861.0,True,False +19099040500,3966.0,True,True +19099040600,3182.0,False,False +19099040700,5350.0,False,False +19099040800,5286.0,False,False +19099040900,2988.0,False,False +19101090100,3281.0,False,False +19101090200,4072.0,False,False +19101090300,5818.0,True,True +19101090400,4977.0,False,False +19103000100,7355.0,False,False +19103000200,3478.0,False,False +19103000301,10245.0,False,False +19103000302,5786.0,False,False +19103000400,7741.0,False,False +19103000500,7853.0,False,False +19103000600,3576.0,False,False +19103001100,4509.0,False,False +19103001200,2079.0,False,False +19103001300,3183.0,False,False +19103001400,4576.0,False,False +19103001500,2469.0,False,False +19103001600,8871.0,False,True +19103001700,3124.0,False,False +19103001801,5167.0,False,False +19103001802,4448.0,False,True +19103002100,3894.0,False,False +19103002300,4334.0,False,False +19103010100,7195.0,False,False +19103010200,4936.0,False,False +19103010301,13982.0,False,False +19103010302,14580.0,False,False +19103010400,6613.0,False,False +19103010500,8583.0,False,False +19105070100,4055.0,False,False +19105070300,4693.0,False,False +19105070400,4913.0,True,True +19105070500,2637.0,False,False +19105070600,4261.0,False,False +19107080100,2383.0,False,False +19107080200,2536.0,True,True +19107080300,2655.0,True,False +19107080400,2614.0,False,False +19109950100,2160.0,True,True +19109950200,2439.0,False,False +19109950300,2273.0,True,True +19109950400,2854.0,True,False +19109950500,3172.0,False,False +19109950600,2080.0,False,False +19111490100,3547.0,False,False +19111490200,4753.0,True,False +19111490300,2024.0,False,False +19111490400,2659.0,False,False +19111490500,3560.0,False,False +19111490600,3569.0,False,False +19111490700,4536.0,False,False +19111490800,2014.0,True,True +19111490900,2101.0,True,True +19111491000,2133.0,True,True +19111491100,3331.0,False,False +19113000100,14718.0,False,False +19113000201,5771.0,True,False +19113000203,9158.0,False,False +19113000205,4703.0,False,False +19113000206,8760.0,False,False +19113000207,5433.0,True,True +19113000300,5730.0,False,False +19113000400,5828.0,False,False +19113000500,5654.0,False,False +19113000600,3039.0,False,False +19113000700,1944.0,False,False +19113000800,4520.0,False,False +19113000901,6242.0,False,False +19113000902,6599.0,False,False +19113001001,4609.0,False,False +19113001002,3322.0,False,False +19113001003,6205.0,True,False +19113001101,4298.0,False,False +19113001102,3423.0,False,False +19113001200,1651.0,True,True +19113001300,3655.0,False,False +19113001400,3386.0,True,True +19113001500,2793.0,False,False +19113001600,5837.0,False,False +19113001700,6228.0,False,False +19113001800,3197.0,True,True +19113001900,2549.0,False,True +19113002200,2273.0,True,True +19113002300,4501.0,False,False +19113002400,3853.0,True,False +19113002500,2857.0,True,True +19113002600,2513.0,True,True +19113002700,1720.0,True,True +19113002800,4385.0,False,False +19113002900,4730.0,False,False +19113003001,11085.0,False,False +19113003002,8425.0,False,False +19113010100,3014.0,False,False +19113010200,4657.0,False,False +19113010300,3785.0,False,False +19113010400,2862.0,False,False +19113010500,3606.0,False,False +19113010600,5971.0,False,False +19113010700,6818.0,False,False +19113010800,7554.0,False,False +19115450100,3015.0,False,False +19115450200,3975.0,False,True +19115450300,4188.0,False,False +19117950100,2118.0,False,False +19117950200,2214.0,False,False +19117950300,1850.0,True,True +19117950400,2401.0,True,True +19119950100,2741.0,False,False +19119950200,3092.0,False,False +19119950300,5943.0,False,False +19121060100,6562.0,False,False +19121060200,5416.0,False,False +19121060300,4034.0,False,False +19123950100,3110.0,True,True +19123950200,3052.0,False,False +19123950300,3795.0,False,False +19123950400,2887.0,False,False +19123950500,3238.0,False,False +19123950600,3353.0,True,False +19123950700,2729.0,True,True +19125030100,7666.0,False,False +19125030200,6701.0,False,False +19125030300,3224.0,False,False +19125030401,4542.0,False,False +19125030402,3935.0,False,False +19125030500,2094.0,True,False +19125030600,2338.0,True,True +19125030700,2672.0,False,False +19127950100,2980.0,False,False +19127950200,3188.0,False,False +19127950300,3472.0,False,False +19127950400,2932.0,False,False +19127950500,4108.0,True,True +19127950600,4381.0,True,False +19127950700,4641.0,True,True +19127950800,6509.0,False,False +19127950900,3527.0,True,True +19127951000,4226.0,False,False +19129040100,2949.0,False,False +19129040201,2338.0,False,False +19129040202,3488.0,False,False +19129040301,2867.0,False,False +19129040302,3392.0,False,False +19131560100,3352.0,True,True +19131560200,3465.0,False,False +19131560300,3791.0,False,False +19133960100,2269.0,False,False +19133960200,1914.0,False,False +19133960300,2817.0,True,True +19133960400,1730.0,False,False +19135070100,3128.0,False,False +19135070200,2621.0,True,True +19135070300,2058.0,False,False +19137960100,1964.0,False,False +19137960200,2460.0,True,True +19137960300,2944.0,True,True +19137960400,2685.0,False,False +19139050100,3423.0,False,False +19139050200,5338.0,False,False +19139050300,5327.0,False,False +19139050400,3974.0,False,False +19139050500,4851.0,False,False +19139050600,4972.0,False,False +19139050700,5474.0,False,False +19139050800,3176.0,True,True +19139050900,2954.0,True,True +19139051000,3400.0,True,True +19141490100,2688.0,False,False +19141490200,3766.0,False,False +19141490300,5012.0,False,False +19141490400,2369.0,False,False +19143460100,3085.0,False,False +19143460200,2967.0,False,False +19145490100,2455.0,False,False +19145490200,2211.0,True,True +19145490300,2751.0,False,False +19145490400,3218.0,False,False +19145490500,2310.0,False,False +19145490600,2323.0,False,False +19147960100,1745.0,False,False +19147960200,1880.0,False,False +19147960300,3796.0,False,False +19147960400,1582.0,False,False +19149970100,6334.0,False,False +19149970200,3675.0,True,True +19149970300,3268.0,False,False +19149970400,3267.0,False,False +19149970500,3136.0,False,False +19149970600,5388.0,False,False +19151780100,1797.0,True,True +19151780200,2989.0,False,False +19151780300,2011.0,False,False +19153000101,3886.0,True,True +19153000102,4179.0,True,False +19153000103,2140.0,False,True +19153000201,2750.0,False,False +19153000202,3912.0,False,False +19153000300,4147.0,False,False +19153000400,4901.0,True,True +19153000500,5425.0,True,True +19153000600,4301.0,False,False +19153000701,3460.0,False,False +19153000702,3654.0,False,False +19153000703,3091.0,False,False +19153000704,3516.0,False,False +19153000801,6398.0,False,False +19153000802,3449.0,False,False +19153000803,4384.0,True,False +19153000901,3355.0,False,False +19153000902,3543.0,False,False +19153001000,4979.0,False,False +19153001100,5063.0,True,True +19153001200,3258.0,True,True +19153001500,2840.0,True,True +19153001700,2391.0,True,True +19153001800,2193.0,True,True +19153001900,4169.0,True,False +19153002100,4828.0,True,True +19153002600,2714.0,True,True +19153002700,2960.0,False,False +19153002800,3481.0,False,False +19153002900,4323.0,False,False +19153003001,1988.0,False,False +19153003002,3440.0,False,False +19153003100,1885.0,False,False +19153003200,3009.0,False,False +19153003901,3913.0,True,True +19153003902,5638.0,False,False +19153004001,4510.0,False,False +19153004004,3256.0,False,False +19153004100,3318.0,False,False +19153004200,2031.0,True,True +19153004300,5803.0,False,False +19153004400,3614.0,True,True +19153004501,3840.0,True,True +19153004502,2619.0,False,False +19153004602,6596.0,True,False +19153004603,3818.0,False,False +19153004701,4321.0,True,False +19153004702,2552.0,True,True +19153004800,3086.0,True,True +19153004900,2219.0,True,True +19153005000,3552.0,True,True +19153005100,7185.0,False,False +19153005200,3031.0,True,True +19153005300,2569.0,True,True +19153010101,5094.0,False,False +19153010102,9662.0,False,False +19153010203,32179.0,False,False +19153010205,8691.0,False,False +19153010207,4624.0,False,False +19153010208,4689.0,False,False +19153010209,6282.0,False,False +19153010211,3685.0,False,False +19153010212,4638.0,False,False +19153010404,4522.0,False,False +19153010405,7141.0,False,False +19153010406,3731.0,False,False +19153010407,4367.0,False,False +19153010408,3631.0,False,False +19153010409,4143.0,False,False +19153010500,6337.0,False,False +19153010600,9810.0,False,False +19153010702,6277.0,False,False +19153010703,4979.0,False,False +19153010705,4561.0,False,False +19153010706,8766.0,False,False +19153010802,10614.0,False,False +19153010803,4915.0,False,False +19153010804,4720.0,False,False +19153011001,3441.0,False,False +19153011021,5029.0,False,False +19153011025,3695.0,False,False +19153011026,5315.0,False,False +19153011027,7549.0,False,False +19153011028,4925.0,False,False +19153011111,5227.0,False,False +19153011112,4140.0,False,False +19153011113,2558.0,False,False +19153011114,3940.0,False,False +19153011201,5149.0,False,False +19153011203,4001.0,False,False +19153011205,3712.0,True,True +19153011206,3818.0,False,False +19153011300,20379.0,False,False +19153011404,8285.0,False,False +19153011500,6635.0,False,False +19153011600,0.0,False,False +19153011701,8375.0,False,False +19153011702,3898.0,False,False +19155021200,3796.0,False,False +19155021400,3538.0,False,False +19155021501,2468.0,False,False +19155021502,2678.0,False,False +19155021602,2807.0,False,False +19155021603,2291.0,False,False +19155021701,2235.0,False,False +19155021702,2099.0,False,False +19155030100,5981.0,False,False +19155030200,3089.0,False,False +19155030300,3437.0,False,False +19155030401,4066.0,True,True +19155030402,2887.0,True,True +19155030501,2261.0,True,True +19155030502,2471.0,True,True +19155030601,2104.0,False,False +19155030602,2643.0,True,True +19155030700,2976.0,True,True +19155030800,3263.0,False,False +19155030900,1449.0,True,True +19155031000,2079.0,False,False +19155031100,2541.0,True,True +19155031200,3204.0,False,False +19155031300,2831.0,True,True +19155031400,4095.0,False,False +19155031601,5106.0,False,False +19155031602,2677.0,False,False +19155031700,5208.0,False,False +19155031800,3376.0,False,False +19155031900,3737.0,False,False +19157370100,3151.0,False,False +19157370200,3112.0,False,False +19157370300,4907.0,False,False +19157370400,4248.0,False,False +19157370500,2970.0,False,False +19159950100,2105.0,False,False +19159950200,2859.0,False,False +19161080100,2647.0,False,False +19161080200,2576.0,False,False +19161080300,2188.0,False,False +19161080400,2391.0,False,False +19163010101,4042.0,False,False +19163010102,7879.0,False,False +19163010201,6606.0,False,False +19163010202,6385.0,False,False +19163010300,2504.0,False,False +19163010401,5735.0,False,False +19163010402,3505.0,False,False +19163010600,2931.0,True,True +19163010700,1326.0,True,True +19163010800,3100.0,True,True +19163010900,1979.0,True,True +19163011000,2951.0,True,True +19163011100,3145.0,False,False +19163011200,2159.0,True,True +19163011300,4680.0,False,True +19163011400,2233.0,True,True +19163011500,2049.0,True,True +19163011600,3203.0,False,False +19163011700,3166.0,False,False +19163011800,2264.0,False,False +19163011900,2513.0,False,False +19163012000,3409.0,False,False +19163012100,3692.0,False,False +19163012200,2099.0,True,True +19163012300,1524.0,True,True +19163012400,1341.0,False,False +19163012501,3895.0,True,False +19163012502,3802.0,False,False +19163012601,5476.0,False,False +19163012602,4265.0,True,True +19163012701,3291.0,False,False +19163012702,3012.0,False,False +19163012801,4766.0,True,False +19163012802,5261.0,False,False +19163012901,6080.0,False,False +19163012902,5697.0,False,False +19163013000,4986.0,False,False +19163013100,1832.0,False,False +19163013200,1672.0,False,False +19163013300,3216.0,False,False +19163013400,3058.0,False,False +19163013500,3457.0,False,False +19163013600,2639.0,False,False +19163013702,5479.0,False,False +19163013703,2759.0,False,False +19163013705,5728.0,False,False +19163013706,5655.0,False,False +19165960100,2892.0,False,False +19165960200,2915.0,False,False +19165960300,3622.0,False,False +19165960400,2177.0,False,False +19167070100,3790.0,False,False +19167070200,4565.0,False,False +19167070300,6126.0,False,False +19167070400,4193.0,True,True +19167070500,2979.0,False,False +19167070600,6127.0,False,False +19167070700,7047.0,False,False +19169000100,11865.0,False,False +19169000200,3912.0,False,False +19169000300,3281.0,False,False +19169000400,2851.0,False,False +19169000500,3711.0,False,False +19169000600,4971.0,False,False +19169000700,3460.0,False,False +19169000800,5178.0,False,False +19169000900,3537.0,False,False +19169001000,5216.0,False,False +19169001100,6579.0,False,False +19169001200,920.0,False,False +19169001301,10539.0,False,False +19169001302,4836.0,False,False +19169010100,7997.0,False,False +19169010200,3715.0,False,False +19169010300,4178.0,False,False +19169010400,2992.0,False,False +19169010500,1738.0,False,False +19169010600,5465.0,False,False +19171290100,3005.0,False,False +19171290200,2537.0,False,False +19171290300,2685.0,False,False +19171290400,2829.0,True,False +19171290500,3583.0,True,True +19171290600,2393.0,False,False +19173180100,2426.0,True,True +19173180200,1992.0,False,False +19173180300,1749.0,False,False +19175190100,2305.0,False,False +19175190200,3945.0,True,False +19175190300,1957.0,False,False +19175190400,4151.0,False,False +19177950100,3942.0,True,True +19177950200,3208.0,False,False +19179960100,2841.0,False,False +19179960200,2430.0,True,True +19179960300,4523.0,False,False +19179960400,3604.0,True,True +19179960500,2253.0,True,True +19179960600,2938.0,True,True +19179960700,3501.0,False,False +19179960800,3672.0,False,False +19179960900,3043.0,True,True +19179961000,3425.0,True,True +19179961100,2911.0,False,False +19181020100,2418.0,False,False +19181020200,8239.0,False,False +19181020300,5312.0,False,False +19181020400,4551.0,False,False +19181020500,2581.0,False,False +19181020600,3490.0,False,False +19181020700,4669.0,False,False +19181020800,3366.0,False,False +19181020900,3566.0,False,False +19181021000,3205.0,True,False +19181021100,4837.0,False,False +19181021200,3842.0,False,False +19183960100,6553.0,False,False +19183960200,4624.0,False,False +19183960300,3662.0,True,True +19183960400,4028.0,True,True +19183960500,3233.0,False,False +19185070100,2586.0,True,True +19185070200,1735.0,True,True +19185070300,2108.0,True,True +19187000100,6900.0,False,False +19187000200,3475.0,False,False +19187000300,1489.0,True,True +19187000400,2209.0,True,True +19187000500,1340.0,True,True +19187000600,4510.0,True,True +19187000700,1619.0,True,True +19187000900,4909.0,False,False +19187010100,2167.0,False,False +19187010200,1813.0,False,False +19187010300,3071.0,False,False +19187010400,3043.0,False,False +19189680100,4229.0,False,False +19189680200,2448.0,False,False +19189680300,3857.0,False,False +19191950100,3304.0,False,False +19191950200,5660.0,False,False +19191950300,3334.0,False,False +19191950400,4726.0,False,False +19191950500,3238.0,False,False +19193000100,4694.0,False,False +19193000200,6478.0,False,False +19193000300,6239.0,False,False +19193000400,4388.0,False,False +19193000500,3280.0,False,False +19193000600,2773.0,True,False +19193000700,3099.0,False,False +19193000800,3599.0,True,True +19193000900,2207.0,False,False +19193001000,1932.0,True,True +19193001100,4862.0,True,False +19193001200,3145.0,True,True +19193001300,1629.0,True,True +19193001400,4252.0,True,True +19193001500,2275.0,True,True +19193001800,6187.0,False,False +19193001900,3026.0,False,False +19193002000,5177.0,False,False +19193002101,3194.0,False,False +19193002102,6075.0,False,False +19193003100,4041.0,False,False +19193003200,4814.0,False,False +19193003300,8179.0,False,False +19193003500,3928.0,False,False +19193003600,3113.0,True,True +19193940200,0.0,False,False +19195690100,2587.0,False,False +19195690200,2156.0,False,False +19195690300,2702.0,False,False +19197680100,3311.0,False,False +19197680200,1496.0,False,False +19197680300,3122.0,True,True +19197680400,1189.0,False,False +19197680500,3621.0,True,True +20001952600,1795.0,False,False +20001952700,2034.0,True,False +20001952800,4035.0,True,True +20001952900,1980.0,False,False +20001953000,2712.0,False,False +20003953600,5041.0,True,True +20003953700,2794.0,False,False +20005081600,4092.0,False,False +20005081700,5682.0,False,False +20005081800,2935.0,False,False +20005081900,3559.0,True,True +20007968100,3031.0,True,True +20007968200,1593.0,True,True +20009971100,3764.0,False,False +20009971200,1513.0,False,False +20009971300,3242.0,True,True +20009971400,2466.0,True,True +20009971500,3424.0,False,False +20009971600,4139.0,False,False +20009971700,2723.0,False,False +20009971800,5182.0,True,True +20011955600,2595.0,True,True +20011955700,2038.0,False,False +20011955800,3683.0,True,True +20011955900,3721.0,True,False +20011956000,2571.0,True,True +20013480600,2914.0,True,True +20013480700,3456.0,False,True +20013480800,3256.0,True,True +20015020100,6605.0,False,False +20015020201,6949.0,False,False +20015020202,7899.0,False,False +20015020203,7499.0,False,False +20015020300,3529.0,False,False +20015020400,2639.0,True,True +20015020500,5762.0,False,False +20015020600,7927.0,False,False +20015020700,3943.0,False,False +20015020800,2640.0,True,True +20015020901,3793.0,False,False +20015020902,4022.0,False,False +20015020903,3491.0,False,False +20017960600,2637.0,True,True +20019964600,3323.0,True,True +20021958100,2641.0,True,True +20021958200,1980.0,False,False +20021958300,3958.0,True,True +20021958400,3631.0,False,False +20021958500,3460.0,True,True +20021958600,4509.0,True,True +20023950200,2665.0,False,False +20025967100,2026.0,False,False +20027458100,3694.0,False,False +20027458200,4388.0,False,False +20029977100,2224.0,True,True +20029977200,2224.0,True,True +20029977300,3232.0,True,True +20029977400,1258.0,False,False +20031966100,2640.0,False,False +20031966200,2817.0,False,False +20031966300,2797.0,True,True +20033967600,1740.0,False,False +20035493100,2920.0,True,True +20035493200,3301.0,False,False +20035493300,2598.0,False,False +20035493400,2403.0,False,False +20035493500,5046.0,False,False +20035493600,4332.0,True,True +20035493700,3539.0,True,True +20035493800,4175.0,True,True +20035493900,3265.0,False,False +20035494000,2331.0,False,False +20035494100,1441.0,True,True +20037956600,4149.0,False,False +20037956700,3838.0,True,True +20037956800,3433.0,True,True +20037956900,4021.0,False,False +20037957000,3329.0,False,False +20037957100,2842.0,True,True +20037957200,2340.0,True,True +20037957300,3159.0,False,False +20037957400,2213.0,False,False +20037957500,2652.0,True,True +20037957600,6992.0,False,False +20039951100,1144.0,False,False +20039951200,1716.0,False,False +20041084100,3973.0,False,False +20041084200,2539.0,False,False +20041084300,2391.0,False,False +20041084400,4576.0,False,False +20041084500,3188.0,True,True +20041084600,2161.0,True,True +20043020100,2369.0,False,False +20043020200,1908.0,False,False +20043020300,3407.0,True,True +20045000100,2728.0,True,False +20045000200,6814.0,True,False +20045000300,6887.0,False,False +20045000400,4117.0,False,False +20045000501,3092.0,False,False +20045000502,6000.0,False,False +20045000603,8631.0,False,False +20045000604,5216.0,False,False +20045000702,7038.0,False,False +20045000797,4951.0,False,False +20045000801,6471.0,False,False +20045000802,6443.0,False,False +20045000901,6426.0,False,False +20045000902,2162.0,False,False +20045001001,2708.0,False,False +20045001002,6168.0,False,False +20045001201,1692.0,False,False +20045001202,7611.0,False,False +20045001203,6740.0,False,False +20045001400,5140.0,False,False +20045001500,2725.0,False,False +20045001600,10530.0,False,False +20047969600,1333.0,False,False +20047969700,1536.0,True,True +20049965100,2523.0,True,True +20051072600,2592.0,False,False +20051072701,5278.0,False,False +20051072702,3045.0,False,False +20051072800,8230.0,False,False +20051072900,6290.0,False,True +20051073000,3340.0,False,False +20053086600,2093.0,False,False +20053086700,4138.0,False,False +20055960100,4528.0,False,False +20055960200,6586.0,False,True +20055960300,2973.0,True,True +20055960401,1996.0,False,False +20055960403,2678.0,False,False +20055960404,3748.0,False,True +20055960501,2307.0,True,True +20055960503,1231.0,False,False +20055960505,1721.0,True,True +20055960507,1955.0,False,True +20055960508,2515.0,False,True +20055960600,4512.0,True,True +20057961600,1975.0,False,False +20057961700,1932.0,False,False +20057961800,8413.0,True,True +20057961900,8471.0,False,False +20057962000,5571.0,True,True +20057962101,4744.0,True,True +20057962102,3073.0,True,True +20059954100,6832.0,False,False +20059954200,3025.0,True,True +20059954300,4851.0,False,False +20059954400,4733.0,True,False +20059954500,6117.0,False,False +20061000100,1937.0,True,True +20061000200,2901.0,True,True +20061000300,4682.0,False,False +20061000400,6115.0,False,False +20061000500,2310.0,False,False +20061000600,7483.0,True,True +20061000700,1891.0,False,False +20061000800,6706.0,False,False +20063955100,1710.0,True,True +20063955200,934.0,False,False +20065952100,800.0,False,False +20065952200,1719.0,True,True +20067963600,1641.0,False,False +20067963700,5826.0,True,True +20069962600,3053.0,False,False +20069962700,2986.0,False,False +20071958100,1185.0,False,False +20073965600,2136.0,False,False +20073965700,2351.0,True,True +20073965800,1594.0,False,False +20075958600,2591.0,True,False +20077961600,1849.0,False,False +20077961700,1457.0,True,True +20077961800,2288.0,True,True +20079030100,4556.0,False,False +20079030200,5704.0,False,False +20079030300,5364.0,False,False +20079030400,5298.0,False,False +20079030500,6730.0,False,False +20079030600,6851.0,False,False +20081463100,4018.0,True,True +20083461100,1876.0,False,False +20085082600,5284.0,False,False +20085082700,4111.0,False,False +20085082800,3871.0,False,False +20087020101,6106.0,False,False +20087020102,2992.0,False,False +20087020200,4109.0,False,False +20087020300,5683.0,False,False +20089576100,1008.0,True,True +20089576200,1877.0,True,True +20091050000,4920.0,False,False +20091050100,4319.0,False,False +20091050200,3458.0,False,False +20091050301,4308.0,False,False +20091050302,1574.0,False,False +20091050400,4878.0,False,False +20091050500,2528.0,False,False +20091050600,4591.0,False,False +20091050700,4109.0,False,False +20091050800,2651.0,False,False +20091050900,4685.0,False,False +20091051000,3813.0,False,False +20091051100,3565.0,False,False +20091051200,3965.0,False,False +20091051300,4355.0,False,False +20091051400,3134.0,False,False +20091051500,4292.0,False,False +20091051600,5589.0,False,False +20091051700,4886.0,False,False +20091051801,3741.0,False,False +20091051802,6546.0,False,False +20091051803,4300.0,False,False +20091051804,4403.0,False,False +20091051805,5224.0,False,False +20091051806,5629.0,False,False +20091051902,4513.0,False,False +20091051903,3298.0,False,False +20091051904,5567.0,False,False +20091051906,6630.0,False,False +20091051907,3645.0,False,False +20091051908,1702.0,False,False +20091051909,5374.0,False,False +20091052001,2242.0,False,False +20091052003,6255.0,False,False +20091052004,1759.0,False,False +20091052101,1858.0,False,False +20091052102,2673.0,False,False +20091052201,3377.0,False,False +20091052202,3513.0,False,False +20091052303,7706.0,False,False +20091052304,4985.0,False,False +20091052305,4536.0,False,False +20091052306,3239.0,False,False +20091052405,8181.0,False,False +20091052410,5338.0,False,False +20091052411,2946.0,False,False +20091052414,3991.0,False,False +20091052415,2976.0,False,False +20091052416,4668.0,False,False +20091052417,3523.0,False,False +20091052418,3618.0,True,True +20091052419,4835.0,False,False +20091052421,4207.0,False,False +20091052502,1700.0,False,False +20091052504,7117.0,False,False +20091052601,10239.0,False,False +20091052603,17891.0,False,False +20091052604,1980.0,False,False +20091052606,2066.0,False,False +20091052607,2272.0,False,False +20091052700,7656.0,False,False +20091052801,12793.0,False,False +20091052802,9882.0,False,False +20091052803,3844.0,False,False +20091052904,3558.0,False,False +20091052905,4542.0,True,True +20091052906,5045.0,False,False +20091052907,5029.0,False,False +20091052908,5540.0,False,False +20091052910,4436.0,False,False +20091053002,4811.0,False,False +20091053004,3596.0,False,False +20091053005,1885.0,False,False +20091053006,3505.0,False,False +20091053007,5048.0,False,False +20091053008,4494.0,False,False +20091053009,4988.0,False,False +20091053010,5542.0,False,False +20091053011,2264.0,False,False +20091053101,4411.0,False,False +20091053102,4611.0,False,False +20091053105,3172.0,False,False +20091053108,4594.0,False,False +20091053109,3002.0,False,False +20091053110,3808.0,False,False +20091053201,2276.0,False,False +20091053202,3698.0,False,False +20091053203,4711.0,False,False +20091053301,5953.0,False,False +20091053302,7481.0,False,False +20091053403,3730.0,False,False +20091053406,8807.0,False,False +20091053409,3768.0,False,False +20091053410,11429.0,False,False +20091053411,5144.0,False,False +20091053413,4109.0,False,False +20091053414,5374.0,False,False +20091053415,4416.0,False,False +20091053417,3999.0,False,False +20091053418,4475.0,False,False +20091053419,1643.0,False,False +20091053421,4244.0,False,False +20091053422,2160.0,False,False +20091053423,5377.0,False,False +20091053424,9486.0,False,False +20091053502,3991.0,False,False +20091053505,9757.0,False,False +20091053506,3644.0,False,False +20091053507,5506.0,False,False +20091053508,5708.0,False,False +20091053509,6989.0,False,False +20091053510,5214.0,False,False +20091053555,1774.0,True,True +20091053556,2896.0,True,True +20091053557,2121.0,False,False +20091053601,1975.0,False,False +20091053602,8980.0,False,False +20091053701,2709.0,False,False +20091053703,3690.0,False,False +20091053705,2980.0,False,False +20091053707,4629.0,False,False +20091053709,5811.0,False,False +20091053711,4580.0,False,False +20091053712,4635.0,False,False +20091053801,6543.0,False,False +20091053803,3636.0,False,False +20091053804,3443.0,False,False +20091980001,0.0,False,False +20091980002,76.0,False,False +20091980003,0.0,False,False +20093959100,3907.0,True,True +20095961100,2474.0,False,False +20095961200,3225.0,False,False +20095961300,1641.0,False,False +20097969100,2505.0,False,False +20099950100,2965.0,True,True +20099950200,1873.0,True,True +20099950300,2684.0,True,True +20099950400,3433.0,True,True +20099950500,3683.0,False,False +20099950600,2170.0,False,False +20099950700,1945.0,False,False +20099950800,1366.0,True,True +20101956600,1564.0,False,False +20103070100,1898.0,True,True +20103070200,3132.0,False,False +20103070300,5325.0,False,False +20103070400,3744.0,False,False +20103070500,5013.0,True,True +20103070700,4792.0,False,False +20103070900,3050.0,False,False +20103071000,3842.0,False,False +20103071101,11012.0,False,False +20103071102,4901.0,False,False +20103071202,4422.0,False,False +20103071203,7918.0,False,False +20103071400,4455.0,False,False +20103071600,3015.0,False,False +20103071800,6014.0,False,False +20103981900,8212.0,False,False +20105086100,3044.0,False,False +20107955100,4757.0,True,True +20107955200,4914.0,True,False +20109954600,2805.0,False,False +20111000100,5268.0,False,True +20111000200,6630.0,False,False +20111000300,4433.0,True,True +20111000400,3576.0,False,False +20111000500,4882.0,True,True +20111000600,2346.0,False,False +20111000700,2621.0,False,False +20111000800,3495.0,False,False +20113788100,2769.0,False,False +20113788200,3424.0,False,False +20113788300,2812.0,False,False +20113788400,6603.0,False,False +20113788500,1576.0,False,False +20113788600,5453.0,False,False +20113788700,5930.0,False,False +20115489500,1553.0,True,True +20115489600,3893.0,False,False +20115489700,2783.0,False,False +20115489800,3735.0,False,False +20117040701,1755.0,False,False +20117060510,3545.0,False,False +20117070182,2442.0,False,False +20117090186,2007.0,False,False +20119966600,2613.0,False,False +20119966700,1567.0,False,False +20121100100,3585.0,False,False +20121100200,4984.0,False,False +20121100300,2978.0,False,False +20121100400,3960.0,False,False +20121100500,4638.0,False,False +20121100601,5994.0,False,False +20121100602,2071.0,False,False +20121100700,5207.0,False,False +20123176600,4304.0,False,False +20123176700,1841.0,True,True +20125950100,1918.0,False,False +20125950200,2687.0,True,True +20125950300,3987.0,False,False +20125950400,2174.0,True,True +20125950500,1208.0,True,True +20125950600,3660.0,True,True +20125950700,3648.0,False,False +20125950800,4385.0,False,False +20125950900,944.0,True,True +20125951000,2050.0,True,True +20125951100,2684.0,True,True +20125951200,983.0,True,True +20125951300,2193.0,True,True +20127963600,2951.0,False,False +20127963700,2615.0,False,False +20129964600,2754.0,True,True +20131480100,3481.0,False,False +20131480200,4352.0,False,False +20131480300,2288.0,False,False +20133951600,3707.0,False,False +20133951700,2250.0,False,False +20133951800,4184.0,True,True +20133951900,3301.0,True,True +20133952000,2666.0,False,False +20135956100,1199.0,False,False +20135956200,1677.0,False,False +20137951700,5446.0,False,False +20139010100,4103.0,False,False +20139010200,2812.0,False,False +20139010300,1942.0,False,False +20139010400,2969.0,True,True +20139010500,4055.0,False,False +20141474100,3530.0,False,False +20143085600,2051.0,False,False +20143085700,3771.0,True,True +20145970200,5104.0,False,False +20145970300,1525.0,False,False +20147475100,1016.0,False,False +20147475200,1507.0,False,False +20147475300,2817.0,True,True +20149000100,8975.0,False,False +20149000200,6087.0,False,False +20149000300,4695.0,False,False +20149000400,4090.0,False,False +20151968600,2064.0,False,False +20151968700,4059.0,True,True +20151968800,3329.0,False,False +20153950600,2502.0,False,False +20155000100,3265.0,False,False +20155000200,4136.0,False,False +20155000300,6908.0,False,False +20155000400,3610.0,True,True +20155000500,5753.0,False,False +20155000600,3058.0,True,True +20155000700,5350.0,True,True +20155000800,3240.0,True,True +20155001000,2079.0,True,True +20155001100,5098.0,False,False +20155001200,3495.0,False,False +20155001300,2841.0,True,True +20155001400,4887.0,False,False +20155001500,3064.0,False,False +20155001600,1611.0,False,False +20155001700,2291.0,True,True +20155001800,2079.0,True,True +20157978100,986.0,False,False +20157978200,1555.0,False,False +20157978300,2117.0,False,False +20159967100,2178.0,False,False +20159967200,3774.0,False,False +20159967300,3706.0,False,False +20161000200,10342.0,False,False +20161000303,2729.0,False,True +20161000304,4655.0,False,False +20161000500,5002.0,False,False +20161000600,9793.0,False,False +20161000700,4466.0,False,False +20161000801,4266.0,False,True +20161000802,2415.0,True,True +20161000900,5068.0,False,False +20161001002,8638.0,True,True +20161001100,7909.0,False,False +20161001301,3584.0,False,False +20161001302,6189.0,False,False +20161980000,0.0,False,False +20163974600,2158.0,True,True +20163974700,2895.0,False,False +20165972100,1141.0,True,True +20165972200,1881.0,False,False +20167973800,4699.0,True,True +20167973900,2249.0,False,False +20169000100,5079.0,True,True +20169000200,2057.0,True,True +20169000300,4457.0,True,True +20169000400,2951.0,True,True +20169000500,5657.0,True,True +20169000600,3161.0,False,False +20169000700,6237.0,False,False +20169000800,4648.0,False,False +20169000900,7103.0,False,False +20169001000,5847.0,False,False +20169001100,3773.0,False,False +20169001200,3731.0,False,False +20171957100,4917.0,False,False +20173000100,3036.0,True,True +20173000200,3226.0,True,True +20173000300,4779.0,True,True +20173000400,2649.0,True,True +20173000600,1877.0,True,True +20173000700,3238.0,True,True +20173000800,1910.0,True,True +20173000900,2276.0,True,True +20173001000,3905.0,True,True +20173001100,2246.0,True,True +20173001400,3772.0,False,False +20173001500,2770.0,True,True +20173001800,1801.0,True,True +20173001900,2098.0,False,False +20173002000,1894.0,False,False +20173002100,2970.0,False,False +20173002200,1924.0,False,False +20173002300,1927.0,False,False +20173002400,1376.0,True,True +20173002600,1641.0,True,True +20173002700,1930.0,True,True +20173002800,3286.0,True,True +20173002900,2667.0,True,True +20173003000,2370.0,True,True +20173003100,2316.0,True,True +20173003200,2459.0,True,True +20173003400,3503.0,True,True +20173003500,2140.0,True,True +20173003600,2502.0,True,True +20173003700,1565.0,True,True +20173003800,2949.0,True,True +20173003900,3815.0,True,True +20173004000,4799.0,True,True +20173004300,4274.0,True,True +20173005100,4255.0,True,True +20173005200,4412.0,True,True +20173005300,6000.0,False,False +20173005400,7788.0,True,True +20173005501,5082.0,False,False +20173005502,5554.0,False,False +20173005600,4793.0,False,False +20173005700,6110.0,False,False +20173005800,4413.0,True,True +20173005900,4267.0,True,True +20173006000,4175.0,True,True +20173006100,2891.0,True,False +20173006200,3374.0,True,True +20173006300,2131.0,True,True +20173006400,1964.0,False,False +20173006500,3796.0,True,True +20173006600,2491.0,False,False +20173006700,2547.0,True,False +20173006800,4602.0,True,True +20173006900,2748.0,True,True +20173007000,4012.0,True,True +20173007101,2301.0,False,False +20173007102,4752.0,True,False +20173007201,4348.0,False,False +20173007203,6111.0,False,False +20173007204,9612.0,False,False +20173007301,3754.0,False,False +20173007302,3882.0,False,False +20173007400,743.0,False,False +20173007500,2742.0,True,True +20173007600,3659.0,False,False +20173007700,8253.0,False,False +20173007800,3360.0,True,True +20173008000,5868.0,False,False +20173008100,5030.0,False,False +20173008200,7035.0,True,True +20173008300,4149.0,True,False +20173008400,3689.0,False,False +20173008500,2508.0,False,False +20173008600,3493.0,False,False +20173008700,3934.0,True,True +20173008800,4553.0,False,False +20173008900,3552.0,True,True +20173009000,3123.0,False,False +20173009100,6903.0,False,False +20173009200,2745.0,False,False +20173009301,6026.0,False,False +20173009302,5831.0,False,False +20173009401,3952.0,False,False +20173009402,2541.0,False,False +20173009503,9603.0,False,False +20173009504,4460.0,False,False +20173009505,3085.0,False,False +20173009506,4564.0,False,False +20173009507,6390.0,False,False +20173009508,3002.0,False,False +20173009509,6595.0,False,False +20173009510,4937.0,False,False +20173009511,7742.0,False,False +20173009512,3991.0,False,False +20173009513,4384.0,False,False +20173009603,2875.0,False,False +20173009604,2688.0,False,False +20173009605,5765.0,False,False +20173009700,6568.0,False,False +20173009801,4885.0,False,False +20173009802,8308.0,False,False +20173009900,11146.0,False,False +20173010001,4392.0,False,False +20173010002,4490.0,False,False +20173010003,2154.0,False,False +20173010004,6621.0,False,False +20173010005,4195.0,False,False +20173010106,3031.0,False,False +20173010107,3780.0,False,False +20173010108,2126.0,False,False +20173010109,2042.0,False,False +20173010110,1631.0,False,False +20173010111,7942.0,False,False +20173010113,4302.0,False,False +20173010115,8503.0,False,False +20173010116,3646.0,False,False +20173010200,9888.0,False,False +20173010300,16826.0,False,False +20173010400,2101.0,False,False +20173010500,4381.0,False,False +20173010600,3913.0,False,False +20173010700,3196.0,False,False +20173010801,2632.0,False,False +20173010802,2851.0,False,False +20175965600,2571.0,True,False +20175965700,4346.0,False,False +20175965800,4616.0,True,True +20175965900,6726.0,True,True +20175966000,4090.0,True,True +20177000400,3498.0,True,True +20177000500,1725.0,True,True +20177000600,2091.0,True,True +20177000700,2669.0,True,False +20177000800,3793.0,True,True +20177000900,2790.0,True,True +20177001000,3156.0,True,True +20177001100,3270.0,True,True +20177001200,2248.0,True,True +20177001300,4242.0,True,True +20177001500,2151.0,False,False +20177001601,3103.0,False,False +20177001603,2756.0,True,True +20177001604,3835.0,False,False +20177001800,3689.0,False,False +20177001900,3449.0,False,False +20177002100,3295.0,True,True +20177002200,2409.0,False,False +20177002400,5714.0,False,False +20177002500,3172.0,False,False +20177002601,3761.0,True,False +20177002602,6520.0,False,False +20177002701,4566.0,False,False +20177002702,4461.0,False,False +20177002800,3799.0,True,True +20177002900,3020.0,True,True +20177003001,3623.0,True,True +20177003002,5693.0,False,False +20177003100,5378.0,True,True +20177003301,2925.0,False,False +20177003302,3745.0,False,False +20177003400,9489.0,False,False +20177003500,6104.0,False,False +20177003601,4721.0,False,False +20177003604,3990.0,False,False +20177003605,4655.0,False,False +20177003606,4836.0,False,False +20177003607,6479.0,False,False +20177003700,9309.0,False,False +20177003901,6785.0,False,False +20177003902,4357.0,False,False +20177004000,2569.0,True,True +20177004100,4012.0,False,False +20179952600,1224.0,False,False +20179952700,1282.0,False,False +20181453600,1264.0,False,False +20181453700,4674.0,False,False +20183475800,1647.0,True,True +20183475900,1980.0,False,False +20185470600,1849.0,False,False +20185470700,2332.0,False,False +20187964100,2052.0,False,False +20189965100,1264.0,False,False +20189965200,4339.0,True,True +20191962100,4785.0,False,False +20191962200,5148.0,False,False +20191962300,2607.0,True,True +20191962400,3810.0,True,True +20191962500,4373.0,True,True +20191962600,2391.0,False,False +20193953100,6026.0,False,False +20193953400,1784.0,False,False +20195955800,2840.0,False,False +20197483100,4441.0,False,False +20197483200,2448.0,False,False +20199954100,1574.0,False,False +20201978600,2886.0,True,True +20201978700,2607.0,True,True +20203957600,2130.0,False,False +20205097100,2043.0,True,True +20205097200,1461.0,False,False +20205097300,2450.0,True,True +20205097400,2734.0,True,True +20207096600,1617.0,True,True +20207096700,1540.0,True,True +20209040001,0.0,False,False +20209040002,0.0,False,False +20209040200,1059.0,True,True +20209040300,1011.0,True,True +20209040400,1922.0,True,True +20209040500,1989.0,True,True +20209040600,2783.0,True,True +20209040700,1418.0,True,True +20209040800,667.0,True,True +20209040900,1174.0,True,True +20209041000,1355.0,True,True +20209041100,1550.0,True,True +20209041200,1460.0,True,True +20209041300,5292.0,True,True +20209041500,2916.0,True,True +20209041600,3627.0,True,True +20209041700,2787.0,True,True +20209041800,1025.0,True,True +20209041900,1583.0,True,True +20209042001,1608.0,True,True +20209042002,1577.0,True,True +20209042100,3175.0,True,True +20209042200,1966.0,True,True +20209042300,3320.0,True,True +20209042400,2395.0,True,True +20209042501,0.0,False,False +20209042502,0.0,False,False +20209042600,2510.0,True,True +20209042700,3504.0,True,True +20209042800,3238.0,True,True +20209043000,117.0,True,True +20209043301,3577.0,True,True +20209043400,2015.0,False,False +20209043500,1661.0,True,True +20209043600,6670.0,False,False +20209043700,2504.0,True,True +20209043802,1134.0,False,False +20209043803,2962.0,True,True +20209043804,0.0,False,False +20209043903,2952.0,True,True +20209043904,4223.0,True,True +20209043905,1842.0,True,True +20209044001,3641.0,False,False +20209044003,2774.0,True,False +20209044004,607.0,True,True +20209044101,1269.0,True,True +20209044102,3123.0,False,False +20209044103,3232.0,False,False +20209044104,3179.0,True,True +20209044201,4108.0,False,False +20209044202,3798.0,False,False +20209044301,2364.0,True,True +20209044302,1674.0,True,True +20209044303,2607.0,True,True +20209044400,3135.0,True,True +20209044500,2577.0,True,True +20209044601,2795.0,False,False +20209044602,0.0,False,False +20209044603,0.0,False,False +20209044702,4492.0,False,False +20209044703,2923.0,False,False +20209044704,1645.0,False,False +20209044803,6147.0,False,False +20209044804,4859.0,False,False +20209044805,2402.0,False,False +20209044806,574.0,False,False +20209044900,4864.0,True,False +20209045000,3488.0,True,True +20209045100,2016.0,False,True +20209045200,4000.0,False,False +21001970100,1607.0,True,True +21001970200,2003.0,False,False +21001970300,3258.0,True,True +21001970401,4405.0,True,True +21001970402,4301.0,False,False +21001970500,2030.0,True,True +21001970600,1618.0,True,True +21003920100,3178.0,True,True +21003920200,2833.0,True,True +21003920300,4990.0,True,True +21003920400,4890.0,True,True +21003920500,1430.0,True,True +21003920600,3623.0,True,True +21005950100,8760.0,True,True +21005950201,5197.0,True,True +21005950202,3858.0,False,False +21005950300,2152.0,False,False +21005950400,2442.0,True,True +21007950100,4355.0,False,False +21007950200,1198.0,True,True +21007950300,2479.0,True,True +21009950100,3228.0,False,True +21009950200,3568.0,True,True +21009950300,3750.0,True,True +21009950400,5971.0,True,True +21009950500,3696.0,True,True +21009950600,6423.0,True,True +21009950700,6110.0,True,True +21009950800,3577.0,True,True +21009950900,3860.0,True,True +21009951000,3701.0,True,True +21011970100,1964.0,True,True +21011970200,6711.0,True,True +21011970300,3680.0,True,True +21013960100,2417.0,True,True +21013960200,4621.0,True,True +21013960300,2567.0,True,True +21013960400,1916.0,True,True +21013960500,1911.0,True,True +21013960600,3659.0,True,True +21013960700,2747.0,True,True +21013960800,3637.0,True,True +21013961100,3316.0,True,True +21015070100,6423.0,False,False +21015070200,6652.0,False,False +21015070301,5872.0,True,True +21015070305,6036.0,False,False +21015070307,12078.0,False,False +21015070308,12055.0,False,False +21015070309,6282.0,False,False +21015070311,2825.0,True,True +21015070312,3254.0,False,False +21015070313,3121.0,False,False +21015070314,4936.0,False,False +21015070401,9975.0,False,False +21015070402,9476.0,False,False +21015070502,4846.0,False,False +21015070503,6614.0,False,False +21015070504,8307.0,False,False +21015070601,2702.0,False,False +21015070604,3444.0,False,False +21015070605,6999.0,False,False +21015070606,4364.0,False,False +21015070607,4559.0,False,False +21015980100,0.0,False,False +21017030100,4017.0,True,True +21017030200,6221.0,True,False +21017030300,2999.0,False,False +21017030400,2378.0,False,False +21017030500,2377.0,True,True +21017030600,2066.0,True,True +21019030200,1058.0,True,True +21019030300,1936.0,True,True +21019030400,2030.0,True,True +21019030500,4340.0,False,False +21019030600,3805.0,False,False +21019030700,3340.0,True,True +21019030800,4103.0,True,True +21019030900,5301.0,True,True +21019031001,1487.0,False,False +21019031002,6855.0,False,False +21019031100,7330.0,False,False +21019031200,3739.0,False,False +21019031300,2358.0,True,True +21021930100,5765.0,True,False +21021930200,4184.0,False,False +21021930300,3937.0,False,False +21021930400,3970.0,True,True +21021930500,3292.0,False,False +21021930600,4149.0,False,False +21021930700,4675.0,True,False +21023950100,2692.0,False,False +21023950200,1781.0,True,True +21023950300,3832.0,True,True +21025920100,1280.0,True,True +21025920200,2220.0,True,True +21025920300,3236.0,True,True +21025920400,1174.0,True,True +21025920500,1459.0,True,True +21025920600,1857.0,True,True +21025920700,1751.0,True,True +21027960100,4991.0,True,True +21027960200,5248.0,True,True +21027960300,3034.0,False,False +21027960400,1367.0,False,False +21027960501,2044.0,True,True +21027960502,3492.0,False,False +21029020101,3633.0,False,False +21029020102,3743.0,False,False +21029020103,3313.0,False,False +21029020201,6326.0,False,False +21029020202,3999.0,False,False +21029020300,5239.0,False,False +21029020400,7003.0,False,False +21029020500,5457.0,False,False +21029020601,6188.0,False,False +21029020602,1444.0,False,False +21029020701,6993.0,False,False +21029020702,2434.0,False,False +21029020800,5048.0,True,True +21029020900,3226.0,True,True +21029021101,6358.0,False,False +21029021102,4526.0,False,False +21029021200,5241.0,False,False +21029980100,0.0,False,False +21031930100,3120.0,True,True +21031930200,1763.0,True,True +21031930300,4826.0,True,True +21031930400,1904.0,True,True +21031930500,1151.0,False,False +21033920100,2330.0,False,False +21033920200,4644.0,False,False +21033920300,5728.0,True,True +21035010100,4349.0,False,False +21035010200,4182.0,False,False +21035010301,3417.0,False,True +21035010302,6800.0,False,True +21035010400,2508.0,True,True +21035010500,3451.0,True,False +21035010600,7666.0,False,False +21035010700,3173.0,False,False +21035010800,3291.0,True,True +21037050100,1518.0,True,True +21037050400,2268.0,False,False +21037050500,1916.0,True,True +21037050600,1882.0,True,True +21037051101,2227.0,True,True +21037051102,1786.0,False,False +21037051200,1128.0,True,True +21037051300,4439.0,False,False +21037051901,5295.0,False,False +21037051903,5951.0,False,False +21037051904,4609.0,False,False +21037052001,4977.0,False,False +21037052002,2904.0,False,False +21037052100,3611.0,False,False +21037052200,2137.0,False,False +21037052301,4666.0,False,False +21037052302,4934.0,False,False +21037052400,2329.0,False,False +21037052500,5258.0,False,False +21037052800,3331.0,False,False +21037052900,5378.0,False,False +21037053100,6264.0,False,False +21037053200,3509.0,True,True +21037053301,5738.0,False,False +21037053302,4806.0,False,False +21039960100,1633.0,False,False +21039960200,1736.0,True,True +21039960300,1415.0,True,True +21041950100,2807.0,True,True +21041950200,5778.0,True,True +21041950300,2086.0,False,True +21043960100,3616.0,True,True +21043960200,3671.0,True,True +21043960300,3757.0,True,True +21043960400,2005.0,True,True +21043960500,4085.0,True,True +21043960600,5910.0,True,True +21043960700,4115.0,True,True +21045950100,1641.0,True,True +21045950200,1986.0,True,True +21045950300,6214.0,True,True +21045950400,3251.0,True,True +21045950500,2793.0,True,True +21047200100,4020.0,True,True +21047200200,3445.0,True,True +21047200300,3186.0,True,True +21047200400,2435.0,True,True +21047200500,4457.0,False,False +21047200600,4400.0,False,False +21047200700,5805.0,False,False +21047200800,2946.0,True,True +21047200900,5516.0,False,False +21047201000,1898.0,True,True +21047201100,3499.0,False,False +21047201200,2495.0,True,True +21047201301,2895.0,False,False +21047201302,7650.0,True,True +21047201400,3032.0,True,True +21047201501,4813.0,True,True +21047201502,4281.0,True,True +21047201503,4641.0,True,True +21047980100,0.0,False,False +21049020101,5530.0,False,False +21049020103,3686.0,False,False +21049020105,3278.0,False,False +21049020106,3008.0,True,True +21049020201,3010.0,True,True +21049020202,4243.0,True,True +21049020300,2326.0,False,False +21049020400,3386.0,False,False +21049020500,2751.0,False,False +21049020600,4753.0,False,False +21051950100,1979.0,True,True +21051950200,5685.0,True,True +21051950300,5928.0,True,True +21051950400,3246.0,True,True +21051950500,2288.0,True,True +21051950600,1242.0,True,True +21053970100,3432.0,True,True +21053970201,3063.0,True,True +21053970202,3698.0,True,True +21055930100,1909.0,True,True +21055930200,4010.0,True,True +21055930300,1386.0,True,True +21055930400,1695.0,True,True +21057950100,3992.0,True,True +21057950200,2705.0,True,True +21059000100,2940.0,True,True +21059000200,3641.0,True,True +21059000300,1665.0,True,True +21059000400,8064.0,True,True +21059000500,1915.0,True,True +21059000600,5273.0,False,False +21059000700,4313.0,False,False +21059000800,3964.0,True,True +21059000900,5619.0,False,False +21059001000,3078.0,True,True +21059001100,2327.0,False,False +21059001200,3465.0,False,False +21059001300,6327.0,False,False +21059001401,5561.0,False,False +21059001402,5317.0,False,False +21059001501,3342.0,False,False +21059001502,3190.0,False,False +21059001601,4422.0,False,False +21059001602,4609.0,False,False +21059001701,6395.0,True,True +21059001702,3408.0,False,False +21059001703,4869.0,False,False +21059001800,6770.0,False,False +21061920200,4306.0,True,True +21061920300,1300.0,True,True +21061920400,6264.0,True,True +21061980100,268.0,True,True +21063920100,5726.0,True,True +21063920200,1784.0,True,True +21065920100,1265.0,True,True +21065920200,5963.0,True,True +21065920300,5463.0,True,True +21065920400,1533.0,True,True +21067000101,3171.0,True,True +21067000102,1546.0,True,True +21067000200,3839.0,True,True +21067000300,2716.0,True,True +21067000400,1960.0,True,True +21067000500,3424.0,False,False +21067000600,4456.0,False,False +21067000700,2822.0,False,False +21067000801,2937.0,False,True +21067000802,4707.0,False,False +21067000900,5978.0,False,True +21067001000,1623.0,True,True +21067001100,4654.0,True,True +21067001300,2095.0,True,True +21067001400,2276.0,True,True +21067001500,2298.0,True,True +21067001600,2392.0,True,True +21067001700,2504.0,False,False +21067001800,2941.0,False,False +21067001900,4788.0,True,True +21067002001,6240.0,True,True +21067002002,2479.0,True,True +21067002200,1741.0,False,False +21067002302,5692.0,False,False +21067002303,4326.0,False,False +21067002304,2183.0,False,False +21067002400,4216.0,False,False +21067002500,3477.0,False,False +21067002600,5286.0,False,False +21067002700,3966.0,False,False +21067002800,3986.0,False,False +21067002900,4495.0,False,False +21067003000,5943.0,True,True +21067003101,2615.0,True,True +21067003102,2726.0,True,True +21067003201,1659.0,False,False +21067003202,6170.0,True,False +21067003300,2744.0,True,False +21067003402,4946.0,True,False +21067003404,4492.0,True,True +21067003405,5659.0,False,False +21067003406,6519.0,False,False +21067003407,3821.0,False,False +21067003501,3973.0,False,False +21067003503,2415.0,False,False +21067003504,3978.0,True,True +21067003600,4664.0,False,False +21067003701,3162.0,False,False +21067003702,4920.0,False,False +21067003703,5081.0,False,False +21067003704,5578.0,False,False +21067003802,2093.0,False,False +21067003803,3751.0,False,False +21067003804,6143.0,True,False +21067003906,4951.0,False,False +21067003908,5868.0,False,False +21067003909,3093.0,False,False +21067003910,2575.0,True,True +21067003911,3834.0,True,False +21067003912,4467.0,False,False +21067003913,8296.0,False,False +21067003914,2327.0,False,False +21067003915,4293.0,False,False +21067003916,568.0,False,False +21067003917,1538.0,False,False +21067003918,3016.0,False,False +21067004001,6682.0,True,False +21067004003,5513.0,False,False +21067004005,1770.0,False,False +21067004006,1118.0,False,False +21067004007,1826.0,False,False +21067004103,1700.0,False,False +21067004104,4494.0,True,True +21067004105,4777.0,False,False +21067004106,4837.0,False,False +21067004107,5312.0,False,False +21067004204,5723.0,False,False +21067004205,6870.0,False,False +21067004207,3883.0,False,False +21067004208,7116.0,False,False +21067004209,4424.0,False,False +21067004210,5464.0,False,False +21069920100,4028.0,True,True +21069920200,3125.0,False,False +21069920300,2654.0,True,True +21069920400,4706.0,True,True +21071920100,3220.0,True,True +21071920200,1686.0,True,True +21071920300,4218.0,True,True +21071920400,4753.0,True,True +21071920500,3288.0,True,True +21071920600,2746.0,True,True +21071920700,2864.0,True,True +21071920800,4439.0,True,True +21071920900,1774.0,False,True +21071921000,7468.0,True,True +21073070100,6161.0,False,False +21073070401,2757.0,True,True +21073070402,5717.0,False,False +21073070500,2289.0,True,True +21073070600,4340.0,False,True +21073070701,4026.0,False,False +21073070702,5241.0,False,False +21073070800,4648.0,False,False +21073071000,5973.0,False,False +21073071100,6062.0,False,False +21073071200,3315.0,True,True +21075960100,3512.0,True,True +21075960200,2618.0,True,True +21077960101,6218.0,True,True +21077960102,2519.0,False,False +21079970100,6927.0,False,False +21079970200,4093.0,True,True +21079970300,3333.0,True,True +21079970400,3092.0,True,True +21081920100,8798.0,True,False +21081920200,7580.0,True,True +21081920300,6503.0,True,True +21081920400,2070.0,True,True +21083020100,4114.0,True,True +21083020200,4721.0,True,True +21083020300,6078.0,True,True +21083020400,2856.0,False,False +21083020500,3751.0,True,True +21083020600,2568.0,False,False +21083020700,5081.0,True,False +21083020800,5150.0,False,False +21083020900,2929.0,False,False +21085950100,2690.0,True,True +21085950200,3050.0,True,True +21085950300,4484.0,True,True +21085950400,6898.0,True,False +21085950500,2911.0,True,True +21085950600,3973.0,True,True +21085950700,2241.0,True,True +21087930100,2657.0,True,True +21087930200,4464.0,True,True +21087930300,2598.0,True,True +21087930400,1260.0,True,True +21089040100,4517.0,False,False +21089040201,2626.0,False,False +21089040202,4204.0,False,False +21089040300,4169.0,False,False +21089040400,5901.0,False,False +21089040501,3078.0,False,False +21089040502,4638.0,True,True +21089040600,3149.0,True,True +21089040700,3273.0,False,False +21091960100,2377.0,False,False +21091960200,3566.0,False,False +21091960300,2777.0,False,False +21093000100,1049.0,True,True +21093000201,1567.0,False,False +21093000202,3756.0,False,False +21093000300,4702.0,False,False +21093000400,4930.0,True,True +21093000500,2197.0,True,False +21093000600,4158.0,True,False +21093000700,4563.0,True,True +21093000800,4944.0,False,False +21093000901,11733.0,False,False +21093000902,4336.0,False,False +21093001001,6940.0,False,False +21093001002,8704.0,False,False +21093001100,3990.0,False,False +21093001200,5351.0,False,False +21093001300,5070.0,False,False +21093001401,3817.0,False,False +21093001402,4297.0,True,True +21093001500,2436.0,True,True +21093001600,9496.0,False,False +21093001700,9769.0,False,False +21093980100,722.0,True,False +21095970100,1446.0,True,True +21095970200,2966.0,True,True +21095970300,1413.0,True,True +21095970400,1154.0,True,True +21095970500,1040.0,True,True +21095970600,2533.0,True,True +21095970700,3743.0,True,True +21095970800,1077.0,True,True +21095970900,3843.0,True,True +21095971000,4654.0,True,True +21095971300,2830.0,True,True +21097950100,2838.0,True,True +21097950200,2277.0,False,False +21097950300,5555.0,False,False +21097950400,3190.0,True,True +21097950500,4862.0,True,True +21099970100,2130.0,True,True +21099970200,2719.0,True,True +21099970300,4919.0,True,True +21099970400,4860.0,True,True +21099970500,4101.0,True,True +21101020100,1822.0,True,True +21101020200,1873.0,True,True +21101020300,1834.0,True,True +21101020400,2237.0,True,True +21101020500,2364.0,True,False +21101020601,6340.0,False,False +21101020602,5051.0,True,False +21101020701,5793.0,True,True +21101020702,7024.0,False,False +21101020800,4523.0,False,False +21101020900,6968.0,True,True +21103090100,2719.0,False,False +21103090200,3574.0,False,False +21103090301,3222.0,False,False +21103090302,3592.0,True,True +21103090400,2804.0,True,True +21105970100,4510.0,True,True +21107970100,3062.0,False,False +21107970200,3499.0,False,False +21107970300,6848.0,False,False +21107970400,2031.0,True,True +21107970500,4677.0,True,True +21107970600,2851.0,True,True +21107970700,4757.0,False,False +21107970800,2787.0,True,True +21107970900,3678.0,True,True +21107971000,2970.0,True,True +21107971100,3299.0,True,True +21107971300,4872.0,True,True +21109960100,5399.0,True,True +21109960200,2862.0,True,True +21109960300,5108.0,True,True +21111000200,2575.0,True,True +21111000300,2188.0,True,True +21111000400,4213.0,True,True +21111000600,1622.0,True,True +21111000700,2698.0,True,True +21111000800,1959.0,True,True +21111000900,2033.0,True,True +21111001000,2884.0,True,True +21111001100,3102.0,True,True +21111001200,2928.0,True,True +21111001400,2523.0,True,True +21111001500,2877.0,True,True +21111001600,2357.0,True,True +21111001700,2388.0,True,True +21111001800,1282.0,True,True +21111002100,2618.0,True,True +21111002300,2176.0,True,True +21111002400,5243.0,True,True +21111002700,2561.0,True,True +21111002800,2279.0,True,True +21111003000,2958.0,True,True +21111003500,5306.0,False,True +21111003600,4240.0,True,True +21111003700,1667.0,True,True +21111003800,3617.0,True,True +21111003900,3780.0,True,True +21111004000,1686.0,True,True +21111004100,2595.0,True,True +21111004301,4189.0,True,True +21111004302,1290.0,True,True +21111004400,3999.0,True,True +21111004500,3295.0,True,True +21111004600,4071.0,False,True +21111004900,4411.0,True,True +21111005000,1906.0,True,True +21111005100,2798.0,True,True +21111005200,3139.0,True,True +21111005300,3414.0,False,False +21111005600,3761.0,True,True +21111005900,4913.0,True,True +21111006200,2397.0,True,True +21111006300,1675.0,True,True +21111006400,1777.0,False,False +21111006500,3041.0,True,True +21111006600,1825.0,True,True +21111006800,2176.0,False,False +21111006900,2491.0,False,False +21111007000,2221.0,False,False +21111007100,4599.0,False,False +21111007400,2172.0,False,False +21111007501,5500.0,False,False +21111007502,5663.0,False,False +21111007601,2190.0,False,False +21111007602,3555.0,False,False +21111007603,2581.0,False,False +21111007700,3429.0,False,False +21111007800,3184.0,False,False +21111007900,1997.0,False,False +21111008100,3482.0,True,True +21111008200,4197.0,False,False +21111008300,2524.0,False,False +21111008400,2948.0,False,False +21111008500,2058.0,False,False +21111008700,4247.0,False,False +21111008800,2938.0,False,False +21111008900,4951.0,False,False +21111009000,7432.0,True,True +21111009103,1563.0,True,True +21111009105,2383.0,False,False +21111009106,5005.0,True,True +21111009300,4898.0,False,False +21111009400,5982.0,False,False +21111009600,4610.0,False,False +21111009700,2731.0,False,False +21111009800,2611.0,False,False +21111009900,2858.0,False,False +21111010001,4535.0,False,False +21111010004,4973.0,False,False +21111010005,4409.0,False,False +21111010006,3669.0,False,False +21111010007,4385.0,False,False +21111010008,3917.0,False,False +21111010102,4313.0,False,False +21111010103,3992.0,False,False +21111010104,2707.0,False,False +21111010307,7483.0,False,False +21111010309,4736.0,False,False +21111010311,7854.0,False,False +21111010312,3254.0,False,False +21111010313,5147.0,False,False +21111010314,6527.0,False,False +21111010315,3582.0,False,False +21111010316,4827.0,False,False +21111010317,4895.0,False,False +21111010318,5585.0,False,False +21111010319,4295.0,False,False +21111010320,4018.0,False,False +21111010402,6300.0,False,False +21111010403,3957.0,False,False +21111010405,4810.0,False,False +21111010406,6220.0,False,False +21111010500,3811.0,False,False +21111010601,3115.0,False,False +21111010602,3853.0,False,False +21111010701,5191.0,False,False +21111010702,5534.0,False,False +21111010705,6461.0,False,False +21111010706,3143.0,False,False +21111010800,3662.0,False,False +21111010901,4583.0,False,False +21111010902,4289.0,False,False +21111011002,5686.0,True,True +21111011003,6630.0,False,False +21111011004,6733.0,False,False +21111011005,2946.0,False,False +21111011102,7081.0,False,False +21111011106,7386.0,True,True +21111011109,1975.0,False,False +21111011110,6513.0,False,False +21111011111,5407.0,False,False +21111011112,3458.0,False,False +21111011113,2541.0,False,False +21111011114,5373.0,False,False +21111011200,4970.0,True,True +21111011301,2501.0,False,False +21111011302,8138.0,True,True +21111011403,1953.0,False,False +21111011404,3422.0,True,True +21111011405,5825.0,True,True +21111011406,4550.0,False,False +21111011505,7602.0,False,False +21111011506,5247.0,False,False +21111011508,6262.0,False,False +21111011509,4190.0,False,False +21111011513,3920.0,False,False +21111011514,3270.0,False,False +21111011515,5322.0,False,False +21111011516,4282.0,False,False +21111011517,5708.0,False,False +21111011518,2416.0,False,False +21111011519,5560.0,False,False +21111011520,4368.0,False,False +21111011601,7837.0,False,False +21111011603,4733.0,False,False +21111011604,2363.0,False,False +21111011706,3671.0,False,False +21111011707,6731.0,False,False +21111011708,5958.0,False,False +21111011709,5363.0,False,False +21111011710,2902.0,False,False +21111011711,6005.0,False,False +21111011712,4919.0,False,False +21111011713,2555.0,True,True +21111011800,2561.0,True,True +21111011901,930.0,True,True +21111011904,2533.0,True,True +21111011905,7621.0,True,False +21111011906,2788.0,True,False +21111011907,4849.0,False,False +21111012001,3529.0,True,True +21111012002,5716.0,True,True +21111012003,2971.0,False,False +21111012103,3491.0,False,False +21111012104,3812.0,True,True +21111012105,4795.0,False,False +21111012106,8307.0,True,False +21111012107,5343.0,True,True +21111012202,6667.0,True,True +21111012203,6085.0,False,False +21111012204,4533.0,False,False +21111012301,3527.0,False,False +21111012302,5493.0,False,False +21111012406,5149.0,False,False +21111012407,5078.0,False,False +21111012408,2373.0,True,True +21111012409,3163.0,True,True +21111012410,4076.0,False,False +21111012411,6789.0,False,False +21111012501,2753.0,True,True +21111012502,5443.0,True,True +21111012503,4289.0,True,True +21111012601,7022.0,False,False +21111012603,3252.0,True,True +21111012604,5426.0,False,False +21111012701,3448.0,True,True +21111012702,1965.0,True,True +21111012703,6439.0,False,False +21111012801,2934.0,True,True +21111012802,2419.0,True,True +21111013100,2114.0,False,False +21111980100,0.0,False,False +21113060101,8401.0,True,False +21113060102,6928.0,True,True +21113060200,4523.0,False,False +21113060300,2350.0,False,False +21113060400,8522.0,False,False +21113060502,6836.0,False,False +21113060503,4866.0,True,True +21113060504,3769.0,True,True +21113060600,6837.0,False,False +21115960100,3460.0,True,True +21115960200,2385.0,True,True +21115960300,2694.0,True,True +21115960400,7043.0,True,True +21115960500,2793.0,True,True +21115960600,4259.0,True,True +21117060300,1660.0,True,True +21117060700,1676.0,True,True +21117060900,2553.0,True,True +21117061000,2280.0,True,True +21117061100,1430.0,False,False +21117061200,2494.0,True,True +21117061300,2380.0,False,False +21117061400,3403.0,True,True +21117061600,1150.0,False,False +21117063603,9334.0,False,False +21117063604,5918.0,False,False +21117063605,12101.0,False,False +21117063606,4641.0,False,False +21117063701,3364.0,False,False +21117063702,4406.0,False,False +21117063800,2570.0,False,False +21117064000,6032.0,False,False +21117064100,5858.0,False,False +21117064200,1534.0,False,False +21117064300,2983.0,False,False +21117064400,3539.0,True,True +21117064500,3383.0,False,False +21117064600,5332.0,False,False +21117064700,5277.0,False,False +21117064800,3359.0,False,False +21117064900,2987.0,False,False +21117065000,3809.0,True,True +21117065100,3443.0,True,True +21117065200,4287.0,False,False +21117065300,10808.0,False,False +21117065400,1667.0,False,False +21117065501,4627.0,False,False +21117065502,3991.0,False,False +21117065600,6734.0,True,True +21117065700,1961.0,False,False +21117065800,3204.0,False,False +21117065900,1498.0,False,False +21117066800,8238.0,False,False +21117066900,4475.0,True,True +21117067000,2986.0,True,True +21117067100,2296.0,True,True +21119960100,2525.0,True,True +21119960200,3064.0,True,True +21119960300,4018.0,True,True +21119960400,2061.0,True,True +21119960500,3592.0,True,True +21121930100,1731.0,True,True +21121930200,3321.0,True,True +21121930300,3048.0,True,True +21121930400,7346.0,True,True +21121930500,5988.0,False,True +21121930601,5792.0,True,True +21121930602,2227.0,True,True +21121930700,1912.0,True,True +21123960101,1811.0,True,True +21123960102,6075.0,True,True +21123960200,2530.0,True,False +21123960300,3788.0,True,False +21125970100,3193.0,True,True +21125970200,6510.0,True,True +21125970300,4422.0,True,True +21125970400,4329.0,True,True +21125970500,4681.0,True,True +21125970600,3418.0,True,True +21125970700,5729.0,False,False +21125970800,5218.0,False,False +21125970900,3592.0,True,True +21125971001,3269.0,True,False +21125971002,6188.0,True,True +21125971101,2538.0,False,False +21125971102,7270.0,True,False +21127930100,6942.0,True,True +21127930200,1717.0,True,True +21127930300,1416.0,True,True +21127930400,2843.0,True,True +21127930500,2753.0,True,True +21129950100,3950.0,True,True +21129950200,1557.0,True,True +21129950300,1374.0,True,True +21131920100,5026.0,True,True +21131920200,2611.0,True,True +21131920300,2646.0,True,True +21133950100,2828.0,True,True +21133950200,4294.0,True,True +21133950300,1388.0,True,True +21133950401,3074.0,True,True +21133950402,5052.0,True,True +21133950500,982.0,True,True +21133950600,4677.0,True,True +21135930100,4218.0,True,True +21135930200,3616.0,True,True +21135930300,3441.0,True,True +21135930400,2142.0,True,True +21137920101,2391.0,True,True +21137920102,4937.0,True,True +21137920103,2284.0,True,True +21137920200,5166.0,True,True +21137920300,5847.0,True,True +21137920400,3851.0,True,True +21139040100,3028.0,True,True +21139040200,6207.0,True,True +21141960100,5605.0,True,True +21141960200,3428.0,True,True +21141960300,5777.0,True,True +21141960400,4763.0,True,True +21141960500,4338.0,False,False +21141960600,2991.0,False,False +21143960100,6582.0,True,True +21143960200,1689.0,True,True +21143980100,0.0,False,False +21145030100,1211.0,True,True +21145030200,2246.0,True,True +21145030300,1527.0,True,True +21145030400,1558.0,True,True +21145030500,1407.0,True,True +21145030600,3385.0,True,True +21145030700,4095.0,True,True +21145030800,5207.0,False,False +21145030900,3127.0,False,False +21145031000,4181.0,True,True +21145031100,5519.0,False,False +21145031200,3881.0,False,False +21145031301,5390.0,True,False +21145031302,5842.0,False,False +21145031400,6960.0,False,False +21145031500,6416.0,False,False +21145031600,3316.0,False,False +21147960100,2617.0,True,True +21147960200,1066.0,True,True +21147960300,6572.0,True,True +21147960400,7210.0,True,True +21149970100,2834.0,True,True +21149970200,3571.0,False,False +21149970500,2878.0,False,False +21151010101,2362.0,False,False +21151010102,7240.0,False,False +21151010200,3879.0,True,False +21151010300,9586.0,True,False +21151010400,2076.0,True,True +21151010500,3795.0,False,False +21151010600,6079.0,False,False +21151010701,4798.0,False,False +21151010702,3926.0,False,False +21151010800,4570.0,False,False +21151010901,3337.0,False,False +21151010902,3622.0,False,False +21151010903,4150.0,False,False +21151011000,5992.0,False,False +21151011100,6654.0,False,False +21151011200,6043.0,True,False +21151011301,2446.0,True,False +21151011302,5092.0,False,False +21151011400,5155.0,False,False +21153970100,1881.0,True,True +21153970200,6154.0,True,True +21153970300,2817.0,True,True +21153970400,1639.0,True,True +21155970200,4879.0,True,True +21155970300,2106.0,False,False +21155970400,2797.0,False,False +21155970500,1716.0,True,False +21155970700,5964.0,True,True +21155970800,1782.0,True,True +21157950100,5210.0,False,False +21157950200,4997.0,False,False +21157950300,4351.0,False,False +21157950400,5295.0,False,False +21157950500,5066.0,False,False +21157950600,6273.0,False,False +21159950100,3556.0,True,True +21159950200,7041.0,True,True +21159950300,1051.0,True,True +21161960100,3594.0,True,True +21161960200,3169.0,True,True +21161960300,4255.0,True,True +21161960400,4191.0,False,False +21161960500,1903.0,False,False +21163970100,1040.0,True,True +21163970200,2650.0,False,False +21163970301,3010.0,True,True +21163970302,5538.0,False,False +21163970401,5370.0,False,False +21163970402,7547.0,False,False +21163970500,3023.0,False,False +21163980100,4.0,True,False +21165960100,3887.0,True,True +21165960200,2556.0,True,True +21167960100,4387.0,False,False +21167960200,5678.0,True,True +21167960300,3495.0,False,False +21167960400,4697.0,True,True +21167960500,3335.0,False,False +21169960100,2400.0,True,True +21169960200,3239.0,True,True +21169960300,4397.0,True,True +21171930100,1786.0,False,True +21171930200,1912.0,True,True +21171930300,2407.0,True,True +21171930400,4522.0,True,True +21173920100,3474.0,False,False +21173920200,7482.0,True,False +21173920301,2963.0,False,False +21173920302,6175.0,True,False +21173920400,4837.0,True,True +21173920500,2953.0,True,True +21175950100,2614.0,True,True +21175950200,1779.0,True,True +21175950300,2057.0,True,True +21175950400,4776.0,True,True +21175950500,2062.0,True,True +21177960100,935.0,True,True +21177960200,7449.0,True,True +21177960300,3811.0,False,False +21177960400,5177.0,True,True +21177960500,3191.0,True,True +21177960600,3016.0,True,True +21177960700,3630.0,True,True +21177960800,2038.0,False,False +21177960900,1704.0,False,False +21179930100,3586.0,True,True +21179930200,7645.0,False,False +21179930301,5250.0,False,False +21179930302,8970.0,False,False +21179930303,3523.0,True,False +21179930400,3541.0,False,False +21179930500,6530.0,False,False +21179930600,3293.0,False,False +21179930700,3312.0,False,False +21181960100,1827.0,True,True +21181960200,5326.0,True,True +21183920100,3219.0,True,True +21183920200,3563.0,False,False +21183920300,4226.0,True,True +21183920400,1696.0,True,True +21183920500,8270.0,True,True +21183920600,1720.0,True,True +21183920700,1377.0,True,True +21185030100,2475.0,False,False +21185030200,4426.0,False,False +21185030301,3644.0,False,False +21185030302,4578.0,False,False +21185030401,7100.0,False,False +21185030402,3099.0,False,False +21185030501,4222.0,False,False +21185030502,5323.0,False,False +21185030601,6418.0,False,False +21185030602,5388.0,False,False +21185030701,2761.0,False,False +21185030702,6891.0,False,False +21185030801,4414.0,False,False +21185030802,5228.0,False,False +21187970100,3367.0,True,True +21187970200,4602.0,True,True +21187970300,2827.0,True,True +21189930100,2597.0,True,True +21189930200,1845.0,True,True +21191930100,7058.0,False,False +21191930200,2756.0,False,False +21191930300,4758.0,True,True +21193970300,2844.0,True,True +21193970400,3538.0,True,True +21193970500,5543.0,True,True +21193970600,4779.0,True,True +21193970700,1687.0,True,True +21193970800,2930.0,True,True +21193970900,1490.0,True,True +21193971000,3813.0,True,True +21195930100,3145.0,True,True +21195930200,6027.0,True,True +21195930300,3058.0,False,True +21195930400,2991.0,False,False +21195930500,3053.0,False,False +21195930600,3803.0,True,True +21195930700,2102.0,True,True +21195930800,2831.0,True,True +21195930900,1829.0,True,True +21195931000,2251.0,True,True +21195931100,3856.0,True,True +21195931200,3675.0,True,True +21195931300,2608.0,True,True +21195931400,2561.0,True,True +21195931500,3311.0,True,True +21195931600,1595.0,True,True +21195931700,4306.0,True,True +21195931800,3260.0,True,True +21195931900,3235.0,True,True +21197970100,6583.0,True,True +21197970200,5721.0,True,True +21199930100,5703.0,True,True +21199930200,5348.0,True,True +21199930300,4989.0,True,True +21199930401,3276.0,True,True +21199930402,6006.0,False,False +21199930501,7105.0,False,False +21199930502,6727.0,True,True +21199930600,3845.0,True,True +21199930700,5018.0,True,True +21199930800,5997.0,True,True +21199930900,2670.0,True,True +21199931000,1636.0,True,True +21199931101,2506.0,True,True +21199931102,3524.0,True,True +21201970100,2123.0,True,True +21203950100,3005.0,True,False +21203950200,7124.0,True,True +21203950300,3945.0,True,True +21203950400,2746.0,True,True +21205950100,5368.0,True,False +21205950200,10042.0,False,False +21205950300,5224.0,True,True +21205950400,3873.0,True,True +21207960101,3749.0,True,True +21207960102,4583.0,True,True +21207960200,1669.0,True,True +21207960300,4276.0,True,True +21207960400,3501.0,True,True +21209040100,4121.0,True,True +21209040203,4488.0,False,False +21209040204,3155.0,False,False +21209040205,4761.0,True,False +21209040206,4886.0,False,False +21209040301,3317.0,False,False +21209040302,1968.0,False,False +21209040303,2889.0,False,False +21209040400,3240.0,False,False +21209040501,2881.0,False,False +21209040502,4397.0,False,False +21209040601,3795.0,False,False +21209040602,4832.0,False,False +21209040603,5937.0,False,False +21211040101,3522.0,False,False +21211040102,5047.0,False,False +21211040200,8043.0,False,False +21211040301,5099.0,True,True +21211040302,3586.0,True,True +21211040401,8002.0,False,False +21211040402,4213.0,False,False +21211040501,2647.0,False,False +21211040502,7166.0,False,False +21213970100,2164.0,False,False +21213970200,4663.0,False,False +21213970300,4741.0,True,True +21213970400,6615.0,True,True +21215080101,4420.0,False,False +21215080102,6069.0,False,False +21215080103,2157.0,False,False +21215080200,6034.0,False,False +21217920100,2927.0,False,False +21217920200,3222.0,False,False +21217920300,4279.0,True,True +21217920400,8167.0,False,False +21217920500,6976.0,True,True +21219950100,2686.0,False,False +21219950200,5753.0,True,True +21219950300,2384.0,True,True +21219950400,1493.0,False,False +21221970100,2764.0,False,True +21221970200,7032.0,True,True +21221970300,4630.0,False,False +21221980100,23.0,True,True +21221980200,0.0,False,False +21223100100,3357.0,False,False +21223100200,5201.0,True,True +21225950100,1563.0,True,True +21225950201,5800.0,True,True +21225950202,2850.0,True,True +21225950300,4425.0,False,False +21227010100,2670.0,True,True +21227010200,3632.0,True,True +21227010300,4260.0,True,True +21227010400,5903.0,False,False +21227010500,2492.0,False,True +21227010600,4153.0,False,False +21227010701,5549.0,False,False +21227010702,6247.0,False,False +21227010801,2970.0,False,False +21227010802,7942.0,False,False +21227010803,6700.0,True,True +21227010900,4494.0,False,False +21227011001,3976.0,True,True +21227011002,7246.0,True,False +21227011100,6423.0,False,False +21227011200,5517.0,True,True +21227011300,4898.0,True,False +21227011401,7196.0,False,False +21227011402,3026.0,False,False +21227011500,7221.0,False,False +21227011600,5471.0,False,False +21227011700,8556.0,True,True +21227011800,5869.0,False,False +21227011900,6241.0,False,False +21229930100,3099.0,False,False +21229930200,6552.0,False,False +21229930300,2372.0,False,False +21231920100,4407.0,True,True +21231920200,5251.0,True,True +21231920300,4156.0,True,True +21231920400,3658.0,True,True +21231920700,3074.0,True,True +21233960100,4240.0,True,True +21233960200,2835.0,True,False +21233960300,2334.0,True,True +21233960400,3659.0,True,True +21235920100,2867.0,True,True +21235920200,2639.0,True,True +21235920300,7116.0,True,False +21235920400,6096.0,True,False +21235920500,5936.0,True,True +21235920600,5402.0,False,False +21235920700,4302.0,True,True +21235920800,1773.0,True,True +21237930100,2963.0,True,True +21237930200,4244.0,True,True +21239050103,3558.0,True,False +21239050104,3828.0,False,False +21239050105,3255.0,False,False +21239050106,3331.0,False,False +21239050107,4299.0,False,False +21239050200,3662.0,False,False +21239050300,1888.0,False,False +21239050400,2497.0,False,False +22001960100,5804.0,True,True +22001960200,5514.0,False,False +22001960300,3501.0,True,True +22001960400,7256.0,False,False +22001960500,7624.0,False,False +22001960600,6030.0,True,True +22001960700,4276.0,True,True +22001960800,5102.0,True,True +22001960900,4993.0,True,True +22001961000,5139.0,True,True +22001961100,3881.0,True,True +22001961200,3337.0,True,True +22003950100,5122.0,True,True +22003950200,5344.0,False,True +22003950300,2870.0,True,True +22003950400,3938.0,True,True +22003950500,8344.0,False,False +22005030101,8917.0,False,False +22005030102,4940.0,False,False +22005030103,6116.0,False,False +22005030203,12002.0,False,False +22005030204,12117.0,False,False +22005030205,11688.0,False,False +22005030206,11437.0,False,False +22005030300,17127.0,False,False +22005030401,4612.0,False,False +22005030402,8618.0,False,False +22005030500,8499.0,False,False +22005030600,5619.0,True,True +22005030900,4827.0,True,True +22005031000,6595.0,True,True +22007050100,3914.0,True,True +22007050200,4212.0,False,True +22007050300,3925.0,True,True +22007050400,3267.0,True,True +22007050500,3124.0,True,True +22007050600,4036.0,True,True +22009030100,2383.0,True,True +22009030200,2972.0,True,True +22009030300,3321.0,True,True +22009030400,7337.0,True,True +22009030500,6885.0,True,True +22009030600,4925.0,True,True +22009030700,7721.0,True,True +22009030800,2578.0,False,True +22009030900,2547.0,True,True +22011960100,6137.0,True,True +22011960200,5711.0,False,False +22011960300,4690.0,True,True +22011960400,3427.0,True,True +22011960500,5234.0,False,False +22011960600,3383.0,True,True +22011960700,8461.0,False,False +22013970100,3882.0,True,True +22013970200,1388.0,True,True +22013970300,3080.0,True,True +22013970400,2709.0,True,True +22013970500,2505.0,True,True +22015010400,1184.0,True,True +22015010500,4737.0,True,True +22015010601,7345.0,True,True +22015010602,3358.0,True,True +22015010701,4216.0,True,True +22015010702,4445.0,True,True +22015010801,3156.0,True,True +22015010804,8500.0,False,False +22015010805,3429.0,False,False +22015010806,4129.0,False,False +22015010900,4623.0,True,False +22015011001,8998.0,False,False +22015011002,4030.0,False,False +22015011103,7309.0,False,False +22015011105,7193.0,True,False +22015011106,8684.0,True,True +22015011107,2059.0,True,True +22015011108,16307.0,False,False +22015011109,8439.0,False,False +22015011110,8176.0,False,False +22015011200,4674.0,False,False +22015011300,1508.0,True,True +22017020500,3190.0,True,True +22017020600,783.0,True,True +22017020700,644.0,True,True +22017021000,1817.0,True,True +22017021100,2321.0,True,True +22017021200,3661.0,True,True +22017021300,2243.0,True,True +22017021400,2528.0,True,True +22017021500,2181.0,False,False +22017021600,4024.0,False,False +22017021700,1675.0,True,True +22017021800,1256.0,True,True +22017021900,1045.0,True,True +22017022000,1740.0,True,True +22017022100,5551.0,True,True +22017022200,4727.0,True,True +22017022300,2389.0,True,True +22017022400,3045.0,True,True +22017022500,4535.0,True,True +22017022600,2871.0,False,False +22017022700,2269.0,False,False +22017022800,3925.0,False,False +22017022900,4657.0,False,False +22017023000,4317.0,False,False +22017023100,1410.0,False,False +22017023200,1649.0,True,True +22017023300,2081.0,True,True +22017023400,6331.0,True,True +22017023500,2970.0,True,True +22017023600,2871.0,True,True +22017023700,6244.0,True,True +22017023800,5420.0,True,True +22017023901,6647.0,False,False +22017023903,4200.0,False,False +22017023904,3113.0,False,False +22017023905,4408.0,False,False +22017024000,13296.0,False,False +22017024102,3702.0,False,False +22017024104,7595.0,True,True +22017024106,7861.0,True,False +22017024107,4918.0,True,False +22017024108,6542.0,False,False +22017024109,4350.0,True,True +22017024201,4445.0,True,False +22017024202,7799.0,False,False +22017024203,5104.0,True,True +22017024301,6542.0,False,False +22017024303,4601.0,True,True +22017024304,4952.0,False,False +22017024400,4997.0,False,False +22017024503,5330.0,True,True +22017024504,6147.0,False,False +22017024601,5797.0,True,True +22017024602,5093.0,True,True +22017024700,1843.0,True,True +22017024800,922.0,True,True +22017024900,3005.0,True,True +22017025000,3595.0,True,True +22017025100,1564.0,True,True +22017025200,864.0,True,True +22017025300,1456.0,True,True +22017025405,4706.0,False,False +22017025406,4067.0,False,False +22017980000,0.0,False,False +22019000100,1830.0,True,True +22019000200,1369.0,True,True +22019000300,1940.0,True,True +22019000400,1040.0,True,True +22019000500,3353.0,False,False +22019000600,6751.0,True,True +22019000700,4592.0,True,True +22019000800,3684.0,True,True +22019000900,3935.0,True,True +22019001000,3802.0,False,False +22019001100,5582.0,False,False +22019001201,4835.0,False,False +22019001202,3390.0,True,True +22019001300,6617.0,False,False +22019001400,6016.0,True,True +22019001500,1694.0,True,True +22019001600,4729.0,True,True +22019001700,11018.0,True,True +22019001801,10771.0,False,False +22019001901,3974.0,False,False +22019001903,7122.0,False,False +22019001904,6230.0,False,False +22019002000,10321.0,False,False +22019002100,3254.0,True,True +22019002201,8950.0,False,False +22019002203,6267.0,False,False +22019002204,4788.0,False,False +22019002300,2974.0,False,False +22019002400,6198.0,True,True +22019002500,3478.0,False,False +22019002600,4717.0,True,True +22019002700,7981.0,False,False +22019002800,4169.0,True,True +22019002900,2158.0,False,False +22019003000,4671.0,False,False +22019003101,4685.0,False,False +22019003102,2339.0,False,False +22019003200,1840.0,False,False +22019003300,5396.0,True,True +22019003400,5751.0,False,False +22019003500,3346.0,True,True +22019003600,4062.0,False,False +22019980000,0.0,False,False +22019980100,0.0,False,False +22021000100,2477.0,True,True +22021000200,3086.0,True,True +22021000300,4429.0,True,True +22023970100,5203.0,False,False +22023970201,1727.0,True,True +22023990000,0.0,False,False +22025000100,4766.0,True,False +22025000200,1940.0,True,True +22025000300,3060.0,False,False +22027950100,3231.0,True,True +22027950200,4305.0,True,True +22027950300,2762.0,True,True +22027950400,3189.0,True,True +22027950500,2498.0,True,True +22029000100,2131.0,False,False +22029000200,5129.0,True,True +22029000300,3841.0,True,True +22029000400,4015.0,True,True +22029000500,4662.0,True,True +22031950100,10496.0,False,False +22031950200,4086.0,False,False +22031950300,2790.0,True,True +22031950400,2903.0,True,True +22031950500,1917.0,True,True +22031950600,2681.0,True,True +22031950700,2416.0,False,False +22033000100,1661.0,True,True +22033000200,6717.0,True,True +22033000300,1615.0,True,True +22033000400,2623.0,True,True +22033000500,4009.0,True,True +22033000601,2657.0,True,True +22033000602,3942.0,True,True +22033000701,2325.0,True,True +22033000702,3233.0,True,True +22033000900,3876.0,True,True +22033001000,3346.0,True,True +22033001102,3400.0,True,True +22033001103,3075.0,True,True +22033001104,4141.0,True,True +22033001600,3281.0,False,False +22033001700,5529.0,False,False +22033001800,2257.0,True,False +22033001900,2830.0,False,False +22033002000,3497.0,False,False +22033002200,1226.0,True,True +22033002300,2444.0,False,False +22033002400,2603.0,True,True +22033002500,2751.0,False,True +22033002601,4244.0,False,False +22033002602,4397.0,False,False +22033002700,1605.0,True,True +22033002801,2211.0,False,False +22033002802,3851.0,False,False +22033003000,4191.0,False,True +22033003101,4381.0,True,True +22033003103,1123.0,True,True +22033003201,4699.0,True,True +22033003202,3692.0,False,False +22033003300,4634.0,True,True +22033003400,7987.0,True,True +22033003501,2758.0,True,True +22033003504,5916.0,True,True +22033003505,3913.0,True,True +22033003506,6967.0,False,False +22033003507,4826.0,False,False +22033003601,3292.0,False,False +22033003603,2293.0,True,True +22033003604,5716.0,True,True +22033003701,6538.0,False,False +22033003702,3696.0,False,False +22033003703,6117.0,False,False +22033003801,7465.0,False,False +22033003802,5558.0,False,False +22033003804,4447.0,False,False +22033003805,6790.0,False,False +22033003904,6145.0,True,True +22033003906,8989.0,False,False +22033003907,5919.0,False,False +22033003908,3833.0,False,False +22033003909,5231.0,True,True +22033003910,3040.0,True,True +22033004005,6064.0,False,False +22033004006,8326.0,False,False +22033004009,9306.0,False,False +22033004010,4744.0,False,False +22033004011,7048.0,False,False +22033004013,3028.0,False,False +22033004014,10563.0,False,False +22033004015,7564.0,False,False +22033004016,10218.0,False,False +22033004201,6298.0,True,True +22033004203,2981.0,True,True +22033004204,3965.0,True,True +22033004205,5958.0,False,False +22033004301,5984.0,False,False +22033004302,6070.0,False,False +22033004401,4898.0,False,False +22033004402,7029.0,False,False +22033004403,6277.0,False,False +22033004503,5852.0,False,False +22033004504,6878.0,False,False +22033004505,7144.0,False,False +22033004507,6032.0,False,False +22033004508,8630.0,False,False +22033004509,7079.0,False,False +22033004510,7875.0,False,False +22033004602,5601.0,False,False +22033004603,5022.0,False,False +22033004604,13031.0,False,False +22033004700,5502.0,True,True +22033004800,3777.0,False,False +22033004900,4659.0,False,False +22033005000,3181.0,False,False +22033005100,2776.0,True,True +22033005200,1883.0,True,True +22033005300,3018.0,True,True +22033980000,0.0,False,False +22035000100,1515.0,True,True +22035000200,3665.0,True,True +22035000300,1916.0,True,True +22037951300,2438.0,True,True +22037951400,3651.0,True,True +22037951501,1135.0,False,False +22037951502,7698.0,True,True +22037951600,4449.0,False,False +22039950100,6520.0,True,True +22039950200,1719.0,True,True +22039950300,5310.0,True,True +22039950400,6059.0,True,True +22039950500,3093.0,True,True +22039950600,3478.0,True,True +22039950700,3677.0,True,True +22039950800,3733.0,True,True +22041950100,3774.0,True,True +22041950200,4588.0,True,True +22041950300,5266.0,True,True +22041950400,2832.0,True,True +22041950500,1555.0,True,True +22041950600,2223.0,True,True +22043020100,2646.0,True,True +22043020200,2651.0,True,True +22043020300,3372.0,True,True +22043020401,5615.0,False,False +22043020402,8056.0,False,False +22045030100,6497.0,True,True +22045030200,6312.0,False,False +22045030301,3996.0,True,True +22045030302,5853.0,False,False +22045030400,7165.0,True,True +22045030500,4513.0,True,False +22045030600,6464.0,False,False +22045030700,3922.0,False,False +22045030800,1883.0,True,True +22045030900,3111.0,True,True +22045031000,3047.0,True,True +22045031100,5193.0,True,True +22045031200,3247.0,True,True +22045031300,7010.0,False,True +22045031600,3674.0,True,True +22045990000,0.0,False,False +22047952600,2671.0,True,True +22047952700,5812.0,True,True +22047952900,5451.0,False,True +22047953000,2520.0,True,True +22047953101,5893.0,True,True +22047953102,2196.0,True,True +22047953200,8279.0,True,True +22049970100,2471.0,True,True +22049970200,3791.0,True,False +22049970300,4503.0,False,False +22049970400,3448.0,True,True +22049970500,1666.0,True,True +22051020101,3034.0,False,False +22051020102,3169.0,False,False +22051020201,2525.0,False,False +22051020202,3517.0,True,True +22051020203,7703.0,False,False +22051020301,3376.0,False,False +22051020302,5540.0,False,False +22051020303,3551.0,False,False +22051020400,3074.0,False,False +22051020502,6395.0,True,True +22051020505,1900.0,True,True +22051020506,4545.0,False,False +22051020507,4611.0,False,False +22051020508,7875.0,False,False +22051020511,3871.0,False,False +22051020512,2261.0,False,False +22051020513,5008.0,True,True +22051020514,3618.0,False,False +22051020515,3012.0,False,False +22051020516,4400.0,True,True +22051020517,3820.0,False,False +22051020600,5274.0,True,True +22051020700,1141.0,True,True +22051021000,2522.0,True,True +22051021100,2084.0,False,False +22051021200,2730.0,True,True +22051021300,2995.0,False,False +22051021400,2233.0,False,False +22051021500,3100.0,True,True +22051021600,6045.0,True,True +22051021700,5606.0,False,False +22051021801,2261.0,False,False +22051021803,5761.0,True,True +22051021804,2207.0,True,True +22051021900,1771.0,False,False +22051022001,5137.0,True,True +22051022002,2505.0,False,False +22051022101,1390.0,False,False +22051022102,2364.0,False,False +22051022200,2552.0,False,False +22051022301,2740.0,False,False +22051022302,1633.0,False,False +22051022303,2895.0,True,True +22051022400,3231.0,False,False +22051022500,3104.0,False,False +22051022600,2925.0,False,False +22051022700,2997.0,False,False +22051022800,3080.0,False,False +22051022900,2580.0,False,False +22051023001,1892.0,False,False +22051023002,4726.0,False,False +22051023003,2779.0,False,False +22051023100,2486.0,True,True +22051023200,2752.0,False,False +22051023300,1784.0,False,False +22051023400,3443.0,False,False +22051023500,4365.0,False,False +22051023600,4544.0,False,False +22051023700,1786.0,True,True +22051023800,3728.0,False,False +22051023901,2498.0,False,False +22051023902,2043.0,False,False +22051023903,2561.0,False,False +22051023904,2507.0,False,False +22051024001,2691.0,False,False +22051024002,2933.0,False,False +22051024100,3680.0,False,False +22051024201,2205.0,False,False +22051024202,3965.0,False,False +22051024300,2804.0,False,False +22051024400,2978.0,False,False +22051024500,1444.0,False,False +22051024600,1137.0,True,True +22051024700,1552.0,True,True +22051024800,3489.0,False,False +22051024900,1602.0,True,True +22051025001,8056.0,True,True +22051025002,3296.0,False,True +22051025003,4043.0,True,True +22051025102,3726.0,False,False +22051025103,3429.0,False,True +22051025104,4106.0,False,True +22051025201,2772.0,True,True +22051025202,6743.0,True,True +22051025300,2125.0,False,False +22051025400,4442.0,True,True +22051025500,2797.0,True,True +22051025600,1703.0,False,False +22051025700,1141.0,True,True +22051025800,1876.0,True,True +22051025900,3863.0,True,True +22051026000,1855.0,True,True +22051026100,4256.0,True,True +22051026200,1244.0,True,True +22051026300,2296.0,True,True +22051026400,1787.0,False,False +22051026500,2157.0,False,False +22051026600,1883.0,False,False +22051026700,1791.0,True,True +22051026800,2724.0,True,True +22051026900,3293.0,True,True +22051027000,5582.0,True,True +22051027100,3261.0,True,True +22051027200,4459.0,True,True +22051027501,6766.0,False,True +22051027502,3265.0,True,True +22051027601,5397.0,True,True +22051027602,3172.0,True,True +22051027701,5642.0,True,True +22051027703,3489.0,True,True +22051027803,3908.0,True,True +22051027804,8224.0,False,False +22051027805,9293.0,False,False +22051027806,5652.0,False,False +22051027807,9488.0,False,False +22051027809,8074.0,False,False +22051027810,3814.0,False,False +22051027811,2894.0,True,True +22051027812,3465.0,True,True +22051027901,2755.0,False,False +22051027902,1819.0,True,True +22051028000,5127.0,False,False +22051028100,1710.0,True,True +22051028200,4148.0,True,True +22051980000,0.0,False,False +22051990000,0.0,False,False +22051990100,0.0,False,False +22053000100,5989.0,False,False +22053000200,4451.0,False,False +22053000300,4871.0,True,True +22053000400,6241.0,True,True +22053000500,4761.0,True,True +22053000600,2968.0,True,True +22053000700,2160.0,True,True +22055000100,3234.0,True,True +22055000200,2557.0,True,True +22055000500,2759.0,False,False +22055000602,4370.0,False,False +22055000603,2390.0,True,True +22055000604,6452.0,False,False +22055000700,3308.0,True,True +22055000800,3278.0,True,True +22055000900,1960.0,True,True +22055001001,5404.0,True,True +22055001002,3933.0,True,True +22055001003,3975.0,False,False +22055001100,6316.0,True,True +22055001200,8013.0,True,True +22055001300,4937.0,True,True +22055001401,9839.0,False,False +22055001402,8805.0,False,False +22055001403,6500.0,False,False +22055001404,8923.0,False,False +22055001405,9335.0,False,False +22055001406,5107.0,False,False +22055001407,6279.0,False,False +22055001409,10088.0,False,False +22055001410,17691.0,False,False +22055001411,2308.0,False,False +22055001500,5541.0,False,False +22055001600,3020.0,False,False +22055001700,7678.0,False,False +22055001801,2812.0,False,False +22055001802,3968.0,False,False +22055001901,7285.0,False,False +22055001902,6643.0,True,True +22055001903,7109.0,True,True +22055001904,4470.0,False,False +22055001905,6358.0,True,True +22055002001,5259.0,True,True +22055002002,6774.0,True,True +22055002101,5967.0,False,False +22055002102,4522.0,False,False +22055002103,5338.0,True,True +22055002104,5510.0,False,False +22055002200,5958.0,False,False +22055980000,0.0,False,False +22057020100,2621.0,True,True +22057020202,4005.0,False,False +22057020400,2088.0,True,True +22057020500,7189.0,False,False +22057020600,2128.0,False,False +22057020702,4272.0,False,False +22057020703,5192.0,False,False +22057020704,5810.0,False,False +22057020800,3685.0,False,False +22057020900,2038.0,True,True +22057021000,3091.0,False,False +22057021100,6673.0,True,True +22057021200,4377.0,True,True +22057021300,2226.0,True,True +22057021400,4214.0,False,False +22057021500,5150.0,True,True +22057021601,7210.0,True,True +22057021602,3752.0,False,False +22057021700,4155.0,True,True +22057021800,5021.0,True,True +22057021901,6189.0,False,False +22057021902,4729.0,True,True +22057022000,2293.0,False,False +22057990000,0.0,False,False +22059970100,4876.0,True,True +22059970200,6010.0,True,True +22059970300,4050.0,True,True +22061960100,3899.0,False,False +22061960200,4296.0,True,True +22061960300,5070.0,False,False +22061960400,5227.0,False,False +22061960500,4147.0,False,False +22061960600,4741.0,True,True +22061960700,6627.0,False,False +22061960800,3972.0,True,True +22061960900,2785.0,True,True +22061961000,6482.0,False,False +22063040100,8901.0,True,True +22063040201,7603.0,False,False +22063040202,4589.0,False,False +22063040301,9698.0,False,False +22063040303,10601.0,False,False +22063040304,5768.0,False,False +22063040401,7404.0,False,False +22063040402,8557.0,False,False +22063040500,11405.0,False,False +22063040600,9054.0,False,False +22063040700,3703.0,False,False +22063040802,6455.0,False,False +22063040804,18933.0,False,False +22063040805,5789.0,False,False +22063040806,7658.0,False,False +22063040901,7128.0,True,True +22063040902,5682.0,True,True +22065960100,1813.0,True,True +22065960200,3171.0,True,True +22065960300,2444.0,True,True +22065960400,1566.0,True,True +22065960500,2312.0,True,True +22067950100,1399.0,True,True +22067950200,4993.0,False,False +22067950300,2407.0,False,False +22067950400,3359.0,True,True +22067950500,3821.0,True,True +22067950600,2729.0,True,True +22067950700,3101.0,True,True +22067950800,3801.0,True,True +22069000100,1755.0,True,True +22069000200,3980.0,True,True +22069000300,4514.0,True,True +22069000400,3305.0,True,True +22069000500,4090.0,False,False +22069000600,8059.0,False,False +22069000700,3794.0,True,True +22069000800,4071.0,True,True +22069000900,5201.0,True,True +22071000100,2584.0,False,False +22071000200,1202.0,True,True +22071000300,1361.0,True,True +22071000400,1937.0,True,True +22071000601,953.0,True,True +22071000602,2364.0,True,True +22071000603,1072.0,True,True +22071000604,3892.0,True,True +22071000605,2242.0,True,True +22071000606,4326.0,False,False +22071000607,4681.0,False,False +22071000611,4641.0,True,True +22071000612,2043.0,False,False +22071000613,5379.0,True,True +22071000615,4248.0,True,True +22071000616,4261.0,False,False +22071000617,5258.0,True,True +22071000618,4894.0,False,False +22071000701,832.0,True,True +22071000702,1808.0,True,True +22071000800,1593.0,True,True +22071000901,953.0,True,True +22071000902,493.0,True,True +22071000903,750.0,True,True +22071000904,1046.0,True,True +22071001100,1814.0,True,True +22071001200,1727.0,True,True +22071001301,2040.0,True,True +22071001302,1180.0,True,True +22071001401,1401.0,True,True +22071001402,1947.0,True,True +22071001500,930.0,True,True +22071001600,0.0,False,False +22071001701,2011.0,True,True +22071001702,3185.0,False,False +22071001720,3555.0,True,True +22071001722,4679.0,True,True +22071001723,5083.0,True,True +22071001724,5550.0,True,True +22071001725,6801.0,True,True +22071001730,1141.0,False,False +22071001734,854.0,False,False +22071001735,2841.0,True,True +22071001736,1899.0,True,True +22071001737,3432.0,True,True +22071001739,2041.0,False,False +22071001740,5325.0,True,True +22071001741,1559.0,True,True +22071001743,2497.0,True,True +22071001744,5134.0,True,True +22071001745,4026.0,True,True +22071001746,3752.0,True,True +22071001747,4320.0,False,False +22071001748,4389.0,True,True +22071001749,3113.0,True,True +22071001750,3484.0,True,True +22071001751,725.0,True,True +22071001800,1409.0,False,False +22071001900,1323.0,True,True +22071002000,1298.0,True,True +22071002100,1376.0,True,True +22071002200,1736.0,True,True +22071002300,2415.0,True,True +22071002401,2347.0,True,True +22071002402,3255.0,True,True +22071002501,2352.0,True,True +22071002502,2533.0,False,False +22071002503,2114.0,False,False +22071002504,2979.0,False,False +22071002600,1608.0,False,False +22071002700,1516.0,True,True +22071002800,1623.0,True,True +22071002900,969.0,True,True +22071003000,1212.0,True,True +22071003100,1468.0,True,True +22071003301,2222.0,False,False +22071003302,3268.0,False,False +22071003303,2413.0,True,True +22071003304,2656.0,True,True +22071003307,1382.0,True,True +22071003308,3710.0,True,True +22071003400,1460.0,True,True +22071003500,1411.0,True,True +22071003600,1461.0,True,True +22071003701,1876.0,False,False +22071003702,3486.0,False,False +22071003800,1284.0,False,False +22071003900,1053.0,True,True +22071004000,2073.0,True,True +22071004100,1501.0,False,False +22071004401,984.0,True,True +22071004402,480.0,True,True +22071004500,2433.0,False,False +22071004600,2736.0,False,False +22071004800,389.0,True,True +22071004900,1546.0,True,True +22071005000,1077.0,True,True +22071005400,1638.0,False,False +22071005500,2738.0,False,False +22071005601,2507.0,False,False +22071005602,2589.0,False,False +22071005603,1739.0,False,False +22071005604,1553.0,False,False +22071006000,2511.0,True,True +22071006300,1409.0,True,True +22071006400,2141.0,False,False +22071006500,2750.0,True,True +22071006900,1265.0,True,True +22071007000,2153.0,False,True +22071007101,2783.0,True,True +22071007200,2964.0,True,True +22071007501,2498.0,True,True +22071007502,3904.0,True,True +22071007604,1885.0,False,False +22071007605,1466.0,True,True +22071007606,3931.0,False,False +22071007700,2201.0,False,False +22071007800,1224.0,False,False +22071008200,1525.0,True,True +22071008300,1203.0,False,False +22071008400,1021.0,False,False +22071008500,1043.0,True,True +22071008600,1179.0,True,True +22071008800,1761.0,False,False +22071009000,1829.0,False,False +22071009100,2068.0,True,True +22071009200,1366.0,True,True +22071009400,1377.0,True,True +22071009600,1691.0,False,False +22071009700,1261.0,False,False +22071009900,2765.0,False,False +22071010000,1590.0,True,True +22071010100,2155.0,False,False +22071010200,2557.0,False,False +22071010300,3657.0,True,True +22071010600,1559.0,False,False +22071010700,1875.0,False,False +22071010800,1473.0,False,False +22071010900,2729.0,False,False +22071011100,2026.0,False,False +22071011200,1594.0,False,False +22071011400,1946.0,False,False +22071011500,1280.0,False,False +22071011600,1457.0,False,False +22071011700,3329.0,False,False +22071011900,1620.0,False,False +22071012000,1337.0,False,False +22071012101,3003.0,False,False +22071012102,4202.0,False,False +22071012200,2210.0,False,False +22071012300,2026.0,False,False +22071012400,1878.0,False,False +22071012500,1810.0,False,False +22071012600,1638.0,False,False +22071012700,2461.0,False,False +22071012800,2181.0,False,False +22071012900,1313.0,True,True +22071013000,1568.0,False,False +22071013100,1575.0,True,True +22071013200,2772.0,True,True +22071013301,3546.0,False,False +22071013302,2143.0,False,False +22071013400,3074.0,False,False +22071013500,1914.0,False,False +22071013600,1329.0,False,True +22071013700,2427.0,True,True +22071013800,2664.0,True,True +22071013900,1648.0,True,True +22071014000,2054.0,True,True +22071014100,2369.0,True,True +22071014200,1514.0,False,False +22071014300,1809.0,True,True +22071014400,1642.0,False,False +22071014500,2261.0,True,True +22071980000,10.0,True,True +22071980100,0.0,False,False +22071990000,0.0,False,False +22073000100,4418.0,True,True +22073000200,6147.0,False,False +22073000401,2488.0,False,False +22073000402,3281.0,False,True +22073000500,3196.0,True,True +22073000600,3489.0,True,True +22073000700,1848.0,True,True +22073000900,1439.0,True,True +22073001100,3034.0,True,True +22073001400,2186.0,True,True +22073001500,1427.0,True,True +22073001700,3341.0,False,False +22073005100,2109.0,False,False +22073005201,3745.0,False,False +22073005203,3078.0,True,True +22073005204,5863.0,False,False +22073005301,6643.0,False,False +22073005302,4868.0,False,False +22073005400,1976.0,True,False +22073005500,3132.0,True,True +22073005800,1864.0,True,True +22073005900,2446.0,True,True +22073010101,4630.0,False,False +22073010102,6706.0,True,True +22073010201,5885.0,True,True +22073010202,8077.0,False,False +22073010301,3208.0,False,False +22073010302,4807.0,False,False +22073010400,9103.0,False,False +22073010502,4370.0,False,False +22073010503,2123.0,True,True +22073010504,8605.0,True,False +22073010603,6333.0,True,True +22073010604,1834.0,True,True +22073010700,3189.0,True,True +22073010800,1717.0,True,True +22073010900,4493.0,True,True +22073011000,5417.0,True,True +22073011100,2979.0,True,True +22073980000,0.0,False,False +22075050100,1182.0,True,True +22075050200,8385.0,False,False +22075050300,5639.0,False,False +22075050400,3273.0,True,True +22075050500,1432.0,True,True +22075050600,1222.0,True,True +22075050700,1289.0,True,True +22075050800,916.0,True,True +22075990000,0.0,False,False +22077951900,5584.0,True,True +22077952000,2649.0,True,True +22077952100,4560.0,False,False +22077952200,3076.0,True,True +22077952300,1773.0,False,False +22077952400,4374.0,True,True +22079010100,9605.0,False,False +22079010300,6155.0,True,True +22079010400,2413.0,False,False +22079010500,5199.0,True,True +22079010600,4785.0,True,True +22079010700,4798.0,False,False +22079011000,3117.0,True,True +22079011300,2456.0,True,False +22079011500,7667.0,False,False +22079011600,2492.0,False,False +22079011700,2619.0,True,True +22079012000,1438.0,True,True +22079012100,2881.0,True,True +22079012200,3520.0,True,True +22079012301,6043.0,False,False +22079012302,4667.0,False,False +22079012400,4592.0,False,False +22079012500,5668.0,False,False +22079012600,2210.0,True,True +22079012700,2714.0,True,True +22079012800,926.0,True,True +22079012900,2743.0,True,True +22079013000,2319.0,True,True +22079013100,2422.0,True,True +22079013200,8736.0,False,False +22079013300,4761.0,False,False +22079013400,3715.0,False,False +22079013500,6017.0,True,True +22079013600,3127.0,True,True +22079013700,4737.0,True,True +22079013800,3843.0,True,True +22079013900,2569.0,True,True +22079980000,16.0,False,False +22081960100,4465.0,True,True +22081960300,4100.0,True,True +22083970100,2887.0,True,True +22083970200,2159.0,True,True +22083970300,3257.0,True,True +22083970400,3248.0,False,True +22083970500,4606.0,True,True +22083970600,4193.0,True,True +22085000100,2939.0,True,True +22085000200,3707.0,True,True +22085000300,2470.0,True,True +22085000400,4808.0,True,True +22085000500,3475.0,True,True +22085000600,3803.0,False,False +22085000700,2789.0,False,False +22087030103,4669.0,True,True +22087030104,1991.0,True,True +22087030105,296.0,True,True +22087030203,3485.0,True,True +22087030204,4282.0,True,True +22087030206,2444.0,False,True +22087030207,4530.0,False,True +22087030208,3470.0,False,False +22087030209,3320.0,False,False +22087030300,1437.0,True,True +22087030400,1702.0,True,True +22087030500,1514.0,True,True +22087030601,1560.0,True,True +22087030602,3073.0,True,True +22087030603,1559.0,True,True +22087030700,1897.0,True,True +22087030800,5037.0,True,True +22087990000,0.0,False,False +22089060100,2131.0,False,False +22089062100,5239.0,False,False +22089062200,2300.0,True,True +22089062301,6557.0,False,False +22089062302,4654.0,False,False +22089062400,1409.0,True,True +22089062500,2830.0,False,False +22089062700,4715.0,True,True +22089062800,5671.0,True,True +22089062900,2680.0,False,False +22089063000,1172.0,False,False +22089063100,8467.0,False,False +22089063200,4948.0,False,False +22091951100,3541.0,False,False +22091951200,6756.0,True,True +22093040100,3688.0,False,False +22093040200,3285.0,True,True +22093040300,3979.0,False,False +22093040400,2088.0,True,True +22093040500,2317.0,True,True +22093040600,2559.0,True,True +22093040700,3392.0,False,False +22095070100,2649.0,False,False +22095070200,7064.0,False,False +22095070300,6116.0,False,False +22095070400,4103.0,False,False +22095070500,6348.0,True,True +22095070600,2155.0,True,True +22095070700,4000.0,True,True +22095070800,1708.0,True,True +22095070900,3302.0,True,True +22095071000,2462.0,True,True +22095071100,3335.0,True,True +22097960100,2756.0,True,True +22097960200,4076.0,True,True +22097960300,3634.0,True,True +22097960400,1822.0,True,True +22097960500,5485.0,True,True +22097960600,5628.0,True,True +22097960700,6134.0,True,True +22097960800,3284.0,False,False +22097960900,4150.0,True,True +22097961000,2099.0,True,True +22097961100,3017.0,True,True +22097961200,4831.0,False,False +22097961300,4125.0,True,True +22097961400,4211.0,True,True +22097961500,5081.0,False,False +22097961600,4125.0,True,True +22097961700,7871.0,True,True +22097961800,7354.0,True,True +22097961900,3489.0,True,True +22099020100,4821.0,True,True +22099020200,7171.0,True,True +22099020301,4707.0,False,True +22099020302,8673.0,True,True +22099020400,6790.0,True,True +22099020501,5726.0,True,True +22099020502,4044.0,True,True +22099020600,5444.0,True,True +22099020800,2866.0,True,True +22099020900,1969.0,False,False +22099021000,1521.0,True,True +22101040100,2768.0,True,True +22101040200,4559.0,False,False +22101040300,2823.0,True,True +22101040400,3803.0,True,True +22101040500,4739.0,True,True +22101040600,4451.0,True,True +22101040700,3481.0,True,True +22101040800,5098.0,False,False +22101040900,3281.0,True,True +22101041000,3414.0,False,False +22101041100,1658.0,True,True +22101041200,1977.0,True,True +22101041300,2022.0,True,True +22101041400,2865.0,True,True +22101041500,1651.0,True,True +22101041600,2378.0,True,True +22101990000,0.0,False,False +22103040102,9615.0,False,False +22103040103,4700.0,True,True +22103040104,7197.0,True,True +22103040201,9220.0,False,False +22103040202,6278.0,False,False +22103040303,9014.0,False,False +22103040304,6997.0,False,False +22103040305,15937.0,False,False +22103040400,10384.0,False,False +22103040501,4893.0,True,True +22103040502,3772.0,False,False +22103040601,2833.0,False,False +22103040602,2359.0,False,False +22103040604,9991.0,False,False +22103040605,7063.0,False,False +22103040701,8758.0,False,False +22103040704,5727.0,True,True +22103040705,6827.0,False,False +22103040706,5941.0,False,False +22103040708,5988.0,False,False +22103040709,4451.0,False,False +22103040710,6009.0,False,False +22103040801,4857.0,True,True +22103040802,7138.0,False,False +22103040803,10330.0,False,False +22103040900,2837.0,True,True +22103041002,2667.0,False,False +22103041003,5702.0,False,False +22103041004,4942.0,False,False +22103041101,4493.0,False,False +22103041102,7546.0,True,True +22103041103,3145.0,True,True +22103041104,3364.0,False,False +22103041202,2298.0,True,True +22103041204,8337.0,False,False +22103041207,4383.0,False,False +22103041208,4508.0,False,False +22103041209,4669.0,False,False +22103041210,2864.0,False,False +22103041211,6622.0,False,False +22103041212,3481.0,False,False +22103041300,7018.0,False,False +22103990000,0.0,False,False +22105953200,2877.0,True,True +22105953300,3783.0,True,True +22105953400,6094.0,True,True +22105953500,7047.0,True,True +22105953600,6395.0,True,True +22105953700,10427.0,False,False +22105953800,5221.0,True,True +22105953900,8615.0,True,True +22105954001,4496.0,False,True +22105954002,6154.0,True,True +22105954101,5887.0,True,True +22105954102,12639.0,True,True +22105954200,4874.0,False,False +22105954300,4360.0,True,True +22105954400,3739.0,True,True +22105954501,6375.0,True,False +22105954502,7874.0,True,True +22105954600,14518.0,False,False +22105954700,5235.0,False,False +22105954800,5447.0,False,False +22107000100,1580.0,True,True +22107000200,1114.0,True,True +22107000300,1867.0,True,True +22109000101,6045.0,True,True +22109000102,4376.0,True,True +22109000201,3883.0,True,True +22109000202,7501.0,False,False +22109000300,5631.0,True,True +22109000401,4757.0,False,False +22109000402,4182.0,False,False +22109000500,5497.0,True,True +22109000600,5594.0,True,True +22109000700,6698.0,True,True +22109000800,5387.0,True,True +22109000900,4515.0,True,True +22109001000,5637.0,False,False +22109001100,3471.0,True,True +22109001201,2886.0,True,True +22109001202,3232.0,True,True +22109001300,8422.0,True,True +22109001400,3252.0,True,True +22109001500,7331.0,False,False +22109001600,2603.0,True,True +22109001700,11154.0,False,False +22109990000,0.0,False,False +22111960100,4018.0,True,True +22111960200,3815.0,True,True +22111960300,2895.0,True,True +22111960400,3734.0,True,True +22111960500,4234.0,False,False +22111960600,3657.0,False,False +22113950100,10366.0,False,False +22113950200,4697.0,False,False +22113950400,5413.0,True,True +22113950500,5663.0,False,False +22113950600,3349.0,False,False +22113950700,3611.0,False,False +22113950800,5581.0,True,True +22113950901,3283.0,False,False +22113950902,8288.0,False,False +22113951001,4778.0,True,True +22113951002,3347.0,True,True +22113951100,1489.0,False,False +22113990000,0.0,False,False +22115950100,4971.0,False,False +22115950200,5461.0,False,False +22115950300,4220.0,False,False +22115950400,3282.0,True,True +22115950500,5788.0,True,True +22115950600,3417.0,False,False +22115950701,1918.0,False,False +22115950702,3222.0,True,True +22115950703,2263.0,True,False +22115950704,3914.0,False,False +22115950800,4190.0,True,True +22115950900,7000.0,True,True +22117950101,3677.0,True,True +22117950102,4133.0,True,True +22117950200,6290.0,True,True +22117950300,4338.0,True,True +22117950400,3615.0,True,True +22117950500,5620.0,False,False +22117950600,5115.0,True,True +22117950700,5314.0,True,True +22117950800,3963.0,True,True +22117950900,1422.0,True,True +22117951000,2948.0,True,True +22119031100,1723.0,True,True +22119031200,2574.0,True,True +22119031300,4995.0,True,True +22119031400,3165.0,True,True +22119031500,6171.0,True,True +22119031600,2748.0,False,False +22119031700,2673.0,True,True +22119031800,3028.0,True,True +22119031900,1998.0,True,True +22119032000,3296.0,True,True +22119032100,6871.0,True,False +22121020100,3924.0,True,True +22121020200,3676.0,True,True +22121020300,5809.0,False,False +22121020401,5233.0,False,False +22121020402,7459.0,False,False +22123000100,4465.0,True,True +22123000200,3804.0,True,True +22123000300,2772.0,True,True +22125951701,4060.0,False,False +22125951702,3780.0,True,True +22125951800,7588.0,False,False +22127960100,3407.0,True,True +22127960200,6183.0,False,False +22127960300,2315.0,True,True +22127960400,2408.0,True,True +23001010100,1590.0,True,True +23001010200,4524.0,False,False +23001010300,2521.0,True,True +23001010400,2274.0,False,False +23001010500,1963.0,True,True +23001010600,3091.0,False,False +23001010700,3167.0,False,False +23001010800,4057.0,False,False +23001020100,1201.0,True,True +23001020200,1262.0,True,True +23001020300,6228.0,True,True +23001020400,2828.0,True,True +23001020500,3651.0,True,True +23001020600,2644.0,False,False +23001020700,5585.0,False,False +23001020800,8121.0,False,False +23001020900,4575.0,False,False +23001030100,4481.0,False,False +23001030200,4425.0,False,False +23001040000,3944.0,False,False +23001041000,5588.0,False,False +23001041500,5567.0,False,False +23001042000,5784.0,False,False +23001043000,2066.0,False,False +23001044000,3156.0,True,True +23001045000,2215.0,False,False +23001046000,4342.0,False,False +23001046500,6752.0,False,False +23003950100,2233.0,True,True +23003950200,2308.0,True,True +23003950300,3774.0,False,True +23003950400,1666.0,True,True +23003950600,3893.0,False,False +23003950700,2517.0,True,True +23003950900,1986.0,True,True +23003951000,3325.0,True,True +23003951100,2777.0,False,False +23003951200,2544.0,True,True +23003951300,3102.0,False,True +23003951400,2064.0,True,True +23003951600,2009.0,True,True +23003951700,4581.0,True,True +23003951800,3592.0,True,True +23003951900,3029.0,False,False +23003952000,2495.0,False,False +23003952100,2743.0,True,True +23003952300,2349.0,True,True +23003952400,3714.0,True,True +23003952500,2115.0,True,True +23003952600,3207.0,True,True +23003952700,2690.0,True,True +23003952900,3096.0,True,True +23005000100,2168.0,False,False +23005000200,2603.0,False,False +23005000300,2711.0,True,True +23005000500,2233.0,True,True +23005000600,3199.0,True,True +23005001000,2868.0,False,False +23005001100,2732.0,True,True +23005001200,1525.0,False,False +23005001300,3503.0,False,False +23005001500,3588.0,False,False +23005001700,4606.0,False,False +23005001800,3556.0,False,False +23005001900,4164.0,False,False +23005002001,3392.0,False,False +23005002002,2646.0,False,False +23005002101,5817.0,False,False +23005002102,6094.0,False,False +23005002200,4881.0,False,False +23005002300,3349.0,True,True +23005002400,1274.0,False,False +23005002501,3560.0,False,False +23005002502,8581.0,False,False +23005002600,3874.0,False,False +23005002700,4912.0,True,True +23005002800,3006.0,False,False +23005002900,6841.0,False,False +23005003000,6691.0,False,False +23005003100,3801.0,False,False +23005003200,2984.0,False,False +23005003300,3392.0,False,False +23005003400,4686.0,False,False +23005003500,3994.0,False,False +23005003701,4182.0,False,False +23005003702,5093.0,False,False +23005004001,3223.0,False,False +23005004002,7603.0,False,False +23005004100,6756.0,False,False +23005004200,8447.0,False,False +23005004401,4998.0,False,False +23005004402,3531.0,False,False +23005004501,3463.0,False,False +23005004502,4976.0,False,False +23005004600,3779.0,False,False +23005004701,2212.0,False,False +23005004702,5905.0,False,False +23005004801,6984.0,False,False +23005004802,5310.0,False,False +23005004803,5901.0,False,False +23005011100,4273.0,False,False +23005011201,6958.0,False,False +23005011202,6680.0,False,False +23005011300,2606.0,False,False +23005011500,7373.0,False,False +23005012000,4500.0,False,False +23005013000,3920.0,False,False +23005014000,3957.0,False,False +23005015000,2795.0,True,True +23005016000,5382.0,False,False +23005016500,3106.0,False,False +23005017001,6420.0,False,False +23005017002,3699.0,False,False +23005017101,2095.0,False,False +23005017102,2803.0,False,False +23005017301,9283.0,False,False +23005017303,4858.0,False,False +23005017304,6005.0,False,False +23005990000,0.0,False,False +23007970101,1814.0,False,False +23007970102,837.0,True,True +23007970601,1586.0,False,False +23007970602,2178.0,True,True +23007971000,4431.0,True,True +23007971100,2942.0,False,False +23007971200,7597.0,False,False +23007971300,3959.0,False,False +23007971400,4638.0,False,False +23009965100,2008.0,True,True +23009965200,2589.0,False,False +23009965300,4916.0,True,True +23009965400,2684.0,False,False +23009965503,3555.0,False,False +23009965504,4446.0,False,False +23009965700,2960.0,True,True +23009965800,1947.0,False,False +23009965900,5470.0,False,False +23009966000,1754.0,False,False +23009966100,1625.0,False,False +23009966200,2027.0,False,False +23009966300,4372.0,False,False +23009966400,2342.0,False,False +23009966500,2901.0,False,False +23009966600,3030.0,True,True +23009966700,5975.0,False,False +23009990000,0.0,False,False +23011010100,4888.0,False,False +23011010200,3344.0,False,False +23011010300,3322.0,True,True +23011010400,2530.0,True,True +23011010500,4521.0,True,True +23011010600,7319.0,False,False +23011010700,2445.0,False,False +23011010801,2543.0,False,False +23011010802,6301.0,False,False +23011010900,1544.0,True,True +23011011000,4113.0,False,False +23011012000,3626.0,False,False +23011013000,4100.0,False,False +23011014000,5983.0,False,False +23011014500,2184.0,False,False +23011015000,2556.0,False,False +23011015500,2936.0,False,False +23011016000,3150.0,False,False +23011017000,4360.0,False,False +23011018000,4341.0,False,False +23011019000,2592.0,False,False +23011020000,4261.0,False,False +23011020500,2265.0,True,True +23011021000,3367.0,True,True +23011022000,2709.0,False,False +23011023001,3619.0,True,True +23011023002,3983.0,False,False +23011024101,4214.0,True,True +23011024102,5213.0,True,True +23011024200,7150.0,False,False +23011025000,6274.0,False,False +23013970200,4817.0,False,False +23013970300,7417.0,False,False +23013970400,7511.0,False,False +23013970500,3372.0,False,False +23013970600,2619.0,True,True +23013970700,4559.0,False,False +23013970800,2772.0,False,False +23013970900,2581.0,False,False +23013971000,2630.0,False,False +23013971100,1481.0,False,False +23013990000,0.0,False,False +23015975100,5558.0,True,True +23015975200,5009.0,False,False +23015975300,3750.0,False,False +23015975400,3735.0,False,False +23015975500,6030.0,False,False +23015975600,3589.0,False,False +23015975700,909.0,False,False +23015975800,3123.0,False,False +23015976200,2498.0,False,False +23015990000,0.0,False,False +23017965100,1194.0,False,False +23017965400,3065.0,True,True +23017965500,2384.0,True,True +23017965600,3335.0,True,True +23017965700,2810.0,True,True +23017965800,3653.0,False,False +23017965900,3053.0,False,False +23017966000,3048.0,True,True +23017966100,2339.0,True,True +23017966200,5111.0,False,False +23017966300,4005.0,False,False +23017966400,6350.0,True,True +23017966500,4955.0,True,True +23017966600,2970.0,False,False +23017966700,3421.0,False,False +23017966800,2683.0,False,False +23017966900,3174.0,True,True +23019000200,3287.0,True,True +23019000300,4513.0,False,False +23019000400,2243.0,False,False +23019000500,3543.0,False,False +23019000600,1900.0,True,True +23019000700,3044.0,False,False +23019000900,6735.0,True,True +23019002000,7352.0,False,False +23019003000,3671.0,False,False +23019004100,1910.0,True,True +23019004200,2690.0,False,False +23019004300,4490.0,False,False +23019005000,1999.0,False,False +23019006100,2993.0,False,False +23019006200,3090.0,False,False +23019006300,4693.0,False,False +23019007100,4551.0,False,False +23019007200,2923.0,False,False +23019008001,4706.0,False,False +23019009000,6232.0,False,False +23019010000,5896.0,False,False +23019011000,2799.0,False,False +23019012000,1584.0,False,False +23019012500,2501.0,False,False +23019013000,3257.0,False,False +23019013500,2610.0,False,False +23019014000,2052.0,False,False +23019015000,3725.0,True,True +23019015500,2115.0,True,True +23019018000,2974.0,False,False +23019020500,2564.0,True,True +23019021500,1837.0,True,True +23019022500,1955.0,True,True +23019024500,2299.0,True,True +23019025500,1848.0,True,True +23019026500,1966.0,True,True +23019027000,4919.0,True,True +23019028000,1442.0,False,True +23019028500,1394.0,False,True +23019029000,1801.0,True,True +23019030000,4287.0,True,True +23019031000,1682.0,True,True +23019031100,6830.0,False,False +23019031200,4317.0,True,True +23019031300,5797.0,False,False +23019940000,758.0,True,True +23021960301,1467.0,True,True +23021960302,516.0,False,False +23021960400,966.0,True,True +23021960500,1834.0,True,True +23021960600,2615.0,True,True +23021960700,4057.0,True,True +23021960800,4043.0,True,True +23021960900,1338.0,True,True +23023970100,3423.0,False,False +23023970200,6137.0,False,False +23023970301,4458.0,False,False +23023970302,4352.0,False,False +23023970400,4446.0,False,False +23023970500,5090.0,False,False +23023970600,3229.0,True,True +23023970700,4317.0,False,False +23023990000,0.0,False,False +23025965301,955.0,False,True +23025965302,1231.0,True,True +23025965600,1921.0,True,True +23025965700,2883.0,True,True +23025965800,2942.0,True,True +23025965900,1649.0,True,True +23025966000,4006.0,True,True +23025966100,3928.0,True,True +23025966200,1698.0,True,True +23025966300,1705.0,False,False +23025966400,2633.0,True,True +23025966500,4651.0,True,True +23025966600,4162.0,True,True +23025966700,4098.0,True,True +23025966800,6557.0,True,True +23025966900,3244.0,True,True +23025967000,2257.0,True,True +23027041000,3931.0,False,False +23027042000,6159.0,True,True +23027043000,6688.0,False,False +23027044000,4548.0,False,False +23027045000,6063.0,False,False +23027046001,2241.0,False,False +23027046002,5171.0,False,False +23027047000,4738.0,True,True +23029955100,2849.0,True,True +23029955300,1312.0,True,True +23029955400,1433.0,True,True +23029955500,2993.0,True,True +23029955600,1962.0,True,True +23029955700,1326.0,True,True +23029955800,2282.0,True,True +23029955900,2727.0,True,True +23029956100,2332.0,True,True +23029956200,2688.0,True,True +23029956300,2802.0,True,True +23029956400,3082.0,True,True +23029956500,3703.0,True,True +23029990000,0.0,False,False +23031005100,4911.0,False,False +23031005200,5037.0,False,False +23031005300,6740.0,False,False +23031005400,2809.0,False,False +23031006101,5655.0,False,False +23031006102,3207.0,False,False +23031020000,8243.0,False,False +23031021000,4607.0,False,False +23031022000,3815.0,False,False +23031022500,3295.0,True,True +23031023000,2959.0,False,False +23031023500,6710.0,False,False +23031024000,7846.0,False,False +23031024500,6629.0,False,False +23031025100,3623.0,False,False +23031025201,5092.0,True,True +23031025202,7563.0,True,True +23031025300,3103.0,False,False +23031025400,2081.0,False,False +23031026000,4277.0,False,False +23031027000,3596.0,False,False +23031028001,3567.0,False,False +23031028002,7857.0,False,False +23031029000,3115.0,False,False +23031030100,4344.0,False,False +23031030201,3465.0,True,True +23031030202,6083.0,True,True +23031030203,3645.0,False,False +23031030300,3536.0,False,False +23031031000,6270.0,False,False +23031032000,7683.0,False,False +23031033000,4697.0,False,False +23031034001,5944.0,False,False +23031034002,5452.0,False,False +23031035000,7470.0,False,False +23031036001,5988.0,False,False +23031036002,7082.0,False,False +23031037000,6589.0,False,False +23031038001,6351.0,False,False +23031038002,3380.0,False,False +23031990100,0.0,False,False +24001000100,3581.0,False,False +24001000200,3977.0,False,False +24001000300,2707.0,False,False +24001000400,2979.0,True,True +24001000500,2284.0,False,False +24001000600,2852.0,False,False +24001000700,3354.0,True,True +24001000800,1992.0,True,True +24001001000,2158.0,True,True +24001001100,1312.0,True,True +24001001200,3174.0,False,False +24001001300,5394.0,False,False +24001001401,3794.0,False,False +24001001402,1532.0,False,False +24001001502,2126.0,True,True +24001001503,1824.0,True,True +24001001600,1826.0,False,False +24001001700,4526.0,False,False +24001001800,4668.0,False,False +24001001900,2907.0,False,False +24001002000,5305.0,False,False +24001002100,3010.0,True,True +24001002200,4163.0,True,True +24003701101,4239.0,False,False +24003701102,7549.0,False,False +24003701200,8031.0,False,False +24003701300,8019.0,False,False +24003701400,3753.0,False,False +24003702100,6551.0,False,False +24003702204,4352.0,False,False +24003702205,5522.0,False,False +24003702206,7300.0,False,False +24003702208,7559.0,False,False +24003702209,4403.0,False,False +24003702300,5591.0,False,False +24003702402,7050.0,False,False +24003702500,6876.0,False,False +24003702601,5407.0,False,False +24003702602,6536.0,False,False +24003702701,4777.0,False,False +24003702702,3533.0,False,False +24003706101,3782.0,False,False +24003706301,4422.0,False,False +24003706302,3211.0,False,False +24003706401,7066.0,False,False +24003706402,3592.0,True,False +24003706500,5736.0,False,False +24003706600,5069.0,False,False +24003706700,6198.0,False,False +24003707001,5738.0,False,False +24003707002,4527.0,False,False +24003708001,3693.0,False,False +24003708004,6228.0,False,False +24003730100,12585.0,False,False +24003730203,5254.0,False,False +24003730204,6412.0,False,False +24003730300,3706.0,False,False +24003730401,5535.0,False,False +24003730402,5885.0,False,False +24003730502,6662.0,False,False +24003730504,7463.0,False,False +24003730505,4969.0,False,False +24003730506,3358.0,False,False +24003730601,6924.0,False,False +24003730603,3102.0,False,False +24003730604,7452.0,False,False +24003730700,6914.0,False,False +24003730800,2398.0,False,False +24003730901,2723.0,False,False +24003730902,3664.0,False,False +24003731002,3457.0,False,False +24003731003,4239.0,False,False +24003731004,4409.0,False,False +24003731102,7405.0,False,False +24003731103,5771.0,False,False +24003731104,4393.0,False,False +24003731105,3606.0,False,False +24003731201,6644.0,False,False +24003731202,8352.0,False,False +24003731203,6931.0,False,False +24003731204,6940.0,False,False +24003731303,6520.0,False,False +24003731306,6185.0,False,False +24003731307,6238.0,False,False +24003731308,3874.0,False,False +24003731309,5407.0,False,False +24003731310,5222.0,False,False +24003731311,7792.0,False,False +24003740102,10318.0,False,False +24003740103,8761.0,False,False +24003740104,8912.0,False,False +24003740105,3620.0,False,False +24003740201,7228.0,False,False +24003740203,6222.0,False,False +24003740303,4237.0,False,False +24003740304,5812.0,False,False +24003740305,12121.0,False,False +24003740400,6264.0,False,False +24003740500,10576.0,False,False +24003740601,4900.0,False,False +24003740602,3718.0,False,False +24003740603,2806.0,False,False +24003740701,6525.0,False,False +24003740702,10227.0,False,False +24003740800,4810.0,False,False +24003740900,7964.0,False,False +24003741000,2623.0,False,False +24003750101,3944.0,False,False +24003750102,2487.0,False,False +24003750201,3395.0,False,False +24003750202,3621.0,False,False +24003750203,1403.0,False,False +24003750300,2873.0,False,False +24003750400,3906.0,False,False +24003750801,6234.0,False,False +24003750803,7680.0,False,False +24003750804,3294.0,False,False +24003750900,2964.0,False,False +24003751000,3804.0,False,False +24003751102,4162.0,False,False +24003751103,5419.0,False,False +24003751200,4802.0,False,False +24003751400,3935.0,False,False +24003751500,6937.0,False,False +24003751600,5297.0,False,False +24003751700,2767.0,False,False +24003980000,6.0,False,False +24003990000,0.0,False,False +24005400100,4835.0,False,False +24005400200,2423.0,False,False +24005400400,5738.0,False,False +24005400500,2609.0,False,False +24005400600,3075.0,False,False +24005400701,2815.0,False,False +24005400702,2017.0,False,False +24005400800,2746.0,False,False +24005400900,1953.0,False,False +24005401000,2371.0,False,False +24005401101,5939.0,False,False +24005401102,898.0,False,False +24005401200,3142.0,False,False +24005401301,4122.0,False,True +24005401302,2756.0,False,False +24005401400,1637.0,False,False +24005401503,6297.0,False,False +24005401504,6640.0,False,False +24005401505,4290.0,False,False +24005401506,5053.0,False,False +24005401507,6427.0,False,False +24005402201,3526.0,False,False +24005402202,1582.0,False,False +24005402302,5522.0,False,False +24005402303,6799.0,False,False +24005402304,3728.0,False,False +24005402305,2053.0,False,False +24005402306,4068.0,False,False +24005402307,6370.0,False,False +24005402403,2023.0,False,False +24005402404,4953.0,False,False +24005402405,3925.0,False,False +24005402406,5751.0,False,False +24005402407,1416.0,False,False +24005402503,4986.0,False,False +24005402504,5006.0,False,False +24005402505,3627.0,False,False +24005402506,4619.0,False,False +24005402509,10401.0,False,False +24005402602,2197.0,False,False +24005402603,6490.0,False,False +24005402604,6400.0,False,False +24005403100,2459.0,False,False +24005403201,3170.0,False,False +24005403202,2256.0,False,False +24005403300,2406.0,False,False +24005403401,3533.0,False,False +24005403402,5392.0,False,False +24005403500,5185.0,False,False +24005403601,4884.0,False,False +24005403602,5677.0,False,False +24005403701,6971.0,False,False +24005403702,4827.0,False,False +24005403801,1655.0,False,False +24005403802,2825.0,False,False +24005403803,3445.0,False,False +24005404101,6330.0,False,False +24005404102,6235.0,False,False +24005404201,6133.0,False,False +24005404202,8684.0,False,False +24005404402,6416.0,False,False +24005404403,5162.0,False,False +24005404404,4934.0,False,False +24005404501,6947.0,False,False +24005404502,3831.0,False,False +24005404600,2668.0,False,False +24005404800,2034.0,False,False +24005404900,4550.0,False,False +24005405000,4398.0,False,False +24005406000,5846.0,False,False +24005407001,3067.0,False,False +24005407002,5577.0,False,False +24005408100,5686.0,False,False +24005408200,1850.0,False,False +24005408302,2768.0,False,False +24005408303,3270.0,False,False +24005408304,4909.0,False,False +24005408400,1074.0,False,False +24005408502,5364.0,False,False +24005408503,3743.0,False,False +24005408505,3778.0,False,False +24005408506,4820.0,True,True +24005408507,6470.0,False,False +24005408601,4102.0,False,False +24005408602,2106.0,False,False +24005408702,2326.0,False,False +24005408703,6523.0,False,False +24005408704,5720.0,False,False +24005408800,2489.0,False,False +24005408900,2495.0,False,False +24005410100,5693.0,False,False +24005410200,4844.0,False,False +24005411101,2128.0,False,False +24005411102,3201.0,False,False +24005411201,3176.0,False,False +24005411202,3927.0,False,False +24005411302,3947.0,False,False +24005411303,6400.0,False,False +24005411306,5281.0,False,False +24005411307,3610.0,False,False +24005411308,3440.0,False,False +24005411309,8788.0,False,False +24005411404,3720.0,False,False +24005411406,4175.0,False,False +24005411407,11332.0,False,False +24005411408,3824.0,False,False +24005411409,5070.0,False,False +24005411410,4514.0,False,False +24005420100,3827.0,False,False +24005420200,3017.0,False,False +24005420301,2296.0,False,False +24005420302,2462.0,False,False +24005420303,1272.0,False,False +24005420401,6894.0,True,True +24005420402,1944.0,False,False +24005420500,3672.0,False,False +24005420600,4077.0,False,False +24005420701,2975.0,True,True +24005420702,2121.0,True,True +24005420800,3046.0,False,False +24005420900,3441.0,False,False +24005421000,1973.0,True,True +24005421101,2740.0,True,True +24005421102,2666.0,False,False +24005421200,1827.0,False,False +24005421300,2827.0,True,True +24005430101,5025.0,True,True +24005430104,2919.0,False,False +24005430200,2795.0,False,False +24005430300,5682.0,True,True +24005430400,4196.0,False,False +24005430600,2320.0,False,False +24005430700,5102.0,False,False +24005430800,3509.0,False,False +24005430900,4165.0,True,True +24005440100,4474.0,False,False +24005440200,2379.0,False,False +24005440300,1970.0,False,False +24005440400,5264.0,False,False +24005440500,3362.0,False,False +24005440600,2289.0,False,False +24005440701,6712.0,False,False +24005440702,4822.0,False,False +24005440800,3340.0,False,False +24005440900,4014.0,False,False +24005441000,3980.0,False,False +24005441101,2305.0,False,False +24005441102,4965.0,False,False +24005450100,3629.0,False,False +24005450200,3196.0,False,False +24005450300,3213.0,False,False +24005450400,2297.0,False,False +24005450501,4185.0,False,False +24005450503,6214.0,False,False +24005450504,5143.0,True,True +24005450800,4211.0,True,False +24005450900,4268.0,False,False +24005451000,1672.0,False,False +24005451100,2291.0,False,False +24005451200,3875.0,False,False +24005451300,3754.0,True,True +24005451401,4086.0,False,False +24005451402,4869.0,True,True +24005451500,3981.0,False,False +24005451600,1964.0,False,False +24005451701,4358.0,False,False +24005451702,1883.0,False,False +24005451801,6246.0,False,False +24005451802,3818.0,False,False +24005451803,4432.0,False,False +24005451900,2591.0,False,False +24005452000,2584.0,False,False +24005452100,3221.0,False,False +24005452300,2793.0,True,True +24005452400,3366.0,False,False +24005452500,3909.0,False,False +24005490100,3810.0,False,False +24005490200,2824.0,False,False +24005490301,7522.0,False,False +24005490302,4651.0,False,False +24005490400,1777.0,False,False +24005490500,3575.0,False,False +24005490601,2163.0,False,False +24005490602,2958.0,False,False +24005490603,2329.0,False,False +24005490605,5123.0,False,True +24005490701,1632.0,False,False +24005490703,3028.0,False,False +24005490800,3273.0,False,False +24005490900,4074.0,False,False +24005491000,2320.0,False,False +24005491100,3959.0,False,False +24005491201,1581.0,False,False +24005491202,1823.0,False,False +24005491300,3554.0,False,False +24005491401,5471.0,False,False +24005491402,3087.0,False,False +24005491500,4322.0,False,False +24005491600,3275.0,True,True +24005491701,3958.0,False,False +24005491900,1841.0,False,False +24005492001,1272.0,False,False +24005492002,3746.0,False,False +24005492101,3766.0,False,False +24005492102,2038.0,False,False +24005492200,4835.0,False,False +24005492300,3849.0,True,True +24005492401,3771.0,False,False +24005492402,6175.0,False,False +24005492500,3031.0,False,True +24005492600,3605.0,False,False +24005980000,0.0,False,False +24005980100,0.0,False,False +24005980200,0.0,False,False +24009860101,3159.0,False,False +24009860102,2990.0,False,False +24009860200,6138.0,False,False +24009860300,4614.0,False,False +24009860401,10328.0,False,False +24009860402,3599.0,False,False +24009860501,7020.0,False,False +24009860502,3087.0,False,False +24009860600,7215.0,False,False +24009860701,3055.0,False,False +24009860702,3256.0,False,False +24009860703,4011.0,False,False +24009860801,6900.0,False,False +24009860802,4781.0,False,False +24009860900,7667.0,False,False +24009861001,1148.0,False,False +24009861003,5694.0,False,False +24009861004,6849.0,False,False +24009990100,0.0,False,False +24011955000,3292.0,True,True +24011955100,6128.0,False,False +24011955201,3969.0,False,False +24011955202,2037.0,False,False +24011955301,4341.0,False,False +24011955302,3167.0,True,True +24011955400,2063.0,False,False +24011955500,3683.0,False,False +24011955600,4369.0,True,True +24013501001,4494.0,False,False +24013501002,5028.0,False,False +24013502000,3586.0,False,False +24013503000,5754.0,False,False +24013504100,5009.0,False,False +24013504201,6080.0,False,False +24013504202,6581.0,False,False +24013505101,3946.0,False,False +24013505102,5709.0,False,False +24013505203,3844.0,False,False +24013505205,3465.0,False,False +24013505206,3336.0,False,False +24013505207,3875.0,False,False +24013505208,4608.0,False,False +24013506101,4499.0,False,False +24013506102,4180.0,False,False +24013506200,5375.0,False,False +24013507500,4738.0,False,False +24013507601,4609.0,False,False +24013507602,4174.0,False,False +24013507702,3707.0,False,False +24013507703,3038.0,False,False +24013507704,5889.0,False,False +24013507801,6222.0,False,False +24013507802,4736.0,False,False +24013508101,5042.0,False,False +24013508102,2963.0,False,False +24013508200,6934.0,False,False +24013509001,4589.0,False,False +24013509002,2841.0,False,False +24013510000,1431.0,False,False +24013511000,3638.0,False,False +24013512000,1445.0,False,False +24013513001,4883.0,False,False +24013513002,5503.0,False,False +24013514100,3536.0,False,False +24013514201,5054.0,False,False +24013514202,3358.0,False,False +24015030100,4720.0,False,False +24015030200,5241.0,False,False +24015030400,5243.0,True,True +24015030501,4287.0,False,False +24015030503,5489.0,True,True +24015030505,4300.0,False,False +24015030506,8418.0,False,False +24015030601,3812.0,False,False +24015030602,5307.0,False,False +24015030700,4793.0,False,False +24015030903,5060.0,False,False +24015030904,7508.0,False,False +24015030905,2672.0,False,False +24015030906,10052.0,False,False +24015031201,6051.0,False,False +24015031202,5526.0,False,False +24015031301,3405.0,False,False +24015031302,6782.0,False,False +24015031400,3886.0,False,False +24017850101,5996.0,False,False +24017850102,2490.0,False,False +24017850201,1039.0,False,False +24017850202,4822.0,False,False +24017850300,1895.0,False,False +24017850400,3468.0,False,False +24017850500,2905.0,False,False +24017850600,4915.0,False,False +24017850706,5606.0,False,False +24017850708,4875.0,False,False +24017850709,6604.0,False,False +24017850710,5850.0,False,False +24017850711,5287.0,False,False +24017850712,5504.0,False,False +24017850713,8375.0,False,False +24017850801,4935.0,False,False +24017850802,5527.0,False,False +24017850901,5230.0,True,True +24017850902,5533.0,False,False +24017850904,10112.0,False,False +24017850905,4426.0,False,False +24017850906,4407.0,False,False +24017851001,4084.0,False,False +24017851002,9502.0,False,False +24017851100,3080.0,False,False +24017851200,4813.0,False,False +24017851301,5385.0,False,False +24017851302,4805.0,False,False +24017851400,8492.0,False,False +24017851500,9466.0,False,False +24017990000,0.0,False,False +24019970100,2897.0,True,True +24019970200,5687.0,False,False +24019970300,4395.0,False,False +24019970400,3612.0,True,False +24019970500,3574.0,True,True +24019970600,4591.0,True,True +24019970702,3993.0,False,False +24019970804,2174.0,False,False +24019970900,1215.0,False,False +24019990000,0.0,False,False +24021740200,4949.0,False,False +24021750100,1454.0,False,False +24021750200,1650.0,False,False +24021750300,1713.0,True,True +24021750503,7446.0,False,True +24021750504,5385.0,False,False +24021750505,8253.0,False,True +24021750506,4310.0,False,False +24021750600,2577.0,False,False +24021750701,5438.0,False,False +24021750702,3384.0,True,True +24021750801,2906.0,False,True +24021750802,5815.0,False,False +24021750803,6099.0,False,False +24021751001,1185.0,False,False +24021751002,5293.0,False,False +24021751003,5685.0,False,False +24021751004,4495.0,False,False +24021751201,5364.0,False,False +24021751202,6537.0,False,False +24021751203,1957.0,False,False +24021751301,4448.0,False,False +24021751302,3081.0,False,False +24021751600,3037.0,False,False +24021751701,2396.0,False,False +24021751702,3889.0,False,False +24021751801,4972.0,False,False +24021751802,3436.0,False,False +24021751901,4481.0,False,False +24021751902,5876.0,False,False +24021751903,5960.0,False,False +24021751904,3408.0,False,False +24021752001,5001.0,False,False +24021752101,3442.0,False,False +24021752102,4971.0,False,False +24021752201,2177.0,False,False +24021752202,4693.0,False,False +24021752204,8605.0,False,False +24021752301,5704.0,False,False +24021752302,4210.0,False,False +24021752303,3392.0,False,False +24021752501,5216.0,False,False +24021752502,2497.0,False,False +24021752601,4308.0,False,False +24021752602,2883.0,False,False +24021752603,3791.0,False,False +24021752801,2129.0,False,False +24021752802,3656.0,False,False +24021752900,3115.0,False,False +24021753001,4808.0,False,False +24021753002,2972.0,False,False +24021765100,3960.0,False,False +24021766800,5849.0,False,False +24021767500,2521.0,False,False +24021767600,2952.0,False,False +24021770700,3483.0,False,False +24021772200,1454.0,False,False +24021773500,4534.0,False,False +24021775302,4703.0,False,False +24021775400,3581.0,False,False +24021775600,3936.0,False,False +24023000100,3699.0,False,False +24023000200,4149.0,True,True +24023000300,2831.0,False,False +24023000400,2803.0,False,False +24023000500,4280.0,False,False +24023000600,5717.0,False,False +24023000700,5756.0,True,True +24025301102,3880.0,False,False +24025301105,3727.0,False,False +24025301106,4286.0,False,False +24025301107,3226.0,False,False +24025301108,3272.0,False,False +24025301201,2005.0,False,False +24025301202,7208.0,False,False +24025301204,4082.0,False,False +24025301205,4221.0,False,False +24025301301,3900.0,False,False +24025301302,6982.0,False,False +24025301401,7498.0,False,False +24025301402,2595.0,False,False +24025301601,6110.0,False,False +24025301602,8443.0,False,False +24025301702,9536.0,False,False +24025301703,5016.0,False,False +24025301704,3504.0,False,False +24025302100,2146.0,False,False +24025302200,3223.0,False,False +24025302400,3872.0,False,False +24025302801,3523.0,False,False +24025302802,4793.0,False,False +24025302901,2550.0,True,True +24025302902,4302.0,False,False +24025303101,6037.0,False,False +24025303102,2689.0,False,False +24025303201,5569.0,False,False +24025303203,3626.0,False,False +24025303204,4473.0,False,False +24025303205,1619.0,False,False +24025303206,3749.0,False,False +24025303300,6215.0,False,False +24025303400,4657.0,False,False +24025303501,6828.0,False,False +24025303502,3524.0,False,False +24025303602,3597.0,False,False +24025303603,7135.0,False,False +24025303605,6210.0,False,False +24025303606,3327.0,False,False +24025303700,3818.0,False,False +24025303801,2656.0,False,False +24025303802,2182.0,False,False +24025303803,4789.0,False,False +24025303900,2397.0,False,False +24025304101,4548.0,False,False +24025304102,4046.0,False,False +24025304201,6675.0,False,False +24025304202,6936.0,False,False +24025305100,7622.0,False,False +24025305200,2888.0,False,False +24025305300,1975.0,False,False +24025306100,4190.0,True,False +24025306200,2057.0,False,False +24025306300,2845.0,False,False +24025306400,6360.0,False,False +24025306500,3083.0,False,False +24027601103,6201.0,False,False +24027601104,6683.0,False,False +24027601105,4742.0,False,False +24027601107,5434.0,False,False +24027601108,3914.0,False,False +24027601201,8763.0,False,False +24027601203,7315.0,False,False +24027601204,6085.0,False,False +24027602100,8089.0,False,False +24027602201,3493.0,False,False +24027602202,5732.0,False,False +24027602302,7212.0,False,False +24027602303,3822.0,False,False +24027602304,5097.0,False,False +24027602305,3979.0,False,False +24027602306,5409.0,False,False +24027602600,8170.0,False,False +24027602700,5806.0,False,False +24027602800,6352.0,False,False +24027602900,4590.0,False,False +24027603001,6484.0,False,False +24027603003,4089.0,False,False +24027603004,7056.0,False,False +24027604001,6375.0,False,False +24027604002,8488.0,False,False +24027605102,11324.0,False,False +24027605103,5124.0,False,False +24027605104,5566.0,False,False +24027605401,5250.0,False,False +24027605402,7695.0,False,False +24027605502,5226.0,False,False +24027605503,5972.0,False,False +24027605504,2650.0,False,False +24027605505,6301.0,False,False +24027605601,6495.0,False,False +24027605602,8670.0,False,False +24027606601,3119.0,False,False +24027606603,8347.0,False,False +24027606604,4493.0,False,False +24027606606,5316.0,False,False +24027606607,4760.0,False,False +24027606701,2784.0,False,False +24027606704,6899.0,False,False +24027606705,2030.0,False,False +24027606706,4854.0,False,False +24027606707,3945.0,False,False +24027606803,5452.0,False,False +24027606804,3474.0,False,False +24027606805,4414.0,False,False +24027606806,8505.0,False,False +24027606901,6244.0,False,False +24027606904,4686.0,False,False +24027606905,6677.0,False,False +24027606906,6361.0,False,False +24027606907,6842.0,False,False +24029950100,3707.0,False,False +24029950200,4598.0,False,False +24029950300,5709.0,False,False +24029950400,3033.0,False,False +24029950500,2489.0,True,True +24029990000,0.0,False,False +24031700101,4653.0,False,False +24031700103,5248.0,False,False +24031700104,5695.0,False,False +24031700105,6397.0,False,False +24031700204,1895.0,False,False +24031700205,12514.0,False,False +24031700206,5787.0,False,False +24031700207,5442.0,False,False +24031700208,2266.0,False,False +24031700304,8223.0,False,False +24031700306,7814.0,False,False +24031700308,6267.0,False,False +24031700309,5600.0,False,False +24031700310,6677.0,False,False +24031700311,10111.0,False,False +24031700312,7294.0,False,False +24031700400,2261.0,False,False +24031700500,6738.0,False,False +24031700604,6462.0,False,False +24031700606,4344.0,False,False +24031700607,7424.0,False,False +24031700608,5607.0,False,False +24031700610,2111.0,False,False +24031700611,5762.0,False,False +24031700613,6297.0,False,False +24031700614,5135.0,False,False +24031700615,3005.0,False,False +24031700616,4675.0,False,False +24031700704,3020.0,False,True +24031700706,4508.0,False,False +24031700710,7044.0,False,False +24031700711,6481.0,False,False +24031700713,6128.0,True,True +24031700715,6556.0,False,False +24031700716,8355.0,False,False +24031700717,7424.0,False,True +24031700718,6170.0,False,False +24031700719,9595.0,False,True +24031700720,3576.0,False,False +24031700721,3296.0,True,True +24031700722,5203.0,False,False +24031700723,3735.0,False,False +24031700724,3568.0,True,True +24031700810,5160.0,False,False +24031700811,4352.0,False,False +24031700812,4060.0,False,False +24031700813,5939.0,False,False +24031700815,7824.0,False,False +24031700816,8249.0,False,False +24031700817,7808.0,False,False +24031700818,6538.0,False,False +24031700819,6960.0,False,False +24031700820,2685.0,False,False +24031700822,1886.0,False,False +24031700823,3428.0,False,False +24031700824,2722.0,False,False +24031700826,5740.0,False,False +24031700828,2209.0,False,False +24031700829,3262.0,False,False +24031700830,2845.0,False,False +24031700832,3434.0,False,True +24031700833,3890.0,False,True +24031700834,5107.0,True,True +24031700835,4836.0,False,False +24031700901,4293.0,False,False +24031700902,4242.0,False,False +24031700903,2424.0,False,False +24031700904,3424.0,False,True +24031700905,3869.0,False,False +24031701001,5700.0,False,False +24031701002,3945.0,False,False +24031701004,6018.0,False,False +24031701005,3339.0,False,False +24031701006,5456.0,False,False +24031701007,3327.0,False,False +24031701101,4932.0,False,False +24031701102,6630.0,False,True +24031701201,5643.0,False,False +24031701202,2646.0,False,False +24031701205,7102.0,False,False +24031701206,6298.0,False,False +24031701210,4048.0,False,False +24031701211,6796.0,False,False +24031701212,2666.0,False,False +24031701213,6892.0,False,False +24031701214,3819.0,False,False +24031701215,5703.0,False,False +24031701216,4280.0,False,False +24031701218,3155.0,False,False +24031701219,4180.0,True,True +24031701220,3824.0,False,False +24031701221,4466.0,False,False +24031701303,3401.0,False,False +24031701304,6047.0,False,False +24031701306,2808.0,False,False +24031701307,4409.0,False,False +24031701308,3388.0,False,False +24031701312,6787.0,False,False +24031701313,3796.0,False,False +24031701314,3105.0,False,False +24031701315,4423.0,False,False +24031701316,6592.0,False,False +24031701317,4315.0,False,False +24031701407,5545.0,False,False +24031701408,6712.0,False,False +24031701409,4509.0,False,False +24031701410,9577.0,False,False +24031701414,7396.0,False,False +24031701415,7597.0,False,False +24031701417,5929.0,False,False +24031701418,3445.0,False,False +24031701420,6292.0,False,False +24031701421,1657.0,False,False +24031701422,2939.0,False,False +24031701423,5117.0,False,False +24031701503,6611.0,False,False +24031701505,7737.0,False,False +24031701506,4896.0,False,False +24031701507,5176.0,False,False +24031701508,3878.0,False,False +24031701509,6765.0,False,True +24031701601,2515.0,False,False +24031701602,7759.0,True,True +24031701701,3826.0,False,False +24031701702,2562.0,False,True +24031701703,3589.0,False,False +24031701704,2935.0,False,False +24031701800,4982.0,False,False +24031701900,3357.0,True,True +24031702000,5653.0,True,True +24031702101,6459.0,False,True +24031702102,3563.0,False,False +24031702200,4325.0,False,False +24031702301,3650.0,False,True +24031702302,4091.0,False,False +24031702401,2498.0,False,False +24031702402,5142.0,False,False +24031702500,8075.0,False,False +24031702601,4419.0,False,False +24031702602,5343.0,False,False +24031702700,7596.0,False,False +24031702800,5454.0,False,False +24031702900,5215.0,False,False +24031703000,1758.0,False,False +24031703100,4605.0,False,False +24031703201,7905.0,False,False +24031703202,6267.0,False,False +24031703206,3780.0,False,False +24031703207,6302.0,False,True +24031703208,5826.0,False,False +24031703209,6908.0,False,False +24031703210,3245.0,False,False +24031703212,9711.0,False,False +24031703213,5869.0,True,True +24031703214,8173.0,True,True +24031703215,3648.0,False,True +24031703216,3733.0,False,False +24031703218,1934.0,False,False +24031703219,3361.0,False,False +24031703220,5622.0,True,False +24031703221,5625.0,False,False +24031703301,5223.0,False,True +24031703302,4172.0,False,False +24031703401,5479.0,False,False +24031703402,3645.0,False,False +24031703403,3718.0,False,False +24031703404,3158.0,False,False +24031703501,6605.0,False,True +24031703502,2787.0,False,False +24031703601,4442.0,False,False +24031703602,3043.0,False,False +24031703701,4464.0,False,False +24031703702,4365.0,False,False +24031703800,3756.0,False,False +24031703901,3384.0,False,False +24031703902,7457.0,False,False +24031704000,6468.0,False,False +24031704100,4983.0,False,False +24031704200,2098.0,False,False +24031704300,3994.0,False,False +24031704401,3289.0,False,False +24031704403,1559.0,False,False +24031704404,5288.0,False,False +24031704501,3475.0,False,False +24031704502,2546.0,False,False +24031704503,4011.0,False,False +24031704600,4919.0,False,False +24031704700,3412.0,False,False +24031704803,4017.0,False,False +24031704804,1819.0,False,False +24031704805,2154.0,False,False +24031704806,3699.0,False,False +24031705000,4690.0,False,False +24031705100,5133.0,False,False +24031705200,3388.0,False,False +24031705300,1886.0,False,False +24031705400,2973.0,False,False +24031705501,2639.0,False,False +24031705502,3941.0,False,False +24031705601,2762.0,False,False +24031705602,4626.0,False,False +24031705701,4452.0,False,False +24031705702,4578.0,False,False +24031705800,6351.0,False,False +24031705901,4473.0,False,False +24031705902,4269.0,False,False +24031705903,4501.0,False,False +24031706005,4446.0,False,False +24031706007,6971.0,False,False +24031706008,5305.0,False,False +24031706009,5590.0,False,False +24031706010,2987.0,False,False +24031706011,5449.0,False,False +24031706012,3259.0,False,False +24031706013,2889.0,False,False +24033800102,2541.0,False,False +24033800103,2409.0,False,False +24033800105,3909.0,False,False +24033800106,2648.0,False,False +24033800108,3373.0,False,False +24033800109,3720.0,False,False +24033800203,4655.0,False,False +24033800206,4133.0,False,False +24033800208,8835.0,False,False +24033800209,4404.0,False,False +24033800210,3193.0,False,True +24033800211,3437.0,False,True +24033800212,4931.0,False,False +24033800213,4443.0,False,False +24033800214,2900.0,False,False +24033800215,2733.0,False,False +24033800401,2623.0,False,False +24033800402,5114.0,False,False +24033800403,3773.0,False,False +24033800408,6985.0,False,False +24033800409,5837.0,False,False +24033800410,7077.0,False,False +24033800411,3995.0,False,False +24033800412,3664.0,False,False +24033800413,4219.0,False,False +24033800504,4904.0,False,False +24033800505,2482.0,False,False +24033800507,3225.0,False,False +24033800509,10110.0,False,False +24033800511,5136.0,False,False +24033800513,6319.0,False,False +24033800514,6015.0,False,False +24033800515,4600.0,False,False +24033800516,3932.0,False,False +24033800517,5729.0,False,False +24033800518,3892.0,False,False +24033800519,4261.0,False,False +24033800520,2055.0,False,False +24033800601,1853.0,False,False +24033800604,1615.0,False,False +24033800605,4801.0,False,False +24033800606,4908.0,False,False +24033800607,5962.0,False,False +24033800608,6378.0,False,False +24033800701,7507.0,False,False +24033800704,4962.0,False,False +24033800705,4135.0,False,False +24033800706,3829.0,False,False +24033800707,3236.0,False,False +24033800800,3081.0,False,False +24033800900,1517.0,False,False +24033801003,5543.0,False,False +24033801004,4931.0,False,False +24033801005,4143.0,False,False +24033801006,3839.0,False,False +24033801104,3079.0,False,False +24033801207,4285.0,False,False +24033801208,4744.0,False,False +24033801209,4698.0,False,False +24033801210,4086.0,False,False +24033801211,3274.0,False,False +24033801212,3278.0,False,False +24033801213,3536.0,False,False +24033801214,4423.0,False,False +24033801215,2635.0,False,False +24033801216,3770.0,False,False +24033801217,3986.0,False,False +24033801302,2638.0,False,False +24033801305,6423.0,False,False +24033801307,3909.0,False,False +24033801308,3743.0,False,False +24033801309,3467.0,False,False +24033801310,6194.0,False,False +24033801311,7073.0,False,False +24033801312,4231.0,False,False +24033801313,3164.0,False,False +24033801404,5169.0,False,False +24033801405,4136.0,False,True +24033801406,3126.0,False,False +24033801407,6574.0,False,False +24033801408,3246.0,False,False +24033801409,3121.0,False,False +24033801410,3287.0,False,False +24033801411,3688.0,False,False +24033801500,2603.0,False,True +24033801600,2318.0,False,False +24033801701,4267.0,False,False +24033801702,3944.0,False,False +24033801704,5018.0,False,True +24033801706,1560.0,False,False +24033801707,6430.0,False,True +24033801708,3690.0,False,False +24033801801,2089.0,False,False +24033801802,3547.0,False,False +24033801804,2147.0,False,False +24033801805,2277.0,False,False +24033801807,4888.0,False,False +24033801808,4168.0,False,False +24033801901,4877.0,False,False +24033801904,3219.0,False,False +24033801905,6128.0,False,False +24033801906,1825.0,True,True +24033801907,2888.0,False,False +24033801908,3257.0,False,False +24033802001,5381.0,True,False +24033802002,3625.0,False,False +24033802103,3340.0,False,False +24033802104,1941.0,False,False +24033802106,4291.0,False,False +24033802107,3923.0,False,False +24033802201,2437.0,False,False +24033802203,4903.0,False,False +24033802204,6250.0,False,False +24033802301,3944.0,False,True +24033802404,4472.0,True,True +24033802405,3809.0,False,False +24033802406,2331.0,False,False +24033802407,3270.0,False,False +24033802408,1817.0,False,False +24033802501,2223.0,True,False +24033802502,2221.0,False,False +24033802600,3360.0,False,True +24033802700,2942.0,False,True +24033802803,5526.0,False,False +24033802804,4837.0,True,False +24033802805,4575.0,False,False +24033802901,3832.0,True,True +24033803001,2966.0,False,False +24033803002,2569.0,False,False +24033803100,2590.0,False,True +24033803200,2903.0,True,True +24033803300,4377.0,False,False +24033803401,1405.0,True,True +24033803402,4059.0,True,True +24033803508,4401.0,False,False +24033803509,3095.0,True,True +24033803512,6622.0,False,False +24033803513,4339.0,False,False +24033803514,4694.0,False,False +24033803516,4875.0,False,False +24033803519,6184.0,False,False +24033803520,4536.0,False,False +24033803521,6884.0,False,False +24033803522,3625.0,False,False +24033803523,3731.0,False,False +24033803524,4678.0,False,False +24033803525,2293.0,False,False +24033803526,3181.0,False,False +24033803527,3169.0,False,False +24033803601,3700.0,False,False +24033803602,2352.0,False,False +24033803605,6897.0,False,False +24033803606,6055.0,False,False +24033803607,3743.0,False,False +24033803608,6097.0,False,False +24033803610,3580.0,False,False +24033803612,3213.0,False,True +24033803613,6142.0,True,True +24033803700,2710.0,False,False +24033803801,2374.0,False,True +24033803803,6020.0,False,False +24033803900,3442.0,False,True +24033804001,5500.0,True,True +24033804002,4117.0,False,True +24033804101,3542.0,False,False +24033804102,5707.0,False,False +24033804200,3204.0,False,False +24033804300,3512.0,True,True +24033804400,2517.0,False,False +24033804600,3211.0,False,False +24033804700,3465.0,False,False +24033804801,2537.0,False,True +24033804802,3126.0,False,True +24033804900,4062.0,False,True +24033805000,6273.0,False,True +24033805101,3863.0,False,True +24033805201,4561.0,True,True +24033805202,3834.0,False,True +24033805500,3435.0,True,True +24033805601,6655.0,True,True +24033805602,5664.0,True,True +24033805700,5782.0,False,True +24033805801,4523.0,False,True +24033805802,4229.0,True,True +24033805904,3457.0,False,True +24033805906,3730.0,True,True +24033805907,3873.0,True,True +24033805908,2123.0,False,True +24033805909,5004.0,False,False +24033806000,5174.0,False,True +24033806100,4118.0,False,False +24033806200,3837.0,False,False +24033806300,2788.0,False,False +24033806400,3775.0,False,False +24033806501,5415.0,True,True +24033806601,4359.0,True,True +24033806602,5435.0,True,True +24033806706,3167.0,False,False +24033806708,4439.0,False,False +24033806710,4992.0,False,False +24033806711,5498.0,False,False +24033806712,3109.0,False,False +24033806713,3896.0,False,False +24033806714,4788.0,False,True +24033806800,4003.0,False,False +24033806900,5078.0,False,False +24033807000,6762.0,False,True +24033807102,2631.0,False,False +24033807200,14369.0,False,False +24033807301,3492.0,False,False +24033807304,2273.0,False,False +24033807305,3490.0,False,True +24033807404,5476.0,False,False +24033807405,5374.0,False,False +24033807407,5526.0,False,False +24033807408,5660.0,False,False +24033807409,4168.0,False,False +24033807410,4747.0,False,False +24035810100,3052.0,False,False +24035810200,2660.0,False,False +24035810300,4532.0,False,False +24035810400,5962.0,False,False +24035810500,5513.0,False,False +24035810600,5107.0,False,False +24035810700,4006.0,False,False +24035810800,5918.0,False,False +24035810901,5593.0,False,False +24035810902,2993.0,False,False +24035811000,4296.0,False,False +24035990000,0.0,False,False +24035990100,0.0,False,False +24035990200,0.0,False,False +24037875000,6137.0,False,False +24037875100,5697.0,False,False +24037875201,5366.0,False,False +24037875202,6277.0,False,False +24037875300,2789.0,False,False +24037875400,6407.0,False,False +24037875500,11850.0,False,False +24037875600,8545.0,False,False +24037875700,7271.0,False,False +24037875801,1441.0,False,False +24037875802,4489.0,False,False +24037875901,7078.0,False,False +24037875902,8859.0,False,False +24037876001,5219.0,False,False +24037876002,10425.0,False,False +24037876100,7525.0,False,False +24037876200,6915.0,False,False +24037990000,0.0,False,False +24039930101,7235.0,False,True +24039930102,3745.0,True,True +24039930200,1594.0,True,True +24039930300,2418.0,False,False +24039930500,4046.0,True,True +24039930600,2702.0,True,True +24039980400,3989.0,False,False +24039990100,0.0,False,False +24041960100,4022.0,False,False +24041960201,4242.0,False,False +24041960300,3724.0,False,False +24041960400,5137.0,False,True +24041960501,4697.0,False,False +24041960502,3778.0,False,False +24041960600,1788.0,False,False +24041960700,3513.0,False,False +24041960800,2123.0,False,False +24041960900,4143.0,False,False +24041990000,0.0,False,False +24043000100,3482.0,False,False +24043000200,3779.0,False,False +24043000301,3296.0,True,True +24043000302,2674.0,True,True +24043000400,1838.0,True,True +24043000500,5732.0,True,True +24043000601,2188.0,True,True +24043000602,3024.0,True,True +24043000700,3375.0,True,True +24043000800,3322.0,True,True +24043000900,3808.0,True,True +24043001001,4803.0,False,False +24043001002,3857.0,False,False +24043010100,910.0,True,True +24043010200,4600.0,False,False +24043010300,7534.0,False,False +24043010400,7853.0,False,False +24043010500,6541.0,False,False +24043010600,5032.0,False,False +24043010700,3465.0,True,True +24043010801,4644.0,False,False +24043010802,2675.0,False,False +24043010900,9188.0,False,False +24043011000,6501.0,False,False +24043011100,6290.0,False,False +24043011201,9165.0,False,False +24043011202,4613.0,False,False +24043011301,4822.0,False,False +24043011302,3966.0,False,False +24043011400,6347.0,False,False +24043011500,7800.0,False,False +24043011600,2985.0,False,False +24045000100,6177.0,True,True +24045000200,1760.0,False,False +24045000300,1483.0,True,True +24045000400,4044.0,False,False +24045000500,3084.0,True,True +24045010101,6010.0,False,False +24045010102,3575.0,False,False +24045010200,5867.0,True,True +24045010300,8604.0,False,False +24045010400,6338.0,False,False +24045010501,5864.0,False,False +24045010502,9862.0,False,False +24045010603,6926.0,False,False +24045010604,5279.0,True,True +24045010605,4578.0,False,False +24045010606,4214.0,False,False +24045010701,4293.0,False,False +24045010702,8718.0,False,False +24045010800,5863.0,False,False +24047950000,1702.0,False,False +24047950100,2329.0,False,False +24047950300,2971.0,False,False +24047950400,2820.0,False,False +24047950600,3090.0,False,False +24047950700,2535.0,False,False +24047950800,5134.0,False,False +24047950900,1930.0,False,False +24047951000,4553.0,True,True +24047951100,7123.0,False,False +24047951200,3454.0,False,False +24047951300,2786.0,True,True +24047951400,3212.0,False,False +24047951500,4504.0,True,True +24047951700,3622.0,False,False +24047980000,0.0,False,False +24047990000,0.0,False,False +24510010100,3035.0,False,False +24510010200,2858.0,False,False +24510010300,2380.0,False,False +24510010400,2834.0,False,False +24510010500,1888.0,False,False +24510020100,1636.0,False,False +24510020200,1678.0,False,False +24510020300,3761.0,False,False +24510030100,2386.0,True,True +24510030200,2273.0,True,True +24510040100,5051.0,False,False +24510040200,984.0,False,False +24510060100,2653.0,True,True +24510060200,3037.0,True,True +24510060300,1881.0,False,False +24510060400,1561.0,False,False +24510070100,2966.0,True,True +24510070200,3696.0,True,True +24510070300,900.0,True,True +24510070400,1601.0,True,True +24510080101,3869.0,False,False +24510080102,2159.0,True,True +24510080200,1164.0,True,True +24510080301,1759.0,True,True +24510080302,2906.0,True,True +24510080400,1263.0,True,True +24510080500,1410.0,True,True +24510080600,1932.0,True,True +24510080700,604.0,False,True +24510080800,1583.0,True,True +24510090100,3758.0,True,True +24510090200,2756.0,False,False +24510090300,4476.0,False,False +24510090400,1520.0,True,True +24510090500,1747.0,True,True +24510090600,3010.0,True,True +24510090700,2950.0,True,True +24510090800,2709.0,True,True +24510090900,2691.0,True,True +24510100100,2259.0,True,True +24510100200,2858.0,True,True +24510100300,3326.0,True,True +24510110100,3177.0,False,False +24510110200,5968.0,False,False +24510120100,4787.0,False,False +24510120201,2227.0,False,False +24510120202,5272.0,False,False +24510120300,4153.0,False,False +24510120400,1842.0,True,True +24510120500,2190.0,False,False +24510120600,2814.0,True,True +24510120700,2207.0,False,False +24510130100,2558.0,True,True +24510130200,2751.0,False,False +24510130300,2222.0,True,True +24510130400,2171.0,True,True +24510130600,3614.0,False,False +24510130700,4734.0,False,False +24510130803,2443.0,False,False +24510130804,1993.0,False,False +24510130805,1017.0,False,False +24510130806,1423.0,False,False +24510140100,4455.0,False,True +24510140200,2906.0,True,True +24510140300,1932.0,True,True +24510150100,2172.0,True,True +24510150200,2330.0,True,True +24510150300,2079.0,True,True +24510150400,3824.0,True,True +24510150500,1477.0,True,True +24510150600,2726.0,True,True +24510150701,1599.0,True,True +24510150702,2139.0,True,True +24510150800,4719.0,True,True +24510150900,3371.0,False,False +24510151000,4794.0,True,True +24510151100,7440.0,False,True +24510151200,4113.0,True,True +24510151300,4379.0,True,True +24510160100,1936.0,True,True +24510160200,2479.0,True,True +24510160300,968.0,True,True +24510160400,1937.0,True,True +24510160500,3934.0,True,True +24510160600,3266.0,True,True +24510160700,4543.0,True,True +24510160801,3052.0,False,True +24510160802,3368.0,True,True +24510170100,1594.0,True,True +24510170200,2705.0,True,True +24510170300,1767.0,True,True +24510180100,2185.0,True,True +24510180200,947.0,True,True +24510180300,1732.0,False,False +24510190100,2305.0,True,True +24510190200,1538.0,True,True +24510190300,2158.0,True,True +24510200100,1824.0,True,True +24510200200,2072.0,True,True +24510200300,1356.0,True,True +24510200400,1519.0,True,True +24510200500,2709.0,True,True +24510200600,2311.0,True,True +24510200701,4797.0,True,True +24510200702,1026.0,True,True +24510200800,2170.0,False,False +24510210100,2470.0,False,False +24510210200,3529.0,True,True +24510220100,4447.0,False,False +24510230100,1872.0,False,False +24510230200,1982.0,False,False +24510230300,1408.0,False,False +24510240100,3320.0,False,False +24510240200,2746.0,False,False +24510240300,1977.0,False,False +24510240400,2721.0,False,False +24510250101,4116.0,False,False +24510250102,2732.0,False,False +24510250103,3378.0,True,True +24510250203,1940.0,True,True +24510250204,4312.0,True,True +24510250205,4008.0,True,True +24510250206,2250.0,False,False +24510250207,2337.0,True,True +24510250301,2303.0,True,True +24510250303,2229.0,True,True +24510250401,3959.0,True,True +24510250402,4614.0,True,True +24510250500,4252.0,True,True +24510250600,0.0,False,False +24510260101,5116.0,False,False +24510260102,4775.0,False,False +24510260201,5901.0,False,True +24510260202,5681.0,True,True +24510260203,3070.0,True,True +24510260301,4741.0,True,True +24510260302,6634.0,True,True +24510260303,969.0,True,True +24510260401,4148.0,True,True +24510260402,3315.0,True,True +24510260403,1764.0,True,True +24510260404,2061.0,True,True +24510260501,5186.0,True,True +24510260604,1492.0,True,True +24510260605,4947.0,True,True +24510260700,2933.0,False,True +24510260800,2332.0,True,True +24510260900,3359.0,False,False +24510261000,2824.0,True,True +24510261100,1813.0,False,False +24510270101,1638.0,False,False +24510270102,3774.0,False,False +24510270200,1870.0,False,False +24510270301,3074.0,False,False +24510270302,1887.0,False,False +24510270401,4892.0,False,False +24510270402,3792.0,False,False +24510270501,4010.0,False,False +24510270502,4229.0,False,False +24510270600,5170.0,False,False +24510270701,2106.0,False,True +24510270702,1912.0,False,False +24510270703,2996.0,False,False +24510270801,4087.0,False,False +24510270802,5154.0,False,True +24510270803,6367.0,False,False +24510270804,2990.0,False,False +24510270805,5584.0,False,False +24510270901,4525.0,False,False +24510270902,5091.0,False,False +24510270903,5241.0,False,False +24510271001,2515.0,True,True +24510271002,4250.0,True,True +24510271101,1928.0,False,False +24510271102,4597.0,False,False +24510271200,6282.0,False,False +24510271300,2455.0,False,False +24510271400,4015.0,False,False +24510271501,4161.0,False,False +24510271503,876.0,False,False +24510271600,4066.0,True,True +24510271700,4624.0,False,True +24510271801,2700.0,True,True +24510271802,2290.0,True,True +24510271900,3794.0,False,True +24510272003,6229.0,False,False +24510272004,3924.0,False,False +24510272005,3378.0,False,False +24510272006,3488.0,True,True +24510272007,4747.0,True,True +24510280101,3401.0,True,True +24510280102,6231.0,True,True +24510280200,5122.0,False,False +24510280301,3912.0,False,False +24510280302,2538.0,True,True +24510280401,3269.0,False,False +24510280402,1632.0,False,True +24510280403,5468.0,False,False +24510280404,2631.0,True,True +24510280500,2173.0,True,True +25001010100,2973.0,False,False +25001010206,3617.0,False,False +25001010208,1122.0,False,False +25001010304,2394.0,False,False +25001010306,2507.0,False,False +25001010400,3066.0,False,False +25001010500,2742.0,False,False +25001010600,3108.0,False,False +25001010700,2911.0,False,False +25001010800,4390.0,False,False +25001010900,5447.0,False,False +25001011002,4059.0,False,False +25001011100,4767.0,False,False +25001011200,3321.0,False,False +25001011300,2551.0,False,False +25001011400,2970.0,False,False +25001011500,3545.0,False,False +25001011600,3001.0,False,False +25001011700,1872.0,False,False +25001011801,2311.0,False,False +25001011802,4162.0,False,False +25001012001,5705.0,False,False +25001012002,2643.0,False,False +25001012101,5452.0,False,False +25001012102,3065.0,False,False +25001012200,4525.0,False,False +25001012502,3736.0,True,True +25001012601,3356.0,False,False +25001012602,5055.0,False,False +25001012700,4240.0,False,False +25001012800,3877.0,False,False +25001012900,3908.0,False,False +25001013002,2670.0,False,False +25001013100,5195.0,False,False +25001013200,4547.0,False,False +25001013300,3165.0,False,False +25001013400,3763.0,False,False +25001013500,7242.0,False,False +25001013600,6099.0,False,False +25001013700,4628.0,False,False +25001013800,5148.0,False,False +25001013900,4732.0,False,False +25001014002,4391.0,False,False +25001014100,949.0,False,False +25001014300,3949.0,False,False +25001014402,7075.0,False,False +25001014500,5508.0,False,False +25001014600,4307.0,False,False +25001014700,3344.0,False,False +25001014800,3367.0,True,True +25001014900,3574.0,False,False +25001015001,4471.0,False,False +25001015002,3822.0,False,False +25001015100,3872.0,False,False +25001015200,1983.0,False,False +25001015300,3297.0,True,True +25001990000,0.0,False,False +25003900100,3050.0,True,True +25003900200,4548.0,True,True +25003900300,2586.0,False,False +25003900400,5070.0,True,True +25003900500,3291.0,False,False +25003900600,3110.0,True,True +25003900700,2821.0,False,False +25003900800,4960.0,False,False +25003900900,4846.0,False,False +25003901100,3635.0,False,False +25003911100,2973.0,False,False +25003912100,6610.0,False,False +25003913100,4963.0,False,False +25003914100,5742.0,False,False +25003920101,4475.0,False,False +25003920102,3039.0,False,False +25003921300,4587.0,False,False +25003921400,1415.0,True,True +25003921500,2877.0,True,True +25003922100,2456.0,True,True +25003922200,3521.0,False,False +25003922300,2148.0,False,False +25003923100,3159.0,False,False +25003924100,1795.0,True,True +25003925100,6901.0,False,False +25003926100,3160.0,False,False +25003931100,1777.0,False,False +25003931300,1488.0,False,False +25003931400,1685.0,False,False +25003932200,2443.0,False,False +25003932300,1837.0,False,False +25003933200,1248.0,False,False +25003933300,1544.0,False,False +25003933400,2284.0,False,False +25003934200,1084.0,False,False +25003934300,1981.0,False,False +25003935100,2387.0,False,False +25003935200,4849.0,False,False +25003935300,4080.0,True,True +25005600100,4036.0,False,False +25005600202,4973.0,False,False +25005600203,6076.0,False,False +25005600204,4056.0,False,False +25005610100,5664.0,False,False +25005610202,5504.0,False,False +25005610203,6758.0,False,False +25005610204,6021.0,False,False +25005611101,5334.0,False,False +25005611102,5377.0,False,False +25005611201,2935.0,False,False +25005611202,6099.0,False,False +25005612100,4682.0,False,False +25005612200,9514.0,False,False +25005613100,6582.0,False,False +25005613300,6875.0,False,False +25005613400,3637.0,False,False +25005613600,3850.0,True,True +25005613700,4380.0,False,False +25005613800,5657.0,True,True +25005613901,2741.0,False,False +25005613902,5075.0,False,False +25005614000,4555.0,True,True +25005614101,7037.0,False,False +25005614102,6735.0,False,False +25005615100,7730.0,False,False +25005616100,6730.0,False,False +25005617101,5134.0,False,False +25005617102,4165.0,False,False +25005630101,3111.0,True,True +25005630102,4428.0,False,False +25005630200,8099.0,False,False +25005630300,8683.0,False,False +25005630400,4859.0,False,False +25005631100,7543.0,False,False +25005631200,8054.0,False,False +25005631300,4677.0,False,False +25005631400,2649.0,True,True +25005631500,3019.0,False,False +25005631600,3960.0,False,False +25005631700,7041.0,False,False +25005631800,7846.0,False,False +25005632100,6731.0,False,False +25005632200,8710.0,False,False +25005633100,5764.0,False,False +25005633200,6409.0,False,False +25005640100,5063.0,True,True +25005640200,6154.0,True,True +25005640300,3977.0,True,True +25005640400,2775.0,True,True +25005640500,4980.0,False,True +25005640600,4463.0,True,True +25005640700,2643.0,False,True +25005640800,3837.0,False,True +25005640901,5870.0,True,True +25005641000,2408.0,True,True +25005641101,1571.0,True,True +25005641200,3270.0,True,True +25005641300,5446.0,True,True +25005641400,2714.0,True,True +25005641500,2392.0,True,True +25005641600,2110.0,True,True +25005641700,5132.0,False,False +25005641800,1863.0,False,False +25005641900,2104.0,True,True +25005642000,2687.0,True,True +25005642100,3802.0,False,False +25005642200,4335.0,True,True +25005642300,2051.0,False,False +25005642400,3045.0,False,False +25005642500,4696.0,False,False +25005644101,6127.0,False,False +25005644102,5165.0,False,False +25005644200,6873.0,False,False +25005645101,4939.0,False,False +25005645102,5799.0,False,False +25005645103,5829.0,False,False +25005646101,7515.0,False,False +25005646103,5727.0,False,False +25005646104,2683.0,False,False +25005650101,5488.0,False,False +25005650102,4911.0,True,True +25005650201,3087.0,False,False +25005650202,2194.0,False,False +25005650300,3455.0,False,False +25005650400,3670.0,True,True +25005650500,3156.0,True,True +25005650600,3196.0,True,True +25005650700,2439.0,True,True +25005650800,3526.0,True,True +25005650900,2832.0,True,True +25005651001,3066.0,False,False +25005651002,3948.0,False,False +25005651100,4210.0,True,True +25005651200,2251.0,True,True +25005651300,1999.0,True,True +25005651400,3330.0,True,True +25005651500,3101.0,False,False +25005651600,3935.0,True,True +25005651700,2526.0,True,True +25005651800,1921.0,True,True +25005651900,1705.0,True,True +25005652000,2581.0,True,True +25005652100,2983.0,False,False +25005652200,2738.0,False,False +25005652300,2573.0,True,True +25005652400,2707.0,False,True +25005652500,2747.0,True,True +25005652600,2410.0,True,True +25005652700,3441.0,True,True +25005652800,3113.0,False,False +25005653101,6800.0,False,False +25005653102,5566.0,False,False +25005653203,4769.0,False,False +25005653204,3305.0,False,False +25005653301,5113.0,False,False +25005653304,3320.0,False,False +25005654100,6976.0,False,False +25005654200,3553.0,False,False +25005655100,4187.0,False,False +25005655200,5111.0,False,False +25005655300,3340.0,False,False +25005655400,3407.0,False,False +25005985500,5331.0,False,False +25005985600,5480.0,False,False +25005990000,0.0,False,False +25007200100,4107.0,False,False +25007200200,4665.0,False,False +25007200300,4320.0,False,False +25007200400,4220.0,False,False +25007990000,0.0,False,False +25009201100,3502.0,False,False +25009202101,2179.0,False,False +25009202102,6688.0,False,False +25009202200,6135.0,False,False +25009203100,7014.0,False,False +25009203200,4632.0,False,False +25009203301,4006.0,False,False +25009203302,4848.0,False,False +25009204101,4803.0,False,False +25009204102,5155.0,False,False +25009204200,4861.0,False,False +25009204300,4439.0,True,True +25009204400,3361.0,False,False +25009204500,3406.0,False,False +25009204600,4806.0,False,False +25009204701,5980.0,False,False +25009204702,6441.0,False,False +25009205100,5660.0,False,False +25009205200,5395.0,False,True +25009205300,4069.0,False,False +25009205400,4787.0,False,False +25009205500,5253.0,True,True +25009205600,3432.0,True,True +25009205700,4798.0,False,False +25009205800,3717.0,True,True +25009205900,4255.0,False,False +25009206000,3300.0,False,True +25009206100,4288.0,True,True +25009206200,5935.0,True,True +25009206300,4755.0,False,True +25009206400,5723.0,False,False +25009206500,3325.0,True,True +25009206600,4519.0,False,True +25009206700,3729.0,False,True +25009206800,4162.0,True,True +25009206900,4286.0,True,True +25009207000,2361.0,True,True +25009207100,3527.0,True,True +25009207200,2467.0,True,True +25009208101,4991.0,False,False +25009208102,3258.0,False,False +25009208200,5519.0,False,False +25009208300,8133.0,False,False +25009208400,6314.0,False,False +25009209100,6573.0,False,False +25009209200,6321.0,False,False +25009210100,6485.0,False,False +25009210200,5201.0,False,False +25009210300,9014.0,False,False +25009210400,7234.0,False,False +25009210500,6301.0,False,False +25009210600,4638.0,False,False +25009210700,4852.0,False,False +25009210800,4749.0,True,True +25009210900,4432.0,False,False +25009211100,4210.0,False,False +25009211200,6224.0,False,False +25009211300,6598.0,False,False +25009211401,4328.0,False,False +25009211402,6226.0,False,False +25009212100,9872.0,False,False +25009213100,8282.0,False,False +25009214100,6568.0,False,False +25009215101,4954.0,False,False +25009215102,3077.0,False,False +25009216100,5240.0,False,False +25009217100,7145.0,False,False +25009217201,4169.0,False,False +25009217202,3612.0,False,False +25009217300,4778.0,False,False +25009217400,6176.0,False,False +25009217500,6157.0,False,False +25009217600,9848.0,False,False +25009218100,5383.0,False,False +25009220101,4183.0,False,False +25009220102,3048.0,False,False +25009221100,4226.0,False,False +25009221300,4673.0,False,False +25009221400,3391.0,True,True +25009221500,3100.0,False,True +25009221600,2967.0,True,True +25009221700,2998.0,False,False +25009221800,1828.0,False,False +25009221901,3426.0,False,False +25009221902,3553.0,False,False +25009222100,3745.0,False,False +25009223100,4370.0,False,False +25009223200,3883.0,False,False +25009223300,5710.0,False,False +25009250100,2899.0,True,True +25009250200,6181.0,False,True +25009250300,2111.0,True,True +25009250400,4192.0,True,True +25009250500,4246.0,True,True +25009250600,5334.0,True,True +25009250700,5074.0,True,True +25009250800,8071.0,True,True +25009250900,2120.0,True,True +25009251000,1873.0,True,True +25009251100,2773.0,True,True +25009251200,1495.0,True,True +25009251300,3479.0,True,True +25009251400,5092.0,True,True +25009251500,5675.0,True,True +25009251600,6195.0,True,True +25009251700,5157.0,False,True +25009251800,7975.0,False,False +25009252101,3683.0,False,False +25009252102,4114.0,False,False +25009252201,3394.0,False,False +25009252202,3193.0,False,False +25009252300,7755.0,False,False +25009252400,4607.0,True,True +25009252501,4320.0,False,False +25009252502,4786.0,False,False +25009252601,7115.0,False,False +25009252602,4418.0,False,False +25009252603,2897.0,False,False +25009253100,5522.0,False,False +25009253201,3149.0,False,False +25009253202,7332.0,False,False +25009253203,4395.0,False,False +25009253204,6185.0,False,False +25009253205,4259.0,False,False +25009254100,6255.0,False,False +25009254200,5286.0,False,False +25009254301,4144.0,False,False +25009254302,4862.0,False,False +25009254401,3801.0,False,False +25009254402,7493.0,False,False +25009254403,3975.0,False,False +25009260100,5603.0,True,True +25009260200,3485.0,True,True +25009260301,4574.0,False,False +25009260302,2925.0,False,False +25009260401,3790.0,False,False +25009260402,6663.0,False,False +25009260500,3753.0,False,False +25009260600,3800.0,False,False +25009260700,4945.0,False,False +25009260800,5113.0,True,True +25009260900,4924.0,True,True +25009261000,3790.0,False,False +25009261101,4601.0,False,False +25009261102,5567.0,False,False +25009262100,6890.0,False,False +25009263100,4631.0,False,False +25009264100,6780.0,False,False +25009265101,3753.0,False,False +25009265102,4942.0,False,False +25009266100,4368.0,False,False +25009266200,5401.0,False,False +25009266300,3774.0,False,False +25009266400,3891.0,False,False +25009267101,3785.0,False,False +25009267102,5575.0,False,False +25009268100,2865.0,False,False +25009268200,6777.0,False,False +25009268300,4123.0,False,False +25009268400,4312.0,False,False +25009269100,7060.0,False,False +25009270100,6372.0,False,False +25009990100,0.0,False,False +25011040100,4501.0,False,False +25011040200,4370.0,False,False +25011040300,2981.0,False,False +25011040400,3398.0,False,False +25011040501,3866.0,False,False +25011040502,3778.0,False,False +25011040600,4765.0,False,False +25011040701,3884.0,True,True +25011040702,4395.0,False,False +25011040800,5231.0,False,False +25011040900,5017.0,False,False +25011041000,3065.0,False,False +25011041100,3830.0,False,False +25011041200,3128.0,False,False +25011041300,4725.0,True,True +25011041400,2627.0,True,True +25011041501,3417.0,False,False +25011041502,3599.0,False,False +25013800101,4037.0,True,True +25013800102,4439.0,True,True +25013800201,6546.0,True,True +25013800202,1482.0,True,True +25013800300,4408.0,False,False +25013800400,6367.0,True,True +25013800500,4051.0,True,True +25013800600,2374.0,True,True +25013800700,4263.0,True,True +25013800800,2123.0,True,True +25013800900,4250.0,True,True +25013801101,1710.0,True,True +25013801102,1186.0,True,True +25013801200,2498.0,True,True +25013801300,5143.0,True,True +25013801401,3785.0,True,True +25013801402,2003.0,False,True +25013801501,5420.0,True,True +25013801502,3169.0,True,True +25013801503,4460.0,True,True +25013801601,4746.0,False,False +25013801602,4951.0,False,False +25013801603,3696.0,False,False +25013801604,3831.0,False,False +25013801605,5114.0,True,True +25013801700,7677.0,False,True +25013801800,4222.0,True,True +25013801901,3708.0,True,True +25013801902,3630.0,True,True +25013802000,2963.0,True,True +25013802100,6271.0,False,False +25013802200,2887.0,True,True +25013802300,6868.0,True,True +25013802400,3852.0,False,False +25013802500,6487.0,False,False +25013802601,7547.0,True,True +25013802602,1975.0,False,False +25013810100,6342.0,False,False +25013810200,2364.0,False,False +25013810300,3531.0,False,False +25013810403,4109.0,True,True +25013810404,3795.0,False,False +25013810412,6287.0,False,False +25013810414,7100.0,False,False +25013810601,4235.0,True,True +25013810602,2712.0,False,False +25013810700,6334.0,False,False +25013810800,3856.0,False,True +25013810901,1963.0,True,True +25013810902,4375.0,False,False +25013811000,4354.0,False,False +25013811101,4802.0,True,True +25013811102,6281.0,True,True +25013811200,4717.0,False,False +25013811301,6050.0,False,False +25013811302,5742.0,False,False +25013811400,2335.0,True,True +25013811500,2197.0,True,True +25013811600,3952.0,True,True +25013811700,2217.0,True,True +25013811800,4085.0,True,True +25013811900,3603.0,False,False +25013812001,3370.0,True,True +25013812002,4590.0,True,True +25013812101,5524.0,False,False +25013812103,3932.0,True,True +25013812104,4436.0,False,False +25013812201,4594.0,True,True +25013812202,3862.0,False,False +25013812300,5458.0,True,True +25013812401,6451.0,False,False +25013812403,4127.0,False,False +25013812404,4117.0,False,False +25013812500,7870.0,False,False +25013812600,6275.0,False,False +25013812701,4385.0,True,False +25013812702,5274.0,False,False +25013812800,6749.0,False,False +25013812901,3440.0,False,False +25013812902,4655.0,False,False +25013812903,2801.0,False,False +25013813000,7064.0,False,False +25013813101,5989.0,False,False +25013813102,3731.0,False,False +25013813204,3169.0,False,False +25013813205,7273.0,False,False +25013813206,3920.0,False,False +25013813207,4982.0,False,False +25013813208,3162.0,False,False +25013813209,6190.0,False,False +25013813301,7317.0,False,False +25013813303,4374.0,False,False +25013813304,4100.0,False,False +25013813401,5278.0,False,False +25013813403,3870.0,False,False +25013813404,7094.0,False,False +25013813500,5178.0,False,False +25013813601,8333.0,False,False +25013813602,6305.0,False,False +25013813701,3606.0,False,False +25013813702,5173.0,False,False +25013813801,4718.0,False,False +25013813802,3658.0,False,False +25015820101,6056.0,False,False +25015820102,3745.0,True,True +25015820202,1283.0,False,False +25015820203,8237.0,False,False +25015820204,6768.0,False,False +25015820300,7057.0,False,False +25015820400,13198.0,False,True +25015820500,6203.0,False,False +25015820600,1788.0,False,False +25015820700,4890.0,False,False +25015820801,5525.0,False,False +25015820802,1153.0,False,False +25015820900,6322.0,False,False +25015821000,4296.0,False,False +25015821100,7004.0,False,False +25015821200,2393.0,False,False +25015821300,4010.0,False,False +25015821400,5319.0,False,False +25015821500,3274.0,False,False +25015821601,3344.0,False,False +25015821602,3664.0,False,False +25015821700,3516.0,False,False +25015821901,3640.0,False,False +25015821903,3282.0,False,False +25015821904,2630.0,False,False +25015822000,2416.0,False,False +25015822200,6024.0,False,False +25015822300,4842.0,False,False +25015822401,5851.0,False,False +25015822402,5267.0,False,False +25015822500,6144.0,False,False +25015822601,2058.0,False,False +25015822603,1858.0,False,False +25015822605,1234.0,False,False +25015822606,3489.0,False,False +25015822700,3252.0,False,False +25017300100,3220.0,False,False +25017301101,4124.0,False,False +25017301102,5349.0,False,False +25017310100,6221.0,True,True +25017310200,6770.0,False,False +25017310300,6252.0,False,False +25017310400,3129.0,True,True +25017310500,3705.0,False,True +25017310601,5959.0,False,False +25017310602,5446.0,False,False +25017310700,4925.0,False,True +25017311100,2495.0,True,True +25017311200,2858.0,True,True +25017311300,4067.0,False,True +25017311400,6177.0,False,False +25017311500,2880.0,False,False +25017311600,5830.0,False,False +25017311700,5230.0,False,True +25017311800,3624.0,True,True +25017311900,2709.0,True,True +25017312000,2897.0,True,True +25017312100,3376.0,True,True +25017312200,4657.0,False,True +25017312300,5358.0,False,False +25017312400,2196.0,True,True +25017312501,4592.0,False,False +25017312502,3917.0,False,False +25017313101,6562.0,False,False +25017313102,5802.0,False,False +25017314101,7303.0,False,False +25017314102,7682.0,False,False +25017314200,4639.0,False,False +25017314301,8498.0,False,False +25017314302,3251.0,False,False +25017315100,5840.0,False,False +25017315200,8563.0,False,False +25017315401,3943.0,False,False +25017315402,3208.0,False,False +25017315403,1805.0,False,False +25017315500,7739.0,False,False +25017316101,5326.0,False,False +25017316102,6672.0,False,False +25017316201,4373.0,False,False +25017316202,4402.0,False,False +25017316300,9076.0,False,False +25017316400,7300.0,False,False +25017316500,6051.0,False,False +25017317101,6645.0,False,False +25017317102,4600.0,False,False +25017317103,4703.0,False,False +25017317201,3069.0,False,False +25017317202,3328.0,False,False +25017317203,4212.0,False,False +25017317301,2684.0,False,False +25017317302,5885.0,False,False +25017318100,6826.0,False,False +25017318200,4890.0,False,False +25017318300,8082.0,False,False +25017318400,4544.0,False,False +25017320102,5393.0,False,False +25017320103,2949.0,False,False +25017320104,9256.0,False,False +25017321100,6516.0,False,False +25017321200,6804.0,False,False +25017321300,8216.0,False,True +25017321400,3724.0,False,False +25017321500,6215.0,False,False +25017321600,8261.0,False,False +25017322100,4813.0,False,False +25017322200,4151.0,False,False +25017322300,6321.0,False,False +25017322400,4602.0,False,False +25017323100,7133.0,False,False +25017324101,5679.0,False,False +25017324102,4392.0,False,False +25017325100,8106.0,False,False +25017326101,4636.0,False,False +25017326102,6677.0,False,False +25017327101,3881.0,False,False +25017327102,4471.0,False,False +25017327103,3753.0,False,False +25017328100,3366.0,False,False +25017330100,8899.0,False,False +25017330200,6682.0,False,False +25017331101,3190.0,False,False +25017331102,7346.0,False,False +25017331200,5569.0,False,False +25017331300,7272.0,False,False +25017332100,6710.0,False,False +25017332200,9434.0,False,False +25017332300,7478.0,False,False +25017332400,4028.0,False,False +25017333100,7761.0,False,False +25017333200,5199.0,False,False +25017333300,3535.0,False,False +25017333400,6284.0,False,False +25017333501,5842.0,False,False +25017333502,3209.0,False,False +25017333600,8474.0,False,False +25017334100,6844.0,False,False +25017334200,3998.0,False,False +25017334300,7720.0,False,False +25017334400,6570.0,False,False +25017335100,5705.0,False,False +25017335200,6554.0,False,False +25017335301,4445.0,False,False +25017335302,5014.0,False,False +25017335400,5275.0,False,False +25017336100,5481.0,False,False +25017336200,6065.0,False,False +25017336300,6582.0,False,False +25017336401,5380.0,False,False +25017336402,4605.0,False,False +25017337101,3159.0,False,False +25017337102,5553.0,False,False +25017337201,3211.0,False,False +25017337202,5204.0,False,False +25017337300,6096.0,False,False +25017338100,3177.0,False,False +25017338200,4087.0,False,False +25017338300,3428.0,False,False +25017338400,6224.0,False,False +25017338500,5822.0,False,False +25017339100,6388.0,False,False +25017339200,5995.0,False,False +25017339300,2617.0,False,False +25017339400,3690.0,False,False +25017339500,5669.0,False,False +25017339600,5181.0,False,False +25017339700,3893.0,False,False +25017339801,5026.0,False,False +25017339802,5184.0,False,False +25017339900,5101.0,False,False +25017340000,2463.0,False,False +25017340100,6430.0,False,False +25017341101,3876.0,False,False +25017341102,4320.0,False,False +25017341200,6945.0,False,True +25017341300,5455.0,False,True +25017341400,6541.0,False,True +25017341500,5449.0,False,True +25017341600,5976.0,False,False +25017341700,5467.0,False,False +25017341800,6585.0,True,True +25017341901,1372.0,False,False +25017341902,8998.0,False,False +25017342101,5096.0,False,True +25017342102,4033.0,False,True +25017342201,5038.0,False,True +25017342202,3893.0,False,False +25017342300,7661.0,False,True +25017342400,7282.0,False,True +25017342500,8369.0,False,True +25017342600,4746.0,False,True +25017350103,2260.0,False,False +25017350104,7926.0,False,True +25017350200,7181.0,False,False +25017350300,2799.0,False,False +25017350400,5740.0,False,False +25017350500,1593.0,False,False +25017350600,5054.0,False,False +25017350700,5849.0,False,False +25017350800,2090.0,False,False +25017350900,3720.0,False,False +25017351000,6787.0,False,False +25017351100,5690.0,False,False +25017351203,4457.0,False,False +25017351204,4711.0,False,False +25017351300,4171.0,False,False +25017351403,4774.0,False,True +25017351404,3791.0,False,False +25017351500,2313.0,False,True +25017352101,2669.0,False,False +25017352102,2489.0,False,False +25017352200,1762.0,False,True +25017352300,4725.0,False,False +25017352400,2086.0,False,False +25017352500,2864.0,False,False +25017352600,2893.0,False,False +25017352700,2250.0,False,True +25017352800,2332.0,False,False +25017352900,2916.0,False,False +25017353000,3803.0,False,False +25017353101,2647.0,False,False +25017353102,4888.0,False,False +25017353200,5219.0,False,False +25017353300,4452.0,False,False +25017353400,3180.0,False,False +25017353500,2797.0,False,False +25017353600,4857.0,False,False +25017353700,5858.0,False,False +25017353800,4527.0,False,False +25017353900,6039.0,False,False +25017354000,4414.0,False,False +25017354100,2921.0,False,False +25017354200,3219.0,False,False +25017354300,3475.0,False,False +25017354400,1732.0,False,False +25017354500,2935.0,False,False +25017354600,6133.0,False,False +25017354700,2854.0,False,False +25017354800,2506.0,False,False +25017354900,8069.0,False,False +25017355000,3121.0,False,False +25017356100,3262.0,False,False +25017356300,5355.0,False,False +25017356400,7791.0,False,False +25017356500,7321.0,False,False +25017356601,4610.0,False,False +25017356602,4270.0,False,False +25017356701,5634.0,False,False +25017356702,7061.0,False,False +25017357100,4442.0,False,False +25017357200,3275.0,False,False +25017357300,3189.0,False,False +25017357400,2325.0,False,False +25017357500,2232.0,False,False +25017357600,2774.0,False,False +25017357700,3960.0,False,False +25017357800,3916.0,False,False +25017358100,5449.0,False,False +25017358300,5822.0,False,False +25017358400,5119.0,False,False +25017358500,5521.0,False,False +25017358600,5931.0,False,False +25017358700,5498.0,False,False +25017359100,6572.0,False,False +25017359300,7570.0,False,False +25017360100,1973.0,False,False +25017360200,4857.0,False,False +25017361100,5756.0,False,False +25017361200,7193.0,False,False +25017361300,6167.0,False,False +25017362100,5224.0,False,False +25017363102,6690.0,False,False +25017363103,3653.0,False,False +25017363104,6235.0,False,False +25017363201,3179.0,False,False +25017363202,3870.0,False,False +25017364101,5584.0,False,False +25017364102,5170.0,False,False +25017365100,8129.0,False,False +25017365201,6106.0,False,False +25017365202,4887.0,False,False +25017366100,4789.0,False,False +25017366201,3634.0,False,False +25017366202,5379.0,False,False +25017367100,4417.0,False,False +25017367200,7695.0,False,False +25017368101,6515.0,False,False +25017368102,3991.0,False,False +25017368200,4270.0,False,False +25017368300,5007.0,False,False +25017368400,8153.0,False,False +25017368500,2983.0,False,False +25017368600,5585.0,False,False +25017368700,2489.0,False,False +25017368800,5329.0,False,False +25017368901,7297.0,False,False +25017368902,4312.0,False,False +25017369000,1596.0,False,False +25017369100,5250.0,False,False +25017370101,7459.0,False,False +25017370102,8573.0,False,False +25017370201,3700.0,False,False +25017370202,4249.0,False,False +25017370300,5955.0,False,False +25017370400,5465.0,False,False +25017373100,4968.0,False,False +25017373200,5115.0,False,False +25017373300,3287.0,False,False +25017373400,3581.0,False,False +25017373500,5913.0,False,False +25017373600,6474.0,False,False +25017373700,3826.0,False,False +25017373800,5932.0,False,False +25017373900,6396.0,False,False +25017374000,4987.0,False,False +25017374100,4922.0,False,False +25017374200,4357.0,False,False +25017374300,3567.0,False,False +25017374400,5544.0,False,False +25017374500,4597.0,False,False +25017374600,5357.0,False,False +25017374700,4745.0,False,False +25017374800,5025.0,False,False +25017382100,5262.0,False,False +25017382200,5365.0,False,False +25017382300,6065.0,False,False +25017382400,5294.0,False,False +25017382500,5070.0,False,False +25017382601,4578.0,False,False +25017382602,4494.0,False,False +25017383101,3557.0,True,True +25017383102,5642.0,True,True +25017383200,6141.0,False,True +25017383300,3154.0,False,False +25017383400,7047.0,True,True +25017383501,5083.0,False,True +25017383502,3657.0,False,False +25017383600,6192.0,False,False +25017383700,5031.0,False,False +25017383800,6191.0,False,False +25017383901,8032.0,False,False +25017383902,5423.0,False,False +25017384001,1501.0,False,False +25017384002,5657.0,False,False +25017385100,7389.0,False,False +25017385201,2644.0,False,False +25017385202,7677.0,False,False +25017386100,4316.0,False,False +25017387100,4216.0,False,False +25017387201,6260.0,False,False +25017387202,4248.0,False,False +25017388100,5561.0,False,False +25017388200,7633.0,False,False +25017388300,6036.0,False,True +25017980000,0.0,False,False +25019950100,1649.0,False,False +25019950200,5270.0,False,False +25019950307,518.0,False,False +25019950400,2680.0,False,False +25019950500,1051.0,False,False +25019990000,0.0,False,False +25021400100,5021.0,False,False +25021400200,6600.0,False,False +25021400300,4203.0,False,False +25021400400,5786.0,False,False +25021400500,5042.0,False,False +25021400600,5365.0,False,False +25021400700,3356.0,False,False +25021400800,5349.0,False,False +25021400900,4089.0,False,False +25021401000,3307.0,False,False +25021401100,3967.0,False,False +25021401200,7095.0,False,False +25021402101,3584.0,False,False +25021402102,4276.0,False,False +25021402200,2292.0,False,False +25021402300,4645.0,False,False +25021402400,6381.0,False,False +25021402500,4105.0,False,False +25021403100,6858.0,False,False +25021403300,4347.0,False,False +25021403400,6903.0,False,False +25021403500,6596.0,False,False +25021404100,4164.0,False,False +25021404201,3698.0,False,False +25021404202,5051.0,False,False +25021404301,5509.0,False,False +25021404302,3811.0,False,False +25021404400,6514.0,False,False +25021405100,6044.0,False,False +25021406101,6070.0,False,False +25021406102,6771.0,False,False +25021407100,8233.0,False,False +25021408101,8170.0,False,False +25021408102,5155.0,False,False +25021409101,6260.0,False,False +25021409102,5526.0,False,False +25021410100,7044.0,False,False +25021410300,4589.0,False,False +25021410400,6094.0,False,False +25021411100,8285.0,False,False +25021411200,7146.0,False,False +25021411301,5680.0,False,False +25021411302,4018.0,False,False +25021412100,6854.0,False,False +25021412200,3938.0,False,False +25021412300,5344.0,False,False +25021413100,5191.0,False,False +25021413200,6987.0,False,False +25021413300,5011.0,False,False +25021413401,3134.0,False,False +25021413402,4404.0,False,False +25021413500,4579.0,False,False +25021414100,5588.0,False,False +25021414200,7656.0,False,False +25021414300,5282.0,False,False +25021415101,4866.0,False,False +25021415102,8269.0,False,False +25021415200,6063.0,False,False +25021415300,4171.0,False,False +25021416101,5569.0,False,False +25021416102,4011.0,False,False +25021416200,7040.0,False,False +25021416300,4875.0,False,False +25021416400,6077.0,False,False +25021417100,4961.0,False,False +25021417200,8232.0,False,True +25021417300,3047.0,False,False +25021417400,2563.0,False,False +25021417501,5068.0,False,True +25021417502,4486.0,False,True +25021417601,4812.0,False,True +25021417602,4972.0,False,False +25021417701,5458.0,False,False +25021417702,2823.0,False,False +25021417801,4890.0,False,False +25021417802,3278.0,True,True +25021417901,6939.0,False,False +25021417902,3723.0,False,False +25021418002,7070.0,False,False +25021418003,2730.0,False,False +25021418004,4675.0,False,True +25021418101,4654.0,False,False +25021418102,3059.0,False,False +25021418200,6767.0,False,False +25021419100,5937.0,False,False +25021419200,5108.0,False,False +25021419300,4295.0,False,False +25021419400,3287.0,False,False +25021419500,3233.0,False,False +25021419600,6849.0,False,False +25021419700,4183.0,False,False +25021419800,4328.0,False,False +25021420100,9248.0,False,False +25021420201,3359.0,False,False +25021420202,6457.0,False,False +25021420301,7106.0,False,False +25021420302,7894.0,False,False +25021421100,5692.0,False,False +25021421200,5353.0,False,False +25021422100,5463.0,False,False +25021422200,8009.0,False,False +25021422301,3209.0,False,False +25021422302,6908.0,False,False +25021422400,7837.0,False,False +25021422501,5245.0,False,False +25021422502,5137.0,False,False +25021422600,7048.0,False,False +25021422700,3780.0,False,False +25021422800,4098.0,False,False +25021423100,8484.0,False,False +25021440100,9183.0,False,False +25021441202,3133.0,False,False +25021441203,3893.0,False,False +25021441204,4797.0,False,False +25021442101,5627.0,False,False +25021442102,7573.0,False,False +25021442103,7424.0,False,False +25021442201,4257.0,False,False +25021442202,8375.0,False,False +25021443101,7856.0,False,False +25021443102,9252.0,False,False +25021456101,4056.0,False,False +25021456102,5213.0,False,True +25021456200,4016.0,False,False +25021456301,2092.0,True,True +25021456302,5082.0,False,False +25021456401,2615.0,False,False +25021456402,5565.0,False,False +25021457100,4500.0,False,False +25021457200,6266.0,False,False +25023500101,3888.0,False,False +25023500103,2009.0,False,False +25023500104,4558.0,False,False +25023501101,3478.0,False,False +25023501102,8595.0,False,False +25023501201,4071.0,False,False +25023501202,7508.0,False,False +25023502101,6474.0,False,False +25023502102,5593.0,False,False +25023502200,5886.0,False,False +25023503101,7069.0,False,False +25023503102,7390.0,False,False +25023504101,5646.0,False,False +25023504102,5408.0,False,False +25023505101,6542.0,False,False +25023505102,5153.0,False,False +25023505200,7025.0,False,False +25023506101,6822.0,False,False +25023506102,5821.0,False,False +25023506202,2646.0,False,False +25023506203,5350.0,False,False +25023506204,5199.0,False,False +25023507101,5642.0,False,False +25023507103,4429.0,False,False +25023507104,5741.0,False,False +25023508101,6934.0,False,False +25023508102,5127.0,False,False +25023508200,6319.0,False,False +25023509101,7756.0,False,False +25023509102,5810.0,False,False +25023510100,4398.0,False,False +25023510200,6368.0,False,False +25023510300,4185.0,True,True +25023510400,3585.0,True,True +25023510501,2988.0,False,False +25023510502,5580.0,True,True +25023510503,4740.0,False,True +25023510600,3152.0,False,False +25023510700,6636.0,False,False +25023510800,6986.0,True,True +25023510900,2393.0,True,True +25023511000,3036.0,True,True +25023511100,5214.0,False,False +25023511200,4965.0,False,True +25023511301,4948.0,False,False +25023511302,3245.0,False,False +25023511400,4299.0,True,True +25023511500,5048.0,False,True +25023511600,6878.0,False,False +25023511701,4397.0,False,False +25023511702,2553.0,False,False +25023520100,6922.0,False,False +25023520201,4013.0,False,False +25023520202,5501.0,False,False +25023521101,4554.0,False,False +25023521102,3554.0,False,False +25023521201,3226.0,False,False +25023521202,3722.0,False,False +25023522101,4716.0,False,False +25023522102,6061.0,False,False +25023523100,3431.0,False,False +25023523201,2950.0,False,False +25023523202,8085.0,False,False +25023524101,3182.0,False,False +25023524102,4016.0,False,False +25023525101,6586.0,False,False +25023525104,6538.0,False,False +25023525203,5566.0,False,False +25023525204,3926.0,False,False +25023525300,1610.0,False,False +25023526100,7842.0,False,False +25023530100,4450.0,False,False +25023530200,4091.0,False,False +25023530300,3793.0,False,False +25023530400,5969.0,False,False +25023530500,5271.0,False,False +25023530600,6614.0,False,False +25023530700,5636.0,False,False +25023530801,6351.0,False,False +25023530802,4623.0,False,False +25023530901,8811.0,False,False +25023530902,4415.0,False,False +25023540101,4115.0,False,False +25023540102,2646.0,False,False +25023540103,4611.0,False,False +25023541100,5580.0,False,False +25023542101,8094.0,False,False +25023542102,2613.0,False,False +25023542200,6800.0,False,False +25023542300,7343.0,False,False +25023543100,2954.0,False,False +25023544100,5855.0,False,False +25023544200,5865.0,False,False +25023545100,6799.0,False,False +25023545200,6248.0,False,False +25023545300,4003.0,False,False +25023545400,5591.0,False,False +25023560100,6336.0,False,False +25023561100,5132.0,False,False +25023561200,3210.0,False,False +25023990003,0.0,False,False +25025000100,5884.0,False,False +25025000201,4125.0,False,False +25025000202,4461.0,False,True +25025000301,3074.0,False,False +25025000302,3447.0,False,False +25025000401,5696.0,False,False +25025000402,3700.0,False,False +25025000502,5540.0,False,False +25025000503,2087.0,False,False +25025000504,4959.0,False,False +25025000601,3798.0,False,False +25025000602,4158.0,False,False +25025000701,4368.0,False,False +25025000703,2020.0,False,False +25025000704,4688.0,False,False +25025000802,6701.0,False,True +25025000803,5852.0,False,False +25025010103,3686.0,False,False +25025010104,5004.0,False,False +25025010203,5596.0,False,False +25025010204,3810.0,False,False +25025010300,5351.0,False,False +25025010403,2753.0,False,False +25025010404,5135.0,False,False +25025010405,6008.0,False,True +25025010408,1497.0,False,False +25025010500,3413.0,False,False +25025010600,3168.0,False,False +25025010701,2383.0,False,False +25025010702,2579.0,False,False +25025010801,3002.0,False,False +25025010802,3238.0,False,False +25025020101,4975.0,False,False +25025020200,3584.0,False,False +25025020301,2130.0,False,False +25025020302,1089.0,False,False +25025020303,4489.0,False,False +25025030100,2243.0,False,False +25025030200,1678.0,False,False +25025030300,5524.0,False,False +25025030400,2336.0,False,False +25025030500,2492.0,False,False +25025040100,2442.0,False,False +25025040200,1975.0,True,True +25025040300,4665.0,False,False +25025040401,2964.0,False,False +25025040600,3395.0,False,False +25025040801,4449.0,True,True +25025050101,5656.0,True,True +25025050200,5713.0,True,True +25025050300,2803.0,True,True +25025050400,2284.0,True,True +25025050500,2278.0,False,True +25025050600,2481.0,False,True +25025050700,5607.0,True,True +25025050901,4587.0,True,True +25025051000,4721.0,False,True +25025051101,7687.0,False,True +25025051200,3033.0,False,False +25025060101,3763.0,False,False +25025060200,2103.0,False,False +25025060301,3737.0,False,False +25025060400,5622.0,False,False +25025060501,4249.0,False,False +25025060600,4162.0,False,False +25025060700,2557.0,True,True +25025060800,4694.0,False,False +25025061000,3158.0,True,True +25025061101,2305.0,True,True +25025061200,4584.0,False,False +25025070101,7409.0,False,True +25025070200,5373.0,False,True +25025070300,4450.0,False,False +25025070402,2701.0,True,True +25025070500,5843.0,False,True +25025070600,2491.0,False,False +25025070700,2676.0,False,False +25025070800,3597.0,False,False +25025070900,3132.0,False,True +25025071101,3980.0,False,True +25025071201,3701.0,True,True +25025080100,2749.0,True,True +25025080300,2205.0,True,True +25025080401,3040.0,True,True +25025080500,3600.0,False,True +25025080601,4022.0,False,True +25025080801,4679.0,False,True +25025080900,3586.0,False,False +25025081001,5005.0,True,True +25025081100,4116.0,False,False +25025081200,3712.0,True,True +25025081300,4885.0,True,True +25025081400,2924.0,False,False +25025081500,2807.0,True,True +25025081700,3990.0,True,True +25025081800,3300.0,True,True +25025081900,3704.0,True,True +25025082000,3421.0,True,True +25025082100,5998.0,True,True +25025090100,5026.0,True,True +25025090200,2348.0,True,True +25025090300,3095.0,True,True +25025090400,4396.0,True,True +25025090600,2740.0,True,True +25025090700,3878.0,False,True +25025090901,3653.0,False,True +25025091001,2821.0,False,True +25025091100,4818.0,False,True +25025091200,3375.0,False,True +25025091300,2676.0,True,True +25025091400,3244.0,True,True +25025091500,5192.0,True,True +25025091600,3089.0,True,True +25025091700,3267.0,True,True +25025091800,3579.0,True,True +25025091900,4528.0,True,True +25025092000,5590.0,False,True +25025092101,7321.0,False,True +25025092200,3282.0,False,False +25025092300,3443.0,False,False +25025092400,6413.0,True,True +25025100100,7013.0,True,True +25025100200,3328.0,True,True +25025100300,4394.0,True,True +25025100400,6040.0,True,True +25025100500,6623.0,False,True +25025100601,6321.0,False,False +25025100603,1912.0,False,False +25025100700,4410.0,False,False +25025100800,6230.0,False,False +25025100900,4684.0,False,False +25025101001,6014.0,True,True +25025101002,6662.0,False,True +25025101101,3592.0,False,True +25025101102,5265.0,True,True +25025110103,6812.0,False,False +25025110201,2534.0,False,True +25025110301,2656.0,False,False +25025110401,3807.0,True,True +25025110403,4881.0,False,False +25025110501,3429.0,False,False +25025110502,4740.0,False,False +25025110601,2997.0,False,False +25025110607,5675.0,False,False +25025120103,1852.0,False,False +25025120104,2335.0,False,False +25025120105,2696.0,False,False +25025120201,3991.0,False,False +25025120301,5326.0,False,False +25025120400,6511.0,False,False +25025120500,2850.0,False,False +25025120600,2507.0,False,False +25025120700,2243.0,False,False +25025130100,6807.0,False,False +25025130200,5026.0,False,False +25025130300,4456.0,False,False +25025130402,4762.0,False,False +25025130404,3394.0,False,False +25025130406,6084.0,False,True +25025140102,5779.0,False,True +25025140105,4099.0,False,False +25025140106,2299.0,True,True +25025140107,2912.0,False,False +25025140201,2454.0,False,False +25025140202,6874.0,False,False +25025140300,7750.0,True,True +25025140400,9056.0,False,False +25025160101,8870.0,True,True +25025160200,4151.0,True,True +25025160300,2283.0,False,True +25025160400,3276.0,True,True +25025160501,5854.0,True,True +25025160502,5105.0,True,True +25025160601,4713.0,True,True +25025160602,5740.0,False,True +25025170100,7935.0,True,True +25025170200,4844.0,True,True +25025170300,9417.0,False,False +25025170400,5041.0,True,True +25025170501,4117.0,False,False +25025170502,2430.0,False,False +25025170601,5530.0,False,True +25025170701,2099.0,True,True +25025170702,5798.0,False,True +25025170800,6481.0,False,True +25025180101,4992.0,False,False +25025180200,4330.0,False,False +25025180301,2864.0,False,False +25025180400,2001.0,False,False +25025180500,4355.0,False,False +25025980101,457.0,True,True +25025980300,380.0,True,True +25025980700,0.0,False,False +25025981000,0.0,False,False +25025981100,442.0,True,True +25025981201,0.0,False,False +25025981202,241.0,False,False +25025981300,413.0,False,False +25025981501,0.0,False,False +25025981502,0.0,False,False +25025981600,0.0,False,False +25025981700,0.0,False,False +25025981800,32.0,False,False +25025990101,67.0,False,False +25027700100,6281.0,False,False +25027701100,8991.0,False,False +25027702200,3216.0,False,False +25027703100,4343.0,False,False +25027703200,3729.0,False,False +25027703300,3641.0,False,False +25027704200,2972.0,False,False +25027705100,8130.0,False,False +25027706100,4708.0,False,False +25027707100,4082.0,True,True +25027707200,2144.0,True,True +25027707300,4059.0,True,False +25027707400,4547.0,False,False +25027707500,5778.0,False,False +25027708100,7766.0,False,False +25027709100,4064.0,False,False +25027709201,7530.0,False,False +25027709202,6944.0,True,True +25027709400,4625.0,True,True +25027709501,2118.0,False,False +25027709502,5839.0,False,False +25027709600,2708.0,True,True +25027709701,5282.0,False,False +25027709702,2496.0,False,False +25027710100,2875.0,False,False +25027710200,6465.0,False,False +25027710300,2902.0,False,False +25027710400,2302.0,False,False +25027710500,3190.0,True,True +25027710600,8124.0,False,False +25027710700,1644.0,True,True +25027710800,4960.0,True,True +25027711000,3234.0,False,True +25027711100,5006.0,False,False +25027712101,6829.0,False,False +25027712102,4573.0,False,False +25027713100,8044.0,False,False +25027715100,5299.0,False,False +25027716100,7728.0,False,False +25027716200,2623.0,False,False +25027716300,3584.0,False,False +25027717100,3182.0,False,False +25027718100,4623.0,False,False +25027719100,8091.0,False,False +25027720100,3455.0,False,False +25027721101,1833.0,False,False +25027721102,8685.0,False,False +25027722100,5539.0,False,False +25027723100,4259.0,False,False +25027724100,3728.0,False,False +25027725100,4774.0,False,False +25027726100,6136.0,False,False +25027726200,5792.0,False,False +25027727100,4900.0,False,False +25027728100,5138.0,False,False +25027728200,4178.0,False,False +25027728300,4642.0,False,False +25027728400,5093.0,False,False +25027729100,5646.0,False,False +25027729200,2320.0,False,False +25027730100,6195.0,False,False +25027730200,5839.0,False,False +25027730300,4876.0,False,False +25027730401,5201.0,True,True +25027730402,2203.0,False,False +25027730500,3444.0,True,True +25027730600,9073.0,False,False +25027730700,6581.0,False,False +25027730801,3623.0,False,False +25027730802,2016.0,False,False +25027730901,3170.0,False,False +25027730902,3998.0,False,False +25027731001,2203.0,False,False +25027731002,6138.0,False,False +25027731101,4053.0,True,True +25027731102,2233.0,False,False +25027731202,1525.0,False,False +25027731203,5257.0,False,True +25027731204,2311.0,True,True +25027731300,3893.0,True,True +25027731400,4032.0,True,True +25027731500,4412.0,True,True +25027731600,7317.0,False,True +25027731700,3087.0,True,True +25027731800,7322.0,True,True +25027731900,4954.0,True,True +25027732001,3884.0,True,True +25027732002,4522.0,False,False +25027732201,2665.0,False,True +25027732202,3539.0,False,False +25027732203,3470.0,False,True +25027732301,4662.0,False,False +25027732302,4319.0,True,True +25027732400,7146.0,True,True +25027732500,1581.0,True,True +25027732600,3403.0,True,True +25027732700,3969.0,True,True +25027732801,4950.0,False,False +25027732802,4137.0,False,False +25027732901,7141.0,False,False +25027732902,2827.0,False,False +25027733000,3489.0,True,True +25027733101,2208.0,False,False +25027733102,2275.0,False,False +25027735100,6768.0,False,False +25027735200,4538.0,False,False +25027736100,2733.0,False,False +25027736200,3835.0,False,False +25027736300,2408.0,False,False +25027736400,3301.0,False,False +25027736500,4407.0,False,False +25027737100,4861.0,False,False +25027737200,1993.0,False,False +25027737300,6878.0,False,False +25027738100,4546.0,False,False +25027738201,4082.0,False,False +25027738202,6856.0,False,False +25027739100,9896.0,False,False +25027739200,6695.0,False,False +25027739300,3880.0,False,False +25027739400,8947.0,False,False +25027739500,7998.0,False,False +25027740101,6122.0,False,False +25027740102,5683.0,False,False +25027740200,3251.0,False,False +25027741101,4436.0,False,False +25027741102,5685.0,False,False +25027742300,3957.0,False,False +25027742401,5374.0,False,False +25027742402,4200.0,False,False +25027743100,7894.0,False,False +25027744101,7789.0,False,False +25027744102,5293.0,False,False +25027744200,7189.0,False,False +25027744300,4227.0,True,True +25027744400,4385.0,False,True +25027745100,5947.0,False,False +25027746100,6115.0,False,False +25027747101,5519.0,False,False +25027747102,3744.0,False,False +25027748100,3256.0,False,False +25027749100,7824.0,False,False +25027749200,6169.0,False,False +25027750100,6573.0,False,False +25027750200,7239.0,False,False +25027750300,2770.0,False,False +25027751101,6571.0,False,False +25027751102,2873.0,False,False +25027752100,8859.0,False,False +25027753100,8056.0,False,False +25027753200,5918.0,False,False +25027754100,6021.0,False,False +25027754200,3681.0,True,True +25027754300,3380.0,True,True +25027754400,3891.0,False,False +25027755100,3351.0,False,False +25027755200,8372.0,False,False +25027756101,4699.0,False,False +25027756102,8851.0,False,False +25027757100,4580.0,True,True +25027757200,2322.0,True,True +25027757300,2651.0,True,True +25027757400,2781.0,False,False +25027757500,4553.0,False,False +25027758101,1606.0,False,False +25027758102,7933.0,False,False +25027759100,2040.0,False,False +25027760100,3441.0,False,False +25027761100,5213.0,False,False +25027761200,5506.0,False,False +25027761300,3259.0,False,False +25027761400,6569.0,False,False +26001000100,1699.0,False,False +26001970100,2482.0,True,True +26001970400,2802.0,True,True +26001970500,2019.0,True,True +26001970600,1351.0,True,True +26001990000,0.0,False,False +26003000100,3540.0,True,True +26003000200,2644.0,False,False +26003000300,2967.0,False,False +26003990000,0.0,False,False +26005030200,3340.0,False,False +26005030300,7796.0,False,False +26005030401,7764.0,False,False +26005030402,5370.0,False,False +26005030500,7850.0,False,False +26005030600,5338.0,False,False +26005030702,4850.0,False,False +26005030703,2814.0,True,False +26005030704,5016.0,False,False +26005030800,5042.0,False,False +26005030901,3176.0,False,False +26005030902,2471.0,False,False +26005031000,6289.0,True,True +26005031100,6693.0,False,False +26005031200,5487.0,True,True +26005031300,4886.0,False,False +26005031800,4691.0,False,False +26005031900,5152.0,False,False +26005032000,5046.0,False,False +26005032100,4724.0,False,False +26005032200,5144.0,False,False +26005032401,1592.0,False,False +26005032402,4074.0,False,False +26005032600,1538.0,False,False +26005990000,0.0,False,False +26007000100,4647.0,True,True +26007000200,3917.0,False,False +26007000300,3414.0,False,False +26007000400,2912.0,True,True +26007000500,1895.0,True,True +26007000600,3050.0,False,False +26007000700,2950.0,True,True +26007000800,3079.0,True,True +26007000900,2656.0,False,False +26007990000,0.0,False,False +26009960100,2659.0,False,False +26009960200,3110.0,True,True +26009960300,2731.0,False,False +26009960400,3114.0,False,False +26009960500,3410.0,False,False +26009960600,3212.0,False,False +26009960700,4970.0,True,True +26009990000,0.0,False,False +26011970100,2222.0,True,True +26011970200,3261.0,True,True +26011970300,2758.0,True,True +26011970400,2761.0,True,True +26011970500,4068.0,True,True +26011990000,0.0,False,False +26011990100,0.0,False,False +26013000100,4135.0,True,True +26013000200,4286.0,True,True +26013990100,0.0,False,False +26015010100,6233.0,False,False +26015010200,5518.0,False,False +26015010300,8161.0,False,False +26015010401,3401.0,False,False +26015010402,4294.0,False,False +26015010500,3480.0,False,False +26015010600,6736.0,False,False +26015010700,5082.0,False,False +26015010800,3286.0,False,False +26015011300,7999.0,False,False +26015011400,6350.0,False,False +26017280300,1338.0,True,True +26017280400,2555.0,True,True +26017280500,3196.0,False,False +26017280600,2683.0,True,True +26017280700,3145.0,True,True +26017280800,3420.0,False,False +26017280900,2909.0,True,True +26017281000,3908.0,False,False +26017281300,2823.0,True,True +26017285100,3325.0,False,False +26017285201,5480.0,False,False +26017285202,3965.0,True,True +26017285300,4497.0,False,False +26017285400,3507.0,False,False +26017285500,6948.0,False,False +26017285600,7144.0,False,False +26017285700,3555.0,False,False +26017285800,6324.0,True,True +26017285900,5066.0,False,False +26017286000,2692.0,False,False +26017286100,7495.0,False,False +26017286200,4874.0,False,False +26017286300,3632.0,False,False +26017286400,2433.0,False,False +26017286500,1808.0,True,True +26017286600,5382.0,True,True +26017990000,0.0,False,False +26019000100,7600.0,False,False +26019000200,3219.0,False,False +26019000300,1810.0,False,False +26019000400,1995.0,False,False +26019000500,2991.0,False,False +26019990000,0.0,False,False +26021000300,1958.0,True,True +26021000400,2529.0,True,True +26021000500,1704.0,True,True +26021000600,3261.0,True,True +26021000700,2819.0,False,False +26021000800,5208.0,False,False +26021000900,2049.0,False,False +26021001000,1831.0,False,False +26021001100,4050.0,False,False +26021001300,2148.0,False,False +26021001400,4521.0,False,False +26021001500,3226.0,False,False +26021001600,2132.0,False,False +26021001700,4683.0,False,False +26021001800,4766.0,False,False +26021001900,1952.0,True,False +26021002000,3419.0,True,True +26021002100,2111.0,True,True +26021002200,3088.0,True,True +26021002300,1920.0,True,True +26021002400,1951.0,False,False +26021002500,2286.0,True,True +26021010100,3575.0,False,False +26021010200,6550.0,False,False +26021010300,4642.0,True,False +26021010400,2812.0,False,False +26021010500,2246.0,True,False +26021010600,5043.0,False,False +26021011000,2757.0,False,False +26021011100,5536.0,False,False +26021011200,3091.0,False,False +26021011300,4032.0,False,False +26021011400,2427.0,False,False +26021011500,1454.0,False,False +26021011600,1854.0,True,False +26021020100,2440.0,False,False +26021020200,5370.0,True,True +26021020300,2613.0,False,False +26021020400,3899.0,False,False +26021020500,3273.0,True,True +26021020600,3248.0,True,True +26021020700,2781.0,True,True +26021020900,3086.0,True,True +26021021000,5248.0,True,False +26021021100,1904.0,True,False +26021021200,1652.0,True,False +26021021300,4638.0,False,False +26021021400,4350.0,False,False +26021990000,0.0,False,False +26023950100,3801.0,False,False +26023950200,3834.0,True,True +26023950300,3695.0,True,False +26023950800,4558.0,True,True +26023950900,2117.0,False,False +26023951000,2390.0,False,False +26023951100,3063.0,False,False +26023951200,4071.0,True,True +26023951300,5854.0,False,False +26023951400,4067.0,True,True +26023951500,2810.0,False,False +26023951600,3253.0,True,True +26025000200,3524.0,True,True +26025000300,2017.0,True,True +26025000500,3511.0,True,True +26025000600,3001.0,True,True +26025000700,2737.0,True,True +26025000800,2713.0,True,True +26025000900,3510.0,False,False +26025001000,4082.0,True,True +26025001100,4128.0,True,True +26025001200,2289.0,False,False +26025001300,3971.0,True,True +26025001400,4307.0,True,True +26025001500,5331.0,False,False +26025001600,2862.0,False,False +26025001700,4474.0,False,False +26025001800,6045.0,False,False +26025001900,4199.0,False,False +26025002000,4953.0,True,False +26025002100,1122.0,True,True +26025002200,3390.0,False,False +26025002300,3643.0,False,False +26025002400,3032.0,False,False +26025002500,3285.0,False,False +26025002600,2080.0,True,True +26025002700,6264.0,False,False +26025002800,4337.0,True,True +26025002900,3055.0,False,False +26025003000,2130.0,False,False +26025003100,2977.0,True,True +26025003200,2260.0,False,False +26025003300,2065.0,True,True +26025003400,2163.0,False,False +26025003500,2799.0,False,False +26025003600,2070.0,True,True +26025003700,4734.0,False,False +26025003800,4236.0,False,False +26025003900,4745.0,False,False +26025004000,3969.0,True,True +26025004100,2202.0,True,True +26027001000,3787.0,False,False +26027001100,2944.0,False,False +26027001200,2980.0,False,False +26027001500,3754.0,False,False +26027001600,3652.0,False,False +26027001700,5089.0,False,False +26027001800,8250.0,False,False +26027001900,5204.0,False,False +26027002000,4367.0,True,True +26027002100,5589.0,True,True +26027002200,5907.0,True,False +26029000100,1775.0,False,False +26029000200,1302.0,True,True +26029000300,2226.0,False,False +26029000400,2775.0,False,False +26029000500,577.0,False,False +26029000800,2882.0,False,False +26029000900,1958.0,False,False +26029001000,2434.0,False,False +26029001100,1856.0,True,False +26029001200,3161.0,False,False +26029001300,1637.0,True,False +26029001400,1158.0,False,False +26029001500,2447.0,True,True +26029990000,0.0,False,False +26031960100,2835.0,False,False +26031960200,2991.0,True,True +26031960300,4371.0,True,True +26031960400,3615.0,False,False +26031960500,2411.0,False,False +26031960600,2431.0,False,False +26031960700,3118.0,True,True +26031960800,3646.0,True,True +26031990000,0.0,False,False +26033970100,3367.0,False,False +26033970200,3303.0,True,True +26033970300,4145.0,False,False +26033970400,2535.0,True,True +26033970500,3608.0,True,True +26033970600,5105.0,False,False +26033970700,959.0,True,True +26033970800,4136.0,False,False +26033970900,4887.0,True,True +26033971000,2639.0,False,False +26033971100,1526.0,False,False +26033980100,0.0,False,False +26033980200,1262.0,True,True +26033980300,157.0,True,True +26033990000,0.0,False,False +26033990100,0.0,False,False +26035000100,1793.0,True,True +26035000200,1197.0,True,True +26035000300,2411.0,True,True +26035000400,3518.0,True,True +26035000500,1531.0,True,True +26035000600,3678.0,True,True +26035000700,3064.0,False,True +26035000800,4622.0,True,True +26035000900,1899.0,True,True +26035001000,3279.0,True,True +26035001300,3659.0,True,True +26037010104,3628.0,False,False +26037010105,3909.0,False,False +26037010107,4162.0,False,False +26037010108,4205.0,False,False +26037010201,2080.0,False,False +26037010203,1356.0,True,True +26037010204,1873.0,False,False +26037010300,5321.0,False,False +26037010400,5210.0,False,False +26037010500,3685.0,False,False +26037010600,2443.0,False,False +26037010701,2054.0,False,False +26037010702,2466.0,True,True +26037010801,4031.0,False,False +26037010802,3859.0,False,False +26037010901,2930.0,True,True +26037010902,4428.0,False,False +26037011001,3719.0,False,False +26037011002,3509.0,False,False +26037011101,4688.0,False,False +26037011104,6610.0,False,False +26037011200,2223.0,False,False +26039960100,2312.0,False,False +26039960200,3400.0,False,False +26039960300,3822.0,True,True +26039960400,2090.0,True,True +26039960500,2268.0,True,True +26041970100,1709.0,True,True +26041970200,2240.0,False,False +26041970300,2360.0,False,False +26041970400,5307.0,False,False +26041970500,4254.0,False,False +26041970600,4011.0,False,False +26041970700,3607.0,False,False +26041970800,4258.0,True,True +26041970900,2541.0,True,False +26041971000,2664.0,True,True +26041971100,3075.0,True,False +26041990000,0.0,False,False +26041990100,0.0,False,False +26043950100,1632.0,False,False +26043950200,4447.0,False,False +26043950300,4768.0,False,False +26043950400,3688.0,False,False +26043950500,3015.0,True,True +26043950600,4378.0,True,False +26043950700,3511.0,False,False +26045020101,2971.0,False,False +26045020102,3162.0,False,False +26045020103,4077.0,False,False +26045020104,3773.0,False,False +26045020201,2918.0,False,False +26045020202,4742.0,True,True +26045020302,6724.0,False,False +26045020303,3484.0,False,False +26045020304,4832.0,False,False +26045020402,2870.0,False,False +26045020403,2702.0,False,False +26045020404,4353.0,False,False +26045020500,3517.0,False,False +26045020601,3987.0,False,False +26045020602,3334.0,False,False +26045020700,4092.0,False,False +26045020800,5153.0,False,False +26045020901,2997.0,True,True +26045020902,4111.0,False,False +26045021001,4818.0,False,False +26045021002,4167.0,False,False +26045021100,5637.0,False,False +26045021201,2982.0,False,False +26045021202,3644.0,False,False +26045021301,2911.0,False,False +26045021302,3269.0,True,False +26045021401,3595.0,False,False +26045021402,4634.0,False,False +26047970100,2079.0,True,True +26047970200,5712.0,False,False +26047970300,4260.0,False,False +26047970400,2780.0,False,False +26047970500,4729.0,False,False +26047970600,5739.0,False,False +26047970700,3624.0,False,False +26047970800,4181.0,True,True +26047990000,0.0,False,False +26049000100,2427.0,True,True +26049000200,1315.0,True,True +26049000300,2272.0,True,True +26049000400,1324.0,True,True +26049000500,1962.0,True,True +26049000600,1707.0,True,True +26049000700,2080.0,True,True +26049000800,981.0,True,True +26049000900,2557.0,True,True +26049001000,1796.0,True,True +26049001100,1775.0,True,True +26049001200,3484.0,True,True +26049001300,2529.0,True,True +26049001400,1507.0,True,True +26049001500,1291.0,True,True +26049001600,4409.0,True,True +26049001700,1163.0,True,True +26049001800,2175.0,True,True +26049001900,3029.0,True,True +26049002000,828.0,True,True +26049002200,1924.0,True,True +26049002300,1809.0,True,True +26049002400,3221.0,True,True +26049002600,2616.0,True,True +26049002700,3580.0,True,True +26049002800,2693.0,True,True +26049002900,1809.0,True,True +26049003000,4404.0,False,False +26049003100,2521.0,True,True +26049003200,1912.0,True,True +26049003300,2358.0,True,True +26049003400,2316.0,True,True +26049003500,3054.0,True,True +26049003600,6557.0,True,True +26049003700,3003.0,True,True +26049003800,1258.0,True,True +26049004000,3945.0,True,True +26049010110,2421.0,True,True +26049010111,1255.0,False,False +26049010112,2364.0,False,False +26049010113,2373.0,True,True +26049010114,2479.0,False,False +26049010115,914.0,True,True +26049010201,1657.0,False,False +26049010202,1659.0,False,False +26049010304,3636.0,True,True +26049010305,4478.0,True,True +26049010501,2406.0,True,True +26049010502,3817.0,True,True +26049010503,2387.0,False,False +26049010504,3804.0,True,True +26049010603,5317.0,False,False +26049010604,2651.0,False,False +26049010610,5331.0,False,False +26049010700,4906.0,False,False +26049010810,4880.0,False,False +26049010811,2580.0,True,True +26049010812,3250.0,True,True +26049010813,4439.0,True,False +26049010910,2962.0,True,True +26049010911,4067.0,True,True +26049010912,2909.0,False,True +26049011010,5497.0,False,False +26049011101,9047.0,False,False +26049011102,5513.0,False,False +26049011209,6271.0,False,False +26049011210,1716.0,False,False +26049011211,4945.0,False,False +26049011212,5898.0,False,False +26049011213,5260.0,False,False +26049011214,5901.0,False,False +26049011301,4912.0,True,True +26049011302,3191.0,True,True +26049011401,3512.0,True,True +26049011402,4096.0,False,False +26049011502,3183.0,False,False +26049011503,4634.0,False,False +26049011505,2424.0,False,False +26049011508,2702.0,True,True +26049011601,2851.0,False,False +26049011610,6906.0,False,False +26049011710,2411.0,False,False +26049011711,2526.0,False,False +26049011712,2883.0,True,False +26049011713,3500.0,True,False +26049011714,3033.0,False,False +26049011800,2862.0,False,False +26049011901,2573.0,True,True +26049011902,2940.0,False,False +26049012003,2985.0,True,True +26049012006,2637.0,True,True +26049012007,1643.0,True,True +26049012008,2979.0,True,True +26049012009,2620.0,False,False +26049012100,2501.0,True,True +26049012201,2441.0,True,True +26049012202,1048.0,True,True +26049012310,2881.0,True,True +26049012311,1720.0,True,True +26049012401,1829.0,False,False +26049012402,2663.0,False,False +26049012501,1986.0,True,True +26049012503,2769.0,True,True +26049012504,1943.0,False,False +26049012601,3346.0,True,True +26049012602,1660.0,True,True +26049012603,2607.0,False,False +26049012702,5535.0,False,False +26049012703,2896.0,False,False +26049012704,4339.0,False,False +26049012801,4584.0,False,False +26049012802,1941.0,False,False +26049012904,6190.0,False,False +26049012905,3460.0,False,False +26049012906,2684.0,False,False +26049012907,2218.0,False,False +26049013001,2530.0,False,False +26049013002,4033.0,False,False +26049013110,2238.0,False,False +26049013111,2925.0,False,False +26049013112,4517.0,False,False +26049013113,3895.0,False,False +26049013202,5685.0,False,False +26049013204,5666.0,False,False +26049013301,5772.0,False,False +26049013401,5974.0,False,False +26049013402,1847.0,False,False +26049013500,5344.0,True,True +26049013600,1582.0,True,True +26049980000,42.0,False,False +26049980100,0.0,False,False +26051000100,2926.0,True,True +26051000200,1337.0,False,True +26051000300,1808.0,True,True +26051000400,3163.0,True,True +26051000500,3619.0,True,True +26051000600,1817.0,True,True +26051000700,4731.0,True,True +26051000800,4131.0,True,True +26051000900,1747.0,False,False +26053950100,2226.0,True,True +26053950200,2117.0,True,True +26053950300,2423.0,True,False +26053950400,955.0,False,False +26053950500,2081.0,True,True +26053950600,2907.0,True,True +26053950700,2352.0,False,False +26053990000,0.0,False,False +26055550101,5940.0,False,False +26055550102,3321.0,False,False +26055550200,4507.0,False,False +26055550300,6776.0,False,False +26055550400,6933.0,False,False +26055550500,5923.0,True,False +26055550600,10503.0,False,False +26055550700,9370.0,False,False +26055550800,6291.0,False,False +26055550900,4903.0,False,False +26055551000,4312.0,False,False +26055551100,3717.0,False,False +26055551200,3259.0,False,False +26055551300,7791.0,True,False +26055551400,5542.0,False,False +26055551500,3093.0,False,False +26055990000,0.0,False,False +26057000100,3858.0,False,False +26057000200,4898.0,False,False +26057000300,4206.0,True,True +26057000400,3748.0,True,True +26057000500,5199.0,False,False +26057000600,4300.0,False,False +26057000700,3203.0,True,True +26057000800,4211.0,False,False +26057000900,3401.0,False,False +26057001000,3892.0,True,True +26059050100,4569.0,False,False +26059050200,3034.0,True,True +26059050300,2227.0,True,False +26059050400,4357.0,True,True +26059050500,4531.0,False,False +26059050600,3501.0,True,True +26059050700,4898.0,False,True +26059050800,2192.0,True,True +26059050900,4859.0,False,False +26059051000,4234.0,False,False +26059051100,3769.0,True,True +26059051200,3586.0,True,True +26061000100,2580.0,True,True +26061000200,2992.0,True,True +26061000300,2032.0,True,True +26061000400,3166.0,True,True +26061000500,3574.0,False,False +26061000600,3844.0,False,False +26061000700,3416.0,True,True +26061000800,6358.0,False,False +26061000900,5153.0,False,False +26061001000,2955.0,False,False +26061990000,0.0,False,False +26061990100,0.0,False,False +26063950100,1257.0,False,False +26063950200,2047.0,False,False +26063950300,2123.0,True,True +26063950400,793.0,False,False +26063950500,2082.0,False,False +26063950600,2587.0,True,True +26063950700,3489.0,False,False +26063950800,3354.0,False,False +26063950900,3731.0,False,False +26063951000,3793.0,True,True +26063951100,2146.0,False,False +26063951200,3947.0,True,True +26063990000,0.0,False,False +26065000100,1896.0,True,True +26065000400,2799.0,False,False +26065000600,1893.0,True,True +26065000700,2763.0,True,True +26065000800,3012.0,True,True +26065001000,2168.0,False,False +26065001200,2223.0,True,True +26065001703,4323.0,True,True +26065002000,3035.0,True,True +26065002101,2110.0,True,True +26065002200,1659.0,False,False +26065002300,3209.0,False,False +26065002600,1998.0,True,True +26065002700,3049.0,False,False +26065002800,2709.0,True,True +26065002901,3515.0,False,False +26065002902,4434.0,False,False +26065003103,5910.0,False,False +26065003200,2264.0,True,True +26065003301,2818.0,True,True +26065003302,2237.0,False,False +26065003400,2396.0,False,False +26065003500,2861.0,True,True +26065003601,3843.0,False,False +26065003602,4018.0,True,True +26065003700,4637.0,True,True +26065003801,3898.0,False,False +26065003802,4154.0,False,False +26065003901,1856.0,False,False +26065003902,4614.0,False,False +26065004000,4005.0,False,False +26065004100,5535.0,False,False +26065004301,4311.0,False,False +26065004302,2604.0,False,True +26065004402,1399.0,False,False +26065004403,1656.0,False,False +26065004490,3937.0,False,False +26065004491,1225.0,False,False +26065004492,3474.0,False,False +26065004493,1720.0,False,False +26065004494,3351.0,False,False +26065004500,3754.0,False,False +26065004600,4213.0,False,False +26065004700,2934.0,False,False +26065004801,4232.0,False,False +26065004802,3362.0,False,False +26065004901,7268.0,False,False +26065004902,5208.0,False,False +26065005001,7208.0,False,False +26065005002,3781.0,False,False +26065005100,3546.0,False,True +26065005201,5993.0,True,True +26065005202,3771.0,False,False +26065005302,6695.0,False,False +26065005303,4140.0,False,False +26065005304,3221.0,True,True +26065005401,3638.0,False,False +26065005402,3635.0,True,True +26065005501,6377.0,False,False +26065005502,6473.0,False,False +26065005600,2967.0,False,False +26065005700,5070.0,False,False +26065005800,5866.0,False,False +26065005900,5368.0,False,False +26065006001,3393.0,False,False +26065006002,3681.0,False,False +26065006100,4522.0,False,False +26065006200,5690.0,False,False +26065006301,4800.0,False,False +26065006302,4177.0,False,False +26065006401,4343.0,False,False +26065006402,3236.0,False,False +26065006500,3772.0,True,True +26065006600,3391.0,True,True +26065006700,4304.0,True,True +26065006800,4289.0,True,True +26065007000,5832.0,False,False +26065980000,877.0,False,False +26065980100,42.0,False,False +26065980200,0.0,False,False +26065980300,0.0,False,False +26067030100,6761.0,False,False +26067030200,2906.0,True,True +26067030300,2812.0,True,True +26067030400,6579.0,False,False +26067031200,5120.0,False,False +26067031300,8036.0,False,False +26067031400,4703.0,False,False +26067031500,5687.0,False,False +26067031600,5395.0,False,False +26067031700,4597.0,True,True +26067031900,6502.0,False,False +26067032100,2030.0,True,True +26067982200,3172.0,False,False +26069000100,2519.0,True,True +26069000200,3916.0,False,False +26069000300,2601.0,True,True +26069000400,3527.0,True,True +26069000500,3766.0,True,True +26069000600,2757.0,True,True +26069000700,2558.0,True,True +26069000800,1680.0,True,True +26069000900,1873.0,True,True +26069990000,0.0,False,False +26071000100,2188.0,False,False +26071000200,1618.0,False,False +26071000300,2574.0,True,True +26071000400,2254.0,True,True +26071000500,2518.0,True,True +26073000100,3406.0,True,True +26073000200,4997.0,False,False +26073000300,5205.0,False,False +26073000400,5316.0,False,False +26073000500,4435.0,False,False +26073000600,4427.0,False,False +26073000700,8504.0,False,False +26073000800,2899.0,False,False +26073000900,3935.0,False,False +26073940100,4198.0,False,True +26073940200,6118.0,True,True +26073940300,5620.0,False,False +26073940400,3800.0,False,True +26073940500,2708.0,False,True +26073940600,5120.0,False,True +26075000100,3220.0,True,True +26075000200,2785.0,True,True +26075000400,3995.0,True,True +26075000500,1750.0,True,True +26075000600,1001.0,True,True +26075000800,4633.0,False,False +26075000900,3068.0,True,True +26075001000,2313.0,True,True +26075001100,1989.0,True,True +26075001200,2284.0,True,True +26075001300,2683.0,True,True +26075005000,2342.0,True,True +26075005100,4539.0,True,True +26075005200,6785.0,False,False +26075005301,5029.0,True,False +26075005302,3547.0,False,False +26075005400,6487.0,False,False +26075005500,4758.0,True,True +26075005600,7232.0,False,False +26075005700,2656.0,False,False +26075005800,5113.0,True,True +26075005900,3944.0,True,True +26075006000,6846.0,True,True +26075006100,6429.0,False,False +26075006200,6758.0,False,False +26075006301,2954.0,False,False +26075006303,4638.0,False,False +26075006304,2738.0,False,False +26075006401,2952.0,False,False +26075006402,7065.0,False,False +26075006500,6681.0,False,False +26075006600,4842.0,False,False +26075006701,5095.0,False,False +26075006702,4720.0,False,False +26075006801,3020.0,False,False +26075006803,2881.0,False,False +26075006804,5912.0,False,False +26075006900,2952.0,True,True +26077000100,2717.0,True,True +26077000201,2171.0,True,True +26077000202,846.0,True,True +26077000300,4271.0,True,True +26077000500,3903.0,False,False +26077000600,4871.0,True,True +26077000900,1041.0,True,True +26077001000,6259.0,True,True +26077001100,1931.0,True,True +26077001200,2674.0,False,False +26077001300,1953.0,False,False +26077001501,4724.0,False,False +26077001502,4555.0,False,False +26077001503,4716.0,False,False +26077001504,4683.0,False,True +26077001506,8350.0,False,False +26077001507,6418.0,False,True +26077001601,2889.0,False,False +26077001603,1710.0,False,False +26077001604,1856.0,False,False +26077001701,3765.0,False,False +26077001702,3887.0,True,True +26077001801,4051.0,False,False +26077001802,4520.0,False,False +26077001803,2197.0,True,True +26077001905,5822.0,False,False +26077001906,4777.0,False,False +26077001907,4403.0,False,False +26077002002,3903.0,False,False +26077002003,6169.0,False,False +26077002004,3942.0,False,False +26077002005,4133.0,False,False +26077002101,8028.0,False,False +26077002102,3009.0,False,False +26077002201,2198.0,True,True +26077002202,8281.0,False,False +26077002601,4909.0,False,False +26077002700,8220.0,False,False +26077002801,4331.0,False,False +26077002802,6530.0,False,False +26077002901,3923.0,False,False +26077002903,5441.0,True,True +26077002904,9183.0,False,False +26077002905,8337.0,False,False +26077003002,2386.0,False,False +26077003003,9003.0,False,False +26077003004,7868.0,False,False +26077003302,6419.0,False,False +26077003400,3806.0,False,False +26077003500,4588.0,False,False +26077005501,4087.0,True,True +26077005502,5535.0,False,False +26077006102,3520.0,False,False +26077006103,5378.0,False,False +26077006601,4491.0,False,False +26077006701,2913.0,False,False +26077006702,6254.0,False,False +26079950200,5096.0,True,True +26079950300,4898.0,True,False +26079950400,3705.0,True,True +26079950601,2148.0,True,True +26079950602,1738.0,True,True +26081000100,2523.0,False,False +26081000200,2206.0,False,False +26081000300,5233.0,False,False +26081000400,3071.0,False,False +26081000500,4073.0,False,False +26081000600,4357.0,False,False +26081000700,3067.0,False,False +26081000800,2717.0,True,True +26081000900,3313.0,True,True +26081001000,4724.0,True,True +26081001101,5962.0,True,True +26081001102,4369.0,True,False +26081001200,3264.0,False,False +26081001300,3149.0,True,True +26081001400,2303.0,False,False +26081001500,3608.0,True,True +26081001600,6175.0,True,True +26081001700,4604.0,False,False +26081001800,6205.0,False,False +26081001900,5323.0,True,True +26081002000,2250.0,True,True +26081002100,3184.0,False,False +26081002200,4682.0,True,True +26081002300,4157.0,False,False +26081002400,3046.0,False,False +26081002500,4702.0,False,False +26081002600,3871.0,True,True +26081002700,3480.0,False,False +26081002800,1632.0,True,True +26081002900,1377.0,False,False +26081003000,1908.0,True,True +26081003100,4003.0,True,True +26081003200,5392.0,True,True +26081003300,4040.0,False,False +26081003400,5053.0,False,False +26081003500,5306.0,True,True +26081003600,2554.0,True,True +26081003700,4506.0,True,True +26081003800,5249.0,True,True +26081003900,3540.0,True,True +26081004000,4048.0,True,True +26081004100,5577.0,False,True +26081004200,4334.0,True,True +26081004300,3946.0,False,False +26081004400,7606.0,False,False +26081004500,8371.0,False,False +26081004600,5693.0,True,True +26081010101,5794.0,False,False +26081010102,2874.0,False,False +26081010200,4426.0,True,False +26081010301,5452.0,True,True +26081010302,6217.0,False,False +26081010401,5295.0,False,False +26081010402,4321.0,True,True +26081010600,12560.0,False,False +26081010700,5790.0,False,False +26081010801,8554.0,False,False +26081010802,6277.0,False,False +26081010902,3943.0,False,False +26081010903,7161.0,False,False +26081010904,7593.0,False,False +26081011001,4307.0,False,False +26081011002,4341.0,False,False +26081011101,4668.0,False,False +26081011102,5253.0,False,False +26081011200,4236.0,False,False +26081011301,4732.0,False,False +26081011302,6426.0,False,False +26081011401,2338.0,False,False +26081011403,2852.0,False,False +26081011405,3011.0,False,False +26081011406,5746.0,True,True +26081011500,7366.0,False,False +26081011600,7590.0,False,False +26081011701,5341.0,False,False +26081011702,4519.0,False,False +26081011801,7640.0,False,False +26081011803,4893.0,False,False +26081011804,5315.0,False,False +26081011901,6944.0,False,False +26081011902,7614.0,False,False +26081012002,6279.0,False,False +26081012003,7555.0,False,False +26081012004,4948.0,False,False +26081012201,6729.0,False,False +26081012202,6858.0,False,False +26081012203,5441.0,False,False +26081012300,3433.0,False,False +26081012400,4094.0,False,False +26081012500,4943.0,False,False +26081012604,7396.0,False,False +26081012605,3149.0,False,False +26081012606,5700.0,True,True +26081012607,5577.0,True,True +26081012608,3686.0,False,False +26081012701,6639.0,True,True +26081012702,4298.0,False,False +26081012703,5202.0,True,False +26081012800,4293.0,False,False +26081012901,5054.0,True,True +26081012902,4920.0,True,False +26081013000,3336.0,False,False +26081013100,5691.0,False,False +26081013200,6915.0,False,False +26081013300,5197.0,True,True +26081013400,5647.0,True,True +26081013500,5175.0,True,True +26081013600,2464.0,True,True +26081013700,7172.0,False,False +26081013801,1476.0,False,False +26081013802,6953.0,True,True +26081013900,6127.0,False,False +26081014000,7043.0,True,True +26081014100,1931.0,True,True +26081014200,3614.0,True,True +26081014300,3312.0,True,True +26081014501,11449.0,False,False +26081014502,8142.0,False,False +26081014601,8304.0,False,False +26081014602,11009.0,False,False +26081014701,4505.0,True,True +26081014703,5217.0,True,False +26081014704,3066.0,False,False +26081014803,3312.0,False,False +26081014804,7951.0,False,False +26081014805,7360.0,False,False +26081014806,5793.0,False,False +26081014807,8624.0,False,False +26083000100,2108.0,False,False +26083980100,3.0,True,False +26083990100,0.0,False,False +26085960100,2448.0,True,True +26085961100,3657.0,True,True +26085961200,2660.0,True,True +26085961300,3087.0,True,True +26087330000,3870.0,False,False +26087330500,2875.0,False,False +26087331000,1738.0,True,True +26087331500,2770.0,False,False +26087332000,5695.0,False,False +26087332500,3575.0,False,False +26087333000,3104.0,False,False +26087333500,5466.0,False,False +26087334000,2612.0,False,False +26087334500,2217.0,False,False +26087336000,5222.0,False,False +26087336500,1268.0,True,True +26087337000,2996.0,True,False +26087337500,4190.0,True,True +26087338000,5098.0,False,False +26087338500,4744.0,False,False +26087339000,3121.0,False,False +26087339500,3568.0,True,True +26087340000,4026.0,False,False +26087340500,2812.0,False,False +26087341000,4763.0,False,False +26087341500,4264.0,False,False +26087342000,4499.0,False,False +26087342100,3545.0,False,False +26089970100,2016.0,False,False +26089970200,5242.0,False,False +26089970300,2656.0,False,False +26089970400,1538.0,False,False +26089970500,4916.0,False,False +26089970600,5284.0,False,False +26089990000,0.0,False,False +26091060100,3817.0,False,False +26091060301,4699.0,False,False +26091060302,4112.0,False,False +26091060401,3464.0,False,False +26091060402,3251.0,False,False +26091060500,3300.0,False,False +26091060600,5596.0,False,False +26091060700,7151.0,False,False +26091060800,3313.0,False,False +26091061200,1751.0,False,False +26091061301,4042.0,True,True +26091061302,3036.0,True,True +26091061400,3581.0,True,True +26091061500,5974.0,False,False +26091061600,3601.0,True,True +26091061700,9442.0,False,False +26091061800,3935.0,True,True +26091061900,4460.0,True,True +26091062000,2701.0,False,False +26091062100,4210.0,False,False +26091062200,2556.0,False,False +26091062300,5234.0,False,False +26091062400,5155.0,False,False +26093710100,2646.0,False,False +26093710300,4111.0,False,False +26093710500,1862.0,False,False +26093710700,1813.0,False,False +26093711000,4244.0,False,False +26093712101,3122.0,False,False +26093712102,3039.0,False,False +26093712601,4575.0,False,False +26093712602,3622.0,False,False +26093713100,4781.0,False,False +26093713300,1682.0,False,False +26093713500,3812.0,False,False +26093713700,4726.0,False,False +26093720100,3588.0,False,False +26093721100,3336.0,False,False +26093722100,3174.0,False,False +26093722300,2881.0,True,True +26093722500,2300.0,False,False +26093724001,2261.0,False,False +26093724002,2243.0,False,False +26093724003,2603.0,False,False +26093725000,4950.0,False,False +26093725100,4884.0,True,True +26093730101,2830.0,False,False +26093730102,4098.0,False,False +26093730600,3790.0,False,False +26093731100,3850.0,False,False +26093732100,3412.0,False,False +26093733100,1959.0,False,False +26093733601,2633.0,False,False +26093733602,3827.0,False,False +26093740200,3958.0,False,False +26093740300,2173.0,False,False +26093740500,2313.0,False,False +26093740600,2909.0,False,False +26093740700,2736.0,False,False +26093740800,2668.0,False,False +26093740900,1910.0,False,False +26093741100,2355.0,False,False +26093741601,1902.0,False,False +26093741602,3392.0,False,False +26093742201,2973.0,False,False +26093742202,2457.0,True,True +26093742401,1257.0,True,False +26093742402,3828.0,False,False +26093742500,2338.0,False,False +26093742700,3580.0,False,False +26093742900,3883.0,False,False +26093743300,2693.0,False,False +26093743400,3892.0,False,False +26093743500,2014.0,False,False +26093743600,3043.0,False,False +26093743700,2517.0,False,False +26093743800,3929.0,False,False +26093743900,3573.0,False,False +26093744200,3713.0,False,False +26093744400,2113.0,False,False +26093744600,2034.0,False,False +26093744700,3194.0,False,False +26093744800,4559.0,False,False +26093744900,3194.0,False,False +26095960100,4372.0,True,False +26095960200,1966.0,False,False +26095980000,0.0,False,False +26095990000,0.0,False,False +26097950100,1403.0,False,False +26097950200,2439.0,True,True +26097950300,1681.0,True,True +26097950400,2927.0,True,True +26097950500,2330.0,True,True +26097990000,0.0,False,False +26099206700,3836.0,True,True +26099210000,4514.0,False,False +26099211000,5869.0,False,False +26099212000,5509.0,False,False +26099214000,2855.0,False,False +26099214500,4351.0,False,False +26099215000,5765.0,False,False +26099215200,8039.0,False,False +26099215300,4452.0,False,False +26099215500,7706.0,False,False +26099216000,4010.0,False,False +26099217000,2554.0,False,False +26099218000,8230.0,False,False +26099220001,7631.0,False,False +26099220002,4727.0,False,False +26099221100,7116.0,False,False +26099221200,6004.0,False,False +26099221500,1394.0,False,False +26099221800,5232.0,False,False +26099222101,5665.0,True,True +26099222102,9167.0,False,False +26099222500,3961.0,False,False +26099222800,3273.0,False,False +26099223400,10741.0,False,False +26099223500,1552.0,False,False +26099223800,16096.0,False,False +26099223900,8322.0,False,False +26099224000,13583.0,False,False +26099224100,9425.0,False,False +26099224200,8915.0,False,False +26099224300,4946.0,False,False +26099224400,5346.0,False,False +26099224500,4082.0,False,False +26099224600,6222.0,False,False +26099225100,3237.0,False,False +26099225200,6991.0,False,False +26099225300,4747.0,False,False +26099225400,7514.0,False,False +26099225500,5334.0,False,False +26099225600,4479.0,False,False +26099225701,6089.0,False,False +26099225702,1691.0,False,False +26099225800,6975.0,False,False +26099225900,5249.0,False,False +26099226100,7848.0,False,False +26099226400,2655.0,False,False +26099226700,4795.0,False,False +26099227000,7036.0,False,False +26099227300,4525.0,False,False +26099228000,3365.0,False,False +26099228100,1641.0,False,True +26099230000,4403.0,False,False +26099230200,4854.0,False,False +26099230300,4580.0,False,False +26099230400,3471.0,False,False +26099230500,3724.0,True,True +26099230601,7110.0,False,False +26099230602,6349.0,False,False +26099230700,5186.0,False,False +26099230800,5210.0,False,False +26099230900,7652.0,False,False +26099231000,4397.0,False,False +26099231100,3979.0,False,False +26099231200,3586.0,False,False +26099231400,5781.0,False,True +26099231500,5080.0,False,True +26099231600,5322.0,True,True +26099231700,6716.0,True,False +26099231800,4347.0,False,False +26099231900,6143.0,False,True +26099232000,2420.0,False,False +26099232100,6466.0,False,False +26099232200,5283.0,False,False +26099232300,4481.0,False,True +26099232400,5769.0,False,True +26099232500,4425.0,False,False +26099233000,5733.0,False,False +26099240000,3958.0,True,True +26099240300,3929.0,False,False +26099240400,5244.0,False,False +26099240500,2713.0,False,False +26099240600,6725.0,False,False +26099240700,4190.0,False,False +26099240800,5829.0,True,False +26099240900,1938.0,False,False +26099241000,4821.0,True,True +26099241200,4878.0,True,True +26099241300,2626.0,False,False +26099241400,3182.0,False,False +26099241500,3612.0,False,False +26099241600,2714.0,True,True +26099241700,4796.0,True,True +26099241800,6047.0,False,False +26099241900,5138.0,False,False +26099242000,5981.0,False,False +26099242100,2565.0,False,False +26099242500,6306.0,False,False +26099243000,4438.0,False,False +26099243500,6533.0,False,False +26099244000,2243.0,False,False +26099245000,3655.0,True,True +26099245100,3832.0,True,True +26099245200,3003.0,True,True +26099245300,4404.0,False,False +26099245400,1421.0,True,True +26099247100,857.0,True,True +26099247200,6845.0,False,False +26099247300,6316.0,False,False +26099247400,2488.0,False,False +26099247500,1823.0,True,False +26099247601,2089.0,True,True +26099247602,4561.0,False,False +26099250000,2260.0,False,False +26099250100,2140.0,False,False +26099250200,2700.0,False,False +26099250300,3058.0,False,False +26099250400,1495.0,False,False +26099250500,2106.0,False,False +26099250600,2818.0,False,False +26099250700,2959.0,False,False +26099250800,2855.0,False,False +26099250900,2694.0,False,False +26099251000,1667.0,False,False +26099251100,2011.0,False,False +26099251200,3165.0,False,False +26099251300,2273.0,False,False +26099251400,2859.0,False,False +26099251500,2027.0,False,False +26099251600,3038.0,False,False +26099251700,2869.0,False,False +26099251800,4098.0,False,False +26099251900,3026.0,False,False +26099252000,2453.0,False,False +26099252100,2151.0,False,False +26099252200,2838.0,False,False +26099254000,1641.0,False,False +26099254100,4360.0,False,False +26099254200,4328.0,False,False +26099254500,4251.0,False,False +26099255000,4458.0,False,False +26099255100,3251.0,False,False +26099255200,4004.0,False,False +26099255300,3988.0,True,True +26099255400,2473.0,False,False +26099255500,1727.0,False,False +26099255600,3503.0,False,False +26099255700,1848.0,False,False +26099255800,2630.0,True,True +26099255900,1796.0,True,True +26099256000,2193.0,False,False +26099256100,2499.0,True,True +26099256200,1691.0,False,False +26099256300,1765.0,False,False +26099256400,1434.0,False,False +26099256500,1490.0,True,True +26099256600,3025.0,True,True +26099256700,1994.0,True,True +26099256800,1631.0,True,True +26099258000,2494.0,False,False +26099258100,3717.0,False,False +26099258200,2617.0,True,True +26099258300,2474.0,False,False +26099258400,5268.0,True,True +26099258500,1981.0,False,False +26099258600,4707.0,True,True +26099258700,2803.0,True,True +26099258800,3583.0,True,True +26099258900,2799.0,True,True +26099260000,3185.0,False,False +26099260100,2910.0,True,True +26099260200,2302.0,False,False +26099260300,3143.0,False,False +26099260400,4151.0,False,False +26099260600,2859.0,True,True +26099260700,3050.0,False,False +26099260800,2708.0,False,True +26099260900,4874.0,False,False +26099261000,3787.0,False,False +26099261100,4778.0,True,False +26099261200,2647.0,False,False +26099261300,2876.0,False,False +26099261400,2661.0,False,False +26099261500,3409.0,False,False +26099261600,1453.0,False,False +26099261700,2585.0,True,False +26099261800,2915.0,False,False +26099261900,3081.0,False,False +26099262000,3278.0,False,False +26099262100,961.0,True,True +26099262200,4528.0,False,False +26099262300,4079.0,False,True +26099262400,3484.0,True,True +26099262500,4961.0,True,True +26099262600,2525.0,False,False +26099262700,5046.0,False,False +26099262800,2052.0,True,True +26099262900,4057.0,True,True +26099263200,2509.0,True,True +26099263400,3802.0,True,True +26099263500,4110.0,True,True +26099263600,5134.0,True,True +26099263700,4602.0,True,True +26099263800,2618.0,True,True +26099263900,3625.0,True,True +26099264000,2159.0,True,True +26099264200,4463.0,True,True +26099267600,1436.0,False,False +26099268000,5421.0,False,False +26099268100,2839.0,True,True +26099268200,3848.0,False,False +26099268300,2626.0,True,True +26099268400,3232.0,True,True +26099982000,9.0,False,False +26099982100,0.0,False,False +26099982200,32.0,True,True +26099982300,104.0,True,True +26099990100,0.0,False,False +26101000100,3448.0,True,True +26101000200,1916.0,False,False +26101000300,2034.0,False,False +26101000400,2428.0,False,False +26101000500,3616.0,True,True +26101000600,1437.0,True,True +26101000700,4223.0,False,False +26101000800,3236.0,False,False +26101000900,2119.0,False,False +26101990000,0.0,False,False +26103000100,2330.0,False,False +26103000200,2078.0,False,False +26103000300,2171.0,False,False +26103000400,2000.0,False,False +26103000500,1928.0,False,True +26103000600,2758.0,False,False +26103000700,3334.0,False,False +26103001100,1544.0,False,False +26103001200,5532.0,False,False +26103001300,4016.0,False,False +26103001500,2879.0,False,False +26103001600,2090.0,False,False +26103001700,2429.0,False,False +26103001800,2834.0,False,False +26103001900,1471.0,True,True +26103002000,2420.0,False,False +26103002100,3179.0,False,False +26103002200,3250.0,False,False +26103002300,2063.0,False,False +26103002400,3005.0,True,True +26103002500,2529.0,True,False +26103002600,2024.0,False,False +26103002800,4587.0,False,False +26103002900,4235.0,False,False +26103990000,0.0,False,False +26105950100,2373.0,True,True +26105950200,3486.0,False,False +26105950300,3696.0,False,False +26105950400,4575.0,True,True +26105950500,3620.0,True,True +26105950600,5117.0,True,False +26105950700,3033.0,True,True +26105950800,3054.0,False,False +26105990000,0.0,False,False +26107960100,2322.0,True,True +26107960200,2915.0,True,True +26107960300,2947.0,False,False +26107960400,4525.0,True,True +26107960500,4211.0,True,True +26107960600,3370.0,False,False +26107960700,7055.0,False,False +26107960800,5015.0,True,True +26107960900,3197.0,True,True +26107961000,5831.0,True,True +26107981300,1863.0,False,False +26109960100,3503.0,True,True +26109960200,4093.0,True,True +26109960300,2213.0,True,True +26109960400,3314.0,False,False +26109960500,2833.0,False,False +26109960600,3739.0,False,False +26109960700,3379.0,True,True +26109990000,0.0,False,False +26111290100,3521.0,False,False +26111290200,3606.0,True,True +26111290300,3826.0,False,False +26111290400,2256.0,False,False +26111290500,1980.0,False,False +26111290600,2418.0,True,True +26111290700,3738.0,False,False +26111290800,5453.0,False,False +26111290900,8077.0,False,False +26111291000,5752.0,False,False +26111291101,3694.0,False,False +26111291102,9596.0,False,False +26111291200,5552.0,False,False +26111291300,4454.0,False,False +26111291400,3891.0,False,False +26111291500,4255.0,True,True +26111291601,2533.0,False,False +26111291602,4693.0,False,False +26111291700,4060.0,True,True +26113960100,4025.0,True,True +26113960200,3222.0,True,True +26113960300,4974.0,True,True +26113960400,2807.0,True,True +26115830100,3422.0,False,False +26115830200,5925.0,False,False +26115830300,3711.0,False,False +26115830400,4008.0,False,False +26115830500,3849.0,False,False +26115830600,2946.0,False,False +26115830700,3725.0,False,False +26115830800,7020.0,False,False +26115830900,2656.0,False,False +26115831000,3133.0,False,False +26115831100,2647.0,False,False +26115831200,6800.0,True,True +26115831300,4900.0,False,False +26115831400,6856.0,True,True +26115831500,3169.0,False,False +26115831600,2847.0,False,False +26115831700,4094.0,False,False +26115831800,1275.0,True,True +26115831900,1338.0,True,True +26115832000,1700.0,False,False +26115832100,3186.0,True,True +26115832200,1769.0,True,True +26115832300,4592.0,True,False +26115832400,4345.0,False,False +26115832500,4442.0,False,False +26115832600,2095.0,False,False +26115832700,2632.0,False,False +26115832800,4835.0,False,False +26115832900,4405.0,False,False +26115833000,4458.0,False,False +26115833100,5416.0,False,False +26115833200,4340.0,False,False +26115833300,6568.0,False,False +26115833500,4934.0,False,False +26115833600,3012.0,False,False +26115833700,2552.0,False,False +26115833800,4953.0,False,False +26115833900,5172.0,False,False +26115990000,0.0,False,False +26117970100,4520.0,False,False +26117970200,3467.0,True,True +26117970300,3373.0,True,True +26117970400,3234.0,True,True +26117970500,7617.0,False,False +26117970600,5205.0,False,False +26117970700,5591.0,False,False +26117970800,4622.0,True,True +26117970900,3198.0,True,True +26117971000,6704.0,True,True +26117971100,5092.0,False,False +26117971200,5910.0,True,False +26117971300,4880.0,True,False +26119910100,2272.0,True,True +26119910200,1551.0,True,True +26119910300,1779.0,True,True +26119910400,2164.0,True,True +26119910500,1499.0,True,True +26121000100,5273.0,False,False +26121000300,2747.0,True,True +26121000401,5134.0,True,True +26121000402,4302.0,True,True +26121000500,4647.0,True,True +26121000601,1659.0,True,True +26121000800,2863.0,True,True +26121000900,3351.0,False,False +26121001000,1085.0,False,False +26121001200,2687.0,True,True +26121001300,2306.0,True,True +26121001402,3807.0,True,True +26121001500,3790.0,False,False +26121001600,2544.0,False,False +26121001700,5068.0,False,False +26121001800,5018.0,False,False +26121001901,3868.0,False,False +26121001902,4930.0,True,True +26121002000,3686.0,True,True +26121002100,3439.0,True,True +26121002200,3789.0,False,False +26121002300,5661.0,False,False +26121002400,3390.0,False,False +26121002500,7516.0,False,False +26121002601,3641.0,True,True +26121002602,4259.0,True,False +26121002700,7822.0,False,False +26121002800,6310.0,False,False +26121002900,5488.0,False,False +26121003000,4427.0,False,False +26121003100,4626.0,True,True +26121003200,5505.0,True,True +26121003300,5177.0,True,True +26121003400,4227.0,False,False +26121003500,4167.0,False,False +26121003600,6529.0,False,False +26121003700,5562.0,False,False +26121003800,3483.0,False,False +26121003900,1866.0,False,False +26121004000,2191.0,False,False +26121004200,3509.0,True,True +26121004300,1948.0,True,True +26121990000,0.0,False,False +26123970100,4321.0,True,True +26123970300,3727.0,True,True +26123970400,5143.0,False,False +26123970500,4706.0,True,True +26123970600,4342.0,False,False +26123970700,4335.0,True,True +26123970800,3270.0,False,True +26123970900,4564.0,True,True +26123971000,5138.0,False,False +26123971100,4189.0,True,False +26123971200,4631.0,False,False +26125120000,3123.0,False,False +26125120300,3445.0,False,False +26125121000,3302.0,False,False +26125121400,4860.0,False,False +26125121500,3542.0,False,False +26125121700,5457.0,False,False +26125121800,5155.0,False,False +26125122200,3700.0,False,False +26125122400,7017.0,False,False +26125122700,3173.0,False,False +26125122900,2008.0,False,False +26125123000,2454.0,False,False +26125123100,3190.0,False,False +26125124000,5472.0,False,False +26125124500,6174.0,False,False +26125125000,3419.0,False,False +26125125600,3029.0,False,False +26125126200,2754.0,False,False +26125126300,4886.0,False,False +26125126400,3586.0,False,False +26125126500,3205.0,False,False +26125127000,5630.0,False,False +26125127100,5695.0,False,False +26125127200,1711.0,False,False +26125127300,4572.0,False,False +26125127400,1704.0,False,False +26125127500,6973.0,False,False +26125127600,4795.0,False,False +26125127700,6653.0,False,False +26125128000,3571.0,False,False +26125128100,2824.0,False,False +26125128200,3394.0,False,False +26125128300,4477.0,False,False +26125128400,4008.0,False,False +26125128500,3191.0,False,False +26125128600,3696.0,False,False +26125128700,2181.0,False,False +26125128800,1422.0,False,False +26125128900,7094.0,False,False +26125129000,3141.0,False,False +26125130000,3413.0,False,False +26125130100,2298.0,False,False +26125130200,5592.0,False,False +26125130300,3904.0,False,False +26125130400,2769.0,False,False +26125130500,3033.0,False,False +26125130600,3152.0,False,False +26125130700,7047.0,False,False +26125131100,2279.0,False,False +26125131300,5102.0,False,False +26125131400,2081.0,False,False +26125131500,4042.0,False,False +26125131600,2770.0,False,False +26125131800,3757.0,False,False +26125132100,6090.0,False,False +26125132500,3556.0,False,False +26125132600,4167.0,False,False +26125132700,2943.0,False,False +26125133001,2791.0,False,False +26125133002,3289.0,False,False +26125133003,3356.0,False,False +26125133100,4466.0,True,False +26125134000,4851.0,False,False +26125134300,5257.0,False,False +26125134400,4675.0,False,False +26125134500,3175.0,False,False +26125134600,4087.0,False,False +26125134700,3395.0,False,False +26125134800,3209.0,False,False +26125134900,3778.0,False,False +26125135000,3842.0,True,True +26125135100,5445.0,False,False +26125135200,3360.0,False,False +26125135300,5388.0,False,False +26125136000,2744.0,False,False +26125136101,5082.0,False,False +26125136102,4447.0,False,False +26125136300,4987.0,False,False +26125136500,5670.0,False,False +26125136600,7927.0,False,False +26125136700,5557.0,False,False +26125136800,4462.0,False,False +26125137100,11067.0,False,False +26125137400,6560.0,False,False +26125137700,1669.0,False,False +26125137800,3313.0,False,False +26125138100,5642.0,False,False +26125138301,3939.0,False,False +26125138302,7344.0,False,False +26125138600,2774.0,False,False +26125139200,6455.0,False,False +26125139400,5378.0,False,False +26125140100,1345.0,False,False +26125140301,3968.0,False,False +26125140302,3958.0,False,False +26125140500,2389.0,False,False +26125140600,2600.0,False,False +26125140700,2870.0,False,False +26125140800,4948.0,False,False +26125140900,5419.0,True,True +26125141000,5225.0,True,True +26125141100,2984.0,True,True +26125141200,3136.0,True,True +26125141300,3719.0,True,True +26125141400,4626.0,True,True +26125141500,6378.0,True,True +26125141600,4485.0,True,True +26125141700,2268.0,True,True +26125142000,2348.0,True,True +26125142100,1584.0,True,True +26125142200,2764.0,True,True +26125142300,2307.0,True,True +26125142400,3428.0,True,True +26125142500,1948.0,False,False +26125142600,3539.0,True,True +26125142700,3797.0,True,True +26125143500,5521.0,False,False +26125144100,4012.0,False,False +26125144200,4357.0,False,False +26125144300,3756.0,False,False +26125144400,4963.0,False,False +26125144500,3306.0,False,False +26125144600,3732.0,False,False +26125144701,3830.0,True,True +26125144800,2827.0,False,False +26125144900,3821.0,True,False +26125145100,2375.0,False,False +26125145200,3658.0,False,False +26125145300,4370.0,False,False +26125145400,4323.0,False,False +26125145501,3584.0,False,False +26125145502,3840.0,False,False +26125145600,4746.0,False,False +26125145700,3135.0,False,False +26125145900,3094.0,True,False +26125150000,5063.0,False,False +26125150100,3413.0,False,False +26125150200,2417.0,False,False +26125150300,4938.0,False,False +26125150400,2947.0,False,False +26125150500,2624.0,False,False +26125150600,2785.0,False,False +26125150700,4355.0,False,False +26125150800,4482.0,False,False +26125150900,3903.0,False,False +26125151000,5127.0,False,False +26125152000,4004.0,False,False +26125152600,3869.0,False,False +26125152700,3040.0,False,False +26125152900,4289.0,False,False +26125153000,2204.0,False,False +26125153100,2227.0,False,False +26125153200,1916.0,False,False +26125153300,3656.0,False,False +26125154000,1818.0,False,False +26125154100,2729.0,False,False +26125154200,3252.0,False,False +26125154500,2505.0,False,False +26125154600,3017.0,False,False +26125156000,2537.0,False,False +26125156100,4544.0,False,False +26125156200,6898.0,False,False +26125156300,4076.0,False,False +26125156400,3775.0,False,False +26125156500,4341.0,False,False +26125156900,3215.0,False,False +26125157000,2406.0,False,False +26125157100,1904.0,False,False +26125157200,3897.0,False,False +26125157300,3351.0,False,False +26125157400,2627.0,False,False +26125157500,3117.0,False,False +26125157600,4949.0,False,False +26125157700,2373.0,False,False +26125157800,3340.0,False,False +26125157900,2832.0,False,False +26125158000,3976.0,False,False +26125158100,3163.0,False,False +26125158200,3248.0,False,False +26125159000,4439.0,False,False +26125160000,4128.0,False,False +26125160300,3001.0,True,True +26125160400,2816.0,True,True +26125160500,4149.0,False,False +26125160600,4641.0,False,False +26125160700,1657.0,False,False +26125160800,3771.0,False,False +26125160900,4483.0,False,False +26125161000,2105.0,False,False +26125161100,3360.0,False,False +26125161200,4508.0,False,False +26125161300,3387.0,False,False +26125161400,4032.0,True,True +26125161500,1826.0,False,False +26125161600,2467.0,False,False +26125161700,3170.0,False,False +26125161800,4158.0,False,False +26125161900,2216.0,False,False +26125162000,3520.0,False,False +26125162100,3145.0,False,False +26125162200,1195.0,False,False +26125162300,3818.0,False,False +26125162400,2289.0,True,True +26125162500,3460.0,False,False +26125165000,2941.0,False,False +26125165100,4072.0,False,False +26125165200,3550.0,False,False +26125166000,2595.0,False,False +26125166100,3222.0,False,False +26125166200,2876.0,False,False +26125166400,3115.0,False,False +26125166500,2753.0,False,False +26125166600,3658.0,False,False +26125166700,2334.0,False,False +26125166800,3498.0,False,False +26125166900,3437.0,False,False +26125167000,5454.0,False,False +26125167300,3662.0,False,False +26125167400,5221.0,False,False +26125167500,5384.0,False,False +26125167800,4351.0,False,False +26125167900,2869.0,False,False +26125168100,2238.0,False,False +26125168400,3821.0,False,False +26125168500,2945.0,False,False +26125168600,5842.0,False,False +26125168700,3901.0,False,False +26125168800,2343.0,False,False +26125168900,5695.0,False,False +26125170000,2436.0,False,False +26125170100,2905.0,False,False +26125170200,3375.0,False,False +26125170300,2793.0,False,False +26125170400,3863.0,False,False +26125171000,4976.0,False,False +26125171100,3538.0,False,False +26125171200,2173.0,False,False +26125171300,3356.0,False,True +26125171400,6777.0,False,False +26125171500,5194.0,True,True +26125171600,2061.0,True,True +26125172400,1651.0,True,True +26125172500,2411.0,True,True +26125173000,4299.0,False,False +26125173100,1789.0,False,False +26125173200,2803.0,False,False +26125173300,1594.0,False,False +26125173400,5376.0,False,False +26125173500,2665.0,False,False +26125173600,1611.0,False,False +26125175000,3132.0,False,False +26125175100,5169.0,True,True +26125175200,3910.0,True,True +26125175300,4314.0,True,True +26125180000,2677.0,False,False +26125180100,2787.0,False,False +26125180200,3553.0,False,False +26125180300,2954.0,False,False +26125181000,3875.0,True,True +26125181100,2712.0,False,False +26125181200,6578.0,False,False +26125181300,6002.0,True,True +26125181400,3252.0,False,False +26125181500,2465.0,False,False +26125181600,5236.0,True,True +26125183000,3796.0,False,False +26125183100,4540.0,False,False +26125183200,3474.0,False,False +26125183300,3017.0,False,False +26125183400,2725.0,False,False +26125183500,2382.0,False,False +26125183600,4536.0,False,False +26125183700,5696.0,False,False +26125183800,4379.0,False,False +26125183900,2676.0,False,False +26125184000,2950.0,False,False +26125184100,2855.0,False,False +26125184200,4038.0,False,False +26125184300,2729.0,False,False +26125184400,2808.0,False,False +26125184500,2122.0,False,False +26125184600,2903.0,False,False +26125184700,1569.0,False,False +26125187000,2431.0,False,False +26125188000,3900.0,False,False +26125188100,2422.0,False,False +26125190200,4426.0,False,False +26125190400,3646.0,False,False +26125190500,2525.0,False,False +26125190700,5239.0,False,False +26125190800,3279.0,False,False +26125191000,1716.0,False,False +26125191100,2616.0,False,False +26125191200,4827.0,False,False +26125191300,4003.0,False,False +26125192000,6030.0,False,False +26125192200,6028.0,False,False +26125192400,5019.0,False,False +26125192500,3150.0,False,False +26125192700,3214.0,False,False +26125192800,2204.0,False,False +26125193000,3341.0,False,False +26125193100,3754.0,False,False +26125193300,4545.0,False,False +26125193400,4497.0,False,False +26125193500,2800.0,False,False +26125193600,2491.0,False,False +26125193700,4609.0,False,False +26125194000,6048.0,False,False +26125194100,2901.0,False,False +26125194200,1907.0,False,False +26125194300,3849.0,False,False +26125194400,3638.0,False,False +26125194500,1086.0,False,False +26125194600,4589.0,False,False +26125196000,6517.0,False,False +26125196100,6200.0,False,False +26125196200,4306.0,False,False +26125196300,3489.0,False,False +26125196400,3995.0,False,False +26125196500,5433.0,False,False +26125196600,2174.0,False,False +26125196700,2800.0,False,False +26125196800,4316.0,False,False +26125196900,3546.0,False,False +26125197000,4882.0,False,False +26125197100,3016.0,False,False +26125197200,3672.0,False,False +26125197300,4621.0,False,False +26125197400,1917.0,False,False +26125197500,3883.0,False,False +26125197600,1915.0,False,False +26125197701,5098.0,False,False +26125197702,2203.0,False,False +26125197900,3433.0,False,False +26125198000,3877.0,False,False +26125198100,2696.0,False,True +26125981000,0.0,False,False +26127010300,6973.0,True,True +26127010400,3758.0,True,True +26127010500,3234.0,True,True +26127010600,5426.0,True,True +26127010800,2987.0,False,False +26127010900,2399.0,False,False +26127011000,1639.0,False,False +26127990000,0.0,False,False +26129950100,2252.0,True,True +26129950200,3226.0,False,True +26129950300,1636.0,True,True +26129950400,2963.0,True,True +26129950500,4449.0,True,True +26129950600,2472.0,True,True +26129950900,3900.0,True,True +26131970100,1750.0,True,True +26131970200,2451.0,True,True +26131970300,1676.0,False,False +26131990100,0.0,False,False +26133970100,4038.0,True,True +26133970200,4146.0,True,True +26133970300,3065.0,True,True +26133970400,3426.0,True,True +26133970500,4328.0,True,True +26133970600,4287.0,True,True +26135970201,1458.0,True,True +26135970202,1575.0,False,True +26135970300,1622.0,True,True +26135970400,2051.0,True,True +26135970500,1542.0,True,True +26137950100,2742.0,False,False +26137950200,6045.0,False,False +26137950300,5360.0,True,False +26137950400,1957.0,False,False +26137950500,3646.0,False,False +26137950600,4740.0,False,False +26139020100,5393.0,False,False +26139020200,4396.0,False,False +26139020400,4477.0,False,False +26139020501,3334.0,False,False +26139020503,3742.0,False,False +26139020504,2814.0,False,False +26139020600,3319.0,False,False +26139020900,4413.0,False,False +26139021000,5356.0,False,False +26139021100,4894.0,False,False +26139021201,5504.0,False,False +26139021202,7366.0,False,False +26139021301,3335.0,False,False +26139021303,2830.0,False,False +26139021304,5483.0,False,False +26139021400,8232.0,False,False +26139021500,8810.0,False,False +26139021603,4397.0,False,False +26139021604,7341.0,False,False +26139021605,4136.0,False,False +26139021606,5321.0,False,False +26139021700,4990.0,False,False +26139021801,4611.0,False,False +26139021802,4640.0,False,False +26139021901,4531.0,False,False +26139021902,8119.0,False,False +26139022001,5689.0,False,False +26139022002,4081.0,False,False +26139022103,1506.0,False,False +26139022105,6083.0,False,False +26139022106,3761.0,False,False +26139022107,1371.0,False,False +26139022108,6031.0,False,False +26139022203,9848.0,False,False +26139022206,4681.0,False,False +26139022600,2069.0,False,False +26139022900,6205.0,False,False +26139023001,6429.0,False,False +26139023002,7425.0,False,False +26139023100,11433.0,False,False +26139023200,2521.0,False,False +26139023500,4835.0,False,False +26139023600,2447.0,False,False +26139024300,5528.0,False,False +26139024400,10264.0,False,False +26139024500,10837.0,False,False +26139024600,6056.0,False,False +26139024900,7695.0,False,False +26139025100,7405.0,False,False +26139025200,5784.0,False,False +26139025500,4013.0,False,False +26139025700,5419.0,False,False +26139025800,5358.0,False,False +26139990000,0.0,False,False +26141950100,1849.0,False,False +26141950200,2479.0,True,True +26141950300,2074.0,True,True +26141950400,2300.0,True,True +26141950500,2674.0,False,False +26141950600,1338.0,False,False +26141990000,0.0,False,False +26143970100,1873.0,True,True +26143970200,1706.0,True,True +26143970300,2976.0,True,True +26143970400,2064.0,False,False +26143970500,962.0,True,True +26143970600,2250.0,False,False +26143970700,2745.0,False,False +26143971000,3859.0,True,True +26143971100,2567.0,True,True +26143971200,2849.0,True,True +26145000100,718.0,True,True +26145000200,1458.0,True,True +26145000400,954.0,True,True +26145000600,1476.0,True,True +26145000700,1829.0,True,True +26145000800,2867.0,True,True +26145000900,3583.0,True,True +26145001000,3692.0,True,True +26145001100,2569.0,True,True +26145001200,3192.0,True,True +26145001300,2209.0,True,True +26145001400,2913.0,True,True +26145001500,4037.0,True,True +26145001600,3643.0,True,True +26145001700,2246.0,True,True +26145001800,1328.0,True,True +26145001900,1904.0,True,True +26145002000,3419.0,True,True +26145002100,4417.0,True,True +26145010100,9877.0,False,False +26145010200,4854.0,False,False +26145010302,7869.0,False,False +26145010303,3274.0,False,False +26145010304,5127.0,False,False +26145010401,2542.0,True,True +26145010402,5256.0,False,False +26145010403,5593.0,False,False +26145010501,2329.0,False,False +26145010502,5354.0,False,False +26145010600,2235.0,False,False +26145010700,5732.0,True,True +26145010800,2600.0,False,False +26145011000,5602.0,True,True +26145011100,1767.0,True,True +26145011200,1842.0,False,False +26145011300,7133.0,False,False +26145011500,2555.0,True,True +26145011600,3482.0,True,True +26145011701,1608.0,False,False +26145011702,2313.0,False,False +26145011800,2137.0,True,True +26145011901,1965.0,False,False +26145011902,2165.0,False,False +26145012001,3468.0,False,False +26145012002,3570.0,False,False +26145012003,4501.0,False,False +26145012100,3955.0,False,False +26145012200,1599.0,False,False +26145012300,3042.0,False,False +26145012400,1892.0,False,False +26145012500,4001.0,True,True +26145012600,3266.0,True,True +26145012700,4394.0,False,False +26145012900,4415.0,False,False +26145013000,4319.0,False,False +26145013100,5734.0,False,False +26147620000,4607.0,True,True +26147621000,4146.0,True,True +26147622000,4338.0,True,True +26147623000,2611.0,True,True +26147624000,1662.0,True,True +26147625000,1484.0,True,True +26147626000,2042.0,True,True +26147627000,2410.0,False,False +26147628000,3250.0,True,True +26147629000,2331.0,True,True +26147630100,1122.0,False,False +26147630400,5809.0,False,False +26147631100,1765.0,False,False +26147631600,2455.0,False,False +26147632000,3925.0,True,False +26147633100,2771.0,False,False +26147633200,2680.0,False,False +26147634100,3669.0,False,True +26147634600,5503.0,False,False +26147635000,5767.0,False,False +26147636000,4613.0,True,True +26147637100,3856.0,False,False +26147637200,3694.0,False,False +26147637300,2143.0,False,False +26147640100,2094.0,False,False +26147640200,2402.0,False,False +26147640600,2365.0,False,False +26147641000,3447.0,False,False +26147642000,5327.0,False,False +26147643000,3723.0,False,False +26147644000,4236.0,False,False +26147645000,3337.0,False,False +26147646000,4769.0,False,False +26147647000,3039.0,False,False +26147648000,1066.0,False,False +26147649000,4028.0,False,False +26147650100,4027.0,False,False +26147650200,1067.0,False,False +26147651100,2020.0,False,False +26147651200,2016.0,False,False +26147651600,4013.0,False,False +26147652100,2480.0,False,False +26147652600,3194.0,False,False +26147655100,5018.0,False,False +26147655600,3242.0,False,False +26147657100,1821.0,True,True +26147657200,5501.0,False,False +26147658100,2605.0,False,False +26147658500,3757.0,False,False +26147990000,0.0,False,False +26149040100,3684.0,False,False +26149040200,2084.0,True,True +26149040300,2843.0,True,False +26149040400,2237.0,True,True +26149040500,2596.0,True,True +26149040600,3184.0,True,True +26149040700,3199.0,True,True +26149040800,3370.0,True,True +26149040900,4315.0,False,False +26149041000,3399.0,True,True +26149041101,4305.0,True,False +26149041102,2963.0,False,False +26149041200,2881.0,True,True +26149041300,6693.0,False,False +26149041400,5131.0,False,False +26149041500,4647.0,True,False +26149041600,3305.0,False,False +26151970100,1704.0,False,False +26151970200,2432.0,True,True +26151970300,3384.0,True,True +26151970400,3917.0,True,True +26151970500,2296.0,True,True +26151970600,2087.0,False,False +26151970700,1817.0,True,True +26151970800,5667.0,False,False +26151970900,4772.0,True,True +26151971000,4433.0,True,True +26151971100,3796.0,True,True +26151971200,4990.0,True,True +26151990000,0.0,False,False +26153000100,2463.0,False,False +26153000200,2412.0,False,False +26153000300,3173.0,True,True +26153990000,0.0,False,False +26155030100,5845.0,False,False +26155030200,3428.0,False,False +26155030300,4798.0,False,False +26155030400,2999.0,False,False +26155030500,3289.0,True,True +26155030600,1597.0,True,True +26155030700,3182.0,True,True +26155030800,3286.0,True,True +26155031301,4162.0,False,False +26155031302,4193.0,False,False +26155031401,5866.0,False,False +26155031402,3706.0,False,False +26155031500,6385.0,False,False +26155031600,3718.0,True,False +26155031700,4103.0,False,False +26155031800,4186.0,False,False +26155031900,3597.0,False,False +26157000100,4087.0,True,False +26157000200,3159.0,False,False +26157000300,3190.0,False,False +26157000400,3303.0,False,False +26157000500,4881.0,False,False +26157000600,4450.0,True,True +26157000700,3306.0,True,True +26157000800,3769.0,False,False +26157000900,5149.0,True,True +26157001000,5150.0,True,True +26157001100,3302.0,True,True +26157001200,4459.0,False,False +26157001300,4734.0,False,False +26157990000,0.0,False,False +26159010100,6801.0,False,False +26159010200,6087.0,True,True +26159010300,2279.0,False,False +26159010400,2645.0,True,True +26159010500,3371.0,True,True +26159010600,2869.0,True,True +26159010900,7614.0,False,False +26159011002,6661.0,False,False +26159011300,4296.0,True,True +26159011400,4743.0,True,True +26159011500,3593.0,False,False +26159011600,5978.0,False,False +26159011800,6850.0,False,False +26159011900,5509.0,False,False +26159012000,6062.0,True,True +26159990000,0.0,False,False +26161400100,2348.0,False,False +26161400200,6143.0,False,True +26161400300,7393.0,False,False +26161400400,3087.0,False,False +26161400500,7332.0,False,False +26161400600,4714.0,False,False +26161400700,2887.0,False,False +26161400800,3224.0,False,False +26161402100,3046.0,False,False +26161402200,5261.0,False,False +26161402300,2624.0,False,False +26161402500,2330.0,False,False +26161402600,2532.0,False,False +26161402700,5319.0,False,False +26161403100,1510.0,False,False +26161403200,3084.0,False,False +26161403300,3794.0,False,False +26161403400,3064.0,False,False +26161403500,3078.0,False,False +26161403600,5443.0,False,False +26161403800,3073.0,False,False +26161404100,3151.0,False,False +26161404200,1802.0,True,True +26161404300,2740.0,False,False +26161404400,2126.0,False,False +26161404500,4190.0,False,False +26161404600,4776.0,False,False +26161405100,1786.0,False,False +26161405200,5001.0,False,False +26161405300,5282.0,False,False +26161405400,2201.0,False,False +26161405500,2493.0,False,False +26161405600,4931.0,False,False +26161406000,3510.0,False,False +26161407000,5003.0,False,False +26161407400,5824.0,True,True +26161407600,3150.0,False,False +26161410100,3060.0,False,True +26161410200,2357.0,False,False +26161410300,4390.0,False,False +26161410400,3665.0,False,False +26161410500,2712.0,False,False +26161410600,2598.0,True,True +26161410700,1220.0,True,True +26161410800,1725.0,True,True +26161410900,1555.0,False,False +26161411000,2820.0,False,False +26161411100,2831.0,False,False +26161411200,2591.0,False,False +26161411700,2187.0,False,False +26161411900,3380.0,True,True +26161412000,4232.0,True,True +26161412100,3205.0,True,True +26161412300,3039.0,True,True +26161412600,2407.0,False,False +26161412700,5639.0,False,False +26161413000,3583.0,False,False +26161413200,4575.0,False,False +26161413401,4559.0,False,False +26161413402,5454.0,False,False +26161413403,2086.0,False,False +26161414000,3408.0,False,False +26161414200,3034.0,False,False +26161414300,3284.0,False,False +26161414500,2989.0,False,False +26161414700,1606.0,False,False +26161414900,3452.0,False,False +26161415200,2297.0,False,False +26161415400,2008.0,False,False +26161415600,2373.0,False,False +26161415800,3761.0,False,False +26161416000,3321.0,False,False +26161416200,5194.0,False,False +26161420000,3385.0,False,False +26161420200,3789.0,False,False +26161421100,3937.0,False,False +26161421900,1359.0,False,False +26161422200,7542.0,False,False +26161422900,2100.0,True,True +26161423400,6668.0,False,False +26161423600,2601.0,False,False +26161425000,4509.0,False,False +26161426000,4248.0,False,False +26161431000,4732.0,False,False +26161432000,4947.0,False,False +26161444000,6477.0,False,False +26161445000,2782.0,False,False +26161446200,2214.0,False,False +26161446400,3117.0,False,False +26161447000,2983.0,False,False +26161448000,3919.0,False,False +26161453000,5379.0,False,False +26161454000,4946.0,False,False +26161455000,5060.0,False,False +26161456000,6014.0,False,False +26161461000,7567.0,False,False +26161464000,6193.0,False,False +26161465000,6077.0,False,False +26161466000,2559.0,False,False +26161984000,47.0,False,False +26163500100,3369.0,True,True +26163500200,2834.0,True,True +26163500300,1900.0,True,True +26163500400,1052.0,True,True +26163500500,1289.0,True,True +26163500600,2891.0,True,True +26163500700,4608.0,True,True +26163500800,3179.0,True,True +26163500900,3550.0,True,True +26163501000,3094.0,True,True +26163501100,2886.0,True,True +26163501200,1648.0,True,True +26163501300,3011.0,True,True +26163501400,3258.0,True,True +26163501500,4516.0,True,True +26163501600,2149.0,True,True +26163501700,1888.0,True,True +26163501800,4733.0,False,False +26163501900,2872.0,True,True +26163502000,2076.0,True,True +26163503100,3096.0,True,True +26163503200,2453.0,True,True +26163503300,3508.0,True,True +26163503400,955.0,True,True +26163503500,2784.0,True,True +26163503600,1431.0,True,True +26163503900,2071.0,True,True +26163504000,1241.0,True,True +26163504100,1357.0,True,True +26163504200,1926.0,True,True +26163504300,2067.0,True,True +26163504400,1567.0,True,True +26163504700,1714.0,True,True +26163504800,591.0,True,True +26163504900,3486.0,True,True +26163505000,795.0,True,True +26163505100,3736.0,True,True +26163505200,2961.0,True,True +26163505400,2412.0,True,True +26163505500,1162.0,True,True +26163506100,2014.0,True,True +26163506200,1974.0,True,True +26163506300,1792.0,True,True +26163506400,2015.0,True,True +26163506500,2141.0,True,True +26163506600,3423.0,True,True +26163506700,1066.0,True,True +26163506800,3890.0,True,True +26163506900,3571.0,True,True +26163507000,2956.0,True,True +26163507100,2082.0,True,True +26163507200,1091.0,True,True +26163507300,1942.0,True,True +26163507400,2160.0,True,True +26163507500,1869.0,True,True +26163507800,456.0,True,True +26163507900,1102.0,True,True +26163508000,1273.0,True,True +26163508100,1252.0,True,True +26163510400,514.0,True,True +26163510500,4257.0,True,True +26163510600,6074.0,True,True +26163510700,2006.0,True,True +26163511000,1562.0,True,True +26163511200,1204.0,True,True +26163511300,2514.0,True,True +26163511400,2364.0,True,True +26163511900,1369.0,True,True +26163512100,2707.0,True,True +26163512200,1061.0,True,True +26163512300,1405.0,True,True +26163512400,1097.0,True,True +26163512600,1179.0,True,True +26163512900,1228.0,True,True +26163513200,1668.0,True,True +26163513300,2480.0,False,False +26163513600,1379.0,True,True +26163513700,3616.0,True,True +26163513900,1879.0,True,True +26163514100,2585.0,True,True +26163514200,2267.0,True,True +26163514300,2550.0,True,True +26163514500,943.0,True,True +26163515200,1951.0,True,True +26163515300,3172.0,True,True +26163515400,1633.0,False,False +26163515600,1456.0,True,True +26163515700,3719.0,False,False +26163515900,1340.0,True,True +26163516000,2230.0,True,True +26163516100,576.0,True,True +26163516200,645.0,True,True +26163516300,720.0,True,True +26163516400,855.0,True,True +26163516500,1901.0,False,False +26163516600,2534.0,True,True +26163516700,3194.0,True,True +26163516800,948.0,True,True +26163516900,2052.0,True,True +26163517000,3111.0,False,False +26163517100,1167.0,False,False +26163517200,2471.0,False,False +26163517300,2436.0,True,True +26163517500,2691.0,True,True +26163518000,2863.0,False,False +26163518400,269.0,True,True +26163518500,833.0,True,True +26163518600,373.0,True,True +26163518800,565.0,True,True +26163518900,1855.0,True,True +26163520200,3138.0,False,False +26163520300,2624.0,False,False +26163520400,1941.0,True,True +26163520700,2836.0,False,False +26163520800,1728.0,False,False +26163521100,1949.0,True,True +26163521300,889.0,True,True +26163521400,1147.0,True,True +26163521500,1514.0,True,True +26163521800,1625.0,True,True +26163521900,3105.0,True,True +26163522000,1936.0,True,True +26163522100,662.0,True,True +26163522200,390.0,True,True +26163522300,1266.0,True,True +26163522400,972.0,True,True +26163522500,1772.0,True,True +26163523100,1480.0,True,True +26163523200,3956.0,True,True +26163523300,3350.0,True,True +26163523400,2112.0,True,True +26163523800,4683.0,True,True +26163524000,3312.0,True,True +26163524100,3695.0,True,True +26163524200,5379.0,True,True +26163524300,2904.0,True,True +26163524500,113.0,True,True +26163524700,3933.0,True,True +26163524800,2632.0,True,True +26163524900,1179.0,True,True +26163525000,632.0,True,True +26163525400,2369.0,True,True +26163525500,1177.0,True,True +26163525600,1551.0,True,True +26163525700,5372.0,True,True +26163525800,2046.0,True,True +26163526000,3122.0,True,True +26163526100,3196.0,True,True +26163526200,3285.0,True,True +26163526300,3685.0,True,True +26163526400,1356.0,True,True +26163526500,1821.0,True,True +26163527200,649.0,True,True +26163527300,1014.0,True,True +26163530100,2171.0,True,True +26163530200,4298.0,False,True +26163530300,1312.0,True,True +26163530400,1045.0,True,True +26163530500,1815.0,True,True +26163530800,1531.0,True,True +26163530900,1626.0,True,True +26163531100,951.0,True,True +26163531200,2576.0,False,False +26163531300,1044.0,True,True +26163531400,1206.0,True,True +26163531500,2715.0,True,True +26163531600,1855.0,True,True +26163531700,1553.0,True,True +26163531800,1281.0,True,True +26163531900,904.0,True,True +26163532200,1199.0,True,True +26163532300,727.0,False,False +26163532400,1412.0,True,True +26163532600,1969.0,True,True +26163532700,614.0,True,True +26163533000,1634.0,True,True +26163533100,1427.0,True,True +26163533200,827.0,True,True +26163533300,1023.0,True,True +26163533400,2171.0,True,True +26163533500,1195.0,True,True +26163533600,1674.0,True,True +26163533700,899.0,True,True +26163533900,2799.0,True,True +26163534100,1590.0,True,True +26163534200,3398.0,True,True +26163534300,1477.0,True,True +26163534400,1718.0,True,True +26163534500,683.0,True,True +26163534600,1834.0,True,True +26163534700,3423.0,True,True +26163535000,2741.0,True,True +26163535100,1737.0,True,True +26163535200,2048.0,True,True +26163535300,4195.0,True,True +26163535400,1435.0,True,True +26163535500,3400.0,True,True +26163535600,4363.0,True,True +26163535700,1122.0,True,True +26163536100,3400.0,True,True +26163536200,2315.0,True,True +26163536300,2745.0,True,True +26163536400,2274.0,True,True +26163536500,2338.0,True,True +26163536600,2483.0,True,True +26163536700,956.0,True,True +26163536800,1803.0,True,True +26163536900,3235.0,True,True +26163537000,3399.0,True,True +26163537100,2275.0,True,True +26163537200,592.0,True,True +26163537300,1727.0,True,True +26163537500,3064.0,True,True +26163537600,3655.0,True,True +26163537700,3083.0,True,True +26163537800,1446.0,True,True +26163538100,2329.0,False,False +26163538200,2214.0,False,False +26163538300,2129.0,True,True +26163538400,4435.0,False,False +26163538500,4658.0,False,True +26163538600,5558.0,True,True +26163538700,4522.0,True,True +26163538800,1657.0,False,False +26163538900,3419.0,False,True +26163539000,2778.0,True,True +26163539100,1764.0,True,True +26163539200,5542.0,True,True +26163539300,4090.0,False,False +26163539400,4070.0,True,True +26163539500,3283.0,True,True +26163539600,3529.0,True,True +26163539700,1994.0,True,True +26163540100,2938.0,True,True +26163540200,3345.0,True,True +26163540300,3524.0,True,True +26163540400,2883.0,True,True +26163540500,3356.0,True,True +26163540600,3370.0,True,True +26163540700,3536.0,True,True +26163540800,2440.0,True,True +26163540900,3477.0,False,True +26163541000,4176.0,True,True +26163541100,2359.0,True,True +26163541200,2274.0,True,True +26163541300,2872.0,True,True +26163541400,2893.0,True,True +26163541500,4185.0,True,True +26163541700,2501.0,True,True +26163541800,2373.0,True,True +26163542100,4104.0,True,True +26163542200,3244.0,True,True +26163542300,1989.0,True,True +26163542400,2763.0,True,True +26163542500,2663.0,True,True +26163542600,3731.0,True,True +26163542700,939.0,True,True +26163542800,2800.0,True,True +26163542900,3853.0,False,False +26163543000,1848.0,False,False +26163543100,2397.0,False,False +26163543200,2848.0,True,True +26163543400,3577.0,True,True +26163543500,944.0,True,True +26163543600,1084.0,True,True +26163543700,2620.0,True,True +26163543800,777.0,True,True +26163543900,782.0,True,True +26163544000,2634.0,True,True +26163544100,2479.0,True,True +26163544200,1781.0,True,True +26163544300,2388.0,True,True +26163545100,773.0,True,True +26163545200,2515.0,True,True +26163545300,2078.0,True,True +26163545400,1863.0,True,True +26163545500,4002.0,True,True +26163545600,5503.0,True,True +26163545700,3399.0,True,True +26163545800,5325.0,True,True +26163545900,4000.0,True,True +26163546000,3086.0,True,True +26163546100,3579.0,True,True +26163546200,3945.0,True,True +26163546300,1998.0,True,True +26163546400,935.0,True,True +26163546500,2414.0,True,True +26163546600,2027.0,True,True +26163546700,2705.0,True,True +26163546800,3925.0,True,True +26163546900,1061.0,True,True +26163550100,4007.0,False,False +26163550200,3988.0,False,False +26163550300,3158.0,False,False +26163550400,1548.0,False,False +26163550500,3658.0,False,False +26163550600,2419.0,False,False +26163550700,5283.0,False,False +26163550800,1466.0,False,False +26163550900,2735.0,False,False +26163551100,4910.0,False,False +26163551200,4002.0,False,False +26163551300,3630.0,False,False +26163551400,4206.0,True,True +26163551500,2467.0,False,False +26163551600,3592.0,True,True +26163551700,3206.0,False,False +26163551800,3380.0,False,False +26163552000,3298.0,True,True +26163552100,3814.0,True,True +26163552200,3709.0,True,True +26163552300,3204.0,True,True +26163552400,2842.0,True,True +26163552800,4955.0,True,True +26163553000,1006.0,True,True +26163553100,1665.0,True,True +26163553200,661.0,True,True +26163553300,1108.0,True,True +26163553400,2598.0,True,True +26163553600,2272.0,True,True +26163553800,1557.0,True,True +26163554100,3952.0,True,True +26163554200,3245.0,False,True +26163554300,4695.0,False,False +26163554400,3171.0,False,False +26163554500,2725.0,True,True +26163554600,3648.0,False,False +26163554700,2919.0,False,False +26163554800,3382.0,False,False +26163554900,3598.0,False,False +26163555100,4542.0,True,True +26163555300,3107.0,True,True +26163555400,2384.0,True,True +26163555500,2911.0,False,False +26163555600,2799.0,False,False +26163556100,3287.0,False,False +26163556200,2724.0,False,False +26163556300,3316.0,False,False +26163556400,4346.0,False,False +26163556500,2187.0,False,False +26163556600,3517.0,False,False +26163556700,2556.0,False,False +26163556800,1762.0,False,False +26163556900,3867.0,False,False +26163557000,3227.0,False,False +26163557100,2482.0,False,False +26163557200,2050.0,False,False +26163557300,2230.0,False,False +26163557400,3144.0,False,False +26163557500,3960.0,False,False +26163557600,2787.0,False,False +26163557700,4188.0,False,False +26163557900,4726.0,False,False +26163558000,4195.0,False,False +26163558100,3393.0,False,False +26163558200,4499.0,False,False +26163558300,1739.0,False,False +26163558400,4030.0,False,False +26163558500,3961.0,False,False +26163558600,1787.0,False,False +26163558700,2638.0,False,False +26163558800,2575.0,False,False +26163558900,1791.0,False,False +26163559000,2722.0,False,False +26163559100,2421.0,False,False +26163559200,2142.0,False,False +26163560100,2694.0,False,False +26163560200,5197.0,False,False +26163560300,3318.0,False,False +26163560400,6015.0,False,False +26163561200,6959.0,False,False +26163561300,7580.0,False,False +26163561600,3665.0,False,False +26163561700,2223.0,False,False +26163561900,6877.0,False,False +26163562300,2260.0,False,False +26163562400,5244.0,False,False +26163562500,1834.0,False,False +26163562600,3759.0,False,False +26163562700,3531.0,False,False +26163562800,3413.0,False,False +26163562900,3383.0,False,False +26163563200,3137.0,False,False +26163563300,2823.0,False,False +26163563400,5004.0,False,False +26163563500,5976.0,False,False +26163563600,1956.0,False,False +26163563700,1729.0,False,False +26163563800,3115.0,False,False +26163563900,2315.0,False,False +26163564000,1963.0,False,False +26163564100,4366.0,False,False +26163564200,4132.0,False,False +26163564300,2528.0,False,False +26163564401,5315.0,False,False +26163564402,5678.0,False,False +26163564501,4979.0,False,False +26163564502,3758.0,False,False +26163564503,3470.0,False,False +26163564504,7404.0,False,False +26163564600,6121.0,False,False +26163564700,4497.0,False,False +26163564800,4661.0,False,False +26163564900,1904.0,True,True +26163565000,5089.0,False,False +26163565100,3515.0,False,False +26163565200,5321.0,False,False +26163565300,6069.0,True,True +26163565600,2111.0,False,False +26163565700,3126.0,False,False +26163565800,3550.0,False,False +26163565900,2613.0,False,False +26163566400,915.0,True,True +26163566500,2335.0,True,True +26163566600,1967.0,False,False +26163566700,4147.0,True,True +26163566800,2687.0,False,False +26163566900,4925.0,True,True +26163567000,3578.0,True,True +26163567100,3562.0,True,True +26163567201,3592.0,False,False +26163567202,2765.0,False,False +26163567300,4405.0,False,False +26163567400,2764.0,False,False +26163567800,4909.0,False,False +26163567900,2979.0,False,False +26163568000,2212.0,True,True +26163568200,4089.0,False,False +26163568300,3845.0,True,True +26163568400,3691.0,False,False +26163568500,3734.0,True,True +26163568700,3594.0,False,False +26163568800,3138.0,True,True +26163568900,2776.0,True,True +26163569100,2483.0,False,False +26163569200,2458.0,True,True +26163569300,3427.0,False,False +26163569400,2643.0,False,False +26163569500,2702.0,False,False +26163569600,3512.0,False,False +26163569700,4574.0,False,False +26163569800,2220.0,False,False +26163569900,2664.0,False,False +26163570100,4311.0,True,True +26163570200,2613.0,True,True +26163570400,5253.0,True,True +26163570500,3282.0,True,True +26163570600,2273.0,True,True +26163570800,2971.0,True,True +26163570900,1902.0,True,True +26163571000,1915.0,True,True +26163571500,4701.0,False,False +26163571600,1842.0,True,True +26163571700,2396.0,False,False +26163571800,2883.0,True,True +26163571900,2735.0,False,False +26163572000,2039.0,True,True +26163572100,5842.0,True,True +26163572200,6146.0,True,False +26163572400,1407.0,False,False +26163572500,1857.0,True,True +26163572600,4984.0,True,True +26163572700,4267.0,False,False +26163572800,5034.0,True,True +26163572900,2561.0,False,False +26163573000,3085.0,False,False +26163573100,4078.0,False,False +26163573300,4229.0,True,True +26163573400,3616.0,True,True +26163573500,4455.0,True,True +26163573600,6173.0,True,True +26163573701,1890.0,True,True +26163573702,6642.0,True,True +26163573800,5230.0,True,True +26163573900,5252.0,True,True +26163574000,5879.0,True,True +26163574100,4399.0,True,True +26163574202,2948.0,False,False +26163574300,3401.0,True,True +26163574600,4411.0,False,False +26163574700,4734.0,False,False +26163574800,3815.0,False,False +26163574900,1600.0,False,False +26163575000,3774.0,False,False +26163575100,2263.0,False,False +26163575200,3729.0,False,False +26163575300,3292.0,False,False +26163575400,2976.0,False,False +26163575500,3427.0,False,False +26163575600,1624.0,False,False +26163576000,1878.0,False,False +26163576100,6070.0,False,False +26163576200,2221.0,False,False +26163576300,2485.0,False,False +26163576400,3541.0,False,False +26163576500,3784.0,False,False +26163576600,4004.0,False,False +26163576700,3233.0,False,False +26163577000,3761.0,True,True +26163577100,2428.0,True,True +26163577200,3297.0,True,True +26163577300,3159.0,True,True +26163577400,3548.0,True,True +26163577500,3057.0,True,True +26163577600,3447.0,True,True +26163577700,2391.0,False,False +26163577800,4757.0,False,False +26163577900,4325.0,True,True +26163578000,2527.0,True,True +26163578500,5102.0,True,True +26163578600,5246.0,True,True +26163579100,1570.0,True,True +26163579200,3536.0,True,True +26163579300,2396.0,True,True +26163579500,1751.0,True,True +26163579600,2739.0,True,True +26163579700,3062.0,True,True +26163579800,1880.0,True,True +26163579900,4942.0,False,False +26163580100,2010.0,False,False +26163580200,2888.0,False,False +26163580300,2897.0,False,False +26163580400,2603.0,False,False +26163580500,2803.0,False,False +26163580600,2852.0,False,False +26163580700,3768.0,True,True +26163580800,1455.0,False,False +26163580900,3768.0,False,False +26163581100,3747.0,False,False +26163581200,3347.0,False,False +26163581500,2229.0,False,False +26163581600,5978.0,False,False +26163581800,2730.0,False,False +26163581900,3960.0,False,False +26163582000,3235.0,True,True +26163582100,3939.0,False,False +26163583000,2626.0,False,False +26163583100,3515.0,True,True +26163583200,2245.0,True,True +26163583300,2662.0,False,False +26163583400,5131.0,False,False +26163583500,2624.0,False,False +26163583600,2612.0,False,False +26163583700,3612.0,False,False +26163583800,4876.0,False,False +26163583900,3954.0,True,True +26163584000,4359.0,False,False +26163584100,1597.0,False,False +26163584200,3720.0,False,False +26163584300,1871.0,True,True +26163584400,3111.0,True,True +26163584500,2662.0,True,True +26163584600,1916.0,True,True +26163584700,2188.0,False,False +26163584800,6098.0,True,True +26163585500,1730.0,True,True +26163585600,3664.0,False,False +26163585700,1714.0,False,False +26163585800,4258.0,False,False +26163585900,2920.0,True,True +26163586200,7123.0,False,True +26163586300,2098.0,False,False +26163587000,3889.0,False,False +26163587900,6166.0,False,False +26163588000,5922.0,False,False +26163588100,2365.0,True,True +26163588200,3362.0,False,False +26163588300,5150.0,False,False +26163588400,5370.0,False,False +26163589300,3968.0,False,False +26163589400,5386.0,False,False +26163590400,7240.0,False,False +26163590500,6326.0,False,False +26163590600,2401.0,False,False +26163591501,3359.0,True,True +26163591502,3292.0,False,False +26163591600,2270.0,False,False +26163591700,6709.0,False,False +26163591800,5822.0,False,False +26163591900,5644.0,False,False +26163592000,4492.0,False,False +26163593000,5489.0,False,False +26163593200,3680.0,False,False +26163593300,3349.0,False,False +26163594000,2510.0,False,False +26163594100,4187.0,False,False +26163594200,2476.0,False,False +26163594300,3021.0,False,False +26163594400,2773.0,False,False +26163594500,3328.0,False,False +26163595000,3855.0,False,False +26163595100,5469.0,False,False +26163595200,2813.0,False,False +26163596100,3487.0,False,False +26163596200,3997.0,False,False +26163596300,2675.0,False,False +26163597000,4535.0,False,False +26163598000,3186.0,False,False +26163599000,5675.0,False,False +26163599100,4292.0,False,False +26163985000,0.0,False,False +26163985100,200.0,False,False +26163985200,0.0,False,False +26163985300,233.0,False,False +26163985400,20.0,False,False +26163985500,0.0,False,False +26163985600,0.0,False,False +26163985700,0.0,False,False +26163985900,0.0,False,False +26163990100,0.0,False,False +26163990200,0.0,False,False +26165380100,5015.0,True,True +26165380200,4607.0,True,True +26165380300,2734.0,True,True +26165380400,4717.0,False,False +26165380500,6671.0,False,False +26165380600,3142.0,True,True +26165380700,3151.0,True,True +26165380800,3219.0,True,True +27001770100,2240.0,True,True +27001770200,2284.0,False,False +27001770300,3483.0,True,True +27001770400,2970.0,True,True +27001790501,1905.0,False,False +27001790502,2952.0,False,False +27003050107,2900.0,False,False +27003050108,5252.0,False,False +27003050109,5481.0,False,False +27003050110,2670.0,False,False +27003050111,3719.0,False,False +27003050114,3105.0,False,False +27003050115,5577.0,False,False +27003050116,4682.0,False,False +27003050208,3303.0,False,False +27003050210,4055.0,False,False +27003050215,4464.0,False,False +27003050216,5792.0,False,False +27003050217,3384.0,False,False +27003050218,3190.0,False,False +27003050219,3001.0,False,False +27003050220,7440.0,False,False +27003050221,7072.0,False,False +27003050222,5343.0,False,False +27003050223,2962.0,False,False +27003050224,3604.0,False,False +27003050225,6547.0,False,False +27003050226,3027.0,False,False +27003050227,4578.0,False,False +27003050228,5920.0,False,False +27003050229,5664.0,False,False +27003050230,2556.0,False,False +27003050232,3985.0,False,False +27003050233,3369.0,False,False +27003050234,3407.0,False,False +27003050235,2771.0,False,False +27003050236,4311.0,False,False +27003050237,5504.0,False,False +27003050401,2841.0,False,False +27003050402,3588.0,False,False +27003050501,3431.0,False,False +27003050504,2411.0,False,False +27003050505,5200.0,False,False +27003050602,2477.0,False,False +27003050605,5902.0,False,False +27003050606,1947.0,False,False +27003050607,4425.0,False,False +27003050608,4761.0,False,False +27003050609,3659.0,False,False +27003050610,6437.0,False,False +27003050702,3541.0,False,False +27003050704,4485.0,False,False +27003050706,3234.0,False,False +27003050707,6130.0,False,False +27003050709,2445.0,False,False +27003050710,3826.0,False,False +27003050711,4699.0,False,False +27003050712,4549.0,False,False +27003050805,6912.0,False,False +27003050806,6413.0,False,False +27003050807,4243.0,False,True +27003050808,2108.0,False,False +27003050809,6591.0,False,False +27003050810,4429.0,False,False +27003050811,2817.0,False,False +27003050813,6006.0,False,False +27003050816,5512.0,False,False +27003050818,6483.0,False,False +27003050819,4760.0,False,False +27003050820,3131.0,False,False +27003050821,4709.0,False,False +27003050901,2144.0,True,True +27003050902,4950.0,False,False +27003051001,2833.0,False,False +27003051002,3650.0,False,False +27003051101,4564.0,False,False +27003051102,4278.0,False,False +27003051103,3614.0,False,False +27003051201,3756.0,False,False +27003051202,3575.0,False,False +27003051203,5420.0,False,False +27003051206,2461.0,False,False +27003051302,4068.0,False,False +27003051304,2406.0,True,True +27003051305,3423.0,False,False +27003051400,5135.0,False,False +27003051501,2751.0,True,True +27003051502,3384.0,False,False +27003051600,5104.0,False,False +27005450100,3034.0,True,True +27005450200,2134.0,False,False +27005450300,5439.0,False,False +27005450400,2530.0,False,False +27005450500,4784.0,True,True +27005450600,3340.0,False,False +27005450700,3231.0,False,False +27005450800,2473.0,False,False +27005450900,3098.0,False,False +27005940000,3948.0,True,True +27007450100,6777.0,False,False +27007450200,6545.0,False,False +27007450300,4277.0,False,False +27007450400,2698.0,False,False +27007450500,1691.0,True,True +27007450600,5616.0,False,False +27007450701,4814.0,False,False +27007450702,6046.0,True,True +27007940001,5902.0,True,True +27007940002,2037.0,True,True +27009020100,5894.0,False,False +27009020202,2805.0,False,False +27009020203,2607.0,False,False +27009020205,3199.0,False,False +27009020206,2792.0,False,False +27009020300,3512.0,False,False +27009021101,8004.0,False,False +27009021102,4747.0,False,False +27009021200,6569.0,True,False +27011950100,1383.0,False,False +27011950200,1583.0,False,False +27011950300,2030.0,True,True +27013170100,5082.0,False,False +27013170200,6800.0,False,False +27013170300,3501.0,False,False +27013170400,3662.0,False,False +27013170500,4516.0,False,False +27013170600,2166.0,False,False +27013170700,2720.0,False,False +27013170800,5148.0,False,False +27013170900,3105.0,False,False +27013171000,3556.0,False,False +27013171101,6311.0,False,False +27013171202,6113.0,False,True +27013171300,3910.0,False,False +27013171400,3541.0,False,False +27013171500,2789.0,False,False +27013171600,3875.0,False,False +27015960101,1731.0,False,False +27015960102,1272.0,False,False +27015960200,4442.0,False,False +27015960300,3132.0,False,False +27015960400,4627.0,False,False +27015960500,3655.0,False,False +27015960600,2989.0,False,False +27015960700,3315.0,False,False +27017070100,5243.0,False,False +27017070200,4106.0,False,False +27017070300,5262.0,False,False +27017070400,8054.0,False,False +27017070500,6775.0,False,False +27017070600,3247.0,False,False +27017940000,2946.0,True,False +27019090100,6028.0,False,False +27019090200,4088.0,False,False +27019090301,6941.0,False,False +27019090302,5534.0,False,False +27019090401,6892.0,False,False +27019090402,5823.0,False,False +27019090501,2570.0,False,False +27019090502,3036.0,False,False +27019090503,2585.0,False,False +27019090601,4323.0,False,False +27019090602,3039.0,False,False +27019090701,6917.0,False,False +27019090702,3187.0,False,False +27019090800,9130.0,False,False +27019090900,5245.0,False,False +27019091000,11420.0,False,False +27019091100,7030.0,False,False +27019091201,5150.0,False,False +27019091202,3011.0,False,False +27021940001,3954.0,True,True +27021940002,3218.0,True,True +27021960100,1966.0,True,True +27021960200,2341.0,True,True +27021960301,960.0,False,False +27021960302,1306.0,False,False +27021960600,3136.0,True,True +27021960700,4451.0,True,True +27021960801,3431.0,False,False +27021960802,4505.0,False,False +27023950300,2015.0,False,False +27023950400,2282.0,False,False +27023950500,2060.0,False,False +27023950600,5596.0,False,False +27025110100,4027.0,False,False +27025110200,6865.0,False,False +27025110301,4309.0,False,False +27025110302,6145.0,False,False +27025110401,8853.0,False,False +27025110402,5006.0,False,False +27025110501,3957.0,False,False +27025110502,7054.0,False,False +27025110600,5009.0,False,False +27025110700,4090.0,False,False +27027020100,5082.0,False,False +27027020202,2185.0,True,True +27027020300,3268.0,False,False +27027020400,4544.0,False,False +27027020500,5028.0,False,False +27027020600,4137.0,False,False +27027030102,6440.0,False,False +27027030103,8564.0,False,False +27027030104,9580.0,False,False +27027030106,2039.0,False,False +27027030107,1617.0,False,False +27027030201,6026.0,False,False +27027030202,4936.0,False,False +27029000100,2733.0,False,False +27029000200,3092.0,True,True +27029000300,2996.0,True,True +27031480100,3395.0,False,False +27031480200,1981.0,False,False +27031990000,0.0,False,False +27033270100,2698.0,True,True +27033270200,2437.0,False,False +27033270300,3239.0,False,False +27033270400,2925.0,True,True +27035950100,1795.0,False,False +27035950204,1732.0,False,False +27035950400,5263.0,False,False +27035950501,2634.0,False,False +27035950502,2540.0,False,False +27035950700,6167.0,False,False +27035950800,5125.0,False,False +27035950900,5302.0,False,False +27035951000,3752.0,True,True +27035951100,4665.0,True,True +27035951200,3030.0,True,True +27035951301,4647.0,False,False +27035951302,6486.0,False,False +27035951400,5579.0,False,False +27035951600,2539.0,False,False +27035951700,2961.0,False,False +27037060101,3565.0,False,False +27037060102,2836.0,False,False +27037060103,2520.0,False,False +27037060104,5508.0,False,False +27037060105,5350.0,False,True +27037060201,2593.0,False,False +27037060202,3418.0,False,False +27037060301,3977.0,False,False +27037060302,3742.0,False,False +27037060401,2507.0,False,False +27037060402,3718.0,False,False +27037060502,4321.0,False,False +27037060503,5117.0,False,False +27037060505,5823.0,False,False +27037060506,5250.0,False,False +27037060507,3384.0,False,False +27037060508,5952.0,False,False +27037060509,6254.0,False,False +27037060603,4507.0,False,False +27037060604,3361.0,False,False +27037060605,1695.0,False,False +27037060606,2800.0,False,False +27037060709,5628.0,False,False +27037060710,4166.0,False,False +27037060711,4861.0,True,True +27037060713,2936.0,False,False +27037060714,4771.0,False,False +27037060716,3600.0,False,False +27037060717,2378.0,False,False +27037060721,2591.0,False,False +27037060725,4089.0,False,False +27037060726,2834.0,False,False +27037060727,3582.0,False,False +27037060728,5104.0,False,False +27037060729,3906.0,False,False +27037060730,5576.0,False,False +27037060731,4416.0,False,False +27037060732,5382.0,False,False +27037060733,3681.0,False,False +27037060734,4590.0,False,False +27037060735,5069.0,False,False +27037060737,4828.0,False,False +27037060738,3255.0,False,False +27037060739,5575.0,False,False +27037060741,6963.0,False,False +27037060742,3363.0,False,False +27037060743,1738.0,False,False +27037060744,1543.0,False,False +27037060745,4519.0,False,False +27037060746,3219.0,False,False +27037060747,3552.0,False,False +27037060748,3675.0,False,False +27037060749,1635.0,False,False +27037060750,4665.0,False,False +27037060805,3326.0,False,False +27037060806,6297.0,False,False +27037060811,5364.0,False,False +27037060812,5955.0,False,False +27037060813,4412.0,False,False +27037060814,6040.0,False,False +27037060815,5387.0,False,False +27037060816,6429.0,False,False +27037060817,9805.0,False,False +27037060818,7770.0,False,False +27037060819,6902.0,False,False +27037060820,8500.0,False,False +27037060821,8670.0,False,False +27037060822,1408.0,False,False +27037060823,4051.0,False,False +27037060824,3616.0,False,False +27037060825,6807.0,False,False +27037060826,8130.0,False,False +27037060828,4455.0,False,False +27037060829,3480.0,False,False +27037060902,4924.0,False,False +27037060904,3226.0,False,False +27037060905,5468.0,False,False +27037060906,3366.0,False,False +27037060907,8008.0,False,False +27037061001,3991.0,False,False +27037061003,1967.0,False,False +27037061004,6238.0,False,False +27037061005,2404.0,False,False +27037061007,4865.0,False,False +27037061008,2140.0,False,False +27037061009,6678.0,False,False +27037061102,4662.0,False,False +27037061105,2413.0,False,False +27037061106,2887.0,False,False +27037061107,6393.0,False,False +27037061108,6829.0,False,False +27037061401,3173.0,False,False +27037061402,3800.0,False,False +27037061501,2520.0,False,False +27037061502,2809.0,False,False +27039950100,4344.0,False,False +27039950200,4208.0,False,False +27039950300,2522.0,False,False +27039950400,3682.0,False,False +27039950500,5913.0,False,False +27041450100,3212.0,False,False +27041450200,3726.0,False,False +27041450500,4256.0,False,False +27041450600,5764.0,False,False +27041450701,6029.0,False,False +27041450702,3007.0,False,False +27041450800,3500.0,False,False +27041450900,3652.0,False,False +27041451000,4367.0,False,False +27043460100,1847.0,False,False +27043460200,2194.0,False,False +27043460300,1703.0,False,False +27043460400,3185.0,False,False +27043460500,2229.0,False,False +27043460600,2643.0,False,False +27045960100,3301.0,False,False +27045960200,4623.0,False,False +27045960300,3669.0,False,False +27045960400,3120.0,False,False +27045960500,3251.0,True,True +27045960600,2985.0,False,False +27047180100,2831.0,False,False +27047180200,2748.0,False,False +27047180300,3392.0,False,False +27047180400,2956.0,False,False +27047180500,4311.0,False,False +27047180600,3759.0,True,True +27047180700,2591.0,False,False +27047180800,2492.0,True,True +27047180900,3120.0,True,True +27047181000,2263.0,False,False +27049080101,3907.0,False,False +27049080102,5855.0,False,False +27049080200,7079.0,False,False +27049080300,3981.0,False,False +27049080400,4142.0,False,False +27049080500,3168.0,False,False +27049080600,4701.0,False,False +27049080700,3453.0,False,False +27049080800,4294.0,False,False +27049080900,5666.0,False,False +27051070100,3141.0,True,True +27051070200,2794.0,False,False +27053000101,3278.0,False,False +27053000102,5332.0,True,True +27053000300,3204.0,False,False +27053000601,5134.0,False,False +27053000603,2854.0,False,False +27053001100,2138.0,False,False +27053001700,2324.0,True,True +27053002200,1540.0,True,True +27053002400,2442.0,False,False +27053002700,2841.0,True,True +27053003200,2058.0,False,False +27053003300,2798.0,True,True +27053003800,6143.0,False,False +27053005901,3004.0,True,True +27053005902,3546.0,True,True +27053006800,3746.0,False,False +27053007700,4591.0,False,False +27053007801,1874.0,True,True +27053008100,3545.0,False,False +27053008200,4120.0,True,True +27053008300,1886.0,True,True +27053008400,2810.0,True,True +27053008500,5215.0,True,True +27053009500,3181.0,False,True +27053009600,3597.0,False,False +27053010600,3064.0,False,False +27053010700,2609.0,False,False +27053011000,3674.0,False,False +27053011703,4264.0,False,False +27053011704,3236.0,False,False +27053011800,5012.0,False,False +27053011998,4114.0,False,False +27053012001,6074.0,False,False +27053012003,5966.0,True,True +27053012101,3285.0,False,False +27053012102,2928.0,False,False +27053020101,3451.0,False,False +27053020102,2159.0,False,False +27053020200,7544.0,True,True +27053020301,2817.0,False,True +27053020302,2452.0,True,False +27053020303,3528.0,False,False +27053020304,3739.0,True,True +27053020400,5307.0,False,False +27053020500,3350.0,False,False +27053020600,2112.0,False,False +27053020700,4201.0,False,False +27053020801,1921.0,False,False +27053020804,3269.0,False,False +27053020902,2238.0,False,False +27053020903,3009.0,False,False +27053021001,6255.0,False,False +27053021002,1927.0,False,False +27053021100,1949.0,False,False +27053021200,4522.0,False,False +27053021300,4809.0,False,False +27053021400,3188.0,False,False +27053021501,4213.0,False,False +27053021502,3885.0,True,True +27053021503,4911.0,False,False +27053021504,3548.0,False,False +27053021505,4523.0,False,False +27053021601,4461.0,False,False +27053021602,5753.0,False,False +27053021700,5350.0,False,False +27053021800,2306.0,False,False +27053021900,3696.0,False,False +27053022000,1945.0,False,False +27053022101,2773.0,False,False +27053022102,2785.0,False,False +27053022200,4666.0,False,False +27053022301,2323.0,False,False +27053022302,3115.0,False,False +27053022400,3898.0,False,False +27053022700,4216.0,False,False +27053022801,2073.0,False,False +27053022802,3497.0,False,False +27053022901,5214.0,False,False +27053022902,1716.0,False,False +27053023000,4701.0,False,False +27053023100,1937.0,False,False +27053023200,6229.0,False,False +27053023300,5887.0,False,False +27053023400,6266.0,False,False +27053023501,3966.0,False,False +27053023502,5692.0,False,False +27053023600,3854.0,False,False +27053023700,5115.0,False,False +27053023801,5335.0,False,False +27053023802,2810.0,False,False +27053023901,3731.0,False,False +27053023902,2093.0,False,False +27053023903,3248.0,False,False +27053024003,5273.0,False,False +27053024004,4252.0,False,False +27053024005,2311.0,False,False +27053024006,2129.0,False,False +27053024100,3350.0,False,False +27053024200,2996.0,False,False +27053024300,4667.0,False,False +27053024400,4200.0,False,False +27053024500,2315.0,False,False +27053024600,4081.0,False,False +27053024700,3131.0,False,False +27053024801,2437.0,False,False +27053024802,2647.0,True,True +27053024901,1052.0,False,False +27053024902,2584.0,False,False +27053024903,2603.0,True,True +27053025100,3004.0,False,False +27053025201,5463.0,True,False +27053025205,4805.0,False,False +27053025301,2737.0,False,False +27053025302,4342.0,False,False +27053025401,4094.0,False,False +27053025403,4175.0,False,False +27053025601,2390.0,False,False +27053025603,3629.0,False,False +27053025605,3337.0,False,False +27053025701,7150.0,False,False +27053025702,4615.0,False,False +27053025801,3038.0,False,False +27053025802,2331.0,False,False +27053025803,3216.0,False,False +27053025805,2684.0,False,False +27053025903,5853.0,False,False +27053025905,3667.0,False,False +27053025906,6436.0,False,False +27053025907,4605.0,False,False +27053026005,4012.0,False,False +27053026006,2932.0,False,False +27053026007,5009.0,False,False +27053026013,4694.0,False,False +27053026014,5180.0,False,False +27053026015,5486.0,False,False +27053026016,7195.0,False,False +27053026018,7332.0,False,False +27053026019,6001.0,False,False +27053026020,4937.0,False,False +27053026021,4073.0,False,False +27053026022,7328.0,False,False +27053026101,3460.0,False,False +27053026103,2950.0,False,False +27053026104,4089.0,False,False +27053026201,3405.0,False,False +27053026202,2991.0,False,False +27053026205,3207.0,False,False +27053026206,3232.0,False,False +27053026207,3853.0,False,False +27053026208,3105.0,False,False +27053026301,3929.0,False,False +27053026302,3414.0,False,False +27053026402,6682.0,False,False +27053026403,3449.0,False,False +27053026404,5259.0,False,False +27053026505,3585.0,False,False +27053026507,4907.0,False,False +27053026508,4787.0,False,False +27053026509,4441.0,False,False +27053026510,3519.0,False,False +27053026511,3623.0,False,False +27053026512,6148.0,False,False +27053026514,4927.0,False,False +27053026605,3804.0,False,False +27053026606,5200.0,False,False +27053026609,2906.0,False,False +27053026610,4608.0,False,False +27053026611,5188.0,False,False +27053026612,10675.0,False,False +27053026613,10252.0,False,False +27053026702,2753.0,False,False +27053026706,3793.0,False,False +27053026707,4866.0,False,False +27053026708,5788.0,False,False +27053026710,10019.0,False,False +27053026711,3428.0,False,False +27053026712,3482.0,False,False +27053026713,4467.0,False,False +27053026714,10088.0,False,False +27053026715,16206.0,False,False +27053026716,8490.0,False,False +27053026807,5627.0,False,False +27053026809,5706.0,True,True +27053026810,5057.0,False,False +27053026811,5898.0,False,False +27053026812,7810.0,False,False +27053026814,6302.0,False,False +27053026815,5814.0,False,False +27053026816,6618.0,False,False +27053026818,5014.0,True,False +27053026819,5070.0,True,True +27053026820,11912.0,False,False +27053026822,4756.0,False,False +27053026823,4484.0,False,False +27053026903,4387.0,False,False +27053026906,8080.0,False,False +27053026907,5794.0,False,False +27053026908,6494.0,False,False +27053026909,13565.0,False,False +27053026910,5817.0,False,False +27053027001,3507.0,False,False +27053027002,5637.0,False,False +27053027101,7142.0,False,False +27053027102,5911.0,False,False +27053027201,6810.0,False,False +27053027202,1789.0,False,False +27053027203,3820.0,False,False +27053027300,4561.0,False,False +27053027400,4318.0,False,False +27053027501,4713.0,False,False +27053027503,4261.0,False,False +27053027504,3591.0,False,False +27053027601,4019.0,False,False +27053027602,5461.0,False,False +27053027700,9699.0,False,False +27053100200,3665.0,False,False +27053100400,3250.0,True,True +27053100500,1837.0,False,False +27053100700,3244.0,True,True +27053100800,4098.0,True,True +27053100900,4988.0,True,True +27053101200,4972.0,False,False +27053101300,2062.0,True,True +27053101600,2542.0,True,True +27053101800,3854.0,True,True +27053101900,2569.0,False,False +27053102000,2531.0,True,True +27053102100,2591.0,True,True +27053102300,1553.0,True,True +27053102500,3089.0,True,True +27053102600,1979.0,False,False +27053102800,3303.0,True,True +27053102900,1492.0,True,True +27053103000,1824.0,False,False +27053103100,2049.0,False,False +27053103400,3120.0,True,True +27053103600,2551.0,False,False +27053103700,4080.0,False,False +27053103900,4221.0,False,False +27053104000,6715.0,False,False +27053104100,3671.0,True,True +27053104400,2207.0,True,True +27053104800,10024.0,True,True +27053104900,11380.0,False,True +27053105100,2924.0,False,False +27053105201,3114.0,False,False +27053105204,2664.0,False,False +27053105400,3676.0,False,False +27053105500,3811.0,False,False +27053105600,4461.0,False,False +27053105700,2699.0,True,True +27053106000,3216.0,True,True +27053106200,3854.0,True,True +27053106400,1907.0,True,True +27053106500,4349.0,False,False +27053106600,2492.0,False,False +27053106700,4493.0,False,False +27053106900,2735.0,False,False +27053107000,3892.0,True,True +27053107400,1964.0,True,True +27053107500,1880.0,False,False +27053107600,3658.0,False,False +27053108000,3222.0,False,False +27053108600,2859.0,False,True +27053108700,3791.0,False,False +27053108800,3451.0,False,False +27053108900,2378.0,False,False +27053109000,1698.0,False,False +27053109100,5035.0,False,False +27053109200,3584.0,False,False +27053109300,4122.0,False,False +27053109400,2230.0,True,True +27053109700,2502.0,False,False +27053109800,4258.0,False,False +27053109900,3835.0,False,False +27053110000,1712.0,True,True +27053110100,2839.0,False,False +27053110200,3418.0,False,False +27053110400,3446.0,False,False +27053110500,4670.0,False,False +27053110800,4507.0,False,False +27053110900,3525.0,False,False +27053111100,3512.0,False,False +27053111200,3322.0,False,False +27053111300,5062.0,False,False +27053111400,4220.0,False,False +27053111500,5629.0,False,False +27053111600,3283.0,False,False +27053122500,3425.0,False,False +27053122600,2330.0,False,False +27053125500,3761.0,False,False +27053125600,3947.0,False,False +27053125700,3397.0,True,True +27053125800,5232.0,True,True +27053125900,4656.0,True,True +27053126000,5365.0,True,True +27053126100,8309.0,False,False +27053126200,6631.0,False,False +27053980000,322.0,True,True +27055020100,5918.0,False,False +27055020200,3474.0,False,False +27055020300,2428.0,False,False +27055020500,3217.0,False,False +27055020900,3611.0,False,False +27057070100,4828.0,False,False +27057070200,2479.0,False,False +27057070300,1944.0,False,False +27057070400,2787.0,False,False +27057070500,2904.0,False,False +27057070600,3891.0,True,True +27057070700,2186.0,False,False +27059130100,3766.0,False,False +27059130200,3350.0,False,False +27059130301,9113.0,False,False +27059130302,2956.0,False,False +27059130400,3937.0,False,False +27059130501,5593.0,False,False +27059130502,6781.0,False,False +27059130600,3934.0,False,False +27061480100,2253.0,True,True +27061480300,4224.0,False,False +27061480400,3803.0,False,False +27061480500,2631.0,False,False +27061480600,2723.0,False,False +27061480700,4783.0,False,False +27061480801,2513.0,False,False +27061480802,6624.0,True,False +27061480900,6905.0,False,False +27061481000,6173.0,False,False +27061940000,2509.0,True,True +27063480100,2175.0,False,False +27063480200,2157.0,False,False +27063480300,2338.0,False,False +27063480400,3284.0,False,False +27065480100,3451.0,False,False +27065480200,3842.0,False,False +27065480300,3869.0,True,False +27065480400,4927.0,False,False +27067770900,2844.0,True,True +27067780100,2710.0,False,False +27067780200,2252.0,False,False +27067780300,4056.0,False,False +27067780400,3636.0,False,False +27067780500,5015.0,True,True +27067780600,5108.0,False,False +27067780700,4184.0,False,False +27067780800,2042.0,True,True +27067781000,5259.0,True,False +27067781100,2786.0,False,False +27067781200,2949.0,False,False +27069090100,2426.0,True,True +27069090200,1885.0,False,False +27071790100,2115.0,True,False +27071790200,5019.0,False,False +27071790300,3042.0,False,False +27071790500,2339.0,False,False +27073180100,2200.0,False,False +27073180200,1719.0,False,False +27073180300,2800.0,False,False +27075370100,4644.0,False,False +27075370300,2228.0,False,False +27075370400,3688.0,True,False +27075990100,0.0,False,False +27077460300,1663.0,True,True +27077460400,2108.0,False,False +27079950100,7060.0,False,False +27079950200,4590.0,False,False +27079950300,4653.0,False,False +27079950400,3756.0,False,False +27079950500,4241.0,False,False +27079950600,3942.0,False,False +27081201001,2912.0,False,False +27081201002,2765.0,False,False +27083360100,3737.0,False,False +27083360200,3189.0,False,False +27083360300,4844.0,False,False +27083360400,4168.0,False,False +27083360500,4671.0,False,True +27083360600,2827.0,False,False +27083360700,2322.0,True,True +27085950100,5356.0,False,False +27085950200,4058.0,False,False +27085950300,6164.0,False,False +27085950400,7320.0,False,False +27085950500,2737.0,False,False +27085950600,4600.0,False,False +27085950700,5597.0,True,True +27087940100,2999.0,True,True +27087940300,2502.0,True,True +27089080100,2207.0,False,False +27089080200,2212.0,False,False +27089080300,2259.0,False,False +27089080400,2694.0,False,False +27091790100,2945.0,False,False +27091790200,2492.0,False,False +27091790300,2361.0,False,False +27091790400,1790.0,False,False +27091790500,5869.0,False,False +27091790600,4395.0,True,True +27093560100,5181.0,False,False +27093560200,4820.0,False,False +27093560300,3694.0,False,False +27093560400,3196.0,False,False +27093560500,3273.0,False,False +27093560600,2941.0,False,False +27095170400,5448.0,False,False +27095170500,4441.0,True,False +27095170600,2855.0,False,False +27095170700,5633.0,True,False +27095970100,2008.0,True,True +27095970200,2893.0,True,True +27095970300,2587.0,False,False +27097780100,2781.0,True,True +27097780200,3889.0,False,False +27097780300,6131.0,False,False +27097780400,2608.0,False,False +27097780500,5343.0,False,False +27097780600,5670.0,True,True +27097780700,2416.0,False,False +27097780800,4226.0,False,False +27099000100,1993.0,True,True +27099000200,3074.0,False,False +27099000300,4807.0,True,True +27099000410,4767.0,True,True +27099000600,2936.0,False,False +27099000800,3959.0,True,True +27099000900,4455.0,False,False +27099001000,3678.0,False,False +27099001200,2020.0,False,False +27099001300,4598.0,False,False +27099001400,3520.0,False,False +27101900100,1960.0,False,False +27101900200,3208.0,False,False +27101900300,3128.0,False,False +27103480100,3380.0,False,False +27103480200,6053.0,False,False +27103480300,5025.0,False,False +27103480400,6171.0,False,False +27103480501,6813.0,False,False +27103480502,3096.0,False,False +27103480600,3416.0,False,False +27105105100,2913.0,False,False +27105105200,3111.0,False,False +27105105300,2337.0,False,False +27105105400,4935.0,True,True +27105105500,3406.0,True,True +27105105600,5032.0,True,True +27107960100,2587.0,False,False +27107960200,1750.0,False,False +27107960300,2183.0,False,False +27109000100,1879.0,True,True +27109000200,4298.0,True,True +27109000300,3292.0,True,True +27109000400,3136.0,False,False +27109000500,3168.0,False,False +27109000600,4807.0,False,False +27109000901,6370.0,False,False +27109000902,3723.0,False,False +27109000903,3382.0,False,False +27109001000,5034.0,False,False +27109001100,3464.0,False,False +27109001201,4988.0,False,False +27109001202,3694.0,False,False +27109001203,6198.0,False,False +27109001301,5002.0,False,False +27109001302,4393.0,False,False +27109001401,4304.0,False,False +27109001402,12499.0,False,False +27109001501,3238.0,False,False +27109001502,2476.0,False,False +27109001503,2162.0,False,False +27109001601,4208.0,False,False +27109001602,3212.0,False,False +27109001603,4005.0,False,False +27109001701,5020.0,True,False +27109001702,4491.0,False,False +27109001703,5505.0,False,False +27109001800,5093.0,False,False +27109001900,7830.0,False,False +27109002000,6757.0,False,False +27109002100,6393.0,False,False +27109002200,4043.0,False,False +27109002300,6745.0,False,False +27111960102,2667.0,False,False +27111960103,2164.0,False,False +27111960300,3248.0,True,True +27111960400,2217.0,False,False +27111960500,5383.0,True,True +27111960600,4422.0,False,False +27111960700,2453.0,False,False +27111960800,3167.0,False,False +27111960900,5753.0,True,True +27111961000,4751.0,False,False +27111961100,4425.0,False,False +27111961200,2416.0,False,False +27111961300,4025.0,True,True +27111961400,2448.0,False,False +27111961500,3161.0,False,False +27111961600,2291.0,False,False +27111961700,3204.0,False,False +27113090100,2571.0,False,False +27113090200,2639.0,False,False +27113090300,2051.0,False,False +27113090400,3157.0,False,False +27113090500,3765.0,False,False +27115950100,2329.0,False,False +27115950200,3055.0,False,False +27115950300,2760.0,False,False +27115950400,4835.0,True,True +27115950500,4781.0,True,True +27115950600,4609.0,False,False +27115950700,3641.0,True,False +27115950800,3213.0,False,False +27117460100,1552.0,False,False +27117460200,1653.0,False,False +27117460300,2451.0,True,False +27117460400,1604.0,False,False +27117460500,1931.0,False,False +27119020100,4447.0,False,False +27119020200,1384.0,True,True +27119020300,2988.0,False,False +27119020400,2176.0,False,False +27119020500,2790.0,False,False +27119020600,5649.0,False,False +27119020700,2408.0,True,True +27119020800,2280.0,False,False +27119020900,3711.0,False,False +27119021000,3688.0,False,False +27121970100,2346.0,False,False +27121970200,2902.0,False,False +27121970300,2536.0,False,False +27121970400,3264.0,False,False +27123030100,5083.0,False,False +27123030201,5274.0,False,False +27123030202,2240.0,False,False +27123030300,6383.0,False,False +27123030400,6888.0,True,True +27123030500,6371.0,True,True +27123030601,5869.0,True,True +27123030602,4482.0,False,False +27123030702,5590.0,False,False +27123030703,4772.0,False,False +27123030704,4764.0,True,True +27123030800,5643.0,True,True +27123030900,4059.0,True,True +27123031000,4204.0,True,True +27123031100,3807.0,True,True +27123031200,2839.0,False,False +27123031300,2760.0,True,True +27123031400,2989.0,True,True +27123031500,3138.0,True,True +27123031600,4513.0,True,True +27123031701,2935.0,True,True +27123031702,6245.0,True,True +27123031801,5658.0,True,True +27123031802,4445.0,True,True +27123031900,2076.0,False,False +27123032000,3209.0,False,False +27123032100,3216.0,False,False +27123032200,2602.0,False,False +27123032300,3470.0,False,False +27123032400,3151.0,True,True +27123032500,4123.0,True,True +27123032600,3502.0,True,True +27123032700,2913.0,True,True +27123033000,1952.0,True,True +27123033100,1648.0,False,True +27123033200,3027.0,False,False +27123033300,3263.0,False,False +27123033400,3097.0,False,True +27123033500,3662.0,True,True +27123033600,1860.0,True,True +27123033700,1458.0,True,True +27123033800,1853.0,False,False +27123033900,1512.0,False,True +27123034000,1619.0,False,False +27123034201,3001.0,False,False +27123034202,5369.0,False,False +27123034400,1995.0,True,True +27123034500,4179.0,True,True +27123034601,5748.0,True,True +27123034602,4490.0,True,True +27123034701,5000.0,True,True +27123034702,4298.0,False,False +27123034900,3263.0,False,False +27123035000,2429.0,False,False +27123035100,3498.0,False,False +27123035200,3488.0,False,False +27123035300,3808.0,False,False +27123035500,2326.0,False,False +27123035700,2397.0,False,False +27123035800,2709.0,False,False +27123035900,866.0,True,True +27123036000,2380.0,False,False +27123036100,1596.0,True,True +27123036300,3573.0,False,False +27123036400,4001.0,False,False +27123036500,3826.0,False,False +27123036600,3942.0,False,False +27123036700,4822.0,False,False +27123036800,2592.0,False,False +27123036900,2261.0,False,False +27123037000,2679.0,False,False +27123037100,4490.0,True,True +27123037200,5829.0,True,False +27123037402,4242.0,False,False +27123037403,7216.0,True,True +27123037500,5110.0,False,False +27123037601,4129.0,False,False +27123037602,5756.0,True,True +27123040100,7619.0,False,False +27123040200,2017.0,False,False +27123040301,1862.0,False,False +27123040302,5449.0,False,False +27123040401,3607.0,False,False +27123040402,5245.0,False,False +27123040502,2835.0,False,False +27123040503,3935.0,False,False +27123040504,4246.0,False,False +27123040601,5906.0,False,False +27123040603,5595.0,False,False +27123040604,7852.0,False,False +27123040703,7488.0,False,False +27123040704,5495.0,False,False +27123040705,4181.0,False,False +27123040706,5098.0,False,False +27123040707,4529.0,False,False +27123040801,3785.0,False,False +27123040802,1785.0,False,False +27123040803,4723.0,False,False +27123040901,2121.0,True,True +27123040902,4310.0,True,True +27123041001,3310.0,False,False +27123041002,3405.0,False,False +27123041103,3428.0,False,False +27123041104,2783.0,False,False +27123041105,5764.0,False,False +27123041106,3630.0,False,False +27123041107,6179.0,False,False +27123041200,4200.0,False,False +27123041301,3730.0,False,False +27123041302,4388.0,False,False +27123041400,5584.0,False,False +27123041500,5166.0,False,False +27123041601,6113.0,False,False +27123041602,4062.0,False,False +27123041700,3011.0,False,False +27123041800,3972.0,False,False +27123041900,3550.0,False,False +27123042001,2021.0,False,False +27123042002,2514.0,False,False +27123042101,5749.0,False,False +27123042102,4668.0,False,False +27123042201,1451.0,False,False +27123042202,5334.0,False,False +27123042301,3017.0,False,False +27123042302,4970.0,False,False +27123042401,6447.0,False,False +27123042402,6210.0,False,False +27123042501,5686.0,False,False +27123042503,3321.0,False,False +27123042504,4143.0,False,False +27123042601,4802.0,False,False +27123042602,2245.0,False,False +27123042700,5359.0,False,False +27123042800,2601.0,True,True +27123042900,4068.0,False,False +27123043000,6406.0,False,False +27123980000,0.0,False,False +27125010100,1951.0,False,False +27125010200,2064.0,False,False +27127750100,2800.0,False,False +27127750200,3109.0,False,False +27127750300,2133.0,True,True +27127750400,2884.0,False,False +27127750500,2584.0,False,False +27127750600,1751.0,False,False +27129790100,2505.0,False,False +27129790200,1692.0,False,False +27129790300,1944.0,False,False +27129790400,2502.0,False,False +27129790500,3262.0,False,False +27129790600,2747.0,False,False +27131070100,7333.0,False,False +27131070200,5463.0,False,False +27131070300,4551.0,False,False +27131070400,4511.0,False,False +27131070501,4374.0,False,False +27131070503,3348.0,False,False +27131070504,3933.0,False,False +27131070601,3526.0,False,False +27131070602,5211.0,False,False +27131070700,7165.0,False,False +27131070800,8101.0,True,True +27131070901,5509.0,True,True +27131070902,3160.0,True,True +27133570100,2409.0,False,False +27133570200,3653.0,False,False +27133570300,3340.0,False,False +27135970100,3886.0,False,False +27135970200,2170.0,False,False +27135970300,4107.0,False,False +27135970400,3402.0,False,False +27135970500,1796.0,False,False +27137000100,4352.0,False,False +27137000200,4181.0,False,False +27137000300,8107.0,False,False +27137000400,5706.0,False,False +27137000500,3383.0,False,False +27137000600,5214.0,False,False +27137000700,2958.0,False,False +27137000900,3533.0,False,False +27137001000,2528.0,False,False +27137001100,1341.0,False,False +27137001200,1906.0,False,False +27137001300,1798.0,False,False +27137001400,2182.0,True,True +27137001600,1488.0,True,True +27137001700,1074.0,True,True +27137001800,1566.0,True,True +27137001900,1695.0,True,True +27137002000,1220.0,False,False +27137002200,1257.0,False,False +27137002300,4220.0,False,False +27137002400,1071.0,False,False +27137002600,1984.0,False,False +27137002900,1506.0,False,False +27137003000,1406.0,False,False +27137003300,2499.0,True,True +27137003400,1514.0,False,False +27137003600,1653.0,False,False +27137003700,2042.0,True,True +27137003800,2815.0,True,True +27137010100,2887.0,False,False +27137010200,1551.0,False,False +27137010300,9185.0,False,False +27137010400,3498.0,False,False +27137010500,3821.0,False,False +27137010600,6859.0,False,False +27137011100,7056.0,False,False +27137011200,3216.0,True,True +27137011300,2190.0,False,False +27137011400,3122.0,False,False +27137012100,4489.0,False,False +27137012200,2007.0,True,True +27137012300,2383.0,False,False +27137012400,4616.0,True,True +27137012500,2565.0,False,False +27137012600,4914.0,True,False +27137012700,2475.0,False,False +27137012800,2894.0,False,False +27137013000,2231.0,True,True +27137013100,2443.0,True,True +27137013200,3810.0,False,False +27137013300,3609.0,True,False +27137013400,2950.0,False,False +27137013500,1850.0,False,False +27137013600,1623.0,False,False +27137013800,1775.0,True,True +27137013900,2346.0,False,False +27137014000,2074.0,False,False +27137014100,1419.0,False,False +27137015100,2800.0,False,False +27137015200,3496.0,False,False +27137015300,3390.0,False,False +27137015400,3146.0,False,False +27137015500,3653.0,False,False +27137015600,2761.0,True,True +27137015700,5227.0,False,False +27137015800,3229.0,False,False +27137990100,0.0,False,False +27139080100,2198.0,False,False +27139080201,2893.0,False,False +27139080202,5881.0,False,False +27139080203,7741.0,False,False +27139080204,3477.0,False,False +27139080205,9064.0,False,False +27139080301,12536.0,False,False +27139080302,15724.0,False,False +27139080400,4096.0,True,True +27139080500,2733.0,False,False +27139080600,3986.0,False,False +27139080700,3556.0,False,False +27139080800,8641.0,False,False +27139080903,8735.0,False,False +27139080904,8067.0,False,False +27139080905,5175.0,False,False +27139080906,5115.0,False,False +27139081000,8727.0,False,False +27139081100,11351.0,False,False +27139081200,6696.0,False,False +27139081300,8883.0,False,False +27141030101,12130.0,False,False +27141030102,7752.0,False,False +27141030200,7575.0,False,False +27141030300,6210.0,False,False +27141030402,10178.0,False,False +27141030403,9865.0,False,False +27141030404,9372.0,False,False +27141030502,12087.0,False,False +27141030503,6390.0,False,False +27141030504,5265.0,False,False +27141031500,7639.0,False,False +27143170198,4369.0,False,False +27143170200,3548.0,False,False +27143170300,2880.0,False,False +27143170400,4095.0,False,False +27145000301,3270.0,False,False +27145000302,8962.0,False,True +27145000401,5651.0,False,False +27145000402,5230.0,False,False +27145000500,7706.0,True,True +27145000601,3200.0,False,False +27145000602,2624.0,False,False +27145000701,2824.0,False,False +27145000801,3309.0,True,True +27145000901,4334.0,False,False +27145001001,9085.0,False,False +27145010101,7512.0,False,False +27145010102,9660.0,False,False +27145010200,5906.0,False,False +27145010401,3990.0,False,False +27145010402,4181.0,False,False +27145010403,3379.0,False,False +27145010500,4083.0,False,False +27145010600,4056.0,False,False +27145010900,4020.0,False,False +27145011000,3976.0,False,False +27145011100,7261.0,False,False +27145011200,6792.0,False,False +27145011301,8141.0,False,False +27145011302,7185.0,False,False +27145011304,6507.0,False,False +27145011400,5874.0,False,False +27145011500,6351.0,True,True +27145011600,3383.0,False,False +27147960100,4897.0,False,False +27147960200,5856.0,False,False +27147960300,6049.0,False,False +27147960400,4439.0,True,True +27147960500,2751.0,False,False +27147960600,4028.0,False,False +27147960700,5053.0,False,False +27147960800,3610.0,False,False +27149480100,2403.0,False,False +27149480200,3841.0,False,False +27149480300,3545.0,False,False +27151960100,2315.0,False,False +27151960200,3171.0,True,True +27151960300,1649.0,False,False +27151960400,2224.0,True,True +27153790100,3337.0,True,True +27153790200,2707.0,True,True +27153790300,3124.0,True,True +27153790400,3192.0,False,False +27153790500,2632.0,False,False +27153790600,3904.0,True,True +27153790700,3921.0,False,False +27153790800,1677.0,False,False +27155460100,2032.0,False,False +27155460200,1279.0,False,False +27157490100,2890.0,False,False +27157490200,3207.0,False,False +27157490300,4152.0,False,False +27157490400,4473.0,False,False +27157490500,3451.0,False,False +27157490600,3364.0,False,False +27159480100,3268.0,True,False +27159480200,5361.0,False,False +27159480300,5025.0,True,True +27161790100,3691.0,False,False +27161790200,2530.0,False,False +27161790300,2998.0,False,False +27161790400,5689.0,False,False +27161790500,3832.0,True,True +27163070103,5507.0,False,False +27163070104,3159.0,False,False +27163070105,4153.0,False,False +27163070106,7185.0,False,False +27163070203,8620.0,False,False +27163070204,6147.0,False,False +27163070205,4112.0,False,False +27163070206,3629.0,False,False +27163070301,1809.0,False,False +27163070303,4874.0,False,False +27163070304,5136.0,False,False +27163070403,3907.0,False,False +27163070404,4170.0,False,False +27163070405,4378.0,False,False +27163070406,4595.0,False,False +27163070501,3449.0,False,False +27163070502,4188.0,False,False +27163070601,6295.0,False,False +27163070602,2894.0,False,False +27163070701,7040.0,False,False +27163070703,3789.0,False,False +27163070704,2772.0,False,False +27163070801,951.0,False,False +27163070802,413.0,False,False +27163070906,5359.0,False,False +27163070907,5243.0,False,False +27163070909,5391.0,False,False +27163070910,5128.0,False,False +27163070911,4632.0,False,False +27163070912,3064.0,False,False +27163071001,4949.0,False,False +27163071003,3532.0,False,False +27163071006,4935.0,False,False +27163071010,4883.0,False,False +27163071011,2983.0,False,False +27163071012,4906.0,False,False +27163071013,5104.0,False,False +27163071014,4156.0,False,False +27163071015,7061.0,False,False +27163071016,4520.0,False,False +27163071017,8261.0,False,False +27163071018,18148.0,False,False +27163071101,3525.0,False,False +27163071102,4659.0,False,False +27163071206,10612.0,False,False +27163071207,7526.0,False,False +27163071208,5179.0,False,False +27163071209,6110.0,False,False +27163071300,5356.0,False,False +27163071400,7544.0,False,False +27165950100,3714.0,False,False +27165950200,4501.0,True,False +27165950300,2757.0,False,False +27167950100,3151.0,False,False +27167950200,3140.0,False,False +27169670100,7492.0,False,False +27169670200,3165.0,False,False +27169670300,6685.0,False,False +27169670400,4516.0,False,False +27169670500,4381.0,False,False +27169670600,4483.0,False,False +27169670700,3825.0,False,False +27169670800,7075.0,False,False +27169670900,3908.0,False,False +27169671000,5195.0,False,False +27171100100,15730.0,False,False +27171100202,1486.0,False,False +27171100203,5813.0,False,False +27171100204,9564.0,False,False +27171100300,6032.0,False,False +27171100400,5389.0,False,False +27171100500,4784.0,False,False +27171100701,6412.0,False,False +27171100702,8228.0,False,False +27171100703,9098.0,False,False +27171100801,14205.0,False,False +27171100802,14554.0,False,False +27171100900,7358.0,False,False +27171101000,8951.0,False,False +27171101100,8006.0,False,False +27171101200,3909.0,False,False +27171101300,4919.0,False,False +27173970100,3095.0,False,False +27173970200,2212.0,False,False +27173970300,2407.0,False,False +27173970400,2100.0,False,False +28001000100,8103.0,True,True +28001000200,3821.0,True,True +28001000300,1907.0,True,True +28001000400,2864.0,True,True +28001000500,3975.0,True,True +28001000600,2517.0,True,True +28001000700,1405.0,True,True +28001000800,2991.0,True,True +28001000900,3683.0,True,True +28003950100,5870.0,True,True +28003950200,7334.0,True,True +28003950300,3740.0,True,True +28003950400,5205.0,True,True +28003950500,5919.0,True,True +28003950600,4463.0,True,True +28003950700,4559.0,True,True +28005950100,4338.0,True,True +28005950200,3759.0,True,True +28005950300,4315.0,True,True +28007060100,2895.0,True,True +28007060200,2636.0,False,True +28007060300,3390.0,True,True +28007060400,2672.0,True,True +28007060500,3580.0,True,True +28007060600,3264.0,True,True +28009950100,5420.0,True,True +28009950200,2812.0,True,True +28011950100,2857.0,True,True +28011950200,2656.0,True,True +28011950300,3336.0,True,True +28011950400,3897.0,True,True +28011950500,5360.0,True,True +28011950600,6381.0,False,False +28011950701,4486.0,True,True +28011950702,2875.0,True,True +28013950100,3823.0,True,True +28013950200,1346.0,False,True +28013950300,2983.0,True,True +28013950400,3353.0,True,True +28013950500,2994.0,True,True +28015950100,4518.0,True,False +28015950200,5552.0,True,True +28017950100,3909.0,True,True +28017950200,3351.0,True,True +28017950300,4399.0,True,True +28017950400,5534.0,True,True +28019950100,2676.0,True,True +28019950200,4159.0,True,True +28019950300,1442.0,True,True +28021950100,2840.0,True,True +28021950200,1395.0,True,True +28021950300,4854.0,True,True +28023950100,4306.0,False,False +28023950200,5740.0,False,False +28023950300,3117.0,True,True +28023950400,2607.0,True,True +28025950100,5558.0,True,True +28025950200,2415.0,True,True +28025950300,3256.0,True,True +28025950400,4623.0,True,True +28025950500,3788.0,True,True +28027950100,3819.0,True,True +28027950200,2598.0,False,False +28027950300,2647.0,True,True +28027950400,3131.0,False,False +28027950500,4873.0,True,True +28027950600,950.0,True,True +28027950700,5237.0,True,True +28029950100,5675.0,True,True +28029950200,4797.0,False,False +28029950300,4151.0,False,False +28029950400,5028.0,True,True +28029950500,5958.0,False,False +28029950600,2892.0,True,True +28031950100,4617.0,True,True +28031950200,2643.0,True,True +28031950300,4658.0,True,True +28031950400,7060.0,True,True +28033070101,2819.0,True,True +28033070102,4256.0,False,False +28033070210,6613.0,False,False +28033070221,3864.0,True,True +28033070222,4082.0,False,False +28033070310,4450.0,False,False +28033070322,3979.0,False,False +28033070323,5736.0,True,False +28033070324,4608.0,True,True +28033070325,3004.0,True,True +28033070411,1703.0,True,True +28033070412,4131.0,True,True +28033070421,2368.0,True,False +28033070422,2763.0,True,True +28033070520,11632.0,False,False +28033070521,3636.0,False,False +28033070522,4626.0,False,False +28033070610,3250.0,False,False +28033070620,7866.0,False,False +28033070630,13438.0,False,False +28033070710,7066.0,False,False +28033070721,4851.0,False,False +28033070722,5810.0,False,False +28033070811,6406.0,False,False +28033070812,5687.0,False,False +28033070821,5070.0,False,False +28033070822,5188.0,False,False +28033070830,7017.0,False,False +28033070900,5119.0,False,False +28033071000,10579.0,False,False +28033071110,7050.0,False,False +28033071120,7387.0,False,False +28033071200,2921.0,False,False +28035000200,2494.0,True,True +28035000300,3074.0,False,False +28035000500,1426.0,True,True +28035000600,7310.0,True,True +28035000700,3197.0,True,True +28035000800,5931.0,False,False +28035000900,3713.0,False,False +28035001000,4081.0,False,False +28035001100,3568.0,True,True +28035010101,6668.0,False,False +28035010102,6031.0,False,False +28035010200,6596.0,True,True +28035010300,3505.0,True,True +28035010400,3534.0,True,True +28035010500,3927.0,True,True +28035010600,8671.0,True,True +28035010700,1498.0,True,True +28037950100,5321.0,True,True +28037950200,2412.0,True,True +28039950101,6090.0,True,True +28039950102,4911.0,True,True +28039950200,2905.0,True,True +28039950301,6788.0,True,True +28039950302,3223.0,True,True +28041950100,8759.0,False,False +28041950200,4886.0,True,True +28043950100,5222.0,True,False +28043950200,5525.0,False,False +28043950300,2978.0,True,True +28043950400,2723.0,True,True +28043950500,4640.0,True,True +28045030100,6411.0,True,True +28045030200,5472.0,False,False +28045030300,11102.0,True,True +28045030400,1814.0,False,False +28045030500,8156.0,False,False +28045030601,7437.0,True,True +28045030602,6569.0,False,False +28045990000,0.0,False,False +28047000100,229.0,True,True +28047000300,1943.0,True,True +28047000600,1302.0,True,True +28047000900,3886.0,False,False +28047001201,5037.0,False,False +28047001202,5378.0,True,True +28047001300,3034.0,True,True +28047001400,1768.0,False,False +28047001501,3127.0,True,True +28047001502,4908.0,False,False +28047001600,3641.0,False,False +28047001700,5219.0,True,True +28047001800,2558.0,True,True +28047001900,2829.0,True,True +28047002000,3798.0,True,True +28047002300,1734.0,True,True +28047002400,4087.0,True,True +28047002500,2145.0,False,False +28047002600,4044.0,True,True +28047002700,6160.0,False,False +28047002800,2816.0,False,False +28047002900,1341.0,False,False +28047003000,4643.0,True,True +28047003101,8374.0,True,True +28047003102,6395.0,False,False +28047003204,3488.0,True,True +28047003205,5905.0,False,False +28047003206,10994.0,True,True +28047003207,7437.0,True,True +28047003208,4556.0,True,True +28047003301,8872.0,False,False +28047003303,7277.0,False,True +28047003304,4408.0,False,False +28047003402,12277.0,True,True +28047003403,2343.0,False,False +28047003404,5548.0,False,False +28047003501,10495.0,True,True +28047003502,5279.0,False,False +28047003504,7691.0,False,False +28047003505,9109.0,False,False +28047003600,987.0,True,True +28047003700,2860.0,True,True +28047003800,1064.0,True,True +28047003900,3430.0,True,True +28047980000,86.0,True,True +28047990000,0.0,False,False +28049000100,4717.0,False,False +28049000200,5074.0,False,False +28049000301,2212.0,True,True +28049000302,3684.0,True,True +28049000400,3530.0,False,False +28049000500,5492.0,True,True +28049000600,3290.0,True,True +28049000700,5685.0,True,True +28049000800,4204.0,True,True +28049000900,1937.0,True,True +28049001000,1419.0,True,True +28049001100,1599.0,True,True +28049001200,1526.0,True,True +28049001300,4750.0,False,False +28049001400,3260.0,False,False +28049001500,3060.0,False,False +28049001600,3793.0,False,False +28049001900,1969.0,True,True +28049002000,973.0,True,True +28049002100,3131.0,True,True +28049002200,2366.0,True,True +28049002300,2845.0,True,True +28049002400,3751.0,True,True +28049002500,2213.0,True,True +28049002700,991.0,True,True +28049003000,1794.0,True,True +28049003200,1379.0,True,True +28049003300,5892.0,True,True +28049003400,2600.0,True,True +28049003500,4341.0,True,True +28049003600,3258.0,True,True +28049003700,3240.0,True,True +28049003800,2708.0,True,True +28049010101,6474.0,False,False +28049010102,5486.0,False,False +28049010201,3408.0,True,True +28049010202,5730.0,False,False +28049010203,2465.0,True,True +28049010301,2812.0,True,True +28049010304,6209.0,False,False +28049010305,3698.0,True,False +28049010400,3516.0,False,False +28049010500,8480.0,False,False +28049010600,4563.0,True,True +28049010700,6827.0,False,False +28049010801,1344.0,True,True +28049010804,1461.0,False,False +28049010805,3940.0,False,False +28049010806,3691.0,False,False +28049010807,3612.0,False,False +28049010808,4514.0,False,False +28049010809,3357.0,False,False +28049010901,2845.0,False,False +28049010902,1418.0,True,True +28049011001,5434.0,True,True +28049011002,4499.0,True,True +28049011101,3159.0,True,True +28049011102,10149.0,False,False +28049011103,5830.0,False,False +28049011201,2846.0,True,True +28049011202,9360.0,False,False +28049011300,4055.0,True,True +28049011400,1192.0,True,True +28049011500,3740.0,False,True +28051950100,4363.0,True,True +28051950200,3619.0,True,True +28051950300,2417.0,True,True +28051950400,2218.0,True,True +28051950500,5120.0,True,True +28053950100,2209.0,True,True +28053950200,2288.0,True,True +28053950300,3892.0,True,True +28055950100,1361.0,True,True +28057950100,5144.0,True,True +28057950200,5931.0,False,False +28057950300,3529.0,False,False +28057950400,5314.0,True,False +28057950500,3544.0,True,True +28059040101,7697.0,True,True +28059040102,7410.0,False,True +28059040201,7559.0,False,True +28059040203,5985.0,False,False +28059040204,7503.0,False,False +28059040300,7963.0,True,True +28059040400,8365.0,False,False +28059040500,3451.0,False,False +28059040600,5703.0,False,False +28059040700,9429.0,False,False +28059040800,6467.0,True,True +28059040900,13899.0,False,False +28059041000,5041.0,False,False +28059041100,6584.0,False,False +28059041300,5536.0,False,False +28059041400,3178.0,True,True +28059041500,1047.0,False,False +28059041600,2141.0,True,True +28059041700,2014.0,False,False +28059041800,2510.0,True,True +28059041900,2499.0,True,True +28059042000,3934.0,True,True +28059042100,3612.0,True,True +28059042200,5243.0,True,True +28059042500,2020.0,True,True +28059042600,2115.0,False,False +28059042700,930.0,False,True +28059042900,2541.0,True,True +28059990000,0.0,False,False +28061950100,4299.0,True,True +28061950200,2036.0,True,True +28061950300,5071.0,True,True +28061950400,5099.0,True,True +28063950100,5679.0,True,True +28063950200,1546.0,True,True +28065950100,4727.0,True,True +28065950201,3269.0,True,True +28065950202,3343.0,True,True +28067950100,6089.0,True,True +28067950200,5783.0,True,True +28067950301,4451.0,False,False +28067950302,3526.0,True,True +28067950401,4434.0,False,False +28067950402,5378.0,True,True +28067950500,4245.0,True,True +28067950600,6380.0,True,True +28067950700,3782.0,True,True +28067950800,5079.0,True,True +28067950900,8376.0,True,True +28067951000,3828.0,True,True +28067951100,7001.0,False,False +28067980000,0.0,False,False +28069030100,5661.0,True,True +28069030200,4282.0,True,True +28071950100,4344.0,True,True +28071950201,4357.0,False,False +28071950202,4771.0,False,False +28071950301,6048.0,False,False +28071950302,4298.0,False,False +28071950401,8728.0,False,False +28071950402,3691.0,True,True +28071950501,7804.0,False,False +28071950502,2721.0,True,True +28071950503,6828.0,False,False +28073020100,8991.0,False,False +28073020201,7119.0,False,False +28073020202,9014.0,False,False +28073020301,8541.0,False,False +28073020302,10412.0,True,True +28073020400,7734.0,True,True +28073020500,6798.0,True,True +28073020600,3360.0,True,True +28075000200,2499.0,True,True +28075000300,2355.0,True,True +28075000400,4364.0,True,True +28075000600,1761.0,True,True +28075000700,4086.0,True,True +28075000800,2007.0,True,True +28075000900,4253.0,True,True +28075001000,4502.0,False,False +28075001101,3585.0,False,False +28075001102,3886.0,False,False +28075010201,6015.0,True,True +28075010202,7117.0,False,False +28075010301,6022.0,False,False +28075010302,6932.0,False,False +28075010400,2708.0,False,False +28075010500,5427.0,False,False +28075010600,7385.0,True,True +28075010700,1314.0,True,True +28075980000,61.0,False,False +28077960100,4108.0,True,True +28077960200,4738.0,True,True +28077960300,3787.0,True,True +28079040100,2492.0,True,True +28079040400,7067.0,True,True +28079040500,3568.0,True,True +28079040600,5883.0,True,True +28079040700,3782.0,True,True +28081950101,5508.0,False,False +28081950102,3717.0,True,False +28081950201,6830.0,False,False +28081950202,5553.0,False,False +28081950301,4997.0,False,False +28081950302,3823.0,True,False +28081950401,3583.0,False,False +28081950402,7872.0,False,False +28081950500,5924.0,True,True +28081950601,3862.0,False,False +28081950602,3598.0,True,False +28081950700,3221.0,True,True +28081950800,3380.0,True,True +28081950901,3624.0,True,False +28081950902,4697.0,True,False +28081951001,4179.0,True,False +28081951002,4094.0,True,True +28081951100,6610.0,False,False +28081980000,0.0,False,False +28083950100,800.0,False,True +28083950200,3455.0,True,True +28083950300,4799.0,True,True +28083950400,5277.0,True,True +28083950600,4959.0,False,True +28083950700,2209.0,True,True +28083950800,3835.0,True,True +28083950900,3888.0,True,True +28085950100,4233.0,True,True +28085950200,6002.0,True,True +28085950300,7282.0,False,False +28085950400,6465.0,False,False +28085950500,4959.0,True,True +28085950600,5379.0,True,True +28087000101,6695.0,False,False +28087000102,2173.0,False,False +28087000200,1667.0,False,False +28087000300,7158.0,False,False +28087000401,7869.0,False,False +28087000403,4745.0,True,True +28087000404,4207.0,False,False +28087000500,3941.0,True,True +28087000600,3403.0,True,True +28087000700,5549.0,True,True +28087000800,2879.0,True,True +28087000900,4845.0,True,True +28087001000,2513.0,True,True +28087001100,1506.0,True,True +28089030101,7078.0,False,False +28089030104,2599.0,False,False +28089030105,3269.0,False,False +28089030106,5385.0,True,False +28089030107,2612.0,False,False +28089030108,5159.0,False,False +28089030201,9082.0,False,False +28089030202,4878.0,False,False +28089030203,2958.0,False,False +28089030204,4144.0,False,False +28089030205,2610.0,False,False +28089030206,1859.0,False,False +28089030301,6064.0,False,False +28089030302,6877.0,False,False +28089030400,18611.0,False,False +28089030500,6748.0,True,True +28089030600,3433.0,True,True +28089030700,825.0,True,True +28089030800,2587.0,True,True +28089030900,5801.0,True,False +28089031000,1983.0,True,True +28091950100,5814.0,True,True +28091950200,3357.0,True,True +28091950300,3171.0,True,True +28091950400,3511.0,True,True +28091950500,4384.0,True,True +28091950600,4753.0,True,True +28093950100,6128.0,False,False +28093950200,7148.0,True,True +28093950300,7735.0,False,False +28093950401,2838.0,True,True +28093950402,4925.0,False,True +28093950500,6825.0,True,True +28095950100,5475.0,False,False +28095950200,7605.0,True,True +28095950300,3882.0,True,True +28095950400,3256.0,True,True +28095950501,3123.0,False,False +28095950502,4152.0,True,True +28095950600,3075.0,True,True +28095950700,2280.0,True,True +28095950800,2825.0,True,True +28097950100,2766.0,True,True +28097950200,2522.0,True,True +28097950300,4780.0,True,True +28099010100,5299.0,False,False +28099010200,2976.0,False,False +28099010400,3491.0,True,True +28099010500,3376.0,True,True +28099010600,5426.0,True,True +28099010700,4356.0,True,True +28099940100,4408.0,True,True +28101050100,3223.0,False,False +28101050200,3842.0,True,True +28101050300,6208.0,False,True +28101050400,4710.0,True,True +28101050500,3377.0,True,True +28103950100,4818.0,True,True +28103950200,3225.0,True,True +28103950300,2657.0,True,True +28105950100,8951.0,False,True +28105950200,6833.0,False,False +28105950300,3791.0,True,True +28105950400,7244.0,False,True +28105950500,4225.0,False,True +28105950601,4936.0,False,False +28105950602,6350.0,False,False +28105950700,7182.0,True,True +28107950100,7648.0,True,True +28107950200,2947.0,True,True +28107950300,4644.0,True,True +28107950400,5299.0,True,True +28107950500,6862.0,True,True +28107950600,6790.0,True,True +28109950100,5400.0,False,False +28109950200,4986.0,False,False +28109950300,3389.0,False,False +28109950401,7449.0,True,True +28109950402,6818.0,False,False +28109950501,7342.0,False,False +28109950502,8551.0,False,False +28109950600,4098.0,True,True +28109950700,7186.0,True,True +28111950101,4458.0,True,True +28111950102,3566.0,False,False +28111950200,3982.0,True,True +28113950101,4400.0,True,True +28113950102,4373.0,True,True +28113950200,5555.0,True,True +28113950300,4608.0,True,True +28113950400,3365.0,True,True +28113950500,6662.0,True,True +28113950600,6098.0,True,True +28113950700,4471.0,True,True +28115950101,4155.0,False,False +28115950102,5613.0,True,True +28115950200,4961.0,False,False +28115950300,6180.0,True,False +28115950400,5834.0,True,True +28115950500,4875.0,False,False +28117950100,5219.0,True,True +28117950200,6738.0,True,True +28117950300,6671.0,True,True +28117950400,4922.0,True,True +28117950500,1705.0,True,True +28119950100,2040.0,True,True +28119950200,1708.0,True,True +28119950300,3439.0,True,True +28121020101,5892.0,False,False +28121020102,11693.0,False,False +28121020206,10350.0,False,False +28121020207,6512.0,False,False +28121020208,6646.0,False,False +28121020209,4734.0,False,False +28121020210,5125.0,False,False +28121020211,8879.0,False,False +28121020212,3595.0,False,False +28121020213,1335.0,False,False +28121020301,3322.0,False,False +28121020302,8188.0,False,False +28121020401,4484.0,True,True +28121020402,6616.0,True,True +28121020500,4312.0,True,True +28121020600,8836.0,True,False +28121020701,1210.0,True,True +28121020703,2020.0,False,False +28121020704,5219.0,True,True +28121020801,2396.0,False,False +28121020802,13629.0,False,False +28121020803,2419.0,False,False +28121020900,7494.0,False,False +28121021001,5446.0,True,False +28121021002,6864.0,False,False +28121021003,5381.0,False,False +28121980000,80.0,False,False +28123020100,6519.0,True,True +28123020200,4837.0,True,True +28123020300,4881.0,True,True +28123020400,3272.0,True,True +28123020500,5206.0,True,True +28123020600,3617.0,True,True +28125950100,2424.0,True,True +28125950200,1980.0,True,True +28127950100,5593.0,True,True +28127950200,3999.0,True,True +28127950300,5735.0,True,True +28127950400,7237.0,False,False +28127950500,4324.0,True,True +28129950100,5083.0,True,True +28129950200,5502.0,True,True +28129950300,5424.0,True,True +28131020100,3918.0,True,True +28131020201,7955.0,True,True +28131020202,6403.0,False,False +28133950100,6750.0,True,True +28133950200,4192.0,True,True +28133950300,2454.0,True,True +28133950401,3494.0,True,True +28133950402,4946.0,True,True +28133950500,2210.0,True,True +28133950600,2122.0,True,True +28135950100,3980.0,True,True +28135950200,2988.0,True,True +28135950300,4831.0,True,True +28135950400,2359.0,True,True +28137950100,5298.0,True,True +28137950200,6728.0,False,False +28137950301,4894.0,True,True +28137950302,5816.0,False,False +28137950400,5668.0,False,False +28139950100,5041.0,True,True +28139950200,6461.0,True,True +28139950300,2459.0,True,True +28139950400,8057.0,False,True +28141950100,3010.0,True,True +28141950200,2292.0,True,True +28141950300,6605.0,True,True +28141950400,7534.0,True,True +28143950100,5401.0,True,True +28143950200,4587.0,True,True +28143980000,0.0,False,False +28145950100,4508.0,True,True +28145950200,5009.0,True,True +28145950300,4546.0,True,True +28145950400,4606.0,True,False +28145950500,6028.0,False,False +28145950600,3810.0,False,True +28147950100,6622.0,True,True +28147950200,1820.0,True,True +28147950300,6035.0,True,True +28149950100,5078.0,False,False +28149950200,3375.0,True,True +28149950300,2278.0,True,True +28149950400,2731.0,True,True +28149950500,2107.0,True,True +28149950600,5620.0,True,True +28149950700,2161.0,True,True +28149950800,4278.0,True,True +28149950901,4923.0,False,False +28149950902,3872.0,True,True +28149951101,5365.0,True,True +28149951102,4731.0,True,True +28151000100,1228.0,True,True +28151000200,1772.0,True,True +28151000300,3043.0,True,True +28151000400,2458.0,True,True +28151000600,2331.0,True,True +28151000701,3501.0,True,True +28151000702,3687.0,False,True +28151000800,3186.0,True,True +28151000900,2834.0,True,True +28151001000,1171.0,True,True +28151001100,1454.0,True,True +28151001200,2152.0,True,True +28151001300,2362.0,True,True +28151001400,4045.0,True,True +28151001500,4532.0,True,True +28151001600,1795.0,True,True +28151001700,2387.0,True,True +28151002000,1023.0,True,True +28151002100,1096.0,True,True +28153950100,5893.0,True,True +28153950200,4783.0,True,True +28153950300,4675.0,False,False +28153950400,5022.0,False,False +28155950100,4247.0,False,False +28155950200,3478.0,True,True +28155950300,2043.0,True,True +28157950100,3802.0,True,True +28157950200,5073.0,True,True +28159950100,2579.0,True,True +28159950200,4265.0,True,True +28159950300,3814.0,True,True +28159950400,3111.0,True,True +28159950500,4460.0,True,True +28161950100,3614.0,True,True +28161950200,4124.0,True,True +28161950300,4629.0,True,True +28163950100,8666.0,True,True +28163950200,2878.0,True,True +28163950300,5324.0,True,True +28163950400,1632.0,True,True +28163950500,4038.0,True,True +28163950600,6027.0,True,True +29001950100,3774.0,True,True +29001950200,2794.0,True,True +29001950300,3225.0,True,True +29001950400,4002.0,False,False +29001950500,7021.0,False,False +29001950900,2389.0,False,True +29001951000,2164.0,False,False +29003010100,5832.0,False,False +29003010200,6554.0,False,False +29003010300,2210.0,False,False +29003010400,2907.0,False,False +29005950100,2880.0,True,True +29005950200,2349.0,False,False +29007950100,4546.0,True,True +29007950200,5415.0,True,True +29007950300,3245.0,False,False +29007950400,2506.0,True,False +29007950500,3890.0,True,True +29007950600,2963.0,True,False +29007950700,3079.0,True,False +29009960100,5873.0,True,True +29009960200,6080.0,True,True +29009960300,6561.0,True,True +29009960401,4160.0,True,True +29009960402,3726.0,True,True +29009960500,6518.0,True,True +29009960600,2612.0,False,True +29011960100,2563.0,True,True +29011960200,3722.0,False,False +29011960300,5512.0,True,True +29013070100,4907.0,False,False +29013070200,4280.0,False,False +29013070300,4370.0,True,True +29013070400,2739.0,True,True +29015460100,3443.0,True,True +29015460200,2338.0,True,True +29015460300,4639.0,True,True +29015460400,2320.0,True,True +29015460700,2855.0,False,False +29015460800,3512.0,True,True +29017950100,4819.0,True,True +29017950200,4434.0,True,True +29017950300,2972.0,True,True +29019000200,1964.0,False,False +29019000300,3206.0,False,False +29019000500,4073.0,False,False +29019000600,4947.0,False,False +29019000700,3436.0,True,True +29019000900,1575.0,True,True +29019001001,4923.0,False,False +29019001002,6978.0,False,False +29019001101,11290.0,False,False +29019001103,7495.0,False,False +29019001104,12365.0,False,False +29019001201,5760.0,False,False +29019001202,5408.0,False,False +29019001300,4107.0,False,False +29019001400,12215.0,False,False +29019001502,6873.0,True,True +29019001503,3746.0,True,True +29019001504,8074.0,False,False +29019001601,8792.0,False,False +29019001602,4241.0,False,False +29019001701,7788.0,False,False +29019001702,5198.0,False,False +29019001803,4347.0,False,False +29019001805,9331.0,False,False +29019001901,4578.0,False,False +29019001902,9505.0,False,False +29019002000,5224.0,False,False +29019002100,3445.0,True,True +29019002200,6767.0,False,False +29021000100,5928.0,False,False +29021000200,4094.0,False,False +29021000300,3344.0,True,True +29021000400,1403.0,True,True +29021000500,3190.0,True,True +29021000600,5386.0,False,False +29021000701,4491.0,False,False +29021000702,4659.0,True,True +29021000900,4472.0,True,True +29021001000,3186.0,True,True +29021001100,2305.0,True,True +29021001200,1769.0,True,True +29021001500,4956.0,True,True +29021001600,2562.0,True,False +29021001700,4306.0,False,False +29021001800,3504.0,False,False +29021002100,2579.0,True,True +29021002200,1931.0,False,False +29021002300,2523.0,False,False +29021002400,1852.0,True,True +29021002500,2133.0,False,False +29021002700,3483.0,False,False +29021002800,4806.0,False,False +29021002900,3321.0,True,False +29021003000,6277.0,True,True +29023950100,6009.0,True,True +29023950201,5372.0,False,True +29023950202,4873.0,True,True +29023950300,7222.0,True,True +29023950400,3543.0,True,True +29023950500,2696.0,True,True +29023950600,4206.0,True,True +29023950700,2728.0,True,True +29023950800,2643.0,True,True +29023950900,3364.0,True,True +29025950100,2494.0,True,True +29025950200,6545.0,True,True +29027070100,4963.0,False,False +29027070200,2949.0,False,False +29027070300,7174.0,False,False +29027070400,5788.0,False,False +29027070500,5163.0,False,False +29027070600,6920.0,False,False +29027070700,6987.0,False,False +29027070800,4945.0,False,False +29029950100,4483.0,False,False +29029950200,6222.0,True,True +29029950300,1987.0,False,False +29029950400,4124.0,True,True +29029950500,3619.0,True,True +29029950600,4555.0,False,False +29029950700,3367.0,False,False +29029950800,7881.0,True,True +29029950900,4196.0,True,True +29029951100,2371.0,False,False +29029951200,2661.0,False,False +29031880100,5532.0,False,False +29031880200,3930.0,False,False +29031880300,4287.0,False,False +29031880400,8259.0,False,False +29031880500,9479.0,False,False +29031880600,5828.0,False,False +29031880700,4958.0,False,False +29031880800,4106.0,False,False +29031880900,2784.0,True,True +29031881000,1915.0,False,False +29031881100,3870.0,False,False +29031881200,7054.0,False,False +29031881300,6914.0,False,False +29031881400,2134.0,True,True +29031881500,4576.0,False,False +29031881600,2865.0,True,True +29033960100,2195.0,False,False +29033960200,2671.0,False,False +29033960300,3915.0,True,True +29035960100,3780.0,True,True +29035960200,2367.0,False,True +29037060001,4517.0,False,False +29037060003,3882.0,False,False +29037060004,5485.0,False,False +29037060100,1548.0,False,False +29037060202,4883.0,False,False +29037060301,10552.0,False,False +29037060302,8156.0,False,False +29037060305,4711.0,False,False +29037060400,5079.0,False,False +29037060500,2977.0,False,False +29037060600,8256.0,False,False +29037060700,3603.0,False,False +29037060800,5774.0,False,False +29037060904,3618.0,True,True +29037061001,4507.0,False,False +29037061002,7290.0,False,False +29037061100,4316.0,False,False +29037061200,3968.0,False,False +29037061300,5602.0,False,False +29037061400,4873.0,True,False +29039870100,5833.0,True,True +29039870200,5074.0,True,True +29039870300,3136.0,True,True +29041470100,2384.0,False,False +29041470200,2458.0,True,True +29041470300,2641.0,False,False +29043020101,3217.0,False,False +29043020102,6039.0,True,True +29043020201,4323.0,False,False +29043020202,7259.0,False,False +29043020203,8401.0,False,False +29043020204,4897.0,False,False +29043020205,5309.0,False,False +29043020302,6157.0,False,False +29043020303,5491.0,False,False +29043020304,3682.0,False,False +29043020305,6979.0,False,False +29043020306,8210.0,False,False +29043020400,8105.0,False,False +29043020500,7589.0,False,False +29045950100,1865.0,False,False +29045950200,2157.0,True,True +29045950300,2757.0,True,True +29047020201,4290.0,True,True +29047020202,4596.0,False,False +29047020300,6662.0,False,False +29047020400,2565.0,False,False +29047020500,5983.0,True,True +29047020602,3872.0,True,True +29047020603,3247.0,False,False +29047020604,5204.0,False,False +29047020801,6586.0,False,False +29047020901,5570.0,False,False +29047020902,2065.0,False,False +29047021001,4217.0,True,False +29047021003,3677.0,False,False +29047021004,3132.0,False,False +29047021101,5126.0,False,False +29047021102,7184.0,False,False +29047021103,3989.0,False,False +29047021204,5240.0,False,False +29047021205,8049.0,False,False +29047021206,8084.0,False,False +29047021207,3634.0,False,False +29047021208,5976.0,False,False +29047021303,4555.0,False,False +29047021305,8090.0,False,False +29047021306,6899.0,False,False +29047021307,5765.0,False,False +29047021309,5099.0,False,False +29047021310,8973.0,False,False +29047021401,4936.0,False,False +29047021403,3161.0,False,False +29047021404,4762.0,False,False +29047021600,9061.0,False,False +29047021701,6106.0,False,False +29047021702,6002.0,True,False +29047021803,8150.0,False,False +29047021804,7362.0,False,False +29047021805,9356.0,False,False +29047021806,3984.0,False,False +29047021900,6975.0,False,False +29047022000,5924.0,False,False +29047022100,5058.0,True,True +29047022200,3922.0,False,False +29047022301,3553.0,False,False +29047022302,5875.0,False,False +29049960100,5121.0,False,False +29049960200,6717.0,False,False +29049960300,4154.0,False,False +29049960400,4508.0,False,False +29051010300,4496.0,False,False +29051010400,6663.0,False,False +29051010500,5100.0,False,False +29051010600,3639.0,True,True +29051010701,5714.0,False,False +29051010702,5397.0,False,False +29051010800,9242.0,False,False +29051010900,5652.0,False,False +29051020198,7472.0,False,False +29051020200,4517.0,False,False +29051020300,3593.0,False,False +29051020400,6454.0,False,False +29051020500,2828.0,False,False +29051020600,4066.0,False,False +29051020700,1890.0,True,True +29053950100,3333.0,False,False +29053950200,3034.0,False,False +29053950300,4220.0,True,True +29053950400,2570.0,True,True +29053950500,4503.0,False,False +29055450101,1911.0,False,False +29055450102,5933.0,True,True +29055450200,4698.0,True,True +29055450301,2433.0,False,False +29055450302,4773.0,True,True +29055450400,4406.0,True,True +29057480100,4458.0,True,True +29057480200,3120.0,True,True +29059480100,4425.0,True,True +29059480200,5297.0,True,True +29059480300,6895.0,False,False +29061470100,3485.0,False,False +29061470200,4810.0,True,True +29063080100,8597.0,True,True +29063080200,3929.0,False,False +29065960100,4804.0,True,True +29065960200,5417.0,True,True +29065960300,2310.0,True,True +29065960400,3014.0,True,True +29067950100,3456.0,True,True +29067950200,5258.0,True,True +29067950500,4592.0,True,True +29069360100,2340.0,True,True +29069360200,2781.0,True,True +29069360300,4047.0,True,True +29069360400,4240.0,True,True +29069360500,2903.0,True,True +29069360600,4148.0,True,True +29069360700,3376.0,True,True +29069360800,2257.0,True,True +29069360900,1917.0,False,False +29069361000,2018.0,True,True +29071800100,8867.0,False,False +29071800201,4486.0,False,False +29071800202,6071.0,False,False +29071800300,8275.0,False,False +29071800401,5184.0,False,False +29071800402,6895.0,False,False +29071800500,7064.0,False,False +29071800601,7131.0,False,False +29071800602,9444.0,False,False +29071800701,7120.0,True,True +29071800702,3196.0,False,False +29071800800,7365.0,False,False +29071800901,2758.0,False,False +29071800902,7026.0,True,True +29071801000,3735.0,False,False +29071801101,4328.0,True,True +29071801102,4246.0,False,False +29073960100,2832.0,False,False +29073960200,1959.0,True,True +29073960300,2677.0,False,False +29073960400,2804.0,True,True +29073960500,4439.0,False,False +29075960100,3034.0,True,True +29075960200,3582.0,True,True +29077000100,2140.0,False,False +29077000200,5165.0,False,False +29077000300,3511.0,False,False +29077000400,4675.0,True,True +29077000501,2231.0,True,True +29077000502,3858.0,True,True +29077000600,2743.0,True,True +29077000700,4694.0,False,False +29077000800,3296.0,False,False +29077000900,4950.0,False,False +29077001000,2169.0,False,False +29077001100,3414.0,True,True +29077001200,3624.0,False,False +29077001301,2157.0,True,False +29077001302,2435.0,True,True +29077001400,4741.0,True,True +29077001500,4868.0,False,False +29077001700,3555.0,True,True +29077001800,3170.0,True,True +29077001900,3144.0,True,True +29077002200,4976.0,True,True +29077002300,5465.0,True,True +29077002402,4174.0,True,True +29077002502,4988.0,False,False +29077002600,4656.0,False,False +29077002700,2754.0,True,True +29077002800,1779.0,False,False +29077002900,3809.0,False,False +29077003002,5936.0,True,False +29077003100,2984.0,True,True +29077003200,3916.0,True,True +29077003300,3626.0,True,True +29077003600,2945.0,True,True +29077003700,8219.0,False,False +29077003800,7838.0,False,False +29077003900,3164.0,False,False +29077004001,5443.0,False,False +29077004002,3710.0,False,False +29077004003,4815.0,False,False +29077004101,8508.0,False,False +29077004102,7922.0,False,False +29077004103,7243.0,False,False +29077004201,4784.0,False,False +29077004202,6738.0,False,False +29077004301,8812.0,False,False +29077004302,4198.0,True,True +29077004400,6224.0,True,True +29077004500,2848.0,False,False +29077004600,7651.0,False,False +29077004700,5124.0,False,False +29077004801,7881.0,False,False +29077004802,6934.0,True,True +29077004803,5405.0,False,False +29077004900,5849.0,False,False +29077005001,3718.0,True,False +29077005002,6938.0,False,False +29077005100,3221.0,False,False +29077005200,6673.0,False,False +29077005500,4459.0,True,True +29077005600,3506.0,True,True +29077005700,3697.0,False,False +29077005800,5686.0,True,True +29079960100,1987.0,False,False +29079960200,2230.0,False,False +29079960300,2376.0,False,False +29079960400,3399.0,True,True +29081950100,3356.0,True,True +29081950200,2284.0,True,True +29081950300,2851.0,True,True +29083950100,2811.0,True,True +29083950200,3689.0,False,False +29083950300,3130.0,False,False +29083950400,2861.0,True,True +29083950500,3951.0,True,True +29083950600,5293.0,True,True +29085470100,2969.0,True,True +29085470300,2419.0,True,True +29085470500,4016.0,True,True +29087960100,1140.0,True,True +29087960200,1551.0,False,False +29087960300,1741.0,False,False +29089960100,3018.0,False,False +29089960200,3391.0,True,True +29089960300,3649.0,False,False +29091090100,5189.0,True,True +29091090200,4112.0,True,True +29091090300,4589.0,True,True +29091090400,4646.0,True,True +29091090500,4576.0,True,True +29091090600,5276.0,True,True +29091090700,5406.0,True,True +29091090800,6310.0,True,True +29093950100,2785.0,True,True +29093950200,2640.0,True,True +29093950300,2685.0,True,True +29093950400,2054.0,True,True +29095000300,1524.0,True,True +29095000600,4402.0,True,True +29095000700,3469.0,True,True +29095000800,4046.0,True,True +29095000900,2640.0,True,True +29095001000,2977.0,True,True +29095001100,1744.0,False,False +29095001800,2579.0,True,True +29095001900,3632.0,True,True +29095002000,2443.0,True,True +29095002100,4114.0,True,True +29095002200,2689.0,True,True +29095002300,2058.0,True,True +29095003400,2886.0,True,True +29095003700,864.0,True,True +29095003800,1531.0,True,True +29095004300,2370.0,False,False +29095004400,1440.0,False,False +29095004600,2458.0,False,False +29095005100,1623.0,False,False +29095005200,1092.0,True,True +29095005300,1528.0,True,True +29095005400,868.0,True,True +29095005500,701.0,True,True +29095005601,1580.0,True,True +29095005602,1424.0,True,True +29095005700,2371.0,True,True +29095005801,2022.0,True,True +29095006000,1327.0,True,True +29095006100,2890.0,True,True +29095006300,1587.0,True,True +29095006500,1630.0,True,True +29095006600,1910.0,False,False +29095006700,1811.0,False,False +29095006900,1497.0,False,False +29095007100,3286.0,False,False +29095007200,1918.0,False,False +29095007300,3091.0,False,False +29095007400,4000.0,False,False +29095007500,2704.0,False,False +29095007600,2018.0,True,True +29095007700,1247.0,True,True +29095007802,2130.0,True,True +29095007900,3612.0,True,True +29095008000,3239.0,True,True +29095008100,2209.0,False,False +29095008200,2950.0,False,False +29095008300,2528.0,False,False +29095008400,2904.0,False,False +29095008500,3788.0,False,False +29095008600,5449.0,False,False +29095008700,2338.0,True,True +29095008800,3684.0,True,True +29095008900,1833.0,True,True +29095009000,4533.0,False,False +29095009100,3805.0,False,False +29095009200,3048.0,False,False +29095009300,2618.0,False,False +29095009400,4735.0,False,False +29095009500,3242.0,True,True +29095009600,1708.0,True,True +29095009700,1897.0,True,True +29095009800,2926.0,False,False +29095009900,2158.0,False,False +29095010001,1714.0,False,False +29095010002,3875.0,False,False +29095010103,2455.0,False,False +29095010105,3738.0,False,False +29095010201,2362.0,True,True +29095010203,4556.0,False,False +29095010204,4573.0,True,False +29095010500,4417.0,True,True +29095010600,3319.0,False,False +29095010702,3468.0,True,True +29095011000,4961.0,True,True +29095011100,3048.0,True,True +29095011200,3056.0,True,True +29095011300,5424.0,False,False +29095011401,7835.0,False,False +29095011405,3940.0,True,True +29095011406,5670.0,True,False +29095011500,5884.0,True,True +29095011600,5181.0,True,True +29095011700,3755.0,True,True +29095011800,4476.0,False,True +29095011900,3361.0,True,True +29095012000,3492.0,True,True +29095012100,5512.0,True,True +29095012200,6386.0,True,False +29095012300,3513.0,False,False +29095012400,3945.0,False,False +29095012501,3334.0,False,False +29095012502,2677.0,False,False +29095012600,5159.0,True,True +29095012701,6771.0,False,False +29095012802,3502.0,False,False +29095012803,2004.0,False,False +29095012804,6087.0,True,False +29095012903,3428.0,True,True +29095012904,2964.0,False,False +29095012906,4786.0,True,True +29095013003,5232.0,True,True +29095013100,2454.0,True,True +29095013203,4997.0,True,True +29095013208,2683.0,True,True +29095013210,2817.0,True,True +29095013301,3756.0,True,True +29095013307,2738.0,True,True +29095013309,5015.0,True,True +29095013313,4871.0,False,False +29095013401,2648.0,True,False +29095013405,2058.0,True,True +29095013407,2519.0,False,False +29095013408,6282.0,False,False +29095013410,3663.0,True,True +29095013416,2378.0,False,False +29095013502,6059.0,False,False +29095013504,3512.0,False,False +29095013606,1390.0,False,False +29095013608,5630.0,False,False +29095013612,6852.0,False,False +29095013703,5327.0,False,False +29095013704,6023.0,False,False +29095013801,5244.0,False,False +29095013802,8711.0,False,False +29095013901,6904.0,False,False +29095013902,1665.0,False,False +29095013904,7110.0,False,False +29095013916,6337.0,False,False +29095014002,1773.0,False,False +29095014004,3053.0,True,True +29095014005,5235.0,False,False +29095014006,6307.0,False,False +29095014007,6219.0,False,False +29095014101,6376.0,False,False +29095014105,8392.0,False,False +29095014108,6753.0,False,False +29095014111,3534.0,False,False +29095014112,1775.0,False,False +29095014114,7184.0,False,False +29095014120,2895.0,False,False +29095014203,4270.0,False,False +29095014204,8210.0,False,False +29095014300,5115.0,False,False +29095014400,2560.0,False,False +29095014501,3801.0,False,False +29095014502,4268.0,False,False +29095014601,5276.0,False,False +29095014603,3597.0,False,False +29095014604,4487.0,False,False +29095014701,3883.0,False,False +29095014702,4939.0,False,False +29095014804,2955.0,False,False +29095014806,4242.0,False,False +29095014902,2052.0,True,True +29095014903,5308.0,False,False +29095014904,6153.0,False,False +29095014905,5028.0,False,False +29095015000,3698.0,False,False +29095015100,5839.0,False,False +29095015200,2485.0,False,False +29095015300,2956.0,True,True +29095015400,3900.0,True,True +29095015500,1275.0,True,True +29095015600,2371.0,True,True +29095015700,3601.0,False,False +29095015800,1578.0,False,False +29095015900,2305.0,False,False +29095016000,1484.0,True,True +29095016100,2134.0,True,True +29095016200,1393.0,False,True +29095016300,2106.0,True,True +29095016400,1696.0,True,True +29095016500,2009.0,True,True +29095016600,1396.0,True,True +29095016700,3660.0,False,False +29095016800,4389.0,False,False +29095016900,2721.0,True,True +29095017000,2652.0,True,True +29095017100,3783.0,True,True +29095017200,4604.0,True,True +29095017300,3431.0,False,False +29095017400,2721.0,True,True +29095017500,2200.0,True,True +29095017600,5264.0,False,False +29095017700,5003.0,False,False +29095017800,3289.0,True,True +29095017900,4709.0,False,False +29095018000,3566.0,False,False +29095018100,7997.0,False,False +29095018200,3841.0,False,False +29095018500,4152.0,False,False +29095018600,3065.0,False,False +29095019300,6355.0,False,False +29095980101,0.0,False,False +29095980802,0.0,False,False +29095988300,100.0,False,True +29095989100,20.0,False,False +29095989200,0.0,False,False +29097010100,3580.0,False,False +29097010200,4878.0,False,False +29097010300,7442.0,False,False +29097010400,5354.0,False,False +29097010500,5009.0,False,False +29097010600,5306.0,True,True +29097010700,2678.0,False,False +29097010800,4325.0,True,True +29097010900,6182.0,False,False +29097011000,4200.0,True,True +29097011100,1672.0,True,True +29097011200,7185.0,True,True +29097011300,9001.0,False,False +29097011400,6402.0,True,False +29097011500,9801.0,False,False +29097011600,4758.0,True,True +29097011700,6496.0,True,True +29097011800,4901.0,True,True +29097011900,4059.0,False,False +29097012000,5404.0,False,False +29097012100,4232.0,False,False +29097012200,7055.0,True,True +29099700107,3358.0,False,False +29099700109,13081.0,False,False +29099700110,8355.0,False,False +29099700111,3555.0,False,False +29099700113,3580.0,False,False +29099700114,4280.0,False,False +29099700115,4053.0,False,False +29099700116,3300.0,False,False +29099700117,7638.0,False,False +29099700118,6506.0,False,False +29099700119,2115.0,False,False +29099700203,6551.0,False,False +29099700206,5426.0,False,False +29099700207,3334.0,False,False +29099700208,6327.0,False,False +29099700209,3431.0,False,False +29099700210,3279.0,True,False +29099700211,5465.0,False,False +29099700302,5396.0,False,False +29099700303,4739.0,False,False +29099700304,7837.0,False,False +29099700401,4874.0,False,False +29099700402,6713.0,False,False +29099700502,6277.0,False,False +29099700503,3084.0,False,False +29099700504,3832.0,False,False +29099700601,5721.0,False,False +29099700603,6192.0,False,False +29099700604,6051.0,False,False +29099700605,6400.0,True,True +29099700700,4536.0,False,False +29099700801,6091.0,False,False +29099700802,5021.0,False,False +29099700900,5292.0,False,False +29099701000,8118.0,False,False +29099701101,4187.0,False,False +29099701102,5973.0,True,True +29099701200,5641.0,True,True +29099701300,3600.0,True,False +29099701401,4245.0,False,False +29099701403,3899.0,False,False +29099701404,6598.0,False,False +29101960100,8017.0,False,False +29101960200,5119.0,False,False +29101960300,8552.0,False,False +29101960400,6640.0,False,False +29101960500,8209.0,False,False +29101960600,3196.0,False,True +29101960700,4878.0,False,False +29101960900,4902.0,False,False +29101980000,4169.0,False,False +29103960100,1915.0,True,True +29103960200,2032.0,True,True +29105960100,8244.0,True,True +29105960298,5416.0,False,False +29105960300,7590.0,True,False +29105960400,3638.0,True,True +29105960500,5633.0,True,True +29105960600,5010.0,True,True +29107090100,5055.0,False,False +29107090200,6241.0,True,True +29107090300,1497.0,False,False +29107090400,6034.0,False,False +29107090500,3888.0,False,False +29107090601,5870.0,True,False +29107090602,4012.0,False,False +29109470100,3941.0,False,False +29109470200,7993.0,False,False +29109470300,4867.0,True,True +29109470400,6765.0,True,True +29109470500,6767.0,True,True +29109470601,5206.0,True,True +29109470602,2665.0,True,True +29111970100,3355.0,False,False +29111970200,2364.0,True,True +29111970300,2488.0,False,False +29111970400,1748.0,False,False +29113810100,4298.0,True,True +29113810201,7298.0,False,False +29113810202,6006.0,False,False +29113810301,9219.0,False,False +29113810303,11130.0,False,False +29113810304,9784.0,False,False +29113810400,8742.0,True,True +29115490100,1585.0,False,False +29115490200,2169.0,False,False +29115490300,2934.0,True,True +29115490400,2838.0,True,True +29115490500,2587.0,False,False +29117480100,3819.0,False,False +29117480200,3414.0,False,False +29117480300,3578.0,True,True +29117480400,2570.0,False,False +29117480500,1745.0,True,True +29119070100,5814.0,True,True +29119070200,4570.0,True,True +29119070300,5863.0,True,True +29119070400,6535.0,True,True +29121960100,2482.0,True,True +29121960200,2689.0,True,True +29121960300,3616.0,False,False +29121960400,4260.0,True,True +29121960500,2152.0,True,True +29123960100,3284.0,True,True +29123960200,5544.0,True,True +29123960300,3351.0,True,True +29125880100,2591.0,True,True +29125880298,2797.0,False,False +29125880300,3415.0,False,False +29127960100,4565.0,False,False +29127960200,3326.0,True,False +29127960300,3624.0,True,False +29127960400,5211.0,False,False +29127960500,2334.0,True,True +29127960600,3526.0,False,False +29127960800,2843.0,True,True +29127960900,3179.0,True,True +29129470100,1337.0,False,False +29129470200,2307.0,True,True +29131962500,5833.0,False,False +29131962600,3154.0,False,False +29131962700,4317.0,False,False +29131962800,6677.0,True,True +29131962900,5220.0,True,True +29133950100,3629.0,True,True +29133950200,4198.0,True,True +29133950300,1877.0,True,True +29133950400,3870.0,True,True +29135385100,4007.0,False,False +29135385200,4330.0,True,True +29135385300,3362.0,False,False +29135385400,4347.0,True,True +29137960100,3574.0,False,False +29137960200,2689.0,False,False +29137960300,2366.0,True,True +29139970100,2495.0,True,True +29139970200,3481.0,True,True +29139970300,3178.0,True,True +29139970400,2333.0,True,True +29141470100,6621.0,True,True +29141470200,3770.0,True,True +29141470300,3245.0,True,True +29141470400,2040.0,True,True +29141470500,4595.0,True,True +29143960100,4586.0,True,True +29143960200,1920.0,True,True +29143960300,3232.0,True,True +29143960400,2397.0,True,True +29143960500,2276.0,True,True +29143960600,3149.0,True,True +29145020100,3533.0,True,True +29145020200,5228.0,True,True +29145020300,3491.0,True,True +29145020400,7402.0,False,False +29145020501,4197.0,False,False +29145020502,5412.0,False,False +29145020601,5457.0,False,False +29145020602,4914.0,False,False +29145020700,4604.0,True,True +29145020800,6446.0,True,True +29145020900,4227.0,True,True +29145021000,3269.0,True,True +29147470100,2172.0,True,True +29147470200,2354.0,True,True +29147470300,8179.0,False,False +29147470400,4344.0,False,False +29147470500,5310.0,False,False +29149480100,3708.0,True,True +29149480200,4209.0,True,True +29149480300,2730.0,True,True +29151490100,3563.0,False,False +29151490200,4630.0,False,False +29151490300,3342.0,False,False +29151490400,2080.0,False,False +29153470100,4656.0,True,True +29153470200,4551.0,True,True +29155470100,1856.0,True,True +29155470200,3103.0,True,True +29155470300,3018.0,True,True +29155470400,2819.0,True,True +29155470500,3029.0,True,True +29155470600,2838.0,True,True +29157470100,2520.0,False,False +29157470200,4841.0,False,False +29157470300,4146.0,False,False +29157470400,3807.0,True,True +29157470500,3877.0,False,False +29159480100,3972.0,False,False +29159480200,5953.0,False,False +29159480300,4322.0,True,True +29159480400,4077.0,True,True +29159480500,3279.0,True,True +29159480600,2173.0,True,True +29159480700,3860.0,True,True +29159480800,3345.0,True,True +29159480900,2781.0,True,True +29159481000,4503.0,True,True +29159481100,4090.0,True,True +29161890100,4534.0,True,True +29161890200,4795.0,True,True +29161890300,7088.0,False,False +29161890400,5826.0,False,True +29161890500,3686.0,False,False +29161890600,2670.0,False,False +29161890700,2989.0,False,False +29161890800,3140.0,False,False +29161890900,4674.0,False,False +29161891000,5228.0,False,False +29163460100,3170.0,True,True +29163460200,3429.0,True,True +29163460300,5954.0,True,True +29163460400,3720.0,True,True +29163460500,2182.0,True,True +29165030001,7863.0,False,False +29165030002,3097.0,True,True +29165030101,3983.0,False,False +29165030102,3744.0,False,False +29165030103,5350.0,False,False +29165030201,3246.0,False,False +29165030205,7942.0,False,False +29165030207,5852.0,False,False +29165030208,3211.0,False,False +29165030209,7853.0,False,False +29165030210,1795.0,False,False +29165030211,2996.0,False,False +29165030305,9031.0,False,False +29165030306,5005.0,False,False +29165030307,0.0,False,False +29165030308,5296.0,False,False +29165030401,6580.0,False,False +29165030500,6208.0,False,False +29165030600,8020.0,False,False +29165030700,3610.0,False,False +29167960100,6263.0,True,True +29167960200,7480.0,True,True +29167960300,8238.0,True,True +29167960400,9767.0,False,False +29169470101,3710.0,True,True +29169470102,3272.0,False,False +29169470286,3904.0,False,False +29169470287,8683.0,False,False +29169470389,9427.0,False,False +29169470390,2376.0,True,True +29169470400,11172.0,False,False +29169470500,5658.0,False,False +29169470600,4223.0,False,False +29171960100,2820.0,True,True +29171960200,1961.0,True,True +29173470100,3045.0,False,False +29173470200,3975.0,False,False +29173470300,3214.0,False,False +29175490100,3850.0,False,False +29175490200,3369.0,True,True +29175490300,4187.0,True,True +29175490400,3585.0,True,True +29175490500,4507.0,False,False +29175490600,5380.0,False,False +29177080000,7109.0,False,False +29177080100,3393.0,False,False +29177080200,6384.0,False,False +29177080300,5989.0,False,False +29179380100,2704.0,True,True +29179380200,3586.0,True,True +29181870100,3719.0,True,True +29181870200,2703.0,True,True +29181870300,4446.0,True,True +29181870400,2699.0,True,True +29183310100,2201.0,False,False +29183310201,4835.0,False,False +29183310202,4127.0,False,False +29183310301,3969.0,False,False +29183310302,3633.0,False,False +29183310400,1900.0,False,False +29183310501,4916.0,False,False +29183310502,2692.0,False,False +29183310601,5130.0,False,False +29183310602,5547.0,False,False +29183310700,5183.0,True,False +29183310801,2243.0,False,False +29183310802,5634.0,False,False +29183310901,2298.0,True,False +29183310902,5386.0,False,False +29183310903,3761.0,False,False +29183311001,4598.0,False,False +29183311003,3421.0,False,False +29183311004,5615.0,False,False +29183311103,6856.0,False,False +29183311114,5159.0,False,False +29183311122,6815.0,False,False +29183311124,7007.0,False,False +29183311132,3169.0,False,False +29183311145,4779.0,False,False +29183311146,4594.0,False,False +29183311147,4112.0,False,False +29183311148,4616.0,False,False +29183311149,3968.0,False,False +29183311150,4775.0,False,False +29183311151,6140.0,False,False +29183311152,4632.0,False,False +29183311153,6679.0,False,False +29183311154,5547.0,False,False +29183311203,5909.0,False,False +29183311211,4726.0,False,False +29183311212,4003.0,False,False +29183311221,3754.0,False,False +29183311294,3803.0,False,False +29183311296,4052.0,False,False +29183311311,6021.0,False,False +29183311312,7711.0,False,False +29183311322,6871.0,False,False +29183311331,4604.0,False,False +29183311391,4942.0,False,False +29183311422,6143.0,False,False +29183311500,1828.0,True,True +29183311601,5861.0,False,False +29183311602,5807.0,False,False +29183311712,4472.0,False,False +29183311721,4156.0,False,False +29183311722,7451.0,False,False +29183311732,7452.0,False,False +29183311733,2394.0,False,False +29183311734,4062.0,False,False +29183311735,5376.0,False,False +29183311736,6301.0,False,False +29183311801,6083.0,False,False +29183311802,6229.0,False,False +29183311903,5943.0,False,False +29183311904,6487.0,False,False +29183311907,6507.0,False,False +29183311908,3753.0,False,False +29183311909,5131.0,False,False +29183312001,2537.0,False,False +29183312094,5098.0,False,False +29183312095,5677.0,False,False +29183312096,7401.0,False,False +29183312097,10801.0,False,False +29183312192,5340.0,False,False +29183312193,8183.0,False,False +29183312194,3496.0,False,False +29183312195,2929.0,False,False +29183312204,4751.0,False,False +29183312205,12146.0,False,False +29183312206,4272.0,False,False +29183312300,2787.0,False,False +29183312400,5089.0,False,False +29183980000,14.0,False,False +29185480100,3711.0,True,True +29185480200,2662.0,True,True +29185480300,2997.0,True,True +29186960100,6633.0,False,False +29186960200,4700.0,False,False +29186960300,4103.0,False,False +29186960400,2412.0,False,False +29187950101,4536.0,False,False +29187950102,4524.0,False,False +29187950300,7544.0,True,True +29187950400,6781.0,True,True +29187950600,2948.0,True,True +29187950700,8883.0,False,False +29187950800,6902.0,True,True +29187950901,2391.0,False,False +29187950902,8109.0,True,True +29187951000,6613.0,True,True +29187951100,7412.0,True,True +29189210100,4383.0,False,False +29189210200,5888.0,True,True +29189210300,3140.0,True,True +29189210400,4119.0,False,True +29189210501,2855.0,True,True +29189210502,3372.0,True,True +29189210600,6991.0,True,True +29189210702,6032.0,True,True +29189210703,3792.0,True,True +29189210704,4019.0,True,True +29189210803,4107.0,False,False +29189210804,9056.0,False,False +29189210805,6647.0,False,False +29189210806,5920.0,False,False +29189210912,7249.0,False,False +29189210921,4586.0,False,False +29189210923,4939.0,False,False +29189210924,4850.0,False,False +29189210925,5141.0,False,False +29189210926,2527.0,False,False +29189210927,4741.0,False,False +29189210928,4224.0,False,False +29189211000,7027.0,False,False +29189211101,6676.0,False,False +29189211102,5544.0,True,True +29189211201,4485.0,True,True +29189211202,3107.0,False,False +29189211301,6615.0,False,False +29189211331,6076.0,False,False +29189211332,6267.0,False,False +29189211333,5289.0,False,False +29189211334,4460.0,False,False +29189211401,5312.0,False,False +29189211402,2331.0,False,False +29189211500,3803.0,True,True +29189211600,5996.0,False,False +29189211700,3799.0,False,False +29189211801,3435.0,True,True +29189211802,3823.0,True,True +29189211900,4462.0,True,True +29189212001,7752.0,True,True +29189212002,3774.0,True,True +29189212101,3903.0,True,True +29189212102,3060.0,True,True +29189212200,7279.0,True,True +29189212300,4989.0,False,False +29189212400,2419.0,False,False +29189212500,4866.0,True,True +29189212600,5185.0,True,True +29189212700,6115.0,True,True +29189213101,4550.0,True,True +29189213102,254.0,True,True +29189213202,7025.0,False,False +29189213203,4838.0,False,False +29189213204,4036.0,False,False +29189213300,7419.0,True,True +29189213400,5882.0,True,True +29189213500,5164.0,False,False +29189213600,3820.0,True,True +29189213700,4155.0,False,False +29189213800,4817.0,True,True +29189213900,1796.0,True,True +29189214100,1439.0,True,True +29189214200,3230.0,True,True +29189214300,3882.0,True,True +29189214400,4567.0,False,False +29189214500,3189.0,False,False +29189214601,3362.0,True,True +29189214602,3955.0,True,True +29189214700,8407.0,True,True +29189214800,4644.0,False,False +29189214900,5973.0,False,False +29189215001,3016.0,False,False +29189215003,4533.0,False,False +29189215004,3723.0,False,False +29189215005,6060.0,False,False +29189215102,4653.0,False,False +29189215103,2360.0,False,False +29189215105,2299.0,False,False +29189215141,4032.0,False,False +29189215142,6785.0,False,False +29189215143,2864.0,False,False +29189215144,5349.0,False,False +29189215201,6265.0,False,False +29189215202,6768.0,False,False +29189215231,4465.0,False,False +29189215232,7754.0,False,False +29189215301,4618.0,False,False +29189215302,3233.0,False,False +29189215400,5458.0,False,False +29189215500,4551.0,False,False +29189215600,4990.0,False,False +29189215700,5393.0,False,False +29189215800,7830.0,False,False +29189215900,6474.0,False,False +29189216000,1402.0,True,True +29189216100,5839.0,False,False +29189216200,7560.0,False,False +29189216300,6817.0,False,False +29189216400,5545.0,False,False +29189216500,5088.0,False,False +29189216600,2107.0,False,False +29189216700,3352.0,False,False +29189216800,3041.0,False,False +29189216900,2183.0,True,True +29189217000,4093.0,False,False +29189217200,1775.0,False,False +29189217300,2954.0,False,False +29189217400,4796.0,False,False +29189217500,5274.0,False,False +29189217600,7264.0,False,False +29189217701,5252.0,False,False +29189217702,8260.0,False,False +29189217802,7181.0,False,False +29189217806,5994.0,False,False +29189217807,5782.0,False,False +29189217841,5149.0,False,False +29189217842,7233.0,False,False +29189217851,3035.0,False,False +29189217852,6501.0,False,False +29189217921,4990.0,False,False +29189217923,6967.0,False,False +29189217931,6899.0,False,False +29189217932,5417.0,False,False +29189217941,5951.0,False,False +29189217942,5623.0,False,False +29189217943,3331.0,False,False +29189217944,5022.0,False,False +29189218003,6937.0,False,False +29189218011,7999.0,False,False +29189218012,4542.0,False,False +29189218102,3168.0,False,False +29189218103,5428.0,False,False +29189218201,3151.0,False,False +29189218300,3989.0,False,False +29189218401,3795.0,False,False +29189218402,4643.0,False,False +29189218500,4996.0,False,False +29189218600,2449.0,False,False +29189218800,5891.0,False,False +29189218900,5980.0,False,False +29189219100,4097.0,False,False +29189219200,2417.0,False,False +29189219300,2054.0,False,False +29189219400,5629.0,False,False +29189219500,7263.0,False,False +29189219600,6922.0,False,False +29189219700,6325.0,False,False +29189219800,7619.0,False,False +29189219900,5651.0,False,False +29189220001,5187.0,False,False +29189220002,3113.0,False,False +29189220100,7701.0,False,False +29189220200,5411.0,False,False +29189220300,2069.0,True,True +29189220431,8148.0,False,False +29189220432,8052.0,False,False +29189220441,5812.0,False,False +29189220442,4667.0,False,False +29189220443,4265.0,False,False +29189220444,7823.0,False,False +29189220445,4814.0,False,False +29189220446,4353.0,False,False +29189220501,6451.0,False,False +29189220502,6873.0,False,False +29189220601,6303.0,False,False +29189220602,5468.0,False,False +29189220701,3398.0,False,False +29189220702,4080.0,False,False +29189220703,2836.0,False,False +29189220801,5628.0,False,False +29189220802,4788.0,False,False +29189220803,4437.0,False,False +29189221000,3292.0,False,False +29189221100,1838.0,False,False +29189221201,3333.0,False,False +29189221202,6051.0,False,False +29189221301,8073.0,False,False +29189221302,6553.0,False,False +29189221332,4617.0,False,False +29189221335,6207.0,False,False +29189221421,7075.0,False,False +29189221422,9122.0,False,False +29189221423,4025.0,False,False +29189221424,5012.0,False,False +29189221502,6597.0,False,False +29189221503,6900.0,False,False +29189221506,4649.0,False,False +29189221621,4884.0,False,False +29189221624,3323.0,False,False +29189221625,7330.0,False,False +29189221626,6288.0,False,False +29189221627,6424.0,False,False +29189221628,7227.0,False,False +29189221629,5216.0,False,False +29189221800,3650.0,True,True +29189221900,3838.0,False,False +29189222000,3563.0,False,False +29189222100,5229.0,False,False +29195090100,2705.0,True,True +29195090200,2295.0,False,False +29195090300,2838.0,True,True +29195090400,2730.0,True,True +29195090500,4228.0,False,False +29195090600,3040.0,True,True +29195090700,2405.0,False,False +29195090800,2735.0,False,False +29197470100,2210.0,True,True +29197470200,2345.0,True,True +29199480100,3013.0,True,True +29199480200,1889.0,True,True +29201780100,3104.0,True,True +29201780200,3966.0,False,False +29201780300,3083.0,True,True +29201780400,4767.0,False,False +29201780600,4452.0,True,True +29201780700,3186.0,True,True +29201781000,4101.0,False,False +29201781100,3403.0,False,False +29201781200,5336.0,True,True +29201781300,3235.0,False,False +29203470100,3567.0,True,True +29203470200,4650.0,True,True +29205450100,1755.0,False,False +29205450200,2486.0,True,True +29205450300,1772.0,True,True +29207470100,3728.0,True,True +29207470200,4168.0,True,True +29207470300,4476.0,True,True +29207470400,2908.0,True,True +29207470500,3622.0,True,True +29207470600,4985.0,True,True +29207470700,2441.0,True,True +29207470800,3049.0,False,True +29209090100,7109.0,False,False +29209090200,5253.0,True,True +29209090400,4706.0,True,True +29209090500,5893.0,False,False +29209090601,3149.0,False,False +29209090602,5505.0,True,True +29211480100,1564.0,True,True +29211480200,1401.0,False,False +29211480300,3282.0,True,True +29213480105,7664.0,True,True +29213480106,1780.0,True,True +29213480201,10899.0,True,True +29213480202,7055.0,True,True +29213480301,5083.0,False,False +29213480302,4370.0,True,True +29213480401,6172.0,True,True +29213480402,2200.0,True,True +29213480501,1910.0,False,False +29213480502,7981.0,False,False +29215480100,7052.0,True,True +29215480200,5438.0,True,True +29215480300,6214.0,True,True +29215480400,6900.0,True,True +29217950100,3437.0,True,True +29217950200,2307.0,True,True +29217950300,5703.0,True,True +29217950400,3092.0,True,True +29217950500,3204.0,False,False +29217950600,2852.0,True,True +29219820101,8202.0,True,True +29219820102,7604.0,True,True +29219820103,7545.0,True,True +29219820201,2290.0,False,False +29219820202,8812.0,False,False +29221460100,6723.0,True,True +29221460200,5072.0,True,True +29221460300,4642.0,True,True +29221460400,4969.0,True,True +29221460500,3454.0,True,True +29223690100,3238.0,True,True +29223690200,3194.0,True,True +29223690300,4287.0,True,True +29223690400,2476.0,True,True +29225470101,4877.0,True,True +29225470102,5752.0,True,True +29225470201,5924.0,True,True +29225470202,4175.0,True,True +29225470301,6011.0,False,False +29225470302,5110.0,True,True +29225470401,3894.0,True,True +29225470402,2912.0,True,True +29227960100,2027.0,False,False +29229490100,3734.0,True,True +29229490200,3944.0,True,True +29229490300,5155.0,True,True +29229490400,5370.0,True,True +29510101100,2469.0,False,False +29510101200,3408.0,False,False +29510101300,4085.0,False,False +29510101400,2844.0,False,False +29510101500,3160.0,True,True +29510101800,2976.0,False,True +29510102100,2642.0,False,False +29510102200,5880.0,False,False +29510102300,2103.0,False,False +29510102400,2482.0,False,False +29510102500,1887.0,False,False +29510103100,3186.0,False,False +29510103400,1836.0,False,False +29510103600,1376.0,False,False +29510103700,2580.0,False,False +29510103800,3818.0,False,False +29510104200,3309.0,False,False +29510104500,2384.0,False,False +29510105198,3144.0,False,False +29510105200,2689.0,False,False +29510105300,2635.0,True,True +29510105400,2230.0,True,True +29510105500,2543.0,False,True +29510106100,1623.0,True,True +29510106200,1142.0,True,True +29510106300,1352.0,True,True +29510106400,2328.0,True,True +29510106500,2745.0,True,True +29510106600,1560.0,True,True +29510106700,3103.0,True,True +29510107200,1188.0,True,True +29510107300,4232.0,True,True +29510107400,2282.0,True,True +29510107500,2050.0,True,True +29510107600,1799.0,True,True +29510108100,3024.0,True,True +29510108200,2084.0,True,True +29510108300,2355.0,True,True +29510109600,2889.0,True,True +29510109700,2004.0,True,True +29510110100,2515.0,True,True +29510110200,2163.0,True,True +29510110300,1828.0,True,True +29510110400,1923.0,True,True +29510110500,878.0,True,True +29510111100,1895.0,True,True +29510111200,1109.0,True,True +29510111300,1510.0,True,True +29510111400,1299.0,True,True +29510111500,585.0,False,True +29510112100,4261.0,False,False +29510112200,1245.0,True,True +29510112300,1589.0,True,True +29510112400,3971.0,False,False +29510113500,2436.0,False,False +29510114101,4208.0,False,False +29510114102,4425.0,False,False +29510114200,4452.0,False,False +29510114300,5348.0,False,False +29510115100,4648.0,True,True +29510115200,3142.0,True,True +29510115300,5007.0,True,True +29510115400,3069.0,True,True +29510115500,7066.0,True,True +29510115600,4857.0,True,True +29510115700,3532.0,True,True +29510116100,2995.0,True,True +29510116200,3982.0,False,False +29510116301,3344.0,False,False +29510116302,3123.0,True,True +29510116400,4879.0,True,True +29510116500,4256.0,False,False +29510117100,1563.0,False,False +29510117200,4953.0,False,False +29510117400,4079.0,False,False +29510118100,1082.0,False,False +29510118400,1572.0,False,True +29510118600,4279.0,False,False +29510119101,2562.0,False,False +29510119102,3334.0,False,False +29510119200,2010.0,False,False +29510119300,3873.0,False,False +29510120200,1323.0,True,True +29510121100,1861.0,True,True +29510121200,2215.0,True,True +29510123100,3520.0,False,False +29510123200,2630.0,False,False +29510123300,3008.0,False,False +29510124100,4636.0,True,True +29510124200,3547.0,True,True +29510124300,3410.0,False,False +29510124600,1851.0,True,True +29510125500,4270.0,False,False +29510125600,5336.0,False,False +29510125700,3287.0,True,True +29510126600,3102.0,True,True +29510126700,1030.0,True,True +29510126800,3471.0,False,False +29510126900,3844.0,True,True +29510127000,1763.0,True,True +29510127100,1712.0,True,True +29510127200,4243.0,False,False +29510127300,4115.0,False,False +29510127400,4814.0,True,True +29510127500,2225.0,True,True +29510127600,2688.0,False,False +30001000100,1128.0,False,False +30001000200,3716.0,False,False +30001000300,4571.0,False,False +30003000100,4579.0,True,True +30003940400,1698.0,True,True +30003940500,1360.0,True,True +30003940600,3612.0,True,True +30003940700,2138.0,True,True +30005000100,1307.0,True,True +30005000200,2328.0,True,True +30005940100,1631.0,True,True +30005940200,1453.0,True,True +30007000100,2255.0,True,True +30007000200,3690.0,False,False +30009000100,2550.0,False,False +30009000200,2063.0,False,False +30009000300,2326.0,True,True +30009000400,2229.0,False,False +30009000500,1429.0,False,False +30011000300,1331.0,True,True +30013000100,2724.0,False,False +30013000200,3380.0,False,False +30013000300,3719.0,True,True +30013000400,1785.0,True,True +30013000700,2156.0,True,True +30013000800,1479.0,True,True +30013000900,3127.0,True,True +30013001000,3394.0,False,False +30013001100,4091.0,False,False +30013001200,4179.0,False,False +30013001600,4235.0,True,True +30013001700,2018.0,False,False +30013001800,3394.0,False,False +30013001900,6398.0,False,False +30013002100,5078.0,False,False +30013002200,6700.0,True,True +30013002300,8003.0,False,False +30013010100,3617.0,True,False +30013010400,1680.0,True,True +30013010600,3690.0,False,False +30013010700,4177.0,False,False +30013010800,2601.0,True,True +30015010200,2148.0,False,False +30015010300,3584.0,True,True +30017961300,1980.0,False,False +30017961500,1562.0,True,True +30017961600,2443.0,False,False +30017961800,1468.0,False,False +30017961900,2059.0,False,False +30017962000,2217.0,False,False +30019020300,1730.0,False,False +30021000100,1373.0,False,False +30021000200,2628.0,False,False +30021000300,5016.0,False,False +30023000300,2872.0,True,True +30023000400,3008.0,True,True +30023000500,3226.0,False,False +30025000100,2921.0,False,False +30027030100,4888.0,False,False +30027030200,6333.0,True,False +30029000100,2919.0,True,True +30029000201,5292.0,True,True +30029000202,2759.0,False,False +30029000203,4973.0,True,True +30029000300,4699.0,False,False +30029000401,5881.0,False,False +30029000402,3256.0,True,True +30029000601,5062.0,False,False +30029000602,3888.0,False,False +30029000700,6391.0,True,True +30029000800,8781.0,False,False +30029000900,7697.0,False,False +30029001000,2063.0,True,True +30029001100,6255.0,True,True +30029001200,7409.0,False,False +30029001301,3549.0,False,False +30029001302,5663.0,False,False +30029001400,4961.0,False,False +30029001700,8401.0,False,False +30031000101,5703.0,False,False +30031000102,2123.0,False,False +30031000103,8245.0,False,False +30031000200,11851.0,False,False +30031000300,3302.0,False,False +30031000400,5223.0,False,False +30031000501,1841.0,False,False +30031000502,7099.0,False,False +30031000503,14648.0,False,False +30031000504,2676.0,False,False +30031000600,2536.0,True,True +30031000701,3847.0,False,False +30031000702,5905.0,False,False +30031000800,2210.0,False,False +30031000900,4147.0,False,False +30031001001,3319.0,False,False +30031001002,4693.0,False,False +30031001101,5382.0,False,False +30031001102,3928.0,False,False +30031001200,5106.0,False,False +30031001500,1434.0,False,False +30031001600,2845.0,False,False +30033000100,1036.0,True,True +30035940200,5471.0,True,True +30035940400,4307.0,True,True +30035976000,3779.0,True,True +30035980000,175.0,False,True +30037000100,728.0,True,True +30039961700,3311.0,False,False +30041040100,1189.0,True,True +30041040200,1824.0,False,False +30041040300,3747.0,True,True +30041040400,4442.0,False,False +30041040500,2603.0,False,False +30041940300,2631.0,True,True +30043962201,4292.0,False,False +30043962202,3920.0,False,False +30043962300,3705.0,False,False +30045000100,1954.0,True,True +30047000100,1401.0,False,False +30047000200,1783.0,False,False +30047940301,4990.0,True,True +30047940303,6241.0,False,True +30047940400,3964.0,True,True +30047940500,4847.0,True,True +30047940600,4571.0,True,True +30047940700,2216.0,True,True +30049000100,1728.0,True,True +30049000200,5559.0,False,False +30049000300,2437.0,False,False +30049000400,6016.0,False,False +30049000501,3928.0,False,False +30049000502,7424.0,False,False +30049000600,2648.0,False,False +30049000700,7300.0,False,False +30049000800,4826.0,False,False +30049000900,3880.0,True,True +30049001000,4061.0,False,False +30049001100,6369.0,False,False +30049001201,6095.0,False,False +30049001202,5534.0,False,False +30051050100,2351.0,True,True +30053000100,3114.0,True,True +30053000200,2459.0,True,True +30053000300,3691.0,True,True +30053000400,6713.0,True,True +30053000500,3560.0,True,True +30055954000,1790.0,False,False +30057000100,3227.0,False,False +30057000200,2537.0,False,False +30057000300,2538.0,False,False +30059000100,1888.0,False,False +30061964500,2335.0,True,True +30061964600,1916.0,True,True +30063000100,6227.0,False,False +30063000201,7859.0,True,True +30063000202,12868.0,False,False +30063000300,1919.0,True,True +30063000400,3085.0,False,False +30063000500,6761.0,False,False +30063000700,2753.0,False,False +30063000800,7055.0,True,True +30063000901,6922.0,False,False +30063000902,2742.0,False,False +30063001000,5478.0,True,True +30063001100,3474.0,False,False +30063001200,4892.0,False,False +30063001302,6538.0,False,False +30063001303,5375.0,False,False +30063001304,7337.0,False,False +30063001400,6797.0,False,False +30063001500,6854.0,False,False +30063001600,7555.0,False,False +30063001800,4818.0,False,False +30065000100,2733.0,True,True +30065000200,2033.0,True,True +30067000100,1893.0,False,False +30067000200,4517.0,False,False +30067000300,3092.0,True,True +30067000400,5401.0,False,False +30067000500,1449.0,False,False +30067980600,0.0,False,False +30069000100,453.0,False,False +30071060200,4077.0,True,True +30073977000,3769.0,False,False +30073977200,2225.0,True,True +30075000100,1607.0,False,False +30077000100,1310.0,False,False +30077000200,5544.0,False,False +30079000100,1252.0,True,True +30081000100,4092.0,False,False +30081000201,4164.0,True,True +30081000202,7369.0,False,False +30081000300,2945.0,True,True +30081000401,2880.0,True,True +30081000402,5885.0,False,False +30081000500,5694.0,True,True +30081000600,6440.0,True,True +30081000700,2062.0,True,True +30081000800,981.0,False,False +30083070100,1600.0,False,False +30083070200,1648.0,False,False +30083070300,4905.0,False,False +30083070400,3046.0,False,False +30085080100,1813.0,False,False +30085940001,5105.0,True,True +30085940002,4257.0,True,True +30087000100,2092.0,False,False +30087000200,1351.0,True,True +30087000300,2448.0,False,False +30087940400,3261.0,True,True +30089000100,3630.0,True,True +30089000200,6054.0,True,True +30089940300,1997.0,True,True +30091090200,2324.0,False,False +30091090400,1159.0,True,True +30093000100,5114.0,True,True +30093000200,4612.0,False,False +30093000300,2346.0,False,False +30093000400,4071.0,False,False +30093000500,4662.0,False,False +30093000600,4362.0,True,True +30093000700,3279.0,False,False +30093000800,6324.0,False,False +30095966400,4288.0,False,False +30095966500,2134.0,False,False +30095966600,3044.0,False,False +30097967000,3670.0,False,False +30099000100,1888.0,False,False +30099000200,1965.0,False,False +30099000300,2233.0,True,True +30101000100,1109.0,False,True +30101000200,3181.0,True,True +30101980000,602.0,True,True +30103963500,668.0,True,True +30105100100,1466.0,False,False +30105100500,2921.0,True,True +30105940600,3084.0,True,True +30107000100,2142.0,True,True +30109000100,1122.0,False,False +30111000200,3795.0,True,True +30111000300,3453.0,True,True +30111000401,2974.0,False,False +30111000402,2899.0,False,False +30111000500,4410.0,False,False +30111000600,3243.0,False,False +30111000701,4851.0,False,False +30111000702,7843.0,False,False +30111000704,3658.0,False,False +30111000705,3599.0,False,False +30111000706,4643.0,False,False +30111000800,5489.0,False,False +30111000901,4177.0,False,False +30111000902,5540.0,True,True +30111001000,4194.0,True,True +30111001100,5055.0,True,True +30111001200,2848.0,False,False +30111001300,6003.0,False,False +30111001401,14967.0,False,False +30111001402,6118.0,False,False +30111001501,5223.0,False,False +30111001502,5076.0,True,True +30111001702,4024.0,False,False +30111001703,5635.0,False,False +30111001704,4365.0,False,False +30111001801,6489.0,False,False +30111001802,6128.0,False,False +30111001803,2022.0,False,False +30111001804,2958.0,False,False +30111001901,4728.0,False,False +30111001902,4343.0,False,False +30111940000,8258.0,False,False +31001965400,4683.0,False,False +31001965500,4225.0,False,False +31001965600,5222.0,False,False +31001965700,1635.0,False,False +31001965800,2069.0,False,False +31001965900,4323.0,False,False +31001966000,4425.0,True,True +31001966100,2603.0,True,True +31001966200,2402.0,False,False +31003979600,1903.0,False,False +31003979700,1738.0,False,False +31003979800,2700.0,False,False +31005958300,427.0,True,True +31007954000,722.0,False,False +31009972400,477.0,False,False +31011960100,3504.0,False,False +31011960200,1775.0,False,False +31013951100,2426.0,False,False +31013951200,4958.0,False,False +31013951300,3586.0,True,True +31015975800,1937.0,False,False +31017975000,3015.0,True,True +31019968900,3660.0,False,False +31019969000,4480.0,False,False +31019969100,4929.0,False,False +31019969202,3965.0,False,False +31019969203,5615.0,False,False +31019969204,5658.0,False,False +31019969300,2287.0,True,True +31019969400,4032.0,False,False +31019969500,2315.0,True,True +31019969600,5895.0,False,False +31019969700,6373.0,False,False +31021963200,2255.0,False,False +31021963300,2468.0,False,False +31021963400,1787.0,False,False +31023967600,2897.0,False,False +31023967700,3159.0,False,False +31023967800,1973.0,False,False +31025965600,3577.0,False,False +31025965700,5286.0,False,False +31025965800,2784.0,False,False +31025965900,4961.0,False,False +31025966000,4568.0,False,False +31025966100,4712.0,True,False +31027977100,4214.0,False,False +31027977200,4284.0,False,False +31029961900,3783.0,False,False +31031955800,4093.0,False,False +31031955900,1686.0,False,False +31033954800,3036.0,False,False +31033954900,3844.0,False,False +31033955000,2724.0,False,False +31035962100,3433.0,False,False +31035962200,2770.0,False,False +31037964600,2372.0,False,False +31037964700,1790.0,False,False +31037964800,6552.0,True,True +31039972700,2741.0,False,False +31039972800,4015.0,False,False +31039972900,2196.0,False,False +31041971700,2483.0,False,False +31041971800,2827.0,True,True +31041971900,4113.0,True,True +31041972000,1403.0,False,False +31043010100,6592.0,False,True +31043010200,6105.0,False,True +31043010300,4428.0,True,True +31043010400,3048.0,False,False +31045950600,2890.0,False,False +31045950700,5920.0,False,False +31047968000,2600.0,False,False +31047968100,1356.0,False,False +31047968200,3727.0,False,False +31047968300,3844.0,False,False +31047968400,5444.0,True,True +31047968500,5262.0,True,True +31047968600,1500.0,False,False +31049955400,1831.0,False,False +31051977600,2441.0,False,False +31051977800,3278.0,False,False +31053963600,4611.0,False,False +31053963700,2676.0,False,False +31053963800,5417.0,False,False +31053963900,3777.0,False,False +31053964000,3223.0,True,True +31053964100,5047.0,False,False +31053964200,3883.0,True,True +31053964300,4951.0,False,False +31053964400,3080.0,True,True +31055000200,3633.0,True,True +31055000300,2337.0,True,True +31055000400,2150.0,True,True +31055000500,2975.0,False,False +31055000600,1575.0,True,True +31055000700,1032.0,True,True +31055000800,1817.0,True,True +31055001100,3204.0,True,True +31055001200,3333.0,True,True +31055001600,2813.0,False,False +31055001800,4928.0,False,False +31055001900,1885.0,False,True +31055002000,3609.0,True,True +31055002100,2141.0,True,True +31055002200,1198.0,False,False +31055002300,2396.0,True,True +31055002400,3775.0,True,True +31055002500,2679.0,True,True +31055002600,2523.0,True,True +31055002700,2651.0,True,True +31055002800,4029.0,True,True +31055002900,5589.0,True,True +31055003000,6935.0,True,True +31055003100,3627.0,False,False +31055003200,2532.0,True,True +31055003300,2230.0,True,True +31055003401,4093.0,True,True +31055003402,2386.0,False,False +31055003500,4102.0,False,False +31055003600,3894.0,False,False +31055003700,2483.0,False,False +31055003800,3882.0,True,True +31055003900,2519.0,True,True +31055004000,3246.0,True,True +31055004200,1477.0,True,True +31055004300,2780.0,False,False +31055004400,1234.0,False,False +31055004500,3006.0,False,False +31055004600,2554.0,False,False +31055004700,3014.0,False,False +31055004800,4951.0,False,False +31055004900,4975.0,True,True +31055005000,3907.0,False,False +31055005100,2556.0,True,True +31055005200,1708.0,True,True +31055005300,2293.0,True,True +31055005400,3099.0,True,True +31055005500,5159.0,False,False +31055005600,4099.0,False,False +31055005700,4478.0,True,True +31055005800,4692.0,True,True +31055005901,2212.0,True,True +31055005902,1850.0,True,True +31055006000,3645.0,True,True +31055006101,2294.0,True,True +31055006102,3882.0,True,True +31055006202,4893.0,True,True +31055006301,2291.0,False,False +31055006302,5168.0,True,True +31055006303,2943.0,True,True +31055006400,4923.0,False,False +31055006503,2747.0,False,False +31055006504,3482.0,False,False +31055006505,1985.0,True,True +31055006506,4027.0,True,True +31055006602,6151.0,False,False +31055006603,2717.0,False,True +31055006604,4102.0,False,False +31055006701,3900.0,False,False +31055006703,2921.0,False,False +31055006704,1645.0,False,False +31055006803,1879.0,False,False +31055006804,1557.0,False,False +31055006805,3326.0,False,False +31055006806,2693.0,False,False +31055006903,2454.0,False,False +31055006904,4007.0,False,False +31055006905,1583.0,False,False +31055006906,2981.0,False,False +31055007001,4943.0,False,False +31055007002,3626.0,False,False +31055007003,2624.0,True,True +31055007101,3541.0,True,True +31055007102,3734.0,True,True +31055007303,3250.0,False,False +31055007304,1491.0,False,False +31055007309,4766.0,False,False +31055007310,3031.0,False,False +31055007311,3196.0,False,False +31055007312,1858.0,True,True +31055007313,8559.0,False,False +31055007314,3989.0,False,False +31055007315,4889.0,False,False +31055007316,3371.0,False,False +31055007317,4643.0,False,False +31055007318,6688.0,False,False +31055007405,2316.0,False,False +31055007406,4867.0,False,False +31055007407,2855.0,False,False +31055007408,4341.0,False,False +31055007409,2277.0,False,False +31055007424,3178.0,False,False +31055007429,3086.0,False,False +31055007431,4771.0,False,False +31055007432,3562.0,False,False +31055007433,4349.0,False,False +31055007434,3793.0,True,True +31055007435,3308.0,False,False +31055007436,4547.0,False,False +31055007438,1929.0,False,False +31055007439,4309.0,False,False +31055007440,2389.0,False,False +31055007441,2856.0,False,False +31055007442,4645.0,False,False +31055007443,3424.0,False,False +31055007444,4070.0,False,False +31055007445,2611.0,False,False +31055007446,3922.0,False,False +31055007447,2608.0,False,False +31055007448,2911.0,False,False +31055007449,3125.0,False,False +31055007450,3322.0,False,False +31055007451,5328.0,False,False +31055007452,5466.0,False,False +31055007453,3354.0,False,False +31055007454,4820.0,False,False +31055007455,1614.0,False,False +31055007456,2511.0,False,False +31055007457,2636.0,False,False +31055007458,2693.0,False,False +31055007459,4066.0,False,False +31055007460,4357.0,False,False +31055007461,5820.0,False,False +31055007462,4714.0,False,False +31055007463,4545.0,False,False +31055007464,2772.0,False,False +31055007465,4534.0,False,False +31055007466,5617.0,False,False +31055007467,4807.0,False,False +31055007468,2472.0,False,False +31055007469,4534.0,False,False +31055007470,6390.0,False,False +31055007471,3249.0,False,False +31055007472,4349.0,False,False +31055007504,3348.0,False,False +31055007505,3800.0,False,False +31055007506,3337.0,False,False +31055007508,2730.0,False,False +31055007509,5923.0,False,False +31055007511,8555.0,False,False +31055007512,8622.0,False,False +31055007513,6945.0,False,False +31055007514,4541.0,False,False +31055007515,5088.0,False,False +31055007516,4581.0,False,False +31055007517,6488.0,False,False +31057962300,1913.0,True,True +31059091600,2251.0,False,False +31059091700,3296.0,False,False +31061964600,1384.0,False,False +31061964700,1603.0,True,True +31063961100,2640.0,False,False +31065963900,4747.0,True,True +31067964600,2656.0,False,False +31067964700,3618.0,False,False +31067964800,3504.0,False,False +31067964900,3601.0,False,False +31067965000,3403.0,True,True +31067965100,2154.0,True,True +31067965200,2658.0,False,False +31069952100,1864.0,False,False +31071973200,2001.0,True,True +31073967600,2013.0,False,False +31075956300,722.0,True,True +31077970900,2382.0,False,False +31079000100,2801.0,False,False +31079000200,4807.0,True,True +31079000300,5220.0,False,False +31079000400,5167.0,True,True +31079000500,5525.0,False,False +31079000600,5916.0,False,False +31079000700,5105.0,True,True +31079000800,2982.0,False,False +31079000900,5127.0,True,True +31079001000,4979.0,True,True +31079001100,4926.0,True,True +31079001200,3561.0,False,False +31079001300,2941.0,False,False +31079001400,2208.0,False,False +31081969100,1704.0,False,False +31081969200,2484.0,False,False +31081969300,5027.0,False,False +31083964200,3415.0,False,False +31085961500,893.0,True,True +31087962700,2815.0,True,True +31089974000,1652.0,False,False +31089974100,2410.0,False,False +31089974200,1938.0,False,False +31089974300,4177.0,True,False +31091956700,693.0,False,False +31093970500,1804.0,False,False +31093970600,4613.0,False,False +31095963600,3170.0,False,False +31095963700,2761.0,True,True +31095963800,1213.0,True,True +31097967500,1883.0,False,False +31097967600,3278.0,True,True +31099966600,3626.0,False,False +31099966700,2903.0,False,False +31101000100,1616.0,True,True +31101000200,2975.0,False,False +31101000300,3477.0,False,False +31103975400,760.0,False,False +31105954500,3633.0,True,True +31107976200,3075.0,False,False +31107976300,2241.0,False,False +31107976400,3110.0,False,False +31109000100,3202.0,False,False +31109000201,4776.0,False,False +31109000202,4293.0,False,False +31109000300,3900.0,True,True +31109000400,5529.0,True,True +31109000500,2405.0,False,True +31109000600,6185.0,False,False +31109000700,2392.0,False,False +31109000800,3946.0,True,True +31109000900,3392.0,False,False +31109001001,2938.0,False,False +31109001002,1741.0,False,False +31109001003,3835.0,False,False +31109001101,4567.0,False,False +31109001102,3582.0,False,False +31109001200,6186.0,False,False +31109001301,3793.0,False,False +31109001302,2997.0,False,False +31109001400,4941.0,False,False +31109001500,4468.0,False,False +31109001600,5699.0,False,False +31109001700,4908.0,True,True +31109001800,1895.0,True,True +31109001900,1694.0,False,False +31109002001,2518.0,True,True +31109002002,2808.0,True,True +31109002100,2458.0,True,True +31109002200,5580.0,True,True +31109002300,5342.0,False,False +31109002400,3207.0,False,False +31109002500,5275.0,False,False +31109002701,3331.0,False,False +31109002702,5935.0,False,False +31109002800,5382.0,False,False +31109002900,5232.0,False,False +31109003001,7741.0,False,False +31109003002,3243.0,False,False +31109003003,4892.0,True,True +31109003102,6435.0,False,False +31109003103,2770.0,True,True +31109003104,5532.0,True,True +31109003202,3036.0,True,True +31109003301,4255.0,False,False +31109003302,4606.0,False,False +31109003401,5882.0,False,False +31109003402,6791.0,False,False +31109003500,17.0,False,False +31109003601,1259.0,False,False +31109003604,3327.0,False,False +31109003605,3857.0,False,False +31109003607,4685.0,False,False +31109003608,1340.0,False,False +31109003609,2500.0,False,False +31109003704,5302.0,False,False +31109003706,6701.0,False,False +31109003707,8120.0,False,False +31109003708,4238.0,False,False +31109003709,4957.0,False,False +31109003713,2873.0,False,False +31109003714,4255.0,False,False +31109003715,2426.0,False,False +31109003716,5284.0,False,False +31109003717,5702.0,False,False +31109003718,2697.0,False,False +31109003719,5671.0,False,False +31109003720,4434.0,False,False +31109003801,4830.0,False,False +31109003802,3148.0,False,False +31109010100,6579.0,False,False +31109010201,5562.0,False,False +31109010202,4546.0,False,False +31109010300,4086.0,False,False +31109010400,9128.0,False,False +31109983200,119.0,False,False +31111959700,3590.0,False,False +31111959800,3359.0,False,False +31111959900,5073.0,True,True +31111960200,4312.0,False,False +31111960300,4473.0,False,False +31111960400,5347.0,False,False +31111960500,5291.0,False,False +31111960600,3818.0,False,False +31113957500,927.0,True,True +31115972800,605.0,True,True +31117957900,395.0,False,False +31119960600,5329.0,False,False +31119960700,3501.0,True,True +31119960801,5010.0,False,False +31119960802,3480.0,False,False +31119960900,4534.0,True,True +31119961000,2727.0,True,True +31119961100,1852.0,True,True +31119961200,3658.0,False,False +31119961300,4989.0,True,True +31121966600,2024.0,False,False +31121966700,2454.0,False,False +31121966800,3320.0,False,False +31123952500,4781.0,False,False +31125966100,3544.0,False,False +31127968100,3577.0,False,False +31127968200,3396.0,False,False +31129960000,2221.0,True,True +31129960100,2023.0,False,True +31131966600,2097.0,False,False +31131966700,3202.0,False,False +31131966800,3040.0,False,False +31131966900,4813.0,True,True +31131967000,2797.0,True,True +31133967800,2649.0,True,True +31135959300,2901.0,False,False +31137967000,2795.0,False,False +31137967100,3178.0,False,False +31137967200,3127.0,False,False +31139979100,3929.0,False,False +31139979200,3215.0,False,False +31141965100,3836.0,False,False +31141965298,3409.0,False,False +31141965300,8015.0,False,False +31141965400,4989.0,False,False +31141965500,5144.0,False,False +31141965600,4399.0,True,True +31141965700,3382.0,False,False +31143960000,2005.0,False,False +31143960100,3220.0,False,False +31145963100,2737.0,True,True +31145963200,4847.0,False,False +31145963300,3184.0,True,True +31147964500,1755.0,False,False +31147968500,1962.0,False,False +31147968600,4244.0,True,True +31149974600,1414.0,False,False +31151960600,7687.0,False,True +31151960700,2193.0,False,False +31151960800,1408.0,False,False +31151960900,2982.0,False,False +31153010103,4573.0,False,False +31153010104,1892.0,False,False +31153010105,2932.0,False,False +31153010106,4397.0,False,False +31153010107,3962.0,False,False +31153010108,4184.0,False,False +31153010203,5305.0,False,False +31153010204,3428.0,False,False +31153010205,6833.0,False,False +31153010206,4498.0,False,False +31153010207,2362.0,False,False +31153010208,3919.0,False,False +31153010302,899.0,False,False +31153010305,1613.0,False,False +31153010306,2536.0,False,False +31153010401,2767.0,False,False +31153010402,4156.0,True,True +31153010501,7525.0,False,False +31153010502,4152.0,False,False +31153010503,3408.0,False,False +31153010614,5331.0,False,False +31153010615,1997.0,False,False +31153010616,4002.0,False,False +31153010617,5426.0,False,False +31153010618,7793.0,False,False +31153010619,4712.0,False,False +31153010620,5542.0,False,False +31153010621,6112.0,False,False +31153010622,3639.0,False,False +31153010623,5006.0,False,False +31153010624,5826.0,False,False +31153010625,5148.0,False,False +31153010626,5615.0,False,False +31153010627,3238.0,False,False +31153010628,7252.0,False,False +31153010629,2533.0,False,False +31153010630,4589.0,False,False +31153010631,5053.0,False,False +31153010632,5534.0,False,False +31153010633,3086.0,False,False +31153010634,2718.0,False,False +31153010701,2331.0,False,False +31153010702,3408.0,False,False +31155968100,3445.0,False,False +31155968200,5269.0,False,False +31155968300,5034.0,False,False +31155968400,4244.0,False,False +31155968500,3173.0,False,False +31157952900,2729.0,True,True +31157953000,3132.0,False,False +31157953100,2445.0,True,False +31157953200,1621.0,False,False +31157953300,3402.0,True,True +31157953400,3171.0,False,False +31157953500,3162.0,False,False +31157953600,2751.0,True,True +31157953700,3750.0,True,True +31157953800,4669.0,False,False +31157953900,5242.0,False,False +31159960100,4294.0,False,False +31159960200,2459.0,False,False +31159960300,5172.0,False,False +31159960400,5246.0,False,False +31161951600,2137.0,True,True +31161951700,3094.0,False,False +31163970100,3033.0,False,False +31165950100,1219.0,False,False +31167962100,1518.0,False,False +31167962200,4439.0,False,False +31169963100,2651.0,False,False +31169963200,2406.0,False,False +31171957100,645.0,False,False +31173940100,4430.0,True,True +31173940200,2751.0,True,True +31175971300,1834.0,False,False +31175971400,2372.0,False,False +31177050101,3535.0,False,False +31177050102,5005.0,False,False +31177050201,4238.0,False,False +31177050202,2977.0,False,False +31177050300,4606.0,False,False +31179978600,3745.0,False,False +31179978700,5587.0,False,False +31181965000,1809.0,False,False +31181965100,1728.0,True,True +31183973600,783.0,True,True +31185969600,2796.0,False,False +31185969700,3941.0,False,False +31185969800,4584.0,False,False +31185969900,2424.0,False,False +32001950100,2342.0,False,False +32001950301,3940.0,True,True +32001950302,5203.0,True,True +32001950400,550.0,False,False +32001950500,1427.0,True,True +32001950600,5010.0,False,False +32001950700,5787.0,False,False +32003000101,6832.0,True,True +32003000103,6467.0,True,True +32003000105,4333.0,False,True +32003000106,4421.0,True,True +32003000107,4020.0,True,True +32003000108,3317.0,True,True +32003000109,3638.0,True,True +32003000201,3862.0,True,True +32003000203,4479.0,True,True +32003000204,1133.0,False,False +32003000301,2940.0,True,True +32003000302,4742.0,True,True +32003000401,2416.0,True,True +32003000402,2549.0,True,True +32003000403,2388.0,True,True +32003000510,5203.0,True,True +32003000513,3543.0,True,True +32003000514,6605.0,True,True +32003000515,5248.0,True,True +32003000516,5976.0,True,True +32003000517,4451.0,True,True +32003000518,5554.0,True,True +32003000519,4524.0,True,True +32003000520,2129.0,True,True +32003000521,3017.0,True,True +32003000522,2807.0,True,True +32003000523,2623.0,True,True +32003000524,2456.0,True,True +32003000525,2669.0,True,True +32003000526,3059.0,True,True +32003000527,3868.0,True,True +32003000528,3225.0,True,True +32003000600,2594.0,True,True +32003000700,4174.0,True,True +32003000800,2109.0,True,True +32003000900,1382.0,True,True +32003001003,4039.0,False,False +32003001004,7714.0,True,True +32003001005,1634.0,False,False +32003001006,4031.0,False,False +32003001100,2846.0,True,True +32003001200,3753.0,True,True +32003001300,4965.0,True,True +32003001401,2944.0,True,True +32003001402,4520.0,True,True +32003001501,2937.0,True,True +32003001502,3480.0,True,True +32003001607,3313.0,True,True +32003001608,1455.0,True,True +32003001609,4646.0,True,True +32003001610,3071.0,True,True +32003001611,4175.0,True,True +32003001612,6842.0,True,True +32003001613,3951.0,False,True +32003001706,3493.0,False,False +32003001707,1700.0,True,True +32003001708,3877.0,True,True +32003001709,1615.0,False,False +32003001710,4068.0,True,True +32003001711,3622.0,True,True +32003001712,3937.0,True,True +32003001713,3321.0,True,True +32003001714,3683.0,False,False +32003001715,2706.0,True,True +32003001716,1666.0,True,True +32003001717,1395.0,False,False +32003001718,2603.0,True,True +32003001801,6657.0,True,True +32003001803,2743.0,True,True +32003001804,3664.0,True,True +32003001901,5184.0,True,True +32003001902,4299.0,True,True +32003002000,4514.0,True,True +32003002201,4769.0,True,True +32003002203,4872.0,True,True +32003002204,4744.0,True,True +32003002206,3659.0,True,True +32003002207,4178.0,True,True +32003002302,594.0,False,True +32003002303,592.0,False,False +32003002403,3888.0,True,True +32003002404,4420.0,True,True +32003002405,4089.0,True,True +32003002406,3479.0,True,True +32003002501,6507.0,True,True +32003002504,4528.0,True,True +32003002505,2067.0,True,True +32003002506,4260.0,True,True +32003002603,4054.0,False,True +32003002604,2368.0,True,True +32003002605,748.0,True,True +32003002706,4167.0,True,True +32003002707,4400.0,True,True +32003002708,2849.0,True,True +32003002808,2078.0,False,False +32003002810,3834.0,False,False +32003002811,4644.0,False,False +32003002814,5460.0,False,False +32003002821,4256.0,False,False +32003002822,3411.0,True,True +32003002823,3670.0,False,False +32003002824,1513.0,False,False +32003002825,3803.0,False,False +32003002826,2932.0,False,False +32003002827,3246.0,False,False +32003002828,3370.0,False,False +32003002829,3646.0,False,False +32003002830,6240.0,False,True +32003002831,4088.0,False,False +32003002832,7572.0,True,True +32003002833,5276.0,False,False +32003002834,6354.0,False,False +32003002835,2787.0,False,False +32003002836,3344.0,False,False +32003002837,6217.0,False,False +32003002838,5789.0,False,False +32003002841,4263.0,False,False +32003002842,7745.0,False,False +32003002843,11319.0,False,False +32003002844,6401.0,False,False +32003002845,4965.0,True,True +32003002846,6786.0,False,False +32003002847,4188.0,True,True +32003002848,3803.0,False,False +32003002905,4595.0,True,True +32003002915,4596.0,False,False +32003002916,2951.0,False,False +32003002919,4440.0,False,False +32003002935,1687.0,False,False +32003002936,3714.0,True,True +32003002937,5457.0,True,True +32003002938,1530.0,False,True +32003002939,1792.0,False,False +32003002940,4011.0,False,False +32003002941,5969.0,True,False +32003002942,4905.0,False,False +32003002944,4439.0,False,True +32003002946,1951.0,False,True +32003002947,2879.0,False,False +32003002948,3980.0,True,True +32003002949,3732.0,False,False +32003002950,4970.0,True,False +32003002951,8755.0,True,False +32003002952,2383.0,False,True +32003002953,4570.0,False,False +32003002954,4779.0,True,True +32003002956,3169.0,False,False +32003002957,1736.0,False,False +32003002958,5949.0,False,False +32003002961,2408.0,False,False +32003002962,1914.0,True,True +32003002964,5343.0,True,True +32003002965,4241.0,True,True +32003002966,5784.0,True,True +32003002967,3613.0,False,True +32003002968,2459.0,False,True +32003002969,1754.0,True,True +32003002970,3541.0,False,False +32003002974,7689.0,False,False +32003002975,5836.0,True,False +32003002976,5735.0,False,False +32003002977,3698.0,False,False +32003002978,5486.0,False,False +32003002979,3350.0,False,False +32003002980,6661.0,False,False +32003002981,4065.0,False,False +32003002982,7364.0,False,False +32003002983,3301.0,False,False +32003002984,8280.0,False,False +32003002985,4990.0,False,False +32003002995,2406.0,True,True +32003002996,4567.0,True,True +32003003001,4031.0,False,False +32003003003,4718.0,True,True +32003003004,1957.0,True,True +32003003005,3417.0,False,False +32003003006,3680.0,False,False +32003003102,6221.0,True,True +32003003103,3564.0,True,True +32003003104,4290.0,True,True +32003003204,5345.0,False,False +32003003208,3466.0,False,False +32003003210,2466.0,False,False +32003003211,3167.0,False,False +32003003213,1760.0,False,False +32003003214,1658.0,False,False +32003003215,4622.0,False,False +32003003218,5413.0,False,False +32003003219,5986.0,False,False +32003003220,6041.0,False,False +32003003222,5000.0,False,False +32003003223,3523.0,False,False +32003003226,2942.0,False,False +32003003227,4048.0,False,False +32003003228,6018.0,False,False +32003003229,4293.0,False,False +32003003230,11582.0,False,False +32003003231,12782.0,False,False +32003003232,6934.0,False,False +32003003233,5578.0,False,False +32003003234,4913.0,False,False +32003003235,2697.0,False,False +32003003236,2292.0,False,False +32003003237,3829.0,False,False +32003003238,6496.0,False,False +32003003239,3489.0,False,False +32003003240,4182.0,False,False +32003003241,4644.0,False,False +32003003242,1618.0,False,False +32003003243,5537.0,False,False +32003003244,3611.0,False,False +32003003245,5612.0,False,False +32003003246,4268.0,False,False +32003003247,3700.0,False,False +32003003248,3192.0,False,False +32003003249,3739.0,False,False +32003003250,5289.0,False,False +32003003251,2384.0,False,False +32003003252,4687.0,False,False +32003003253,3321.0,False,False +32003003254,3588.0,True,True +32003003260,3497.0,True,False +32003003261,2638.0,False,False +32003003262,2828.0,False,False +32003003303,5282.0,False,False +32003003305,5743.0,False,False +32003003306,4310.0,False,False +32003003307,6677.0,False,False +32003003308,2954.0,False,False +32003003309,4569.0,False,False +32003003310,5604.0,False,False +32003003311,3486.0,False,False +32003003312,4522.0,False,False +32003003313,3712.0,False,False +32003003314,7913.0,False,False +32003003315,4431.0,False,False +32003003316,5354.0,False,False +32003003317,3498.0,False,False +32003003318,6473.0,False,False +32003003319,6429.0,False,False +32003003320,5213.0,False,False +32003003321,2625.0,False,False +32003003408,5537.0,False,False +32003003409,6218.0,True,True +32003003410,5689.0,False,False +32003003411,4464.0,False,False +32003003412,4402.0,False,False +32003003413,5302.0,True,True +32003003414,2503.0,False,False +32003003415,7194.0,True,True +32003003416,3228.0,True,True +32003003418,3757.0,True,True +32003003419,6390.0,True,True +32003003420,3398.0,True,True +32003003421,3489.0,False,False +32003003422,5730.0,True,True +32003003423,6850.0,True,True +32003003426,2596.0,False,True +32003003427,4219.0,True,True +32003003428,2116.0,True,True +32003003429,6109.0,True,True +32003003430,2392.0,True,True +32003003431,3431.0,True,True +32003003500,3263.0,True,True +32003003607,8548.0,False,False +32003003609,4757.0,False,False +32003003610,5898.0,False,False +32003003612,8378.0,False,False +32003003613,7229.0,True,True +32003003615,2724.0,True,True +32003003616,4239.0,True,True +32003003617,1501.0,True,True +32003003618,8745.0,False,False +32003003619,4130.0,False,False +32003003620,5632.0,False,False +32003003621,2923.0,False,False +32003003622,9563.0,False,False +32003003623,6461.0,True,False +32003003624,6860.0,False,False +32003003625,9484.0,False,False +32003003626,4254.0,False,False +32003003627,4988.0,False,False +32003003628,11073.0,False,False +32003003629,7072.0,False,False +32003003630,6576.0,False,False +32003003631,3796.0,False,False +32003003632,2970.0,False,False +32003003633,3774.0,False,False +32003003634,4379.0,False,False +32003003635,6323.0,False,False +32003003636,2699.0,False,False +32003003637,4998.0,False,False +32003003638,3269.0,False,False +32003003639,4545.0,False,False +32003003640,4684.0,False,False +32003003641,5921.0,False,False +32003003642,4117.0,False,False +32003003643,5573.0,True,True +32003003644,5405.0,True,True +32003003700,3120.0,True,True +32003003800,4175.0,True,True +32003004000,2992.0,True,True +32003004100,5924.0,True,True +32003004200,4859.0,True,True +32003004301,1500.0,True,True +32003004302,4020.0,True,True +32003004401,2780.0,True,True +32003004402,3503.0,True,True +32003004500,4666.0,True,True +32003004601,5433.0,True,True +32003004602,2705.0,True,True +32003004703,6197.0,True,True +32003004707,3311.0,True,True +32003004709,5679.0,True,True +32003004710,6959.0,True,True +32003004712,4822.0,True,True +32003004713,4201.0,True,True +32003004714,5981.0,True,True +32003004715,6583.0,True,True +32003004716,3436.0,True,True +32003004717,3144.0,True,True +32003004907,4086.0,False,False +32003004910,2921.0,False,True +32003004911,3752.0,True,True +32003004912,5930.0,True,True +32003004914,2698.0,False,False +32003004915,3342.0,True,True +32003004916,2505.0,True,True +32003004917,3202.0,False,False +32003004918,3812.0,False,False +32003004919,4022.0,False,False +32003004920,5628.0,True,True +32003004921,6045.0,True,True +32003004923,4682.0,True,True +32003004924,4302.0,True,True +32003004925,6562.0,True,True +32003004926,3470.0,True,True +32003005005,3886.0,True,True +32003005006,3762.0,True,True +32003005007,2301.0,False,False +32003005010,5263.0,True,True +32003005011,3891.0,True,True +32003005012,2914.0,False,False +32003005013,4347.0,False,False +32003005014,5091.0,True,True +32003005015,4620.0,False,False +32003005016,5375.0,False,False +32003005017,6886.0,True,True +32003005101,8728.0,False,False +32003005102,5481.0,False,False +32003005103,5256.0,False,False +32003005104,3296.0,False,False +32003005105,10287.0,False,False +32003005106,3609.0,False,False +32003005107,3809.0,False,False +32003005108,5074.0,False,False +32003005109,7092.0,False,False +32003005200,4034.0,True,True +32003005311,2723.0,False,False +32003005312,2633.0,False,False +32003005313,6039.0,False,False +32003005314,2892.0,False,False +32003005315,7014.0,False,False +32003005316,4304.0,False,False +32003005317,5155.0,False,False +32003005318,3077.0,False,False +32003005319,2760.0,False,False +32003005320,2662.0,False,False +32003005321,3549.0,False,False +32003005322,1405.0,False,False +32003005333,3160.0,False,False +32003005335,5053.0,False,False +32003005336,4445.0,True,True +32003005337,3312.0,False,False +32003005338,1989.0,False,False +32003005341,2833.0,False,False +32003005342,2912.0,False,False +32003005343,5833.0,False,False +32003005346,6079.0,False,False +32003005347,5746.0,False,False +32003005348,5731.0,False,False +32003005349,4799.0,False,False +32003005350,3486.0,False,False +32003005351,4796.0,False,False +32003005352,3757.0,False,False +32003005353,6162.0,False,False +32003005354,6610.0,False,False +32003005355,5203.0,False,False +32003005356,2575.0,False,False +32003005357,7254.0,False,False +32003005358,3419.0,False,False +32003005359,7517.0,False,False +32003005360,5112.0,False,False +32003005421,3365.0,True,True +32003005422,4524.0,True,True +32003005423,5074.0,True,True +32003005432,6226.0,False,False +32003005433,4709.0,False,False +32003005434,5567.0,False,False +32003005435,3604.0,False,False +32003005436,12904.0,False,False +32003005437,3768.0,False,False +32003005438,2439.0,True,True +32003005439,4106.0,True,True +32003005501,4359.0,False,False +32003005502,4286.0,False,False +32003005503,3393.0,False,False +32003005504,3802.0,False,False +32003005607,3581.0,True,True +32003005612,1451.0,True,True +32003005613,4866.0,False,False +32003005614,2709.0,True,True +32003005615,1768.0,True,True +32003005702,3190.0,True,True +32003005703,934.0,True,True +32003005704,2035.0,False,True +32003005705,2942.0,True,True +32003005711,4358.0,False,False +32003005712,13585.0,False,False +32003005713,6291.0,False,False +32003005714,5807.0,False,False +32003005715,4799.0,False,False +32003005716,4032.0,False,False +32003005803,4907.0,False,False +32003005804,3841.0,False,False +32003005805,2879.0,False,False +32003005806,4380.0,False,False +32003005807,4154.0,False,False +32003005808,3198.0,False,False +32003005809,4143.0,True,True +32003005811,8699.0,False,False +32003005813,5015.0,False,False +32003005818,4856.0,True,True +32003005822,6402.0,False,False +32003005823,8177.0,False,False +32003005824,3979.0,False,False +32003005825,5531.0,True,False +32003005826,3821.0,False,False +32003005827,6875.0,False,False +32003005828,9313.0,False,False +32003005829,6736.0,False,False +32003005830,4022.0,False,False +32003005831,6246.0,False,False +32003005832,9965.0,False,False +32003005833,11385.0,False,False +32003005834,3013.0,False,False +32003005835,4643.0,False,False +32003005836,3737.0,False,False +32003005837,5261.0,False,False +32003005838,7147.0,False,False +32003005839,5991.0,False,False +32003005840,14715.0,False,False +32003005841,5549.0,False,False +32003005842,2741.0,False,False +32003005843,2701.0,False,False +32003005844,5828.0,False,False +32003005845,3897.0,False,False +32003005846,6107.0,False,False +32003005847,2632.0,False,False +32003005848,3611.0,True,False +32003005849,3757.0,True,False +32003005850,4963.0,False,False +32003005851,7724.0,False,False +32003005852,5991.0,False,False +32003005853,9685.0,False,False +32003005854,11180.0,False,False +32003005855,7369.0,False,False +32003005856,5063.0,False,False +32003005902,1246.0,False,False +32003005903,2704.0,False,False +32003005904,3441.0,False,False +32003005905,2404.0,False,True +32003006001,7246.0,True,True +32003006103,3276.0,False,False +32003006104,4564.0,False,False +32003006201,4728.0,True,True +32003006202,4243.0,True,True +32003006203,3085.0,False,False +32003006204,4971.0,False,False +32003006700,803.0,False,False +32003006800,4970.0,True,True +32003006900,1670.0,True,True +32003007100,3135.0,True,True +32003007200,4662.0,True,True +32003007500,3718.0,False,False +32003007600,4421.0,False,False +32003007800,1882.0,True,True +32005001000,2572.0,False,False +32005001100,5409.0,False,False +32005001200,3289.0,False,False +32005001300,1720.0,False,False +32005001400,3151.0,False,False +32005001500,6121.0,False,False +32005001600,1444.0,False,False +32005001700,1943.0,False,False +32005001800,2144.0,False,False +32005001900,1141.0,False,False +32005002000,3430.0,False,False +32005002100,2240.0,False,False +32005002200,6195.0,False,False +32005002300,3654.0,False,False +32005002400,1842.0,True,True +32005002500,1837.0,True,True +32005990000,0.0,False,False +32007950200,1789.0,False,False +32007950701,7235.0,False,False +32007950702,5789.0,False,False +32007950800,1628.0,False,False +32007950900,2064.0,False,False +32007951000,1789.0,False,True +32007951201,5042.0,False,False +32007951202,4308.0,False,False +32007951300,2784.0,False,False +32007951401,4685.0,False,False +32007951402,5786.0,False,False +32007951500,4664.0,False,False +32007951600,2025.0,False,False +32007951700,2709.0,True,True +32009950100,969.0,True,True +32011000100,1859.0,False,False +32013010500,5739.0,False,False +32013010600,2468.0,True,True +32013010701,5201.0,True,True +32013010702,3420.0,False,False +32015000300,5643.0,False,False +32017950100,2814.0,False,False +32017950200,2366.0,False,False +32019960101,11269.0,False,False +32019960102,7397.0,True,True +32019960103,1731.0,True,True +32019960201,4327.0,True,True +32019960202,3388.0,True,True +32019960301,1874.0,True,True +32019960302,10276.0,False,False +32019960303,4657.0,False,False +32019960800,3819.0,False,False +32019960900,5642.0,True,True +32021970700,2704.0,True,True +32021970800,1756.0,True,True +32023960100,2560.0,False,False +32023960200,2117.0,True,True +32023960300,2255.0,True,True +32023960401,5672.0,False,True +32023960402,4478.0,True,True +32023960403,5606.0,True,True +32023960404,7472.0,True,True +32023960405,4019.0,True,True +32023960406,10201.0,False,False +32023980500,0.0,False,False +32027960100,6615.0,False,False +32029970200,3988.0,False,False +32031000101,3281.0,False,False +32031000102,3031.0,True,True +32031000201,3424.0,True,True +32031000202,2600.0,True,True +32031000300,3481.0,False,False +32031000400,5438.0,False,False +32031000700,5248.0,True,True +32031000900,4799.0,True,True +32031001005,3012.0,False,False +32031001008,4630.0,True,True +32031001009,3358.0,True,True +32031001010,3269.0,False,False +32031001011,3936.0,False,False +32031001012,2980.0,False,False +32031001013,6255.0,False,False +32031001014,2548.0,False,False +32031001015,4929.0,False,False +32031001101,2994.0,False,False +32031001103,5511.0,False,False +32031001104,4372.0,False,False +32031001105,3819.0,False,False +32031001201,2673.0,False,False +32031001202,4676.0,True,True +32031001300,3480.0,False,False +32031001400,3622.0,False,False +32031001501,4982.0,False,False +32031001502,6590.0,False,True +32031001701,3598.0,True,True +32031001702,5998.0,True,True +32031001801,3254.0,True,True +32031001802,3030.0,True,True +32031001901,4654.0,True,True +32031001902,5490.0,True,True +32031002103,2769.0,False,False +32031002104,2981.0,False,False +32031002105,4902.0,False,False +32031002106,3515.0,False,False +32031002107,1731.0,True,True +32031002204,4894.0,True,True +32031002205,5529.0,False,False +32031002206,8320.0,False,False +32031002207,5239.0,False,False +32031002208,2481.0,False,False +32031002209,8879.0,False,False +32031002210,3431.0,False,False +32031002211,3798.0,True,True +32031002212,5068.0,True,True +32031002301,6579.0,False,False +32031002302,2131.0,False,False +32031002401,4152.0,False,False +32031002406,4823.0,False,False +32031002407,4151.0,False,False +32031002408,3143.0,False,False +32031002409,4736.0,False,False +32031002410,3970.0,False,False +32031002411,4413.0,False,False +32031002412,2494.0,False,False +32031002500,5018.0,False,False +32031002603,1621.0,False,False +32031002610,5695.0,False,False +32031002611,6444.0,False,False +32031002612,4403.0,False,False +32031002613,5830.0,False,False +32031002614,4322.0,False,False +32031002615,3755.0,False,False +32031002616,5605.0,False,False +32031002617,7278.0,False,False +32031002618,5898.0,False,False +32031002619,5841.0,False,False +32031002703,2799.0,True,True +32031002704,5500.0,True,True +32031002705,4854.0,False,False +32031002706,5177.0,True,True +32031002707,4752.0,False,False +32031002801,4397.0,True,True +32031002802,5815.0,True,True +32031002901,3601.0,False,False +32031002902,3961.0,False,False +32031003000,7087.0,True,True +32031003101,4518.0,False,False +32031003105,2236.0,False,False +32031003106,7234.0,False,False +32031003108,3357.0,False,False +32031003109,3520.0,False,False +32031003110,5190.0,False,False +32031003202,5648.0,False,False +32031003203,4552.0,False,False +32031003204,2337.0,False,False +32031003305,1084.0,False,False +32031003306,1768.0,False,True +32031003307,1312.0,False,False +32031003308,2155.0,False,False +32031003309,2534.0,False,False +32031003501,3957.0,False,False +32031003503,4576.0,False,False +32031003504,7714.0,False,False +32031003507,4331.0,False,False +32031003508,3554.0,False,False +32031003509,6854.0,False,False +32031003510,3557.0,False,False +32031003511,5481.0,False,False +32031003512,5139.0,False,False +32031003513,3379.0,False,False +32031003514,2844.0,False,False +32031003515,7728.0,False,False +32031940200,1525.0,True,True +32031980000,108.0,True,True +32031980100,0.0,False,False +32031980200,0.0,False,False +32031980300,0.0,False,False +32031990000,0.0,False,False +32031990100,0.0,False,True +32033970100,1472.0,False,False +32033970200,6321.0,True,True +32033970300,1886.0,True,True +32510000100,3083.0,False,False +32510000200,3551.0,False,False +32510000300,3799.0,False,False +32510000400,3495.0,False,False +32510000501,5881.0,False,False +32510000502,3193.0,True,True +32510000600,6546.0,True,True +32510000701,4278.0,False,False +32510000702,3338.0,False,False +32510000800,4854.0,False,False +32510000900,5350.0,True,True +32510001001,3902.0,True,True +32510001002,3503.0,False,False +32510990000,0.0,False,False +33001965100,3301.0,False,False +33001965200,3208.0,False,False +33001965300,3183.0,False,False +33001965400,2983.0,False,False +33001965598,3551.0,False,False +33001965600,3738.0,False,False +33001965700,4680.0,False,False +33001965800,7311.0,False,False +33001965900,4026.0,False,False +33001966000,5359.0,False,False +33001966100,4130.0,False,False +33001966200,2961.0,False,False +33001966401,1213.0,False,False +33001966402,5940.0,False,False +33001966500,5303.0,False,False +33003955100,3890.0,False,False +33003955300,6319.0,False,False +33003955400,4180.0,False,False +33003955500,2818.0,False,False +33003955600,5137.0,False,False +33003955800,2979.0,False,False +33003955900,4334.0,False,False +33003956000,5849.0,False,False +33003956100,6320.0,False,False +33003956300,4099.0,False,False +33003956400,2213.0,False,False +33005970100,4212.0,False,False +33005970200,3936.0,False,False +33005970400,5225.0,False,False +33005970500,5283.0,False,False +33005970600,6054.0,False,False +33005970700,3433.0,False,False +33005970800,4399.0,False,False +33005970900,7199.0,False,False +33005971000,5160.0,False,False +33005971100,5119.0,False,False +33005971300,3157.0,False,False +33005971401,5615.0,False,False +33005971402,3902.0,False,False +33005971500,5197.0,False,False +33005971600,3911.0,False,False +33005971700,4240.0,True,True +33007950100,2040.0,False,False +33007950200,2541.0,True,True +33007950300,1888.0,False,False +33007950400,3558.0,True,True +33007950500,3275.0,False,False +33007950600,4749.0,True,True +33007950700,3179.0,True,True +33007950800,2293.0,True,True +33007950900,3054.0,False,False +33007951000,1998.0,False,False +33007951100,3166.0,False,False +33009960100,5915.0,True,False +33009960200,4325.0,False,False +33009960300,5077.0,False,False +33009960400,3635.0,False,False +33009960500,2457.0,False,False +33009960600,4601.0,False,False +33009960700,3206.0,False,False +33009960800,4875.0,False,False +33009960900,3254.0,False,False +33009961000,6755.0,False,False +33009961100,4223.0,True,False +33009961200,4267.0,False,False +33009961300,3632.0,False,False +33009961400,3920.0,False,False +33009961500,4545.0,False,False +33009961601,2959.0,False,False +33009961602,8508.0,False,False +33009961700,7720.0,False,False +33009961800,5903.0,False,False +33011000101,2997.0,False,False +33011000102,5072.0,False,False +33011000202,2447.0,True,True +33011000203,3296.0,False,False +33011000204,5276.0,False,False +33011000300,2940.0,True,True +33011000600,2208.0,True,True +33011000700,2952.0,False,False +33011000800,2251.0,False,False +33011000901,3511.0,False,False +33011000902,5917.0,False,False +33011001000,6233.0,False,False +33011001100,5340.0,False,False +33011001200,1843.0,False,False +33011001300,3028.0,True,True +33011001400,2194.0,True,True +33011001500,3229.0,True,True +33011001600,4569.0,True,True +33011001700,2051.0,False,False +33011001800,5962.0,False,False +33011001900,3598.0,True,True +33011002000,2269.0,True,True +33011002100,5261.0,True,True +33011002200,3279.0,False,False +33011002300,3795.0,False,False +33011002400,7008.0,True,True +33011002500,4864.0,False,False +33011002600,5642.0,False,False +33011002701,3611.0,False,False +33011002702,6144.0,False,False +33011002800,8306.0,False,False +33011002901,7807.0,False,False +33011002902,6285.0,False,False +33011002903,8443.0,False,False +33011010100,5203.0,False,False +33011010200,7494.0,False,False +33011010301,4562.0,False,False +33011010302,4370.0,False,False +33011010400,5187.0,False,False +33011010500,4051.0,True,True +33011010600,5553.0,False,False +33011010700,1578.0,True,True +33011010800,8125.0,True,True +33011010900,6483.0,False,False +33011011000,4899.0,False,False +33011011101,3458.0,False,False +33011011102,3517.0,False,False +33011011200,7154.0,False,False +33011011300,4563.0,False,False +33011011401,5352.0,False,False +33011011402,4929.0,False,False +33011011500,2337.0,False,False +33011012100,8382.0,False,False +33011012200,7486.0,False,False +33011012300,9488.0,False,False +33011013100,8566.0,False,False +33011014100,6013.0,False,False +33011014201,5736.0,False,False +33011014202,6233.0,False,False +33011014300,8005.0,False,False +33011015100,5242.0,False,False +33011015200,6091.0,False,False +33011016100,3380.0,False,False +33011016201,7028.0,False,False +33011016202,5324.0,False,False +33011017100,7918.0,False,False +33011018000,5348.0,False,False +33011018501,2061.0,False,False +33011018502,1532.0,False,False +33011019000,3751.0,False,False +33011019501,1701.0,False,False +33011019502,2576.0,False,False +33011020000,5711.0,False,False +33011021000,9031.0,False,False +33011021500,4979.0,False,False +33011022000,1906.0,False,False +33011022500,6996.0,False,False +33011023000,6604.0,False,False +33011024000,1747.0,False,False +33011025000,2680.0,False,False +33011025500,6202.0,False,False +33011200100,4836.0,False,False +33011200200,4412.0,False,False +33011200300,4550.0,False,False +33011200400,3077.0,True,True +33011980101,0.0,False,False +33013003001,4278.0,False,False +33013003006,3869.0,False,False +33013003100,4390.0,False,False +33013003200,7187.0,False,False +33013030000,2827.0,False,False +33013031001,3930.0,False,False +33013031002,3932.0,False,False +33013032100,3602.0,False,False +33013032200,2466.0,False,False +33013032300,1666.0,False,False +33013032400,3346.0,False,False +33013032500,3817.0,False,False +33013032600,4083.0,False,False +33013032701,1490.0,False,False +33013032706,4030.0,False,False +33013032800,5301.0,False,False +33013032900,4904.0,False,False +33013033000,2662.0,False,False +33013034000,4722.0,False,False +33013035000,4117.0,True,False +33013036000,5534.0,False,False +33013037000,2357.0,False,False +33013038000,4004.0,False,False +33013038500,4691.0,False,False +33013039000,5691.0,False,False +33013040000,4962.0,False,False +33013040500,5588.0,False,False +33013041000,4390.0,False,False +33013041500,3692.0,False,False +33013042500,4204.0,False,False +33013043001,4013.0,False,False +33013043002,4610.0,False,False +33013044000,4881.0,False,False +33013044100,3925.0,True,True +33013044200,6142.0,False,False +33013044300,4614.0,False,False +33015003301,4394.0,False,False +33015003302,5020.0,False,False +33015003400,5308.0,False,False +33015003500,5823.0,False,False +33015003601,6662.0,False,False +33015003602,6241.0,False,False +33015003701,4034.0,False,False +33015003703,5626.0,False,False +33015003801,4115.0,False,False +33015003802,4345.0,False,False +33015003901,4441.0,False,False +33015003902,3366.0,False,False +33015004000,5446.0,False,False +33015050000,3936.0,False,False +33015051000,5129.0,False,False +33015052000,6389.0,False,False +33015053000,4515.0,False,False +33015054000,4677.0,False,False +33015055001,6238.0,False,False +33015055002,4190.0,False,False +33015056000,4476.0,False,False +33015057000,4299.0,False,False +33015058000,5058.0,False,False +33015059000,6966.0,False,False +33015060000,4612.0,False,False +33015061001,6830.0,False,False +33015062000,2442.0,False,False +33015062500,3066.0,False,False +33015063001,3835.0,False,False +33015063002,4995.0,False,False +33015064000,2383.0,False,False +33015065001,7843.0,False,False +33015065005,2625.0,False,False +33015065006,1508.0,False,False +33015065007,1531.0,False,False +33015065008,1960.0,True,True +33015066000,4457.0,False,False +33015067000,7427.0,False,False +33015067501,7299.0,False,False +33015067502,3521.0,False,False +33015069100,4310.0,False,False +33015069200,2802.0,False,False +33015069300,2107.0,False,False +33015069700,3226.0,False,False +33015071000,5466.0,False,False +33015100100,6210.0,False,False +33015100200,5905.0,False,False +33015100301,4388.0,False,False +33015100302,4796.0,False,False +33015100400,7935.0,False,False +33015101100,7689.0,False,False +33015102100,4920.0,False,False +33015103100,6952.0,False,False +33015104101,4646.0,False,False +33015104102,3975.0,False,False +33015105100,6260.0,False,False +33015106101,7604.0,False,False +33015106102,7006.0,False,False +33015106200,3986.0,False,False +33015106400,4261.0,False,False +33015107100,2601.0,False,False +33015107200,6474.0,False,False +33015107400,1090.0,False,False +33015107500,4722.0,False,False +33015980011,0.0,False,False +33015990000,0.0,False,False +33017080100,2769.0,False,False +33017080202,2664.0,False,False +33017080203,5967.0,False,False +33017080204,5081.0,False,False +33017080500,6386.0,False,False +33017081100,6907.0,False,False +33017081200,5024.0,False,False +33017081300,4893.0,False,False +33017081400,2036.0,False,False +33017081500,5689.0,False,False +33017081600,7028.0,False,False +33017082000,2567.0,False,False +33017083001,7075.0,False,False +33017083002,4850.0,False,False +33017084100,4877.0,False,False +33017084200,7679.0,False,False +33017084300,6741.0,True,False +33017084400,4269.0,True,False +33017084500,4335.0,False,False +33017084600,3054.0,False,False +33017085000,9063.0,False,False +33017086000,4140.0,False,False +33017087000,6930.0,False,False +33017088000,4620.0,False,False +33017088500,4480.0,False,False +33019975100,4338.0,False,False +33019975200,4892.0,False,False +33019975300,3449.0,False,False +33019975400,6374.0,True,False +33019975500,2824.0,False,False +33019975600,3231.0,False,False +33019975700,5019.0,True,True +33019975800,5087.0,False,False +33019975901,4465.0,False,False +33019975902,3425.0,True,True +34001000100,2195.0,True,True +34001000200,3353.0,False,True +34001000300,3765.0,True,True +34001000400,3374.0,True,True +34001000500,3141.0,True,True +34001001100,2091.0,True,True +34001001200,2841.0,True,True +34001001300,1510.0,True,True +34001001400,3777.0,True,True +34001001500,1680.0,True,True +34001001900,1406.0,True,True +34001002300,2323.0,True,True +34001002400,2508.0,True,True +34001002500,4035.0,True,True +34001010101,3261.0,False,False +34001010102,1651.0,False,False +34001010104,1338.0,False,False +34001010105,2582.0,False,False +34001010200,5778.0,False,False +34001010300,2584.0,True,True +34001010401,6177.0,False,False +34001010403,7248.0,False,False +34001010501,6794.0,False,False +34001010503,6734.0,False,False +34001010505,2852.0,False,False +34001010506,4968.0,False,False +34001010600,4100.0,True,True +34001010700,5925.0,False,False +34001010800,3151.0,False,False +34001010900,5596.0,False,False +34001011000,2447.0,False,False +34001011100,2945.0,False,True +34001011201,1697.0,False,False +34001011202,7295.0,False,True +34001011300,4356.0,False,True +34001011401,4360.0,False,False +34001011403,5860.0,False,False +34001011404,9317.0,False,False +34001011500,6436.0,False,False +34001011600,5020.0,False,False +34001011701,9003.0,True,True +34001011702,3175.0,True,True +34001011802,15860.0,False,False +34001011803,4567.0,False,False +34001011804,7000.0,False,False +34001011805,2062.0,False,False +34001011900,8819.0,True,True +34001012000,4514.0,True,True +34001012100,2679.0,True,True +34001012200,5151.0,True,True +34001012302,3419.0,False,False +34001012401,2784.0,False,False +34001012402,1950.0,False,False +34001012501,2433.0,False,False +34001012502,1451.0,False,False +34001012602,1323.0,False,False +34001012701,3112.0,False,False +34001012702,1622.0,False,False +34001012801,4126.0,False,False +34001012802,1461.0,False,False +34001013000,3369.0,False,False +34001013101,1095.0,False,False +34001013102,1533.0,False,False +34001013201,2864.0,True,True +34001013202,2310.0,False,False +34001013301,2335.0,False,False +34001013302,2586.0,False,False +34001013500,2589.0,False,False +34001983400,2442.0,False,False +34001990000,0.0,False,False +34003001000,6765.0,False,False +34003002100,1547.0,False,False +34003002200,5487.0,False,False +34003002300,5812.0,False,False +34003003100,5545.0,False,False +34003003200,4978.0,False,False +34003003300,6601.0,False,False +34003003401,2802.0,False,False +34003003402,3559.0,False,False +34003003500,3888.0,False,True +34003004001,3212.0,False,False +34003004002,5148.0,False,False +34003005000,6178.0,False,False +34003006100,6982.0,False,False +34003006201,4335.0,False,True +34003006202,5060.0,False,False +34003006300,8749.0,False,True +34003007001,3946.0,False,False +34003007002,4619.0,False,False +34003008000,8699.0,False,False +34003009100,4942.0,False,False +34003009200,3418.0,False,False +34003010100,5815.0,False,False +34003010200,4466.0,False,False +34003010300,7343.0,False,False +34003011100,4410.0,False,False +34003011200,4830.0,False,False +34003011300,4325.0,False,False +34003011400,6494.0,False,False +34003012001,6333.0,False,False +34003012002,3251.0,False,False +34003013001,6924.0,False,False +34003013002,5479.0,False,False +34003014000,7596.0,False,False +34003015100,2566.0,False,False +34003015200,6753.0,False,False +34003015300,5659.0,False,False +34003015400,7180.0,False,True +34003015500,6195.0,False,False +34003016000,5371.0,False,False +34003017100,6993.0,False,False +34003017200,6102.0,False,False +34003017300,6129.0,False,False +34003017400,5398.0,False,False +34003017500,8395.0,False,False +34003018100,7693.0,False,True +34003018200,6565.0,False,True +34003019102,3150.0,False,False +34003019103,4519.0,False,False +34003019104,4053.0,False,False +34003019202,2245.0,False,False +34003019203,3159.0,False,False +34003019204,3527.0,False,False +34003019303,5558.0,False,False +34003019304,2652.0,False,False +34003019305,6534.0,False,False +34003019306,2033.0,False,False +34003020100,4189.0,False,False +34003020200,6757.0,False,False +34003021100,6589.0,False,False +34003021200,5743.0,False,True +34003021300,4600.0,False,True +34003021400,4932.0,False,True +34003021500,5300.0,True,True +34003021600,4481.0,True,True +34003022100,3877.0,False,False +34003022200,7903.0,False,False +34003023100,3453.0,False,False +34003023200,6489.0,False,False +34003023301,2750.0,False,False +34003023302,5267.0,False,False +34003023401,3796.0,False,False +34003023402,5899.0,False,False +34003023501,3710.0,False,False +34003023502,5222.0,False,True +34003023601,2868.0,False,False +34003023602,4885.0,True,True +34003024100,5914.0,False,False +34003024200,4753.0,False,False +34003025100,6590.0,False,False +34003025200,5492.0,False,False +34003026100,4647.0,False,False +34003026200,5699.0,False,False +34003027000,4094.0,False,False +34003028001,5249.0,False,False +34003028002,3837.0,False,False +34003029100,4415.0,False,False +34003029200,6367.0,False,False +34003030100,5686.0,False,False +34003030200,7424.0,False,True +34003030300,4443.0,False,False +34003030400,6877.0,False,False +34003031100,6413.0,False,False +34003031200,4862.0,False,False +34003031300,5582.0,False,False +34003031400,5441.0,False,False +34003032102,6026.0,False,False +34003032103,5154.0,False,False +34003032104,4247.0,False,False +34003032201,5750.0,False,False +34003032202,5098.0,False,False +34003033100,3879.0,False,False +34003033200,2217.0,False,False +34003033300,3565.0,False,False +34003034000,7244.0,False,False +34003035100,8489.0,False,False +34003035200,5832.0,False,False +34003036100,2677.0,False,False +34003036200,2716.0,False,True +34003037100,5453.0,False,False +34003037201,3879.0,False,False +34003037202,7213.0,False,False +34003038100,5554.0,False,False +34003038200,4248.0,False,False +34003038300,5875.0,False,False +34003039100,4134.0,False,False +34003039200,5973.0,False,False +34003039300,2865.0,False,False +34003040001,3543.0,False,False +34003040002,4598.0,False,False +34003041100,5915.0,False,True +34003041200,4798.0,False,False +34003041301,5805.0,False,True +34003041302,4086.0,False,False +34003042100,7413.0,False,False +34003042301,4471.0,False,False +34003042302,5659.0,False,False +34003042400,4455.0,False,False +34003042500,4505.0,False,False +34003043001,4160.0,False,False +34003043002,4606.0,False,False +34003044100,6015.0,False,False +34003044201,3790.0,False,False +34003044202,5135.0,False,False +34003045100,8437.0,False,False +34003045200,2790.0,False,False +34003046100,4386.0,False,False +34003046200,3990.0,False,False +34003046300,4546.0,False,False +34003047100,6028.0,False,False +34003047200,4530.0,False,False +34003047300,3092.0,False,False +34003047400,4553.0,False,False +34003047500,6976.0,False,False +34003048100,3832.0,False,False +34003048200,7668.0,False,False +34003049001,4498.0,False,False +34003049002,5497.0,False,False +34003050000,5597.0,False,False +34003051100,6245.0,False,False +34003051200,2547.0,False,False +34003051300,4575.0,False,False +34003051400,5031.0,False,False +34003052100,7554.0,False,False +34003052200,6291.0,False,False +34003053100,3192.0,False,False +34003053200,8227.0,False,False +34003054100,8251.0,False,False +34003054200,4789.0,False,False +34003054300,6672.0,False,False +34003054400,7434.0,False,False +34003054500,4831.0,False,False +34003054600,8481.0,False,False +34003055100,6725.0,False,False +34003055200,7907.0,False,False +34003056100,5096.0,False,False +34003056200,4890.0,False,False +34003057101,4365.0,False,False +34003057102,3572.0,False,False +34003057200,3603.0,False,True +34003058100,3739.0,False,False +34003058200,5498.0,False,False +34003059100,5143.0,False,False +34003059200,5972.0,False,False +34003060000,8819.0,False,False +34003061100,4728.0,False,False +34003061200,3241.0,False,False +34003061300,3917.0,False,False +34003061400,5131.0,False,False +34005700102,2438.0,False,False +34005700103,2905.0,False,False +34005700104,1846.0,False,False +34005700200,2705.0,False,False +34005700303,3550.0,False,False +34005700304,2533.0,False,False +34005700305,5143.0,False,False +34005700306,2430.0,False,False +34005700307,2760.0,False,False +34005700401,1923.0,False,False +34005700402,3323.0,False,False +34005700403,4432.0,False,False +34005700405,1821.0,False,False +34005700407,4914.0,False,False +34005700408,2229.0,False,False +34005700501,5400.0,False,False +34005700502,1975.0,False,False +34005700503,3603.0,False,False +34005700504,3076.0,False,False +34005700505,6395.0,False,False +34005700602,5661.0,False,False +34005700603,6154.0,False,False +34005700605,4733.0,False,False +34005700701,3213.0,False,False +34005700702,2452.0,False,False +34005700703,2192.0,True,True +34005700800,4469.0,False,False +34005700900,2267.0,True,True +34005701001,5318.0,True,True +34005701002,3374.0,False,False +34005701102,5336.0,False,False +34005701103,6254.0,False,False +34005701104,4819.0,False,False +34005701105,6177.0,False,False +34005701201,2929.0,False,False +34005701203,2103.0,False,False +34005701204,2564.0,True,True +34005701205,2219.0,False,False +34005701301,4455.0,False,False +34005701302,2901.0,False,False +34005701303,5196.0,False,False +34005701401,6454.0,False,False +34005701402,2079.0,False,False +34005701502,4092.0,False,False +34005701700,3823.0,False,False +34005702101,4260.0,False,False +34005702203,3543.0,False,False +34005702204,2370.0,False,False +34005702206,1869.0,False,False +34005702207,3102.0,True,True +34005702208,6478.0,False,True +34005702209,3183.0,False,False +34005702210,4744.0,False,False +34005702300,1499.0,False,False +34005702400,3275.0,False,False +34005702500,5989.0,False,False +34005702601,4343.0,False,False +34005702603,2439.0,True,True +34005702700,8672.0,False,False +34005702801,2130.0,False,False +34005702802,3437.0,False,False +34005702803,3860.0,False,False +34005702804,2552.0,False,False +34005702805,4124.0,False,False +34005702806,3056.0,False,False +34005702807,3175.0,False,False +34005702808,3353.0,False,False +34005702809,2114.0,False,False +34005702810,1362.0,False,False +34005702811,2499.0,False,False +34005702905,4237.0,False,False +34005702906,1995.0,False,False +34005702907,2502.0,False,False +34005702908,4245.0,False,False +34005702909,6632.0,False,False +34005702910,5201.0,False,False +34005702913,4612.0,False,False +34005702914,4174.0,False,False +34005702915,4175.0,False,False +34005702917,1814.0,False,False +34005702918,1835.0,False,False +34005703000,6010.0,False,False +34005703102,2550.0,False,False +34005703103,4664.0,False,False +34005703104,5018.0,False,False +34005703201,3663.0,False,False +34005703202,2702.0,False,False +34005703203,3789.0,False,False +34005703600,6851.0,False,False +34005703700,6396.0,False,False +34005703801,6943.0,False,False +34005703802,4702.0,False,False +34005703803,5027.0,False,False +34005703804,6640.0,False,False +34005703900,3984.0,False,False +34005704004,3555.0,False,False +34005704005,3785.0,False,False +34005704006,2232.0,False,False +34005704007,3500.0,False,False +34005704008,5048.0,False,False +34005704009,4709.0,False,False +34005704011,3083.0,False,False +34005704012,5913.0,False,False +34005704013,5148.0,False,False +34005704014,8162.0,False,False +34005704200,8627.0,False,False +34005704302,5683.0,False,False +34005704500,3931.0,False,False +34005704600,2781.0,True,True +34005704700,3834.0,False,False +34005704801,3248.0,False,False +34005704802,5363.0,False,True +34005981802,1823.0,False,False +34005982111,853.0,False,False +34007600200,2085.0,True,True +34007600400,3451.0,True,True +34007600700,1482.0,True,True +34007600800,5282.0,True,True +34007600900,4358.0,True,True +34007601000,6286.0,True,True +34007601101,3273.0,True,True +34007601102,5181.0,True,True +34007601200,6156.0,True,True +34007601300,4288.0,True,True +34007601400,4766.0,True,True +34007601500,4921.0,True,True +34007601600,2644.0,True,True +34007601700,2855.0,True,True +34007601800,1082.0,True,True +34007601900,2913.0,True,True +34007602000,6106.0,True,True +34007602503,2421.0,False,True +34007602601,2654.0,False,False +34007602602,2924.0,True,True +34007602901,4351.0,False,False +34007602902,3402.0,False,False +34007603001,3702.0,False,False +34007603002,4880.0,False,False +34007603100,3719.0,False,False +34007603200,6636.0,False,False +34007603301,5752.0,False,False +34007603302,6337.0,False,False +34007603303,2876.0,False,False +34007603400,7313.0,False,False +34007603501,6440.0,False,False +34007603503,4577.0,False,False +34007603504,2611.0,False,False +34007603505,3625.0,False,False +34007603506,6020.0,False,False +34007603507,6761.0,False,False +34007603601,3540.0,False,False +34007603602,2454.0,False,False +34007603603,2354.0,False,False +34007603700,3669.0,False,False +34007603800,4963.0,False,False +34007603901,5310.0,False,False +34007603902,2668.0,False,False +34007604100,2920.0,True,True +34007604200,3438.0,False,False +34007604300,3828.0,False,False +34007604400,3222.0,False,False +34007604600,2090.0,False,False +34007604700,1874.0,False,False +34007605100,2122.0,False,False +34007605200,2779.0,True,True +34007605300,2004.0,False,False +34007605400,2642.0,False,False +34007605602,2963.0,False,False +34007605700,3255.0,False,False +34007605800,2803.0,False,False +34007605900,2774.0,False,False +34007606000,1937.0,False,False +34007606100,2308.0,False,False +34007606200,3747.0,False,False +34007606300,2330.0,False,False +34007606400,2962.0,False,False +34007606500,2885.0,False,False +34007606600,2412.0,False,False +34007606700,4304.0,False,False +34007606800,3919.0,False,False +34007607000,4494.0,True,True +34007607100,3845.0,False,False +34007607200,4482.0,False,False +34007607300,4272.0,False,False +34007607401,2622.0,False,False +34007607402,2826.0,False,False +34007607502,5491.0,False,False +34007607503,6493.0,False,False +34007607504,3531.0,False,False +34007607505,4131.0,False,False +34007607506,3618.0,False,False +34007607507,5948.0,False,False +34007607600,2169.0,False,False +34007607701,5809.0,True,True +34007607702,3942.0,False,False +34007607801,5221.0,False,False +34007607802,2348.0,False,False +34007607900,1959.0,False,False +34007608001,3455.0,False,False +34007608202,3720.0,False,False +34007608205,3723.0,False,False +34007608206,3607.0,False,False +34007608209,3262.0,False,False +34007608210,3637.0,True,True +34007608211,5836.0,False,False +34007608302,4545.0,False,False +34007608303,2891.0,False,False +34007608304,6277.0,False,False +34007608401,3999.0,False,False +34007608402,3882.0,False,False +34007608403,7490.0,False,False +34007608404,6673.0,False,False +34007608503,2945.0,False,True +34007608504,3244.0,False,False +34007608600,4918.0,True,True +34007608700,7539.0,False,False +34007608800,5553.0,False,False +34007608901,6038.0,False,False +34007608903,3244.0,False,False +34007608904,1420.0,False,False +34007609000,1489.0,True,True +34007609103,5079.0,False,False +34007609201,4474.0,False,False +34007609202,5139.0,False,False +34007609203,9032.0,False,False +34007609204,4375.0,False,True +34007609205,5980.0,False,False +34007610300,1881.0,False,True +34007610400,4992.0,True,True +34007610500,7373.0,True,True +34007610600,1226.0,False,False +34007610800,2727.0,False,True +34007610900,3297.0,False,False +34007611000,6347.0,False,False +34007611100,2985.0,False,False +34007611200,4504.0,False,False +34007611300,4163.0,False,False +34007611400,4258.0,False,False +34007611500,4750.0,False,False +34007611600,4007.0,True,True +34007611700,2955.0,False,False +34009020101,3733.0,False,False +34009020102,2048.0,False,False +34009020201,1506.0,False,False +34009020203,2154.0,False,False +34009020205,849.0,False,False +34009020206,842.0,False,False +34009020301,4520.0,False,False +34009020302,4519.0,False,False +34009020400,2847.0,False,False +34009020500,2341.0,True,True +34009020600,2184.0,True,True +34009020700,4020.0,False,False +34009020800,2147.0,False,False +34009020901,885.0,False,False +34009020902,1406.0,False,False +34009021001,2143.0,False,False +34009021002,3468.0,False,False +34009021100,4617.0,False,False +34009021300,3812.0,False,False +34009021400,3518.0,True,True +34009021500,1909.0,True,True +34009021600,3096.0,False,False +34009021701,2715.0,False,False +34009021702,2375.0,False,False +34009021803,2924.0,False,False +34009021804,5845.0,False,False +34009021805,4458.0,False,False +34009021806,2546.0,False,False +34009021900,2059.0,False,False +34009022000,3463.0,False,False +34009022101,1670.0,False,True +34009022102,6467.0,True,True +34009990100,0.0,False,False +34011010101,2514.0,False,False +34011010103,4970.0,False,False +34011010200,4979.0,True,True +34011010301,3123.0,False,False +34011010302,1107.0,False,False +34011010401,5047.0,False,False +34011010402,1043.0,False,False +34011010500,1611.0,False,False +34011010600,4785.0,False,False +34011010700,7379.0,False,False +34011010800,3053.0,False,False +34011020100,1065.0,True,True +34011020200,3093.0,True,True +34011020300,6188.0,True,True +34011020400,3238.0,True,True +34011020502,1663.0,True,True +34011020503,5390.0,True,True +34011020600,3903.0,False,False +34011030100,855.0,True,True +34011030200,3869.0,True,True +34011030300,3777.0,True,True +34011030400,8713.0,True,True +34011030501,6528.0,False,False +34011030502,3979.0,True,False +34011040300,3371.0,False,True +34011040400,7030.0,False,False +34011040500,5879.0,True,True +34011040600,7357.0,True,True +34011040700,8511.0,True,True +34011040800,5101.0,False,False +34011040901,2760.0,False,False +34011040902,6094.0,True,True +34011041000,8102.0,False,False +34011041100,5829.0,True,True +34011990000,0.0,False,False +34013000100,6296.0,True,True +34013000200,3378.0,True,True +34013000300,3893.0,True,True +34013000400,2104.0,True,True +34013000500,1970.0,True,True +34013000600,3721.0,True,True +34013000700,6165.0,True,True +34013000800,4672.0,True,True +34013000900,3392.0,True,True +34013001000,3503.0,True,True +34013001100,3154.0,False,True +34013001300,1629.0,True,True +34013001400,2816.0,True,True +34013001500,1942.0,True,True +34013001600,1832.0,True,True +34013001700,2156.0,True,True +34013001800,2188.0,True,True +34013001900,1955.0,True,True +34013002000,4231.0,True,True +34013002100,3185.0,False,True +34013002201,8704.0,True,True +34013002202,3385.0,True,True +34013002300,4917.0,False,True +34013002400,2979.0,True,True +34013002500,4590.0,True,True +34013002600,1564.0,True,True +34013002800,1898.0,True,True +34013003100,2092.0,True,True +34013003500,2270.0,True,True +34013003700,1874.0,True,True +34013003800,2218.0,True,True +34013003900,1296.0,True,True +34013004100,3332.0,True,True +34013004200,2214.0,True,True +34013004300,2679.0,True,True +34013004400,1313.0,True,True +34013004500,2981.0,True,True +34013004600,2977.0,True,True +34013004700,4981.0,False,False +34013004801,2279.0,True,True +34013004802,2670.0,True,True +34013004900,3276.0,True,True +34013005000,2774.0,True,True +34013005100,2171.0,True,True +34013005200,1307.0,True,True +34013005300,2290.0,True,True +34013005400,4178.0,True,True +34013005700,2225.0,True,True +34013006200,1696.0,True,True +34013006400,1154.0,False,False +34013006600,1481.0,True,True +34013006700,3955.0,True,True +34013006800,5811.0,False,True +34013006900,4908.0,True,True +34013007000,3765.0,True,True +34013007100,4428.0,True,True +34013007200,3849.0,True,True +34013007300,5438.0,True,True +34013007400,5388.0,True,True +34013007501,4665.0,True,True +34013007502,2573.0,True,True +34013007600,3508.0,True,True +34013007700,2701.0,True,True +34013007800,3600.0,True,True +34013007900,3659.0,True,True +34013008000,2356.0,True,True +34013008100,3714.0,True,True +34013008200,2289.0,True,True +34013008700,3564.0,True,True +34013008800,1852.0,True,True +34013008900,2035.0,True,True +34013009000,1787.0,True,True +34013009100,3116.0,True,True +34013009200,3062.0,True,True +34013009300,5017.0,True,True +34013009400,5973.0,True,True +34013009500,5514.0,True,True +34013009600,5443.0,True,True +34013009700,5297.0,True,True +34013009900,2348.0,True,True +34013010000,2983.0,False,False +34013010100,2668.0,False,True +34013010200,4594.0,True,True +34013010300,3171.0,True,True +34013010400,4740.0,True,True +34013010500,4763.0,True,True +34013010600,4331.0,True,True +34013010700,3561.0,True,True +34013010800,2978.0,True,True +34013010900,2265.0,True,True +34013011100,3921.0,True,True +34013011200,2952.0,True,True +34013011300,4124.0,False,True +34013011400,4369.0,False,False +34013011500,2230.0,False,False +34013011600,3213.0,True,True +34013011700,2813.0,False,True +34013011800,2350.0,False,True +34013011900,1629.0,True,True +34013012000,6126.0,False,True +34013012100,3991.0,False,True +34013012200,5326.0,True,True +34013012300,4598.0,False,True +34013012400,4424.0,True,True +34013012500,3928.0,True,True +34013012600,3064.0,True,True +34013012700,4080.0,False,False +34013012800,3464.0,False,False +34013012900,3652.0,True,True +34013013000,1884.0,False,False +34013013100,2185.0,True,True +34013013200,2156.0,True,True +34013013300,3572.0,True,True +34013013400,3776.0,False,False +34013013500,4296.0,False,False +34013013600,6541.0,False,False +34013013700,4550.0,False,False +34013013800,4393.0,False,False +34013013900,4922.0,False,False +34013014000,3817.0,False,False +34013014100,3511.0,False,False +34013014200,4094.0,False,False +34013014300,5755.0,False,False +34013014400,3488.0,False,False +34013014500,4221.0,False,False +34013014600,4903.0,False,False +34013014700,6392.0,False,False +34013014800,3344.0,False,False +34013014900,4652.0,False,False +34013015000,3311.0,False,False +34013015100,4542.0,False,False +34013015200,4370.0,False,False +34013015300,2569.0,False,False +34013015400,5195.0,False,False +34013015500,4417.0,False,False +34013015600,4440.0,False,False +34013015700,2596.0,True,True +34013015800,4164.0,False,False +34013015900,5660.0,False,True +34013016000,7584.0,False,False +34013016100,3557.0,False,False +34013016200,3265.0,False,False +34013016300,3584.0,False,False +34013016400,3628.0,False,False +34013016500,3740.0,False,False +34013016600,3141.0,False,False +34013016700,2704.0,False,False +34013016800,3591.0,False,False +34013016900,2920.0,False,False +34013017000,2688.0,False,False +34013017100,2299.0,True,True +34013017200,3310.0,False,False +34013017301,5369.0,False,False +34013017302,7790.0,False,False +34013017400,5554.0,False,False +34013017500,6060.0,False,False +34013017600,4880.0,False,False +34013017700,4811.0,True,True +34013017800,3012.0,False,True +34013017900,3705.0,False,False +34013018000,6178.0,False,False +34013018100,2057.0,True,True +34013018200,4176.0,False,False +34013018300,4307.0,True,True +34013018400,1925.0,True,True +34013018600,4555.0,True,True +34013018700,5228.0,True,True +34013018800,4464.0,False,False +34013018900,3772.0,True,True +34013019000,4292.0,False,False +34013019100,4140.0,False,False +34013019200,4642.0,False,False +34013019300,3447.0,False,False +34013019400,2945.0,False,False +34013019500,3810.0,False,False +34013019600,6139.0,False,False +34013019700,6586.0,False,False +34013019800,2743.0,False,False +34013019900,2561.0,False,False +34013020000,5760.0,False,False +34013020100,4957.0,False,False +34013020200,4851.0,False,False +34013020300,4580.0,False,False +34013020400,5298.0,False,False +34013020500,7643.0,False,False +34013020600,5088.0,False,False +34013020700,4473.0,False,False +34013020800,7344.0,False,False +34013020901,2110.0,False,False +34013020902,5834.0,False,False +34013021000,5417.0,False,False +34013021100,4464.0,False,False +34013021200,3556.0,False,False +34013021300,5931.0,False,False +34013021400,6585.0,False,False +34013021601,7486.0,False,False +34013021602,6615.0,False,False +34013021701,3758.0,False,False +34013021702,4211.0,False,False +34013021801,2704.0,False,False +34013021802,3506.0,False,False +34013021803,4648.0,False,False +34013022700,2648.0,True,True +34013022800,1964.0,True,True +34013022900,4255.0,False,True +34013023000,3179.0,True,True +34013023100,2396.0,True,True +34013023200,3413.0,True,True +34013980100,2594.0,True,True +34013980200,1391.0,True,True +34015500100,4169.0,False,False +34015500201,2367.0,False,False +34015500202,4582.0,False,False +34015500203,4202.0,False,False +34015500204,6347.0,False,False +34015500205,3651.0,False,False +34015500300,2959.0,False,False +34015500400,5904.0,True,True +34015500500,4831.0,False,False +34015500600,10488.0,False,False +34015500701,7824.0,False,False +34015500702,5775.0,False,False +34015500703,1342.0,False,False +34015500800,2259.0,False,False +34015500900,2986.0,False,False +34015501001,2135.0,False,False +34015501002,4171.0,True,True +34015501003,3555.0,False,False +34015501101,3820.0,False,False +34015501102,6504.0,False,False +34015501103,5367.0,False,False +34015501104,3344.0,False,False +34015501105,2943.0,False,False +34015501106,3975.0,False,False +34015501107,4495.0,False,False +34015501201,6047.0,False,False +34015501202,4717.0,False,False +34015501203,3044.0,False,False +34015501204,3641.0,False,False +34015501205,2806.0,False,False +34015501206,3877.0,False,False +34015501208,3866.0,False,False +34015501209,7484.0,False,False +34015501210,3452.0,False,False +34015501212,4152.0,False,False +34015501213,4747.0,False,False +34015501301,3570.0,False,False +34015501302,2641.0,False,False +34015501303,2594.0,False,False +34015501402,3259.0,True,True +34015501403,4375.0,False,False +34015501404,3347.0,False,False +34015501405,4275.0,False,False +34015501406,4570.0,False,False +34015501500,8626.0,False,False +34015501603,5768.0,False,False +34015501604,7333.0,False,False +34015501605,4328.0,False,False +34015501606,7623.0,False,False +34015501608,5736.0,False,False +34015501609,6001.0,False,False +34015501701,5246.0,False,False +34015501702,2543.0,False,False +34015501703,4236.0,False,False +34015501704,4415.0,False,False +34015501800,1521.0,False,False +34015501900,4135.0,False,False +34015502001,6140.0,False,False +34015502002,6855.0,False,False +34015502100,3148.0,False,False +34015502200,12549.0,False,False +34015502300,2579.0,False,False +34015502400,5924.0,False,False +34017000100,6029.0,False,True +34017000200,5207.0,True,True +34017000300,4132.0,False,False +34017000400,3669.0,False,False +34017000500,4016.0,False,False +34017000600,5272.0,False,False +34017000700,3032.0,False,True +34017000800,3508.0,False,False +34017000902,6007.0,False,True +34017001000,2060.0,False,True +34017001100,4980.0,False,False +34017001201,2147.0,False,True +34017001202,1377.0,False,True +34017001300,2898.0,False,False +34017001400,4058.0,True,True +34017001701,4533.0,True,True +34017001800,3874.0,True,True +34017001900,1722.0,False,True +34017002000,3990.0,False,True +34017002200,1737.0,False,False +34017002300,2461.0,False,False +34017002400,2562.0,False,False +34017002700,5503.0,True,True +34017002800,5502.0,True,True +34017002900,3744.0,False,True +34017003000,2631.0,True,True +34017003100,5705.0,False,False +34017003500,2107.0,False,False +34017004000,5411.0,False,False +34017004101,6242.0,False,False +34017004102,3211.0,True,True +34017004200,5455.0,True,True +34017004300,2405.0,False,False +34017004400,2532.0,True,True +34017004500,4486.0,True,True +34017004600,2770.0,True,True +34017004700,2487.0,True,True +34017004800,3868.0,False,False +34017004900,3961.0,False,False +34017005200,4570.0,True,True +34017005300,3412.0,True,True +34017005400,7302.0,False,False +34017005500,2941.0,True,True +34017005600,4371.0,False,False +34017005801,5437.0,True,True +34017005802,1642.0,False,False +34017005900,7590.0,False,False +34017006000,4069.0,True,True +34017006100,7249.0,True,True +34017006200,3852.0,True,True +34017006300,4576.0,True,True +34017006400,2837.0,False,False +34017006500,2102.0,False,False +34017006600,1377.0,False,False +34017006700,3155.0,True,True +34017006800,3854.0,True,True +34017006900,68.0,False,False +34017007000,4772.0,False,False +34017007100,2883.0,False,True +34017007200,2445.0,False,False +34017007300,2940.0,False,False +34017007400,5118.0,False,False +34017007500,6264.0,False,False +34017007600,8444.0,False,False +34017007700,9134.0,False,False +34017007800,2245.0,True,True +34017010100,7133.0,True,True +34017010200,2908.0,False,False +34017010300,3147.0,True,True +34017010400,4184.0,False,False +34017010500,5503.0,False,False +34017010600,7383.0,True,True +34017010700,3723.0,True,True +34017010800,3471.0,False,False +34017010900,2174.0,True,True +34017011000,2069.0,False,False +34017011100,4487.0,True,True +34017011200,6269.0,False,False +34017011300,2593.0,False,False +34017011400,3583.0,False,False +34017011500,2601.0,False,False +34017011600,3863.0,True,True +34017012300,2454.0,False,True +34017012400,2796.0,False,False +34017012500,3815.0,False,True +34017012600,3681.0,False,True +34017012700,6350.0,False,False +34017012800,4805.0,False,True +34017012900,3824.0,False,True +34017013000,4038.0,False,True +34017013100,2318.0,True,True +34017013200,4279.0,True,True +34017013300,3052.0,False,True +34017013400,2644.0,False,True +34017013500,5274.0,True,True +34017013600,2220.0,False,True +34017013700,2737.0,True,True +34017013800,3201.0,False,False +34017013900,3781.0,False,False +34017014000,5032.0,False,True +34017014101,4202.0,False,False +34017014102,5096.0,False,True +34017014200,5994.0,False,False +34017014300,4980.0,False,True +34017014400,7752.0,False,False +34017014501,6230.0,True,True +34017014502,3329.0,True,True +34017014600,3820.0,False,False +34017014700,5749.0,False,True +34017014800,6104.0,False,True +34017014900,3331.0,False,False +34017015001,1975.0,False,False +34017015002,6325.0,False,True +34017015100,3017.0,False,True +34017015201,2939.0,False,False +34017015202,6325.0,False,True +34017015300,4010.0,True,True +34017015500,4946.0,True,True +34017015600,4572.0,True,True +34017015700,4209.0,True,True +34017015801,2982.0,False,False +34017015802,6649.0,True,True +34017015900,6054.0,True,True +34017016000,3416.0,False,True +34017016100,3960.0,True,True +34017016200,4286.0,True,True +34017016300,4517.0,True,True +34017016400,3566.0,True,True +34017016500,4989.0,False,True +34017016600,4043.0,True,True +34017016700,1590.0,True,True +34017016800,3687.0,True,True +34017016900,2992.0,True,True +34017017000,5200.0,True,True +34017017100,5017.0,True,True +34017017200,3297.0,True,True +34017017300,2520.0,False,False +34017017400,2489.0,True,True +34017017500,4520.0,True,True +34017017600,3381.0,True,True +34017017700,1758.0,True,True +34017017800,6414.0,False,True +34017017900,3526.0,False,False +34017018000,3942.0,False,False +34017018100,2708.0,False,False +34017018200,4428.0,False,False +34017018301,2637.0,False,False +34017018302,4418.0,False,False +34017018400,5681.0,False,False +34017018500,6923.0,False,False +34017018600,2487.0,False,False +34017018701,2614.0,False,False +34017018702,4056.0,False,False +34017018800,3147.0,False,False +34017018900,3550.0,False,False +34017019000,4688.0,True,True +34017019100,3369.0,False,False +34017019200,3972.0,False,False +34017019300,2876.0,False,False +34017019400,2775.0,False,False +34017019800,7109.0,False,False +34017019900,5474.0,False,False +34017020000,4959.0,False,False +34017020100,2583.0,False,False +34017032400,6560.0,True,True +34017980100,0.0,False,False +34019010100,5812.0,False,False +34019010200,7263.0,False,False +34019010300,2797.0,False,False +34019010400,4610.0,False,False +34019010500,5133.0,False,False +34019010600,6083.0,False,False +34019010701,5560.0,False,False +34019010702,3348.0,False,False +34019010801,2686.0,False,False +34019010802,1856.0,False,False +34019010900,3500.0,False,False +34019011001,7040.0,False,False +34019011002,5747.0,False,False +34019011100,5587.0,False,False +34019011201,7107.0,False,False +34019011202,3203.0,False,False +34019011301,6659.0,False,False +34019011302,7250.0,False,False +34019011303,4661.0,False,False +34019011304,3559.0,False,False +34019011400,4608.0,False,True +34019011500,5216.0,False,False +34019011600,5069.0,False,False +34019011700,3890.0,False,False +34019011800,2757.0,False,False +34019011900,3822.0,False,False +34021000100,3191.0,True,True +34021000200,4065.0,True,True +34021000300,4326.0,True,True +34021000400,4876.0,True,True +34021000500,4641.0,True,True +34021000600,4959.0,True,True +34021000700,3743.0,True,True +34021000800,2282.0,True,True +34021000900,3512.0,True,True +34021001000,2659.0,True,True +34021001101,2511.0,True,True +34021001102,3063.0,True,True +34021001200,3722.0,False,True +34021001300,4488.0,True,True +34021001401,3666.0,True,True +34021001402,2053.0,True,True +34021001500,3102.0,True,True +34021001600,1267.0,True,True +34021001700,3151.0,True,True +34021001800,4484.0,True,True +34021001900,1609.0,True,True +34021002000,1343.0,True,True +34021002100,4591.0,True,True +34021002200,5623.0,True,True +34021002400,485.0,True,True +34021002500,6722.0,True,True +34021002601,4674.0,True,True +34021002602,4425.0,False,False +34021002701,4092.0,False,False +34021002702,5956.0,False,False +34021002800,7177.0,False,True +34021002902,4683.0,False,False +34021002903,3416.0,False,False +34021002904,5011.0,False,False +34021003001,5414.0,False,False +34021003002,5318.0,False,False +34021003003,6122.0,False,False +34021003004,5237.0,False,False +34021003006,5266.0,False,False +34021003007,3200.0,False,False +34021003008,5001.0,False,False +34021003009,5710.0,False,False +34021003100,4381.0,False,False +34021003201,7859.0,False,False +34021003202,5565.0,False,False +34021003301,6863.0,False,False +34021003302,7946.0,False,False +34021003400,2525.0,False,True +34021003500,6905.0,False,False +34021003601,3660.0,False,True +34021003602,3731.0,False,False +34021003703,7096.0,False,False +34021003704,2877.0,False,False +34021003705,5899.0,False,False +34021003706,3344.0,False,False +34021003800,7204.0,False,False +34021003902,1915.0,False,False +34021003903,2531.0,False,False +34021003904,5976.0,False,False +34021003905,4887.0,False,False +34021004000,5881.0,False,False +34021004201,7867.0,False,False +34021004203,3974.0,False,False +34021004204,5209.0,False,False +34021004301,8660.0,False,False +34021004304,7921.0,False,False +34021004306,5618.0,False,False +34021004307,5738.0,False,False +34021004309,4530.0,False,False +34021004310,9835.0,False,False +34021004403,5375.0,False,True +34021004404,6870.0,False,False +34021004405,8453.0,False,False +34021004406,4955.0,False,True +34021004407,6967.0,False,False +34021004501,6762.0,False,False +34021004502,1307.0,False,False +34023000100,7554.0,False,False +34023000200,6108.0,False,True +34023000300,7252.0,False,False +34023000401,3306.0,False,False +34023000403,5538.0,False,False +34023000404,5020.0,False,False +34023000501,4821.0,False,False +34023000502,6063.0,False,False +34023000603,2039.0,False,False +34023000606,7802.0,False,False +34023000608,1568.0,False,False +34023000701,3154.0,False,False +34023000702,5232.0,False,False +34023000801,4033.0,False,False +34023000802,2806.0,False,False +34023000901,2340.0,False,False +34023000902,4597.0,False,False +34023001001,2532.0,False,False +34023001002,7648.0,False,False +34023001100,4443.0,False,False +34023001200,5201.0,False,False +34023001300,4239.0,False,False +34023001409,3427.0,False,False +34023001410,4043.0,False,True +34023001411,3071.0,False,False +34023001412,3362.0,False,False +34023001413,5408.0,False,False +34023001414,5219.0,False,False +34023001415,5105.0,False,False +34023001416,8991.0,False,True +34023001417,1916.0,False,False +34023001502,5964.0,False,False +34023001504,5569.0,False,False +34023001505,2329.0,False,False +34023001506,6375.0,False,False +34023001600,4954.0,False,False +34023001701,5028.0,False,False +34023001702,3594.0,False,False +34023001803,3168.0,False,False +34023001804,4145.0,False,False +34023001805,4761.0,False,False +34023001901,4976.0,False,False +34023001902,2295.0,False,False +34023001903,3489.0,False,False +34023002000,4246.0,False,False +34023002101,2237.0,False,False +34023002102,3877.0,False,False +34023002200,3688.0,False,False +34023002301,3769.0,False,False +34023002302,3685.0,False,False +34023002401,5418.0,False,False +34023002402,1617.0,False,False +34023002500,6449.0,False,False +34023002603,5087.0,False,False +34023002604,5947.0,False,False +34023002605,2897.0,False,False +34023002701,5567.0,False,False +34023002703,5826.0,False,False +34023002805,2536.0,False,False +34023002901,3541.0,False,False +34023002902,2957.0,False,False +34023003001,4068.0,False,False +34023003002,5916.0,False,False +34023003101,2546.0,False,False +34023003102,4710.0,False,False +34023003201,3230.0,False,False +34023003203,3678.0,False,False +34023003300,6074.0,False,False +34023003401,3697.0,False,False +34023003500,3218.0,False,False +34023003600,7266.0,False,False +34023003700,3828.0,False,False +34023003800,8349.0,False,False +34023004000,4164.0,False,False +34023004100,2679.0,False,False +34023004200,2965.0,False,True +34023004300,3661.0,True,True +34023004400,4483.0,False,True +34023004500,8347.0,True,True +34023004600,5731.0,True,True +34023004700,4042.0,True,True +34023004800,5639.0,True,True +34023004900,4981.0,True,True +34023005000,4986.0,True,True +34023005100,6132.0,False,True +34023005200,5175.0,False,True +34023005300,3867.0,True,True +34023005500,3849.0,True,True +34023005601,3154.0,True,True +34023005602,7677.0,True,True +34023005700,5473.0,True,True +34023005800,5107.0,True,True +34023006001,2487.0,False,False +34023006002,7971.0,False,True +34023006101,5906.0,False,True +34023006103,5203.0,False,False +34023006104,3932.0,False,False +34023006203,9920.0,False,False +34023006204,1793.0,False,False +34023006205,6420.0,False,False +34023006206,1708.0,False,False +34023006207,6878.0,False,False +34023006300,6998.0,False,False +34023006403,2768.0,False,False +34023006500,6865.0,False,False +34023006601,2438.0,False,False +34023006604,6743.0,False,False +34023006605,4012.0,False,False +34023006606,2976.0,False,False +34023006607,2875.0,False,False +34023006608,3697.0,False,False +34023006701,3851.0,False,False +34023006703,6104.0,False,False +34023006800,4989.0,False,True +34023006900,3252.0,False,True +34023007000,7760.0,False,False +34023007101,3412.0,False,False +34023007102,5229.0,False,False +34023007103,5157.0,False,True +34023007202,4330.0,False,False +34023007203,4981.0,False,True +34023007301,3232.0,False,False +34023007303,1808.0,False,False +34023007304,6923.0,False,True +34023007402,4865.0,False,False +34023007500,3160.0,False,False +34023007600,5612.0,False,False +34023007702,5922.0,False,False +34023007703,3494.0,False,False +34023007704,2722.0,False,False +34023007801,3227.0,False,False +34023007804,5064.0,False,False +34023007805,4559.0,False,False +34023007806,4152.0,False,False +34023007905,2343.0,False,False +34023007906,1496.0,False,False +34023007907,3130.0,False,False +34023007908,5491.0,False,True +34023007909,4123.0,False,False +34023007910,3127.0,False,False +34023007911,3450.0,False,False +34023007912,6948.0,False,False +34023008001,6534.0,False,False +34023008101,4496.0,False,False +34023008102,3773.0,False,False +34023008103,2475.0,False,False +34023008202,14701.0,False,False +34023008204,4608.0,False,False +34023008205,3401.0,False,False +34023008206,3415.0,False,False +34023008207,2631.0,False,False +34023008208,11941.0,False,False +34023008209,3609.0,False,False +34023008300,5921.0,False,False +34023008403,7882.0,False,False +34023008404,3843.0,False,False +34023008405,4728.0,False,False +34023008406,2263.0,False,False +34023008501,5875.0,False,False +34023008502,5282.0,False,False +34023008503,8954.0,False,False +34023008504,6573.0,False,False +34023008601,5105.0,False,False +34023008602,5157.0,False,False +34023008604,5975.0,False,False +34023008605,2606.0,False,False +34023008606,4185.0,False,False +34023008700,3649.0,False,False +34023008800,12341.0,False,False +34023008900,4251.0,False,False +34023009000,7199.0,True,True +34023009100,3610.0,False,False +34023009200,4355.0,False,False +34023009300,5068.0,True,True +34023009400,5490.0,False,False +34025800100,4768.0,False,False +34025800200,4309.0,False,False +34025800400,3386.0,False,False +34025800500,4617.0,False,False +34025800601,5142.0,False,False +34025800602,3098.0,False,False +34025800701,4923.0,False,False +34025800702,3726.0,False,False +34025800800,6266.0,False,False +34025800900,5626.0,False,False +34025801000,4328.0,False,False +34025801100,4295.0,False,False +34025801200,3709.0,False,False +34025801300,5836.0,False,False +34025801400,3964.0,False,False +34025801500,6405.0,False,False +34025801600,5564.0,False,False +34025801700,4171.0,True,True +34025801800,5390.0,False,False +34025801900,3435.0,False,False +34025802000,3599.0,False,False +34025802100,6325.0,False,False +34025802200,3870.0,False,False +34025802300,4409.0,False,False +34025802400,5240.0,False,False +34025802500,2892.0,False,False +34025802600,4679.0,False,False +34025802700,4090.0,False,False +34025802800,4808.0,False,False +34025802900,2071.0,False,False +34025803000,5422.0,False,False +34025803100,3325.0,False,False +34025803201,3865.0,False,False +34025803202,5981.0,False,False +34025803300,6763.0,False,False +34025803400,5000.0,True,True +34025803500,2594.0,False,False +34025803600,4478.0,False,False +34025803700,5873.0,False,False +34025803800,3209.0,False,False +34025803900,3583.0,False,False +34025804100,3212.0,False,False +34025804200,5844.0,False,False +34025804500,5289.0,False,False +34025804600,2723.0,False,False +34025804700,36.0,False,False +34025804800,9584.0,False,False +34025805001,4724.0,False,False +34025805100,4380.0,False,False +34025805300,5593.0,False,False +34025805400,4912.0,False,False +34025805500,4363.0,False,True +34025805600,2478.0,True,True +34025805700,2905.0,True,True +34025805800,3756.0,True,True +34025805900,5259.0,False,True +34025806000,3767.0,False,False +34025806100,3076.0,False,False +34025806201,3559.0,False,False +34025806202,4349.0,False,False +34025806300,2365.0,False,False +34025806400,4904.0,False,False +34025806501,3919.0,False,False +34025806502,3428.0,False,False +34025806503,3973.0,False,False +34025806504,2736.0,False,True +34025806600,5384.0,False,False +34025807003,4418.0,True,True +34025807004,2677.0,False,False +34025807100,2630.0,False,False +34025807200,2304.0,True,True +34025807300,3568.0,True,True +34025807400,3047.0,False,False +34025807500,3093.0,False,False +34025807600,3037.0,True,True +34025807700,4192.0,False,False +34025807800,4253.0,False,False +34025807900,3908.0,False,False +34025808001,3815.0,False,False +34025808002,2218.0,False,False +34025808100,4672.0,False,False +34025808200,4193.0,False,False +34025808300,1789.0,False,False +34025808401,1951.0,False,False +34025808402,3673.0,False,False +34025808500,5995.0,False,False +34025808600,6182.0,False,False +34025808701,4815.0,False,False +34025808702,4285.0,False,False +34025808800,4468.0,False,False +34025808900,4564.0,False,False +34025809000,1740.0,False,False +34025809100,2927.0,False,False +34025809200,1655.0,False,False +34025809301,3088.0,False,False +34025809302,2741.0,False,False +34025809400,4697.0,False,False +34025809501,8546.0,False,False +34025809502,8372.0,False,False +34025809600,7271.0,False,False +34025809701,5310.0,False,False +34025809703,4400.0,False,False +34025809704,6083.0,False,False +34025809901,4972.0,False,False +34025809902,4658.0,False,False +34025809903,265.0,True,True +34025810001,5869.0,False,False +34025810002,3635.0,False,True +34025810003,5298.0,False,False +34025810004,4083.0,False,False +34025810101,4266.0,False,False +34025810102,4185.0,False,False +34025810200,12366.0,False,False +34025810300,2119.0,False,False +34025810401,4428.0,False,False +34025810402,7803.0,False,False +34025810501,4415.0,False,False +34025810502,8014.0,False,False +34025810503,4066.0,False,False +34025810600,6219.0,False,False +34025810700,1958.0,False,False +34025810800,3349.0,False,False +34025810900,2917.0,False,True +34025811000,3573.0,True,True +34025811101,5625.0,False,False +34025811102,6489.0,False,False +34025811200,5852.0,False,False +34025811301,6260.0,False,False +34025811303,4344.0,False,False +34025811304,3336.0,False,False +34025811401,5923.0,False,False +34025811402,4114.0,False,False +34025811501,6414.0,False,False +34025811502,3602.0,False,False +34025811600,1299.0,False,False +34025811900,6940.0,False,False +34025812000,1892.0,False,False +34025812100,1352.0,False,False +34025812200,3242.0,False,False +34025812300,5118.0,False,False +34025812400,1973.0,False,False +34025812501,6215.0,False,False +34025812502,5082.0,False,False +34025990000,0.0,False,False +34027040101,3931.0,False,False +34027040102,6331.0,False,False +34027040200,6767.0,False,False +34027040300,8424.0,False,False +34027040400,4197.0,False,False +34027040500,3394.0,False,False +34027040600,4285.0,False,False +34027040701,5864.0,False,False +34027040702,4190.0,False,False +34027040801,5065.0,False,False +34027040803,6573.0,False,False +34027040804,3704.0,False,False +34027040805,6029.0,False,False +34027040900,4292.0,False,False +34027041000,4503.0,False,False +34027041100,3895.0,False,False +34027041200,4270.0,False,False +34027041300,4932.0,False,False +34027041400,5769.0,False,False +34027041500,5905.0,False,False +34027041601,7501.0,False,False +34027041602,2586.0,False,False +34027041603,4321.0,False,False +34027041604,4670.0,False,False +34027041701,5933.0,False,False +34027041702,3184.0,False,False +34027041704,4733.0,False,False +34027041705,1551.0,False,True +34027041706,5706.0,False,False +34027041801,2815.0,False,False +34027041802,4751.0,False,False +34027041803,4656.0,False,False +34027041901,6078.0,False,False +34027041902,4994.0,False,False +34027042000,4689.0,False,False +34027042100,4121.0,False,False +34027042200,5589.0,False,False +34027042301,2601.0,False,False +34027042302,3147.0,False,False +34027042500,3264.0,False,False +34027042600,8359.0,False,False +34027042700,4077.0,False,False +34027042800,4739.0,False,False +34027042900,3778.0,False,False +34027043000,4707.0,False,False +34027043100,3557.0,False,False +34027043200,4335.0,False,False +34027043301,3015.0,False,False +34027043302,3018.0,False,False +34027043303,3633.0,False,False +34027043401,7307.0,False,False +34027043402,5295.0,False,False +34027043500,3528.0,True,True +34027043600,5576.0,False,False +34027043700,3698.0,False,False +34027043800,6107.0,False,False +34027043900,4727.0,False,False +34027044000,5572.0,False,False +34027044101,2986.0,False,False +34027044102,5604.0,False,False +34027044200,3806.0,False,False +34027044300,6384.0,False,False +34027044401,4667.0,False,False +34027044403,5127.0,False,False +34027044404,4421.0,False,False +34027044501,6608.0,False,False +34027044502,4246.0,False,False +34027044601,4856.0,False,False +34027044602,5485.0,False,False +34027044701,4727.0,False,False +34027044702,5967.0,False,False +34027044800,7391.0,False,True +34027044900,5656.0,False,True +34027045000,4930.0,True,True +34027045100,6474.0,False,True +34027045200,3530.0,False,False +34027045300,4458.0,False,False +34027045401,5637.0,False,False +34027045402,5071.0,False,False +34027045501,4809.0,False,False +34027045502,8618.0,False,False +34027045602,1505.0,True,True +34027045603,4949.0,False,False +34027045701,5883.0,False,False +34027045703,3672.0,False,False +34027045704,5384.0,False,False +34027045804,5755.0,False,False +34027045901,1653.0,False,False +34027045902,7783.0,False,False +34027046000,3177.0,False,False +34027046103,5942.0,False,False +34027046104,6968.0,False,False +34027046105,7669.0,False,False +34027046106,8336.0,False,False +34027046201,6166.0,False,False +34027046202,3617.0,False,False +34027046297,3420.0,False,False +34027046298,5226.0,False,False +34027046300,5661.0,False,False +34027046400,4917.0,False,False +34029710100,4537.0,False,False +34029711100,4260.0,False,False +34029711200,4505.0,False,False +34029711300,4084.0,False,False +34029711400,5749.0,False,False +34029712000,1444.0,False,False +34029713000,4636.0,False,False +34029713100,6412.0,False,False +34029713201,2447.0,False,False +34029713202,3967.0,False,False +34029713203,5063.0,False,False +34029713300,3909.0,False,False +34029713401,5006.0,False,False +34029713402,3155.0,False,False +34029713500,2784.0,False,False +34029713600,3594.0,False,False +34029713700,2590.0,False,False +34029713800,3540.0,False,False +34029713900,6559.0,False,False +34029714000,6364.0,False,False +34029714100,3364.0,False,False +34029714200,7586.0,False,False +34029714300,3520.0,False,False +34029714400,846.0,False,False +34029715000,11055.0,True,False +34029715200,12485.0,True,True +34029715301,8814.0,False,True +34029715302,6483.0,True,True +34029715401,5300.0,True,True +34029715402,5689.0,True,True +34029715500,13888.0,True,True +34029715600,8643.0,True,True +34029715700,10735.0,True,True +34029715800,8681.0,True,True +34029715901,2459.0,False,False +34029715902,4547.0,False,False +34029716000,3687.0,False,False +34029717001,3156.0,False,False +34029717002,5521.0,False,False +34029717101,8459.0,False,False +34029717102,4750.0,False,False +34029717200,8472.0,False,False +34029717300,5761.0,False,False +34029717400,6045.0,False,False +34029717501,7200.0,False,False +34029717502,7560.0,False,False +34029718000,8513.0,False,False +34029720001,4215.0,False,False +34029720101,6655.0,False,True +34029720102,3584.0,True,True +34029720103,4775.0,True,True +34029720202,3535.0,False,False +34029720203,4117.0,False,False +34029720204,5637.0,False,False +34029720205,3311.0,False,False +34029720206,6077.0,False,False +34029721000,2684.0,False,False +34029722001,5177.0,False,False +34029722002,8750.0,False,False +34029722100,6357.0,False,False +34029722200,2398.0,False,True +34029722300,3939.0,False,False +34029722401,5186.0,False,False +34029722402,3803.0,False,False +34029722500,1756.0,False,False +34029722600,2752.0,False,False +34029722701,4672.0,False,False +34029722702,4196.0,False,False +34029722800,4634.0,False,False +34029722900,5691.0,False,False +34029723000,5741.0,False,False +34029723100,4068.0,False,False +34029723200,6453.0,False,False +34029723300,7511.0,False,False +34029723400,3319.0,False,False +34029723500,2258.0,False,False +34029723600,2349.0,False,False +34029724000,3648.0,False,False +34029725001,3092.0,False,False +34029725002,6155.0,False,False +34029725100,1979.0,False,False +34029726000,1497.0,False,False +34029727001,2155.0,False,False +34029727002,1315.0,False,False +34029728000,5229.0,False,False +34029729000,1601.0,False,False +34029730000,2278.0,False,False +34029731001,3322.0,False,False +34029731002,3685.0,False,False +34029731101,3304.0,False,False +34029731102,6560.0,False,False +34029731103,4538.0,False,False +34029731201,4361.0,True,True +34029731202,4067.0,False,True +34029731203,1650.0,False,False +34029731204,3755.0,False,False +34029731205,3638.0,True,True +34029731206,2226.0,True,True +34029732001,6699.0,False,False +34029732002,9229.0,False,False +34029732101,6345.0,False,False +34029732103,2439.0,False,False +34029732104,4092.0,False,False +34029733000,9003.0,False,False +34029734001,8253.0,False,False +34029734002,6514.0,False,False +34029734003,7987.0,False,False +34029735001,7085.0,False,False +34029735002,9770.0,False,False +34029735101,2592.0,True,True +34029735103,3994.0,False,False +34029735104,3906.0,False,False +34029736001,3723.0,False,False +34029736002,1583.0,False,False +34029736101,5883.0,False,False +34029736102,8049.0,False,False +34029736105,3472.0,False,False +34029737000,3367.0,False,False +34029738001,2128.0,False,False +34029738002,1298.0,False,False +34029738100,1564.0,False,False +34029739000,2320.0,False,False +34029739100,1641.0,False,True +34029980000,0.0,False,False +34029980100,0.0,False,False +34029990000,0.0,False,False +34031116500,8088.0,False,False +34031124200,7738.0,False,False +34031124311,4909.0,False,False +34031124312,3989.0,False,False +34031124321,5846.0,False,True +34031124322,4387.0,False,False +34031124323,3241.0,False,False +34031124401,7946.0,False,False +34031124402,5288.0,False,False +34031124500,5989.0,False,False +34031124601,4636.0,False,False +34031124602,4804.0,False,False +34031124700,6144.0,False,False +34031124800,4599.0,False,True +34031124900,4954.0,True,True +34031125000,6802.0,False,True +34031125100,3932.0,True,True +34031133701,5043.0,False,False +34031133702,3282.0,False,True +34031143200,6418.0,False,False +34031143300,5490.0,False,False +34031143400,6876.0,False,False +34031154001,6146.0,False,False +34031154002,8337.0,False,False +34031163500,8437.0,False,False +34031175200,5082.0,True,True +34031175301,3629.0,True,True +34031175302,4302.0,True,True +34031175401,5875.0,True,True +34031175402,4491.0,True,True +34031175500,7396.0,True,True +34031175601,2517.0,False,False +34031175602,7673.0,False,False +34031175701,5345.0,False,True +34031175703,4336.0,False,True +34031175704,4138.0,False,True +34031175801,3832.0,True,True +34031175802,6812.0,True,True +34031175900,4591.0,True,True +34031180100,7749.0,False,True +34031180201,3874.0,False,False +34031180202,7176.0,True,True +34031180300,6355.0,True,True +34031180600,4798.0,True,True +34031180700,2517.0,True,True +34031180800,3176.0,True,True +34031180900,3662.0,True,True +34031181000,4947.0,True,True +34031181100,6515.0,True,True +34031181200,4886.0,True,True +34031181300,5222.0,True,True +34031181400,3183.0,True,True +34031181500,3078.0,True,True +34031181702,2712.0,True,True +34031181800,2822.0,True,True +34031181900,4854.0,True,True +34031182000,1477.0,True,True +34031182100,3684.0,True,True +34031182200,3410.0,True,True +34031182301,1544.0,True,True +34031182302,5973.0,True,True +34031182400,4900.0,True,True +34031182500,7309.0,False,True +34031182600,5191.0,False,False +34031182700,6824.0,True,True +34031182800,3648.0,True,True +34031182900,1895.0,True,True +34031183000,6734.0,True,True +34031183101,3135.0,False,True +34031183102,4876.0,True,True +34031183200,3042.0,True,True +34031196401,4137.0,False,False +34031196402,6892.0,False,False +34031203600,5865.0,True,True +34031216701,6936.0,False,False +34031216702,5315.0,False,False +34031223801,3053.0,False,False +34031223802,7567.0,False,False +34031223900,208.0,True,True +34031236601,4547.0,False,False +34031236602,7162.0,False,False +34031246001,6166.0,False,False +34031246002,2981.0,False,False +34031246003,5790.0,False,False +34031246101,6598.0,False,False +34031246102,3003.0,False,False +34031246103,6378.0,False,False +34031246104,3135.0,False,False +34031246201,6345.0,False,False +34031246202,4995.0,False,False +34031246203,3739.0,False,False +34031246300,4824.0,False,False +34031256801,5503.0,False,False +34031256802,3624.0,False,False +34031256803,5234.0,False,False +34031256804,6766.0,False,False +34031256805,5277.0,False,False +34031264101,6024.0,False,False +34031264102,6523.0,False,False +34031264200,4542.0,True,True +34033020100,1760.0,False,False +34033020200,2063.0,True,True +34033020300,2753.0,True,True +34033020400,2769.0,False,False +34033020500,2665.0,False,False +34033020600,2300.0,False,False +34033020700,4011.0,False,False +34033020800,3456.0,False,False +34033020900,3373.0,False,False +34033021000,1436.0,False,False +34033021101,4650.0,False,False +34033021102,4248.0,False,False +34033021201,3220.0,False,False +34033021202,2278.0,False,False +34033021300,1885.0,False,False +34033021400,3255.0,False,False +34033021500,1901.0,False,False +34033021600,5411.0,False,False +34033021700,2004.0,False,False +34033021900,1382.0,True,True +34033022000,1897.0,True,True +34033022100,1502.0,True,True +34033022201,1719.0,False,False +34033022202,1052.0,False,False +34033990000,0.0,False,False +34035050100,2651.0,False,False +34035050200,2720.0,False,False +34035050300,3542.0,False,False +34035050400,3172.0,False,False +34035050500,3951.0,False,False +34035050600,3914.0,False,False +34035050701,4181.0,False,False +34035050703,4846.0,False,False +34035050704,6771.0,False,False +34035050801,3841.0,False,False +34035050802,4387.0,False,False +34035050901,4632.0,False,False +34035050902,3701.0,False,False +34035050903,5146.0,False,False +34035051000,6962.0,False,False +34035051100,3193.0,False,True +34035051200,5156.0,False,True +34035051300,1939.0,False,False +34035051400,3761.0,False,False +34035051500,3172.0,True,True +34035051600,3297.0,False,False +34035051700,4760.0,False,False +34035051800,4074.0,False,False +34035051900,3671.0,False,False +34035052001,4049.0,False,False +34035052002,4947.0,False,False +34035052100,7114.0,False,False +34035052201,5497.0,False,False +34035052203,5307.0,False,False +34035052204,4916.0,False,False +34035052300,6039.0,False,False +34035052400,5617.0,False,False +34035052601,9130.0,False,False +34035052603,4093.0,False,False +34035052700,7678.0,False,False +34035052800,2575.0,False,False +34035052901,860.0,False,False +34035052903,5962.0,False,False +34035052904,2083.0,False,False +34035053000,4534.0,False,False +34035053102,3857.0,False,False +34035053103,5972.0,False,False +34035053105,7362.0,False,False +34035053200,7098.0,False,False +34035053300,5233.0,False,False +34035053402,6614.0,False,False +34035053403,4529.0,False,False +34035053404,10682.0,False,False +34035053501,4671.0,False,False +34035053602,6091.0,False,False +34035053603,4872.0,False,False +34035053604,3517.0,False,False +34035053703,3546.0,False,False +34035053704,2846.0,False,False +34035053705,6050.0,False,False +34035053706,5114.0,False,False +34035053707,3781.0,False,False +34035053801,498.0,False,False +34035053803,8992.0,False,False +34035053804,5175.0,False,False +34035053805,4038.0,False,False +34035053901,636.0,False,False +34035053904,3529.0,False,False +34035053905,6591.0,False,False +34035054100,8242.0,False,False +34035054201,6966.0,False,False +34035054202,5959.0,False,False +34035054300,9536.0,False,False +34037371000,3681.0,False,False +34037371100,3913.0,False,False +34037371200,1870.0,False,True +34037371300,3284.0,False,False +34037371400,2891.0,False,False +34037371502,5135.0,False,False +34037371503,2910.0,False,False +34037371600,2723.0,False,False +34037371700,5273.0,False,False +34037371800,7012.0,False,False +34037371900,2005.0,False,False +34037372000,2919.0,False,False +34037372100,1960.0,False,False +34037372200,1962.0,False,False +34037372300,4164.0,False,False +34037372400,2328.0,False,False +34037372500,3152.0,False,False +34037372600,4697.0,False,False +34037372700,3148.0,False,False +34037372800,1740.0,False,False +34037372900,3038.0,False,False +34037373000,2317.0,False,False +34037373100,6007.0,False,False +34037373200,3522.0,False,False +34037373300,3155.0,False,False +34037373400,6036.0,False,False +34037373500,3601.0,False,False +34037373600,2937.0,False,False +34037373700,4165.0,False,False +34037373800,3745.0,False,False +34037373900,3911.0,False,False +34037374000,3197.0,False,False +34037374100,3484.0,False,False +34037374200,2281.0,False,False +34037374300,3436.0,False,False +34037374400,2257.0,False,False +34037374500,1782.0,False,False +34037374600,3346.0,False,False +34037374700,3762.0,False,False +34037374800,4030.0,False,False +34037374900,4707.0,False,False +34039030200,3170.0,True,True +34039030400,5644.0,True,True +34039030500,5083.0,True,True +34039030600,3533.0,True,True +34039030701,1874.0,False,True +34039030702,7851.0,True,True +34039030802,3205.0,False,True +34039030900,6193.0,True,True +34039031000,3588.0,True,True +34039031100,5899.0,True,True +34039031200,6418.0,True,True +34039031300,7031.0,True,True +34039031400,5470.0,True,True +34039031500,5465.0,False,True +34039031601,3787.0,True,True +34039031602,5260.0,True,True +34039031700,5639.0,True,True +34039031801,5255.0,True,True +34039031802,3316.0,True,True +34039031903,6629.0,True,True +34039031904,2822.0,True,True +34039032001,7741.0,False,True +34039032002,3849.0,False,True +34039032100,6977.0,False,True +34039032200,5844.0,False,False +34039032300,2636.0,False,False +34039032400,7240.0,False,True +34039032500,6208.0,False,False +34039032600,5376.0,False,False +34039032700,8242.0,False,False +34039032800,4894.0,False,False +34039032901,4052.0,False,False +34039032902,5063.0,False,False +34039033000,4480.0,False,False +34039033100,6081.0,False,False +34039033200,3784.0,False,False +34039033300,4318.0,False,False +34039033400,3548.0,False,False +34039033500,8459.0,False,False +34039033600,8161.0,False,False +34039033700,4663.0,False,False +34039033800,5720.0,False,False +34039033900,3198.0,False,False +34039034000,6076.0,False,False +34039034100,3309.0,False,True +34039034200,3901.0,False,False +34039034300,3828.0,False,False +34039034400,4523.0,True,True +34039034500,4430.0,False,True +34039034600,4524.0,False,True +34039034700,4029.0,False,False +34039034800,4801.0,False,False +34039034900,6064.0,False,False +34039035000,3087.0,False,False +34039035100,4169.0,True,True +34039035200,2581.0,False,True +34039035300,5729.0,False,False +34039035400,2808.0,False,True +34039035500,7085.0,False,False +34039035600,3692.0,False,False +34039035700,5698.0,False,False +34039035800,3861.0,True,True +34039035900,3950.0,False,False +34039036000,5257.0,False,False +34039036100,1623.0,False,False +34039036200,6461.0,False,False +34039036301,5297.0,False,False +34039036302,3990.0,False,False +34039036400,6936.0,False,False +34039036500,5720.0,False,False +34039036600,4126.0,False,False +34039036700,5609.0,False,False +34039036800,7486.0,False,False +34039036900,4338.0,False,False +34039037000,5985.0,False,False +34039037100,4306.0,False,False +34039037200,4496.0,False,False +34039037300,4563.0,False,False +34039037400,4664.0,False,False +34039037500,6005.0,False,False +34039037601,4417.0,False,False +34039037602,6984.0,False,False +34039037700,4780.0,False,False +34039037800,5854.0,False,False +34039037900,5476.0,False,False +34039038000,5803.0,False,False +34039038101,4144.0,False,False +34039038102,8905.0,False,False +34039038201,6250.0,False,False +34039038202,7060.0,False,False +34039038300,6826.0,False,False +34039038400,6272.0,False,False +34039038500,5775.0,False,False +34039038601,8021.0,False,False +34039038602,4137.0,False,False +34039038700,7660.0,False,False +34039038800,4776.0,True,True +34039038900,5893.0,True,True +34039039000,3885.0,True,True +34039039100,3163.0,False,False +34039039200,5726.0,True,True +34039039300,6378.0,True,True +34039039400,4714.0,True,True +34039039500,5748.0,True,True +34039039600,4645.0,True,True +34039039700,5434.0,False,False +34039039800,4887.0,True,True +34039039900,1747.0,True,True +34041030600,3706.0,False,False +34041030700,4575.0,True,True +34041030800,3083.0,True,False +34041030900,2980.0,True,True +34041031101,5732.0,False,False +34041031102,3891.0,False,False +34041031200,7512.0,False,False +34041031301,5450.0,False,False +34041031302,4597.0,False,False +34041031401,4702.0,False,False +34041031402,4783.0,False,False +34041031500,7397.0,False,False +34041031601,4696.0,False,False +34041031602,2431.0,False,False +34041031700,2590.0,False,False +34041031800,2737.0,False,False +34041031900,6395.0,False,False +34041032000,6490.0,False,False +34041032101,3050.0,False,False +34041032102,5480.0,False,False +34041032200,8295.0,False,False +34041032300,3208.0,False,False +34041032400,2082.0,False,False +35001000107,2448.0,False,False +35001000108,2930.0,False,False +35001000109,2443.0,False,False +35001000110,3884.0,True,False +35001000111,3042.0,False,False +35001000112,2011.0,False,False +35001000113,3463.0,True,False +35001000114,3173.0,False,False +35001000115,3329.0,True,False +35001000116,2890.0,False,False +35001000117,2514.0,True,False +35001000118,2373.0,False,False +35001000119,1809.0,False,False +35001000120,2998.0,False,False +35001000121,5712.0,False,False +35001000122,4448.0,False,False +35001000123,4290.0,False,False +35001000124,3971.0,False,False +35001000125,3925.0,False,False +35001000126,2480.0,False,False +35001000127,2754.0,False,False +35001000128,3844.0,True,False +35001000129,3940.0,True,True +35001000203,1916.0,True,True +35001000204,3214.0,False,False +35001000205,3398.0,True,True +35001000206,2929.0,False,False +35001000207,2741.0,False,False +35001000208,2787.0,True,True +35001000300,6230.0,False,False +35001000401,4193.0,False,False +35001000402,3476.0,False,False +35001000501,3158.0,True,True +35001000502,4612.0,False,False +35001000601,3982.0,False,False +35001000603,4469.0,True,True +35001000604,4180.0,True,True +35001000704,3368.0,False,False +35001000707,6774.0,True,False +35001000708,6415.0,True,True +35001000710,7213.0,False,False +35001000711,4824.0,False,False +35001000712,4107.0,True,True +35001000713,5610.0,True,True +35001000714,5201.0,False,False +35001000801,3963.0,False,False +35001000901,7168.0,True,True +35001000903,5659.0,True,True +35001000904,4355.0,True,True +35001001101,4713.0,False,False +35001001102,3094.0,True,True +35001001200,7108.0,True,True +35001001300,4236.0,True,True +35001001400,2641.0,True,True +35001001500,2097.0,True,True +35001001600,2456.0,False,False +35001001700,4578.0,False,False +35001001800,2010.0,False,False +35001001900,1036.0,False,False +35001002000,2094.0,True,True +35001002100,1422.0,True,True +35001002200,2949.0,False,False +35001002300,8941.0,True,True +35001002401,4851.0,True,True +35001002402,7751.0,True,True +35001002500,2796.0,True,True +35001002600,1057.0,False,False +35001002700,4085.0,True,True +35001002900,4314.0,False,False +35001003001,5227.0,False,False +35001003002,4261.0,False,False +35001003100,2564.0,False,False +35001003201,2603.0,True,True +35001003202,4950.0,True,True +35001003400,4521.0,True,True +35001003501,6043.0,True,True +35001003502,5239.0,False,False +35001003600,7562.0,False,False +35001003707,4665.0,False,False +35001003712,4812.0,False,False +35001003714,7238.0,True,True +35001003715,3741.0,False,False +35001003717,5264.0,False,False +35001003718,2557.0,False,False +35001003719,5546.0,False,False +35001003721,6967.0,False,False +35001003722,6658.0,False,False +35001003723,5770.0,False,False +35001003724,3161.0,False,False +35001003725,4154.0,False,False +35001003726,2415.0,False,False +35001003728,4244.0,False,False +35001003729,2070.0,False,False +35001003730,4428.0,False,False +35001003731,3957.0,False,False +35001003732,6938.0,False,False +35001003733,3611.0,True,True +35001003735,7007.0,False,False +35001003736,2365.0,True,True +35001003737,2745.0,False,False +35001003738,4740.0,False,False +35001003803,3502.0,False,False +35001003804,5873.0,False,False +35001003805,2492.0,False,False +35001003806,3438.0,False,False +35001003807,4767.0,False,False +35001004001,5112.0,True,True +35001004300,5321.0,True,True +35001004401,3193.0,True,True +35001004402,4080.0,False,False +35001004501,3752.0,True,True +35001004502,4163.0,True,True +35001004602,4017.0,True,True +35001004603,4037.0,False,False +35001004604,5322.0,True,True +35001004712,6895.0,True,True +35001004713,6679.0,True,True +35001004715,4673.0,True,True +35001004716,1919.0,True,True +35001004717,7440.0,False,False +35001004720,3785.0,False,False +35001004722,5102.0,False,False +35001004723,6876.0,False,False +35001004724,3076.0,False,False +35001004725,4135.0,False,False +35001004726,2345.0,False,False +35001004727,1843.0,False,False +35001004728,5344.0,False,False +35001004729,4026.0,False,False +35001004733,7071.0,True,True +35001004734,6573.0,True,True +35001004735,2028.0,True,True +35001004736,1638.0,True,True +35001004737,8365.0,True,True +35001004738,6311.0,True,True +35001004739,7213.0,True,True +35001004740,7203.0,False,False +35001004741,7253.0,True,True +35001004742,6014.0,False,False +35001004743,4211.0,False,False +35001004744,6251.0,False,False +35001004745,6238.0,False,False +35001004746,8365.0,False,False +35001004747,5256.0,False,False +35001004748,10224.0,False,False +35001004749,4536.0,True,True +35001004750,6459.0,False,False +35001004751,4112.0,False,False +35001004752,4020.0,False,False +35001004753,4171.0,False,False +35001940500,3024.0,False,False +35001940600,12444.0,False,False +35001940700,2806.0,True,True +35003976400,3526.0,True,True +35005000201,3306.0,True,True +35005000202,3700.0,True,True +35005000300,6669.0,True,True +35005000400,4803.0,True,True +35005000500,2029.0,True,True +35005000600,4719.0,True,True +35005000700,4553.0,True,True +35005000800,5830.0,True,True +35005000900,3118.0,False,False +35005001001,5560.0,False,False +35005001002,4536.0,False,False +35005001101,5488.0,True,True +35005001102,3890.0,True,True +35005001200,1490.0,True,True +35005001300,3073.0,True,True +35005001400,2380.0,True,True +35006941500,2788.0,True,True +35006945800,2287.0,True,True +35006946100,3989.0,True,True +35006974201,5413.0,True,True +35006974202,2599.0,True,True +35006974400,4580.0,True,True +35006974700,5235.0,True,True +35007950500,3710.0,True,True +35007950600,3297.0,True,True +35007950700,5161.0,True,True +35009000100,5158.0,True,True +35009000201,4563.0,False,False +35009000202,3929.0,True,False +35009000301,6109.0,True,True +35009000303,5018.0,False,False +35009000304,5711.0,False,False +35009000400,4047.0,True,True +35009000500,2272.0,True,True +35009000601,1143.0,False,False +35009000602,5353.0,False,False +35009000603,3954.0,True,False +35009000900,2475.0,False,False +35011960100,2040.0,True,True +35013000102,4123.0,False,False +35013000103,4793.0,True,True +35013000104,4791.0,False,False +35013000201,5267.0,True,True +35013000202,6220.0,False,False +35013000300,3389.0,False,False +35013000401,2633.0,True,True +35013000402,5212.0,True,True +35013000500,2131.0,True,True +35013000600,2534.0,True,True +35013000700,5750.0,True,True +35013000800,3573.0,True,True +35013000900,6779.0,True,True +35013001000,2945.0,False,False +35013001102,3019.0,False,False +35013001103,4224.0,False,False +35013001104,5169.0,True,True +35013001201,16968.0,False,False +35013001203,4607.0,True,True +35013001204,4140.0,False,False +35013001205,4624.0,False,False +35013001303,7796.0,False,False +35013001304,8308.0,True,True +35013001305,5084.0,True,True +35013001306,12646.0,False,False +35013001307,7154.0,True,True +35013001400,5206.0,True,True +35013001500,6601.0,False,False +35013001600,2572.0,True,True +35013001701,9552.0,True,True +35013001702,1426.0,True,True +35013001703,3598.0,False,False +35013001705,3054.0,True,True +35013001706,4158.0,True,True +35013001707,5832.0,True,True +35013001801,5917.0,True,True +35013001802,6752.0,True,True +35013001804,6739.0,True,True +35013001805,3644.0,True,True +35013001806,5893.0,True,True +35013001900,1246.0,True,True +35015000100,1594.0,True,True +35015000200,6079.0,False,False +35015000300,6065.0,False,False +35015000401,3613.0,False,False +35015000402,4240.0,True,True +35015000500,3163.0,True,True +35015000600,6391.0,False,False +35015000700,6182.0,False,False +35015000800,1919.0,True,True +35015000900,5186.0,False,False +35015001000,6553.0,True,True +35015001100,6747.0,True,True +35017964100,2231.0,True,True +35017964200,1761.0,False,False +35017964300,6832.0,False,False +35017964400,4122.0,True,True +35017964500,2657.0,True,True +35017964600,2962.0,True,True +35017964700,5391.0,True,True +35017964800,1713.0,True,True +35019961600,4353.0,False,True +35021000100,441.0,True,True +35023970000,1926.0,True,True +35023970200,2371.0,True,True +35025000100,3572.0,True,True +35025000200,3995.0,True,True +35025000300,4042.0,True,True +35025000400,3415.0,True,True +35025000502,7152.0,True,True +35025000503,3993.0,False,False +35025000504,3877.0,False,False +35025000600,6757.0,False,False +35025000701,1872.0,False,False +35025000702,4002.0,False,False +35025000703,2694.0,False,False +35025000704,2983.0,False,False +35025000800,3584.0,False,False +35025000900,2039.0,False,True +35025001003,4383.0,False,True +35025001004,3823.0,False,True +35025001005,3396.0,True,True +35025001100,4698.0,True,True +35027960200,1459.0,True,True +35027960300,2892.0,True,True +35027960400,6911.0,False,False +35027960600,6041.0,False,False +35027960800,2158.0,True,True +35028000100,3691.0,False,False +35028000200,5414.0,False,False +35028000400,3694.0,False,False +35028000500,5826.0,False,False +35029000100,5881.0,True,True +35029000200,3822.0,True,True +35029000300,2242.0,True,True +35029000400,4854.0,True,True +35029000500,4148.0,True,True +35029000600,3136.0,True,True +35031940300,7265.0,True,True +35031940500,1737.0,True,True +35031943500,3861.0,True,True +35031943600,5630.0,True,True +35031943700,4073.0,True,True +35031943800,5730.0,True,True +35031943901,4439.0,True,True +35031943902,4427.0,True,True +35031944000,2218.0,True,True +35031945200,7344.0,True,True +35031945300,3288.0,True,True +35031945400,2604.0,False,False +35031945500,6165.0,False,False +35031945600,5490.0,True,False +35031945700,2108.0,True,True +35031946000,4971.0,True,True +35031973100,1088.0,True,True +35033955200,4536.0,True,True +35035000100,1661.0,True,True +35035000200,1770.0,True,True +35035000303,2443.0,True,True +35035000304,3463.0,False,False +35035000305,4295.0,True,True +35035000306,3285.0,False,False +35035000401,4355.0,True,True +35035000402,7429.0,False,False +35035000500,5330.0,True,True +35035000601,4137.0,True,True +35035000602,2872.0,False,False +35035000603,2030.0,True,False +35035000700,5414.0,False,False +35035000901,2902.0,False,False +35035000902,10917.0,True,True +35035940000,3834.0,True,True +35037958601,2746.0,True,True +35037958602,3100.0,True,True +35037958900,2480.0,True,True +35039000100,3090.0,False,True +35039000200,3019.0,True,True +35039000300,5536.0,False,True +35039000400,4235.0,False,True +35039000500,3706.0,True,True +35039940700,3569.0,True,True +35039940800,5176.0,True,True +35039941000,4652.0,True,True +35039944100,6176.0,True,True +35041000100,3870.0,True,True +35041000200,3600.0,True,True +35041000300,4457.0,False,True +35041000401,3162.0,True,True +35041000402,3799.0,True,True +35043010503,3790.0,True,True +35043010601,4705.0,False,False +35043010602,3883.0,False,False +35043010702,7044.0,False,False +35043010703,9875.0,False,False +35043010705,5047.0,False,False +35043010712,5054.0,False,False +35043010713,5823.0,False,True +35043010714,4552.0,False,False +35043010715,3577.0,False,False +35043010716,6403.0,True,True +35043010717,9701.0,False,False +35043010718,7565.0,False,False +35043010719,4146.0,False,False +35043010720,9556.0,False,False +35043010721,4525.0,False,False +35043010722,6140.0,False,False +35043010723,11800.0,False,False +35043010900,2473.0,True,True +35043011000,1853.0,True,True +35043011100,6615.0,False,False +35043011200,2838.0,True,True +35043940200,3259.0,True,True +35043940300,0.0,False,False +35043940500,4233.0,True,True +35043940600,2059.0,True,True +35043940700,3394.0,True,True +35043940900,2794.0,True,True +35045000100,4740.0,True,False +35045000201,4190.0,False,False +35045000202,4683.0,False,False +35045000204,2011.0,False,False +35045000205,6135.0,True,True +35045000301,4897.0,False,False +35045000302,3555.0,False,False +35045000401,4887.0,False,False +35045000402,3817.0,True,True +35045000503,3355.0,True,True +35045000504,1889.0,False,True +35045000505,6197.0,True,True +35045000607,4483.0,False,False +35045000608,6432.0,False,False +35045000609,1371.0,True,True +35045000610,4252.0,True,True +35045000611,3476.0,False,False +35045000612,2262.0,True,True +35045000613,4177.0,False,False +35045000702,1175.0,False,False +35045000705,3772.0,False,False +35045000706,2859.0,True,True +35045000707,4135.0,False,False +35045000708,4416.0,True,True +35045000900,2169.0,False,False +35045942801,2610.0,True,True +35045942802,6996.0,True,True +35045942803,2568.0,True,True +35045942900,4656.0,True,True +35045943000,4508.0,True,True +35045943100,1962.0,True,True +35045943201,5696.0,True,True +35045943300,2184.0,True,True +35047957200,3839.0,True,True +35047957300,2471.0,True,True +35047957400,4638.0,True,True +35047957500,4354.0,True,True +35047957600,5946.0,True,True +35047957700,2135.0,True,True +35047957800,4355.0,True,True +35049000101,4024.0,False,False +35049000200,3649.0,False,False +35049000300,1497.0,False,False +35049000400,279.0,False,False +35049000500,1734.0,False,False +35049000600,1986.0,False,False +35049000700,1852.0,True,True +35049000800,3073.0,False,False +35049000900,3187.0,False,False +35049001001,1910.0,False,False +35049001002,3681.0,True,True +35049001102,3527.0,False,False +35049001103,1616.0,False,False +35049001105,2486.0,False,False +35049001106,3382.0,True,True +35049001107,4970.0,False,False +35049001202,6055.0,True,True +35049001203,3047.0,True,True +35049001204,6757.0,False,False +35049001205,5719.0,True,True +35049001301,1856.0,False,False +35049001302,2405.0,False,False +35049001303,7216.0,False,False +35049001304,843.0,False,False +35049010102,4102.0,True,True +35049010203,913.0,False,False +35049010204,2202.0,False,False +35049010304,4005.0,False,False +35049010308,2471.0,True,True +35049010309,1912.0,False,False +35049010310,1293.0,False,False +35049010311,4500.0,False,False +35049010312,4711.0,True,True +35049010314,2153.0,False,False +35049010315,2411.0,False,False +35049010316,1462.0,False,False +35049010400,3291.0,False,False +35049010500,1828.0,False,False +35049010601,5882.0,False,False +35049010602,3114.0,False,False +35049010603,2320.0,False,False +35049010700,5189.0,False,False +35049010800,3040.0,False,False +35049010900,3204.0,False,False +35049940300,1980.0,False,False +35049940400,1700.0,True,True +35049940500,1656.0,True,True +35049940600,3286.0,True,True +35049940900,3016.0,True,True +35049980000,901.0,True,True +35051962200,3102.0,True,True +35051962300,3201.0,True,True +35051962401,2046.0,True,True +35051962402,2682.0,True,True +35053940000,1268.0,True,True +35053978100,4828.0,True,True +35053978200,1343.0,False,True +35053978301,3123.0,True,True +35053978302,3063.0,False,False +35053978303,3233.0,True,True +35055940000,2134.0,True,True +35055940100,9287.0,True,True +35055952100,5586.0,False,True +35055952300,2532.0,True,True +35055952600,7747.0,True,True +35055952700,5500.0,True,True +35057963201,3938.0,True,True +35057963202,3204.0,True,True +35057963600,6454.0,True,True +35057963700,1923.0,True,True +35059950200,4133.0,True,True +35061940300,1021.0,True,True +35061970101,3832.0,True,True +35061970102,6467.0,False,True +35061970200,3876.0,False,False +35061970301,6872.0,True,True +35061970302,2875.0,True,True +35061970303,6932.0,True,True +35061970401,4805.0,True,True +35061970404,4902.0,False,False +35061970405,3906.0,False,False +35061970700,7167.0,False,False +35061970800,5730.0,False,False +35061970901,4956.0,True,True +35061970902,1916.0,True,True +35061971000,4568.0,True,True +35061971100,1320.0,True,True +35061971300,1662.0,True,True +35061971400,3220.0,False,False +36001000100,2035.0,True,True +36001000200,4793.0,True,True +36001000300,6147.0,False,True +36001000401,2362.0,False,False +36001000403,4253.0,False,False +36001000404,5082.0,False,True +36001000501,3523.0,True,True +36001000502,3785.0,False,False +36001000600,3663.0,True,True +36001000700,3885.0,True,True +36001000800,2192.0,True,True +36001001100,1573.0,True,True +36001001400,3855.0,False,False +36001001500,4775.0,False,False +36001001600,4151.0,False,False +36001001700,4318.0,False,False +36001001801,7152.0,False,False +36001001802,4068.0,False,False +36001001901,2714.0,False,False +36001001902,2293.0,False,False +36001002000,5966.0,True,True +36001002100,2986.0,False,False +36001002200,2766.0,False,False +36001002300,2010.0,True,True +36001002500,2831.0,True,True +36001002600,4300.0,True,True +36001012700,2742.0,False,False +36001012800,3749.0,True,True +36001012900,3485.0,True,True +36001013000,6708.0,False,False +36001013100,2592.0,False,False +36001013200,3279.0,True,True +36001013300,4204.0,False,False +36001013400,2567.0,False,False +36001013503,4896.0,False,False +36001013505,2844.0,False,False +36001013506,7190.0,False,False +36001013507,2242.0,False,False +36001013508,6974.0,False,False +36001013601,9179.0,False,False +36001013602,4395.0,False,False +36001013703,2393.0,False,False +36001013705,6442.0,False,False +36001013706,2080.0,False,False +36001013707,5972.0,False,False +36001013801,7154.0,False,False +36001013802,4109.0,False,False +36001013901,2336.0,False,False +36001013902,5401.0,False,False +36001014001,4072.0,False,False +36001014002,5170.0,False,False +36001014100,5318.0,False,False +36001014201,5831.0,False,False +36001014202,5824.0,False,False +36001014203,6499.0,False,False +36001014301,3088.0,False,False +36001014302,8386.0,False,False +36001014401,4119.0,False,False +36001014402,3210.0,False,False +36001014501,2574.0,False,False +36001014502,3329.0,False,False +36001014503,2801.0,False,False +36001014606,3627.0,False,False +36001014607,8070.0,False,False +36001014608,4211.0,False,False +36001014609,4596.0,False,False +36001014611,2151.0,False,False +36001014612,1665.0,False,False +36001014613,3046.0,False,False +36001014614,5502.0,False,False +36001014615,2828.0,False,False +36001014700,2839.0,False,False +36001014801,2797.0,False,False +36001014802,1679.0,False,False +36001014803,3325.0,False,False +36003940200,2.0,False,True +36003950100,2290.0,False,False +36003950300,5134.0,False,False +36003950400,3743.0,True,True +36003950500,3758.0,False,False +36003950600,3648.0,True,True +36003950700,3353.0,False,False +36003950800,6159.0,False,False +36003950900,3662.0,True,True +36003951000,3286.0,True,True +36003951100,3649.0,True,True +36003951200,4683.0,True,False +36003951300,3321.0,True,True +36005000100,6864.0,True,True +36005000200,4532.0,True,True +36005000400,5516.0,False,False +36005001600,5825.0,True,True +36005001900,3141.0,True,True +36005002000,9040.0,True,True +36005002300,4302.0,True,True +36005002400,155.0,False,False +36005002500,5610.0,True,True +36005002701,2608.0,True,True +36005002702,4560.0,True,True +36005002800,5151.0,False,False +36005003100,1689.0,True,True +36005003300,3277.0,True,True +36005003500,3907.0,True,True +36005003700,250.0,True,True +36005003800,1350.0,False,True +36005003900,6260.0,True,True +36005004001,1475.0,False,True +36005004100,5942.0,True,True +36005004200,7697.0,True,True +36005004300,5552.0,True,True +36005004400,4401.0,True,True +36005004600,1961.0,True,True +36005004800,4563.0,True,True +36005005001,4604.0,True,True +36005005002,5592.0,True,True +36005005100,5737.0,True,True +36005005200,1956.0,True,True +36005005300,4888.0,True,True +36005005400,5324.0,True,True +36005005600,2279.0,True,True +36005005902,2751.0,True,True +36005006000,1386.0,True,True +36005006100,3720.0,False,False +36005006200,7233.0,True,True +36005006300,4582.0,True,True +36005006400,3932.0,True,True +36005006500,5377.0,True,True +36005006700,6705.0,True,True +36005006800,3230.0,True,True +36005006900,7801.0,True,True +36005007000,4378.0,True,True +36005007100,2795.0,True,True +36005007200,6255.0,True,True +36005007300,4297.0,True,True +36005007400,3634.0,True,True +36005007500,6692.0,True,True +36005007600,5311.0,True,True +36005007700,2022.0,True,True +36005007800,7415.0,True,True +36005007900,7188.0,True,True +36005008300,6713.0,True,True +36005008400,2899.0,False,False +36005008500,5631.0,True,True +36005008600,3936.0,True,True +36005008700,6127.0,True,True +36005008900,3218.0,True,True +36005009000,3459.0,True,True +36005009200,5848.0,True,True +36005009300,6154.0,True,True +36005009600,2792.0,True,True +36005009800,4756.0,False,True +36005011000,0.0,False,False +36005011502,4582.0,True,True +36005011700,1443.0,True,True +36005011800,5503.0,False,False +36005011900,5440.0,True,True +36005012101,3070.0,True,True +36005012102,1447.0,True,True +36005012300,4268.0,True,True +36005012500,3860.0,True,True +36005012701,1928.0,True,True +36005012901,4419.0,True,True +36005013000,1476.0,False,False +36005013100,5084.0,True,True +36005013200,7272.0,False,False +36005013300,6000.0,True,True +36005013500,3590.0,True,True +36005013800,2588.0,False,False +36005014100,5851.0,True,True +36005014300,1482.0,True,True +36005014400,5138.0,True,True +36005014500,7436.0,True,True +36005014701,7003.0,True,True +36005014702,5435.0,True,True +36005014900,4419.0,True,True +36005015100,5309.0,True,True +36005015200,2481.0,False,False +36005015300,4474.0,True,True +36005015500,2927.0,True,True +36005015700,4704.0,True,True +36005015800,1314.0,False,False +36005015900,1969.0,True,True +36005016000,3666.0,False,False +36005016100,4650.0,True,True +36005016200,1870.0,False,False +36005016300,0.0,False,False +36005016400,1046.0,False,False +36005016500,965.0,True,True +36005016600,2244.0,False,False +36005016700,3695.0,True,True +36005016900,1633.0,True,True +36005017100,0.0,False,False +36005017300,5746.0,True,True +36005017500,6536.0,True,True +36005017701,4650.0,True,True +36005017702,5423.0,True,True +36005017901,4831.0,True,True +36005017902,4032.0,True,True +36005018101,3351.0,True,True +36005018102,5294.0,True,True +36005018301,4320.0,True,True +36005018302,3824.0,True,True +36005018400,3793.0,False,False +36005018500,9001.0,True,True +36005018900,8210.0,True,True +36005019300,6350.0,True,True +36005019400,2375.0,True,True +36005019500,7060.0,True,True +36005019700,7561.0,True,True +36005019900,8338.0,True,True +36005020000,4711.0,True,True +36005020100,3993.0,True,True +36005020200,2385.0,True,True +36005020400,3011.0,False,True +36005020501,6976.0,True,True +36005020502,2160.0,True,True +36005020601,2237.0,True,True +36005020900,4287.0,True,True +36005021001,8930.0,False,False +36005021002,7613.0,False,True +36005021100,5343.0,True,True +36005021200,4850.0,False,False +36005021301,1267.0,True,True +36005021302,5513.0,True,True +36005021501,4565.0,True,True +36005021502,6532.0,True,True +36005021601,4720.0,True,True +36005021602,5632.0,False,False +36005021700,5124.0,True,True +36005021800,6520.0,True,True +36005021900,882.0,True,True +36005022000,2007.0,True,True +36005022101,4133.0,True,True +36005022102,5411.0,True,True +36005022200,3293.0,True,True +36005022300,5278.0,True,True +36005022401,2498.0,False,True +36005022403,3194.0,False,True +36005022404,4203.0,False,True +36005022500,8499.0,True,True +36005022701,5151.0,True,True +36005022702,1607.0,True,True +36005022703,1688.0,True,True +36005022800,6128.0,False,True +36005022901,5743.0,True,True +36005022902,3614.0,True,True +36005023000,2802.0,True,True +36005023100,1537.0,True,True +36005023200,2476.0,True,True +36005023301,3956.0,True,True +36005023302,3706.0,True,True +36005023501,3184.0,True,True +36005023502,4153.0,True,True +36005023600,1816.0,True,True +36005023702,1180.0,True,True +36005023703,5574.0,True,True +36005023704,3803.0,True,True +36005023800,2241.0,False,False +36005023900,7873.0,True,True +36005024000,3903.0,True,True +36005024100,6621.0,True,True +36005024300,5737.0,True,True +36005024400,2146.0,False,False +36005024501,4871.0,True,True +36005024502,3677.0,True,True +36005024600,2011.0,False,True +36005024700,2058.0,True,True +36005024800,3078.0,False,True +36005024900,0.0,False,False +36005025000,2591.0,False,False +36005025100,7360.0,True,True +36005025200,2787.0,False,False +36005025300,6199.0,True,True +36005025400,1997.0,False,False +36005025500,7674.0,True,True +36005025600,1696.0,False,True +36005025700,1999.0,True,True +36005026100,2097.0,False,False +36005026300,6218.0,True,True +36005026400,4868.0,False,False +36005026500,7851.0,True,True +36005026601,3452.0,False,False +36005026602,5084.0,False,False +36005026701,4185.0,True,True +36005026702,7895.0,True,True +36005026900,3703.0,True,True +36005027300,7778.0,True,True +36005027401,4693.0,False,False +36005027402,3481.0,False,False +36005027600,24.0,True,True +36005027700,4660.0,True,True +36005027900,7379.0,True,True +36005028100,3954.0,False,False +36005028300,2489.0,True,True +36005028400,554.0,True,True +36005028500,3523.0,False,False +36005028600,1085.0,False,False +36005028700,3153.0,False,True +36005028800,3330.0,False,True +36005028900,4807.0,False,True +36005029301,1806.0,False,False +36005029302,5569.0,False,False +36005029500,4564.0,False,False +36005029600,1575.0,False,True +36005029700,3799.0,False,False +36005030000,6021.0,False,False +36005030100,1413.0,False,True +36005030200,8704.0,False,False +36005030701,5726.0,False,False +36005030900,3709.0,False,False +36005031000,4753.0,False,False +36005031200,1678.0,False,False +36005031400,2079.0,False,True +36005031600,1900.0,False,False +36005031800,2179.0,False,False +36005031900,633.0,False,False +36005032300,4575.0,False,False +36005032400,3177.0,True,True +36005032600,3407.0,False,True +36005032800,3839.0,True,True +36005033000,5776.0,True,True +36005033201,5564.0,True,True +36005033202,4033.0,True,True +36005033400,15.0,False,True +36005033500,2048.0,False,False +36005033600,6714.0,True,True +36005033700,2521.0,False,False +36005033800,4105.0,False,True +36005034000,5606.0,True,True +36005034200,1888.0,False,False +36005034300,1665.0,False,False +36005034400,2172.0,False,False +36005034500,3540.0,False,False +36005034800,5707.0,False,False +36005035000,2063.0,False,False +36005035100,3740.0,False,False +36005035600,2254.0,False,False +36005035800,8172.0,False,False +36005035900,2053.0,True,True +36005036000,3271.0,False,False +36005036100,5576.0,True,True +36005036300,7517.0,True,True +36005036400,2565.0,False,False +36005036501,3901.0,True,True +36005036502,2620.0,True,True +36005036700,2395.0,True,True +36005036800,2109.0,False,False +36005036901,2101.0,True,True +36005036902,2074.0,True,True +36005037000,2416.0,True,True +36005037100,4226.0,True,True +36005037200,2132.0,False,True +36005037300,6373.0,True,True +36005037400,3861.0,True,True +36005037504,3323.0,True,True +36005037600,2197.0,False,True +36005037800,2900.0,False,True +36005037900,5469.0,True,True +36005038000,5239.0,True,True +36005038100,7647.0,True,True +36005038200,3100.0,True,True +36005038301,5084.0,True,True +36005038302,6032.0,True,True +36005038500,4766.0,True,True +36005038600,8889.0,False,False +36005038700,3823.0,True,True +36005038800,2763.0,False,False +36005038900,5521.0,True,True +36005039000,2861.0,True,True +36005039100,7544.0,True,True +36005039200,1602.0,False,True +36005039300,8330.0,True,True +36005039400,5647.0,True,True +36005039500,4257.0,True,True +36005039600,5022.0,True,True +36005039700,3744.0,False,True +36005039800,3842.0,False,False +36005039901,5618.0,True,True +36005039902,5646.0,True,True +36005040100,4478.0,True,True +36005040302,4192.0,True,True +36005040303,4900.0,True,True +36005040304,3593.0,True,True +36005040400,3600.0,False,False +36005040501,4399.0,True,True +36005040502,7264.0,True,True +36005040600,3547.0,False,False +36005040701,3120.0,True,True +36005040702,7023.0,True,True +36005040800,4826.0,True,True +36005040900,3194.0,False,True +36005041100,3510.0,True,True +36005041300,8677.0,True,True +36005041400,5158.0,False,False +36005041500,6367.0,True,True +36005041800,3876.0,False,True +36005041900,6035.0,True,True +36005042000,4206.0,True,True +36005042100,5661.0,True,True +36005042200,3285.0,False,False +36005042300,4313.0,True,True +36005042400,2569.0,False,False +36005042500,6175.0,True,True +36005042600,6729.0,False,False +36005042800,2120.0,False,False +36005042901,3561.0,True,True +36005042902,4041.0,True,True +36005043000,3499.0,False,False +36005043100,10246.0,True,True +36005043400,3710.0,False,False +36005043500,499.0,True,True +36005043600,2020.0,False,False +36005044200,4019.0,False,False +36005044400,4295.0,False,False +36005044800,2075.0,False,False +36005044901,1763.0,False,False +36005044902,2041.0,False,False +36005045101,1455.0,False,False +36005045102,1955.0,False,False +36005045600,3220.0,False,False +36005045800,5744.0,True,True +36005046000,3246.0,True,True +36005046201,28109.0,False,False +36005046202,9912.0,True,True +36005048400,4277.0,False,False +36005050400,0.0,False,False +36005051600,4531.0,False,False +36007000100,3279.0,False,True +36007000200,3206.0,True,True +36007000300,2579.0,True,True +36007000400,1931.0,True,True +36007000500,2023.0,True,True +36007000600,2182.0,True,True +36007000700,3571.0,True,True +36007000900,1881.0,True,True +36007001100,1697.0,True,True +36007001200,888.0,True,True +36007001300,3164.0,True,True +36007001400,3907.0,False,False +36007001500,4396.0,False,False +36007001600,2227.0,False,False +36007001700,4216.0,True,True +36007001800,3993.0,True,True +36007010200,5152.0,False,False +36007011901,2817.0,False,False +36007011902,2631.0,False,False +36007011903,2659.0,False,False +36007012000,1694.0,True,False +36007012101,3484.0,False,False +36007012102,3940.0,False,False +36007012103,3277.0,False,False +36007012201,2573.0,False,False +36007012202,3781.0,False,False +36007012300,5039.0,True,True +36007012400,2236.0,True,True +36007012500,5992.0,False,False +36007012600,5602.0,False,False +36007012701,5179.0,False,False +36007012702,4767.0,False,False +36007012800,5094.0,False,False +36007012900,1543.0,False,False +36007013000,4197.0,False,False +36007013100,2691.0,False,False +36007013201,2159.0,False,False +36007013202,3037.0,False,False +36007013301,4928.0,False,False +36007013303,2720.0,False,False +36007013304,5285.0,False,False +36007013400,4086.0,True,True +36007013500,1820.0,True,True +36007013600,3635.0,True,True +36007013700,3230.0,True,True +36007013800,3018.0,False,False +36007013900,2860.0,True,True +36007014000,2874.0,True,True +36007014100,3010.0,False,False +36007014200,2686.0,False,False +36007014301,5519.0,False,False +36007014302,9232.0,False,False +36007014400,4907.0,False,False +36007014500,3244.0,False,False +36007014600,5450.0,False,False +36009940000,316.0,True,True +36009940200,0.0,False,True +36009940300,5991.0,True,True +36009960100,3519.0,True,True +36009960200,4226.0,True,True +36009960300,4722.0,False,False +36009960400,4480.0,False,False +36009960500,4938.0,True,True +36009960600,3519.0,True,True +36009960702,2463.0,False,False +36009960800,4216.0,True,True +36009961000,4304.0,False,False +36009961100,4309.0,False,False +36009961200,3499.0,True,True +36009961300,5046.0,False,False +36009961400,4859.0,True,True +36009961500,2153.0,False,False +36009961600,3792.0,True,True +36009961700,3200.0,True,True +36009961800,4525.0,False,False +36009962200,3044.0,True,True +36011040100,4875.0,True,True +36011040200,4880.0,False,False +36011040300,4116.0,False,False +36011040400,4294.0,False,False +36011040500,3481.0,False,False +36011040600,3422.0,False,False +36011040700,3656.0,False,False +36011040800,4712.0,False,False +36011040900,3760.0,False,False +36011041000,4775.0,False,False +36011041100,4085.0,False,False +36011041200,4768.0,False,False +36011041300,3663.0,True,True +36011041400,4661.0,True,True +36011041500,2748.0,False,False +36011041600,2533.0,False,False +36011041700,3879.0,False,False +36011041800,4940.0,True,True +36011042100,4177.0,True,True +36011990200,0.0,False,False +36013030100,3715.0,True,True +36013030200,4359.0,True,True +36013030300,1987.0,True,True +36013030400,4371.0,True,True +36013030500,3703.0,True,True +36013030600,3632.0,True,True +36013030700,3922.0,True,False +36013030800,3815.0,True,True +36013035100,4163.0,False,False +36013035300,2553.0,False,False +36013035400,2952.0,True,True +36013035500,2722.0,True,True +36013035600,3077.0,True,True +36013035700,3114.0,True,True +36013035800,3369.0,False,False +36013035901,5120.0,False,False +36013035902,2335.0,False,False +36013036000,4643.0,False,False +36013036100,4609.0,False,False +36013036300,4649.0,True,True +36013036401,2818.0,False,False +36013036402,3667.0,True,True +36013036500,4638.0,True,False +36013036600,3237.0,True,True +36013036700,4217.0,True,False +36013036800,4547.0,False,False +36013036901,2664.0,False,False +36013036902,3279.0,False,False +36013037000,3407.0,False,False +36013037100,3841.0,False,False +36013037200,3543.0,False,False +36013037300,4841.0,False,False +36013037400,3779.0,True,True +36013037500,4684.0,False,False +36013037600,2524.0,False,False +36013990000,0.0,False,False +36015000100,2647.0,True,True +36015000200,2443.0,True,True +36015000300,1785.0,True,True +36015000400,2351.0,True,True +36015000500,2828.0,True,True +36015000600,3758.0,True,True +36015000700,2228.0,True,True +36015000900,3248.0,False,False +36015001000,3003.0,True,True +36015001100,3111.0,True,True +36015010100,3294.0,False,False +36015010200,6197.0,False,False +36015010300,7641.0,False,False +36015010400,3590.0,False,False +36015010500,2829.0,True,True +36015010600,2826.0,False,False +36015010700,7440.0,False,False +36015010800,3805.0,True,True +36015010900,4721.0,False,False +36015011000,3553.0,False,False +36015011100,6972.0,True,True +36015011200,4625.0,False,False +36017970100,5940.0,True,True +36017970200,4262.0,True,True +36017970300,3674.0,True,True +36017970400,3044.0,True,True +36017970500,5335.0,True,False +36017970601,4148.0,False,False +36017970602,3659.0,True,True +36017970700,2322.0,True,True +36017970801,3718.0,False,False +36017970802,3528.0,False,False +36017970900,4917.0,True,False +36017971000,3362.0,False,False +36019100100,5639.0,True,True +36019100200,4165.0,False,False +36019100300,6473.0,True,True +36019100400,7056.0,False,False +36019100600,5475.0,False,False +36019100700,3607.0,False,False +36019100800,4732.0,False,False +36019100900,5078.0,True,True +36019101000,4043.0,False,False +36019101100,2644.0,False,False +36019101300,2602.0,False,False +36019101400,2048.0,False,False +36019101600,1489.0,True,True +36019101700,5101.0,False,False +36019101800,5339.0,False,False +36019101900,6927.0,False,False +36019102000,3060.0,False,False +36019102100,2055.0,False,False +36019102200,3050.0,True,True +36021000100,2321.0,False,False +36021000200,1785.0,False,False +36021000300,3905.0,False,False +36021000401,2534.0,False,False +36021000402,5737.0,False,False +36021000500,2260.0,False,False +36021000600,2669.0,True,False +36021000700,5132.0,False,False +36021000800,1495.0,False,False +36021000900,1562.0,False,False +36021001000,5708.0,False,False +36021001100,4234.0,True,False +36021001200,3183.0,True,True +36021001300,3052.0,True,False +36021001400,3491.0,False,False +36021001500,1100.0,False,False +36021001600,3451.0,False,False +36021001700,1250.0,False,False +36021001800,1575.0,False,False +36021001900,2052.0,False,False +36021002000,1875.0,False,False +36023970100,3398.0,False,False +36023970200,5807.0,False,False +36023970300,3023.0,False,False +36023970400,2676.0,False,False +36023970500,4058.0,True,True +36023970600,2779.0,True,True +36023970700,4702.0,False,False +36023970800,2483.0,False,False +36023970900,4717.0,False,False +36023971000,5504.0,False,False +36023971100,4513.0,False,False +36023971200,4205.0,False,False +36025970100,4122.0,True,True +36025970200,3293.0,False,False +36025970300,2481.0,False,False +36025970400,5431.0,True,True +36025970500,3921.0,False,False +36025970600,5179.0,True,True +36025970700,2181.0,False,False +36025970800,3292.0,False,False +36025970900,1501.0,False,False +36025971000,2881.0,True,False +36025971100,2170.0,False,False +36025971200,3484.0,True,True +36025971300,2016.0,False,False +36025971400,3043.0,False,False +36027010000,4303.0,True,True +36027020003,4391.0,False,False +36027020004,2923.0,False,False +36027020005,5023.0,False,False +36027030000,4215.0,False,False +36027040001,4492.0,False,False +36027040003,3904.0,False,False +36027050102,3838.0,False,False +36027050103,5583.0,False,False +36027050104,6416.0,False,False +36027050203,4866.0,False,False +36027050204,2942.0,False,False +36027050205,5654.0,False,False +36027060100,4710.0,False,False +36027060201,3524.0,False,False +36027060202,4535.0,False,False +36027060301,4122.0,False,False +36027060302,2539.0,False,False +36027060400,2014.0,False,False +36027070101,4469.0,False,False +36027070102,3492.0,False,False +36027070201,2826.0,False,False +36027070301,5654.0,False,False +36027070401,4513.0,False,False +36027080103,4864.0,False,False +36027080104,3952.0,False,False +36027080201,4000.0,False,False +36027080202,2761.0,False,False +36027090000,2402.0,False,False +36027100000,2943.0,False,False +36027110003,4340.0,False,False +36027110004,1887.0,False,False +36027110005,2029.0,False,False +36027120000,2353.0,False,False +36027130003,5473.0,False,False +36027130004,1595.0,False,False +36027130005,2635.0,False,False +36027140101,6028.0,False,False +36027140200,6657.0,False,False +36027140300,5772.0,False,False +36027140400,5323.0,False,False +36027140500,2750.0,False,False +36027140602,2850.0,False,False +36027140700,6921.0,False,False +36027140801,2725.0,False,False +36027150003,3069.0,False,False +36027150004,3481.0,False,False +36027150005,2705.0,False,False +36027150006,1899.0,False,False +36027160003,2663.0,False,False +36027160004,2539.0,False,False +36027160005,2570.0,False,False +36027170000,3743.0,False,False +36027180001,4616.0,False,False +36027190101,3610.0,False,False +36027190102,1841.0,False,False +36027190203,2530.0,False,False +36027190204,4995.0,False,False +36027190301,3589.0,False,False +36027190401,2227.0,False,False +36027190402,3245.0,False,False +36027200001,3179.0,False,False +36027200002,1443.0,False,False +36027210101,5319.0,False,False +36027210201,3863.0,False,False +36027210301,4275.0,False,False +36027220100,4764.0,False,True +36027220201,3522.0,True,True +36027220300,4708.0,True,True +36027220700,2537.0,True,True +36027220801,3684.0,True,True +36027220901,3991.0,False,False +36027221001,3779.0,False,False +36027221100,3396.0,True,True +36027300000,5648.0,False,False +36027410000,4126.0,False,False +36027610000,2106.0,False,False +36027640001,1442.0,True,True +36027640002,1442.0,True,True +36029000110,2533.0,True,True +36029000200,3910.0,True,True +36029000500,1706.0,True,True +36029000600,4304.0,False,False +36029000700,3538.0,False,False +36029000800,4606.0,False,False +36029000900,2357.0,False,False +36029001000,6139.0,True,True +36029001100,2713.0,True,True +36029001402,2748.0,True,True +36029001500,1436.0,True,True +36029001600,2672.0,True,True +36029001700,1829.0,True,True +36029001900,3153.0,False,False +36029002300,3531.0,True,True +36029002400,3402.0,True,True +36029002502,1906.0,True,True +36029002702,3200.0,True,True +36029002800,1993.0,True,True +36029002900,1861.0,True,True +36029003000,2825.0,True,True +36029003100,2504.0,True,True +36029003301,3326.0,True,True +36029003302,2855.0,True,True +36029003400,2640.0,True,True +36029003500,3011.0,True,True +36029003600,2708.0,True,True +36029003700,3851.0,True,True +36029003800,3113.0,True,True +36029003901,945.0,True,True +36029004001,4428.0,True,True +36029004100,4473.0,True,True +36029004200,3874.0,True,True +36029004300,6781.0,True,True +36029004401,4870.0,True,True +36029004402,2364.0,True,True +36029004500,5428.0,False,False +36029004601,3376.0,False,False +36029004602,1054.0,False,True +36029004700,6127.0,False,False +36029004800,4081.0,False,False +36029004900,5616.0,False,False +36029005000,2300.0,False,False +36029005100,4505.0,True,True +36029005201,3105.0,False,False +36029005202,3085.0,False,False +36029005300,1616.0,False,False +36029005400,3949.0,False,False +36029005500,4159.0,True,True +36029005600,3862.0,True,True +36029005700,3260.0,True,True +36029005801,3301.0,True,True +36029005802,4478.0,True,True +36029005900,3982.0,True,True +36029006100,4676.0,True,True +36029006201,2084.0,False,False +36029006301,4098.0,False,False +36029006302,2576.0,False,False +36029006501,2781.0,False,False +36029006601,2255.0,False,False +36029006602,2425.0,False,False +36029006701,3171.0,False,False +36029006702,2853.0,False,False +36029006800,2964.0,False,False +36029006901,3885.0,True,True +36029006902,4267.0,True,True +36029007000,3259.0,True,True +36029007101,3887.0,True,True +36029007102,2774.0,True,True +36029007202,1618.0,True,True +36029007302,7947.0,False,False +36029007303,7343.0,False,False +36029007304,5757.0,False,False +36029007600,2907.0,False,False +36029007700,4392.0,False,False +36029007800,5286.0,False,False +36029007901,2963.0,False,False +36029007902,6152.0,False,False +36029007903,3402.0,False,False +36029007904,3179.0,False,False +36029007905,4670.0,False,False +36029008001,5912.0,False,False +36029008002,5252.0,False,False +36029008003,4466.0,False,False +36029008101,5727.0,False,False +36029008102,4281.0,False,False +36029008201,2544.0,False,False +36029008202,3753.0,False,False +36029008300,2145.0,True,True +36029008400,2581.0,False,False +36029008500,2442.0,False,False +36029008600,4608.0,False,False +36029008700,4649.0,False,False +36029008800,3433.0,False,False +36029008900,4206.0,False,False +36029009004,3493.0,False,False +36029009006,7296.0,False,False +36029009007,7370.0,False,False +36029009008,5025.0,False,False +36029009009,5402.0,False,False +36029009010,5993.0,False,False +36029009104,4220.0,False,False +36029009106,3010.0,False,False +36029009107,5377.0,False,False +36029009109,3144.0,False,False +36029009110,5722.0,False,False +36029009112,2972.0,True,True +36029009113,6996.0,False,False +36029009114,4145.0,False,False +36029009115,3973.0,False,False +36029009116,5018.0,False,False +36029009200,4158.0,False,False +36029009301,5408.0,False,False +36029009302,2960.0,False,False +36029009401,6147.0,False,False +36029009402,4475.0,False,False +36029009501,5405.0,False,False +36029009502,6654.0,False,False +36029009600,6940.0,False,False +36029009701,2882.0,False,False +36029009702,4634.0,False,False +36029009800,1659.0,False,False +36029009900,3562.0,False,False +36029010001,2860.0,False,False +36029010002,4645.0,False,False +36029010003,3671.0,False,False +36029010101,4535.0,False,False +36029010102,4071.0,True,True +36029010103,3488.0,False,False +36029010201,2704.0,False,False +36029010202,3866.0,False,False +36029010300,1171.0,True,True +36029010400,2208.0,True,True +36029010500,2414.0,True,True +36029010600,2540.0,False,False +36029010700,2400.0,False,False +36029010803,1878.0,False,False +36029010804,3901.0,False,False +36029010805,4786.0,False,False +36029010807,4854.0,False,False +36029010808,3818.0,False,False +36029010809,3058.0,False,False +36029010901,2493.0,False,False +36029010902,4346.0,False,False +36029011000,1911.0,False,False +36029011100,2122.0,False,False +36029011200,7056.0,False,False +36029011300,4326.0,False,False +36029011400,2328.0,True,True +36029011500,1473.0,False,False +36029011600,2036.0,False,False +36029011700,4123.0,False,False +36029011800,3715.0,False,False +36029012001,4573.0,False,False +36029012002,3564.0,False,False +36029012003,4935.0,False,False +36029012300,3170.0,True,True +36029012400,1913.0,True,True +36029012501,4655.0,True,True +36029012502,1655.0,True,False +36029012800,2645.0,False,False +36029012901,7204.0,False,False +36029012902,3555.0,False,False +36029013001,2888.0,False,False +36029013002,5617.0,False,False +36029013101,6622.0,False,False +36029013102,8621.0,False,False +36029013201,5801.0,False,False +36029013202,5247.0,False,False +36029013300,3574.0,False,False +36029013400,6492.0,False,False +36029013501,7198.0,False,False +36029013502,6879.0,False,False +36029013600,2920.0,False,False +36029013701,6371.0,False,False +36029013702,6141.0,False,False +36029013800,7750.0,False,False +36029013900,2248.0,False,False +36029014000,3785.0,False,False +36029014101,6581.0,False,False +36029014102,5151.0,False,False +36029014204,4233.0,False,False +36029014206,7566.0,False,False +36029014207,5270.0,False,False +36029014208,6136.0,False,False +36029014209,3809.0,False,False +36029014300,6190.0,False,False +36029014400,3954.0,False,False +36029014501,3621.0,False,False +36029014502,2306.0,False,False +36029014601,5417.0,False,False +36029014603,4519.0,False,False +36029014604,8152.0,False,False +36029014701,5580.0,False,False +36029014702,8772.0,False,False +36029014801,2414.0,False,False +36029014803,6261.0,False,False +36029014901,2577.0,False,False +36029014903,5748.0,False,False +36029014904,1670.0,False,False +36029015001,5378.0,False,False +36029015002,3020.0,False,False +36029015003,3355.0,False,False +36029015101,3328.0,False,False +36029015102,2780.0,False,False +36029015201,3334.0,False,False +36029015202,4708.0,False,False +36029015301,4910.0,False,False +36029015302,2721.0,False,False +36029015401,2670.0,False,False +36029015402,4830.0,False,False +36029015501,2373.0,True,False +36029015503,2720.0,True,False +36029015504,3562.0,False,False +36029015600,2000.0,True,True +36029015700,3500.0,False,False +36029015800,4186.0,False,False +36029015900,4298.0,False,False +36029016100,2791.0,True,True +36029016200,2182.0,True,False +36029016300,1998.0,True,True +36029016400,2870.0,True,True +36029016500,1749.0,False,False +36029016600,2523.0,True,True +36029016700,2185.0,True,True +36029016800,3385.0,True,True +36029016900,4034.0,False,False +36029017000,2803.0,True,True +36029017100,3971.0,True,True +36029017200,2245.0,True,True +36029017300,7215.0,False,False +36029017400,4256.0,True,True +36029017501,1421.0,False,False +36029017502,2249.0,False,False +36029940000,2045.0,True,True +36029940100,14.0,False,True +36029990000,0.0,False,False +36031960100,2311.0,False,False +36031960200,2659.0,False,False +36031960300,2643.0,False,False +36031960498,2281.0,False,False +36031960598,5934.0,True,False +36031960700,1736.0,False,False +36031960800,1990.0,False,False +36031960900,3358.0,False,False +36031961000,4588.0,True,False +36031961100,1988.0,False,False +36031961200,4845.0,False,False +36031961300,1608.0,True,True +36031961400,1518.0,False,False +36033940000,3325.0,True,True +36033950100,4657.0,True,False +36033950200,5022.0,True,False +36033950300,5559.0,True,True +36033950400,5020.0,False,False +36033950501,3511.0,True,True +36033950502,5745.0,False,False +36033950600,1490.0,False,False +36033950700,2358.0,False,False +36033950800,2478.0,False,False +36033950900,3331.0,True,False +36033951000,2192.0,True,False +36033951100,3587.0,False,False +36033951200,2202.0,False,False +36035970100,2570.0,True,True +36035970200,2861.0,False,False +36035970300,3367.0,False,False +36035970400,1820.0,True,True +36035970500,3894.0,True,True +36035970600,7373.0,False,False +36035970700,3353.0,True,True +36035970800,3176.0,True,True +36035970900,3245.0,True,True +36035971000,2630.0,True,True +36035971100,2474.0,True,True +36035971200,3785.0,False,False +36035971300,4450.0,False,False +36035971400,3480.0,False,False +36035971500,5168.0,False,False +36037940100,458.0,True,True +36037950100,5000.0,False,False +36037950200,5330.0,False,False +36037950300,6046.0,False,False +36037950400,6889.0,False,False +36037950500,2704.0,False,False +36037950600,2102.0,False,False +36037950700,2151.0,True,True +36037950800,2766.0,True,True +36037950900,2357.0,False,False +36037951000,2498.0,True,True +36037951100,4958.0,False,False +36037951200,4630.0,False,False +36037951300,4394.0,False,False +36037951400,5525.0,False,False +36039080100,3269.0,False,False +36039080201,3562.0,False,False +36039080202,2672.0,True,True +36039080300,3042.0,False,False +36039080401,2636.0,False,False +36039080402,2026.0,False,False +36039080501,2649.0,False,False +36039080502,3774.0,False,False +36039080600,3142.0,False,False +36039080700,2748.0,False,False +36039080800,2595.0,False,False +36039080900,3949.0,False,False +36039081000,4208.0,True,True +36039081101,4473.0,True,True +36039081102,2679.0,True,True +36041950100,582.0,False,False +36041950300,962.0,False,False +36041950400,2032.0,True,True +36041950500,939.0,False,False +36043010100,6309.0,False,False +36043010201,3393.0,False,False +36043010202,3951.0,False,False +36043010300,5350.0,False,False +36043010400,3187.0,True,True +36043010501,2379.0,False,False +36043010502,1685.0,False,False +36043010701,2647.0,True,True +36043010702,2061.0,True,True +36043010900,3424.0,False,False +36043011001,2495.0,False,False +36043011002,2847.0,False,False +36043011100,2144.0,True,True +36043011200,5683.0,False,False +36043011301,1889.0,False,False +36043011302,3345.0,False,False +36043011400,4561.0,False,False +36043011501,3073.0,False,False +36043011502,1634.0,True,True +36045060100,3928.0,False,False +36045060200,7134.0,False,False +36045060300,3751.0,False,False +36045060400,6288.0,False,False +36045060500,4959.0,True,True +36045060600,6422.0,False,False +36045060700,4759.0,False,False +36045060803,7141.0,True,True +36045060804,6328.0,True,False +36045060900,5868.0,True,True +36045061000,3362.0,False,False +36045061100,5421.0,False,False +36045061200,3114.0,True,True +36045061300,3294.0,True,True +36045061400,3556.0,True,True +36045061500,4038.0,True,True +36045061600,5031.0,False,False +36045061700,2454.0,False,False +36045061800,6817.0,False,False +36045061900,3610.0,False,False +36045062100,3900.0,True,True +36045062200,4110.0,True,True +36045062400,4555.0,False,False +36045062500,2879.0,False,False +36045980000,123.0,False,False +36045990001,0.0,False,False +36047000100,4405.0,False,False +36047000200,1167.0,True,True +36047000301,3924.0,False,False +36047000501,4308.0,False,False +36047000502,2697.0,False,False +36047000700,3906.0,False,False +36047000900,4518.0,False,False +36047001100,1468.0,False,False +36047001300,1917.0,False,False +36047001500,9011.0,False,False +36047001800,1897.0,False,False +36047002000,1412.0,True,True +36047002100,5106.0,False,False +36047002200,4698.0,True,True +36047002300,4219.0,True,True +36047002901,4447.0,True,True +36047003000,1718.0,False,False +36047003100,3259.0,False,False +36047003300,4202.0,False,False +36047003400,3161.0,False,False +36047003500,1907.0,False,False +36047003600,3500.0,False,False +36047003700,2250.0,False,False +36047003800,1371.0,False,False +36047003900,2262.0,False,False +36047004100,3654.0,False,False +36047004300,3727.0,False,False +36047004400,2518.0,False,False +36047004500,3385.0,False,False +36047004600,1301.0,False,False +36047004700,1877.0,False,False +36047004900,2612.0,False,False +36047005000,2260.0,False,False +36047005100,2744.0,False,False +36047005201,1707.0,True,True +36047005202,2442.0,False,False +36047005300,2167.0,False,False +36047005400,3185.0,False,False +36047005601,2447.0,False,False +36047005602,1687.0,False,False +36047005800,2827.0,False,False +36047005900,1213.0,False,False +36047006000,3148.0,False,False +36047006200,2676.0,False,False +36047006300,1866.0,False,False +36047006400,3042.0,False,False +36047006500,5976.0,False,False +36047006600,3542.0,False,False +36047006700,3886.0,False,False +36047006800,4900.0,True,True +36047006900,3591.0,False,False +36047007000,2538.0,False,False +36047007100,5050.0,True,True +36047007200,1900.0,True,True +36047007400,5259.0,True,True +36047007500,4969.0,False,False +36047007600,5151.0,True,True +36047007700,5159.0,False,False +36047007800,5246.0,True,True +36047008000,3615.0,False,True +36047008200,3594.0,True,True +36047008400,3621.0,True,True +36047008500,7793.0,True,True +36047008600,0.0,False,False +36047008800,2235.0,False,True +36047009000,3000.0,True,True +36047009200,5322.0,True,True +36047009400,5066.0,True,True +36047009600,6079.0,True,True +36047009800,6479.0,True,True +36047010000,6035.0,True,True +36047010100,4001.0,False,True +36047010200,4698.0,True,True +36047010400,4805.0,True,True +36047010600,4417.0,True,True +36047010800,3866.0,True,True +36047011000,2662.0,True,True +36047011200,6188.0,True,True +36047011400,3796.0,True,True +36047011600,3594.0,True,True +36047011700,2677.0,False,False +36047011800,2105.0,True,True +36047011900,1322.0,False,False +36047012000,1213.0,True,True +36047012100,1962.0,False,False +36047012200,5482.0,True,True +36047012600,2838.0,True,True +36047012700,4318.0,True,True +36047012801,2293.0,True,True +36047012901,2387.0,False,False +36047012902,2554.0,False,False +36047013000,4615.0,True,True +36047013100,4155.0,False,False +36047013200,2372.0,True,True +36047013300,4454.0,False,False +36047013400,4117.0,False,False +36047013500,4014.0,False,False +36047013600,3609.0,False,False +36047013700,3554.0,False,False +36047013800,3169.0,False,False +36047013900,3650.0,False,False +36047014000,1986.0,False,True +36047014100,2766.0,False,False +36047014200,3051.0,False,False +36047014300,3672.0,False,False +36047014500,3815.0,False,False +36047014700,2408.0,False,False +36047014800,1213.0,False,False +36047014900,5859.0,False,False +36047015000,1598.0,False,False +36047015100,4240.0,False,False +36047015200,2499.0,False,False +36047015300,2622.0,False,False +36047015400,11.0,True,False +36047015500,3993.0,False,False +36047015700,4111.0,False,False +36047015900,4804.0,False,False +36047016000,3965.0,False,False +36047016100,3595.0,False,False +36047016200,2294.0,False,False +36047016300,3388.0,False,False +36047016400,1264.0,False,False +36047016500,5919.0,False,False +36047016600,1791.0,False,False +36047016700,5422.0,False,False +36047016800,1905.0,False,False +36047016900,4822.0,False,False +36047017000,3484.0,False,True +36047017100,4069.0,False,False +36047017200,3262.0,False,True +36047017400,2191.0,False,True +36047017500,0.0,False,False +36047017600,2413.0,False,True +36047017700,0.0,False,False +36047017800,3073.0,False,True +36047017900,4348.0,False,False +36047018000,3518.0,False,True +36047018100,3691.0,False,False +36047018200,3501.0,False,True +36047018300,2675.0,False,False +36047018400,2617.0,False,False +36047018501,4153.0,True,True +36047018600,2155.0,True,True +36047018700,1488.0,False,False +36047018800,2836.0,False,True +36047019000,4763.0,True,True +36047019100,2972.0,False,False +36047019200,2934.0,True,True +36047019300,5882.0,False,False +36047019400,4027.0,True,True +36047019500,3441.0,False,False +36047019600,4214.0,True,True +36047019700,3714.0,False,False +36047019800,1926.0,False,False +36047019900,3432.0,False,False +36047020000,2417.0,False,True +36047020100,3945.0,False,False +36047020200,1963.0,False,True +36047020300,1826.0,False,False +36047020400,1837.0,False,True +36047020500,3128.0,False,False +36047020600,2311.0,False,True +36047020700,4726.0,False,False +36047020800,3092.0,True,True +36047021000,3967.0,True,True +36047021100,2206.0,False,False +36047021200,4334.0,True,True +36047021300,4113.0,False,False +36047021400,2187.0,True,True +36047021500,5638.0,False,False +36047021600,4022.0,True,True +36047021700,3733.0,False,False +36047021800,3128.0,True,True +36047021900,3557.0,False,False +36047022000,4776.0,True,True +36047022100,3976.0,False,False +36047022200,4008.0,True,True +36047022400,5785.0,True,True +36047022600,2233.0,True,True +36047022700,3794.0,False,False +36047022800,3627.0,True,True +36047022900,3675.0,False,False +36047023000,4251.0,True,True +36047023100,3696.0,False,False +36047023200,5561.0,True,True +36047023300,5884.0,False,False +36047023400,4563.0,True,True +36047023500,4694.0,True,True +36047023600,5549.0,True,True +36047023800,3634.0,True,True +36047024000,4823.0,True,True +36047024100,2765.0,True,True +36047024200,2868.0,True,True +36047024300,4122.0,False,True +36047024400,3609.0,True,True +36047024500,4491.0,False,False +36047024600,2880.0,False,True +36047024700,2672.0,True,True +36047024800,2653.0,False,True +36047024900,4018.0,False,False +36047025000,1853.0,True,True +36047025100,3741.0,True,True +36047025200,5299.0,False,True +36047025300,3496.0,True,True +36047025400,3413.0,True,True +36047025500,5598.0,True,True +36047025600,3199.0,True,True +36047025700,2476.0,False,True +36047025800,4354.0,True,True +36047025901,2257.0,True,True +36047025902,3533.0,True,True +36047026000,3214.0,True,True +36047026100,4497.0,True,True +36047026200,2425.0,False,True +36047026300,2015.0,True,True +36047026400,4594.0,True,True +36047026500,4118.0,False,False +36047026600,3517.0,True,True +36047026700,4055.0,False,False +36047026800,3965.0,True,True +36047026900,3147.0,False,False +36047027000,2139.0,True,True +36047027100,3103.0,False,False +36047027200,3755.0,False,True +36047027300,3431.0,False,False +36047027400,3602.0,False,True +36047027500,4438.0,False,False +36047027600,3646.0,True,True +36047027700,4582.0,True,True +36047027800,3118.0,False,True +36047027900,3660.0,False,False +36047028000,1829.0,False,True +36047028100,4764.0,True,True +36047028200,3762.0,False,True +36047028300,3863.0,True,True +36047028400,3532.0,False,True +36047028501,454.0,True,True +36047028502,3205.0,True,True +36047028600,5110.0,True,True +36047028700,3093.0,True,True +36047028800,3836.0,True,True +36047028900,3619.0,True,True +36047029000,3580.0,True,True +36047029100,2991.0,False,False +36047029200,3033.0,True,True +36047029300,3437.0,False,True +36047029400,2474.0,True,True +36047029500,4160.0,False,False +36047029600,5849.0,True,True +36047029700,4253.0,False,False +36047029800,3794.0,True,True +36047029900,2941.0,False,False +36047030000,4207.0,True,True +36047030100,2963.0,False,True +36047030200,4448.0,False,True +36047030300,4914.0,True,True +36047030400,4189.0,True,True +36047030500,6528.0,False,False +36047030600,1736.0,True,True +36047030700,5954.0,True,True +36047030800,1980.0,True,True +36047030900,2405.0,True,True +36047031100,2924.0,True,True +36047031300,5055.0,False,False +36047031400,4978.0,False,True +36047031500,4970.0,False,False +36047031701,3805.0,False,False +36047031702,3315.0,False,False +36047031900,3141.0,False,False +36047032100,5488.0,False,False +36047032300,3506.0,False,False +36047032500,6076.0,False,False +36047032600,6730.0,True,True +36047032700,2544.0,False,False +36047032800,2688.0,True,True +36047032900,6105.0,True,True +36047033000,5006.0,True,True +36047033100,4058.0,True,True +36047033300,4547.0,True,True +36047033500,3034.0,False,False +36047033600,4443.0,False,True +36047033700,3856.0,False,False +36047033900,4538.0,True,True +36047034000,2050.0,True,True +36047034100,3056.0,False,False +36047034200,6064.0,True,True +36047034300,5163.0,True,True +36047034500,3108.0,False,False +36047034700,3350.0,False,False +36047034800,2885.0,True,True +36047034900,6145.0,True,True +36047035000,3124.0,False,False +36047035100,4650.0,True,True +36047035200,1254.0,True,True +36047035300,5407.0,True,True +36047035400,5765.0,False,False +36047035500,5631.0,True,True +36047035601,2834.0,True,True +36047035602,5529.0,False,False +36047035700,2328.0,True,True +36047035900,5593.0,True,True +36047036001,3155.0,True,True +36047036002,4074.0,True,True +36047036100,2787.0,True,True +36047036200,3855.0,True,True +36047036300,5044.0,True,True +36047036400,2443.0,True,True +36047036501,3417.0,True,True +36047036502,1415.0,True,True +36047036600,4268.0,True,True +36047036700,1281.0,False,False +36047036900,5787.0,True,True +36047037000,4231.0,False,True +36047037100,4711.0,False,False +36047037300,4486.0,True,True +36047037401,4376.0,False,False +36047037402,4937.0,True,True +36047037500,3229.0,False,False +36047037700,4541.0,True,True +36047037900,4660.0,False,False +36047038100,5397.0,True,True +36047038200,5740.0,True,True +36047038300,4720.0,False,False +36047038500,3963.0,False,False +36047038600,3669.0,False,True +36047038700,3882.0,True,True +36047038800,4094.0,False,True +36047038900,2837.0,False,True +36047039000,2397.0,False,True +36047039100,3239.0,False,True +36047039200,2880.0,False,True +36047039300,3890.0,True,True +36047039400,2338.0,False,True +36047039500,3858.0,True,True +36047039600,2058.0,False,False +36047039700,3553.0,True,True +36047039800,2878.0,True,True +36047039900,3873.0,False,True +36047040000,3003.0,False,True +36047040100,3162.0,True,True +36047040200,2988.0,False,True +36047040300,3529.0,True,True +36047040400,2459.0,False,True +36047040500,1513.0,False,False +36047040600,3692.0,True,True +36047040700,0.0,False,False +36047040800,3646.0,False,True +36047040900,3836.0,True,True +36047041000,2048.0,True,True +36047041100,3034.0,True,True +36047041200,3328.0,False,True +36047041300,3986.0,False,False +36047041401,1541.0,True,True +36047041402,1824.0,True,True +36047041500,4353.0,False,False +36047041600,2338.0,False,True +36047041700,3132.0,True,True +36047041800,2960.0,True,True +36047041900,3623.0,True,True +36047042000,1837.0,True,True +36047042100,4259.0,True,True +36047042200,3535.0,True,True +36047042300,3978.0,False,True +36047042400,3480.0,True,True +36047042500,3338.0,True,True +36047042600,4302.0,True,True +36047042700,4896.0,True,True +36047042800,3785.0,False,True +36047042900,5441.0,True,True +36047043000,3283.0,True,True +36047043100,4694.0,True,True +36047043200,4341.0,True,True +36047043300,3628.0,True,True +36047043400,3537.0,True,True +36047043500,5115.0,False,True +36047043600,5059.0,False,True +36047043700,5696.0,True,True +36047043800,2620.0,True,True +36047043900,3515.0,True,True +36047044000,2809.0,True,True +36047044100,5124.0,True,True +36047044200,2945.0,False,False +36047044300,4587.0,True,True +36047044400,3589.0,False,True +36047044500,4729.0,True,True +36047044600,2092.0,True,True +36047044700,2545.0,True,True +36047044800,1698.0,False,True +36047044900,3210.0,True,True +36047045000,566.0,True,True +36047045200,2514.0,False,False +36047045300,2578.0,True,True +36047045400,1681.0,True,True +36047045600,2170.0,True,True +36047045800,1324.0,False,False +36047046000,3131.0,True,True +36047046201,2281.0,True,True +36047046202,1942.0,True,True +36047046400,2638.0,True,True +36047046800,2168.0,True,True +36047047000,2603.0,False,True +36047047200,2769.0,True,True +36047047400,2385.0,True,True +36047047600,3385.0,True,True +36047047700,3835.0,False,False +36047047800,3666.0,True,True +36047048000,3675.0,True,True +36047048100,2967.0,False,True +36047048200,4885.0,True,True +36047048400,5574.0,True,True +36047048500,2289.0,False,False +36047048600,3200.0,True,True +36047048800,3896.0,True,True +36047048900,3617.0,True,True +36047049000,5601.0,False,False +36047049100,7069.0,False,True +36047049200,2688.0,True,True +36047049300,7292.0,True,True +36047049400,5707.0,False,False +36047049500,2600.0,False,False +36047049600,4093.0,True,True +36047049700,2717.0,False,False +36047049800,4139.0,False,True +36047049900,1785.0,False,False +36047050000,3953.0,False,False +36047050100,3177.0,False,False +36047050202,2523.0,False,False +36047050300,2670.0,False,False +36047050400,4741.0,False,False +36047050500,4009.0,True,True +36047050600,5205.0,True,True +36047050700,3063.0,True,True +36047050801,4075.0,True,True +36047050803,2522.0,True,True +36047050804,6083.0,True,True +36047050900,5440.0,True,True +36047051001,4092.0,True,True +36047051002,4858.0,True,True +36047051100,4333.0,True,True +36047051200,5936.0,False,False +36047051300,5397.0,False,False +36047051400,7834.0,True,True +36047051500,2443.0,False,False +36047051601,5252.0,False,False +36047051602,3895.0,False,False +36047051700,2581.0,False,False +36047051800,3328.0,False,False +36047051900,5066.0,False,False +36047052000,3874.0,False,True +36047052300,4854.0,True,True +36047052500,3270.0,True,True +36047052600,4491.0,True,True +36047052700,6490.0,True,True +36047052800,1799.0,False,False +36047052900,3443.0,True,True +36047053000,4060.0,True,True +36047053100,8833.0,True,True +36047053200,2789.0,False,True +36047053300,6754.0,True,True +36047053400,4232.0,True,True +36047053500,3708.0,True,True +36047053700,3862.0,True,True +36047053800,5180.0,False,True +36047053900,2483.0,True,True +36047054200,4008.0,False,True +36047054300,283.0,False,False +36047054400,3487.0,False,True +36047054500,8138.0,True,True +36047054600,4782.0,True,True +36047054700,5724.0,True,True +36047054800,2090.0,False,False +36047054900,4171.0,False,False +36047055000,3382.0,False,False +36047055100,5361.0,False,False +36047055200,3477.0,False,False +36047055300,2740.0,False,False +36047055400,4328.0,True,True +36047055500,7696.0,False,False +36047055600,3397.0,False,True +36047055700,1981.0,False,False +36047055800,2492.0,False,True +36047056000,3482.0,False,False +36047056100,3538.0,False,False +36047056200,1655.0,False,False +36047056300,5390.0,False,False +36047056400,2523.0,False,False +36047056500,3156.0,False,False +36047056600,2749.0,False,True +36047056800,1455.0,False,False +36047056900,1691.0,False,False +36047057000,3529.0,False,False +36047057100,4038.0,False,False +36047057200,5522.0,True,True +36047057300,2457.0,False,False +36047057400,2858.0,False,True +36047057500,3983.0,False,False +36047057600,3041.0,False,True +36047057800,3260.0,True,True +36047057900,1165.0,True,True +36047058000,4402.0,False,True +36047058200,2542.0,False,True +36047058400,3479.0,False,True +36047058600,2772.0,False,True +36047058800,3269.0,False,True +36047058900,1691.0,False,False +36047059000,1834.0,False,True +36047059100,3638.0,False,False +36047059200,4152.0,False,True +36047059300,2022.0,False,False +36047059401,7396.0,False,True +36047059402,5399.0,False,True +36047059600,2442.0,False,False +36047059800,3606.0,False,True +36047060000,6277.0,False,False +36047060600,2811.0,False,True +36047060800,3545.0,False,False +36047061002,4898.0,False,False +36047061003,1669.0,True,True +36047061004,6221.0,True,True +36047061200,1065.0,False,False +36047061600,1465.0,False,True +36047062000,1816.0,False,False +36047062200,2715.0,False,True +36047062600,2869.0,False,True +36047062800,4418.0,False,False +36047063200,1534.0,False,False +36047063600,1289.0,False,False +36047063800,2023.0,False,False +36047064000,1742.0,False,False +36047064200,2227.0,False,True +36047064400,2855.0,False,False +36047064600,2190.0,False,False +36047064800,2194.0,False,False +36047065000,1642.0,False,False +36047065200,1094.0,False,False +36047065400,1437.0,False,False +36047065600,1725.0,False,False +36047065800,1798.0,False,False +36047066000,2050.0,False,False +36047066200,1501.0,False,False +36047066600,0.0,False,False +36047067000,2934.0,False,False +36047067200,1640.0,False,True +36047067400,1920.0,False,False +36047067600,1760.0,False,False +36047067800,2852.0,False,False +36047068000,2185.0,False,False +36047068200,2832.0,False,False +36047068600,1718.0,False,False +36047068800,1719.0,False,False +36047069000,2082.0,False,False +36047069200,2734.0,False,False +36047069601,3248.0,False,False +36047069602,5812.0,False,False +36047069800,1449.0,False,False +36047070000,1604.0,False,False +36047070201,6402.0,False,False +36047070202,8.0,False,False +36047070203,0.0,False,False +36047070600,3137.0,False,False +36047072000,2019.0,False,False +36047072200,2881.0,False,False +36047072400,1979.0,False,False +36047072600,2343.0,False,False +36047072800,3946.0,False,False +36047073000,2278.0,False,False +36047073200,2195.0,False,False +36047073400,1776.0,False,False +36047073600,3198.0,False,False +36047073800,3977.0,True,True +36047074000,3598.0,False,False +36047074200,3136.0,False,False +36047074400,2777.0,False,False +36047074600,2577.0,False,False +36047074800,1957.0,False,False +36047075000,2857.0,False,False +36047075200,1031.0,False,False +36047075400,1294.0,False,False +36047075600,2150.0,False,False +36047075800,1653.0,False,True +36047076000,2930.0,False,True +36047076200,4285.0,True,True +36047076400,3602.0,False,True +36047076600,2103.0,False,False +36047076800,3219.0,False,True +36047077000,2820.0,False,False +36047077200,3114.0,False,False +36047077400,3250.0,False,False +36047077600,3732.0,False,False +36047078000,2161.0,False,False +36047078200,4923.0,False,False +36047078400,2386.0,False,False +36047078600,4753.0,True,True +36047078800,3528.0,True,True +36047079000,5096.0,False,False +36047079200,3488.0,False,False +36047079400,1716.0,True,True +36047079601,4536.0,False,False +36047079602,4797.0,False,False +36047079801,2869.0,False,False +36047079802,5441.0,False,False +36047080000,3689.0,False,True +36047080200,4578.0,False,False +36047080400,3191.0,False,False +36047080600,3355.0,True,True +36047080800,1326.0,True,True +36047081000,2322.0,False,False +36047081400,2770.0,True,True +36047081600,2653.0,True,True +36047081800,4528.0,False,False +36047082000,5175.0,True,True +36047082200,7170.0,True,True +36047082400,4910.0,False,False +36047082600,4911.0,False,False +36047082800,3706.0,True,True +36047083000,6306.0,False,False +36047083200,2127.0,False,False +36047083400,1745.0,False,False +36047083600,2017.0,False,False +36047083800,2073.0,False,False +36047084000,2520.0,False,False +36047084600,2023.0,False,False +36047084800,1701.0,False,False +36047085000,1489.0,False,False +36047085200,26.0,False,False +36047085400,1966.0,False,False +36047085600,3384.0,False,False +36047085800,2107.0,False,False +36047086000,3627.0,False,False +36047086200,2821.0,False,False +36047086400,2343.0,False,False +36047086600,3145.0,False,False +36047086800,3413.0,True,True +36047087000,3125.0,True,True +36047087200,3130.0,True,True +36047087401,3759.0,True,True +36047087600,1709.0,False,False +36047087800,2647.0,True,True +36047088000,2725.0,False,False +36047088200,6353.0,True,True +36047088400,4401.0,False,True +36047088600,4089.0,True,True +36047088800,4086.0,False,False +36047089000,5912.0,True,True +36047089200,3265.0,True,True +36047089400,3254.0,True,True +36047089600,3160.0,True,True +36047089800,1820.0,False,True +36047090000,3912.0,True,True +36047090200,3309.0,True,True +36047090600,3295.0,True,True +36047090800,5992.0,True,True +36047091000,4196.0,True,True +36047091200,5589.0,True,True +36047091600,3481.0,True,True +36047091800,2250.0,True,True +36047092000,2523.0,True,True +36047092200,2537.0,True,True +36047092400,2653.0,True,True +36047092800,3022.0,False,False +36047093000,3068.0,False,False +36047093200,1124.0,False,True +36047093400,2464.0,False,False +36047093600,1692.0,False,False +36047093800,2476.0,False,False +36047094401,3534.0,False,False +36047094402,3248.0,True,True +36047094600,1947.0,False,False +36047095000,2751.0,False,False +36047095400,4289.0,False,False +36047095600,4507.0,False,False +36047095800,3345.0,False,False +36047096000,0.0,False,False +36047096200,1838.0,False,False +36047096400,1978.0,False,False +36047096600,2634.0,False,False +36047096800,1713.0,False,False +36047097000,2868.0,False,False +36047097400,2743.0,True,True +36047098200,4532.0,True,True +36047098400,1998.0,False,False +36047098600,2856.0,False,False +36047098800,3365.0,False,False +36047099000,1744.0,False,False +36047099200,2311.0,False,False +36047099400,2126.0,False,False +36047099600,3761.0,False,False +36047099800,3588.0,False,False +36047100400,2677.0,False,False +36047100600,2610.0,False,False +36047100800,2250.0,False,False +36047101000,2284.0,False,False +36047101200,2288.0,False,False +36047101400,2178.0,False,False +36047101600,1715.0,False,False +36047101800,2295.0,False,False +36047102000,2217.0,False,False +36047102200,2171.0,False,False +36047102400,2255.0,False,False +36047102600,3023.0,False,False +36047102800,1680.0,False,False +36047103400,4294.0,True,True +36047105801,5809.0,True,True +36047105804,6744.0,True,True +36047107000,2330.0,True,True +36047107800,4662.0,False,False +36047109800,2359.0,True,True +36047110400,4407.0,True,True +36047110600,4191.0,True,True +36047111000,2986.0,True,True +36047111600,3624.0,True,True +36047111800,3639.0,True,True +36047112000,3105.0,True,True +36047112200,3168.0,True,True +36047112400,3054.0,True,True +36047112600,3237.0,True,True +36047112800,3764.0,True,True +36047113000,3699.0,True,True +36047113200,1973.0,False,False +36047113400,3105.0,True,True +36047114201,1554.0,True,True +36047114202,3011.0,False,False +36047114400,2545.0,True,True +36047114600,2852.0,True,True +36047115000,2557.0,True,True +36047115200,3122.0,True,True +36047115600,3924.0,True,True +36047115800,2878.0,True,True +36047116000,2324.0,True,True +36047116200,2429.0,True,True +36047116400,3596.0,True,True +36047116600,3128.0,False,True +36047116800,2028.0,False,True +36047117000,1791.0,True,True +36047117201,2745.0,False,False +36047117202,3756.0,False,True +36047117400,4143.0,False,True +36047117601,3203.0,True,True +36047117602,2841.0,True,True +36047117800,1694.0,True,True +36047118000,0.0,False,False +36047118201,2868.0,False,False +36047118202,3317.0,True,True +36047118400,5105.0,True,True +36047118600,2960.0,False,False +36047118800,4536.0,True,True +36047119000,2220.0,True,True +36047119200,3090.0,True,True +36047119400,4892.0,True,True +36047119600,4993.0,True,True +36047119800,3671.0,True,True +36047120000,2630.0,True,True +36047120200,1933.0,True,True +36047120800,10413.0,True,True +36047121000,4196.0,True,True +36047121400,4820.0,True,True +36047122000,5945.0,True,True +36047123700,6966.0,True,True +36047150200,2651.0,False,False +36047152200,3717.0,False,False +36047990100,0.0,False,False +36049950100,2581.0,False,False +36049950200,4173.0,True,True +36049950300,7836.0,False,False +36049950400,2771.0,False,False +36049950500,2386.0,True,False +36049950600,1709.0,True,True +36049950700,5116.0,False,False +36051030100,4138.0,False,False +36051030201,5345.0,False,False +36051030202,6092.0,False,False +36051030300,3212.0,False,False +36051030400,3187.0,False,False +36051030500,2969.0,False,False +36051030600,4111.0,False,False +36051030700,7584.0,False,False +36051030800,5148.0,False,False +36051030900,2931.0,False,False +36051031000,1749.0,True,False +36051031100,4558.0,False,False +36051031200,3764.0,False,False +36051031300,4217.0,False,False +36051031400,4586.0,True,False +36053030501,3232.0,False,False +36053030502,3769.0,False,False +36053030700,6657.0,False,False +36053030800,3644.0,False,False +36053030900,4030.0,False,False +36053031000,5376.0,False,False +36053031100,2347.0,False,False +36053940101,,False,True +36053940102,,False,True +36053940103,,False,True +36053940200,,False,True +36053940300,,False,True +36053940401,,False,True +36053940403,,False,True +36053940600,,False,True +36053940700,,False,True +36055000200,1929.0,True,True +36055000700,1916.0,True,True +36055001000,3653.0,False,False +36055001300,1933.0,True,True +36055001500,782.0,True,True +36055001800,4475.0,True,True +36055001900,2813.0,True,True +36055002000,5171.0,True,True +36055002100,4373.0,True,True +36055002200,3445.0,True,True +36055002300,3904.0,True,True +36055002400,3345.0,True,True +36055002700,1401.0,True,True +36055002900,3903.0,False,False +36055003000,2154.0,True,True +36055003100,4616.0,False,False +36055003200,1645.0,True,True +36055003300,1520.0,True,True +36055003400,2582.0,True,True +36055003500,1669.0,False,False +36055003600,2711.0,False,False +36055003700,2991.0,False,False +36055003802,2348.0,False,False +36055003805,6883.0,False,False +36055003900,2067.0,True,True +36055004000,1400.0,True,True +36055004100,1287.0,True,True +36055004602,2072.0,True,True +36055004701,2934.0,True,True +36055004702,2208.0,True,True +36055004800,2375.0,True,True +36055004900,2121.0,True,True +36055005000,1959.0,True,True +36055005100,1185.0,True,True +36055005200,1462.0,True,True +36055005300,1765.0,True,True +36055005400,3620.0,True,True +36055005500,1889.0,True,True +36055005600,2286.0,True,True +36055005700,1434.0,True,True +36055005800,4265.0,True,True +36055005900,1487.0,True,True +36055006000,3313.0,False,False +36055006100,2293.0,False,False +36055006200,2441.0,False,True +36055006300,3052.0,True,True +36055006400,2234.0,True,True +36055006500,1599.0,True,True +36055006600,1936.0,True,True +36055006700,2894.0,True,True +36055006800,2888.0,True,True +36055006900,1856.0,True,True +36055007000,2992.0,False,False +36055007100,3257.0,True,True +36055007500,2492.0,True,True +36055007600,2811.0,False,False +36055007700,2614.0,False,False +36055007801,2477.0,False,False +36055007802,1489.0,False,False +36055007900,1764.0,True,True +36055008000,2133.0,True,True +36055008100,4670.0,True,True +36055008200,2983.0,True,True +36055008301,4648.0,True,True +36055008400,3030.0,True,True +36055008500,3406.0,True,True +36055008600,4292.0,False,False +36055008701,3589.0,True,True +36055008702,1537.0,True,True +36055008800,2468.0,True,True +36055009200,1168.0,True,True +36055009301,2341.0,True,True +36055009302,1671.0,True,True +36055009400,4672.0,True,True +36055009500,3177.0,True,True +36055009601,1492.0,True,True +36055009602,1889.0,True,True +36055009603,2397.0,True,True +36055009604,728.0,True,True +36055010100,3513.0,False,False +36055010200,3870.0,False,False +36055010300,3874.0,False,False +36055010400,4740.0,False,False +36055010500,4539.0,False,False +36055010601,2609.0,True,False +36055010602,4033.0,False,False +36055010700,3451.0,False,False +36055010800,3066.0,False,False +36055010901,4705.0,False,True +36055010902,3144.0,True,False +36055011000,4448.0,False,False +36055011100,4481.0,False,False +36055011201,3608.0,False,False +36055011203,1982.0,False,False +36055011205,5510.0,False,False +36055011207,5043.0,False,False +36055011208,5376.0,False,False +36055011301,7532.0,False,False +36055011302,5832.0,False,False +36055011400,9639.0,False,False +36055011501,7437.0,False,False +36055011503,5884.0,False,False +36055011504,6923.0,False,False +36055011505,5941.0,False,False +36055011601,5667.0,False,False +36055011603,1087.0,True,True +36055011604,2370.0,False,False +36055011605,1943.0,False,False +36055011703,8608.0,False,False +36055011705,5139.0,False,False +36055011706,4633.0,False,False +36055011707,6912.0,False,False +36055011708,3746.0,False,False +36055011800,5324.0,False,False +36055011901,6216.0,False,False +36055011902,6093.0,False,False +36055012000,2613.0,False,False +36055012100,3950.0,False,False +36055012201,5903.0,False,False +36055012202,3530.0,False,False +36055012301,6099.0,False,False +36055012304,4159.0,False,False +36055012305,4107.0,False,False +36055012306,5612.0,False,False +36055012401,3182.0,False,False +36055012402,6021.0,False,False +36055012500,4314.0,False,False +36055012600,4809.0,False,False +36055012700,3628.0,False,False +36055012800,4228.0,False,False +36055012900,5256.0,False,False +36055013001,7741.0,False,False +36055013002,6296.0,False,False +36055013101,6720.0,False,False +36055013103,6186.0,False,True +36055013104,4885.0,True,True +36055013203,5356.0,False,False +36055013204,8428.0,False,False +36055013205,4847.0,False,False +36055013206,6925.0,False,False +36055013300,3460.0,False,False +36055013401,4252.0,True,True +36055013402,3244.0,False,False +36055013503,4982.0,False,False +36055013505,3961.0,False,False +36055013506,8564.0,False,False +36055013507,5568.0,False,False +36055013508,4157.0,False,False +36055013601,4705.0,False,False +36055013603,5999.0,False,False +36055013604,5398.0,False,False +36055013701,2252.0,False,False +36055013702,3648.0,False,False +36055013800,5940.0,False,False +36055013901,3931.0,False,False +36055013902,4216.0,False,False +36055014001,4691.0,False,False +36055014003,4612.0,False,False +36055014004,3999.0,False,False +36055014102,3824.0,False,False +36055014103,4396.0,False,False +36055014104,3649.0,False,False +36055014202,6687.0,False,False +36055014203,6774.0,False,False +36055014204,2506.0,False,False +36055014301,2807.0,False,False +36055014302,4872.0,False,False +36055014400,4752.0,False,False +36055014501,4065.0,False,False +36055014503,3359.0,False,False +36055014504,5348.0,False,False +36055014505,5606.0,False,False +36055014601,5390.0,False,False +36055014602,4796.0,False,False +36055014700,4711.0,False,False +36055014802,5153.0,False,False +36055014803,3605.0,False,False +36055014804,6941.0,False,False +36055014901,5711.0,False,False +36055014903,5566.0,False,False +36055014905,5332.0,False,False +36055014906,3732.0,False,False +36055015000,5622.0,False,False +36055015101,4734.0,False,False +36055015102,4269.0,False,False +36055015200,7084.0,False,False +36055015301,2887.0,False,True +36055015303,3189.0,False,False +36055015304,4232.0,False,False +36055015400,3773.0,False,False +36055980000,0.0,False,False +36055980100,6.0,False,False +36055990000,0.0,False,False +36057070200,2195.0,True,True +36057070300,2014.0,True,True +36057070400,2152.0,False,False +36057070500,2412.0,True,True +36057070600,2157.0,True,True +36057070700,2472.0,True,True +36057070800,2806.0,True,True +36057070900,1628.0,True,True +36057072100,5990.0,False,False +36057072200,3762.0,False,False +36057072300,3228.0,True,True +36057072400,2539.0,True,True +36057072500,4165.0,True,True +36057072600,3595.0,False,False +36057072700,4118.0,True,True +36057072800,4069.0,False,False +36059300100,5223.0,False,False +36059300300,4095.0,False,True +36059300400,6110.0,False,False +36059300500,5365.0,False,False +36059300600,6492.0,False,False +36059300700,6098.0,False,False +36059300800,4182.0,False,False +36059300900,8915.0,False,False +36059301000,5606.0,False,False +36059301101,6628.0,False,False +36059301102,4580.0,False,False +36059301200,5941.0,False,False +36059301300,4711.0,False,False +36059301400,2063.0,False,False +36059301500,2935.0,False,False +36059301600,4832.0,False,False +36059301700,2722.0,False,False +36059301800,5015.0,False,False +36059301900,2970.0,False,False +36059302000,4907.0,False,False +36059302101,4509.0,False,False +36059302102,3702.0,False,False +36059302200,3818.0,False,True +36059302300,4593.0,False,False +36059302400,5225.0,False,False +36059302501,2745.0,False,False +36059302502,2724.0,False,False +36059302600,2418.0,False,False +36059302700,4464.0,False,False +36059302800,6513.0,False,False +36059302900,4103.0,False,False +36059303000,5790.0,False,False +36059303101,3615.0,False,False +36059303102,4122.0,False,False +36059303201,3862.0,False,False +36059303202,4473.0,False,False +36059303301,3046.0,False,False +36059303302,4231.0,False,False +36059303400,2572.0,False,False +36059303500,4970.0,False,False +36059303600,7297.0,False,False +36059303700,6919.0,False,False +36059303800,5131.0,False,False +36059303900,3994.0,False,False +36059304001,2406.0,False,False +36059304002,4528.0,False,False +36059304100,4504.0,False,True +36059304202,3725.0,False,True +36059304203,6326.0,True,True +36059304204,4816.0,True,True +36059404300,3299.0,False,False +36059404400,5266.0,False,False +36059404500,3928.0,False,False +36059404600,4391.0,False,False +36059404700,6250.0,False,False +36059404800,6065.0,False,False +36059404901,5238.0,False,False +36059404902,5312.0,False,False +36059405000,5670.0,False,False +36059405100,8730.0,False,False +36059405200,6808.0,False,False +36059405301,3686.0,False,False +36059405302,4608.0,False,False +36059405400,9031.0,False,False +36059405500,5313.0,False,False +36059405600,4486.0,False,False +36059405700,4931.0,False,False +36059405800,4250.0,False,False +36059405900,5460.0,False,False +36059406001,4685.0,False,False +36059406002,3524.0,False,False +36059406100,2983.0,False,False +36059406201,3212.0,False,False +36059406202,6131.0,False,False +36059406300,3617.0,False,False +36059406400,6639.0,False,False +36059406501,7085.0,False,False +36059406600,4149.0,False,False +36059406701,2859.0,False,True +36059406702,4424.0,True,True +36059406801,4855.0,True,True +36059406802,4823.0,True,True +36059406900,7205.0,True,True +36059407000,7913.0,True,True +36059407101,5073.0,False,True +36059407102,6819.0,False,False +36059407201,5527.0,True,True +36059407203,3241.0,False,False +36059407204,2561.0,False,True +36059407301,7230.0,False,False +36059407302,4795.0,False,True +36059407401,5955.0,False,True +36059407402,3694.0,False,True +36059407501,5006.0,False,True +36059407502,5327.0,False,False +36059407600,5563.0,False,False +36059407700,5023.0,False,False +36059407801,5555.0,False,False +36059407802,1727.0,False,True +36059407900,5839.0,False,False +36059408000,6347.0,False,False +36059408100,6884.0,False,False +36059408200,6471.0,False,False +36059408300,6753.0,False,False +36059408400,3900.0,False,False +36059408500,6544.0,False,False +36059408600,4651.0,False,False +36059408700,4908.0,False,False +36059408800,6835.0,False,False +36059408900,5997.0,False,False +36059409000,5842.0,False,False +36059409100,4977.0,False,False +36059409200,6014.0,False,False +36059409300,4258.0,False,False +36059409400,4222.0,False,False +36059409500,3930.0,False,False +36059409600,5182.0,False,False +36059409700,4084.0,False,False +36059409800,5718.0,False,False +36059409900,8617.0,False,False +36059410000,4326.0,False,False +36059410100,5683.0,False,False +36059410200,3574.0,False,False +36059410300,6756.0,False,False +36059410400,4606.0,False,False +36059410500,7306.0,False,False +36059410600,7489.0,False,False +36059410700,6755.0,False,False +36059410800,4665.0,False,False +36059410900,6775.0,False,False +36059411000,5579.0,False,True +36059411100,4377.0,True,True +36059411200,6642.0,False,False +36059411301,3717.0,False,False +36059411302,7084.0,False,False +36059411400,6669.0,False,False +36059411500,2653.0,False,False +36059411600,6480.0,False,False +36059411700,6802.0,False,False +36059411800,6051.0,False,False +36059411901,3663.0,False,False +36059411902,3702.0,False,False +36059412000,6108.0,False,False +36059412100,6358.0,False,False +36059412200,5008.0,False,False +36059412301,3514.0,False,False +36059412302,3617.0,False,False +36059412400,5590.0,False,False +36059412500,4003.0,False,False +36059412600,3692.0,False,False +36059412700,4076.0,False,False +36059412800,3184.0,False,False +36059412900,6113.0,False,False +36059413001,3665.0,False,False +36059413002,4193.0,False,False +36059413100,5246.0,False,False +36059413200,5745.0,False,False +36059413300,6257.0,False,False +36059413400,5498.0,False,False +36059413500,7566.0,False,False +36059413600,5901.0,False,False +36059413700,5147.0,False,False +36059413803,3948.0,False,False +36059413804,3675.0,False,False +36059413900,7480.0,False,True +36059414001,4219.0,False,False +36059414002,5200.0,False,False +36059414100,6818.0,False,True +36059414201,5180.0,False,True +36059414202,4110.0,False,True +36059414301,4123.0,False,True +36059414303,4862.0,False,False +36059414304,3444.0,True,True +36059414400,5002.0,False,True +36059414501,5445.0,False,False +36059414502,4094.0,False,False +36059414600,3622.0,False,False +36059414700,4648.0,False,False +36059414800,6885.0,False,False +36059414900,7289.0,False,False +36059415000,5622.0,False,False +36059415101,2533.0,False,False +36059415102,4751.0,False,False +36059415201,3195.0,False,False +36059415202,4029.0,False,False +36059415300,6016.0,False,False +36059415401,5158.0,False,False +36059415402,4194.0,False,False +36059415500,2454.0,False,False +36059415600,5413.0,False,False +36059415700,5952.0,False,False +36059415802,6550.0,False,False +36059416000,4184.0,False,False +36059416100,6124.0,False,False +36059416201,3630.0,False,False +36059416202,4835.0,False,False +36059416300,3206.0,False,False +36059416401,4148.0,False,False +36059416402,2930.0,False,False +36059416500,6139.0,False,False +36059416600,5567.0,False,False +36059416701,4550.0,False,False +36059416702,4363.0,False,False +36059416801,2087.0,False,False +36059416802,3723.0,False,False +36059416900,4056.0,False,False +36059517000,3543.0,False,False +36059517101,5092.0,False,False +36059517102,2412.0,False,False +36059517200,7715.0,True,True +36059517301,3213.0,False,False +36059517302,5257.0,False,False +36059517400,5038.0,False,False +36059517500,3936.0,False,False +36059517600,5053.0,False,False +36059517701,7708.0,False,False +36059517705,3076.0,False,False +36059517801,3837.0,False,False +36059517802,3481.0,False,False +36059517901,4795.0,False,False +36059517902,2766.0,False,False +36059518000,5836.0,False,False +36059518100,2959.0,False,False +36059518201,4382.0,False,False +36059518203,4572.0,False,False +36059518204,4280.0,False,False +36059518300,5987.0,False,False +36059518400,4347.0,False,False +36059518501,6954.0,False,False +36059518502,2830.0,False,False +36059518600,4241.0,False,False +36059518700,5699.0,False,False +36059518800,3420.0,False,False +36059518900,6850.0,False,False +36059519000,6876.0,False,False +36059519100,5781.0,False,False +36059519200,6395.0,False,False +36059519300,6035.0,False,False +36059519400,4359.0,False,False +36059519500,6413.0,False,False +36059519601,4297.0,False,False +36059519602,1962.0,False,False +36059519702,5518.0,False,False +36059519703,3674.0,False,False +36059519704,3092.0,False,False +36059519801,2524.0,False,False +36059519802,5386.0,False,False +36059519900,5490.0,False,False +36059520001,7471.0,False,False +36059520002,4666.0,False,False +36059520100,5283.0,False,False +36059520200,3290.0,False,False +36059520300,5685.0,False,False +36059520401,4448.0,False,False +36059520402,4454.0,False,False +36059520501,3775.0,False,False +36059520502,5489.0,False,False +36059520600,5965.0,False,False +36059520700,4876.0,False,False +36059520800,4092.0,False,False +36059520900,4796.0,False,False +36059521000,4741.0,False,False +36059521100,4622.0,False,False +36059521200,2935.0,False,False +36059521301,2221.0,False,False +36059521302,5493.0,False,False +36059521400,6513.0,False,False +36059521500,5063.0,False,False +36059521601,4324.0,False,False +36059521602,3291.0,False,False +36059521700,4515.0,False,False +36059521801,3633.0,False,False +36059521802,4141.0,False,False +36059521902,4036.0,False,False +36059522000,5812.0,False,False +36059522700,4732.0,False,False +36059980100,1009.0,False,False +36059981100,1053.0,False,False +36059982100,1290.0,False,False +36059990100,0.0,False,False +36059990200,0.0,False,False +36059990301,0.0,False,False +36059990302,0.0,False,False +36059990400,0.0,False,False +36061000100,0.0,False,False +36061000201,2750.0,True,True +36061000202,7773.0,True,True +36061000500,0.0,False,False +36061000600,9838.0,True,True +36061000700,8501.0,False,False +36061000800,9315.0,True,True +36061000900,1796.0,False,False +36061001001,1546.0,False,False +36061001002,5157.0,True,True +36061001200,4168.0,False,True +36061001300,4455.0,False,False +36061001401,3024.0,False,False +36061001402,2941.0,True,True +36061001501,7398.0,False,False +36061001502,8309.0,False,False +36061001600,6968.0,True,True +36061001800,6788.0,False,True +36061002000,4586.0,True,True +36061002100,6666.0,False,False +36061002201,6565.0,True,True +36061002202,2099.0,False,False +36061002400,4192.0,True,True +36061002500,5483.0,True,True +36061002601,3488.0,True,True +36061002602,3946.0,False,False +36061002700,1341.0,True,True +36061002800,6765.0,True,True +36061002900,5924.0,True,True +36061003001,3815.0,False,False +36061003002,2939.0,False,True +36061003100,2525.0,False,False +36061003200,7814.0,False,False +36061003300,5224.0,False,False +36061003400,6569.0,False,True +36061003601,3132.0,True,True +36061003602,3212.0,False,False +36061003700,2666.0,False,False +36061003800,8927.0,False,False +36061003900,6931.0,False,False +36061004000,8105.0,False,False +36061004100,7997.0,False,True +36061004200,5384.0,False,False +36061004300,3968.0,False,False +36061004400,16594.0,False,False +36061004500,980.0,False,False +36061004700,2474.0,False,False +36061004800,6230.0,False,False +36061004900,4404.0,False,False +36061005000,4748.0,False,False +36061005200,3321.0,False,False +36061005400,4768.0,False,False +36061005501,4727.0,False,False +36061005502,1825.0,False,False +36061005600,4250.0,False,False +36061005700,2756.0,False,False +36061005800,4315.0,False,False +36061005900,5404.0,False,False +36061006000,5741.0,False,False +36061006100,4747.0,False,False +36061006200,4444.0,False,False +36061006300,6393.0,False,False +36061006400,7643.0,False,False +36061006500,6337.0,False,False +36061006600,11839.0,False,False +36061006700,5431.0,False,False +36061006800,7876.0,False,False +36061006900,2485.0,False,False +36061007000,8301.0,False,False +36061007100,5530.0,False,False +36061007200,7642.0,False,False +36061007300,5759.0,False,False +36061007400,4528.0,False,False +36061007500,3603.0,False,False +36061007600,2092.0,False,False +36061007700,5971.0,False,False +36061007800,9422.0,False,False +36061007900,4425.0,False,False +36061008000,4964.0,False,False +36061008100,7481.0,False,False +36061008200,3241.0,False,False +36061008300,3686.0,False,False +36061008400,1746.0,False,False +36061008601,2915.0,False,False +36061008602,0.0,False,False +36061008603,4400.0,False,False +36061008700,6556.0,False,False +36061008800,7416.0,False,False +36061008900,5413.0,False,False +36061009000,7633.0,False,False +36061009100,6298.0,False,False +36061009200,1474.0,False,False +36061009300,9440.0,False,False +36061009400,71.0,False,False +36061009500,3142.0,False,False +36061009600,177.0,False,False +36061009700,4968.0,False,True +36061009800,7302.0,False,False +36061009900,5981.0,False,False +36061010000,1741.0,False,False +36061010100,1373.0,False,False +36061010200,122.0,False,False +36061010300,2065.0,False,False +36061010400,811.0,False,False +36061010601,7091.0,False,False +36061010602,4859.0,False,False +36061010800,9046.0,False,False +36061010900,172.0,False,False +36061011000,7499.0,False,False +36061011100,4757.0,False,False +36061011201,843.0,False,False +36061011202,415.0,False,False +36061011203,1103.0,False,False +36061011300,98.0,True,True +36061011401,1173.0,False,False +36061011402,1880.0,False,False +36061011500,3663.0,False,True +36061011600,3540.0,False,False +36061011700,4191.0,False,False +36061011800,8986.0,False,False +36061011900,1071.0,True,True +36061012000,3144.0,False,False +36061012100,7763.0,False,False +36061012200,2473.0,False,False +36061012400,9782.0,False,False +36061012500,2311.0,False,False +36061012600,12620.0,False,False +36061012700,6707.0,False,False +36061012800,5384.0,False,False +36061012900,8351.0,False,False +36061013000,3314.0,False,False +36061013100,2788.0,False,False +36061013200,10999.0,False,False +36061013300,6228.0,False,False +36061013400,11360.0,False,False +36061013500,9705.0,False,False +36061013600,15487.0,False,False +36061013700,5994.0,False,False +36061013800,12213.0,False,False +36061013900,10524.0,False,False +36061014000,7194.0,False,False +36061014200,5110.0,False,False +36061014300,2.0,True,True +36061014401,4720.0,False,False +36061014402,6946.0,False,False +36061014500,6153.0,False,False +36061014601,4182.0,False,False +36061014602,7831.0,False,False +36061014700,3475.0,False,False +36061014801,2810.0,False,False +36061014802,6504.0,False,False +36061014900,4992.0,False,False +36061015001,2285.0,False,False +36061015002,4578.0,False,False +36061015100,10143.0,False,False +36061015200,7816.0,False,False +36061015300,9764.0,False,False +36061015400,14134.0,False,False +36061015500,10290.0,False,False +36061015601,5130.0,False,False +36061015602,2433.0,False,True +36061015700,9586.0,False,False +36061015801,5099.0,False,False +36061015802,4353.0,False,False +36061015900,9517.0,False,False +36061016001,3465.0,False,False +36061016002,3421.0,False,False +36061016100,6281.0,False,False +36061016200,9412.0,True,True +36061016300,7267.0,False,False +36061016400,7474.0,True,True +36061016500,6512.0,False,False +36061016600,6377.0,True,True +36061016700,6189.0,False,False +36061016800,5115.0,True,True +36061016900,8375.0,False,False +36061017000,7829.0,False,True +36061017100,8694.0,False,False +36061017200,5130.0,True,True +36061017300,7580.0,False,False +36061017401,4634.0,True,True +36061017402,2375.0,True,True +36061017500,10558.0,False,False +36061017700,9265.0,False,False +36061017800,3987.0,True,True +36061017900,8267.0,False,False +36061018000,7422.0,True,True +36061018100,8496.0,False,False +36061018200,7902.0,True,True +36061018300,7827.0,False,False +36061018400,7116.0,True,True +36061018500,4893.0,False,False +36061018600,6909.0,True,True +36061018700,8608.0,False,False +36061018800,5437.0,True,True +36061018900,11654.0,True,True +36061019000,3734.0,False,False +36061019100,9757.0,False,False +36061019200,3802.0,True,True +36061019300,10255.0,False,True +36061019400,6166.0,True,True +36061019500,7167.0,False,False +36061019600,4310.0,True,True +36061019701,639.0,False,False +36061019702,2478.0,False,False +36061019800,2645.0,False,False +36061019900,8786.0,False,False +36061020000,3606.0,False,False +36061020101,1854.0,False,False +36061020102,4137.0,False,False +36061020300,3607.0,False,False +36061020500,5117.0,False,False +36061020600,3432.0,True,True +36061020701,3041.0,False,False +36061020800,5432.0,False,False +36061020901,3511.0,True,True +36061021000,7540.0,True,True +36061021100,10824.0,False,False +36061021200,4112.0,False,True +36061021303,6283.0,True,True +36061021400,3373.0,False,False +36061021500,4396.0,True,True +36061021600,8773.0,False,False +36061021703,11.0,False,False +36061021800,6236.0,True,True +36061021900,6008.0,True,True +36061022000,6078.0,False,False +36061022102,2605.0,False,False +36061022200,3369.0,True,True +36061022301,8292.0,False,True +36061022302,3175.0,True,True +36061022400,7586.0,True,True +36061022500,10334.0,True,True +36061022600,4954.0,False,False +36061022700,5218.0,True,True +36061022800,6162.0,True,True +36061022900,9205.0,True,True +36061023000,8717.0,True,True +36061023100,6807.0,True,True +36061023200,9069.0,True,True +36061023300,7220.0,False,False +36061023400,5072.0,True,True +36061023501,7044.0,True,True +36061023502,1986.0,True,True +36061023600,7761.0,True,True +36061023700,6682.0,True,True +36061023801,6354.0,False,False +36061023802,6086.0,False,False +36061023900,2781.0,True,True +36061024000,2009.0,True,True +36061024100,8680.0,False,True +36061024200,5003.0,True,True +36061024301,4658.0,True,True +36061024302,7756.0,True,True +36061024500,14717.0,True,True +36061024700,7303.0,False,True +36061024900,1047.0,False,True +36061025100,2835.0,True,True +36061025300,13572.0,True,True +36061025500,5999.0,False,True +36061025700,4625.0,False,False +36061025900,3731.0,False,False +36061026100,13145.0,True,True +36061026300,9177.0,True,True +36061026500,7951.0,False,True +36061026700,1994.0,False,True +36061026900,8986.0,True,True +36061027100,8806.0,True,True +36061027300,6925.0,False,False +36061027500,3370.0,False,False +36061027700,6538.0,True,True +36061027900,12053.0,True,True +36061028100,3416.0,False,False +36061028300,7949.0,False,True +36061028500,7907.0,True,True +36061028700,4231.0,False,True +36061029100,12165.0,True,True +36061029300,9397.0,True,True +36061029500,8182.0,False,False +36061029700,22.0,True,True +36061029900,3737.0,True,True +36061030300,4535.0,False,False +36061030700,3920.0,False,False +36061030900,10593.0,True,True +36061031100,0.0,False,False +36061031703,5783.0,False,False +36061031704,10224.0,False,False +36061031900,0.0,False,False +36063020100,3414.0,False,False +36063020200,2507.0,True,True +36063020300,2351.0,True,True +36063020400,1688.0,True,True +36063020500,2064.0,True,True +36063020600,1221.0,True,True +36063020700,2653.0,True,True +36063020900,2525.0,True,True +36063021000,2735.0,False,True +36063021100,1225.0,True,True +36063021200,2200.0,True,True +36063021300,2015.0,True,True +36063021400,2253.0,True,True +36063021700,3539.0,True,True +36063022000,3277.0,True,True +36063022100,2155.0,False,False +36063022200,3539.0,False,False +36063022300,2452.0,False,False +36063022401,1969.0,False,False +36063022500,2470.0,False,False +36063022601,2498.0,False,False +36063022602,5653.0,False,False +36063022702,6700.0,False,False +36063022711,10421.0,False,False +36063022712,7719.0,False,False +36063022803,3488.0,False,False +36063022804,3289.0,False,False +36063022901,2287.0,False,False +36063022902,3017.0,False,False +36063023001,2069.0,True,True +36063023100,2238.0,True,True +36063023200,2973.0,True,True +36063023300,6537.0,False,False +36063023401,7335.0,False,False +36063023402,4385.0,False,False +36063023404,4874.0,False,False +36063023405,3433.0,False,False +36063023500,2775.0,True,True +36063023600,3936.0,True,True +36063023700,1917.0,True,True +36063023800,3284.0,True,True +36063023901,3983.0,False,False +36063023902,4595.0,False,False +36063024001,5927.0,False,False +36063024002,1741.0,False,False +36063024101,3865.0,False,False +36063024102,2646.0,False,False +36063024201,6473.0,False,False +36063024202,2824.0,False,False +36063024301,1120.0,False,False +36063024302,4700.0,False,False +36063024303,5773.0,False,False +36063024401,2587.0,False,False +36063024404,4806.0,False,False +36063024405,5108.0,False,False +36063024406,3329.0,False,False +36063024501,2906.0,False,False +36063024502,3666.0,False,False +36063024600,4589.0,False,False +36063940001,1102.0,True,True +36063940100,0.0,False,False +36063990000,0.0,False,False +36065020102,1367.0,True,True +36065020300,1095.0,True,True +36065020705,1921.0,False,False +36065020802,3764.0,True,True +36065020803,2585.0,True,True +36065020900,2301.0,True,True +36065021000,1515.0,True,True +36065021101,1238.0,True,True +36065021102,2752.0,True,True +36065021103,1426.0,True,True +36065021201,2079.0,True,True +36065021202,2887.0,True,True +36065021301,2681.0,False,False +36065021302,3589.0,True,True +36065021303,2986.0,False,False +36065021401,2376.0,True,True +36065021402,2020.0,True,True +36065021500,2289.0,True,True +36065021601,5407.0,False,False +36065021602,2213.0,False,False +36065021701,2914.0,False,False +36065021702,2297.0,False,False +36065021900,1650.0,True,True +36065022000,3551.0,True,True +36065022100,2671.0,False,False +36065022200,2722.0,False,False +36065022400,3289.0,False,False +36065022500,4734.0,True,True +36065022701,1967.0,False,False +36065022702,3866.0,False,False +36065022800,2663.0,False,False +36065023000,6068.0,False,False +36065023200,4131.0,True,True +36065023300,2595.0,False,False +36065023400,4829.0,False,False +36065023501,2301.0,False,False +36065023502,4482.0,False,False +36065023702,3769.0,False,False +36065023901,2186.0,False,False +36065023902,1889.0,False,False +36065024000,4530.0,False,False +36065024101,1455.0,False,False +36065024102,2868.0,False,False +36065024200,4494.0,False,False +36065024301,2908.0,False,False +36065024302,3501.0,False,False +36065024303,2660.0,False,False +36065024400,3984.0,False,False +36065024500,4878.0,False,False +36065025001,3194.0,False,False +36065025002,3679.0,False,False +36065025003,3214.0,False,False +36065025100,1774.0,False,False +36065025200,4437.0,False,False +36065025300,7091.0,False,False +36065025400,5900.0,False,False +36065025500,4261.0,False,False +36065025600,4593.0,False,False +36065025700,2374.0,False,False +36065025800,1385.0,False,False +36065025900,1607.0,True,True +36065026100,2539.0,False,False +36065026200,7137.0,False,False +36065026300,3529.0,True,True +36065026400,5577.0,True,True +36065026500,1041.0,False,True +36065026600,2328.0,True,True +36065026700,5381.0,True,True +36065940000,,False,True +36065940100,,False,True +36065940200,,False,True +36065980002,0.0,False,False +36065980003,0.0,False,False +36065980100,4.0,False,False +36067000100,740.0,False,False +36067000200,3481.0,True,True +36067000300,1457.0,False,False +36067000400,4139.0,False,False +36067000501,2408.0,True,True +36067000600,3133.0,True,True +36067000700,1621.0,True,True +36067000800,3009.0,True,True +36067000900,3185.0,False,False +36067001000,4133.0,True,True +36067001400,3099.0,True,True +36067001500,2777.0,True,True +36067001600,3449.0,True,True +36067001701,2189.0,True,True +36067001702,2615.0,False,False +36067001800,3048.0,True,True +36067001900,4070.0,False,False +36067002000,2001.0,True,True +36067002101,2546.0,True,True +36067002300,1509.0,True,True +36067002400,2026.0,True,True +36067002700,1866.0,True,True +36067002901,2871.0,False,False +36067003000,1705.0,True,True +36067003200,3298.0,False,True +36067003400,1393.0,False,True +36067003500,2437.0,True,True +36067003601,2512.0,True,True +36067003602,2244.0,False,False +36067003800,2301.0,True,True +36067003900,3037.0,True,True +36067004000,1387.0,True,True +36067004200,2245.0,True,True +36067004301,1502.0,True,True +36067004302,6838.0,False,True +36067004400,1693.0,False,False +36067004500,4067.0,False,False +36067004600,4618.0,False,False +36067004800,1541.0,False,False +36067004900,1344.0,True,True +36067005000,2322.0,False,False +36067005100,2257.0,True,True +36067005200,2070.0,True,True +36067005300,1930.0,True,True +36067005400,2376.0,True,True +36067005500,3563.0,False,False +36067005601,1599.0,False,False +36067005602,3950.0,False,False +36067005700,1801.0,True,True +36067005800,1982.0,True,True +36067005900,1591.0,True,True +36067006000,3577.0,False,False +36067006101,3850.0,True,True +36067006102,1842.0,True,True +36067006103,2630.0,False,False +36067010100,2529.0,False,False +36067010200,5764.0,False,False +36067010301,5515.0,False,False +36067010321,2754.0,False,False +36067010322,3597.0,False,False +36067010400,4072.0,False,False +36067010500,2520.0,False,False +36067010600,2166.0,False,False +36067010700,1951.0,True,False +36067010800,4816.0,False,False +36067010900,2384.0,False,False +36067011011,3519.0,False,False +36067011012,3929.0,False,False +36067011021,2862.0,False,False +36067011022,3485.0,False,False +36067011101,5920.0,False,False +36067011102,3350.0,True,False +36067011201,3844.0,False,False +36067011202,4499.0,False,False +36067011231,4669.0,False,False +36067011232,4032.0,False,False +36067011241,2416.0,False,False +36067011242,6257.0,False,False +36067011300,3382.0,False,False +36067011401,6888.0,False,False +36067011402,4341.0,False,False +36067011500,6108.0,False,False +36067011600,5453.0,False,False +36067011700,3639.0,False,False +36067011800,6214.0,False,False +36067011900,3475.0,False,False +36067012000,5741.0,False,False +36067012100,4638.0,False,False +36067012200,1119.0,False,False +36067012300,3504.0,False,False +36067012400,4065.0,False,False +36067012500,3577.0,False,False +36067012600,5353.0,False,False +36067012700,2006.0,False,False +36067012800,2970.0,False,False +36067012900,2458.0,True,True +36067013000,3865.0,True,True +36067013100,4546.0,False,False +36067013200,2657.0,False,False +36067013300,2205.0,False,False +36067013400,5463.0,False,False +36067013500,5187.0,False,False +36067013600,3073.0,False,False +36067013701,4808.0,False,False +36067013800,2065.0,False,False +36067013900,2594.0,False,False +36067014000,3429.0,True,False +36067014200,3806.0,True,True +36067014300,2955.0,True,True +36067014400,2357.0,False,True +36067014500,3649.0,False,False +36067014600,4763.0,False,True +36067014700,6052.0,False,False +36067014800,3163.0,False,False +36067014900,2330.0,False,False +36067015000,4328.0,False,False +36067015100,5630.0,False,False +36067015201,3091.0,False,False +36067015202,4610.0,False,False +36067015203,2600.0,False,False +36067015400,5490.0,False,False +36067015500,2796.0,False,False +36067015601,3339.0,False,False +36067015700,7284.0,False,False +36067015800,4847.0,False,False +36067016001,3260.0,False,False +36067016002,2923.0,False,False +36067016100,2657.0,False,False +36067016200,2335.0,False,False +36067016300,7415.0,False,False +36067016400,4073.0,False,False +36067016501,1710.0,False,False +36067016502,4371.0,False,False +36067016600,4757.0,False,False +36067016700,2444.0,False,False +36067016801,1723.0,False,False +36067016802,2533.0,False,False +36067016901,2692.0,False,False +36067016902,2186.0,False,False +36067940000,156.0,False,True +36069050101,3781.0,False,False +36069050102,11096.0,False,False +36069050201,7081.0,False,False +36069050202,6127.0,False,False +36069050301,4326.0,False,False +36069050302,4907.0,False,False +36069050400,6858.0,False,False +36069050500,6187.0,False,False +36069050601,6332.0,False,False +36069050602,4750.0,False,False +36069050800,3009.0,False,False +36069050900,2227.0,False,False +36069051000,2653.0,False,False +36069051100,2398.0,False,False +36069051200,3686.0,False,False +36069051300,4248.0,False,False +36069051400,2694.0,False,False +36069051500,3279.0,False,False +36069051600,3329.0,False,False +36069051700,1977.0,True,True +36069051800,2677.0,True,True +36069051900,4806.0,False,False +36069052000,4895.0,False,False +36069052100,3863.0,False,False +36069052200,2325.0,False,False +36071000100,3437.0,False,False +36071000200,2974.0,True,True +36071000300,6903.0,True,True +36071000400,4392.0,True,True +36071000501,2842.0,True,True +36071000502,3763.0,True,True +36071000600,4022.0,True,True +36071001100,4242.0,False,False +36071001200,2251.0,True,True +36071001300,3255.0,False,False +36071001500,4537.0,True,True +36071001600,7377.0,False,False +36071002100,3437.0,False,False +36071002200,2757.0,True,True +36071002300,2401.0,True,True +36071010101,4711.0,False,False +36071010102,5520.0,False,False +36071010200,5104.0,False,False +36071010300,3585.0,False,False +36071010400,3795.0,False,False +36071010500,8112.0,False,False +36071010600,7183.0,False,False +36071010700,6724.0,False,False +36071010801,4285.0,False,False +36071010802,5684.0,False,False +36071010901,3303.0,False,False +36071010902,5899.0,False,False +36071011000,4901.0,False,False +36071011101,2608.0,False,False +36071011102,4217.0,False,False +36071011200,4122.0,False,False +36071011300,8383.0,False,False +36071011400,4090.0,False,False +36071011500,6731.0,False,False +36071011601,4187.0,False,False +36071011602,3555.0,False,False +36071011701,4689.0,False,False +36071011702,4492.0,False,False +36071011801,4642.0,False,False +36071011802,2626.0,False,False +36071011900,6558.0,False,False +36071012100,3755.0,False,False +36071012200,3678.0,False,False +36071012300,5467.0,False,False +36071012601,4503.0,False,False +36071012602,3031.0,False,False +36071012700,4135.0,False,False +36071012800,4905.0,False,False +36071012900,2858.0,False,False +36071013000,4559.0,False,False +36071013100,5028.0,False,False +36071013201,5228.0,False,False +36071013202,2217.0,False,False +36071013300,6868.0,False,False +36071013400,3293.0,False,False +36071013500,6147.0,False,False +36071013600,6383.0,False,False +36071013700,2614.0,False,False +36071013800,3168.0,False,False +36071013900,4663.0,False,False +36071014101,4405.0,False,False +36071014102,5945.0,False,False +36071014201,3682.0,False,False +36071014202,5928.0,False,False +36071014301,5006.0,False,False +36071014302,7017.0,False,False +36071014400,4517.0,False,False +36071014501,4159.0,False,False +36071014502,5450.0,False,False +36071014600,7082.0,False,False +36071014700,4220.0,False,False +36071014800,5789.0,False,False +36071014900,3534.0,False,False +36071015003,6396.0,True,True +36071015004,7389.0,True,True +36071015005,5127.0,True,True +36071015006,6353.0,True,True +36071015100,6568.0,True,True +36071015200,10722.0,False,False +36073040200,3159.0,False,False +36073040300,2450.0,False,False +36073040400,3239.0,True,True +36073040500,2631.0,True,True +36073040600,7310.0,True,True +36073040700,5844.0,True,True +36073040801,4474.0,False,False +36073040802,3757.0,True,True +36073401200,3516.0,True,True +36073401300,4524.0,False,False +36073990000,0.0,False,False +36075020100,3742.0,True,True +36075020200,3777.0,False,False +36075020301,2067.0,True,True +36075020302,3528.0,True,True +36075020400,5090.0,False,False +36075020500,5731.0,True,True +36075020600,4857.0,False,False +36075020701,4128.0,False,False +36075020702,4109.0,True,False +36075020703,5142.0,False,False +36075020800,3560.0,True,True +36075020901,2471.0,True,True +36075020902,5713.0,False,False +36075021000,5726.0,True,True +36075021101,3370.0,True,True +36075021102,2294.0,True,True +36075021103,2865.0,True,True +36075021104,2771.0,True,True +36075021200,6522.0,True,True +36075021300,4628.0,True,True +36075021401,7715.0,False,False +36075021402,1650.0,False,False +36075021501,2844.0,False,False +36075021502,6569.0,False,False +36075021601,2597.0,False,False +36075021602,3360.0,False,True +36075021603,3939.0,False,False +36075021604,3955.0,True,True +36075021605,3619.0,True,True +36075990000,0.0,False,False +36077590100,4373.0,False,False +36077590201,2090.0,False,False +36077590202,3739.0,False,False +36077590300,3860.0,False,False +36077590400,5408.0,False,False +36077590500,2895.0,True,True +36077590600,1782.0,True,True +36077590700,3842.0,False,False +36077590800,5000.0,True,False +36077590900,2791.0,False,False +36077591000,3317.0,False,False +36077591100,2808.0,True,True +36077591200,1935.0,False,False +36077591300,3042.0,False,False +36077591400,5444.0,False,False +36077591500,3492.0,False,False +36077591600,4154.0,False,False +36079010100,3455.0,False,False +36079010200,8411.0,False,False +36079010300,4804.0,False,False +36079010400,3263.0,False,False +36079010500,5179.0,False,False +36079010600,3825.0,False,False +36079010700,2433.0,False,False +36079010800,3457.0,False,False +36079010900,7531.0,False,False +36079011000,4066.0,False,False +36079011100,5152.0,False,False +36079011200,7290.0,False,False +36079011300,4069.0,False,False +36079011400,5225.0,False,False +36079011500,6345.0,False,False +36079011600,6129.0,False,False +36079011700,4930.0,False,False +36079011800,8139.0,False,False +36079011900,5084.0,False,False +36081000100,9505.0,False,False +36081000200,3019.0,False,True +36081000400,4476.0,True,True +36081000600,4107.0,False,True +36081000700,6336.0,False,False +36081000800,3193.0,False,True +36081001000,4618.0,False,True +36081001200,3578.0,False,True +36081001400,4308.0,False,False +36081001600,2420.0,False,True +36081001800,2796.0,False,False +36081001900,4358.0,False,False +36081002000,1721.0,False,False +36081002200,2314.0,False,True +36081002400,2382.0,False,True +36081002500,6802.0,True,True +36081002600,2272.0,False,True +36081002800,3573.0,False,True +36081003000,1524.0,False,False +36081003100,1144.0,False,False +36081003200,1764.0,False,False +36081003300,3569.0,False,False +36081003400,2612.0,True,True +36081003600,3584.0,False,False +36081003700,0.0,False,False +36081003800,2757.0,False,False +36081003900,1439.0,True,True +36081004001,2365.0,False,False +36081004002,1459.0,False,False +36081004200,4016.0,True,True +36081004300,2283.0,True,True +36081004401,3732.0,True,True +36081004500,3194.0,False,True +36081004700,3665.0,True,True +36081005000,49.0,True,True +36081005100,1866.0,True,True +36081005200,2817.0,False,True +36081005300,5092.0,False,False +36081005400,5862.0,False,False +36081005500,952.0,False,True +36081005700,4212.0,False,False +36081005800,6355.0,False,False +36081005900,4057.0,False,False +36081006100,5548.0,False,False +36081006201,5593.0,False,False +36081006202,6459.0,True,True +36081006300,5690.0,False,False +36081006501,3450.0,False,False +36081006502,3494.0,False,False +36081006900,3699.0,False,False +36081007100,3344.0,False,False +36081007300,3933.0,False,False +36081007500,3959.0,False,False +36081007700,1856.0,False,False +36081007900,2685.0,True,True +36081008100,1269.0,False,False +36081008300,2409.0,False,True +36081008500,883.0,True,True +36081008600,2846.0,False,False +36081008700,4052.0,True,True +36081008800,3663.0,False,False +36081009100,2303.0,False,True +36081009400,2769.0,False,False +36081009500,2276.0,False,True +36081009600,3522.0,False,False +36081009700,3693.0,False,False +36081009800,2705.0,False,False +36081009900,0.0,False,False +36081010000,3686.0,False,False +36081010100,2382.0,False,True +36081010200,2817.0,False,False +36081010300,4136.0,False,False +36081010400,3014.0,False,False +36081010500,4522.0,False,True +36081010600,3733.0,False,False +36081010701,0.0,False,False +36081010800,3364.0,False,False +36081011000,3234.0,False,False +36081011100,3116.0,False,False +36081011200,2279.0,False,False +36081011300,4463.0,False,False +36081011400,1303.0,True,True +36081011500,2438.0,False,False +36081011600,1980.0,False,False +36081011700,3574.0,False,False +36081011800,2522.0,False,True +36081011900,1409.0,False,True +36081012000,2365.0,True,True +36081012100,2034.0,False,False +36081012200,3128.0,False,True +36081012301,2782.0,False,False +36081012400,3374.0,False,True +36081012500,1762.0,False,False +36081012601,2750.0,False,True +36081012602,2792.0,False,True +36081012800,2380.0,False,False +36081013000,1688.0,False,False +36081013200,2265.0,False,False +36081013400,4678.0,False,False +36081013500,1306.0,False,False +36081013600,1874.0,False,False +36081013700,1773.0,False,False +36081013800,3608.0,False,True +36081014000,3766.0,False,False +36081014100,1636.0,False,True +36081014201,4334.0,False,True +36081014202,2856.0,True,True +36081014300,3772.0,False,False +36081014400,1915.0,True,True +36081014500,2412.0,False,False +36081014700,2768.0,False,False +36081014800,1719.0,False,False +36081014900,1842.0,False,False +36081015000,2899.0,False,False +36081015100,2613.0,False,False +36081015200,2822.0,True,True +36081015300,1933.0,False,True +36081015400,2170.0,False,True +36081015500,2358.0,False,True +36081015600,2908.0,False,True +36081015700,1305.0,False,True +36081015801,3746.0,False,True +36081015802,4872.0,False,False +36081015900,3422.0,True,True +36081016100,2297.0,False,True +36081016300,3519.0,True,True +36081016400,3786.0,False,False +36081016600,3984.0,False,False +36081016800,3257.0,False,False +36081016900,5683.0,False,True +36081017000,2622.0,False,False +36081017100,51.0,False,False +36081017200,1913.0,False,False +36081017400,2285.0,False,False +36081017600,2135.0,False,False +36081017800,2257.0,False,False +36081017900,1019.0,True,True +36081018000,1328.0,False,True +36081018101,3497.0,False,True +36081018102,3311.0,False,False +36081018200,2499.0,True,True +36081018300,6064.0,False,True +36081018401,2114.0,True,True +36081018402,2431.0,False,False +36081018501,3182.0,True,True +36081018502,3367.0,False,True +36081018600,1869.0,True,True +36081018700,3069.0,False,True +36081018800,1449.0,True,True +36081018900,3136.0,False,True +36081019000,2455.0,False,False +36081019200,1969.0,False,False +36081019400,2892.0,False,True +36081019600,3050.0,False,False +36081019800,2917.0,False,True +36081019900,697.0,True,True +36081020200,1762.0,False,True +36081020400,2350.0,True,True +36081020500,1176.0,False,True +36081020600,1855.0,False,True +36081020800,3136.0,False,True +36081021200,2434.0,True,True +36081021400,6984.0,True,True +36081021600,4123.0,False,True +36081021900,0.0,False,False +36081022001,6272.0,False,False +36081022002,7128.0,False,True +36081022900,0.0,False,False +36081023000,2054.0,False,True +36081023200,5644.0,False,True +36081023500,7766.0,False,True +36081023600,3143.0,False,True +36081023800,4516.0,True,True +36081024000,6826.0,True,True +36081024300,5088.0,False,True +36081024500,4422.0,False,True +36081024600,0.0,False,False +36081024700,1466.0,False,True +36081024900,4838.0,False,True +36081025100,5611.0,False,True +36081025301,4386.0,False,True +36081025302,3046.0,False,True +36081025400,10118.0,True,True +36081025500,1524.0,False,True +36081025700,1500.0,False,True +36081025800,2261.0,False,True +36081025900,3486.0,False,True +36081026000,2757.0,False,True +36081026100,6508.0,False,True +36081026200,1270.0,False,False +36081026300,5857.0,False,True +36081026400,2501.0,True,True +36081026500,3722.0,False,True +36081026600,1745.0,True,True +36081026700,5353.0,True,True +36081026901,4965.0,False,True +36081026902,3603.0,False,True +36081027000,2190.0,False,True +36081027100,8428.0,True,True +36081027200,1970.0,False,False +36081027300,7116.0,True,True +36081027400,1718.0,False,False +36081027500,6820.0,True,True +36081027600,1342.0,False,False +36081027700,7747.0,False,True +36081027800,2339.0,True,True +36081027900,6220.0,False,True +36081028000,1670.0,False,False +36081028100,5013.0,False,False +36081028200,1894.0,False,False +36081028300,7508.0,False,True +36081028400,4166.0,False,False +36081028500,4987.0,True,True +36081028700,6293.0,False,True +36081028800,4616.0,False,False +36081028900,5158.0,False,True +36081029100,6368.0,False,True +36081029300,1090.0,False,True +36081029400,7000.0,False,False +36081029500,3602.0,False,True +36081029700,2038.0,False,True +36081029900,0.0,False,False +36081030600,4760.0,False,False +36081030902,6590.0,False,True +36081030903,5722.0,False,True +36081030904,3179.0,False,True +36081031700,5568.0,False,False +36081032000,4930.0,False,False +36081032700,3702.0,False,True +36081032800,2769.0,False,False +36081032900,3244.0,False,True +36081033000,7192.0,False,False +36081033100,0.0,False,False +36081033401,3767.0,False,False +36081033402,12854.0,False,False +36081033700,2999.0,False,True +36081033900,2677.0,True,True +36081034700,2966.0,False,True +36081035100,3737.0,True,True +36081035200,2780.0,False,False +36081035300,2273.0,False,True +36081035700,3710.0,False,False +36081035800,4179.0,False,False +36081036100,2238.0,True,True +36081036300,1771.0,True,True +36081036500,2992.0,True,True +36081036600,2731.0,False,False +36081036700,2178.0,True,True +36081036800,2495.0,False,False +36081037100,1335.0,False,True +36081037300,2255.0,False,True +36081037500,4116.0,True,True +36081037600,6121.0,False,False +36081037700,3620.0,False,True +36081037900,6851.0,True,True +36081038100,7216.0,True,True +36081038301,0.0,False,False +36081038302,0.0,False,False +36081038400,2411.0,False,False +36081039400,2986.0,False,False +36081039800,1675.0,False,False +36081039900,3862.0,True,True +36081040000,1529.0,False,False +36081040100,7686.0,True,True +36081040200,1640.0,False,False +36081040300,7324.0,True,True +36081040400,4138.0,False,False +36081040500,3377.0,True,True +36081040700,9109.0,True,True +36081040900,5560.0,True,True +36081041100,3775.0,True,True +36081041300,4696.0,True,True +36081041400,4551.0,True,True +36081041500,4358.0,True,True +36081042400,2414.0,False,False +36081042600,477.0,True,True +36081042700,4955.0,True,True +36081043200,1244.0,False,True +36081043400,1795.0,False,False +36081043701,2686.0,True,True +36081043702,7125.0,True,True +36081043900,3610.0,True,True +36081044000,3980.0,False,True +36081044301,3719.0,True,True +36081044302,4076.0,True,True +36081044400,3529.0,True,True +36081044601,3361.0,True,True +36081044602,4961.0,True,True +36081044800,2809.0,True,True +36081045000,2167.0,False,True +36081045200,1335.0,False,True +36081045400,4779.0,True,True +36081045500,14284.0,True,True +36081045600,1446.0,False,False +36081045700,3281.0,False,True +36081045800,2348.0,False,True +36081045900,3719.0,False,True +36081046000,6049.0,True,True +36081046100,2464.0,True,True +36081046200,6907.0,True,True +36081046300,3836.0,True,True +36081046400,1999.0,False,False +36081046500,4172.0,True,True +36081046600,3882.0,False,False +36081046700,5895.0,True,True +36081046800,3340.0,False,True +36081046900,8207.0,True,True +36081047000,3197.0,False,True +36081047100,4320.0,True,True +36081047200,3664.0,False,False +36081047300,4328.0,False,True +36081047500,4301.0,False,True +36081047600,1419.0,False,True +36081047800,4925.0,False,True +36081047900,5115.0,True,True +36081048000,2293.0,False,True +36081048100,6434.0,True,True +36081048200,1427.0,False,False +36081048300,3888.0,True,True +36081048400,5140.0,False,False +36081048500,4366.0,False,True +36081048900,1610.0,False,True +36081049200,5444.0,False,False +36081049301,2209.0,False,True +36081049302,3068.0,False,False +36081049500,1515.0,False,False +36081049600,3146.0,False,False +36081049700,3131.0,False,True +36081049900,5260.0,False,True +36081050000,4279.0,False,True +36081050201,1384.0,False,False +36081050202,1421.0,False,True +36081050400,1818.0,False,True +36081050500,1529.0,False,True +36081050600,1421.0,False,False +36081050700,4102.0,True,True +36081050800,2008.0,False,False +36081051000,1816.0,False,False +36081051100,2290.0,False,False +36081051200,2512.0,False,False +36081051300,2439.0,False,False +36081051500,3446.0,False,True +36081051600,2183.0,False,True +36081051700,2007.0,False,False +36081051800,2181.0,False,False +36081052000,1410.0,False,False +36081052100,2253.0,False,False +36081052200,1760.0,False,False +36081052400,1988.0,False,False +36081052500,2543.0,False,False +36081052600,1933.0,False,False +36081052800,1434.0,False,False +36081053000,2473.0,False,False +36081053100,3417.0,False,True +36081053200,1996.0,False,False +36081053401,2125.0,False,False +36081053500,1432.0,False,True +36081053601,2099.0,False,True +36081053800,1781.0,False,True +36081053900,4433.0,False,False +36081054000,4290.0,False,True +36081054200,4737.0,False,False +36081054500,4039.0,True,True +36081054700,5048.0,True,True +36081054800,2354.0,False,True +36081054900,6437.0,False,True +36081055100,4244.0,False,True +36081055200,2955.0,False,True +36081055300,2786.0,True,True +36081055400,2530.0,False,True +36081055500,2335.0,False,False +36081055600,2282.0,False,False +36081055700,4275.0,False,False +36081055800,1702.0,False,False +36081055900,1184.0,True,True +36081056000,1809.0,False,True +36081056100,17.0,False,False +36081056200,1631.0,False,True +36081056400,1178.0,False,True +36081056500,1569.0,False,False +36081056600,1316.0,False,False +36081056700,5175.0,False,True +36081056800,5039.0,False,True +36081057700,4169.0,False,True +36081057900,1643.0,False,False +36081058000,4140.0,False,False +36081058100,3048.0,False,False +36081058200,4838.0,False,False +36081058300,3736.0,False,False +36081058500,4464.0,False,True +36081058700,3550.0,False,True +36081058900,5296.0,True,True +36081059000,1466.0,False,False +36081059100,5736.0,False,True +36081059200,1516.0,False,False +36081059300,4217.0,False,True +36081059400,1768.0,False,False +36081059500,5533.0,False,True +36081059600,1272.0,False,False +36081059800,1798.0,False,False +36081059900,1255.0,False,False +36081060000,1102.0,False,False +36081060100,2324.0,False,False +36081060300,2095.0,False,False +36081060600,1351.0,False,False +36081060701,14.0,False,False +36081060800,1564.0,False,False +36081061000,1551.0,False,False +36081061200,2022.0,False,False +36081061301,5742.0,False,True +36081061302,0.0,False,False +36081061400,1414.0,False,False +36081061601,2145.0,False,False +36081061602,1118.0,False,False +36081061800,1796.0,False,False +36081061900,2683.0,False,True +36081062000,1431.0,False,False +36081062100,2896.0,False,True +36081062200,2083.0,False,False +36081062300,2246.0,False,False +36081062400,0.0,False,False +36081062500,2692.0,False,False +36081062600,2805.0,False,False +36081062700,2944.0,False,False +36081062900,3034.0,False,True +36081063000,1503.0,False,False +36081063200,2601.0,False,False +36081063301,1704.0,False,False +36081063302,1475.0,False,False +36081063500,2551.0,False,True +36081063700,3432.0,False,False +36081063800,3516.0,False,False +36081063900,3043.0,False,False +36081064101,2388.0,False,True +36081064102,0.0,False,False +36081064500,1927.0,False,False +36081064600,2976.0,False,False +36081065000,2742.0,False,False +36081065400,3782.0,False,False +36081065501,0.0,False,False +36081065600,4966.0,False,False +36081065702,1802.0,False,False +36081065703,2746.0,False,False +36081065900,1884.0,False,False +36081066000,3318.0,False,False +36081066100,1647.0,False,False +36081066300,2771.0,False,False +36081066400,9980.0,False,False +36081066501,4149.0,False,False +36081066701,2800.0,False,False +36081066900,1642.0,False,False +36081067100,2455.0,False,False +36081067700,1883.0,False,False +36081067900,4344.0,True,True +36081068000,5299.0,False,False +36081068200,994.0,False,False +36081068300,3970.0,False,True +36081068700,4188.0,False,True +36081069000,3752.0,False,False +36081069300,3151.0,False,False +36081069400,3455.0,False,False +36081069500,2211.0,False,False +36081069701,4322.0,False,False +36081069702,3518.0,False,False +36081070300,2103.0,False,False +36081070700,2547.0,False,False +36081070900,2869.0,False,False +36081071100,6448.0,False,False +36081071303,5431.0,False,False +36081071304,6054.0,False,False +36081071305,4862.0,False,False +36081071306,6361.0,False,False +36081071600,0.0,False,False +36081071701,4805.0,True,True +36081071702,3915.0,False,False +36081071900,2438.0,False,True +36081072100,4579.0,False,True +36081072300,2050.0,False,False +36081072900,1437.0,False,False +36081073100,1507.0,False,True +36081073700,1930.0,False,False +36081073900,5425.0,False,False +36081074100,3060.0,False,False +36081074300,4082.0,False,False +36081074500,4014.0,False,True +36081074700,3705.0,False,True +36081074900,1429.0,False,False +36081075701,5022.0,False,False +36081075702,4898.0,False,False +36081076901,4407.0,False,False +36081076902,1186.0,False,False +36081077300,2093.0,False,False +36081077500,2234.0,False,False +36081077902,4829.0,False,False +36081077903,3166.0,False,False +36081077904,5781.0,False,True +36081077905,2626.0,False,False +36081077906,3388.0,False,True +36081077907,3500.0,False,False +36081077908,3760.0,True,True +36081078800,1865.0,False,False +36081079000,2633.0,False,False +36081079200,2414.0,False,False +36081079300,0.0,False,False +36081079701,6676.0,True,True +36081079702,4502.0,True,True +36081079900,3101.0,True,True +36081080301,3859.0,True,True +36081080302,3476.0,False,True +36081080900,7240.0,False,False +36081081400,4117.0,False,False +36081081800,3909.0,False,False +36081083700,5283.0,True,True +36081083800,5260.0,False,False +36081084000,6027.0,False,False +36081084500,4863.0,True,True +36081084601,3268.0,False,False +36081084602,925.0,True,True +36081084900,6909.0,True,True +36081085300,5563.0,True,True +36081085500,6772.0,True,True +36081085700,5171.0,True,True +36081085900,5492.0,False,True +36081086100,2032.0,False,True +36081086300,6613.0,True,True +36081086400,2727.0,False,False +36081086500,4311.0,True,True +36081086900,1771.0,True,True +36081087100,2643.0,True,True +36081088400,8345.0,False,False +36081088901,9626.0,True,True +36081089200,7916.0,False,False +36081090700,1434.0,False,True +36081091601,3674.0,False,False +36081091602,0.0,False,False +36081091800,11.0,False,False +36081091900,5309.0,True,True +36081092200,2020.0,False,False +36081092500,3470.0,False,True +36081092800,3594.0,False,False +36081092900,7036.0,False,True +36081093401,3734.0,False,False +36081093402,4403.0,False,False +36081093800,5023.0,True,True +36081093900,5299.0,False,True +36081094201,3236.0,False,False +36081094202,4806.0,True,True +36081094203,6602.0,False,True +36081094500,3654.0,False,True +36081094700,2202.0,False,True +36081095400,6045.0,False,True +36081096400,6573.0,False,False +36081097202,3060.0,True,True +36081097203,7356.0,True,True +36081097204,3884.0,True,True +36081097300,1763.0,False,False +36081098100,2236.0,False,True +36081098700,2434.0,False,False +36081099100,7204.0,False,False +36081099200,4339.0,True,True +36081099701,2922.0,False,False +36081099703,3746.0,False,False +36081099704,6847.0,False,False +36081099705,2470.0,False,False +36081099801,8592.0,False,False +36081099802,6422.0,True,True +36081099900,0.0,False,False +36081100801,2525.0,False,False +36081100802,8976.0,False,False +36081101001,12253.0,True,True +36081101002,4359.0,True,True +36081101700,6005.0,False,True +36081102900,3598.0,False,False +36081103201,6509.0,True,True +36081103202,8121.0,True,True +36081103300,4577.0,False,True +36081103900,6283.0,False,True +36081104700,6755.0,False,True +36081105900,3907.0,False,True +36081107201,2320.0,False,False +36081107202,0.0,False,False +36081108500,2337.0,False,True +36081109300,2937.0,False,True +36081109700,1598.0,False,False +36081109900,3058.0,False,True +36081111300,2526.0,False,False +36081112300,2058.0,False,False +36081112900,2085.0,False,True +36081113300,1603.0,False,False +36081113900,3356.0,False,True +36081114100,2362.0,False,True +36081114700,1726.0,False,True +36081115100,915.0,False,True +36081115500,2150.0,True,True +36081115700,3207.0,True,True +36081115900,4256.0,False,True +36081116100,4301.0,True,True +36081116300,9346.0,True,True +36081116700,1676.0,True,True +36081117100,2359.0,False,True +36081117500,4830.0,False,True +36081118100,1530.0,False,True +36081118500,1978.0,True,True +36081118700,2484.0,False,True +36081118900,2050.0,False,True +36081119100,2985.0,True,True +36081119300,1978.0,True,True +36081119500,1453.0,False,True +36081119900,1517.0,False,True +36081120100,1559.0,False,True +36081120300,1573.0,True,True +36081120500,2568.0,True,True +36081120700,3097.0,False,True +36081121100,0.0,False,False +36081121500,4447.0,False,True +36081122300,3438.0,False,True +36081122701,11356.0,False,False +36081122702,7519.0,True,True +36081124100,3666.0,False,True +36081124700,3508.0,False,True +36081125700,3248.0,False,True +36081126500,1743.0,False,False +36081126700,4716.0,False,True +36081127700,3615.0,False,False +36081128300,0.0,False,False +36081129102,3912.0,False,False +36081129103,3887.0,False,False +36081129104,4455.0,False,False +36081130100,4204.0,False,False +36081133300,3896.0,False,True +36081133900,1302.0,False,False +36081134100,3358.0,False,True +36081134700,10944.0,False,False +36081136700,5846.0,False,True +36081137700,7123.0,False,True +36081138501,4617.0,False,False +36081138502,39.0,True,True +36081139900,1666.0,False,True +36081140300,2344.0,False,False +36081140901,990.0,False,True +36081140902,2787.0,False,True +36081141700,4871.0,False,True +36081142900,3760.0,False,True +36081143500,2452.0,False,True +36081144100,2662.0,False,False +36081144700,3109.0,False,True +36081145101,1127.0,False,True +36081145102,2464.0,False,True +36081145900,2809.0,False,True +36081146300,2979.0,False,True +36081146700,2619.0,False,False +36081147100,3231.0,False,True +36081147900,4526.0,False,False +36081148300,2900.0,False,False +36081150701,3036.0,False,False +36081150702,3067.0,False,True +36081152901,6916.0,False,False +36081152902,4955.0,False,False +36081155101,1759.0,False,False +36081155102,8929.0,False,False +36081156700,1614.0,True,True +36081157101,8406.0,False,False +36081157102,2294.0,False,False +36081157901,5073.0,False,False +36081157902,4129.0,False,False +36081157903,4741.0,False,True +36081161700,4762.0,False,False +36081162100,6363.0,False,False +36081990100,0.0,False,False +36083040100,4089.0,True,True +36083040200,4185.0,True,True +36083040300,2815.0,True,True +36083040400,2464.0,True,True +36083040500,2014.0,True,True +36083040600,2260.0,False,True +36083040700,5671.0,False,True +36083040800,1652.0,False,False +36083040900,3056.0,True,True +36083041000,4273.0,False,False +36083041100,4890.0,False,False +36083041200,3088.0,False,False +36083041300,4989.0,False,False +36083041400,4012.0,False,False +36083051500,2548.0,True,True +36083051600,6711.0,False,False +36083051701,3398.0,True,True +36083051702,3388.0,False,True +36083051800,5612.0,False,False +36083051901,4136.0,False,False +36083051902,3430.0,False,False +36083052002,1758.0,False,False +36083052003,4384.0,False,False +36083052004,6654.0,False,False +36083052101,2380.0,False,False +36083052102,1439.0,False,False +36083052103,1622.0,True,False +36083052201,4498.0,False,False +36083052203,5721.0,False,False +36083052204,2725.0,False,False +36083052301,4158.0,False,False +36083052303,1055.0,False,False +36083052304,6963.0,False,False +36083052402,2432.0,False,False +36083052403,6562.0,False,False +36083052404,7358.0,False,False +36083052501,6399.0,False,False +36083052502,5284.0,False,False +36083052503,1365.0,False,False +36083052601,3801.0,False,False +36083052602,1062.0,False,False +36083052603,2884.0,False,False +36085000300,2004.0,False,False +36085000600,2311.0,False,True +36085000700,4557.0,True,True +36085000800,5238.0,False,False +36085000900,1510.0,True,True +36085001100,3314.0,True,True +36085001700,1475.0,True,True +36085001800,588.0,False,False +36085002001,2502.0,False,True +36085002002,3473.0,False,False +36085002100,4469.0,True,True +36085002700,1751.0,True,True +36085002900,4702.0,True,True +36085003300,3751.0,False,False +36085003600,2833.0,False,False +36085003900,2376.0,False,False +36085004000,12548.0,True,True +36085004700,2805.0,False,False +36085005000,4004.0,False,True +36085005900,3067.0,False,False +36085006400,3450.0,True,True +36085006700,2468.0,False,False +36085007000,9480.0,False,False +36085007400,4902.0,False,True +36085007500,4299.0,True,True +36085007700,1526.0,False,False +36085008100,4313.0,False,True +36085008900,,False,False +36085009601,4489.0,False,False +36085009602,3149.0,False,False +36085009700,4535.0,False,False +36085010500,4372.0,False,False +36085011201,6358.0,False,False +36085011202,5731.0,False,True +36085011401,2971.0,False,False +36085011402,3398.0,False,False +36085012100,3143.0,False,False +36085012200,3938.0,False,False +36085012500,3047.0,False,False +36085012804,4042.0,False,False +36085012805,2605.0,False,False +36085012806,5445.0,False,False +36085013201,1480.0,False,False +36085013203,5729.0,False,False +36085013204,4863.0,False,False +36085013301,1095.0,True,True +36085013302,3096.0,True,True +36085013400,4099.0,False,False +36085013800,6092.0,False,False +36085014100,2287.0,False,False +36085014604,6866.0,False,False +36085014605,3853.0,False,False +36085014606,5963.0,False,False +36085014607,4601.0,False,False +36085014608,3477.0,False,False +36085014700,3124.0,False,False +36085015100,5374.0,False,False +36085015400,0.0,False,False +36085015601,6391.0,False,False +36085015602,3242.0,False,False +36085015603,4844.0,False,False +36085016901,3808.0,False,False +36085017005,5114.0,False,False +36085017007,5547.0,False,False +36085017008,7795.0,False,False +36085017009,4485.0,False,False +36085017010,9060.0,False,False +36085017011,4865.0,False,False +36085017012,4321.0,False,False +36085017300,2343.0,True,True +36085017600,4849.0,False,False +36085017700,5983.0,False,False +36085018100,3055.0,False,False +36085018701,1874.0,False,False +36085018702,7947.0,False,False +36085018901,5057.0,False,False +36085018902,5504.0,False,False +36085019700,1755.0,False,False +36085019800,7410.0,False,False +36085020100,3524.0,False,False +36085020700,5499.0,True,True +36085020801,8498.0,False,False +36085020803,7381.0,False,False +36085020804,5991.0,False,False +36085021300,4681.0,False,False +36085022300,2745.0,True,True +36085022600,8141.0,False,False +36085022800,23.0,False,False +36085023100,5276.0,False,False +36085023900,3853.0,False,False +36085024401,6228.0,False,False +36085024402,4426.0,False,False +36085024700,2994.0,False,False +36085024800,5039.0,False,False +36085025100,6119.0,False,False +36085027301,3782.0,False,False +36085027302,4060.0,False,False +36085027702,6893.0,False,False +36085027704,4629.0,False,False +36085027705,5809.0,False,False +36085027706,3489.0,False,False +36085027900,2219.0,False,False +36085029102,3006.0,False,False +36085029103,8266.0,False,False +36085029104,7229.0,False,False +36085030301,4972.0,False,False +36085030302,6702.0,False,False +36085031901,2816.0,True,True +36085031902,5343.0,True,True +36085032300,1073.0,False,False +36085990100,0.0,False,False +36087010101,6058.0,False,False +36087010102,4755.0,False,False +36087010200,4538.0,False,False +36087010501,4922.0,False,False +36087010502,7075.0,False,False +36087010503,2429.0,False,False +36087010601,3960.0,False,False +36087010602,6663.0,False,True +36087010701,4376.0,False,True +36087010702,3953.0,False,True +36087010703,3736.0,True,True +36087010801,4558.0,False,False +36087010802,5195.0,False,False +36087010803,5413.0,False,False +36087010804,4261.0,False,False +36087010901,4809.0,False,False +36087010902,4090.0,False,False +36087011000,2262.0,False,False +36087011101,5896.0,False,False +36087011102,6217.0,False,False +36087011200,6609.0,False,False +36087011301,7704.0,True,True +36087011302,5244.0,False,False +36087011303,5622.0,False,False +36087011401,4250.0,False,False +36087011403,5690.0,False,False +36087011404,4181.0,False,False +36087011405,4487.0,False,False +36087011501,7818.0,False,False +36087011502,7844.0,False,False +36087011504,7273.0,False,False +36087011505,3313.0,True,True +36087011506,5621.0,True,True +36087011601,3352.0,False,False +36087011602,5830.0,False,False +36087011603,5409.0,False,False +36087011700,3116.0,False,False +36087011800,918.0,False,False +36087011901,3968.0,False,False +36087011902,3207.0,False,False +36087012000,3768.0,False,False +36087012101,6345.0,True,True +36087012102,9503.0,True,True +36087012103,5899.0,True,True +36087012105,6508.0,True,True +36087012106,4808.0,True,True +36087012202,6527.0,True,True +36087012203,3375.0,True,True +36087012204,3908.0,True,True +36087012300,6283.0,True,True +36087012401,4989.0,False,True +36087012402,5377.0,False,True +36087012501,5088.0,False,False +36087012502,5513.0,False,False +36087012600,6478.0,False,False +36087012700,4542.0,False,False +36087012800,6891.0,False,False +36087013001,2917.0,False,False +36087013002,5433.0,False,False +36087013003,2854.0,False,False +36087013100,6309.0,False,False +36087013200,3387.0,False,False +36087013300,2540.0,False,False +36087013401,4787.0,False,False +36087013402,3771.0,False,False +36089490100,3465.0,True,True +36089490200,3375.0,False,False +36089490300,5388.0,True,True +36089490400,3058.0,False,False +36089490500,3689.0,False,False +36089490600,4512.0,True,True +36089490700,6473.0,False,False +36089490800,3496.0,False,False +36089490900,3247.0,False,False +36089491000,4473.0,False,False +36089491100,2278.0,False,True +36089491200,2073.0,False,False +36089491300,4065.0,False,False +36089491400,5175.0,True,False +36089491500,3523.0,True,False +36089491600,1937.0,True,True +36089491700,4312.0,False,False +36089491800,4611.0,True,True +36089491900,1694.0,False,False +36089492000,5024.0,False,False +36089492100,4377.0,False,False +36089492300,5852.0,False,False +36089492400,2757.0,True,True +36089492500,2273.0,True,True +36089492600,5813.0,False,True +36089492700,7018.0,True,True +36089492800,2846.0,True,True +36089492900,2109.0,True,True +36091060101,5668.0,False,False +36091060102,6106.0,False,False +36091060200,3617.0,True,True +36091060300,3840.0,False,False +36091060400,2589.0,True,True +36091060501,1839.0,False,False +36091060502,2148.0,False,False +36091060503,2165.0,False,False +36091060601,2561.0,False,False +36091060602,5202.0,False,False +36091060701,7643.0,False,False +36091060702,9234.0,False,False +36091060800,5114.0,False,False +36091060901,3797.0,False,False +36091060902,1912.0,False,False +36091061000,4733.0,False,False +36091061100,5440.0,False,False +36091061200,5466.0,False,False +36091061301,3852.0,False,False +36091061302,6430.0,False,False +36091061303,2022.0,False,False +36091061401,5314.0,False,False +36091061403,6497.0,False,False +36091061404,3039.0,False,False +36091061500,3546.0,False,False +36091061600,4180.0,False,False +36091061701,5689.0,False,False +36091061702,4146.0,False,False +36091061800,5564.0,False,False +36091061901,9482.0,False,False +36091061903,6425.0,False,False +36091062000,6821.0,False,False +36091062100,1943.0,False,False +36091062200,2958.0,False,False +36091062300,2149.0,True,True +36091062403,6713.0,False,False +36091062404,2770.0,False,False +36091062405,6902.0,False,False +36091062406,3825.0,False,False +36091062501,4739.0,False,False +36091062503,6066.0,False,False +36091062505,4014.0,False,False +36091062506,5162.0,False,False +36091062507,3960.0,False,False +36091062508,4571.0,False,False +36091062509,3092.0,False,False +36091062601,2686.0,False,False +36091062602,6387.0,False,False +36091062700,6393.0,False,False +36091062800,2091.0,False,False +36093020101,2085.0,False,False +36093020102,2171.0,True,True +36093020200,2195.0,True,True +36093020300,1832.0,False,True +36093020500,5253.0,False,False +36093020600,3565.0,False,False +36093020700,5748.0,True,True +36093020800,3621.0,True,True +36093020900,3654.0,True,True +36093021001,921.0,True,True +36093021002,2141.0,True,True +36093021200,3264.0,False,False +36093021400,2897.0,True,True +36093021500,3314.0,True,True +36093021600,3634.0,False,True +36093021700,3670.0,True,True +36093021800,6638.0,False,False +36093031900,8037.0,False,False +36093032000,6666.0,False,False +36093032101,5557.0,False,False +36093032102,1890.0,False,False +36093032200,4906.0,False,False +36093032300,2761.0,False,False +36093032402,3129.0,False,False +36093032403,2328.0,False,False +36093032404,6540.0,False,False +36093032502,3130.0,False,False +36093032503,4159.0,False,False +36093032504,2339.0,False,False +36093032601,2467.0,False,False +36093032602,4471.0,False,False +36093032700,3981.0,False,False +36093032901,3818.0,False,False +36093032902,4104.0,False,False +36093033002,2583.0,False,False +36093033003,3608.0,False,False +36093033004,2576.0,False,False +36093033101,1896.0,False,False +36093033102,6477.0,False,False +36093033200,3437.0,True,True +36093033300,1985.0,False,False +36093033400,3070.0,False,False +36093033500,2341.0,False,False +36095740100,5063.0,False,False +36095740200,5107.0,False,False +36095740300,1206.0,False,False +36095740400,5327.0,False,False +36095740500,3635.0,False,False +36095740600,2915.0,True,True +36095740700,5276.0,False,False +36095740800,2693.0,False,False +36097950100,4917.0,False,False +36097950200,1645.0,False,False +36097950300,2956.0,True,True +36097950400,3893.0,True,True +36097950500,4509.0,True,True +36099950100,2479.0,False,False +36099950200,2429.0,False,False +36099950300,3731.0,False,False +36099950400,2564.0,False,False +36099950500,3753.0,False,False +36099950600,3635.0,False,False +36099950700,3809.0,False,False +36099950800,5947.0,True,True +36099950900,3957.0,True,True +36099951000,2086.0,False,False +36101960100,1242.0,False,False +36101960200,3223.0,True,True +36101960300,2457.0,True,True +36101960400,3946.0,True,True +36101960500,2912.0,False,False +36101960600,4025.0,False,False +36101960700,2674.0,True,True +36101960800,3191.0,True,True +36101960900,2416.0,True,True +36101961000,3528.0,False,False +36101961100,4395.0,True,True +36101961200,3503.0,True,True +36101961300,4131.0,True,True +36101961400,2144.0,False,False +36101961500,1749.0,False,False +36101961600,1842.0,False,False +36101961700,3272.0,False,False +36101961800,3279.0,True,True +36101961900,3251.0,False,False +36101962000,4490.0,True,True +36101962100,3121.0,True,True +36101962200,2617.0,True,True +36101962300,8259.0,False,False +36101962400,2851.0,False,False +36101962500,2317.0,True,True +36101962600,2404.0,False,False +36101962700,3124.0,False,False +36101962800,3541.0,False,False +36101962900,2721.0,False,False +36101963000,3797.0,False,False +36103110101,3677.0,False,False +36103110102,4932.0,False,False +36103110200,5037.0,False,False +36103110300,5031.0,False,False +36103110401,2219.0,False,False +36103110402,3221.0,False,False +36103110501,2937.0,False,False +36103110502,2783.0,False,False +36103110600,7328.0,False,False +36103110801,1948.0,False,False +36103110803,6056.0,False,False +36103110901,2777.0,False,False +36103110902,4474.0,True,False +36103111001,2011.0,False,False +36103111002,5432.0,True,True +36103111100,7898.0,True,False +36103111201,3481.0,False,False +36103111202,5371.0,False,False +36103111300,4445.0,False,False +36103111401,1368.0,False,False +36103111402,4842.0,False,False +36103111503,4479.0,False,False +36103111504,1554.0,False,False +36103111505,7130.0,False,False +36103111506,3630.0,False,False +36103111601,4403.0,False,False +36103111602,2605.0,False,False +36103111701,5937.0,False,False +36103111703,3015.0,False,False +36103111704,3466.0,False,False +36103111801,6314.0,False,False +36103111802,2911.0,False,False +36103111803,2914.0,False,False +36103111804,2505.0,False,False +36103111900,5055.0,False,False +36103112001,5475.0,False,False +36103112002,4847.0,False,False +36103112102,3805.0,False,False +36103112103,4569.0,False,False +36103112104,2109.0,False,False +36103112204,3916.0,False,False +36103112206,7581.0,False,False +36103112210,6915.0,False,False +36103112211,4437.0,False,False +36103112212,3568.0,False,False +36103112213,5091.0,False,False +36103112214,6219.0,False,False +36103122300,3916.0,False,False +36103122403,2296.0,False,False +36103122404,3412.0,False,False +36103122405,3447.0,False,False +36103122406,4997.0,False,False +36103122501,4832.0,True,True +36103122502,4931.0,False,False +36103122601,5886.0,False,False +36103122602,4825.0,False,False +36103122603,5692.0,False,False +36103122704,2147.0,False,False +36103122705,3123.0,False,False +36103122706,4045.0,False,False +36103122707,3119.0,False,False +36103122801,5072.0,False,False +36103122802,4143.0,False,False +36103122901,6316.0,False,False +36103122902,4313.0,False,False +36103123001,5713.0,False,False +36103123002,4690.0,False,False +36103123101,3170.0,False,False +36103123102,4129.0,False,False +36103123201,2252.0,False,False +36103123202,8558.0,False,False +36103123301,7687.0,False,False +36103123302,2025.0,False,False +36103123401,4258.0,False,False +36103123402,6366.0,False,False +36103123500,6278.0,False,False +36103123600,3277.0,False,False +36103123701,7272.0,False,False +36103123702,8532.0,False,False +36103123801,3931.0,False,False +36103123802,3826.0,False,False +36103123900,5634.0,False,False +36103124001,5051.0,False,False +36103124002,3257.0,False,False +36103124101,4184.0,False,False +36103124102,3496.0,False,False +36103124200,5357.0,False,False +36103124300,6593.0,False,False +36103124401,3474.0,False,False +36103124402,3629.0,False,False +36103124500,5075.0,False,False +36103124601,2637.0,False,False +36103124602,4344.0,False,False +36103134702,5495.0,False,False +36103134703,3719.0,False,False +36103134704,2528.0,False,False +36103134902,4738.0,False,False +36103134903,1268.0,False,False +36103134904,6106.0,False,False +36103134906,5692.0,False,False +36103134907,4169.0,False,False +36103135002,5510.0,False,False +36103135003,4787.0,False,False +36103135004,3056.0,False,False +36103135005,3374.0,False,False +36103135101,4238.0,False,False +36103135102,4535.0,False,False +36103135103,5014.0,False,False +36103135104,5502.0,False,False +36103135201,2116.0,False,False +36103135204,4642.0,False,False +36103135205,5060.0,False,False +36103135208,3091.0,False,False +36103135209,3065.0,False,False +36103135301,3692.0,False,False +36103135303,4093.0,False,False +36103135304,3340.0,False,False +36103135401,6662.0,False,False +36103135402,6631.0,False,False +36103135403,4546.0,False,False +36103145602,6903.0,False,False +36103145603,6442.0,False,True +36103145604,4645.0,False,True +36103145605,4172.0,False,False +36103145701,4964.0,False,False +36103145702,7209.0,False,False +36103145703,4210.0,False,False +36103145704,6993.0,False,False +36103145803,4944.0,False,False +36103145804,3341.0,False,False +36103145805,5703.0,False,False +36103145807,4192.0,False,False +36103145808,3001.0,False,False +36103145901,3158.0,False,False +36103145902,10721.0,False,True +36103145903,5411.0,False,False +36103146001,6018.0,False,False +36103146002,5924.0,False,False +36103146003,9998.0,False,False +36103146102,2848.0,False,False +36103146103,4435.0,False,False +36103146105,6454.0,False,True +36103146106,5362.0,False,False +36103146201,5623.0,False,True +36103146202,4205.0,False,False +36103146203,4923.0,True,True +36103146204,6720.0,False,True +36103146205,2363.0,False,False +36103146206,2141.0,False,False +36103146300,2241.0,False,False +36103146402,3883.0,False,False +36103146403,4927.0,True,True +36103146404,3706.0,False,False +36103146500,5579.0,False,False +36103146604,4430.0,False,False +36103146605,983.0,False,False +36103146606,6908.0,False,False +36103146607,2354.0,False,False +36103146608,2596.0,False,False +36103146611,3233.0,False,False +36103146612,5204.0,False,False +36103146613,3961.0,False,False +36103146614,4790.0,False,False +36103146615,4431.0,False,False +36103146703,4117.0,False,False +36103146704,2050.0,False,False +36103146705,2862.0,False,False +36103146706,2609.0,False,False +36103146800,6174.0,False,False +36103146901,5123.0,False,False +36103146902,3769.0,False,False +36103147001,4257.0,False,False +36103147003,4801.0,False,False +36103147004,139.0,False,False +36103147100,3075.0,False,False +36103147200,6172.0,False,False +36103147300,8218.0,False,False +36103147401,5630.0,False,False +36103147402,3284.0,False,False +36103147501,6989.0,False,False +36103147502,6233.0,False,False +36103147503,1405.0,False,False +36103147601,2238.0,False,False +36103147602,4746.0,False,False +36103147701,3442.0,False,False +36103147702,5010.0,False,False +36103147802,3738.0,False,False +36103147803,3126.0,False,False +36103147804,5604.0,False,False +36103147901,4299.0,False,False +36103147902,4103.0,False,False +36103158001,4020.0,False,False +36103158002,5732.0,False,False +36103158006,5886.0,False,False +36103158007,8943.0,False,False +36103158009,2423.0,False,False +36103158010,3231.0,False,False +36103158011,4574.0,False,False +36103158102,4431.0,False,False +36103158103,4577.0,False,False +36103158104,5250.0,False,False +36103158107,4073.0,False,False +36103158108,2705.0,False,False +36103158110,3379.0,False,False +36103158111,3205.0,False,False +36103158112,4479.0,False,False +36103158114,3868.0,False,False +36103158115,6765.0,False,False +36103158116,2033.0,False,False +36103158202,7397.0,False,False +36103158203,1561.0,False,False +36103158205,1769.0,False,False +36103158206,4088.0,False,False +36103158207,4548.0,False,False +36103158304,6793.0,False,False +36103158306,5957.0,False,False +36103158308,8896.0,False,False +36103158309,4746.0,False,False +36103158310,4413.0,False,False +36103158315,4460.0,False,False +36103158317,6193.0,False,False +36103158318,4316.0,False,False +36103158319,3684.0,False,False +36103158320,6802.0,False,False +36103158321,10224.0,False,False +36103158322,1856.0,False,False +36103158323,6742.0,False,False +36103158401,1286.0,False,False +36103158402,4342.0,False,False +36103158403,2286.0,False,False +36103158405,5308.0,False,False +36103158407,5750.0,False,False +36103158408,3797.0,False,False +36103158409,3633.0,False,False +36103158410,3000.0,False,False +36103158502,3708.0,False,False +36103158505,4432.0,False,False +36103158506,2595.0,False,False +36103158507,4203.0,False,False +36103158508,6364.0,False,False +36103158509,4959.0,False,False +36103158510,7218.0,False,False +36103158511,6554.0,False,False +36103158512,3666.0,False,False +36103158604,4842.0,False,False +36103158605,5046.0,False,False +36103158606,4912.0,False,False +36103158607,3139.0,False,False +36103158608,4123.0,False,False +36103158609,4624.0,False,False +36103158704,8362.0,False,False +36103158705,3596.0,False,False +36103158707,1836.0,False,False +36103158708,3529.0,False,False +36103158709,2717.0,False,False +36103158710,3859.0,False,False +36103158711,5410.0,False,False +36103158712,7844.0,False,False +36103158802,4942.0,False,False +36103158803,6360.0,False,False +36103158804,7657.0,False,False +36103158900,7797.0,False,False +36103159000,4587.0,False,False +36103159102,6330.0,False,False +36103159103,5820.0,True,True +36103159105,7487.0,False,False +36103159106,6597.0,False,False +36103159107,3658.0,False,False +36103159108,7494.0,False,False +36103159201,2769.0,False,False +36103159203,5586.0,False,False +36103159204,4251.0,False,False +36103159300,2041.0,False,False +36103159404,6893.0,False,False +36103159406,4885.0,False,False +36103159407,6744.0,False,False +36103159408,5024.0,False,False +36103159410,7509.0,False,False +36103159411,3434.0,False,False +36103159412,7523.0,False,False +36103159505,7671.0,False,False +36103159506,9144.0,False,False +36103159508,6880.0,False,False +36103159509,3513.0,False,False +36103159510,194.0,False,True +36103159511,7784.0,False,False +36103159512,2217.0,False,False +36103159601,6188.0,False,False +36103159602,4262.0,False,False +36103169701,7733.0,False,False +36103169703,1731.0,False,False +36103169704,6827.0,False,False +36103169800,6388.0,False,True +36103169901,6487.0,False,False +36103169902,4383.0,False,False +36103170001,5646.0,False,False +36103170002,4262.0,False,False +36103170101,2082.0,True,True +36103170201,5904.0,False,False +36103170202,4242.0,False,False +36103180300,2793.0,False,False +36103190401,8997.0,False,True +36103190402,2539.0,False,False +36103190403,4382.0,False,False +36103190502,2558.0,False,False +36103190503,2700.0,False,False +36103190504,1736.0,False,False +36103190601,4521.0,False,False +36103190603,4904.0,False,True +36103190604,4457.0,False,False +36103190704,3081.0,False,False +36103190705,3478.0,False,False +36103190706,4365.0,False,False +36103190707,5293.0,False,False +36103190708,1813.0,False,False +36103190800,3285.0,False,False +36103200901,869.0,False,False +36103200902,7046.0,False,False +36103201001,7036.0,False,False +36103201003,3316.0,False,False +36103201004,3685.0,False,False +36103201100,6037.0,False,True +36103990100,0.0,False,False +36105950100,3436.0,False,False +36105950200,3647.0,False,False +36105950300,1235.0,False,False +36105950400,2925.0,False,False +36105950500,3370.0,False,False +36105950600,1722.0,False,False +36105950700,4253.0,True,False +36105950800,4571.0,False,False +36105950900,3085.0,True,True +36105951000,2130.0,True,True +36105951100,3139.0,False,False +36105951200,7299.0,False,False +36105951300,4154.0,False,False +36105951500,2765.0,True,True +36105951600,3742.0,False,False +36105951700,3917.0,False,False +36105951800,5654.0,True,True +36105951900,1922.0,False,False +36105952000,2214.0,False,False +36105952100,2565.0,False,False +36105952200,1430.0,True,True +36105952300,1367.0,False,True +36105952400,2260.0,False,False +36105952500,2314.0,False,False +36107020100,6015.0,False,False +36107020200,5057.0,False,False +36107020300,6344.0,False,False +36107020401,4938.0,False,False +36107020402,3716.0,False,False +36107020500,3829.0,True,True +36107020600,7388.0,False,False +36107020701,2944.0,False,False +36107020702,4308.0,False,False +36107020703,4147.0,True,True +36109000100,1673.0,False,False +36109000200,5266.0,False,False +36109000300,2736.0,False,False +36109000400,4224.0,False,False +36109000500,4430.0,False,False +36109000600,4738.0,False,False +36109000700,3970.0,False,False +36109000800,2765.0,False,False +36109000900,4120.0,False,False +36109001000,4179.0,False,False +36109001100,6358.0,False,False +36109001200,2985.0,False,False +36109001300,6393.0,False,False +36109001400,3563.0,False,False +36109001500,6040.0,False,False +36109001600,4393.0,False,False +36109001700,4393.0,False,False +36109001800,5101.0,False,False +36109001900,6161.0,False,False +36109002000,4694.0,False,False +36109002100,3926.0,False,False +36109002200,4669.0,False,False +36109002300,5865.0,False,False +36111950100,4920.0,False,False +36111950200,3847.0,True,False +36111950300,4380.0,False,False +36111950400,4413.0,False,False +36111950500,3068.0,False,False +36111950600,2736.0,False,False +36111950900,1222.0,False,False +36111951000,4296.0,False,False +36111951100,2449.0,False,False +36111951200,3631.0,False,False +36111951300,4119.0,False,False +36111951400,3618.0,True,True +36111951500,3759.0,False,False +36111951600,2004.0,False,False +36111951700,5312.0,True,True +36111951800,1580.0,True,True +36111951900,2542.0,True,True +36111952000,2806.0,True,True +36111952100,3605.0,True,False +36111952200,3330.0,False,False +36111952300,1455.0,False,False +36111952400,2440.0,True,True +36111952500,3242.0,False,False +36111952600,5540.0,False,False +36111952700,2773.0,False,False +36111952800,3085.0,False,False +36111952900,5497.0,False,False +36111953000,1760.0,False,False +36111953300,4414.0,False,False +36111953400,4572.0,False,False +36111953500,5176.0,False,False +36111953600,5707.0,False,False +36111953700,4807.0,False,False +36111953800,3909.0,False,False +36111953900,4751.0,False,False +36111954000,4596.0,False,False +36111954100,5658.0,False,False +36111954200,5620.0,False,False +36111954400,9664.0,True,True +36111954500,4480.0,False,False +36111954600,1470.0,False,False +36111954700,1840.0,True,True +36111954800,5009.0,True,True +36111954900,1506.0,False,False +36111955000,5417.0,False,False +36111955300,2361.0,True,True +36111955400,4279.0,False,False +36113070100,2556.0,False,False +36113070200,1955.0,True,True +36113070300,3365.0,False,False +36113070400,3998.0,False,False +36113070500,2466.0,True,True +36113070601,5554.0,False,False +36113070602,1375.0,False,False +36113070701,3911.0,False,False +36113070702,4906.0,False,False +36113070800,7214.0,False,False +36113070900,4496.0,False,False +36113071000,3266.0,False,False +36113072000,3426.0,False,False +36113073000,3985.0,True,True +36113073500,1764.0,False,False +36113074000,2333.0,False,False +36113075000,3268.0,False,False +36113076000,2303.0,False,False +36113078000,2135.0,False,False +36115080100,4635.0,True,False +36115080200,2479.0,False,False +36115080300,5306.0,False,False +36115081000,6052.0,False,False +36115082001,4644.0,False,False +36115082002,1245.0,False,False +36115084000,6483.0,True,True +36115085000,2102.0,False,False +36115086000,1838.0,True,True +36115087000,3688.0,False,False +36115088000,6159.0,False,False +36115089000,4822.0,False,False +36115090000,2650.0,False,False +36115091000,1827.0,False,False +36115092000,3292.0,False,False +36115093000,1961.0,False,False +36115094000,2433.0,False,False +36117020101,4996.0,False,False +36117020102,5096.0,False,False +36117020201,4637.0,False,False +36117020202,4591.0,False,False +36117020301,3814.0,False,False +36117020302,5143.0,False,False +36117020401,2843.0,False,False +36117020402,3914.0,False,False +36117020500,4595.0,False,False +36117020600,4141.0,False,False +36117020700,3448.0,False,False +36117020800,2685.0,False,False +36117020900,5409.0,True,False +36117021000,6360.0,False,False +36117021100,4807.0,True,True +36117021200,4642.0,True,True +36117021400,3292.0,True,True +36117021501,2096.0,False,False +36117021502,4144.0,True,True +36117021600,3880.0,False,False +36117021700,3911.0,False,False +36117021800,2075.0,True,True +36117990100,0.0,False,False +36119000101,4017.0,True,True +36119000103,5114.0,True,True +36119000104,716.0,False,False +36119000201,7936.0,True,True +36119000202,4067.0,False,False +36119000203,3157.0,False,False +36119000300,4223.0,True,True +36119000401,4191.0,False,False +36119000402,5628.0,True,True +36119000500,4681.0,True,True +36119000600,6994.0,True,True +36119000701,3576.0,False,False +36119000702,4275.0,False,False +36119000801,6439.0,False,True +36119000802,2530.0,False,False +36119000803,4919.0,False,False +36119000900,3071.0,False,False +36119001000,1786.0,True,True +36119001101,3445.0,True,True +36119001102,5608.0,True,True +36119001200,4146.0,True,True +36119001301,3883.0,False,False +36119001302,3939.0,True,True +36119001303,7745.0,True,True +36119001401,3926.0,False,True +36119001402,1697.0,False,False +36119001403,3444.0,False,False +36119001502,3021.0,False,False +36119001503,2757.0,False,False +36119001504,5552.0,False,False +36119001505,2102.0,False,False +36119001600,3561.0,False,False +36119001700,6732.0,False,False +36119001800,1814.0,False,True +36119001900,1566.0,False,False +36119002000,4260.0,False,False +36119002101,3976.0,False,False +36119002103,3076.0,False,False +36119002104,4973.0,False,False +36119002105,1658.0,False,False +36119002106,2553.0,False,False +36119002107,1726.0,False,False +36119002201,2381.0,False,False +36119002202,4812.0,False,False +36119002203,1802.0,True,True +36119002204,4989.0,False,False +36119002300,4304.0,False,False +36119002401,1846.0,False,False +36119002402,3383.0,False,False +36119002403,5241.0,False,False +36119002404,3242.0,False,False +36119002405,3488.0,False,False +36119002600,4462.0,False,False +36119002700,4154.0,False,False +36119002800,2222.0,False,True +36119002900,3798.0,True,True +36119003000,2995.0,False,False +36119003100,3081.0,True,True +36119003200,2508.0,True,True +36119003300,3144.0,False,False +36119003400,4839.0,False,False +36119003500,1805.0,True,True +36119003600,3512.0,True,True +36119003700,3404.0,False,True +36119003800,2675.0,False,False +36119003900,3703.0,False,False +36119004000,6156.0,False,False +36119004100,4415.0,False,False +36119004200,4414.0,False,False +36119004300,1836.0,False,False +36119004400,3348.0,False,False +36119004500,1425.0,False,False +36119004600,2958.0,False,False +36119004700,3451.0,False,False +36119004800,6584.0,False,False +36119004900,3060.0,False,False +36119005001,3836.0,False,False +36119005002,4459.0,False,False +36119005100,3855.0,False,False +36119005200,4780.0,False,False +36119005300,5222.0,False,False +36119005400,1719.0,False,False +36119005500,5569.0,False,False +36119005600,0.0,False,False +36119005701,6730.0,False,False +36119005702,3077.0,False,False +36119005800,4929.0,True,True +36119005901,5254.0,False,True +36119005902,5319.0,False,False +36119006000,4175.0,False,False +36119006100,4713.0,False,True +36119006200,5428.0,True,True +36119006300,6378.0,True,True +36119006400,5958.0,False,False +36119006500,4908.0,False,True +36119006600,6203.0,False,False +36119006700,5226.0,False,False +36119006801,5237.0,False,False +36119006802,5532.0,False,False +36119006900,6390.0,False,False +36119007000,5733.0,False,False +36119007100,6096.0,False,False +36119007200,6622.0,False,False +36119007300,4829.0,False,False +36119007401,4707.0,False,False +36119007402,3059.0,False,False +36119007500,4727.0,False,False +36119007600,5809.0,False,False +36119007700,5284.0,False,False +36119007800,4616.0,False,True +36119007900,7693.0,True,True +36119008000,5217.0,True,True +36119008100,4245.0,False,True +36119008200,7571.0,False,False +36119008301,2986.0,False,False +36119008302,6501.0,False,False +36119008401,2080.0,False,False +36119008403,4146.0,False,False +36119008404,5191.0,False,False +36119008500,3374.0,False,False +36119008602,5609.0,False,False +36119008700,5375.0,False,False +36119008800,3912.0,False,False +36119008901,5854.0,False,False +36119008902,4034.0,False,False +36119009000,4163.0,False,False +36119009100,6085.0,False,False +36119009200,7279.0,False,True +36119009300,2968.0,True,True +36119009400,3866.0,False,True +36119009500,5538.0,False,False +36119009600,4419.0,False,False +36119009701,3021.0,False,False +36119009702,2850.0,False,False +36119009703,4148.0,False,False +36119009800,4545.0,False,False +36119009900,3012.0,False,False +36119010000,5643.0,False,False +36119010100,4637.0,False,False +36119010200,4698.0,False,False +36119010300,3223.0,False,False +36119010400,4119.0,False,False +36119010500,6951.0,False,False +36119010600,4512.0,False,False +36119010701,6273.0,False,False +36119010702,5106.0,False,False +36119010801,2999.0,False,False +36119010803,3519.0,False,False +36119010804,2726.0,False,False +36119010901,2160.0,False,False +36119010902,5732.0,False,False +36119010903,5257.0,False,False +36119011000,2663.0,False,False +36119011101,6268.0,False,False +36119011102,2839.0,False,False +36119011200,4372.0,False,False +36119011300,6529.0,False,False +36119011400,5758.0,False,False +36119011500,5678.0,False,False +36119011600,6779.0,False,True +36119011700,3263.0,False,False +36119011800,5704.0,False,False +36119011902,4808.0,False,False +36119012000,4628.0,False,False +36119012101,5657.0,False,False +36119012102,4729.0,False,False +36119012200,7221.0,False,False +36119012301,2633.0,False,False +36119012303,4908.0,False,False +36119012304,4694.0,False,False +36119012400,5177.0,False,False +36119012501,3230.0,False,False +36119012502,5684.0,False,False +36119012503,3685.0,False,False +36119012600,4367.0,False,False +36119012700,5012.0,False,False +36119012802,7136.0,False,False +36119012900,4279.0,False,False +36119013000,6587.0,False,False +36119013102,6439.0,False,False +36119013103,5332.0,False,False +36119013104,6134.0,False,False +36119013201,4017.0,False,False +36119013202,3018.0,False,False +36119013301,3331.0,True,True +36119013304,4957.0,False,True +36119013400,6722.0,False,False +36119013500,4010.0,False,False +36119013600,4343.0,False,True +36119013700,5521.0,False,False +36119013800,3344.0,False,False +36119013900,4811.0,False,False +36119014000,2140.0,False,False +36119014100,6373.0,False,False +36119014200,3539.0,True,False +36119014300,3984.0,True,True +36119014400,6270.0,False,True +36119014500,3909.0,False,False +36119014604,4438.0,False,False +36119014605,3376.0,False,False +36119014606,5835.0,False,False +36119014607,4283.0,False,False +36119014701,5009.0,False,False +36119014703,6271.0,False,False +36119014704,2480.0,False,False +36119014804,8669.0,False,False +36119014805,4406.0,False,False +36119014806,6528.0,False,False +36119014808,3661.0,False,False +36119014809,5597.0,False,False +36119014810,2021.0,False,False +36119014811,5656.0,False,False +36119014901,6222.0,False,False +36119014903,4191.0,False,False +36119014907,4620.0,False,False +36119014908,3412.0,False,False +36119014909,3042.0,False,False +36119015000,5167.0,False,False +36119981000,2181.0,True,True +36119982000,1723.0,True,True +36119983000,1288.0,False,False +36119984000,439.0,True,True +36119985000,2360.0,False,False +36121970100,2458.0,False,False +36121970200,7117.0,False,False +36121970300,3243.0,False,False +36121970400,3841.0,False,False +36121970500,4863.0,False,False +36121970600,4389.0,True,False +36121970700,2796.0,False,False +36121970800,2856.0,True,True +36121970900,2079.0,False,False +36121971000,4118.0,False,False +36121971100,2545.0,False,False +36123150100,6288.0,True,True +36123150200,5440.0,False,False +36123150300,5092.0,False,False +36123150400,3763.0,False,False +36123150500,4428.0,False,False +37001020100,4058.0,True,True +37001020200,4093.0,True,True +37001020300,7400.0,True,True +37001020400,6746.0,True,True +37001020501,3819.0,False,False +37001020502,4012.0,True,True +37001020601,3113.0,False,False +37001020602,2638.0,False,False +37001020701,4973.0,False,False +37001020702,4941.0,True,True +37001020801,1661.0,False,False +37001020802,5915.0,True,True +37001020901,3406.0,False,False +37001020902,3459.0,False,False +37001021000,3999.0,True,True +37001021101,2718.0,True,True +37001021102,3369.0,True,True +37001021201,5565.0,True,True +37001021204,4976.0,False,False +37001021205,6830.0,False,False +37001021206,5029.0,False,False +37001021207,3476.0,True,True +37001021300,6018.0,False,False +37001021400,2748.0,False,False +37001021500,4760.0,False,False +37001021600,7553.0,False,False +37001021701,3432.0,False,False +37001021702,6911.0,False,False +37001021703,6408.0,False,False +37001021801,4858.0,False,False +37001021802,3743.0,False,False +37001021803,3246.0,True,True +37001021901,4819.0,False,False +37001021902,4139.0,False,False +37001022001,4044.0,False,False +37001022002,4449.0,True,True +37003040100,3167.0,False,False +37003040200,3910.0,True,True +37003040300,3164.0,False,False +37003040400,6761.0,True,True +37003040500,7016.0,True,True +37003040600,6372.0,False,False +37003040700,6823.0,False,False +37005950100,4117.0,True,True +37005950200,3711.0,True,True +37005950300,3180.0,True,True +37007920100,3031.0,True,True +37007920200,1881.0,True,True +37007920300,7496.0,False,False +37007920400,3175.0,True,True +37007920500,5566.0,True,True +37007920600,3753.0,True,True +37009970200,2958.0,True,True +37009970300,2573.0,True,True +37009970400,5029.0,True,False +37009970500,5839.0,True,True +37009970700,5230.0,False,False +37009970800,5234.0,True,True +37011930100,3570.0,False,False +37011930200,2348.0,True,True +37011930301,3252.0,True,True +37011930302,2566.0,True,True +37011930400,5770.0,True,True +37013930100,4981.0,True,True +37013930200,6572.0,False,False +37013930300,3714.0,True,True +37013930400,4724.0,True,True +37013930501,4435.0,True,True +37013930502,3866.0,True,True +37013930600,3174.0,False,False +37013930700,2552.0,False,False +37013930800,2628.0,True,True +37013930900,4297.0,False,False +37013931000,6225.0,True,True +37015960100,5616.0,True,True +37015960200,3953.0,True,True +37015960300,3276.0,True,True +37015960400,6535.0,True,True +37017950100,5080.0,True,True +37017950200,3099.0,True,True +37017950300,6549.0,True,True +37017950400,6281.0,True,True +37017950500,6646.0,True,True +37017950600,5752.0,True,True +37019020101,2554.0,True,True +37019020102,5186.0,False,False +37019020103,8929.0,False,False +37019020104,5816.0,True,True +37019020201,4564.0,False,False +37019020202,9327.0,False,False +37019020203,2748.0,False,False +37019020204,6847.0,True,True +37019020303,4029.0,False,False +37019020304,8049.0,False,False +37019020305,2795.0,False,False +37019020306,2167.0,False,False +37019020307,230.0,False,False +37019020308,1896.0,False,False +37019020309,2968.0,False,False +37019020310,2568.0,False,False +37019020402,3393.0,False,False +37019020403,5336.0,True,True +37019020404,2800.0,False,False +37019020405,3312.0,False,False +37019020504,2045.0,False,False +37019020505,4496.0,True,True +37019020506,5352.0,False,False +37019020507,7639.0,False,False +37019020508,2992.0,False,False +37019020509,4861.0,True,True +37019020510,2039.0,False,False +37019020511,2412.0,False,False +37019020512,932.0,False,False +37019020601,4826.0,False,False +37019020602,5378.0,False,False +37019020603,3329.0,True,True +37019990100,0.0,False,False +37021000100,1445.0,True,True +37021000200,1402.0,True,True +37021000300,2396.0,False,False +37021000400,3899.0,False,False +37021000500,3559.0,False,False +37021000600,1871.0,True,True +37021000700,1605.0,True,True +37021000800,3454.0,False,False +37021000900,2996.0,True,True +37021001000,4811.0,True,True +37021001100,5573.0,False,False +37021001200,4903.0,False,False +37021001300,4551.0,True,True +37021001400,6950.0,True,True +37021001500,2711.0,True,True +37021001600,6514.0,False,False +37021001700,2728.0,False,False +37021001801,3391.0,False,False +37021001802,5062.0,False,False +37021001900,3885.0,True,False +37021002000,6446.0,True,False +37021002101,1462.0,False,False +37021002102,5740.0,True,False +37021002203,4429.0,True,True +37021002204,9453.0,False,False +37021002205,7406.0,False,False +37021002206,4829.0,False,False +37021002301,6862.0,False,False +37021002302,9265.0,False,False +37021002401,3514.0,True,True +37021002402,4943.0,False,False +37021002503,4081.0,False,False +37021002504,4896.0,True,False +37021002505,5313.0,False,False +37021002506,3655.0,True,True +37021002603,3818.0,True,True +37021002604,5787.0,False,False +37021002605,6215.0,True,False +37021002606,4462.0,True,False +37021002607,4091.0,False,False +37021002701,3861.0,False,False +37021002702,4403.0,False,False +37021002703,6441.0,False,False +37021002803,4827.0,True,True +37021002804,4883.0,False,False +37021002900,3814.0,True,True +37021003001,9026.0,False,False +37021003002,6591.0,False,False +37021003102,5518.0,False,False +37021003103,1888.0,False,False +37021003104,6487.0,False,False +37021003201,1663.0,False,False +37021003202,4082.0,False,False +37021003203,5774.0,False,False +37021003204,5977.0,True,False +37021003205,1278.0,True,False +37023020100,4318.0,True,True +37023020201,6586.0,True,True +37023020202,4222.0,False,False +37023020301,4962.0,True,True +37023020302,7403.0,True,True +37023020500,2818.0,False,False +37023020600,5573.0,True,True +37023020801,5457.0,False,True +37023020802,3553.0,True,True +37023020900,6901.0,True,True +37023021000,5070.0,False,False +37023021100,6000.0,True,True +37023021201,3724.0,True,True +37023021202,4928.0,True,True +37023021203,4377.0,True,True +37023021301,5654.0,True,True +37023021302,3425.0,True,True +37023021400,4997.0,True,True +37025040500,13448.0,False,False +37025040600,7091.0,False,False +37025040701,1671.0,True,True +37025040702,7143.0,True,False +37025040703,2763.0,True,True +37025040800,3760.0,True,True +37025040900,2003.0,False,False +37025041000,5842.0,True,True +37025041100,6383.0,False,False +37025041200,8857.0,False,False +37025041301,6861.0,False,False +37025041302,11284.0,False,False +37025041303,10349.0,False,False +37025041501,11311.0,False,False +37025041502,8018.0,False,False +37025041503,4333.0,False,False +37025041601,8634.0,False,False +37025041602,3982.0,False,False +37025041701,4025.0,False,False +37025041702,3672.0,False,True +37025041901,2216.0,True,True +37025041902,4239.0,True,True +37025042000,5115.0,True,True +37025042101,3180.0,True,True +37025042102,3937.0,True,False +37025042200,7066.0,False,False +37025042300,4078.0,True,True +37025042401,3544.0,False,False +37025042402,6715.0,False,False +37025042501,4171.0,False,False +37025042502,2660.0,False,False +37025042503,4099.0,False,False +37025042504,1595.0,False,False +37025042601,5264.0,False,False +37025042602,4177.0,False,False +37025042603,8096.0,False,False +37025042604,5033.0,False,False +37027030100,5448.0,True,True +37027030200,4712.0,True,True +37027030300,4170.0,True,True +37027030400,3947.0,True,True +37027030500,4940.0,False,False +37027030600,4711.0,False,False +37027030700,7027.0,False,False +37027030800,7646.0,True,True +37027030900,4695.0,True,True +37027031000,3226.0,True,True +37027031100,4252.0,False,False +37027031201,4500.0,True,True +37027031202,4387.0,True,True +37027031300,8912.0,False,False +37027031401,3423.0,False,False +37027031402,3357.0,False,False +37027031403,2531.0,True,True +37029950101,5724.0,False,False +37029950102,4827.0,False,False +37031970101,959.0,True,True +37031970102,2394.0,False,False +37031970103,2743.0,True,True +37031970200,1260.0,True,True +37031970301,4578.0,False,False +37031970302,1174.0,True,True +37031970303,1037.0,False,False +37031970304,2209.0,True,True +37031970401,1591.0,True,True +37031970402,1315.0,True,True +37031970403,1230.0,False,False +37031970501,3073.0,True,True +37031970502,2379.0,False,False +37031970503,2307.0,False,False +37031970504,1858.0,False,False +37031970601,1458.0,False,False +37031970602,1157.0,False,False +37031970603,1371.0,True,True +37031970604,2167.0,False,False +37031970605,1408.0,False,False +37031970701,1105.0,True,True +37031970702,3011.0,False,False +37031970703,5363.0,False,False +37031970704,2330.0,True,True +37031970801,3106.0,False,False +37031970802,2130.0,False,False +37031970803,1584.0,False,False +37031970804,3532.0,False,False +37031970805,1847.0,False,False +37031970901,1196.0,False,False +37031970902,1379.0,False,False +37031970903,1128.0,False,False +37031971001,520.0,False,False +37031971002,1343.0,False,False +37031971101,1268.0,False,False +37031971102,560.0,False,False +37031980100,0.0,False,False +37031990100,0.0,False,False +37031990200,0.0,False,False +37033930100,2407.0,True,True +37033930200,5376.0,True,True +37033930300,3922.0,True,True +37033930400,2229.0,False,False +37033930500,3538.0,False,False +37033930600,5212.0,False,False +37035010101,5938.0,False,False +37035010102,4113.0,False,False +37035010201,5000.0,True,True +37035010202,8599.0,False,False +37035010301,4722.0,False,False +37035010302,5763.0,False,False +37035010303,4405.0,True,True +37035010304,4478.0,True,True +37035010401,7215.0,True,False +37035010402,5051.0,False,False +37035010501,3857.0,False,False +37035010502,3501.0,False,False +37035010600,6517.0,True,True +37035010700,2366.0,True,True +37035010900,3219.0,True,True +37035011000,2140.0,True,True +37035011101,3885.0,False,True +37035011102,7671.0,False,False +37035011200,6363.0,False,False +37035011300,7036.0,True,True +37035011401,3544.0,True,True +37035011402,3893.0,True,True +37035011501,4725.0,False,False +37035011503,3690.0,False,False +37035011504,6577.0,False,False +37035011601,4542.0,True,True +37035011602,5162.0,True,True +37035011701,4563.0,False,False +37035011702,7067.0,False,False +37035011801,5680.0,False,False +37035011802,6331.0,True,True +37037020103,4616.0,False,False +37037020104,5370.0,False,False +37037020105,5516.0,False,False +37037020106,4593.0,False,False +37037020200,8788.0,False,False +37037020300,2790.0,True,True +37037020401,6099.0,True,True +37037020402,4499.0,True,True +37037020500,3626.0,True,True +37037020600,5187.0,True,True +37037020701,6970.0,False,False +37037020702,3996.0,False,False +37037020800,9288.0,False,False +37039930100,4228.0,True,True +37039930200,2155.0,True,True +37039930300,2741.0,True,True +37039930400,5969.0,True,True +37039930500,5297.0,False,True +37039930601,3421.0,True,True +37039930602,4158.0,True,True +37041930101,5230.0,True,True +37041930102,2352.0,True,True +37041930200,6515.0,False,False +37043950100,5030.0,False,False +37043950200,5916.0,True,True +37045950101,4997.0,True,True +37045950102,2551.0,True,True +37045950200,4647.0,True,True +37045950301,4522.0,True,True +37045950302,6054.0,True,True +37045950400,7254.0,True,True +37045950500,3310.0,True,True +37045950601,3820.0,False,False +37045950602,6019.0,True,True +37045950700,7554.0,True,False +37045950800,4579.0,True,False +37045950900,2649.0,True,True +37045951000,3092.0,True,True +37045951100,2742.0,True,True +37045951200,5651.0,True,True +37045951300,2891.0,False,False +37045951400,6397.0,False,False +37045951501,5785.0,False,False +37045951502,1192.0,False,False +37045951503,2618.0,False,False +37045951601,4302.0,True,True +37045951602,4656.0,True,True +37047930100,4615.0,True,True +37047930200,2235.0,True,True +37047930300,2859.0,False,True +37047930400,3596.0,True,True +37047930500,4393.0,True,True +37047930600,3560.0,True,True +37047930700,4313.0,True,True +37047930800,3919.0,False,False +37047930900,4738.0,True,True +37047931000,5405.0,True,True +37047931100,3764.0,True,True +37047931200,7034.0,True,True +37047931300,5637.0,True,True +37049960101,3454.0,False,False +37049960102,4450.0,False,False +37049960200,8244.0,True,True +37049960300,6484.0,True,True +37049960401,4620.0,False,False +37049960402,4137.0,False,False +37049960403,4050.0,False,False +37049960404,2954.0,False,False +37049960500,7715.0,True,True +37049960600,6237.0,True,True +37049960700,1700.0,False,False +37049960800,1989.0,True,True +37049960900,2032.0,True,True +37049961001,10989.0,False,False +37049961002,4176.0,False,False +37049961100,8791.0,False,False +37049961201,3009.0,True,True +37049961202,4385.0,False,False +37049961301,3647.0,False,False +37049961302,5264.0,True,True +37049961303,4164.0,False,False +37051000200,2202.0,True,True +37051000500,2288.0,True,True +37051000600,5566.0,True,False +37051000701,5446.0,False,False +37051000702,2279.0,False,False +37051000800,2684.0,False,False +37051000900,4848.0,True,True +37051001000,2556.0,True,True +37051001100,3912.0,False,True +37051001200,5156.0,True,True +37051001400,6257.0,True,True +37051001500,2954.0,True,True +37051001601,7461.0,False,False +37051001603,3887.0,True,True +37051001604,8113.0,False,False +37051001700,9127.0,True,True +37051001800,2353.0,True,False +37051001901,1976.0,True,True +37051001902,4516.0,False,False +37051001903,4105.0,True,True +37051002001,3074.0,False,False +37051002002,4882.0,True,False +37051002100,3839.0,False,False +37051002200,2296.0,True,True +37051002300,4360.0,True,True +37051002401,1439.0,True,True +37051002402,3021.0,True,True +37051002501,7613.0,False,False +37051002502,7852.0,False,False +37051002503,4488.0,False,False +37051002504,7315.0,False,False +37051002600,5241.0,False,False +37051002700,8289.0,False,False +37051002800,6426.0,False,False +37051002900,4075.0,True,True +37051003001,13267.0,False,False +37051003002,2697.0,True,True +37051003102,5452.0,False,False +37051003103,5579.0,False,False +37051003104,6916.0,True,True +37051003201,12694.0,False,False +37051003203,5472.0,False,False +37051003204,8374.0,True,True +37051003205,5123.0,False,False +37051003302,6131.0,True,True +37051003304,7038.0,False,False +37051003305,6161.0,True,True +37051003307,4235.0,False,False +37051003309,6546.0,False,False +37051003310,5162.0,True,True +37051003311,2885.0,True,True +37051003312,6671.0,False,False +37051003313,8160.0,False,False +37051003314,7618.0,False,False +37051003401,3317.0,True,False +37051003402,3801.0,True,False +37051003403,4337.0,True,True +37051003404,2697.0,True,False +37051003405,1923.0,True,True +37051003406,1642.0,False,False +37051003407,1763.0,True,False +37051003408,4918.0,True,False +37051003500,4621.0,True,True +37051003600,5426.0,True,True +37051003700,7144.0,False,False +37051003800,2754.0,True,True +37051980100,0.0,False,False +37051980200,441.0,True,False +37053110101,947.0,False,False +37053110102,1437.0,False,False +37053110200,7960.0,False,False +37053110301,4636.0,False,False +37053110302,3705.0,False,False +37053110401,3635.0,False,False +37053110402,4043.0,True,True +37053990100,0.0,False,False +37055970101,4158.0,False,False +37055970102,3471.0,False,False +37055970200,4759.0,False,False +37055970300,6505.0,False,False +37055970400,2938.0,False,False +37055970501,1072.0,False,False +37055970502,3649.0,True,True +37055970601,7782.0,True,True +37055970602,1888.0,True,True +37055990100,0.0,False,False +37055990200,0.0,False,False +37057060101,5566.0,False,False +37057060102,7593.0,False,False +37057060201,4603.0,False,False +37057060202,2427.0,True,True +37057060203,6054.0,False,False +37057060301,4796.0,False,False +37057060302,4063.0,False,False +37057060303,4032.0,False,False +37057060304,3635.0,False,False +37057060400,5162.0,False,False +37057060500,5617.0,False,False +37057060601,4540.0,False,False +37057060602,2625.0,False,False +37057060700,5734.0,True,True +37057060800,3764.0,True,True +37057060900,5015.0,True,False +37057061000,4891.0,False,False +37057061100,7195.0,True,True +37057061201,6337.0,True,True +37057061202,3069.0,False,False +37057061300,2323.0,True,True +37057061400,3141.0,True,True +37057061500,6309.0,True,True +37057061600,2796.0,True,True +37057061701,5069.0,False,False +37057061702,7222.0,True,True +37057061703,4751.0,True,True +37057061802,7775.0,False,False +37057061803,3107.0,False,False +37057061804,6405.0,False,False +37057061901,5796.0,True,True +37057061902,5421.0,True,True +37057062001,4513.0,False,False +37057062002,4035.0,True,True +37059080100,8355.0,False,False +37059080200,5377.0,False,False +37059080300,8998.0,False,False +37059080400,4883.0,False,False +37059080500,4635.0,True,True +37059080600,3997.0,False,False +37059080700,6012.0,True,True +37061090100,9362.0,True,True +37061090200,4963.0,True,True +37061090300,5913.0,True,True +37061090400,5434.0,True,True +37061090501,5803.0,False,False +37061090502,4611.0,False,False +37061090600,3885.0,True,True +37061090701,3682.0,False,False +37061090702,6586.0,True,True +37061090801,3053.0,True,True +37061090802,5675.0,True,True +37063000101,3150.0,True,True +37063000102,4430.0,True,True +37063000200,3343.0,True,True +37063000301,2381.0,False,False +37063000302,3819.0,False,False +37063000401,2900.0,False,False +37063000402,2337.0,False,False +37063000500,4532.0,True,True +37063000600,5504.0,True,False +37063000700,3682.0,False,False +37063000900,1710.0,True,True +37063001001,3706.0,True,True +37063001002,5931.0,True,True +37063001100,3183.0,True,True +37063001301,1382.0,True,True +37063001303,3985.0,False,False +37063001304,3411.0,True,True +37063001400,2397.0,True,True +37063001501,3387.0,False,False +37063001502,5928.0,True,True +37063001503,1727.0,False,False +37063001601,6435.0,False,False +37063001603,6829.0,False,False +37063001604,6381.0,False,False +37063001705,5050.0,False,False +37063001706,5321.0,False,False +37063001707,7085.0,False,False +37063001708,5245.0,False,False +37063001709,6964.0,True,True +37063001710,4894.0,True,False +37063001711,4465.0,True,False +37063001801,8618.0,True,True +37063001802,8121.0,True,True +37063001806,7416.0,True,True +37063001807,10155.0,False,False +37063001808,10407.0,False,False +37063001809,6217.0,False,False +37063001900,4418.0,False,False +37063002007,4855.0,False,False +37063002008,3069.0,False,False +37063002009,5052.0,True,True +37063002013,4679.0,False,False +37063002015,5801.0,True,True +37063002016,5304.0,True,True +37063002017,7660.0,False,False +37063002018,9587.0,False,False +37063002019,5064.0,False,False +37063002020,7445.0,False,False +37063002021,4285.0,False,False +37063002022,4819.0,False,False +37063002023,3287.0,False,False +37063002024,6361.0,False,False +37063002025,6746.0,False,False +37063002026,7296.0,False,False +37063002027,10567.0,False,False +37063002028,10201.0,False,False +37063002100,9200.0,False,False +37063002200,2091.0,False,False +37063002300,1633.0,True,True +37063980100,0.0,False,False +37065020200,6214.0,True,True +37065020300,4821.0,True,True +37065020400,4724.0,True,True +37065020600,2364.0,False,True +37065020700,1918.0,True,True +37065020800,3324.0,True,True +37065020900,2582.0,True,True +37065021000,3006.0,True,True +37065021100,4110.0,True,True +37065021200,4806.0,True,True +37065021300,4942.0,True,True +37065021400,3548.0,True,True +37065021500,3305.0,True,True +37065021600,2984.0,False,True +37067000100,2320.0,False,False +37067000200,1083.0,True,True +37067000301,1858.0,True,True +37067000302,1546.0,True,True +37067000400,3559.0,True,True +37067000500,2271.0,True,True +37067000600,2259.0,True,True +37067000700,2238.0,True,True +37067000801,3399.0,False,True +37067000802,2536.0,True,True +37067000900,3273.0,True,True +37067001000,4119.0,True,False +37067001100,2603.0,False,False +37067001200,1991.0,False,False +37067001300,4846.0,False,False +37067001400,3641.0,True,True +37067001500,4674.0,True,True +37067001601,3256.0,True,True +37067001602,3449.0,True,True +37067001700,5678.0,True,True +37067001800,4308.0,True,True +37067001901,1608.0,True,True +37067001902,1911.0,True,True +37067002001,2692.0,True,True +37067002002,3627.0,True,True +37067002100,2206.0,False,False +37067002200,3526.0,False,False +37067002501,2611.0,False,False +37067002502,2899.0,False,False +37067002601,2824.0,False,False +37067002603,5528.0,False,False +37067002604,6604.0,False,False +37067002701,6700.0,True,False +37067002702,5924.0,True,True +37067002703,6439.0,True,False +37067002801,4330.0,False,False +37067002804,4174.0,True,False +37067002806,3147.0,True,True +37067002807,5269.0,False,False +37067002808,4045.0,False,False +37067002809,2898.0,False,False +37067002901,4812.0,True,True +37067002903,3898.0,True,True +37067002904,2285.0,False,False +37067003002,4087.0,True,False +37067003003,3332.0,False,False +37067003004,3577.0,False,False +37067003103,5463.0,False,False +37067003105,3763.0,True,True +37067003106,3140.0,False,False +37067003107,4338.0,False,False +37067003108,3822.0,True,True +37067003201,5037.0,True,False +37067003202,3884.0,False,False +37067003307,3970.0,False,False +37067003308,8798.0,False,False +37067003309,5431.0,True,False +37067003310,4337.0,True,False +37067003311,1927.0,False,False +37067003312,3444.0,False,False +37067003313,1676.0,True,True +37067003314,3400.0,False,False +37067003315,3488.0,False,False +37067003402,2368.0,False,False +37067003403,3259.0,True,True +37067003404,4198.0,True,True +37067003500,7565.0,True,True +37067003600,7308.0,True,False +37067003701,4337.0,True,True +37067003702,5241.0,True,False +37067003703,8211.0,False,False +37067003803,5480.0,False,False +37067003804,4838.0,False,False +37067003805,5518.0,False,False +37067003806,3217.0,False,False +37067003903,4502.0,True,False +37067003904,6185.0,False,False +37067003905,3504.0,False,False +37067003906,3533.0,False,False +37067003908,3015.0,False,False +37067003909,4436.0,False,False +37067004005,4584.0,False,False +37067004007,8119.0,False,False +37067004009,4657.0,False,False +37067004010,3995.0,False,False +37067004011,5965.0,False,False +37067004012,6310.0,False,False +37067004013,3454.0,False,False +37067004014,2882.0,False,False +37067004015,4749.0,False,False +37067004102,3389.0,False,False +37067004103,4479.0,False,False +37067004104,4119.0,False,False +37069060100,4744.0,True,True +37069060200,3704.0,False,False +37069060301,6123.0,False,False +37069060302,2702.0,True,True +37069060401,2774.0,True,True +37069060402,4984.0,True,True +37069060501,7599.0,False,False +37069060502,8934.0,False,False +37069060600,9200.0,False,False +37069060700,6391.0,True,True +37069060801,4102.0,True,True +37069060802,5105.0,True,True +37071030101,3627.0,False,False +37071030102,4011.0,False,False +37071030203,2377.0,False,False +37071030204,3491.0,False,False +37071030205,4199.0,True,True +37071030301,2723.0,True,False +37071030302,2518.0,True,True +37071030401,4271.0,False,False +37071030402,4492.0,False,False +37071030501,2778.0,True,False +37071030502,3581.0,False,False +37071030601,2640.0,True,False +37071030602,2565.0,False,False +37071030700,3474.0,True,False +37071030801,1538.0,True,True +37071030802,4096.0,True,True +37071030901,2154.0,True,False +37071030902,3782.0,True,True +37071031001,3392.0,True,True +37071031003,3990.0,False,False +37071031004,2829.0,False,False +37071031101,3025.0,True,True +37071031102,2161.0,True,True +37071031201,3478.0,False,False +37071031202,2389.0,False,False +37071031301,3767.0,False,False +37071031302,5005.0,True,False +37071031401,2746.0,False,False +37071031402,2492.0,False,False +37071031500,3760.0,True,True +37071031600,4035.0,True,True +37071031701,3507.0,True,False +37071031703,2626.0,False,False +37071031704,3761.0,False,False +37071031800,3375.0,True,True +37071031900,2278.0,True,True +37071032000,2913.0,True,True +37071032100,2952.0,True,True +37071032200,4362.0,False,False +37071032301,2712.0,False,False +37071032302,2967.0,True,True +37071032401,5435.0,False,False +37071032402,5408.0,False,False +37071032502,3986.0,False,False +37071032505,3958.0,False,False +37071032506,3288.0,True,False +37071032507,3631.0,False,False +37071032508,2480.0,False,False +37071032600,3854.0,False,False +37071032702,2129.0,False,False +37071032703,2067.0,True,True +37071032704,4193.0,True,True +37071032800,6005.0,True,True +37071032900,4113.0,True,True +37071033100,2955.0,True,True +37071033202,2232.0,True,True +37071033203,2453.0,True,True +37071033204,3527.0,True,True +37071033303,3263.0,False,False +37071033304,5911.0,False,False +37071033305,4299.0,False,False +37071033306,1570.0,False,False +37071033307,2058.0,False,False +37071033400,2734.0,True,True +37071033500,4883.0,False,False +37073970100,3905.0,False,False +37073970200,4002.0,False,False +37073970300,3641.0,False,False +37075920100,2554.0,True,True +37075920200,2427.0,False,True +37075920300,3528.0,True,True +37077970101,4876.0,False,False +37077970102,3580.0,False,False +37077970200,4820.0,False,False +37077970300,3529.0,True,True +37077970400,3753.0,True,True +37077970500,4265.0,False,False +37077970601,5433.0,False,False +37077970602,8553.0,False,False +37077970603,6810.0,False,False +37077970701,5466.0,False,False +37077970702,2615.0,True,True +37077970703,4389.0,True,True +37077970704,1239.0,False,False +37079950101,3808.0,True,True +37079950102,5224.0,True,True +37079950200,4828.0,True,True +37079950300,7173.0,True,True +37081010100,1910.0,True,True +37081010200,5375.0,True,True +37081010300,2650.0,True,True +37081010401,1593.0,False,False +37081010403,1597.0,False,False +37081010404,2503.0,False,False +37081010500,2361.0,False,False +37081010601,2673.0,False,False +37081010602,4280.0,False,False +37081010701,2182.0,False,False +37081010702,6017.0,False,False +37081010800,3133.0,False,False +37081010900,1688.0,False,False +37081011000,5474.0,False,True +37081011101,3867.0,True,True +37081011102,2740.0,True,True +37081011200,6033.0,True,True +37081011300,3044.0,True,True +37081011400,5090.0,True,True +37081011500,2630.0,True,True +37081011601,2505.0,True,True +37081011602,3957.0,True,True +37081011904,4737.0,True,False +37081011905,4775.0,True,False +37081012503,4417.0,False,False +37081012504,3498.0,False,False +37081012505,4550.0,False,False +37081012508,3566.0,False,False +37081012509,2601.0,False,False +37081012510,3103.0,False,False +37081012511,4811.0,False,False +37081012601,6758.0,False,False +37081012604,4277.0,True,True +37081012607,2627.0,False,False +37081012608,2829.0,True,True +37081012609,8488.0,True,True +37081012610,3510.0,True,True +37081012611,3958.0,True,True +37081012612,6951.0,True,False +37081012617,3407.0,True,False +37081012703,4434.0,False,False +37081012704,3846.0,True,True +37081012705,3831.0,True,True +37081012706,3373.0,True,True +37081012707,2950.0,True,True +37081012803,8474.0,False,False +37081012804,4406.0,True,False +37081012805,3210.0,True,True +37081013601,2539.0,False,True +37081013602,3657.0,True,True +37081013700,3926.0,False,False +37081013800,4786.0,True,True +37081013900,4338.0,True,True +37081014000,3408.0,True,True +37081014200,4637.0,True,True +37081014300,3220.0,True,True +37081014406,2576.0,True,True +37081014407,5799.0,False,False +37081014408,2325.0,True,True +37081014409,2699.0,True,False +37081014410,3922.0,True,False +37081014411,6028.0,False,False +37081014412,3128.0,False,True +37081014501,1136.0,True,True +37081014502,5082.0,True,True +37081014503,3618.0,True,True +37081015100,4607.0,False,False +37081015200,9071.0,False,False +37081015300,9440.0,False,False +37081015401,5657.0,False,False +37081015402,7715.0,True,True +37081015500,6688.0,False,False +37081015600,10648.0,False,False +37081015703,5630.0,False,False +37081015704,6322.0,False,False +37081015705,3224.0,False,False +37081015706,6075.0,False,False +37081015707,6290.0,False,False +37081015800,8680.0,False,False +37081015901,5740.0,False,False +37081015902,3941.0,False,False +37081016003,5261.0,False,False +37081016005,1829.0,False,False +37081016006,4862.0,False,False +37081016007,4714.0,False,False +37081016008,7101.0,False,False +37081016009,3822.0,False,False +37081016010,2621.0,False,False +37081016011,5679.0,True,True +37081016101,4904.0,False,False +37081016102,4219.0,True,True +37081016103,5776.0,False,False +37081016201,6366.0,False,False +37081016203,4909.0,False,False +37081016204,4566.0,False,False +37081016205,4208.0,False,False +37081016303,3230.0,False,False +37081016304,3725.0,False,False +37081016305,3484.0,False,False +37081016306,5276.0,False,False +37081016405,1684.0,True,True +37081016406,4275.0,False,False +37081016407,4435.0,False,False +37081016408,1974.0,False,False +37081016409,2578.0,False,False +37081016410,6265.0,False,False +37081016502,5949.0,False,False +37081016503,5364.0,False,False +37081016505,5907.0,False,False +37081016506,5177.0,False,False +37081016600,2266.0,True,True +37081016701,6005.0,False,False +37081016702,3583.0,False,False +37081016800,8011.0,True,True +37081016900,4595.0,False,False +37081017000,4681.0,False,False +37081017100,7242.0,False,False +37081017200,8084.0,False,False +37081980100,0.0,False,False +37083930100,3246.0,True,True +37083930200,4617.0,False,True +37083930300,4300.0,True,True +37083930400,4005.0,True,True +37083930501,3675.0,True,True +37083930502,5170.0,True,True +37083930600,4333.0,True,True +37083930700,4059.0,True,True +37083930800,5047.0,True,True +37083930900,5051.0,True,True +37083931000,3168.0,True,True +37083931100,4519.0,True,True +37085070100,4642.0,True,True +37085070200,3053.0,True,True +37085070300,5062.0,True,True +37085070401,3904.0,False,False +37085070402,6773.0,True,True +37085070500,6224.0,True,True +37085070600,4520.0,True,True +37085070700,5321.0,True,True +37085070801,2430.0,True,True +37085070802,4924.0,False,False +37085070901,3103.0,True,True +37085070902,2779.0,True,True +37085070903,2186.0,False,False +37085070904,3785.0,False,False +37085071001,5517.0,False,False +37085071002,3524.0,False,False +37085071101,3677.0,True,True +37085071102,5228.0,False,False +37085071201,2962.0,False,False +37085071202,5265.0,False,False +37085071203,2654.0,False,False +37085071204,7288.0,False,False +37085071301,3995.0,False,False +37085071302,5926.0,False,False +37085071303,11556.0,False,False +37085071401,4383.0,True,True +37085071402,11602.0,False,False +37087920101,3483.0,False,False +37087920102,3675.0,False,False +37087920200,6792.0,False,False +37087920300,3221.0,False,False +37087920400,1908.0,False,False +37087920500,6897.0,False,False +37087920600,4859.0,False,False +37087920700,3910.0,True,True +37087920800,3176.0,False,False +37087920900,1890.0,True,True +37087921000,3159.0,True,True +37087921100,2654.0,False,False +37087921200,5475.0,False,False +37087921301,5069.0,False,False +37087921302,4885.0,False,False +37087980100,0.0,False,False +37089930100,4433.0,False,False +37089930200,6396.0,True,True +37089930300,8212.0,True,False +37089930401,2690.0,False,False +37089930402,3116.0,True,False +37089930501,5831.0,False,False +37089930502,4828.0,False,False +37089930600,5224.0,False,False +37089930701,3544.0,False,False +37089930702,4875.0,False,False +37089930703,5797.0,False,False +37089930800,5550.0,False,False +37089930900,2874.0,True,False +37089931000,5236.0,True,True +37089931100,1865.0,False,False +37089931200,2173.0,True,True +37089931300,4067.0,True,True +37089931400,6227.0,True,True +37089931500,3822.0,False,False +37089931600,5025.0,False,False +37089931700,3187.0,False,False +37089931801,3748.0,False,False +37089931802,4630.0,False,False +37089931901,4218.0,False,False +37089931902,3055.0,False,False +37089932000,4290.0,False,False +37089980100,0.0,False,False +37091950100,7384.0,False,True +37091950200,5736.0,True,True +37091950300,3567.0,True,True +37091950401,3546.0,False,True +37091950402,3779.0,True,True +37093970101,10537.0,False,False +37093970102,13195.0,False,False +37093970103,8644.0,False,False +37093970201,5193.0,True,True +37093970202,4224.0,True,True +37093970300,5237.0,True,True +37093970401,3682.0,True,True +37093970402,3245.0,True,True +37093980100,0.0,False,False +37095920100,5213.0,True,True +37095990100,0.0,False,False +37095990200,0.0,False,False +37097060100,5721.0,False,False +37097060200,2354.0,True,True +37097060300,2332.0,True,True +37097060400,3924.0,True,True +37097060500,4000.0,False,False +37097060601,5555.0,True,True +37097060602,2045.0,False,False +37097060603,1868.0,True,True +37097060701,2569.0,False,False +37097060702,4553.0,False,False +37097060703,3381.0,False,False +37097060801,3466.0,True,True +37097060802,3466.0,True,True +37097060901,3959.0,False,False +37097060902,4151.0,True,True +37097061001,3948.0,False,False +37097061002,4766.0,False,False +37097061003,4120.0,False,False +37097061101,3240.0,False,False +37097061102,3347.0,False,False +37097061103,3129.0,False,False +37097061104,2249.0,False,False +37097061201,4003.0,False,False +37097061202,4726.0,False,False +37097061203,4890.0,False,False +37097061204,4045.0,False,False +37097061205,3969.0,False,False +37097061301,3157.0,False,False +37097061302,4772.0,False,False +37097061303,4671.0,False,False +37097061304,4960.0,False,False +37097061401,5190.0,False,False +37097061402,6078.0,False,False +37097061403,3280.0,False,False +37097061404,2692.0,False,False +37097061405,3762.0,False,False +37097061406,4909.0,False,False +37097061407,4660.0,False,False +37097061408,4320.0,False,False +37097061501,3863.0,True,True +37097061502,4102.0,False,False +37097061503,3739.0,False,False +37097061601,3613.0,True,False +37097061602,7994.0,False,False +37099940200,6063.0,True,True +37099950200,2190.0,False,False +37099950300,6198.0,True,True +37099950400,4619.0,False,False +37099950500,5659.0,False,False +37099950600,10688.0,False,False +37099950700,2927.0,False,False +37099950800,2244.0,False,False +37099950900,2350.0,True,True +37101040100,7209.0,True,True +37101040201,6361.0,True,True +37101040202,7060.0,True,True +37101040203,19761.0,False,False +37101040301,4899.0,True,True +37101040302,5573.0,True,True +37101040400,4422.0,False,True +37101040500,6673.0,True,True +37101040600,3821.0,True,True +37101040700,3901.0,True,True +37101040800,3807.0,True,True +37101040901,11817.0,False,False +37101040902,7895.0,False,False +37101041001,9273.0,False,False +37101041002,8918.0,False,False +37101041101,8118.0,False,False +37101041102,14095.0,False,False +37101041103,15881.0,False,False +37101041201,4153.0,True,True +37101041202,5241.0,True,True +37101041300,6502.0,True,True +37101041400,7159.0,True,True +37101041501,7603.0,False,False +37101041502,8365.0,False,False +37101041503,8363.0,False,False +37103920100,3472.0,True,True +37103920200,2885.0,True,True +37103920300,3237.0,True,True +37105030101,5490.0,False,False +37105030102,5486.0,False,False +37105030200,3304.0,True,True +37105030300,3015.0,True,True +37105030401,4011.0,True,True +37105030402,7509.0,True,True +37105030501,4736.0,False,False +37105030502,2038.0,True,True +37105030503,7292.0,True,True +37105030601,3141.0,False,False +37105030602,5058.0,False,False +37105030701,5007.0,False,False +37105030702,4394.0,False,False +37107010100,4085.0,True,True +37107010200,2452.0,True,True +37107010300,1437.0,True,True +37107010400,740.0,True,True +37107010500,3475.0,True,True +37107010600,3649.0,False,True +37107010700,2043.0,True,True +37107010800,5108.0,False,False +37107010900,3225.0,True,True +37107011001,4778.0,False,False +37107011002,3777.0,False,False +37107011100,5847.0,True,True +37107011200,7464.0,True,True +37107011300,4967.0,True,True +37107011400,3709.0,True,True +37109070100,5125.0,True,True +37109070201,5051.0,True,True +37109070202,3235.0,False,False +37109070300,4097.0,True,True +37109070400,5538.0,False,False +37109070500,4807.0,False,False +37109070600,4113.0,False,False +37109070700,3685.0,False,False +37109070800,6848.0,True,True +37109070901,3246.0,True,True +37109070902,6567.0,False,False +37109071001,5715.0,False,False +37109071002,2676.0,True,True +37109071101,6052.0,False,False +37109071102,5841.0,False,False +37109071201,1839.0,False,False +37109071202,3311.0,False,False +37109071203,5173.0,False,False +37111970100,5505.0,False,False +37111970200,4740.0,True,True +37111970300,3012.0,False,True +37111970400,3045.0,True,False +37111970500,4101.0,True,True +37111970600,3704.0,False,False +37111970700,4410.0,True,True +37111970800,4495.0,True,True +37111970901,7063.0,True,True +37111970902,5152.0,True,True +37113970100,2790.0,False,False +37113970200,3828.0,True,True +37113970301,3969.0,True,False +37113970302,4292.0,True,True +37113970400,4225.0,True,True +37113970501,1363.0,False,False +37113970502,2128.0,False,False +37113970600,5601.0,False,False +37113970700,6617.0,False,False +37115010100,2553.0,True,True +37115010200,2175.0,True,True +37115010400,1474.0,True,True +37115010500,4250.0,False,False +37115010600,7781.0,False,False +37115010700,3266.0,True,True +37117970100,4508.0,True,True +37117970200,3905.0,True,True +37117970300,3774.0,True,True +37117970400,2093.0,True,True +37117970500,5306.0,True,True +37117970600,3263.0,True,True +37119000100,5897.0,False,False +37119000300,1115.0,False,False +37119000400,3490.0,False,False +37119000500,5438.0,False,False +37119000600,2962.0,False,False +37119000700,1001.0,True,True +37119000800,2975.0,True,True +37119000900,1825.0,True,True +37119001000,3031.0,False,False +37119001100,2991.0,False,False +37119001200,5055.0,False,False +37119001300,4084.0,True,True +37119001400,3243.0,False,False +37119001504,6940.0,True,True +37119001505,3581.0,True,False +37119001507,5216.0,True,True +37119001508,6893.0,False,True +37119001509,3699.0,True,True +37119001510,3247.0,False,False +37119001603,4366.0,True,True +37119001605,1738.0,True,True +37119001606,4569.0,True,True +37119001607,3277.0,True,True +37119001608,4442.0,True,True +37119001609,3443.0,True,True +37119001701,4434.0,True,True +37119001702,5881.0,True,True +37119001801,1348.0,True,True +37119001802,2990.0,False,False +37119001910,5917.0,True,True +37119001911,5920.0,False,False +37119001912,8311.0,True,True +37119001914,3271.0,True,True +37119001915,7190.0,True,False +37119001916,4624.0,True,True +37119001917,4620.0,True,False +37119001918,4450.0,True,False +37119001919,4354.0,True,True +37119001920,5936.0,True,True +37119001921,3017.0,True,True +37119001922,4710.0,True,True +37119001923,4594.0,True,True +37119002002,6209.0,False,False +37119002003,6164.0,False,False +37119002004,5448.0,False,False +37119002100,2786.0,False,False +37119002200,5149.0,False,False +37119002300,3431.0,True,True +37119002400,3484.0,False,False +37119002500,1932.0,False,False +37119002600,1067.0,False,False +37119002701,2447.0,False,False +37119002702,6095.0,False,False +37119002800,4000.0,False,False +37119002903,4209.0,False,False +37119002904,6778.0,False,False +37119002905,3604.0,False,False +37119002906,4806.0,False,False +37119003006,4788.0,False,False +37119003007,6951.0,False,False +37119003008,5643.0,False,False +37119003011,6522.0,False,False +37119003012,4590.0,False,False +37119003013,5054.0,False,False +37119003015,4972.0,False,False +37119003016,5164.0,False,False +37119003017,3929.0,False,False +37119003018,2922.0,False,False +37119003102,4444.0,True,True +37119003103,4922.0,False,False +37119003105,3797.0,False,False +37119003106,4360.0,True,False +37119003108,3735.0,True,True +37119003109,4503.0,True,True +37119003201,2829.0,True,True +37119003203,2579.0,False,False +37119003204,3578.0,False,False +37119003300,3538.0,False,False +37119003400,5667.0,False,False +37119003500,2615.0,False,False +37119003600,4053.0,True,True +37119003700,3876.0,True,True +37119003802,3543.0,True,True +37119003805,3196.0,False,False +37119003806,9733.0,False,False +37119003807,4826.0,True,True +37119003808,6353.0,True,True +37119003902,4725.0,True,True +37119003903,2211.0,True,True +37119004000,4691.0,True,True +37119004100,4106.0,False,False +37119004200,3249.0,True,True +37119004302,5460.0,True,True +37119004303,2911.0,True,True +37119004304,4737.0,True,True +37119004305,6658.0,True,True +37119004400,4097.0,True,True +37119004500,2724.0,True,True +37119004600,2668.0,True,True +37119004700,1789.0,False,True +37119004800,3233.0,True,True +37119004900,669.0,True,True +37119005000,2155.0,True,True +37119005100,2247.0,True,True +37119005200,1825.0,True,True +37119005301,4247.0,True,True +37119005305,4279.0,True,True +37119005306,2135.0,True,True +37119005307,4184.0,True,True +37119005308,2717.0,True,True +37119005401,6183.0,True,True +37119005403,4590.0,False,False +37119005404,4877.0,False,False +37119005508,4156.0,False,False +37119005509,6855.0,False,False +37119005510,5509.0,True,True +37119005511,4292.0,False,False +37119005512,4759.0,False,False +37119005513,4413.0,False,False +37119005514,6751.0,False,False +37119005515,2488.0,False,False +37119005516,2122.0,False,False +37119005517,3971.0,False,False +37119005518,5359.0,False,False +37119005519,5333.0,False,False +37119005520,5003.0,False,False +37119005521,7195.0,False,False +37119005522,4765.0,False,False +37119005523,5843.0,False,False +37119005524,9612.0,False,False +37119005604,5819.0,False,False +37119005605,6529.0,False,False +37119005609,3320.0,False,False +37119005610,3043.0,False,False +37119005611,2914.0,False,False +37119005612,5188.0,False,False +37119005613,3260.0,False,False +37119005614,8460.0,False,False +37119005615,2200.0,False,False +37119005616,1657.0,True,True +37119005617,1864.0,False,False +37119005618,3616.0,False,False +37119005619,4880.0,False,False +37119005620,10828.0,True,False +37119005621,4105.0,False,False +37119005706,7675.0,False,False +37119005709,4344.0,False,False +37119005710,4877.0,False,False +37119005711,6175.0,False,False +37119005712,4268.0,False,False +37119005713,4551.0,False,False +37119005714,5562.0,False,False +37119005715,2633.0,False,False +37119005716,4950.0,False,False +37119005717,6677.0,False,False +37119005811,4575.0,False,False +37119005812,7032.0,False,False +37119005815,3943.0,False,False +37119005816,4577.0,False,False +37119005817,4508.0,False,False +37119005823,9214.0,False,False +37119005824,4195.0,True,True +37119005825,5301.0,True,True +37119005826,3106.0,False,False +37119005827,2843.0,False,False +37119005828,3945.0,False,False +37119005829,2077.0,False,False +37119005830,3923.0,False,False +37119005831,4706.0,False,False +37119005832,3279.0,False,False +37119005833,5289.0,False,False +37119005834,4929.0,False,False +37119005835,2930.0,False,False +37119005836,3638.0,False,False +37119005837,8125.0,False,False +37119005838,9261.0,False,False +37119005839,2681.0,False,False +37119005840,2289.0,False,False +37119005841,6810.0,False,False +37119005842,6591.0,False,False +37119005843,3218.0,False,False +37119005844,9246.0,False,False +37119005845,4443.0,False,False +37119005846,4046.0,False,False +37119005847,4874.0,False,False +37119005848,5710.0,False,False +37119005906,4898.0,True,False +37119005907,7055.0,False,False +37119005908,1590.0,False,False +37119005909,10393.0,False,False +37119005910,6185.0,False,False +37119005911,7181.0,False,False +37119005912,6821.0,False,False +37119005913,6559.0,False,False +37119005914,7685.0,False,False +37119005915,2494.0,False,False +37119005916,3029.0,True,True +37119005917,6281.0,False,False +37119005918,4067.0,False,False +37119006005,3380.0,False,True +37119006006,8228.0,True,True +37119006007,8324.0,False,False +37119006008,4314.0,False,False +37119006009,3984.0,False,False +37119006010,7342.0,True,True +37119006103,3627.0,False,False +37119006104,8897.0,False,False +37119006105,3132.0,False,False +37119006106,5143.0,False,False +37119006107,6144.0,False,False +37119006108,4529.0,False,False +37119006109,4150.0,True,True +37119006203,5168.0,False,False +37119006204,7828.0,False,False +37119006208,3190.0,False,False +37119006209,5145.0,False,False +37119006210,4498.0,False,False +37119006211,6216.0,False,False +37119006212,3661.0,False,False +37119006213,6749.0,False,False +37119006214,4027.0,False,False +37119006215,5220.0,False,False +37119006302,8558.0,False,False +37119006303,6270.0,False,False +37119006304,7047.0,False,False +37119006403,4985.0,False,False +37119006404,6184.0,False,False +37119006405,5142.0,False,False +37119006406,6252.0,False,False +37119006407,4007.0,False,False +37119980100,0.0,False,False +37119980200,0.0,False,False +37119980300,28.0,False,False +37121950100,2463.0,False,True +37121950200,3601.0,True,True +37121950300,4249.0,False,False +37121950400,4691.0,False,False +37123960100,6421.0,True,True +37123960200,7028.0,True,True +37123960300,3723.0,False,False +37123960401,2320.0,True,True +37123960402,2691.0,True,True +37123960500,5069.0,True,True +37125950100,3042.0,False,False +37125950200,8237.0,True,True +37125950301,6555.0,False,False +37125950302,5014.0,False,False +37125950401,3578.0,False,False +37125950402,5016.0,False,False +37125950501,6988.0,False,False +37125950502,9026.0,False,False +37125950601,3831.0,False,False +37125950602,6956.0,False,False +37125950701,5019.0,False,False +37125950702,2773.0,False,False +37125950801,5440.0,True,True +37125950802,3717.0,False,False +37125950900,2528.0,False,False +37125951000,5453.0,False,False +37125951100,8854.0,False,False +37125951200,5267.0,True,True +37127010200,4146.0,True,True +37127010300,5843.0,True,True +37127010400,2784.0,True,True +37127010502,7005.0,False,False +37127010503,2557.0,False,False +37127010504,5530.0,False,False +37127010601,2682.0,False,False +37127010602,6209.0,False,False +37127010700,2948.0,False,False +37127010800,7411.0,False,False +37127010900,5511.0,True,True +37127011000,4902.0,True,True +37127011101,6501.0,False,False +37127011102,7448.0,False,False +37127011200,6502.0,False,False +37127011300,5170.0,True,True +37127011400,3880.0,False,False +37127011500,7001.0,True,True +37129010100,2400.0,True,True +37129010200,3370.0,True,True +37129010300,6506.0,True,True +37129010400,3206.0,False,False +37129010501,4072.0,True,True +37129010502,9303.0,True,True +37129010600,4216.0,False,False +37129010700,4579.0,True,True +37129010800,2653.0,True,True +37129010900,2270.0,False,False +37129011000,2353.0,True,True +37129011100,2656.0,True,True +37129011200,2378.0,True,True +37129011300,1852.0,True,True +37129011400,1715.0,True,True +37129011500,7863.0,True,True +37129011603,7842.0,False,False +37129011605,5575.0,False,False +37129011606,4715.0,False,False +37129011607,12839.0,False,False +37129011608,6549.0,False,False +37129011701,4895.0,False,False +37129011703,4499.0,False,False +37129011705,9669.0,False,False +37129011800,2599.0,False,False +37129011902,5809.0,True,True +37129011903,9353.0,False,True +37129011904,2929.0,False,False +37129012001,7344.0,False,False +37129012004,3633.0,False,False +37129012006,4413.0,False,False +37129012007,4887.0,False,False +37129012008,6091.0,False,False +37129012009,7819.0,False,False +37129012010,5356.0,False,False +37129012101,9161.0,False,False +37129012103,4670.0,False,False +37129012104,6567.0,False,False +37129012105,12015.0,False,False +37129012201,2920.0,False,False +37129012202,3345.0,False,False +37129012203,2124.0,False,False +37129012300,8928.0,False,False +37129980100,0.0,False,False +37129990100,0.0,False,False +37131920100,4392.0,True,True +37131920200,3742.0,True,True +37131920300,6073.0,True,True +37131920401,4405.0,True,True +37131920402,1334.0,False,False +37133000102,9567.0,False,False +37133000103,5720.0,False,False +37133000201,12151.0,False,False +37133000202,10795.0,False,False +37133000301,6007.0,True,True +37133000302,9904.0,True,True +37133000401,6849.0,False,False +37133000402,7699.0,False,False +37133000403,1180.0,False,False +37133000500,1518.0,True,True +37133000600,10751.0,False,True +37133000700,7246.0,True,True +37133000800,1370.0,True,True +37133000900,6870.0,True,True +37133001000,5490.0,True,True +37133001101,5204.0,False,False +37133001102,3923.0,True,True +37133001200,11757.0,False,False +37133001300,17451.0,False,False +37133001400,4342.0,False,False +37133001500,2863.0,True,True +37133001700,2146.0,True,True +37133001800,1883.0,True,True +37133002100,6433.0,False,False +37133002201,4573.0,False,False +37133002202,4251.0,True,True +37133002300,3984.0,False,False +37133002400,7151.0,True,True +37133002500,3448.0,True,True +37133002600,3069.0,True,True +37133002800,9474.0,False,False +37133990100,0.0,False,False +37135010701,2274.0,False,False +37135010703,5935.0,False,False +37135010704,5415.0,False,False +37135010705,5090.0,False,False +37135010706,3503.0,False,False +37135010801,5268.0,False,False +37135010802,4880.0,False,False +37135010901,5773.0,False,False +37135010902,6039.0,False,False +37135011000,7931.0,False,False +37135011101,8057.0,False,False +37135011102,6543.0,False,False +37135011202,8178.0,False,False +37135011203,6469.0,False,False +37135011204,3204.0,False,False +37135011205,8483.0,False,False +37135011300,3146.0,False,False +37135011400,3818.0,False,False +37135011500,1957.0,False,False +37135011601,2423.0,False,False +37135011602,6722.0,False,False +37135011700,5337.0,False,False +37135011800,3169.0,False,False +37135011901,5034.0,False,False +37135011902,3965.0,False,False +37135012100,8055.0,False,False +37135012201,2814.0,False,False +37135012202,5354.0,False,False +37137950101,3344.0,True,True +37137950102,3546.0,True,True +37137950201,3574.0,False,False +37137950202,2237.0,False,False +37137990100,0.0,False,False +37139960100,1491.0,True,True +37139960200,4523.0,False,False +37139960300,2412.0,True,True +37139960400,4180.0,True,True +37139960501,3459.0,False,False +37139960502,4871.0,False,False +37139960503,2942.0,True,True +37139960600,6960.0,False,False +37139960701,5635.0,True,True +37139960702,3041.0,False,False +37141920101,409.0,False,False +37141920102,1171.0,False,False +37141920103,5420.0,False,False +37141920201,7243.0,False,False +37141920202,8873.0,False,False +37141920203,5035.0,False,False +37141920204,2608.0,False,False +37141920300,4368.0,True,True +37141920401,2667.0,True,True +37141920402,3290.0,False,False +37141920403,3605.0,False,False +37141920501,4971.0,True,True +37141920502,1811.0,True,True +37141920601,3762.0,True,True +37141920602,5166.0,False,False +37141990100,0.0,False,False +37143920100,6423.0,False,False +37143920201,2948.0,True,True +37143920202,4059.0,False,False +37145920100,6712.0,False,False +37145920200,6554.0,False,False +37145920300,5487.0,True,True +37145920400,2875.0,True,True +37145920500,6946.0,False,False +37145920601,5789.0,True,True +37145920602,4982.0,False,True +37147000100,6499.0,False,True +37147000201,4314.0,False,False +37147000202,3009.0,False,False +37147000301,2940.0,False,False +37147000302,9012.0,False,False +37147000400,7183.0,False,False +37147000501,6414.0,False,False +37147000502,7964.0,False,False +37147000601,8471.0,True,True +37147000602,6043.0,False,False +37147000603,10647.0,False,False +37147000701,3248.0,True,True +37147000702,2910.0,True,True +37147000800,3270.0,True,True +37147000900,8102.0,True,True +37147001001,2137.0,False,False +37147001002,6217.0,False,False +37147001003,5851.0,False,False +37147001100,5236.0,False,False +37147001200,6454.0,False,False +37147001301,4089.0,False,False +37147001302,5701.0,False,False +37147001303,8006.0,False,False +37147001401,4644.0,True,True +37147001402,2647.0,True,True +37147001500,3328.0,True,True +37147001600,8859.0,False,False +37147001700,4644.0,False,True +37147001800,6599.0,True,True +37147001900,2485.0,True,True +37147002001,6324.0,True,True +37147002002,5186.0,True,True +37149920101,3422.0,False,False +37149920103,3162.0,False,False +37149920104,3214.0,False,False +37149920200,4833.0,True,False +37149920301,1102.0,True,True +37149920303,1960.0,False,False +37149920304,2864.0,False,False +37151030100,4695.0,True,True +37151030201,3317.0,True,False +37151030202,4694.0,True,True +37151030301,6291.0,True,True +37151030302,2735.0,True,True +37151030400,4256.0,True,True +37151030502,4306.0,False,False +37151030503,5499.0,False,False +37151030504,5972.0,False,False +37151030600,7531.0,True,True +37151030700,6503.0,True,True +37151030801,7326.0,False,False +37151030802,6319.0,False,False +37151030900,4009.0,True,True +37151031000,7449.0,True,True +37151031100,6360.0,True,True +37151031200,4940.0,True,True +37151031303,4369.0,False,False +37151031304,4971.0,True,True +37151031305,3683.0,True,True +37151031306,6919.0,False,False +37151031400,8349.0,True,True +37151031501,5631.0,True,True +37151031503,3217.0,True,False +37151031504,5078.0,False,False +37151031505,3272.0,False,False +37151031601,4120.0,True,True +37151031602,1307.0,True,True +37153970100,4315.0,True,True +37153970200,5095.0,True,True +37153970300,4027.0,True,True +37153970400,3862.0,True,True +37153970500,2406.0,True,True +37153970600,4054.0,True,True +37153970700,2778.0,True,True +37153970800,4589.0,True,True +37153970900,4929.0,True,True +37153971000,4516.0,True,True +37153971100,4426.0,True,True +37155960101,4123.0,True,True +37155960102,5099.0,True,True +37155960201,4940.0,True,True +37155960202,4379.0,True,True +37155960300,6428.0,True,True +37155960401,7197.0,True,True +37155960402,4044.0,True,True +37155960501,3517.0,True,True +37155960502,4683.0,False,True +37155960503,1838.0,True,True +37155960600,6794.0,True,True +37155960701,6120.0,True,True +37155960702,3265.0,True,True +37155960801,3352.0,True,True +37155960802,1475.0,True,True +37155960900,2082.0,False,True +37155961000,1991.0,True,True +37155961100,2237.0,True,True +37155961200,3236.0,True,True +37155961301,4840.0,False,True +37155961302,5617.0,True,True +37155961400,4060.0,True,True +37155961500,5041.0,True,True +37155961601,4313.0,True,True +37155961602,4030.0,True,True +37155961700,5035.0,True,True +37155961801,5687.0,True,True +37155961802,5418.0,True,True +37155961900,4939.0,True,True +37155962001,3506.0,True,True +37155962002,3310.0,True,True +37157040101,3877.0,True,True +37157040102,2680.0,True,True +37157040200,3754.0,True,True +37157040300,3649.0,False,False +37157040400,6087.0,True,True +37157040501,3541.0,True,True +37157040502,2937.0,True,True +37157040601,4058.0,False,False +37157040602,4364.0,False,False +37157040700,4454.0,True,True +37157040800,1583.0,True,True +37157040900,2631.0,True,True +37157041001,5898.0,False,False +37157041002,5700.0,False,False +37157041100,6785.0,False,False +37157041200,4841.0,True,True +37157041300,6150.0,True,True +37157041400,2953.0,True,True +37157041500,7188.0,True,True +37157041601,3333.0,False,False +37157041602,4614.0,False,False +37159050201,4236.0,True,True +37159050202,5346.0,True,True +37159050300,3526.0,True,True +37159050400,2870.0,False,True +37159050500,3704.0,False,False +37159050700,3222.0,True,True +37159050800,2633.0,True,True +37159050901,4706.0,True,True +37159050903,5977.0,False,False +37159050904,2451.0,True,True +37159051001,7759.0,False,False +37159051002,5810.0,False,False +37159051101,5905.0,False,False +37159051102,3452.0,False,False +37159051201,5942.0,False,False +37159051202,3445.0,True,True +37159051204,3687.0,True,True +37159051301,2199.0,False,False +37159051302,4604.0,False,False +37159051303,5850.0,True,True +37159051400,8273.0,False,False +37159051501,3951.0,True,True +37159051502,3440.0,True,True +37159051600,6784.0,False,False +37159051700,8022.0,True,True +37159051801,4870.0,True,True +37159051802,4625.0,False,False +37159051901,4505.0,False,False +37159051902,6131.0,False,False +37159052000,2371.0,True,True +37161960100,7420.0,True,True +37161960200,7052.0,False,False +37161960300,2772.0,False,False +37161960400,3685.0,False,False +37161960500,7282.0,True,False +37161960600,3821.0,True,False +37161960700,4027.0,True,True +37161960800,4649.0,True,True +37161960900,5725.0,True,True +37161961000,6521.0,True,True +37161961101,5768.0,True,False +37161961102,3248.0,True,True +37161961200,4629.0,False,False +37163970100,7110.0,True,True +37163970200,6796.0,True,True +37163970301,6071.0,False,False +37163970302,5350.0,False,False +37163970400,4570.0,False,False +37163970500,5949.0,True,True +37163970600,4681.0,True,True +37163970700,7316.0,True,True +37163970800,6944.0,True,True +37163970900,3538.0,True,True +37163971000,5060.0,True,True +37165010101,3410.0,False,True +37165010102,4861.0,True,True +37165010200,4123.0,True,True +37165010300,4575.0,True,True +37165010400,4495.0,True,True +37165010500,7028.0,True,True +37165010600,6584.0,True,True +37167930101,4744.0,False,False +37167930102,3856.0,False,False +37167930200,4458.0,False,False +37167930300,4222.0,True,True +37167930500,3357.0,True,True +37167930700,5065.0,False,False +37167930801,4664.0,False,False +37167930802,4735.0,False,False +37167930900,5915.0,False,False +37167931000,5922.0,False,False +37167931100,5656.0,True,True +37167931201,5821.0,True,False +37167931202,3173.0,True,True +37169070100,6039.0,True,True +37169070200,3273.0,False,False +37169070300,4359.0,True,True +37169070400,5706.0,False,False +37169070501,6374.0,False,False +37169070503,6063.0,False,False +37169070504,3430.0,False,False +37169070600,5193.0,False,False +37169070700,5344.0,True,True +37171930101,1904.0,True,True +37171930102,4559.0,True,True +37171930201,3178.0,True,True +37171930202,3246.0,True,True +37171930301,2110.0,False,False +37171930302,3597.0,True,False +37171930400,2535.0,True,True +37171930501,2703.0,True,False +37171930502,3433.0,True,True +37171930600,3134.0,True,False +37171930700,4047.0,False,False +37171930801,5038.0,True,True +37171930802,3021.0,True,True +37171930901,4217.0,False,False +37171930902,1675.0,False,False +37171931001,2449.0,True,False +37171931002,5025.0,True,False +37171931003,3323.0,True,False +37171931101,2909.0,True,False +37171931102,3989.0,True,True +37171931103,1859.0,True,False +37171931200,4020.0,False,False +37173940100,4870.0,True,True +37173960200,3076.0,True,True +37173960301,2989.0,True,True +37173960302,3325.0,True,True +37173980200,0.0,False,False +37175960100,4869.0,True,True +37175960200,4687.0,True,True +37175960300,7921.0,False,False +37175960401,4422.0,False,False +37175960402,4686.0,False,False +37175960500,4658.0,True,True +37175960600,2532.0,True,True +37177960100,4095.0,True,True +37179020100,6771.0,False,False +37179020202,7505.0,False,False +37179020203,4137.0,False,False +37179020204,4202.0,False,False +37179020305,6935.0,False,False +37179020306,7833.0,False,False +37179020307,6816.0,False,False +37179020308,5843.0,False,False +37179020309,2163.0,False,False +37179020310,6142.0,False,False +37179020311,8036.0,False,False +37179020312,4578.0,False,False +37179020313,2159.0,False,False +37179020314,4936.0,False,False +37179020315,4953.0,False,False +37179020316,4715.0,False,False +37179020317,6654.0,False,False +37179020401,5769.0,False,False +37179020403,4705.0,False,False +37179020404,7071.0,True,True +37179020501,5517.0,False,False +37179020502,3789.0,True,True +37179020601,4926.0,True,True +37179020602,4996.0,True,True +37179020701,5730.0,False,False +37179020702,4214.0,False,False +37179020800,5558.0,True,True +37179020901,5431.0,True,True +37179020902,7006.0,False,False +37179021004,6893.0,False,False +37179021005,4739.0,False,False +37179021006,5832.0,False,False +37179021007,6711.0,False,False +37179021008,10069.0,False,False +37179021009,3963.0,False,False +37179021010,8125.0,False,False +37179021011,6862.0,False,False +37179021012,5313.0,False,False +37179021013,5849.0,False,False +37179021014,2664.0,False,False +37179021015,4943.0,False,False +37181960100,4051.0,True,True +37181960200,4015.0,True,True +37181960300,5127.0,True,True +37181960400,4240.0,False,True +37181960500,4379.0,True,True +37181960600,1545.0,True,True +37181960700,4206.0,True,True +37181960800,2338.0,True,True +37181960900,8840.0,True,True +37181961000,5738.0,True,True +37183050100,4251.0,False,False +37183050300,3350.0,False,False +37183050400,2045.0,False,False +37183050500,3690.0,False,False +37183050600,3645.0,False,False +37183050700,3142.0,True,True +37183050800,4090.0,True,True +37183050900,3193.0,False,True +37183051000,2576.0,False,False +37183051101,5363.0,False,True +37183051102,4977.0,False,True +37183051200,4805.0,False,False +37183051400,4937.0,False,False +37183051501,3498.0,False,False +37183051502,2101.0,False,False +37183051600,4909.0,False,False +37183051700,3360.0,False,False +37183051800,4563.0,False,False +37183051900,5216.0,False,False +37183052001,4323.0,True,True +37183052002,5931.0,True,True +37183052101,9240.0,True,True +37183052102,6960.0,True,True +37183052301,6438.0,False,False +37183052302,9657.0,False,False +37183052401,5892.0,False,False +37183052404,4736.0,False,False +37183052406,7507.0,False,False +37183052407,4291.0,False,False +37183052408,3586.0,True,True +37183052409,4286.0,False,False +37183052503,7085.0,False,False +37183052504,6774.0,False,False +37183052505,5296.0,False,False +37183052506,2677.0,False,False +37183052507,3223.0,False,False +37183052601,3410.0,False,False +37183052602,4699.0,False,False +37183052603,2865.0,False,False +37183052701,6389.0,True,True +37183052704,6420.0,True,True +37183052705,4960.0,False,False +37183052706,4751.0,True,False +37183052707,7239.0,False,False +37183052801,6512.0,False,False +37183052802,6538.0,False,False +37183052803,12074.0,True,False +37183052806,18085.0,True,True +37183052807,6558.0,False,False +37183052808,11485.0,False,False +37183052809,3068.0,False,False +37183052901,2796.0,False,False +37183052902,5999.0,False,False +37183052903,2930.0,False,False +37183052904,7801.0,False,False +37183053003,5763.0,False,False +37183053004,2937.0,False,False +37183053005,4773.0,False,False +37183053006,3123.0,False,False +37183053007,3018.0,False,False +37183053008,8492.0,False,False +37183053009,7775.0,False,False +37183053105,4346.0,False,False +37183053106,3323.0,False,False +37183053107,10561.0,False,False +37183053108,8550.0,False,False +37183053109,9478.0,False,False +37183053110,6071.0,False,False +37183053111,5977.0,False,False +37183053201,12450.0,False,False +37183053202,4315.0,False,False +37183053203,9166.0,False,False +37183053204,5093.0,False,False +37183053205,4450.0,False,False +37183053206,5130.0,False,False +37183053207,10934.0,False,False +37183053405,4724.0,False,False +37183053408,4163.0,False,False +37183053409,6701.0,False,False +37183053410,6250.0,False,False +37183053411,11913.0,False,False +37183053412,7685.0,False,False +37183053413,8189.0,False,False +37183053414,9996.0,False,False +37183053415,4002.0,False,False +37183053416,7311.0,False,False +37183053417,4316.0,False,False +37183053418,7389.0,False,False +37183053419,3142.0,False,False +37183053420,7863.0,False,False +37183053421,5737.0,False,False +37183053422,2497.0,False,False +37183053423,2039.0,False,False +37183053424,4613.0,False,False +37183053425,3103.0,False,False +37183053505,3577.0,False,False +37183053506,5504.0,False,False +37183053507,4143.0,False,False +37183053509,5375.0,False,False +37183053512,6672.0,False,False +37183053513,4564.0,False,False +37183053516,3448.0,False,False +37183053517,5097.0,True,True +37183053518,3700.0,False,False +37183053519,4895.0,False,False +37183053520,6206.0,False,False +37183053521,3694.0,False,False +37183053522,6983.0,False,False +37183053523,5646.0,False,False +37183053524,3728.0,False,False +37183053525,2947.0,False,False +37183053601,13565.0,False,False +37183053602,6510.0,False,False +37183053603,4194.0,False,False +37183053604,4341.0,False,False +37183053605,2524.0,False,False +37183053606,2568.0,False,False +37183053607,9873.0,False,False +37183053608,6477.0,False,False +37183053609,1006.0,False,False +37183053610,12071.0,False,False +37183053707,7089.0,False,False +37183053709,6892.0,False,False +37183053711,4975.0,False,False +37183053712,2625.0,False,False +37183053713,3519.0,False,False +37183053714,4347.0,False,False +37183053715,3483.0,False,False +37183053716,4216.0,False,False +37183053717,3994.0,False,False +37183053718,3628.0,False,False +37183053719,4278.0,False,False +37183053720,3973.0,False,False +37183053721,3757.0,False,False +37183053722,4837.0,False,False +37183053723,3401.0,False,False +37183053724,6541.0,False,False +37183053725,4994.0,False,False +37183053726,2936.0,False,False +37183053803,3646.0,False,False +37183053804,3402.0,False,False +37183053805,1853.0,False,False +37183053806,2982.0,False,False +37183053807,3987.0,False,False +37183053808,5114.0,False,False +37183053900,9283.0,False,False +37183054001,4734.0,False,False +37183054004,5043.0,False,False +37183054006,3314.0,True,False +37183054007,4332.0,False,False +37183054008,7475.0,True,True +37183054011,2834.0,False,False +37183054012,3860.0,False,False +37183054013,13315.0,False,False +37183054014,13810.0,False,False +37183054015,4320.0,True,False +37183054016,6200.0,False,False +37183054017,2807.0,False,False +37183054018,3198.0,False,False +37183054104,12003.0,False,True +37183054105,13895.0,False,False +37183054106,8017.0,False,False +37183054108,7913.0,True,True +37183054109,3575.0,False,False +37183054110,10609.0,False,False +37183054111,2481.0,False,False +37183054112,4410.0,False,False +37183054113,3894.0,False,False +37183054114,6271.0,False,False +37183054115,8963.0,False,False +37183054203,3561.0,False,False +37183054204,5199.0,False,False +37183054205,5764.0,False,False +37183054206,6323.0,False,False +37183054207,9565.0,False,False +37183054208,9074.0,False,False +37183054209,12559.0,False,False +37183054210,11313.0,False,False +37183054211,13997.0,False,False +37183054301,6381.0,False,False +37183054302,7998.0,True,True +37183054402,6306.0,False,False +37183054403,3521.0,False,False +37183054404,6861.0,False,False +37183054500,10774.0,True,False +37183980100,0.0,False,False +37183980200,0.0,False,False +37185950101,2145.0,True,True +37185950102,1265.0,False,False +37185950103,2720.0,True,True +37185950200,5814.0,True,True +37185950300,4239.0,True,True +37185950400,3715.0,True,True +37187950100,4529.0,True,True +37187950200,5641.0,True,True +37187950300,1752.0,False,True +37189920100,4958.0,False,False +37189920200,4227.0,True,True +37189920300,2312.0,False,False +37189920400,8313.0,False,False +37189920500,7376.0,False,True +37189920601,6313.0,False,True +37189920602,2361.0,False,False +37189920701,2134.0,False,False +37189920702,3165.0,False,False +37189920703,6164.0,False,False +37189920800,2452.0,False,False +37189920900,4474.0,False,False +37189921000,676.0,False,False +37191000101,7459.0,True,True +37191000102,6617.0,False,False +37191000200,3049.0,True,True +37191000302,5780.0,True,True +37191000303,6812.0,False,False +37191000304,5290.0,True,True +37191000401,6233.0,False,False +37191000402,4655.0,False,False +37191000500,3058.0,False,False +37191000601,4615.0,True,True +37191000602,8694.0,True,True +37191000700,2804.0,True,True +37191000800,2669.0,False,False +37191000901,5335.0,False,False +37191000902,5042.0,True,True +37191001000,4386.0,False,False +37191001101,7442.0,False,False +37191001102,3486.0,False,False +37191001200,3704.0,True,True +37191001301,6270.0,False,True +37191001302,3807.0,True,True +37191001400,6167.0,True,True +37191001500,2314.0,True,True +37191001800,2233.0,True,True +37191001900,4716.0,True,True +37191002000,966.0,True,True +37193960100,7234.0,False,False +37193960200,3585.0,True,True +37193960300,6462.0,True,True +37193960400,7470.0,True,False +37193960500,3177.0,True,True +37193960600,2438.0,True,True +37193960700,3663.0,True,True +37193960801,4018.0,True,False +37193960802,4853.0,True,False +37193960900,4714.0,True,True +37193961001,4294.0,True,True +37193961002,5420.0,False,False +37193961100,3622.0,True,True +37193961200,7519.0,False,False +37195000100,3831.0,True,True +37195000200,1213.0,True,True +37195000300,2231.0,True,True +37195000400,8326.0,True,True +37195000501,3704.0,False,False +37195000502,4971.0,False,False +37195000600,7821.0,True,True +37195000700,4853.0,True,True +37195000801,1740.0,True,True +37195000802,3809.0,True,True +37195000900,4311.0,True,True +37195001000,1586.0,True,True +37195001100,1505.0,True,True +37195001200,3473.0,True,True +37195001300,5530.0,True,True +37195001400,9398.0,False,False +37195001500,5686.0,False,False +37195001600,3491.0,True,True +37195001700,3956.0,True,True +37197050101,6217.0,False,False +37197050102,3831.0,False,False +37197050200,4320.0,True,True +37197050300,6104.0,True,True +37197050400,6186.0,True,True +37197050501,6587.0,True,True +37197050502,4357.0,False,False +37199960101,3717.0,True,True +37199960102,1995.0,True,True +37199960200,4605.0,True,True +37199960300,3017.0,True,True +37199960400,4426.0,True,True +38001965600,2311.0,False,False +38003967900,1749.0,False,False +38003968000,2449.0,False,False +38003968200,2728.0,False,False +38003968300,3780.0,False,False +38005940100,2635.0,True,True +38005940200,2132.0,True,True +38005956500,1130.0,False,False +38005956600,976.0,False,False +38007963100,922.0,False,False +38009952300,2345.0,False,False +38009952400,2409.0,False,False +38009952500,1748.0,False,False +38011965200,1817.0,False,False +38011965300,1331.0,False,False +38013953300,2182.0,False,False +38015010100,3643.0,False,False +38015010200,4885.0,True,False +38015010300,6143.0,False,False +38015010400,3670.0,False,False +38015010500,5312.0,False,False +38015010600,4009.0,False,False +38015010700,4137.0,False,False +38015010800,3914.0,False,False +38015010900,4732.0,False,False +38015011001,6358.0,False,False +38015011002,7046.0,False,False +38015011101,5920.0,False,False +38015011103,3257.0,False,False +38015011104,6787.0,False,False +38015011105,6101.0,False,False +38015011200,7662.0,False,False +38015011300,7327.0,False,False +38015011400,2559.0,False,False +38015011500,1331.0,False,False +38017000100,5029.0,False,False +38017000201,3092.0,False,False +38017000202,3433.0,False,False +38017000300,4669.0,False,False +38017000400,3877.0,False,False +38017000501,3096.0,False,False +38017000502,3227.0,False,True +38017000600,5160.0,True,True +38017000700,1676.0,False,False +38017000801,3137.0,False,False +38017000802,4991.0,False,False +38017000901,4773.0,False,False +38017000903,3468.0,False,False +38017000904,4066.0,False,False +38017001001,5279.0,False,False +38017001002,2829.0,False,False +38017010106,5435.0,True,True +38017010107,3270.0,True,True +38017010108,5804.0,False,False +38017010109,3918.0,False,False +38017010201,5888.0,False,False +38017010203,3002.0,False,False +38017010204,6521.0,False,False +38017010303,6183.0,False,False +38017010305,6649.0,False,False +38017010306,4188.0,False,False +38017010307,2068.0,False,False +38017040100,2007.0,False,False +38017040200,2364.0,False,False +38017040300,3562.0,False,False +38017040400,4702.0,False,False +38017040500,46482.0,False,False +38017040600,3130.0,False,False +38019950900,1911.0,False,False +38019951100,1892.0,False,False +38021973200,2463.0,False,False +38021973300,1188.0,False,False +38021973400,1287.0,False,False +38023954500,2335.0,False,False +38025962200,4395.0,False,False +38027959200,2301.0,False,False +38029966500,3310.0,False,False +38031959600,3260.0,False,False +38033962900,1845.0,False,False +38035010100,2834.0,False,False +38035010200,3556.0,False,False +38035010300,5019.0,False,False +38035010400,5870.0,False,False +38035010600,2201.0,True,True +38035010700,1965.0,False,False +38035010801,5774.0,False,False +38035010803,5581.0,False,False +38035010804,4412.0,False,False +38035010900,1593.0,False,False +38035011000,2395.0,False,False +38035011100,5193.0,False,False +38035011200,8505.0,False,False +38035011400,2005.0,False,False +38035011700,6478.0,False,False +38035011800,1417.0,False,False +38035011900,2683.0,False,False +38035012000,2743.0,False,False +38037965900,2353.0,False,False +38039968600,2409.0,False,False +38041964700,1152.0,False,False +38041964800,1395.0,False,False +38043966800,2466.0,True,True +38045972100,1367.0,False,False +38045972200,2758.0,False,False +38047972500,1872.0,False,False +38049955600,2618.0,False,False +38049955900,3260.0,False,False +38051972900,2597.0,False,False +38053940100,1104.0,True,True +38053962300,3902.0,False,False +38053962400,6704.0,False,False +38053962500,1624.0,False,False +38055960800,4172.0,False,False +38055961000,5412.0,False,False +38057961600,2631.0,False,False +38057961700,3164.0,False,False +38057961800,2667.0,False,False +38059020100,5785.0,False,False +38059020200,7739.0,False,False +38059020300,10198.0,False,False +38059020400,3156.0,False,False +38059020500,3990.0,False,False +38061940300,1670.0,True,True +38061940400,3244.0,False,True +38061955200,5407.0,False,False +38063959000,2894.0,False,False +38065961200,1842.0,False,False +38067950100,1198.0,False,False +38067950200,1730.0,False,False +38067950300,1199.0,False,False +38067950400,1348.0,False,False +38067950500,1472.0,False,False +38069956100,1454.0,True,True +38069956200,2672.0,False,False +38071957600,4441.0,False,False +38071957700,2318.0,False,False +38071957800,4824.0,False,False +38073968900,1619.0,False,False +38073969000,1571.0,False,False +38073969100,2124.0,False,False +38075952900,2442.0,False,False +38077970700,2191.0,False,False +38077970800,2209.0,False,False +38077970900,4027.0,False,False +38077971000,3877.0,True,True +38077971100,1216.0,False,False +38077971400,2734.0,False,False +38079941800,6342.0,True,True +38079951600,1472.0,True,True +38079951700,4635.0,True,True +38079951900,2062.0,True,True +38081974000,1534.0,False,False +38081974200,2338.0,False,False +38083960200,1409.0,False,False +38085940800,1720.0,True,True +38085940900,2653.0,True,True +38087965000,742.0,False,False +38089963300,1761.0,False,False +38089963400,4818.0,False,False +38089963500,8037.0,False,False +38089963600,2033.0,False,False +38089963700,3647.0,False,False +38089963800,4654.0,False,False +38089963900,4029.0,False,False +38089964000,2102.0,False,False +38091968700,1744.0,False,False +38093967000,2660.0,False,False +38093967200,2411.0,False,False +38093967300,2630.0,False,False +38093967400,5564.0,False,False +38093967500,3325.0,False,False +38093967800,4375.0,True,True +38095951500,2224.0,False,False +38097970100,2408.0,False,False +38097970200,2513.0,False,False +38097970300,1443.0,False,False +38097970400,1644.0,False,False +38099957800,1632.0,False,False +38099957900,1459.0,True,True +38099958000,2687.0,True,True +38099958100,2230.0,False,False +38099958200,1622.0,False,False +38099958300,1121.0,False,False +38101010100,2825.0,False,False +38101010200,5264.0,False,False +38101010301,5603.0,False,False +38101010302,5529.0,False,False +38101010400,6043.0,False,False +38101010500,5423.0,False,False +38101010600,10219.0,False,False +38101010700,7823.0,False,False +38101010800,4416.0,False,False +38101010900,5312.0,False,False +38101011000,1785.0,False,False +38101011200,3436.0,False,False +38101011300,5134.0,False,False +38103959800,1785.0,False,False +38103960000,2191.0,False,False +38105953400,1790.0,False,False +38105953500,2292.0,False,False +38105953600,2773.0,False,False +38105953700,15799.0,False,False +38105953800,2723.0,False,False +38105953900,3999.0,False,False +38105954100,5832.0,False,False +39001770100,4173.0,True,True +39001770200,5055.0,True,True +39001770300,7241.0,True,True +39001770400,4186.0,True,True +39001770500,3711.0,True,True +39001770600,3410.0,True,True +39003010100,4339.0,False,False +39003010200,4056.0,False,False +39003010300,1587.0,False,False +39003010600,4906.0,False,False +39003010800,7914.0,False,False +39003010900,4491.0,False,False +39003011000,5232.0,False,False +39003011200,2848.0,False,False +39003011300,7400.0,False,False +39003011400,2931.0,False,False +39003011500,2679.0,False,False +39003011600,2623.0,False,False +39003011800,2295.0,False,False +39003011900,2852.0,False,False +39003012000,2470.0,False,False +39003012100,3435.0,False,False +39003012200,3747.0,True,True +39003012300,3898.0,True,True +39003012400,2110.0,True,True +39003012600,1838.0,True,True +39003012700,1628.0,True,True +39003012900,1603.0,True,True +39003013000,4185.0,True,True +39003013100,2523.0,False,False +39003013200,2290.0,True,True +39003013300,1145.0,True,True +39003013400,2453.0,True,True +39003013600,1205.0,True,True +39003013700,1251.0,True,True +39003013800,2951.0,True,True +39003013900,3391.0,False,False +39003014000,3410.0,False,False +39003014100,1489.0,True,True +39005970100,8535.0,False,False +39005970200,6175.0,True,True +39005970300,3858.0,True,True +39005970400,3426.0,True,True +39005970500,3502.0,True,True +39005970600,5476.0,False,False +39005970700,5068.0,False,False +39005970800,3972.0,False,False +39005970900,4640.0,False,False +39005971000,5032.0,False,False +39005971100,3852.0,True,True +39007000101,4914.0,False,False +39007000102,3109.0,True,True +39007000103,3692.0,True,True +39007000200,4334.0,False,False +39007000300,2192.0,False,False +39007000400,1710.0,True,True +39007000500,4358.0,True,True +39007000601,2681.0,True,True +39007000602,3525.0,False,False +39007000603,4238.0,True,True +39007000701,2929.0,True,True +39007000702,2619.0,False,False +39007000703,3320.0,True,True +39007000704,3587.0,True,True +39007000801,1630.0,True,True +39007000802,4883.0,True,False +39007000900,4520.0,True,True +39007001001,5419.0,False,False +39007001002,3511.0,False,False +39007001101,1772.0,False,False +39007001102,5693.0,False,False +39007001200,7705.0,True,True +39007001301,3185.0,True,True +39007001302,3663.0,True,True +39007001400,8641.0,True,True +39007990000,0.0,False,False +39009972600,4320.0,True,True +39009972700,4169.0,True,True +39009972800,4377.0,False,True +39009972900,5711.0,True,True +39009973000,3660.0,False,False +39009973101,4724.0,False,False +39009973200,5127.0,False,False +39009973300,3682.0,False,False +39009973400,3628.0,True,True +39009973500,3601.0,True,True +39009973600,3931.0,False,False +39009973700,4311.0,False,False +39009973800,4839.0,False,False +39009973901,6271.0,False,False +39009973902,3566.0,False,False +39011040100,3983.0,False,False +39011040200,4321.0,False,False +39011040300,3638.0,True,False +39011040400,6373.0,False,False +39011040500,5163.0,False,False +39011040600,3602.0,False,False +39011040900,3719.0,False,False +39011041000,3685.0,False,False +39011041100,4023.0,False,False +39011041201,1711.0,False,False +39011041202,5511.0,False,False +39013010100,4176.0,True,True +39013010200,3297.0,True,True +39013010300,3460.0,False,False +39013010600,3960.0,False,False +39013010700,2409.0,False,False +39013010802,1934.0,False,False +39013010900,6900.0,False,False +39013011000,4751.0,True,True +39013011200,3167.0,False,False +39013011300,4005.0,False,False +39013011400,4348.0,False,False +39013011500,1700.0,True,True +39013011600,1142.0,True,True +39013011700,1255.0,True,True +39013011900,3224.0,False,True +39013012000,2387.0,True,True +39013012100,1316.0,True,True +39013012200,6027.0,False,False +39013012300,4170.0,False,False +39013012400,4396.0,False,False +39015951201,4368.0,False,False +39015951202,4826.0,False,False +39015951300,7487.0,False,False +39015951400,4449.0,True,True +39015951500,5296.0,False,False +39015951600,3452.0,True,True +39015951700,2670.0,True,True +39015951800,5032.0,True,True +39015951900,5992.0,False,False +39017000100,5268.0,True,True +39017000200,3974.0,True,True +39017000300,3171.0,True,True +39017000400,4554.0,True,True +39017000500,4555.0,True,True +39017000600,5010.0,True,True +39017001001,5624.0,False,False +39017001002,4981.0,False,False +39017001100,4290.0,True,True +39017001300,4634.0,False,False +39017010101,6883.0,False,False +39017010102,3557.0,False,False +39017010103,6106.0,False,False +39017010104,4867.0,False,False +39017010201,2037.0,False,False +39017010202,4349.0,False,False +39017010203,5763.0,False,False +39017010301,4663.0,False,False +39017010302,3695.0,False,False +39017010500,2590.0,True,True +39017010600,3678.0,False,False +39017010800,6647.0,False,False +39017010901,4276.0,False,False +39017010903,5071.0,False,False +39017010904,3463.0,True,False +39017010906,7676.0,True,True +39017010907,2655.0,False,False +39017010908,5515.0,False,False +39017010909,4880.0,True,True +39017010910,4768.0,False,False +39017010911,3901.0,False,False +39017011002,12328.0,False,False +39017011003,6593.0,False,False +39017011004,6648.0,True,True +39017011109,4868.0,False,False +39017011110,5426.0,False,False +39017011111,6724.0,False,False +39017011112,6401.0,False,False +39017011116,8772.0,False,False +39017011117,12228.0,False,False +39017011118,3283.0,False,False +39017011120,7173.0,False,False +39017011121,8154.0,False,False +39017011122,5742.0,False,False +39017011123,5065.0,True,True +39017011125,3811.0,False,False +39017011126,4893.0,False,False +39017011127,4666.0,False,False +39017011128,3244.0,False,False +39017011129,4016.0,False,False +39017011130,5508.0,False,False +39017011131,3288.0,False,False +39017011200,7871.0,False,False +39017011300,6290.0,False,False +39017011800,6203.0,False,False +39017012100,2820.0,False,False +39017012200,3306.0,True,True +39017012300,2038.0,True,True +39017012400,2532.0,False,False +39017012500,4791.0,False,False +39017012600,2384.0,False,False +39017012700,3558.0,True,True +39017013000,1468.0,True,True +39017013100,2275.0,True,True +39017013200,3528.0,True,True +39017013300,2100.0,False,False +39017013400,2162.0,True,True +39017013500,2727.0,True,True +39017013600,4614.0,True,True +39017013900,2790.0,True,True +39017014000,2648.0,True,True +39017014100,2249.0,True,True +39017014300,5225.0,False,False +39017014400,1766.0,True,True +39017014600,913.0,True,True +39017014700,4038.0,True,True +39017014800,7140.0,False,False +39017014900,5435.0,False,False +39017015000,7552.0,False,False +39017015100,7664.0,False,False +39019720100,3081.0,False,False +39019720200,3552.0,True,True +39019720300,5204.0,False,False +39019720400,4366.0,False,False +39019720500,5077.0,False,False +39019720600,2926.0,False,False +39019720700,3126.0,False,False +39021010100,2063.0,False,False +39021010200,6656.0,False,False +39021010400,3579.0,True,True +39021010500,3944.0,False,False +39021010600,4037.0,False,False +39021011001,2668.0,False,False +39021011501,4423.0,False,False +39021011504,5337.0,False,False +39021011505,3145.0,False,False +39021011506,2993.0,False,False +39023000200,1556.0,True,True +39023000300,1703.0,True,True +39023000400,2360.0,True,True +39023000500,1603.0,True,True +39023000600,2667.0,True,True +39023000700,2655.0,False,False +39023000901,2287.0,True,True +39023000902,1183.0,True,True +39023001000,1554.0,True,True +39023001101,1096.0,True,True +39023001102,2732.0,True,True +39023001200,3904.0,True,True +39023001300,3778.0,True,True +39023001400,4039.0,True,True +39023001500,4509.0,True,True +39023001600,3673.0,False,False +39023001700,2430.0,True,True +39023001900,2796.0,False,False +39023002000,2102.0,False,False +39023002100,1908.0,True,True +39023002200,4298.0,False,False +39023002301,3149.0,False,False +39023002403,3774.0,False,False +39023002404,3242.0,True,True +39023002501,2083.0,False,False +39023002502,3310.0,False,False +39023002601,3894.0,False,False +39023002602,3660.0,False,False +39023002605,4024.0,False,False +39023002606,7256.0,False,False +39023002701,2915.0,True,True +39023002702,2648.0,True,True +39023002800,4372.0,False,False +39023002901,3524.0,True,False +39023002902,4551.0,False,False +39023003001,3070.0,False,False +39023003002,3609.0,False,False +39023003101,2582.0,False,False +39023003102,1627.0,False,False +39023003200,2563.0,False,False +39023003301,3491.0,False,False +39023003302,2593.0,False,False +39023003400,3261.0,True,True +39023003700,4695.0,False,False +39025040101,5268.0,False,False +39025040102,2895.0,False,False +39025040202,2293.0,False,False +39025040203,6797.0,False,False +39025040204,7071.0,True,False +39025040301,3722.0,False,False +39025040302,3766.0,False,False +39025040303,7526.0,False,False +39025040401,3484.0,False,False +39025040403,2988.0,False,False +39025040404,3790.0,False,False +39025040405,2890.0,False,False +39025040500,5278.0,False,False +39025040600,7211.0,False,False +39025040701,7135.0,False,False +39025040702,3709.0,False,False +39025040800,6083.0,False,False +39025040900,5915.0,False,False +39025041000,7724.0,False,False +39025041101,2637.0,False,False +39025041102,5274.0,True,True +39025041103,8441.0,False,False +39025041200,8654.0,False,False +39025041303,5094.0,False,False +39025041304,0.0,False,False +39025041305,5244.0,False,False +39025041306,4736.0,False,False +39025041307,4769.0,False,False +39025041403,4356.0,False,False +39025041404,5067.0,False,False +39025041405,5188.0,True,False +39025041406,4907.0,False,False +39025041501,6889.0,False,False +39025041502,7963.0,False,False +39025041600,5397.0,False,False +39025041701,4198.0,True,True +39025041702,3954.0,False,False +39025041800,3865.0,True,True +39025041900,5787.0,False,False +39025042000,6310.0,False,False +39027964300,3784.0,True,True +39027964400,5338.0,False,False +39027964500,6346.0,True,False +39027964600,2661.0,True,True +39027964700,5601.0,False,False +39027964800,5175.0,False,False +39027964900,5004.0,True,True +39027965000,3801.0,False,False +39027965100,4247.0,False,False +39029950100,5400.0,False,False +39029950200,4524.0,False,False +39029950300,5253.0,False,False +39029950400,4197.0,False,False +39029950500,5128.0,False,False +39029950600,5223.0,True,True +39029950700,5368.0,False,False +39029950800,4090.0,False,False +39029950900,3878.0,False,False +39029951000,5857.0,False,False +39029951100,4502.0,True,True +39029951200,4337.0,True,True +39029951300,3814.0,False,False +39029951400,7650.0,True,True +39029951500,4708.0,True,False +39029951600,5114.0,False,False +39029951700,4648.0,True,True +39029951800,3168.0,True,True +39029951900,3347.0,True,True +39029952000,2750.0,True,True +39029952100,1257.0,True,True +39029952200,2118.0,True,True +39029952300,2703.0,True,True +39029952400,4156.0,False,False +39031960900,4941.0,False,False +39031961000,4623.0,False,False +39031961100,4476.0,True,True +39031961200,3061.0,False,False +39031961300,3698.0,True,True +39031961400,2762.0,True,True +39031961500,2698.0,True,True +39031961600,2661.0,False,False +39031961700,2814.0,False,False +39031961800,4851.0,True,False +39033974100,3514.0,False,False +39033974200,3709.0,False,False +39033974300,2896.0,False,False +39033974400,3187.0,True,True +39033974500,3927.0,True,True +39033974600,2760.0,True,True +39033974700,4134.0,False,False +39033974800,2268.0,True,True +39033974900,2930.0,True,False +39033975000,3531.0,False,False +39033975100,3051.0,True,True +39033975200,2481.0,False,False +39033975300,3433.0,True,True +39035101101,2243.0,True,True +39035101102,4800.0,False,False +39035101200,2867.0,True,True +39035101300,1830.0,True,True +39035101400,2071.0,True,True +39035101501,2169.0,True,True +39035101603,2672.0,True,True +39035101700,2622.0,True,True +39035101800,2713.0,True,True +39035101901,1574.0,True,True +39035102101,3227.0,True,True +39035102102,2565.0,True,True +39035102200,3093.0,True,True +39035102300,2184.0,True,True +39035102401,2093.0,True,True +39035102402,3908.0,True,True +39035102700,3995.0,True,True +39035102800,1894.0,True,True +39035102900,1924.0,True,True +39035103100,1294.0,True,True +39035103300,2481.0,True,True +39035103400,2369.0,True,True +39035103500,1545.0,False,True +39035103602,3303.0,True,True +39035103800,1503.0,True,True +39035103900,2287.0,True,True +39035104100,968.0,True,True +39035104200,1351.0,True,True +39035104300,2114.0,False,False +39035104400,1187.0,True,True +39035104600,1024.0,True,True +39035104800,1701.0,True,True +39035104900,2328.0,True,True +39035105100,4483.0,True,True +39035105300,3268.0,True,True +39035105400,3286.0,True,True +39035105500,2264.0,True,True +39035105602,2565.0,True,True +39035105700,4078.0,True,True +39035105900,3131.0,True,True +39035106100,3683.0,False,False +39035106200,3993.0,True,True +39035106300,2662.0,True,True +39035106400,1076.0,True,True +39035106500,2622.0,True,True +39035106600,3491.0,True,True +39035106800,3044.0,True,True +39035106900,3391.0,True,True +39035107000,1642.0,False,False +39035107101,4889.0,False,False +39035107701,3321.0,False,False +39035107802,3969.0,True,True +39035108201,1561.0,True,True +39035108301,1309.0,True,True +39035108400,1228.0,True,True +39035108701,4518.0,True,True +39035109301,1061.0,True,True +39035109701,2410.0,True,True +39035109801,2322.0,True,True +39035110501,681.0,True,True +39035110801,955.0,True,True +39035110901,3047.0,True,True +39035111202,1050.0,True,True +39035111401,1196.0,True,True +39035111500,1040.0,True,True +39035111600,860.0,True,True +39035111700,1315.0,True,True +39035111800,675.0,True,True +39035111902,640.0,True,True +39035112100,1394.0,True,True +39035112200,1235.0,True,True +39035112301,1444.0,True,True +39035112400,1181.0,True,True +39035112500,1308.0,True,True +39035112600,838.0,True,True +39035112800,993.0,True,True +39035113101,656.0,True,True +39035113500,866.0,True,True +39035113600,803.0,True,True +39035113801,1693.0,True,True +39035114100,894.0,True,True +39035114300,1605.0,True,True +39035114501,708.0,True,True +39035114600,945.0,True,True +39035114700,569.0,True,True +39035114900,1676.0,True,True +39035115100,1317.0,True,True +39035115200,816.0,True,True +39035115300,983.0,True,True +39035115400,2129.0,True,True +39035115700,1423.0,True,True +39035115800,3065.0,True,True +39035115900,3234.0,True,True +39035116100,897.0,True,True +39035116200,703.0,True,True +39035116300,1351.0,True,True +39035116400,2184.0,True,True +39035116500,2288.0,True,True +39035116600,1953.0,True,True +39035116700,1509.0,True,True +39035116800,2155.0,True,True +39035116900,1317.0,True,True +39035117101,2165.0,True,True +39035117102,1040.0,True,True +39035117201,2708.0,True,True +39035117202,1733.0,True,True +39035117300,2484.0,True,True +39035117400,1403.0,True,True +39035117500,2510.0,True,True +39035117600,3563.0,True,True +39035117700,5393.0,True,True +39035117800,2250.0,True,True +39035117900,2331.0,True,True +39035118101,1719.0,True,True +39035118200,1991.0,True,True +39035118301,2532.0,True,True +39035118400,1203.0,True,True +39035118500,805.0,True,True +39035118602,2052.0,True,True +39035118700,3814.0,False,True +39035118800,2779.0,False,False +39035118900,1331.0,True,True +39035119100,99.0,False,False +39035119202,923.0,True,True +39035119300,3869.0,True,True +39035119401,2345.0,False,False +39035119402,1513.0,True,True +39035119501,2223.0,False,False +39035119502,1923.0,True,True +39035119600,1690.0,True,True +39035119701,1996.0,True,True +39035119702,1680.0,True,True +39035119800,2864.0,True,True +39035119900,1838.0,True,True +39035120200,2183.0,True,True +39035120400,2269.0,True,True +39035120500,1839.0,True,True +39035120600,2474.0,True,True +39035120701,1271.0,True,True +39035120702,1726.0,True,True +39035120801,2292.0,True,True +39035120802,2146.0,True,True +39035121100,2109.0,True,True +39035121200,1327.0,True,True +39035121300,2004.0,True,True +39035121401,2088.0,True,True +39035121403,2269.0,True,True +39035121500,2436.0,True,True +39035121700,4527.0,False,True +39035121800,1462.0,False,True +39035121900,1216.0,True,True +39035122100,3421.0,True,True +39035122200,1842.0,True,True +39035122300,1651.0,True,True +39035123100,2459.0,False,False +39035123200,2779.0,False,False +39035123400,3746.0,False,False +39035123501,3937.0,True,True +39035123502,2571.0,True,True +39035123601,3210.0,False,False +39035123602,2752.0,True,False +39035123603,3090.0,False,False +39035123700,2678.0,False,False +39035123800,2547.0,True,True +39035123900,3246.0,True,True +39035124100,6069.0,True,True +39035124201,2275.0,True,True +39035124202,1673.0,True,True +39035124300,4423.0,True,True +39035124500,3958.0,True,True +39035124600,3677.0,True,True +39035126100,2879.0,True,True +39035127501,2811.0,True,True +39035130103,4411.0,False,False +39035130104,4140.0,False,False +39035130105,3431.0,False,False +39035130106,3343.0,False,False +39035131102,3320.0,False,False +39035131103,4212.0,False,False +39035131104,4131.0,False,False +39035132100,4402.0,False,False +39035132200,3331.0,True,False +39035132301,2981.0,False,False +39035132302,1917.0,True,True +39035133103,3427.0,False,False +39035133104,2383.0,True,True +39035134100,1474.0,False,False +39035134203,3346.0,False,False +39035134204,4269.0,False,False +39035134205,2406.0,False,False +39035134206,2930.0,False,False +39035134300,4363.0,False,False +39035135103,2019.0,False,False +39035135104,4292.0,False,False +39035135105,5730.0,False,False +39035135106,1496.0,False,False +39035136101,6013.0,False,False +39035136102,7320.0,False,False +39035136103,5862.0,False,False +39035137101,2304.0,False,True +39035137102,4480.0,True,False +39035137103,3989.0,False,False +39035138105,1332.0,True,True +39035138106,3289.0,True,True +39035138107,2030.0,False,False +39035138108,3669.0,False,False +39035138109,4008.0,False,False +39035138110,4289.0,False,False +39035140100,1543.0,True,True +39035140301,2483.0,True,True +39035140302,2327.0,False,False +39035140400,3087.0,False,False +39035140500,3445.0,True,True +39035140600,997.0,False,False +39035140701,2632.0,True,True +39035140702,1647.0,True,True +39035140800,3751.0,True,False +39035140900,2060.0,False,False +39035141000,848.0,True,True +39035141100,4007.0,False,False +39035141200,2890.0,False,False +39035141300,2873.0,False,False +39035141400,2503.0,False,False +39035141500,1596.0,False,False +39035141601,1542.0,False,False +39035141602,1399.0,False,False +39035141700,1337.0,False,False +39035150100,2244.0,True,True +39035150300,1321.0,True,True +39035150400,1679.0,True,True +39035151100,1283.0,True,True +39035151200,1799.0,True,True +39035151300,2028.0,True,True +39035151400,1179.0,True,True +39035151500,1122.0,True,True +39035151600,1686.0,True,True +39035151700,1013.0,True,True +39035151800,1846.0,True,True +39035152101,2389.0,False,False +39035152102,4016.0,False,False +39035152201,3425.0,True,True +39035152202,4350.0,True,True +39035152301,2340.0,False,False +39035152302,4091.0,True,True +39035152303,3434.0,True,True +39035152400,2003.0,True,True +39035152501,3809.0,True,True +39035152502,2219.0,True,True +39035152603,1124.0,True,True +39035152604,3901.0,True,True +39035152701,2257.0,True,True +39035152702,2240.0,True,True +39035152703,1755.0,False,False +39035153103,2297.0,False,False +39035153104,2927.0,False,False +39035153105,3656.0,False,False +39035153106,3878.0,False,False +39035153107,3545.0,False,False +39035154100,2038.0,True,True +39035154200,1337.0,True,True +39035154300,993.0,True,True +39035154400,2797.0,False,False +39035154501,3374.0,True,True +39035154502,2650.0,False,False +39035154601,4827.0,True,True +39035154603,3084.0,False,False +39035154604,4349.0,False,False +39035154700,2365.0,True,True +39035155101,5476.0,False,False +39035155102,2914.0,False,False +39035156101,1331.0,False,False +39035156102,5838.0,False,False +39035160100,1794.0,False,False +39035160200,2248.0,False,False +39035160300,1722.0,False,False +39035160400,3335.0,False,False +39035160500,3839.0,False,False +39035160601,4838.0,False,False +39035160602,3025.0,True,True +39035160700,1627.0,False,False +39035160800,944.0,False,False +39035160900,3653.0,False,False +39035161000,1647.0,False,False +39035161100,3588.0,False,False +39035161200,2613.0,False,False +39035161300,2997.0,False,False +39035161400,3234.0,False,False +39035161500,3743.0,False,False +39035161600,1951.0,True,True +39035161700,2136.0,True,True +39035161800,1325.0,True,True +39035170101,2606.0,False,False +39035170102,4812.0,False,False +39035170201,2327.0,False,False +39035170202,3788.0,False,False +39035171102,4991.0,True,True +39035171103,3380.0,True,True +39035171104,4450.0,True,True +39035171203,2540.0,True,True +39035171204,1940.0,False,False +39035171205,2762.0,False,False +39035171206,2320.0,True,False +39035172101,2600.0,False,False +39035172102,3351.0,False,False +39035172103,4583.0,False,False +39035172201,3525.0,False,False +39035172202,4610.0,False,False +39035173103,2636.0,False,False +39035173104,4600.0,False,False +39035173105,2299.0,False,False +39035173106,3626.0,False,False +39035173107,2412.0,False,False +39035174103,2947.0,True,True +39035174104,2369.0,False,False +39035174105,2919.0,False,False +39035174106,2844.0,False,False +39035174107,3376.0,False,False +39035174203,2827.0,False,False +39035174204,3532.0,False,False +39035174205,5218.0,False,False +39035174206,2427.0,False,False +39035174207,3251.0,False,False +39035175103,7227.0,False,False +39035175104,5626.0,False,False +39035175105,4584.0,False,False +39035175106,3017.0,False,False +39035175201,6543.0,False,False +39035175202,3255.0,False,False +39035176100,2270.0,False,False +39035176200,5590.0,False,False +39035177101,4391.0,False,False +39035177103,4051.0,False,False +39035177104,3327.0,True,True +39035177201,3963.0,False,False +39035177202,3051.0,True,True +39035177302,2547.0,False,False +39035177303,4385.0,False,False +39035177304,3761.0,False,False +39035177403,3019.0,False,False +39035177404,2684.0,False,False +39035177405,4624.0,False,False +39035177406,3890.0,False,False +39035177501,4008.0,False,False +39035177503,3306.0,False,False +39035177504,3941.0,False,False +39035177505,4415.0,False,False +39035177604,2083.0,False,False +39035177605,2549.0,False,False +39035177606,3962.0,False,False +39035177607,4026.0,False,False +39035177608,5275.0,False,False +39035177609,1833.0,False,False +39035178101,2828.0,False,False +39035178102,4455.0,False,False +39035178201,3133.0,False,False +39035178204,4690.0,True,True +39035178205,2052.0,False,False +39035178206,2887.0,False,False +39035179101,3425.0,False,False +39035179102,2844.0,False,False +39035180102,4134.0,False,False +39035180103,3405.0,False,False +39035180104,2867.0,True,True +39035181100,6607.0,False,False +39035181201,5604.0,False,False +39035181203,2927.0,False,False +39035181204,5060.0,False,False +39035182103,2368.0,False,False +39035182104,2705.0,False,False +39035182105,3530.0,False,False +39035182106,3035.0,False,False +39035183100,2857.0,False,False +39035183200,2498.0,False,False +39035183300,4176.0,False,False +39035183401,2037.0,False,False +39035183402,1583.0,False,False +39035183501,3032.0,False,False +39035183502,3579.0,False,False +39035183603,1369.0,True,True +39035183604,2111.0,False,False +39035183605,2398.0,False,False +39035183606,1747.0,False,False +39035184103,3899.0,False,False +39035184104,1836.0,False,False +39035184105,4565.0,False,False +39035184106,2383.0,False,False +39035184108,7446.0,False,False +39035185101,2624.0,False,False +39035185102,2393.0,False,False +39035185103,2315.0,False,False +39035185104,3956.0,False,False +39035185201,1629.0,False,False +39035185202,4555.0,False,False +39035185203,4100.0,False,False +39035186103,4496.0,False,False +39035186104,2778.0,False,False +39035186105,3631.0,False,False +39035186106,4786.0,False,False +39035186107,6288.0,False,False +39035186201,5888.0,False,False +39035186202,4311.0,False,False +39035186203,3563.0,False,False +39035186205,4923.0,False,False +39035186206,4055.0,False,False +39035187103,2610.0,False,False +39035187104,3040.0,False,False +39035187105,3054.0,False,False +39035187106,4321.0,False,False +39035188103,3292.0,True,True +39035188104,1850.0,False,False +39035188105,3221.0,True,True +39035188106,2309.0,False,True +39035188107,2531.0,True,True +39035189105,3838.0,False,False +39035189107,4863.0,False,False +39035189108,4932.0,False,False +39035189109,3635.0,False,False +39035189110,4452.0,False,False +39035189111,6988.0,False,False +39035189112,3567.0,False,False +39035190502,2123.0,False,False +39035190503,1638.0,False,False +39035190504,10684.0,False,False +39035192300,1615.0,False,False +39035192800,1379.0,False,False +39035192900,2024.0,False,False +39035193800,1106.0,True,True +39035193900,873.0,True,True +39035194100,2246.0,False,False +39035194300,3372.0,False,False +39035194500,2189.0,False,False +39035194800,698.0,False,False +39035194900,3276.0,False,False +39035195600,4755.0,False,False +39035195700,4756.0,False,False +39035195800,3720.0,False,False +39035195900,4108.0,False,False +39035196000,1604.0,False,False +39035196100,2395.0,True,True +39035196200,3806.0,True,True +39035196300,3911.0,False,False +39035196400,3072.0,True,True +39035196500,1512.0,True,True +39035980100,0.0,False,False +39035980500,0.0,False,False +39035981100,0.0,False,False +39035990000,0.0,False,False +39037500100,3937.0,False,False +39037510100,3869.0,True,True +39037520100,3944.0,False,False +39037530100,4320.0,False,False +39037540100,3486.0,False,False +39037550100,3208.0,False,False +39037555000,6439.0,True,True +39037555101,3514.0,True,True +39037555102,3673.0,True,True +39037560100,6807.0,False,False +39037570101,2924.0,False,False +39037570102,5392.0,False,False +39039958100,4275.0,False,False +39039958200,4812.0,False,False +39039958300,4269.0,False,False +39039958400,3948.0,False,False +39039958500,4404.0,False,False +39039958600,3647.0,True,True +39039958700,4663.0,False,False +39039958800,3401.0,True,True +39039958900,4741.0,False,False +39041010100,5798.0,False,False +39041010200,5903.0,True,False +39041010420,2823.0,False,False +39041010421,2467.0,False,False +39041010422,6146.0,False,False +39041010520,6540.0,False,False +39041010530,3762.0,True,False +39041011101,3008.0,False,False +39041011102,5992.0,False,False +39041011200,3475.0,False,False +39041011411,3502.0,False,False +39041011412,5107.0,False,False +39041011413,7557.0,False,False +39041011421,7036.0,False,False +39041011423,6413.0,False,False +39041011430,2781.0,False,False +39041011520,3727.0,False,False +39041011530,4272.0,False,False +39041011540,6548.0,False,False +39041011550,11723.0,False,False +39041011560,9039.0,False,False +39041011561,4549.0,False,False +39041011604,6728.0,False,False +39041011710,6751.0,False,False +39041011730,7683.0,False,False +39041011740,6018.0,False,False +39041011750,8033.0,False,False +39041011760,5095.0,False,False +39041011762,5857.0,False,False +39041011900,5672.0,False,False +39041012000,6088.0,False,False +39041012100,9055.0,False,False +39041012200,5247.0,False,False +39041012300,4911.0,False,False +39041012400,5829.0,False,False +39043040100,5567.0,False,False +39043040200,3821.0,False,False +39043040300,6076.0,False,False +39043040400,5479.0,False,False +39043040500,4692.0,False,False +39043040600,876.0,False,False +39043040700,4004.0,False,False +39043040800,3469.0,True,True +39043040900,3482.0,True,True +39043041000,2884.0,True,True +39043041100,4047.0,True,True +39043041200,2769.0,True,False +39043041300,3433.0,True,True +39043041400,2451.0,False,False +39043041500,3578.0,False,False +39043041600,5564.0,False,False +39043041700,6448.0,False,False +39043041800,6140.0,False,False +39043990100,0.0,False,False +39045030100,3782.0,False,False +39045030200,3231.0,False,False +39045030300,3313.0,True,True +39045030400,4887.0,False,False +39045030600,11559.0,False,False +39045030700,3932.0,False,False +39045030800,5404.0,False,False +39045030900,9395.0,False,False +39045031000,5886.0,False,False +39045031100,6132.0,False,False +39045031200,5013.0,False,False +39045031300,3167.0,False,False +39045031400,7260.0,True,True +39045031500,2807.0,True,True +39045031600,6471.0,True,True +39045031700,3770.0,True,True +39045032000,3201.0,True,True +39045032100,3430.0,True,True +39045032200,3070.0,True,True +39045032300,4087.0,True,True +39045032500,6906.0,False,False +39045032600,6922.0,False,False +39045032701,4243.0,False,False +39045032702,8232.0,False,False +39045032800,4141.0,False,False +39045032900,10532.0,False,False +39045033000,4667.0,False,False +39045033100,9017.0,False,False +39047925800,3675.0,False,False +39047925900,3298.0,False,False +39047926000,3943.0,True,True +39047926100,5009.0,True,True +39047926200,4768.0,True,False +39047926300,3550.0,True,True +39047926400,4377.0,False,False +39049000110,3510.0,False,False +39049000120,3179.0,False,False +39049000210,3332.0,False,False +39049000220,3877.0,False,False +39049000310,3677.0,True,True +39049000320,2472.0,False,False +39049000330,2601.0,True,True +39049000410,2495.0,False,False +39049000420,3453.0,False,False +39049000500,4245.0,False,False +39049000600,3643.0,False,False +39049000710,3427.0,True,True +39049000720,2559.0,True,True +39049000730,3660.0,True,True +39049000810,2641.0,True,True +39049000820,3090.0,True,True +39049000910,3733.0,True,True +39049000920,2401.0,True,True +39049001000,6092.0,False,False +39049001110,2828.0,False,False +39049001121,10233.0,False,False +39049001122,3101.0,False,False +39049001200,4202.0,False,False +39049001300,5847.0,False,False +39049001400,1847.0,True,True +39049001500,1973.0,True,True +39049001600,1944.0,True,True +39049001700,3242.0,False,True +39049001810,4119.0,False,False +39049001820,2597.0,False,False +39049001901,2813.0,False,False +39049001902,4115.0,False,False +39049002000,3400.0,False,False +39049002100,2415.0,False,False +39049002200,2310.0,False,False +39049002300,1395.0,True,True +39049002510,2850.0,True,True +39049002520,3105.0,True,True +39049002600,3875.0,True,True +39049002710,2084.0,True,True +39049002730,2398.0,True,True +39049002740,2697.0,False,False +39049002750,2361.0,True,True +39049002760,3715.0,True,True +39049002770,2322.0,True,True +39049002780,2204.0,False,False +39049002800,2132.0,True,True +39049002900,2777.0,True,True +39049003000,4130.0,False,False +39049003200,3039.0,False,False +39049003600,1433.0,True,True +39049003700,3300.0,True,True +39049003800,2355.0,False,True +39049004000,3472.0,False,False +39049004200,428.0,True,True +39049004300,5429.0,False,False +39049004500,5329.0,True,True +39049004610,3740.0,False,False +39049004620,2837.0,True,True +39049004700,5715.0,True,True +39049004810,2906.0,False,False +39049004820,2728.0,True,True +39049004900,5128.0,True,True +39049005000,5022.0,True,True +39049005100,2306.0,True,True +39049005200,3081.0,False,False +39049005300,3043.0,True,True +39049005410,1546.0,True,True +39049005420,1992.0,True,True +39049005500,4303.0,True,True +39049005610,1765.0,True,True +39049005620,2205.0,True,True +39049005700,3676.0,False,False +39049005810,2944.0,False,False +39049005820,2252.0,False,False +39049005900,2847.0,True,True +39049006000,2216.0,True,True +39049006100,2345.0,True,True +39049006220,8166.0,False,False +39049006230,18883.0,False,False +39049006236,6114.0,False,False +39049006310,4374.0,False,False +39049006321,4350.0,False,False +39049006323,3482.0,False,False +39049006330,5077.0,False,False +39049006340,3385.0,False,False +39049006351,4474.0,False,False +39049006352,3208.0,False,False +39049006353,5159.0,False,False +39049006371,7237.0,False,False +39049006372,6803.0,False,False +39049006383,9556.0,False,False +39049006384,6236.0,False,False +39049006386,4359.0,False,False +39049006387,6240.0,False,False +39049006391,5456.0,False,False +39049006392,4579.0,False,False +39049006393,5562.0,False,False +39049006394,2782.0,False,False +39049006395,3552.0,False,False +39049006396,5544.0,False,False +39049006410,2818.0,False,False +39049006430,5116.0,False,False +39049006500,3457.0,False,False +39049006600,3911.0,False,False +39049006710,2785.0,False,False +39049006721,3739.0,False,False +39049006722,3021.0,False,False +39049006810,2302.0,False,False +39049006821,3309.0,True,True +39049006822,1984.0,False,False +39049006910,1657.0,False,False +39049006921,4089.0,True,True +39049006923,4060.0,False,False +39049006924,4201.0,False,False +39049006931,7225.0,True,True +39049006932,6971.0,True,False +39049006933,7089.0,True,True +39049006942,1485.0,True,True +39049006943,4946.0,True,True +39049006944,4207.0,False,False +39049006945,5996.0,True,True +39049006950,2571.0,False,False +39049006990,7800.0,False,False +39049007010,4402.0,False,False +39049007020,7217.0,False,False +39049007041,2574.0,False,False +39049007043,5442.0,False,False +39049007044,6197.0,False,False +39049007047,3748.0,False,False +39049007048,6699.0,False,False +39049007112,6253.0,False,False +39049007113,5926.0,True,False +39049007114,4935.0,True,True +39049007115,6249.0,False,False +39049007120,4820.0,False,False +39049007132,8429.0,False,False +39049007193,6795.0,False,False +39049007194,6592.0,False,False +39049007198,2896.0,False,False +39049007199,6445.0,False,False +39049007201,666.0,False,False +39049007202,3751.0,False,False +39049007203,4801.0,False,False +39049007205,6007.0,False,False +39049007207,8066.0,False,False +39049007209,8822.0,False,False +39049007210,10046.0,False,False +39049007393,9084.0,False,False +39049007394,2916.0,False,False +39049007395,14699.0,False,False +39049007396,12252.0,False,False +39049007424,6232.0,True,True +39049007425,2845.0,False,False +39049007426,3364.0,False,False +39049007427,6636.0,False,False +39049007492,5785.0,False,False +39049007494,4655.0,False,False +39049007511,1887.0,True,True +39049007512,4177.0,True,True +39049007520,2845.0,True,True +39049007531,3225.0,True,True +39049007532,2635.0,True,True +39049007533,2046.0,True,True +39049007534,3635.0,True,True +39049007550,3091.0,False,False +39049007551,10714.0,True,True +39049007710,4470.0,True,True +39049007721,7289.0,True,True +39049007722,4002.0,True,True +39049007730,2969.0,True,False +39049007740,1622.0,False,False +39049007811,3989.0,False,False +39049007812,4972.0,False,False +39049007820,3460.0,False,True +39049007830,3287.0,False,False +39049007921,10569.0,False,False +39049007922,6046.0,False,False +39049007931,4785.0,False,False +39049007933,7732.0,False,False +39049007941,3020.0,False,False +39049007951,9437.0,False,False +39049007952,8365.0,False,False +39049007953,7360.0,False,False +39049007954,8288.0,False,False +39049008000,5373.0,False,False +39049008110,4419.0,True,False +39049008120,4093.0,True,True +39049008132,7093.0,True,False +39049008141,7840.0,False,False +39049008142,7682.0,False,False +39049008161,8010.0,False,False +39049008162,9388.0,False,False +39049008163,3880.0,True,True +39049008164,4498.0,True,False +39049008210,2279.0,True,True +39049008230,2333.0,True,True +39049008241,2377.0,True,True +39049008242,5569.0,False,False +39049008311,4515.0,True,True +39049008312,4680.0,True,True +39049008321,2524.0,True,True +39049008322,4481.0,True,True +39049008330,1372.0,True,True +39049008340,6267.0,True,True +39049008350,6921.0,True,True +39049008360,6740.0,True,False +39049008370,8220.0,False,False +39049008380,5848.0,False,False +39049008400,3244.0,False,False +39049008500,5373.0,False,False +39049008710,2572.0,True,True +39049008720,3178.0,True,True +39049008730,1931.0,True,True +39049008811,1732.0,True,True +39049008812,3060.0,False,True +39049008813,2436.0,True,True +39049008821,2591.0,True,True +39049008822,4588.0,True,True +39049008825,6824.0,True,True +39049008900,5476.0,False,False +39049009000,3489.0,False,False +39049009100,4821.0,False,False +39049009210,5481.0,True,True +39049009220,2205.0,True,True +39049009230,4531.0,True,True +39049009240,1874.0,True,True +39049009250,1966.0,True,True +39049009311,3224.0,True,True +39049009312,3508.0,True,True +39049009321,2349.0,True,True +39049009322,3369.0,True,False +39049009323,4296.0,True,True +39049009325,4856.0,True,True +39049009326,1828.0,True,True +39049009331,1288.0,True,True +39049009332,3598.0,False,False +39049009333,2237.0,True,True +39049009334,3025.0,True,True +39049009336,2139.0,True,True +39049009337,4485.0,True,True +39049009340,3234.0,True,True +39049009350,2883.0,True,True +39049009361,5145.0,False,False +39049009362,6727.0,False,False +39049009371,6639.0,True,True +39049009372,4553.0,False,False +39049009373,6348.0,False,False +39049009374,9146.0,True,False +39049009381,6097.0,False,False +39049009382,3041.0,False,False +39049009383,2763.0,False,True +39049009384,2496.0,True,False +39049009385,3538.0,False,False +39049009386,2608.0,True,True +39049009390,6015.0,False,False +39049009410,3345.0,False,False +39049009420,6298.0,True,True +39049009430,9061.0,False,False +39049009440,4517.0,False,False +39049009450,10565.0,False,False +39049009495,4885.0,False,False +39049009497,1756.0,False,False +39049009520,4788.0,False,False +39049009590,5343.0,False,False +39049009600,4522.0,False,False +39049009711,4695.0,False,False +39049009712,2907.0,False,False +39049009720,7003.0,False,False +39049009740,16789.0,False,False +39049009751,6009.0,False,False +39049009752,7072.0,False,False +39049009800,7091.0,False,False +39049009900,1797.0,True,True +39049010000,5546.0,False,False +39049010100,1200.0,False,False +39049010200,17489.0,False,False +39049010300,2395.0,True,True +39049010400,7495.0,False,False +39049010500,9134.0,False,False +39049010601,5328.0,False,False +39049010602,6769.0,False,False +39049010700,1372.0,False,False +39049980000,0.0,False,False +39051040100,3030.0,False,False +39051040200,4526.0,False,False +39051040300,4631.0,False,False +39051040400,3604.0,False,False +39051040500,4730.0,False,False +39051040600,4646.0,False,False +39051040700,7720.0,False,False +39051040800,4851.0,False,False +39051040900,4515.0,False,False +39053953500,4207.0,False,False +39053953600,4362.0,True,True +39053953700,4704.0,True,True +39053953800,3729.0,True,True +39053953900,6333.0,False,False +39053954000,4482.0,True,True +39053954100,2271.0,True,True +39055310100,2216.0,False,False +39055310200,2020.0,False,False +39055310600,6628.0,False,False +39055310700,3661.0,False,False +39055310800,6658.0,False,False +39055310900,3216.0,False,False +39055311000,3662.0,True,True +39055311300,4440.0,False,False +39055311400,5559.0,False,False +39055311500,5373.0,False,False +39055311600,3776.0,False,False +39055311700,4396.0,False,False +39055311800,7063.0,False,False +39055311900,6506.0,False,False +39055312000,2827.0,False,False +39055312100,4148.0,False,False +39055312201,5426.0,False,False +39055312202,4369.0,False,False +39055312203,4712.0,False,False +39055312300,4902.0,False,False +39055312400,2285.0,True,True +39057200101,2918.0,True,True +39057200103,3687.0,False,False +39057200104,5703.0,False,False +39057200300,3850.0,False,False +39057200400,2127.0,True,True +39057200500,4950.0,True,True +39057200600,3709.0,False,False +39057200700,4349.0,True,True +39057200900,6412.0,False,False +39057210100,5330.0,False,False +39057210200,8274.0,False,False +39057210300,3511.0,False,False +39057210401,4947.0,False,False +39057210402,5162.0,False,False +39057210500,5560.0,False,False +39057210601,9187.0,False,False +39057210602,5227.0,False,False +39057210603,7126.0,False,False +39057220100,7971.0,False,False +39057220200,8077.0,False,False +39057230100,2671.0,False,False +39057240100,3026.0,False,False +39057240200,5045.0,True,False +39057240301,8620.0,True,False +39057240302,4010.0,True,True +39057240500,4561.0,False,False +39057240600,4935.0,False,True +39057240700,2702.0,False,False +39057255000,3652.0,False,False +39057260100,6398.0,False,False +39057270100,3877.0,False,False +39057280101,2831.0,False,False +39057280102,2303.0,False,False +39057280200,1393.0,False,False +39057280300,2401.0,False,False +39059977100,4761.0,True,True +39059977200,4700.0,False,False +39059977300,3404.0,True,True +39059977400,3506.0,True,True +39059977500,3185.0,True,True +39059977600,3384.0,True,True +39059977700,4017.0,False,False +39059977800,3602.0,False,False +39059977900,4224.0,True,True +39059978000,4328.0,False,False +39061000200,902.0,True,True +39061000700,1903.0,False,False +39061000900,1882.0,True,True +39061001000,1524.0,False,False +39061001100,1083.0,True,True +39061001600,802.0,True,True +39061001700,992.0,True,True +39061001800,1543.0,False,False +39061001900,1945.0,False,False +39061002000,1465.0,False,False +39061002200,2139.0,True,True +39061002300,959.0,True,True +39061002500,2658.0,False,True +39061002600,3378.0,False,False +39061002700,1599.0,False,False +39061002800,1396.0,True,True +39061002900,4425.0,False,False +39061003000,4914.0,False,False +39061003200,1617.0,False,True +39061003300,2367.0,False,False +39061003600,1307.0,True,True +39061003700,1451.0,True,True +39061003800,1985.0,True,True +39061003900,1687.0,True,True +39061004000,2138.0,False,False +39061004100,1556.0,False,False +39061004200,1801.0,False,False +39061004500,976.0,False,False +39061004602,4966.0,True,False +39061004603,3147.0,False,False +39061004604,4339.0,False,False +39061004605,2566.0,False,False +39061004701,3100.0,False,False +39061004702,687.0,True,True +39061004800,3469.0,False,False +39061004900,6181.0,False,False +39061005000,4680.0,False,False +39061005100,2430.0,False,False +39061005200,3620.0,False,False +39061005301,4182.0,False,False +39061005302,3229.0,False,False +39061005400,1003.0,False,False +39061005500,3675.0,True,True +39061005600,6384.0,True,True +39061005701,2953.0,False,False +39061005702,4244.0,False,False +39061005800,5057.0,False,False +39061005900,1301.0,False,False +39061006000,5397.0,True,True +39061006100,2940.0,True,True +39061006300,3588.0,True,True +39061006400,3586.0,True,True +39061006500,5891.0,False,False +39061006600,2683.0,True,True +39061006800,4174.0,True,True +39061006900,2799.0,True,True +39061007000,2506.0,False,False +39061007100,3564.0,False,False +39061007200,2482.0,False,False +39061007300,2171.0,True,True +39061007400,1670.0,False,False +39061007500,2000.0,False,False +39061007700,2854.0,True,True +39061007800,2690.0,True,True +39061007900,1505.0,True,True +39061008000,6008.0,True,True +39061008100,2886.0,True,True +39061008201,4029.0,False,False +39061008202,3623.0,False,False +39061008300,4907.0,True,True +39061008400,2057.0,True,True +39061008501,2859.0,True,True +39061008502,2348.0,True,True +39061008601,2095.0,True,True +39061008800,3174.0,True,True +39061009200,4096.0,True,True +39061009300,2305.0,True,True +39061009400,1515.0,True,True +39061009500,2333.0,True,True +39061009600,3599.0,True,True +39061009700,5193.0,True,True +39061009800,2365.0,True,True +39061009901,4086.0,False,False +39061009902,3753.0,True,True +39061010002,6351.0,True,True +39061010003,5413.0,True,True +39061010004,4761.0,True,True +39061010005,1587.0,True,True +39061010100,4260.0,True,False +39061010201,5680.0,True,False +39061010202,2524.0,True,True +39061010300,1336.0,True,True +39061010400,956.0,False,False +39061010500,1553.0,True,True +39061010600,1448.0,False,False +39061010700,1683.0,True,True +39061010800,779.0,False,False +39061010900,2656.0,True,True +39061011000,3227.0,True,True +39061011100,3808.0,False,False +39061020401,5086.0,False,False +39061020403,5796.0,False,False +39061020404,5160.0,False,False +39061020501,2800.0,False,False +39061020502,4822.0,False,False +39061020504,3490.0,False,False +39061020505,4484.0,False,False +39061020601,6287.0,False,False +39061020602,7495.0,False,False +39061020701,6663.0,False,False +39061020705,3291.0,False,False +39061020707,5033.0,False,False +39061020741,3106.0,False,False +39061020742,4252.0,True,False +39061020761,6932.0,False,False +39061020762,3373.0,True,False +39061020802,5055.0,False,False +39061020811,6745.0,False,False +39061020812,4569.0,False,False +39061020901,3292.0,False,False +39061020902,5291.0,False,False +39061021001,3265.0,False,False +39061021002,3676.0,False,False +39061021003,2912.0,False,False +39061021101,4994.0,False,False +39061021102,6336.0,False,False +39061021201,2052.0,False,False +39061021202,5210.0,False,False +39061021302,6087.0,False,False +39061021303,4842.0,False,False +39061021304,5032.0,False,False +39061021401,4859.0,True,False +39061021421,4474.0,False,False +39061021422,3003.0,False,False +39061021501,4512.0,False,False +39061021504,5709.0,True,False +39061021505,3135.0,False,False +39061021506,3254.0,False,False +39061021508,5728.0,False,False +39061021509,6664.0,True,False +39061021571,3032.0,False,False +39061021572,5322.0,False,False +39061021602,3081.0,True,True +39061021603,4058.0,True,True +39061021604,4006.0,True,True +39061021701,2601.0,False,False +39061021702,4355.0,True,False +39061021801,6021.0,False,False +39061021802,3314.0,True,True +39061021900,1632.0,True,True +39061022000,3815.0,False,False +39061022101,4380.0,False,False +39061022102,6850.0,False,False +39061022200,4585.0,True,True +39061022301,6550.0,True,True +39061022302,5701.0,False,False +39061022400,2145.0,False,False +39061022500,3856.0,False,False +39061022601,6364.0,False,False +39061022602,2524.0,False,False +39061022700,3354.0,True,True +39061023001,4475.0,False,False +39061023002,5054.0,False,False +39061023100,2730.0,False,False +39061023201,2613.0,True,True +39061023210,5417.0,False,False +39061023222,2863.0,False,False +39061023300,4014.0,False,False +39061023400,3573.0,True,True +39061023501,4337.0,False,False +39061023521,2763.0,False,False +39061023522,5635.0,False,False +39061023600,3957.0,False,False +39061023701,3001.0,False,False +39061023702,2623.0,False,False +39061023800,5088.0,False,False +39061023901,4751.0,False,False +39061023902,4970.0,False,False +39061024001,5511.0,False,False +39061024002,2945.0,False,False +39061024100,7114.0,False,False +39061024200,2639.0,False,False +39061024301,3713.0,False,False +39061024303,7316.0,False,False +39061024321,8396.0,False,False +39061024322,8107.0,False,False +39061024400,7107.0,False,False +39061024700,1748.0,False,False +39061024800,3605.0,False,False +39061024901,937.0,False,False +39061024902,7929.0,False,False +39061025001,6463.0,False,False +39061025002,7233.0,False,False +39061025101,4951.0,False,False +39061025102,7562.0,False,False +39061025103,6920.0,False,False +39061025104,1836.0,False,False +39061025200,4388.0,True,True +39061025300,2577.0,True,True +39061025401,1683.0,True,True +39061025402,3250.0,False,False +39061025500,4200.0,True,True +39061025600,3785.0,False,False +39061025700,2052.0,True,True +39061025800,4361.0,False,False +39061026001,5686.0,False,False +39061026002,5171.0,False,False +39061026101,8584.0,False,False +39061026102,2946.0,False,False +39061026200,1423.0,True,True +39061026300,1004.0,True,True +39061026400,2736.0,True,True +39061026500,2702.0,False,False +39061026600,1601.0,False,False +39061026700,1665.0,True,True +39061026800,1629.0,False,False +39061026900,2309.0,True,True +39061027000,2914.0,True,True +39061027100,4400.0,True,True +39061027200,1981.0,True,True +39061027300,2654.0,False,False +39061027400,4320.0,True,True +39063000100,4332.0,False,False +39063000200,5837.0,False,False +39063000300,8279.0,False,False +39063000400,7387.0,False,False +39063000500,5140.0,False,False +39063000600,6656.0,False,False +39063000700,6128.0,False,False +39063000800,3853.0,True,True +39063000900,6449.0,False,False +39063001000,6762.0,False,False +39063001100,3844.0,False,False +39063001200,5967.0,False,False +39063001300,5203.0,False,False +39065000100,3419.0,False,False +39065000200,4728.0,True,True +39065000300,3460.0,False,False +39065000400,6417.0,False,False +39065000500,3931.0,False,False +39065000600,4089.0,True,True +39065000700,5381.0,False,False +39067975600,3919.0,True,True +39067975700,3867.0,True,True +39067975800,2229.0,True,True +39067975900,1892.0,False,False +39067976000,3304.0,False,False +39069000100,4964.0,False,False +39069000200,3678.0,False,False +39069000300,4794.0,False,False +39069000400,3609.0,True,True +39069000500,2916.0,False,False +39069000600,3365.0,True,True +39069000700,3882.0,False,False +39071954400,4152.0,True,True +39071954500,3853.0,True,True +39071954600,6351.0,False,False +39071954700,5799.0,True,False +39071954800,4268.0,True,True +39071954900,3808.0,True,True +39071955000,4095.0,True,True +39071955100,6411.0,True,True +39071955200,4279.0,False,False +39073964900,4227.0,False,False +39073965000,3491.0,True,True +39073965100,4269.0,False,False +39073965200,3832.0,True,True +39073965300,3615.0,False,False +39073965400,4554.0,True,False +39073965500,4402.0,False,False +39075976301,4390.0,False,True +39075976302,6049.0,False,False +39075976400,9428.0,False,False +39075976500,4948.0,False,False +39075976600,4539.0,True,True +39075976700,4874.0,False,False +39075976801,5051.0,False,False +39075976802,4622.0,True,True +39077915400,5027.0,False,False +39077915500,5907.0,False,False +39077915600,4683.0,False,False +39077915700,4485.0,True,False +39077915800,4578.0,True,False +39077915900,4011.0,False,False +39077916000,3800.0,True,True +39077916100,3343.0,False,False +39077916200,4535.0,True,False +39077916300,3606.0,True,True +39077916400,5285.0,True,True +39077916500,4754.0,False,False +39077916600,4325.0,True,True +39079957200,5200.0,True,True +39079957300,3648.0,True,True +39079957400,5531.0,True,True +39079957500,5649.0,False,False +39079957600,2545.0,True,True +39079957700,4570.0,False,False +39079957800,5307.0,True,True +39081000200,2844.0,False,True +39081000400,2845.0,True,True +39081000600,2389.0,False,False +39081000800,708.0,True,True +39081001000,2372.0,False,False +39081001200,5407.0,False,False +39081001300,1386.0,True,True +39081001400,3496.0,False,False +39081001700,2311.0,True,True +39081011000,1634.0,True,True +39081011100,2973.0,True,True +39081011200,2230.0,True,True +39081011300,2474.0,True,False +39081011401,3743.0,True,True +39081011402,3650.0,False,False +39081011500,5055.0,False,False +39081011700,4268.0,False,False +39081011800,3301.0,False,False +39081011900,3450.0,True,True +39081012000,3087.0,True,True +39081012100,2556.0,False,False +39081012200,1953.0,False,False +39081012300,2239.0,True,True +39083006700,5397.0,True,True +39083006801,5550.0,False,False +39083006802,4516.0,False,False +39083006900,5111.0,False,False +39083007000,3036.0,False,False +39083007100,3374.0,True,False +39083007200,5243.0,False,False +39083007300,6910.0,False,False +39083007400,6162.0,True,True +39083007500,4406.0,False,False +39083007600,4789.0,True,True +39083007700,6987.0,False,False +39085200100,1807.0,False,False +39085200200,2516.0,False,False +39085200300,3215.0,False,False +39085200400,3511.0,False,False +39085200500,3084.0,False,False +39085200600,3479.0,False,False +39085200700,3774.0,False,False +39085200800,3512.0,False,False +39085200900,1978.0,False,False +39085201000,4821.0,False,False +39085201100,4706.0,False,False +39085201200,3493.0,False,False +39085201300,3548.0,False,False +39085201400,3562.0,False,False +39085201500,2608.0,False,False +39085201600,3520.0,False,False +39085201700,6138.0,False,False +39085201800,3828.0,False,False +39085201900,2830.0,False,False +39085202000,5485.0,False,False +39085202100,2187.0,False,False +39085202400,3060.0,False,False +39085202500,4331.0,False,False +39085202600,3657.0,False,False +39085202700,6533.0,False,False +39085202800,5781.0,False,False +39085202900,6813.0,False,False +39085203000,6476.0,False,False +39085203200,3317.0,False,False +39085203400,4291.0,False,False +39085203500,6634.0,False,False +39085203700,3388.0,False,False +39085204000,3077.0,False,False +39085204200,4030.0,True,True +39085204301,2447.0,False,False +39085204302,5570.0,False,False +39085204400,3529.0,True,False +39085204500,4233.0,True,True +39085204700,4589.0,False,False +39085204800,5422.0,False,False +39085204900,5785.0,False,False +39085205001,5427.0,False,False +39085205002,5826.0,False,False +39085205100,6891.0,False,False +39085205200,3065.0,False,False +39085205300,2344.0,False,False +39085205400,1680.0,False,False +39085205701,4771.0,False,False +39085205702,3314.0,False,False +39085205800,1267.0,False,False +39085205900,1066.0,False,False +39085206000,5172.0,False,False +39085206100,3172.0,False,False +39085206200,1476.0,False,False +39085206300,4929.0,False,False +39085206400,4580.0,False,False +39085206500,3594.0,False,False +39085206600,4815.0,False,False +39085990000,0.0,False,False +39087050100,2990.0,True,True +39087050200,1977.0,False,False +39087050300,2176.0,True,True +39087050400,3105.0,True,True +39087050500,5903.0,True,True +39087050600,1513.0,True,True +39087050700,3847.0,True,True +39087050800,3791.0,True,True +39087050900,2044.0,True,True +39087051001,4634.0,True,True +39087051002,4347.0,True,True +39087051100,6562.0,True,True +39087051200,4982.0,False,False +39087051300,3768.0,False,False +39087051401,5162.0,True,False +39087051402,3383.0,False,False +39089750700,3020.0,True,True +39089751000,2267.0,True,True +39089751300,3762.0,True,False +39089751600,3421.0,False,False +39089751900,4604.0,True,False +39089752200,4689.0,True,True +39089752500,4384.0,True,True +39089752800,7422.0,False,False +39089753100,4747.0,True,False +39089753300,7813.0,False,False +39089753600,2169.0,False,False +39089753900,5286.0,False,False +39089754101,7370.0,False,False +39089754102,2437.0,False,False +39089754400,6043.0,False,False +39089754700,6732.0,False,False +39089755000,7006.0,False,False +39089755300,7484.0,False,False +39089755600,5439.0,False,False +39089755900,6655.0,False,False +39089756201,2424.0,False,False +39089756202,8579.0,False,False +39089756500,4364.0,False,False +39089756800,8488.0,False,False +39089757100,4155.0,False,False +39089757400,7056.0,False,False +39089757700,7745.0,False,False +39089758300,2805.0,True,True +39089758600,7588.0,False,False +39089758900,6053.0,False,False +39089759000,3802.0,True,True +39089759100,7941.0,False,False +39091003800,3690.0,False,False +39091003900,4660.0,False,False +39091004000,2963.0,False,False +39091004100,2728.0,True,True +39091004200,1778.0,True,True +39091004300,5771.0,False,False +39091004400,5163.0,True,True +39091004500,3722.0,False,False +39091004600,5437.0,False,False +39091004700,5478.0,False,False +39091004800,3926.0,False,False +39093010200,3959.0,False,False +39093010300,5615.0,False,False +39093010400,3513.0,False,False +39093013100,9441.0,False,False +39093013200,13558.0,False,False +39093021100,3338.0,False,False +39093021200,5630.0,False,False +39093022100,2008.0,False,False +39093022200,2747.0,True,True +39093022400,3811.0,True,True +39093022500,1662.0,False,False +39093022601,2527.0,True,True +39093022800,4317.0,True,True +39093023000,5102.0,True,True +39093023100,3575.0,True,True +39093023200,3068.0,True,True +39093023300,2469.0,True,True +39093023400,1966.0,True,True +39093023500,1973.0,True,True +39093023600,2515.0,True,True +39093023700,4775.0,True,True +39093023800,1553.0,True,True +39093023900,1671.0,True,True +39093024000,1818.0,True,True +39093024100,3238.0,True,True +39093024200,5063.0,False,False +39093028100,4190.0,False,False +39093030100,6593.0,False,False +39093050100,3052.0,False,False +39093050200,3616.0,False,False +39093050300,8044.0,False,False +39093050400,2384.0,False,False +39093057100,3801.0,False,False +39093060100,3729.0,False,False +39093060200,5378.0,False,False +39093070101,3492.0,False,False +39093070102,5460.0,False,False +39093070200,1972.0,False,False +39093070300,3218.0,True,True +39093070400,4836.0,True,True +39093070500,3307.0,True,True +39093070600,4804.0,False,False +39093070700,2404.0,True,True +39093070800,1027.0,True,True +39093070901,1944.0,True,True +39093070902,3742.0,False,False +39093071000,1693.0,True,True +39093071100,4425.0,False,False +39093071201,4194.0,True,True +39093071202,4041.0,False,False +39093071300,4438.0,False,False +39093071400,3299.0,True,True +39093071500,2155.0,False,False +39093077100,3551.0,False,False +39093080101,2128.0,False,False +39093080103,4523.0,False,False +39093080104,3545.0,False,False +39093080500,7544.0,False,False +39093080600,5405.0,False,False +39093080700,10282.0,False,False +39093090100,3703.0,False,False +39093090200,3630.0,False,False +39093091100,3431.0,False,False +39093091200,3776.0,False,False +39093092100,2387.0,False,False +39093093100,3284.0,False,False +39093094100,8401.0,False,False +39093095100,8359.0,False,False +39093096100,6297.0,False,False +39093097100,2914.0,False,False +39093097200,8657.0,False,False +39093097300,2760.0,True,True +39093097400,10943.0,False,False +39093990200,0.0,False,False +39095000200,4809.0,True,True +39095000300,4251.0,True,True +39095000400,4003.0,True,True +39095000600,4228.0,True,True +39095000700,4490.0,True,True +39095000800,1219.0,True,True +39095000900,1879.0,True,True +39095001000,4271.0,True,True +39095001100,2215.0,True,True +39095001201,2376.0,True,True +39095001202,2805.0,True,True +39095001301,2776.0,False,False +39095001302,2024.0,True,True +39095001303,3161.0,True,True +39095001400,1365.0,True,True +39095001500,1249.0,True,True +39095001600,2975.0,True,True +39095001700,1185.0,True,True +39095001800,2709.0,True,True +39095001900,1399.0,True,True +39095002000,1305.0,True,True +39095002100,2809.0,True,True +39095002200,1310.0,True,True +39095002300,1729.0,True,True +39095002401,3664.0,True,True +39095002402,1475.0,True,True +39095002500,1500.0,True,True +39095002600,946.0,False,False +39095002700,923.0,True,True +39095002800,1401.0,True,True +39095002900,1982.0,True,True +39095003000,1887.0,True,True +39095003100,993.0,True,True +39095003200,1083.0,True,True +39095003300,1276.0,True,True +39095003400,764.0,True,True +39095003500,984.0,True,True +39095003600,1164.0,True,True +39095003700,1128.0,True,True +39095003900,5543.0,True,True +39095004000,1614.0,True,True +39095004200,1460.0,True,True +39095004400,3866.0,True,True +39095004501,2394.0,False,False +39095004503,2705.0,False,False +39095004504,3685.0,False,False +39095004600,2410.0,True,True +39095004701,2366.0,True,True +39095004702,3466.0,True,True +39095004800,2580.0,True,True +39095004900,2981.0,True,True +39095005000,1693.0,True,True +39095005100,4331.0,True,True +39095005200,3127.0,True,True +39095005300,2154.0,True,True +39095005400,2673.0,True,True +39095005501,2589.0,True,True +39095005502,3042.0,False,False +39095005503,2407.0,False,False +39095005600,5227.0,False,False +39095005701,3828.0,True,True +39095005702,4982.0,True,True +39095005703,2655.0,True,True +39095005801,3355.0,False,False +39095005802,5036.0,True,False +39095005901,3056.0,False,False +39095005902,4354.0,True,True +39095006000,2607.0,False,False +39095006100,3235.0,False,False +39095006200,2576.0,False,False +39095006300,3355.0,False,False +39095006400,2562.0,False,False +39095006500,2393.0,True,True +39095006600,2515.0,True,True +39095006700,1614.0,True,True +39095006800,5777.0,True,True +39095006900,2627.0,False,False +39095007001,3846.0,False,False +39095007002,1977.0,False,False +39095007101,4446.0,False,False +39095007102,3528.0,False,False +39095007202,3610.0,False,False +39095007203,3742.0,False,False +39095007204,4685.0,True,False +39095007205,5352.0,True,True +39095007301,5285.0,True,False +39095007302,2917.0,True,True +39095007303,5094.0,True,True +39095007400,6437.0,True,True +39095007500,3962.0,False,False +39095007600,4486.0,False,False +39095007700,3362.0,False,False +39095007800,3640.0,True,False +39095007901,2110.0,False,False +39095007902,5517.0,False,False +39095008000,3642.0,False,False +39095008100,4007.0,False,False +39095008201,4970.0,False,False +39095008202,5634.0,False,False +39095008203,7460.0,False,False +39095008301,6524.0,False,False +39095008302,1584.0,False,False +39095008400,4524.0,False,False +39095008500,4252.0,False,False +39095008600,5447.0,False,False +39095008700,7132.0,False,False +39095008800,7626.0,False,False +39095008901,5866.0,False,False +39095008902,6009.0,False,False +39095009000,12479.0,False,False +39095009101,4662.0,False,False +39095009102,5506.0,False,False +39095009201,8224.0,False,False +39095009202,7114.0,False,False +39095009300,1608.0,False,False +39095009400,2649.0,False,False +39095009500,3010.0,False,False +39095009600,3379.0,False,False +39095009700,3101.0,False,False +39095009800,4216.0,False,False +39095009900,4381.0,False,False +39095010001,4127.0,False,False +39095010002,3500.0,False,False +39095010100,3852.0,False,False +39095010200,2870.0,True,True +39095010300,1728.0,True,True +39095010400,3471.0,False,False +39095990000,0.0,False,False +39097040101,2293.0,False,False +39097040102,5218.0,False,False +39097040201,2905.0,False,False +39097040202,2654.0,True,True +39097040400,2653.0,False,False +39097040500,4695.0,False,False +39097040600,5668.0,False,False +39097040700,2966.0,True,True +39097041000,5271.0,False,False +39097041100,4343.0,False,False +39097041200,3118.0,False,False +39097041300,2351.0,False,False +39099800300,1144.0,True,True +39099800400,883.0,True,True +39099800500,2826.0,True,True +39099800600,1567.0,True,True +39099801000,1146.0,True,True +39099801100,2262.0,True,True +39099801200,1516.0,True,True +39099801300,2555.0,True,True +39099801400,2420.0,True,True +39099801500,2071.0,True,True +39099801600,2720.0,True,True +39099801700,1106.0,True,True +39099802100,1037.0,True,True +39099802300,702.0,True,True +39099802400,2733.0,True,True +39099802500,1435.0,True,True +39099802600,1613.0,True,True +39099802701,3473.0,True,True +39099802702,3235.0,True,True +39099802800,3069.0,True,True +39099802900,2643.0,True,True +39099803000,1877.0,True,True +39099804000,2279.0,False,False +39099804100,1197.0,True,True +39099804200,2249.0,False,False +39099804300,900.0,True,True +39099810100,4157.0,True,True +39099810200,2133.0,True,True +39099810300,1599.0,True,True +39099810600,2806.0,True,True +39099810700,5125.0,False,False +39099810800,2311.0,True,True +39099810900,2157.0,False,False +39099811001,4087.0,False,False +39099811002,7309.0,False,False +39099811100,1185.0,False,False +39099811200,2278.0,False,False +39099811300,6535.0,True,True +39099811400,2798.0,True,False +39099811500,5666.0,False,False +39099811600,3367.0,False,False +39099811700,2689.0,False,False +39099811800,1571.0,False,False +39099811901,4507.0,False,False +39099811902,2962.0,False,False +39099812001,5385.0,False,False +39099812002,3824.0,False,False +39099812100,9242.0,False,False +39099812200,6341.0,False,False +39099812301,3936.0,True,True +39099812302,5929.0,False,False +39099812400,2994.0,True,True +39099812500,5049.0,False,False +39099812601,4121.0,True,False +39099812602,5450.0,False,False +39099812603,7828.0,False,False +39099812700,1975.0,False,False +39099812800,3592.0,False,False +39099812900,4139.0,False,False +39099813000,4370.0,False,False +39099813200,4193.0,True,True +39099813300,3116.0,False,False +39099813400,3396.0,False,False +39099813500,7147.0,False,False +39099813600,7909.0,False,False +39099813700,3173.0,True,True +39099813800,3149.0,True,True +39099813900,1676.0,True,True +39099814000,3402.0,True,True +39099814100,2725.0,True,True +39101000100,1129.0,True,True +39101000200,3243.0,True,True +39101000300,2015.0,True,True +39101000400,3648.0,True,True +39101000501,3148.0,True,True +39101000502,2678.0,True,False +39101000600,4685.0,False,False +39101000700,2550.0,True,True +39101000800,2252.0,True,True +39101000900,4028.0,True,True +39101001000,2901.0,False,False +39101001100,2590.0,True,True +39101010100,5572.0,False,False +39101010201,5046.0,False,False +39101010202,4992.0,True,True +39101010300,4695.0,False,False +39101010400,4875.0,False,False +39101010500,5252.0,False,False +39103400100,7967.0,False,False +39103402000,5340.0,False,False +39103403001,3388.0,False,False +39103403002,3080.0,False,False +39103404000,4021.0,False,False +39103405000,4639.0,False,False +39103406000,5821.0,False,False +39103407000,6902.0,False,False +39103408001,2904.0,False,False +39103408002,2013.0,False,False +39103408003,3322.0,False,False +39103408100,7547.0,False,False +39103408201,4644.0,False,False +39103408202,4950.0,False,False +39103408301,3150.0,False,False +39103408302,9887.0,False,False +39103409001,2078.0,False,False +39103409002,4535.0,False,False +39103410000,4231.0,False,False +39103411001,1749.0,False,False +39103411002,2971.0,True,False +39103412000,4371.0,False,False +39103413000,6080.0,False,False +39103415100,4703.0,False,False +39103415200,4317.0,False,False +39103415300,4128.0,False,False +39103415400,4324.0,False,False +39103415800,7027.0,False,False +39103416000,5517.0,False,False +39103416100,4887.0,False,False +39103416200,4131.0,False,False +39103416300,2672.0,False,False +39103416400,3384.0,False,False +39103417000,9245.0,False,False +39103417100,6574.0,False,False +39103417200,7150.0,False,False +39103417300,4331.0,False,False +39105964100,4287.0,True,True +39105964200,4275.0,True,True +39105964300,4994.0,True,True +39105964400,3100.0,True,True +39105964500,2950.0,True,True +39105964600,3472.0,True,True +39107967200,3617.0,False,False +39107967300,4296.0,False,False +39107967400,5072.0,True,True +39107967500,5249.0,False,False +39107967600,2468.0,False,False +39107967700,6360.0,False,False +39107967800,2077.0,False,False +39107967900,7028.0,False,False +39107968000,4717.0,False,False +39109300100,4157.0,False,False +39109315001,3963.0,False,False +39109315002,4627.0,True,True +39109315100,5658.0,True,True +39109315300,5525.0,True,True +39109320100,3612.0,False,False +39109325000,3024.0,False,False +39109330100,3497.0,False,False +39109340100,5208.0,False,False +39109345000,4931.0,False,False +39109350100,8163.0,False,False +39109355001,5889.0,False,False +39109355002,1921.0,False,False +39109365000,8447.0,False,False +39109365101,3695.0,False,False +39109365102,5077.0,False,False +39109365200,3790.0,True,True +39109365301,6273.0,True,True +39109365302,5959.0,False,False +39109380100,7940.0,False,False +39109390100,4015.0,False,False +39111966600,3386.0,False,False +39111966700,3667.0,True,True +39111966800,3600.0,True,True +39111966900,3289.0,False,False +39113000100,2434.0,False,False +39113000200,2146.0,True,True +39113000300,1918.0,True,True +39113000400,3795.0,True,True +39113000500,3760.0,True,True +39113000600,1489.0,True,True +39113000700,2155.0,True,True +39113000801,3607.0,True,True +39113000802,2152.0,True,True +39113000900,2838.0,True,True +39113001000,1142.0,True,True +39113001100,3661.0,True,True +39113001200,1045.0,True,True +39113001501,3996.0,True,True +39113001600,2087.0,True,True +39113001700,699.0,True,True +39113001800,6724.0,True,True +39113001900,4151.0,True,True +39113002000,2706.0,True,True +39113002200,2696.0,True,True +39113002300,3119.0,True,True +39113002400,2583.0,True,True +39113002500,4841.0,True,True +39113002600,6280.0,True,True +39113002700,1965.0,True,True +39113002800,2198.0,False,False +39113002900,4104.0,True,True +39113003000,2819.0,True,True +39113003100,2921.0,True,True +39113003201,3812.0,False,False +39113003300,5233.0,True,True +39113003402,7194.0,False,False +39113003403,3580.0,False,True +39113003404,2093.0,True,True +39113003500,2156.0,True,True +39113003800,2223.0,True,True +39113003900,1886.0,True,True +39113004100,2075.0,True,True +39113004200,2041.0,True,True +39113004300,2002.0,True,True +39113004400,1936.0,True,True +39113004600,1386.0,True,True +39113010100,2092.0,False,False +39113010200,6890.0,False,False +39113020100,2640.0,False,False +39113020200,2888.0,False,False +39113020300,2486.0,False,False +39113020400,6591.0,False,False +39113020500,1424.0,True,True +39113020601,1819.0,False,False +39113020602,1624.0,False,False +39113020700,3207.0,False,False +39113020800,2348.0,False,False +39113020900,2809.0,False,False +39113021000,1763.0,False,False +39113021100,3309.0,True,False +39113021200,1759.0,False,False +39113021301,2613.0,False,False +39113021302,1882.0,False,False +39113021400,2562.0,False,False +39113021501,2833.0,False,False +39113021502,1869.0,False,False +39113021601,2178.0,False,False +39113021602,3217.0,False,False +39113021700,2188.0,False,False +39113021800,2136.0,True,True +39113021900,2231.0,False,False +39113030100,4189.0,False,False +39113030200,2959.0,True,True +39113040101,1742.0,False,False +39113040102,2025.0,False,False +39113040103,2722.0,False,False +39113040201,2744.0,False,False +39113040203,2545.0,False,False +39113040204,5064.0,False,False +39113040302,5017.0,False,False +39113040303,5331.0,False,False +39113040305,3154.0,False,False +39113040306,4964.0,False,False +39113040401,4934.0,False,False +39113040403,4043.0,False,False +39113040405,5223.0,False,False +39113040406,6926.0,False,False +39113050101,4087.0,False,True +39113050103,8490.0,False,False +39113050104,2309.0,False,False +39113050105,4543.0,False,False +39113050301,2703.0,True,True +39113050302,5407.0,True,False +39113050303,3972.0,True,False +39113050401,5006.0,False,False +39113050402,2162.0,True,True +39113050502,3164.0,False,False +39113050503,6330.0,False,False +39113050504,6906.0,False,False +39113050600,3848.0,False,False +39113060100,3173.0,False,False +39113060200,1734.0,True,True +39113060300,4330.0,True,True +39113070101,4593.0,True,True +39113070102,3552.0,True,True +39113070201,1232.0,True,True +39113070202,1847.0,True,True +39113070300,2776.0,True,True +39113070400,2759.0,True,True +39113070500,4018.0,True,True +39113070600,1210.0,False,False +39113070700,3598.0,True,True +39113080100,6037.0,True,True +39113080200,2650.0,False,False +39113080300,2095.0,True,True +39113080400,3154.0,True,True +39113080500,5803.0,True,True +39113080600,1303.0,True,True +39113080700,2209.0,True,True +39113090302,6974.0,True,True +39113090303,3428.0,False,False +39113090304,6920.0,False,False +39113090600,3686.0,True,True +39113090700,1273.0,True,True +39113090800,1411.0,False,False +39113090900,3911.0,False,False +39113091000,2439.0,False,False +39113091100,3064.0,False,False +39113100101,6353.0,False,False +39113100102,6074.0,False,False +39113100201,4796.0,True,False +39113100202,2347.0,False,False +39113100203,4526.0,False,False +39113100301,4351.0,True,True +39113100302,3317.0,True,True +39113100400,4962.0,False,False +39113110100,1479.0,False,False +39113110201,4555.0,False,False +39113110202,3297.0,False,False +39113115002,4060.0,False,False +39113115011,5210.0,False,False +39113115012,5487.0,False,False +39113120101,5171.0,False,False +39113120102,4759.0,False,False +39113120103,3001.0,False,False +39113125000,6215.0,False,False +39113125101,7411.0,False,False +39113125102,6150.0,False,False +39113130101,2425.0,False,False +39113130102,6423.0,False,False +39113140100,5975.0,False,False +39113150100,6304.0,False,False +39113160100,2111.0,False,False +39113165000,6289.0,False,False +39113165100,2405.0,True,True +39113165200,1523.0,True,True +39113980000,0.0,False,False +39115968800,3255.0,True,True +39115968900,3951.0,True,True +39115969000,3801.0,True,True +39115969100,3633.0,True,True +39117965000,4090.0,False,False +39117965100,5605.0,True,True +39117965200,7025.0,False,False +39117965300,6349.0,False,False +39117965400,6248.0,False,False +39117965500,5726.0,False,False +39119911000,4888.0,False,False +39119911100,6425.0,False,False +39119911200,6457.0,False,False +39119911300,6088.0,False,False +39119911400,3557.0,True,True +39119911500,4769.0,False,False +39119911600,5978.0,False,False +39119911700,3761.0,False,False +39119911800,3080.0,True,True +39119911900,3237.0,True,True +39119912000,2851.0,True,True +39119912100,3464.0,True,True +39119912200,3403.0,True,True +39119912300,4287.0,True,True +39119912400,4528.0,False,False +39119912500,4600.0,True,True +39119912600,3924.0,False,False +39119912700,5302.0,False,False +39119912800,5532.0,False,False +39121968300,3820.0,False,False +39121968400,7684.0,True,True +39121968500,2912.0,True,True +39123050100,472.0,False,False +39123050201,1767.0,False,False +39123050202,1766.0,False,False +39123050301,2938.0,False,False +39123050302,2143.0,False,False +39123050500,3237.0,True,False +39123050600,3149.0,True,False +39123050700,3393.0,False,False +39123050800,4233.0,False,False +39123050900,5535.0,False,False +39123051000,4934.0,False,False +39123051100,3745.0,False,False +39123051200,3320.0,False,False +39125960100,2885.0,False,False +39125960200,3975.0,False,False +39125960300,4254.0,False,False +39125960400,3941.0,True,True +39125960500,3754.0,False,False +39127965800,8001.0,False,False +39127965900,6923.0,False,False +39127966000,5023.0,True,True +39127966100,3911.0,False,False +39127966200,6154.0,True,True +39127966300,6010.0,True,True +39129020100,1767.0,True,True +39129020200,2678.0,True,True +39129020310,5160.0,True,True +39129020320,3690.0,False,False +39129020400,2673.0,True,True +39129021100,7722.0,False,False +39129021200,8002.0,False,False +39129021300,3762.0,False,False +39129021401,3459.0,False,False +39129021402,6589.0,False,False +39129021500,3517.0,False,False +39129021600,3430.0,False,False +39129021700,5313.0,False,False +39131952200,5493.0,True,True +39131952300,5226.0,True,True +39131952400,3371.0,True,True +39131952500,3709.0,True,False +39131952600,5992.0,True,True +39131952700,4209.0,True,True +39133600102,3708.0,False,False +39133600103,5555.0,False,False +39133600200,5968.0,False,False +39133600301,9158.0,False,False +39133600302,6868.0,False,False +39133600401,6388.0,False,False +39133600402,5438.0,False,False +39133600403,4779.0,False,False +39133600500,5650.0,False,False +39133600602,2842.0,False,False +39133600603,3975.0,False,False +39133600703,1785.0,False,False +39133600704,1797.0,False,False +39133600705,2579.0,False,False +39133600706,2902.0,False,False +39133600800,3451.0,True,True +39133600901,4055.0,True,True +39133600902,5100.0,True,False +39133601000,2472.0,True,True +39133601100,5599.0,False,False +39133601200,4849.0,False,False +39133601300,8560.0,False,False +39133601400,4798.0,False,False +39133601501,2119.0,False,True +39133601502,6218.0,False,False +39133601503,3861.0,False,False +39133601600,4256.0,False,False +39133601701,6234.0,False,False +39133601702,5560.0,False,False +39133601801,3735.0,False,False +39133601802,4453.0,False,False +39133601901,2723.0,True,True +39133601902,2825.0,False,False +39133602000,5280.0,False,False +39133602100,6971.0,False,False +39135400100,3226.0,False,False +39135410100,2037.0,False,False +39135420100,4455.0,False,False +39135430100,2713.0,False,False +39135440100,3729.0,False,False +39135450100,2263.0,False,False +39135455001,2485.0,True,True +39135455002,5516.0,False,False +39135460100,2658.0,False,False +39135470101,3639.0,False,False +39135470102,4090.0,False,False +39135480100,4282.0,False,False +39137030100,4614.0,True,True +39137030200,5794.0,False,False +39137030300,7791.0,False,False +39137030400,3536.0,False,False +39137030500,3688.0,False,False +39137030600,3847.0,False,False +39137030700,4641.0,False,False +39139000400,2311.0,True,True +39139000500,3268.0,True,True +39139000600,3044.0,True,True +39139000700,2569.0,True,True +39139000800,2632.0,True,True +39139000900,4275.0,True,True +39139001000,5841.0,True,True +39139001100,2669.0,True,True +39139001200,3840.0,False,False +39139001300,3348.0,False,False +39139001400,2123.0,True,True +39139001500,1872.0,True,True +39139001600,1717.0,True,True +39139001700,5502.0,False,True +39139001800,3663.0,False,False +39139001900,6064.0,False,False +39139002000,5359.0,False,False +39139002101,5222.0,False,False +39139002102,4558.0,False,False +39139002200,6814.0,False,False +39139002300,6035.0,False,False +39139002400,5701.0,False,False +39139002500,4386.0,False,False +39139002600,4457.0,True,True +39139002700,5335.0,False,False +39139002800,3066.0,False,False +39139002900,3840.0,False,False +39139003001,5764.0,False,False +39139003002,3576.0,True,True +39139003100,2249.0,True,True +39141955500,6288.0,False,False +39141955601,1983.0,False,False +39141955602,5244.0,True,True +39141955603,4028.0,False,False +39141955700,5349.0,False,False +39141955800,7771.0,False,False +39141955900,4617.0,False,False +39141956000,5967.0,False,False +39141956100,3765.0,False,False +39141956200,1865.0,False,False +39141956300,3060.0,True,True +39141956400,2849.0,True,True +39141956500,3715.0,True,True +39141956600,5118.0,False,False +39141956700,4818.0,False,False +39141956800,5767.0,True,True +39141956900,4744.0,True,True +39143960800,3519.0,False,False +39143960900,2992.0,False,False +39143961000,4088.0,False,False +39143961100,4080.0,False,False +39143961200,3842.0,False,False +39143961300,4005.0,False,False +39143961400,3090.0,True,True +39143961500,3911.0,True,True +39143961600,3194.0,True,True +39143961700,3167.0,False,False +39143961800,4303.0,True,False +39143961900,3408.0,False,False +39143962000,6550.0,False,False +39143962100,4706.0,False,False +39143962200,4174.0,False,False +39145002100,5142.0,False,False +39145002200,4630.0,True,True +39145002300,4501.0,True,True +39145002400,5449.0,True,True +39145002500,2733.0,False,False +39145002600,3754.0,True,True +39145002700,4593.0,False,False +39145002800,4460.0,True,True +39145002900,6348.0,False,False +39145003000,4098.0,True,True +39145003100,3324.0,True,True +39145003200,1564.0,True,True +39145003300,2228.0,True,True +39145003400,3501.0,True,True +39145003500,2677.0,True,True +39145003600,2252.0,True,True +39145003700,3133.0,True,True +39145003800,4626.0,True,True +39145003900,3213.0,True,True +39145004000,3814.0,True,True +39147962500,3793.0,False,False +39147962600,3994.0,False,False +39147962700,3355.0,False,False +39147962800,3595.0,True,True +39147962900,3990.0,True,True +39147963000,3585.0,True,True +39147963100,4324.0,False,False +39147963200,3825.0,True,True +39147963300,3909.0,False,False +39147963400,4159.0,False,False +39147963500,3599.0,False,False +39147963600,4421.0,False,False +39147963700,5070.0,False,False +39147963800,3732.0,False,False +39149971400,4245.0,False,False +39149971500,5230.0,False,False +39149971600,5024.0,False,False +39149971700,4855.0,False,False +39149971800,5243.0,False,False +39149971900,4132.0,False,False +39149972000,3738.0,True,True +39149972100,5839.0,False,False +39149972200,5149.0,True,True +39149972300,5294.0,False,False +39151700100,1099.0,True,True +39151700200,5793.0,True,True +39151700300,2824.0,True,True +39151700400,4890.0,True,True +39151700500,2780.0,True,True +39151700600,3327.0,True,True +39151700700,6925.0,False,False +39151700800,3847.0,True,True +39151701000,3463.0,True,True +39151701100,3320.0,True,True +39151701200,3597.0,True,True +39151701300,3648.0,True,True +39151701500,2310.0,True,True +39151701700,2554.0,True,True +39151701800,2060.0,True,True +39151702100,3135.0,True,True +39151702300,3378.0,True,True +39151702500,2780.0,True,True +39151710200,4184.0,True,True +39151710300,3523.0,True,True +39151710400,1072.0,True,True +39151710500,4512.0,True,True +39151710600,4861.0,False,False +39151710700,3537.0,False,False +39151710800,5373.0,False,False +39151710900,4358.0,False,False +39151711000,8229.0,False,False +39151711111,4797.0,False,False +39151711112,5155.0,False,False +39151711121,6290.0,False,False +39151711122,5559.0,False,False +39151711202,4169.0,False,False +39151711211,6998.0,False,False +39151711212,2552.0,False,False +39151711311,8490.0,False,False +39151711312,7063.0,False,False +39151711321,3772.0,False,False +39151711322,3364.0,False,False +39151711402,6137.0,False,False +39151711411,3851.0,False,False +39151711412,4345.0,False,False +39151711501,4023.0,False,False +39151711502,3348.0,False,False +39151711600,6502.0,True,False +39151711700,5504.0,True,False +39151711800,4956.0,False,False +39151711900,5118.0,False,False +39151712000,4176.0,False,False +39151712102,8038.0,False,False +39151712111,6121.0,False,False +39151712112,1789.0,False,False +39151712201,6203.0,False,False +39151712202,5565.0,False,False +39151712300,6167.0,False,False +39151712400,6870.0,False,False +39151712500,1984.0,False,False +39151712601,2803.0,True,False +39151712602,4952.0,False,False +39151712700,5079.0,False,False +39151712800,4663.0,False,False +39151712900,3839.0,False,False +39151713000,3961.0,False,False +39151713100,5477.0,False,False +39151713201,7173.0,False,False +39151713202,2005.0,False,False +39151713300,4256.0,False,False +39151713401,4874.0,False,False +39151713402,4109.0,False,False +39151713501,5388.0,False,False +39151713502,6005.0,False,False +39151713600,2782.0,False,False +39151713700,2347.0,True,True +39151713900,2105.0,True,True +39151714000,3980.0,True,True +39151714100,3208.0,True,True +39151714200,2298.0,True,True +39151714302,3696.0,False,False +39151714400,3880.0,False,False +39151714600,4260.0,False,False +39151714701,6138.0,False,False +39151714702,2737.0,False,False +39151714801,6479.0,False,False +39151714802,3089.0,False,False +39151714901,3944.0,False,False +39151714902,3669.0,False,False +39151715000,2923.0,True,True +39153501100,1704.0,True,True +39153501700,1517.0,False,False +39153501800,835.0,True,True +39153501900,2141.0,True,True +39153502101,3561.0,True,True +39153502102,4466.0,True,True +39153502200,7093.0,True,True +39153502300,5555.0,True,True +39153502500,1052.0,True,True +39153502600,2695.0,True,True +39153502700,7323.0,False,False +39153502800,4462.0,True,False +39153503100,1687.0,True,True +39153503200,1559.0,True,True +39153503300,5517.0,True,True +39153503400,1574.0,True,True +39153503500,3403.0,True,True +39153503600,4306.0,True,True +39153503701,5454.0,False,False +39153503702,5422.0,True,False +39153503800,4089.0,True,True +39153504100,1004.0,True,True +39153504200,1708.0,True,True +39153504400,1251.0,True,True +39153504500,1618.0,True,True +39153504600,3341.0,True,True +39153504700,4988.0,True,True +39153504800,4881.0,True,True +39153505200,1479.0,True,True +39153505300,1507.0,True,True +39153505400,3806.0,True,True +39153505500,2787.0,True,True +39153505600,1064.0,True,True +39153505700,2890.0,True,True +39153505800,4803.0,True,True +39153505900,2200.0,True,True +39153506100,5403.0,False,False +39153506200,3547.0,True,True +39153506400,2964.0,True,True +39153506500,2551.0,True,True +39153506600,1607.0,True,True +39153506700,1605.0,True,True +39153506800,2036.0,True,True +39153507101,4948.0,True,True +39153507102,3205.0,False,False +39153507201,2584.0,False,False +39153507202,3584.0,False,False +39153507203,4833.0,False,False +39153507300,3314.0,False,False +39153507400,1182.0,True,True +39153507500,6426.0,True,True +39153507600,4703.0,True,True +39153508000,5177.0,False,False +39153508301,2596.0,False,True +39153508399,4127.0,True,True +39153508600,2761.0,True,True +39153508800,5405.0,True,True +39153508900,3955.0,False,False +39153509000,1609.0,True,True +39153510100,2868.0,True,True +39153510200,4010.0,True,True +39153510301,5519.0,True,True +39153510302,5850.0,False,False +39153510400,3938.0,True,False +39153510500,4272.0,True,True +39153520103,2207.0,False,False +39153520104,4309.0,False,False +39153520105,4227.0,False,False +39153520106,2588.0,False,False +39153520201,2482.0,False,False +39153520202,4968.0,False,False +39153520301,3270.0,False,False +39153520302,3357.0,False,False +39153520400,4368.0,False,False +39153520500,4336.0,False,False +39153520600,3665.0,False,False +39153530101,6004.0,False,False +39153530103,4522.0,False,False +39153530104,7375.0,False,False +39153530105,2556.0,False,False +39153530108,4685.0,False,False +39153530401,3466.0,False,False +39153530402,3602.0,False,False +39153530501,5485.0,False,False +39153530502,3274.0,False,False +39153530603,4720.0,False,False +39153530604,3461.0,False,False +39153530605,5065.0,False,False +39153530606,5703.0,False,False +39153530700,2532.0,False,False +39153530800,6573.0,False,False +39153530901,4422.0,False,False +39153530902,6216.0,False,False +39153530903,5094.0,False,False +39153531001,3453.0,False,False +39153531002,6522.0,True,True +39153531101,2806.0,False,True +39153531102,4121.0,False,False +39153531103,2914.0,False,False +39153531401,7673.0,False,False +39153531405,4238.0,False,False +39153531500,8300.0,False,False +39153531601,4422.0,False,False +39153531602,3062.0,False,False +39153531701,3875.0,False,False +39153531702,4229.0,False,False +39153531801,5361.0,False,False +39153531802,4371.0,False,False +39153532001,3793.0,False,False +39153532003,4107.0,False,False +39153532004,4118.0,False,False +39153532202,6821.0,False,False +39153532301,5511.0,False,False +39153532302,5444.0,False,False +39153532501,3287.0,False,False +39153532502,2869.0,False,False +39153532600,2518.0,False,False +39153532701,7705.0,False,False +39153532702,3665.0,False,False +39153532703,5868.0,False,False +39153532705,7147.0,False,False +39153532706,3773.0,False,False +39153532708,5147.0,False,False +39153532901,1438.0,False,False +39153532902,9288.0,False,False +39153532999,5549.0,False,False +39153533000,1825.0,False,False +39153533101,4920.0,False,False +39153533102,2507.0,False,False +39153533200,5507.0,False,False +39153533400,5681.0,False,False +39153533501,8434.0,False,False +39153533502,3883.0,False,False +39153534000,6753.0,False,False +39153534100,2576.0,False,False +39155920300,2873.0,True,True +39155920400,2277.0,True,True +39155920500,989.0,True,True +39155920600,4160.0,True,True +39155920700,4344.0,True,True +39155920800,1901.0,True,True +39155920900,3384.0,True,True +39155921000,5218.0,True,True +39155921100,3773.0,True,True +39155921200,1777.0,True,True +39155921300,2180.0,True,True +39155921400,3252.0,False,False +39155921500,5634.0,True,True +39155921600,3461.0,True,True +39155930101,2906.0,True,True +39155930102,2406.0,False,False +39155930200,2651.0,False,False +39155930300,3345.0,False,False +39155930400,4187.0,False,False +39155930500,5838.0,True,True +39155930600,3565.0,False,False +39155930700,4204.0,False,False +39155930800,4667.0,False,False +39155930900,6999.0,False,False +39155931000,5566.0,False,False +39155931100,2483.0,False,False +39155931200,3822.0,False,False +39155931300,4094.0,False,False +39155931400,4366.0,True,True +39155931500,3671.0,False,False +39155931601,4386.0,False,False +39155931602,2793.0,False,False +39155931700,2027.0,True,False +39155931900,5421.0,False,False +39155932000,5615.0,True,False +39155932200,2537.0,True,False +39155932300,5858.0,False,False +39155932500,3087.0,False,False +39155932600,3401.0,True,True +39155932701,5536.0,False,False +39155932702,2426.0,False,False +39155932801,3042.0,True,True +39155932802,3439.0,True,True +39155932900,2427.0,False,False +39155933001,5121.0,False,False +39155933002,4263.0,False,False +39155933100,2457.0,True,True +39155933301,2686.0,True,True +39155933302,4780.0,False,False +39155933400,3291.0,False,False +39155933500,3785.0,False,False +39155933600,4678.0,True,False +39155933700,2718.0,False,False +39155933800,2671.0,True,True +39155933900,1929.0,True,True +39157020100,4909.0,False,False +39157020200,3768.0,False,False +39157020300,3133.0,False,False +39157020400,5507.0,True,True +39157020500,5580.0,False,False +39157020600,5317.0,False,False +39157020700,6210.0,False,False +39157020800,5404.0,True,True +39157020900,3944.0,False,False +39157021000,5031.0,True,False +39157021100,2874.0,True,True +39157021200,2787.0,True,True +39157021300,4954.0,False,False +39157021400,2478.0,False,False +39157021500,8342.0,False,False +39157021600,4316.0,True,True +39157021700,5455.0,True,True +39157021800,2856.0,True,True +39157021900,2561.0,False,False +39157022001,3533.0,True,True +39157022002,3376.0,True,True +39159050100,3979.0,False,False +39159050200,5218.0,False,False +39159050301,3841.0,False,False +39159050303,7542.0,False,False +39159050304,2885.0,False,False +39159050400,9835.0,False,False +39159050500,5513.0,False,False +39159050601,6148.0,False,False +39159050602,4501.0,False,False +39159050700,7245.0,False,False +39161020100,4190.0,False,False +39161020200,4340.0,False,False +39161020300,2414.0,False,False +39161020400,2982.0,False,False +39161020500,2928.0,True,True +39161020600,1401.0,True,True +39161020700,1653.0,True,True +39161020800,4509.0,True,True +39161020900,3844.0,False,False +39163953000,5186.0,True,True +39163953100,5003.0,True,True +39163953200,2894.0,True,True +39165030101,4323.0,False,False +39165030102,4603.0,False,False +39165030200,1316.0,False,False +39165030501,3733.0,False,False +39165030503,5636.0,False,False +39165030504,4613.0,False,False +39165030600,4075.0,False,False +39165030700,6936.0,False,False +39165030800,6486.0,False,False +39165030900,15242.0,False,False +39165031000,9018.0,False,False +39165031100,4174.0,False,False +39165031200,7412.0,False,False +39165031300,4884.0,False,False +39165031400,5217.0,True,False +39165031500,4936.0,False,False +39165031600,7787.0,False,False +39165031700,5952.0,True,True +39165031902,10604.0,False,False +39165031903,16753.0,False,False +39165031904,6570.0,False,False +39165032003,7986.0,False,False +39165032004,5942.0,False,False +39165032005,11422.0,False,False +39165032006,4233.0,False,False +39165032007,7000.0,False,False +39165032100,7442.0,False,False +39165032201,21102.0,False,False +39165032202,5944.0,False,False +39165032300,4824.0,False,False +39165032400,5147.0,False,False +39165032501,3547.0,False,False +39165032502,4273.0,False,False +39167020101,3665.0,False,False +39167020102,2301.0,True,True +39167020200,6792.0,False,False +39167020300,3691.0,False,False +39167020400,2121.0,False,False +39167020500,2310.0,False,True +39167020800,3739.0,False,False +39167020900,2456.0,True,True +39167021000,3600.0,True,True +39167021100,4244.0,False,False +39167021200,5415.0,False,False +39167021300,5297.0,True,True +39167021400,3791.0,False,False +39167021500,1351.0,False,False +39167021600,3599.0,False,False +39167021700,6054.0,False,False +39169000100,4016.0,True,True +39169000200,3082.0,False,False +39169000300,2637.0,False,False +39169000500,4093.0,False,False +39169000600,5591.0,False,False +39169000700,6699.0,False,False +39169000800,7205.0,False,False +39169000900,4147.0,False,False +39169001000,2905.0,True,True +39169001100,1408.0,False,False +39169001200,1073.0,True,True +39169001300,4087.0,False,False +39169001400,2732.0,False,False +39169001700,7591.0,True,True +39169001800,3931.0,False,False +39169001900,3099.0,False,False +39169002000,3131.0,False,False +39169002100,3060.0,False,False +39169002200,4026.0,False,False +39169002300,3026.0,False,False +39169002400,3679.0,False,False +39169002500,2683.0,False,False +39169002901,3387.0,False,False +39169002902,5405.0,False,False +39169003000,2283.0,False,False +39169003100,2292.0,False,False +39169003200,3545.0,False,False +39169003300,3167.0,True,True +39169003400,3425.0,True,True +39169003500,3390.0,False,False +39169003700,4204.0,True,True +39169980000,1100.0,False,False +39171950100,5080.0,False,False +39171950200,3840.0,False,False +39171950300,4328.0,True,False +39171950400,4470.0,False,False +39171950500,4255.0,False,False +39171950600,4370.0,True,True +39171950700,4271.0,False,False +39171950800,3248.0,False,False +39171950900,2954.0,False,False +39173020100,5384.0,False,False +39173020200,2870.0,False,False +39173020300,4934.0,False,False +39173020401,5179.0,False,False +39173020402,6305.0,False,False +39173020500,2255.0,False,False +39173020601,3688.0,False,False +39173020602,6955.0,False,False +39173020700,6707.0,False,False +39173020800,4312.0,False,False +39173020900,7046.0,False,False +39173021000,4007.0,False,False +39173021100,4112.0,False,False +39173021200,6567.0,False,False +39173021300,3803.0,False,False +39173021400,3376.0,False,False +39173021500,2493.0,False,False +39173021600,7114.0,False,False +39173021701,4257.0,False,False +39173021702,5091.0,False,False +39173021800,5615.0,False,True +39173021901,3403.0,False,False +39173021902,5442.0,False,False +39173022100,4359.0,False,False +39173022200,2577.0,True,True +39173022300,4162.0,False,False +39173022400,3728.0,False,False +39173022500,4409.0,False,False +39175938000,4131.0,False,False +39175938100,4221.0,False,False +39175938200,3520.0,False,False +39175938300,3408.0,True,True +39175938400,3359.0,False,False +39175938500,3361.0,False,False +40001376600,2484.0,True,True +40001376700,5536.0,True,True +40001376800,4991.0,True,True +40001376900,4480.0,True,True +40001377000,4729.0,True,True +40003955600,1615.0,False,False +40003955700,1420.0,False,False +40003956000,2812.0,False,False +40005587600,1854.0,True,True +40005587700,3794.0,True,True +40005587800,3780.0,True,True +40005587900,4395.0,True,True +40007951600,2515.0,True,True +40007951700,1271.0,False,False +40007951800,1591.0,True,True +40009966100,7644.0,True,True +40009966200,6797.0,True,True +40009966500,1695.0,True,True +40009966800,6132.0,False,True +40011958600,1557.0,True,True +40011958700,1505.0,True,True +40011958800,1088.0,False,True +40011958900,3416.0,True,True +40011959000,1990.0,True,True +40013795600,2310.0,True,True +40013795700,3764.0,True,True +40013795900,1695.0,True,True +40013796001,6648.0,False,True +40013796002,5002.0,True,True +40013796100,10068.0,False,True +40013796200,4085.0,True,True +40013796300,1987.0,True,True +40013796400,2528.0,True,True +40013796500,2354.0,True,True +40013796600,6016.0,True,True +40015161600,6349.0,True,True +40015161700,1981.0,True,True +40015161800,3287.0,True,True +40015161900,1541.0,True,True +40015162000,3537.0,False,True +40015162100,7265.0,True,True +40015162200,2508.0,True,True +40015162300,2774.0,False,True +40017300100,2821.0,False,True +40017300201,6775.0,False,False +40017300202,5291.0,True,True +40017300300,3326.0,True,True +40017300400,1584.0,True,True +40017300500,3866.0,True,True +40017300600,3312.0,False,False +40017300700,7064.0,False,False +40017300801,12979.0,False,False +40017300802,2692.0,False,False +40017300901,6540.0,False,False +40017300902,2797.0,False,False +40017300904,4242.0,True,True +40017300905,5205.0,False,False +40017301001,797.0,False,False +40017301003,5132.0,False,False +40017301006,2957.0,False,False +40017301007,6384.0,False,False +40017301008,6832.0,False,False +40017301009,5914.0,False,False +40017301100,7025.0,False,False +40017301201,4407.0,True,True +40017301202,3306.0,False,False +40017301300,6063.0,False,False +40017301406,5356.0,False,False +40017301407,7271.0,False,False +40017301408,1685.0,False,False +40017301409,3184.0,False,False +40017301410,5648.0,False,False +40019892100,2955.0,False,True +40019892200,1296.0,True,True +40019892300,2977.0,True,True +40019892400,3251.0,False,True +40019892500,10033.0,False,True +40019892600,5977.0,False,True +40019892700,4646.0,False,True +40019892800,5219.0,True,True +40019892900,2351.0,True,True +40019893000,6719.0,False,True +40019893100,2895.0,True,True +40021977600,5543.0,True,True +40021977700,7012.0,True,True +40021977800,6874.0,True,True +40021977900,6099.0,False,True +40021978000,4462.0,True,True +40021978100,6756.0,False,True +40021978201,2529.0,True,True +40021978202,2692.0,True,True +40021978300,6697.0,False,True +40023966900,2543.0,True,True +40023967000,3139.0,True,True +40023967100,3453.0,True,True +40023967200,2370.0,True,True +40023967300,3302.0,True,True +40025950100,955.0,False,False +40025950300,1219.0,True,True +40027200100,219.0,True,True +40027200200,1658.0,True,True +40027200300,4221.0,True,True +40027200400,1811.0,True,True +40027200500,3810.0,False,False +40027200601,6290.0,False,False +40027200602,3858.0,False,False +40027200700,274.0,True,True +40027200800,7692.0,False,False +40027200900,3699.0,False,False +40027201000,5432.0,False,False +40027201101,5864.0,False,False +40027201102,2639.0,False,False +40027201201,1597.0,False,False +40027201202,5725.0,False,False +40027201203,6564.0,False,False +40027201301,8866.0,False,False +40027201403,6120.0,False,False +40027201404,4235.0,False,False +40027201405,5784.0,False,False +40027201505,5976.0,False,False +40027201507,6445.0,False,False +40027201508,3238.0,False,False +40027201509,4416.0,False,False +40027201510,7439.0,False,False +40027201602,2935.0,False,False +40027201603,4082.0,False,False +40027201604,3902.0,False,False +40027201607,5840.0,False,False +40027201609,4490.0,False,False +40027201610,3907.0,False,False +40027201611,2093.0,False,False +40027201612,5662.0,False,False +40027201700,3678.0,False,False +40027201801,3829.0,False,False +40027201802,3300.0,False,False +40027201902,4206.0,False,False +40027201903,2785.0,False,False +40027201904,4567.0,False,False +40027202002,4021.0,False,False +40027202004,3753.0,False,False +40027202005,6108.0,True,False +40027202006,2943.0,False,False +40027202007,4371.0,False,False +40027202008,4840.0,False,False +40027202102,2577.0,True,True +40027202104,2209.0,False,False +40027202105,4444.0,False,False +40027202106,6217.0,False,False +40027202107,3263.0,False,False +40027202201,4564.0,False,False +40027202203,6133.0,False,False +40027202205,7609.0,False,False +40027202206,3514.0,False,False +40027202301,5727.0,False,False +40027202302,5513.0,False,False +40027202402,6204.0,False,False +40027202403,5042.0,False,False +40027202404,4379.0,False,False +40027202405,6547.0,True,True +40027202500,7340.0,False,False +40027202600,2808.0,True,True +40029388100,3792.0,True,True +40029388200,1789.0,True,True +40031000100,3447.0,True,True +40031000200,1846.0,True,True +40031000300,5475.0,False,True +40031000401,7007.0,True,True +40031000402,3872.0,False,True +40031000403,5470.0,False,True +40031000501,6954.0,False,True +40031000502,8335.0,False,True +40031000600,2090.0,False,True +40031000700,2642.0,True,True +40031000800,2389.0,True,True +40031000900,2017.0,False,True +40031001000,1869.0,True,True +40031001100,1516.0,True,True +40031001400,845.0,False,True +40031001500,2495.0,True,True +40031001600,2005.0,True,True +40031001700,1648.0,True,True +40031001901,1806.0,True,True +40031001902,1558.0,True,True +40031002001,6223.0,False,True +40031002003,2152.0,False,True +40031002004,4000.0,False,True +40031002005,5981.0,True,True +40031002100,7159.0,False,True +40031002200,5647.0,False,True +40031002301,6388.0,False,True +40031002302,4807.0,False,True +40031002401,144.0,True,True +40031002403,4675.0,True,True +40031002404,6176.0,True,True +40031002500,3124.0,True,True +40033871100,3867.0,True,True +40033871200,1991.0,True,True +40035373100,3181.0,True,True +40035373200,2377.0,False,True +40035373300,3804.0,True,True +40035373400,2699.0,True,True +40035373500,2329.0,True,True +40037020101,2006.0,False,True +40037020102,1483.0,True,True +40037020103,3120.0,False,True +40037020601,6246.0,True,True +40037020602,3540.0,True,True +40037020702,3470.0,False,True +40037020704,1388.0,True,True +40037020705,2890.0,False,True +40037020706,5067.0,False,True +40037020707,2327.0,False,True +40037020800,3282.0,True,True +40037020900,3007.0,False,True +40037021000,4026.0,True,True +40037021101,3045.0,True,True +40037021102,3588.0,True,True +40037021201,2083.0,False,True +40037021202,4061.0,False,True +40037021300,2434.0,True,True +40037021400,6018.0,False,True +40037021500,5865.0,False,True +40037021600,2481.0,False,True +40039950800,3363.0,True,True +40039960400,8233.0,True,True +40039960600,5451.0,False,True +40039960700,8563.0,False,True +40039961000,3542.0,True,True +40041375601,3626.0,True,True +40041375602,3361.0,True,True +40041375700,7887.0,True,True +40041375801,3403.0,True,True +40041375802,3967.0,True,True +40041375900,4007.0,True,True +40041376000,5182.0,True,True +40041376100,5038.0,True,True +40041976200,5962.0,True,True +40043959100,2128.0,True,True +40043959200,1466.0,True,True +40043959300,1328.0,True,True +40045952600,2801.0,True,True +40045952800,1214.0,False,False +40047000100,4751.0,True,True +40047000200,2504.0,False,False +40047000600,5981.0,False,False +40047000700,8443.0,True,True +40047001100,3383.0,False,False +40047001200,3991.0,False,False +40047001300,8330.0,False,False +40047001401,3452.0,False,False +40047001402,4263.0,False,False +40047001500,6493.0,True,True +40047001601,5961.0,False,False +40047001602,4346.0,False,False +40049681100,2925.0,True,True +40049681200,3951.0,True,True +40049681300,2720.0,True,True +40049681400,5372.0,True,True +40049681500,2348.0,True,True +40049681600,2091.0,True,True +40049681700,2062.0,False,True +40049681800,3013.0,True,True +40049681900,3353.0,False,True +40051000100,1045.0,True,True +40051000400,3424.0,True,True +40051000500,6890.0,False,True +40051000600,5477.0,True,True +40051000700,7706.0,True,True +40051000800,6963.0,False,True +40051000901,2573.0,False,False +40051000902,6353.0,False,True +40051000903,10762.0,False,True +40051001000,3878.0,True,True +40053956400,1626.0,False,False +40053956500,2771.0,False,False +40055967100,2595.0,True,True +40055967200,3266.0,True,True +40057967800,2710.0,True,True +40059952100,1710.0,True,True +40059952200,2050.0,False,False +40061279100,2055.0,True,True +40061279200,4209.0,True,True +40061279300,3707.0,True,True +40061279400,2716.0,True,True +40063484600,2802.0,True,True +40063484700,2625.0,False,True +40063484800,3564.0,True,True +40063484900,2287.0,True,True +40063485000,2094.0,True,True +40065968100,2493.0,False,False +40065968200,1648.0,True,True +40065968300,1846.0,True,True +40065968400,5724.0,False,False +40065968500,3903.0,False,False +40065968600,4435.0,True,True +40065968700,1502.0,True,True +40065968800,3512.0,True,True +40067371600,1732.0,True,True +40067371700,1544.0,True,True +40067371800,2882.0,True,True +40069660198,3131.0,True,True +40069660200,5133.0,True,True +40069660300,2800.0,True,True +40071000100,4967.0,True,True +40071000201,3067.0,True,True +40071000202,5250.0,False,False +40071000300,4503.0,False,False +40071000400,2100.0,True,True +40071000500,4112.0,True,True +40071000600,3593.0,False,False +40071001100,3822.0,True,True +40071001200,4668.0,True,True +40071001301,3693.0,True,True +40071001302,4627.0,False,False +40073958100,4705.0,True,True +40073958200,2355.0,False,False +40073958300,5969.0,False,False +40073958400,2665.0,False,False +40075963600,1343.0,True,True +40075963700,3843.0,True,True +40075964200,3700.0,True,True +40077087100,2205.0,True,True +40077087200,5345.0,True,True +40077087300,2798.0,True,True +40079040102,4570.0,True,True +40079040198,1905.0,True,True +40079040299,3943.0,True,True +40079040301,5764.0,True,True +40079040302,3709.0,True,True +40079040303,3967.0,True,True +40079040401,5200.0,True,True +40079040402,3844.0,True,True +40079040500,5281.0,True,True +40079040601,3555.0,True,True +40079040602,5518.0,True,True +40079040700,2770.0,True,True +40081961100,4434.0,True,True +40081961200,4416.0,True,True +40081961300,4718.0,True,True +40081961400,8648.0,True,True +40081961500,4229.0,False,True +40081961600,3215.0,False,True +40081961700,5235.0,True,True +40083600100,4206.0,True,True +40083600200,3692.0,True,True +40083600300,2606.0,True,True +40083600400,10102.0,False,False +40083600500,8737.0,False,False +40083600600,3944.0,False,False +40083600700,4836.0,True,True +40083600800,8560.0,False,False +40085094100,2925.0,True,True +40085094200,4911.0,False,False +40085094300,2227.0,False,False +40087400101,8945.0,False,False +40087400102,10587.0,False,True +40087400201,3230.0,False,True +40087400202,9421.0,False,False +40087400300,5869.0,True,True +40087400400,1195.0,True,True +40089098200,2733.0,True,True +40089098300,1710.0,True,True +40089098400,4569.0,True,True +40089098500,6189.0,True,True +40089098600,5342.0,True,True +40089098700,4158.0,True,True +40089098800,5433.0,True,True +40089098900,2882.0,True,True +40091779600,5124.0,True,True +40091779700,3337.0,True,True +40091779900,2564.0,True,True +40091780100,2326.0,True,True +40091780200,3090.0,True,True +40091780300,3284.0,True,True +40093955100,3290.0,False,False +40093955200,1550.0,True,True +40093955300,2852.0,True,True +40095094698,4235.0,True,True +40095094700,4986.0,True,True +40095094801,3611.0,True,True +40095094802,3673.0,True,True +40097040100,4697.0,True,True +40097040200,4783.0,True,True +40097040300,4353.0,False,True +40097040400,5740.0,True,True +40097040501,3240.0,False,True +40097040502,3944.0,True,True +40097040600,4307.0,True,True +40097040700,3559.0,True,True +40097040800,6421.0,False,True +40099790600,2337.0,False,True +40099790700,5226.0,True,True +40099790800,6383.0,True,True +40101000100,4371.0,True,True +40101000200,1585.0,True,True +40101000300,3157.0,True,True +40101000400,1475.0,True,True +40101000600,3668.0,True,True +40101000700,5135.0,True,True +40101000801,4900.0,False,True +40101000802,2458.0,False,True +40101000900,7881.0,True,True +40101001000,1729.0,True,True +40101001100,2980.0,True,True +40101001200,4891.0,False,True +40101001300,6392.0,False,True +40101001400,6983.0,False,True +40101001500,6562.0,True,True +40101001600,4569.0,True,True +40103956600,3198.0,False,False +40103956900,3637.0,False,False +40103957000,1800.0,True,True +40103957100,2700.0,False,False +40105172100,2078.0,True,True +40105172200,1650.0,True,True +40105172300,2059.0,True,True +40105172400,4535.0,True,True +40107080600,2921.0,True,True +40107080700,3352.0,True,True +40107080900,3663.0,True,True +40107081000,2131.0,True,True +40109100100,3151.0,True,True +40109100200,6653.0,False,False +40109100300,2684.0,False,False +40109100400,2434.0,True,True +40109100500,1785.0,True,True +40109100600,781.0,False,False +40109100700,1221.0,False,False +40109100800,2308.0,True,True +40109100900,1493.0,False,False +40109101000,3167.0,False,True +40109101100,874.0,True,True +40109101200,1238.0,False,False +40109101300,2956.0,True,True +40109101400,1040.0,True,True +40109101500,1383.0,False,False +40109101600,497.0,False,False +40109101700,1203.0,False,False +40109101800,1602.0,False,False +40109101900,3131.0,False,False +40109102000,2682.0,False,False +40109102100,2233.0,True,True +40109102200,2774.0,True,True +40109102300,2763.0,True,True +40109102400,2672.0,True,True +40109102500,998.0,False,True +40109102600,679.0,False,False +40109102700,162.0,False,False +40109102800,3054.0,True,True +40109102900,719.0,False,False +40109103000,265.0,True,True +40109103200,3896.0,False,False +40109103300,1636.0,True,True +40109103400,336.0,True,True +40109103500,229.0,True,True +40109103601,243.0,False,False +40109103602,581.0,True,True +40109103700,263.0,True,True +40109103800,1281.0,False,False +40109103900,4165.0,True,True +40109104000,161.0,True,True +40109104100,2857.0,True,True +40109104200,2306.0,True,True +40109104300,3262.0,True,True +40109104400,3525.0,True,True +40109104500,3793.0,True,True +40109104600,1056.0,True,True +40109104700,1313.0,True,True +40109104800,3044.0,True,True +40109104900,4280.0,True,True +40109105000,2318.0,True,True +40109105100,2313.0,False,False +40109105201,1519.0,True,True +40109105202,1143.0,True,True +40109105300,3415.0,True,True +40109105400,1993.0,True,True +40109105500,2940.0,True,True +40109105600,4687.0,True,True +40109105700,1298.0,True,True +40109105800,789.0,True,True +40109105903,2950.0,False,False +40109105904,3738.0,True,True +40109105905,2819.0,True,True +40109105906,3453.0,True,True +40109105907,3909.0,True,True +40109106000,2263.0,False,False +40109106100,3273.0,True,True +40109106200,1489.0,False,False +40109106301,3702.0,True,True +40109106302,4158.0,True,True +40109106303,3299.0,True,False +40109106401,2110.0,False,False +40109106402,2207.0,False,False +40109106403,5061.0,False,False +40109106501,2805.0,False,False +40109106502,4590.0,True,False +40109106503,1313.0,False,False +40109106601,2948.0,True,True +40109106602,2811.0,True,False +40109106604,2583.0,True,True +40109106606,2317.0,False,False +40109106607,3854.0,True,False +40109106608,3123.0,False,False +40109106609,852.0,False,False +40109106610,1444.0,True,True +40109106702,3538.0,True,False +40109106704,2137.0,False,False +40109106705,2449.0,False,False +40109106706,3436.0,True,False +40109106707,7410.0,True,True +40109106708,2510.0,False,False +40109106801,1957.0,False,False +40109106802,1689.0,True,True +40109106803,2735.0,True,True +40109106804,3571.0,True,False +40109106902,2642.0,True,False +40109106903,5843.0,False,False +40109106906,3397.0,True,True +40109106907,2032.0,True,False +40109106909,1887.0,True,False +40109106910,2696.0,True,False +40109106911,1889.0,False,False +40109106912,2934.0,True,True +40109106913,4373.0,True,True +40109106914,4411.0,True,True +40109106915,5623.0,True,True +40109107001,6254.0,True,True +40109107002,2076.0,True,False +40109107101,8.0,False,True +40109107103,1938.0,True,True +40109107104,3356.0,True,True +40109107206,4706.0,True,True +40109107207,2232.0,True,False +40109107209,6235.0,True,True +40109107210,1116.0,False,False +40109107211,2139.0,False,False +40109107212,6919.0,True,True +40109107213,5210.0,True,True +40109107214,3299.0,True,False +40109107215,4255.0,True,True +40109107216,3035.0,True,True +40109107217,2043.0,True,True +40109107218,3705.0,True,True +40109107219,3981.0,True,True +40109107220,4154.0,True,True +40109107221,2212.0,True,True +40109107222,1811.0,True,True +40109107223,3053.0,True,True +40109107302,3002.0,True,True +40109107303,1540.0,True,True +40109107305,1243.0,True,True +40109107306,4327.0,True,True +40109107401,6340.0,True,True +40109107403,5777.0,False,False +40109107404,3422.0,False,False +40109107405,5154.0,False,False +40109107500,3180.0,False,False +40109107601,2114.0,True,True +40109107604,1955.0,True,True +40109107605,2193.0,True,True +40109107606,141.0,True,True +40109107607,3388.0,False,False +40109107703,3653.0,False,False +40109107704,1602.0,True,True +40109107705,1811.0,True,False +40109107706,2994.0,True,False +40109107707,1371.0,True,True +40109107801,3428.0,False,False +40109107804,2570.0,True,True +40109107805,2387.0,True,True +40109107806,4198.0,True,True +40109107807,2958.0,False,False +40109107808,1745.0,False,False +40109107809,1764.0,True,True +40109107810,2868.0,True,True +40109107900,1963.0,True,True +40109108003,4272.0,True,True +40109108005,2583.0,False,False +40109108006,4146.0,False,False +40109108007,3176.0,False,False +40109108008,4541.0,True,True +40109108009,2728.0,False,False +40109108010,3418.0,True,True +40109108011,3239.0,True,True +40109108101,4424.0,False,False +40109108106,6076.0,False,False +40109108107,2883.0,False,False +40109108109,5819.0,False,False +40109108110,4376.0,False,False +40109108113,4917.0,False,False +40109108114,4731.0,False,False +40109108201,3696.0,False,False +40109108203,3786.0,True,True +40109108204,2900.0,True,True +40109108206,4989.0,False,False +40109108207,1487.0,False,False +40109108208,3897.0,False,True +40109108213,10425.0,False,False +40109108215,4220.0,False,False +40109108216,3068.0,False,False +40109108217,4249.0,False,False +40109108218,10023.0,False,False +40109108219,8295.0,False,False +40109108220,6239.0,False,False +40109108221,9369.0,False,False +40109108301,1930.0,True,True +40109108302,4952.0,False,False +40109108303,6543.0,False,False +40109108304,5176.0,False,False +40109108307,4441.0,False,False +40109108309,2588.0,True,True +40109108310,2826.0,False,False +40109108313,5786.0,True,True +40109108314,3035.0,True,True +40109108315,6181.0,False,False +40109108316,7181.0,False,False +40109108317,3837.0,False,False +40109108318,5608.0,False,False +40109108402,1379.0,False,False +40109108403,1863.0,False,False +40109108404,3121.0,False,False +40109108504,7199.0,False,False +40109108506,3444.0,False,False +40109108507,1098.0,False,False +40109108508,2076.0,False,False +40109108511,13904.0,False,False +40109108512,7274.0,False,False +40109108513,3381.0,False,False +40109108514,4758.0,False,False +40109108515,5832.0,False,False +40109108519,3213.0,False,False +40109108520,2051.0,False,False +40109108521,1248.0,False,False +40109108523,5819.0,False,False +40109108524,4153.0,False,False +40109108525,2266.0,False,False +40109108526,5278.0,True,False +40109108527,5430.0,False,False +40109108528,2356.0,False,False +40109108529,2718.0,False,False +40109108530,4213.0,False,False +40109108601,2742.0,False,False +40109108602,914.0,True,True +40109108603,4541.0,False,False +40109108701,2572.0,False,False +40109108703,6992.0,False,False +40109108704,5802.0,False,False +40109108706,2721.0,False,False +40109108707,4212.0,False,False +40109108708,4731.0,False,True +40109108709,3463.0,False,True +40109108801,6706.0,False,False +40109108802,5323.0,False,False +40109108803,1020.0,True,True +40109108804,3006.0,False,False +40109108900,4036.0,True,True +40109109001,2207.0,False,True +40109109003,5286.0,False,True +40109109004,3774.0,False,True +40109109100,207.0,True,True +40109109201,7944.0,False,False +40109109202,2588.0,False,False +40111000100,2961.0,False,True +40111000200,2825.0,True,True +40111000300,2695.0,True,True +40111000400,4458.0,True,True +40111000500,3815.0,False,True +40111000600,7564.0,False,True +40111000700,3943.0,False,True +40111000800,3080.0,True,True +40111000901,2937.0,True,True +40111000902,4471.0,True,True +40113940001,5575.0,True,True +40113940002,4680.0,True,True +40113940003,4649.0,True,True +40113940004,2466.0,False,True +40113940005,4538.0,False,True +40113940006,5345.0,True,True +40113940007,5018.0,False,True +40113940008,2601.0,False,True +40113940009,3829.0,False,True +40113940010,7317.0,True,True +40113940011,1208.0,True,True +40115574100,4062.0,True,True +40115574200,3079.0,True,True +40115574300,2612.0,True,True +40115574400,2718.0,True,True +40115574500,2294.0,True,True +40115574600,4472.0,False,True +40115574700,4446.0,False,True +40115574800,4350.0,True,True +40115574900,3421.0,True,True +40117957100,3817.0,True,True +40117957200,4430.0,True,True +40117957300,3176.0,True,True +40117957400,2673.0,False,True +40117957500,2316.0,True,True +40119010101,5064.0,False,False +40119010102,4920.0,False,False +40119010200,6155.0,False,False +40119010300,3566.0,False,False +40119010400,5686.0,False,False +40119010500,3185.0,False,False +40119010600,4836.0,False,False +40119010700,3037.0,True,True +40119010800,2522.0,False,False +40119010900,11242.0,False,False +40119011000,6583.0,False,False +40119011101,5264.0,False,False +40119011102,6390.0,True,False +40119011200,2036.0,True,True +40119011301,3377.0,True,True +40119011302,3710.0,True,True +40119011400,4242.0,True,True +40121485600,2818.0,True,True +40121485700,2058.0,True,True +40121485800,4516.0,True,True +40121485900,2204.0,True,True +40121486000,4813.0,False,True +40121486100,4487.0,True,True +40121486200,3449.0,True,True +40121486300,1412.0,True,True +40121486400,2412.0,True,True +40121486500,6198.0,False,True +40121486600,2880.0,False,True +40121486700,5015.0,True,True +40121486800,1884.0,True,True +40123088600,4973.0,False,True +40123088700,2506.0,False,True +40123088800,8089.0,False,True +40123088900,4183.0,False,True +40123089000,3942.0,False,True +40123089100,2334.0,True,True +40123089200,1632.0,True,True +40123089300,3874.0,False,True +40123089598,4766.0,False,True +40123089600,2056.0,False,True +40125500200,3327.0,True,True +40125500301,3662.0,True,True +40125500302,2652.0,True,True +40125500400,3653.0,True,True +40125500500,4289.0,False,True +40125500600,3547.0,False,True +40125500700,3181.0,False,True +40125500800,4103.0,False,True +40125500900,7152.0,False,True +40125501001,8715.0,False,True +40125501003,4773.0,False,True +40125501004,4257.0,False,True +40125501101,6383.0,True,True +40125501102,8074.0,True,True +40125501201,1763.0,True,True +40125501300,2623.0,True,True +40127097600,2880.0,True,True +40127097700,5742.0,True,True +40127097800,2506.0,True,True +40129960000,3667.0,True,True +40131050101,4979.0,True,True +40131050103,2273.0,False,True +40131050104,2098.0,True,True +40131050105,4919.0,False,True +40131050201,2605.0,False,True +40131050202,2715.0,True,True +40131050203,1619.0,False,True +40131050301,2480.0,True,True +40131050302,2436.0,False,True +40131050303,2754.0,False,True +40131050304,3237.0,False,True +40131050403,5539.0,False,True +40131050404,6581.0,False,True +40131050405,4159.0,False,True +40131050406,3158.0,False,True +40131050407,2285.0,False,True +40131050408,3006.0,False,True +40131050409,2181.0,False,True +40131050501,3222.0,False,True +40131050502,3406.0,True,True +40131050601,3541.0,False,True +40131050602,3216.0,False,True +40131050603,2370.0,False,True +40131050604,3559.0,False,True +40131050701,2142.0,True,True +40131050702,3031.0,False,True +40131050801,4597.0,False,True +40131050802,3245.0,False,True +40133583100,1553.0,True,True +40133583200,3522.0,True,True +40133583300,2691.0,True,True +40133583400,4172.0,True,True +40133583500,1838.0,True,True +40133583600,4136.0,True,True +40133583700,2406.0,True,True +40133583800,2848.0,True,True +40133583900,1666.0,True,True +40135030101,5143.0,True,True +40135030103,2801.0,True,True +40135030104,6841.0,True,True +40135030201,2820.0,True,True +40135030202,5196.0,True,True +40135030301,2113.0,True,True +40135030302,6520.0,True,True +40135030401,4267.0,True,True +40135030402,6008.0,True,True +40137000101,5131.0,False,True +40137000102,3491.0,True,True +40137000200,4087.0,False,True +40137000300,2048.0,True,True +40137000400,5134.0,True,True +40137000600,3066.0,True,True +40137000800,4938.0,False,True +40137000901,4839.0,False,True +40137000902,3587.0,True,True +40137001000,1985.0,False,True +40137001100,5341.0,True,True +40139950600,3845.0,False,False +40139950700,3406.0,False,False +40139950800,5811.0,True,True +40139950900,6160.0,True,True +40139951000,1583.0,True,True +40141070100,1100.0,True,True +40141070200,1026.0,True,True +40141070300,2457.0,True,True +40141070400,1516.0,True,True +40141070500,1314.0,True,True +40143000100,2043.0,True,True +40143000200,1351.0,True,True +40143000300,4089.0,True,True +40143000400,4232.0,True,True +40143000500,2213.0,True,True +40143000600,1600.0,True,True +40143000700,1561.0,True,True +40143000800,1360.0,True,True +40143000900,1556.0,True,True +40143001000,1428.0,True,True +40143001200,1782.0,True,True +40143001300,1981.0,True,True +40143001400,5139.0,True,True +40143001500,3692.0,True,True +40143001600,5167.0,True,True +40143001700,2446.0,False,True +40143001800,1989.0,False,True +40143001900,1575.0,True,True +40143002000,1662.0,False,True +40143002100,2485.0,False,True +40143002301,2329.0,True,True +40143002500,3625.0,True,True +40143002700,2965.0,True,True +40143002900,2767.0,True,True +40143003000,1861.0,True,True +40143003100,2177.0,False,True +40143003200,1620.0,False,True +40143003300,1966.0,False,True +40143003400,2109.0,True,True +40143003500,1964.0,False,True +40143003600,2128.0,False,True +40143003700,2572.0,False,True +40143003800,1923.0,False,True +40143003900,4070.0,False,True +40143004000,4090.0,False,True +40143004101,2255.0,False,True +40143004200,2928.0,False,True +40143004301,2208.0,False,True +40143004302,3378.0,False,True +40143004400,2084.0,False,True +40143004500,2505.0,False,True +40143004600,3194.0,True,True +40143004700,1870.0,True,True +40143004800,4383.0,True,True +40143004900,1904.0,True,True +40143005001,2093.0,True,True +40143005002,3334.0,False,True +40143005100,1744.0,False,True +40143005200,3092.0,False,True +40143005300,4897.0,False,True +40143005401,3057.0,False,True +40143005402,8628.0,False,True +40143005500,3825.0,False,True +40143005600,2557.0,True,True +40143005700,2716.0,True,True +40143005801,3959.0,False,True +40143005805,7181.0,False,True +40143005806,6305.0,False,True +40143005807,15593.0,False,True +40143005808,4129.0,False,True +40143005900,2561.0,True,True +40143006000,5286.0,True,True +40143006200,2642.0,True,True +40143006506,2539.0,False,True +40143006507,1685.0,False,True +40143006600,2777.0,False,True +40143006701,3024.0,True,True +40143006703,4168.0,True,True +40143006705,6336.0,False,True +40143006707,11370.0,False,True +40143006708,7748.0,False,True +40143006801,2447.0,True,True +40143006803,2708.0,True,True +40143006804,2728.0,True,True +40143006901,4273.0,False,True +40143006902,1547.0,False,True +40143006903,4185.0,False,True +40143006905,4163.0,True,True +40143006906,2155.0,True,True +40143006907,3171.0,False,True +40143007000,2998.0,True,True +40143007101,3736.0,True,True +40143007102,2147.0,True,True +40143007200,3886.0,True,True +40143007304,3910.0,True,True +40143007305,6330.0,True,True +40143007306,6245.0,True,True +40143007308,3355.0,True,True +40143007309,1681.0,True,True +40143007310,3940.0,True,True +40143007311,2673.0,True,True +40143007312,4512.0,True,True +40143007402,2644.0,True,True +40143007407,3237.0,False,True +40143007408,1158.0,True,True +40143007409,4363.0,False,True +40143007410,2460.0,True,True +40143007411,3444.0,False,True +40143007412,3653.0,False,True +40143007413,3784.0,False,True +40143007414,2762.0,False,True +40143007415,1688.0,False,True +40143007503,2848.0,False,True +40143007506,3473.0,False,True +40143007507,3493.0,False,True +40143007508,5950.0,False,True +40143007510,5523.0,False,True +40143007511,3384.0,False,True +40143007512,4247.0,False,True +40143007513,5877.0,False,True +40143007515,4984.0,False,True +40143007516,4876.0,False,True +40143007518,3701.0,False,True +40143007519,3679.0,False,True +40143007520,4381.0,False,True +40143007522,2134.0,False,True +40143007523,2555.0,False,True +40143007524,3158.0,False,True +40143007608,2079.0,True,True +40143007609,4547.0,True,True +40143007611,1479.0,False,True +40143007612,3544.0,False,True +40143007613,2920.0,False,True +40143007614,2629.0,False,True +40143007615,2209.0,False,True +40143007616,3378.0,False,True +40143007617,3964.0,True,True +40143007618,7064.0,False,True +40143007619,3703.0,False,True +40143007620,5310.0,False,True +40143007624,5368.0,False,True +40143007625,5736.0,True,True +40143007629,3719.0,False,True +40143007630,5035.0,False,True +40143007631,3343.0,False,True +40143007632,2986.0,False,True +40143007633,2612.0,False,True +40143007634,3730.0,False,True +40143007635,6097.0,False,True +40143007636,3991.0,False,True +40143007637,5443.0,False,True +40143007638,4547.0,False,True +40143007639,5029.0,False,True +40143007641,4826.0,True,True +40143007642,1941.0,True,True +40143007701,6660.0,False,True +40143007702,9897.0,False,True +40143007801,2996.0,True,True +40143007802,6353.0,False,True +40143007900,4412.0,True,True +40143008001,1989.0,True,True +40143008002,2892.0,True,True +40143008200,2465.0,True,True +40143008300,1526.0,True,True +40143008400,3620.0,False,True +40143008501,2934.0,True,True +40143008502,4929.0,True,True +40143008600,4107.0,True,True +40143008700,3101.0,False,True +40143008800,2076.0,True,True +40143008900,3741.0,True,True +40143009003,8857.0,False,True +40143009004,5570.0,True,True +40143009006,6769.0,True,True +40143009007,7134.0,True,True +40143009008,3807.0,True,True +40143009009,10266.0,False,True +40143009101,2763.0,True,True +40143009104,2142.0,True,True +40143009200,3356.0,True,True +40143009300,4348.0,True,True +40143009401,5241.0,False,True +40143009402,5669.0,False,True +40143009500,5362.0,False,True +40143011100,490.0,True,True +40145030101,4809.0,True,True +40145030102,4634.0,True,True +40145030201,2744.0,True,True +40145030202,2981.0,False,True +40145030300,1694.0,True,True +40145030402,4387.0,False,True +40145030403,2592.0,True,True +40145030405,5880.0,False,True +40145030406,5045.0,False,True +40145030502,2424.0,False,True +40145030505,2561.0,False,True +40145030506,1758.0,False,True +40145030507,2797.0,True,True +40145030508,2027.0,False,True +40145030509,4547.0,False,True +40145030510,2072.0,False,True +40145030511,2152.0,False,True +40145030512,4460.0,False,True +40145030601,5058.0,False,True +40145030602,7283.0,True,True +40145030798,3385.0,False,True +40145030800,3668.0,False,True +40147000100,2036.0,True,True +40147000200,1760.0,True,True +40147000300,2090.0,True,True +40147000400,4407.0,False,True +40147000500,6061.0,False,True +40147000600,8038.0,False,True +40147000700,6222.0,False,True +40147000800,3546.0,True,True +40147000900,2316.0,True,True +40147001000,2261.0,False,True +40147001100,4850.0,True,True +40147001200,2448.0,False,True +40147001300,5851.0,False,True +40149964900,4263.0,True,True +40149965000,2007.0,True,True +40149965100,3432.0,False,True +40149965400,1523.0,False,True +40151954200,4329.0,False,False +40151954300,3015.0,False,False +40151954400,1699.0,True,True +40153953100,2305.0,False,False +40153953200,4910.0,False,False +40153953300,4530.0,True,True +40153953400,3273.0,False,False +40153953500,5709.0,True,True +41001950100,2692.0,True,True +41001950200,3283.0,True,True +41001950300,2521.0,True,True +41001950400,2676.0,False,False +41001950500,2731.0,False,False +41001950600,2116.0,True,True +41003000100,7612.0,False,False +41003000202,5375.0,False,False +41003000400,8055.0,False,False +41003000500,3374.0,False,False +41003000600,4570.0,True,True +41003000900,5615.0,False,False +41003001001,4193.0,True,False +41003001002,3235.0,False,False +41003001101,4177.0,False,False +41003001102,4503.0,False,False +41003010100,9584.0,False,False +41003010200,4417.0,False,False +41003010300,3508.0,False,False +41003010400,4042.0,False,False +41003010600,5550.0,False,False +41003010702,4322.0,False,False +41003010800,3622.0,False,False +41003010900,5353.0,False,False +41005020100,3984.0,False,False +41005020200,6258.0,False,False +41005020302,4019.0,False,False +41005020303,6112.0,False,False +41005020304,5697.0,False,False +41005020401,6053.0,False,False +41005020403,3725.0,False,False +41005020404,3781.0,False,False +41005020501,7298.0,False,False +41005020503,2363.0,False,False +41005020504,6625.0,False,False +41005020505,2481.0,False,False +41005020600,8556.0,False,False +41005020700,4064.0,False,False +41005020800,4143.0,False,False +41005020900,4410.0,False,False +41005021000,4891.0,False,False +41005021100,5106.0,False,False +41005021200,3941.0,False,False +41005021300,6014.0,False,False +41005021400,5010.0,False,False +41005021500,5009.0,False,False +41005021601,6515.0,False,False +41005021602,5367.0,False,False +41005021700,6855.0,False,False +41005021801,6138.0,False,False +41005021802,4568.0,False,False +41005021900,3674.0,True,True +41005022000,6620.0,False,False +41005022101,7529.0,False,False +41005022103,8179.0,False,False +41005022105,6354.0,False,False +41005022107,4422.0,False,False +41005022108,3359.0,True,True +41005022201,5686.0,False,False +41005022205,3704.0,False,False +41005022206,6833.0,False,False +41005022207,6564.0,False,False +41005022208,7473.0,False,False +41005022301,4258.0,False,False +41005022302,5951.0,False,False +41005022400,3999.0,False,False +41005022500,7703.0,False,False +41005022602,4750.0,False,False +41005022603,4080.0,False,False +41005022605,8019.0,False,False +41005022606,5497.0,False,False +41005022702,6544.0,False,False +41005022707,6826.0,False,False +41005022708,4342.0,False,False +41005022710,2822.0,False,False +41005022800,3875.0,False,False +41005022901,3873.0,False,False +41005022904,3835.0,False,False +41005022905,4545.0,False,False +41005022906,3137.0,False,False +41005022907,4170.0,False,False +41005023001,3456.0,False,False +41005023002,4126.0,False,False +41005023100,6009.0,False,False +41005023201,4247.0,False,False +41005023202,8510.0,False,False +41005023300,5231.0,False,False +41005023401,5035.0,False,False +41005023403,5525.0,False,False +41005023404,6542.0,False,False +41005023500,5510.0,False,False +41005023600,3610.0,False,False +41005023700,4960.0,False,False +41005023800,6776.0,False,False +41005023901,5408.0,False,False +41005023902,5383.0,True,False +41005024000,2579.0,False,False +41005024100,5083.0,False,False +41005024200,6425.0,False,False +41005024302,5071.0,False,False +41005024303,2852.0,False,False +41005024304,2398.0,False,False +41005024400,8056.0,False,False +41005980000,65.0,True,True +41007950100,3534.0,True,True +41007950200,3475.0,False,False +41007950300,3011.0,True,True +41007950400,3760.0,False,False +41007950500,4841.0,False,False +41007950600,3189.0,True,True +41007950700,2112.0,False,False +41007950900,4606.0,False,False +41007951100,4625.0,False,False +41007951200,3336.0,False,False +41007951300,2613.0,False,False +41007990000,0.0,False,False +41009970200,6636.0,True,True +41009970300,4891.0,True,True +41009970400,2435.0,False,False +41009970500,6650.0,False,False +41009970600,5784.0,False,False +41009970700,4129.0,True,True +41009970800,7586.0,True,True +41009970900,4866.0,False,False +41009971000,5014.0,False,False +41009971100,3384.0,False,False +41011000100,5729.0,True,True +41011000200,2599.0,False,False +41011000300,3185.0,False,False +41011000400,6467.0,False,False +41011000502,2811.0,False,False +41011000503,3084.0,False,False +41011000504,5701.0,True,True +41011000600,2716.0,False,False +41011000700,7769.0,True,True +41011000800,3400.0,False,False +41011000900,6974.0,True,True +41011001000,7238.0,True,True +41011001100,6013.0,True,True +41011990101,0.0,False,False +41013950100,7566.0,False,False +41013950200,4344.0,True,True +41013950300,6859.0,True,True +41013950400,4242.0,False,True +41015950100,2715.0,True,True +41015950200,5734.0,False,False +41015950301,4455.0,False,False +41015950302,4515.0,True,True +41015950400,5231.0,True,True +41015990101,0.0,False,False +41017000100,1962.0,False,False +41017000200,5125.0,True,True +41017000300,9085.0,False,False +41017000401,5854.0,False,False +41017000402,2579.0,False,False +41017000500,7066.0,False,False +41017000600,8249.0,False,False +41017000700,8331.0,False,False +41017000800,7166.0,False,False +41017000900,7667.0,True,True +41017001001,14562.0,False,False +41017001002,2499.0,False,False +41017001100,13171.0,False,False +41017001200,7657.0,False,False +41017001300,13881.0,False,False +41017001400,6423.0,False,False +41017001500,6506.0,False,False +41017001600,6352.0,False,False +41017001700,8775.0,False,False +41017001800,9175.0,False,False +41017001901,1936.0,False,False +41017001902,10076.0,False,False +41017002000,9067.0,False,False +41017002100,13087.0,False,False +41019010000,2423.0,True,True +41019020000,3476.0,True,True +41019030000,3426.0,True,True +41019040000,2532.0,False,False +41019050001,4586.0,False,False +41019050002,7032.0,True,True +41019060000,3746.0,False,False +41019070000,5160.0,False,False +41019080000,7862.0,False,False +41019090000,6318.0,True,True +41019100000,3246.0,True,True +41019110000,2643.0,False,False +41019120000,7341.0,True,True +41019130000,5235.0,True,False +41019140000,5721.0,True,True +41019150000,7899.0,False,False +41019160000,7958.0,True,True +41019170000,3901.0,False,False +41019180000,4503.0,True,True +41019190000,4913.0,True,True +41019200000,5073.0,True,True +41019210000,4120.0,True,True +41019990000,0.0,False,False +41021960100,1878.0,True,True +41023960100,1885.0,True,True +41023960200,5304.0,True,True +41025960100,5276.0,True,True +41025960200,1991.0,True,True +41027950100,4585.0,True,False +41027950200,6980.0,False,False +41027950300,5923.0,False,False +41027950400,5721.0,True,True +41029000100,2027.0,True,True +41029000201,4087.0,True,True +41029000202,4004.0,True,True +41029000203,3880.0,True,True +41029000300,6544.0,True,True +41029000403,4027.0,False,False +41029000404,4725.0,False,False +41029000405,4549.0,True,True +41029000406,4821.0,False,False +41029000501,3017.0,True,True +41029000502,6320.0,True,True +41029000601,6927.0,False,False +41029000602,5824.0,False,False +41029000700,9659.0,False,False +41029000800,5971.0,True,True +41029000900,9501.0,False,False +41029001001,6673.0,False,False +41029001002,4557.0,True,True +41029001100,5458.0,False,False +41029001200,4327.0,False,False +41029001301,5465.0,True,True +41029001302,10648.0,True,True +41029001400,11504.0,False,False +41029001500,5123.0,False,False +41029001601,5051.0,True,True +41029001602,6335.0,True,True +41029001700,7725.0,False,False +41029001800,8622.0,False,False +41029001900,2911.0,False,False +41029002000,1972.0,True,True +41029002100,3307.0,False,False +41029002200,4981.0,False,False +41029002300,1601.0,False,False +41029002400,1786.0,False,False +41029002500,2297.0,False,False +41029002600,2556.0,True,True +41029002700,7358.0,False,False +41029002800,4606.0,False,False +41029002900,7719.0,False,False +41029003001,3811.0,True,True +41029003002,4298.0,False,False +41031940000,3527.0,True,True +41031960100,2553.0,False,False +41031960201,3524.0,True,True +41031960202,5433.0,False,False +41031960301,3780.0,False,False +41031960302,4790.0,False,False +41033360100,1943.0,True,True +41033360300,5835.0,False,False +41033360400,4820.0,True,False +41033360500,5968.0,True,True +41033360600,5987.0,True,True +41033360701,4414.0,True,True +41033360702,6033.0,True,True +41033360800,5605.0,True,True +41033360900,2447.0,True,True +41033361000,4974.0,False,False +41033361100,9882.0,True,True +41033361200,8034.0,True,True +41033361300,7500.0,False,False +41033361400,2785.0,True,True +41033361500,2398.0,False,True +41033361600,7626.0,True,True +41035970100,3286.0,True,True +41035970200,4954.0,True,True +41035970300,2798.0,False,False +41035970400,1436.0,True,False +41035970500,1585.0,True,True +41035970600,1624.0,True,True +41035970700,1983.0,False,False +41035970800,2278.0,False,False +41035970900,4716.0,True,True +41035971000,2427.0,False,False +41035971100,5388.0,False,False +41035971200,2582.0,True,True +41035971300,5204.0,False,False +41035971400,5409.0,False,False +41035971500,4532.0,True,True +41035971600,3417.0,True,True +41035971700,3142.0,True,True +41035971800,2391.0,True,True +41035971900,3551.0,True,True +41035972000,4218.0,False,False +41037960100,2857.0,True,True +41037960200,4980.0,True,True +41039000100,5209.0,False,False +41039000200,5850.0,False,False +41039000300,2398.0,False,False +41039000402,3242.0,False,False +41039000403,5357.0,False,False +41039000404,4024.0,False,False +41039000500,2009.0,True,True +41039000702,2599.0,False,False +41039000705,3686.0,True,True +41039000706,2601.0,False,False +41039000707,3934.0,True,True +41039000708,2543.0,True,True +41039000800,1658.0,False,False +41039000902,4901.0,False,False +41039000903,5596.0,False,False +41039000904,3106.0,True,True +41039001001,2649.0,False,False +41039001002,3733.0,False,False +41039001101,5919.0,False,False +41039001102,3930.0,False,False +41039001201,4068.0,True,True +41039001202,4178.0,False,False +41039001301,3407.0,True,True +41039001302,4945.0,True,True +41039001400,2650.0,True,True +41039001500,4566.0,True,True +41039001600,5201.0,False,False +41039001700,5884.0,False,False +41039001801,6259.0,False,False +41039001803,4261.0,True,True +41039001804,3921.0,False,False +41039001902,6175.0,True,True +41039001903,3219.0,True,True +41039001904,5591.0,True,True +41039002001,3337.0,False,False +41039002002,5027.0,False,False +41039002101,2637.0,True,True +41039002102,6663.0,True,True +41039002201,3506.0,False,False +41039002202,7104.0,False,False +41039002301,4135.0,False,False +41039002302,4625.0,False,False +41039002401,4061.0,False,False +41039002403,3938.0,False,False +41039002404,4058.0,False,False +41039002501,5232.0,False,False +41039002503,8198.0,False,False +41039002504,3358.0,True,True +41039002600,6140.0,True,True +41039002700,4445.0,True,True +41039002800,4960.0,True,True +41039002902,3954.0,False,False +41039002903,2868.0,False,False +41039002904,4135.0,False,False +41039003000,4542.0,False,False +41039003101,6243.0,False,False +41039003102,7777.0,False,False +41039003201,3131.0,True,True +41039003202,4059.0,False,False +41039003301,3256.0,True,True +41039003302,3523.0,True,True +41039003400,5132.0,True,True +41039003500,4749.0,False,False +41039003600,3770.0,True,False +41039003700,4843.0,False,False +41039003800,8932.0,False,False +41039003900,3702.0,True,True +41039004000,2473.0,True,True +41039004100,4575.0,True,True +41039004200,3394.0,True,True +41039004300,7493.0,True,True +41039004401,5964.0,False,False +41039004403,5229.0,True,True +41039004404,3172.0,False,False +41039004405,4435.0,False,False +41039004501,2834.0,False,False +41039004502,3353.0,True,True +41039004600,2773.0,False,False +41039004700,4327.0,False,False +41039004800,4423.0,False,False +41039004900,4741.0,False,False +41039005000,5358.0,False,False +41039005100,3319.0,True,False +41039005200,2378.0,False,False +41039005300,2491.0,False,False +41039005400,5299.0,False,False +41039990000,0.0,False,False +41041950100,3124.0,True,True +41041950303,1534.0,False,False +41041950304,3384.0,True,True +41041950400,4087.0,True,True +41041950601,2408.0,False,False +41041950602,2561.0,False,False +41041950800,3322.0,True,False +41041950900,3918.0,True,False +41041951000,2006.0,True,True +41041951100,1900.0,True,False +41041951200,2168.0,False,False +41041951300,2538.0,False,False +41041951400,3406.0,True,False +41041951500,3231.0,True,True +41041951600,3343.0,True,True +41041951700,1843.0,False,False +41041951800,3774.0,True,True +41041990100,0.0,False,False +41043020100,10593.0,False,False +41043020200,2031.0,False,False +41043020300,7587.0,False,False +41043020400,3961.0,True,True +41043020500,3976.0,True,True +41043020600,8852.0,False,False +41043020700,6041.0,False,False +41043020801,2727.0,True,True +41043020802,6718.0,True,True +41043030100,5766.0,False,False +41043030200,6643.0,False,False +41043030300,2508.0,False,False +41043030401,7416.0,True,True +41043030402,7197.0,True,True +41043030500,4626.0,False,False +41043030600,7965.0,True,True +41043030700,3903.0,False,False +41043030800,8956.0,True,True +41043030902,7232.0,False,False +41043030903,5835.0,True,False +41043030904,4515.0,True,True +41045940000,0.0,False,False +41045970200,4675.0,True,True +41045970300,4362.0,True,True +41045970400,5130.0,True,True +41045970500,4693.0,True,True +41045970600,4196.0,True,True +41045970700,1575.0,True,True +41045970900,5781.0,True,True +41047000200,3555.0,False,False +41047000300,4477.0,True,True +41047000400,5811.0,True,True +41047000501,3939.0,True,True +41047000502,5754.0,True,True +41047000600,4675.0,True,True +41047000701,8593.0,True,True +41047000900,5725.0,True,True +41047001000,4466.0,True,True +41047001100,4840.0,False,False +41047001200,3510.0,False,False +41047001300,4203.0,False,False +41047001401,6249.0,False,False +41047001402,5992.0,False,False +41047001501,4933.0,False,False +41047001502,5733.0,True,True +41047001503,4673.0,True,True +41047001601,8229.0,True,True +41047001602,11319.0,True,True +41047001603,7417.0,False,False +41047001604,8480.0,True,True +41047001701,7019.0,True,True +41047001702,6206.0,True,False +41047001703,4723.0,False,False +41047001801,6886.0,True,True +41047001802,9133.0,False,False +41047001803,4860.0,False,False +41047002000,10594.0,False,False +41047002101,2062.0,False,False +41047002102,6110.0,False,False +41047002201,2253.0,False,False +41047002202,6850.0,False,False +41047002301,3553.0,False,False +41047002303,7847.0,False,False +41047002304,6894.0,False,False +41047002400,3834.0,False,False +41047002501,9851.0,False,False +41047002502,5569.0,True,False +41047002600,2079.0,False,False +41047002700,8949.0,False,False +41047002800,4339.0,False,False +41047010100,1525.0,False,False +41047010201,2721.0,False,False +41047010202,7956.0,False,False +41047010303,4615.0,False,False +41047010304,6717.0,True,True +41047010305,4701.0,True,True +41047010306,10233.0,True,True +41047010307,6008.0,False,False +41047010400,4974.0,False,False +41047010501,6396.0,False,False +41047010502,6168.0,False,False +41047010503,4422.0,False,False +41047010600,2289.0,False,False +41047010701,8201.0,False,False +41047010702,6905.0,False,False +41047010801,6288.0,False,False +41047010802,7338.0,False,False +41049970100,8377.0,True,True +41049970200,2926.0,True,True +41051000100,6650.0,False,False +41051000200,6389.0,False,False +41051000301,5777.0,False,False +41051000302,7578.0,False,False +41051000401,3778.0,False,False +41051000402,3635.0,False,False +41051000501,4327.0,False,False +41051000502,4924.0,False,False +41051000601,5850.0,False,False +41051000602,6079.0,True,True +41051000701,4744.0,False,False +41051000702,5632.0,False,False +41051000801,5061.0,False,False +41051000802,5039.0,False,False +41051000901,4795.0,False,False +41051000902,4881.0,False,False +41051001000,6139.0,False,False +41051001101,2705.0,True,True +41051001102,1474.0,False,False +41051001201,5385.0,False,False +41051001202,3534.0,False,False +41051001301,4191.0,False,False +41051001302,3600.0,False,False +41051001400,5866.0,False,False +41051001500,3648.0,False,False +41051001601,6427.0,False,False +41051001602,4545.0,True,True +41051001701,6818.0,False,False +41051001702,4348.0,False,False +41051001801,4650.0,False,False +41051001802,3845.0,False,False +41051001900,5182.0,False,False +41051002000,6426.0,False,False +41051002100,2990.0,False,False +41051002203,4243.0,False,False +41051002303,2731.0,False,False +41051002401,2756.0,False,False +41051002402,3378.0,False,False +41051002501,4688.0,False,False +41051002502,4774.0,False,False +41051002600,2793.0,False,False +41051002701,3279.0,False,False +41051002702,3393.0,False,False +41051002801,3017.0,False,False +41051002802,3379.0,False,False +41051002901,4581.0,False,False +41051002902,5926.0,False,False +41051002903,5521.0,False,False +41051003000,5118.0,False,False +41051003100,5216.0,False,False +41051003200,4399.0,False,False +41051003301,3429.0,False,False +41051003302,3487.0,False,False +41051003401,4150.0,False,False +41051003402,4179.0,False,False +41051003501,3610.0,False,False +41051003502,2641.0,False,False +41051003601,5017.0,False,False +41051003602,6884.0,False,False +41051003603,1663.0,False,False +41051003701,4558.0,False,False +41051003702,2643.0,False,False +41051003801,3166.0,False,False +41051003802,3344.0,False,False +41051003803,4463.0,False,False +41051003901,7643.0,False,False +41051003902,3683.0,False,False +41051004001,8151.0,True,True +41051004002,6590.0,False,False +41051004101,7852.0,False,True +41051004102,5518.0,False,False +41051004200,3962.0,False,False +41051004300,1028.0,False,False +41051004500,2635.0,False,False +41051004601,3253.0,False,False +41051004602,2205.0,False,False +41051004700,4577.0,False,False +41051004800,3007.0,False,False +41051004900,5007.0,False,False +41051005000,3626.0,False,False +41051005100,8816.0,True,True +41051005200,4429.0,False,False +41051005500,2869.0,False,False +41051005600,6296.0,False,False +41051005700,4107.0,False,False +41051005800,4801.0,False,False +41051005900,8885.0,False,False +41051006001,1511.0,False,False +41051006002,2331.0,False,False +41051006100,2611.0,False,False +41051006200,3194.0,False,False +41051006300,5585.0,False,False +41051006402,5658.0,False,False +41051006403,4248.0,False,False +41051006404,3768.0,False,False +41051006501,6190.0,False,False +41051006502,4621.0,False,False +41051006601,2538.0,False,False +41051006602,5981.0,False,False +41051006701,3341.0,False,False +41051006702,3574.0,False,False +41051006801,2462.0,False,False +41051006802,3644.0,False,False +41051006900,2726.0,False,False +41051007000,8262.0,False,False +41051007100,2567.0,False,False +41051007201,2378.0,False,False +41051007202,3094.0,False,False +41051007300,1249.0,True,True +41051007400,4166.0,True,True +41051007500,5357.0,False,False +41051007600,3233.0,False,True +41051007700,2033.0,False,False +41051007800,2283.0,False,False +41051007900,4200.0,False,False +41051008001,3239.0,False,False +41051008002,2965.0,False,False +41051008100,8159.0,True,True +41051008201,3047.0,False,False +41051008202,8848.0,True,True +41051008301,4266.0,True,True +41051008302,4977.0,True,True +41051008400,4546.0,True,True +41051008500,4741.0,False,False +41051008600,4287.0,True,True +41051008700,5047.0,False,False +41051008800,4145.0,False,False +41051008901,10754.0,False,False +41051008902,3836.0,False,False +41051009000,11175.0,True,True +41051009101,5785.0,True,True +41051009102,6926.0,False,False +41051009201,7868.0,False,True +41051009202,5351.0,True,True +41051009301,6831.0,True,True +41051009302,4647.0,True,True +41051009400,6758.0,False,False +41051009501,4575.0,False,False +41051009502,3683.0,False,False +41051009603,3723.0,True,True +41051009604,5295.0,True,True +41051009605,5400.0,True,True +41051009606,5735.0,True,True +41051009701,5819.0,True,True +41051009702,8442.0,True,True +41051009801,4328.0,True,True +41051009803,7999.0,True,True +41051009804,3097.0,False,False +41051009903,6609.0,False,False +41051009904,3755.0,False,False +41051009905,3315.0,False,False +41051009906,3766.0,False,False +41051009907,5764.0,False,False +41051010001,5947.0,True,True +41051010002,5463.0,False,False +41051010100,8711.0,False,False +41051010200,6148.0,False,False +41051010303,5666.0,False,False +41051010304,4296.0,True,True +41051010305,4076.0,False,False +41051010306,4980.0,False,False +41051010402,7350.0,False,False +41051010405,6108.0,True,True +41051010407,5484.0,False,False +41051010408,5948.0,True,True +41051010409,8273.0,False,False +41051010410,4765.0,True,True +41051010411,3492.0,True,True +41051010500,4069.0,False,False +41051010600,3244.0,True,True +41051980000,0.0,False,False +41053005100,2376.0,True,True +41053005201,9675.0,False,False +41053005202,9878.0,False,False +41053005300,10321.0,False,False +41053020202,6771.0,False,False +41053020203,3153.0,True,True +41053020204,5071.0,False,False +41053020302,10548.0,False,False +41053020303,4647.0,False,False +41053020304,7002.0,False,False +41053020400,6607.0,False,False +41053020500,6988.0,False,False +41055950100,1642.0,True,True +41057960100,3306.0,False,False +41057960200,2409.0,True,True +41057960300,2839.0,False,False +41057960400,8634.0,True,True +41057960500,1926.0,True,True +41057960600,2545.0,True,True +41057960700,2279.0,True,True +41057960800,2451.0,True,True +41057990100,0.0,False,False +41059940000,2836.0,True,True +41059950100,4609.0,True,True +41059950200,7583.0,True,True +41059950300,3089.0,False,False +41059950400,5951.0,False,False +41059950500,4543.0,False,False +41059950600,5426.0,True,True +41059950700,2574.0,True,True +41059950800,7862.0,True,True +41059950900,4977.0,True,True +41059951000,6165.0,True,True +41059951100,5520.0,True,False +41059951200,9426.0,True,False +41059951300,4231.0,False,False +41059951400,2337.0,False,False +41061970100,3154.0,False,False +41061970200,3418.0,False,False +41061970300,2369.0,False,False +41061970400,2720.0,False,False +41061970500,3340.0,False,False +41061970600,3963.0,False,False +41061970700,3589.0,True,True +41061970800,3784.0,True,True +41063960100,1928.0,False,False +41063960200,1898.0,True,True +41063960300,3178.0,True,True +41065970100,3828.0,False,False +41065970200,2886.0,False,False +41065970300,3039.0,False,False +41065970400,3335.0,True,True +41065970500,3822.0,True,True +41065970600,2943.0,True,True +41065970700,1912.0,False,False +41065970800,4365.0,False,False +41067030101,8518.0,False,False +41067030102,6971.0,False,False +41067030200,6643.0,False,False +41067030300,4589.0,False,False +41067030401,4330.0,False,False +41067030402,5222.0,False,False +41067030501,5258.0,False,False +41067030502,3706.0,False,False +41067030600,5451.0,False,False +41067030700,1139.0,True,True +41067030801,7198.0,False,False +41067030803,5385.0,False,False +41067030805,3722.0,False,False +41067030806,2827.0,False,False +41067030900,5570.0,False,False +41067031003,7733.0,False,False +41067031004,7617.0,False,False +41067031005,5888.0,False,False +41067031006,6519.0,False,False +41067031100,2992.0,True,True +41067031200,7554.0,False,False +41067031300,7214.0,True,True +41067031402,2975.0,True,True +41067031403,4876.0,False,False +41067031404,5892.0,False,False +41067031504,6682.0,False,False +41067031506,3824.0,False,False +41067031507,5885.0,False,False +41067031508,9400.0,False,False +41067031509,6982.0,False,False +41067031511,3211.0,False,False +41067031512,8484.0,False,False +41067031513,12886.0,False,False +41067031514,7215.0,False,False +41067031606,7010.0,False,False +41067031609,13674.0,False,False +41067031610,8376.0,False,False +41067031611,7354.0,False,False +41067031612,4106.0,False,False +41067031613,8117.0,False,False +41067031614,5502.0,False,False +41067031615,5000.0,False,False +41067031616,3763.0,False,False +41067031617,5274.0,False,False +41067031703,5282.0,False,False +41067031704,8876.0,False,False +41067031705,4992.0,True,False +41067031706,5718.0,False,True +41067031804,6822.0,False,False +41067031805,7492.0,False,False +41067031806,5970.0,False,False +41067031807,3726.0,False,False +41067031812,5831.0,False,False +41067031813,5879.0,False,False +41067031814,4393.0,False,False +41067031815,7067.0,False,False +41067031904,3142.0,False,False +41067031907,6382.0,False,False +41067031908,8582.0,False,False +41067031909,5374.0,False,False +41067031910,8890.0,False,False +41067031911,5605.0,False,False +41067031912,4811.0,False,False +41067032001,5181.0,False,False +41067032003,4658.0,True,True +41067032004,2050.0,False,False +41067032005,4780.0,True,True +41067032103,10381.0,False,False +41067032104,5034.0,False,False +41067032107,2085.0,False,False +41067032108,4177.0,False,False +41067032109,3251.0,False,False +41067032110,3818.0,False,False +41067032200,8128.0,False,False +41067032300,6280.0,False,False +41067032404,7337.0,False,False +41067032406,9135.0,False,False +41067032407,5701.0,False,False +41067032408,8439.0,False,False +41067032409,5366.0,True,True +41067032410,4160.0,False,False +41067032501,3393.0,True,True +41067032502,3245.0,False,False +41067032503,3895.0,False,False +41067032603,7800.0,False,False +41067032604,6470.0,False,False +41067032606,5770.0,False,False +41067032607,5004.0,False,False +41067032608,2397.0,False,False +41067032609,2513.0,False,False +41067032610,3163.0,False,False +41067032700,5870.0,False,False +41067032800,1246.0,False,False +41067032901,6590.0,False,False +41067032902,7767.0,True,False +41067033000,5981.0,False,False +41067033101,2971.0,True,False +41067033102,4044.0,False,False +41067033200,6968.0,False,False +41067033301,6019.0,False,False +41067033302,6083.0,False,False +41067033400,2292.0,False,False +41067033500,4311.0,False,False +41067033600,2360.0,False,False +41069960100,1415.0,True,True +41071030101,6327.0,False,False +41071030102,7791.0,False,False +41071030201,6978.0,False,False +41071030202,5917.0,True,False +41071030301,10306.0,False,False +41071030302,2102.0,False,False +41071030400,8607.0,False,False +41071030501,6426.0,False,False +41071030502,5126.0,True,True +41071030601,3636.0,True,True +41071030602,5884.0,False,False +41071030701,8303.0,False,False +41071030702,7530.0,True,False +41071030801,5809.0,True,True +41071030802,5171.0,False,False +41071030900,4745.0,False,False +41071031000,4173.0,False,False +42001030101,2689.0,False,False +42001030102,5851.0,False,False +42001030200,5506.0,False,False +42001030300,4221.0,False,False +42001030400,5688.0,False,False +42001030500,3832.0,False,False +42001030600,4954.0,False,False +42001030700,6661.0,False,False +42001030800,7418.0,False,False +42001030900,7587.0,False,False +42001031000,1873.0,False,False +42001031101,5133.0,False,False +42001031102,3258.0,False,False +42001031201,3728.0,False,False +42001031202,2728.0,False,False +42001031203,3181.0,False,False +42001031300,4495.0,False,False +42001031401,4233.0,False,False +42001031402,1988.0,False,False +42001031501,3458.0,False,False +42001031502,4231.0,False,False +42001031600,7209.0,False,False +42001031700,2548.0,False,False +42003010300,6652.0,False,True +42003020100,5490.0,False,False +42003020300,1212.0,False,False +42003030500,2109.0,True,True +42003040200,1576.0,False,False +42003040400,1871.0,False,False +42003040500,3255.0,False,False +42003040600,2212.0,False,True +42003040900,3577.0,False,False +42003050100,1745.0,True,True +42003050600,2145.0,False,False +42003050900,1348.0,True,True +42003051000,2130.0,False,True +42003051100,402.0,True,True +42003060300,2226.0,False,False +42003060500,1244.0,False,False +42003070300,2192.0,False,False +42003070500,3131.0,False,False +42003070600,2150.0,False,False +42003070800,2566.0,False,False +42003070900,4278.0,False,False +42003080200,1725.0,False,False +42003080400,1547.0,False,False +42003080600,2073.0,False,False +42003080700,1878.0,False,False +42003080900,1911.0,False,False +42003090100,1943.0,False,False +42003090200,2746.0,False,False +42003090300,1631.0,True,True +42003100500,1845.0,False,False +42003101100,2573.0,False,False +42003101400,3083.0,False,False +42003101600,1043.0,True,True +42003101700,1327.0,True,True +42003101800,2621.0,False,False +42003110200,3973.0,False,False +42003110600,2390.0,False,False +42003111300,3013.0,False,False +42003111400,1469.0,True,True +42003111500,2770.0,True,True +42003120300,2098.0,True,True +42003120400,721.0,True,True +42003120700,882.0,True,True +42003120800,836.0,True,True +42003130100,1702.0,True,True +42003130200,1422.0,True,True +42003130300,1230.0,True,True +42003130400,945.0,True,True +42003130600,2969.0,True,True +42003140100,5520.0,False,False +42003140200,2523.0,False,False +42003140300,3431.0,False,False +42003140400,2319.0,False,False +42003140500,1915.0,False,False +42003140600,3152.0,False,False +42003140800,4487.0,False,False +42003141000,953.0,False,False +42003141100,1300.0,False,False +42003141300,5126.0,False,False +42003141400,5143.0,False,False +42003151600,2576.0,False,False +42003151700,5477.0,False,False +42003160800,2570.0,False,False +42003160900,3011.0,False,False +42003170200,3725.0,False,False +42003170600,1718.0,False,False +42003180300,2073.0,True,True +42003180700,1991.0,True,True +42003190300,1804.0,False,False +42003191100,2438.0,False,False +42003191400,2484.0,False,False +42003191500,1922.0,False,False +42003191600,4180.0,False,False +42003191700,3416.0,False,False +42003191800,5141.0,False,False +42003191900,2059.0,False,False +42003192000,3575.0,False,False +42003202200,3102.0,True,True +42003202300,3806.0,False,False +42003210700,2223.0,False,False +42003220600,1805.0,False,False +42003240600,2326.0,False,False +42003241200,721.0,True,True +42003250300,1154.0,True,True +42003250700,601.0,True,True +42003250900,1026.0,True,True +42003260200,2080.0,False,False +42003260700,1514.0,False,False +42003260900,1698.0,True,True +42003261200,1019.0,False,False +42003261400,2205.0,True,True +42003261500,1744.0,True,True +42003262000,2559.0,True,True +42003270100,2779.0,False,False +42003270300,2223.0,True,False +42003270400,933.0,False,False +42003270800,2237.0,False,False +42003271500,3234.0,True,True +42003281400,2561.0,True,True +42003281500,1426.0,False,False +42003290100,2007.0,True,True +42003290200,4486.0,True,True +42003290400,4204.0,False,True +42003300100,3863.0,True,True +42003310200,3213.0,False,False +42003310300,997.0,False,False +42003320400,2045.0,False,False +42003320600,2185.0,False,False +42003320700,1617.0,True,True +42003401100,4713.0,False,False +42003401200,2883.0,True,True +42003401300,2745.0,False,False +42003402000,3175.0,True,True +42003403500,4413.0,True,True +42003404000,1449.0,False,False +42003405000,1123.0,False,False +42003406000,2329.0,False,False +42003407001,5554.0,False,False +42003407002,6383.0,False,False +42003408001,5540.0,False,False +42003408002,5908.0,False,False +42003409000,13118.0,False,False +42003410000,1225.0,False,False +42003411000,9053.0,False,False +42003412001,9464.0,False,False +42003412002,5125.0,False,False +42003413100,6391.0,False,False +42003413201,3699.0,False,False +42003413202,2760.0,False,False +42003413300,4286.0,False,False +42003413400,4526.0,False,False +42003413500,6809.0,False,False +42003414101,5120.0,False,False +42003414102,7351.0,False,False +42003414200,5811.0,False,False +42003415001,4516.0,False,False +42003415002,2673.0,False,False +42003416000,1574.0,False,False +42003417100,2041.0,False,False +42003417200,1285.0,False,False +42003418000,1697.0,False,False +42003419000,3032.0,False,False +42003420000,1606.0,True,True +42003421100,4615.0,False,False +42003421200,4277.0,False,False +42003422000,5121.0,False,False +42003423000,2724.0,False,False +42003424000,3358.0,True,True +42003425000,3350.0,False,False +42003426300,5970.0,False,False +42003426400,4061.0,False,False +42003426700,2301.0,False,False +42003426800,5453.0,False,False +42003427000,3706.0,True,True +42003427100,5446.0,False,False +42003427200,4799.0,False,False +42003428100,1194.0,False,False +42003428200,2072.0,False,False +42003429100,2618.0,False,False +42003429201,4496.0,False,False +42003429202,4415.0,False,False +42003429300,5740.0,False,False +42003429400,4053.0,False,False +42003429500,3823.0,False,False +42003429600,3363.0,False,False +42003429700,2095.0,False,False +42003430100,2115.0,False,False +42003430200,4486.0,False,False +42003431100,3068.0,False,False +42003431400,1854.0,False,False +42003431500,3224.0,False,False +42003432300,2229.0,False,False +42003432400,2355.0,False,False +42003434000,1904.0,False,False +42003435000,2503.0,False,False +42003437000,6565.0,False,False +42003439000,1463.0,False,False +42003445500,3829.0,False,False +42003446000,1586.0,False,False +42003447000,1602.0,False,False +42003448000,1189.0,False,False +42003449000,2589.0,False,False +42003450700,2973.0,False,False +42003450800,2515.0,True,True +42003451101,3659.0,False,False +42003451102,5497.0,False,False +42003451104,3858.0,False,False +42003451105,4920.0,False,False +42003451300,7555.0,False,False +42003452000,5750.0,False,False +42003453003,1920.0,False,False +42003453004,6708.0,False,False +42003455000,1505.0,False,False +42003456001,3960.0,False,False +42003456003,6895.0,False,False +42003456004,4759.0,False,False +42003457100,1484.0,False,False +42003457200,3484.0,False,False +42003458000,8106.0,False,False +42003459101,1746.0,False,False +42003459102,5992.0,False,False +42003459201,5965.0,False,False +42003459202,720.0,False,False +42003460001,4547.0,False,False +42003460002,3572.0,False,False +42003461000,993.0,False,False +42003462100,2842.0,True,True +42003462600,3355.0,True,True +42003463900,2657.0,True,True +42003464300,3237.0,False,False +42003464400,3262.0,True,True +42003465600,2670.0,False,False +42003465800,3168.0,False,False +42003468700,1524.0,False,False +42003468800,2681.0,True,True +42003468900,3678.0,False,False +42003469000,4885.0,False,False +42003470300,4026.0,False,False +42003470400,2793.0,False,False +42003470501,3858.0,False,False +42003470502,2975.0,False,False +42003470600,2973.0,False,False +42003471000,1271.0,False,False +42003472100,2219.0,False,False +42003472200,2323.0,False,False +42003472300,2003.0,False,False +42003472400,1828.0,False,False +42003473100,5024.0,False,False +42003473200,2892.0,False,False +42003473300,5437.0,False,False +42003473401,3574.0,False,False +42003473402,3417.0,False,False +42003473500,3691.0,False,False +42003473601,3731.0,False,False +42003473602,4537.0,False,False +42003474101,3742.0,False,False +42003474102,3732.0,False,False +42003474201,2535.0,False,False +42003474202,4966.0,False,False +42003474203,4762.0,False,False +42003475101,4682.0,False,False +42003475102,1581.0,False,False +42003475200,4972.0,False,False +42003475301,4686.0,False,False +42003475303,3968.0,False,False +42003475304,5442.0,False,False +42003475401,3931.0,False,False +42003475402,2915.0,False,False +42003476100,5134.0,False,False +42003476200,3079.0,False,False +42003477100,3343.0,False,False +42003477200,4064.0,False,False +42003477300,6110.0,False,False +42003478100,3985.0,False,False +42003478200,5401.0,False,False +42003479000,2050.0,False,False +42003480101,5431.0,True,True +42003480102,2878.0,False,False +42003480200,3529.0,False,False +42003480300,3428.0,False,False +42003480400,4486.0,False,False +42003481000,3324.0,True,True +42003482500,1782.0,False,False +42003483800,3170.0,True,True +42003484300,3104.0,True,True +42003484500,6012.0,False,False +42003484600,2005.0,True,True +42003485000,1148.0,True,True +42003486700,2362.0,True,True +42003486800,1588.0,True,True +42003486900,1593.0,True,True +42003487000,1730.0,True,True +42003488100,2097.0,False,False +42003488200,3503.0,True,True +42003488300,2046.0,False,False +42003488400,4616.0,True,True +42003488500,2817.0,False,False +42003488600,4755.0,False,False +42003489001,4633.0,False,False +42003489002,3480.0,False,False +42003490002,4827.0,False,False +42003490003,3714.0,False,False +42003490004,4854.0,False,False +42003491101,6964.0,False,False +42003491200,1898.0,False,False +42003492700,2289.0,True,True +42003492800,2221.0,True,True +42003492900,2109.0,True,True +42003494000,1439.0,True,True +42003495000,3303.0,False,False +42003496101,3003.0,False,False +42003496102,4310.0,False,False +42003496200,5754.0,False,False +42003497000,1008.0,False,False +42003498000,2363.0,False,False +42003499300,1746.0,False,False +42003499400,2625.0,True,True +42003500300,3697.0,False,False +42003501000,1621.0,True,False +42003503002,5898.0,False,False +42003504100,4758.0,True,False +42003507000,1955.0,False,False +42003508000,1860.0,True,True +42003509400,5197.0,True,True +42003510000,1576.0,True,True +42003512000,2383.0,True,True +42003512800,1340.0,True,True +42003512900,1018.0,True,True +42003513800,1869.0,True,True +42003514000,2068.0,True,True +42003515100,2769.0,True,True +42003515200,2159.0,False,False +42003515300,1620.0,True,True +42003515401,2212.0,False,False +42003516100,1372.0,False,False +42003516200,1668.0,False,False +42003517000,1653.0,True,True +42003518001,3056.0,False,False +42003519000,2957.0,False,False +42003520001,3168.0,False,False +42003520002,3036.0,False,False +42003521100,4256.0,False,False +42003521200,4159.0,False,False +42003521301,4123.0,False,False +42003521302,4461.0,False,False +42003521401,3007.0,False,False +42003521402,3666.0,False,False +42003521500,4078.0,False,False +42003522000,3195.0,True,True +42003523100,3697.0,False,False +42003523200,4195.0,True,True +42003523300,3932.0,False,False +42003523400,4794.0,False,False +42003523501,4287.0,False,False +42003523502,1491.0,False,False +42003523600,4724.0,False,False +42003523701,4065.0,False,False +42003523702,5462.0,False,False +42003523800,4670.0,False,False +42003524000,2767.0,False,False +42003525100,1865.0,False,False +42003525200,2269.0,False,False +42003525300,2346.0,False,False +42003526101,7400.0,False,False +42003526102,2115.0,False,False +42003526201,3865.0,False,False +42003526202,4731.0,False,False +42003526301,4014.0,False,False +42003526302,5070.0,False,False +42003550900,1866.0,True,True +42003551200,3381.0,True,True +42003551300,2622.0,False,False +42003551900,1474.0,True,True +42003552000,2428.0,True,True +42003552100,1500.0,True,True +42003552200,870.0,True,True +42003552300,1701.0,True,True +42003552400,3383.0,True,True +42003560400,1691.0,True,True +42003560500,2406.0,False,False +42003560600,837.0,True,True +42003561000,1321.0,True,True +42003561100,994.0,True,True +42003561200,1487.0,True,True +42003561400,4053.0,True,True +42003561500,2696.0,False,False +42003561600,2090.0,True,True +42003561700,802.0,True,True +42003561900,2467.0,True,True +42003562000,2858.0,False,False +42003562300,2914.0,True,True +42003562400,2723.0,True,True +42003562500,2417.0,True,True +42003562600,2520.0,True,True +42003562700,1877.0,False,False +42003562800,1528.0,True,False +42003562900,1813.0,True,True +42003563000,2918.0,False,False +42003563100,3524.0,False,False +42003563200,2088.0,True,True +42003563300,1432.0,False,False +42003563800,3853.0,False,False +42003563900,4004.0,False,False +42003564000,6590.0,False,False +42003564100,883.0,False,False +42003564200,2091.0,False,False +42003564400,5874.0,False,False +42003564500,2862.0,False,False +42003980000,0.0,False,False +42003980100,0.0,False,False +42003980300,0.0,False,False +42003980400,0.0,False,False +42003980500,16.0,True,True +42003980600,13.0,False,False +42003980700,0.0,False,False +42003980800,0.0,False,False +42003980900,1313.0,True,True +42003981000,0.0,False,False +42003981100,0.0,False,False +42003981200,0.0,False,False +42003981800,207.0,False,False +42003982200,4618.0,False,True +42005950100,4677.0,True,True +42005950200,2048.0,False,False +42005950300,3314.0,False,False +42005950400,2407.0,False,False +42005950500,5401.0,False,False +42005950600,3057.0,False,False +42005950700,3824.0,True,True +42005950800,3792.0,False,False +42005950900,4973.0,False,False +42005951000,2807.0,True,True +42005951100,3789.0,True,True +42005951200,5800.0,False,False +42005951300,2522.0,False,False +42005951400,2611.0,True,True +42005951500,2709.0,True,False +42005951600,4564.0,False,False +42005951700,3686.0,False,False +42005951800,2095.0,True,True +42005951900,1791.0,True,True +42007600601,2133.0,False,False +42007600602,2687.0,False,False +42007600700,7644.0,False,False +42007601000,3414.0,False,False +42007601100,2903.0,False,False +42007601200,2611.0,True,True +42007601300,2950.0,True,True +42007601400,3457.0,True,True +42007601600,1228.0,False,False +42007601700,3273.0,False,False +42007601800,7276.0,False,False +42007602100,3502.0,True,True +42007602300,2400.0,False,False +42007602400,1934.0,False,False +42007602500,1309.0,False,False +42007602601,4897.0,False,False +42007602602,3390.0,False,False +42007602701,1698.0,False,False +42007602702,3450.0,False,False +42007602800,2918.0,True,True +42007602900,2668.0,False,False +42007603000,2950.0,False,False +42007603202,6869.0,False,False +42007603300,3789.0,False,False +42007603400,1732.0,False,False +42007603500,1532.0,True,True +42007603600,2114.0,False,False +42007603700,3948.0,False,False +42007603801,2944.0,False,False +42007603802,3093.0,False,False +42007603803,3145.0,False,False +42007603900,3049.0,False,False +42007604000,2392.0,True,True +42007604100,2787.0,True,True +42007604200,1528.0,False,False +42007604500,2332.0,True,True +42007604600,2686.0,True,True +42007604700,1316.0,True,False +42007604800,4315.0,False,False +42007604901,4172.0,False,False +42007604902,4379.0,False,False +42007605001,2434.0,False,False +42007605002,3812.0,False,False +42007605100,4681.0,False,False +42007605200,2520.0,True,False +42007605300,2908.0,False,False +42007605400,3434.0,True,True +42007605500,5134.0,False,False +42007605600,3156.0,False,False +42007605700,2670.0,True,True +42007605800,6270.0,False,False +42009960100,3567.0,True,True +42009960200,3605.0,False,False +42009960300,4772.0,True,True +42009960400,5254.0,True,True +42009960500,3462.0,True,True +42009960600,4951.0,True,False +42009960700,2718.0,False,False +42009960800,5171.0,False,False +42009960900,4822.0,False,False +42009961000,5835.0,False,False +42009961100,4180.0,False,False +42011000100,4829.0,True,True +42011000200,4054.0,True,True +42011000300,2384.0,True,True +42011000400,3716.0,True,True +42011000500,4161.0,True,True +42011000600,3453.0,False,False +42011000700,4538.0,True,True +42011000800,4492.0,True,True +42011000900,2524.0,True,True +42011001000,2987.0,True,True +42011001100,3986.0,True,True +42011001200,1732.0,True,True +42011001300,3331.0,True,True +42011001400,3765.0,True,True +42011001500,3543.0,True,True +42011001600,3112.0,True,True +42011001700,3252.0,True,True +42011001800,2585.0,True,True +42011001900,2187.0,True,True +42011002000,4285.0,True,True +42011002100,2607.0,True,True +42011002200,2171.0,True,True +42011002300,2622.0,True,True +42011002500,3132.0,True,True +42011002600,3370.0,True,True +42011002700,2003.0,True,True +42011002900,3411.0,False,False +42011010100,6036.0,False,False +42011010201,4406.0,False,False +42011010202,5137.0,False,False +42011010302,2918.0,False,False +42011010303,2144.0,False,False +42011010304,6801.0,False,False +42011010400,8491.0,False,False +42011010500,6533.0,False,False +42011010600,8758.0,False,False +42011010700,7461.0,False,False +42011010801,1887.0,False,False +42011010802,9301.0,False,False +42011010902,4101.0,False,False +42011010903,6419.0,False,False +42011010904,3827.0,False,False +42011010905,4659.0,False,False +42011011000,4353.0,False,False +42011011101,2117.0,False,False +42011011102,5570.0,False,False +42011011200,4268.0,False,False +42011011300,2803.0,False,False +42011011400,5300.0,False,False +42011011500,3015.0,False,False +42011011601,5127.0,False,False +42011011602,4211.0,False,False +42011011603,6076.0,False,False +42011011701,7379.0,False,False +42011011702,4689.0,False,False +42011011703,4218.0,False,False +42011011800,5131.0,False,False +42011011902,3664.0,False,False +42011011903,5040.0,False,False +42011011904,7967.0,False,False +42011012001,2375.0,False,False +42011012002,9498.0,False,False +42011012101,2022.0,False,False +42011012103,2374.0,False,False +42011012104,3048.0,False,False +42011012105,8394.0,False,False +42011012200,3217.0,False,False +42011012300,4551.0,False,False +42011012400,7023.0,False,False +42011012500,2117.0,False,False +42011012600,2323.0,False,True +42011012700,8760.0,False,False +42011012800,3900.0,False,False +42011012900,7703.0,False,False +42011013000,6854.0,False,False +42011013100,5139.0,False,False +42011013200,4064.0,True,True +42011013301,2984.0,False,False +42011013302,6525.0,False,False +42011013401,7974.0,False,False +42011013402,2986.0,False,False +42011013500,12039.0,False,False +42011013600,4095.0,False,False +42011013701,3561.0,False,False +42011013702,3821.0,False,False +42011013800,4356.0,False,False +42011013900,7979.0,False,False +42011014000,5040.0,False,False +42011014100,7789.0,False,False +42011014200,7475.0,False,False +42013010101,4347.0,True,True +42013010102,2909.0,True,True +42013010103,2308.0,False,False +42013010401,1618.0,False,False +42013010402,6262.0,False,False +42013010500,4559.0,False,False +42013010600,2267.0,False,False +42013010700,6382.0,False,False +42013010800,3582.0,True,True +42013010900,7340.0,False,False +42013011001,3661.0,False,False +42013011002,3971.0,True,True +42013011100,5890.0,False,False +42013011200,5701.0,False,False +42013011300,5736.0,False,False +42013011400,2531.0,False,False +42013011500,5825.0,False,False +42013011600,4009.0,True,True +42013100200,2271.0,False,False +42013100300,3210.0,True,True +42013100400,1430.0,True,True +42013100500,3414.0,True,True +42013100600,2286.0,False,False +42013100700,2420.0,True,True +42013100800,1827.0,False,False +42013100900,3876.0,False,False +42013101100,1538.0,False,False +42013101200,3906.0,True,False +42013101400,3578.0,True,True +42013101500,3448.0,False,False +42013101600,3189.0,True,True +42013101700,3717.0,True,True +42013101800,2621.0,True,False +42013101900,1528.0,True,True +42015950100,4016.0,False,False +42015950200,5090.0,True,True +42015950300,5450.0,True,False +42015950400,3225.0,False,False +42015950500,6127.0,False,False +42015950600,4180.0,False,False +42015950700,4453.0,False,False +42015950800,3709.0,False,False +42015950900,5586.0,False,False +42015951000,2842.0,True,False +42015951100,2941.0,False,False +42015951200,5272.0,False,False +42015951300,4215.0,False,False +42015951400,3857.0,True,True +42017100102,2809.0,False,False +42017100103,2421.0,False,False +42017100104,4730.0,False,True +42017100105,3215.0,False,False +42017100201,4719.0,False,False +42017100206,5252.0,False,False +42017100207,4209.0,False,True +42017100208,5640.0,False,False +42017100209,9528.0,False,False +42017100210,7261.0,False,False +42017100211,6987.0,False,False +42017100212,3657.0,False,False +42017100302,5082.0,False,False +42017100303,4910.0,False,False +42017100304,2332.0,True,True +42017100306,3494.0,False,False +42017100307,5013.0,False,False +42017100401,6317.0,False,False +42017100402,6496.0,False,False +42017100403,2290.0,False,False +42017100404,6663.0,False,False +42017100406,3513.0,False,False +42017100407,1111.0,False,False +42017100408,6428.0,False,False +42017100500,2295.0,False,False +42017100600,3985.0,False,False +42017100700,3325.0,True,True +42017100803,4506.0,False,False +42017100804,3741.0,False,False +42017100805,6587.0,False,False +42017100807,4341.0,False,False +42017100808,5005.0,False,False +42017100809,5589.0,False,False +42017100811,4637.0,False,False +42017100900,7635.0,False,False +42017101100,2885.0,False,False +42017101401,4874.0,False,False +42017101403,5355.0,False,False +42017101404,2316.0,False,False +42017101405,6601.0,False,False +42017101503,3737.0,False,False +42017101504,2602.0,False,False +42017101505,3391.0,False,False +42017101506,5288.0,False,False +42017101603,3575.0,False,False +42017101605,4203.0,False,True +42017101607,3553.0,False,False +42017101609,4214.0,False,False +42017101610,4934.0,False,False +42017101611,6485.0,False,False +42017101802,6390.0,False,False +42017101803,9081.0,False,False +42017101805,2172.0,False,False +42017101807,4113.0,False,False +42017101808,2500.0,False,False +42017101900,4143.0,False,False +42017102002,2658.0,False,False +42017102003,4278.0,False,False +42017102004,4400.0,False,False +42017102102,2970.0,False,False +42017102104,5859.0,False,False +42017102300,5737.0,False,False +42017102401,3834.0,False,False +42017102402,4716.0,False,False +42017102500,4270.0,False,False +42017102600,2141.0,False,False +42017102700,5232.0,False,False +42017102801,3522.0,False,False +42017103101,2110.0,False,False +42017103102,2065.0,False,False +42017103103,4652.0,True,True +42017103300,2100.0,False,False +42017103400,5040.0,False,False +42017103700,3388.0,False,False +42017103800,1127.0,False,False +42017103900,3954.0,False,False +42017104000,7128.0,False,False +42017104100,2178.0,False,False +42017104201,3016.0,False,False +42017104203,5775.0,False,False +42017104204,5189.0,False,False +42017104301,2644.0,False,False +42017104303,4705.0,False,False +42017104304,1228.0,False,False +42017104400,2513.0,False,False +42017104502,7976.0,False,False +42017104503,4193.0,False,False +42017104505,5658.0,False,False +42017104506,2421.0,False,False +42017104601,4515.0,False,False +42017104603,7145.0,False,False +42017104604,5771.0,False,False +42017104701,3355.0,False,False +42017104702,2585.0,False,False +42017104703,2346.0,False,False +42017104800,2966.0,False,False +42017104901,7217.0,False,False +42017104902,7395.0,False,False +42017105003,4857.0,False,False +42017105004,5771.0,False,False +42017105006,5548.0,False,False +42017105008,3720.0,False,False +42017105009,3534.0,False,False +42017105010,3829.0,False,False +42017105011,3311.0,False,False +42017105012,2856.0,False,False +42017105013,5837.0,False,False +42017105100,3099.0,False,False +42017105202,4895.0,False,False +42017105203,2100.0,False,False +42017105206,5355.0,False,False +42017105207,4989.0,False,False +42017105208,2271.0,False,False +42017105300,1957.0,False,False +42017105400,8417.0,False,False +42017105505,4039.0,False,False +42017105506,4154.0,False,False +42017105507,6822.0,False,False +42017105508,3477.0,False,False +42017105509,4363.0,False,False +42017105510,5585.0,False,False +42017105511,4222.0,False,False +42017105600,2480.0,False,False +42017105702,3040.0,False,False +42017105704,6708.0,False,False +42017105801,5842.0,False,False +42017105805,5666.0,False,False +42017105807,3819.0,False,False +42017105808,3425.0,False,False +42017105809,4113.0,False,False +42017105810,2206.0,False,False +42017105811,5705.0,False,False +42017105812,1591.0,False,False +42017105900,2169.0,False,False +42017106000,4008.0,False,False +42017106100,3245.0,False,False +42017106200,6476.0,False,False +42017106300,7254.0,False,False +42017106401,7694.0,False,False +42017106402,7503.0,False,False +42017106500,6830.0,False,False +42017106600,1917.0,False,False +42017980000,0.0,False,False +42019902100,2132.0,False,False +42019902200,2022.0,True,True +42019902300,3512.0,True,True +42019902400,2099.0,True,True +42019902500,3327.0,True,True +42019902600,3010.0,False,False +42019902700,2082.0,False,False +42019902800,2578.0,False,False +42019902900,1877.0,False,False +42019903000,4583.0,False,False +42019903100,2480.0,False,False +42019910100,4250.0,False,False +42019910200,4826.0,False,False +42019910301,4968.0,False,False +42019910302,4417.0,False,False +42019910400,3552.0,False,False +42019910500,2284.0,False,False +42019910600,4118.0,False,False +42019910700,2882.0,False,False +42019910800,2606.0,False,False +42019910900,5068.0,False,False +42019911000,6334.0,False,False +42019911100,4502.0,False,False +42019911200,5468.0,False,False +42019911300,5311.0,False,False +42019911400,3438.0,False,False +42019911501,5307.0,False,False +42019911502,4411.0,False,False +42019911600,4916.0,False,False +42019911700,4718.0,False,False +42019911800,6589.0,False,False +42019911900,4751.0,False,False +42019912001,5044.0,False,False +42019912002,5819.0,False,False +42019912101,4222.0,False,False +42019912102,2695.0,False,False +42019912200,3385.0,False,False +42019912301,6133.0,False,False +42019912303,2766.0,False,False +42019912304,3577.0,False,False +42019912401,8914.0,False,False +42019912402,6981.0,False,False +42019912700,7308.0,False,False +42019912800,5637.0,False,False +42021000100,1122.0,True,True +42021000200,593.0,True,True +42021000300,1626.0,True,True +42021000500,1780.0,True,True +42021000600,1805.0,True,True +42021000700,2803.0,True,True +42021001200,3056.0,True,True +42021010100,4017.0,False,False +42021010200,1129.0,True,True +42021010300,2429.0,False,False +42021010500,3274.0,False,False +42021010600,2390.0,False,False +42021010700,2819.0,False,False +42021010801,5145.0,False,False +42021011000,1565.0,True,True +42021011100,5143.0,False,False +42021011200,2117.0,False,False +42021011300,4797.0,False,False +42021011400,3186.0,True,True +42021011500,4090.0,False,False +42021011600,2432.0,True,True +42021011700,2298.0,True,True +42021011800,3717.0,False,False +42021011900,3588.0,True,True +42021012000,5640.0,False,False +42021012100,2271.0,True,True +42021012200,3530.0,False,False +42021012300,4376.0,False,False +42021012400,3485.0,False,False +42021012500,5807.0,False,False +42021012600,3122.0,False,False +42021012700,2576.0,False,False +42021012800,5003.0,False,False +42021012900,3424.0,False,False +42021013000,2439.0,False,False +42021013100,2406.0,False,False +42021013200,3808.0,True,True +42021013300,5640.0,False,False +42021013400,2483.0,True,True +42021013500,2216.0,True,True +42021013600,3173.0,True,True +42021013700,4689.0,False,False +42023960100,2056.0,True,True +42023960200,2555.0,False,False +42025020102,4641.0,False,False +42025020103,4175.0,False,False +42025020105,5451.0,False,False +42025020106,1595.0,True,True +42025020200,6764.0,False,False +42025020300,6182.0,False,False +42025020400,3796.0,True,True +42025020500,7035.0,False,False +42025020600,5304.0,True,True +42025020700,5119.0,False,False +42025020800,8512.0,False,False +42025020900,5313.0,False,False +42027010100,4239.0,False,False +42027010200,3018.0,False,False +42027010300,3223.0,True,False +42027010400,3514.0,False,False +42027010500,5106.0,False,False +42027010600,3894.0,False,False +42027010700,6246.0,False,False +42027010800,5873.0,True,True +42027010900,7307.0,False,False +42027011000,7838.0,False,False +42027011100,6282.0,False,False +42027011201,5125.0,False,False +42027011300,8287.0,False,False +42027011400,7541.0,False,False +42027011501,3139.0,False,False +42027011502,8601.0,False,False +42027011600,4761.0,False,False +42027011702,5341.0,False,False +42027011800,5770.0,False,False +42027011901,2782.0,False,False +42027011902,7650.0,False,False +42027012000,5788.0,False,False +42027012100,6180.0,False,True +42027012200,5204.0,False,False +42027012300,2172.0,False,False +42027012400,5003.0,False,False +42027012500,4380.0,False,False +42027012600,3939.0,False,False +42027012700,3558.0,False,False +42027012800,6051.0,False,False +42027981202,4148.0,False,False +42029300101,2980.0,False,False +42029300103,2530.0,False,False +42029300104,5040.0,False,False +42029300106,4800.0,False,False +42029300107,4433.0,False,False +42029300108,6282.0,False,False +42029300109,3396.0,False,False +42029300201,5400.0,False,False +42029300202,5218.0,False,False +42029300301,4060.0,False,False +42029300302,3766.0,False,False +42029300303,3121.0,False,False +42029300400,3447.0,False,False +42029300501,4852.0,False,False +42029300502,3571.0,False,False +42029300600,5400.0,False,False +42029300700,4993.0,True,True +42029300800,4276.0,False,False +42029300900,2414.0,False,False +42029301000,7365.0,False,False +42029301100,3307.0,False,False +42029301300,6759.0,False,False +42029301401,2872.0,False,False +42029301402,5116.0,False,False +42029301500,2632.0,False,False +42029301600,2545.0,False,False +42029301700,1662.0,False,False +42029301800,5429.0,False,False +42029301900,4075.0,False,False +42029302000,5941.0,False,False +42029302101,7320.0,False,False +42029302102,4521.0,False,False +42029302202,7417.0,False,False +42029302203,5036.0,False,False +42029302204,6197.0,False,False +42029302300,3080.0,False,False +42029302400,4559.0,False,False +42029302500,4298.0,False,False +42029302600,4968.0,False,False +42029302702,4755.0,False,False +42029302703,4429.0,False,False +42029302704,5112.0,False,False +42029302705,3903.0,False,False +42029302706,4802.0,False,False +42029302802,4991.0,False,False +42029302803,2031.0,False,False +42029302804,3951.0,False,False +42029302805,7231.0,False,False +42029302901,4558.0,False,False +42029302902,6366.0,False,False +42029303000,3139.0,False,False +42029303100,4204.0,False,False +42029303301,3389.0,False,False +42029303302,4837.0,False,False +42029303401,4063.0,False,False +42029303402,2127.0,False,False +42029303501,4428.0,False,False +42029303502,2960.0,False,False +42029303801,4310.0,False,False +42029303802,8705.0,False,False +42029303901,4653.0,False,False +42029303902,5283.0,False,False +42029304000,4854.0,False,False +42029304101,4292.0,False,False +42029304102,3634.0,False,False +42029304201,7046.0,False,False +42029304300,8601.0,False,False +42029304403,3979.0,False,False +42029304404,5014.0,False,False +42029304405,6394.0,False,False +42029304406,3547.0,False,False +42029304501,8566.0,False,False +42029304502,2994.0,False,False +42029304600,3676.0,False,False +42029304900,8240.0,False,False +42029305000,1980.0,False,False +42029305101,4474.0,False,False +42029305102,4629.0,False,False +42029305300,7718.0,False,False +42029305400,4271.0,True,True +42029305500,3789.0,True,True +42029305600,2725.0,True,True +42029305700,2351.0,True,True +42029306000,7560.0,False,False +42029306300,2845.0,False,False +42029306501,4299.0,False,False +42029306503,3075.0,False,True +42029306504,4779.0,False,False +42029306600,3238.0,False,False +42029306700,4514.0,False,False +42029306800,1761.0,False,False +42029306900,5946.0,False,False +42029307000,5501.0,False,False +42029307100,2475.0,False,False +42029307200,1313.0,False,False +42029307300,3983.0,False,False +42029307400,3842.0,False,False +42029307700,2590.0,False,False +42029307800,2519.0,False,False +42029307900,5064.0,False,False +42029308000,5515.0,True,True +42029308101,4610.0,False,False +42029308102,4365.0,False,False +42029308200,2723.0,False,False +42029310400,3129.0,False,False +42029311000,7162.0,False,False +42029311100,3640.0,False,False +42029311200,2089.0,False,False +42029311300,4842.0,False,False +42029311401,7176.0,False,False +42029311403,3726.0,False,False +42029311404,3744.0,False,False +42029311500,3370.0,False,False +42029311600,2272.0,True,True +42029311700,10102.0,False,False +42029311800,3712.0,False,False +42031160101,1790.0,False,False +42031160102,4951.0,False,False +42031160200,3601.0,True,True +42031160300,4664.0,False,False +42031160400,3635.0,True,True +42031160500,3379.0,True,True +42031160600,5580.0,False,False +42031160700,4059.0,True,True +42031160800,3444.0,False,False +42031160900,3612.0,True,True +42033330100,4938.0,False,False +42033330200,3307.0,False,False +42033330300,4155.0,True,False +42033330400,5673.0,False,False +42033330500,4603.0,True,True +42033330600,3114.0,False,False +42033330700,2131.0,False,False +42033330800,6940.0,False,False +42033330900,6572.0,True,True +42033331000,5169.0,True,True +42033331100,3051.0,True,True +42033331200,2870.0,True,True +42033331300,4448.0,True,True +42033331401,3406.0,True,True +42033331402,3411.0,True,True +42033331500,1958.0,True,True +42033331600,2309.0,True,True +42033331700,6802.0,False,False +42033331800,2847.0,True,True +42033331900,2204.0,True,True +42035030100,3149.0,True,True +42035030200,5454.0,False,False +42035030300,4093.0,False,False +42035030400,4707.0,False,False +42035030500,4130.0,False,False +42035030600,2353.0,True,True +42035030700,6894.0,False,False +42035030800,4004.0,False,False +42035030900,4131.0,True,True +42037050100,5282.0,False,False +42037050200,5523.0,False,False +42037050300,4986.0,False,False +42037050400,3897.0,False,False +42037050500,3865.0,False,False +42037050600,5392.0,True,False +42037050700,4681.0,True,True +42037050800,3577.0,False,False +42037050900,3240.0,False,False +42037051000,2673.0,False,False +42037051100,7208.0,False,False +42037051200,4204.0,False,True +42037051300,3119.0,False,False +42037051400,2362.0,False,False +42037051500,5706.0,False,False +42039110100,6246.0,True,True +42039110201,3855.0,False,False +42039110202,4555.0,True,True +42039110300,4261.0,True,True +42039110400,2775.0,True,True +42039110501,2005.0,False,False +42039110502,3697.0,False,False +42039110600,2852.0,False,False +42039110700,4013.0,False,False +42039110800,4641.0,False,False +42039110900,3039.0,True,True +42039111000,2652.0,True,False +42039111100,2824.0,True,True +42039111200,2440.0,True,True +42039111300,5469.0,False,False +42039111400,4658.0,False,False +42039111500,5144.0,True,False +42039111600,3469.0,True,True +42039111700,4662.0,False,False +42039111800,5423.0,False,False +42039111900,3358.0,True,True +42039112001,2343.0,False,False +42039112002,1284.0,False,False +42041010100,5584.0,False,False +42041010201,5279.0,False,False +42041010203,4102.0,False,False +42041010204,5264.0,False,False +42041010300,4265.0,False,False +42041010400,3674.0,False,False +42041010500,4237.0,False,False +42041010600,4638.0,False,False +42041010700,3638.0,False,False +42041010800,3671.0,False,False +42041010900,4506.0,False,False +42041011002,2334.0,False,False +42041011101,4242.0,False,False +42041011102,4312.0,False,False +42041011200,1556.0,False,False +42041011301,4939.0,False,False +42041011302,7837.0,False,False +42041011303,6506.0,False,False +42041011304,5605.0,False,False +42041011305,5079.0,False,False +42041011400,4212.0,False,False +42041011500,4794.0,False,False +42041011601,8588.0,False,False +42041011602,4003.0,False,False +42041011605,5096.0,False,False +42041011700,6119.0,False,False +42041011801,8789.0,False,False +42041011802,8549.0,False,False +42041011803,7335.0,False,False +42041011901,5141.0,False,False +42041011902,6453.0,False,False +42041012000,4494.0,False,False +42041012100,2174.0,True,True +42041012200,2478.0,False,False +42041012300,2466.0,False,False +42041012400,7541.0,False,False +42041012501,4381.0,False,False +42041012502,7299.0,False,False +42041012600,5705.0,False,False +42041012701,5362.0,False,False +42041012702,4535.0,False,False +42041012800,8111.0,False,False +42041012900,1266.0,True,True +42041013000,6916.0,False,False +42041013101,10151.0,False,False +42041013102,5428.0,False,True +42041013200,4492.0,False,False +42041981001,4024.0,False,False +42041981606,2158.0,False,False +42043020100,3232.0,False,False +42043020300,1875.0,True,True +42043020400,1652.0,False,False +42043020500,2828.0,False,False +42043020600,1122.0,True,True +42043020700,2794.0,True,True +42043020800,2590.0,True,True +42043020900,3788.0,False,False +42043021100,2955.0,True,True +42043021200,2558.0,True,True +42043021300,5874.0,True,True +42043021400,4975.0,True,True +42043021500,3895.0,True,True +42043021600,3096.0,True,True +42043021700,5975.0,True,True +42043021800,2107.0,False,False +42043021901,4634.0,False,False +42043021903,3577.0,False,False +42043021904,5348.0,False,False +42043022000,5326.0,False,False +42043022100,3962.0,False,False +42043022200,2984.0,True,True +42043022300,5436.0,True,True +42043022401,4080.0,False,False +42043022403,6591.0,False,False +42043022501,5773.0,False,False +42043022502,5352.0,False,False +42043022601,7237.0,False,False +42043022604,6667.0,False,False +42043022605,4800.0,False,False +42043022606,3129.0,False,False +42043022701,4009.0,False,False +42043022702,4985.0,False,False +42043022800,5530.0,False,False +42043022900,8546.0,False,False +42043023000,1722.0,False,False +42043023100,1726.0,False,False +42043023300,4537.0,True,True +42043023400,1416.0,True,True +42043023500,2492.0,True,True +42043023601,2921.0,False,False +42043023602,5916.0,False,False +42043023700,1664.0,True,True +42043023800,4496.0,False,False +42043023900,3155.0,False,False +42043024001,6449.0,False,False +42043024002,3078.0,False,False +42043024101,2057.0,False,False +42043024102,5329.0,False,False +42043024104,6234.0,False,False +42043024105,5411.0,False,False +42043024200,2546.0,False,False +42043024300,3466.0,False,False +42043024400,4738.0,False,False +42043024502,5935.0,False,False +42043024503,6797.0,False,False +42043024600,10352.0,False,False +42043024700,6161.0,False,False +42043024800,8151.0,False,False +42043024900,2237.0,True,True +42043025000,2865.0,True,True +42043025100,3914.0,False,False +42043025200,3807.0,False,False +42043025300,4259.0,False,False +42043025400,2519.0,False,False +42045400301,6320.0,True,True +42045400302,3755.0,True,True +42045400401,5420.0,True,True +42045400402,4791.0,True,True +42045400500,4106.0,True,True +42045400600,5110.0,False,False +42045400700,5875.0,True,True +42045400801,2270.0,True,False +42045400802,3472.0,False,False +42045400900,1497.0,False,False +42045401000,1864.0,False,False +42045401101,2895.0,False,False +42045401103,3641.0,False,False +42045401104,4090.0,False,False +42045401200,3329.0,False,False +42045401301,2587.0,False,False +42045401302,2650.0,False,False +42045401401,2089.0,False,False +42045401402,3656.0,False,False +42045401501,3449.0,False,False +42045401502,4169.0,False,False +42045401600,1789.0,False,False +42045401700,2674.0,False,False +42045401800,4183.0,False,False +42045401900,4214.0,False,False +42045402000,2241.0,False,False +42045402100,5843.0,False,False +42045402200,2360.0,False,False +42045402300,3282.0,False,False +42045402400,3017.0,True,True +42045402500,3734.0,False,False +42045402600,3944.0,True,True +42045402700,2546.0,True,True +42045402800,5684.0,False,False +42045402900,3539.0,True,True +42045403001,3071.0,False,False +42045403002,2662.0,False,False +42045403101,3621.0,False,False +42045403103,2682.0,False,False +42045403104,2488.0,False,False +42045403200,4153.0,False,False +42045403300,6696.0,False,False +42045403401,3022.0,False,False +42045403402,3605.0,True,True +42045403501,4238.0,False,False +42045403502,2923.0,False,False +42045403601,4107.0,False,False +42045403602,1786.0,False,False +42045403701,1548.0,False,False +42045403702,2561.0,True,True +42045403800,6483.0,False,False +42045403901,3430.0,False,False +42045403902,3618.0,False,False +42045404003,2280.0,False,False +42045404004,6190.0,False,False +42045404101,6370.0,False,False +42045404102,5262.0,False,False +42045404103,3668.0,False,False +42045404300,2530.0,True,True +42045404400,1723.0,False,False +42045404500,5573.0,True,True +42045404600,1969.0,False,False +42045404700,3949.0,False,True +42045404800,2045.0,True,True +42045404900,1219.0,True,True +42045405000,1786.0,True,True +42045405100,2055.0,True,True +42045405200,2828.0,True,True +42045405300,2979.0,True,True +42045405400,2368.0,True,True +42045406100,2227.0,False,False +42045406201,3196.0,False,False +42045406202,4842.0,False,False +42045406300,3322.0,True,True +42045406401,2823.0,True,True +42045406402,1245.0,True,True +42045406500,1911.0,True,True +42045406600,2258.0,True,True +42045406700,3468.0,False,False +42045406801,4132.0,False,False +42045406802,4251.0,False,False +42045406803,8546.0,False,False +42045406902,6299.0,False,False +42045406903,4914.0,False,False +42045406904,5493.0,False,False +42045407000,2661.0,False,False +42045407101,4500.0,False,False +42045407102,3290.0,False,False +42045407201,4543.0,False,False +42045407202,3636.0,False,False +42045407401,3709.0,False,False +42045407404,2941.0,False,False +42045407501,2463.0,False,False +42045407502,3024.0,False,False +42045407600,6318.0,False,False +42045407700,2662.0,False,False +42045407801,4608.0,False,False +42045407802,6190.0,False,False +42045407803,5483.0,False,False +42045407804,4420.0,False,False +42045407805,1841.0,False,False +42045407806,1705.0,False,False +42045407901,3852.0,False,False +42045407902,2897.0,False,False +42045407903,3667.0,False,False +42045408001,5972.0,False,False +42045408002,4088.0,False,False +42045408101,5552.0,False,False +42045408102,3577.0,False,False +42045408103,4590.0,False,False +42045408300,4501.0,False,False +42045408400,2109.0,False,False +42045408500,4118.0,False,False +42045408600,3335.0,False,False +42045408700,4886.0,False,False +42045408800,4974.0,False,False +42045408900,2956.0,False,False +42045409000,3732.0,False,False +42045409100,4271.0,False,False +42045409200,4250.0,False,False +42045409300,2447.0,False,False +42045409400,2972.0,False,False +42045409500,4732.0,False,False +42045409601,4394.0,False,False +42045409602,5193.0,False,False +42045409701,7005.0,False,False +42045409702,1984.0,False,False +42045409802,5906.0,False,False +42045409803,7338.0,False,False +42045409902,5444.0,False,False +42045409903,3846.0,False,False +42045409904,4061.0,False,False +42045410000,4059.0,False,False +42045410100,7700.0,False,False +42045410200,3720.0,False,False +42045410301,8090.0,False,False +42045410302,9655.0,False,False +42045410400,9181.0,False,False +42045410500,5247.0,True,True +42045410601,3664.0,False,False +42045410602,4556.0,False,False +42045410700,5488.0,True,True +42045410800,8051.0,False,False +42045980000,0.0,False,False +42047950100,1488.0,False,False +42047950200,3169.0,False,False +42047950400,3814.0,True,True +42047950500,2445.0,False,False +42047950900,2177.0,False,False +42047951000,4818.0,False,False +42047951100,5321.0,False,False +42047951200,1953.0,False,False +42047951300,5155.0,False,False +42049000100,1365.0,True,True +42049000200,3824.0,False,False +42049000300,3374.0,True,True +42049000400,2380.0,True,True +42049000500,3353.0,True,True +42049000600,3136.0,True,True +42049000700,2183.0,True,True +42049000800,1971.0,True,True +42049000900,4934.0,False,True +42049001000,3332.0,True,True +42049001100,2780.0,True,True +42049001200,2256.0,True,True +42049001300,1849.0,True,True +42049001400,2342.0,True,True +42049001500,3107.0,True,True +42049001600,4413.0,True,True +42049001700,2642.0,True,True +42049001800,1966.0,True,True +42049001900,1734.0,True,True +42049002000,3519.0,True,True +42049002100,3714.0,False,False +42049002200,4193.0,False,False +42049002300,2708.0,True,True +42049002400,3287.0,True,True +42049002500,2425.0,True,True +42049002600,3840.0,True,True +42049002700,6839.0,True,True +42049002800,6522.0,False,False +42049002900,2889.0,False,False +42049003000,4386.0,True,True +42049010101,3331.0,True,False +42049010103,1914.0,False,False +42049010104,2310.0,False,False +42049010107,1539.0,True,False +42049010201,5932.0,True,False +42049010202,5311.0,False,False +42049010301,4851.0,False,False +42049010303,5828.0,False,False +42049010304,4278.0,False,False +42049010400,4776.0,False,False +42049010500,3659.0,False,False +42049010700,4081.0,False,False +42049010800,3484.0,False,False +42049010902,4319.0,False,False +42049010903,6435.0,False,False +42049010904,5283.0,False,False +42049011001,6449.0,False,False +42049011002,4870.0,False,False +42049011101,5417.0,False,False +42049011102,3042.0,False,False +42049011201,4555.0,False,False +42049011202,7033.0,False,False +42049011300,3185.0,True,False +42049011400,3813.0,False,False +42049011503,3875.0,False,False +42049011505,2598.0,False,False +42049011507,3221.0,False,False +42049011600,4108.0,False,False +42049011701,3025.0,False,False +42049011702,5261.0,False,False +42049011801,2759.0,False,False +42049011802,3200.0,False,False +42049011900,6332.0,True,False +42049012001,2586.0,False,False +42049012002,3189.0,True,False +42049012100,7304.0,False,False +42049012201,6030.0,False,False +42049012202,5794.0,False,False +42049012300,7646.0,False,False +42049012400,1482.0,False,False +42049980109,2467.0,False,False +42049990000,0.0,False,False +42051260100,5104.0,False,False +42051260200,4024.0,False,False +42051260300,3743.0,True,True +42051260401,2237.0,False,False +42051260402,4460.0,False,False +42051260500,6287.0,False,False +42051260600,4137.0,True,True +42051260700,3920.0,True,True +42051260800,3554.0,True,True +42051260900,4452.0,False,False +42051261000,2404.0,False,False +42051261100,2492.0,False,False +42051261200,2217.0,True,True +42051261300,6496.0,True,True +42051261401,2546.0,True,True +42051261402,2806.0,True,True +42051261500,4050.0,False,False +42051261600,2830.0,True,True +42051261700,2576.0,True,True +42051261800,3543.0,True,True +42051261900,3362.0,True,True +42051262000,4791.0,False,False +42051262100,2349.0,True,False +42051262200,3218.0,True,True +42051262300,3257.0,True,True +42051262400,3253.0,False,False +42051262500,3251.0,True,True +42051262600,2818.0,True,True +42051262701,3449.0,True,True +42051262702,2651.0,True,True +42051262800,7047.0,False,False +42051262900,4861.0,True,True +42051263000,3327.0,True,True +42051263100,5848.0,True,True +42051263200,2311.0,True,True +42051263300,1631.0,True,True +42053530100,5050.0,True,True +42053530201,1088.0,True,True +42053530300,1175.0,True,True +42055010100,4122.0,True,True +42055010200,4683.0,False,False +42055010300,9973.0,False,False +42055010400,8776.0,False,False +42055010500,8891.0,False,False +42055010600,6347.0,False,False +42055010700,8461.0,False,False +42055010800,3696.0,False,False +42055010900,4986.0,False,False +42055011000,5297.0,True,False +42055011100,3678.0,False,False +42055011200,3175.0,True,True +42055011301,5354.0,False,False +42055011302,5743.0,False,False +42055011400,6002.0,False,False +42055011500,6060.0,True,False +42055011600,6574.0,False,False +42055011700,8527.0,False,False +42055011800,4013.0,False,False +42055011900,7049.0,False,False +42055012000,7253.0,False,False +42055012100,4188.0,False,False +42055012200,3470.0,True,True +42055012300,4647.0,True,False +42055012400,2743.0,True,False +42055012501,6965.0,False,False +42055012502,3474.0,False,False +42057960100,5013.0,True,False +42057960200,4902.0,False,False +42057960300,4591.0,False,False +42059970100,6803.0,False,False +42059970200,3016.0,False,False +42059970300,4150.0,False,False +42059970400,3921.0,False,False +42059970501,4660.0,False,False +42059970502,3504.0,False,False +42059970600,4021.0,False,False +42059970700,2578.0,False,False +42059970800,4217.0,True,True +42061950100,1872.0,False,False +42061950200,3850.0,False,False +42061950300,7879.0,False,False +42061950400,6977.0,False,False +42061950500,3189.0,True,True +42061950600,4298.0,False,False +42061950800,3382.0,False,False +42061950900,2289.0,True,True +42061951000,2639.0,True,True +42061951100,2071.0,True,True +42061951200,4763.0,True,True +42061951300,2160.0,True,True +42063960100,4014.0,True,True +42063960200,5365.0,True,True +42063960300,2525.0,True,True +42063960400,3619.0,True,True +42063960500,3355.0,False,False +42063960600,4926.0,False,False +42063960700,6949.0,False,False +42063960800,4467.0,False,False +42063960900,4357.0,False,False +42063961000,2031.0,False,False +42063961101,4548.0,False,False +42063961102,4679.0,False,False +42063961200,2088.0,False,False +42063961300,3876.0,False,False +42063961400,2865.0,False,False +42063961500,3744.0,False,False +42063961600,4510.0,False,False +42063961700,1688.0,True,False +42063961800,1661.0,False,False +42063961900,4165.0,False,False +42063962000,4165.0,False,False +42063962100,3257.0,True,False +42063962200,2178.0,False,False +42065950100,1987.0,True,True +42065950200,3016.0,False,False +42065950300,5278.0,True,True +42065950400,1811.0,False,False +42065950500,2012.0,True,False +42065950600,5566.0,False,False +42065950700,2672.0,True,False +42065950800,3589.0,False,False +42065950900,4163.0,True,True +42065951000,4334.0,True,True +42065951100,3648.0,False,True +42065951200,3256.0,True,True +42065951300,2514.0,True,True +42067070100,7286.0,False,False +42067070201,1856.0,True,True +42067070202,6090.0,False,False +42067070300,5057.0,True,True +42067070400,4335.0,True,True +42069100200,2901.0,True,True +42069100300,4149.0,False,True +42069100400,2143.0,True,True +42069100500,2059.0,False,False +42069100600,4191.0,True,True +42069100800,3098.0,True,True +42069100900,1662.0,False,False +42069101000,3068.0,False,False +42069101100,2877.0,True,True +42069101200,3185.0,True,False +42069101300,2987.0,True,False +42069101400,2849.0,True,True +42069101600,2391.0,True,True +42069101700,2794.0,False,False +42069101800,4585.0,False,False +42069101900,1414.0,True,True +42069102000,2403.0,True,True +42069102100,2721.0,True,True +42069102200,2241.0,True,True +42069102300,3582.0,True,True +42069102500,3097.0,True,True +42069102600,2786.0,True,True +42069102700,2844.0,False,False +42069102800,3259.0,False,False +42069102900,4124.0,True,True +42069103000,1928.0,True,True +42069103100,1716.0,False,False +42069110100,2561.0,False,False +42069110201,4109.0,False,False +42069110202,4783.0,False,False +42069110300,3887.0,False,False +42069110401,6468.0,False,False +42069110402,2641.0,False,False +42069110403,3151.0,False,False +42069110500,4950.0,False,False +42069110600,2779.0,False,False +42069110700,2610.0,True,True +42069110800,2860.0,True,True +42069110900,3001.0,True,False +42069111000,2080.0,False,False +42069111100,6988.0,False,False +42069111200,6258.0,False,False +42069111300,4441.0,False,False +42069111400,5064.0,True,True +42069111500,3164.0,False,False +42069111600,2638.0,True,True +42069111700,3937.0,False,False +42069111800,8566.0,False,False +42069112000,4191.0,False,False +42069112100,3988.0,False,False +42069112200,2327.0,False,False +42069112300,2605.0,False,False +42069112400,4416.0,False,False +42069112500,5965.0,True,True +42069112600,5001.0,False,False +42069112700,2964.0,False,False +42069112800,5767.0,False,False +42069112901,4010.0,False,False +42069112902,5428.0,False,False +42071000100,2785.0,True,True +42071000200,3406.0,True,True +42071000300,4962.0,True,True +42071000400,4095.0,True,True +42071000500,5025.0,False,False +42071000600,3234.0,False,False +42071000700,3456.0,True,True +42071000800,3404.0,True,True +42071000900,3496.0,True,True +42071001000,3782.0,True,True +42071001100,3255.0,False,False +42071001200,5497.0,False,True +42071001400,5100.0,True,True +42071010101,7448.0,False,False +42071010102,3861.0,False,False +42071010201,4844.0,False,False +42071010202,5989.0,False,False +42071010300,9652.0,False,False +42071010400,4867.0,True,True +42071010501,4543.0,False,False +42071010502,7468.0,False,False +42071010600,11029.0,False,False +42071010701,5550.0,False,False +42071010702,5919.0,False,False +42071010801,8814.0,False,False +42071010802,3438.0,False,False +42071010900,8163.0,False,False +42071011000,2610.0,False,False +42071011100,8310.0,False,False +42071011200,1990.0,True,True +42071011300,4255.0,True,True +42071011400,4137.0,True,True +42071011502,6203.0,False,False +42071011503,5515.0,False,False +42071011504,7683.0,False,False +42071011600,6261.0,False,False +42071011701,4716.0,False,False +42071011703,7975.0,False,False +42071011704,4474.0,False,False +42071011705,5555.0,False,False +42071011801,2930.0,False,False +42071011802,6035.0,False,False +42071011803,6686.0,False,False +42071011804,8457.0,False,False +42071011805,2583.0,False,False +42071011901,6053.0,False,False +42071011902,7490.0,False,False +42071012001,5300.0,False,False +42071012002,4035.0,False,False +42071012102,8447.0,False,False +42071012103,4457.0,False,False +42071012104,6118.0,False,False +42071012200,7374.0,True,False +42071012301,3229.0,True,False +42071012302,3207.0,False,False +42071012402,3997.0,False,False +42071012403,4645.0,False,False +42071012404,5689.0,False,False +42071012501,8695.0,False,False +42071012502,4259.0,False,False +42071012601,7531.0,False,False +42071012602,4835.0,False,False +42071012700,8006.0,False,False +42071012800,5457.0,False,False +42071012900,7186.0,False,False +42071013000,8311.0,False,False +42071013101,5206.0,False,False +42071013102,3705.0,False,False +42071013202,5660.0,False,False +42071013203,5362.0,False,False +42071013204,7029.0,False,False +42071013301,4403.0,False,False +42071013303,4658.0,False,False +42071013304,7941.0,False,False +42071013400,3111.0,False,False +42071013501,10145.0,False,False +42071013502,4474.0,False,False +42071013503,2357.0,False,False +42071013601,2285.0,False,False +42071013602,6420.0,False,False +42071013701,4940.0,False,False +42071013702,9687.0,False,False +42071013800,3860.0,False,False +42071013901,4978.0,False,False +42071013902,3874.0,False,False +42071014000,7265.0,False,False +42071014101,5601.0,True,True +42071014102,5658.0,True,True +42071014201,5509.0,False,False +42071014202,5907.0,False,False +42071014300,7803.0,False,False +42071014401,7029.0,False,False +42071014402,4797.0,False,False +42071014501,5220.0,False,False +42071014502,5826.0,False,False +42071014601,3873.0,False,False +42071014602,8080.0,False,False +42071014700,4558.0,True,True +42073000100,4190.0,True,True +42073000200,2117.0,True,True +42073000300,3922.0,True,True +42073000400,1734.0,True,True +42073000600,1123.0,True,True +42073000700,1734.0,True,True +42073000800,3793.0,True,True +42073000900,1833.0,True,True +42073001000,1545.0,True,True +42073010100,3690.0,False,False +42073010201,3236.0,False,False +42073010202,5107.0,False,False +42073010300,2186.0,False,False +42073010400,3285.0,False,False +42073010500,2896.0,False,False +42073010600,2198.0,False,False +42073010700,2763.0,False,False +42073010800,6018.0,False,False +42073010900,3125.0,False,False +42073011000,5007.0,False,False +42073011100,3981.0,False,False +42073011200,2362.0,False,False +42073011300,4474.0,False,False +42073011400,1992.0,False,False +42073011500,4182.0,False,False +42073011600,3818.0,False,False +42073011700,1965.0,False,False +42073011800,2451.0,True,True +42075000100,4524.0,True,True +42075000200,5244.0,True,True +42075000300,4129.0,True,True +42075000401,4336.0,True,True +42075000402,3945.0,True,True +42075000500,3615.0,True,True +42075002000,3152.0,False,False +42075002100,5228.0,False,False +42075002200,6644.0,False,False +42075002300,2914.0,False,False +42075002400,2484.0,False,False +42075002500,4973.0,False,False +42075002600,2007.0,False,False +42075002701,6053.0,False,False +42075002702,5928.0,True,False +42075002800,8853.0,False,False +42075002900,3201.0,True,True +42075003000,5738.0,False,False +42075003100,4239.0,False,False +42075003200,4991.0,False,False +42075003300,2337.0,False,False +42075003400,2550.0,False,False +42075003500,5066.0,False,False +42075003600,3886.0,False,False +42075003700,2985.0,False,False +42075003800,8451.0,False,False +42075003901,3629.0,True,False +42075003902,3907.0,True,False +42075004000,8174.0,False,False +42075004100,2231.0,False,False +42075004200,4315.0,False,False +42077000101,3955.0,False,False +42077000102,4114.0,False,False +42077000400,4256.0,True,True +42077000500,2633.0,True,True +42077000600,6344.0,False,False +42077000700,3773.0,True,True +42077000800,4138.0,True,True +42077000900,1562.0,True,True +42077001000,3330.0,True,True +42077001200,2824.0,True,True +42077001401,8042.0,True,False +42077001402,1960.0,False,False +42077001501,6274.0,True,True +42077001502,7051.0,True,False +42077001600,3812.0,True,True +42077001700,5137.0,True,True +42077001800,4588.0,True,True +42077001900,4125.0,True,True +42077002000,5562.0,True,True +42077002100,7185.0,True,True +42077002201,4321.0,True,True +42077002202,5048.0,False,False +42077002301,6844.0,False,False +42077002302,2880.0,False,False +42077005100,4291.0,True,True +42077005200,6748.0,False,False +42077005301,3510.0,False,False +42077005302,4373.0,False,False +42077005401,2222.0,False,False +42077005402,5182.0,False,False +42077005503,4510.0,False,False +42077005504,4611.0,False,False +42077005505,3415.0,False,False +42077005506,3742.0,False,False +42077005601,4953.0,False,False +42077005602,4747.0,False,False +42077005702,3979.0,False,False +42077005703,3726.0,False,True +42077005704,3737.0,False,False +42077005705,6425.0,False,False +42077005800,3201.0,False,False +42077005901,6568.0,False,False +42077005902,1679.0,False,False +42077006001,4745.0,False,False +42077006002,5428.0,False,False +42077006101,3858.0,False,False +42077006102,5747.0,False,False +42077006202,12000.0,False,False +42077006203,8236.0,False,False +42077006204,3902.0,False,False +42077006302,7472.0,False,False +42077006303,3155.0,False,False +42077006304,3901.0,False,False +42077006305,6890.0,False,False +42077006307,8758.0,False,False +42077006308,7774.0,False,False +42077006401,3097.0,False,False +42077006402,5012.0,False,False +42077006500,5726.0,True,True +42077006600,5274.0,False,False +42077006701,5147.0,False,False +42077006702,2998.0,False,False +42077006703,5742.0,False,False +42077006800,4683.0,True,True +42077006902,2488.0,False,False +42077006903,7052.0,False,False +42077006905,5606.0,False,False +42077006906,4078.0,False,False +42077007000,3963.0,False,False +42077009100,3614.0,False,False +42077009200,3821.0,False,False +42077009300,3241.0,False,False +42077009400,4422.0,True,False +42077009500,4688.0,False,False +42077009600,7939.0,True,True +42077009700,3218.0,True,True +42079200100,3006.0,False,True +42079200200,3242.0,True,False +42079200300,1637.0,False,False +42079200400,2542.0,True,True +42079200500,2685.0,True,True +42079200600,2323.0,True,True +42079200700,3501.0,True,True +42079200800,4285.0,True,True +42079200900,3118.0,True,True +42079201000,1979.0,True,True +42079201100,1411.0,True,True +42079201200,1901.0,True,True +42079201300,1961.0,True,True +42079201400,2192.0,True,True +42079201500,2446.0,True,True +42079201600,2638.0,False,False +42079210100,3364.0,False,False +42079210200,2692.0,False,False +42079210300,2623.0,False,False +42079210400,1431.0,False,False +42079210500,4863.0,False,False +42079210600,1011.0,False,False +42079210700,1850.0,True,True +42079210800,3144.0,True,True +42079210900,1760.0,True,True +42079211000,4786.0,False,False +42079211101,5549.0,True,True +42079211102,2193.0,False,False +42079211201,2804.0,False,False +42079211203,1723.0,False,False +42079211204,6272.0,False,False +42079211205,2936.0,False,False +42079211301,4663.0,False,False +42079211302,3500.0,False,False +42079211303,2762.0,False,False +42079211304,2356.0,False,False +42079211400,6912.0,False,False +42079211500,2686.0,False,False +42079211600,3015.0,False,False +42079211701,5283.0,False,False +42079211702,1513.0,False,False +42079211800,1997.0,False,False +42079211900,5973.0,False,False +42079212000,1734.0,False,False +42079212100,4069.0,False,False +42079212200,5017.0,False,False +42079212300,2817.0,False,False +42079212700,4945.0,True,True +42079212800,3254.0,False,False +42079212900,1425.0,False,False +42079213000,1410.0,True,True +42079213100,1839.0,False,False +42079213200,4742.0,True,False +42079213300,1556.0,False,False +42079213400,4387.0,False,False +42079213600,2082.0,True,True +42079213700,2017.0,True,True +42079213800,1721.0,True,True +42079213900,1629.0,False,False +42079214000,1177.0,False,False +42079214100,2410.0,True,True +42079214200,2864.0,True,True +42079214300,1929.0,True,False +42079214400,1924.0,False,False +42079214500,1504.0,False,False +42079214600,3733.0,False,False +42079214900,1286.0,False,False +42079215000,1621.0,False,False +42079215100,2731.0,True,True +42079215200,2891.0,False,False +42079215300,3900.0,False,False +42079215400,2370.0,False,False +42079215501,4498.0,False,False +42079215502,5622.0,False,False +42079215503,3530.0,False,False +42079215504,3953.0,False,False +42079215600,5346.0,False,False +42079215701,2454.0,False,False +42079215702,2104.0,False,False +42079215800,2907.0,False,False +42079215900,3550.0,False,False +42079216000,614.0,True,True +42079216100,4208.0,False,False +42079216200,5479.0,False,False +42079216400,1749.0,False,False +42079216501,2072.0,False,False +42079216502,3977.0,False,False +42079216600,9749.0,False,False +42079216700,3440.0,True,True +42079216800,3773.0,False,False +42079216900,4333.0,False,False +42079217001,2031.0,False,False +42079217002,3186.0,True,True +42079217100,3010.0,False,False +42079217200,3266.0,True,True +42079217300,3182.0,False,False +42079217400,1460.0,True,True +42079217500,2718.0,True,True +42079217600,3073.0,True,True +42079217700,4495.0,True,True +42079217800,3653.0,True,True +42079217900,4376.0,True,True +42079218000,4343.0,True,False +42079980100,0.0,False,False +42081000100,3495.0,True,True +42081000200,2071.0,False,False +42081000300,5601.0,True,True +42081000400,4002.0,True,True +42081000500,2902.0,False,False +42081000600,2379.0,True,True +42081000800,2255.0,False,True +42081000900,2533.0,False,False +42081001000,3324.0,True,True +42081010100,2276.0,False,False +42081010200,1068.0,False,False +42081010300,3083.0,False,False +42081010400,4871.0,False,False +42081010500,5791.0,False,False +42081010600,4502.0,False,False +42081010700,6226.0,False,False +42081010800,6900.0,False,False +42081010900,2780.0,False,False +42081011000,4458.0,False,False +42081011100,5530.0,False,False +42081011200,5469.0,True,True +42081011301,2100.0,True,False +42081011302,4957.0,False,False +42081011400,1587.0,False,False +42081011601,1163.0,False,False +42081011602,6150.0,False,False +42081011700,7608.0,True,True +42081011800,3158.0,False,False +42081011900,6091.0,False,True +42083420100,3220.0,False,False +42083420200,3038.0,True,True +42083420300,2443.0,True,True +42083420400,2874.0,False,False +42083420500,2973.0,False,False +42083420600,5163.0,True,True +42083420700,4307.0,True,False +42083420800,3998.0,False,False +42083420900,2023.0,True,True +42083421000,5653.0,False,False +42083421100,3427.0,True,False +42083421200,2282.0,False,False +42085030100,1855.0,True,True +42085030300,3425.0,False,False +42085030400,2742.0,False,False +42085030500,2131.0,True,True +42085030900,2840.0,True,True +42085031100,1524.0,True,True +42085031200,5500.0,False,False +42085031300,2595.0,False,False +42085031400,5016.0,False,False +42085031700,2404.0,False,False +42085031800,4881.0,False,False +42085031900,4496.0,False,False +42085032000,5410.0,False,False +42085032100,2955.0,False,True +42085032200,2504.0,False,False +42085032300,3122.0,False,False +42085032400,5799.0,False,False +42085032501,5863.0,False,False +42085032502,2268.0,False,False +42085032601,5684.0,False,False +42085032602,4620.0,False,False +42085032701,4588.0,False,False +42085032702,2570.0,False,False +42085032800,5640.0,False,False +42085032900,3115.0,False,False +42085033000,4830.0,False,False +42085033100,4814.0,False,False +42085033200,3074.0,True,True +42085033300,2758.0,True,True +42085033400,2495.0,True,True +42087960100,3804.0,False,False +42087960200,4080.0,True,True +42087960300,5407.0,True,True +42087960400,2996.0,True,True +42087960500,3965.0,False,False +42087960600,5521.0,False,False +42087960700,2506.0,True,True +42087960800,3258.0,True,True +42087960900,2430.0,True,True +42087961000,1906.0,False,False +42087961100,7314.0,False,False +42087961200,3089.0,False,False +42089300101,3641.0,False,False +42089300102,6288.0,False,False +42089300201,4096.0,False,False +42089300202,6207.0,False,False +42089300301,3761.0,True,True +42089300304,6720.0,False,False +42089300305,6703.0,False,False +42089300307,7250.0,False,False +42089300308,2643.0,True,True +42089300309,4612.0,False,True +42089300311,1565.0,False,False +42089300312,2282.0,False,False +42089300401,4903.0,False,False +42089300402,6006.0,False,False +42089300403,6865.0,False,False +42089300501,2820.0,False,False +42089300502,5341.0,False,False +42089300600,4722.0,False,False +42089300700,5611.0,False,True +42089300800,5499.0,False,False +42089300900,5816.0,True,False +42089301001,10868.0,False,False +42089301002,2292.0,False,False +42089301101,5846.0,False,False +42089301102,3020.0,False,False +42089301202,4834.0,False,False +42089301203,5848.0,False,False +42089301204,4136.0,False,False +42089301205,7833.0,False,False +42089301301,7686.0,False,False +42089301302,2881.0,False,False +42089301401,4959.0,False,False +42089301402,4478.0,False,False +42091200103,4015.0,False,False +42091200104,4389.0,False,False +42091200105,2752.0,False,False +42091200106,2011.0,False,False +42091200200,1368.0,False,False +42091200301,6866.0,False,False +42091200305,2117.0,False,False +42091200306,3476.0,False,False +42091200307,2738.0,False,False +42091200308,3870.0,False,False +42091200309,2605.0,False,False +42091200310,2442.0,False,False +42091200401,3428.0,False,False +42091200402,4021.0,False,False +42091200501,4184.0,False,False +42091200502,5088.0,False,False +42091200505,7425.0,False,False +42091200506,4571.0,False,False +42091200507,5219.0,False,False +42091200602,8151.0,False,False +42091200603,3529.0,False,False +42091200605,6787.0,False,False +42091200606,3190.0,False,False +42091200607,4387.0,False,False +42091200703,4312.0,False,False +42091200704,3303.0,False,False +42091200707,4147.0,False,False +42091200708,5884.0,False,False +42091200800,3333.0,False,False +42091200901,4217.0,False,False +42091200902,1386.0,False,False +42091200903,4595.0,False,False +42091200906,1927.0,False,False +42091200907,2479.0,False,False +42091200908,2071.0,False,False +42091201003,4848.0,False,False +42091201004,5330.0,False,False +42091201005,3465.0,False,False +42091201006,2188.0,False,False +42091201100,3253.0,False,False +42091201201,6224.0,False,False +42091201203,3083.0,False,False +42091201204,2213.0,False,False +42091201301,3524.0,False,False +42091201302,2965.0,True,True +42091201404,5156.0,False,False +42091201406,4818.0,False,False +42091201407,2649.0,False,False +42091201408,4104.0,False,False +42091201409,4460.0,False,False +42091201410,2385.0,False,False +42091201411,2755.0,False,False +42091201501,3503.0,False,False +42091201502,1956.0,False,False +42091201603,4209.0,False,False +42091201604,3053.0,False,False +42091201605,3089.0,False,False +42091201606,2414.0,False,False +42091201607,3550.0,False,False +42091201608,4611.0,False,False +42091201703,3373.0,False,False +42091201704,3323.0,False,False +42091201705,4258.0,False,False +42091201706,4872.0,False,False +42091201800,3163.0,False,False +42091201901,4822.0,False,False +42091201902,5263.0,False,False +42091202000,2539.0,False,False +42091202100,4433.0,False,False +42091202201,4946.0,False,False +42091202202,3054.0,False,False +42091202301,4535.0,False,False +42091202302,2161.0,False,False +42091202401,3711.0,False,False +42091202402,4749.0,False,False +42091202500,5689.0,False,False +42091202602,2604.0,False,False +42091202603,3430.0,False,False +42091202604,2292.0,False,False +42091203000,3028.0,False,False +42091203103,3098.0,False,False +42091203104,4282.0,False,False +42091203105,5283.0,False,False +42091203106,2247.0,False,False +42091203203,3983.0,False,False +42091203204,7001.0,False,False +42091203205,2174.0,False,False +42091203207,3238.0,False,False +42091203208,2799.0,False,False +42091203302,6381.0,False,False +42091203303,4079.0,False,False +42091203304,3555.0,False,False +42091203401,5932.0,False,False +42091203402,6607.0,False,False +42091203403,2970.0,False,False +42091203500,6640.0,True,True +42091203601,2598.0,True,True +42091203602,4013.0,False,False +42091203700,1864.0,True,True +42091203801,3859.0,True,True +42091203803,5582.0,True,True +42091203804,3143.0,True,True +42091203901,3325.0,True,True +42091203902,3569.0,True,True +42091204002,3622.0,False,False +42091204007,2146.0,False,False +42091204008,2771.0,False,False +42091204009,2091.0,False,False +42091204010,2651.0,False,False +42091204101,3768.0,False,False +42091204102,4261.0,False,False +42091204200,1384.0,False,False +42091204300,2555.0,False,False +42091204400,3353.0,False,False +42091204500,4610.0,False,False +42091204600,4732.0,False,False +42091204701,2264.0,False,False +42091204702,3192.0,False,False +42091204800,5147.0,False,False +42091204900,5375.0,False,False +42091205000,2575.0,False,False +42091205100,1658.0,False,False +42091205200,2731.0,False,False +42091205300,1980.0,False,False +42091205400,6317.0,False,False +42091205501,3863.0,False,False +42091205502,3624.0,False,False +42091205503,5061.0,False,False +42091205600,4345.0,False,False +42091205700,4579.0,False,False +42091205801,3486.0,False,False +42091205805,3090.0,False,False +42091205806,2081.0,False,False +42091205807,1843.0,False,False +42091205808,5488.0,False,False +42091205809,3053.0,False,False +42091205903,2831.0,False,False +42091205904,2418.0,False,False +42091205905,3912.0,False,False +42091205906,2058.0,False,False +42091206004,6806.0,False,False +42091206005,4461.0,False,False +42091206006,2920.0,False,False +42091206007,6863.0,False,False +42091206102,9346.0,False,False +42091206104,3374.0,False,False +42091206105,6529.0,False,False +42091206106,4671.0,False,False +42091206201,2448.0,False,False +42091206202,2327.0,False,False +42091206300,5152.0,False,False +42091206400,3610.0,False,False +42091206501,4235.0,False,False +42091206502,4928.0,False,False +42091206600,1422.0,False,False +42091206702,3353.0,False,False +42091206703,3896.0,False,False +42091206704,7264.0,False,False +42091206801,7664.0,False,False +42091206802,2742.0,False,False +42091206901,4638.0,False,False +42091206904,6117.0,False,False +42091206905,4645.0,False,False +42091206906,2930.0,False,False +42091207001,7890.0,False,False +42091207003,3044.0,False,False +42091207004,4430.0,False,False +42091207101,6010.0,False,False +42091207103,4411.0,False,False +42091207104,2870.0,False,False +42091207201,2413.0,False,True +42091207202,4549.0,False,False +42091207300,2655.0,False,False +42091207400,2935.0,False,False +42091207500,3353.0,False,False +42091207600,3782.0,False,False +42091207800,7673.0,False,False +42091207900,2484.0,False,False +42091208000,3869.0,False,False +42091208100,2943.0,False,False +42091208201,2063.0,False,False +42091208203,5026.0,False,False +42091208204,3417.0,False,False +42091208301,2561.0,False,False +42091208302,10280.0,False,False +42091208400,3608.0,False,False +42091208500,4881.0,False,False +42091208601,6413.0,False,False +42091208603,6380.0,False,False +42091208604,6197.0,False,False +42091208702,3328.0,False,False +42091208703,3968.0,False,False +42091208704,4823.0,False,False +42091208801,1398.0,True,True +42091208802,2678.0,True,True +42091208901,3658.0,False,False +42091208903,2813.0,False,False +42091208904,3260.0,True,True +42091208905,3015.0,False,False +42091208906,4496.0,False,False +42091209000,1352.0,True,True +42091209100,5643.0,False,False +42091209201,1573.0,False,False +42091209202,2276.0,False,False +42091210100,3944.0,False,False +42091210200,2806.0,False,False +42091210300,4367.0,False,False +42091210400,4474.0,False,False +42091210500,4102.0,False,False +42091210600,4301.0,False,False +42091210700,5600.0,False,False +42093050100,3838.0,False,False +42093050200,4176.0,False,False +42093050300,4627.0,True,True +42093050400,5618.0,False,False +42095010100,4017.0,False,False +42095010200,3602.0,False,False +42095010300,3308.0,False,False +42095010400,5594.0,False,False +42095010500,4242.0,True,True +42095010600,7679.0,False,False +42095010700,4430.0,False,False +42095010800,2226.0,True,False +42095010900,3627.0,True,True +42095011000,3159.0,False,True +42095011100,3487.0,False,False +42095011200,5792.0,True,True +42095011300,4512.0,True,True +42095014100,6065.0,False,False +42095014200,5657.0,True,True +42095014300,3750.0,True,True +42095014400,2222.0,True,True +42095014500,3088.0,False,False +42095014600,3398.0,True,True +42095014700,2942.0,False,False +42095015201,7176.0,True,True +42095015300,5232.0,False,False +42095015400,3071.0,False,False +42095015500,6194.0,False,False +42095015600,3543.0,False,False +42095015700,2720.0,False,False +42095015801,5323.0,False,False +42095015802,3143.0,False,False +42095015901,5543.0,False,False +42095015902,3951.0,False,False +42095016001,5803.0,False,False +42095016002,4608.0,False,False +42095016100,2038.0,False,False +42095016201,5524.0,False,False +42095016202,4323.0,False,False +42095016300,2831.0,False,False +42095016400,4928.0,False,False +42095016500,4915.0,False,False +42095016600,2658.0,True,False +42095016700,6858.0,False,False +42095016800,5699.0,False,False +42095016901,3216.0,False,False +42095016902,3049.0,False,False +42095017000,2077.0,False,False +42095017101,6387.0,False,False +42095017102,9083.0,False,False +42095017200,6347.0,False,False +42095017300,2779.0,False,False +42095017401,7954.0,False,False +42095017402,3933.0,False,False +42095017501,3987.0,False,False +42095017502,5471.0,False,False +42095017603,3721.0,False,False +42095017604,4445.0,False,False +42095017605,4415.0,False,False +42095017606,4725.0,False,False +42095017607,6615.0,False,False +42095017702,2378.0,False,False +42095017703,2928.0,False,False +42095017704,6193.0,False,False +42095017800,2622.0,False,False +42095017901,3530.0,False,False +42095017902,2301.0,False,False +42095018001,4073.0,False,False +42095018002,6719.0,False,False +42095018100,6539.0,False,False +42095018200,3659.0,False,False +42095018300,4785.0,False,False +42097080100,4109.0,False,False +42097080200,7043.0,False,False +42097080300,6802.0,True,True +42097080400,3307.0,False,False +42097080500,3629.0,False,False +42097080600,3655.0,False,False +42097080700,3411.0,False,False +42097080800,7245.0,False,False +42097080900,3713.0,True,True +42097081000,2824.0,True,True +42097081100,2843.0,True,True +42097081200,5779.0,True,True +42097081300,2564.0,True,True +42097081400,1954.0,True,True +42097081500,2028.0,True,True +42097081600,2685.0,True,True +42097081700,2338.0,True,True +42097081800,3153.0,True,True +42097081900,5536.0,False,False +42097082000,3216.0,False,False +42097082100,2635.0,True,True +42097082200,3629.0,True,True +42097082300,4863.0,False,False +42097082400,2800.0,False,False +42099030100,5055.0,False,False +42099030201,2589.0,False,False +42099030202,4705.0,False,False +42099030301,4693.0,False,False +42099030302,4788.0,False,False +42099030400,4826.0,False,False +42099030501,5289.0,False,False +42099030502,6205.0,False,False +42099030601,4678.0,True,True +42099030602,3225.0,True,True +42101000100,4118.0,False,False +42101000200,2860.0,False,True +42101000300,3385.0,False,False +42101000401,2516.0,False,False +42101000402,4097.0,False,False +42101000500,2543.0,True,True +42101000600,1222.0,False,False +42101000700,3736.0,False,False +42101000801,1514.0,False,False +42101000803,2774.0,False,False +42101000804,4899.0,False,False +42101000901,2056.0,False,False +42101000902,2818.0,False,True +42101001001,2670.0,False,False +42101001002,3444.0,False,False +42101001101,3750.0,False,False +42101001102,2687.0,False,False +42101001201,4038.0,False,False +42101001202,5215.0,False,False +42101001300,6911.0,False,False +42101001400,4199.0,False,False +42101001500,3227.0,False,False +42101001600,2371.0,False,False +42101001700,3114.0,False,False +42101001800,3138.0,False,False +42101001900,4039.0,False,False +42101002000,1828.0,False,False +42101002100,2221.0,True,True +42101002200,2263.0,False,False +42101002300,2918.0,False,False +42101002400,4647.0,False,False +42101002500,4243.0,True,True +42101002701,4234.0,True,True +42101002702,4419.0,False,False +42101002801,4595.0,True,True +42101002802,5596.0,False,False +42101002900,3945.0,False,False +42101003001,3959.0,True,True +42101003002,2820.0,False,False +42101003100,4426.0,True,True +42101003200,4180.0,True,True +42101003300,6203.0,True,True +42101003600,7142.0,True,True +42101003701,5859.0,True,True +42101003702,4221.0,True,True +42101003800,4015.0,False,False +42101003901,6186.0,True,True +42101003902,5800.0,False,False +42101004001,4165.0,True,True +42101004002,4757.0,False,False +42101004101,5637.0,True,True +42101004102,8671.0,True,True +42101004201,5326.0,True,True +42101004202,5651.0,True,True +42101005000,0.0,False,False +42101005400,1577.0,True,True +42101005500,6321.0,False,True +42101005600,1158.0,True,True +42101006000,6467.0,True,True +42101006100,2759.0,True,True +42101006200,4994.0,True,True +42101006300,4512.0,True,True +42101006400,4430.0,True,True +42101006500,4426.0,True,True +42101006600,3471.0,True,True +42101006700,7082.0,True,True +42101006900,3479.0,True,True +42101007000,3529.0,True,True +42101007101,2595.0,True,True +42101007102,4570.0,True,True +42101007200,4466.0,True,True +42101007300,2959.0,True,True +42101007400,4720.0,True,True +42101007700,1872.0,False,False +42101007800,4163.0,False,False +42101007900,4463.0,False,False +42101008000,3807.0,False,False +42101008101,3179.0,True,True +42101008102,5354.0,True,True +42101008200,5882.0,True,True +42101008301,4628.0,True,True +42101008302,5133.0,True,True +42101008400,5050.0,True,True +42101008500,6803.0,True,True +42101008601,3312.0,False,False +42101008602,2940.0,True,True +42101008701,3667.0,False,False +42101008702,2622.0,False,False +42101008801,2289.0,False,False +42101008802,6303.0,False,False +42101009000,6201.0,False,False +42101009100,2958.0,False,False +42101009200,3345.0,True,True +42101009300,4721.0,True,True +42101009400,4252.0,True,True +42101009500,3261.0,True,True +42101009600,4477.0,True,True +42101009801,2318.0,False,False +42101009802,6190.0,False,False +42101010000,4863.0,True,True +42101010100,6925.0,True,True +42101010200,3344.0,True,True +42101010300,2816.0,True,True +42101010400,3827.0,True,True +42101010500,4544.0,True,True +42101010600,1704.0,True,True +42101010700,3612.0,True,True +42101010800,4258.0,True,True +42101010900,2790.0,True,True +42101011000,3549.0,True,True +42101011100,3704.0,True,True +42101011200,5939.0,True,True +42101011300,3344.0,True,True +42101011400,6864.0,True,True +42101011500,4472.0,False,False +42101011700,1957.0,False,False +42101011800,5618.0,True,True +42101011900,5161.0,True,True +42101012000,1890.0,False,False +42101012100,3189.0,False,False +42101012201,2776.0,True,True +42101012203,633.0,False,False +42101012204,4265.0,False,False +42101012500,5375.0,False,False +42101013100,1765.0,True,True +42101013200,2778.0,True,True +42101013300,3100.0,False,False +42101013401,2504.0,False,False +42101013402,3088.0,False,False +42101013500,3987.0,False,False +42101013601,2832.0,False,False +42101013602,3827.0,False,False +42101013700,5155.0,True,True +42101013800,1972.0,True,True +42101013900,1757.0,True,True +42101014000,3888.0,False,False +42101014100,2659.0,True,True +42101014200,5198.0,False,False +42101014300,1935.0,False,False +42101014400,4470.0,True,True +42101014500,1868.0,True,True +42101014600,4305.0,False,True +42101014700,2686.0,True,True +42101014800,804.0,True,True +42101014900,3891.0,True,True +42101015101,2279.0,True,True +42101015102,4242.0,True,True +42101015200,5347.0,True,True +42101015300,4086.0,False,True +42101015600,1596.0,True,True +42101015700,2587.0,True,True +42101015800,6969.0,False,False +42101016000,6996.0,False,False +42101016100,6203.0,False,False +42101016200,2098.0,True,True +42101016300,3005.0,True,True +42101016400,4633.0,True,True +42101016500,3180.0,True,True +42101016600,2241.0,False,True +42101016701,2809.0,True,True +42101016702,2704.0,True,True +42101016800,2965.0,True,True +42101016901,3092.0,True,True +42101016902,4412.0,True,True +42101017000,2884.0,False,False +42101017100,3565.0,True,True +42101017201,2835.0,True,True +42101017202,3842.0,True,True +42101017300,2538.0,True,True +42101017400,2392.0,True,True +42101017500,6943.0,True,True +42101017601,4972.0,True,True +42101017602,4603.0,True,True +42101017701,3203.0,True,True +42101017702,5188.0,True,True +42101017800,5862.0,True,True +42101017900,6279.0,True,True +42101018001,3253.0,False,False +42101018002,6038.0,True,True +42101018300,4005.0,False,False +42101018400,2242.0,False,False +42101018800,8705.0,True,True +42101019000,7750.0,True,True +42101019100,8194.0,True,True +42101019200,8721.0,True,True +42101019501,4432.0,True,True +42101019502,3732.0,True,True +42101019700,7064.0,True,True +42101019800,6878.0,True,True +42101019900,4498.0,True,True +42101020000,1320.0,True,True +42101020101,3552.0,True,True +42101020102,3415.0,True,True +42101020200,4804.0,True,True +42101020300,2842.0,True,True +42101020400,2744.0,True,True +42101020500,2578.0,True,True +42101020600,1695.0,False,False +42101020700,5942.0,False,False +42101020800,2289.0,False,False +42101020900,3085.0,False,False +42101021000,5342.0,False,False +42101021100,2481.0,False,False +42101021200,2419.0,False,False +42101021300,3485.0,False,False +42101021400,3980.0,False,False +42101021500,3879.0,False,False +42101021600,2372.0,False,False +42101021700,5727.0,False,False +42101021800,5141.0,False,False +42101021900,1434.0,False,False +42101022000,1534.0,False,False +42101023100,1275.0,False,False +42101023500,1300.0,False,False +42101023600,2391.0,False,False +42101023700,4463.0,False,False +42101023800,4633.0,False,False +42101023900,1634.0,True,True +42101024000,3659.0,False,False +42101024100,1445.0,True,True +42101024200,3807.0,True,True +42101024300,3895.0,True,True +42101024400,3230.0,True,True +42101024500,3823.0,True,True +42101024600,2684.0,True,True +42101024700,4293.0,True,True +42101024800,2232.0,False,True +42101024900,2737.0,True,True +42101025200,7793.0,True,True +42101025300,4636.0,True,True +42101025400,4222.0,False,False +42101025500,2764.0,False,False +42101025600,2795.0,False,False +42101025700,3874.0,False,False +42101025800,1778.0,False,False +42101025900,4409.0,False,False +42101026000,3055.0,False,False +42101026100,3192.0,True,True +42101026200,3791.0,True,True +42101026301,3488.0,False,False +42101026302,4927.0,False,False +42101026400,5660.0,False,True +42101026500,5065.0,True,True +42101026600,6528.0,True,True +42101026700,6987.0,True,True +42101026800,4189.0,True,True +42101026900,2147.0,False,False +42101027000,2635.0,False,True +42101027100,2806.0,False,True +42101027200,4647.0,False,True +42101027300,6019.0,False,True +42101027401,2975.0,True,True +42101027402,6825.0,True,True +42101027500,5133.0,True,True +42101027600,4163.0,True,True +42101027700,4960.0,True,True +42101027800,4564.0,True,True +42101027901,4201.0,True,True +42101027902,4075.0,False,True +42101028000,4111.0,True,True +42101028100,4498.0,True,True +42101028200,5184.0,True,True +42101028300,6738.0,True,True +42101028400,3873.0,True,True +42101028500,2480.0,True,True +42101028600,6583.0,True,True +42101028700,2577.0,True,True +42101028800,4619.0,True,True +42101028901,4056.0,True,True +42101028902,7043.0,True,True +42101029000,8124.0,True,True +42101029100,5158.0,True,True +42101029200,4917.0,False,True +42101029300,3170.0,True,True +42101029400,3874.0,True,True +42101029800,4830.0,True,True +42101029900,4324.0,True,True +42101030000,7629.0,True,True +42101030100,5984.0,True,True +42101030200,8912.0,False,True +42101030501,6079.0,True,True +42101030502,7254.0,True,True +42101030600,6988.0,False,False +42101030700,4238.0,False,False +42101030800,5570.0,False,False +42101030900,4553.0,True,True +42101031000,7694.0,True,True +42101031101,5274.0,True,True +42101031102,4346.0,True,True +42101031200,5032.0,True,True +42101031300,7632.0,True,True +42101031401,7061.0,True,True +42101031402,5921.0,True,True +42101031501,6643.0,True,True +42101031502,4337.0,True,True +42101031600,5998.0,True,True +42101031700,5175.0,True,True +42101031800,4056.0,True,True +42101031900,5641.0,True,True +42101032000,7382.0,True,True +42101032100,4070.0,True,True +42101032300,3619.0,True,True +42101032500,6143.0,True,True +42101032600,7611.0,False,True +42101032900,3701.0,True,True +42101033000,8394.0,True,True +42101033101,5064.0,False,True +42101033102,4048.0,True,True +42101033200,2960.0,False,True +42101033300,4147.0,True,True +42101033400,5619.0,True,True +42101033500,3975.0,True,True +42101033600,7288.0,True,True +42101033701,6589.0,True,True +42101033702,4860.0,False,False +42101033800,6380.0,False,False +42101033900,3133.0,False,False +42101034000,3082.0,False,False +42101034100,5729.0,False,False +42101034200,3354.0,False,False +42101034400,8044.0,False,False +42101034501,4243.0,True,True +42101034502,5672.0,True,True +42101034600,2496.0,True,True +42101034701,6879.0,False,False +42101034702,3835.0,False,False +42101034801,4600.0,False,False +42101034802,5485.0,False,False +42101034803,4309.0,False,False +42101034900,5316.0,False,False +42101035100,4187.0,False,False +42101035200,4686.0,False,False +42101035301,5550.0,False,False +42101035302,4516.0,False,False +42101035500,7948.0,False,True +42101035601,5272.0,False,True +42101035602,3661.0,False,False +42101035701,4931.0,True,True +42101035702,4158.0,True,True +42101035800,6806.0,True,True +42101035900,5548.0,False,True +42101036000,3472.0,False,True +42101036100,4049.0,False,False +42101036201,5153.0,False,False +42101036202,6239.0,False,False +42101036203,5111.0,False,False +42101036301,3969.0,False,False +42101036302,3705.0,False,False +42101036303,6592.0,False,False +42101036400,1037.0,True,True +42101036501,5331.0,False,False +42101036502,4213.0,False,False +42101036600,2604.0,False,False +42101036700,3612.0,False,False +42101036900,5889.0,False,False +42101037200,4702.0,True,True +42101037300,5759.0,False,False +42101037500,3736.0,False,False +42101037600,3287.0,False,False +42101037700,5313.0,False,True +42101037800,2474.0,False,False +42101037900,5006.0,False,False +42101038000,2431.0,True,True +42101038100,845.0,True,True +42101038200,3067.0,True,True +42101038300,3352.0,True,True +42101038400,2484.0,False,False +42101038500,1830.0,False,False +42101038600,1395.0,False,False +42101038700,2816.0,False,False +42101038800,3636.0,False,False +42101038900,3251.0,True,True +42101039000,8641.0,True,True +42101980000,416.0,False,False +42101980100,40.0,False,False +42101980200,554.0,False,False +42101980300,0.0,False,False +42101980400,0.0,False,False +42101980500,0.0,False,False +42101980600,0.0,False,False +42101980700,0.0,False,False +42101980800,0.0,False,False +42101980900,0.0,False,False +42101989100,1811.0,True,True +42103950102,2133.0,False,False +42103950103,2336.0,False,False +42103950104,2513.0,False,False +42103950201,3673.0,False,False +42103950202,1347.0,False,False +42103950301,2609.0,False,False +42103950302,606.0,False,False +42103950501,1752.0,False,False +42103950502,2893.0,False,False +42103950601,1329.0,False,False +42103950603,1172.0,True,True +42103950605,5716.0,False,False +42103950606,5903.0,False,False +42103950701,3878.0,False,False +42103950702,3185.0,False,False +42103950801,5253.0,False,False +42103950802,4930.0,False,False +42103950900,4225.0,True,True +42105950100,4320.0,True,True +42105950200,3093.0,True,True +42105950300,4423.0,False,False +42105950400,2995.0,False,False +42105950500,1975.0,True,True +42107000100,5049.0,False,False +42107000200,2440.0,True,True +42107000300,5040.0,False,False +42107000400,5751.0,False,False +42107000500,3982.0,True,True +42107000601,3582.0,True,True +42107000602,1238.0,True,True +42107000700,3383.0,False,False +42107000800,3649.0,False,False +42107000900,7143.0,True,True +42107001000,2705.0,True,True +42107001100,2229.0,False,False +42107001200,4184.0,False,False +42107001300,3017.0,True,True +42107001400,2176.0,False,False +42107001500,4205.0,True,True +42107001600,3819.0,False,False +42107001700,3222.0,False,False +42107001800,1791.0,False,False +42107001900,5365.0,True,True +42107002000,3270.0,False,False +42107002100,1297.0,False,False +42107002200,2686.0,False,False +42107002300,2865.0,True,True +42107002400,2200.0,False,False +42107002500,2180.0,False,False +42107002600,3912.0,True,True +42107002700,2819.0,False,False +42107002800,2245.0,True,True +42107002900,5328.0,False,False +42107003000,5359.0,False,False +42107003100,2974.0,False,False +42107003200,5377.0,False,False +42107003300,5178.0,True,False +42107003400,3304.0,False,False +42107003500,5048.0,False,False +42107003600,2902.0,False,False +42107003700,3581.0,False,False +42107003800,2138.0,False,False +42107003900,4041.0,False,False +42109070100,6033.0,False,False +42109070200,8151.0,False,False +42109070300,5843.0,True,False +42109070400,5604.0,False,False +42109070500,3584.0,True,True +42109070600,5341.0,False,False +42109070701,3956.0,False,False +42109980705,1971.0,False,False +42111020101,2085.0,False,False +42111020102,5008.0,False,False +42111020200,4479.0,False,False +42111020300,3891.0,True,True +42111020400,3610.0,False,False +42111020500,2827.0,True,True +42111020600,6006.0,False,False +42111020700,2703.0,False,False +42111020800,6381.0,False,False +42111020900,5847.0,True,True +42111021000,4270.0,True,True +42111021100,1672.0,True,True +42111021200,2791.0,False,False +42111021300,3249.0,False,False +42111021400,4368.0,False,False +42111021500,2640.0,True,True +42111021600,2043.0,True,True +42111021700,3050.0,True,True +42111021800,3366.0,False,False +42111021901,2093.0,False,False +42111021902,1982.0,True,True +42113960100,3458.0,True,True +42113960200,2677.0,False,False +42115032000,2649.0,False,False +42115032100,3791.0,False,False +42115032200,3834.0,True,True +42115032300,3690.0,True,True +42115032400,4092.0,False,False +42115032500,4070.0,False,False +42115032600,4262.0,False,False +42115032700,3543.0,False,False +42115032800,5133.0,False,False +42115032901,4015.0,False,False +42115032902,1891.0,True,True +42117950100,4155.0,True,True +42117950200,3528.0,True,True +42117950300,3882.0,True,True +42117950400,3820.0,False,False +42117950500,4295.0,False,False +42117950600,5141.0,True,False +42117950700,6070.0,False,False +42117950800,3256.0,False,False +42117950900,3777.0,False,False +42117951000,3020.0,True,True +42119090102,5755.0,True,True +42119090200,6671.0,False,False +42119090300,3629.0,False,False +42119090400,4051.0,False,False +42119090502,7386.0,False,False +42119090600,5278.0,False,False +42119090700,3720.0,False,False +42119980101,3457.0,False,False +42119980501,1557.0,False,False +42119980800,3607.0,False,False +42121200000,3314.0,False,False +42121200100,3683.0,False,False +42121200200,5657.0,False,False +42121200300,1520.0,True,True +42121200400,2281.0,True,False +42121200500,2347.0,True,True +42121200600,5014.0,False,False +42121200700,2044.0,True,True +42121200800,2647.0,False,False +42121200900,2286.0,True,True +42121201000,2869.0,True,False +42121201100,4638.0,False,False +42121201200,2885.0,False,False +42121201300,3474.0,False,False +42121201400,3846.0,False,False +42121201500,3313.0,False,False +42123970100,2247.0,False,False +42123970200,4031.0,False,False +42123970300,5528.0,True,True +42123970400,2858.0,True,True +42123970500,3606.0,False,False +42123970600,3388.0,False,False +42123970700,2562.0,False,False +42123970800,3377.0,True,True +42123970900,3252.0,False,False +42123971000,2159.0,False,False +42123971100,2800.0,False,False +42123971200,2243.0,True,True +42123971400,1705.0,True,True +42125704100,1975.0,True,True +42125711000,3784.0,False,False +42125712700,1350.0,False,False +42125713700,4389.0,False,False +42125714000,2686.0,False,False +42125715700,1633.0,False,False +42125721000,4279.0,False,False +42125722700,3503.0,False,False +42125731000,6143.0,False,False +42125732000,3261.0,False,False +42125741100,4322.0,False,False +42125741300,3487.0,False,False +42125742100,6232.0,False,False +42125742200,1732.0,False,False +42125743700,1352.0,False,False +42125744100,5581.0,False,False +42125744200,3263.0,False,False +42125745100,9005.0,False,False +42125745200,5432.0,False,False +42125746100,6045.0,False,False +42125746200,4483.0,False,False +42125746301,5293.0,False,False +42125746302,6162.0,False,False +42125751100,4949.0,False,False +42125751200,3185.0,True,True +42125752700,4549.0,False,False +42125753700,1986.0,False,False +42125754200,3075.0,False,False +42125754300,2526.0,True,True +42125754400,1780.0,True,True +42125754500,2519.0,False,False +42125754600,1657.0,True,True +42125755100,4041.0,False,False +42125755200,5399.0,False,False +42125755700,3674.0,False,False +42125761000,5221.0,False,False +42125762000,2593.0,False,False +42125763700,1603.0,False,False +42125764000,3238.0,False,False +42125771100,5974.0,False,False +42125771200,3047.0,False,False +42125772700,2349.0,True,False +42125773100,2860.0,False,False +42125773200,1278.0,False,False +42125774700,5496.0,False,False +42125775200,2147.0,True,True +42125775300,2451.0,True,True +42125781700,4193.0,False,False +42125782700,1351.0,True,True +42125783200,2376.0,True,True +42125783300,1577.0,True,True +42125784000,2648.0,False,False +42125791000,1469.0,True,True +42125792100,3385.0,False,False +42125792200,3096.0,False,True +42125795700,2030.0,True,True +42125795800,4670.0,False,False +42125795900,4080.0,False,False +42125796000,3348.0,False,False +42127960100,1174.0,False,False +42127960200,2833.0,True,True +42127960300,2486.0,False,False +42127960400,3034.0,False,False +42127960500,3611.0,False,False +42127960600,4787.0,False,False +42127960700,4292.0,True,True +42127960800,4375.0,False,False +42127960900,6783.0,False,False +42127961000,5108.0,False,False +42127961100,3752.0,False,False +42127961200,4124.0,True,True +42127961300,2997.0,True,True +42127961400,2066.0,False,False +42129800100,1018.0,True,True +42129800200,1404.0,True,True +42129800300,2480.0,True,True +42129800400,1444.0,False,False +42129800500,2485.0,False,False +42129800600,2451.0,True,True +42129800700,1925.0,True,True +42129800800,1709.0,False,False +42129800900,2454.0,True,True +42129801001,3884.0,False,False +42129801002,2336.0,True,False +42129801100,5009.0,False,False +42129801200,5671.0,False,False +42129801300,4397.0,False,False +42129801400,1728.0,True,True +42129801500,2705.0,True,True +42129801600,1278.0,True,True +42129801701,2386.0,False,False +42129801702,4435.0,False,False +42129801703,2674.0,False,False +42129801800,6044.0,False,False +42129801900,6508.0,False,False +42129802001,2528.0,False,False +42129802002,7695.0,False,False +42129802101,4743.0,False,False +42129802102,5827.0,False,False +42129802103,2464.0,False,False +42129802200,2989.0,False,False +42129802301,5879.0,False,False +42129802303,3027.0,False,False +42129802304,6581.0,False,False +42129802400,4072.0,False,False +42129802500,2073.0,False,False +42129802600,3482.0,True,True +42129802700,1985.0,False,False +42129802800,2138.0,True,True +42129802900,5410.0,False,False +42129803000,4637.0,False,False +42129803100,3788.0,False,False +42129803200,2372.0,False,False +42129803301,5992.0,False,False +42129803302,3736.0,False,False +42129803400,3702.0,False,False +42129803501,4917.0,False,False +42129803502,3831.0,False,False +42129803600,1861.0,False,False +42129803700,4112.0,False,False +42129803800,5671.0,False,False +42129803901,3173.0,False,False +42129803902,3513.0,False,False +42129804000,1303.0,True,True +42129804100,2715.0,True,True +42129804200,3586.0,False,False +42129804300,2242.0,False,False +42129804400,2162.0,False,False +42129804501,4865.0,False,False +42129804502,5512.0,False,False +42129804600,2900.0,False,False +42129804701,3000.0,False,False +42129804702,5722.0,False,False +42129804801,2150.0,True,True +42129804802,6160.0,False,False +42129804900,5054.0,False,False +42129805000,3668.0,False,False +42129805100,2560.0,False,False +42129805200,1993.0,True,True +42129805400,1561.0,True,True +42129805500,3790.0,False,False +42129805600,1796.0,False,False +42129805800,3042.0,False,False +42129805901,1450.0,False,False +42129805902,6570.0,False,False +42129806000,2646.0,True,True +42129806100,3472.0,False,False +42129806200,2541.0,False,False +42129806300,1881.0,False,False +42129806400,2284.0,False,False +42129806500,4762.0,False,False +42129806600,2971.0,True,False +42129806700,2799.0,False,False +42129806800,1478.0,False,False +42129806900,3823.0,False,False +42129807000,3415.0,False,False +42129807100,3308.0,False,False +42129807200,7634.0,False,False +42129807300,4778.0,False,False +42129807401,2142.0,False,False +42129807402,7801.0,False,False +42129807500,2206.0,False,False +42129807600,2499.0,True,True +42129807700,3224.0,False,False +42129807800,3878.0,False,False +42129807900,6291.0,False,False +42129808100,4424.0,True,True +42129808200,2540.0,True,True +42129808300,4891.0,False,False +42129808401,2136.0,False,False +42129808402,4431.0,False,False +42129808500,1405.0,False,False +42129808600,4506.0,False,False +42131400100,3096.0,True,True +42131400200,4188.0,False,False +42131400300,4416.0,False,False +42131400400,4245.0,False,False +42131400500,4247.0,False,False +42131400600,3277.0,False,False +42131400700,3858.0,False,False +42133000100,1131.0,True,True +42133000200,2938.0,True,True +42133000300,2196.0,True,True +42133000400,1989.0,True,True +42133000500,2724.0,True,True +42133000600,3127.0,True,True +42133000700,3586.0,True,True +42133000800,2114.0,False,False +42133000900,3549.0,False,True +42133001000,1493.0,True,True +42133001100,3579.0,True,True +42133001200,3238.0,True,True +42133001300,3281.0,False,False +42133001400,4046.0,False,False +42133001500,3443.0,True,True +42133001600,1588.0,True,True +42133010110,9682.0,False,False +42133010120,4668.0,False,False +42133010130,3726.0,False,False +42133010210,2968.0,False,False +42133010220,5729.0,False,False +42133010300,1828.0,False,False +42133010400,3635.0,False,False +42133010510,5311.0,False,False +42133010520,2273.0,False,False +42133020100,3270.0,False,False +42133020220,4438.0,False,False +42133020221,5073.0,False,False +42133020222,4618.0,False,False +42133020310,2658.0,False,False +42133020320,7528.0,False,False +42133020410,5253.0,False,False +42133020420,8959.0,False,False +42133020510,4009.0,False,False +42133020521,6226.0,False,False +42133020522,3936.0,False,False +42133020600,7614.0,False,False +42133020710,6186.0,False,False +42133020720,10022.0,False,False +42133020800,8241.0,False,False +42133020910,6435.0,False,False +42133020921,7575.0,False,False +42133020922,3961.0,False,False +42133021010,4836.0,False,False +42133021020,7180.0,False,False +42133021100,4817.0,False,False +42133021210,8469.0,False,False +42133021220,7440.0,False,False +42133021300,4563.0,True,True +42133021410,5062.0,False,False +42133021420,7209.0,False,False +42133021500,3719.0,False,False +42133021600,2822.0,False,False +42133021711,3039.0,False,False +42133021712,6379.0,False,False +42133021720,4507.0,False,False +42133021801,4952.0,False,False +42133021802,4338.0,False,False +42133021900,7080.0,False,False +42133022000,3681.0,True,True +42133022100,3254.0,True,True +42133022200,4675.0,False,False +42133022300,3999.0,True,True +42133022401,3469.0,False,False +42133022402,8425.0,False,False +42133022500,3886.0,False,False +42133022600,8768.0,False,False +42133022700,6256.0,False,False +42133022800,7603.0,False,False +42133022910,10274.0,False,False +42133022920,4435.0,False,False +42133023000,4984.0,False,False +42133023100,6302.0,True,False +42133023200,6122.0,False,False +42133023301,6751.0,False,False +42133023302,6537.0,False,False +42133023400,5596.0,False,False +42133023500,5445.0,False,False +42133023601,3808.0,False,False +42133023602,4937.0,False,False +42133023710,3883.0,False,False +42133023721,6154.0,False,False +42133023722,3098.0,False,False +42133023810,4719.0,False,False +42133023821,5630.0,False,False +42133023822,7159.0,False,False +42133023901,7380.0,False,False +42133023902,2855.0,False,False +42133024001,5601.0,False,False +42133024002,3623.0,False,False +44001030100,4362.0,False,False +44001030200,3258.0,False,False +44001030300,4436.0,False,False +44001030400,4075.0,False,False +44001030500,3136.0,True,True +44001030601,3375.0,False,False +44001030602,3977.0,False,False +44001030700,3412.0,False,False +44001030800,6289.0,False,False +44001030901,5903.0,False,False +44001030902,6541.0,False,False +44003020101,6928.0,False,False +44003020102,4871.0,False,False +44003020200,4569.0,False,False +44003020300,5468.0,True,True +44003020400,2938.0,False,True +44003020500,4170.0,False,False +44003020601,6202.0,False,False +44003020602,3463.0,False,False +44003020603,6506.0,False,False +44003020604,5480.0,False,False +44003020701,1798.0,False,False +44003020702,4505.0,False,False +44003020703,6673.0,False,False +44003020800,6224.0,False,False +44003020901,3636.0,False,False +44003020903,6085.0,False,False +44003020904,3360.0,False,False +44003021001,2563.0,False,False +44003021002,4614.0,False,False +44003021100,4925.0,False,False +44003021200,3393.0,False,False +44003021300,4616.0,False,False +44003021401,3871.0,False,False +44003021402,3781.0,False,False +44003021501,3148.0,False,False +44003021502,4172.0,False,False +44003021600,1633.0,False,False +44003021700,4364.0,False,False +44003021800,4025.0,False,False +44003021901,3117.0,False,False +44003021902,2885.0,False,False +44003021903,3864.0,False,False +44003022000,3100.0,False,False +44003022100,5505.0,False,False +44003022201,6746.0,False,False +44003022202,4175.0,False,False +44003022300,4385.0,False,False +44003022400,2111.0,False,False +44003980000,0.0,False,False +44005040101,4857.0,False,False +44005040102,5812.0,False,False +44005040103,6694.0,False,False +44005040200,1259.0,True,True +44005040302,2713.0,False,False +44005040303,3516.0,False,False +44005040304,2924.0,False,False +44005040400,5606.0,False,False +44005040500,4658.0,True,True +44005040600,3920.0,False,False +44005040700,3237.0,False,False +44005040800,2334.0,False,False +44005040900,4987.0,False,False +44005041000,1783.0,False,False +44005041100,1346.0,False,False +44005041200,2398.0,False,False +44005041300,5494.0,False,False +44005041400,3489.0,False,False +44005041601,3297.0,False,False +44005041602,4507.0,False,False +44005041701,3464.0,False,False +44005041702,4506.0,False,False +44005990000,0.0,False,False +44007000101,5247.0,False,True +44007000102,5447.0,True,True +44007000200,6741.0,True,True +44007000300,7225.0,True,True +44007000400,4229.0,True,True +44007000500,3283.0,True,True +44007000600,1711.0,True,True +44007000700,2395.0,True,True +44007000800,4595.0,False,True +44007000900,2889.0,True,True +44007001000,2100.0,True,True +44007001100,2282.0,False,True +44007001200,3792.0,True,True +44007001300,3933.0,True,True +44007001400,7668.0,True,True +44007001500,3243.0,False,False +44007001600,8428.0,True,True +44007001700,3758.0,True,True +44007001800,6613.0,True,True +44007001900,4521.0,True,True +44007002000,6305.0,False,True +44007002101,2774.0,False,False +44007002102,6150.0,False,False +44007002200,4606.0,True,True +44007002300,4296.0,False,False +44007002400,7347.0,False,False +44007002500,2924.0,False,False +44007002600,2835.0,True,True +44007002700,6068.0,True,True +44007002800,6395.0,True,True +44007002900,7272.0,True,True +44007003100,4151.0,True,True +44007003200,3382.0,False,False +44007003300,4365.0,False,False +44007003400,4510.0,False,False +44007003500,4837.0,False,False +44007003601,2425.0,False,False +44007003602,5601.0,False,False +44007003700,3151.0,False,False +44007010101,4180.0,False,False +44007010102,3683.0,False,False +44007010200,7162.0,False,False +44007010300,3786.0,False,True +44007010400,6441.0,False,True +44007010501,4606.0,False,False +44007010502,5071.0,False,False +44007010600,6220.0,False,False +44007010701,2370.0,False,False +44007010702,3964.0,False,False +44007010800,4491.0,True,True +44007010900,5019.0,True,True +44007011000,6024.0,True,True +44007011100,3895.0,True,True +44007011200,5686.0,False,False +44007011301,4796.0,False,False +44007011302,4151.0,False,False +44007011401,9131.0,False,False +44007011402,3938.0,False,False +44007011403,7144.0,False,False +44007011500,6542.0,False,False +44007011600,6365.0,False,False +44007011701,4615.0,False,False +44007011702,4209.0,False,False +44007011800,7136.0,False,False +44007011901,3428.0,False,False +44007011902,4421.0,False,False +44007012000,6041.0,False,False +44007012102,4351.0,False,False +44007012103,2612.0,False,False +44007012104,4575.0,False,False +44007012200,7427.0,False,False +44007012300,6982.0,False,False +44007012401,7372.0,False,False +44007012402,2689.0,False,False +44007012500,4837.0,False,False +44007012601,4379.0,False,False +44007012602,7547.0,False,False +44007012701,4868.0,False,False +44007012702,4899.0,False,False +44007012801,5579.0,False,False +44007012802,2305.0,False,False +44007012803,4529.0,False,False +44007012900,5069.0,False,False +44007013001,3392.0,False,False +44007013002,8127.0,False,False +44007013101,4982.0,False,False +44007013102,5159.0,False,False +44007013201,4930.0,False,False +44007013202,5704.0,False,False +44007013300,4713.0,False,False +44007013400,4113.0,False,False +44007013500,4654.0,False,False +44007013600,2641.0,False,False +44007013701,4369.0,False,False +44007013702,3159.0,False,False +44007013800,5031.0,False,False +44007013900,2877.0,False,False +44007014000,6360.0,False,False +44007014100,4914.0,True,True +44007014200,5188.0,False,False +44007014300,4997.0,False,False +44007014400,3536.0,False,False +44007014501,5098.0,False,False +44007014502,4105.0,False,False +44007014600,6580.0,False,False +44007014700,7919.0,True,True +44007014800,5713.0,False,False +44007015000,4597.0,False,False +44007015100,4685.0,True,True +44007015200,3177.0,True,True +44007015300,2251.0,True,True +44007015400,2367.0,True,True +44007015500,4144.0,False,False +44007015600,2125.0,False,False +44007015700,3263.0,False,False +44007015800,3391.0,False,False +44007015900,3584.0,False,False +44007016000,3454.0,False,True +44007016100,4687.0,True,True +44007016300,3000.0,False,False +44007016400,4214.0,True,True +44007016500,3804.0,False,False +44007016600,1848.0,True,True +44007016700,3725.0,True,True +44007016800,3101.0,False,False +44007016900,1682.0,False,False +44007017000,4312.0,False,False +44007017100,4433.0,True,True +44007017300,3172.0,False,False +44007017400,4411.0,True,True +44007017500,2759.0,False,False +44007017600,2898.0,True,True +44007017700,3642.0,False,False +44007017800,2094.0,True,True +44007017900,3170.0,True,True +44007018000,2838.0,True,True +44007018100,2740.0,True,True +44007018200,3250.0,False,True +44007018300,1645.0,True,True +44007018400,6217.0,True,True +44007018500,2767.0,False,False +44009041500,916.0,False,False +44009050102,2184.0,False,False +44009050103,5619.0,True,True +44009050104,3647.0,False,False +44009050301,4683.0,False,False +44009050302,2680.0,False,False +44009050401,4780.0,False,False +44009050402,2642.0,False,False +44009050500,6664.0,False,False +44009050600,7653.0,False,False +44009050700,8097.0,False,False +44009050801,5759.0,True,True +44009050802,4075.0,False,False +44009050901,5896.0,False,False +44009050902,5151.0,False,False +44009051000,1663.0,False,False +44009051101,4697.0,False,False +44009051102,3102.0,False,False +44009051201,4838.0,False,False +44009051202,5118.0,False,False +44009051302,3671.0,False,False +44009051304,1945.0,False,False +44009051305,3747.0,False,False +44009051306,5989.0,False,False +44009051400,5344.0,False,True +44009051502,7547.0,False,False +44009051503,3790.0,False,False +44009051504,4163.0,False,False +44009990100,0.0,False,False +44009990200,0.0,False,False +45001950100,2981.0,True,True +45001950200,4310.0,False,False +45001950300,3464.0,True,True +45001950400,5901.0,False,False +45001950500,5214.0,True,True +45001950600,2757.0,True,True +45003020100,4948.0,True,False +45003020200,5906.0,False,False +45003020301,2450.0,False,False +45003020302,6669.0,True,True +45003020400,9101.0,True,True +45003020500,8648.0,False,False +45003020601,3910.0,False,False +45003020602,6013.0,True,False +45003020701,4974.0,False,False +45003020702,5197.0,True,True +45003020801,3051.0,False,False +45003020802,5511.0,True,False +45003020901,2438.0,True,True +45003020902,5778.0,True,True +45003021001,4683.0,True,True +45003021002,5144.0,True,True +45003021101,3005.0,True,True +45003021102,4003.0,True,True +45003021201,5391.0,False,False +45003021202,3618.0,False,False +45003021203,8698.0,False,False +45003021300,4820.0,False,False +45003021400,5735.0,True,True +45003021500,5526.0,False,False +45003021601,6053.0,True,True +45003021602,8819.0,False,False +45003021700,5003.0,True,True +45003021800,2550.0,True,True +45003021900,5709.0,True,True +45003022001,4535.0,True,True +45003022002,6804.0,False,False +45003022100,3611.0,False,False +45003980100,0.0,False,False +45005970200,4216.0,True,True +45005970300,1126.0,True,True +45005970400,3682.0,True,True +45007000200,4335.0,False,False +45007000300,4717.0,False,False +45007000500,3018.0,True,True +45007000600,3161.0,True,True +45007000700,4471.0,True,True +45007000800,3122.0,True,True +45007000900,3423.0,True,True +45007001000,2498.0,False,False +45007001100,5073.0,False,False +45007010102,7454.0,False,False +45007010103,9267.0,False,False +45007010104,8997.0,False,False +45007010200,5026.0,False,False +45007010300,3906.0,True,False +45007010401,6522.0,False,False +45007010402,7349.0,True,True +45007010500,7194.0,False,False +45007010600,7643.0,False,False +45007010700,6567.0,False,False +45007010800,4481.0,False,False +45007010900,4121.0,False,False +45007011001,4899.0,False,False +45007011002,4500.0,False,False +45007011100,2515.0,False,False +45007011201,4847.0,False,False +45007011202,9346.0,False,False +45007011300,6890.0,False,False +45007011401,4346.0,True,True +45007011402,3847.0,True,True +45007011500,5695.0,True,False +45007011600,2031.0,False,False +45007011700,5536.0,True,True +45007011800,3568.0,True,True +45007011901,5397.0,True,True +45007011902,3241.0,True,True +45007012001,5118.0,False,False +45007012002,4942.0,False,False +45007012200,5924.0,True,False +45007012300,3077.0,True,True +45009960100,4980.0,False,True +45009960200,7037.0,True,True +45009960300,1248.0,True,True +45009960400,1111.0,True,True +45011970100,5401.0,True,True +45011970200,3257.0,True,True +45011970300,3986.0,True,True +45011970400,4850.0,False,True +45011970500,3852.0,True,True +45011980100,0.0,False,False +45013000100,4045.0,True,True +45013000200,6386.0,True,True +45013000300,4279.0,True,True +45013000400,787.0,True,True +45013000501,7917.0,False,False +45013000502,7253.0,True,True +45013000503,6369.0,False,False +45013000600,2406.0,True,True +45013000700,5780.0,False,False +45013000800,7132.0,True,True +45013000901,3010.0,False,False +45013000902,9587.0,False,False +45013000903,2352.0,True,True +45013001000,4083.0,True,True +45013001101,4417.0,False,False +45013001102,6015.0,True,True +45013001200,1154.0,False,False +45013002101,444.0,False,False +45013002102,3315.0,False,False +45013002103,7145.0,False,False +45013002104,12195.0,False,False +45013002105,4251.0,False,False +45013002106,9648.0,False,False +45013002107,10379.0,True,True +45013002108,4399.0,False,False +45013002201,7150.0,False,False +45013002202,3401.0,False,False +45013010100,1880.0,False,False +45013010200,4028.0,False,False +45013010300,4062.0,False,False +45013010400,5554.0,False,False +45013010500,4364.0,True,True +45013010600,4404.0,False,False +45013010700,5089.0,False,False +45013010800,3628.0,True,True +45013010900,2114.0,False,False +45013011000,1733.0,False,False +45013011100,2117.0,False,False +45013011200,762.0,False,False +45013011300,1061.0,False,False +45013990100,0.0,False,False +45015020101,2954.0,True,True +45015020102,3515.0,True,True +45015020201,3676.0,True,True +45015020202,3714.0,True,True +45015020301,3543.0,True,True +45015020302,6736.0,False,False +45015020401,4097.0,True,True +45015020403,8030.0,False,False +45015020404,5074.0,False,False +45015020405,3405.0,True,True +45015020503,4824.0,False,False +45015020504,4446.0,False,False +45015020505,4186.0,False,False +45015020506,5722.0,False,False +45015020600,9725.0,False,False +45015020707,6885.0,False,False +45015020710,7348.0,True,True +45015020711,9536.0,False,False +45015020712,3339.0,False,False +45015020713,4019.0,False,False +45015020714,5150.0,False,False +45015020715,4532.0,True,True +45015020716,8936.0,False,False +45015020717,5393.0,True,True +45015020718,6089.0,True,True +45015020719,7630.0,False,False +45015020720,2842.0,False,False +45015020721,3299.0,False,False +45015020722,3150.0,False,False +45015020723,3268.0,False,False +45015020724,3621.0,False,False +45015020725,1451.0,True,False +45015020804,2483.0,False,False +45015020806,3920.0,True,True +45015020807,8083.0,False,False +45015020808,4207.0,False,False +45015020809,3465.0,False,False +45015020810,4662.0,True,False +45015020811,5009.0,True,True +45015020812,7288.0,False,False +45015020901,1977.0,True,True +45015020903,3823.0,False,False +45015020904,4754.0,False,False +45015021000,5238.0,True,True +45015980100,0.0,False,False +45017950100,5087.0,False,False +45017950200,6046.0,False,False +45017950400,3530.0,True,True +45019000100,1967.0,False,False +45019000200,1291.0,False,False +45019000400,3124.0,False,True +45019000500,1789.0,False,False +45019000600,1182.0,False,False +45019000700,2558.0,False,False +45019000900,1404.0,False,True +45019001000,2582.0,False,False +45019001100,2718.0,True,True +45019001500,1461.0,False,False +45019001600,1862.0,False,False +45019001901,4392.0,False,False +45019001902,5068.0,False,False +45019002002,6746.0,False,False +45019002003,10008.0,False,False +45019002004,1611.0,False,False +45019002005,7028.0,False,False +45019002006,5299.0,False,False +45019002007,3639.0,False,False +45019002101,14007.0,False,False +45019002103,3518.0,False,False +45019002104,1676.0,False,False +45019002105,1842.0,False,False +45019002200,2910.0,True,True +45019002300,1670.0,True,True +45019002400,4849.0,True,True +45019002502,7266.0,True,True +45019002604,3359.0,False,False +45019002605,3923.0,False,False +45019002606,2287.0,False,False +45019002611,2889.0,False,False +45019002612,6354.0,False,False +45019002613,5810.0,False,False +45019002614,3519.0,False,False +45019002701,2493.0,True,True +45019002702,4988.0,True,True +45019002801,4568.0,False,False +45019002802,2606.0,False,False +45019002900,2788.0,False,False +45019003000,3614.0,False,False +45019003104,4999.0,True,True +45019003105,4381.0,True,True +45019003106,9437.0,True,True +45019003107,5515.0,False,False +45019003108,3784.0,True,False +45019003109,3192.0,False,False +45019003110,6751.0,True,True +45019003111,4161.0,True,True +45019003113,3740.0,True,True +45019003114,8849.0,False,False +45019003115,8846.0,True,True +45019003200,1649.0,False,False +45019003300,4359.0,True,True +45019003400,4699.0,True,True +45019003500,3142.0,False,False +45019003600,2723.0,False,False +45019003700,3593.0,True,True +45019003800,3774.0,True,True +45019003900,5376.0,False,False +45019004000,2849.0,True,True +45019004300,2733.0,True,True +45019004400,2276.0,True,True +45019004606,10271.0,False,False +45019004607,5627.0,False,False +45019004608,29512.0,False,False +45019004609,7996.0,False,False +45019004610,4283.0,False,False +45019004611,9600.0,False,False +45019004612,7240.0,False,False +45019004613,1754.0,False,False +45019004614,7715.0,False,False +45019004701,6178.0,False,False +45019004702,2501.0,False,False +45019004800,2203.0,False,False +45019004901,1850.0,False,False +45019004902,2510.0,False,False +45019005000,5141.0,True,True +45019005100,1350.0,False,False +45019005200,4894.0,False,False +45019005300,3259.0,True,True +45019005400,2614.0,True,True +45019005500,1497.0,True,True +45019005600,13568.0,False,False +45019005700,8881.0,False,False +45019005800,7228.0,False,False +45019990100,0.0,False,False +45021970100,7990.0,True,True +45021970201,3395.0,True,False +45021970202,7510.0,False,False +45021970301,4234.0,True,False +45021970302,4151.0,True,True +45021970401,3740.0,True,True +45021970402,6239.0,True,True +45021970501,1993.0,True,True +45021970502,5076.0,True,True +45021970503,1432.0,True,True +45021970601,4241.0,False,False +45021970602,2877.0,False,False +45021970700,4017.0,True,True +45023020100,1684.0,True,True +45023020200,3002.0,True,True +45023020300,3548.0,True,True +45023020400,2545.0,True,True +45023020500,2874.0,True,True +45023020601,2171.0,False,False +45023020602,4498.0,False,False +45023020700,2158.0,False,False +45023020800,5350.0,True,True +45023020900,2150.0,True,True +45023021000,2331.0,True,True +45025950101,4932.0,True,True +45025950102,4094.0,True,True +45025950200,4968.0,True,True +45025950300,2815.0,True,False +45025950400,7582.0,False,False +45025950501,2377.0,True,True +45025950502,6022.0,True,True +45025950600,5429.0,False,True +45025950700,4846.0,True,True +45025950800,2888.0,True,True +45027960100,3758.0,True,True +45027960201,1824.0,False,False +45027960202,1218.0,False,False +45027960300,2059.0,True,True +45027960400,2398.0,True,True +45027960500,4784.0,True,True +45027960600,2617.0,True,True +45027960701,3997.0,False,True +45027960702,1124.0,True,True +45027960703,3564.0,False,True +45027960801,3287.0,True,True +45027960802,3327.0,True,True +45029970100,1623.0,True,True +45029970200,1309.0,True,True +45029970300,6258.0,True,True +45029970401,3866.0,True,True +45029970402,3483.0,True,True +45029970500,5040.0,True,True +45029970600,7756.0,True,True +45029970700,6464.0,True,True +45029970800,1786.0,True,True +45029990100,0.0,False,False +45031010100,2707.0,True,True +45031010200,5706.0,False,True +45031010300,5378.0,False,False +45031010400,6004.0,False,False +45031010500,2661.0,False,False +45031010600,5293.0,True,True +45031010700,2728.0,True,True +45031010800,2585.0,True,True +45031010900,7274.0,True,True +45031011000,3125.0,True,True +45031011100,1945.0,True,True +45031011200,4377.0,True,True +45031011300,5218.0,True,True +45031011400,4296.0,True,True +45031011500,4255.0,True,True +45031011600,3475.0,True,True +45033970100,3475.0,True,True +45033970200,5629.0,True,True +45033970300,5441.0,True,True +45033970400,4757.0,True,True +45033970500,3848.0,True,True +45033970600,7539.0,True,True +45035010100,2358.0,True,True +45035010200,5082.0,True,True +45035010300,6380.0,True,True +45035010400,7002.0,False,False +45035010501,6784.0,False,False +45035010503,4938.0,False,False +45035010504,8521.0,False,False +45035010505,6839.0,False,False +45035010603,7411.0,False,False +45035010604,4590.0,True,True +45035010605,8800.0,True,True +45035010606,2076.0,False,False +45035010700,6261.0,True,True +45035010801,7038.0,False,False +45035010807,5750.0,False,False +45035010808,8065.0,False,False +45035010809,4425.0,False,False +45035010813,9284.0,False,False +45035010814,6474.0,False,False +45035010815,3182.0,True,True +45035010816,13455.0,False,False +45035010817,4166.0,False,False +45035010818,7909.0,True,True +45035010819,5128.0,False,False +45035010820,6381.0,False,False +45037970201,1909.0,True,True +45037970202,7253.0,False,False +45037970300,4672.0,True,True +45037970400,3331.0,True,True +45037970501,4242.0,True,False +45037970502,5520.0,False,False +45039960100,2029.0,True,True +45039960200,3493.0,True,True +45039960300,6026.0,True,True +45039960400,6245.0,True,True +45039960500,4772.0,True,True +45041000101,3609.0,False,False +45041000102,6152.0,False,False +45041000201,2578.0,False,False +45041000202,7944.0,False,False +45041000300,4353.0,True,True +45041000400,4627.0,False,False +45041000500,6530.0,False,False +45041000600,5177.0,False,False +45041000700,2336.0,True,True +45041000800,3892.0,True,True +45041000900,4002.0,True,True +45041001000,1903.0,True,True +45041001100,4589.0,True,True +45041001200,3214.0,False,False +45041001300,3762.0,False,False +45041001400,7814.0,False,False +45041001503,3778.0,False,False +45041001504,6133.0,False,False +45041001505,3732.0,False,False +45041001506,2187.0,True,True +45041001601,6522.0,True,True +45041001602,4945.0,False,False +45041001700,2618.0,True,True +45041001800,3607.0,True,True +45041001900,6296.0,True,True +45041002000,3876.0,True,True +45041002201,5038.0,True,True +45041002202,3637.0,True,True +45041002300,3620.0,False,False +45041002400,3387.0,True,True +45041002500,3134.0,True,True +45041002600,3483.0,True,True +45041980100,0.0,False,False +45043920100,4139.0,True,True +45043920201,4889.0,True,True +45043920202,2270.0,True,True +45043920301,4769.0,True,True +45043920302,3015.0,False,False +45043920400,2629.0,True,True +45043920501,5724.0,False,False +45043920502,3600.0,True,True +45043920503,6140.0,True,True +45043920504,5904.0,False,False +45043920505,4538.0,False,False +45043920600,5839.0,True,True +45043920700,5092.0,True,True +45043920800,3404.0,True,True +45043990100,0.0,False,False +45045000100,2447.0,False,False +45045000200,1491.0,False,False +45045000400,1336.0,False,False +45045000500,1438.0,True,True +45045000700,2571.0,True,True +45045000800,1371.0,True,True +45045000900,1109.0,True,True +45045001000,2200.0,False,False +45045001101,4158.0,False,False +45045001102,1970.0,False,False +45045001203,2635.0,False,False +45045001204,2717.0,False,False +45045001205,1334.0,True,True +45045001302,1516.0,False,False +45045001400,4010.0,False,False +45045001501,4300.0,False,False +45045001502,2587.0,True,True +45045001600,4909.0,False,False +45045001700,3888.0,True,True +45045001803,4458.0,True,True +45045001804,4405.0,False,False +45045001805,4523.0,False,False +45045001807,5134.0,False,False +45045001808,3817.0,False,False +45045001809,3207.0,False,False +45045001810,3562.0,True,True +45045001900,7210.0,False,False +45045002001,3275.0,True,True +45045002003,4866.0,True,True +45045002005,3948.0,True,True +45045002103,3165.0,False,False +45045002104,1940.0,True,True +45045002105,2593.0,True,True +45045002106,3300.0,True,True +45045002107,2525.0,True,True +45045002108,1584.0,True,True +45045002201,6209.0,True,True +45045002202,2353.0,True,True +45045002301,4248.0,True,True +45045002302,4204.0,True,True +45045002303,1992.0,True,True +45045002304,2498.0,True,True +45045002402,8266.0,False,False +45045002403,4624.0,False,False +45045002404,3561.0,False,False +45045002503,10498.0,False,False +45045002504,1643.0,True,True +45045002505,3530.0,True,True +45045002506,3882.0,False,False +45045002507,4876.0,False,False +45045002602,4444.0,False,False +45045002604,5929.0,False,False +45045002606,6003.0,False,False +45045002608,9138.0,False,False +45045002609,6762.0,False,False +45045002610,3178.0,False,False +45045002611,5504.0,False,False +45045002701,4310.0,False,False +45045002702,7338.0,False,False +45045002803,8157.0,False,False +45045002804,2127.0,False,False +45045002805,5071.0,False,False +45045002808,8322.0,False,False +45045002811,8991.0,False,False +45045002812,7417.0,False,False +45045002813,4602.0,False,False +45045002814,6580.0,False,False +45045002815,6123.0,False,False +45045002816,12304.0,False,False +45045002901,6505.0,False,False +45045002903,7996.0,False,False +45045002904,5863.0,False,False +45045002905,4900.0,False,False +45045003005,2801.0,True,True +45045003008,7087.0,False,False +45045003009,8386.0,False,False +45045003010,7850.0,False,False +45045003011,5824.0,False,False +45045003012,5480.0,False,False +45045003013,8183.0,False,False +45045003014,6146.0,False,False +45045003015,10382.0,False,False +45045003101,8625.0,False,True +45045003103,2989.0,False,False +45045003104,2187.0,False,False +45045003201,5778.0,False,False +45045003202,3335.0,False,False +45045003301,7464.0,True,True +45045003303,5468.0,False,False +45045003304,7189.0,False,False +45045003401,832.0,True,True +45045003500,2563.0,True,False +45045003601,5835.0,True,False +45045003602,2795.0,True,True +45045003701,6045.0,True,False +45045003704,4355.0,True,True +45045003705,1828.0,True,True +45045003706,3494.0,True,True +45045003707,3569.0,True,True +45045003801,7008.0,False,False +45045003802,4933.0,False,False +45045003902,4235.0,False,False +45045003903,4778.0,True,True +45045003904,6156.0,True,False +45045004001,3358.0,False,False +45045004002,5704.0,False,False +45045004101,3803.0,True,True +45045004102,899.0,False,False +45045004200,2365.0,False,False +45045004300,3751.0,True,True +45045004400,2076.0,True,True +45047970101,3405.0,False,False +45047970102,4923.0,True,True +45047970201,4103.0,False,False +45047970202,7984.0,True,False +45047970301,4800.0,False,False +45047970302,6067.0,False,False +45047970400,5759.0,False,False +45047970500,4872.0,True,True +45047970600,8029.0,True,True +45047970701,2609.0,True,False +45047970702,5084.0,True,False +45047970800,8777.0,True,True +45047970900,2170.0,True,True +45047971000,1829.0,True,True +45049920100,2448.0,True,True +45049920200,6663.0,True,True +45049920300,1940.0,True,True +45049920400,6634.0,True,True +45049920500,1879.0,True,True +45051010100,2836.0,True,True +45051020100,3379.0,True,True +45051020200,5708.0,True,True +45051020300,7820.0,True,True +45051030101,688.0,True,True +45051030102,3230.0,True,True +45051030103,4107.0,True,True +45051040101,5970.0,True,True +45051040102,5214.0,False,False +45051040103,5970.0,True,False +45051040104,2912.0,False,False +45051040105,2525.0,False,False +45051040200,3955.0,False,False +45051040300,3975.0,False,False +45051040400,4061.0,True,False +45051040500,4000.0,False,False +45051050102,3636.0,False,False +45051050200,1726.0,False,False +45051050303,3073.0,False,False +45051050401,2896.0,True,True +45051050402,2315.0,False,False +45051050500,4615.0,True,True +45051050600,5295.0,True,True +45051050700,1505.0,True,True +45051050900,6673.0,True,True +45051051000,5883.0,False,False +45051051201,1913.0,False,False +45051051202,2423.0,False,False +45051051301,1493.0,False,False +45051051302,2610.0,False,False +45051051403,5842.0,False,False +45051051404,4723.0,True,True +45051051405,4077.0,False,False +45051051406,3703.0,True,True +45051051501,4198.0,True,True +45051051502,10409.0,True,True +45051051503,4635.0,True,False +45051051601,11542.0,False,False +45051051603,5572.0,False,False +45051051604,11687.0,False,False +45051051605,7554.0,False,False +45051051700,1524.0,False,False +45051060101,5149.0,False,True +45051060102,3231.0,True,True +45051060203,7889.0,False,False +45051060204,8334.0,False,False +45051060206,9202.0,False,False +45051060207,7223.0,False,False +45051060208,3796.0,True,True +45051060209,7062.0,False,False +45051060301,4264.0,True,True +45051060303,2628.0,False,False +45051060308,6775.0,False,False +45051060403,2945.0,True,False +45051060404,2345.0,False,False +45051060405,7451.0,False,False +45051060406,6790.0,False,False +45051070101,4845.0,False,False +45051070102,3514.0,False,False +45051070200,3259.0,False,False +45051070300,4254.0,True,True +45051070400,6357.0,True,True +45051070500,3826.0,True,True +45051070601,4524.0,True,True +45051070602,4912.0,False,False +45051070701,6730.0,False,False +45051070702,5536.0,True,True +45051080101,3764.0,True,True +45051080102,2796.0,False,True +45051080200,4747.0,True,True +45051980100,152.0,False,False +45051990100,0.0,False,False +45053950100,4958.0,True,True +45053950201,6683.0,False,False +45053950202,8097.0,True,True +45053950300,8919.0,True,True +45053990100,0.0,False,False +45055970100,2178.0,True,True +45055970200,2579.0,True,True +45055970300,2131.0,True,True +45055970401,4689.0,False,False +45055970402,3293.0,True,False +45055970403,2336.0,True,True +45055970500,5516.0,False,False +45055970601,5968.0,True,True +45055970602,4701.0,True,True +45055970700,3032.0,False,True +45055970800,5977.0,True,True +45055970902,3107.0,True,True +45055970903,7517.0,False,False +45055970904,9368.0,False,False +45055970905,2720.0,False,False +45057010100,4111.0,False,False +45057010200,8023.0,True,True +45057010300,5432.0,False,False +45057010400,2317.0,False,False +45057010500,5051.0,True,True +45057010600,6172.0,False,False +45057010700,3879.0,True,True +45057010800,2710.0,True,True +45057010900,3694.0,False,False +45057011001,5288.0,True,True +45057011002,4749.0,True,True +45057011100,5979.0,False,False +45057011201,16150.0,False,False +45057011202,18753.0,False,False +45059920101,7863.0,True,False +45059920102,1387.0,True,False +45059920103,4292.0,True,False +45059920104,3540.0,True,True +45059920201,3060.0,False,False +45059920202,3457.0,True,True +45059920301,3742.0,True,False +45059920302,4778.0,True,True +45059920400,4913.0,False,False +45059920501,1689.0,False,False +45059920502,5768.0,True,True +45059920600,4281.0,True,True +45059920700,4789.0,True,True +45059920800,5307.0,False,False +45059920900,2209.0,False,False +45059921001,3054.0,True,True +45059921002,2717.0,True,True +45061920100,1215.0,True,True +45061920200,4716.0,True,True +45061920301,0.0,False,False +45061920302,4720.0,True,True +45061920400,3549.0,True,True +45061920500,1647.0,True,True +45061920600,1518.0,True,True +45063020100,2745.0,False,False +45063020201,2864.0,False,False +45063020202,2392.0,True,False +45063020300,3949.0,True,True +45063020505,3936.0,True,True +45063020506,5208.0,False,False +45063020507,6693.0,True,True +45063020508,2051.0,False,False +45063020509,3404.0,True,False +45063020510,4598.0,False,False +45063020511,3552.0,False,False +45063020601,4384.0,False,False +45063020602,4346.0,False,False +45063020604,3424.0,False,False +45063020605,2457.0,False,False +45063020703,4547.0,True,False +45063020705,3584.0,True,True +45063020706,3433.0,True,True +45063020707,3359.0,False,False +45063020708,2575.0,True,False +45063020801,1437.0,True,True +45063020802,2592.0,True,True +45063020803,2993.0,True,True +45063020804,2963.0,True,True +45063020805,5541.0,True,True +45063020903,5428.0,True,True +45063020904,2827.0,False,True +45063020905,3597.0,True,True +45063020906,3763.0,True,True +45063020907,7954.0,False,False +45063020908,3551.0,False,False +45063021009,11606.0,False,False +45063021014,7318.0,False,False +45063021017,8580.0,False,False +45063021018,4741.0,False,False +45063021019,1866.0,False,False +45063021020,4327.0,False,False +45063021021,1877.0,False,False +45063021022,5820.0,False,False +45063021023,2871.0,False,False +45063021024,6484.0,False,False +45063021025,3968.0,False,False +45063021026,5018.0,False,False +45063021027,4475.0,False,False +45063021028,3250.0,False,False +45063021029,4084.0,True,False +45063021030,4974.0,False,False +45063021031,3953.0,False,False +45063021032,3940.0,False,False +45063021033,4944.0,False,False +45063021034,4879.0,False,False +45063021106,2825.0,False,False +45063021109,3307.0,False,False +45063021110,2979.0,False,False +45063021111,2578.0,False,False +45063021112,2831.0,False,False +45063021113,3407.0,False,False +45063021114,3648.0,False,False +45063021115,2466.0,False,False +45063021116,3124.0,False,False +45063021203,6244.0,False,False +45063021204,4370.0,False,False +45063021205,3225.0,False,False +45063021206,3326.0,False,False +45063021303,4309.0,False,False +45063021304,3720.0,False,False +45063021305,3261.0,True,True +45063021306,3721.0,False,False +45063021307,1896.0,True,True +45063021308,4480.0,True,False +45063021402,3726.0,True,True +45063021403,2480.0,True,True +45063021404,3233.0,False,False +45063980100,0.0,False,False +45065920100,2081.0,False,False +45065920200,5524.0,True,True +45065920300,1926.0,True,True +45067950100,4757.0,True,True +45067950200,5728.0,True,True +45067950300,2403.0,True,True +45067950400,3507.0,True,True +45067950500,5335.0,True,True +45067950600,5505.0,True,True +45067950700,1598.0,True,True +45067950800,2475.0,True,True +45069960100,3293.0,True,True +45069960200,4785.0,True,True +45069960301,4415.0,True,True +45069960302,5036.0,True,True +45069960400,4595.0,True,True +45069960500,2246.0,True,True +45069960600,2383.0,True,True +45071950100,3765.0,False,False +45071950201,2657.0,True,True +45071950202,7896.0,False,False +45071950300,3432.0,True,True +45071950502,5429.0,True,True +45071950601,4787.0,True,False +45071950602,5978.0,False,False +45071950700,4250.0,True,True +45073030100,4399.0,True,True +45073030200,6105.0,False,False +45073030300,6465.0,False,False +45073030401,7677.0,True,True +45073030402,2221.0,False,False +45073030500,4658.0,True,True +45073030601,5032.0,False,False +45073030602,4291.0,False,False +45073030701,3784.0,True,True +45073030702,6918.0,False,False +45073030800,7572.0,True,True +45073030901,2518.0,False,False +45073030902,7227.0,False,False +45073031000,4888.0,True,True +45073031100,3773.0,True,True +45075010100,5471.0,True,True +45075010200,4707.0,True,True +45075010300,6233.0,True,True +45075010400,3453.0,True,True +45075010500,3167.0,True,True +45075010600,4437.0,True,True +45075010700,2532.0,True,True +45075010800,4344.0,False,False +45075010900,9101.0,True,False +45075011000,6207.0,False,False +45075011100,3452.0,True,True +45075011200,2545.0,False,True +45075011300,2782.0,True,True +45075011400,3319.0,True,True +45075011500,3617.0,True,True +45075011600,5811.0,False,True +45075011700,4956.0,True,True +45075011800,3794.0,True,True +45075011900,4128.0,True,True +45075012000,3631.0,True,True +45077010100,3319.0,False,False +45077010200,4546.0,False,False +45077010300,6127.0,False,False +45077010401,2018.0,True,True +45077010402,5772.0,True,True +45077010403,2156.0,False,False +45077010501,2708.0,False,True +45077010502,3255.0,True,True +45077010601,3300.0,False,False +45077010602,7342.0,False,False +45077010700,3995.0,True,True +45077010801,4297.0,True,True +45077010802,3825.0,False,False +45077010803,4504.0,True,True +45077010804,3457.0,True,False +45077010901,4843.0,False,False +45077010902,6902.0,False,False +45077010903,5982.0,False,False +45077011001,2869.0,False,False +45077011002,6748.0,False,False +45077011003,2677.0,False,False +45077011101,2896.0,False,False +45077011102,7972.0,False,True +45077011103,1342.0,True,True +45077011202,5189.0,False,True +45077011203,6695.0,False,False +45077011204,5435.0,False,False +45077011205,3858.0,False,False +45079000100,2244.0,True,True +45079000200,1620.0,True,True +45079000300,2855.0,True,True +45079000400,1900.0,True,True +45079000500,2220.0,True,True +45079000600,2110.0,False,False +45079000700,1778.0,False,False +45079000900,2411.0,True,True +45079001000,3236.0,False,True +45079001100,3530.0,False,False +45079001200,1852.0,False,False +45079001300,2024.0,False,True +45079001600,1522.0,False,False +45079002100,2866.0,False,False +45079002200,1135.0,False,False +45079002300,2180.0,False,False +45079002400,3676.0,False,False +45079002500,3743.0,False,False +45079002602,3026.0,False,False +45079002603,3779.0,True,True +45079002604,1527.0,True,False +45079002700,2861.0,False,False +45079002800,6527.0,False,False +45079002900,3790.0,False,False +45079003000,2627.0,False,False +45079003100,1304.0,False,True +45079010102,9657.0,False,False +45079010103,21490.0,False,False +45079010104,4781.0,False,False +45079010200,5427.0,True,True +45079010304,7624.0,True,True +45079010305,7209.0,False,False +45079010306,12031.0,False,False +45079010307,11767.0,False,False +45079010308,5724.0,False,False +45079010309,9542.0,False,False +45079010403,3709.0,False,False +45079010407,3933.0,True,False +45079010408,4439.0,True,True +45079010409,1800.0,True,True +45079010410,4083.0,True,True +45079010411,3666.0,True,True +45079010412,3011.0,True,False +45079010413,2162.0,False,False +45079010501,1932.0,False,False +45079010502,1211.0,True,True +45079010600,4160.0,True,True +45079010701,2833.0,True,True +45079010702,3823.0,True,True +45079010703,3272.0,True,True +45079010803,2195.0,True,True +45079010804,2489.0,True,True +45079010805,2698.0,True,True +45079010806,1054.0,True,True +45079010900,2922.0,True,True +45079011000,1826.0,True,True +45079011101,3254.0,False,False +45079011102,4088.0,False,False +45079011201,1938.0,False,False +45079011202,3456.0,False,False +45079011301,5937.0,False,False +45079011303,5006.0,False,False +45079011304,4932.0,True,True +45079011305,5597.0,True,True +45079011404,9196.0,False,False +45079011407,4539.0,False,False +45079011411,4068.0,False,False +45079011412,4982.0,False,True +45079011413,8466.0,False,False +45079011414,5668.0,False,False +45079011415,12487.0,False,False +45079011416,14051.0,False,False +45079011417,8508.0,False,False +45079011418,4099.0,False,False +45079011419,4307.0,False,False +45079011501,11709.0,False,False +45079011502,3271.0,False,False +45079011603,5835.0,False,False +45079011604,5645.0,False,False +45079011606,5057.0,False,False +45079011607,4082.0,False,False +45079011608,6298.0,False,False +45079011701,4841.0,False,True +45079011702,3844.0,True,True +45079011800,5804.0,True,True +45079011901,8539.0,False,False +45079011902,5337.0,True,False +45079012000,5437.0,False,True +45079980100,266.0,True,False +45081960100,3053.0,True,True +45081960201,5509.0,True,True +45081960202,3976.0,True,True +45081960300,4835.0,True,True +45081960400,2930.0,True,True +45083020301,2536.0,False,True +45083020400,1114.0,True,True +45083020500,1356.0,True,True +45083020601,2990.0,True,True +45083020602,1929.0,False,False +45083020603,2408.0,True,True +45083020701,2975.0,True,True +45083020702,2261.0,True,True +45083020800,1216.0,True,True +45083020900,1325.0,True,True +45083021001,2612.0,True,True +45083021100,3661.0,True,True +45083021200,3299.0,False,False +45083021301,2191.0,False,False +45083021302,2546.0,False,False +45083021303,4753.0,False,False +45083021401,1610.0,True,True +45083021402,3804.0,False,False +45083021403,3819.0,True,True +45083021500,3346.0,True,False +45083021600,3396.0,True,True +45083021700,4643.0,True,True +45083021802,6274.0,False,True +45083021803,7431.0,False,False +45083021804,1891.0,True,True +45083021901,6100.0,True,True +45083021902,9551.0,False,False +45083022003,4537.0,True,False +45083022004,2757.0,True,True +45083022005,5441.0,False,False +45083022006,3890.0,False,False +45083022007,3852.0,False,False +45083022101,3113.0,False,False +45083022102,2151.0,False,False +45083022201,4618.0,True,True +45083022202,3727.0,True,True +45083022302,5493.0,False,False +45083022303,1734.0,True,True +45083022304,4233.0,True,True +45083022401,6446.0,False,False +45083022403,8554.0,False,False +45083022404,7422.0,False,False +45083022405,4315.0,False,False +45083022406,7327.0,False,False +45083022500,4048.0,True,True +45083022600,3288.0,True,False +45083022700,7676.0,False,False +45083022801,6793.0,False,False +45083022802,7312.0,False,False +45083022900,6561.0,False,False +45083023001,9665.0,False,False +45083023002,3457.0,True,False +45083023101,4541.0,True,True +45083023102,6113.0,True,True +45083023201,3736.0,False,False +45083023202,4016.0,False,False +45083023301,2016.0,True,True +45083023302,4692.0,True,True +45083023401,2300.0,False,False +45083023402,4385.0,False,False +45083023403,8072.0,False,False +45083023404,8167.0,False,False +45083023405,6435.0,False,False +45083023500,5511.0,True,False +45083023600,6668.0,True,True +45083023700,4617.0,True,True +45083023801,5787.0,False,False +45083023802,6057.0,False,False +45083023900,5057.0,True,True +45085000100,3044.0,True,True +45085000201,4816.0,False,False +45085000202,6869.0,False,False +45085000300,4052.0,True,False +45085000400,8839.0,True,True +45085000500,2106.0,True,True +45085000600,3752.0,False,False +45085000700,4573.0,True,True +45085000800,3683.0,True,True +45085000901,4131.0,True,True +45085000902,4079.0,False,False +45085001100,4168.0,True,True +45085001300,1628.0,True,True +45085001500,1467.0,True,True +45085001600,4056.0,True,True +45085001701,6874.0,False,False +45085001703,5512.0,False,False +45085001704,5200.0,False,False +45085001801,4021.0,True,True +45085001802,9381.0,True,True +45085001901,6191.0,False,False +45085001902,5095.0,True,True +45085002000,3220.0,False,True +45087030100,2074.0,True,True +45087030200,2747.0,True,True +45087030300,3548.0,True,True +45087030400,5948.0,True,True +45087030500,2248.0,True,False +45087030600,1748.0,True,True +45087030700,3272.0,False,False +45087030800,3626.0,True,True +45087030900,2279.0,True,True +45089970100,2051.0,True,True +45089970200,1116.0,True,True +45089970300,4752.0,True,True +45089970400,2492.0,True,True +45089970501,3373.0,True,True +45089970502,4402.0,True,True +45089970600,4167.0,True,True +45089970700,2377.0,True,True +45089970801,2902.0,True,True +45089970802,1266.0,True,True +45089970900,2426.0,True,True +45091060102,2731.0,False,False +45091060200,4227.0,True,True +45091060300,3925.0,True,True +45091060401,2825.0,True,True +45091060402,2259.0,False,True +45091060501,3171.0,True,True +45091060502,2413.0,True,True +45091060600,1824.0,False,False +45091060700,5860.0,False,False +45091060802,1857.0,False,False +45091060803,5516.0,True,True +45091060804,4649.0,True,True +45091060901,5352.0,True,True +45091060904,7033.0,False,False +45091060905,9430.0,False,False +45091060906,9770.0,False,False +45091060907,9694.0,False,False +45091061003,13505.0,False,False +45091061004,8832.0,False,False +45091061005,12707.0,False,False +45091061006,3537.0,False,False +45091061007,7505.0,False,False +45091061008,7679.0,False,False +45091061101,4558.0,False,False +45091061103,7156.0,False,False +45091061104,5352.0,False,False +45091061201,8213.0,False,False +45091061202,4907.0,True,True +45091061203,6641.0,False,False +45091061301,4669.0,True,True +45091061302,4475.0,False,False +45091061401,4397.0,True,True +45091061403,5418.0,False,False +45091061404,3644.0,False,False +45091061501,8070.0,False,False +45091061502,8426.0,False,False +45091061601,3205.0,True,True +45091061602,5848.0,False,False +45091061701,4268.0,True,True +45091061705,5346.0,False,False +45091061706,5600.0,False,False +45091061707,10563.0,False,False +45091061708,5910.0,False,False +45091061801,2887.0,True,True +45091061802,5331.0,False,False +45091061900,4687.0,True,True +46003973600,2763.0,False,False +46005956600,1780.0,False,False +46005956700,2196.0,False,False +46005956800,2198.0,False,False +46005956900,3320.0,True,True +46005957000,4797.0,False,False +46005957100,4055.0,True,True +46007941000,1636.0,True,True +46007941200,1789.0,True,True +46009967600,3142.0,True,True +46009967700,3787.0,False,False +46011958600,3972.0,False,False +46011958700,5391.0,False,False +46011958802,6208.0,False,False +46011958803,5630.0,False,False +46011958900,7612.0,False,False +46011959000,5788.0,False,False +46013951300,6308.0,False,False +46013951400,6784.0,False,False +46013951500,2701.0,True,True +46013951600,4520.0,False,False +46013951700,4720.0,False,False +46013951800,6364.0,False,False +46013951900,3377.0,False,False +46013952000,4141.0,False,False +46015973100,2479.0,False,False +46015973200,2779.0,True,True +46017940200,2026.0,True,True +46019967600,3333.0,True,True +46019967700,6892.0,True,True +46021964100,1485.0,False,False +46023940200,3290.0,True,True +46023940300,3534.0,True,True +46023970100,2525.0,True,False +46025955800,3685.0,True,True +46027965700,4832.0,False,False +46027965800,2994.0,False,False +46027965900,6131.0,False,False +46029954100,3476.0,False,False +46029954301,4577.0,False,False +46029954302,5098.0,False,False +46029954400,5025.0,True,True +46029954501,2492.0,True,True +46029954502,4554.0,False,False +46029954600,2804.0,False,False +46031941000,1825.0,True,True +46031941100,2325.0,True,True +46033965100,5811.0,False,False +46033965200,2908.0,False,False +46035962600,2958.0,False,False +46035962700,5515.0,True,True +46035962800,6126.0,True,True +46035962900,5272.0,False,False +46037952700,1655.0,True,True +46037952800,1908.0,True,True +46037952900,1923.0,True,True +46039953600,2800.0,False,False +46039953700,1518.0,False,False +46041941500,2687.0,True,True +46041941700,3146.0,True,True +46043969600,2929.0,False,False +46045962100,2265.0,False,False +46045962200,1644.0,False,False +46047964100,2565.0,False,False +46047964200,4182.0,True,True +46049961100,2312.0,False,False +46051953100,5106.0,False,False +46051953300,2043.0,False,False +46053971100,1991.0,True,True +46053971200,2195.0,True,True +46055960100,2018.0,True,True +46057955100,2562.0,False,False +46057955200,3463.0,False,False +46059975600,1438.0,False,False +46059975700,1818.0,False,False +46061964100,3399.0,False,False +46063968700,1306.0,False,False +46065977700,5681.0,False,False +46065977800,5537.0,False,False +46065977900,3097.0,True,True +46065978000,3293.0,False,False +46067968600,3205.0,False,False +46067968700,2494.0,False,False +46067968800,1609.0,False,False +46069976700,1319.0,False,False +46071941200,2190.0,True,True +46071961100,1100.0,True,True +46073974100,2018.0,False,False +46075091600,793.0,True,True +46077958100,2850.0,False,False +46077958200,2094.0,False,False +46079960100,2672.0,False,False +46079960200,7346.0,False,False +46079960300,2699.0,False,False +46081966100,6388.0,False,False +46081966200,3863.0,False,False +46081966301,5433.0,False,False +46081966302,5051.0,False,False +46081966600,4743.0,True,True +46083010101,5708.0,False,False +46083010102,8990.0,False,False +46083010103,5342.0,False,False +46083010104,13266.0,False,False +46083010105,1004.0,False,False +46083010106,1367.0,False,False +46083010107,6749.0,False,False +46083010108,2228.0,False,False +46083010200,3917.0,False,False +46083010300,5226.0,False,False +46083010400,3029.0,False,False +46085940100,1664.0,True,True +46085972600,2184.0,False,False +46087964600,3243.0,False,False +46087964700,2305.0,False,False +46089963100,2297.0,True,True +46091950800,4891.0,False,False +46093020200,1481.0,False,False +46093020301,8570.0,False,False +46093020302,6024.0,False,False +46093020400,6956.0,True,True +46093020500,4686.0,False,False +46095940300,2052.0,True,True +46097961600,2211.0,False,False +46099000100,4973.0,True,True +46099000201,3932.0,True,True +46099000202,2209.0,True,True +46099000300,3221.0,True,True +46099000401,3079.0,True,True +46099000405,5370.0,False,False +46099000406,2743.0,True,True +46099000407,3590.0,True,True +46099000408,4501.0,False,False +46099000500,3456.0,True,True +46099000600,2347.0,False,False +46099000700,5848.0,True,True +46099000900,3279.0,True,True +46099001001,3725.0,True,True +46099001002,5857.0,True,True +46099001101,4703.0,True,True +46099001105,7297.0,False,False +46099001106,12637.0,False,False +46099001107,3624.0,True,True +46099001108,5148.0,False,False +46099001200,4304.0,False,False +46099001500,5908.0,False,False +46099001600,3208.0,False,False +46099001700,2160.0,False,False +46099001801,6544.0,False,False +46099001803,8944.0,False,False +46099001804,4023.0,False,False +46099001901,1881.0,False,False +46099001902,5251.0,False,False +46099010101,4679.0,False,False +46099010102,4309.0,False,False +46099010200,2864.0,False,False +46099010300,6575.0,False,False +46099010401,3722.0,False,False +46099010402,2389.0,False,False +46099010403,2563.0,False,False +46099010404,4626.0,False,False +46099010405,5000.0,False,False +46099010406,3912.0,False,False +46099010501,5465.0,False,False +46099010502,3727.0,False,False +46099010600,5081.0,False,False +46101959600,3238.0,False,False +46101959700,3269.0,False,False +46103010200,5421.0,True,True +46103010300,3392.0,True,True +46103010400,3939.0,True,True +46103010500,2853.0,True,True +46103010600,3612.0,False,False +46103010700,4833.0,True,False +46103010800,4152.0,True,True +46103010903,9887.0,False,False +46103010904,4919.0,True,True +46103010905,5253.0,False,False +46103010906,6197.0,True,True +46103010907,2923.0,False,False +46103011001,2631.0,False,False +46103011002,7097.0,False,False +46103011004,7688.0,False,False +46103011005,2608.0,False,False +46103011100,3055.0,False,False +46103011200,2912.0,False,False +46103011300,6651.0,False,False +46103011400,8042.0,False,False +46103011500,626.0,True,True +46103011600,7913.0,False,False +46103011700,4081.0,False,False +46105968300,2897.0,False,False +46107000100,2315.0,False,False +46109940400,2829.0,True,True +46109940700,2466.0,True,True +46109940800,3029.0,True,True +46109950400,1963.0,False,False +46111962100,2379.0,False,False +46113940500,,False,True +46113940800,,False,True +46113940900,,False,True +46115000100,1912.0,False,False +46115000200,2781.0,False,False +46115000300,1790.0,False,False +46117960100,3017.0,False,False +46119979100,1305.0,False,False +46121940100,4465.0,True,True +46121940200,5730.0,True,True +46123971600,2279.0,True,True +46123971700,3179.0,True,True +46125965100,4140.0,False,False +46125965200,4160.0,False,False +46127020100,4361.0,False,False +46127020200,3020.0,False,False +46127020300,7987.0,False,False +46129965100,1752.0,False,False +46129965200,3705.0,False,False +46135966100,3021.0,True,True +46135966200,5758.0,False,False +46135966301,3623.0,False,False +46135966302,6347.0,True,True +46135966400,3968.0,False,False +46137941600,2791.0,True,True +47001020100,3196.0,True,True +47001020201,4080.0,False,False +47001020202,3973.0,False,False +47001020300,3851.0,False,False +47001020400,4275.0,True,True +47001020500,3655.0,True,False +47001020600,2540.0,False,False +47001020700,1575.0,True,True +47001020800,4909.0,True,True +47001020901,5473.0,False,False +47001020902,6568.0,False,False +47001021000,6239.0,False,False +47001021100,4118.0,False,False +47001021201,5231.0,False,True +47001021202,5297.0,True,True +47001021301,3662.0,False,False +47001021302,7419.0,False,False +47001980100,0.0,False,False +47003950100,4317.0,False,False +47003950200,7500.0,False,False +47003950300,3357.0,False,False +47003950401,5828.0,True,True +47003950402,7082.0,True,False +47003950500,6769.0,True,True +47003950600,7167.0,True,False +47003950700,3060.0,False,False +47003950800,3212.0,False,False +47005963000,3442.0,True,True +47005963100,2922.0,False,False +47005963200,2183.0,True,True +47005963300,3715.0,True,True +47005963400,3878.0,True,True +47007953000,3768.0,True,True +47007953100,6325.0,True,True +47007953200,4743.0,True,True +47009010100,2898.0,True,True +47009010200,6327.0,False,False +47009010301,5837.0,True,False +47009010302,3530.0,False,False +47009010400,3354.0,False,False +47009010500,2786.0,True,True +47009010600,4425.0,False,False +47009010700,5128.0,False,False +47009010800,3024.0,True,True +47009010900,6457.0,False,False +47009011001,6067.0,False,False +47009011002,4471.0,False,False +47009011101,5121.0,False,False +47009011102,8982.0,False,False +47009011200,9085.0,False,False +47009011301,6050.0,False,False +47009011302,5999.0,False,False +47009011401,1624.0,True,True +47009011402,4466.0,True,False +47009011501,1671.0,False,False +47009011502,4026.0,False,False +47009011503,7085.0,False,False +47009011602,8990.0,False,False +47009011603,4838.0,False,False +47009011604,4145.0,False,False +47009011605,3524.0,False,False +47009980100,5.0,False,False +47009980200,12.0,True,True +47011010100,5468.0,False,False +47011010200,6105.0,False,False +47011010300,2738.0,True,True +47011010400,2691.0,True,True +47011010500,3638.0,False,False +47011010600,3302.0,False,False +47011010700,4869.0,True,True +47011010800,3121.0,True,True +47011010900,2889.0,True,True +47011011000,6470.0,True,False +47011011100,9934.0,False,False +47011011201,6174.0,False,False +47011011202,9764.0,False,False +47011011300,8376.0,False,False +47011011401,8614.0,False,False +47011011402,2930.0,True,True +47011011500,9011.0,False,False +47011011601,4577.0,False,False +47011011602,5078.0,False,False +47013950100,3484.0,True,True +47013950200,2230.0,True,True +47013950300,1913.0,True,True +47013950400,4922.0,True,True +47013950500,5146.0,False,False +47013950600,4148.0,True,True +47013950700,4848.0,True,True +47013950800,2385.0,False,True +47013950900,2913.0,True,True +47013951000,2348.0,True,True +47013951100,5460.0,False,False +47015960100,4081.0,True,True +47015960200,6374.0,True,True +47015960300,3723.0,False,False +47017962000,4108.0,True,True +47017962100,6111.0,True,True +47017962201,3462.0,True,True +47017962202,5205.0,False,False +47017962300,4308.0,True,True +47017962400,2670.0,True,True +47017962500,2022.0,True,True +47017980100,0.0,False,False +47019070100,1757.0,True,True +47019070200,3678.0,True,True +47019070300,5382.0,True,True +47019070400,2115.0,True,True +47019070500,3983.0,True,True +47019070600,2279.0,True,True +47019070700,3606.0,False,False +47019070800,2896.0,False,False +47019070900,3461.0,False,False +47019071000,2821.0,True,True +47019071100,1946.0,True,True +47019071200,3987.0,True,True +47019071300,8178.0,True,True +47019071400,3305.0,True,True +47019071500,2011.0,True,True +47019071600,1544.0,True,True +47019071700,3484.0,True,True +47021070102,4058.0,False,False +47021070103,3584.0,False,False +47021070104,5858.0,False,False +47021070201,4480.0,False,False +47021070202,5554.0,False,False +47021070203,3285.0,False,False +47021070300,3583.0,True,True +47021070401,2645.0,False,False +47021070402,7134.0,False,False +47023970100,6278.0,False,False +47023970200,5692.0,False,False +47023970300,5220.0,False,False +47025970100,2874.0,True,True +47025970200,2823.0,False,False +47025970300,4278.0,False,False +47025970400,709.0,True,True +47025970500,2738.0,True,True +47025970600,4471.0,True,True +47025970700,5834.0,True,True +47025970800,3631.0,True,True +47025970900,4374.0,True,True +47027955000,5111.0,True,True +47027955100,2543.0,True,True +47029920100,4304.0,True,True +47029920200,5939.0,True,True +47029920300,4230.0,True,True +47029920400,2010.0,True,True +47029920501,5186.0,True,True +47029920502,5546.0,True,True +47029920600,4139.0,True,True +47029920700,4198.0,True,True +47029980100,0.0,False,False +47031970100,3665.0,True,True +47031970200,7031.0,True,False +47031970300,1835.0,True,True +47031970400,7142.0,True,True +47031970500,5678.0,False,False +47031970600,4196.0,True,False +47031970700,4910.0,True,True +47031970801,4157.0,True,True +47031970802,6113.0,False,False +47031970900,4160.0,True,True +47031971000,6318.0,True,True +47031980100,4.0,True,False +47033961000,2138.0,True,False +47033961100,3904.0,True,True +47033961200,1779.0,True,True +47033961300,2413.0,True,True +47033961400,4165.0,True,False +47035970101,4445.0,False,False +47035970102,6136.0,True,True +47035970200,6958.0,False,False +47035970301,2975.0,True,True +47035970302,4049.0,True,True +47035970400,6111.0,True,True +47035970501,2788.0,True,True +47035970502,4206.0,True,True +47035970601,5284.0,True,False +47035970602,3944.0,False,False +47035970603,2032.0,False,False +47035970701,2266.0,True,True +47035970702,4069.0,True,True +47035970800,3953.0,True,True +47037010103,2533.0,False,False +47037010104,2955.0,False,False +47037010105,4435.0,False,False +47037010106,3397.0,False,False +47037010201,4157.0,False,False +47037010202,3962.0,False,False +47037010301,3395.0,True,False +47037010302,2225.0,False,False +47037010303,5105.0,True,True +47037010401,5014.0,True,True +47037010402,6701.0,True,True +47037010501,5240.0,True,True +47037010502,5726.0,True,True +47037010601,5365.0,True,True +47037010602,4125.0,True,True +47037010701,4092.0,True,True +47037010702,3066.0,True,True +47037010801,5463.0,False,False +47037010802,3685.0,True,True +47037010901,3335.0,False,False +47037010903,5863.0,True,True +47037010904,3213.0,True,True +47037011001,6746.0,True,True +47037011002,2553.0,True,True +47037011100,4037.0,False,False +47037011200,4068.0,False,False +47037011300,5643.0,True,True +47037011400,4617.0,False,False +47037011500,3631.0,False,False +47037011600,4998.0,False,False +47037011700,5971.0,False,False +47037011800,2700.0,True,True +47037011900,2530.0,False,False +47037012100,2525.0,False,False +47037012200,2100.0,False,False +47037012600,2205.0,True,True +47037012701,6072.0,True,True +47037012702,2908.0,True,True +47037012801,5616.0,True,True +47037012802,4363.0,True,True +47037013000,877.0,False,False +47037013100,2448.0,False,False +47037013201,2934.0,False,False +47037013202,3330.0,False,False +47037013300,3997.0,False,False +47037013400,4500.0,False,False +47037013500,2364.0,False,False +47037013601,3320.0,True,True +47037013602,1818.0,False,False +47037013700,6345.0,True,True +47037013800,2099.0,True,True +47037013900,1617.0,True,True +47037014200,2024.0,False,True +47037014300,1860.0,True,True +47037014400,2111.0,True,True +47037014800,3310.0,True,True +47037015100,3827.0,False,False +47037015200,2637.0,False,False +47037015300,6024.0,False,False +47037015401,5829.0,False,False +47037015402,4717.0,False,False +47037015404,2886.0,True,True +47037015405,4882.0,False,False +47037015501,3190.0,False,False +47037015502,3820.0,False,False +47037015609,4744.0,False,False +47037015610,9141.0,False,False +47037015612,7324.0,False,False +47037015613,5252.0,True,True +47037015614,4256.0,False,False +47037015615,5553.0,True,True +47037015617,2459.0,False,False +47037015618,6507.0,True,True +47037015619,5105.0,False,False +47037015620,7262.0,True,True +47037015622,4313.0,False,False +47037015623,5370.0,True,True +47037015624,5254.0,False,False +47037015625,5942.0,False,False +47037015626,6740.0,True,True +47037015627,2930.0,True,True +47037015628,3800.0,True,True +47037015629,7127.0,False,False +47037015630,4742.0,False,False +47037015631,12176.0,False,False +47037015700,1704.0,False,False +47037015802,5650.0,True,True +47037015803,2932.0,True,True +47037015804,4098.0,True,True +47037015900,2865.0,True,True +47037016000,945.0,True,True +47037016100,2345.0,True,True +47037016200,3074.0,True,True +47037016300,2560.0,True,True +47037016400,4251.0,False,False +47037016500,4841.0,False,False +47037016600,3054.0,False,False +47037016700,5304.0,False,False +47037016800,4849.0,False,False +47037016900,5092.0,False,False +47037017000,3730.0,False,False +47037017100,2980.0,False,False +47037017200,1427.0,True,True +47037017300,3382.0,True,True +47037017401,2313.0,True,True +47037017402,5386.0,True,True +47037017500,2967.0,True,True +47037017701,2466.0,False,False +47037017702,5210.0,False,False +47037017800,5498.0,False,False +47037017901,4900.0,False,False +47037017902,4992.0,False,False +47037018000,4897.0,False,False +47037018101,5451.0,True,True +47037018102,3619.0,False,False +47037018201,2989.0,False,False +47037018202,7222.0,False,False +47037018203,1392.0,False,False +47037018301,8254.0,False,False +47037018302,2774.0,False,False +47037018401,7432.0,False,False +47037018404,4963.0,False,False +47037018405,4628.0,False,False +47037018407,5001.0,False,False +47037018408,3753.0,False,False +47037018409,4205.0,False,False +47037018410,3467.0,False,False +47037018500,4886.0,False,False +47037018601,2503.0,False,False +47037018602,4187.0,False,False +47037018700,3197.0,False,False +47037018801,5889.0,False,False +47037018803,3665.0,False,False +47037018804,5164.0,False,False +47037018901,3054.0,True,True +47037018902,2442.0,False,False +47037018904,3773.0,False,False +47037018905,3247.0,True,True +47037019003,4519.0,True,True +47037019004,4736.0,True,True +47037019005,3337.0,True,True +47037019006,5309.0,True,True +47037019105,6456.0,True,True +47037019106,4041.0,False,False +47037019108,3613.0,True,True +47037019109,5476.0,True,True +47037019110,3743.0,True,False +47037019111,4408.0,False,False +47037019112,4646.0,False,False +47037019114,14022.0,False,False +47037019115,3925.0,False,False +47037019116,6406.0,False,False +47037019117,5433.0,False,False +47037019118,6517.0,True,True +47037019200,3897.0,True,True +47037019300,3428.0,True,True +47037019400,5810.0,False,False +47037019500,7956.0,False,False +47037019600,3843.0,False,False +47037980100,0.0,False,False +47037980200,0.0,False,False +47039955001,1770.0,True,True +47039955002,4241.0,True,True +47039955101,2069.0,True,True +47039955102,3606.0,True,True +47041920101,2801.0,True,True +47041920102,5296.0,True,False +47041920200,6496.0,True,True +47041920300,5254.0,False,False +47043060100,4118.0,True,True +47043060200,7215.0,True,True +47043060300,6845.0,True,True +47043060401,3599.0,False,False +47043060402,6605.0,False,False +47043060501,5781.0,False,False +47043060502,3032.0,False,False +47043060601,4063.0,True,False +47043060602,6836.0,True,False +47043060700,4586.0,True,True +47045964000,7054.0,True,True +47045964200,5639.0,False,False +47045964300,5225.0,True,True +47045964400,6283.0,True,True +47045964500,2444.0,False,True +47045964600,2731.0,True,True +47045964800,3096.0,True,True +47045964900,4944.0,False,False +47047060300,2782.0,True,True +47047060401,3153.0,False,False +47047060402,3884.0,False,False +47047060403,4161.0,False,False +47047060404,5980.0,False,False +47047060501,4545.0,True,True +47047060502,3916.0,True,True +47047060600,3761.0,True,True +47047060701,2146.0,False,False +47047060702,3322.0,False,False +47047060800,2514.0,False,False +47049965000,3619.0,True,True +47049965100,4405.0,True,True +47049965200,4721.0,True,True +47049965300,5468.0,True,True +47051960100,3566.0,True,True +47051960201,5763.0,False,False +47051960202,5425.0,False,False +47051960300,3100.0,False,False +47051960400,8208.0,False,False +47051960500,3917.0,True,True +47051960600,4328.0,True,True +47051960700,4082.0,False,False +47051960800,3336.0,True,True +47053966100,2278.0,True,True +47053966200,3897.0,True,True +47053966300,2595.0,True,True +47053966400,5195.0,True,True +47053966500,5779.0,True,True +47053966600,2062.0,False,False +47053966700,5249.0,True,True +47053966800,1207.0,True,True +47053966900,2679.0,True,True +47053967000,6682.0,True,True +47053967100,6902.0,False,False +47053967300,1059.0,True,True +47053967400,3644.0,True,True +47053980100,0.0,False,False +47055920100,3361.0,True,True +47055920200,5116.0,False,False +47055920300,5471.0,False,False +47055920400,2983.0,True,True +47055920500,4595.0,True,True +47055920600,3051.0,True,True +47055920700,1663.0,False,False +47055920800,3045.0,False,False +47057500100,4424.0,True,True +47057500200,5188.0,True,True +47057500300,6276.0,True,True +47057500401,2419.0,True,True +47057500402,4794.0,True,True +47059090100,5771.0,True,True +47059090200,3013.0,False,False +47059090300,5647.0,False,False +47059090400,5493.0,True,True +47059090500,6822.0,True,True +47059090600,3943.0,True,True +47059090700,2487.0,True,True +47059090800,4341.0,True,True +47059090900,5079.0,False,False +47059091000,7968.0,True,True +47059091100,4002.0,False,True +47059091200,3817.0,True,True +47059091300,4532.0,True,True +47059091400,2809.0,True,True +47059091500,3110.0,False,False +47061955000,2539.0,True,True +47061955100,1459.0,True,True +47061955200,4511.0,True,True +47061955300,4835.0,True,True +47063100100,6296.0,True,True +47063100200,5389.0,True,True +47063100300,3271.0,True,True +47063100400,6989.0,True,True +47063100500,3101.0,True,True +47063100600,7198.0,False,False +47063100700,6300.0,False,False +47063100800,3482.0,True,True +47063100900,5263.0,True,False +47063101000,5454.0,False,False +47063101100,5068.0,False,False +47063101200,6321.0,False,False +47065000400,3415.0,True,True +47065000600,3689.0,False,False +47065000700,4539.0,False,False +47065000800,1722.0,True,True +47065001100,1525.0,False,False +47065001200,3058.0,True,True +47065001300,1978.0,True,True +47065001400,1838.0,True,True +47065001600,2632.0,True,True +47065001800,2546.0,False,False +47065001900,3730.0,True,True +47065002000,1484.0,False,False +47065002300,1636.0,True,True +47065002400,5439.0,True,True +47065002500,5147.0,True,True +47065002600,2337.0,True,True +47065002800,3568.0,False,False +47065002900,2723.0,True,True +47065003000,2148.0,True,True +47065003100,2036.0,False,False +47065003200,2644.0,True,True +47065003300,6725.0,True,True +47065003400,3819.0,True,True +47065010101,6136.0,False,False +47065010103,3867.0,False,False +47065010104,3934.0,True,False +47065010201,3824.0,False,False +47065010202,4398.0,False,False +47065010303,3096.0,False,False +47065010304,4934.0,False,False +47065010305,3479.0,False,False +47065010306,3981.0,False,False +47065010307,5453.0,False,False +47065010411,7569.0,False,False +47065010412,5254.0,False,False +47065010413,3815.0,False,False +47065010431,7282.0,False,False +47065010432,7044.0,False,False +47065010433,4626.0,False,False +47065010434,2292.0,False,False +47065010435,6020.0,True,False +47065010501,6153.0,False,False +47065010502,3227.0,False,False +47065010600,3102.0,False,False +47065010700,2731.0,True,True +47065010800,4047.0,True,True +47065010901,1941.0,False,False +47065010902,1077.0,True,True +47065010903,6216.0,False,False +47065011001,1862.0,False,False +47065011002,7951.0,False,False +47065011100,6153.0,False,False +47065011201,12235.0,False,False +47065011203,6871.0,False,False +47065011204,5811.0,False,False +47065011311,9759.0,False,False +47065011314,5680.0,False,False +47065011321,7595.0,False,False +47065011323,6424.0,False,False +47065011324,4784.0,False,False +47065011325,5877.0,False,False +47065011326,5734.0,True,False +47065011402,6224.0,False,False +47065011411,4262.0,False,False +47065011413,8262.0,False,False +47065011442,3121.0,False,False +47065011443,5804.0,True,True +47065011444,3680.0,True,True +47065011445,3527.0,False,False +47065011446,4646.0,False,False +47065011447,8461.0,False,False +47065011600,5558.0,True,True +47065011700,4519.0,False,False +47065011800,6541.0,False,False +47065011900,1421.0,True,True +47065012000,1965.0,False,False +47065012100,6556.0,False,False +47065012200,2358.0,True,True +47065012300,4763.0,True,True +47065012400,6639.0,False,False +47065980100,0.0,False,False +47065980200,0.0,False,False +47067960500,2497.0,True,True +47067960600,4090.0,True,True +47069950100,3657.0,True,True +47069950200,5917.0,True,True +47069950300,3435.0,True,True +47069950400,5237.0,True,True +47069950500,4478.0,True,True +47069950600,2719.0,True,True +47071920100,3919.0,True,True +47071920200,4504.0,True,True +47071920300,4028.0,False,True +47071920400,5084.0,True,True +47071920500,5076.0,False,True +47071920600,3104.0,True,True +47073050100,4319.0,True,True +47073050200,4380.0,True,True +47073050301,4642.0,True,True +47073050302,3765.0,True,True +47073050400,5966.0,True,True +47073050501,4106.0,True,True +47073050502,3228.0,True,True +47073050503,4839.0,False,False +47073050601,5778.0,True,False +47073050602,4528.0,False,False +47073050700,3558.0,True,True +47073050800,4689.0,True,False +47073050900,2813.0,True,True +47075930100,2748.0,True,False +47075930200,1494.0,True,True +47075930301,3881.0,True,True +47075930302,3120.0,True,True +47075930400,3656.0,True,True +47075930500,2724.0,True,True +47077975000,3259.0,False,True +47077975100,3781.0,True,True +47077975200,4752.0,True,True +47077975300,8183.0,True,True +47077975400,4403.0,True,True +47077975500,3599.0,True,True +47079969000,4104.0,True,True +47079969100,3010.0,True,True +47079969200,1741.0,True,True +47079969300,3385.0,True,True +47079969400,2014.0,True,True +47079969500,5367.0,True,True +47079969600,8139.0,True,True +47079969700,2218.0,True,True +47079969800,2306.0,True,True +47081950100,5856.0,True,True +47081950200,7341.0,True,True +47081950301,2398.0,True,True +47081950302,4567.0,False,True +47081950400,2088.0,True,True +47081950500,2563.0,True,True +47083120100,3170.0,False,False +47083120200,2456.0,True,True +47083120300,2538.0,True,True +47085130100,5899.0,True,True +47085130200,1745.0,True,True +47085130300,5316.0,True,True +47085130400,2412.0,True,True +47085130500,3063.0,False,False +47087960100,1646.0,True,True +47087960200,2363.0,True,True +47087960300,5652.0,True,True +47087960400,2021.0,True,True +47089070100,7488.0,True,True +47089070200,4666.0,True,True +47089070300,7030.0,False,False +47089070400,3822.0,True,True +47089070500,4940.0,False,False +47089070600,5516.0,False,False +47089070700,8357.0,False,False +47089070800,7713.0,False,False +47089070900,4147.0,False,False +47091956000,981.0,True,True +47091956100,4312.0,True,True +47091956200,2232.0,False,False +47091956300,5271.0,True,True +47091956400,4957.0,True,True +47093000100,2463.0,False,False +47093000800,3607.0,False,True +47093000901,1965.0,False,False +47093000902,3034.0,False,False +47093001400,2447.0,True,True +47093001500,3520.0,True,True +47093001600,2888.0,False,False +47093001700,2273.0,True,True +47093001800,2297.0,False,False +47093001900,1376.0,True,True +47093002000,2852.0,True,True +47093002100,3036.0,True,True +47093002200,3786.0,True,False +47093002300,3054.0,True,True +47093002400,4267.0,True,True +47093002600,2581.0,True,True +47093002700,2926.0,True,True +47093002800,4414.0,True,True +47093002900,3885.0,True,True +47093003000,5028.0,True,False +47093003100,2612.0,True,True +47093003200,2826.0,True,True +47093003300,2158.0,False,False +47093003400,4087.0,False,False +47093003500,5016.0,False,False +47093003700,2609.0,False,False +47093003801,4825.0,True,True +47093003802,3138.0,False,False +47093003901,4006.0,True,False +47093003902,3185.0,True,True +47093004000,4297.0,True,True +47093004100,4329.0,False,False +47093004200,3130.0,False,False +47093004300,2820.0,True,False +47093004401,4767.0,False,False +47093004403,5177.0,False,False +47093004404,3962.0,False,False +47093004500,6582.0,False,False +47093004606,7005.0,False,False +47093004607,6536.0,False,False +47093004608,2787.0,False,False +47093004609,5297.0,False,False +47093004610,5431.0,False,False +47093004611,4533.0,False,False +47093004612,2604.0,False,False +47093004613,5690.0,False,False +47093004614,2968.0,False,False +47093004615,4622.0,True,True +47093004700,4250.0,False,False +47093004800,5907.0,True,False +47093004900,5658.0,False,False +47093005000,4092.0,False,False +47093005100,6890.0,False,False +47093005201,7027.0,False,False +47093005202,3656.0,False,False +47093005301,4680.0,True,True +47093005302,3848.0,False,False +47093005401,3497.0,False,False +47093005402,3057.0,True,True +47093005501,2570.0,False,False +47093005502,3474.0,False,False +47093005602,3780.0,False,False +47093005603,3611.0,False,False +47093005604,2837.0,False,False +47093005701,4817.0,False,False +47093005704,6795.0,False,False +47093005706,4340.0,False,False +47093005707,3317.0,False,False +47093005708,3081.0,False,False +47093005709,2060.0,False,False +47093005710,2201.0,False,False +47093005711,5820.0,False,False +47093005712,8774.0,False,False +47093005803,2937.0,False,False +47093005807,2878.0,False,False +47093005808,5540.0,False,False +47093005809,5352.0,False,False +47093005810,3812.0,False,False +47093005811,3519.0,False,False +47093005812,6491.0,False,False +47093005813,6259.0,False,False +47093005903,4225.0,False,False +47093005904,6219.0,False,False +47093005905,2801.0,False,False +47093005906,2077.0,False,False +47093005907,4596.0,False,False +47093005908,5058.0,False,False +47093006001,4313.0,False,False +47093006002,5940.0,False,False +47093006003,4531.0,False,False +47093006102,5402.0,False,False +47093006103,4704.0,False,False +47093006104,5421.0,False,False +47093006202,4938.0,False,False +47093006203,5327.0,False,False +47093006205,4558.0,False,False +47093006206,5219.0,False,False +47093006207,3625.0,False,False +47093006208,5880.0,True,False +47093006301,3591.0,True,True +47093006302,2708.0,True,True +47093006401,4181.0,False,False +47093006402,5243.0,False,False +47093006403,3033.0,False,False +47093006501,2973.0,False,False +47093006502,3549.0,True,True +47093006600,3346.0,True,True +47093006700,2998.0,True,True +47093006800,4510.0,True,True +47093006900,8093.0,False,False +47093007000,2891.0,True,True +47093007100,3629.0,False,False +47095960100,5051.0,True,True +47095960200,2350.0,True,True +47097050100,3749.0,False,False +47097050200,3281.0,True,True +47097050300,2859.0,True,True +47097050400,3090.0,True,True +47097050503,2320.0,False,False +47097050504,2851.0,True,True +47097050505,3487.0,True,True +47097050506,2261.0,True,True +47097050600,2091.0,True,True +47099960100,4482.0,True,True +47099960200,2730.0,True,True +47099960300,6389.0,True,True +47099960401,5318.0,True,True +47099960402,4198.0,False,False +47099960501,4445.0,True,True +47099960502,4091.0,False,False +47099960600,2133.0,True,True +47099960700,3940.0,True,True +47099960800,3589.0,False,False +47099960900,2075.0,True,True +47101970100,4444.0,True,True +47101970200,7583.0,True,True +47103975000,1786.0,False,False +47103975100,2264.0,False,False +47103975200,1758.0,False,False +47103975300,5712.0,True,True +47103975400,3893.0,False,False +47103975500,4851.0,True,True +47103975601,6716.0,True,True +47103975602,3643.0,True,True +47103975700,3301.0,False,False +47105060100,5317.0,False,False +47105060201,4292.0,True,True +47105060202,8137.0,True,True +47105060301,4620.0,False,False +47105060302,6376.0,False,False +47105060400,5332.0,False,False +47105060501,8501.0,False,False +47105060502,2263.0,True,True +47105060600,4941.0,True,False +47105060700,2561.0,False,False +47107970101,6664.0,False,False +47107970102,5783.0,False,False +47107970200,6130.0,True,True +47107970300,3113.0,False,False +47107970401,3703.0,True,False +47107970402,4887.0,False,False +47107970500,3989.0,True,True +47107970600,6775.0,True,True +47107970700,4047.0,True,True +47107970800,7962.0,True,True +47109930100,4203.0,True,True +47109930200,2485.0,True,True +47109930300,2804.0,True,True +47109930400,2094.0,True,True +47109930500,7497.0,True,True +47109930600,3761.0,True,True +47109930700,3000.0,True,True +47111970100,5068.0,True,True +47111970200,6056.0,False,False +47111970300,8319.0,True,True +47111970400,4399.0,False,False +47113000100,3667.0,True,True +47113000200,6370.0,True,True +47113000300,4119.0,True,True +47113000400,3476.0,True,True +47113000500,4308.0,True,True +47113000600,2028.0,True,True +47113000700,2460.0,True,True +47113000800,1443.0,True,True +47113000900,2238.0,True,True +47113001000,2135.0,True,True +47113001100,975.0,True,True +47113001300,5399.0,True,True +47113001401,2186.0,False,False +47113001402,2289.0,False,False +47113001501,5586.0,True,True +47113001502,6200.0,False,False +47113001603,2611.0,False,False +47113001604,3259.0,False,False +47113001605,2841.0,False,False +47113001606,9952.0,False,False +47113001607,5878.0,False,False +47113001608,2242.0,False,False +47113001609,1466.0,False,False +47113001610,6011.0,False,False +47113001700,1358.0,False,False +47113001800,3445.0,False,False +47113001900,3683.0,False,False +47115050101,3711.0,False,False +47115050102,5882.0,False,False +47115050201,4773.0,True,True +47115050202,5549.0,False,False +47115050301,5660.0,True,True +47115050302,2963.0,False,False +47117955000,7724.0,False,False +47117955100,5691.0,False,False +47117955200,6123.0,False,False +47117955300,4724.0,True,True +47117955400,4202.0,True,True +47117955500,4501.0,False,False +47119010100,3448.0,False,False +47119010201,7680.0,False,False +47119010202,10471.0,False,False +47119010301,7741.0,False,False +47119010302,3316.0,False,False +47119010400,6350.0,True,True +47119010500,4255.0,True,True +47119010600,5131.0,True,True +47119010700,4603.0,True,True +47119010801,3586.0,False,False +47119010802,8561.0,False,False +47119010900,3441.0,False,False +47119011001,2990.0,False,False +47119011002,6819.0,True,True +47119011101,4855.0,False,False +47119011102,3133.0,False,False +47119011200,5596.0,False,False +47121960100,3236.0,True,True +47121960200,4880.0,True,True +47121960300,3988.0,False,False +47123925000,8011.0,False,False +47123925100,7693.0,True,False +47123925200,4628.0,True,True +47123925300,7686.0,True,True +47123925400,9384.0,True,False +47123925501,3470.0,True,True +47123925502,5192.0,True,True +47125100100,1162.0,False,True +47125100200,1503.0,True,True +47125100300,5549.0,True,False +47125100400,3077.0,True,True +47125100500,4601.0,False,False +47125100601,2188.0,False,False +47125100602,2512.0,False,False +47125100700,1312.0,True,False +47125100800,2589.0,False,True +47125100900,2346.0,True,True +47125101001,4222.0,True,True +47125101002,3524.0,False,False +47125101101,2707.0,True,False +47125101102,8002.0,True,False +47125101103,2589.0,True,False +47125101201,2217.0,True,True +47125101202,4279.0,False,False +47125101303,11211.0,False,False +47125101304,5857.0,False,False +47125101305,5622.0,False,False +47125101306,5586.0,False,False +47125101307,2358.0,False,False +47125101400,6287.0,False,False +47125101500,7541.0,False,False +47125101600,5793.0,False,False +47125101700,8129.0,False,False +47125101802,10895.0,False,False +47125101803,7012.0,False,False +47125101804,7418.0,False,False +47125101902,2369.0,False,False +47125101903,11118.0,False,False +47125101904,5152.0,False,False +47125102001,5822.0,False,False +47125102002,9116.0,False,False +47125102003,7024.0,False,False +47125102004,6264.0,False,False +47125102005,5447.0,False,False +47125102006,9491.0,False,False +47125980100,289.0,False,False +47127930100,3893.0,False,False +47127930200,2485.0,False,False +47129110100,2726.0,True,True +47129110200,3592.0,True,True +47129110300,6347.0,True,True +47129110400,4204.0,True,True +47129110500,4676.0,True,True +47131965000,4330.0,True,True +47131965100,2046.0,False,False +47131965200,2068.0,True,False +47131965300,3530.0,True,True +47131965400,4571.0,True,True +47131965500,2502.0,True,True +47131965600,4029.0,True,True +47131965700,4372.0,True,True +47131965800,1670.0,True,True +47131965900,1247.0,True,True +47133950100,1604.0,True,True +47133950200,1674.0,True,True +47133950301,4524.0,True,True +47133950302,2783.0,True,True +47133950400,2069.0,True,True +47133950500,6556.0,True,False +47133950600,2858.0,True,True +47135930100,2978.0,True,True +47135930200,4984.0,True,True +47137925100,5079.0,True,True +47139950100,1404.0,True,True +47139950201,2248.0,True,True +47139950202,5430.0,False,False +47139950300,4053.0,True,True +47139950400,3679.0,True,True +47141000100,5616.0,True,True +47141000200,10828.0,False,False +47141000301,2741.0,False,False +47141000302,6562.0,True,True +47141000303,2067.0,False,False +47141000400,4524.0,False,False +47141000500,2152.0,False,False +47141000600,4249.0,False,False +47141000700,3284.0,True,True +47141000800,6378.0,False,True +47141000900,6246.0,False,False +47141001000,3832.0,True,True +47141001100,6999.0,True,True +47141001200,9699.0,False,False +47141001300,2270.0,False,False +47143975000,5013.0,True,True +47143975100,4693.0,True,True +47143975200,6763.0,False,False +47143975300,5527.0,True,True +47143975401,7313.0,True,True +47143975402,3410.0,True,False +47145030100,3259.0,False,False +47145030201,6420.0,False,False +47145030202,7243.0,False,False +47145030300,6861.0,False,False +47145030400,6222.0,False,False +47145030500,4170.0,True,True +47145030600,3518.0,True,True +47145030700,3471.0,True,True +47145030800,5442.0,True,True +47145030900,6469.0,True,True +47145980100,0.0,False,False +47147080101,4433.0,False,False +47147080103,6243.0,False,False +47147080104,7691.0,False,False +47147080200,6196.0,True,True +47147080301,2589.0,True,True +47147080302,2870.0,True,True +47147080401,5119.0,True,True +47147080402,4634.0,False,False +47147080500,4787.0,False,False +47147080603,4681.0,False,False +47147080604,3924.0,False,False +47147080605,3210.0,False,False +47147080606,5855.0,False,False +47147080700,8048.0,False,False +47149040101,3630.0,True,True +47149040102,3987.0,False,False +47149040103,8095.0,False,False +47149040104,5825.0,True,False +47149040105,4201.0,False,False +47149040200,4048.0,False,False +47149040302,9251.0,False,False +47149040303,2541.0,False,False +47149040304,3117.0,False,False +47149040305,2816.0,True,True +47149040306,5682.0,False,False +47149040307,2959.0,False,False +47149040308,6580.0,False,False +47149040403,7199.0,True,False +47149040501,8778.0,False,False +47149040502,7541.0,False,False +47149040600,5062.0,False,False +47149040701,12431.0,False,False +47149040702,6582.0,False,False +47149040805,9934.0,False,False +47149040806,8143.0,False,False +47149040807,6437.0,False,False +47149040808,8891.0,False,False +47149040809,4444.0,False,False +47149040810,3047.0,False,False +47149040901,3563.0,False,False +47149040902,16277.0,False,False +47149040903,13284.0,False,False +47149040904,4722.0,False,False +47149040905,11406.0,False,False +47149041000,8366.0,False,False +47149041101,7806.0,False,False +47149041102,2947.0,False,False +47149041201,5489.0,False,False +47149041202,4614.0,False,False +47149041301,5644.0,False,False +47149041302,6430.0,False,False +47149041401,4534.0,False,False +47149041402,7553.0,False,False +47149041403,9910.0,False,False +47149041500,2540.0,False,False +47149041600,5719.0,True,True +47149041700,5608.0,False,False +47149041800,4286.0,True,True +47149041900,4403.0,True,True +47149042000,5028.0,False,False +47149042100,10109.0,True,True +47149042200,5200.0,False,False +47149042300,9156.0,False,False +47151975000,3908.0,True,True +47151975100,6302.0,True,True +47151975200,6501.0,True,True +47151975300,2329.0,True,True +47151975400,2929.0,True,True +47153060101,8289.0,True,True +47153060102,2535.0,True,True +47153060200,3992.0,False,False +47155080101,3699.0,True,True +47155080102,6826.0,False,False +47155080201,8328.0,False,False +47155080202,5591.0,False,False +47155080300,6023.0,False,False +47155080400,7339.0,True,True +47155080500,5402.0,True,True +47155080601,4356.0,True,False +47155080602,9909.0,True,False +47155080700,8920.0,True,True +47155080801,3022.0,True,True +47155080802,7789.0,True,False +47155080901,3527.0,True,True +47155080902,4801.0,True,True +47155081000,6336.0,False,False +47155081101,1722.0,True,True +47155081102,3478.0,True,True +47155980100,0.0,False,False +47157000100,5503.0,False,False +47157000200,868.0,True,True +47157000300,767.0,True,True +47157000400,1352.0,True,True +47157000600,1815.0,True,True +47157000700,4305.0,True,True +47157000800,2355.0,True,True +47157000900,2326.0,True,True +47157001100,3155.0,True,True +47157001200,4370.0,True,True +47157001300,2870.0,True,True +47157001400,1567.0,True,True +47157001500,1708.0,True,True +47157001600,3234.0,False,False +47157001700,3934.0,False,False +47157001900,1143.0,True,True +47157002000,1829.0,True,True +47157002100,1298.0,True,True +47157002400,2253.0,True,True +47157002500,2620.0,True,True +47157002600,2741.0,False,False +47157002700,2131.0,True,True +47157002800,3105.0,True,True +47157002900,4952.0,False,False +47157003000,2895.0,True,True +47157003100,3465.0,False,False +47157003200,3876.0,False,False +47157003300,2418.0,False,False +47157003400,2326.0,False,False +47157003500,3039.0,False,False +47157003600,1538.0,True,True +47157003700,1220.0,True,True +47157003800,754.0,True,True +47157003900,1534.0,True,True +47157004200,3323.0,False,False +47157004300,2799.0,False,False +47157004500,1109.0,True,True +47157004600,1185.0,True,True +47157005000,949.0,True,True +47157005300,3308.0,True,True +47157005500,2106.0,True,True +47157005600,4087.0,True,True +47157005700,2795.0,True,True +47157005800,756.0,True,True +47157005900,2241.0,True,True +47157006000,1855.0,True,True +47157006200,1616.0,True,True +47157006300,2714.0,True,True +47157006400,1808.0,False,False +47157006500,2441.0,True,True +47157006600,2217.0,False,False +47157006700,3580.0,True,True +47157006800,2019.0,True,True +47157006900,2665.0,True,True +47157007000,3133.0,True,True +47157007100,2686.0,False,False +47157007200,2758.0,False,False +47157007300,4500.0,False,False +47157007400,3163.0,False,False +47157007500,1445.0,True,True +47157007810,2414.0,True,True +47157007821,4926.0,True,True +47157007822,1754.0,True,True +47157007900,5154.0,True,True +47157008000,4448.0,True,True +47157008110,2296.0,True,True +47157008120,4909.0,True,True +47157008200,4870.0,True,True +47157008500,4399.0,False,False +47157008600,6081.0,False,False +47157008700,4792.0,True,True +47157008800,6889.0,True,True +47157008900,4532.0,True,True +47157009100,3352.0,True,True +47157009200,7782.0,False,False +47157009300,4365.0,False,False +47157009400,3421.0,False,False +47157009500,5936.0,False,False +47157009600,5492.0,False,False +47157009700,2765.0,True,True +47157009800,3248.0,True,True +47157009901,2967.0,True,True +47157009902,1793.0,True,True +47157010000,7242.0,True,True +47157010110,6475.0,True,True +47157010120,5563.0,True,True +47157010210,5571.0,True,True +47157010220,8526.0,True,True +47157010300,1411.0,True,True +47157010500,1918.0,True,True +47157010610,6032.0,True,True +47157010620,3753.0,True,True +47157010630,4147.0,True,True +47157010710,5168.0,True,True +47157010720,3876.0,True,True +47157010810,5931.0,True,True +47157010820,4262.0,False,True +47157011010,3690.0,True,True +47157011020,1436.0,True,True +47157011100,1623.0,True,True +47157011200,1363.0,True,True +47157011300,1334.0,True,True +47157011400,5135.0,True,True +47157011500,2485.0,True,True +47157011600,2786.0,True,True +47157011700,1295.0,True,True +47157011800,5911.0,True,True +47157020101,3824.0,True,True +47157020102,2763.0,False,False +47157020210,5754.0,False,False +47157020221,2473.0,False,False +47157020222,2965.0,True,True +47157020300,5197.0,True,True +47157020400,1222.0,False,False +47157020511,2238.0,True,True +47157020512,5375.0,True,True +47157020521,3324.0,True,True +47157020523,2942.0,True,True +47157020524,4823.0,True,True +47157020531,5609.0,True,False +47157020532,6527.0,True,False +47157020541,5722.0,True,True +47157020542,5184.0,True,True +47157020610,4225.0,True,True +47157020621,8230.0,True,True +47157020622,4437.0,False,False +47157020632,5840.0,False,False +47157020633,2937.0,False,False +47157020634,3117.0,False,False +47157020635,2379.0,False,False +47157020642,10240.0,False,False +47157020643,8655.0,False,False +47157020644,9533.0,False,False +47157020651,6784.0,False,False +47157020652,5063.0,False,False +47157020700,2238.0,False,False +47157020810,2883.0,False,False +47157020820,8504.0,False,False +47157020831,3508.0,False,False +47157020832,10123.0,False,False +47157020900,10244.0,False,False +47157021010,17488.0,False,False +47157021020,6557.0,False,False +47157021111,4598.0,True,True +47157021112,6728.0,True,True +47157021113,3956.0,False,False +47157021121,5228.0,False,False +47157021122,6484.0,True,False +47157021124,7770.0,False,False +47157021125,4420.0,False,False +47157021126,5031.0,False,False +47157021135,7058.0,False,False +47157021136,5523.0,False,False +47157021137,8320.0,False,False +47157021138,4098.0,False,False +47157021139,4190.0,False,False +47157021140,5231.0,False,False +47157021141,7021.0,False,False +47157021142,3780.0,False,False +47157021200,1898.0,True,True +47157021311,4790.0,False,False +47157021312,2098.0,False,False +47157021320,6157.0,False,False +47157021331,3126.0,False,False +47157021333,4919.0,False,False +47157021334,4388.0,False,False +47157021341,5215.0,False,False +47157021342,10798.0,False,False +47157021351,4590.0,False,False +47157021352,6081.0,False,False +47157021353,9572.0,False,False +47157021410,2961.0,False,False +47157021420,2976.0,False,False +47157021430,4329.0,False,False +47157021510,8649.0,False,False +47157021520,13787.0,False,False +47157021530,5464.0,False,False +47157021540,12464.0,False,False +47157021611,6613.0,False,False +47157021612,4605.0,False,False +47157021613,4906.0,False,False +47157021620,3186.0,False,False +47157021710,3119.0,True,True +47157021721,4407.0,True,True +47157021724,2191.0,False,False +47157021725,4605.0,True,True +47157021726,3409.0,True,True +47157021731,3226.0,True,True +47157021732,6191.0,True,True +47157021741,8785.0,True,True +47157021744,5884.0,False,False +47157021745,8078.0,False,False +47157021746,4701.0,True,False +47157021747,4178.0,True,False +47157021751,7359.0,False,False +47157021752,4974.0,False,False +47157021753,2560.0,False,False +47157021754,4576.0,True,False +47157021900,5118.0,True,True +47157022022,4640.0,True,True +47157022023,1463.0,True,True +47157022024,3364.0,True,True +47157022111,5009.0,True,True +47157022112,6190.0,True,True +47157022121,4724.0,False,False +47157022122,4265.0,True,True +47157022130,5819.0,True,True +47157022210,4210.0,True,True +47157022220,3655.0,True,True +47157022310,6133.0,True,True +47157022321,3599.0,True,True +47157022322,3873.0,True,True +47157022330,4928.0,True,True +47157022410,6131.0,True,True +47157022500,5189.0,True,True +47157022600,3993.0,True,True +47157022700,7386.0,True,True +47157980100,82.0,True,True +47157980200,0.0,False,False +47157980300,0.0,False,False +47157980400,2383.0,False,False +47159975000,4240.0,True,True +47159975100,3129.0,True,True +47159975200,5784.0,True,True +47159975300,1889.0,True,True +47159975400,4698.0,False,False +47161110200,6318.0,False,False +47161110600,2582.0,True,True +47161110700,4527.0,False,False +47161980100,0.0,False,False +47161980200,0.0,False,False +47163040200,2393.0,True,True +47163040300,2664.0,True,True +47163040500,4572.0,True,True +47163040600,3123.0,True,True +47163040700,2464.0,False,True +47163040800,3584.0,True,True +47163040900,3220.0,True,False +47163041000,4406.0,False,False +47163041100,2513.0,True,True +47163041200,6361.0,False,False +47163041300,4956.0,True,True +47163041400,5136.0,False,False +47163041500,2703.0,False,False +47163041600,2490.0,False,False +47163041700,3274.0,True,True +47163041800,4409.0,True,True +47163041900,3016.0,True,True +47163042000,3425.0,True,True +47163042100,5978.0,True,True +47163042200,2941.0,True,True +47163042300,6137.0,False,False +47163042400,3383.0,False,False +47163042500,3735.0,False,False +47163042600,4074.0,True,True +47163042701,4439.0,True,True +47163042702,2302.0,True,True +47163042801,2897.0,True,True +47163042802,4592.0,True,True +47163042900,4344.0,False,False +47163043000,4193.0,True,True +47163043100,2958.0,True,True +47163043201,4295.0,False,False +47163043202,4868.0,True,True +47163043301,5958.0,False,False +47163043302,6149.0,True,True +47163043401,5703.0,True,True +47163043402,4755.0,True,True +47163043500,3736.0,False,False +47163043600,4904.0,False,False +47165020101,4072.0,True,True +47165020102,5093.0,True,True +47165020203,2572.0,False,False +47165020204,3459.0,False,False +47165020205,3326.0,False,False +47165020206,1256.0,True,True +47165020207,1958.0,False,False +47165020208,2878.0,False,False +47165020209,1969.0,False,False +47165020300,5384.0,True,True +47165020403,2035.0,False,False +47165020404,1914.0,False,False +47165020405,2348.0,False,False +47165020406,3892.0,False,False +47165020407,4584.0,False,False +47165020501,6099.0,False,False +47165020502,5717.0,False,False +47165020503,2210.0,False,False +47165020601,3911.0,False,False +47165020602,4708.0,False,False +47165020603,3310.0,False,False +47165020700,5719.0,False,False +47165020800,7237.0,True,True +47165020901,1434.0,False,False +47165020902,7120.0,True,True +47165020903,3936.0,False,False +47165021002,7408.0,False,False +47165021004,4655.0,False,False +47165021005,6214.0,False,False +47165021006,3639.0,False,False +47165021007,3356.0,False,False +47165021008,6207.0,False,False +47165021009,5547.0,False,False +47165021103,6262.0,False,False +47165021104,2107.0,True,False +47165021105,5963.0,False,False +47165021106,4339.0,False,False +47165021107,4904.0,False,False +47165021201,6889.0,False,False +47165021203,7680.0,False,False +47165021204,7358.0,False,False +47165021205,2768.0,False,False +47167040100,5051.0,False,True +47167040200,1900.0,True,True +47167040302,9829.0,False,False +47167040303,6514.0,False,False +47167040304,6850.0,True,True +47167040400,2988.0,True,True +47167040500,6553.0,False,False +47167040601,5264.0,False,False +47167040602,3230.0,False,True +47167040700,4979.0,True,True +47167040800,4027.0,False,False +47167040900,1609.0,False,False +47167041000,2653.0,True,True +47169090100,7230.0,False,False +47169090200,3001.0,False,False +47171080100,2490.0,True,True +47171080200,6416.0,True,True +47171080300,5245.0,True,True +47171080400,3660.0,True,True +47173040100,7062.0,True,True +47173040201,4060.0,True,True +47173040202,5966.0,True,True +47173040300,2400.0,True,True +47175925000,2895.0,True,True +47175925200,2865.0,True,True +47177930100,3668.0,True,True +47177930200,6938.0,True,True +47177930300,2639.0,False,False +47177930400,5248.0,True,False +47177930500,5249.0,True,True +47177930600,3675.0,True,True +47177930700,5256.0,True,False +47177930800,6187.0,True,False +47177930900,1842.0,True,True +47179060100,3496.0,True,True +47179060400,6000.0,False,False +47179060501,5152.0,True,False +47179060502,6286.0,False,False +47179060600,7433.0,False,False +47179060700,1922.0,False,False +47179060800,2764.0,False,False +47179060900,5937.0,True,True +47179061000,2357.0,True,True +47179061100,4315.0,False,False +47179061200,3963.0,True,True +47179061300,8170.0,False,False +47179061401,5302.0,False,False +47179061402,7544.0,False,False +47179061500,7687.0,False,False +47179061601,4496.0,False,False +47179061602,8818.0,False,False +47179061701,6530.0,False,False +47179061702,6841.0,False,False +47179061800,6694.0,True,True +47179061901,7240.0,True,True +47179061902,5225.0,True,True +47179062000,3633.0,True,True +47181950100,4932.0,True,True +47181950200,5226.0,True,True +47181950300,3416.0,True,True +47181950400,3119.0,True,True +47183968000,1221.0,True,True +47183968101,3263.0,True,True +47183968102,1926.0,True,False +47183968201,4678.0,False,False +47183968202,2388.0,False,True +47183968203,2779.0,False,True +47183968300,2342.0,True,True +47183968400,4983.0,True,False +47183968500,4673.0,True,True +47183968600,3704.0,True,True +47183968700,1553.0,True,True +47185935000,4632.0,True,True +47185935100,5676.0,True,False +47185935200,3961.0,True,True +47185935300,5096.0,True,True +47185935400,3754.0,True,True +47185935500,3681.0,True,True +47187050101,11039.0,False,False +47187050102,5266.0,False,False +47187050103,5908.0,False,False +47187050203,6433.0,False,False +47187050204,5622.0,False,False +47187050205,3561.0,False,False +47187050206,2922.0,False,False +47187050207,4107.0,False,False +47187050208,7678.0,False,False +47187050303,3137.0,False,False +47187050304,2464.0,False,False +47187050305,2904.0,False,False +47187050306,2059.0,False,False +47187050307,3617.0,False,False +47187050403,1993.0,False,False +47187050404,6457.0,False,False +47187050405,2686.0,False,False +47187050406,5870.0,False,False +47187050502,3938.0,False,False +47187050503,5783.0,False,False +47187050504,4225.0,False,False +47187050601,6342.0,False,False +47187050602,11733.0,False,False +47187050701,4302.0,False,False +47187050702,4701.0,False,False +47187050800,6357.0,True,False +47187050904,5738.0,False,False +47187050905,6235.0,False,False +47187050906,5708.0,False,False +47187050907,5576.0,False,False +47187050908,4161.0,False,False +47187050909,4147.0,False,False +47187051001,7407.0,False,False +47187051002,8887.0,False,False +47187051100,8460.0,False,False +47187051201,8304.0,False,False +47187051202,29662.0,False,False +47189030101,8652.0,False,False +47189030102,7144.0,False,False +47189030202,7684.0,False,False +47189030203,5986.0,False,False +47189030204,8699.0,False,False +47189030303,4629.0,False,False +47189030304,6623.0,False,False +47189030305,5567.0,False,False +47189030307,9568.0,False,False +47189030308,5211.0,False,False +47189030309,5659.0,False,False +47189030401,2563.0,True,False +47189030402,4375.0,True,False +47189030500,7961.0,True,True +47189030600,3960.0,False,False +47189030700,3779.0,True,True +47189030800,5996.0,False,False +47189030901,12404.0,False,False +47189030903,10319.0,False,False +47189030904,4160.0,False,False +47189031000,5727.0,False,False +48001950100,4844.0,False,False +48001950401,4838.0,False,False +48001950402,7511.0,False,False +48001950500,4465.0,True,True +48001950600,5148.0,True,True +48001950700,2783.0,True,True +48001950800,5505.0,True,True +48001950901,6501.0,True,True +48001950902,4501.0,True,True +48001951000,7276.0,False,True +48001951100,4438.0,False,False +48003950100,2305.0,False,False +48003950200,7465.0,False,False +48003950300,4889.0,True,True +48003950400,3377.0,False,False +48005000101,6346.0,True,False +48005000102,4761.0,False,False +48005000200,6677.0,True,True +48005000301,5288.0,False,False +48005000302,5218.0,True,False +48005000400,4938.0,True,True +48005000500,3973.0,True,True +48005000600,6674.0,True,True +48005000700,3834.0,True,True +48005000800,5933.0,False,False +48005000901,6377.0,False,False +48005000902,3704.0,False,False +48005001001,4886.0,True,True +48005001002,4031.0,True,True +48005001100,6716.0,False,False +48005001200,2400.0,True,True +48005001300,5566.0,True,True +48007950100,5333.0,True,True +48007950200,1085.0,False,False +48007950300,7598.0,True,True +48007950400,4573.0,True,True +48007950500,5873.0,True,True +48007990000,0.0,False,False +48009020100,2939.0,False,False +48009020200,2323.0,False,False +48009020300,3454.0,True,True +48011950100,1973.0,False,False +48013960100,7213.0,True,True +48013960201,7326.0,True,True +48013960202,11041.0,True,True +48013960300,3707.0,True,True +48013960401,2450.0,False,True +48013960402,9104.0,False,False +48013960500,2545.0,True,True +48013960600,6142.0,True,True +48015760100,2781.0,True,True +48015760200,5876.0,False,False +48015760300,6777.0,False,False +48015760400,4009.0,False,False +48015760501,4894.0,False,False +48015760502,5427.0,True,True +48017950100,7100.0,True,True +48019000101,4393.0,True,True +48019000102,5955.0,False,False +48019000200,2825.0,False,False +48019000300,6774.0,False,False +48019000400,2268.0,False,False +48021950100,8298.0,False,False +48021950200,9373.0,False,False +48021950300,16034.0,False,False +48021950400,9375.0,False,False +48021950501,8588.0,True,True +48021950502,6386.0,False,False +48021950600,5500.0,False,False +48021950700,4579.0,False,False +48021950801,8014.0,True,True +48021950802,8375.0,True,True +48023950300,3577.0,False,False +48025950100,1819.0,False,False +48025950201,8417.0,False,True +48025950202,5709.0,True,True +48025950300,5720.0,True,True +48025950400,2189.0,True,True +48025950500,6215.0,True,True +48025950600,2542.0,False,True +48027020100,7644.0,False,False +48027020201,8745.0,False,False +48027020202,7320.0,False,False +48027020300,11243.0,False,False +48027020401,3310.0,True,True +48027020402,2498.0,True,True +48027020500,3708.0,True,True +48027020600,2650.0,False,True +48027020701,1474.0,True,True +48027020702,1728.0,True,True +48027020800,2897.0,True,True +48027020900,2887.0,True,True +48027021000,4237.0,True,True +48027021100,5747.0,True,False +48027021201,3344.0,False,False +48027021202,4101.0,False,False +48027021203,4556.0,False,False +48027021301,5143.0,False,False +48027021302,2975.0,False,False +48027021303,10237.0,False,False +48027021400,4350.0,False,False +48027021500,7386.0,False,False +48027021601,5589.0,True,True +48027021602,2881.0,False,False +48027021700,8754.0,False,False +48027021800,9390.0,False,False +48027021901,3535.0,False,False +48027021903,9104.0,False,False +48027021904,12109.0,False,False +48027022000,8180.0,True,True +48027022101,4297.0,True,False +48027022103,5648.0,True,True +48027022104,4196.0,True,True +48027022105,2101.0,True,True +48027022200,3604.0,True,False +48027022300,3775.0,True,True +48027022401,5866.0,True,False +48027022402,7930.0,False,False +48027022403,4568.0,False,False +48027022404,7439.0,False,False +48027022405,2101.0,False,False +48027022501,3026.0,False,False +48027022502,12231.0,False,False +48027022600,4251.0,True,True +48027022801,2424.0,True,True +48027022900,3555.0,True,True +48027023000,10026.0,False,False +48027023103,4603.0,True,False +48027023104,3181.0,True,False +48027023105,15983.0,False,False +48027023106,8719.0,False,False +48027023107,6917.0,False,False +48027023108,15257.0,False,False +48027023201,1301.0,False,False +48027023202,4665.0,True,True +48027023203,1160.0,True,True +48027023204,4724.0,True,True +48027023300,8544.0,False,False +48027023402,5479.0,False,False +48027023403,7023.0,False,False +48027023404,4090.0,False,False +48027023500,2088.0,True,True +48027980001,80.0,False,False +48027980002,0.0,False,False +48027980003,0.0,False,False +48029110100,3160.0,False,False +48029110300,2977.0,True,True +48029110500,2507.0,True,True +48029110600,5293.0,True,True +48029110700,1171.0,True,True +48029110800,2024.0,True,True +48029110900,1669.0,False,False +48029111000,2948.0,True,True +48029120100,4844.0,False,False +48029120300,8374.0,False,False +48029120400,6326.0,False,False +48029120501,9985.0,True,True +48029120502,5327.0,True,True +48029120600,5850.0,False,False +48029120701,6416.0,False,False +48029120702,4614.0,False,False +48029120800,6934.0,False,False +48029120901,2457.0,True,True +48029120902,7551.0,False,False +48029121000,7798.0,True,False +48029121108,8109.0,False,False +48029121110,5188.0,False,False +48029121111,6917.0,False,False +48029121112,3717.0,False,False +48029121115,5755.0,False,False +48029121116,5399.0,False,False +48029121117,4623.0,False,False +48029121118,6263.0,False,False +48029121119,6176.0,False,False +48029121120,5183.0,False,False +48029121121,2908.0,False,False +48029121122,6009.0,False,False +48029121203,4727.0,True,True +48029121204,7789.0,True,True +48029121205,4627.0,True,True +48029121206,8742.0,True,True +48029121300,6588.0,False,False +48029121402,7500.0,True,True +48029121403,6281.0,True,True +48029121404,5548.0,True,True +48029121501,10037.0,False,False +48029121504,6553.0,False,False +48029121505,4858.0,True,False +48029121506,4004.0,True,False +48029121507,4531.0,True,False +48029121508,4563.0,True,True +48029121601,5657.0,True,False +48029121604,9259.0,False,False +48029121605,2027.0,False,False +48029121606,5015.0,False,False +48029121701,4679.0,False,False +48029121702,7880.0,False,False +48029121802,8497.0,False,False +48029121803,4994.0,False,False +48029121804,7217.0,True,True +48029121808,3343.0,False,False +48029121809,5117.0,False,False +48029121810,4891.0,False,False +48029121811,5616.0,False,False +48029121812,6881.0,True,True +48029121813,1738.0,False,False +48029121903,5883.0,False,False +48029121904,3176.0,False,False +48029121905,5438.0,False,False +48029121906,5583.0,False,False +48029121907,13024.0,False,False +48029121908,2709.0,False,False +48029121909,8331.0,False,False +48029121910,7385.0,False,False +48029130200,1623.0,True,True +48029130300,3360.0,True,True +48029130401,4081.0,True,True +48029130402,4197.0,True,True +48029130500,4806.0,True,True +48029130600,3878.0,True,True +48029130700,2636.0,True,True +48029130800,6068.0,True,True +48029130900,5246.0,True,True +48029131000,5206.0,True,True +48029131100,2651.0,True,True +48029131200,2806.0,True,True +48029131300,6156.0,True,True +48029131401,11090.0,False,False +48029131402,3023.0,True,True +48029131503,3119.0,False,False +48029131504,4824.0,True,True +48029131505,5790.0,False,False +48029131506,3859.0,False,False +48029131507,6326.0,True,True +48029131601,5645.0,False,False +48029131606,6056.0,False,False +48029131608,5928.0,False,False +48029131609,6725.0,False,False +48029131610,5029.0,False,False +48029131611,873.0,False,False +48029131612,1940.0,False,False +48029131613,4066.0,False,False +48029131614,4009.0,True,True +48029131615,7458.0,False,False +48029131700,1129.0,False,False +48029131801,2116.0,False,False +48029131802,4327.0,False,False +48029140100,1261.0,True,True +48029140200,3377.0,True,True +48029140300,3590.0,True,True +48029140400,3631.0,True,True +48029140500,4234.0,True,True +48029140600,2861.0,True,True +48029140700,4838.0,True,True +48029140800,5124.0,True,True +48029140900,1949.0,True,True +48029141000,3531.0,True,True +48029141101,4194.0,True,True +48029141102,3319.0,True,True +48029141200,7628.0,True,True +48029141300,6851.0,True,True +48029141402,5986.0,False,False +48029141403,4803.0,False,False +48029141404,5953.0,True,True +48029141600,4889.0,False,False +48029141700,5811.0,False,False +48029141800,3880.0,True,True +48029141900,4510.0,False,False +48029150100,5588.0,True,True +48029150300,4845.0,True,True +48029150400,4946.0,True,True +48029150501,4595.0,True,True +48029150502,3595.0,True,True +48029150600,4959.0,True,True +48029150700,7360.0,True,True +48029150800,2763.0,True,True +48029150900,6956.0,True,True +48029151000,4003.0,True,True +48029151100,8115.0,True,True +48029151200,11162.0,True,True +48029151301,5947.0,True,True +48029151302,3744.0,True,True +48029151400,5501.0,True,True +48029151500,2625.0,True,True +48029151600,8616.0,True,True +48029151700,7506.0,True,True +48029151900,7312.0,False,False +48029152000,3160.0,True,True +48029152100,4885.0,True,True +48029152201,7136.0,True,True +48029152202,5529.0,True,True +48029160100,7160.0,True,True +48029160200,3327.0,True,True +48029160300,5471.0,True,True +48029160400,5339.0,True,True +48029160501,4455.0,True,True +48029160502,4572.0,True,True +48029160600,5287.0,True,True +48029160701,3831.0,True,True +48029160702,5544.0,True,True +48029160901,2620.0,True,True +48029160902,5334.0,True,True +48029161000,4101.0,True,True +48029161100,9720.0,True,True +48029161200,2939.0,True,True +48029161302,6129.0,True,True +48029161303,4505.0,True,True +48029161304,4639.0,True,True +48029161400,6490.0,False,False +48029161501,8236.0,True,True +48029161503,5401.0,True,True +48029161504,4401.0,True,True +48029161600,4880.0,True,True +48029161801,4296.0,True,True +48029161802,10237.0,True,True +48029161901,927.0,True,True +48029161902,10698.0,False,False +48029162001,2122.0,True,True +48029162003,4752.0,True,True +48029162004,3446.0,True,True +48029170101,3881.0,True,True +48029170102,3514.0,True,True +48029170200,5599.0,True,True +48029170300,6455.0,True,True +48029170401,4298.0,True,True +48029170402,5394.0,True,True +48029170500,4648.0,True,True +48029170600,4591.0,True,True +48029170700,5057.0,True,True +48029170800,1740.0,True,True +48029170900,3696.0,True,True +48029171000,6221.0,True,True +48029171100,3736.0,True,True +48029171200,4065.0,True,True +48029171301,2858.0,True,True +48029171302,4998.0,False,True +48029171401,4986.0,True,True +48029171402,6610.0,True,True +48029171501,2609.0,True,True +48029171502,5062.0,True,True +48029171601,4412.0,True,True +48029171602,4590.0,True,True +48029171700,9093.0,True,True +48029171801,6037.0,True,True +48029171802,6400.0,True,True +48029171902,13145.0,True,False +48029171903,7351.0,True,True +48029171912,7934.0,False,False +48029171913,6309.0,True,False +48029171914,5902.0,False,False +48029171915,2322.0,False,False +48029171916,9099.0,False,False +48029171917,10128.0,False,False +48029171918,6151.0,False,False +48029171919,5333.0,False,False +48029171920,9402.0,False,False +48029171921,4593.0,False,False +48029171922,3505.0,False,False +48029171923,10263.0,False,False +48029171924,7856.0,False,False +48029171925,10228.0,False,False +48029172002,18624.0,False,False +48029172003,5195.0,False,False +48029172004,7580.0,False,False +48029172005,9060.0,False,False +48029172006,9694.0,False,False +48029172007,11073.0,False,False +48029180101,5257.0,True,True +48029180102,1874.0,False,False +48029180201,5372.0,True,True +48029180202,5000.0,True,True +48029180300,5207.0,True,True +48029180400,4709.0,True,True +48029180501,4628.0,True,True +48029180503,4849.0,True,True +48029180504,4868.0,True,True +48029180602,3751.0,True,True +48029180603,2386.0,False,False +48029180604,6812.0,True,True +48029180701,3971.0,False,False +48029180702,6892.0,True,True +48029180800,2842.0,True,True +48029180901,5890.0,True,True +48029180902,7969.0,True,True +48029181001,3393.0,True,True +48029181003,8338.0,True,True +48029181004,5392.0,True,False +48029181005,4177.0,True,True +48029181100,6359.0,False,False +48029181200,5335.0,False,False +48029181301,4536.0,False,False +48029181302,6523.0,False,False +48029181303,4173.0,True,True +48029181402,2728.0,False,False +48029181403,7029.0,False,False +48029181404,5667.0,False,False +48029181503,8430.0,False,False +48029181504,6930.0,False,False +48029181505,4942.0,False,False +48029181506,4556.0,False,False +48029181601,3468.0,True,True +48029181602,6007.0,True,True +48029181703,7484.0,False,False +48029181704,6579.0,False,False +48029181705,5796.0,False,False +48029181711,9030.0,False,False +48029181712,4460.0,False,False +48029181713,8183.0,False,False +48029181715,6573.0,False,False +48029181716,8871.0,False,False +48029181718,5850.0,False,False +48029181720,5066.0,False,False +48029181721,3979.0,False,False +48029181722,5166.0,False,False +48029181723,4912.0,False,False +48029181724,5488.0,False,False +48029181725,5045.0,True,True +48029181726,10383.0,False,False +48029181727,4172.0,False,False +48029181728,11498.0,False,False +48029181729,9256.0,False,False +48029181730,4085.0,False,False +48029181731,7741.0,False,False +48029181808,1785.0,False,False +48029181809,6770.0,False,False +48029181811,4555.0,False,False +48029181813,8061.0,True,False +48029181814,6811.0,False,False +48029181815,3449.0,False,False +48029181816,4647.0,False,False +48029181817,3774.0,False,False +48029181818,6288.0,False,False +48029181819,7468.0,False,True +48029181820,8305.0,False,True +48029181821,3563.0,False,False +48029181822,5155.0,False,False +48029181823,3409.0,False,False +48029181824,3228.0,False,False +48029181825,5209.0,False,False +48029181826,7963.0,False,False +48029181901,5945.0,False,False +48029181902,7984.0,False,False +48029182001,5899.0,False,False +48029182002,10293.0,False,False +48029182003,4949.0,False,False +48029182101,12033.0,False,False +48029182102,8632.0,False,False +48029182103,3820.0,False,False +48029182105,6005.0,False,False +48029182106,7440.0,False,False +48029190100,3515.0,True,True +48029190200,4363.0,False,False +48029190400,4242.0,False,False +48029190501,3474.0,True,True +48029190503,3767.0,True,True +48029190504,2837.0,True,True +48029190601,4514.0,True,True +48029190603,3250.0,True,True +48029190604,4801.0,True,True +48029190700,3107.0,True,True +48029190800,1832.0,False,False +48029190901,6286.0,True,True +48029190902,4467.0,False,False +48029191003,9238.0,True,True +48029191004,4732.0,True,True +48029191005,2350.0,False,True +48029191006,6271.0,True,True +48029191101,2083.0,False,False +48029191102,2364.0,False,False +48029191201,3489.0,False,False +48029191202,5448.0,True,False +48029191303,1784.0,False,False +48029191304,2523.0,True,True +48029191405,8862.0,False,False +48029191406,6425.0,False,False +48029191408,2556.0,True,True +48029191409,7187.0,False,False +48029191410,5352.0,True,True +48029191411,4576.0,False,False +48029191412,2447.0,False,False +48029191413,6536.0,False,False +48029191503,5474.0,False,False +48029191504,2583.0,False,False +48029191505,2492.0,False,False +48029191506,6553.0,False,False +48029191701,1410.0,False,False +48029191702,7619.0,False,False +48029191804,7554.0,False,False +48029191806,8484.0,False,False +48029191807,7565.0,False,False +48029191808,4615.0,False,False +48029191809,6966.0,False,False +48029191810,4275.0,False,False +48029191811,4451.0,False,False +48029191812,4203.0,False,False +48029191813,7314.0,False,False +48029191814,4183.0,False,False +48029191815,4750.0,False,False +48029191816,2692.0,False,False +48029191817,12785.0,False,False +48029191900,4855.0,True,True +48029192000,5010.0,False,False +48029192100,2299.0,False,False +48029192200,2790.0,False,False +48029192300,5670.0,False,False +48029980001,0.0,False,False +48029980002,0.0,False,False +48029980003,1033.0,False,False +48029980004,0.0,False,False +48029980005,0.0,False,False +48029980100,793.0,True,False +48031950100,5463.0,False,False +48031950200,6015.0,False,False +48033950100,613.0,False,False +48035950100,4326.0,True,True +48035950200,1586.0,True,True +48035950300,1353.0,False,False +48035950400,3677.0,False,False +48035950500,3100.0,True,True +48035950600,1789.0,True,True +48035950700,2465.0,False,False +48037010100,5726.0,True,True +48037010400,3730.0,True,True +48037010500,2514.0,True,True +48037010600,1632.0,True,True +48037010700,5346.0,True,True +48037010800,4681.0,True,True +48037010901,7089.0,False,False +48037010902,7706.0,False,False +48037011000,7604.0,True,False +48037011100,7654.0,False,False +48037011200,6797.0,False,False +48037011300,5152.0,True,True +48037011401,7451.0,False,False +48037011402,2219.0,True,True +48037011501,7961.0,False,False +48037011502,2762.0,True,True +48037011600,5151.0,True,True +48037011700,2198.0,False,False +48039660100,5037.0,False,False +48039660200,6704.0,False,False +48039660300,11643.0,False,False +48039660400,11429.0,False,False +48039660500,9163.0,False,False +48039660601,13005.0,False,False +48039660602,49119.0,False,False +48039660701,15574.0,False,False +48039660702,15351.0,False,False +48039660801,9590.0,False,False +48039660802,9038.0,False,False +48039660900,7845.0,False,False +48039661000,7896.0,False,False +48039661100,3763.0,False,False +48039661200,4283.0,True,True +48039661300,2432.0,True,True +48039661400,7030.0,False,False +48039661501,5223.0,False,False +48039661502,4647.0,False,False +48039661601,6143.0,False,False +48039661602,3031.0,False,False +48039661700,2796.0,False,False +48039661800,6980.0,False,False +48039661900,15144.0,False,False +48039662000,6191.0,False,False +48039662100,5367.0,False,False +48039662200,7339.0,False,False +48039662300,5038.0,False,False +48039662400,5110.0,False,False +48039662500,2944.0,False,False +48039662600,3119.0,False,False +48039662700,2344.0,True,True +48039662800,6196.0,False,False +48039662900,4824.0,False,True +48039663000,4244.0,False,False +48039663100,7575.0,False,False +48039663200,4960.0,False,False +48039663300,2340.0,False,False +48039663400,7720.0,False,False +48039663500,5624.0,False,False +48039663600,5249.0,False,False +48039663700,3631.0,False,False +48039663800,6383.0,False,False +48039663900,2581.0,False,False +48039664000,3602.0,False,False +48039664100,5878.0,False,False +48039664200,2149.0,True,True +48039664300,5691.0,True,True +48039664400,6205.0,True,True +48039664501,5507.0,False,True +48039990000,0.0,False,False +48041000101,8810.0,False,False +48041000102,5785.0,False,False +48041000103,1625.0,False,False +48041000201,6452.0,False,False +48041000202,8611.0,False,False +48041000300,6895.0,False,False +48041000400,5081.0,True,True +48041000500,7119.0,True,True +48041000603,5946.0,True,True +48041000604,6476.0,True,True +48041000700,3270.0,True,True +48041000800,5337.0,True,True +48041000900,2542.0,True,True +48041001000,7594.0,False,True +48041001100,4895.0,False,False +48041001301,2606.0,False,False +48041001302,5088.0,False,False +48041001303,4658.0,False,True +48041001400,2897.0,False,False +48041001601,4493.0,False,False +48041001604,5598.0,False,False +48041001605,4082.0,False,False +48041001606,3539.0,False,True +48041001701,6061.0,False,False +48041001702,2789.0,False,True +48041001801,5855.0,False,False +48041001803,7232.0,False,False +48041001804,1668.0,False,False +48041001900,5843.0,False,False +48041002001,5667.0,False,False +48041002002,8741.0,False,False +48041002006,1696.0,False,False +48041002007,7581.0,False,False +48041002008,10250.0,False,False +48041002009,5391.0,False,False +48041002010,2998.0,False,False +48041002011,5239.0,False,False +48041002012,6881.0,False,False +48041002013,7631.0,False,False +48041002014,2590.0,False,False +48041002015,9469.0,False,False +48041980000,0.0,False,False +48043950300,4496.0,False,False +48043950400,1829.0,True,True +48043950500,2906.0,False,False +48045950200,1457.0,True,True +48047950100,2118.0,True,True +48047950200,5023.0,True,True +48049950100,2054.0,False,False +48049950200,4324.0,False,False +48049950300,2904.0,False,False +48049950500,2802.0,False,False +48049950600,2333.0,True,True +48049950700,1284.0,False,True +48049950800,2687.0,True,True +48049950900,4202.0,True,True +48049951000,2787.0,True,True +48049951100,4395.0,True,True +48049951200,4714.0,False,False +48049951300,3369.0,False,False +48051970100,1201.0,False,False +48051970200,4530.0,False,False +48051970300,4512.0,False,False +48051970400,3492.0,False,False +48051970500,4323.0,False,False +48053960100,7452.0,False,False +48053960200,2959.0,False,False +48053960300,6675.0,False,False +48053960400,5482.0,False,False +48053960500,6287.0,True,True +48053960600,3978.0,False,False +48053960700,7331.0,False,False +48053960800,6366.0,False,False +48055960101,7888.0,True,True +48055960102,4309.0,True,True +48055960200,5569.0,True,True +48055960300,4426.0,False,True +48055960400,3723.0,True,True +48055960500,7676.0,True,True +48055960600,2495.0,False,False +48055960700,6058.0,True,True +48057000100,5451.0,False,False +48057000200,4343.0,True,True +48057000300,1657.0,False,False +48057000400,6875.0,True,True +48057000500,3342.0,True,True +48057990000,0.0,False,False +48059030101,4888.0,True,True +48059030102,4225.0,False,False +48059030200,4743.0,True,True +48061010100,9576.0,True,True +48061010201,2280.0,True,True +48061010203,8159.0,True,True +48061010301,5325.0,True,True +48061010302,9417.0,True,True +48061010401,6510.0,True,True +48061010402,8173.0,True,True +48061010500,2667.0,True,True +48061010601,8442.0,True,True +48061010602,1532.0,False,False +48061010700,2885.0,True,True +48061010800,7409.0,True,True +48061010900,1448.0,True,True +48061011000,2796.0,True,True +48061011100,2364.0,True,True +48061011200,1666.0,True,True +48061011301,1408.0,True,True +48061011302,4487.0,False,True +48061011400,6387.0,False,True +48061011500,6300.0,True,True +48061011600,6112.0,True,True +48061011700,7583.0,True,True +48061011801,5845.0,True,True +48061011802,3381.0,True,True +48061011901,6092.0,True,True +48061011902,5257.0,True,True +48061011903,2668.0,True,True +48061012001,6089.0,False,True +48061012002,5157.0,True,True +48061012101,4614.0,False,True +48061012102,4857.0,True,True +48061012200,10755.0,True,True +48061012301,3929.0,True,True +48061012304,4345.0,True,True +48061012305,3051.0,False,False +48061012401,7167.0,True,True +48061012402,5752.0,True,True +48061012504,18134.0,True,True +48061012505,10771.0,True,True +48061012506,4541.0,False,True +48061012507,7064.0,True,True +48061012508,4164.0,True,True +48061012607,3016.0,True,True +48061012608,4556.0,True,True +48061012609,7002.0,True,True +48061012612,6364.0,False,True +48061012613,5286.0,False,False +48061012700,5021.0,True,True +48061012800,5167.0,True,True +48061012900,4743.0,True,True +48061013002,4367.0,True,True +48061013003,2081.0,True,True +48061013004,2651.0,True,True +48061013102,4521.0,True,True +48061013104,3622.0,True,True +48061013106,4341.0,True,True +48061013203,2096.0,True,True +48061013204,2086.0,True,True +48061013205,3518.0,True,True +48061013206,3258.0,True,True +48061013207,5112.0,True,True +48061013303,4079.0,True,True +48061013305,4708.0,True,True +48061013306,2593.0,True,True +48061013307,1758.0,True,True +48061013308,3549.0,True,True +48061013309,2849.0,True,True +48061013401,2396.0,True,True +48061013402,1999.0,True,True +48061013500,1773.0,True,True +48061013600,2839.0,True,True +48061013700,4042.0,True,True +48061013801,2431.0,True,True +48061013802,3190.0,True,True +48061013901,2656.0,True,True +48061013902,4216.0,True,True +48061013903,3978.0,True,True +48061014001,1815.0,True,True +48061014002,2311.0,True,True +48061014100,12498.0,True,True +48061014200,5597.0,True,True +48061014300,4577.0,True,True +48061014400,21039.0,False,False +48061014500,9406.0,False,False +48061980001,0.0,False,False +48061980100,0.0,False,False +48061990000,0.0,False,False +48063950101,3720.0,True,True +48063950102,4259.0,False,False +48063950200,4899.0,True,True +48065950100,2131.0,False,False +48065950200,3878.0,False,False +48067950100,7471.0,True,True +48067950200,2063.0,True,True +48067950300,1785.0,True,True +48067950400,5295.0,True,True +48067950500,2601.0,False,True +48067950600,5852.0,True,True +48067950700,4992.0,True,True +48069950100,1362.0,False,False +48069950200,4189.0,True,True +48069950300,2122.0,True,True +48071710100,9246.0,False,False +48071710200,20191.0,False,False +48071710300,2715.0,False,False +48071710401,5399.0,False,False +48071710500,3754.0,True,True +48071710600,0.0,False,False +48071990000,0.0,False,False +48073950100,4367.0,True,True +48073950200,6916.0,False,False +48073950300,7543.0,False,False +48073950400,2050.0,True,True +48073950500,3832.0,True,True +48073950600,5649.0,True,False +48073950700,4301.0,True,True +48073950801,4110.0,True,True +48073950802,3917.0,False,False +48073950900,4267.0,True,True +48073951000,3231.0,True,True +48073951100,1935.0,True,True +48075950100,2316.0,False,False +48075950200,4937.0,True,True +48077030200,3066.0,False,False +48077030301,4511.0,False,False +48077030302,2826.0,False,False +48079950100,2887.0,True,True +48081950100,1538.0,True,True +48081950200,1765.0,True,True +48083950300,4542.0,True,True +48083950600,1283.0,False,False +48083950700,2509.0,True,True +48085030100,6121.0,True,True +48085030201,3360.0,False,False +48085030202,3476.0,False,False +48085030203,22332.0,False,False +48085030301,7349.0,False,False +48085030302,5048.0,False,False +48085030303,8360.0,False,False +48085030304,6046.0,False,False +48085030305,17436.0,False,False +48085030403,5890.0,False,False +48085030404,5932.0,False,False +48085030405,5072.0,False,False +48085030406,5084.0,False,False +48085030407,4288.0,False,False +48085030408,7675.0,False,False +48085030504,3642.0,False,False +48085030505,5161.0,False,False +48085030506,2963.0,False,False +48085030507,1750.0,False,False +48085030508,7077.0,False,False +48085030509,2817.0,False,False +48085030510,3455.0,False,False +48085030511,12065.0,False,False +48085030512,5238.0,False,False +48085030513,13098.0,False,False +48085030514,7454.0,False,False +48085030515,6339.0,False,False +48085030516,7569.0,False,False +48085030517,9398.0,False,False +48085030518,7379.0,False,False +48085030519,4966.0,False,False +48085030520,6942.0,False,False +48085030521,5164.0,False,False +48085030522,12020.0,False,False +48085030523,11900.0,False,False +48085030524,5708.0,False,False +48085030525,6256.0,False,False +48085030526,11222.0,False,False +48085030527,5212.0,False,False +48085030528,8692.0,False,False +48085030529,3413.0,False,False +48085030530,6092.0,False,False +48085030531,7166.0,False,False +48085030601,10687.0,False,False +48085030603,9500.0,False,False +48085030604,3214.0,False,False +48085030605,7602.0,False,False +48085030701,3621.0,False,False +48085030702,5401.0,True,True +48085030801,4476.0,False,False +48085030802,5597.0,True,True +48085030900,10118.0,True,True +48085031001,6695.0,False,False +48085031003,7057.0,False,False +48085031004,6032.0,False,False +48085031100,9203.0,False,False +48085031201,5096.0,False,False +48085031202,4982.0,False,False +48085031308,6382.0,False,False +48085031309,9697.0,False,False +48085031310,11899.0,False,False +48085031311,11872.0,False,False +48085031312,6617.0,False,False +48085031313,13198.0,False,False +48085031314,2985.0,False,False +48085031315,21863.0,False,False +48085031316,6921.0,False,False +48085031317,9742.0,False,False +48085031405,25820.0,False,False +48085031406,18766.0,False,False +48085031407,7977.0,False,False +48085031408,3858.0,False,False +48085031409,11660.0,False,False +48085031410,9271.0,False,False +48085031411,5739.0,False,False +48085031504,7112.0,False,False +48085031505,8729.0,False,False +48085031506,9509.0,False,False +48085031507,6403.0,False,False +48085031508,6372.0,False,False +48085031611,4184.0,False,False +48085031612,6197.0,False,False +48085031613,5540.0,False,False +48085031621,5528.0,False,False +48085031622,6613.0,False,False +48085031623,2822.0,False,False +48085031624,3828.0,True,True +48085031625,4868.0,False,False +48085031626,2344.0,False,False +48085031627,5201.0,False,False +48085031628,3766.0,False,False +48085031629,3980.0,False,False +48085031630,4612.0,False,False +48085031631,4670.0,False,False +48085031632,6037.0,False,False +48085031633,4341.0,False,False +48085031634,3622.0,False,False +48085031635,4542.0,False,False +48085031636,7198.0,False,False +48085031637,7181.0,False,False +48085031638,6849.0,False,False +48085031639,6820.0,False,False +48085031640,8646.0,False,False +48085031641,6415.0,False,False +48085031642,4559.0,False,False +48085031643,5036.0,False,False +48085031645,1950.0,False,False +48085031646,6125.0,False,False +48085031647,3198.0,False,False +48085031648,7269.0,False,False +48085031649,4491.0,False,False +48085031652,7947.0,False,False +48085031653,7188.0,False,False +48085031654,3666.0,False,False +48085031655,4855.0,False,False +48085031656,2877.0,False,False +48085031657,3084.0,False,False +48085031658,4265.0,False,False +48085031659,2428.0,False,False +48085031660,4597.0,False,False +48085031661,3435.0,False,False +48085031662,4818.0,False,False +48085031663,3608.0,False,False +48085031664,3821.0,False,False +48085031704,3642.0,False,False +48085031706,2468.0,False,False +48085031708,4216.0,False,False +48085031709,4300.0,False,False +48085031711,3311.0,False,False +48085031712,5112.0,False,False +48085031713,4521.0,False,False +48085031714,6725.0,False,False +48085031715,2783.0,False,False +48085031716,2500.0,False,False +48085031717,1923.0,False,False +48085031718,2640.0,False,False +48085031719,1830.0,False,False +48085031720,4640.0,True,True +48085031802,7372.0,False,False +48085031804,6564.0,False,False +48085031805,5127.0,False,False +48085031806,2676.0,False,False +48085031807,4699.0,False,False +48085031900,7515.0,False,False +48085032003,5448.0,True,True +48085032004,7961.0,True,True +48085032008,4484.0,False,False +48085032009,6755.0,False,False +48085032010,6163.0,False,True +48085032011,7623.0,False,False +48085032012,4299.0,True,True +48085032013,6359.0,True,True +48087950300,2969.0,True,True +48089750100,4648.0,True,True +48089750200,1983.0,True,True +48089750300,5310.0,False,False +48089750400,5502.0,False,False +48089750500,3781.0,False,False +48091310100,4218.0,False,False +48091310200,4345.0,False,False +48091310300,8013.0,False,False +48091310401,5704.0,False,False +48091310403,7473.0,False,False +48091310404,4885.0,True,True +48091310501,5016.0,True,True +48091310502,6267.0,False,False +48091310503,5046.0,False,False +48091310603,3829.0,False,False +48091310604,2964.0,False,False +48091310605,5781.0,False,False +48091310606,5281.0,False,False +48091310607,4778.0,False,False +48091310608,3729.0,True,True +48091310701,6684.0,False,False +48091310702,5081.0,False,False +48091310703,6550.0,False,False +48091310704,7100.0,False,False +48091310801,6587.0,False,False +48091310802,9239.0,False,False +48091310901,7577.0,False,False +48091310902,9789.0,False,False +48091310903,5706.0,False,False +48093950100,4050.0,False,False +48093950200,3313.0,False,False +48093950300,4310.0,True,True +48093950400,1856.0,True,True +48095950300,3266.0,True,True +48097000100,6268.0,False,False +48097000200,4846.0,False,False +48097000400,1950.0,True,True +48097000500,3876.0,True,True +48097000600,5036.0,True,True +48097000700,7289.0,False,False +48097000900,4969.0,False,False +48097001100,5807.0,True,True +48099010101,4152.0,False,False +48099010102,3352.0,False,False +48099010201,7878.0,True,False +48099010202,4845.0,False,False +48099010300,2546.0,True,True +48099010400,4456.0,False,False +48099010501,2527.0,True,True +48099010502,2053.0,True,False +48099010503,5900.0,True,False +48099010504,1576.0,True,False +48099010601,4205.0,True,True +48099010603,5354.0,False,False +48099010604,6419.0,False,False +48099010701,3838.0,True,True +48099010702,3259.0,False,False +48099010802,5622.0,False,False +48099010803,2599.0,False,False +48099010804,4561.0,False,False +48099980000,138.0,True,True +48101950100,1642.0,True,True +48103950100,4802.0,False,False +48105950100,3484.0,False,False +48107950100,2085.0,True,True +48107950200,2123.0,True,True +48107950300,1628.0,True,True +48109950300,2214.0,True,True +48111950100,1155.0,False,False +48111950300,6149.0,False,True +48113000100,4081.0,False,False +48113000201,3010.0,False,False +48113000202,3962.0,False,False +48113000300,4229.0,False,False +48113000401,5584.0,True,True +48113000404,3766.0,False,False +48113000405,2301.0,True,True +48113000406,8592.0,True,True +48113000500,6414.0,False,False +48113000601,5931.0,False,False +48113000603,4342.0,False,False +48113000605,2525.0,False,False +48113000606,2642.0,False,False +48113000701,5517.0,False,False +48113000702,3361.0,False,False +48113000800,7099.0,False,False +48113000900,5442.0,False,False +48113001001,1455.0,False,False +48113001002,1930.0,False,False +48113001101,3831.0,False,False +48113001102,2747.0,False,False +48113001202,3641.0,False,False +48113001203,1481.0,False,False +48113001204,2902.0,True,True +48113001301,2803.0,False,False +48113001302,2537.0,True,True +48113001400,3664.0,True,False +48113001502,3728.0,True,True +48113001503,2817.0,True,True +48113001504,2466.0,True,True +48113001600,4432.0,False,False +48113001701,454.0,False,False +48113001703,3594.0,False,False +48113001704,1919.0,False,False +48113001800,5825.0,False,False +48113001900,7408.0,False,False +48113002000,6264.0,True,True +48113002100,2338.0,False,False +48113002200,2504.0,False,False +48113002400,2789.0,True,True +48113002500,6356.0,True,True +48113002701,3675.0,True,True +48113002702,1756.0,True,True +48113003101,3627.0,False,False +48113003400,1261.0,True,True +48113003700,3407.0,True,True +48113003800,2395.0,True,True +48113003901,2084.0,True,True +48113003902,2071.0,True,True +48113004000,1185.0,True,True +48113004100,1407.0,True,True +48113004201,4047.0,False,False +48113004202,2138.0,False,True +48113004300,3052.0,False,False +48113004400,3536.0,False,False +48113004500,6134.0,True,True +48113004600,2008.0,False,False +48113004700,3247.0,True,True +48113004800,2575.0,True,True +48113004900,4089.0,True,True +48113005000,3845.0,True,True +48113005100,2774.0,True,True +48113005200,4806.0,True,True +48113005300,7024.0,True,True +48113005400,6041.0,True,True +48113005500,4507.0,True,True +48113005600,7566.0,True,True +48113005700,5139.0,True,True +48113005901,5497.0,True,True +48113005902,4980.0,True,True +48113006001,5006.0,True,True +48113006002,5749.0,True,True +48113006100,4559.0,True,True +48113006200,7226.0,True,True +48113006301,6006.0,False,True +48113006302,4547.0,True,True +48113006401,2749.0,True,True +48113006402,5518.0,True,True +48113006501,6449.0,True,True +48113006502,4295.0,False,True +48113006700,7401.0,True,True +48113006800,5232.0,True,True +48113006900,4311.0,True,True +48113007101,2412.0,False,False +48113007102,5408.0,True,False +48113007201,8282.0,True,True +48113007202,7879.0,True,True +48113007301,1754.0,False,False +48113007302,4111.0,False,False +48113007601,1860.0,False,False +48113007604,3042.0,False,False +48113007605,1650.0,False,False +48113007700,5623.0,False,False +48113007801,2091.0,False,False +48113007804,6787.0,False,False +48113007805,2794.0,False,False +48113007809,2874.0,False,False +48113007810,4937.0,False,False +48113007811,6482.0,True,True +48113007812,3460.0,False,False +48113007815,5939.0,True,True +48113007818,5508.0,True,True +48113007819,2172.0,True,True +48113007820,5801.0,True,True +48113007821,3778.0,True,True +48113007822,1526.0,False,False +48113007823,1458.0,True,True +48113007824,1885.0,False,False +48113007825,5718.0,False,False +48113007826,1036.0,False,False +48113007827,3316.0,True,True +48113007902,5231.0,False,False +48113007903,2174.0,False,False +48113007906,2182.0,False,False +48113007909,2341.0,False,False +48113007910,2762.0,False,False +48113007911,2611.0,False,False +48113007912,1845.0,False,False +48113007913,2967.0,False,False +48113007914,3070.0,False,False +48113008000,7250.0,False,False +48113008100,6491.0,False,False +48113008200,3396.0,False,False +48113008400,9590.0,True,True +48113008500,5064.0,True,True +48113008603,551.0,True,True +48113008604,2887.0,True,True +48113008701,5394.0,True,True +48113008703,3034.0,True,True +48113008704,3809.0,True,True +48113008705,1403.0,True,True +48113008801,2898.0,True,True +48113008802,4751.0,True,True +48113008900,3550.0,True,True +48113009000,9056.0,True,True +48113009101,5808.0,True,True +48113009103,3722.0,True,True +48113009104,3644.0,True,True +48113009105,3991.0,True,True +48113009201,6773.0,True,True +48113009202,6875.0,True,True +48113009301,5065.0,True,True +48113009303,4224.0,True,True +48113009304,6743.0,True,True +48113009401,3384.0,False,False +48113009402,2496.0,False,False +48113009500,2112.0,False,False +48113009603,4500.0,False,False +48113009604,4556.0,False,False +48113009605,3416.0,False,False +48113009607,3475.0,False,False +48113009608,3324.0,False,False +48113009609,3055.0,False,False +48113009610,5391.0,True,True +48113009611,3612.0,False,False +48113009701,5017.0,False,True +48113009702,3129.0,False,False +48113009802,5854.0,True,True +48113009803,2266.0,True,False +48113009804,8145.0,True,True +48113009900,4371.0,False,True +48113010000,10393.0,True,True +48113010101,4657.0,True,True +48113010102,3046.0,True,True +48113010500,3020.0,True,True +48113010601,6103.0,True,True +48113010602,2972.0,True,True +48113010701,5761.0,True,True +48113010703,2879.0,True,True +48113010704,5874.0,True,True +48113010801,9781.0,True,True +48113010803,8368.0,True,True +48113010804,5733.0,True,True +48113010805,6392.0,True,True +48113010902,8234.0,True,True +48113010903,3431.0,True,True +48113010904,3663.0,True,True +48113011001,8041.0,True,True +48113011002,3392.0,True,True +48113011101,4736.0,False,True +48113011103,3803.0,True,True +48113011104,4063.0,True,True +48113011105,4929.0,True,True +48113011200,7334.0,True,True +48113011300,5201.0,True,True +48113011401,5453.0,True,True +48113011500,4608.0,True,True +48113011601,4866.0,True,True +48113011602,6860.0,True,True +48113011701,7010.0,True,True +48113011702,5771.0,True,True +48113011800,11243.0,True,True +48113011900,11274.0,True,True +48113012000,8973.0,True,True +48113012100,6977.0,True,True +48113012204,7322.0,True,False +48113012206,5646.0,False,False +48113012207,7617.0,True,True +48113012208,2654.0,True,True +48113012209,2561.0,False,False +48113012210,4595.0,True,True +48113012211,4553.0,True,True +48113012301,4773.0,True,True +48113012302,9043.0,True,True +48113012400,5447.0,False,False +48113012500,8118.0,True,True +48113012601,6256.0,True,True +48113012603,2154.0,False,False +48113012604,7112.0,True,True +48113012701,6018.0,True,True +48113012702,3437.0,True,True +48113012800,8153.0,False,False +48113012900,4489.0,False,False +48113013004,6867.0,False,False +48113013005,3682.0,False,False +48113013007,3950.0,False,True +48113013008,3918.0,False,False +48113013009,5026.0,False,False +48113013010,4607.0,True,True +48113013011,4812.0,True,True +48113013101,2921.0,False,False +48113013102,1943.0,False,False +48113013104,908.0,False,False +48113013105,6659.0,False,False +48113013200,7556.0,False,False +48113013300,2024.0,False,False +48113013400,2044.0,False,False +48113013500,2298.0,False,False +48113013605,6094.0,False,False +48113013606,5747.0,False,True +48113013607,3532.0,False,False +48113013608,2410.0,False,False +48113013609,3902.0,True,True +48113013610,5301.0,False,False +48113013611,2709.0,False,False +48113013615,6098.0,True,True +48113013616,6716.0,False,False +48113013617,2830.0,False,False +48113013618,3057.0,False,True +48113013619,5249.0,False,False +48113013620,5474.0,False,False +48113013621,4396.0,False,False +48113013622,2724.0,False,False +48113013623,7126.0,True,True +48113013624,4317.0,False,False +48113013625,3426.0,True,True +48113013626,3231.0,False,True +48113013711,3453.0,True,True +48113013712,2842.0,False,False +48113013713,749.0,True,True +48113013714,6813.0,True,True +48113013715,2619.0,False,False +48113013716,5269.0,False,False +48113013717,3302.0,True,True +48113013718,5222.0,True,True +48113013719,4743.0,False,False +48113013720,6953.0,False,True +48113013721,6051.0,False,False +48113013722,4875.0,False,False +48113013725,4090.0,True,True +48113013726,2734.0,False,False +48113013727,3278.0,False,False +48113013803,7820.0,False,False +48113013804,3998.0,False,False +48113013805,3597.0,False,False +48113013806,3895.0,False,False +48113013901,4013.0,True,True +48113013902,5370.0,False,False +48113014001,4809.0,False,False +48113014002,37.0,False,False +48113014103,4819.0,True,True +48113014113,4974.0,False,False +48113014114,3514.0,False,False +48113014115,7755.0,False,True +48113014116,5367.0,False,False +48113014119,4663.0,False,False +48113014120,5059.0,False,False +48113014121,4995.0,False,False +48113014123,6021.0,False,False +48113014124,3953.0,False,False +48113014126,6850.0,False,False +48113014127,10395.0,False,False +48113014128,3866.0,False,False +48113014129,5020.0,False,False +48113014130,4354.0,False,False +48113014131,4055.0,False,False +48113014132,2448.0,False,False +48113014133,5013.0,True,False +48113014134,4465.0,False,False +48113014135,4932.0,False,False +48113014136,7230.0,False,False +48113014137,8233.0,False,False +48113014138,3888.0,False,False +48113014203,3298.0,False,False +48113014204,2404.0,False,True +48113014205,1510.0,False,False +48113014206,6681.0,False,False +48113014302,6989.0,True,True +48113014306,6196.0,True,True +48113014307,4226.0,False,False +48113014308,3953.0,True,True +48113014309,5295.0,True,True +48113014310,4631.0,True,False +48113014311,5639.0,False,False +48113014312,4927.0,False,False +48113014403,4751.0,True,True +48113014405,3759.0,True,True +48113014406,4523.0,True,True +48113014407,5461.0,True,True +48113014408,4284.0,True,True +48113014501,3351.0,False,True +48113014502,5261.0,True,True +48113014601,2329.0,True,True +48113014602,4599.0,True,True +48113014603,1701.0,True,True +48113014701,4323.0,True,True +48113014702,3497.0,True,True +48113014703,2085.0,True,True +48113014901,1453.0,True,True +48113014902,2785.0,True,True +48113015000,7924.0,True,True +48113015100,6357.0,False,False +48113015202,3675.0,True,True +48113015204,7789.0,False,False +48113015205,3868.0,True,True +48113015206,5064.0,True,False +48113015303,1891.0,True,True +48113015304,3946.0,True,True +48113015305,4456.0,True,True +48113015306,4926.0,False,False +48113015401,6963.0,False,False +48113015403,3510.0,True,True +48113015404,5296.0,True,True +48113015500,3851.0,True,True +48113015600,5843.0,True,True +48113015700,2881.0,True,True +48113015800,2217.0,True,True +48113015900,3793.0,True,True +48113016001,5199.0,True,True +48113016002,3223.0,True,True +48113016100,3508.0,False,True +48113016201,4126.0,False,True +48113016202,6977.0,True,True +48113016301,6983.0,False,True +48113016302,2025.0,True,True +48113016401,11658.0,False,True +48113016406,5458.0,True,True +48113016407,8148.0,False,True +48113016408,7644.0,False,False +48113016409,3397.0,False,False +48113016410,4762.0,False,False +48113016411,9005.0,False,False +48113016412,4866.0,False,False +48113016413,6580.0,False,False +48113016502,6744.0,True,True +48113016509,5431.0,False,False +48113016510,14644.0,False,True +48113016511,4812.0,True,True +48113016513,5060.0,False,False +48113016514,6662.0,False,True +48113016516,5452.0,True,True +48113016517,5011.0,True,False +48113016518,5075.0,True,True +48113016519,2364.0,False,False +48113016520,8125.0,True,True +48113016521,7067.0,False,False +48113016522,3680.0,False,False +48113016523,4795.0,False,False +48113016605,6991.0,True,True +48113016606,7253.0,False,False +48113016607,3786.0,True,True +48113016610,4507.0,False,False +48113016611,6245.0,False,False +48113016612,13587.0,False,False +48113016615,4467.0,False,False +48113016616,6943.0,False,False +48113016617,4064.0,False,False +48113016618,5029.0,False,False +48113016619,3910.0,True,True +48113016620,5905.0,False,False +48113016621,6199.0,False,False +48113016622,4012.0,True,True +48113016623,7124.0,False,False +48113016624,3327.0,False,False +48113016625,10771.0,False,False +48113016626,4771.0,True,True +48113016701,7259.0,True,True +48113016703,11308.0,False,False +48113016704,4058.0,True,True +48113016705,7526.0,True,True +48113016802,4477.0,False,False +48113016803,6032.0,True,False +48113016804,8186.0,False,False +48113016902,6078.0,True,True +48113016903,5486.0,True,True +48113017001,9961.0,True,True +48113017003,11769.0,True,True +48113017004,10505.0,True,True +48113017101,5946.0,True,True +48113017102,6345.0,True,True +48113017201,5595.0,True,True +48113017202,8654.0,True,True +48113017301,5821.0,True,True +48113017303,8161.0,False,False +48113017304,10003.0,False,False +48113017305,10647.0,False,False +48113017306,8013.0,False,False +48113017400,5772.0,True,False +48113017500,3789.0,False,False +48113017602,4461.0,True,True +48113017604,3001.0,True,False +48113017605,3773.0,True,True +48113017606,5115.0,True,True +48113017702,7148.0,False,False +48113017703,5157.0,True,True +48113017704,6536.0,True,True +48113017804,7590.0,True,True +48113017805,5001.0,True,True +48113017806,4799.0,True,True +48113017807,5325.0,False,False +48113017808,3931.0,False,False +48113017811,4192.0,False,False +48113017812,2301.0,False,False +48113017813,6745.0,True,True +48113017814,5589.0,False,False +48113017900,5527.0,True,True +48113018001,6427.0,False,False +48113018002,3375.0,True,True +48113018104,7508.0,False,False +48113018105,6226.0,False,False +48113018110,5218.0,False,False +48113018111,6946.0,True,False +48113018118,8481.0,False,False +48113018120,4711.0,False,False +48113018121,5209.0,True,True +48113018122,16988.0,False,False +48113018123,9103.0,False,False +48113018124,19493.0,False,False +48113018126,6766.0,True,True +48113018127,2781.0,False,False +48113018128,6320.0,True,False +48113018129,4911.0,False,False +48113018130,4453.0,True,True +48113018132,4977.0,False,False +48113018133,4110.0,False,False +48113018134,5342.0,False,False +48113018135,3785.0,False,False +48113018136,8057.0,False,False +48113018137,4133.0,False,False +48113018138,5134.0,False,False +48113018139,9067.0,False,False +48113018140,6376.0,False,False +48113018141,3974.0,True,True +48113018142,3783.0,False,False +48113018203,6726.0,False,False +48113018204,4755.0,True,True +48113018205,4290.0,True,True +48113018206,4559.0,True,True +48113018300,6604.0,True,True +48113018401,4569.0,True,True +48113018402,4619.0,False,False +48113018403,1188.0,True,True +48113018501,4073.0,True,True +48113018503,5997.0,True,True +48113018505,4368.0,True,True +48113018506,3709.0,True,True +48113018600,3952.0,True,True +48113018700,6935.0,True,True +48113018801,5372.0,True,True +48113018802,1261.0,True,True +48113018900,5973.0,False,True +48113019004,6825.0,False,True +48113019013,5762.0,True,True +48113019014,7071.0,True,True +48113019016,3215.0,False,True +48113019018,5173.0,True,True +48113019019,8110.0,True,True +48113019020,5739.0,False,False +48113019021,7309.0,False,False +48113019023,5236.0,False,False +48113019024,4488.0,False,False +48113019025,4635.0,False,False +48113019026,5797.0,True,False +48113019027,5548.0,False,False +48113019028,3644.0,False,False +48113019029,6418.0,False,False +48113019031,6012.0,False,False +48113019032,4287.0,True,True +48113019033,4672.0,True,True +48113019034,4652.0,True,True +48113019035,7069.0,True,True +48113019036,2893.0,False,False +48113019037,3543.0,False,False +48113019038,1639.0,False,False +48113019039,7339.0,False,False +48113019040,7442.0,False,False +48113019041,3140.0,False,False +48113019042,5268.0,False,False +48113019043,8027.0,False,False +48113019100,6928.0,False,False +48113019202,5393.0,True,True +48113019203,3995.0,False,False +48113019204,10051.0,False,True +48113019205,4147.0,False,False +48113019206,6679.0,False,False +48113019208,6460.0,True,True +48113019210,4365.0,False,False +48113019211,5846.0,False,False +48113019212,4240.0,True,True +48113019213,3716.0,True,True +48113019301,3180.0,False,False +48113019302,5612.0,False,False +48113019400,4671.0,False,False +48113019501,6903.0,False,False +48113019502,4626.0,False,False +48113019600,2334.0,False,False +48113019700,2004.0,False,False +48113019800,4830.0,False,False +48113019900,4240.0,True,True +48113020000,5075.0,False,False +48113020100,2121.0,True,True +48113020200,3889.0,True,True +48113020300,2385.0,True,True +48113020400,8535.0,True,True +48113020500,5531.0,True,True +48113020600,2131.0,False,False +48113020700,5104.0,False,False +48113980000,0.0,False,False +48113980100,19.0,True,True +48115950401,4225.0,True,True +48115950402,3432.0,True,True +48115950500,3772.0,True,True +48115950600,1384.0,False,False +48117950300,5777.0,False,False +48117950400,5105.0,False,False +48117950500,3937.0,True,True +48117950600,3917.0,True,True +48119950100,2781.0,False,False +48119950200,2468.0,True,True +48121020103,11682.0,False,False +48121020104,7374.0,False,False +48121020105,11689.0,False,False +48121020106,8221.0,False,False +48121020107,8403.0,False,False +48121020108,27588.0,False,False +48121020109,7033.0,False,False +48121020110,5764.0,False,False +48121020111,4276.0,False,False +48121020112,3880.0,False,False +48121020113,13746.0,False,False +48121020114,12804.0,False,False +48121020115,6010.0,False,False +48121020202,8987.0,False,False +48121020203,6527.0,False,False +48121020204,4403.0,False,False +48121020205,1896.0,False,False +48121020303,15022.0,False,False +48121020305,7711.0,False,False +48121020306,7227.0,False,False +48121020307,12841.0,False,False +48121020308,12185.0,False,False +48121020309,11845.0,False,False +48121020310,4131.0,False,False +48121020401,9749.0,False,False +48121020402,5495.0,False,False +48121020403,3739.0,False,False +48121020503,6727.0,False,False +48121020504,3506.0,True,True +48121020505,5992.0,False,False +48121020506,2249.0,True,True +48121020601,5158.0,False,True +48121020602,10939.0,False,False +48121020700,2816.0,False,False +48121020800,6074.0,False,True +48121020900,4652.0,False,True +48121021000,6184.0,False,False +48121021100,3212.0,False,True +48121021201,6874.0,True,True +48121021202,4506.0,False,False +48121021301,4310.0,False,False +48121021303,8046.0,False,False +48121021304,5497.0,False,False +48121021305,3847.0,False,False +48121021403,12309.0,False,False +48121021404,8685.0,False,False +48121021405,12749.0,False,False +48121021406,7943.0,False,False +48121021407,7927.0,False,False +48121021408,6264.0,False,False +48121021409,8898.0,False,False +48121021502,4891.0,True,False +48121021505,6067.0,False,False +48121021512,4734.0,False,False +48121021513,3646.0,False,False +48121021514,4616.0,False,False +48121021515,15754.0,False,False +48121021516,7767.0,False,False +48121021517,4143.0,False,False +48121021518,3031.0,False,False +48121021519,12148.0,False,False +48121021520,4133.0,False,False +48121021521,4210.0,False,False +48121021522,3690.0,False,False +48121021523,3898.0,False,False +48121021524,2336.0,False,False +48121021525,15808.0,False,False +48121021526,7720.0,False,False +48121021527,7193.0,False,False +48121021611,4626.0,False,False +48121021612,4068.0,False,False +48121021613,5471.0,False,False +48121021614,4159.0,False,False +48121021615,5026.0,False,False +48121021616,4751.0,True,True +48121021618,4205.0,True,False +48121021619,2922.0,True,True +48121021620,3009.0,False,False +48121021621,3507.0,False,False +48121021622,6023.0,False,False +48121021623,8252.0,False,False +48121021624,7706.0,False,False +48121021625,12108.0,False,False +48121021626,2648.0,False,False +48121021627,7926.0,False,False +48121021628,6004.0,False,False +48121021629,7224.0,False,False +48121021630,5457.0,False,False +48121021631,5376.0,False,False +48121021632,3834.0,False,False +48121021633,4824.0,False,False +48121021634,5262.0,False,False +48121021635,4883.0,False,False +48121021636,7622.0,False,False +48121021637,4522.0,True,True +48121021638,4158.0,False,False +48121021715,4739.0,False,False +48121021716,4319.0,False,False +48121021717,5636.0,False,False +48121021718,11387.0,False,False +48121021719,5208.0,False,False +48121021720,3572.0,False,False +48121021721,4403.0,False,False +48121021722,4490.0,False,False +48121021723,1429.0,False,False +48121021724,4440.0,False,False +48121021725,3703.0,False,False +48121021726,3394.0,False,False +48121021727,5182.0,False,False +48121021728,3637.0,True,True +48121021729,2976.0,False,False +48121021730,3683.0,False,False +48121021731,3545.0,False,False +48121021732,2158.0,False,False +48121021733,2780.0,False,False +48121021734,3596.0,True,True +48121021735,3839.0,False,False +48121021736,2574.0,False,False +48121021737,4391.0,False,False +48121021738,3513.0,False,False +48121021739,3219.0,True,True +48121021740,4911.0,False,False +48121021741,2049.0,False,False +48121021742,6492.0,False,False +48121021743,4564.0,False,False +48121021744,3180.0,True,True +48121021745,5838.0,False,True +48121021746,4387.0,False,False +48121021747,5259.0,False,False +48121021748,4197.0,False,False +48121021749,3503.0,False,False +48121021750,5104.0,False,False +48121021751,4814.0,False,False +48121021752,5177.0,False,False +48121021753,6710.0,False,False +48121021800,3611.0,False,False +48121021900,5263.0,False,False +48123970100,4453.0,True,True +48123970200,5538.0,True,True +48123970300,4209.0,False,False +48123970400,3866.0,False,False +48123970500,2274.0,True,True +48125950300,2203.0,True,True +48127950200,8059.0,True,True +48127950400,2379.0,True,True +48129950200,1851.0,False,False +48129950300,1491.0,True,True +48131950100,4968.0,True,True +48131950200,2968.0,True,True +48131950500,3332.0,True,True +48133950100,3360.0,True,True +48133950200,5374.0,True,True +48133950300,5173.0,False,False +48133950400,1902.0,True,True +48133950500,2464.0,True,True +48135000100,2853.0,False,False +48135000300,1403.0,False,False +48135000400,5826.0,False,False +48135000500,5071.0,False,False +48135000600,5889.0,False,False +48135000700,5239.0,True,True +48135000800,3124.0,False,False +48135001000,5902.0,False,False +48135001100,8130.0,True,True +48135001300,5015.0,False,False +48135001500,5333.0,True,True +48135001600,5936.0,False,False +48135001700,6682.0,False,True +48135001800,3579.0,True,True +48135001900,5882.0,True,True +48135002000,4104.0,True,True +48135002200,3222.0,True,True +48135002300,3907.0,False,False +48135002400,5006.0,False,False +48135002501,8496.0,False,False +48135002502,7018.0,False,False +48135002503,6289.0,False,False +48135002700,11782.0,False,True +48135002801,5203.0,False,True +48135002802,8977.0,False,True +48135002900,3448.0,False,False +48135003000,13015.0,False,False +48135003100,4248.0,True,True +48137950300,1918.0,True,True +48139060101,8067.0,True,True +48139060102,6920.0,False,False +48139060204,9965.0,False,False +48139060206,6875.0,False,False +48139060207,7054.0,False,False +48139060208,5467.0,False,False +48139060209,5146.0,False,False +48139060210,1696.0,False,False +48139060211,3260.0,False,False +48139060212,5943.0,False,False +48139060213,7450.0,False,False +48139060214,10199.0,False,False +48139060300,4113.0,False,False +48139060400,4593.0,True,True +48139060500,3168.0,False,False +48139060600,9780.0,False,False +48139060701,2281.0,False,False +48139060702,5007.0,False,False +48139060703,2197.0,False,False +48139060801,8010.0,False,False +48139060802,7778.0,False,False +48139060803,1337.0,True,True +48139060900,7316.0,False,False +48139061000,4063.0,True,True +48139061100,5535.0,False,False +48139061200,1972.0,False,False +48139061300,3226.0,False,False +48139061400,7487.0,False,False +48139061500,6051.0,True,True +48139061600,6538.0,True,True +48139061700,5278.0,False,False +48141000101,7291.0,True,True +48141000106,5897.0,False,False +48141000107,5161.0,True,True +48141000108,2558.0,True,True +48141000109,3872.0,True,True +48141000110,3995.0,True,True +48141000111,2715.0,False,False +48141000112,4350.0,True,True +48141000204,5771.0,True,True +48141000205,4411.0,True,True +48141000206,4624.0,True,True +48141000207,4750.0,True,True +48141000208,4253.0,True,True +48141000301,5692.0,True,True +48141000302,5824.0,True,True +48141000401,5936.0,False,False +48141000403,3391.0,True,True +48141000404,3675.0,True,True +48141000600,4762.0,True,True +48141000800,5544.0,True,True +48141000900,9279.0,True,True +48141001001,3097.0,True,True +48141001002,3808.0,True,True +48141001104,8387.0,False,True +48141001107,6770.0,False,False +48141001109,5064.0,False,False +48141001110,5217.0,False,False +48141001111,4801.0,False,False +48141001112,4249.0,False,False +48141001113,6815.0,True,False +48141001114,5158.0,True,True +48141001115,4129.0,True,True +48141001201,4495.0,True,True +48141001202,4697.0,False,True +48141001203,709.0,True,True +48141001301,4052.0,False,False +48141001302,6795.0,False,False +48141001400,1920.0,False,True +48141001501,5712.0,False,True +48141001502,2295.0,False,False +48141001600,4013.0,True,True +48141001700,1322.0,True,True +48141001800,1063.0,True,True +48141001900,1949.0,True,True +48141002000,2581.0,True,True +48141002100,1937.0,True,True +48141002201,3385.0,True,True +48141002202,4079.0,True,True +48141002300,4115.0,True,True +48141002400,2993.0,True,True +48141002500,5347.0,True,True +48141002600,2776.0,True,True +48141002800,3917.0,True,True +48141002900,1355.0,True,True +48141003000,3274.0,True,True +48141003100,3050.0,True,True +48141003200,2454.0,True,True +48141003300,5433.0,True,True +48141003402,5700.0,True,True +48141003403,6118.0,False,True +48141003404,6046.0,False,False +48141003501,3442.0,True,True +48141003502,4184.0,True,True +48141003601,4112.0,True,True +48141003602,2588.0,True,True +48141003701,4665.0,True,True +48141003702,4165.0,True,True +48141003801,5072.0,True,True +48141003803,3068.0,True,True +48141003804,3963.0,True,True +48141003901,3758.0,True,True +48141003902,2511.0,True,True +48141003903,5807.0,True,True +48141004002,9536.0,True,True +48141004003,8116.0,True,True +48141004004,5374.0,True,True +48141004103,7347.0,True,True +48141004104,6417.0,False,True +48141004105,3118.0,True,True +48141004106,5106.0,True,True +48141004107,1593.0,True,True +48141004201,5535.0,True,True +48141004202,5366.0,True,True +48141004303,5979.0,True,True +48141004307,5904.0,True,True +48141004309,5073.0,False,False +48141004310,5273.0,True,True +48141004311,4141.0,False,False +48141004312,4685.0,False,False +48141004313,3430.0,False,True +48141004314,4896.0,True,True +48141004316,6268.0,False,True +48141004317,4281.0,False,False +48141004318,3762.0,False,False +48141004319,5845.0,False,False +48141004320,3260.0,True,True +48141010101,6422.0,False,False +48141010102,5313.0,True,False +48141010103,2961.0,False,False +48141010203,4363.0,True,True +48141010207,8429.0,False,True +48141010210,6897.0,False,False +48141010211,2600.0,False,False +48141010212,8519.0,False,False +48141010213,7958.0,False,False +48141010214,6022.0,False,False +48141010215,9469.0,False,False +48141010216,9006.0,True,True +48141010217,5057.0,False,False +48141010218,3738.0,False,False +48141010219,8956.0,False,False +48141010220,5024.0,True,True +48141010221,5116.0,True,True +48141010222,1813.0,True,True +48141010303,3914.0,False,True +48141010307,6332.0,False,False +48141010311,6981.0,True,True +48141010312,3749.0,False,False +48141010316,4019.0,False,False +48141010317,4197.0,False,False +48141010319,593.0,True,True +48141010322,4879.0,True,True +48141010323,4363.0,False,True +48141010324,7950.0,False,False +48141010325,9200.0,True,True +48141010326,5126.0,False,False +48141010327,4106.0,False,False +48141010328,4601.0,False,False +48141010329,6083.0,False,False +48141010330,11496.0,False,False +48141010331,11948.0,False,False +48141010332,9870.0,True,False +48141010333,4490.0,True,True +48141010334,3907.0,True,True +48141010335,3844.0,True,True +48141010336,6374.0,False,False +48141010337,7252.0,False,True +48141010338,7110.0,False,False +48141010339,11020.0,True,False +48141010340,2335.0,True,True +48141010341,41538.0,False,True +48141010342,14737.0,False,False +48141010343,5375.0,False,False +48141010344,3190.0,True,True +48141010345,10639.0,False,True +48141010346,4490.0,True,True +48141010347,3888.0,True,True +48141010401,5992.0,True,True +48141010404,4259.0,True,True +48141010405,7272.0,True,True +48141010406,2960.0,True,True +48141010407,6694.0,True,True +48141010408,3942.0,True,True +48141010409,6350.0,True,True +48141010501,4822.0,True,True +48141010502,1595.0,True,True +48141010504,1199.0,True,True +48141010505,3048.0,True,True +48141010506,2604.0,True,True +48141010600,5598.0,True,False +48141980000,0.0,False,False +48143950100,3763.0,False,False +48143950201,3720.0,False,False +48143950202,7098.0,False,False +48143950300,5611.0,True,True +48143950400,7532.0,False,False +48143950500,8155.0,False,False +48143950600,3982.0,True,True +48143950700,1980.0,True,True +48145000200,2810.0,False,False +48145000300,3187.0,True,True +48145000400,2124.0,True,True +48145000500,2328.0,False,False +48145000700,2920.0,True,True +48145000800,3903.0,True,True +48147950100,2945.0,True,True +48147950300,3180.0,False,False +48147950401,4826.0,True,True +48147950402,6300.0,False,False +48147950500,2589.0,False,False +48147950600,2455.0,True,True +48147950701,4829.0,False,False +48147950702,3290.0,False,False +48147950800,4123.0,False,False +48149970100,2071.0,False,False +48149970200,2254.0,False,False +48149970300,5887.0,False,False +48149970400,3821.0,False,False +48149970500,3745.0,False,False +48149970600,5347.0,True,True +48149970700,2016.0,False,False +48151950300,1938.0,False,False +48151950400,1918.0,True,True +48153950500,2394.0,False,False +48153950600,3409.0,True,True +48155950100,1275.0,True,True +48157670101,6633.0,True,True +48157670102,3320.0,True,True +48157670200,7801.0,True,True +48157670300,3319.0,True,True +48157670400,5242.0,True,True +48157670500,4745.0,False,False +48157670601,9711.0,False,False +48157670602,2027.0,False,True +48157670700,7283.0,False,False +48157670800,17725.0,False,False +48157670901,13016.0,False,False +48157670902,9045.0,False,False +48157671001,5395.0,False,False +48157671002,6290.0,False,False +48157671100,8405.0,False,False +48157671200,6300.0,False,False +48157671300,4234.0,False,False +48157671400,8448.0,False,True +48157671501,8197.0,False,False +48157671502,1608.0,False,False +48157671601,6480.0,False,False +48157671602,3393.0,False,False +48157671700,5668.0,False,False +48157671800,3696.0,False,False +48157671900,4164.0,False,False +48157672001,8512.0,False,False +48157672002,6915.0,False,False +48157672100,4407.0,False,False +48157672200,4084.0,False,False +48157672301,7435.0,False,True +48157672302,9462.0,False,False +48157672400,8911.0,False,False +48157672500,7459.0,False,True +48157672601,10962.0,True,True +48157672602,7280.0,False,False +48157672701,12817.0,False,True +48157672702,7929.0,False,False +48157672800,8248.0,False,False +48157672900,59947.0,False,False +48157673001,7564.0,False,False +48157673002,9393.0,False,False +48157673003,11883.0,False,False +48157673101,72041.0,False,False +48157673102,17783.0,False,False +48157673200,19362.0,False,False +48157673300,7825.0,False,False +48157673400,28707.0,False,False +48157673500,9366.0,False,False +48157673600,6782.0,False,False +48157673700,2819.0,True,True +48157673800,9524.0,False,False +48157673901,8960.0,False,False +48157673902,12026.0,False,False +48157674000,8145.0,False,False +48157674100,7669.0,False,False +48157674200,5256.0,False,False +48157674300,9551.0,False,False +48157674400,21369.0,False,False +48157674501,13281.0,False,False +48157674502,23361.0,False,False +48157674601,3737.0,False,False +48157674602,8865.0,False,False +48157674603,5798.0,False,False +48157674604,5021.0,False,False +48157674700,15585.0,False,False +48157674800,5629.0,True,True +48157674900,6203.0,True,True +48157675000,3207.0,True,True +48157675100,11143.0,True,True +48157675200,5762.0,True,True +48157675300,6949.0,True,True +48157675400,9186.0,False,False +48157675500,22116.0,False,False +48157675600,7111.0,False,False +48157675700,6586.0,False,False +48157675800,3316.0,True,True +48159950100,5366.0,False,False +48159950200,2672.0,True,True +48159950300,2678.0,False,False +48161000100,4647.0,True,True +48161000200,1249.0,False,True +48161000300,1375.0,True,True +48161000400,2421.0,True,True +48161000600,5177.0,False,False +48161000700,3015.0,True,True +48161000900,1830.0,False,False +48163950100,6908.0,True,True +48163950200,6889.0,True,True +48163950300,6074.0,False,True +48165950100,4047.0,True,True +48165950200,10302.0,True,True +48165950300,6357.0,False,True +48167720100,5372.0,False,False +48167720200,4597.0,False,False +48167720301,2240.0,False,False +48167720302,7227.0,False,False +48167720400,8815.0,False,False +48167720501,4611.0,False,False +48167720502,11370.0,False,False +48167720503,16616.0,False,False +48167720600,14555.0,False,False +48167720700,11993.0,False,False +48167720800,3852.0,False,False +48167720900,5173.0,False,False +48167721000,2212.0,True,True +48167721100,12618.0,True,True +48167721201,22489.0,False,False +48167721202,7818.0,False,False +48167721300,4910.0,False,False +48167721400,8109.0,False,False +48167721500,7688.0,False,False +48167721600,2419.0,True,True +48167721700,9993.0,True,True +48167721800,4795.0,True,True +48167721900,11251.0,True,True +48167722001,5290.0,False,False +48167722002,3246.0,False,False +48167722100,6967.0,False,False +48167722200,3127.0,True,True +48167722300,7258.0,True,True +48167722600,2583.0,False,True +48167722700,4984.0,True,True +48167722800,2547.0,True,True +48167722900,2630.0,True,True +48167723000,3183.0,True,True +48167723100,3324.0,False,False +48167723200,5060.0,False,False +48167723300,7126.0,False,False +48167723400,7092.0,False,False +48167723501,1226.0,False,False +48167723502,8903.0,False,False +48167723600,4628.0,False,False +48167723700,2467.0,True,True +48167723800,4277.0,False,False +48167723900,2549.0,True,True +48167724000,3428.0,True,True +48167724101,1023.0,True,True +48167724200,2762.0,False,False +48167724300,3043.0,False,False +48167724400,3051.0,True,True +48167724500,904.0,True,True +48167724600,1926.0,True,True +48167724700,1772.0,True,True +48167724800,1308.0,True,True +48167724900,1653.0,False,False +48167725000,1796.0,True,True +48167725100,2073.0,True,True +48167725200,2149.0,True,True +48167725300,2110.0,False,False +48167725400,3796.0,True,True +48167725500,1034.0,False,False +48167725600,4649.0,False,False +48167725700,2210.0,False,False +48167725800,4236.0,True,True +48167725900,2491.0,False,False +48167726000,1339.0,False,False +48167726100,2605.0,False,False +48167726200,2337.0,True,True +48167990000,0.0,False,False +48169950100,6070.0,True,True +48171950100,4245.0,False,False +48171950200,4540.0,False,False +48171950300,6987.0,False,False +48171950400,6595.0,True,True +48171950500,4092.0,True,True +48173950100,1510.0,True,True +48175960100,4344.0,False,False +48175960200,3221.0,False,False +48177000100,3240.0,True,True +48177000200,5323.0,False,False +48177000300,3359.0,True,True +48177000400,2328.0,True,True +48177000500,3874.0,True,True +48177000600,2607.0,False,False +48179950100,4906.0,False,False +48179950300,4345.0,False,False +48179950400,3839.0,True,True +48179950500,3199.0,True,True +48179950600,2240.0,True,True +48179950700,2048.0,True,True +48179950800,1833.0,True,True +48181000101,5245.0,False,False +48181000102,3469.0,False,False +48181000200,2689.0,True,True +48181000302,4943.0,False,False +48181000303,4835.0,False,False +48181000304,3077.0,False,False +48181000400,2950.0,True,True +48181000501,3796.0,True,True +48181000502,1496.0,True,True +48181000600,3543.0,False,False +48181000700,3993.0,True,True +48181000800,5911.0,False,False +48181000901,4362.0,False,False +48181000902,6709.0,False,False +48181001101,4922.0,False,False +48181001102,7782.0,False,False +48181001200,6095.0,False,False +48181001300,3921.0,True,True +48181001400,5758.0,False,False +48181001500,6766.0,True,True +48181001700,5569.0,True,True +48181001801,6452.0,False,False +48181001802,5054.0,False,False +48181001803,7096.0,False,False +48181001900,11313.0,False,False +48181002000,3268.0,True,True +48183000200,6774.0,False,False +48183000300,5100.0,False,False +48183000401,3461.0,False,False +48183000402,3428.0,False,False +48183000501,5004.0,False,False +48183000502,4796.0,True,True +48183000600,8485.0,False,False +48183000700,5533.0,True,True +48183000800,7500.0,True,True +48183000900,3355.0,True,True +48183001000,2452.0,True,True +48183001100,4358.0,True,True +48183001200,2652.0,True,True +48183001300,4268.0,True,True +48183001400,3384.0,True,True +48183001500,4461.0,False,False +48183010100,5572.0,False,False +48183010200,7088.0,True,True +48183010301,5244.0,True,True +48183010302,6055.0,True,True +48183010400,8150.0,False,False +48183010500,5194.0,True,True +48183010600,6509.0,False,False +48183010700,4605.0,True,True +48183980000,15.0,False,False +48185180101,5569.0,True,True +48185180102,4380.0,True,True +48185180200,7375.0,True,True +48185180301,4997.0,False,False +48185180302,3371.0,True,True +48185180400,2292.0,True,True +48187210100,4318.0,True,False +48187210200,4404.0,True,True +48187210300,6390.0,True,True +48187210400,4664.0,True,True +48187210504,6560.0,False,False +48187210505,5437.0,True,True +48187210506,3246.0,True,True +48187210507,7563.0,False,False +48187210508,3358.0,False,False +48187210603,2018.0,False,False +48187210604,13714.0,False,False +48187210606,2728.0,False,False +48187210607,9147.0,False,False +48187210608,4488.0,False,False +48187210705,4053.0,False,False +48187210706,5651.0,False,False +48187210707,5548.0,False,False +48187210708,6227.0,False,False +48187210709,5019.0,False,False +48187210710,4207.0,False,False +48187210711,3563.0,False,False +48187210712,5043.0,False,False +48187210713,7852.0,False,False +48187210714,10006.0,False,False +48187210801,4973.0,False,False +48187210803,4009.0,False,False +48187210804,4672.0,False,False +48187210901,5473.0,True,True +48187210902,4635.0,False,False +48189950100,4249.0,True,True +48189950200,3473.0,True,True +48189950300,6818.0,False,False +48189950400,4626.0,False,False +48189950500,3064.0,True,True +48189950600,4519.0,False,False +48189950700,2763.0,True,True +48189950800,1314.0,True,True +48189950900,3000.0,True,True +48191950500,3048.0,True,True +48193950100,2616.0,True,True +48193950200,2245.0,False,False +48193950300,3471.0,True,True +48195950100,1781.0,True,True +48195950300,3739.0,True,True +48197950100,3945.0,True,True +48199030100,3311.0,True,True +48199030200,6370.0,False,False +48199030300,11202.0,False,False +48199030400,2074.0,True,True +48199030501,4525.0,False,False +48199030502,8577.0,False,False +48199030600,4207.0,False,False +48199030700,4058.0,False,False +48199030800,3965.0,False,False +48199030900,4478.0,False,False +48199031000,3998.0,False,False +48201100000,6011.0,False,False +48201210100,7363.0,False,False +48201210400,4422.0,True,True +48201210500,5548.0,True,True +48201210600,5327.0,False,False +48201210700,2459.0,True,True +48201210800,2466.0,True,True +48201210900,1320.0,True,True +48201211000,1989.0,True,True +48201211100,5322.0,True,True +48201211200,2211.0,True,True +48201211300,5319.0,True,True +48201211400,3890.0,True,True +48201211500,6547.0,True,True +48201211600,3068.0,True,True +48201211700,4142.0,True,True +48201211900,5398.0,True,True +48201212300,4387.0,True,True +48201212400,3037.0,True,True +48201212500,4005.0,True,True +48201220100,2117.0,True,True +48201220200,2646.0,True,True +48201220300,4437.0,True,True +48201220400,4253.0,True,True +48201220500,3377.0,True,True +48201220600,4083.0,True,True +48201220700,6419.0,True,True +48201220800,4089.0,True,True +48201220900,1755.0,True,True +48201221000,4214.0,True,True +48201221100,3694.0,True,True +48201221200,6473.0,True,True +48201221300,9917.0,True,True +48201221400,5991.0,True,True +48201221500,8398.0,True,True +48201221600,9403.0,True,True +48201221700,7898.0,True,True +48201221800,4091.0,True,True +48201221900,5151.0,True,True +48201222000,2327.0,True,True +48201222100,5527.0,True,True +48201222200,3609.0,True,True +48201222300,5036.0,True,True +48201222401,3423.0,True,True +48201222402,6061.0,True,True +48201222501,3834.0,True,True +48201222502,4041.0,True,True +48201222503,7729.0,True,True +48201222600,5062.0,True,True +48201222700,6011.0,True,True +48201222800,3134.0,True,True +48201222900,8011.0,True,True +48201223001,4217.0,True,True +48201223002,3868.0,True,True +48201223100,2313.0,True,True +48201230100,1229.0,True,True +48201230200,5347.0,True,True +48201230300,2460.0,True,True +48201230400,3319.0,True,True +48201230500,3640.0,True,True +48201230600,2728.0,True,True +48201230700,2763.0,True,True +48201230800,2317.0,True,True +48201230900,4107.0,True,True +48201231000,4677.0,True,True +48201231100,5010.0,True,True +48201231200,7450.0,True,True +48201231300,4496.0,True,True +48201231400,2837.0,True,True +48201231500,3000.0,True,True +48201231600,3350.0,True,True +48201231700,3640.0,True,True +48201231800,3091.0,True,True +48201231900,7696.0,True,True +48201232000,4420.0,True,True +48201232100,3590.0,True,True +48201232200,16474.0,False,False +48201232301,12938.0,True,True +48201232302,12014.0,False,False +48201232401,9255.0,False,False +48201232402,4121.0,True,True +48201232403,4674.0,True,True +48201232500,4060.0,True,True +48201232600,3138.0,False,True +48201232701,7825.0,True,True +48201232702,5334.0,True,True +48201232800,5464.0,False,True +48201232900,7278.0,True,True +48201233001,4161.0,True,True +48201233002,4992.0,False,False +48201233003,2555.0,False,False +48201233101,4458.0,True,True +48201233102,7115.0,True,True +48201233103,5550.0,True,True +48201233200,6590.0,True,True +48201233300,4263.0,True,True +48201233400,2554.0,True,True +48201233500,8113.0,True,True +48201233600,2207.0,True,True +48201233701,5414.0,True,True +48201233702,3036.0,True,True +48201233703,2510.0,True,True +48201240100,3959.0,True,True +48201240400,8300.0,True,True +48201240501,6668.0,True,True +48201240502,5979.0,True,True +48201240600,2790.0,True,True +48201240701,14085.0,False,True +48201240702,14051.0,True,True +48201240801,5448.0,True,True +48201240802,6859.0,False,False +48201240901,11399.0,False,False +48201240902,16658.0,False,False +48201241000,9370.0,True,True +48201241101,5019.0,False,False +48201241102,12773.0,False,False +48201241103,4328.0,False,False +48201241200,8151.0,False,False +48201241300,12064.0,False,False +48201241400,9796.0,False,False +48201241500,7911.0,True,True +48201250100,9412.0,False,False +48201250200,11011.0,False,False +48201250301,11976.0,False,False +48201250302,11641.0,False,False +48201250401,12679.0,False,False +48201250402,22829.0,False,False +48201250500,6410.0,False,False +48201250600,7799.0,True,True +48201250701,5777.0,False,False +48201250702,4759.0,False,False +48201250800,8912.0,False,False +48201250900,9617.0,False,False +48201251000,2693.0,False,False +48201251100,7077.0,False,False +48201251200,6889.0,False,False +48201251300,7054.0,False,False +48201251401,2987.0,False,False +48201251402,6266.0,False,False +48201251501,6002.0,False,False +48201251502,9303.0,False,False +48201251503,2402.0,False,False +48201251600,6605.0,False,False +48201251700,8501.0,False,False +48201251800,2047.0,False,False +48201251901,10887.0,False,False +48201251902,6233.0,False,False +48201252000,21439.0,False,False +48201252100,2392.0,True,True +48201252200,9953.0,False,False +48201252301,9270.0,False,True +48201252302,14935.0,False,False +48201252400,6461.0,True,True +48201252500,4208.0,True,True +48201252600,8851.0,True,True +48201252700,4101.0,True,True +48201252800,7056.0,True,True +48201252900,8908.0,False,True +48201253000,4466.0,True,True +48201253100,12358.0,False,False +48201253200,10019.0,False,False +48201253300,3513.0,False,False +48201253400,623.0,True,True +48201253500,9816.0,False,True +48201253600,6647.0,True,True +48201253700,5813.0,False,True +48201253800,8037.0,False,False +48201253900,3854.0,True,True +48201254000,4032.0,False,False +48201254100,5184.0,True,True +48201254200,2620.0,True,True +48201254300,5138.0,False,True +48201254400,2971.0,True,True +48201254500,1887.0,True,True +48201254600,3678.0,True,True +48201254700,2397.0,False,False +48201310100,5346.0,True,True +48201310200,1912.0,False,False +48201310300,4840.0,False,False +48201310400,3430.0,True,True +48201310500,4439.0,True,True +48201310600,5407.0,True,True +48201310700,4582.0,True,True +48201310800,2643.0,True,True +48201310900,5442.0,True,True +48201311000,5754.0,True,True +48201311100,5304.0,True,True +48201311200,4922.0,True,True +48201311300,4915.0,True,True +48201311400,1667.0,True,True +48201311500,7543.0,True,True +48201311600,3923.0,True,True +48201311700,5741.0,True,True +48201311800,4585.0,True,True +48201311900,2454.0,True,True +48201312000,4570.0,False,False +48201312100,4030.0,False,False +48201312200,1939.0,True,True +48201312300,1965.0,True,True +48201312400,2056.0,True,True +48201312500,3470.0,False,False +48201312600,8023.0,False,False +48201312700,2069.0,False,False +48201312800,2813.0,True,True +48201312900,4361.0,False,False +48201313000,2736.0,False,False +48201313100,4049.0,False,False +48201313200,3998.0,False,False +48201313300,2491.0,True,True +48201313400,2972.0,True,True +48201313500,2792.0,True,True +48201313600,4650.0,True,True +48201313700,2210.0,True,True +48201313800,4427.0,True,True +48201313900,4623.0,False,False +48201314001,2716.0,False,False +48201314002,6911.0,False,False +48201314300,3890.0,False,False +48201314400,3527.0,False,False +48201320100,2811.0,True,True +48201320200,5437.0,True,True +48201320500,4583.0,False,True +48201320601,2512.0,True,True +48201320602,4960.0,True,True +48201320700,4830.0,True,True +48201320800,5157.0,True,True +48201320900,7291.0,True,True +48201321000,9550.0,True,True +48201321100,8469.0,False,True +48201321200,4030.0,True,True +48201321300,6765.0,True,True +48201321401,4719.0,True,True +48201321402,4412.0,False,False +48201321500,3299.0,True,True +48201321600,6913.0,False,True +48201321700,3440.0,False,False +48201321800,4155.0,False,True +48201321900,6006.0,True,True +48201322000,4912.0,True,True +48201322100,4246.0,True,True +48201322200,1633.0,True,True +48201322600,5516.0,True,True +48201322700,7002.0,True,True +48201322800,6996.0,True,True +48201322900,4094.0,True,True +48201323000,6870.0,True,True +48201323100,4066.0,True,True +48201323200,5727.0,False,False +48201323300,3310.0,True,True +48201323400,8636.0,True,True +48201323500,5671.0,True,True +48201323600,8547.0,False,True +48201323701,4934.0,False,False +48201323702,3183.0,False,False +48201323801,3820.0,False,False +48201323802,5018.0,True,True +48201323900,3952.0,True,True +48201324000,5453.0,False,False +48201324100,5463.0,True,True +48201324200,1087.0,True,True +48201330100,9589.0,False,False +48201330200,4438.0,True,True +48201330301,8737.0,False,True +48201330302,6540.0,True,True +48201330303,4231.0,True,True +48201330400,4863.0,True,True +48201330500,4982.0,True,True +48201330600,7239.0,False,False +48201330700,9966.0,True,True +48201330800,13816.0,False,False +48201330900,13284.0,True,True +48201331100,4295.0,True,True +48201331200,3637.0,True,True +48201331300,5220.0,True,True +48201331400,2414.0,True,True +48201331500,10258.0,False,False +48201331601,6762.0,True,True +48201331602,1946.0,True,True +48201331700,4933.0,True,True +48201331800,3985.0,True,True +48201331900,3899.0,True,True +48201332000,6785.0,True,True +48201332100,3588.0,True,True +48201332200,4892.0,True,True +48201332300,3165.0,True,True +48201332400,4115.0,True,True +48201332500,2949.0,True,True +48201332600,7359.0,True,True +48201332700,2555.0,True,True +48201332800,5011.0,True,True +48201332900,5422.0,True,True +48201333000,4027.0,True,True +48201333100,4374.0,True,True +48201333201,4691.0,True,True +48201333202,5949.0,True,True +48201333300,10222.0,True,True +48201333500,6236.0,True,True +48201333600,4452.0,True,True +48201333700,3565.0,True,True +48201333800,11520.0,True,True +48201333901,10209.0,False,True +48201333902,9431.0,False,False +48201334001,3746.0,True,True +48201334002,2338.0,False,False +48201334003,6478.0,False,False +48201334100,14703.0,False,False +48201340100,6957.0,False,False +48201340201,1546.0,False,False +48201340202,5356.0,False,False +48201340203,3989.0,False,False +48201340301,3878.0,False,False +48201340302,6728.0,False,False +48201340400,1319.0,False,False +48201340500,6899.0,False,False +48201340600,2508.0,False,False +48201340700,8000.0,False,False +48201340800,5955.0,False,False +48201340900,4522.0,False,False +48201341000,8759.0,False,False +48201341100,4268.0,False,False +48201341201,3977.0,True,True +48201341202,4643.0,False,False +48201341301,5214.0,False,False +48201341302,2896.0,True,True +48201341400,4900.0,False,False +48201341501,6467.0,False,False +48201341502,4376.0,False,False +48201341600,6805.0,False,False +48201341700,3076.0,False,False +48201341800,2358.0,False,False +48201342001,7044.0,False,False +48201342002,3352.0,False,False +48201342100,4323.0,False,False +48201342200,3883.0,True,True +48201342300,8278.0,False,True +48201342400,3436.0,False,False +48201342500,5653.0,False,False +48201342700,4891.0,False,False +48201342800,8650.0,False,False +48201342900,6383.0,False,False +48201343000,7043.0,False,False +48201343100,4590.0,False,False +48201343200,5037.0,False,False +48201343301,4951.0,False,False +48201343302,4815.0,False,False +48201343600,2907.0,False,False +48201343700,3946.0,True,True +48201350100,17635.0,False,False +48201350200,8612.0,False,True +48201350300,6731.0,False,False +48201350400,6756.0,False,False +48201350500,7851.0,True,True +48201350601,4979.0,False,False +48201350602,9329.0,False,False +48201350700,2216.0,False,False +48201350801,5391.0,False,False +48201350802,8737.0,False,False +48201410100,4811.0,True,True +48201410200,5576.0,False,False +48201410300,3030.0,False,False +48201410401,4019.0,False,False +48201410402,2433.0,False,False +48201410500,4560.0,False,False +48201410600,4899.0,False,False +48201410701,4001.0,False,False +48201410702,2768.0,False,False +48201410800,4226.0,False,False +48201410900,3198.0,False,False +48201411000,5175.0,False,False +48201411100,3741.0,False,False +48201411200,1871.0,False,False +48201411300,4618.0,False,False +48201411400,2810.0,False,False +48201411501,7519.0,False,False +48201411502,4146.0,False,False +48201411600,2425.0,False,False +48201411700,3476.0,False,False +48201411800,5447.0,False,False +48201411900,3298.0,False,False +48201412000,3967.0,False,False +48201412100,2836.0,False,False +48201412200,5953.0,False,False +48201412300,7063.0,False,False +48201412400,4759.0,False,False +48201412500,1652.0,False,False +48201412600,3913.0,False,False +48201412700,3540.0,False,False +48201412800,5179.0,False,False +48201412900,4155.0,False,False +48201413000,3728.0,False,False +48201413100,2827.0,False,False +48201413201,2742.0,False,False +48201413202,3980.0,False,False +48201413300,7833.0,False,False +48201420100,2912.0,False,False +48201420200,2660.0,False,False +48201420300,3575.0,False,False +48201420400,3608.0,False,False +48201420500,3926.0,True,True +48201420600,2385.0,False,False +48201420700,2805.0,False,False +48201420800,2183.0,False,False +48201420900,7126.0,False,False +48201421000,3113.0,False,False +48201421101,3060.0,True,True +48201421102,5456.0,True,True +48201421201,5652.0,True,True +48201421202,5450.0,True,True +48201421300,8107.0,True,True +48201421401,3969.0,True,True +48201421402,3825.0,True,True +48201421403,4521.0,True,True +48201421500,7897.0,True,True +48201421600,7173.0,True,True +48201421700,4715.0,False,True +48201421800,4474.0,False,False +48201421900,2701.0,False,False +48201422000,2556.0,False,False +48201422100,5294.0,False,False +48201422200,5433.0,True,True +48201422301,6886.0,True,True +48201422302,1741.0,False,False +48201422401,3686.0,True,True +48201422402,6395.0,True,True +48201422500,7283.0,True,True +48201422600,6816.0,True,True +48201422701,5917.0,True,True +48201422702,3332.0,False,True +48201422800,5415.0,True,True +48201422900,3974.0,True,True +48201423000,6004.0,True,True +48201423100,2711.0,True,True +48201423201,3683.0,False,False +48201423202,7948.0,True,True +48201423301,4472.0,False,False +48201423302,5455.0,True,True +48201423401,6255.0,False,False +48201423402,4743.0,False,False +48201423500,2001.0,False,False +48201423600,7790.0,False,False +48201430100,5928.0,False,False +48201430200,1489.0,False,False +48201430300,4825.0,False,False +48201430400,3398.0,False,False +48201430500,2698.0,False,False +48201430600,3952.0,False,False +48201430700,3802.0,False,False +48201430800,6209.0,False,False +48201430900,5587.0,False,False +48201431000,6124.0,False,False +48201431101,3868.0,False,False +48201431102,4297.0,False,False +48201431201,3788.0,False,False +48201431202,6031.0,True,True +48201431301,5711.0,False,False +48201431302,4503.0,False,False +48201431401,1937.0,False,False +48201431402,3329.0,False,False +48201431501,4718.0,False,False +48201431502,3635.0,False,False +48201431600,2954.0,False,False +48201431700,4642.0,False,False +48201431801,3611.0,False,False +48201431802,4700.0,False,False +48201431900,4779.0,False,False +48201432001,4265.0,False,False +48201432002,4753.0,True,True +48201432100,6053.0,False,True +48201432200,4494.0,False,True +48201432300,7339.0,True,True +48201432400,6174.0,True,True +48201432500,5289.0,True,True +48201432600,2026.0,True,True +48201432701,5984.0,True,True +48201432702,4036.0,False,True +48201432801,4890.0,True,True +48201432802,6464.0,True,True +48201432901,3042.0,True,True +48201432902,6203.0,True,True +48201433001,5722.0,True,True +48201433002,3385.0,True,True +48201433003,5787.0,True,True +48201433100,4022.0,True,True +48201433201,4940.0,True,True +48201433202,4269.0,True,True +48201433300,5121.0,False,True +48201433400,4295.0,True,True +48201433501,5593.0,True,True +48201433502,8242.0,True,True +48201433600,6571.0,True,True +48201440100,7513.0,False,True +48201450100,2023.0,False,False +48201450200,5450.0,False,False +48201450300,8570.0,False,False +48201450400,4612.0,True,True +48201450500,2915.0,False,False +48201450600,4124.0,False,False +48201450700,6205.0,False,False +48201450801,1656.0,False,False +48201450802,8058.0,True,True +48201450900,3091.0,False,False +48201451001,5349.0,True,True +48201451002,5365.0,True,True +48201451100,3911.0,False,False +48201451200,2635.0,False,False +48201451300,7329.0,False,False +48201451401,3392.0,False,False +48201451402,4919.0,False,False +48201451403,5696.0,False,False +48201451500,5340.0,False,False +48201451601,7435.0,False,False +48201451602,9604.0,False,False +48201451700,3862.0,False,False +48201451800,5399.0,False,False +48201451901,7288.0,False,False +48201451902,2420.0,False,False +48201452000,8259.0,False,False +48201452100,11307.0,False,False +48201452201,5402.0,False,True +48201452202,3781.0,False,False +48201452300,2467.0,True,True +48201452400,7546.0,True,True +48201452500,7684.0,True,True +48201452600,9195.0,True,True +48201452700,13362.0,True,True +48201452801,5817.0,True,True +48201452802,7237.0,True,True +48201452900,4755.0,True,True +48201453000,8159.0,True,True +48201453100,4216.0,True,True +48201453200,8861.0,True,True +48201453300,3676.0,True,True +48201453401,3143.0,True,True +48201453402,7644.0,True,True +48201453403,4589.0,True,True +48201453501,6824.0,False,True +48201453502,3768.0,True,True +48201453601,2308.0,True,True +48201453602,8321.0,True,True +48201453700,9123.0,True,True +48201453800,4293.0,True,True +48201453900,10803.0,True,True +48201454000,5201.0,False,True +48201454100,3784.0,False,False +48201454200,4453.0,False,False +48201454301,11974.0,False,False +48201454302,6375.0,False,True +48201454400,1186.0,True,True +48201454501,9778.0,False,False +48201454502,2540.0,False,False +48201454600,5031.0,False,False +48201454700,6949.0,False,False +48201454800,8434.0,False,False +48201454900,12205.0,False,False +48201455000,2838.0,False,False +48201455101,7134.0,False,False +48201455102,2920.0,False,False +48201455200,4332.0,False,False +48201455300,10991.0,False,False +48201510100,2344.0,False,False +48201510200,6627.0,False,False +48201510300,5123.0,False,False +48201510400,3870.0,False,False +48201510500,3733.0,False,False +48201510600,7004.0,False,False +48201510700,4905.0,False,False +48201510800,8400.0,False,False +48201510900,7568.0,False,False +48201511001,3108.0,False,False +48201511002,4400.0,False,False +48201511100,3514.0,False,False +48201511200,5998.0,False,False +48201511301,4124.0,False,False +48201511302,3716.0,False,False +48201511400,3113.0,False,False +48201511500,8052.0,False,False +48201511600,3542.0,False,False +48201520100,2088.0,False,False +48201520200,3363.0,False,False +48201520300,5355.0,True,True +48201520400,3303.0,True,True +48201520500,9579.0,True,True +48201520601,2726.0,True,True +48201520602,5681.0,True,True +48201520700,4334.0,False,False +48201521000,2620.0,True,True +48201521100,2304.0,True,True +48201521200,5804.0,True,True +48201521300,5461.0,True,True +48201521400,7766.0,True,True +48201521500,5621.0,False,True +48201521600,3544.0,True,True +48201521700,6773.0,True,True +48201521800,5866.0,False,False +48201521900,6034.0,False,False +48201522000,4718.0,True,True +48201522100,7734.0,True,True +48201522201,3960.0,True,True +48201522202,4449.0,True,True +48201522301,3979.0,True,True +48201522302,3675.0,True,True +48201522401,5479.0,False,False +48201522402,3980.0,True,True +48201522500,5157.0,False,False +48201530100,6389.0,True,True +48201530200,3679.0,False,False +48201530300,2382.0,True,True +48201530400,2932.0,True,True +48201530500,5423.0,True,True +48201530600,3627.0,True,True +48201530700,5929.0,True,True +48201530800,4397.0,True,True +48201530900,4132.0,False,True +48201531000,3949.0,False,False +48201531100,3347.0,False,False +48201531200,3471.0,False,False +48201531300,5967.0,True,True +48201531400,2194.0,False,False +48201531500,2856.0,False,False +48201531600,3246.0,False,False +48201531700,3515.0,False,False +48201531800,2548.0,True,True +48201531900,4974.0,True,True +48201532001,6619.0,True,True +48201532002,1139.0,False,False +48201532100,7369.0,True,True +48201532200,3883.0,True,True +48201532300,6993.0,False,False +48201532400,6348.0,False,False +48201532501,9319.0,False,True +48201532502,5127.0,True,True +48201532600,7408.0,True,True +48201532700,5169.0,True,True +48201532800,1893.0,True,True +48201532900,5662.0,True,True +48201533000,2433.0,True,True +48201533100,6879.0,True,True +48201533200,3983.0,True,True +48201533300,6049.0,True,True +48201533400,11864.0,True,True +48201533500,4245.0,False,True +48201533600,5399.0,True,True +48201533701,5558.0,True,True +48201533702,3815.0,True,True +48201533801,11239.0,True,True +48201533802,7851.0,True,True +48201533901,9472.0,False,True +48201533902,4629.0,True,True +48201534001,3237.0,True,True +48201534002,6438.0,True,True +48201534003,2777.0,True,True +48201534100,7952.0,False,False +48201534201,3289.0,True,True +48201534202,9583.0,False,False +48201534203,2279.0,True,True +48201540100,10485.0,False,False +48201540200,2522.0,True,True +48201540501,6755.0,True,True +48201540502,4790.0,False,False +48201540601,4076.0,False,False +48201540602,7085.0,False,False +48201540700,6924.0,False,False +48201540800,7122.0,False,False +48201540901,2607.0,False,False +48201540902,7058.0,False,False +48201541001,11346.0,False,False +48201541002,8858.0,False,False +48201541003,13814.0,False,False +48201541100,7423.0,False,False +48201541201,8854.0,False,False +48201541202,8698.0,False,False +48201541203,2688.0,False,False +48201541300,12999.0,True,True +48201541400,15920.0,False,False +48201541500,5493.0,False,False +48201541601,6137.0,False,False +48201541602,10628.0,False,True +48201541700,11084.0,False,False +48201541800,6731.0,False,False +48201541900,8020.0,False,False +48201542000,15630.0,False,False +48201542101,25740.0,False,False +48201542102,16690.0,False,False +48201542200,24521.0,False,False +48201542301,14366.0,False,False +48201542302,7768.0,False,False +48201542400,12600.0,False,False +48201542500,2927.0,False,False +48201542600,5841.0,False,False +48201542700,5299.0,False,False +48201542800,9529.0,False,False +48201542900,26770.0,False,False +48201543001,17355.0,False,False +48201543002,27645.0,False,False +48201543003,20730.0,False,False +48201543100,2536.0,False,False +48201543200,8493.0,False,False +48201550100,5609.0,True,True +48201550200,4381.0,True,True +48201550301,7639.0,True,True +48201550302,13811.0,True,True +48201550401,15733.0,True,True +48201550402,11442.0,False,True +48201550500,6803.0,True,True +48201550601,6982.0,True,True +48201550602,3178.0,False,True +48201550603,6537.0,True,True +48201550700,3955.0,False,True +48201550800,3668.0,True,True +48201550900,9552.0,True,True +48201551000,3621.0,True,True +48201551100,11366.0,True,True +48201551200,7480.0,False,False +48201551300,4219.0,False,False +48201551400,5122.0,False,True +48201551500,8050.0,False,False +48201551600,8975.0,True,True +48201551701,8792.0,False,False +48201551702,3972.0,False,False +48201551703,8597.0,False,False +48201551800,4210.0,False,False +48201551900,6185.0,True,True +48201552001,8955.0,False,False +48201552002,1328.0,False,False +48201552101,4324.0,False,False +48201552102,6166.0,False,False +48201552103,3136.0,False,False +48201552200,7811.0,False,False +48201552301,4307.0,False,False +48201552302,4235.0,False,False +48201552400,7519.0,False,False +48201552500,11484.0,True,True +48201552601,6479.0,True,True +48201552602,6648.0,False,False +48201552700,8427.0,False,False +48201552800,9636.0,False,False +48201552900,9033.0,False,False +48201553001,5833.0,False,False +48201553002,4813.0,False,True +48201553100,6335.0,False,False +48201553200,6827.0,True,True +48201553300,6149.0,True,True +48201553401,4090.0,False,False +48201553402,9127.0,False,False +48201553403,7843.0,False,False +48201553500,6620.0,False,False +48201553600,7383.0,False,False +48201553700,4166.0,False,False +48201553801,2779.0,False,False +48201553802,10168.0,False,False +48201553900,8107.0,False,False +48201554001,3387.0,False,False +48201554002,4178.0,False,False +48201554101,1161.0,False,False +48201554102,9725.0,False,False +48201554200,9537.0,False,False +48201554301,7238.0,False,False +48201554302,4639.0,False,False +48201554401,15028.0,False,False +48201554402,16345.0,False,False +48201554403,13044.0,False,False +48201554501,6353.0,False,False +48201554502,6045.0,False,False +48201554600,4504.0,False,False +48201554700,7773.0,False,False +48201554801,17986.0,False,False +48201554802,21422.0,False,False +48201554901,10446.0,False,False +48201554902,9646.0,False,False +48201554903,13121.0,False,False +48201555000,8293.0,False,False +48201555100,11024.0,False,False +48201555200,10255.0,False,False +48201555301,2224.0,False,False +48201555302,19893.0,False,False +48201555303,11985.0,False,False +48201555401,2379.0,False,False +48201555402,8255.0,False,False +48201555501,5030.0,True,True +48201555502,29605.0,False,False +48201555600,5743.0,False,False +48201555701,9990.0,False,False +48201555702,14796.0,False,False +48201556000,8639.0,False,False +48201980000,4.0,True,True +48201980100,519.0,True,True +48203020102,5295.0,True,True +48203020103,4552.0,False,False +48203020104,3569.0,True,True +48203020200,6613.0,False,False +48203020301,4822.0,False,False +48203020302,3452.0,True,True +48203020401,4065.0,True,True +48203020402,4866.0,True,True +48203020501,3074.0,True,True +48203020502,4139.0,False,False +48203020603,6341.0,False,False +48203020604,3607.0,True,True +48203020605,6686.0,True,True +48203020606,5499.0,False,False +48205950200,5669.0,False,False +48207950300,3606.0,True,True +48207950400,2120.0,True,True +48209010100,2362.0,False,False +48209010200,6190.0,False,False +48209010302,4853.0,False,True +48209010303,9097.0,False,False +48209010304,7923.0,False,True +48209010400,12139.0,False,False +48209010500,5144.0,True,True +48209010600,12106.0,False,False +48209010701,8677.0,False,False +48209010702,2893.0,False,False +48209010803,4605.0,False,False +48209010804,9459.0,False,False +48209010805,9256.0,False,False +48209010806,4788.0,False,False +48209010807,2667.0,False,False +48209010808,6068.0,False,False +48209010809,5842.0,False,False +48209010901,8310.0,False,False +48209010902,18252.0,False,False +48209010905,7292.0,False,False +48209010906,16851.0,False,False +48209010907,14466.0,True,True +48209010908,15448.0,False,False +48209010909,8299.0,False,False +48209010910,10379.0,False,False +48211950300,3994.0,False,False +48213950100,6780.0,False,False +48213950200,5383.0,False,False +48213950300,7822.0,False,False +48213950400,4716.0,True,True +48213950500,2577.0,True,True +48213950601,4144.0,True,True +48213950602,5225.0,True,True +48213950700,4438.0,True,True +48213950800,5127.0,True,True +48213950901,5623.0,True,True +48213950902,2219.0,True,True +48213950903,2303.0,False,True +48213951000,2484.0,True,True +48213951100,3521.0,True,True +48213951200,6472.0,True,True +48213951300,5556.0,True,True +48213951400,6680.0,False,False +48215020101,6653.0,True,True +48215020102,9087.0,True,True +48215020201,8048.0,True,True +48215020202,7106.0,True,True +48215020204,8800.0,True,True +48215020205,5588.0,True,True +48215020301,10861.0,False,False +48215020302,9856.0,False,False +48215020402,9680.0,False,False +48215020403,5098.0,True,True +48215020404,5420.0,True,True +48215020501,5556.0,True,True +48215020503,11739.0,True,True +48215020504,7746.0,True,True +48215020600,2128.0,True,True +48215020701,11289.0,True,True +48215020721,7860.0,False,False +48215020723,5211.0,True,True +48215020724,4068.0,False,True +48215020725,4326.0,True,True +48215020726,7679.0,True,True +48215020802,6962.0,True,True +48215020803,4938.0,False,False +48215020804,4800.0,True,True +48215020901,5139.0,False,False +48215020903,5390.0,False,True +48215020904,4978.0,True,True +48215021000,6485.0,True,True +48215021100,2658.0,True,True +48215021201,3041.0,False,True +48215021202,5279.0,True,True +48215021302,15742.0,True,True +48215021303,9366.0,True,True +48215021304,6259.0,True,True +48215021305,8129.0,True,True +48215021401,5983.0,True,True +48215021403,5340.0,True,True +48215021404,10116.0,True,True +48215021500,4066.0,True,True +48215021600,4032.0,True,True +48215021701,10829.0,True,True +48215021702,12629.0,True,True +48215021803,5254.0,True,True +48215021804,3868.0,True,True +48215021805,9965.0,True,True +48215021806,8596.0,True,True +48215021901,8620.0,True,True +48215021903,5365.0,True,True +48215021904,4797.0,True,True +48215022001,14053.0,False,True +48215022003,6147.0,True,True +48215022004,9031.0,True,True +48215022103,5605.0,True,True +48215022104,13840.0,True,True +48215022105,3513.0,True,True +48215022106,7309.0,True,True +48215022201,7081.0,True,True +48215022203,4742.0,True,True +48215022204,5961.0,True,True +48215022300,11144.0,False,True +48215022401,4775.0,True,True +48215022402,6991.0,True,True +48215022501,6808.0,True,True +48215022502,5701.0,True,True +48215022600,1972.0,True,True +48215022701,5110.0,True,True +48215022702,4987.0,True,True +48215022800,9717.0,True,True +48215022900,4136.0,True,True +48215023000,5776.0,True,True +48215023102,8077.0,True,True +48215023103,8030.0,True,True +48215023104,5247.0,True,True +48215023503,8737.0,True,True +48215023504,10234.0,True,True +48215023507,10104.0,True,True +48215023509,13329.0,False,False +48215023510,9887.0,False,False +48215023511,12023.0,True,True +48215023512,5133.0,True,True +48215023513,9111.0,True,True +48215023514,9157.0,True,True +48215023515,13923.0,True,True +48215023600,9183.0,True,True +48215023700,5569.0,True,True +48215023801,12032.0,True,True +48215023802,10330.0,False,False +48215023902,15741.0,False,False +48215023903,4219.0,True,True +48215023904,9197.0,False,False +48215024000,17384.0,True,True +48215024105,9771.0,True,True +48215024106,12663.0,True,True +48215024107,4382.0,True,True +48215024108,6046.0,True,True +48215024109,7599.0,True,True +48215024110,11643.0,True,True +48215024111,5498.0,True,True +48215024112,14337.0,True,True +48215024113,6717.0,True,True +48215024114,9296.0,True,True +48215024201,15813.0,True,True +48215024203,6076.0,True,True +48215024204,4307.0,True,True +48215024205,8967.0,True,True +48215024301,1211.0,True,True +48215024302,1319.0,True,True +48215024402,9370.0,True,True +48215024403,6480.0,True,True +48215024404,3558.0,True,True +48215024500,8777.0,True,True +48215024600,7875.0,True,True +48215980000,0.0,False,False +48217960100,3826.0,False,False +48217960200,4498.0,False,False +48217960400,2105.0,True,True +48217960500,5778.0,False,False +48217960600,1420.0,True,True +48217960700,2060.0,False,False +48217960800,3315.0,True,True +48217960900,1877.0,True,True +48217961000,2181.0,True,True +48217961100,3827.0,False,False +48217961400,4802.0,True,True +48219950100,1395.0,True,True +48219950200,4459.0,True,True +48219950300,4406.0,True,False +48219950400,4688.0,True,True +48219950500,5219.0,False,False +48219950600,1474.0,False,False +48219950700,1423.0,False,False +48221160100,4885.0,False,False +48221160204,3540.0,True,True +48221160205,7584.0,False,False +48221160206,4589.0,False,False +48221160207,7662.0,False,False +48221160208,6436.0,True,True +48221160209,8406.0,False,False +48221160210,6041.0,False,False +48221160301,5395.0,False,False +48221160302,3780.0,True,True +48223950100,3017.0,True,True +48223950200,4263.0,False,False +48223950300,6027.0,False,False +48223950401,4377.0,True,True +48223950402,4245.0,True,True +48223950500,3005.0,True,True +48223950600,3667.0,True,True +48223950700,5061.0,True,True +48223950800,2824.0,False,False +48225950100,5212.0,True,True +48225950200,1142.0,True,True +48225950300,3319.0,True,True +48225950400,2583.0,True,True +48225950500,4316.0,False,False +48225950600,1310.0,True,True +48225950700,5072.0,False,False +48227950100,2474.0,True,True +48227950200,1856.0,False,False +48227950300,2376.0,True,True +48227950400,3456.0,True,True +48227950500,3467.0,True,True +48227950600,4536.0,False,False +48227950700,3745.0,True,True +48227950801,4634.0,False,False +48227950802,5565.0,False,False +48227950900,4240.0,False,False +48229950300,4415.0,True,True +48231960100,2910.0,False,False +48231960200,2653.0,False,False +48231960300,4197.0,False,False +48231960400,4727.0,False,False +48231960500,3690.0,True,True +48231960600,5006.0,False,False +48231960700,5442.0,True,True +48231960800,3372.0,True,True +48231960900,5342.0,True,True +48231961000,4970.0,True,True +48231961100,7293.0,False,False +48231961200,5516.0,False,False +48231961300,7011.0,False,False +48231961400,9728.0,False,False +48231961501,3467.0,False,False +48231961502,5601.0,False,False +48231961503,4163.0,True,True +48231961600,6359.0,True,True +48231961700,2715.0,True,True +48233950200,2024.0,True,True +48233950500,5201.0,False,False +48233950600,3204.0,False,False +48233950700,2096.0,True,True +48233950800,690.0,True,True +48233950900,4020.0,False,False +48233951000,4109.0,False,False +48235950100,1620.0,False,False +48237950100,3070.0,False,False +48237950300,3211.0,True,True +48237950500,2571.0,True,True +48239950100,5438.0,False,False +48239950200,4127.0,True,True +48239950300,5251.0,False,False +48241950100,5239.0,True,True +48241950200,3310.0,True,True +48241950300,3552.0,True,True +48241950400,5514.0,True,True +48241950500,4710.0,True,True +48241950600,2705.0,True,True +48241950700,8122.0,False,False +48241950800,2354.0,True,True +48243950100,2241.0,False,True +48245000101,5219.0,False,False +48245000102,2223.0,True,True +48245000103,3758.0,True,True +48245000200,5167.0,True,True +48245000302,7171.0,False,False +48245000304,6409.0,False,False +48245000306,3456.0,False,False +48245000307,4066.0,False,False +48245000308,7406.0,False,False +48245000309,2937.0,False,False +48245000310,5642.0,False,False +48245000400,4429.0,False,False +48245000500,2510.0,True,True +48245000600,5323.0,True,True +48245000700,2337.0,True,True +48245000900,1935.0,True,True +48245001100,2727.0,False,False +48245001200,2047.0,True,True +48245001301,5850.0,True,True +48245001302,3436.0,False,False +48245001303,3316.0,False,False +48245001700,1680.0,True,True +48245001900,3019.0,True,True +48245002000,2499.0,True,True +48245002100,3019.0,True,True +48245002200,2935.0,True,True +48245002300,2775.0,True,True +48245002400,2335.0,True,True +48245002500,3872.0,True,True +48245002600,5515.0,False,True +48245005100,987.0,True,True +48245005400,1360.0,True,True +48245005500,3356.0,True,True +48245005600,3206.0,False,True +48245005900,1403.0,True,True +48245006100,1241.0,True,True +48245006300,1288.0,True,True +48245006400,1860.0,True,True +48245006500,3834.0,True,True +48245006600,3700.0,True,True +48245006700,2743.0,True,True +48245006800,2098.0,False,True +48245006900,3094.0,True,True +48245007001,7088.0,True,True +48245007002,3943.0,True,True +48245007100,3518.0,True,True +48245010100,3192.0,True,True +48245010200,2226.0,True,True +48245010300,2902.0,True,True +48245010400,2679.0,False,False +48245010500,4163.0,True,True +48245010600,5645.0,True,True +48245010700,3129.0,False,False +48245010800,5090.0,False,False +48245010901,3128.0,False,False +48245010902,4610.0,False,False +48245011001,4591.0,False,False +48245011002,3287.0,False,False +48245011101,4696.0,False,False +48245011102,2368.0,False,False +48245011201,8902.0,False,False +48245011202,3130.0,False,False +48245011203,2392.0,False,False +48245011302,5132.0,False,False +48245011303,3111.0,False,False +48245011304,4083.0,False,False +48245011400,7879.0,False,False +48245011500,2352.0,False,False +48245011600,2301.0,False,False +48245011700,1776.0,True,True +48245011800,1650.0,True,True +48245980000,194.0,False,False +48245990000,0.0,False,False +48247950200,2409.0,True,True +48247950400,2822.0,True,True +48249950100,8931.0,True,True +48249950200,7990.0,True,True +48249950300,6862.0,True,True +48249950400,3491.0,True,True +48249950500,6403.0,True,True +48249950600,4088.0,True,True +48249950700,3207.0,True,True +48251130100,4397.0,False,False +48251130204,11388.0,False,False +48251130205,4022.0,False,False +48251130207,7218.0,False,False +48251130208,6837.0,False,False +48251130210,5321.0,False,False +48251130211,6676.0,False,False +48251130212,5713.0,True,True +48251130213,4337.0,True,True +48251130214,6061.0,True,True +48251130215,6330.0,False,False +48251130302,5515.0,True,False +48251130303,4314.0,True,True +48251130304,5581.0,False,False +48251130405,6157.0,False,False +48251130406,5937.0,False,False +48251130407,9351.0,True,True +48251130408,8720.0,True,True +48251130409,6681.0,False,False +48251130410,7336.0,False,False +48251130500,7252.0,False,False +48251130601,7391.0,False,False +48251130602,2339.0,False,False +48251130700,4955.0,True,True +48251130800,4044.0,True,True +48251130900,3184.0,True,True +48251131000,4623.0,False,False +48251131100,5532.0,True,True +48253020101,1320.0,False,False +48253020102,6856.0,False,False +48253020200,2218.0,True,True +48253020300,2095.0,True,True +48253020400,3178.0,True,True +48253020500,4276.0,False,False +48255970100,2848.0,False,False +48255970200,4218.0,True,True +48255970300,6776.0,False,True +48255970400,1703.0,True,True +48257050201,9689.0,False,False +48257050203,11269.0,False,False +48257050204,6264.0,False,False +48257050205,10275.0,False,False +48257050206,14140.0,False,False +48257050300,4666.0,True,True +48257050400,7548.0,False,True +48257050500,5433.0,True,True +48257050600,7595.0,True,True +48257050701,4684.0,False,False +48257050703,2453.0,False,False +48257050704,5676.0,True,True +48257050800,10456.0,False,False +48257051000,1688.0,True,True +48257051100,5306.0,True,True +48257051201,2949.0,False,False +48257051202,5159.0,False,False +48257051300,8554.0,True,True +48259970100,7749.0,False,False +48259970301,6721.0,False,False +48259970302,4146.0,False,False +48259970401,8796.0,False,False +48259970402,8608.0,False,False +48259970500,7749.0,False,False +48261950100,568.0,True,True +48261990000,0.0,False,False +48263950100,647.0,True,True +48265960100,5726.0,False,False +48265960200,3760.0,False,False +48265960301,3535.0,True,True +48265960302,7878.0,False,False +48265960401,2181.0,True,True +48265960402,5898.0,True,True +48265960500,5419.0,False,False +48265960600,7832.0,True,True +48265960700,5165.0,False,False +48265960800,4449.0,True,True +48267950100,2241.0,True,True +48267950200,2132.0,True,True +48269950100,237.0,True,True +48271950100,3659.0,True,True +48273020100,5472.0,True,True +48273020200,4480.0,True,True +48273020300,7595.0,False,True +48273020400,5892.0,False,False +48273020500,7535.0,False,False +48273990000,0.0,False,False +48275950100,1804.0,True,True +48275950200,1901.0,True,True +48277000101,4301.0,False,False +48277000102,4530.0,True,True +48277000200,3835.0,True,True +48277000300,6390.0,False,False +48277000401,3580.0,True,True +48277000402,5837.0,False,False +48277000500,3552.0,True,True +48277000600,2320.0,True,True +48277000700,3187.0,True,True +48277000800,3593.0,True,True +48277000900,4809.0,False,False +48277001000,3677.0,True,True +48279950100,2546.0,True,True +48279950200,1534.0,True,True +48279950300,2241.0,True,True +48279950500,3315.0,True,True +48279950600,3487.0,True,True +48281950100,2388.0,False,False +48281950301,6033.0,False,False +48281950302,3689.0,False,False +48281950400,4260.0,True,True +48281950500,4492.0,False,False +48283950300,7416.0,True,True +48285000100,3648.0,False,False +48285000200,3620.0,False,False +48285000300,2403.0,False,False +48285000400,3519.0,False,False +48285000500,3688.0,False,False +48285000600,3143.0,True,True +48287000100,4965.0,False,False +48287000200,2765.0,False,False +48287000300,3188.0,False,False +48287000400,6140.0,True,True +48289950100,6794.0,True,True +48289950200,5535.0,False,False +48289950300,4896.0,True,True +48291700100,4334.0,True,True +48291700200,3076.0,True,True +48291700300,12482.0,True,True +48291700400,6908.0,True,True +48291700500,2840.0,False,False +48291700600,2268.0,True,True +48291700700,2342.0,False,False +48291700800,8529.0,False,False +48291700900,8864.0,False,False +48291701000,7417.0,False,False +48291701100,6467.0,False,False +48291701200,6699.0,False,True +48291701300,3322.0,False,False +48291701400,8154.0,True,True +48293970100,2251.0,True,True +48293970200,3720.0,False,False +48293970300,2324.0,True,True +48293970400,2095.0,True,True +48293970500,1914.0,True,True +48293970600,5873.0,True,True +48293970700,1833.0,False,False +48293970800,3407.0,True,True +48295950200,2071.0,False,False +48295950300,1327.0,True,True +48297950100,4613.0,True,True +48297950200,2257.0,True,True +48297950300,2313.0,False,False +48297950400,2956.0,True,True +48299970100,3119.0,False,False +48299970200,3669.0,True,True +48299970300,1931.0,False,False +48299970400,3688.0,False,False +48299970500,7134.0,True,True +48299970600,1506.0,True,True +48301950100,98.0,False,False +48303000100,2732.0,True,True +48303000201,1845.0,False,False +48303000202,1639.0,True,True +48303000301,4006.0,False,True +48303000302,7196.0,True,True +48303000402,4404.0,False,False +48303000403,3862.0,False,False +48303000404,7680.0,False,False +48303000405,11882.0,False,False +48303000500,8307.0,False,True +48303000603,3933.0,False,False +48303000605,841.0,False,True +48303000607,2175.0,True,True +48303000700,975.0,False,False +48303000900,5185.0,True,True +48303001000,3409.0,True,True +48303001200,2444.0,True,True +48303001300,2774.0,True,True +48303001400,4648.0,False,False +48303001501,2624.0,False,False +48303001502,2514.0,False,True +48303001601,2825.0,True,True +48303001602,3231.0,False,False +48303001702,5930.0,False,False +48303001705,6059.0,False,False +48303001706,7052.0,False,False +48303001707,6064.0,False,False +48303001708,2873.0,True,False +48303001709,4417.0,True,False +48303001801,6595.0,False,False +48303001803,5190.0,False,False +48303001804,3774.0,False,False +48303001901,4915.0,False,False +48303001903,5758.0,False,False +48303001904,1930.0,False,False +48303002001,2316.0,False,False +48303002002,3004.0,True,True +48303002101,5692.0,False,False +48303002102,2704.0,False,False +48303002202,6394.0,False,False +48303002203,3122.0,True,True +48303002204,4867.0,True,True +48303002300,4302.0,True,True +48303002400,6850.0,True,True +48303002500,2825.0,True,True +48303010101,1469.0,False,False +48303010102,2055.0,True,True +48303010200,8290.0,True,True +48303010301,4199.0,False,False +48303010302,2506.0,False,False +48303010402,2267.0,True,True +48303010403,5497.0,False,False +48303010404,3056.0,False,False +48303010405,5337.0,False,False +48303010406,6763.0,False,False +48303010407,9506.0,False,False +48303010408,11948.0,False,False +48303010502,3325.0,False,False +48303010504,4053.0,False,False +48303010505,4629.0,False,False +48303010506,4170.0,False,False +48303010508,11220.0,False,False +48303010509,3160.0,False,False +48303010510,2811.0,False,False +48303010511,5486.0,False,False +48303010600,5898.0,True,True +48303010700,3399.0,False,False +48303980000,0.0,False,False +48305950400,2034.0,False,False +48305950500,2553.0,True,True +48305950600,1243.0,True,True +48307950300,5077.0,True,True +48307950400,1561.0,False,False +48307950500,1419.0,True,True +48309000100,2077.0,True,True +48309000200,3585.0,False,False +48309000300,3934.0,False,False +48309000400,5951.0,False,True +48309000598,5427.0,True,True +48309000700,2884.0,True,True +48309000800,3254.0,True,True +48309000900,5153.0,True,True +48309001000,2663.0,True,True +48309001100,5528.0,True,True +48309001200,2753.0,True,True +48309001300,2741.0,True,True +48309001400,7526.0,True,True +48309001500,2201.0,True,True +48309001600,6610.0,True,True +48309001700,5992.0,True,True +48309001800,3132.0,False,False +48309001900,5447.0,True,True +48309002000,4179.0,False,False +48309002100,5643.0,True,False +48309002302,5109.0,True,True +48309002498,5100.0,False,False +48309002501,5187.0,True,False +48309002503,5149.0,False,False +48309002504,3749.0,False,False +48309002600,6599.0,False,False +48309002700,3632.0,True,True +48309002800,4149.0,False,False +48309002900,3922.0,False,False +48309003000,3990.0,True,True +48309003200,4673.0,True,True +48309003300,2586.0,False,False +48309003400,6837.0,False,False +48309003500,4271.0,False,False +48309003601,3366.0,True,True +48309003602,2648.0,False,False +48309003701,3225.0,False,False +48309003703,6078.0,False,False +48309003706,11546.0,False,False +48309003707,8496.0,False,False +48309003708,7440.0,False,False +48309003801,6724.0,False,False +48309003802,5725.0,False,False +48309003900,9421.0,False,False +48309004000,4968.0,False,False +48309004102,5508.0,False,False +48309004103,9469.0,False,False +48309004201,3661.0,False,False +48309004202,3372.0,False,False +48309004300,7809.0,True,True +48309980000,0.0,False,False +48311950100,774.0,False,False +48313000100,3997.0,True,True +48313000200,2164.0,True,True +48313000300,3029.0,False,False +48313000400,5007.0,False,True +48315950100,1990.0,True,True +48315950200,2641.0,True,True +48315950300,2789.0,True,True +48315950400,2597.0,True,True +48317950100,1740.0,False,False +48317950200,3909.0,False,False +48319950100,2353.0,True,True +48319950200,1833.0,False,False +48321730100,2404.0,True,True +48321730201,6767.0,True,True +48321730202,1874.0,True,True +48321730301,4068.0,True,True +48321730302,4876.0,True,True +48321730303,996.0,False,True +48321730400,2149.0,True,True +48321730501,3746.0,True,True +48321730600,5342.0,True,True +48321730700,4552.0,False,False +48321990000,0.0,False,False +48323950201,8566.0,True,True +48323950204,4634.0,True,True +48323950205,8785.0,True,True +48323950300,7672.0,True,True +48323950400,3831.0,True,True +48323950500,6144.0,True,True +48323950601,2833.0,True,True +48323950602,5218.0,True,True +48323950700,10491.0,True,True +48325000101,7209.0,False,False +48325000102,9228.0,False,False +48325000200,1560.0,True,True +48325000300,8046.0,False,False +48325000401,5777.0,False,False +48325000402,4223.0,False,False +48325000500,5380.0,False,False +48325000800,8634.0,False,False +48327950300,2119.0,True,True +48329000100,7687.0,False,False +48329000200,5449.0,False,False +48329000302,6135.0,False,False +48329000303,4541.0,False,False +48329000304,3825.0,False,False +48329000305,5584.0,False,False +48329000401,3758.0,False,False +48329000402,5653.0,False,False +48329000500,4657.0,False,False +48329000600,4479.0,False,False +48329001100,4943.0,False,False +48329001200,6072.0,False,False +48329001300,7531.0,False,False +48329001400,6937.0,True,True +48329001500,5278.0,True,True +48329001700,5186.0,False,False +48329010104,8512.0,False,False +48329010105,3456.0,False,False +48329010106,6345.0,False,False +48329010107,5225.0,False,False +48329010108,3840.0,False,False +48329010109,6973.0,False,False +48329010112,17901.0,False,False +48329010113,12489.0,False,False +48329010114,11351.0,False,False +48329010200,4360.0,True,True +48329980000,0.0,False,False +48331950100,2250.0,True,True +48331950300,4154.0,False,False +48331950401,3262.0,True,True +48331950402,3250.0,True,True +48331950500,2689.0,False,False +48331950700,6178.0,True,True +48331950800,2987.0,False,False +48333950100,1804.0,False,False +48333950200,3085.0,True,True +48335950200,6680.0,False,False +48335950400,1843.0,False,False +48337950100,2239.0,True,True +48337950200,1849.0,False,False +48337950300,2796.0,True,True +48337950400,5230.0,False,False +48337950500,5415.0,True,True +48337950600,1960.0,False,False +48339690100,11151.0,False,False +48339690201,11831.0,False,False +48339690202,8913.0,False,False +48339690300,5645.0,True,True +48339690401,7738.0,False,False +48339690402,18149.0,False,False +48339690500,12443.0,False,False +48339690601,21684.0,False,False +48339690602,26079.0,False,False +48339690700,11099.0,False,False +48339690800,4329.0,False,False +48339690900,4391.0,False,False +48339691000,3938.0,False,False +48339691100,4308.0,False,False +48339691200,7246.0,False,False +48339691301,4848.0,False,False +48339691302,5453.0,True,True +48339691400,9188.0,False,False +48339691500,4416.0,False,False +48339691601,3828.0,False,False +48339691602,5045.0,False,False +48339691700,3124.0,False,False +48339691800,10163.0,False,False +48339691900,6522.0,False,False +48339692001,35550.0,False,False +48339692002,15069.0,False,False +48339692100,15277.0,False,False +48339692200,8710.0,False,False +48339692300,20762.0,False,False +48339692400,10506.0,False,False +48339692500,8690.0,True,True +48339692601,4520.0,True,True +48339692602,15966.0,False,False +48339692700,7918.0,False,False +48339692801,10179.0,True,True +48339692802,7720.0,True,True +48339692900,4924.0,False,False +48339693000,11141.0,True,True +48339693101,6114.0,True,True +48339693102,4974.0,False,False +48339693200,8319.0,False,False +48339693300,8475.0,False,False +48339693400,4716.0,True,True +48339693500,5809.0,True,True +48339693600,4156.0,False,False +48339693700,13653.0,False,False +48339693800,4732.0,True,True +48339693900,13671.0,True,True +48339694000,12040.0,True,True +48339694101,13717.0,True,True +48339694102,5474.0,False,True +48339694201,7885.0,True,True +48339694202,12609.0,False,False +48339694301,13619.0,False,False +48339694302,8150.0,False,False +48339694400,9676.0,False,False +48339694500,13777.0,False,False +48339694600,8745.0,False,False +48339694700,3175.0,False,False +48341950100,2212.0,True,True +48341950200,6764.0,True,True +48341950300,7800.0,False,False +48341950400,4623.0,True,True +48343950100,4542.0,True,True +48343950200,5083.0,False,False +48343950300,2748.0,True,True +48345950100,1252.0,True,True +48347950100,2993.0,True,True +48347950200,4650.0,True,True +48347950301,7581.0,True,True +48347950302,7229.0,True,False +48347950400,7346.0,False,False +48347950501,2549.0,False,False +48347950502,5079.0,False,False +48347950600,6766.0,False,True +48347950700,4263.0,True,True +48347950800,3910.0,True,True +48347950900,2374.0,True,True +48347951000,5606.0,False,False +48347951100,4993.0,True,True +48349970100,4045.0,True,True +48349970200,5321.0,True,True +48349970300,8304.0,True,True +48349970400,4350.0,True,True +48349970500,3929.0,True,True +48349970600,3846.0,True,True +48349970700,5576.0,False,True +48349970800,1965.0,True,True +48349970900,8473.0,True,True +48349971000,3186.0,True,True +48351950100,1953.0,True,True +48351950200,5665.0,True,True +48351950300,3151.0,True,True +48351950400,3145.0,True,True +48353950100,1824.0,False,False +48353950200,4298.0,False,False +48353950300,2002.0,True,True +48353950400,4073.0,True,True +48353950500,2707.0,False,False +48355000500,1760.0,True,True +48355000600,6518.0,True,True +48355000700,4499.0,True,True +48355000800,4172.0,True,True +48355000900,4245.0,True,True +48355001000,3477.0,True,True +48355001100,1876.0,True,True +48355001200,4389.0,True,True +48355001300,4033.0,True,True +48355001400,4808.0,True,True +48355001500,4884.0,True,True +48355001601,5035.0,True,True +48355001602,3498.0,True,True +48355001701,7217.0,True,True +48355001702,1920.0,True,True +48355001801,6133.0,True,True +48355001802,2175.0,False,False +48355001902,9101.0,False,False +48355001903,3889.0,True,True +48355001904,4649.0,True,True +48355002001,4284.0,True,True +48355002002,3911.0,True,True +48355002101,3374.0,False,False +48355002102,3496.0,False,False +48355002200,5850.0,True,True +48355002301,4296.0,True,True +48355002303,4383.0,False,False +48355002304,4938.0,False,False +48355002400,6065.0,True,True +48355002500,4065.0,False,False +48355002601,2623.0,False,False +48355002602,2088.0,False,False +48355002603,3598.0,True,True +48355002703,5724.0,True,True +48355002704,5995.0,False,False +48355002705,5637.0,False,False +48355002706,3778.0,False,False +48355002900,917.0,False,False +48355003001,6346.0,True,True +48355003002,4340.0,True,True +48355003101,5201.0,False,False +48355003102,5645.0,False,False +48355003202,6339.0,False,False +48355003203,6130.0,True,True +48355003204,4277.0,False,False +48355003303,1314.0,True,True +48355003304,6440.0,False,False +48355003305,4509.0,True,True +48355003306,4757.0,True,True +48355003401,4292.0,False,False +48355003402,6374.0,False,False +48355003500,2088.0,False,False +48355003601,6230.0,False,False +48355003602,6154.0,False,False +48355003603,5047.0,False,False +48355003700,3383.0,False,False +48355005102,3925.0,False,False +48355005404,4652.0,False,False +48355005406,3762.0,False,False +48355005407,2961.0,False,False +48355005408,4846.0,False,False +48355005409,3938.0,False,False +48355005410,3829.0,False,False +48355005411,3631.0,False,False +48355005412,5621.0,False,False +48355005413,3107.0,False,False +48355005414,3051.0,False,False +48355005415,6174.0,False,False +48355005416,3855.0,False,False +48355005417,6209.0,False,False +48355005601,5898.0,True,True +48355005602,6788.0,True,True +48355005801,7022.0,False,False +48355005802,6810.0,False,False +48355005900,2997.0,True,True +48355006000,2171.0,True,True +48355006100,3576.0,False,True +48355006200,9104.0,False,False +48355006300,2747.0,True,True +48355006400,2687.0,True,True +48355980000,13.0,False,False +48355990000,0.0,False,False +48357950100,1263.0,False,False +48357950300,3761.0,True,True +48357950400,5107.0,True,True +48359950100,2094.0,False,False +48361020200,3624.0,False,False +48361020300,2760.0,True,True +48361020500,3184.0,True,True +48361020700,5010.0,True,True +48361020800,1893.0,False,False +48361020900,3692.0,True,True +48361021000,2193.0,False,False +48361021100,1814.0,True,True +48361021200,4909.0,False,False +48361021300,5785.0,False,False +48361021400,3861.0,False,False +48361021501,2377.0,False,False +48361021502,6565.0,False,False +48361021600,3590.0,False,False +48361021700,1995.0,True,True +48361021800,2529.0,False,False +48361021900,7329.0,False,False +48361022000,4206.0,True,True +48361022200,4366.0,False,False +48361022300,7440.0,False,False +48361022400,4947.0,False,False +48363000100,2827.0,True,True +48363000200,2060.0,True,True +48363000300,3960.0,False,False +48363000400,5514.0,False,False +48363000500,2041.0,True,True +48363000600,3528.0,True,True +48363000700,3055.0,True,True +48363000800,3387.0,True,True +48363000900,2168.0,True,True +48365950100,4414.0,True,True +48365950200,3447.0,True,False +48365950300,3965.0,True,False +48365950400,6408.0,True,False +48365950500,2704.0,False,False +48365950600,2389.0,True,False +48367140101,5317.0,False,False +48367140102,5553.0,True,True +48367140200,7276.0,False,False +48367140300,6280.0,False,False +48367140403,7048.0,False,False +48367140405,7645.0,False,False +48367140407,10990.0,False,False +48367140408,4932.0,False,False +48367140409,3625.0,True,True +48367140410,4161.0,True,True +48367140411,4925.0,False,False +48367140501,8288.0,False,False +48367140502,4680.0,False,False +48367140601,7096.0,False,False +48367140602,10367.0,False,False +48367140703,7963.0,False,False +48367140704,10161.0,False,False +48367140705,8374.0,False,False +48367140706,9130.0,False,False +48369950200,4891.0,True,True +48369950300,4827.0,True,True +48371950100,2047.0,False,False +48371950300,3272.0,True,True +48371950400,4301.0,False,False +48371950500,6195.0,True,True +48373210101,5135.0,False,True +48373210102,6631.0,True,True +48373210203,6408.0,True,True +48373210204,5147.0,True,True +48373210205,3070.0,True,True +48373210206,3445.0,False,False +48373210301,3589.0,True,True +48373210302,4596.0,False,False +48373210400,5924.0,True,True +48373210500,4968.0,True,True +48375010100,2048.0,False,False +48375010200,2162.0,False,False +48375010300,1160.0,True,True +48375010400,3177.0,False,False +48375010600,1910.0,True,True +48375010700,3359.0,True,True +48375011000,2359.0,True,True +48375011500,4305.0,True,True +48375011600,4658.0,True,True +48375011700,4040.0,True,True +48375011800,3630.0,False,False +48375011900,2835.0,True,True +48375012000,1577.0,True,True +48375012200,3892.0,True,True +48375012600,2453.0,True,True +48375012800,4888.0,True,True +48375013000,1462.0,True,True +48375013200,1477.0,False,False +48375013300,5697.0,False,False +48375013400,2540.0,False,False +48375013900,4061.0,True,True +48375014100,2885.0,True,True +48375014300,5908.0,False,False +48375014401,8069.0,True,True +48375014500,5731.0,True,True +48375014700,4535.0,True,True +48375014800,2349.0,True,True +48375014900,6528.0,True,True +48375015000,7578.0,True,True +48375015100,2473.0,False,False +48375015200,2810.0,True,True +48375015300,4805.0,True,True +48375015400,2313.0,True,True +48375980000,0.0,False,False +48377950100,2626.0,True,True +48377950200,4349.0,True,True +48379950100,6388.0,False,False +48379950200,5378.0,True,True +48381020100,2334.0,False,False +48381020200,2185.0,False,False +48381020300,1972.0,False,False +48381020400,2132.0,False,False +48381020500,3500.0,True,True +48381020600,4172.0,False,False +48381020800,6803.0,False,False +48381020900,3022.0,True,True +48381021000,2363.0,False,False +48381021101,4725.0,False,False +48381021102,2410.0,True,True +48381021200,5199.0,False,False +48381021300,5631.0,False,False +48381021500,5090.0,False,False +48381021602,4943.0,False,False +48381021603,2115.0,False,False +48381021604,3721.0,False,False +48381021605,1864.0,False,False +48381021606,5244.0,False,False +48381021608,8836.0,False,False +48381021609,5046.0,False,False +48381021702,5065.0,False,False +48381021703,5994.0,False,False +48381021704,8792.0,False,False +48381021801,6686.0,False,False +48381021802,5790.0,False,False +48381021900,5384.0,False,False +48381022001,6913.0,False,False +48381022002,6095.0,False,False +48383950100,3766.0,False,False +48385950100,3408.0,True,True +48387950100,2381.0,True,True +48387950500,4370.0,True,True +48387950600,2968.0,True,True +48387950700,2452.0,True,True +48389950100,4295.0,False,True +48389950200,3074.0,True,True +48389950300,1937.0,False,False +48389950400,4844.0,False,False +48389950500,1342.0,False,False +48391950200,3714.0,True,True +48391950400,3431.0,True,True +48393950100,805.0,False,False +48395960100,1773.0,True,True +48395960200,1757.0,True,True +48395960300,4764.0,False,False +48395960400,3401.0,False,False +48395960500,5295.0,True,True +48397040101,6774.0,False,False +48397040102,7753.0,False,False +48397040200,7114.0,False,False +48397040301,6103.0,False,False +48397040302,8485.0,False,False +48397040401,13715.0,False,False +48397040402,13096.0,False,False +48397040503,6686.0,False,False +48397040504,7059.0,False,False +48397040505,11257.0,False,False +48397040506,9133.0,False,False +48399950100,1242.0,False,False +48399950200,2600.0,True,True +48399950500,1963.0,False,False +48399950600,4472.0,True,True +48401950100,6022.0,False,False +48401950200,3323.0,False,False +48401950300,6390.0,False,True +48401950400,5546.0,True,False +48401950501,5121.0,True,False +48401950502,4196.0,True,False +48401950600,2483.0,False,False +48401950700,5483.0,True,True +48401950800,4072.0,True,False +48401950900,3387.0,False,False +48401951000,2563.0,True,True +48401951100,2715.0,True,True +48401951200,2454.0,True,True +48403950100,2599.0,True,True +48403950200,3081.0,True,True +48403950300,4791.0,True,True +48405950100,2941.0,True,True +48405950200,2710.0,True,True +48405950300,2635.0,True,True +48407200101,7305.0,True,True +48407200102,11071.0,True,True +48407200200,5054.0,True,True +48407200300,4750.0,True,True +48409010201,3549.0,True,True +48409010202,4841.0,True,True +48409010301,4652.0,False,False +48409010302,5171.0,True,True +48409010500,1977.0,True,True +48409010601,5841.0,False,False +48409010602,4126.0,False,False +48409010603,2769.0,False,False +48409010604,2939.0,False,False +48409010700,4246.0,False,False +48409010800,4083.0,True,True +48409010900,5061.0,True,True +48409011000,6643.0,True,True +48409011100,3028.0,True,True +48409011200,3139.0,True,True +48409011300,4943.0,True,True +48411950100,2611.0,True,True +48411950200,3380.0,False,False +48413950300,2983.0,False,False +48415950100,4857.0,True,True +48415950200,1415.0,False,False +48415950300,5767.0,False,False +48415950600,5057.0,True,True +48417950300,3296.0,False,False +48419950100,4622.0,True,True +48419950200,3767.0,True,True +48419950300,4814.0,True,True +48419950400,5642.0,True,True +48419950500,3335.0,True,True +48419950600,3169.0,True,True +48421950200,3059.0,True,False +48423000100,5914.0,True,True +48423000201,4467.0,True,True +48423000202,2021.0,True,True +48423000300,5494.0,True,True +48423000400,2436.0,True,True +48423000500,2971.0,True,True +48423000600,2373.0,True,True +48423000700,3774.0,True,True +48423000800,6194.0,True,True +48423000900,5166.0,False,False +48423001000,5519.0,True,False +48423001101,4009.0,False,False +48423001102,2716.0,False,False +48423001200,3686.0,False,False +48423001300,2302.0,False,False +48423001401,8921.0,False,False +48423001403,7933.0,True,False +48423001404,6946.0,False,False +48423001500,5710.0,True,False +48423001601,8630.0,True,True +48423001602,4152.0,False,False +48423001604,6724.0,True,True +48423001700,9264.0,True,True +48423001801,7269.0,False,False +48423001802,8746.0,False,False +48423001803,4445.0,False,False +48423001901,6164.0,False,False +48423001905,9465.0,False,False +48423001906,5467.0,False,False +48423001907,6239.0,False,False +48423001908,11351.0,False,False +48423002003,4327.0,False,False +48423002004,2766.0,False,False +48423002006,3946.0,False,False +48423002007,8647.0,False,False +48423002008,7200.0,False,False +48423002009,8162.0,False,False +48423002101,4255.0,True,True +48423002102,5435.0,False,False +48423002200,6243.0,False,False +48423980000,0.0,False,False +48425000100,7275.0,False,False +48425000200,1585.0,True,True +48427950101,1112.0,True,True +48427950104,5590.0,True,True +48427950105,4181.0,True,True +48427950106,3199.0,True,True +48427950107,3254.0,True,True +48427950108,3723.0,True,True +48427950202,2471.0,True,True +48427950203,4520.0,True,True +48427950204,5454.0,True,True +48427950401,5274.0,True,True +48427950402,5251.0,True,True +48427950500,4910.0,True,True +48427950600,7785.0,True,True +48427950701,3807.0,True,True +48427950702,3547.0,True,True +48429950200,4298.0,True,True +48429950300,1700.0,True,True +48429950500,3366.0,False,False +48431950100,1231.0,True,True +48433950300,1476.0,True,True +48435950300,3824.0,False,False +48437950200,1960.0,False,False +48437950300,4192.0,True,True +48437950400,1280.0,True,True +48439100101,6073.0,True,True +48439100102,4344.0,True,True +48439100201,4948.0,True,True +48439100202,5615.0,True,True +48439100300,5750.0,True,True +48439100400,5926.0,True,True +48439100501,11356.0,True,True +48439100502,7234.0,True,True +48439100601,2430.0,False,False +48439100602,3752.0,True,True +48439100700,5291.0,True,True +48439100800,6475.0,True,True +48439100900,2126.0,True,True +48439101201,2090.0,True,True +48439101202,5449.0,True,True +48439101301,5011.0,True,False +48439101302,3438.0,True,True +48439101401,5485.0,True,False +48439101402,3746.0,True,True +48439101403,5790.0,True,True +48439101500,4120.0,True,True +48439101700,2525.0,True,True +48439102000,3124.0,False,False +48439102100,5840.0,False,False +48439102201,3482.0,False,False +48439102202,2811.0,False,False +48439102301,3544.0,True,True +48439102302,5601.0,True,True +48439102401,4496.0,False,False +48439102402,4625.0,False,False +48439102500,3518.0,True,True +48439102601,4024.0,True,False +48439102602,3953.0,False,False +48439102700,3390.0,False,False +48439102800,1465.0,False,False +48439103500,5695.0,True,True +48439103601,2764.0,True,True +48439103602,2629.0,True,True +48439103701,4138.0,True,True +48439103702,2948.0,True,True +48439103800,3305.0,True,True +48439104100,3401.0,False,False +48439104201,6468.0,False,False +48439104202,3218.0,False,False +48439104300,6322.0,False,False +48439104400,5461.0,True,True +48439104502,2801.0,True,True +48439104503,2812.0,True,True +48439104504,2983.0,True,True +48439104505,4804.0,True,True +48439104601,4744.0,True,True +48439104602,5360.0,True,True +48439104603,4214.0,True,True +48439104604,3228.0,True,True +48439104605,5120.0,True,True +48439104701,4481.0,True,True +48439104702,3435.0,True,True +48439104802,6202.0,True,True +48439104803,6871.0,True,True +48439104804,2758.0,True,True +48439104900,3013.0,True,True +48439105001,5883.0,True,True +48439105006,2350.0,True,True +48439105007,5407.0,False,False +48439105008,8779.0,False,False +48439105201,5660.0,True,True +48439105203,2750.0,True,True +48439105204,2826.0,True,True +48439105205,5310.0,True,True +48439105403,6467.0,False,False +48439105404,4128.0,False,False +48439105405,3378.0,False,False +48439105406,4987.0,False,False +48439105502,6148.0,False,False +48439105503,6152.0,False,False +48439105505,5647.0,True,True +48439105507,6932.0,False,False +48439105508,7611.0,False,False +48439105510,8041.0,False,False +48439105511,6155.0,True,False +48439105512,4727.0,False,False +48439105513,2902.0,True,True +48439105514,2662.0,False,False +48439105600,5779.0,False,False +48439105701,4291.0,False,False +48439105703,4034.0,False,True +48439105704,8388.0,True,False +48439105800,4571.0,True,True +48439105901,3875.0,True,True +48439105902,6549.0,True,True +48439106001,8910.0,True,True +48439106002,3648.0,True,True +48439106004,7084.0,True,True +48439106101,1904.0,True,True +48439106102,4331.0,True,True +48439106201,4007.0,True,True +48439106202,5329.0,True,True +48439106300,3580.0,True,True +48439106400,3399.0,True,True +48439106502,3033.0,False,True +48439106503,5167.0,True,True +48439106507,2114.0,False,False +48439106509,5576.0,False,False +48439106510,8987.0,False,False +48439106511,9178.0,True,True +48439106512,4538.0,False,False +48439106513,3256.0,False,False +48439106514,5453.0,False,False +48439106515,4132.0,True,False +48439106516,5293.0,True,True +48439106517,9193.0,False,False +48439106518,5813.0,False,False +48439106600,2400.0,True,True +48439106700,2187.0,False,False +48439110101,6885.0,False,True +48439110102,3728.0,True,True +48439110202,4272.0,False,True +48439110203,9042.0,False,False +48439110204,7032.0,False,False +48439110301,4092.0,True,True +48439110302,4805.0,True,True +48439110401,4929.0,True,True +48439110402,5411.0,True,True +48439110500,8354.0,False,True +48439110600,2681.0,False,False +48439110701,7147.0,False,False +48439110703,5798.0,True,True +48439110704,4620.0,True,True +48439110805,6492.0,False,False +48439110806,5711.0,False,False +48439110807,7609.0,False,False +48439110808,3924.0,False,False +48439110809,2274.0,False,False +48439110901,4551.0,False,False +48439110903,1489.0,False,False +48439110905,5013.0,False,False +48439110906,4446.0,False,False +48439110907,3718.0,False,False +48439111003,3016.0,False,False +48439111005,9923.0,True,False +48439111008,10281.0,False,False +48439111010,3541.0,False,False +48439111011,10785.0,False,False +48439111012,10171.0,False,False +48439111013,10297.0,False,False +48439111015,2366.0,False,False +48439111016,11179.0,False,False +48439111017,12559.0,False,False +48439111018,2264.0,False,False +48439111102,6194.0,True,True +48439111103,4445.0,True,True +48439111104,2526.0,True,True +48439111202,6301.0,True,True +48439111203,7066.0,False,False +48439111204,4986.0,False,False +48439111301,9350.0,False,False +48439111304,8033.0,False,False +48439111306,5392.0,False,False +48439111307,3435.0,False,False +48439111308,1535.0,False,False +48439111309,4868.0,False,False +48439111310,11213.0,False,False +48439111311,6764.0,False,False +48439111312,3563.0,False,False +48439111313,11529.0,False,False +48439111314,7387.0,False,False +48439111402,5656.0,False,False +48439111404,9577.0,False,False +48439111405,2682.0,True,True +48439111406,4465.0,False,False +48439111407,3556.0,False,False +48439111408,3929.0,False,False +48439111409,5541.0,False,False +48439111505,4831.0,False,False +48439111506,6400.0,True,False +48439111513,4124.0,False,False +48439111514,6820.0,False,False +48439111516,7151.0,False,False +48439111521,8161.0,True,False +48439111522,7727.0,True,True +48439111523,9563.0,True,False +48439111524,7864.0,True,False +48439111525,6403.0,False,False +48439111526,4633.0,False,False +48439111529,4290.0,False,False +48439111530,6414.0,False,False +48439111531,4915.0,False,False +48439111532,7333.0,False,False +48439111533,5748.0,False,False +48439111534,6447.0,False,False +48439111536,3413.0,False,False +48439111537,6305.0,False,False +48439111538,6146.0,False,False +48439111539,9232.0,False,False +48439111540,7340.0,False,False +48439111541,3848.0,False,False +48439111542,6777.0,False,False +48439111543,7556.0,True,True +48439111544,8534.0,False,False +48439111545,2231.0,False,False +48439111546,6403.0,False,False +48439111547,19122.0,False,False +48439111548,8832.0,False,False +48439111549,11304.0,False,False +48439111550,13896.0,False,False +48439111551,7430.0,False,False +48439111552,3539.0,False,False +48439111553,4038.0,False,False +48439113001,3176.0,False,False +48439113002,6981.0,True,True +48439113102,4604.0,False,False +48439113104,3735.0,False,False +48439113107,2134.0,False,False +48439113108,4657.0,False,False +48439113109,4438.0,False,False +48439113110,4643.0,False,False +48439113111,4436.0,True,True +48439113112,2155.0,False,False +48439113113,3648.0,False,False +48439113114,4689.0,False,False +48439113115,3384.0,False,False +48439113116,4538.0,False,True +48439113206,5409.0,True,False +48439113207,4199.0,False,False +48439113210,7389.0,False,False +48439113212,4663.0,False,False +48439113213,3896.0,False,False +48439113214,6142.0,False,False +48439113215,4911.0,False,False +48439113216,5059.0,False,False +48439113217,4517.0,False,False +48439113218,3381.0,False,False +48439113220,7594.0,True,True +48439113221,5832.0,False,False +48439113301,4113.0,False,False +48439113302,4690.0,True,False +48439113403,3032.0,False,False +48439113404,5744.0,True,False +48439113405,6329.0,True,False +48439113407,5677.0,True,False +48439113408,5499.0,False,False +48439113509,4402.0,False,False +48439113510,5545.0,False,False +48439113511,4203.0,False,False +48439113512,5945.0,False,False +48439113513,5659.0,False,False +48439113514,4582.0,True,False +48439113516,4413.0,False,False +48439113517,4108.0,False,False +48439113518,5644.0,False,False +48439113519,6807.0,False,False +48439113520,4711.0,False,False +48439113607,4136.0,False,False +48439113610,14009.0,False,False +48439113611,4195.0,False,False +48439113612,4257.0,False,False +48439113613,4252.0,False,False +48439113618,5780.0,False,False +48439113619,5931.0,True,False +48439113622,7160.0,False,False +48439113623,3137.0,False,False +48439113624,4776.0,False,False +48439113625,3088.0,False,False +48439113626,3736.0,False,False +48439113627,6309.0,False,False +48439113628,5382.0,False,False +48439113629,4650.0,False,False +48439113630,3804.0,False,False +48439113631,7045.0,False,True +48439113632,5148.0,False,False +48439113633,4416.0,False,False +48439113634,5416.0,False,False +48439113703,12444.0,False,False +48439113705,6994.0,False,False +48439113707,5265.0,False,False +48439113709,5501.0,False,False +48439113710,4468.0,False,False +48439113711,4267.0,False,False +48439113803,5774.0,False,False +48439113808,6689.0,False,False +48439113809,4918.0,False,False +48439113810,4601.0,False,False +48439113811,4217.0,False,False +48439113812,5793.0,False,False +48439113813,5124.0,False,False +48439113814,4357.0,False,False +48439113815,6446.0,False,False +48439113816,5272.0,False,False +48439113906,6665.0,False,False +48439113907,9593.0,False,False +48439113908,5696.0,False,False +48439113909,7082.0,False,False +48439113910,10997.0,False,False +48439113911,9656.0,False,False +48439113912,6337.0,False,False +48439113916,4336.0,False,False +48439113917,7844.0,False,False +48439113918,5953.0,False,False +48439113919,7470.0,False,False +48439113920,6353.0,False,False +48439113921,26455.0,False,False +48439113922,18730.0,False,False +48439113923,3909.0,False,False +48439113924,5427.0,False,False +48439113925,4079.0,False,False +48439113926,27285.0,False,False +48439113927,17979.0,False,False +48439113928,10988.0,False,False +48439113929,9343.0,False,False +48439114003,8852.0,False,False +48439114005,9369.0,False,False +48439114006,7193.0,False,False +48439114007,18944.0,False,False +48439114008,17188.0,False,False +48439114102,9029.0,False,False +48439114103,28891.0,False,False +48439114104,9922.0,False,False +48439114203,5422.0,True,True +48439114204,6596.0,False,False +48439114205,3157.0,False,False +48439114206,4751.0,False,False +48439114207,6356.0,False,False +48439121601,7488.0,False,False +48439121604,5786.0,True,False +48439121605,3066.0,False,False +48439121606,3385.0,False,False +48439121608,5381.0,False,False +48439121609,5975.0,False,False +48439121610,2746.0,False,False +48439121611,5129.0,False,False +48439121702,2470.0,False,False +48439121703,5757.0,True,True +48439121704,3544.0,True,True +48439121903,6520.0,True,True +48439121904,4924.0,True,True +48439121905,4893.0,True,True +48439121906,4718.0,True,True +48439122001,4330.0,True,True +48439122002,4796.0,True,True +48439122100,7517.0,True,False +48439122200,1961.0,True,True +48439122300,4539.0,False,True +48439122400,5534.0,False,False +48439122500,4205.0,False,False +48439122600,4727.0,True,False +48439122700,5224.0,False,False +48439122801,3993.0,True,True +48439122802,5345.0,True,True +48439122900,8253.0,True,True +48439123000,6070.0,False,False +48439123100,3314.0,True,True +48439123200,2540.0,False,False +48439123300,5143.0,False,False +48439123400,2107.0,False,False +48439123500,3485.0,True,True +48439123600,2897.0,True,True +48439980000,0.0,False,False +48441010100,5863.0,False,False +48441010200,2286.0,False,True +48441010300,2279.0,True,True +48441010400,1957.0,True,True +48441010500,3428.0,True,True +48441010600,3974.0,False,False +48441010700,3933.0,True,True +48441010800,1351.0,True,True +48441010900,6674.0,False,False +48441011000,1086.0,True,True +48441011200,2585.0,True,True +48441011300,3546.0,True,True +48441011400,4387.0,True,True +48441011500,2934.0,False,False +48441011600,2556.0,False,False +48441011700,2072.0,True,False +48441011900,1886.0,True,True +48441012000,1999.0,False,False +48441012100,558.0,True,True +48441012200,2634.0,True,True +48441012300,4329.0,False,False +48441012400,2441.0,True,False +48441012500,3794.0,False,False +48441012600,3353.0,False,False +48441012700,7626.0,False,False +48441012801,3653.0,False,False +48441012802,3540.0,False,False +48441012900,2189.0,True,False +48441013000,1336.0,False,False +48441013100,6036.0,True,True +48441013200,1884.0,True,False +48441013300,3509.0,False,False +48441013401,3997.0,True,False +48441013402,8233.0,False,False +48441013404,10457.0,False,False +48441013500,7613.0,False,False +48441013600,4892.0,False,False +48441980000,0.0,False,False +48443950100,896.0,True,True +48445950100,2474.0,True,True +48445950300,2648.0,True,True +48445950400,7406.0,True,True +48447950300,1436.0,True,True +48449950100,2146.0,True,True +48449950200,2683.0,True,False +48449950300,9247.0,True,False +48449950400,5521.0,False,False +48449950500,2696.0,True,True +48449950600,4491.0,True,True +48449950700,1500.0,True,True +48449950800,4356.0,True,True +48451000100,2226.0,False,False +48451000200,4454.0,True,False +48451000300,5814.0,False,False +48451000400,5325.0,True,True +48451000700,4243.0,True,True +48451000801,4691.0,False,False +48451000802,4386.0,False,False +48451000900,2149.0,False,False +48451001000,5133.0,False,False +48451001101,6406.0,False,False +48451001102,5076.0,True,False +48451001200,8262.0,False,False +48451001301,7249.0,False,False +48451001303,4476.0,False,False +48451001304,3062.0,False,False +48451001400,6281.0,False,False +48451001500,2770.0,True,False +48451001600,4738.0,False,False +48451001702,2897.0,True,True +48451001704,9524.0,False,False +48451001706,3734.0,False,False +48451001707,5422.0,False,False +48451001708,7033.0,False,False +48451001800,2635.0,True,True +48451980000,0.0,False,False +48453000101,4411.0,False,False +48453000102,2580.0,False,False +48453000203,2334.0,False,False +48453000204,3096.0,False,False +48453000205,3930.0,False,False +48453000206,3375.0,False,False +48453000302,5235.0,False,False +48453000304,3127.0,False,False +48453000305,4093.0,False,False +48453000306,6029.0,False,False +48453000307,1820.0,False,False +48453000401,4229.0,False,False +48453000402,3661.0,False,False +48453000500,4431.0,False,False +48453000601,10332.0,False,False +48453000603,8254.0,False,False +48453000604,7548.0,False,False +48453000700,1388.0,False,False +48453000801,1794.0,True,False +48453000802,3792.0,True,True +48453000803,2941.0,False,False +48453000804,2658.0,True,True +48453000901,2604.0,False,False +48453000902,5581.0,True,True +48453001000,3533.0,False,False +48453001100,7410.0,False,False +48453001200,5857.0,False,False +48453001303,5093.0,False,False +48453001304,4593.0,False,False +48453001305,5644.0,False,False +48453001307,3726.0,False,False +48453001308,3054.0,False,False +48453001401,3173.0,False,False +48453001402,2514.0,False,False +48453001403,1803.0,False,False +48453001501,5582.0,False,False +48453001503,4390.0,False,False +48453001504,6833.0,False,False +48453001505,4781.0,False,False +48453001602,3364.0,False,False +48453001603,5236.0,False,False +48453001604,4007.0,False,False +48453001605,3968.0,False,False +48453001606,16.0,True,True +48453001705,4918.0,False,False +48453001706,3894.0,False,False +48453001707,5286.0,False,False +48453001712,4557.0,False,False +48453001713,4490.0,False,False +48453001714,15030.0,False,False +48453001716,7296.0,False,False +48453001718,6245.0,False,False +48453001719,4159.0,False,False +48453001722,3844.0,False,False +48453001728,7477.0,False,False +48453001729,5075.0,False,False +48453001733,4348.0,False,False +48453001737,10787.0,False,False +48453001738,6846.0,False,False +48453001740,5017.0,False,False +48453001741,2760.0,False,False +48453001742,6545.0,False,False +48453001745,2263.0,False,False +48453001746,4606.0,False,False +48453001747,6090.0,False,False +48453001748,6521.0,False,False +48453001749,7250.0,False,False +48453001750,4849.0,False,False +48453001751,2203.0,False,False +48453001752,3930.0,False,False +48453001753,1255.0,False,False +48453001754,5029.0,False,False +48453001755,6239.0,False,False +48453001756,4582.0,False,False +48453001757,2250.0,False,False +48453001760,18107.0,False,False +48453001761,8012.0,False,False +48453001764,7953.0,False,False +48453001765,14849.0,False,False +48453001766,11208.0,False,False +48453001768,11230.0,False,False +48453001769,6988.0,False,False +48453001770,13007.0,False,False +48453001771,4420.0,False,False +48453001772,4726.0,False,False +48453001773,8423.0,False,False +48453001774,8365.0,False,False +48453001775,8291.0,False,False +48453001776,3136.0,False,False +48453001777,5822.0,False,False +48453001778,4339.0,False,False +48453001779,6546.0,False,False +48453001780,4617.0,False,False +48453001781,2616.0,False,False +48453001782,5301.0,False,False +48453001783,5325.0,False,False +48453001784,6017.0,False,False +48453001785,5516.0,False,False +48453001786,5829.0,False,False +48453001804,6757.0,True,True +48453001805,4632.0,True,True +48453001806,7174.0,True,True +48453001811,3259.0,True,True +48453001812,7889.0,True,True +48453001813,7466.0,True,True +48453001817,4105.0,False,False +48453001818,6714.0,True,True +48453001819,4272.0,True,True +48453001820,7713.0,True,True +48453001821,5594.0,True,False +48453001822,6800.0,True,True +48453001823,7254.0,True,True +48453001824,2086.0,False,False +48453001826,2788.0,False,False +48453001828,4273.0,False,False +48453001829,2459.0,False,False +48453001832,3011.0,False,False +48453001833,9645.0,False,True +48453001834,11691.0,False,False +48453001835,6771.0,True,True +48453001839,10172.0,False,True +48453001840,10880.0,False,False +48453001841,16835.0,False,False +48453001842,13628.0,True,True +48453001843,2524.0,False,False +48453001844,4157.0,False,False +48453001845,3198.0,False,False +48453001846,2526.0,False,False +48453001847,6932.0,False,False +48453001848,5226.0,False,False +48453001849,8355.0,False,False +48453001850,3782.0,False,False +48453001851,9493.0,False,False +48453001853,3293.0,False,False +48453001854,9104.0,False,False +48453001855,20160.0,False,False +48453001856,9214.0,False,False +48453001857,6257.0,False,False +48453001858,24015.0,False,False +48453001859,3691.0,False,False +48453001860,4387.0,True,True +48453001861,4571.0,False,False +48453001862,6435.0,False,False +48453001863,3554.0,True,True +48453001864,2643.0,False,False +48453001901,6190.0,False,False +48453001908,9285.0,False,False +48453001910,4749.0,False,False +48453001911,2949.0,False,False +48453001912,4129.0,False,False +48453001913,4940.0,False,False +48453001914,6568.0,False,False +48453001915,2138.0,False,False +48453001916,2958.0,False,False +48453001917,5147.0,False,False +48453001918,2530.0,False,False +48453001919,3945.0,False,False +48453002002,3400.0,False,False +48453002003,4175.0,True,True +48453002004,2732.0,False,False +48453002005,5560.0,False,False +48453002104,3304.0,False,False +48453002105,5090.0,True,True +48453002106,3087.0,False,False +48453002107,4988.0,True,False +48453002108,4082.0,False,False +48453002109,4243.0,False,False +48453002110,4221.0,True,True +48453002111,5642.0,True,True +48453002112,5426.0,True,True +48453002113,3703.0,False,False +48453002201,2223.0,True,False +48453002202,9747.0,True,True +48453002207,9940.0,True,True +48453002208,8360.0,True,True +48453002209,10185.0,False,False +48453002210,5124.0,False,False +48453002211,3069.0,False,False +48453002212,1452.0,False,False +48453002304,4200.0,False,False +48453002307,5947.0,True,True +48453002308,6467.0,False,False +48453002310,2890.0,True,True +48453002312,8590.0,True,True +48453002313,4589.0,True,True +48453002314,5392.0,True,False +48453002315,2954.0,True,True +48453002316,4587.0,True,True +48453002317,6581.0,False,False +48453002318,7215.0,False,False +48453002319,2368.0,True,True +48453002402,8514.0,False,False +48453002403,2743.0,False,False +48453002407,6663.0,False,False +48453002409,3586.0,False,False +48453002410,4419.0,True,False +48453002411,7419.0,True,True +48453002412,6165.0,True,False +48453002413,5045.0,True,True +48453002419,4945.0,True,True +48453002421,10980.0,False,False +48453002422,6070.0,False,False +48453002423,6007.0,False,False +48453002424,3898.0,False,False +48453002425,4342.0,False,False +48453002426,9742.0,False,False +48453002427,8046.0,True,True +48453002428,8291.0,False,False +48453002429,1645.0,True,True +48453002430,2593.0,True,True +48453002431,9899.0,False,False +48453002432,2982.0,True,True +48453002433,9458.0,False,False +48453002434,1661.0,True,True +48453002435,8318.0,True,True +48453002436,2768.0,False,True +48453002500,6056.0,False,False +48453980000,0.0,False,False +48455950100,2426.0,True,True +48455950200,3644.0,True,True +48455950300,2316.0,True,True +48455950400,4179.0,True,True +48455950500,2055.0,True,True +48457950100,3170.0,False,False +48457950200,8067.0,False,False +48457950300,2717.0,True,True +48457950400,4296.0,True,True +48457950500,3268.0,False,False +48459950100,7698.0,True,True +48459950200,4532.0,False,False +48459950300,8641.0,True,True +48459950400,4383.0,False,True +48459950500,6383.0,True,True +48459950600,3983.0,False,False +48459950700,5398.0,False,False +48461950100,1180.0,False,False +48461950200,2479.0,False,False +48463950100,3045.0,True,True +48463950200,8567.0,True,True +48463950300,6069.0,True,True +48463950400,3505.0,True,True +48463950500,5734.0,True,True +48465950201,8695.0,False,False +48465950301,4860.0,True,True +48465950302,4378.0,True,True +48465950400,4149.0,True,True +48465950500,7695.0,True,True +48465950601,3932.0,True,True +48465950602,3726.0,True,True +48465950700,6367.0,True,True +48465950800,5167.0,False,False +48465980000,0.0,False,False +48467950100,5397.0,True,True +48467950200,3622.0,True,True +48467950300,5124.0,False,False +48467950400,4191.0,True,True +48467950500,4804.0,True,True +48467950600,7512.0,False,False +48467950700,4131.0,False,False +48467950800,5777.0,True,True +48467950900,8370.0,False,False +48467951000,6175.0,False,False +48469000100,2251.0,True,True +48469000201,2811.0,True,True +48469000202,5921.0,True,True +48469000301,2246.0,True,True +48469000302,1898.0,True,True +48469000400,1794.0,False,True +48469000501,4562.0,True,True +48469000502,3985.0,True,True +48469000601,2734.0,True,True +48469000602,5006.0,True,True +48469000700,3450.0,False,False +48469000800,2056.0,False,False +48469001300,2264.0,False,False +48469001400,8553.0,False,False +48469001501,3741.0,False,False +48469001503,2374.0,False,False +48469001504,8636.0,False,False +48469001601,6035.0,False,False +48469001604,7175.0,False,False +48469001605,3097.0,False,False +48469001606,8184.0,False,False +48469001700,3336.0,True,True +48469980000,0.0,False,False +48471790101,6977.0,True,True +48471790102,3653.0,False,False +48471790103,5968.0,False,False +48471790200,7292.0,True,True +48471790300,7640.0,False,False +48471790400,12013.0,False,False +48471790500,8656.0,False,False +48471790600,4153.0,True,True +48471790700,8188.0,False,True +48471790800,7781.0,False,False +48473680100,6655.0,False,False +48473680200,9916.0,True,True +48473680300,10627.0,False,False +48473680400,4052.0,False,True +48473680500,11609.0,True,True +48473680600,8973.0,False,False +48475950100,4363.0,False,False +48475950200,4293.0,True,True +48475950300,3002.0,True,True +48477170100,3812.0,True,True +48477170200,6693.0,False,False +48477170300,5561.0,False,False +48477170400,7230.0,False,False +48477170500,6842.0,False,False +48477170600,5025.0,False,False +48479000101,4543.0,True,True +48479000105,2613.0,True,True +48479000106,3538.0,True,True +48479000107,3059.0,True,True +48479000108,4001.0,True,True +48479000109,2239.0,True,True +48479000200,4070.0,True,True +48479000300,1859.0,True,True +48479000601,2765.0,True,True +48479000602,2428.0,True,True +48479000700,2999.0,True,True +48479000800,3005.0,True,True +48479000901,5319.0,True,True +48479000903,2764.0,True,True +48479000904,3817.0,True,True +48479001001,4699.0,True,True +48479001003,3625.0,True,True +48479001004,1764.0,True,True +48479001101,3316.0,True,True +48479001103,1495.0,True,True +48479001104,3373.0,True,True +48479001105,2744.0,True,True +48479001201,2513.0,True,True +48479001202,2885.0,True,True +48479001300,3177.0,True,True +48479001401,3439.0,True,True +48479001402,3474.0,True,True +48479001501,2588.0,True,True +48479001502,4940.0,True,True +48479001601,3903.0,True,True +48479001602,6596.0,False,False +48479001706,4617.0,True,True +48479001709,5931.0,False,True +48479001710,2360.0,False,True +48479001711,7673.0,True,True +48479001712,7579.0,False,False +48479001713,18826.0,False,False +48479001714,4915.0,False,False +48479001715,7503.0,False,True +48479001716,5758.0,False,True +48479001717,3329.0,True,True +48479001718,2476.0,False,True +48479001719,3637.0,False,True +48479001720,5556.0,False,True +48479001721,2211.0,False,False +48479001722,7809.0,False,False +48479001806,6544.0,True,True +48479001807,7718.0,True,True +48479001808,6460.0,True,True +48479001809,10778.0,True,True +48479001810,5670.0,False,True +48479001811,4483.0,True,True +48479001812,9494.0,True,True +48479001813,683.0,True,True +48479001814,9107.0,True,True +48479001815,1560.0,True,True +48479001816,4844.0,True,True +48479001817,6106.0,True,True +48479001818,3221.0,True,True +48479001900,3094.0,True,True +48479980000,34.0,True,True +48481740100,5269.0,False,False +48481740200,1969.0,True,True +48481740300,1334.0,True,True +48481740400,5754.0,False,False +48481740500,3285.0,True,True +48481740600,4669.0,False,False +48481740700,1889.0,True,True +48481740800,3848.0,True,True +48481740900,7109.0,False,False +48481741000,3939.0,True,True +48481741100,2512.0,False,False +48483950100,2792.0,False,False +48483950300,2546.0,True,True +48485010100,1158.0,True,True +48485010200,1177.0,True,True +48485010400,1546.0,True,True +48485010600,2213.0,True,True +48485010700,2572.0,True,True +48485010800,2148.0,True,True +48485010900,1605.0,False,False +48485011000,2363.0,True,True +48485011100,1217.0,True,True +48485011200,1966.0,True,True +48485011300,1052.0,True,True +48485011400,2411.0,True,True +48485011500,2756.0,True,True +48485011600,4336.0,True,True +48485011700,2451.0,False,False +48485011800,1901.0,False,False +48485011900,3876.0,False,False +48485012000,6864.0,False,False +48485012100,2786.0,True,True +48485012200,6212.0,False,False +48485012300,8368.0,False,False +48485012400,6966.0,False,False +48485012600,4013.0,True,True +48485012700,2742.0,True,True +48485012800,4480.0,False,False +48485012900,2398.0,False,False +48485013000,1951.0,True,True +48485013100,8703.0,True,True +48485013200,6693.0,True,True +48485013300,1361.0,False,False +48485013401,7651.0,False,False +48485013501,5763.0,False,False +48485013502,5348.0,False,False +48485013600,5678.0,False,False +48485013700,2726.0,True,True +48485013800,4145.0,False,False +48485980000,0.0,False,False +48487950300,1888.0,False,False +48487950500,2594.0,True,True +48487950600,5801.0,False,False +48487950700,2550.0,True,True +48489950300,6934.0,True,True +48489950400,6969.0,True,True +48489950500,3223.0,True,True +48489950600,2189.0,True,True +48489950700,2273.0,True,True +48489990000,0.0,False,False +48491020105,6991.0,False,False +48491020106,4823.0,False,False +48491020107,5542.0,False,False +48491020108,3196.0,False,False +48491020109,3715.0,False,False +48491020110,5949.0,False,False +48491020111,3443.0,False,False +48491020112,5258.0,False,False +48491020113,2958.0,False,False +48491020114,6815.0,False,False +48491020115,5360.0,False,False +48491020201,1435.0,False,False +48491020202,5936.0,False,False +48491020203,3605.0,False,False +48491020204,4967.0,False,False +48491020301,8617.0,False,False +48491020302,6356.0,False,False +48491020310,4349.0,False,False +48491020311,7122.0,False,False +48491020312,11353.0,False,False +48491020313,10766.0,False,False +48491020314,9112.0,False,False +48491020315,8758.0,False,False +48491020316,5647.0,False,False +48491020317,5287.0,False,False +48491020318,9083.0,False,False +48491020319,8394.0,False,False +48491020320,6761.0,False,False +48491020321,2061.0,False,False +48491020322,9090.0,False,False +48491020323,3887.0,False,False +48491020324,10478.0,False,False +48491020325,3545.0,False,False +48491020326,5934.0,False,False +48491020327,2815.0,False,False +48491020328,7518.0,False,False +48491020403,2407.0,False,False +48491020404,3777.0,False,False +48491020405,6385.0,False,False +48491020406,6654.0,False,False +48491020408,4476.0,False,False +48491020409,4967.0,False,False +48491020410,5415.0,False,False +48491020411,5226.0,False,False +48491020503,6125.0,False,False +48491020504,10753.0,False,False +48491020505,2919.0,False,False +48491020506,6414.0,False,False +48491020507,2903.0,False,False +48491020508,5038.0,False,False +48491020509,7206.0,False,False +48491020510,10965.0,False,False +48491020602,6204.0,False,False +48491020603,10617.0,False,False +48491020604,8131.0,False,False +48491020605,8863.0,False,False +48491020701,2535.0,True,True +48491020703,11802.0,False,False +48491020704,6290.0,False,False +48491020706,4511.0,False,False +48491020707,5692.0,False,False +48491020708,8215.0,False,False +48491020803,5025.0,False,False +48491020804,11688.0,False,False +48491020805,8977.0,False,False +48491020806,8994.0,False,False +48491020807,11124.0,False,False +48491020808,1805.0,True,False +48491020809,8078.0,False,False +48491020900,4030.0,False,False +48491021000,3207.0,False,True +48491021100,3010.0,True,False +48491021201,2867.0,False,False +48491021202,3953.0,False,False +48491021203,3080.0,True,True +48491021300,3353.0,True,False +48491021401,13312.0,False,False +48491021402,5050.0,True,True +48491021403,7314.0,False,False +48491021502,6293.0,True,False +48491021503,4924.0,False,False +48491021504,7676.0,False,False +48491021505,8141.0,False,False +48491021506,3714.0,False,False +48491021507,12940.0,False,False +48491021508,8279.0,False,False +48491021601,5094.0,False,False +48491021602,2832.0,False,False +48491021603,1428.0,False,False +48493000102,3815.0,False,False +48493000103,3257.0,False,False +48493000104,4914.0,False,False +48493000201,2417.0,True,True +48493000202,2630.0,False,False +48493000300,6266.0,True,True +48493000402,3097.0,False,False +48493000403,7022.0,False,False +48493000404,7234.0,False,False +48493000500,4507.0,False,False +48493000600,4014.0,False,False +48495950200,2741.0,True,True +48495950300,3854.0,True,True +48495950400,1272.0,False,False +48497150101,3949.0,False,False +48497150102,7696.0,False,False +48497150200,6010.0,True,True +48497150300,2734.0,False,False +48497150401,6244.0,True,True +48497150402,6311.0,False,False +48497150403,4357.0,False,False +48497150500,6260.0,True,True +48497150601,9503.0,False,False +48497150602,7875.0,False,False +48497150603,5351.0,False,False +48499950100,4202.0,False,False +48499950200,3267.0,False,False +48499950301,4044.0,True,True +48499950302,5754.0,False,False +48499950400,4645.0,True,True +48499950500,2963.0,True,True +48499950601,4200.0,False,True +48499950602,3843.0,True,True +48499950700,6522.0,False,False +48499950800,4926.0,True,True +48501950100,1903.0,True,True +48501950200,6728.0,False,True +48503950200,4061.0,False,False +48503950400,5843.0,False,False +48503950500,2213.0,True,True +48503950600,5919.0,False,False +48505950301,4376.0,True,True +48505950302,4529.0,True,True +48505950400,5399.0,True,True +48507950100,1448.0,True,True +48507950200,1608.0,True,True +48507950301,2085.0,True,True +48507950302,6898.0,True,True +49001100100,3319.0,False,False +49001100200,3198.0,False,False +49003960100,3265.0,False,False +49003960200,7929.0,False,False +49003960300,8960.0,False,False +49003960400,4913.0,False,False +49003960500,5548.0,False,False +49003960601,3638.0,False,False +49003960602,2378.0,False,False +49003960701,5327.0,False,False +49003960702,2773.0,True,True +49003960801,4373.0,False,False +49003960802,4842.0,False,False +49005000101,4941.0,False,False +49005000102,1501.0,False,False +49005000201,3914.0,False,False +49005000202,8167.0,False,False +49005000300,8280.0,False,False +49005000401,4897.0,False,False +49005000402,4167.0,False,False +49005000403,6203.0,False,False +49005000501,5499.0,True,False +49005000502,6663.0,False,False +49005000600,6266.0,False,True +49005000701,4186.0,False,False +49005000702,2623.0,False,False +49005000800,4960.0,False,False +49005000900,3475.0,False,False +49005001001,3035.0,False,False +49005001002,5203.0,True,False +49005001101,5852.0,False,False +49005001102,4894.0,False,False +49005001201,5530.0,False,False +49005001202,6472.0,False,False +49005001300,6875.0,False,False +49005001401,4424.0,False,False +49005001402,3996.0,False,False +49005001500,2002.0,False,False +49005980100,140.0,False,False +49007000100,3764.0,False,False +49007000200,4036.0,False,False +49007000300,4004.0,True,True +49007000500,4174.0,False,False +49007000600,4330.0,False,False +49009960100,613.0,False,False +49011125102,4308.0,False,False +49011125103,6187.0,False,False +49011125104,6157.0,False,False +49011125200,3487.0,False,False +49011125301,5261.0,False,False +49011125303,11604.0,False,False +49011125304,5345.0,False,False +49011125305,6618.0,False,False +49011125401,12999.0,False,False +49011125403,14505.0,False,False +49011125405,10519.0,False,False +49011125406,8839.0,False,False +49011125501,6038.0,False,False +49011125502,5679.0,False,False +49011125503,5832.0,False,False +49011125600,282.0,True,True +49011125701,4145.0,True,True +49011125702,4129.0,False,False +49011125801,7690.0,True,True +49011125804,6253.0,False,False +49011125805,6271.0,False,False +49011125807,3936.0,True,False +49011125808,6374.0,False,False +49011125905,6311.0,False,False +49011125906,7155.0,False,False +49011125907,2130.0,False,False +49011125908,5026.0,False,False +49011126001,5755.0,False,False +49011126002,6967.0,False,False +49011126101,7032.0,False,False +49011126104,14217.0,False,False +49011126105,6409.0,False,False +49011126202,13785.0,False,False +49011126203,4317.0,False,False +49011126204,4642.0,False,False +49011126303,4627.0,False,False +49011126304,6719.0,False,False +49011126305,2524.0,False,False +49011126306,7641.0,False,False +49011126402,3306.0,False,False +49011126404,7506.0,False,False +49011126405,3904.0,False,False +49011126406,4034.0,False,False +49011126500,6114.0,False,False +49011126600,5133.0,False,False +49011126700,4266.0,False,False +49011126801,3287.0,False,False +49011126802,4666.0,False,False +49011126901,6360.0,False,False +49011126902,6898.0,False,False +49011127002,8048.0,False,False +49011127003,8105.0,False,False +49011127004,8368.0,False,False +49011127100,8057.0,False,False +49013940300,4523.0,True,True +49013940500,8347.0,False,True +49013940600,7278.0,False,True +49015976200,4258.0,False,False +49015976300,2723.0,False,False +49015976500,3136.0,False,False +49017000300,2384.0,True,True +49017000400,2614.0,False,False +49019000200,4362.0,True,True +49019000300,5278.0,True,True +49021110100,4178.0,False,False +49021110200,8201.0,False,False +49021110300,4096.0,False,False +49021110400,4476.0,False,False +49021110500,9967.0,False,False +49021110600,6545.0,True,True +49021110701,7976.0,False,False +49021110702,5774.0,False,False +49023010100,6160.0,False,False +49023010200,5141.0,True,True +49025130100,2400.0,True,True +49025130200,5084.0,False,True +49027974100,5157.0,True,False +49027974200,2785.0,False,False +49027974300,4912.0,False,False +49029970100,10386.0,False,False +49029970200,1278.0,False,False +49031960100,1866.0,True,True +49033950100,2389.0,False,False +49035100100,1807.0,False,False +49035100200,1388.0,False,False +49035100306,5470.0,True,True +49035100307,5295.0,True,True +49035100308,4433.0,True,True +49035100500,6527.0,True,True +49035100600,6409.0,True,True +49035100700,3138.0,False,False +49035100800,2593.0,False,False +49035101000,3010.0,False,False +49035101101,1888.0,False,False +49035101102,3697.0,False,False +49035101200,4131.0,False,False +49035101400,5247.0,False,False +49035101500,3175.0,False,False +49035101600,3668.0,False,False +49035101700,3802.0,False,False +49035101800,3542.0,False,False +49035101900,2702.0,False,False +49035102000,2683.0,False,False +49035102100,1791.0,False,False +49035102300,2976.0,True,True +49035102500,3714.0,False,False +49035102600,4658.0,True,True +49035102701,5642.0,True,True +49035102702,3897.0,True,True +49035102801,6781.0,True,True +49035102802,5517.0,False,False +49035102900,5298.0,True,True +49035103000,3431.0,False,False +49035103100,4412.0,False,False +49035103200,4026.0,False,False +49035103300,4333.0,False,False +49035103400,4393.0,False,False +49035103500,3847.0,False,False +49035103600,2792.0,False,False +49035103700,2628.0,False,False +49035103800,2446.0,False,False +49035103900,4257.0,False,False +49035104000,3532.0,False,False +49035104100,2983.0,False,False +49035104200,6543.0,False,False +49035104300,2984.0,False,False +49035104400,1835.0,False,False +49035104700,5236.0,False,False +49035104800,5245.0,False,False +49035104900,3060.0,False,False +49035110102,4316.0,False,False +49035110103,3744.0,False,False +49035110104,5524.0,False,False +49035110200,5181.0,False,False +49035110300,6048.0,False,False +49035110401,3383.0,False,False +49035110402,3883.0,False,False +49035110500,6080.0,False,False +49035110600,5592.0,False,False +49035110701,4203.0,False,False +49035110702,5052.0,False,False +49035110800,5847.0,False,False +49035110900,4439.0,False,False +49035111001,4191.0,False,False +49035111002,5560.0,False,False +49035111101,6325.0,False,False +49035111102,6164.0,False,False +49035111103,5564.0,False,False +49035111201,2883.0,False,False +49035111202,4464.0,False,False +49035111302,6479.0,False,False +49035111304,3481.0,False,False +49035111305,3937.0,False,False +49035111306,2631.0,False,False +49035111400,7203.0,False,False +49035111500,2113.0,True,True +49035111600,7327.0,True,True +49035111701,6180.0,True,True +49035111702,4505.0,False,False +49035111801,5483.0,False,False +49035111802,2560.0,False,False +49035111903,4411.0,False,False +49035111904,3279.0,False,False +49035111905,3676.0,True,True +49035111906,4527.0,True,True +49035112001,3379.0,False,False +49035112002,4817.0,False,False +49035112100,9062.0,False,False +49035112201,5246.0,False,False +49035112202,3924.0,False,False +49035112301,3848.0,False,False +49035112302,3883.0,False,False +49035112402,6978.0,True,True +49035112403,7673.0,False,False +49035112404,3877.0,True,True +49035112501,4383.0,False,False +49035112502,5948.0,False,False +49035112503,4927.0,False,False +49035112604,5142.0,False,False +49035112605,7485.0,False,False +49035112608,5538.0,False,False +49035112609,5346.0,False,False +49035112610,5930.0,False,False +49035112611,7306.0,False,False +49035112612,5462.0,False,False +49035112613,5136.0,False,False +49035112614,3834.0,False,False +49035112615,2432.0,False,False +49035112616,4517.0,False,False +49035112617,3494.0,False,False +49035112618,3447.0,False,False +49035112619,3177.0,False,False +49035112700,5641.0,False,False +49035112804,5763.0,False,False +49035112805,5276.0,False,False +49035112810,12434.0,False,False +49035112812,5703.0,False,False +49035112813,5243.0,False,False +49035112814,4479.0,False,False +49035112815,5281.0,False,False +49035112816,5893.0,False,False +49035112817,9256.0,False,False +49035112818,2336.0,False,False +49035112819,8245.0,False,False +49035112820,8706.0,False,False +49035112821,6617.0,False,False +49035112822,5323.0,False,False +49035112823,5596.0,False,False +49035112904,6850.0,False,False +49035112905,5714.0,False,False +49035112907,4861.0,False,False +49035112912,2611.0,False,False +49035112913,5258.0,False,False +49035112914,6414.0,False,False +49035112916,4904.0,False,False +49035112917,4063.0,False,False +49035112918,5520.0,False,False +49035112920,4546.0,False,False +49035112921,4131.0,False,False +49035113007,4973.0,False,False +49035113008,6555.0,False,False +49035113010,7345.0,False,False +49035113011,6109.0,False,False +49035113012,5849.0,False,False +49035113013,5186.0,False,False +49035113014,4770.0,False,False +49035113016,6772.0,False,False +49035113017,7026.0,False,False +49035113019,9725.0,False,False +49035113020,21460.0,False,False +49035113101,7238.0,False,False +49035113102,3946.0,False,False +49035113105,5973.0,False,False +49035113107,31161.0,False,False +49035113108,4301.0,False,False +49035113305,8504.0,True,True +49035113306,6011.0,True,True +49035113307,6683.0,True,True +49035113308,5394.0,True,True +49035113309,4996.0,True,True +49035113310,2792.0,False,False +49035113406,6815.0,True,True +49035113407,9893.0,False,False +49035113408,6501.0,False,False +49035113409,5043.0,False,False +49035113410,6821.0,False,False +49035113411,3045.0,False,False +49035113412,3126.0,False,False +49035113413,5652.0,False,False +49035113505,6552.0,True,True +49035113509,7096.0,False,False +49035113510,3411.0,False,False +49035113511,3708.0,False,False +49035113512,3727.0,False,False +49035113513,6048.0,False,False +49035113514,6496.0,True,True +49035113515,6148.0,False,False +49035113520,4501.0,False,False +49035113521,6533.0,False,False +49035113522,3440.0,False,False +49035113523,5656.0,False,False +49035113525,8575.0,False,False +49035113526,5941.0,True,True +49035113527,4869.0,False,False +49035113528,5283.0,False,False +49035113532,3200.0,False,False +49035113533,4577.0,False,False +49035113534,7777.0,False,False +49035113535,8267.0,False,False +49035113536,4465.0,True,True +49035113537,3611.0,False,False +49035113538,3255.0,False,False +49035113539,4989.0,False,False +49035113600,5368.0,True,True +49035113701,3900.0,False,False +49035113702,2479.0,False,False +49035113801,5894.0,True,True +49035113802,4274.0,True,True +49035113803,9116.0,False,False +49035113903,5018.0,False,False +49035113904,5328.0,False,False +49035113905,7475.0,False,False +49035113906,4117.0,True,True +49035113907,7985.0,False,False +49035114000,2425.0,False,False +49035114100,2991.0,False,False +49035114200,5273.0,False,False +49035114300,20297.0,False,False +49035114500,8601.0,False,False +49035114600,6867.0,False,False +49035114700,4538.0,False,False +49035114800,3723.0,False,False +49035115106,17049.0,False,False +49035115209,11186.0,False,False +49035980000,0.0,False,False +49037942000,3798.0,True,True +49037942100,2636.0,True,True +49037978100,4307.0,False,False +49037978200,4561.0,False,False +49039972100,7930.0,False,False +49039972200,3721.0,True,True +49039972300,6188.0,False,False +49039972400,7484.0,False,False +49039972500,4527.0,True,True +49041975100,4319.0,False,False +49041975200,2893.0,False,False +49041975300,5001.0,True,False +49041975400,3778.0,True,False +49041975500,5289.0,False,False +49043964101,2292.0,False,False +49043964102,3497.0,False,False +49043964201,4243.0,False,False +49043964202,3145.0,False,False +49043964203,155.0,False,False +49043964303,2936.0,False,False +49043964304,5126.0,False,False +49043964305,2070.0,False,False +49043964306,3250.0,False,False +49043964307,5309.0,False,False +49043964308,3431.0,False,False +49043964401,1607.0,False,False +49043964402,4042.0,False,False +49045130600,1871.0,True,True +49045130701,4394.0,False,False +49045130702,17429.0,False,False +49045130703,9215.0,False,False +49045130800,5575.0,False,False +49045130900,5009.0,True,True +49045131001,3055.0,False,False +49045131002,9040.0,False,False +49045131100,8450.0,False,False +49045131200,3359.0,False,False +49045980000,0.0,False,False +49047940201,5481.0,True,True +49047968200,8966.0,True,True +49047968301,5475.0,False,False +49047968302,4871.0,False,False +49047968401,4451.0,True,True +49047968402,6840.0,False,True +49049000102,4067.0,False,False +49049000103,3973.0,False,False +49049000104,2962.0,False,False +49049000105,3767.0,False,False +49049000203,4380.0,False,False +49049000204,7035.0,False,False +49049000205,4015.0,False,False +49049000206,3763.0,False,False +49049000400,4193.0,False,False +49049000504,4566.0,False,False +49049000505,3293.0,False,False +49049000506,4835.0,False,False +49049000507,2498.0,False,False +49049000508,5286.0,False,False +49049000509,7494.0,False,False +49049000601,3580.0,False,False +49049000603,4253.0,False,False +49049000604,3157.0,False,False +49049000703,5826.0,False,False +49049000706,6271.0,False,False +49049000707,4009.0,False,False +49049000708,3213.0,False,False +49049000709,3373.0,False,False +49049000710,2810.0,False,False +49049000711,2379.0,False,False +49049000801,6308.0,False,False +49049000802,5970.0,False,False +49049000901,5811.0,False,False +49049000903,3688.0,False,False +49049000904,3071.0,False,False +49049001001,3884.0,False,False +49049001002,2747.0,False,False +49049001103,2719.0,False,False +49049001105,3509.0,False,False +49049001106,3025.0,False,False +49049001107,4156.0,False,False +49049001108,3824.0,False,False +49049001201,4076.0,False,False +49049001202,5960.0,False,False +49049001300,3851.0,False,False +49049001401,3251.0,False,False +49049001402,6832.0,False,False +49049001501,4056.0,False,False +49049001503,3984.0,False,False +49049001504,4887.0,False,False +49049001601,4225.0,False,False +49049001602,2481.0,False,False +49049001603,3790.0,False,False +49049001701,4038.0,False,False +49049001702,4917.0,False,False +49049001801,6508.0,False,False +49049001802,7995.0,False,False +49049001803,2234.0,False,False +49049001900,3828.0,False,False +49049002000,7126.0,True,True +49049002101,3855.0,False,False +49049002102,2861.0,False,False +49049002201,13301.0,False,False +49049002204,3692.0,False,False +49049002205,4345.0,True,True +49049002206,3430.0,False,False +49049002207,3620.0,False,False +49049002300,3821.0,False,False +49049002400,1667.0,False,False +49049002500,4732.0,False,True +49049002701,2885.0,True,True +49049002702,5408.0,False,False +49049002801,4359.0,True,True +49049002802,1713.0,True,True +49049002901,7379.0,False,False +49049002902,3946.0,False,False +49049003001,4321.0,False,False +49049003002,2034.0,True,True +49049003103,2624.0,False,False +49049003104,3790.0,False,False +49049003105,3645.0,False,False +49049003106,2927.0,True,True +49049003201,2810.0,True,True +49049003203,3659.0,False,False +49049003204,2645.0,False,False +49049003205,4095.0,False,False +49049003300,6374.0,False,False +49049003401,3943.0,True,True +49049003402,6809.0,False,False +49049003403,4865.0,False,False +49049010103,8551.0,False,False +49049010104,10983.0,False,False +49049010105,11689.0,False,False +49049010106,7312.0,False,False +49049010107,3299.0,False,False +49049010108,8475.0,False,False +49049010109,11539.0,False,False +49049010110,3153.0,False,False +49049010111,9478.0,False,False +49049010112,7668.0,False,False +49049010113,8347.0,False,False +49049010208,4369.0,False,False +49049010209,5856.0,False,False +49049010210,5674.0,False,False +49049010211,3949.0,False,False +49049010212,8052.0,False,False +49049010213,3342.0,False,False +49049010214,8471.0,False,False +49049010215,8012.0,False,False +49049010216,3257.0,False,False +49049010217,5622.0,False,False +49049010218,6460.0,False,False +49049010219,5277.0,False,False +49049010220,6538.0,False,False +49049010303,4975.0,False,False +49049010304,10667.0,False,False +49049010305,3575.0,False,False +49049010404,4786.0,False,False +49049010405,3738.0,False,False +49049010406,3180.0,False,False +49049010407,2631.0,False,False +49049010408,4561.0,False,False +49049010409,3519.0,False,False +49049010410,3936.0,False,False +49049010411,5955.0,False,False +49049010503,3825.0,False,False +49049010504,3230.0,False,False +49049010505,4656.0,False,False +49049010506,1742.0,False,False +49049010600,4769.0,False,False +49049010700,5793.0,False,False +49049010900,1275.0,False,False +49049980100,0.0,False,False +49051940500,12616.0,False,False +49051960100,4784.0,False,False +49051960200,7706.0,False,False +49051960400,6602.0,False,False +49053270100,9197.0,True,True +49053270200,2815.0,False,False +49053270300,10199.0,False,False +49053270400,8244.0,False,False +49053270500,8766.0,False,False +49053270600,8538.0,False,False +49053270700,10240.0,True,True +49053270801,18327.0,False,False +49053270802,7263.0,False,False +49053270901,4079.0,True,True +49053270902,13277.0,False,False +49053271000,4374.0,True,True +49053271100,11369.0,False,False +49053271200,4744.0,False,False +49053271300,3817.0,False,True +49053271400,3578.0,True,True +49053271500,6989.0,False,False +49053271600,6792.0,False,False +49053271701,9608.0,False,False +49053271702,9764.0,False,False +49053271800,3831.0,False,False +49055979100,2689.0,True,True +49057200100,4720.0,False,False +49057200202,3963.0,True,True +49057200203,5135.0,True,True +49057200204,4896.0,False,False +49057200300,8143.0,True,True +49057200400,1989.0,True,True +49057200500,6472.0,True,True +49057200600,4449.0,False,False +49057200700,3101.0,False,False +49057200800,4722.0,True,True +49057200900,4354.0,True,True +49057201100,2508.0,True,True +49057201200,2195.0,True,True +49057201301,2482.0,False,False +49057201302,3088.0,True,True +49057201400,3190.0,False,False +49057201500,4076.0,False,False +49057201600,4178.0,False,False +49057201700,3575.0,True,True +49057201800,2337.0,True,True +49057201900,1525.0,False,False +49057202000,5231.0,False,False +49057210100,7103.0,False,False +49057210201,4518.0,False,False +49057210203,2914.0,False,False +49057210204,4610.0,False,False +49057210302,9542.0,False,False +49057210303,7936.0,False,False +49057210304,4797.0,False,False +49057210402,8351.0,False,False +49057210403,9393.0,False,False +49057210404,2409.0,False,False +49057210504,10085.0,False,False +49057210505,9932.0,False,False +49057210506,11162.0,False,False +49057210508,2509.0,False,False +49057210509,4413.0,False,False +49057210510,3732.0,False,False +49057210511,3975.0,False,False +49057210512,4777.0,False,False +49057210600,7670.0,True,True +49057210701,6306.0,False,False +49057210703,2734.0,False,False +49057210704,5770.0,False,False +49057210800,3412.0,True,True +49057210900,7172.0,False,False +49057211000,3291.0,False,False +49057211100,5526.0,False,False +49057211201,4600.0,False,False +49057211202,6530.0,False,False +50001960100,3879.0,False,False +50001960200,2725.0,False,False +50001960300,2596.0,False,False +50001960400,5084.0,False,False +50001960500,3896.0,False,False +50001960600,2747.0,False,False +50001960700,3652.0,False,False +50001960800,5009.0,False,False +50001960900,4968.0,False,False +50001961000,2326.0,False,False +50003970200,1675.0,False,False +50003970300,1058.0,False,False +50003970400,4253.0,False,False +50003970500,1137.0,False,False +50003970600,2989.0,False,False +50003970700,2662.0,False,False +50003970800,3448.0,False,False +50003970900,2280.0,True,True +50003971000,3608.0,False,False +50003971100,4724.0,False,False +50003971200,4485.0,True,True +50003971300,3427.0,True,True +50005957000,4283.0,False,False +50005957100,2079.0,False,False +50005957200,2454.0,False,False +50005957300,3345.0,False,False +50005957400,3540.0,True,True +50005957500,3684.0,True,True +50005957600,2206.0,False,False +50005957700,2889.0,False,False +50005957800,2746.0,False,False +50005957900,3008.0,False,False +50007000100,4377.0,False,False +50007000200,5352.0,False,False +50007000300,3452.0,False,False +50007000400,3262.0,True,True +50007000500,4945.0,False,False +50007000600,5572.0,False,False +50007000800,2356.0,False,False +50007000900,2616.0,False,False +50007001000,2311.0,True,True +50007001100,2206.0,False,False +50007002101,2737.0,False,False +50007002102,8145.0,False,False +50007002200,8559.0,False,False +50007002301,2397.0,False,False +50007002302,6347.0,False,False +50007002400,3286.0,True,True +50007002500,3956.0,False,False +50007002601,6196.0,False,False +50007002602,4407.0,False,False +50007002701,5880.0,False,False +50007002702,4984.0,False,False +50007002800,5030.0,False,False +50007002900,6513.0,False,False +50007003000,4145.0,False,False +50007003100,9686.0,False,False +50007003301,4177.0,False,False +50007003304,6349.0,False,False +50007003400,7717.0,False,False +50007003501,3820.0,False,False +50007003502,5135.0,False,False +50007003503,1999.0,False,False +50007003600,4521.0,False,False +50007003900,6096.0,False,False +50007004002,4115.0,False,False +50007980000,0.0,False,False +50009950100,1657.0,True,True +50009950200,1185.0,False,False +50009950500,3358.0,True,True +50011010100,7491.0,False,False +50011010200,4438.0,False,False +50011010300,3507.0,True,True +50011010400,3160.0,False,False +50011010500,6534.0,False,False +50011010600,6444.0,False,False +50011010700,3334.0,True,True +50011010800,3470.0,False,False +50011010900,4738.0,False,False +50011011000,6000.0,False,False +50013020100,3133.0,False,False +50013020200,3889.0,False,False +50015953000,2394.0,False,False +50015953100,3833.0,False,False +50015953200,3606.0,False,False +50015953300,2995.0,False,False +50015953400,2613.0,False,False +50015953500,5451.0,False,False +50015953600,4426.0,False,False +50017959000,2241.0,True,True +50017959101,2182.0,False,False +50017959102,2577.0,False,False +50017959200,3476.0,False,False +50017959300,2330.0,False,False +50017959400,4669.0,False,False +50017959500,4281.0,False,False +50017959600,2551.0,False,False +50017959700,1888.0,False,False +50017959800,2713.0,True,True +50019951100,2069.0,True,True +50019951200,2604.0,False,False +50019951300,1694.0,False,False +50019951400,1905.0,False,False +50019951500,2400.0,True,True +50019951600,5291.0,True,True +50019951700,4147.0,False,False +50019951800,2728.0,True,True +50019951900,2286.0,False,False +50019952000,1777.0,True,True +50021962100,1740.0,False,False +50021962200,3775.0,False,False +50021962300,2379.0,False,False +50021962400,2813.0,False,False +50021962500,1704.0,False,False +50021962600,2358.0,True,False +50021962700,4088.0,False,False +50021962800,2911.0,False,False +50021963000,4469.0,False,False +50021963100,3480.0,True,True +50021963200,2685.0,False,False +50021963300,4764.0,True,True +50021963400,2358.0,False,False +50021963500,1814.0,False,False +50021963600,4554.0,False,False +50021963700,2585.0,True,True +50021963800,4300.0,False,False +50021964000,3319.0,False,False +50021964200,1561.0,False,False +50021964300,1235.0,False,False +50023954000,4292.0,False,False +50023954100,2607.0,False,False +50023954200,2701.0,False,False +50023954300,5141.0,False,False +50023954400,3023.0,False,False +50023954500,2793.0,False,False +50023954600,2285.0,False,False +50023954700,1533.0,False,False +50023954800,1929.0,False,False +50023954900,1730.0,False,False +50023955000,2578.0,False,False +50023955100,4467.0,False,False +50023955200,4179.0,True,True +50023955300,4025.0,False,False +50023955400,3714.0,False,False +50023955500,6880.0,False,False +50023955600,1649.0,False,False +50023955700,1740.0,False,False +50023955800,1084.0,False,False +50025967000,3017.0,True,True +50025967100,2014.0,False,False +50025967200,3034.0,False,False +50025967300,1656.0,False,False +50025967400,770.0,False,False +50025967500,961.0,False,False +50025967600,3009.0,False,False +50025967700,2700.0,False,False +50025967800,1691.0,False,False +50025967900,1027.0,False,False +50025968000,1815.0,False,False +50025968100,1567.0,False,False +50025968200,1895.0,False,False +50025968300,1890.0,False,False +50025968400,3833.0,True,False +50025968500,5279.0,True,True +50025968600,2412.0,True,True +50025968700,4253.0,False,False +50027965000,3339.0,False,False +50027965100,2843.0,False,False +50027965200,2913.0,True,True +50027965300,263.0,False,False +50027965400,3884.0,False,False +50027965501,2939.0,False,False +50027965502,2735.0,False,False +50027965600,3969.0,False,False +50027965700,3466.0,False,False +50027965800,2936.0,False,False +50027965900,3202.0,False,False +50027966000,3392.0,False,False +50027966100,2752.0,False,False +50027966200,1658.0,False,False +50027966300,1828.0,True,True +50027966500,4167.0,False,False +50027966600,4971.0,False,False +50027966700,4018.0,False,False +51001090100,2899.0,False,False +51001090200,5771.0,False,False +51001090300,2439.0,True,True +51001090400,6603.0,True,True +51001090500,2526.0,True,True +51001090600,3726.0,False,False +51001090700,5280.0,True,True +51001090800,3429.0,True,True +51001980100,0.0,False,False +51001980200,0.0,False,False +51001990100,0.0,False,False +51001990200,0.0,False,False +51003010100,5102.0,False,False +51003010201,4807.0,False,False +51003010202,3101.0,False,False +51003010300,8515.0,False,False +51003010401,4175.0,False,False +51003010402,3000.0,False,False +51003010500,5492.0,False,False +51003010601,6330.0,False,False +51003010602,4314.0,False,False +51003010700,6064.0,False,False +51003010800,5721.0,False,False +51003010901,1920.0,False,False +51003010902,3520.0,False,True +51003010903,3004.0,False,True +51003011000,6528.0,False,False +51003011100,8287.0,False,False +51003011201,4065.0,False,False +51003011202,3616.0,False,False +51003011301,5789.0,False,False +51003011302,4936.0,False,False +51003011303,3928.0,False,False +51003011400,5191.0,False,False +51005070100,3694.0,True,True +51005080100,3406.0,True,True +51005080201,2656.0,False,False +51005080202,2278.0,True,True +51005080301,1772.0,False,False +51005080302,1351.0,False,False +51007930100,7091.0,False,False +51007930200,5862.0,False,False +51009010100,4626.0,True,True +51009010200,6979.0,False,False +51009010300,3227.0,False,False +51009010401,3416.0,False,False +51009010402,3399.0,False,False +51009010502,507.0,False,True +51009010503,2294.0,True,True +51009010504,4029.0,False,False +51009010600,3298.0,True,True +51011040100,7079.0,False,False +51011040200,4287.0,False,False +51011040300,4341.0,True,True +51013100100,5296.0,False,False +51013100200,6600.0,False,False +51013100300,6255.0,False,False +51013100400,3918.0,False,False +51013100500,4522.0,False,False +51013100600,3467.0,False,False +51013100700,5831.0,False,False +51013100800,1617.0,False,False +51013100900,4195.0,False,False +51013101000,3308.0,False,False +51013101100,5934.0,False,False +51013101200,4037.0,False,False +51013101300,7411.0,False,False +51013101401,1454.0,False,False +51013101402,2362.0,False,False +51013101403,6002.0,False,False +51013101404,5212.0,False,False +51013101500,7829.0,False,False +51013101601,1474.0,False,False +51013101602,1729.0,False,False +51013101603,3939.0,False,False +51013101701,4916.0,False,False +51013101702,5384.0,False,False +51013101703,2291.0,False,False +51013101801,3664.0,False,False +51013101802,6987.0,False,False +51013101803,4555.0,False,False +51013101900,3287.0,False,False +51013102001,3007.0,False,False +51013102002,1414.0,False,False +51013102003,4041.0,True,True +51013102100,2394.0,False,True +51013102200,8220.0,True,True +51013102301,1433.0,False,False +51013102302,4275.0,False,False +51013102400,3349.0,False,False +51013102500,5687.0,False,False +51013102600,3684.0,False,False +51013102701,4135.0,True,True +51013102702,2062.0,False,False +51013102801,8455.0,False,False +51013102802,1383.0,False,False +51013102901,2918.0,False,False +51013102902,4275.0,False,False +51013103000,3446.0,False,False +51013103100,5960.0,False,False +51013103200,5931.0,False,False +51013103300,2449.0,False,False +51013103401,1353.0,False,False +51013103402,5919.0,False,False +51013103501,3150.0,False,False +51013103502,4941.0,False,False +51013103503,4479.0,False,False +51013103601,2758.0,False,False +51013103602,1223.0,False,False +51013103700,2616.0,False,False +51013103800,5027.0,False,False +51013980100,0.0,False,False +51013980200,4.0,False,False +51015070100,4914.0,True,True +51015070200,3506.0,False,False +51015070300,5833.0,False,False +51015070400,5338.0,False,False +51015070500,5436.0,False,False +51015070600,10199.0,False,False +51015070700,7025.0,False,False +51015070800,6128.0,False,False +51015070900,4975.0,False,False +51015071000,5260.0,True,True +51015071101,4474.0,False,False +51015071102,5948.0,False,False +51015071200,6043.0,False,False +51017920100,4307.0,True,True +51019030101,7206.0,False,False +51019030103,7420.0,False,False +51019030104,4499.0,False,False +51019030201,8284.0,False,False +51019030202,5570.0,False,False +51019030300,3839.0,False,False +51019030401,3156.0,False,False +51019030402,6579.0,False,False +51019030501,4614.0,True,True +51019030503,2452.0,False,False +51019030504,3068.0,False,False +51019030601,3045.0,False,False +51019030602,3433.0,False,False +51019030603,2607.0,True,True +51019030604,2586.0,True,True +51019030605,3569.0,False,False +51021040100,3952.0,False,False +51021040200,2436.0,False,False +51023040100,3336.0,True,True +51023040200,4346.0,False,False +51023040301,3086.0,False,False +51023040302,7612.0,False,False +51023040401,2236.0,False,False +51023040402,4653.0,False,False +51023040501,6761.0,False,False +51023040502,1313.0,False,False +51025930100,3154.0,True,True +51025930201,2175.0,False,True +51025930202,1760.0,True,True +51025930203,4475.0,True,True +51025930300,4956.0,True,True +51027010100,4775.0,True,True +51027010200,2967.0,True,True +51027010300,3065.0,True,True +51027010400,1933.0,True,True +51027010500,1502.0,True,True +51027010600,3752.0,True,True +51027010700,3794.0,True,True +51029930101,3833.0,True,True +51029930102,3007.0,True,True +51029930201,5740.0,True,True +51029930202,4479.0,True,True +51031020101,5421.0,False,False +51031020102,4883.0,False,False +51031020200,5302.0,False,False +51031020300,3888.0,False,False +51031020401,5149.0,True,False +51031020402,3458.0,False,False +51031020403,5499.0,False,False +51031020500,7751.0,True,True +51031020600,3531.0,False,False +51031020700,3442.0,True,True +51031020800,3229.0,True,True +51031020900,3672.0,False,False +51033030100,5535.0,False,False +51033030201,3008.0,False,False +51033030202,1649.0,False,False +51033030300,3333.0,False,False +51033030400,2188.0,False,False +51033030500,11316.0,False,False +51033030600,3352.0,True,True +51035080100,3700.0,False,False +51035080200,4638.0,True,True +51035080300,4444.0,True,True +51035080400,5188.0,False,False +51035080500,5409.0,False,False +51035080601,1899.0,True,True +51035080602,4523.0,True,True +51036600100,2647.0,False,False +51036600200,2429.0,False,False +51036600300,1938.0,False,False +51037930100,5392.0,True,True +51037930200,2796.0,True,True +51037930300,3852.0,True,True +51041100106,3282.0,False,False +51041100107,2395.0,True,True +51041100205,7748.0,True,True +51041100206,6513.0,False,False +51041100208,2386.0,False,False +51041100209,6421.0,False,False +51041100210,1829.0,False,False +51041100300,2750.0,True,True +51041100403,6594.0,False,False +51041100404,2119.0,True,True +51041100405,2388.0,True,True +51041100406,1651.0,True,True +51041100407,3531.0,False,False +51041100409,6746.0,False,False +51041100410,2096.0,True,False +51041100505,5454.0,False,False +51041100506,6862.0,False,False +51041100507,6658.0,False,False +51041100508,5184.0,False,False +51041100509,6757.0,False,False +51041100510,4244.0,False,False +51041100600,2718.0,False,False +51041100701,5587.0,False,False +51041100702,1934.0,False,False +51041100703,7875.0,False,False +51041100804,4707.0,False,False +51041100805,5083.0,False,False +51041100806,4072.0,True,True +51041100807,1720.0,False,False +51041100812,6002.0,False,False +51041100814,3742.0,False,False +51041100815,5370.0,False,False +51041100816,4831.0,False,False +51041100817,3800.0,True,False +51041100818,3796.0,False,False +51041100819,6628.0,False,False +51041100820,3506.0,False,False +51041100821,4848.0,False,False +51041100822,5698.0,False,False +51041100823,6118.0,False,False +51041100902,3899.0,False,False +51041100907,2579.0,False,False +51041100910,5253.0,False,False +51041100912,6581.0,False,False +51041100915,3846.0,False,False +51041100919,6970.0,False,False +51041100920,1689.0,False,False +51041100921,6866.0,False,False +51041100922,4847.0,False,False +51041100923,2506.0,False,False +51041100924,5192.0,False,False +51041100926,6076.0,False,False +51041100927,9887.0,False,False +51041100928,6890.0,False,False +51041100929,6468.0,False,False +51041100930,3386.0,False,False +51041100931,5403.0,False,False +51041100932,3743.0,False,False +51041100933,2347.0,False,False +51041100934,6956.0,False,False +51041100935,4014.0,False,False +51041100936,3792.0,False,False +51041101003,8478.0,False,False +51041101004,4522.0,False,False +51041101007,6418.0,False,False +51041101008,5105.0,False,False +51041101009,7476.0,False,False +51041101010,8425.0,False,False +51041101011,3122.0,False,False +51041101012,5683.0,False,False +51041101013,3489.0,False,False +51043010100,8334.0,False,False +51043010200,3048.0,False,False +51043010300,3041.0,False,False +51045050100,5110.0,False,False +51047930101,4162.0,False,False +51047930102,8991.0,False,False +51047930201,7585.0,False,False +51047930202,6458.0,True,True +51047930300,6976.0,False,False +51047930400,5449.0,False,False +51047930501,6170.0,False,False +51047930502,5310.0,True,False +51049930100,5622.0,True,True +51049930200,4202.0,False,False +51051040100,4221.0,True,True +51051040200,2580.0,True,True +51051040300,4803.0,True,True +51051040400,3152.0,True,True +51053840100,6050.0,False,False +51053840200,4561.0,False,False +51053840300,6211.0,False,False +51053840400,746.0,True,True +51053840500,4154.0,False,False +51053840600,6763.0,False,False +51053980100,0.0,False,False +51057950600,3605.0,True,True +51057950700,3728.0,True,True +51057950800,3665.0,False,False +51059415100,3624.0,False,False +51059415200,3016.0,False,False +51059415300,3955.0,False,False +51059415401,5103.0,False,True +51059415402,3015.0,False,False +51059415500,6624.0,False,False +51059415600,2732.0,False,False +51059415700,3880.0,False,False +51059415800,5030.0,False,False +51059415900,3281.0,False,False +51059416000,6170.0,False,False +51059416100,3662.0,False,False +51059416200,5207.0,False,False +51059416300,1986.0,False,False +51059420100,4428.0,False,False +51059420201,4135.0,False,False +51059420202,2060.0,False,False +51059420203,2874.0,False,False +51059420300,6331.0,False,False +51059420400,3062.0,False,False +51059420501,2062.0,False,False +51059420502,1720.0,False,False +51059420503,3432.0,False,False +51059420600,4967.0,False,False +51059420700,4897.0,False,False +51059420800,3861.0,False,False +51059421001,2689.0,False,False +51059421002,5136.0,False,False +51059421101,6360.0,False,False +51059421102,3664.0,False,False +51059421103,5748.0,False,False +51059421200,2101.0,False,False +51059421300,3994.0,False,False +51059421400,8613.0,False,False +51059421500,7658.0,True,True +51059421600,6974.0,True,True +51059421701,5092.0,True,True +51059421702,5211.0,False,False +51059421800,7074.0,False,False +51059421900,3041.0,False,False +51059422000,3780.0,False,False +51059422101,7747.0,False,False +51059422102,6902.0,False,False +51059422201,3331.0,False,False +51059422202,6825.0,False,False +51059422301,3206.0,False,False +51059422302,6061.0,False,False +51059422401,2794.0,False,False +51059422402,5468.0,False,False +51059422403,3065.0,False,False +51059430101,4791.0,False,False +51059430102,3053.0,False,False +51059430201,4796.0,False,False +51059430202,5327.0,False,False +51059430203,2716.0,False,False +51059430400,7297.0,False,False +51059430500,1749.0,False,False +51059430600,7933.0,False,True +51059430700,2696.0,False,False +51059430801,4842.0,False,False +51059430802,4438.0,False,False +51059430901,4378.0,False,False +51059430902,3614.0,False,False +51059431001,5160.0,False,False +51059431002,2413.0,False,False +51059431300,4380.0,False,False +51059431400,4936.0,False,False +51059431500,5629.0,False,False +51059431600,8712.0,False,False +51059431801,4213.0,False,False +51059431802,3468.0,False,False +51059431900,3129.0,False,False +51059432000,3754.0,False,False +51059432100,3823.0,False,False +51059432201,2319.0,False,False +51059432202,4749.0,False,False +51059432300,5112.0,False,False +51059432401,3494.0,False,False +51059432402,4780.0,False,False +51059432500,5813.0,False,False +51059432600,4784.0,False,False +51059432701,3086.0,False,False +51059432702,4376.0,False,False +51059432800,2239.0,False,False +51059440100,7342.0,False,False +51059440201,3352.0,False,False +51059440202,6369.0,False,False +51059440300,2758.0,False,False +51059440501,5232.0,False,False +51059440502,7742.0,False,True +51059440600,3069.0,False,False +51059440701,2942.0,False,False +51059440702,5508.0,False,False +51059440800,6253.0,False,False +51059450100,5215.0,False,False +51059450200,4408.0,False,False +51059450300,5339.0,False,True +51059450400,2624.0,False,False +51059450500,2937.0,False,True +51059450601,4301.0,False,False +51059450602,4806.0,False,True +51059450701,2881.0,False,False +51059450702,5052.0,True,True +51059450800,3310.0,False,False +51059450900,1693.0,False,False +51059451000,2771.0,False,False +51059451100,2392.0,False,False +51059451200,1650.0,False,False +51059451300,2525.0,False,False +51059451400,3159.0,True,True +51059451501,5572.0,True,True +51059451502,5154.0,False,False +51059451601,5801.0,True,True +51059451602,2720.0,False,False +51059451800,3940.0,False,False +51059451900,4928.0,False,False +51059452000,3128.0,False,True +51059452101,5267.0,False,False +51059452102,3359.0,False,False +51059452200,6746.0,False,True +51059452301,3663.0,True,True +51059452302,5418.0,False,True +51059452400,7049.0,False,True +51059452501,3707.0,False,False +51059452502,5403.0,False,False +51059452600,7777.0,False,False +51059452700,5510.0,True,True +51059452801,5235.0,False,False +51059452802,3016.0,False,False +51059460100,4298.0,False,False +51059460200,4230.0,False,False +51059460300,2903.0,False,False +51059460400,5319.0,False,False +51059460501,2557.0,False,False +51059460502,7236.0,False,False +51059460600,3929.0,False,False +51059460701,3489.0,False,False +51059460702,4578.0,False,False +51059460800,3289.0,False,False +51059460900,2572.0,False,False +51059461000,2561.0,False,False +51059461100,7376.0,False,False +51059461201,4685.0,False,False +51059461202,6403.0,False,False +51059461500,6826.0,False,False +51059461601,8001.0,False,False +51059461602,5975.0,False,False +51059461700,6553.0,False,False +51059461801,1554.0,False,False +51059461802,5196.0,False,False +51059461901,3621.0,False,False +51059461902,2001.0,True,True +51059470100,2560.0,False,False +51059470300,3436.0,False,False +51059470400,4885.0,False,False +51059470500,5179.0,False,False +51059470600,2593.0,False,False +51059470700,5448.0,False,False +51059470800,3044.0,False,False +51059470900,7213.0,False,False +51059471000,2181.0,False,False +51059471100,6708.0,False,False +51059471201,3356.0,False,False +51059471202,5027.0,False,False +51059471301,4478.0,False,True +51059471303,4388.0,False,False +51059471304,1774.0,False,False +51059471401,3804.0,False,False +51059471402,3341.0,False,False +51059480100,3995.0,False,False +51059480201,4661.0,False,False +51059480202,5670.0,False,False +51059480203,2833.0,False,False +51059480300,7053.0,False,False +51059480401,4135.0,False,False +51059480402,5549.0,False,False +51059480501,3202.0,False,False +51059480502,5856.0,False,False +51059480503,3184.0,False,False +51059480504,2008.0,False,False +51059480505,3188.0,False,False +51059480801,5171.0,False,False +51059480802,3719.0,False,False +51059480901,7261.0,False,True +51059480902,4078.0,False,True +51059480903,4303.0,False,True +51059481000,6403.0,False,True +51059481101,2597.0,False,False +51059481102,3944.0,False,False +51059481103,3628.0,False,False +51059481104,3164.0,False,False +51059481105,5414.0,False,False +51059481106,5437.0,False,False +51059481201,1154.0,False,False +51059481202,6088.0,False,True +51059481400,7204.0,False,False +51059481500,2252.0,False,False +51059481600,3414.0,False,False +51059481701,6342.0,False,False +51059481702,4556.0,False,False +51059481900,6224.0,False,False +51059482001,4671.0,False,False +51059482002,3266.0,False,False +51059482100,3507.0,False,False +51059482201,2534.0,False,False +51059482202,4140.0,False,False +51059482203,4431.0,False,False +51059482301,4767.0,False,False +51059482302,4787.0,False,False +51059482303,3571.0,False,False +51059482400,2235.0,False,False +51059482501,10699.0,False,False +51059482502,2866.0,False,False +51059482503,4858.0,False,False +51059482504,5045.0,False,False +51059482601,7189.0,False,False +51059482602,7404.0,False,False +51059490101,5631.0,False,False +51059490103,6631.0,False,False +51059490501,3403.0,False,False +51059490502,6679.0,False,False +51059491000,1831.0,False,False +51059491101,3777.0,False,False +51059491102,3190.0,False,False +51059491103,6210.0,False,False +51059491201,6229.0,False,False +51059491202,1842.0,False,False +51059491301,7472.0,False,False +51059491302,3411.0,False,False +51059491303,4465.0,False,True +51059491401,4692.0,False,False +51059491402,4671.0,False,False +51059491403,3764.0,False,False +51059491404,3846.0,False,False +51059491405,2825.0,False,False +51059491501,7381.0,False,False +51059491502,6944.0,False,False +51059491601,4931.0,False,False +51059491602,5619.0,False,False +51059491701,4049.0,False,False +51059491702,7211.0,False,False +51059491703,4971.0,False,False +51059491704,4937.0,False,False +51059491705,3338.0,False,False +51059491801,2557.0,False,False +51059491802,2987.0,False,False +51059491803,7154.0,False,False +51059492000,6620.0,False,False +51059492100,6165.0,False,False +51059492201,3033.0,False,False +51059492202,6475.0,False,False +51059492203,4099.0,False,False +51059492300,3292.0,False,False +51059492400,4776.0,False,False +51059492500,3855.0,False,False +51059980100,5.0,False,False +51059980200,0.0,False,False +51059980300,0.0,False,False +51061930100,5367.0,False,False +51061930203,2767.0,False,False +51061930204,3388.0,False,False +51061930205,1834.0,False,False +51061930206,2400.0,False,False +51061930207,1803.0,False,False +51061930302,8007.0,False,False +51061930303,3681.0,False,False +51061930304,2263.0,False,False +51061930401,6652.0,False,False +51061930402,6074.0,False,False +51061930403,7448.0,False,False +51061930703,2557.0,False,False +51061930704,3425.0,False,False +51061930705,3832.0,False,False +51061930706,5822.0,False,False +51061930707,2408.0,False,False +51063920101,6278.0,True,True +51063920102,4173.0,True,True +51063920200,5253.0,True,True +51065020101,6181.0,False,False +51065020102,10278.0,False,False +51065020200,4863.0,False,False +51065020300,5272.0,False,False +51067020101,5027.0,False,False +51067020102,2750.0,False,False +51067020200,5258.0,True,True +51067020300,6153.0,False,False +51067020400,6396.0,False,False +51067020500,7963.0,False,False +51067020600,3797.0,False,False +51067020700,5389.0,True,True +51067020800,6452.0,True,False +51067020900,7002.0,True,True +51069050100,5818.0,False,False +51069050200,4184.0,False,False +51069050300,5850.0,False,False +51069050400,6449.0,False,False +51069050500,5454.0,False,False +51069050600,4749.0,False,False +51069050700,2965.0,False,False +51069050801,5153.0,False,False +51069050802,8015.0,False,False +51069050803,7855.0,False,False +51069050900,5106.0,False,False +51069051000,9726.0,False,False +51069051101,7736.0,False,False +51069051102,7355.0,False,False +51071930100,2039.0,False,False +51071930200,3562.0,False,False +51071930300,6130.0,False,False +51071930400,5041.0,False,False +51073100100,7339.0,False,False +51073100201,5685.0,False,False +51073100202,3509.0,False,False +51073100203,3825.0,False,False +51073100301,5809.0,False,False +51073100302,5595.0,False,False +51073100400,1417.0,False,False +51073100500,4043.0,False,False +51075400100,7791.0,False,False +51075400200,4680.0,False,False +51075400300,969.0,False,False +51075400400,5056.0,False,False +51075400500,4369.0,False,False +51077060101,2880.0,True,True +51077060102,4109.0,False,False +51077060201,3954.0,True,True +51077060202,2957.0,False,False +51077060300,1842.0,True,True +51079030101,3889.0,False,False +51079030102,5171.0,False,False +51079030200,10459.0,False,False +51081880101,4278.0,True,True +51081880102,3123.0,True,True +51081880200,4124.0,False,False +51083930100,3287.0,False,False +51083930201,4318.0,True,True +51083930202,2235.0,True,True +51083930301,2619.0,False,False +51083930302,4440.0,False,False +51083930400,3973.0,False,False +51083930500,4293.0,False,False +51083930600,4778.0,True,True +51083930800,4609.0,True,True +51085320100,5904.0,False,False +51085320200,5675.0,False,False +51085320300,4005.0,False,False +51085320400,4810.0,False,False +51085320500,3246.0,False,False +51085320601,4785.0,False,False +51085320602,3135.0,False,False +51085320701,3944.0,False,False +51085320702,2840.0,False,False +51085320801,2756.0,False,False +51085320803,6752.0,False,False +51085320804,5618.0,False,False +51085320805,3231.0,False,False +51085320900,8558.0,False,False +51085321001,3499.0,False,False +51085321002,7476.0,False,False +51085321100,5235.0,False,False +51085321201,4745.0,False,False +51085321202,4054.0,False,False +51085321300,6269.0,False,False +51085321401,2473.0,False,False +51085321402,3465.0,False,False +51085321403,3062.0,False,False +51087200104,5540.0,False,False +51087200105,7246.0,True,False +51087200106,5035.0,False,False +51087200107,8403.0,False,False +51087200108,2713.0,False,False +51087200109,3770.0,False,False +51087200112,5367.0,False,False +51087200116,5633.0,False,False +51087200119,10529.0,False,False +51087200120,8375.0,False,False +51087200121,7121.0,False,False +51087200122,4702.0,False,False +51087200123,3758.0,False,False +51087200124,4771.0,False,False +51087200125,3759.0,False,False +51087200126,3514.0,False,False +51087200127,5562.0,False,False +51087200128,5777.0,False,False +51087200129,14761.0,False,False +51087200130,7141.0,False,False +51087200201,2780.0,False,False +51087200202,4038.0,False,False +51087200301,1550.0,False,False +51087200302,3369.0,False,False +51087200303,3540.0,True,False +51087200305,4154.0,False,False +51087200404,2768.0,False,False +51087200406,10131.0,False,False +51087200407,5273.0,False,False +51087200409,2935.0,False,True +51087200410,5688.0,True,True +51087200411,5084.0,False,False +51087200412,2350.0,True,True +51087200413,5078.0,False,False +51087200414,6228.0,False,False +51087200501,2160.0,True,True +51087200502,2222.0,False,False +51087200503,4209.0,False,False +51087200600,4731.0,False,False +51087200700,3697.0,False,False +51087200801,3337.0,False,False +51087200802,1973.0,False,False +51087200804,6277.0,True,True +51087200805,3682.0,True,True +51087200903,7622.0,False,False +51087200904,6390.0,False,False +51087200905,5277.0,False,False +51087200906,4654.0,False,False +51087201001,6759.0,False,False +51087201002,2888.0,True,True +51087201003,5851.0,False,False +51087201101,6604.0,True,True +51087201102,4232.0,False,False +51087201201,7311.0,False,False +51087201202,6160.0,True,True +51087201401,5263.0,True,True +51087201403,5954.0,False,False +51087201404,4458.0,False,False +51087201501,9851.0,False,False +51087201502,5507.0,False,False +51087201601,3099.0,False,False +51087201602,5489.0,False,False +51087201701,3435.0,False,False +51087980100,0.0,False,False +51089010100,3660.0,True,True +51089010200,5310.0,True,False +51089010300,5216.0,True,False +51089010400,3622.0,True,True +51089010500,3853.0,True,True +51089010601,2768.0,False,False +51089010602,4013.0,True,False +51089010700,3426.0,True,True +51089010800,2598.0,True,True +51089010900,2498.0,True,True +51089011000,4929.0,True,True +51089011100,2587.0,True,True +51089011200,2967.0,True,True +51089011300,3861.0,True,True +51091970100,2204.0,True,True +51093280101,3844.0,False,False +51093280103,8744.0,False,False +51093280104,4134.0,False,False +51093280105,4276.0,False,True +51093280106,2913.0,False,False +51093280200,3845.0,False,False +51093280300,4835.0,False,False +51093280400,4036.0,False,False +51095080101,5396.0,False,False +51095080102,4470.0,True,True +51095080202,5834.0,False,False +51095080203,3494.0,False,False +51095080205,3943.0,False,False +51095080206,10679.0,False,False +51095080301,9100.0,False,False +51095080303,8892.0,False,False +51095080304,5726.0,False,False +51095080401,8129.0,False,False +51095080402,9253.0,False,False +51097950400,4264.0,False,False +51097950500,2778.0,False,False +51099040100,5746.0,False,False +51099040200,4277.0,False,False +51099040300,7732.0,False,False +51099040400,5343.0,False,False +51099040500,3131.0,False,False +51101950101,4423.0,False,False +51101950102,6239.0,False,False +51101950200,2656.0,False,False +51101950300,3370.0,False,False +51103030100,2647.0,False,False +51103030200,4163.0,False,False +51103030300,3914.0,False,False +51103990100,0.0,False,False +51105950100,3059.0,True,True +51105950200,3924.0,True,True +51105950300,5346.0,True,True +51105950400,2603.0,True,True +51105950500,5269.0,True,True +51105950600,3747.0,False,True +51107610101,4644.0,False,False +51107610102,3847.0,False,False +51107610201,5181.0,False,False +51107610202,5093.0,False,False +51107610300,7044.0,False,False +51107610400,5090.0,False,False +51107610503,8682.0,False,False +51107610504,9199.0,False,False +51107610505,6454.0,False,True +51107610506,6220.0,False,False +51107610507,6402.0,False,False +51107610601,7917.0,False,False +51107610602,2523.0,False,False +51107610603,3347.0,False,False +51107610604,8604.0,False,False +51107610701,6184.0,False,False +51107610702,7036.0,False,False +51107610703,4806.0,False,False +51107610800,6455.0,False,False +51107610900,2280.0,False,False +51107611002,5060.0,False,False +51107611004,8042.0,False,False +51107611005,5169.0,False,False +51107611006,5812.0,False,False +51107611009,5446.0,False,False +51107611010,1766.0,False,False +51107611011,3349.0,False,False +51107611012,4704.0,False,False +51107611013,4736.0,False,False +51107611014,4315.0,False,False +51107611015,2845.0,False,False +51107611016,3701.0,False,False +51107611017,3204.0,False,False +51107611018,3179.0,False,False +51107611019,5850.0,False,False +51107611020,7229.0,False,False +51107611021,9350.0,False,False +51107611022,7087.0,False,False +51107611023,5746.0,False,False +51107611024,11197.0,False,False +51107611025,14118.0,False,False +51107611101,4281.0,False,False +51107611102,6216.0,False,False +51107611202,4534.0,False,False +51107611204,5945.0,False,True +51107611205,6312.0,False,False +51107611206,4012.0,False,False +51107611207,3916.0,False,False +51107611208,4420.0,False,False +51107611209,6440.0,False,False +51107611300,6750.0,False,False +51107611400,6011.0,False,True +51107611501,3761.0,False,False +51107611502,6265.0,False,False +51107611601,3934.0,False,False +51107611602,4140.0,False,True +51107611700,7686.0,False,True +51107611801,8842.0,False,False +51107611802,11782.0,False,False +51107611803,6707.0,False,False +51107611804,8174.0,False,False +51107611805,4852.0,False,False +51107611806,19438.0,False,False +51107611900,11803.0,False,False +51107980100,0.0,False,False +51109950100,7035.0,False,False +51109950201,5576.0,True,True +51109950202,4339.0,False,False +51109950300,10167.0,False,False +51109950400,3194.0,True,True +51109950500,5729.0,False,False +51111930100,5316.0,True,True +51111930200,4582.0,True,True +51111930300,2384.0,True,True +51113930100,7532.0,False,False +51113930200,5638.0,False,False +51115951300,4659.0,False,False +51115951400,4129.0,False,False +51115990100,0.0,False,False +51117930101,2912.0,True,True +51117930102,3129.0,True,True +51117930200,5599.0,True,True +51117930300,3644.0,True,True +51117930400,4838.0,True,True +51117930500,1699.0,False,False +51117930600,2803.0,True,True +51117930700,2226.0,False,False +51117930800,3878.0,True,True +51119950900,1816.0,False,True +51119951000,3703.0,False,False +51119951100,2560.0,True,True +51119951200,2596.0,False,False +51119990100,0.0,False,False +51121020100,8554.0,False,False +51121020201,5503.0,False,False +51121020202,2531.0,False,False +51121020300,7432.0,False,False +51121020400,6962.0,False,False +51121020500,6377.0,False,False +51121020600,6333.0,False,False +51121020700,6766.0,False,False +51121020800,6702.0,False,False +51121020900,4988.0,False,False +51121021000,5263.0,False,False +51121021100,7660.0,False,False +51121021200,6106.0,False,False +51121021300,3427.0,False,False +51121021400,5075.0,False,False +51121021500,8461.0,False,False +51125950100,5464.0,False,False +51125950200,4934.0,False,False +51125950300,4433.0,False,False +51127700100,6764.0,False,False +51127700200,5164.0,False,False +51127700300,9758.0,False,False +51131930100,4143.0,True,True +51131930200,3442.0,False,False +51131930300,4300.0,True,True +51131990100,0.0,False,False +51133020100,3523.0,True,True +51133020200,3092.0,False,False +51133020300,5575.0,False,False +51133990100,0.0,False,False +51135000100,5466.0,True,True +51135000200,2447.0,True,True +51135000300,7510.0,True,True +51135980100,10.0,True,True +51137110102,9008.0,False,False +51137110103,11342.0,False,False +51137110104,3446.0,False,False +51137110200,5045.0,True,True +51137110300,7169.0,False,False +51139030100,2423.0,False,False +51139030200,4103.0,False,False +51139030300,4870.0,False,False +51139030400,6347.0,True,True +51139030500,6045.0,True,True +51141030100,4672.0,False,True +51141030200,5638.0,False,False +51141030301,3081.0,True,True +51141030302,4357.0,False,True +51143010100,3895.0,True,True +51143010200,4178.0,True,True +51143010300,3869.0,True,True +51143010400,3807.0,True,True +51143010500,5339.0,False,False +51143010600,2899.0,True,True +51143010700,1528.0,True,True +51143010801,2338.0,False,False +51143010802,6276.0,True,True +51143010900,2755.0,False,False +51143011001,4048.0,False,False +51143011002,4415.0,False,False +51143011100,2717.0,True,True +51143011200,2380.0,True,True +51143011300,6860.0,False,False +51143011400,3952.0,True,True +51145500101,6627.0,False,False +51145500102,5297.0,False,False +51145500200,8933.0,False,False +51145500300,2933.0,False,False +51145500400,5025.0,False,False +51147930100,6686.0,False,False +51147930201,4079.0,False,True +51147930202,3583.0,True,True +51147930203,1458.0,False,False +51147930300,7099.0,False,False +51149850100,4524.0,True,True +51149850200,5895.0,False,False +51149850301,6940.0,False,False +51149850302,4845.0,False,False +51149850400,4666.0,False,False +51149850501,5933.0,False,False +51149850502,5311.0,False,False +51153900100,3318.0,False,False +51153900201,2217.0,False,True +51153900202,4241.0,False,True +51153900203,4776.0,True,True +51153900300,8520.0,False,False +51153900403,4945.0,False,False +51153900404,6072.0,False,False +51153900407,7473.0,False,False +51153900408,4616.0,False,False +51153900409,6010.0,True,False +51153900410,5291.0,False,False +51153900501,8083.0,False,True +51153900502,4653.0,False,False +51153900600,7764.0,True,True +51153900701,7139.0,False,False +51153900702,8206.0,False,False +51153900801,6793.0,False,False +51153900802,9529.0,False,False +51153900901,6009.0,True,True +51153900904,5623.0,False,False +51153900905,5599.0,False,False +51153901001,7219.0,False,False +51153901005,5945.0,False,False +51153901008,8283.0,False,False +51153901009,6867.0,False,False +51153901010,4559.0,False,False +51153901011,6105.0,False,False +51153901012,3350.0,False,False +51153901100,5600.0,False,False +51153901203,3923.0,False,True +51153901208,3501.0,False,False +51153901209,6756.0,False,False +51153901211,4798.0,False,False +51153901212,8362.0,False,False +51153901219,5269.0,False,False +51153901221,4877.0,False,False +51153901222,2735.0,False,False +51153901223,6445.0,False,False +51153901224,4504.0,False,False +51153901225,5305.0,False,False +51153901226,6376.0,False,False +51153901227,5144.0,False,False +51153901228,6181.0,False,False +51153901229,4072.0,False,False +51153901230,4641.0,False,False +51153901231,6336.0,False,False +51153901232,5401.0,False,False +51153901233,7072.0,False,False +51153901234,3028.0,False,False +51153901235,3131.0,False,False +51153901236,6106.0,False,False +51153901237,3460.0,False,False +51153901303,4663.0,False,False +51153901304,2660.0,False,False +51153901305,3493.0,False,False +51153901306,5545.0,False,False +51153901403,6931.0,True,True +51153901407,4231.0,False,True +51153901408,7970.0,False,True +51153901409,8371.0,False,False +51153901410,8842.0,False,False +51153901411,6379.0,False,False +51153901412,7916.0,False,False +51153901413,4518.0,False,False +51153901414,5052.0,False,False +51153901415,3886.0,False,False +51153901416,4748.0,False,False +51153901417,2719.0,False,False +51153901503,5522.0,False,False +51153901504,3821.0,False,False +51153901505,7310.0,False,False +51153901506,5709.0,False,False +51153901507,3051.0,False,False +51153901508,5957.0,False,False +51153901509,6317.0,False,False +51153901510,6203.0,False,False +51153901511,4125.0,False,False +51153901601,4138.0,False,False +51153901602,8741.0,False,False +51153901701,8989.0,False,True +51153901702,4256.0,False,True +51153901900,7132.0,False,False +51153980100,0.0,False,False +51155210100,6791.0,False,False +51155210201,3954.0,False,False +51155210202,3682.0,False,False +51155210300,4269.0,False,False +51155210400,4964.0,True,True +51155210500,2358.0,False,False +51155210600,4496.0,False,False +51155210700,3668.0,False,False +51155980100,0.0,False,False +51155980200,0.0,False,False +51157950100,3178.0,False,False +51157950200,4200.0,False,False +51159040100,5584.0,True,True +51159040200,3300.0,False,False +51161030100,3499.0,False,False +51161030201,4891.0,False,False +51161030203,4138.0,False,False +51161030204,6487.0,True,True +51161030205,3689.0,False,False +51161030300,7051.0,False,False +51161030500,4197.0,False,False +51161030600,7929.0,False,False +51161030701,6916.0,False,False +51161030702,5435.0,False,False +51161030801,6162.0,False,False +51161030802,4723.0,False,False +51161030900,5610.0,False,False +51161031000,3618.0,False,False +51161031101,4266.0,False,False +51161031102,3648.0,False,False +51161031201,5380.0,False,False +51161031202,6184.0,False,False +51163930100,7590.0,False,False +51163930200,4188.0,False,False +51163930300,6698.0,False,False +51163930400,4094.0,True,True +51165010100,3195.0,True,True +51165010200,3548.0,False,False +51165010300,4942.0,False,False +51165010400,2168.0,False,False +51165010500,2564.0,True,False +51165010600,4079.0,False,False +51165010700,3901.0,False,False +51165010800,6676.0,False,False +51165010900,2452.0,False,False +51165011000,3089.0,True,True +51165011100,3672.0,False,False +51165011200,4648.0,False,False +51165011400,5388.0,False,False +51165011500,6127.0,False,False +51165011600,2111.0,False,False +51165011700,4610.0,False,False +51165011800,8743.0,False,False +51165011900,2971.0,False,False +51165012000,5400.0,False,False +51167030100,4349.0,True,True +51167030200,5045.0,True,True +51167030300,3678.0,True,True +51167030401,5638.0,False,False +51167030402,2919.0,False,False +51167030500,1954.0,True,True +51167030600,3558.0,True,True +51169030100,3309.0,True,False +51169030200,4321.0,True,True +51169030300,2890.0,True,True +51169030400,3873.0,True,True +51169030500,3403.0,False,False +51169030600,4106.0,True,True +51171040100,8561.0,True,False +51171040201,2588.0,False,False +51171040202,3315.0,False,False +51171040300,3959.0,False,False +51171040400,2668.0,False,False +51171040500,8937.0,True,True +51171040600,3644.0,False,False +51171040700,4639.0,False,False +51171040800,4913.0,False,False +51173030100,3172.0,True,True +51173030200,4595.0,True,True +51173030301,2754.0,True,True +51173030302,3532.0,True,True +51173030400,2198.0,True,True +51173030500,2779.0,True,True +51173030600,2824.0,True,True +51173030701,4588.0,False,True +51173030702,4325.0,True,True +51175200100,3980.0,False,False +51175200200,2648.0,False,False +51175200300,1280.0,True,True +51175200400,6266.0,False,False +51175200500,3706.0,False,False +51177020104,4824.0,False,False +51177020105,2204.0,False,False +51177020106,6653.0,False,False +51177020107,1970.0,False,False +51177020108,4628.0,False,False +51177020109,3942.0,False,False +51177020110,3937.0,False,False +51177020111,2467.0,False,False +51177020112,2955.0,False,False +51177020113,4589.0,False,False +51177020114,6174.0,False,False +51177020201,6745.0,False,False +51177020202,5018.0,False,False +51177020203,4971.0,False,False +51177020204,4009.0,False,False +51177020205,6362.0,False,False +51177020304,4761.0,False,False +51177020305,3355.0,False,False +51177020306,6693.0,False,False +51177020307,3529.0,False,False +51177020308,3843.0,False,False +51177020309,5633.0,False,False +51177020310,4907.0,False,False +51177020311,5828.0,False,False +51177020403,3735.0,False,False +51177020404,3639.0,False,False +51177020405,3407.0,False,False +51177020406,3650.0,False,False +51177020407,5405.0,False,False +51177020408,3000.0,False,False +51179010103,3914.0,False,False +51179010105,8099.0,False,False +51179010106,3258.0,False,False +51179010107,3207.0,False,False +51179010108,6089.0,False,False +51179010201,1996.0,True,True +51179010202,6609.0,False,False +51179010204,10610.0,False,False +51179010205,6741.0,False,False +51179010206,5316.0,False,False +51179010207,9664.0,False,False +51179010210,9133.0,False,False +51179010211,4287.0,False,False +51179010212,4618.0,False,False +51179010213,2541.0,False,False +51179010214,3734.0,False,False +51179010301,4459.0,False,False +51179010303,11625.0,False,False +51179010304,5906.0,False,False +51179010305,6356.0,False,False +51179010403,3944.0,False,False +51179010404,6335.0,False,False +51179010405,6868.0,False,False +51179010406,3186.0,False,False +51179010502,4354.0,False,False +51179010503,2153.0,False,False +51179010504,1771.0,False,False +51181860100,2933.0,True,True +51181860200,3590.0,False,False +51183870100,2454.0,False,False +51183870201,2883.0,False,False +51183870202,1010.0,False,False +51183870300,3103.0,True,True +51183870400,1927.0,True,True +51185020100,3081.0,False,True +51185020200,4915.0,True,True +51185020300,6372.0,True,True +51185020400,3908.0,True,True +51185020500,3094.0,True,True +51185020600,4502.0,False,False +51185020700,2796.0,True,True +51185020800,2124.0,True,True +51185020900,2160.0,True,True +51185021000,3677.0,True,True +51185021100,4974.0,False,False +51187020100,9009.0,False,False +51187020200,2882.0,False,False +51187020300,6769.0,False,False +51187020400,4984.0,True,True +51187020500,4271.0,True,True +51187020601,5862.0,False,False +51187020602,2550.0,False,False +51187020700,3165.0,False,False +51191010100,6023.0,True,False +51191010200,4697.0,False,False +51191010300,6306.0,True,True +51191010401,2666.0,False,False +51191010402,3064.0,False,False +51191010501,4145.0,False,False +51191010502,3926.0,True,True +51191010601,4041.0,False,False +51191010602,2818.0,False,True +51191010700,4793.0,True,True +51191010800,3578.0,True,True +51191010900,4466.0,True,True +51191011000,3548.0,False,False +51193010100,4561.0,True,True +51193010200,3430.0,False,False +51193010300,3726.0,True,False +51193010400,6034.0,False,False +51195930700,3318.0,True,True +51195930800,2077.0,True,True +51195930900,3762.0,True,True +51195931000,2273.0,True,True +51195931100,2712.0,True,True +51195931200,6840.0,True,True +51195931300,3722.0,True,True +51195931400,4870.0,False,False +51195931500,4338.0,True,True +51195931600,2450.0,True,True +51195931700,2124.0,True,True +51197050100,5340.0,True,False +51197050200,6748.0,True,True +51197050301,4378.0,False,False +51197050302,3237.0,False,False +51197050401,4077.0,True,True +51197050402,5064.0,False,False +51199050203,7125.0,False,False +51199050204,6719.0,False,False +51199050205,4282.0,False,False +51199050206,6694.0,False,False +51199050303,5884.0,False,False +51199050304,4717.0,False,False +51199050305,3354.0,False,False +51199050306,4794.0,False,False +51199050401,3371.0,False,False +51199050402,3433.0,False,False +51199050500,4270.0,False,False +51199050900,2200.0,False,False +51199051000,4101.0,False,False +51199051100,7038.0,False,False +51199990100,0.0,False,False +51510200102,4822.0,False,False +51510200103,7743.0,False,False +51510200104,3985.0,True,True +51510200105,4482.0,False,False +51510200106,3619.0,False,False +51510200107,6128.0,False,False +51510200201,3355.0,False,False +51510200202,1570.0,False,False +51510200301,3285.0,False,False +51510200302,4968.0,False,False +51510200303,4914.0,False,True +51510200403,1450.0,False,False +51510200404,3529.0,False,False +51510200405,8512.0,True,True +51510200406,5451.0,False,False +51510200407,3950.0,False,False +51510200500,4365.0,False,True +51510200600,5162.0,False,False +51510200701,757.0,False,False +51510200702,5278.0,False,False +51510200703,3447.0,False,False +51510200801,2717.0,False,False +51510200802,3028.0,False,False +51510200900,5108.0,False,False +51510201000,2781.0,False,False +51510201100,3499.0,False,False +51510201202,3393.0,False,False +51510201203,7818.0,True,True +51510201204,3333.0,False,False +51510201300,3874.0,False,False +51510201400,4291.0,False,False +51510201500,3900.0,False,False +51510201600,6437.0,False,False +51510201801,8359.0,False,False +51510201802,1983.0,False,False +51510201900,1733.0,False,False +51510202001,2202.0,False,False +51510202002,2385.0,False,False +51515050100,,False,False +51520020100,3690.0,True,True +51520020200,4501.0,True,True +51520020300,2742.0,True,True +51520020400,5979.0,False,False +51530930600,6484.0,True,True +51540000201,2787.0,False,False +51540000202,5376.0,False,True +51540000302,2936.0,False,False +51540000401,4405.0,True,False +51540000402,4527.0,False,False +51540000501,4078.0,True,True +51540000502,5465.0,False,False +51540000600,3637.0,False,False +51540000700,4649.0,False,False +51540000800,3896.0,False,False +51540000900,2327.0,False,False +51540001000,3013.0,False,False +51550020001,1426.0,False,False +51550020002,4273.0,False,False +51550020003,5683.0,False,False +51550020100,5306.0,True,True +51550020200,4349.0,False,False +51550020300,1699.0,True,True +51550020400,2570.0,False,False +51550020500,1899.0,True,True +51550020600,4125.0,False,False +51550020700,5570.0,True,True +51550020804,9538.0,False,False +51550020805,6008.0,False,False +51550020806,8714.0,False,False +51550020807,7695.0,False,False +51550020808,3103.0,False,False +51550020809,4679.0,False,False +51550020903,2398.0,False,False +51550020904,8618.0,False,False +51550020905,2251.0,False,False +51550020906,7820.0,False,False +51550021004,6840.0,False,False +51550021005,5510.0,False,False +51550021006,8134.0,False,False +51550021009,3989.0,False,False +51550021010,5459.0,False,False +51550021011,3878.0,False,False +51550021012,6808.0,False,False +51550021013,4560.0,False,False +51550021101,5491.0,False,False +51550021102,9654.0,False,False +51550021200,6457.0,False,False +51550021301,7627.0,False,False +51550021302,12500.0,False,False +51550021401,2029.0,False,False +51550021402,6183.0,False,False +51550021403,4646.0,False,False +51550021404,7652.0,False,False +51550021501,11539.0,False,False +51550021502,7960.0,False,False +51550021601,8429.0,False,False +51550021602,6913.0,False,False +51570830100,4694.0,False,False +51570830200,3431.0,True,True +51570830300,2420.0,False,False +51570830400,2817.0,True,False +51570830500,4066.0,False,False +51580060100,2966.0,True,True +51580060200,2632.0,False,False +51590000100,5753.0,True,True +51590000200,4040.0,True,True +51590000300,3021.0,True,True +51590000400,3346.0,True,True +51590000500,1913.0,True,True +51590000600,2024.0,True,True +51590000700,3155.0,False,False +51590000800,2577.0,False,False +51590000900,3362.0,True,True +51590001000,3586.0,True,True +51590001100,1344.0,True,True +51590001200,1814.0,True,True +51590001301,1167.0,True,True +51590001302,1003.0,True,True +51590001400,2965.0,False,False +51590980100,0.0,False,False +51595890100,2691.0,True,True +51595890200,2751.0,True,True +51600300100,5667.0,False,False +51600300200,4819.0,False,False +51600300300,5346.0,False,False +51600300400,4132.0,False,False +51600300500,3567.0,False,False +51610500100,3257.0,False,False +51610500200,6512.0,False,False +51610500300,4359.0,False,False +51620090100,4435.0,False,False +51620090200,3712.0,True,True +51630000100,3385.0,False,False +51630000200,6015.0,False,False +51630000301,2448.0,False,True +51630000302,4708.0,False,False +51630000400,3780.0,False,False +51630000500,8286.0,False,False +51640070101,4193.0,True,True +51640070102,2324.0,True,True +51650010103,7374.0,False,False +51650010104,5863.0,False,False +51650010200,2051.0,False,False +51650010304,8133.0,False,False +51650010306,6185.0,False,False +51650010307,5359.0,False,False +51650010309,4365.0,False,False +51650010310,4118.0,False,False +51650010311,4699.0,False,False +51650010312,3153.0,False,False +51650010313,8148.0,False,False +51650010314,2199.0,False,False +51650010400,6344.0,True,True +51650010501,5722.0,False,False +51650010502,2834.0,False,False +51650010601,1918.0,False,True +51650010602,2358.0,True,True +51650010701,3721.0,True,True +51650010702,3767.0,False,False +51650010703,3025.0,False,False +51650010800,5251.0,False,False +51650010900,2168.0,False,False +51650011000,5483.0,False,False +51650011100,479.0,False,False +51650011200,2534.0,False,False +51650011300,1914.0,True,True +51650011400,2781.0,False,False +51650011500,3699.0,False,False +51650011600,2793.0,False,False +51650011800,4868.0,False,True +51650011900,2620.0,True,True +51650012000,3309.0,True,True +51650012100,5806.0,False,False +51650990100,0.0,False,False +51660000101,5356.0,False,True +51660000102,5843.0,False,False +51660000203,1937.0,False,False +51660000204,4398.0,True,True +51660000205,6039.0,False,True +51660000206,4688.0,False,False +51660000207,6394.0,False,True +51660000301,3627.0,False,False +51660000302,5670.0,False,True +51660000401,3418.0,False,False +51660000402,5903.0,True,True +51670820100,1249.0,True,True +51670820300,3059.0,True,True +51670820400,6233.0,False,False +51670820500,4200.0,False,False +51670820600,5285.0,True,True +51670820700,2430.0,True,True +51670980100,0.0,False,False +51678930500,7241.0,False,False +51680000100,4214.0,False,False +51680000201,6554.0,False,False +51680000202,7399.0,True,False +51680000203,2106.0,False,False +51680000300,4024.0,False,False +51680000400,2959.0,True,True +51680000500,597.0,False,True +51680000600,3552.0,True,True +51680000700,3689.0,True,True +51680000801,2072.0,False,False +51680000802,3540.0,False,False +51680000900,7135.0,False,False +51680001000,3405.0,False,False +51680001100,1981.0,True,True +51680001400,6425.0,False,True +51680001600,8608.0,False,False +51680001700,5327.0,False,False +51680001800,2234.0,False,False +51680001900,4748.0,True,True +51683910100,4493.0,False,False +51683910201,4715.0,False,False +51683910202,8468.0,False,True +51683910301,4350.0,False,False +51683910302,5076.0,False,False +51683910401,7609.0,True,True +51683910402,6463.0,False,False +51685920100,7291.0,False,False +51685920200,9695.0,False,False +51690000100,3016.0,True,True +51690000200,1952.0,True,True +51690000300,2408.0,True,True +51690000400,2635.0,True,True +51690000500,2841.0,False,False +51700030100,3970.0,True,True +51700030300,6294.0,True,True +51700030400,3111.0,True,True +51700030500,1904.0,True,True +51700030600,2708.0,True,True +51700030800,1734.0,True,True +51700030900,2380.0,True,True +51700031100,2873.0,False,False +51700031200,2359.0,True,True +51700031300,4223.0,True,True +51700031400,5860.0,False,False +51700031500,5560.0,False,False +51700031601,7463.0,False,False +51700031602,4065.0,False,False +51700031701,4128.0,False,False +51700031702,4730.0,False,False +51700031800,3615.0,False,False +51700031901,3959.0,False,False +51700031902,3890.0,False,False +51700032001,2688.0,False,False +51700032002,5754.0,False,False +51700032005,2657.0,False,False +51700032006,3964.0,True,True +51700032007,3624.0,False,False +51700032113,2756.0,False,False +51700032114,1676.0,False,False +51700032117,3984.0,True,True +51700032123,5110.0,False,False +51700032124,4297.0,False,False +51700032126,3547.0,True,True +51700032127,3937.0,False,False +51700032128,3698.0,True,True +51700032129,2760.0,False,False +51700032130,5304.0,False,False +51700032131,4586.0,False,False +51700032132,4997.0,False,False +51700032211,6622.0,False,False +51700032212,3451.0,True,True +51700032223,3493.0,False,False +51700032224,7317.0,False,False +51700032225,3952.0,True,True +51700032226,4490.0,True,True +51700032300,6900.0,True,True +51700032400,3283.0,False,False +51710000100,2026.0,False,False +51710000201,2797.0,False,False +51710000202,4054.0,False,False +51710000300,3301.0,False,False +51710000400,3485.0,False,False +51710000500,3195.0,False,False +51710000600,4630.0,True,False +51710000700,3114.0,False,False +51710000800,1902.0,False,False +51710000901,5782.0,True,True +51710000902,15031.0,True,True +51710001100,2302.0,True,True +51710001200,4157.0,False,False +51710001300,2862.0,True,True +51710001400,2712.0,False,True +51710001500,2137.0,False,False +51710001600,1954.0,False,False +51710001700,2062.0,False,False +51710002000,1510.0,False,False +51710002100,1426.0,False,False +51710002200,1745.0,False,False +51710002300,2090.0,False,False +51710002400,3673.0,False,False +51710002500,5461.0,False,False +51710002600,4310.0,False,False +51710002700,2988.0,True,True +51710002800,3932.0,False,False +51710002900,3879.0,True,True +51710003000,1773.0,False,False +51710003100,2962.0,True,True +51710003200,3312.0,False,False +51710003300,2695.0,True,True +51710003400,2229.0,True,True +51710003501,2750.0,True,True +51710003600,1911.0,False,False +51710003700,2377.0,False,False +51710003800,2776.0,False,False +51710004001,1270.0,False,False +51710004002,3058.0,False,False +51710004100,2211.0,True,True +51710004200,1914.0,True,True +51710004300,3177.0,True,True +51710004400,1676.0,True,True +51710004500,1591.0,False,True +51710004600,1975.0,True,True +51710004700,2967.0,False,True +51710004800,1418.0,True,True +51710004900,5249.0,False,False +51710005000,3167.0,True,True +51710005100,4394.0,True,True +51710005500,2931.0,True,True +51710005601,4432.0,False,False +51710005602,3792.0,False,False +51710005701,5037.0,True,True +51710005702,2546.0,False,False +51710005800,4758.0,False,True +51710005901,5707.0,True,True +51710005902,3950.0,False,False +51710005903,1805.0,True,True +51710006000,3838.0,False,True +51710006100,7641.0,False,False +51710006200,3210.0,True,True +51710006400,3344.0,False,False +51710006501,2460.0,False,False +51710006502,3310.0,False,False +51710006601,617.0,False,False +51710006602,2470.0,False,False +51710006603,2100.0,False,False +51710006604,2338.0,False,False +51710006605,2737.0,False,False +51710006606,3973.0,True,False +51710006607,2970.0,False,False +51710006800,1781.0,False,False +51710006901,3147.0,False,False +51710006902,2820.0,False,False +51710007001,1895.0,False,False +51710007002,3623.0,False,False +51710980100,0.0,False,False +51710980200,0.0,False,False +51710980300,0.0,False,False +51710990000,0.0,False,False +51720960100,3970.0,True,True +51730810100,2716.0,True,True +51730810300,2778.0,True,True +51730810400,1367.0,True,True +51730810500,3184.0,True,True +51730810600,1650.0,True,True +51730810700,2205.0,True,True +51730810900,3433.0,True,True +51730811000,4232.0,True,False +51730811100,2842.0,False,False +51730811200,4121.0,True,True +51730811300,2834.0,True,True +51735340100,3471.0,False,False +51735340200,5119.0,False,False +51735340300,3500.0,False,False +51735990100,0.0,False,False +51740210200,2434.0,False,False +51740210300,2100.0,False,False +51740210400,1202.0,False,False +51740210500,2122.0,True,True +51740210600,1648.0,False,False +51740210900,2879.0,False,False +51740211100,1851.0,True,True +51740211400,1914.0,True,True +51740211500,1894.0,True,True +51740211600,3930.0,False,False +51740211700,2568.0,True,True +51740211800,3775.0,True,True +51740211900,1251.0,True,True +51740212000,1437.0,True,True +51740212100,1511.0,True,True +51740212300,3958.0,True,True +51740212400,3558.0,True,True +51740212500,2011.0,False,False +51740212600,1456.0,True,True +51740212701,5826.0,False,False +51740212702,3205.0,False,False +51740212801,4911.0,False,False +51740212802,2570.0,False,False +51740212900,5143.0,False,False +51740213001,6322.0,False,False +51740213002,4195.0,False,False +51740213101,4694.0,True,True +51740213103,6909.0,False,False +51740213104,4535.0,False,False +51740213200,2602.0,False,False +51740980100,686.0,True,True +51750010101,4616.0,False,False +51750010102,5766.0,False,False +51750010200,7309.0,False,False +51760010200,4340.0,False,False +51760010300,1599.0,True,True +51760010401,2570.0,False,False +51760010402,3458.0,False,False +51760010500,1570.0,False,False +51760010600,2297.0,False,False +51760010700,2670.0,True,True +51760010800,4432.0,True,True +51760010900,3225.0,True,True +51760011000,2718.0,True,True +51760011100,3264.0,False,False +51760020100,1996.0,True,True +51760020200,4517.0,True,True +51760020300,1631.0,True,True +51760020400,5301.0,True,True +51760020500,5318.0,False,False +51760020600,1852.0,False,False +51760020700,1363.0,True,True +51760020800,1671.0,False,False +51760020900,3258.0,True,True +51760021000,2015.0,True,True +51760021100,1620.0,True,True +51760021200,1552.0,True,True +51760030100,2522.0,True,True +51760030200,2709.0,False,False +51760030500,4453.0,False,False +51760040200,4589.0,False,False +51760040300,3407.0,False,False +51760040400,4101.0,False,False +51760040500,3378.0,False,False +51760040600,1875.0,False,False +51760040700,2663.0,False,False +51760040800,1563.0,False,False +51760040900,2522.0,False,False +51760041000,2451.0,False,False +51760041100,3623.0,False,False +51760041200,1401.0,False,False +51760041300,2831.0,False,True +51760041400,2361.0,True,False +51760041600,1516.0,False,False +51760050100,2901.0,False,False +51760050200,3198.0,False,False +51760050300,1441.0,False,False +51760050400,2748.0,False,False +51760050500,4871.0,False,False +51760050600,2496.0,False,False +51760060200,2652.0,True,True +51760060400,5748.0,True,True +51760060500,6395.0,False,False +51760060600,2601.0,False,False +51760060700,5990.0,True,True +51760060800,3574.0,True,True +51760060900,1435.0,True,True +51760061000,6206.0,True,True +51760070100,5348.0,False,False +51760070300,3469.0,False,False +51760070400,4131.0,False,False +51760070601,6368.0,True,True +51760070602,2994.0,True,True +51760070700,5723.0,True,True +51760070801,7793.0,True,True +51760070802,2999.0,True,True +51760070900,8256.0,True,True +51760071001,5000.0,True,True +51760071002,3818.0,False,False +51760071100,6265.0,False,False +51770000100,3340.0,True,True +51770000300,5136.0,True,False +51770000400,5731.0,False,False +51770000500,5008.0,True,True +51770000601,5276.0,False,False +51770000602,3527.0,True,True +51770000900,6337.0,True,True +51770001000,1956.0,True,True +51770001100,1384.0,False,False +51770001200,3220.0,True,True +51770001800,3960.0,False,False +51770001900,5252.0,False,False +51770002100,3352.0,False,False +51770002200,2933.0,True,False +51770002300,6962.0,True,False +51770002400,3889.0,True,True +51770002500,5984.0,True,True +51770002600,2862.0,True,True +51770002700,5378.0,True,True +51770002800,5161.0,False,False +51770002900,5319.0,False,False +51770003000,3544.0,False,False +51770003100,3718.0,False,False +51775010100,6120.0,False,False +51775010200,6409.0,False,False +51775010300,4880.0,True,True +51775010501,3223.0,False,False +51775010502,4685.0,False,False +51790000100,894.0,False,False +51790000200,3565.0,True,True +51790000300,5474.0,False,False +51790000400,7179.0,False,False +51790000500,3086.0,False,False +51790000600,4234.0,False,False +51800065100,2090.0,True,True +51800065200,1911.0,False,False +51800065300,3352.0,True,True +51800065400,3670.0,True,True +51800065500,2812.0,True,True +51800075101,7758.0,False,False +51800075102,4905.0,False,False +51800075201,4965.0,False,False +51800075202,1542.0,False,False +51800075203,4465.0,False,False +51800075204,5629.0,False,False +51800075301,2233.0,False,False +51800075302,2414.0,False,False +51800075401,2030.0,False,False +51800075402,4473.0,False,False +51800075403,5073.0,False,False +51800075404,1077.0,False,False +51800075405,2144.0,False,False +51800075501,5208.0,False,True +51800075502,4118.0,False,False +51800075601,3481.0,True,True +51800075602,1440.0,False,False +51800075701,1745.0,False,False +51800075702,3705.0,False,False +51800075703,1449.0,False,False +51800075801,3178.0,False,False +51800075802,1861.0,False,False +51800075803,1365.0,False,False +51810040000,3372.0,False,False +51810040200,5456.0,False,False +51810040402,7578.0,False,False +51810040403,3715.0,False,False +51810040404,7977.0,False,False +51810040600,7143.0,False,False +51810040801,4144.0,False,False +51810040802,4609.0,False,False +51810041002,2161.0,True,True +51810041003,3351.0,False,False +51810041004,4119.0,False,False +51810041200,5980.0,False,False +51810041400,5462.0,False,False +51810041600,3490.0,False,False +51810041801,4579.0,False,False +51810041802,5189.0,False,False +51810042000,3473.0,False,False +51810042201,3668.0,False,False +51810042202,4376.0,False,False +51810042400,4717.0,False,False +51810042600,2843.0,False,False +51810042801,5898.0,False,False +51810042802,4459.0,False,False +51810043002,4064.0,False,False +51810043003,5009.0,False,False +51810043004,3569.0,False,False +51810043200,1452.0,True,True +51810043400,2242.0,False,False +51810043600,1811.0,False,False +51810043800,4019.0,False,False +51810044001,5642.0,False,False +51810044003,5512.0,False,False +51810044004,2031.0,False,False +51810044200,7180.0,True,False +51810044401,3591.0,False,False +51810044402,5984.0,False,False +51810044600,5623.0,False,False +51810044805,3443.0,False,False +51810044806,3298.0,True,True +51810044807,5273.0,False,False +51810044808,4322.0,False,False +51810045000,2574.0,False,False +51810045200,3933.0,True,True +51810045405,4661.0,False,False +51810045406,8884.0,False,False +51810045407,4598.0,False,False +51810045408,5987.0,False,False +51810045412,1494.0,False,False +51810045414,5995.0,False,False +51810045415,2059.0,False,False +51810045417,9097.0,False,False +51810045420,5551.0,False,False +51810045421,3723.0,False,False +51810045422,4413.0,False,False +51810045423,8598.0,False,False +51810045424,5967.0,False,False +51810045425,2831.0,False,False +51810045426,6489.0,False,False +51810045427,5825.0,False,False +51810045428,1436.0,False,False +51810045601,2989.0,False,False +51810045603,1886.0,False,False +51810045604,6407.0,False,False +51810045801,4509.0,False,False +51810045803,3195.0,False,False +51810045805,1332.0,False,False +51810045806,3880.0,False,False +51810045807,1527.0,False,False +51810045808,2958.0,False,False +51810045809,5289.0,False,False +51810045810,2164.0,True,True +51810046002,5443.0,False,False +51810046005,8392.0,False,False +51810046006,4342.0,False,False +51810046009,5611.0,False,False +51810046010,3063.0,False,False +51810046011,1501.0,False,False +51810046012,7026.0,False,False +51810046013,4424.0,False,False +51810046014,4728.0,False,False +51810046015,5755.0,False,False +51810046016,3969.0,False,False +51810046204,5281.0,False,False +51810046206,5550.0,False,False +51810046207,7515.0,False,False +51810046211,3026.0,False,False +51810046212,3895.0,False,False +51810046213,6229.0,False,False +51810046214,5420.0,False,False +51810046216,6094.0,False,False +51810046217,5722.0,False,False +51810046219,3695.0,False,False +51810046220,5353.0,False,False +51810046221,4124.0,False,True +51810046222,5330.0,False,False +51810046223,2740.0,False,False +51810046224,4602.0,False,False +51810046225,4382.0,False,False +51810046400,4914.0,False,False +51810990100,0.0,False,False +51820003100,1102.0,True,True +51820003200,5502.0,True,True +51820003300,4882.0,False,True +51820003400,5337.0,False,False +51820003500,5317.0,False,False +51830370100,4651.0,False,False +51830370200,2731.0,False,False +51830370300,7545.0,False,False +51840000100,7510.0,True,True +51840000201,3490.0,False,False +51840000202,5934.0,False,False +51840000301,5026.0,False,False +51840000302,5937.0,False,False +53001950100,2511.0,True,True +53001950200,1630.0,True,True +53001950300,6546.0,True,True +53001950400,3237.0,True,True +53001950500,5670.0,True,True +53003960100,4400.0,False,False +53003960200,4811.0,False,False +53003960300,3805.0,True,True +53003960400,2417.0,True,True +53003960500,3405.0,True,True +53003960600,3583.0,False,False +53005010100,4794.0,False,False +53005010201,5515.0,False,False +53005010202,6497.0,False,False +53005010300,6067.0,False,False +53005010400,3542.0,True,True +53005010500,3155.0,True,True +53005010600,4940.0,False,False +53005010701,2223.0,False,False +53005010703,3101.0,True,True +53005010705,5415.0,False,False +53005010707,3553.0,False,False +53005010708,3621.0,False,False +53005010803,8458.0,False,False +53005010805,6632.0,False,False +53005010807,1372.0,False,False +53005010809,6261.0,False,False +53005010810,5161.0,False,False +53005010811,4575.0,False,False +53005010813,13357.0,False,False +53005010814,4786.0,False,False +53005010901,7195.0,True,False +53005010902,5274.0,True,True +53005011001,5518.0,True,True +53005011002,5149.0,True,True +53005011100,7555.0,False,False +53005011200,7975.0,True,True +53005011300,4667.0,True,True +53005011401,3765.0,True,True +53005011402,5609.0,False,False +53005011501,6829.0,False,False +53005011503,10559.0,False,False +53005011504,3157.0,False,False +53005011600,1007.0,False,True +53005011700,7448.0,True,True +53005011800,6642.0,False,False +53005011900,6144.0,False,False +53005012000,0.0,False,False +53007960100,2190.0,False,False +53007960200,7407.0,False,False +53007960300,6032.0,True,True +53007960400,3223.0,True,True +53007960500,7945.0,False,False +53007960600,4001.0,False,False +53007960700,3852.0,False,False +53007960801,2657.0,False,False +53007960802,7998.0,False,False +53007961000,6124.0,True,True +53007961100,10869.0,True,True +53007961200,4500.0,False,False +53007961301,1464.0,False,False +53007961302,7967.0,False,False +53009000200,1122.0,False,False +53009000300,4842.0,True,True +53009000400,1737.0,True,True +53009000600,3898.0,False,False +53009000700,3442.0,True,True +53009000800,4272.0,True,True +53009000900,3027.0,False,False +53009001000,2679.0,True,True +53009001100,3270.0,False,False +53009001200,3809.0,False,False +53009001300,3302.0,False,False +53009001400,5271.0,False,False +53009001500,2274.0,False,False +53009001600,3212.0,True,True +53009001700,5129.0,True,True +53009001800,2621.0,False,False +53009001900,6005.0,False,False +53009002000,5777.0,False,False +53009002100,3741.0,True,True +53009002300,4402.0,False,False +53009940000,1560.0,True,True +53009990100,0.0,False,False +53011040101,5283.0,False,False +53011040102,3590.0,False,False +53011040201,6442.0,False,False +53011040202,3828.0,False,False +53011040203,5782.0,False,False +53011040301,2048.0,False,False +53011040302,8965.0,False,False +53011040403,4204.0,False,False +53011040407,6285.0,False,False +53011040408,3891.0,False,False +53011040409,2242.0,False,False +53011040411,2558.0,False,False +53011040412,5043.0,False,False +53011040413,3151.0,False,False +53011040414,6304.0,False,False +53011040415,4528.0,False,False +53011040416,3659.0,False,False +53011040504,4773.0,False,False +53011040505,6207.0,False,False +53011040507,2178.0,False,False +53011040508,6969.0,False,False +53011040509,3039.0,False,False +53011040510,5392.0,False,False +53011040511,2185.0,False,False +53011040603,4762.0,False,False +53011040604,5810.0,False,False +53011040605,5958.0,False,False +53011040608,4605.0,False,False +53011040609,4913.0,False,False +53011040610,3698.0,False,False +53011040703,6374.0,False,False +53011040706,3890.0,True,True +53011040707,3349.0,False,False +53011040709,5008.0,False,False +53011040710,8797.0,False,False +53011040711,3257.0,False,False +53011040712,6184.0,False,False +53011040803,5229.0,False,False +53011040805,6981.0,False,False +53011040806,4748.0,False,False +53011040808,1804.0,False,False +53011040809,5804.0,False,False +53011040810,3471.0,False,False +53011040904,6697.0,False,False +53011040905,3335.0,False,False +53011040907,6052.0,False,False +53011040908,6870.0,False,False +53011040909,5192.0,False,False +53011040910,4638.0,False,False +53011041003,4000.0,False,False +53011041005,2403.0,True,True +53011041007,3517.0,False,False +53011041008,4429.0,False,False +53011041009,3834.0,False,False +53011041010,4067.0,True,True +53011041011,3282.0,False,False +53011041104,4031.0,True,True +53011041105,5767.0,False,False +53011041107,2708.0,False,False +53011041108,6364.0,True,True +53011041110,7630.0,False,False +53011041111,4105.0,True,True +53011041112,6788.0,False,False +53011041201,6433.0,False,False +53011041203,5068.0,True,False +53011041205,5183.0,False,False +53011041206,5814.0,False,False +53011041309,4929.0,False,False +53011041310,4906.0,False,False +53011041312,4621.0,True,False +53011041313,2728.0,False,False +53011041317,5564.0,False,False +53011041318,5619.0,False,False +53011041319,6361.0,False,False +53011041320,6117.0,False,False +53011041321,2767.0,False,False +53011041322,4848.0,False,False +53011041323,6002.0,True,False +53011041325,5589.0,False,False +53011041326,2415.0,False,False +53011041327,8988.0,False,False +53011041328,6534.0,False,False +53011041329,4527.0,False,False +53011041330,4708.0,False,False +53011041331,2821.0,False,False +53011041332,3544.0,False,False +53011041333,3237.0,False,False +53011041400,5613.0,False,False +53011041500,3137.0,False,False +53011041600,3486.0,True,True +53011041700,4051.0,True,True +53011041800,3985.0,True,True +53011041900,2068.0,False,False +53011042000,1813.0,False,False +53011042100,3042.0,False,False +53011042300,3167.0,True,True +53011042400,2177.0,True,True +53011042500,1367.0,False,False +53011042600,5419.0,False,False +53011042700,4771.0,True,True +53011042800,2973.0,False,False +53011042900,1716.0,False,False +53011043000,1993.0,False,False +53011043100,4254.0,False,False +53013960200,3992.0,False,False +53015000300,489.0,True,True +53015000400,3954.0,True,True +53015000501,2911.0,False,False +53015000502,4931.0,True,True +53015000601,3718.0,True,True +53015000602,2869.0,False,False +53015000702,3286.0,False,False +53015000703,1442.0,True,True +53015000704,7614.0,True,True +53015000800,6958.0,False,False +53015000900,7501.0,False,False +53015001000,1087.0,True,True +53015001100,5995.0,True,True +53015001200,4333.0,False,False +53015001300,4043.0,True,True +53015001501,3037.0,False,False +53015001502,8816.0,False,False +53015001600,6672.0,False,False +53015001700,5038.0,False,False +53015001800,1621.0,True,True +53015001900,5918.0,False,False +53015002001,3755.0,False,False +53015002002,6429.0,False,False +53015002100,4361.0,True,True +53017950100,6291.0,True,True +53017950200,3066.0,False,False +53017950300,7188.0,False,False +53017950400,7997.0,False,False +53017950500,3003.0,False,False +53017950600,4125.0,False,False +53017950700,4574.0,True,True +53017950800,5779.0,False,False +53019940000,1624.0,True,True +53019970100,2855.0,True,True +53019970200,3099.0,True,True +53021020100,11279.0,True,True +53021020200,6668.0,True,True +53021020300,5551.0,True,True +53021020400,9000.0,True,True +53021020501,5132.0,False,False +53021020502,9425.0,False,False +53021020601,11599.0,False,False +53021020603,3917.0,False,False +53021020605,9474.0,False,False +53021020606,8253.0,False,False +53021020700,1351.0,False,False +53021020800,10360.0,True,True +53021980100,0.0,False,False +53023970300,2230.0,False,False +53025010100,3459.0,True,True +53025010200,3309.0,False,False +53025010300,4755.0,True,True +53025010400,8239.0,True,True +53025010500,2957.0,False,False +53025010600,7849.0,True,True +53025010700,2984.0,True,True +53025010800,5007.0,True,True +53025010901,1626.0,False,False +53025010902,10868.0,True,False +53025011000,12003.0,False,False +53025011100,7469.0,True,True +53025011200,6037.0,False,False +53025011300,3585.0,True,True +53025011401,2309.0,True,True +53025011402,13046.0,True,True +53027000200,8104.0,False,False +53027000300,3152.0,False,False +53027000400,6830.0,False,False +53027000500,7216.0,False,False +53027000600,3651.0,False,False +53027000700,4457.0,False,False +53027000800,4395.0,False,False +53027000900,5979.0,True,True +53027001000,3893.0,True,True +53027001100,4155.0,False,False +53027001200,4190.0,True,True +53027001300,3318.0,True,True +53027001400,2218.0,True,True +53027001500,3868.0,True,True +53027001600,6502.0,False,False +53027940000,851.0,True,True +53027990000,0.0,False,False +53029970100,2554.0,False,False +53029970200,2520.0,True,True +53029970300,4678.0,False,False +53029970400,6513.0,False,False +53029970500,6468.0,False,False +53029970601,3258.0,False,False +53029970602,3128.0,False,False +53029970700,1953.0,False,False +53029970800,2606.0,False,False +53029970900,4931.0,True,True +53029971000,5220.0,False,False +53029971100,3337.0,False,False +53029971300,4622.0,False,False +53029971400,4951.0,False,False +53029971500,3615.0,False,False +53029971600,4182.0,False,False +53029971700,4294.0,False,False +53029971800,2399.0,False,False +53029971900,4052.0,False,False +53029972000,4076.0,False,False +53029972100,3509.0,False,False +53029992201,0.0,False,False +53031950202,1852.0,False,False +53031950300,6593.0,False,False +53031950400,3849.0,False,False +53031950500,7009.0,False,False +53031950601,6469.0,True,True +53031950602,3231.0,True,False +53031950702,2282.0,True,True +53031990000,0.0,False,False +53033000100,8202.0,False,False +53033000200,8779.0,False,False +53033000300,2953.0,False,False +53033000401,7145.0,False,False +53033000402,5190.0,False,False +53033000500,3143.0,False,False +53033000600,8203.0,False,False +53033000700,5452.0,False,False +53033000800,2839.0,False,False +53033000900,2161.0,False,False +53033001000,2036.0,False,False +53033001100,2580.0,False,False +53033001200,6984.0,False,False +53033001300,4698.0,False,False +53033001400,5664.0,False,False +53033001500,2733.0,False,False +53033001600,4769.0,False,False +53033001701,4218.0,False,False +53033001702,5111.0,False,False +53033001800,4980.0,False,False +53033001900,5079.0,False,False +53033002000,3854.0,False,False +53033002100,4453.0,False,False +53033002200,5891.0,False,False +53033002400,3391.0,False,False +53033002500,3451.0,False,False +53033002600,5377.0,False,False +53033002700,6393.0,False,False +53033002800,5144.0,False,False +53033002900,4856.0,False,False +53033003000,6328.0,False,False +53033003100,6551.0,False,False +53033003200,9140.0,False,False +53033003300,8205.0,False,False +53033003400,3604.0,False,False +53033003500,4269.0,False,False +53033003600,7594.0,False,False +53033003800,2471.0,False,False +53033003900,3097.0,False,False +53033004000,3236.0,False,False +53033004100,8102.0,False,False +53033004200,8100.0,False,False +53033004301,4047.0,False,False +53033004302,4046.0,False,False +53033004400,7664.0,False,False +53033004500,3388.0,False,False +53033004600,3627.0,False,False +53033004700,10303.0,False,False +53033004800,5415.0,False,False +53033004900,7489.0,False,False +53033005000,4404.0,False,False +53033005100,3687.0,False,False +53033005200,6916.0,False,False +53033005301,8829.0,False,False +53033005302,5926.0,False,True +53033005400,6417.0,False,False +53033005600,7038.0,False,False +53033005700,6851.0,False,False +53033005801,5784.0,False,False +53033005802,6263.0,False,False +53033005900,8137.0,False,False +53033006000,6300.0,False,False +53033006100,5412.0,False,False +53033006200,4536.0,False,False +53033006300,5851.0,False,False +53033006400,3739.0,False,False +53033006500,4926.0,False,False +53033006600,4261.0,False,False +53033006700,9365.0,False,False +53033006800,3472.0,False,False +53033006900,5164.0,False,False +53033007000,7492.0,False,False +53033007100,5301.0,False,False +53033007200,11293.0,False,False +53033007300,8480.0,False,False +53033007401,5662.0,False,False +53033007402,5702.0,False,False +53033007500,9387.0,False,False +53033007600,4569.0,False,False +53033007700,5475.0,False,False +53033007800,5900.0,False,False +53033007900,6434.0,False,False +53033008001,7183.0,False,False +53033008002,3785.0,False,False +53033008100,4908.0,False,False +53033008200,4276.0,False,False +53033008300,3195.0,False,False +53033008400,5089.0,False,False +53033008500,4297.0,False,False +53033008600,6474.0,False,False +53033008700,4442.0,False,False +53033008800,4678.0,False,False +53033008900,6156.0,False,False +53033009000,3472.0,False,True +53033009100,2637.0,True,True +53033009200,2581.0,True,True +53033009300,3179.0,False,False +53033009400,7095.0,False,False +53033009500,6788.0,False,False +53033009600,5771.0,False,False +53033009701,6019.0,False,False +53033009702,5695.0,False,False +53033009800,7318.0,False,False +53033009900,5896.0,False,False +53033010001,4619.0,True,True +53033010002,4843.0,False,True +53033010100,8671.0,False,False +53033010200,4946.0,False,False +53033010300,7519.0,False,False +53033010401,4321.0,False,True +53033010402,4900.0,False,True +53033010500,9195.0,False,False +53033010600,8650.0,False,False +53033010701,3978.0,False,False +53033010702,4806.0,True,True +53033010800,4902.0,False,False +53033010900,1094.0,False,False +53033011001,5006.0,True,True +53033011002,4923.0,True,True +53033011101,5561.0,True,True +53033011102,5160.0,False,False +53033011200,3651.0,True,True +53033011300,6656.0,False,False +53033011401,4489.0,False,False +53033011402,4236.0,False,True +53033011500,4539.0,False,False +53033011600,7065.0,False,False +53033011700,5467.0,False,True +53033011800,8708.0,False,False +53033011900,7519.0,False,False +53033012000,3701.0,False,False +53033012100,2772.0,False,False +53033020100,3319.0,False,False +53033020200,5307.0,False,False +53033020300,7358.0,False,False +53033020401,3658.0,False,False +53033020402,5510.0,False,False +53033020500,6962.0,False,False +53033020600,3678.0,False,False +53033020700,4064.0,False,False +53033020800,4279.0,False,False +53033020900,3420.0,False,False +53033021000,6024.0,False,False +53033021100,4396.0,False,False +53033021300,4064.0,False,False +53033021400,3961.0,False,False +53033021500,4821.0,False,False +53033021600,4903.0,False,False +53033021700,8980.0,False,False +53033021802,6014.0,False,False +53033021803,5034.0,False,False +53033021804,5194.0,False,False +53033021903,6225.0,False,False +53033021904,5231.0,False,False +53033021905,5669.0,False,False +53033021906,4582.0,False,False +53033022001,5729.0,False,False +53033022003,5245.0,False,False +53033022005,5024.0,False,False +53033022006,3879.0,False,False +53033022101,4944.0,False,False +53033022102,6366.0,False,False +53033022201,4707.0,False,False +53033022202,7437.0,False,False +53033022203,5004.0,False,False +53033022300,2669.0,False,False +53033022400,8829.0,False,False +53033022500,8429.0,False,False +53033022603,6234.0,False,False +53033022604,5090.0,False,False +53033022605,6621.0,False,False +53033022606,6279.0,False,False +53033022701,3322.0,False,False +53033022702,4196.0,False,False +53033022703,2564.0,False,False +53033022801,9124.0,False,False +53033022802,5253.0,False,False +53033022803,6223.0,False,False +53033022901,2821.0,False,False +53033022902,6663.0,False,False +53033023000,6169.0,False,False +53033023100,4188.0,False,False +53033023201,6615.0,False,False +53033023202,4599.0,False,True +53033023300,7291.0,False,False +53033023401,3951.0,False,False +53033023403,4334.0,False,False +53033023404,3547.0,False,False +53033023500,4065.0,False,False +53033023601,4357.0,False,False +53033023603,6562.0,False,False +53033023604,6297.0,False,False +53033023700,4593.0,False,False +53033023801,3419.0,False,False +53033023803,5704.0,False,False +53033023804,7965.0,False,False +53033023900,7006.0,False,False +53033024000,7656.0,False,False +53033024100,4920.0,False,False +53033024200,3260.0,False,False +53033024300,9008.0,False,False +53033024400,3108.0,False,False +53033024500,5133.0,False,False +53033024601,4530.0,False,False +53033024602,3896.0,False,False +53033024701,3991.0,False,False +53033024702,7670.0,False,False +53033024800,5930.0,False,False +53033024901,5230.0,False,False +53033024902,4168.0,False,False +53033024903,6730.0,False,False +53033025001,5375.0,False,False +53033025003,7014.0,False,False +53033025005,5197.0,False,False +53033025006,6340.0,False,False +53033025101,6633.0,False,False +53033025102,8239.0,False,False +53033025200,8999.0,False,False +53033025301,6613.0,False,False +53033025302,5414.0,True,True +53033025400,7282.0,False,False +53033025500,5004.0,False,False +53033025601,5363.0,False,False +53033025602,6463.0,False,False +53033025701,6535.0,False,False +53033025702,3543.0,False,False +53033025803,4716.0,False,False +53033025804,3518.0,False,False +53033025805,5244.0,False,False +53033025806,5406.0,False,False +53033026001,5650.0,False,False +53033026002,8348.0,False,False +53033026100,8433.0,True,True +53033026200,5736.0,False,False +53033026300,1588.0,False,False +53033026400,5959.0,True,True +53033026500,4317.0,True,True +53033026600,2285.0,False,False +53033026700,5604.0,False,False +53033026801,6056.0,False,True +53033026802,5524.0,False,True +53033027000,3162.0,False,False +53033027100,3790.0,False,True +53033027200,2601.0,False,True +53033027300,5598.0,False,True +53033027400,5432.0,False,False +53033027500,4762.0,False,False +53033027600,4674.0,False,False +53033027701,5310.0,False,False +53033027702,4981.0,False,False +53033027800,3375.0,False,False +53033027900,8085.0,False,False +53033028000,4643.0,True,True +53033028100,2829.0,False,True +53033028200,4940.0,True,True +53033028300,5359.0,False,False +53033028402,5273.0,True,True +53033028403,5119.0,False,False +53033028500,4244.0,False,False +53033028600,6524.0,False,False +53033028700,5373.0,False,False +53033028801,3480.0,False,False +53033028802,6993.0,True,True +53033028901,3334.0,False,False +53033028902,7184.0,True,True +53033029001,4795.0,False,False +53033029003,5694.0,True,True +53033029004,3978.0,True,True +53033029101,3327.0,False,False +53033029102,4741.0,False,False +53033029203,4284.0,True,True +53033029204,7704.0,False,False +53033029205,5097.0,False,False +53033029206,4272.0,True,True +53033029303,7460.0,False,False +53033029304,5416.0,False,False +53033029305,4177.0,False,False +53033029306,3756.0,False,False +53033029307,4314.0,False,False +53033029403,6016.0,False,False +53033029405,5798.0,False,False +53033029406,5223.0,False,False +53033029407,4954.0,True,True +53033029408,4087.0,False,False +53033029502,7757.0,False,False +53033029503,8975.0,True,True +53033029504,6004.0,True,True +53033029601,7578.0,False,False +53033029602,6293.0,False,False +53033029700,7710.0,True,True +53033029801,9802.0,False,False +53033029802,9316.0,False,False +53033029901,4533.0,False,False +53033029902,4821.0,False,False +53033030003,6524.0,False,False +53033030004,8888.0,False,True +53033030005,5919.0,True,True +53033030006,3964.0,True,True +53033030100,7568.0,False,False +53033030201,5476.0,False,False +53033030202,7240.0,False,False +53033030304,4216.0,False,False +53033030305,4981.0,False,False +53033030306,5516.0,False,False +53033030308,7017.0,False,False +53033030309,5503.0,False,False +53033030310,6590.0,False,False +53033030311,5071.0,False,False +53033030312,5104.0,False,False +53033030313,4416.0,True,True +53033030314,4362.0,False,True +53033030401,9305.0,False,False +53033030403,4593.0,False,False +53033030404,5028.0,False,False +53033030501,1944.0,True,True +53033030503,5269.0,False,False +53033030504,4655.0,False,False +53033030600,5533.0,False,False +53033030700,4077.0,False,False +53033030801,6989.0,True,True +53033030802,3481.0,True,True +53033030901,3786.0,False,False +53033030902,6350.0,False,False +53033031000,4518.0,False,False +53033031100,7284.0,False,False +53033031202,6541.0,False,False +53033031204,6093.0,False,False +53033031205,8370.0,False,False +53033031206,5692.0,False,False +53033031301,2565.0,False,False +53033031302,4387.0,False,False +53033031400,6134.0,False,False +53033031501,4142.0,False,False +53033031502,4280.0,False,False +53033031601,5499.0,False,False +53033031603,6727.0,False,False +53033031604,5907.0,False,False +53033031605,4212.0,False,False +53033031703,6917.0,False,False +53033031704,6101.0,False,False +53033031705,4157.0,False,False +53033031706,8335.0,False,False +53033031800,4727.0,False,False +53033031903,7213.0,False,False +53033031904,3368.0,False,False +53033031906,4017.0,False,False +53033031907,8284.0,False,False +53033031908,4377.0,False,False +53033031909,3261.0,False,False +53033032002,3230.0,False,False +53033032003,5557.0,False,False +53033032005,6814.0,False,False +53033032006,5562.0,False,False +53033032007,3513.0,False,False +53033032008,4508.0,False,False +53033032010,6229.0,False,False +53033032011,4455.0,False,False +53033032102,5277.0,False,False +53033032103,5410.0,False,False +53033032104,6267.0,False,False +53033032203,8320.0,False,False +53033032207,3871.0,False,False +53033032208,9649.0,False,False +53033032210,15208.0,False,False +53033032211,5047.0,False,False +53033032212,8209.0,False,False +53033032213,4306.0,False,False +53033032214,6876.0,False,False +53033032215,5189.0,False,False +53033032307,6034.0,False,False +53033032309,8842.0,False,False +53033032311,5836.0,False,False +53033032313,6858.0,False,False +53033032315,5335.0,False,False +53033032316,5463.0,False,False +53033032317,6548.0,False,False +53033032318,7115.0,False,False +53033032319,5994.0,False,False +53033032320,4659.0,False,False +53033032321,6655.0,False,False +53033032322,3448.0,False,False +53033032323,6061.0,False,False +53033032324,6066.0,False,False +53033032325,6026.0,False,False +53033032326,3667.0,False,False +53033032327,4313.0,False,False +53033032328,3435.0,False,False +53033032329,8926.0,False,False +53033032401,6174.0,False,False +53033032402,7025.0,False,False +53033032500,5447.0,False,False +53033032601,3166.0,False,False +53033032602,14491.0,False,False +53033032702,6828.0,False,False +53033032703,2486.0,False,False +53033032704,7326.0,False,False +53033032800,2557.0,False,False +53033990100,0.0,False,False +53035080101,3096.0,False,False +53035080102,5347.0,True,True +53035080200,3659.0,True,True +53035080300,3432.0,False,False +53035080400,3553.0,False,False +53035080500,2978.0,False,False +53035080600,5034.0,False,False +53035080700,3292.0,False,False +53035080800,2186.0,False,False +53035080900,4818.0,False,False +53035081000,4794.0,True,True +53035081100,2913.0,False,False +53035081200,2597.0,False,False +53035081400,3073.0,True,True +53035090101,6535.0,False,False +53035090102,5989.0,False,False +53035090201,4729.0,False,False +53035090202,5306.0,False,False +53035090300,6506.0,False,False +53035090400,4986.0,False,False +53035090501,4252.0,False,False +53035090502,5071.0,False,False +53035090700,5118.0,False,False +53035090800,4115.0,False,False +53035090900,7814.0,False,False +53035091000,7439.0,False,False +53035091100,5168.0,False,False +53035091201,4523.0,False,False +53035091203,8168.0,False,False +53035091204,3474.0,False,False +53035091301,4238.0,False,False +53035091302,5785.0,False,False +53035091400,3596.0,False,False +53035091500,4337.0,False,False +53035091600,6813.0,False,False +53035091700,8358.0,False,False +53035091800,2980.0,False,False +53035091900,4485.0,False,False +53035092000,5203.0,False,False +53035092100,8423.0,False,False +53035092200,7140.0,False,False +53035092300,6316.0,False,False +53035092400,5947.0,False,False +53035092500,5374.0,False,False +53035092600,6466.0,False,False +53035092701,4723.0,False,False +53035092704,3178.0,False,False +53035092801,4540.0,False,False +53035092802,4320.0,False,False +53035092803,2909.0,False,False +53035092901,5574.0,False,False +53035092902,5425.0,False,False +53035940000,3524.0,False,False +53035940100,6263.0,False,False +53035990100,0.0,False,False +53037975100,6666.0,False,False +53037975200,5962.0,False,False +53037975300,5381.0,False,False +53037975401,7831.0,False,False +53037975402,5340.0,False,False +53037975500,6796.0,False,False +53037975600,2772.0,False,True +53037975700,5149.0,False,False +53039950100,8896.0,True,True +53039950200,4447.0,True,True +53039950300,8378.0,False,False +53041970100,3322.0,False,False +53041970200,3507.0,False,False +53041970300,5537.0,False,False +53041970400,6499.0,True,True +53041970500,2049.0,False,False +53041970600,2014.0,True,True +53041970700,4358.0,True,True +53041970800,4922.0,False,False +53041970900,1813.0,True,True +53041971000,2862.0,False,False +53041971100,4188.0,False,False +53041971200,3553.0,True,True +53041971300,5687.0,False,True +53041971400,2882.0,False,False +53041971500,7484.0,False,False +53041971600,3994.0,False,False +53041971700,4171.0,False,False +53041971800,4173.0,True,True +53041971900,2750.0,True,True +53041972000,2380.0,False,False +53043960100,1819.0,False,False +53043960200,2952.0,False,False +53043960300,2684.0,False,False +53043960400,3119.0,True,True +53045940000,709.0,True,True +53045960100,611.0,False,False +53045960200,5317.0,False,True +53045960300,6543.0,False,False +53045960400,10763.0,False,False +53045960500,4754.0,False,False +53045960600,4474.0,False,False +53045960700,1877.0,True,False +53045960800,3862.0,True,True +53045960900,5270.0,True,True +53045961000,5175.0,False,False +53045961100,6801.0,True,True +53045961200,4183.0,False,False +53045961300,3465.0,False,False +53047940100,2564.0,True,True +53047940200,2658.0,True,True +53047970300,6924.0,True,True +53047970400,3686.0,True,True +53047970500,2697.0,True,True +53047970600,7215.0,True,True +53047970700,4502.0,True,True +53047970800,5090.0,True,True +53047970900,2261.0,False,False +53047971000,4245.0,True,True +53049950200,5030.0,False,False +53049950300,3592.0,True,True +53049950400,3663.0,False,False +53049950500,2690.0,False,False +53049950600,1221.0,True,True +53049950700,2388.0,True,True +53049950800,3104.0,False,True +53049990100,0.0,False,False +53051970100,1932.0,True,True +53051970200,2833.0,True,True +53051970300,3270.0,True,True +53051970400,2710.0,True,True +53051970500,2632.0,False,False +53053060200,2533.0,True,True +53053060300,4773.0,False,False +53053060400,4211.0,False,False +53053060500,4185.0,False,False +53053060600,5793.0,False,False +53053060700,6946.0,False,False +53053060800,5067.0,False,False +53053060903,3364.0,False,False +53053060904,4996.0,False,False +53053060905,7057.0,False,False +53053060906,2247.0,False,False +53053061001,4268.0,False,False +53053061002,4544.0,False,True +53053061100,6288.0,False,False +53053061200,5123.0,False,False +53053061300,4992.0,True,True +53053061400,3166.0,True,True +53053061500,4969.0,False,False +53053061601,1875.0,True,True +53053061602,807.0,False,False +53053061700,5506.0,False,False +53053061800,2819.0,False,False +53053061900,1797.0,True,True +53053062000,4621.0,True,True +53053062300,5824.0,False,False +53053062400,6734.0,False,False +53053062500,7381.0,False,False +53053062600,3827.0,False,True +53053062801,7167.0,True,True +53053062802,4416.0,False,False +53053062900,7586.0,False,False +53053063000,3375.0,True,True +53053063100,4616.0,False,False +53053063200,5425.0,False,False +53053063300,8721.0,True,True +53053063400,7900.0,True,True +53053063501,4354.0,True,True +53053063502,4668.0,False,False +53053070100,3795.0,False,False +53053070203,8577.0,False,False +53053070204,3636.0,False,False +53053070205,3397.0,False,False +53053070206,4213.0,False,False +53053070207,5548.0,False,False +53053070307,5504.0,False,False +53053070308,4276.0,False,False +53053070309,5568.0,False,False +53053070310,5382.0,False,False +53053070311,5142.0,False,False +53053070312,6656.0,False,False +53053070313,6332.0,False,False +53053070314,3437.0,False,False +53053070315,6268.0,False,False +53053070316,5617.0,False,False +53053070401,1923.0,False,False +53053070403,3862.0,False,False +53053070404,5287.0,False,False +53053070703,6298.0,False,False +53053071100,2522.0,False,False +53053071205,5045.0,False,False +53053071206,6705.0,False,True +53053071207,6707.0,False,False +53053071208,8060.0,False,False +53053071209,3974.0,False,False +53053071210,5609.0,False,False +53053071304,6900.0,False,False +53053071305,4005.0,False,False +53053071306,6899.0,False,False +53053071307,5204.0,False,False +53053071309,4630.0,False,False +53053071310,6028.0,False,False +53053071403,4206.0,False,False +53053071406,7928.0,False,False +53053071407,7207.0,False,False +53053071408,3798.0,False,False +53053071409,4344.0,False,False +53053071410,8586.0,False,False +53053071411,6555.0,False,False +53053071503,5016.0,False,False +53053071504,5949.0,False,True +53053071505,5423.0,False,False +53053071506,5252.0,False,False +53053071601,5171.0,True,True +53053071602,8407.0,False,False +53053071703,4156.0,True,True +53053071704,4705.0,True,True +53053071705,3964.0,True,True +53053071706,1935.0,True,True +53053071707,2504.0,False,False +53053071803,5634.0,False,True +53053071805,3780.0,True,True +53053071806,3699.0,True,True +53053071807,3892.0,True,True +53053071808,4483.0,True,True +53053071901,5056.0,True,True +53053071902,5452.0,False,False +53053072000,4442.0,True,True +53053072105,5544.0,False,False +53053072106,6942.0,True,True +53053072107,4156.0,False,False +53053072108,5100.0,False,False +53053072109,3274.0,False,False +53053072111,2855.0,False,False +53053072112,4946.0,False,False +53053072305,6132.0,False,False +53053072307,4967.0,False,False +53053072308,7942.0,False,False +53053072309,6290.0,False,False +53053072310,3955.0,False,False +53053072311,4843.0,False,False +53053072312,5612.0,False,False +53053072313,3787.0,False,False +53053072405,4152.0,False,False +53053072406,6103.0,False,False +53053072407,4813.0,False,False +53053072408,6063.0,False,False +53053072409,2577.0,False,False +53053072410,3918.0,False,False +53053072503,4294.0,False,False +53053072504,5000.0,False,False +53053072505,8907.0,False,False +53053072506,3625.0,False,False +53053072507,3046.0,False,False +53053072601,6419.0,False,False +53053072602,4008.0,False,False +53053072603,5534.0,False,False +53053072800,9435.0,False,False +53053072901,3381.0,False,False +53053072903,6355.0,False,False +53053072905,6180.0,True,True +53053072906,1995.0,False,False +53053072907,5029.0,True,True +53053073001,6507.0,False,False +53053073005,4940.0,False,False +53053073006,4284.0,False,False +53053073108,9662.0,False,False +53053073110,3807.0,False,False +53053073111,4406.0,False,False +53053073113,7988.0,False,False +53053073114,5590.0,False,False +53053073115,4741.0,False,False +53053073116,5407.0,False,False +53053073117,3912.0,False,False +53053073118,4434.0,False,False +53053073119,3119.0,False,False +53053073120,4816.0,False,False +53053073121,4492.0,False,False +53053073122,5402.0,False,False +53053073123,5171.0,False,False +53053073124,3604.0,False,False +53053073125,12002.0,False,False +53053073126,4608.0,False,False +53053073200,6804.0,False,False +53053073301,5489.0,False,False +53053073302,4670.0,False,False +53053073404,6545.0,False,False +53053073405,3794.0,False,False +53053073406,5815.0,False,False +53053073407,3525.0,False,False +53053073408,4317.0,False,False +53053073500,8566.0,False,False +53053940001,2856.0,False,False +53053940002,4714.0,False,True +53053940003,7716.0,False,True +53053940004,6417.0,False,False +53053940005,6237.0,False,True +53053940006,3431.0,True,True +53053940007,3265.0,True,True +53053940008,6258.0,False,True +53053940009,3141.0,False,False +53053940010,4541.0,False,False +53053940011,4350.0,False,True +53055960100,5515.0,False,False +53055960300,4941.0,False,False +53055960400,3166.0,False,False +53055960500,3166.0,False,False +53055990100,0.0,False,False +53057940200,2507.0,False,False +53057940300,4948.0,False,False +53057940400,7447.0,False,False +53057940500,2692.0,True,True +53057940600,1511.0,True,True +53057940700,1585.0,False,False +53057940800,3022.0,False,False +53057950100,881.0,False,False +53057950800,6697.0,False,False +53057950900,4386.0,False,False +53057951000,2810.0,False,False +53057951100,4794.0,True,True +53057951200,3236.0,False,False +53057951300,2043.0,False,False +53057951400,4173.0,False,False +53057951500,10236.0,False,False +53057951600,4946.0,False,False +53057951700,3930.0,True,True +53057951800,5083.0,False,False +53057951900,3824.0,False,False +53057952100,3311.0,False,False +53057952200,4455.0,True,True +53057952301,4954.0,True,True +53057952302,10340.0,False,False +53057952401,2610.0,False,False +53057952402,8816.0,False,False +53057952500,2997.0,True,True +53057952600,3783.0,False,False +53057952700,3590.0,False,False +53057990100,5.0,True,False +53059950100,121.0,False,False +53059950200,4654.0,False,False +53059950300,1928.0,False,False +53059950400,2141.0,False,False +53059950500,2909.0,True,False +53061040100,5173.0,False,False +53061040200,6163.0,True,True +53061040300,3123.0,False,False +53061040400,4717.0,False,False +53061040500,2281.0,False,False +53061040700,4591.0,True,True +53061040800,2913.0,False,False +53061040900,3087.0,False,False +53061041000,5136.0,False,False +53061041100,4914.0,False,False +53061041201,3332.0,False,False +53061041202,6128.0,True,True +53061041301,5733.0,False,False +53061041303,4446.0,False,False +53061041304,3134.0,False,False +53061041400,5689.0,False,False +53061041500,1542.0,False,False +53061041601,6770.0,False,False +53061041605,6448.0,False,False +53061041606,5205.0,False,False +53061041607,4131.0,False,False +53061041608,6823.0,False,False +53061041701,6037.0,False,False +53061041703,6634.0,False,False +53061041704,6125.0,False,False +53061041805,6421.0,False,False +53061041806,8449.0,True,True +53061041808,4220.0,False,False +53061041809,5435.0,False,True +53061041810,5272.0,False,False +53061041811,7212.0,False,False +53061041812,6900.0,True,True +53061041901,5984.0,False,True +53061041903,7910.0,True,True +53061041904,5570.0,True,True +53061041905,6161.0,False,True +53061042001,6298.0,False,False +53061042003,2850.0,False,False +53061042004,4423.0,False,False +53061042005,5441.0,False,False +53061042006,4656.0,False,False +53061050101,3092.0,False,False +53061050102,6202.0,False,False +53061050200,4086.0,False,False +53061050300,5591.0,False,False +53061050401,7074.0,False,False +53061050402,5846.0,False,False +53061050500,6994.0,False,False +53061050600,1102.0,False,False +53061050700,6341.0,False,False +53061050800,6804.0,False,False +53061050900,3819.0,False,False +53061051000,4342.0,False,False +53061051100,3830.0,False,False +53061051200,4779.0,False,False +53061051300,7304.0,False,False +53061051400,8245.0,False,True +53061051500,5837.0,False,False +53061051601,4772.0,False,False +53061051602,3972.0,False,False +53061051701,6328.0,False,False +53061051702,4944.0,False,False +53061051802,6654.0,False,False +53061051803,7321.0,True,True +53061051804,7109.0,False,False +53061051905,9866.0,False,False +53061051912,2409.0,False,False +53061051913,4969.0,False,False +53061051914,4166.0,False,False +53061051915,8035.0,False,False +53061051916,3933.0,False,False +53061051917,4335.0,False,False +53061051918,5424.0,False,False +53061051921,5581.0,False,False +53061051922,6048.0,False,False +53061051923,7942.0,False,False +53061051924,8169.0,False,False +53061051925,8619.0,False,False +53061051926,5645.0,False,False +53061051927,5465.0,False,False +53061051928,5832.0,False,False +53061052003,11587.0,False,False +53061052004,6371.0,False,False +53061052005,5684.0,False,False +53061052006,4705.0,False,False +53061052007,5991.0,False,False +53061052104,4205.0,False,False +53061052105,1710.0,False,False +53061052107,5734.0,False,False +53061052108,6464.0,False,False +53061052112,2540.0,False,False +53061052113,3162.0,False,False +53061052114,4765.0,False,False +53061052115,7240.0,False,False +53061052118,8006.0,False,False +53061052203,5445.0,False,False +53061052204,5488.0,False,False +53061052206,5098.0,False,False +53061052207,6382.0,False,False +53061052208,4001.0,False,False +53061052209,5732.0,False,False +53061052301,5240.0,False,False +53061052302,4562.0,False,False +53061052401,4326.0,False,False +53061052402,4091.0,False,False +53061052502,4979.0,False,False +53061052503,8543.0,False,False +53061052504,2553.0,False,False +53061052603,2599.0,False,False +53061052604,4775.0,False,False +53061052605,5931.0,False,False +53061052606,5463.0,False,False +53061052607,6610.0,False,False +53061052701,1849.0,False,False +53061052705,8990.0,False,False +53061052706,6293.0,False,False +53061052707,4659.0,False,False +53061052708,5599.0,False,False +53061052709,3866.0,False,False +53061052803,6414.0,False,False +53061052804,6821.0,False,False +53061052805,4226.0,False,False +53061052806,7998.0,False,False +53061052903,4413.0,True,True +53061052904,5705.0,False,False +53061052905,4271.0,True,True +53061052906,4835.0,False,False +53061053101,4402.0,False,False +53061053102,5378.0,False,False +53061053201,4281.0,False,False +53061053202,4700.0,False,False +53061053301,6906.0,False,False +53061053302,5325.0,False,False +53061053400,6095.0,False,False +53061053504,7021.0,False,False +53061053505,5617.0,False,False +53061053506,5204.0,False,False +53061053507,5407.0,False,False +53061053508,3545.0,False,False +53061053509,4054.0,False,False +53061053602,6192.0,False,False +53061053603,4490.0,False,False +53061053604,4709.0,False,False +53061053700,3131.0,False,False +53061053801,3690.0,False,False +53061053802,5893.0,False,False +53061053803,4698.0,False,False +53061940001,6065.0,False,False +53061940002,3781.0,False,False +53061990002,0.0,False,False +53061990100,0.0,False,False +53063000200,4629.0,True,True +53063000300,5563.0,True,True +53063000400,3844.0,True,True +53063000500,3418.0,False,False +53063000600,3332.0,False,False +53063000700,5117.0,False,False +53063000800,5179.0,False,False +53063000900,6391.0,False,False +53063001000,5633.0,False,False +53063001100,3557.0,False,False +53063001200,2524.0,True,True +53063001300,3407.0,True,True +53063001400,5839.0,True,True +53063001500,5672.0,True,True +53063001600,3408.0,True,True +53063001800,2742.0,True,True +53063001900,3644.0,True,True +53063002000,4093.0,True,True +53063002100,2483.0,False,False +53063002300,4845.0,True,True +53063002400,2977.0,True,True +53063002500,8985.0,False,True +53063002600,5069.0,True,True +53063002900,3317.0,False,False +53063003000,2472.0,True,True +53063003100,4875.0,True,True +53063003200,2633.0,True,True +53063003500,2479.0,True,True +53063003600,4257.0,False,False +53063003800,1738.0,False,False +53063003900,2109.0,False,False +53063004000,4932.0,True,True +53063004100,2201.0,False,False +53063004200,4617.0,False,False +53063004300,3385.0,False,False +53063004400,4794.0,False,False +53063004500,3566.0,False,False +53063004601,3560.0,False,False +53063004602,3378.0,False,False +53063004700,6704.0,False,False +53063004800,4136.0,False,False +53063004900,5482.0,False,False +53063005000,4266.0,False,False +53063010100,6357.0,False,False +53063010201,4059.0,False,False +53063010202,7449.0,False,False +53063010301,4795.0,True,True +53063010303,3506.0,False,False +53063010304,5942.0,False,False +53063010305,6559.0,False,False +53063010401,7204.0,True,True +53063010402,6784.0,False,False +53063010501,8669.0,False,False +53063010503,8266.0,False,False +53063010504,3508.0,False,False +53063010601,3967.0,False,False +53063010602,8020.0,False,False +53063010700,7433.0,False,False +53063010800,2274.0,True,True +53063010900,5457.0,False,False +53063011000,3434.0,False,False +53063011101,5918.0,True,True +53063011102,4527.0,True,True +53063011201,7308.0,True,True +53063011202,3933.0,False,False +53063011300,8423.0,False,False +53063011400,5369.0,False,False +53063011500,1613.0,False,False +53063011600,1629.0,False,False +53063011701,2081.0,False,False +53063011702,7385.0,True,True +53063011800,4865.0,True,True +53063011900,4859.0,True,True +53063012000,3822.0,False,False +53063012100,2627.0,False,False +53063012200,2290.0,False,False +53063012300,5806.0,False,False +53063012401,4721.0,False,False +53063012402,6626.0,False,False +53063012500,3813.0,True,True +53063012600,4089.0,False,False +53063012701,3911.0,False,False +53063012702,2491.0,False,False +53063012801,4316.0,False,False +53063012802,3333.0,False,False +53063012901,3152.0,False,False +53063012902,7245.0,False,False +53063013000,9864.0,False,False +53063013100,12493.0,False,False +53063013201,7735.0,False,False +53063013202,11768.0,False,False +53063013300,3281.0,False,False +53063013401,5308.0,False,False +53063013500,9995.0,False,False +53063013600,5066.0,False,False +53063013700,3154.0,False,False +53063013800,3336.0,False,False +53063013900,5553.0,False,False +53063014001,5487.0,False,False +53063014002,6286.0,False,False +53063014100,6152.0,False,False +53063014200,3582.0,False,False +53063014300,2842.0,True,True +53063014400,4562.0,True,True +53063014500,1954.0,True,True +53065941000,2135.0,True,True +53065950100,7322.0,True,True +53065950200,4308.0,False,False +53065950300,2753.0,True,False +53065950500,2552.0,True,True +53065950600,2433.0,False,False +53065950700,2424.0,True,True +53065950800,3398.0,True,True +53065950900,1501.0,True,True +53065951100,3695.0,True,True +53065951300,4328.0,False,False +53065951400,7806.0,False,False +53067010100,3238.0,False,False +53067010200,4736.0,False,False +53067010300,5090.0,True,True +53067010400,3153.0,False,False +53067010510,2913.0,True,True +53067010520,6398.0,True,True +53067010600,6645.0,False,False +53067010700,6177.0,False,False +53067010800,6358.0,False,False +53067010910,7549.0,False,False +53067010920,4887.0,False,False +53067011000,4679.0,False,False +53067011100,4413.0,False,False +53067011200,5372.0,False,False +53067011300,4822.0,True,True +53067011410,5670.0,False,False +53067011420,7436.0,False,False +53067011500,6976.0,False,False +53067011610,7774.0,False,False +53067011621,8253.0,False,False +53067011622,5132.0,False,False +53067011623,6429.0,False,False +53067011624,4377.0,False,False +53067011710,8915.0,False,False +53067011720,4928.0,False,False +53067011810,3664.0,False,False +53067011821,4867.0,False,False +53067011822,4361.0,False,False +53067011900,8220.0,False,False +53067012000,7748.0,False,False +53067012100,4299.0,False,False +53067012211,2595.0,False,False +53067012212,7527.0,False,False +53067012221,6588.0,False,False +53067012222,9829.0,False,False +53067012310,10219.0,False,False +53067012320,2836.0,False,False +53067012330,4730.0,False,False +53067012411,9099.0,False,False +53067012412,5343.0,False,False +53067012420,4360.0,False,False +53067012510,3343.0,False,False +53067012520,6761.0,False,False +53067012530,4554.0,False,False +53067012610,5949.0,False,False +53067012620,4883.0,False,False +53067012710,2290.0,False,False +53067012720,6274.0,False,False +53067012730,7052.0,False,False +53067990100,0.0,False,False +53069950100,4268.0,False,False +53071920000,5633.0,True,True +53071920100,4830.0,False,False +53071920200,4447.0,True,True +53071920300,8532.0,False,False +53071920400,2731.0,False,False +53071920500,2881.0,True,True +53071920600,5486.0,False,False +53071920701,3430.0,False,False +53071920702,4315.0,False,False +53071920801,4728.0,False,False +53071920802,3513.0,False,False +53071920900,9839.0,False,False +53073000100,10489.0,False,False +53073000200,9713.0,True,True +53073000300,8383.0,False,False +53073000400,6495.0,False,False +53073000501,6197.0,False,False +53073000502,2659.0,False,False +53073000600,2136.0,True,True +53073000700,6648.0,False,False +53073000803,6534.0,False,False +53073000804,6778.0,False,False +53073000805,5317.0,False,False +53073000806,10267.0,False,False +53073000901,7367.0,False,False +53073000902,5947.0,False,False +53073001000,7703.0,False,False +53073001100,6869.0,False,False +53073001201,7261.0,False,False +53073001202,3808.0,False,False +53073010100,8214.0,True,True +53073010200,9153.0,False,False +53073010301,6644.0,False,False +53073010302,4666.0,False,False +53073010303,6735.0,False,False +53073010401,9093.0,False,False +53073010403,5271.0,False,False +53073010404,6874.0,False,False +53073010501,8113.0,False,False +53073010502,9443.0,False,False +53073010600,7201.0,False,False +53073010701,6461.0,False,False +53073010702,4722.0,False,False +53073010900,903.0,False,False +53073011000,1116.0,False,False +53073940000,5641.0,True,True +53075000100,6572.0,False,False +53075000200,6995.0,False,False +53075000300,5275.0,False,False +53075000400,4311.0,False,False +53075000500,3931.0,False,False +53075000600,8669.0,False,False +53075000700,3650.0,False,False +53075000800,3682.0,False,False +53075000900,3986.0,True,True +53075001000,2160.0,False,False +53077000100,3046.0,True,True +53077000200,5572.0,True,True +53077000300,4703.0,True,True +53077000400,7703.0,False,False +53077000500,4925.0,False,False +53077000600,6022.0,True,True +53077000700,6695.0,True,True +53077000800,4528.0,False,False +53077000901,7628.0,False,False +53077000902,4123.0,False,False +53077001000,6438.0,False,False +53077001100,7053.0,False,False +53077001201,4411.0,True,True +53077001202,6914.0,True,True +53077001300,2495.0,True,True +53077001400,3728.0,True,True +53077001501,7248.0,True,True +53077001502,3118.0,True,True +53077001601,2449.0,True,False +53077001602,8158.0,False,False +53077001701,3166.0,True,True +53077001702,6724.0,False,False +53077001800,7710.0,True,True +53077001901,4342.0,True,True +53077001902,6534.0,True,True +53077002001,8505.0,True,True +53077002002,9424.0,True,True +53077002101,2206.0,False,False +53077002102,8372.0,True,True +53077002200,7556.0,True,False +53077002701,3102.0,True,False +53077002801,5587.0,False,False +53077002802,8198.0,False,False +53077002900,6890.0,True,True +53077003001,4023.0,False,False +53077003002,3588.0,False,False +53077003100,5309.0,False,False +53077003200,6746.0,False,False +53077003400,4835.0,False,False +53077940001,6248.0,True,True +53077940002,4607.0,True,True +53077940003,3315.0,True,True +53077940004,6172.0,True,True +53077940005,4857.0,True,True +53077940006,4724.0,True,True +54001965500,3975.0,True,True +54001965600,3852.0,True,True +54001965700,5053.0,True,True +54001965800,3753.0,True,True +54003971101,6575.0,False,False +54003971102,9777.0,False,False +54003971201,10648.0,False,False +54003971202,5191.0,False,False +54003971300,9777.0,True,False +54003971400,9144.0,False,False +54003971500,3481.0,True,True +54003971600,4638.0,True,True +54003971700,5410.0,True,True +54003971800,8447.0,False,False +54003971900,11304.0,False,False +54003972000,13266.0,False,False +54003972101,5537.0,False,False +54003972102,12134.0,False,False +54005958200,4212.0,True,True +54005958300,3472.0,True,True +54005958400,2462.0,True,True +54005958501,2388.0,True,True +54005958502,3626.0,False,True +54005958600,2136.0,True,True +54005958700,1671.0,True,True +54005958800,2401.0,True,True +54007967900,5627.0,True,True +54007968000,4416.0,True,True +54007968100,4147.0,True,True +54009031101,4640.0,False,False +54009031102,4176.0,False,False +54009031200,3044.0,True,True +54009031400,4258.0,False,False +54009031600,3793.0,False,False +54009031700,2548.0,False,False +54011000101,1658.0,True,True +54011000102,2179.0,False,False +54011000200,2838.0,True,True +54011000300,2614.0,True,True +54011000400,2340.0,False,True +54011000500,3160.0,False,False +54011000600,1447.0,True,True +54011000900,1432.0,True,True +54011001000,1988.0,True,True +54011001100,1970.0,True,True +54011001200,2804.0,False,False +54011001300,2475.0,False,False +54011001400,2379.0,True,True +54011001500,1410.0,True,True +54011001600,1208.0,True,True +54011001800,3989.0,True,True +54011001900,2243.0,False,False +54011002000,2895.0,False,False +54011002100,3149.0,False,False +54011010102,5860.0,False,False +54011010201,5951.0,False,False +54011010202,3796.0,True,True +54011010300,2723.0,False,False +54011010400,6400.0,False,False +54011010500,5885.0,False,False +54011010600,4016.0,False,False +54011010700,7215.0,False,False +54011010800,6755.0,False,False +54011010900,1560.0,True,True +54013962600,3092.0,True,True +54013962700,4203.0,True,True +54015957900,3155.0,True,True +54015958000,3138.0,True,True +54015958100,2416.0,True,True +54017965000,4598.0,False,False +54017965100,3962.0,True,True +54019020100,5425.0,True,True +54019020201,4003.0,True,True +54019020202,4015.0,True,True +54019020300,2870.0,True,True +54019020400,4705.0,True,True +54019020500,1759.0,True,True +54019020600,1954.0,True,True +54019020700,3851.0,False,True +54019020800,4599.0,True,True +54019020900,4104.0,True,True +54019021000,2957.0,False,False +54019021100,3334.0,True,True +54021967700,5440.0,False,False +54021967800,2601.0,False,True +54023969400,3245.0,False,False +54023969500,3519.0,False,False +54023969600,4852.0,True,True +54025950100,5810.0,True,True +54025950200,3742.0,True,True +54025950300,3380.0,True,True +54025950400,7524.0,True,True +54025950500,3524.0,True,True +54025950600,5039.0,False,True +54025950700,6136.0,True,True +54027968200,4799.0,False,False +54027968300,5821.0,True,True +54027968400,4030.0,True,True +54027968500,3311.0,False,False +54027968600,5348.0,True,True +54029020600,4307.0,False,False +54029020700,3966.0,False,False +54029020900,2943.0,True,True +54029021100,3578.0,False,False +54029021200,3867.0,False,False +54029021300,3270.0,True,True +54029021400,3386.0,False,False +54029021500,4066.0,True,True +54031970100,3851.0,False,False +54031970200,5660.0,True,True +54031970300,4294.0,True,False +54033030100,3308.0,True,True +54033030200,2546.0,True,True +54033030300,2533.0,True,True +54033030400,2795.0,False,False +54033030500,4730.0,False,False +54033030601,2653.0,True,True +54033030602,5159.0,True,True +54033030700,2295.0,False,False +54033030800,4457.0,True,True +54033031000,3700.0,True,True +54033031100,2197.0,False,False +54033031200,2178.0,False,False +54033031300,3412.0,False,False +54033031400,2797.0,False,False +54033031500,1336.0,False,False +54033031600,2373.0,False,False +54033031700,2351.0,False,False +54033031800,2070.0,True,True +54033031900,2265.0,False,False +54033032000,2117.0,False,False +54033032101,4027.0,False,False +54033032102,6609.0,False,False +54035963200,4381.0,False,False +54035963300,4334.0,True,True +54035963400,4246.0,True,True +54035963500,3119.0,False,False +54035963600,4988.0,True,True +54035963700,7839.0,False,False +54037972201,4946.0,False,False +54037972203,2561.0,False,False +54037972204,2413.0,False,False +54037972300,4787.0,True,True +54037972401,2585.0,True,True +54037972402,4667.0,False,False +54037972501,5306.0,False,False +54037972503,3413.0,False,False +54037972505,2545.0,False,True +54037972506,3725.0,False,False +54037972601,1922.0,False,False +54037972602,5020.0,False,False +54037972701,2864.0,True,True +54037972702,4235.0,False,False +54037972800,5517.0,False,False +54039000100,1213.0,True,True +54039000200,2082.0,True,True +54039000300,2789.0,True,True +54039000500,2220.0,False,False +54039000600,3608.0,False,False +54039000700,2194.0,True,True +54039000800,1584.0,True,True +54039000900,1143.0,True,True +54039001100,4953.0,True,True +54039001200,1615.0,True,True +54039001300,2262.0,True,True +54039001500,4430.0,False,False +54039001700,1650.0,True,True +54039001800,2542.0,True,True +54039001901,3522.0,False,False +54039001902,3653.0,False,False +54039002000,2782.0,False,False +54039002100,4671.0,False,False +54039010100,3525.0,False,False +54039010200,2263.0,False,False +54039010300,2254.0,True,True +54039010400,1422.0,False,False +54039010500,4356.0,False,False +54039010600,4667.0,True,True +54039010701,4857.0,False,False +54039010702,4790.0,False,False +54039010801,6810.0,True,True +54039010802,3169.0,True,True +54039010900,2785.0,True,True +54039011000,4509.0,False,False +54039011100,4703.0,False,False +54039011200,3992.0,True,True +54039011301,3415.0,True,True +54039011302,6024.0,False,False +54039011401,2859.0,False,False +54039011402,3753.0,True,True +54039011500,4010.0,False,False +54039011800,4124.0,True,True +54039012100,4180.0,True,True +54039012200,5651.0,True,True +54039012300,7116.0,False,False +54039012800,4085.0,False,False +54039012900,1124.0,False,False +54039013000,4695.0,True,True +54039013100,4023.0,False,False +54039013200,3771.0,True,True +54039013300,2627.0,False,False +54039013400,2095.0,True,True +54039013500,2634.0,True,True +54039013600,4220.0,True,True +54039013701,1980.0,False,False +54039013702,5284.0,True,True +54039013800,2594.0,True,True +54041967200,3187.0,True,True +54041967300,4097.0,True,True +54041967400,2412.0,True,True +54041967500,3070.0,True,True +54041967600,3400.0,True,True +54043955400,5718.0,False,False +54043955500,4025.0,True,True +54043955600,4774.0,True,True +54043955700,3043.0,True,True +54043955800,3290.0,True,True +54045956101,6404.0,False,True +54045956102,2945.0,True,True +54045956200,3801.0,True,True +54045956400,3377.0,True,True +54045956500,2293.0,True,True +54045956600,4658.0,True,True +54045956700,3361.0,True,True +54045956800,4202.0,True,True +54045956900,2113.0,True,True +54047953600,867.0,True,True +54047953800,2723.0,True,True +54047953900,1438.0,True,True +54047954000,2053.0,True,True +54047954200,1897.0,True,True +54047954501,1496.0,True,True +54047954503,4181.0,True,True +54047954504,4006.0,True,True +54049020100,1199.0,True,True +54049020200,3528.0,False,True +54049020300,3710.0,False,False +54049020400,1509.0,False,False +54049020500,1859.0,True,True +54049020600,1491.0,False,False +54049020700,3637.0,True,True +54049020800,2833.0,True,True +54049020900,3541.0,False,False +54049021000,5975.0,False,False +54049021100,2854.0,False,False +54049021200,5659.0,False,False +54049021300,4035.0,True,True +54049021400,2103.0,False,False +54049021500,3591.0,False,False +54049021600,4480.0,True,True +54049021700,1701.0,True,True +54049021800,2650.0,True,True +54051020200,2245.0,True,True +54051020500,1036.0,True,True +54051020601,2191.0,True,True +54051020702,1447.0,False,False +54051020800,3381.0,False,False +54051020900,4613.0,True,True +54051021000,6512.0,True,True +54051021100,5150.0,False,False +54051021300,4733.0,False,False +54053954801,2990.0,True,True +54053954802,4320.0,False,True +54053954900,7582.0,True,True +54053955000,3930.0,True,True +54053955101,2485.0,True,True +54053955102,5513.0,True,True +54055000900,3304.0,True,True +54055001000,4428.0,True,True +54055001100,5980.0,False,False +54055001200,3766.0,True,True +54055001300,4122.0,True,True +54055001400,2138.0,True,True +54055001500,5305.0,True,True +54055001600,1247.0,True,True +54055001700,4942.0,True,True +54055001800,5871.0,True,True +54055001900,1375.0,True,True +54055002000,2721.0,True,True +54055002100,3027.0,True,True +54055002200,4396.0,True,True +54055002300,4632.0,True,True +54055002400,2665.0,True,True +54057010100,2257.0,True,True +54057010200,3731.0,True,True +54057010300,5196.0,False,False +54057010400,4942.0,False,False +54057010500,4134.0,False,False +54057010600,5094.0,False,False +54057010700,1813.0,True,True +54059957100,3818.0,True,True +54059957200,3696.0,True,True +54059957300,3725.0,True,True +54059957400,3473.0,True,True +54059957500,3077.0,True,True +54059957600,3091.0,True,True +54059957700,3410.0,True,True +54061010101,879.0,False,False +54061010102,5417.0,False,True +54061010201,4685.0,False,False +54061010202,4271.0,False,False +54061010400,4421.0,False,False +54061010600,5048.0,False,False +54061010700,4843.0,False,False +54061010800,4926.0,False,False +54061010901,3972.0,False,False +54061010902,4197.0,False,False +54061011000,4276.0,False,False +54061011100,2913.0,False,False +54061011200,4695.0,True,True +54061011300,4754.0,False,False +54061011400,3371.0,False,False +54061011500,4817.0,False,False +54061011600,6409.0,False,False +54061011700,3984.0,False,False +54061011803,3787.0,False,False +54061011804,3892.0,False,False +54061011805,4664.0,False,False +54061011806,5470.0,False,False +54061011900,4420.0,False,False +54061012000,5363.0,False,False +54063950100,3049.0,True,True +54063950200,4360.0,True,True +54063950300,5992.0,True,True +54065970700,6742.0,False,False +54065970800,3812.0,True,True +54065970900,2745.0,True,True +54065971000,4410.0,False,False +54067950100,2845.0,True,True +54067950200,6680.0,True,True +54067950300,1233.0,True,True +54067950400,5029.0,True,True +54067950500,1536.0,True,True +54067950600,4713.0,True,True +54067950700,3042.0,False,False +54069000200,3292.0,True,True +54069000300,1722.0,False,False +54069000400,909.0,True,True +54069000500,1502.0,True,True +54069000600,1175.0,True,True +54069000700,941.0,True,True +54069001300,1297.0,True,True +54069001400,3195.0,False,False +54069001500,2548.0,False,False +54069001600,2240.0,False,False +54069001700,1558.0,False,False +54069001800,5541.0,False,False +54069001901,2383.0,False,False +54069002000,4697.0,False,False +54069002100,4205.0,False,False +54069002200,2439.0,False,False +54069002600,1835.0,True,True +54069002700,664.0,True,True +54071970400,1868.0,True,True +54071970500,3462.0,True,True +54071970600,1671.0,True,True +54073962100,3197.0,False,False +54073962200,4285.0,False,False +54075960101,1104.0,True,True +54075960102,1310.0,True,True +54075960200,3783.0,True,True +54075960300,2253.0,True,True +54077963800,7135.0,True,True +54077963900,4044.0,False,False +54077964000,3693.0,True,True +54077964100,4696.0,True,True +54077964200,3520.0,True,True +54077964300,4672.0,True,True +54077964400,3321.0,False,True +54077964500,2602.0,False,True +54079020100,5835.0,True,True +54079020200,4890.0,True,True +54079020300,5342.0,False,False +54079020400,6655.0,False,False +54079020500,6567.0,True,True +54079020601,5892.0,False,False +54079020603,6927.0,False,False +54079020604,2536.0,False,False +54079020605,7491.0,False,False +54079020700,4475.0,False,False +54081000200,3372.0,True,True +54081000300,4026.0,True,True +54081000400,3519.0,True,True +54081000500,4242.0,False,True +54081000600,3960.0,True,True +54081000700,3298.0,True,True +54081000802,5490.0,False,False +54081000803,5112.0,False,False +54081000804,5856.0,False,False +54081000900,4718.0,True,True +54081001001,5439.0,False,True +54081001002,3064.0,True,True +54081001100,4744.0,True,True +54081001200,4370.0,True,True +54081001300,5054.0,True,True +54081001400,5399.0,True,True +54081001500,3589.0,False,True +54083965900,4141.0,True,True +54083966000,3678.0,False,False +54083966100,4027.0,True,True +54083966200,3557.0,False,False +54083966300,2465.0,True,True +54083966400,6570.0,True,True +54083966500,4492.0,True,True +54085962300,3813.0,True,True +54085962400,3230.0,True,True +54085962500,2801.0,True,True +54087962800,2451.0,False,False +54087962900,4258.0,True,True +54087963000,3572.0,True,True +54087963100,3739.0,True,True +54089000500,2930.0,True,True +54089000600,4666.0,True,True +54089000700,1507.0,True,True +54089000800,3745.0,True,True +54091964600,4905.0,True,True +54091964700,4764.0,False,False +54091964800,5225.0,True,True +54091964900,1970.0,True,True +54093965200,1692.0,True,True +54093965300,2539.0,False,False +54093965400,2751.0,True,True +54095961800,3538.0,False,False +54095961900,3448.0,True,True +54095962000,1825.0,True,True +54097966600,4641.0,True,True +54097966700,3270.0,False,False +54097966800,3632.0,True,True +54097966900,3391.0,True,True +54097967000,4843.0,True,True +54097967100,4725.0,True,True +54099005100,1915.0,True,True +54099005200,1753.0,True,True +54099020100,2938.0,True,True +54099020300,4501.0,True,True +54099020400,6367.0,False,False +54099020500,4848.0,True,True +54099020600,4708.0,False,False +54099020700,3656.0,False,False +54099020800,3839.0,True,True +54099020900,2554.0,True,True +54099021000,3224.0,True,True +54101970100,4098.0,True,True +54101970200,2141.0,True,True +54101970300,2147.0,True,True +54103004900,3403.0,True,True +54103030400,2688.0,True,True +54103030500,3695.0,True,True +54103030700,4180.0,True,True +54103030800,1470.0,False,True +54105030101,3128.0,True,True +54105030102,2670.0,True,True +54107000100,3253.0,True,True +54107000300,2818.0,True,True +54107000400,2524.0,False,False +54107000500,4101.0,True,True +54107000701,2453.0,True,True +54107000702,1767.0,True,True +54107000801,1441.0,True,True +54107000802,3278.0,True,True +54107000901,1569.0,True,True +54107000902,1403.0,True,True +54107000903,4398.0,True,True +54107010101,2025.0,False,False +54107010102,2218.0,False,False +54107010200,3077.0,False,False +54107010300,4355.0,False,False +54107010400,1562.0,False,False +54107010501,1382.0,False,False +54107010502,3896.0,True,True +54107010601,4522.0,False,False +54107010602,4364.0,False,False +54107010701,6004.0,True,True +54107010702,7915.0,False,False +54107010800,3137.0,False,False +54107010901,4670.0,False,False +54107010902,4008.0,True,True +54107011000,2820.0,True,True +54109002800,2902.0,True,True +54109002901,3916.0,True,True +54109002902,3235.0,True,True +54109003000,2448.0,True,True +54109003100,4835.0,True,True +54109003200,3945.0,True,True +55001950100,2945.0,False,False +55001950201,1233.0,False,False +55001950202,2586.0,True,True +55001950400,4599.0,True,True +55001950501,1598.0,True,True +55001950502,3585.0,True,True +55001950700,3548.0,False,False +55003940000,2080.0,True,True +55003950300,2808.0,False,False +55003950400,2168.0,True,True +55003950500,2134.0,False,False +55003950600,1259.0,True,True +55003950700,2013.0,True,True +55003950800,3155.0,True,True +55003990000,0.0,False,False +55005000100,3822.0,False,False +55005000200,3885.0,True,False +55005000300,4024.0,True,False +55005000400,5347.0,True,False +55005000500,4402.0,False,False +55005000600,6097.0,False,False +55005000800,5389.0,False,False +55005000900,4930.0,False,False +55005001001,1787.0,False,False +55005001002,5546.0,False,False +55007960100,3033.0,True,True +55007960200,1742.0,False,False +55007960300,3601.0,False,False +55007960400,4717.0,False,False +55007960600,1900.0,False,False +55007990000,0.0,False,False +55009000100,2730.0,True,True +55009000200,6036.0,True,True +55009000302,4566.0,True,False +55009000303,2774.0,True,True +55009000401,5053.0,True,False +55009000402,1944.0,False,False +55009000500,2994.0,True,True +55009000600,3764.0,False,False +55009000700,4632.0,True,True +55009000800,1706.0,True,True +55009000900,4331.0,True,True +55009001000,1338.0,False,False +55009001100,2075.0,True,True +55009001200,2283.0,True,True +55009001300,2626.0,False,False +55009001400,3310.0,False,False +55009001600,6255.0,True,True +55009001701,3770.0,True,True +55009001702,3528.0,True,True +55009001801,5632.0,False,False +55009001802,6347.0,False,False +55009002001,8918.0,False,False +55009002002,5074.0,False,False +55009002003,3524.0,False,False +55009010100,5725.0,False,False +55009010201,4719.0,False,False +55009010202,5158.0,False,False +55009010300,6967.0,False,False +55009020100,6088.0,False,False +55009020203,6940.0,False,False +55009020204,5761.0,False,False +55009020502,5496.0,False,False +55009020503,8188.0,False,False +55009020504,5974.0,False,False +55009020600,5350.0,False,False +55009020702,7315.0,False,False +55009020703,7382.0,False,False +55009020704,8319.0,False,False +55009020800,2241.0,False,False +55009020900,2653.0,False,False +55009021000,2858.0,False,False +55009021100,1173.0,False,False +55009021200,4957.0,False,False +55009021301,3181.0,False,False +55009021302,6038.0,False,False +55009021303,4086.0,True,True +55009021304,2290.0,False,False +55009021400,8543.0,False,False +55009021500,3042.0,False,False +55009021600,6145.0,False,False +55009940001,19084.0,False,False +55009940002,4529.0,False,False +55009940003,3394.0,False,True +55009940004,2562.0,False,False +55011960100,2511.0,False,False +55011960200,2749.0,False,False +55011960300,2224.0,False,False +55011960400,2377.0,False,False +55011960500,3265.0,False,False +55013970400,3906.0,False,False +55013970600,1955.0,False,False +55013970700,2393.0,True,True +55013970800,2316.0,True,False +55013970900,2872.0,True,False +55013971000,1847.0,False,False +55015020100,4698.0,False,False +55015020200,3826.0,False,False +55015020303,3667.0,False,False +55015020304,3710.0,False,False +55015020306,6463.0,False,False +55015020308,4388.0,False,False +55015020400,3219.0,False,False +55015020500,4948.0,False,False +55015020600,4655.0,False,False +55015020700,4736.0,False,False +55015020800,5618.0,False,False +55017010100,3075.0,False,False +55017010200,6683.0,False,False +55017010300,5451.0,False,False +55017010400,5293.0,False,False +55017010500,5436.0,True,True +55017010700,7665.0,False,False +55017010800,7224.0,False,False +55017010900,4770.0,True,False +55017011000,7196.0,False,False +55017011100,4189.0,False,False +55017011200,6910.0,False,False +55019950100,4950.0,True,True +55019950200,4484.0,True,False +55019950300,4453.0,True,False +55019950400,3953.0,True,True +55019950500,5134.0,True,True +55019950600,4854.0,True,True +55019950700,3586.0,False,False +55019950800,3165.0,False,False +55021970100,4013.0,False,False +55021970200,5701.0,False,False +55021970300,4313.0,False,False +55021970400,6647.0,False,False +55021970500,4395.0,True,False +55021970600,4675.0,False,False +55021970700,4199.0,False,False +55021970800,5908.0,False,False +55021970900,4707.0,False,False +55021971000,3745.0,False,False +55021971100,3585.0,False,False +55021971200,5245.0,False,False +55023960100,2845.0,True,True +55023960200,2115.0,False,False +55023960300,2487.0,False,False +55023960400,3121.0,False,False +55023960500,2022.0,False,False +55023960600,3645.0,False,False +55025000100,2586.0,False,False +55025000201,2131.0,False,False +55025000202,3284.0,False,False +55025000204,5824.0,False,False +55025000205,5055.0,False,False +55025000300,5995.0,False,False +55025000401,3325.0,False,False +55025000402,2610.0,False,False +55025000405,6848.0,False,False +55025000406,3385.0,False,False +55025000407,5702.0,False,False +55025000408,1949.0,False,False +55025000501,4447.0,False,False +55025000503,7026.0,False,False +55025000504,7129.0,False,False +55025000600,6152.0,True,True +55025000700,3118.0,False,False +55025000800,3845.0,False,False +55025000901,2208.0,False,False +55025000902,5904.0,False,False +55025001000,2598.0,False,False +55025001101,5090.0,False,False +55025001102,3715.0,False,False +55025001200,6565.0,False,False +55025001300,2539.0,False,False +55025001401,6719.0,True,True +55025001402,4867.0,True,True +55025001403,9021.0,False,False +55025001501,1794.0,False,False +55025001502,4561.0,False,False +55025001603,5117.0,False,False +55025001604,6224.0,False,False +55025001605,3264.0,False,False +55025001606,7704.0,False,False +55025001704,3747.0,False,False +55025001705,4358.0,False,False +55025001802,3169.0,False,False +55025001804,3684.0,False,False +55025001900,6523.0,False,False +55025002000,5864.0,False,False +55025002100,4618.0,False,False +55025002200,4258.0,False,False +55025002301,3263.0,True,False +55025002302,1685.0,False,False +55025002401,3459.0,False,False +55025002402,4054.0,True,False +55025002500,1877.0,True,True +55025002601,2203.0,True,True +55025002602,5502.0,False,False +55025002603,5603.0,False,False +55025002700,3352.0,False,False +55025002800,2269.0,False,False +55025002900,3195.0,False,False +55025003001,4875.0,False,False +55025003002,3733.0,True,True +55025003100,5938.0,False,False +55025003200,2834.0,False,False +55025010100,2203.0,False,False +55025010200,1345.0,False,False +55025010300,3623.0,False,False +55025010400,3361.0,False,False +55025010501,3591.0,False,False +55025010502,8520.0,False,False +55025010600,5337.0,False,False +55025010701,6761.0,False,False +55025010702,7924.0,False,False +55025010800,11760.0,False,False +55025010901,7744.0,False,False +55025010903,3575.0,False,False +55025010904,9410.0,False,False +55025011000,4121.0,False,False +55025011101,4838.0,False,False +55025011102,9155.0,False,False +55025011200,9823.0,False,False +55025011301,6546.0,False,False +55025011302,3272.0,False,False +55025011401,8932.0,False,False +55025011402,10977.0,False,False +55025011503,9059.0,False,False +55025011504,3970.0,False,False +55025011505,4802.0,False,False +55025011506,5619.0,False,False +55025011600,7051.0,False,False +55025011700,4150.0,False,False +55025011800,6165.0,False,False +55025011900,7070.0,False,False +55025012001,9202.0,False,False +55025012002,4992.0,False,False +55025012100,2789.0,False,False +55025012201,2034.0,False,False +55025012202,6942.0,False,False +55025012300,5610.0,False,False +55025012400,4989.0,False,False +55025012501,6726.0,False,False +55025012502,5955.0,False,False +55025012600,4599.0,False,False +55025012700,4120.0,False,False +55025012800,8159.0,False,False +55025012900,4097.0,False,False +55025013000,4764.0,False,False +55025013100,4850.0,False,False +55025013200,9917.0,False,False +55025013301,5073.0,False,False +55025013302,5896.0,False,False +55025013700,6296.0,False,False +55025991702,0.0,False,False +55025991703,0.0,False,False +55027960100,5916.0,False,False +55027960200,2921.0,False,False +55027960300,7927.0,False,False +55027960400,4274.0,False,False +55027960500,4285.0,False,False +55027960600,3621.0,False,False +55027960700,5051.0,False,False +55027960800,3715.0,False,False +55027960900,4092.0,False,False +55027961000,4291.0,True,True +55027961100,4429.0,False,False +55027961200,3370.0,False,False +55027961300,5097.0,False,False +55027961400,4078.0,False,False +55027961500,4945.0,False,False +55027961600,4355.0,False,False +55027961700,3088.0,False,False +55027961800,4391.0,False,False +55027961900,5293.0,False,False +55027962000,2576.0,True,True +55029100100,2251.0,False,False +55029100300,2412.0,False,False +55029100400,2749.0,False,False +55029100500,3353.0,False,False +55029100600,3125.0,False,False +55029100700,4761.0,False,False +55029100800,5048.0,False,False +55029100900,1589.0,False,False +55029101000,2184.0,False,False +55029990000,0.0,False,False +55031020300,2692.0,True,True +55031020400,3255.0,False,False +55031020500,2768.0,False,False +55031020600,4293.0,False,False +55031020700,4122.0,False,False +55031020800,3311.0,False,False +55031020900,2260.0,False,False +55031021000,1855.0,False,False +55031021100,2361.0,True,True +55031030100,5948.0,False,False +55031030200,5236.0,False,False +55031030300,5194.0,False,False +55031990000,0.0,False,False +55033970100,3864.0,False,False +55033970200,4633.0,False,False +55033970300,5991.0,False,False +55033970400,6401.0,False,False +55033970500,6288.0,False,False +55033970600,4059.0,False,False +55033970700,7093.0,False,False +55033970800,6430.0,False,False +55035000100,4802.0,True,True +55035000200,5129.0,False,False +55035000301,3700.0,False,False +55035000302,7723.0,False,False +55035000400,8007.0,False,False +55035000501,4567.0,False,False +55035000502,4887.0,False,False +55035000600,4323.0,True,True +55035000700,5466.0,False,False +55035000801,3711.0,False,False +55035000802,3888.0,False,False +55035000803,5936.0,True,True +55035000900,5152.0,False,False +55035001101,2035.0,True,True +55035001200,5970.0,False,False +55035001300,5743.0,False,False +55035001400,7447.0,False,False +55035001500,3631.0,False,False +55035001600,5924.0,False,False +55035001700,5473.0,False,False +55037190100,2484.0,False,False +55037190200,1830.0,False,False +55039040100,4197.0,False,False +55039040200,3282.0,True,True +55039040300,5250.0,True,True +55039040400,2652.0,False,False +55039040500,4043.0,True,True +55039040700,5245.0,False,False +55039040800,4201.0,False,False +55039040900,3343.0,False,False +55039041000,2962.0,False,False +55039041100,10095.0,False,False +55039041300,6675.0,False,False +55039041400,5790.0,False,False +55039041500,3181.0,False,False +55039041600,5947.0,False,False +55039041700,3931.0,False,False +55039041800,4891.0,False,False +55039041900,7128.0,False,False +55039042000,8873.0,False,False +55039042100,4820.0,False,False +55039042200,6091.0,False,False +55041950100,1300.0,False,False +55041950200,2334.0,True,True +55041950300,2621.0,True,False +55041950400,2740.0,True,True +55043960100,3768.0,True,True +55043960200,4257.0,False,False +55043960300,4272.0,False,False +55043960400,3309.0,False,False +55043960500,3550.0,False,False +55043960600,3535.0,False,False +55043960700,3923.0,False,False +55043960800,2792.0,False,False +55043960900,5209.0,False,False +55043961000,8219.0,False,False +55043961100,4632.0,False,False +55043961200,4267.0,False,False +55045960100,6647.0,False,False +55045960200,5659.0,False,False +55045960300,4949.0,False,False +55045960400,4238.0,False,False +55045960500,3922.0,True,False +55045960600,3363.0,False,False +55045960700,3966.0,False,False +55045960800,4152.0,False,False +55047100100,3346.0,False,False +55047100200,2861.0,True,False +55047100300,2913.0,True,False +55047100400,2693.0,False,False +55047100500,3105.0,False,False +55047100600,3837.0,False,False +55049950100,3782.0,False,False +55049950200,3166.0,False,False +55049950300,3353.0,False,False +55049950400,5137.0,False,False +55049950500,4834.0,False,False +55049950600,3346.0,False,False +55051180100,2349.0,True,True +55051180200,1429.0,False,False +55051180300,1909.0,False,False +55051990000,0.0,False,False +55053960100,3910.0,True,False +55053960200,3478.0,False,False +55053960300,4157.0,False,False +55053960400,4341.0,False,False +55053960500,4636.0,True,False +55055100100,6197.0,False,False +55055100200,3222.0,True,True +55055100300,6441.0,False,False +55055100400,5904.0,False,False +55055100500,6533.0,False,False +55055100601,1606.0,False,False +55055100602,3291.0,False,False +55055100700,4623.0,False,False +55055100800,4316.0,False,False +55055100900,3808.0,False,False +55055101000,3799.0,False,False +55055101100,4606.0,False,False +55055101201,2098.0,False,False +55055101202,1601.0,False,False +55055101300,6244.0,False,False +55055101400,3319.0,True,True +55055101500,3837.0,False,False +55055101600,6653.0,False,False +55055101701,1531.0,False,False +55055101702,5072.0,False,False +55057100100,2816.0,True,True +55057100200,3610.0,False,False +55057100300,3542.0,False,False +55057100400,4974.0,False,False +55057100500,4235.0,True,False +55057100600,3324.0,False,False +55057100700,3977.0,False,False +55059000100,6106.0,False,False +55059000300,4766.0,False,True +55059000400,3428.0,False,False +55059000500,5094.0,False,False +55059000601,6159.0,False,False +55059000602,7575.0,False,False +55059000700,5381.0,True,False +55059000800,2874.0,True,True +55059000900,3900.0,True,True +55059001000,2338.0,True,True +55059001100,3324.0,True,True +55059001200,4330.0,True,True +55059001300,4420.0,True,True +55059001400,6648.0,False,False +55059001500,3444.0,False,False +55059001600,3390.0,True,True +55059001700,2662.0,True,True +55059001800,2144.0,True,True +55059001900,2809.0,False,False +55059002000,5711.0,False,False +55059002100,5072.0,True,True +55059002200,3399.0,False,False +55059002300,6031.0,False,False +55059002400,4885.0,False,False +55059002500,3315.0,False,False +55059002601,9262.0,False,False +55059002602,9707.0,False,False +55059002700,6674.0,False,False +55059002800,6601.0,False,False +55059002903,2943.0,False,False +55059002904,5779.0,False,False +55059002905,3899.0,False,False +55059002906,5105.0,False,False +55059003001,4386.0,False,False +55059003002,4963.0,False,False +55059990000,0.0,False,False +55061960100,3093.0,False,False +55061960200,2448.0,False,False +55061960400,8768.0,False,False +55061960500,6078.0,False,False +55061990000,0.0,False,False +55063000100,4714.0,False,False +55063000200,4882.0,False,False +55063000300,2345.0,True,True +55063000400,6377.0,False,False +55063000500,4516.0,False,False +55063000600,2245.0,False,False +55063000700,4402.0,False,False +55063000800,3434.0,False,False +55063000900,3497.0,False,False +55063001000,3717.0,True,True +55063001101,2037.0,False,False +55063001102,3988.0,False,False +55063001200,4026.0,False,False +55063010101,5474.0,False,False +55063010102,4817.0,False,False +55063010201,10155.0,False,False +55063010202,6915.0,False,False +55063010203,2280.0,False,False +55063010300,4449.0,False,False +55063010401,5747.0,False,False +55063010402,9288.0,False,False +55063010500,6176.0,False,False +55063010600,3576.0,False,False +55063010700,5665.0,False,False +55063010800,3172.0,False,False +55065970100,2967.0,False,False +55065970200,3863.0,False,False +55065970300,3638.0,False,False +55065970400,3125.0,False,False +55065970500,3122.0,False,False +55067960100,2590.0,False,False +55067960300,2458.0,False,False +55067960400,3848.0,False,False +55067960500,1798.0,True,True +55067960600,4648.0,True,True +55067960700,3804.0,False,False +55069960100,2372.0,False,False +55069960200,2510.0,False,False +55069960300,1702.0,False,False +55069960400,1721.0,False,False +55069960500,1718.0,False,False +55069960600,4297.0,False,False +55069960700,3809.0,False,False +55069960800,3473.0,False,False +55069960900,2757.0,False,False +55069961000,3385.0,False,False +55071000100,5502.0,False,False +55071000200,2199.0,False,False +55071000300,5758.0,False,False +55071000400,3653.0,False,False +55071000500,2932.0,True,True +55071000600,5319.0,True,True +55071000700,5463.0,True,True +55071000800,3910.0,False,False +55071005100,2404.0,False,False +55071005200,4397.0,False,False +55071005300,2033.0,True,True +55071005400,2780.0,True,False +55071010100,4301.0,False,False +55071010200,5638.0,False,False +55071010300,4274.0,False,False +55071010400,6111.0,False,False +55071010500,3412.0,False,False +55071010600,5106.0,False,False +55071010700,3993.0,False,False +55071990000,0.0,False,False +55073000100,2849.0,True,True +55073000200,2954.0,False,False +55073000300,4946.0,False,False +55073000400,5898.0,True,True +55073000500,2967.0,True,True +55073000601,2111.0,False,False +55073000602,4012.0,True,True +55073000700,5869.0,True,True +55073000800,3337.0,False,False +55073000900,2236.0,True,True +55073001000,3646.0,False,False +55073001102,7860.0,False,False +55073001103,5302.0,False,False +55073001104,6320.0,False,False +55073001201,8730.0,False,False +55073001202,5782.0,False,False +55073001300,6871.0,False,False +55073001400,6955.0,False,False +55073001500,4161.0,False,False +55073001600,5978.0,False,False +55073001700,3613.0,False,False +55073001800,5384.0,False,False +55073001900,5932.0,False,False +55073002000,4035.0,False,False +55073002100,7007.0,False,False +55073002200,3551.0,True,False +55073002300,7090.0,False,False +55075960100,2879.0,False,False +55075960200,3764.0,True,True +55075960600,2393.0,True,True +55075960700,2859.0,True,True +55075960800,2580.0,False,False +55075960900,2460.0,False,False +55075961000,4020.0,False,False +55075961100,5670.0,False,False +55075961200,2680.0,False,False +55075961300,2921.0,True,True +55075961400,4431.0,True,True +55075961500,3734.0,True,True +55075990000,0.0,False,False +55077960100,2734.0,True,True +55077960200,2428.0,False,False +55077960300,3918.0,False,False +55077960400,2641.0,False,False +55077960500,3583.0,False,False +55078940101,1586.0,True,True +55078940102,2972.0,True,True +55079000101,4701.0,True,True +55079000102,3458.0,False,False +55079000201,5418.0,True,True +55079000202,6845.0,False,False +55079000301,1500.0,False,False +55079000302,3179.0,True,True +55079000303,1862.0,False,False +55079000304,3401.0,False,False +55079000400,2537.0,True,True +55079000501,3925.0,False,False +55079000502,4485.0,True,True +55079000600,7029.0,True,True +55079000700,3733.0,False,False +55079000800,5037.0,True,True +55079000900,3484.0,True,True +55079001000,3631.0,True,True +55079001100,2430.0,True,True +55079001200,3087.0,True,True +55079001300,3491.0,True,True +55079001400,2653.0,True,True +55079001500,3782.0,True,True +55079001600,3219.0,True,True +55079001700,4801.0,True,True +55079001800,3074.0,True,True +55079001900,3182.0,True,True +55079002000,2365.0,True,True +55079002100,2044.0,True,True +55079002200,1999.0,True,True +55079002300,4299.0,True,True +55079002400,2483.0,True,True +55079002500,2270.0,True,True +55079002600,2863.0,True,True +55079002700,1669.0,True,True +55079002800,2501.0,True,True +55079002900,2290.0,True,True +55079003000,4635.0,True,True +55079003100,3909.0,True,True +55079003200,2632.0,True,True +55079003300,5321.0,True,True +55079003400,6464.0,True,False +55079003500,3335.0,True,True +55079003600,1998.0,True,True +55079003700,2386.0,False,False +55079003800,2167.0,False,False +55079003900,2770.0,True,True +55079004000,2487.0,True,True +55079004100,2589.0,True,True +55079004200,3392.0,True,True +55079004300,5357.0,True,True +55079004400,3069.0,True,True +55079004500,2257.0,True,True +55079004600,2214.0,True,True +55079004700,4072.0,True,True +55079004800,3891.0,True,True +55079004900,4457.0,True,True +55079005000,5367.0,False,False +55079005100,3381.0,True,True +55079005200,1634.0,False,False +55079005300,2195.0,False,False +55079005400,3487.0,False,False +55079005500,3377.0,False,False +55079005600,2222.0,False,False +55079005700,2647.0,False,False +55079005800,3811.0,False,False +55079005900,3758.0,True,True +55079006000,2319.0,True,True +55079006100,2372.0,True,True +55079006200,2860.0,True,True +55079006300,2167.0,True,True +55079006400,2020.0,True,True +55079006500,2201.0,True,True +55079006600,2175.0,True,True +55079006700,1250.0,True,True +55079006800,2375.0,True,True +55079006900,2511.0,True,True +55079007000,3078.0,True,True +55079007100,2064.0,True,True +55079007200,2987.0,True,True +55079007300,2745.0,False,False +55079007400,3901.0,False,False +55079007500,2640.0,False,False +55079007600,3597.0,False,False +55079007700,3669.0,False,False +55079007800,3160.0,False,False +55079007900,2057.0,False,False +55079008000,1858.0,True,True +55079008100,1060.0,True,True +55079008400,907.0,True,True +55079008500,1287.0,True,True +55079008600,1091.0,True,True +55079008700,1053.0,True,True +55079008800,1663.0,True,True +55079008900,1338.0,True,True +55079009000,2354.0,True,True +55079009100,2262.0,True,True +55079009200,1683.0,True,True +55079009300,2634.0,False,False +55079009400,2501.0,False,False +55079009500,2256.0,False,False +55079009600,2143.0,True,True +55079009700,1589.0,True,True +55079009800,1637.0,True,True +55079009900,1166.0,True,True +55079010600,1427.0,True,True +55079010700,2461.0,False,False +55079010800,2658.0,False,False +55079011000,2527.0,False,False +55079011100,1491.0,False,False +55079011200,2295.0,False,False +55079011300,2521.0,False,False +55079011400,1487.0,False,False +55079012200,2022.0,True,True +55079012300,1090.0,True,True +55079012400,2551.0,True,True +55079012500,2039.0,False,False +55079012600,2503.0,True,True +55079012700,1179.0,False,False +55079012800,3226.0,False,False +55079012900,3217.0,True,True +55079013000,1945.0,True,True +55079013300,905.0,True,True +55079013400,2375.0,True,True +55079013500,1823.0,True,True +55079013600,1981.0,True,True +55079013700,1422.0,True,True +55079014100,1504.0,True,True +55079014300,2348.0,False,False +55079014400,2829.0,False,False +55079014600,3695.0,False,True +55079014700,2635.0,False,False +55079014800,2145.0,False,True +55079014900,1400.0,True,True +55079015700,3126.0,True,True +55079015800,2515.0,True,True +55079015900,3132.0,True,True +55079016000,2963.0,True,True +55079016100,3523.0,True,True +55079016200,3835.0,True,True +55079016300,3846.0,True,True +55079016400,3965.0,True,True +55079016500,2366.0,True,True +55079016600,1871.0,True,True +55079016700,3181.0,True,True +55079016800,3518.0,True,True +55079016900,3581.0,True,True +55079017000,5222.0,True,True +55079017100,3132.0,True,True +55079017200,2884.0,True,True +55079017300,4111.0,True,True +55079017400,2760.0,True,True +55079017500,3535.0,True,True +55079017600,2883.0,True,True +55079017900,3028.0,False,False +55079018000,2779.0,True,True +55079018100,1754.0,False,False +55079018200,1637.0,False,False +55079018300,2451.0,False,False +55079018400,1384.0,False,False +55079018500,1930.0,True,True +55079018600,2722.0,True,True +55079018700,3551.0,True,True +55079018800,1904.0,True,True +55079018900,1941.0,True,True +55079019000,4607.0,False,False +55079019100,3868.0,True,True +55079019200,3411.0,False,False +55079019300,3150.0,False,False +55079019400,3920.0,True,True +55079019500,3359.0,False,False +55079019600,3508.0,False,False +55079019700,6068.0,False,False +55079019800,6061.0,False,False +55079019900,3956.0,False,False +55079020000,3600.0,True,True +55079020100,4131.0,False,True +55079020200,3731.0,True,True +55079020300,4139.0,True,True +55079020400,3641.0,True,True +55079020500,2793.0,True,True +55079020600,3613.0,False,False +55079020700,4592.0,False,False +55079020800,3208.0,False,False +55079020900,2782.0,False,False +55079021000,2211.0,False,False +55079021100,1518.0,False,False +55079021200,2166.0,True,True +55079021300,1581.0,True,True +55079021400,3290.0,True,True +55079021500,3000.0,False,False +55079021600,4620.0,True,True +55079021700,6212.0,False,False +55079021800,2249.0,False,False +55079030100,4439.0,False,False +55079035100,2222.0,False,False +55079035200,4428.0,False,False +55079040100,1449.0,False,False +55079050101,5465.0,False,False +55079050102,6500.0,False,False +55079060101,3867.0,False,False +55079060102,3121.0,False,False +55079060200,5955.0,False,False +55079070100,4283.0,False,False +55079070200,5002.0,False,False +55079070300,4687.0,False,False +55079080100,2679.0,False,False +55079080200,3557.0,False,False +55079080300,3835.0,False,False +55079080400,3219.0,False,False +55079090100,4201.0,False,False +55079090200,1870.0,False,False +55079090300,3152.0,False,False +55079090600,4643.0,False,False +55079090700,3148.0,False,False +55079090800,2233.0,False,False +55079090900,4007.0,False,False +55079091000,4745.0,False,False +55079091100,4320.0,False,False +55079091200,5588.0,False,False +55079091300,3823.0,False,False +55079091400,2335.0,False,False +55079100100,3987.0,False,False +55079100200,4130.0,True,True +55079100300,2499.0,False,False +55079100400,2826.0,False,False +55079100500,3674.0,False,False +55079100600,1998.0,False,False +55079100700,3337.0,False,False +55079100800,2814.0,False,False +55079100900,3931.0,False,False +55079101000,5149.0,False,False +55079101100,1779.0,False,False +55079101200,3175.0,False,False +55079101300,2631.0,False,False +55079101400,3910.0,False,False +55079101500,4148.0,False,False +55079101600,4112.0,False,False +55079101700,3493.0,False,False +55079101800,2432.0,False,False +55079110100,4146.0,False,False +55079120101,4171.0,False,False +55079120102,3924.0,False,False +55079120201,3771.0,False,False +55079120202,3045.0,False,False +55079120203,3487.0,False,False +55079120300,2159.0,False,False +55079120400,6505.0,False,False +55079120501,4344.0,False,False +55079120502,5519.0,False,False +55079130100,4700.0,False,False +55079130200,2946.0,False,False +55079140100,3099.0,False,False +55079140201,5156.0,False,False +55079140202,5921.0,False,False +55079150100,8696.0,False,False +55079150301,5832.0,False,False +55079150303,4925.0,False,False +55079150304,4313.0,False,False +55079160100,6607.0,False,False +55079160202,7539.0,False,False +55079160203,6478.0,False,False +55079160204,5295.0,False,False +55079160300,10147.0,False,False +55079170100,2638.0,False,False +55079170200,3974.0,True,True +55079170300,2454.0,False,False +55079170400,3107.0,False,False +55079170500,2594.0,True,True +55079170600,3492.0,True,True +55079170700,2698.0,False,False +55079180100,2891.0,False,False +55079180200,5095.0,False,False +55079180300,3071.0,True,True +55079180400,2608.0,False,False +55079180500,4606.0,False,False +55079185100,4667.0,False,False +55079185200,4882.0,False,False +55079185300,3906.0,False,False +55079185400,1351.0,True,True +55079185500,1599.0,True,True +55079185600,1688.0,True,True +55079185700,1603.0,True,True +55079185800,1458.0,True,True +55079185900,903.0,True,True +55079186000,1412.0,True,True +55079186100,1879.0,True,True +55079186200,1516.0,True,True +55079186300,4277.0,False,False +55079186400,1398.0,False,False +55079186500,2015.0,True,True +55079186600,2040.0,True,True +55079186800,1680.0,True,True +55079186900,2403.0,False,False +55079187000,3622.0,False,False +55079187200,5702.0,False,False +55079187300,6596.0,False,False +55079187400,3524.0,False,False +55079980000,0.0,False,False +55079990000,0.0,False,False +55081950100,4744.0,False,False +55081950200,4825.0,False,False +55081950300,6436.0,False,False +55081950400,4485.0,False,False +55081950500,5960.0,False,False +55081950600,4321.0,False,False +55081950700,4969.0,False,False +55081950800,4458.0,True,True +55081950900,5573.0,False,False +55083100300,2928.0,False,True +55083100500,2256.0,True,True +55083100600,2764.0,True,True +55083100700,2644.0,False,False +55083100800,2465.0,False,False +55083100900,2891.0,True,True +55083101000,3932.0,False,False +55083101100,4610.0,False,False +55083101200,4204.0,False,False +55083101300,8952.0,False,False +55083990000,0.0,False,False +55085970101,1656.0,False,False +55085970102,3035.0,False,False +55085970400,2911.0,False,False +55085970500,1941.0,False,False +55085970601,2165.0,False,False +55085970602,3601.0,False,False +55085970800,2260.0,False,False +55085970900,2307.0,False,False +55085971001,1238.0,False,False +55085971002,2232.0,False,False +55085971100,2076.0,False,False +55085971300,1845.0,False,False +55085971400,3613.0,True,True +55085971500,4501.0,False,False +55087010100,2830.0,True,True +55087010200,4348.0,True,True +55087010300,2366.0,True,True +55087010500,4254.0,False,False +55087010601,3971.0,True,False +55087010602,4057.0,False,False +55087010700,4313.0,False,False +55087010800,1441.0,False,False +55087010900,2204.0,False,False +55087011000,5633.0,False,False +55087011101,4737.0,False,False +55087011102,7089.0,False,False +55087011200,3077.0,False,False +55087011300,2967.0,False,False +55087011400,5423.0,False,False +55087011501,3319.0,False,False +55087011502,4278.0,False,False +55087011600,6987.0,False,False +55087011700,2491.0,False,False +55087011800,1949.0,False,False +55087011900,8757.0,False,False +55087012000,7085.0,False,False +55087012100,7616.0,False,False +55087012200,1942.0,True,True +55087012300,1541.0,False,False +55087012400,3343.0,False,False +55087012503,3787.0,False,False +55087012504,3777.0,False,False +55087012505,4935.0,False,False +55087012506,4034.0,False,False +55087012601,9930.0,False,False +55087012602,4971.0,False,False +55087012700,6280.0,False,False +55087012800,7841.0,False,False +55087012901,6211.0,False,False +55087012902,3764.0,False,False +55087013100,5889.0,False,False +55087013200,3862.0,False,False +55087013300,7672.0,False,False +55087940000,4729.0,False,True +55089610101,4452.0,False,False +55089610102,3939.0,False,False +55089620100,5890.0,False,False +55089630100,2643.0,False,False +55089630201,4742.0,False,False +55089630202,5146.0,False,False +55089640100,5811.0,False,False +55089640200,9009.0,False,False +55089650101,6150.0,False,False +55089650102,2949.0,False,False +55089650200,4820.0,False,False +55089650300,5626.0,False,False +55089660100,3157.0,False,False +55089660201,3894.0,False,False +55089660202,6472.0,False,False +55089660301,5646.0,False,False +55089660303,5056.0,False,False +55089660304,3195.0,False,False +55089990000,0.0,False,False +55091950100,3921.0,False,False +55091950200,3344.0,False,False +55093960100,2912.0,False,False +55093960200,6171.0,False,False +55093960300,5761.0,False,False +55093960400,5466.0,False,False +55093960500,8288.0,False,False +55093960600,4924.0,False,False +55093960700,4870.0,False,False +55093960800,3585.0,False,False +55095960100,3576.0,True,True +55095960200,3744.0,False,False +55095960300,5453.0,False,False +55095960500,2921.0,False,False +55095960600,2165.0,False,False +55095960700,5804.0,False,False +55095960800,6181.0,False,False +55095960900,5134.0,False,False +55095961000,4641.0,False,False +55095961100,3819.0,False,False +55097960100,4467.0,False,False +55097960200,4783.0,False,False +55097960300,3803.0,False,False +55097960400,6774.0,False,False +55097960500,7695.0,False,False +55097960600,5311.0,False,False +55097960701,5164.0,False,False +55097960702,3451.0,False,False +55097960800,5080.0,False,False +55097960900,3194.0,False,False +55097961000,2610.0,False,False +55097961100,7147.0,False,False +55097961200,6180.0,False,False +55097961300,4973.0,False,False +55099970100,2476.0,False,False +55099970200,2560.0,True,True +55099970400,1805.0,False,False +55099970500,2064.0,True,True +55099970600,2176.0,False,False +55099970700,2335.0,True,True +55101000100,1076.0,True,False +55101000200,5532.0,True,True +55101000300,3889.0,True,True +55101000400,3456.0,True,True +55101000500,4861.0,True,True +55101000600,5131.0,True,True +55101000700,5554.0,False,False +55101000800,4026.0,False,False +55101000901,3761.0,False,False +55101000903,4001.0,False,False +55101000904,5036.0,False,False +55101001001,2345.0,True,True +55101001002,2823.0,False,False +55101001003,4377.0,True,True +55101001100,6121.0,False,False +55101001201,3620.0,True,False +55101001202,6894.0,False,False +55101001301,4250.0,False,False +55101001302,4109.0,True,True +55101001400,6586.0,False,False +55101001501,3528.0,False,False +55101001502,7032.0,False,False +55101001504,2731.0,False,False +55101001505,4151.0,False,False +55101001601,6651.0,False,False +55101001602,2906.0,False,False +55101001701,3599.0,False,False +55101001702,6641.0,False,False +55101001703,4362.0,False,False +55101001705,5590.0,False,False +55101001706,3555.0,False,False +55101001801,5169.0,False,False +55101001802,2908.0,False,False +55101001900,3916.0,False,False +55101002001,3210.0,False,False +55101002002,4890.0,False,False +55101002100,3239.0,False,False +55101002401,5575.0,False,False +55101002402,5677.0,False,False +55101002600,5792.0,False,False +55101002701,3964.0,False,False +55101002702,6055.0,False,False +55101002800,6049.0,False,False +55101980000,964.0,True,True +55101990000,0.0,False,False +55103970100,2986.0,True,True +55103970200,4634.0,False,False +55103970300,2542.0,False,False +55103970400,3246.0,False,False +55103970500,4051.0,False,False +55105000100,958.0,True,True +55105000200,2775.0,False,False +55105000300,2862.0,True,True +55105000400,3983.0,True,True +55105000500,4447.0,False,False +55105000600,3282.0,True,True +55105000700,4184.0,False,False +55105000800,3814.0,False,False +55105000900,2829.0,False,False +55105001000,3311.0,True,True +55105001100,4667.0,False,False +55105001201,5342.0,False,False +55105001202,6318.0,False,False +55105001302,6509.0,False,False +55105001303,4711.0,False,False +55105001304,8461.0,False,False +55105001400,6072.0,True,False +55105001500,2413.0,False,True +55105001600,4468.0,True,True +55105001700,5029.0,True,True +55105001800,4571.0,True,True +55105001900,2818.0,False,False +55105002000,3772.0,True,False +55105002100,3897.0,True,False +55105002200,2309.0,False,False +55105002300,1923.0,True,False +55105002400,3916.0,False,False +55105002500,2543.0,True,True +55105002601,5426.0,False,False +55105002602,4263.0,False,False +55105002700,2474.0,False,False +55105002800,5192.0,False,False +55105002900,8278.0,False,False +55105003001,4910.0,False,False +55105003002,5506.0,False,False +55105003100,7737.0,False,False +55105003200,2506.0,False,False +55105003300,3676.0,False,False +55107960100,3505.0,False,False +55107960200,1995.0,True,False +55107960300,2224.0,True,True +55107960400,2959.0,True,True +55107960500,3449.0,True,True +55109120100,1932.0,False,False +55109120201,5801.0,False,False +55109120202,5430.0,False,False +55109120300,5778.0,False,False +55109120400,11074.0,False,False +55109120501,5581.0,False,False +55109120502,5665.0,False,False +55109120600,8260.0,False,False +55109120700,4534.0,False,False +55109120800,8216.0,False,False +55109120901,4320.0,False,False +55109120903,10283.0,False,False +55109120904,4211.0,False,False +55109121000,7647.0,False,False +55111000100,6988.0,False,False +55111000200,5012.0,False,False +55111000300,7085.0,False,False +55111000401,5422.0,False,False +55111000402,3408.0,False,False +55111000500,3449.0,False,False +55111000600,6799.0,False,False +55111000700,2933.0,False,False +55111000800,3877.0,False,False +55111000900,4842.0,False,False +55111001001,6763.0,False,False +55111001002,3086.0,True,True +55111001100,4258.0,False,False +55113100300,5018.0,True,False +55113100400,2146.0,False,False +55113100500,3145.0,False,False +55113100700,1512.0,True,True +55113100800,1553.0,True,True +55113940000,3025.0,True,True +55115100100,2851.0,False,False +55115100200,1753.0,False,False +55115100300,3673.0,False,False +55115100400,4447.0,True,False +55115100500,4773.0,True,False +55115100600,4206.0,True,True +55115100700,3119.0,False,False +55115100800,4877.0,False,False +55115100900,3625.0,False,False +55115101000,3741.0,False,False +55115101100,3839.0,False,False +55117000100,3481.0,False,False +55117000201,2961.0,True,True +55117000202,4240.0,False,False +55117000300,7049.0,False,False +55117000400,4424.0,False,False +55117000500,3168.0,True,True +55117000800,5553.0,True,True +55117000900,5228.0,False,False +55117001000,7005.0,False,False +55117001100,3604.0,False,False +55117010100,1492.0,False,False +55117010200,4792.0,False,False +55117010300,3282.0,False,False +55117010400,3605.0,False,False +55117010501,7764.0,False,False +55117010502,3816.0,False,False +55117010601,5484.0,False,False +55117010602,3911.0,False,False +55117010700,8669.0,False,False +55117010800,3372.0,False,False +55117010900,3238.0,False,False +55117011000,2818.0,False,False +55117011100,2913.0,False,False +55117011200,3523.0,False,False +55117011300,7274.0,False,False +55117011400,2512.0,False,False +55117990000,0.0,False,False +55119960100,4211.0,False,False +55119960200,2205.0,False,False +55119960300,2977.0,True,True +55119960400,4879.0,False,False +55119960500,2701.0,False,False +55119960600,3352.0,True,True +55121100100,3263.0,False,False +55121100200,3407.0,False,False +55121100300,2471.0,False,False +55121100400,4078.0,False,False +55121100500,3013.0,False,False +55121100600,4003.0,True,True +55121100700,5342.0,False,False +55121100800,3922.0,False,False +55123960100,4271.0,True,True +55123960200,4342.0,True,True +55123960300,4671.0,False,False +55123960400,4847.0,True,False +55123960500,3510.0,True,True +55123960600,4864.0,False,False +55123960700,4128.0,False,False +55125940000,3491.0,True,True +55125950200,4204.0,False,False +55125950500,5892.0,True,False +55125950600,3672.0,False,False +55125950700,4492.0,True,False +55127000101,5706.0,False,False +55127000102,2882.0,False,False +55127000200,5928.0,False,False +55127000301,2925.0,False,False +55127000302,6633.0,False,False +55127000400,3517.0,False,False +55127000501,4506.0,False,False +55127000502,3922.0,False,True +55127000600,5760.0,False,False +55127000701,4015.0,False,False +55127000702,4528.0,True,True +55127000800,4856.0,False,False +55127000901,5968.0,False,False +55127000902,3381.0,False,False +55127001000,5166.0,False,False +55127001501,3286.0,False,False +55127001502,5242.0,False,False +55127001602,6255.0,False,False +55127001603,2433.0,False,False +55127001604,5001.0,False,False +55127001701,5892.0,False,False +55127001702,5272.0,False,False +55129950100,1941.0,True,True +55129950200,1735.0,False,False +55129950300,2683.0,False,False +55129950500,4974.0,False,False +55129950600,4355.0,False,False +55131400102,3944.0,False,False +55131400103,3754.0,False,False +55131400104,5831.0,False,False +55131410100,5315.0,False,False +55131420103,6289.0,False,False +55131420104,4740.0,False,False +55131420105,4680.0,False,False +55131420106,3369.0,False,False +55131420200,5562.0,False,False +55131420300,5707.0,False,False +55131420401,2404.0,False,False +55131420402,2261.0,False,False +55131430100,5608.0,False,False +55131440103,4921.0,False,False +55131440104,6273.0,False,False +55131440105,3793.0,False,False +55131440106,3809.0,False,False +55131440200,3839.0,False,False +55131450103,5114.0,False,False +55131450104,7011.0,False,False +55131450105,2428.0,False,False +55131450106,6114.0,False,False +55131460101,6540.0,False,False +55131460102,5150.0,False,False +55131470100,5417.0,False,False +55131470202,5885.0,False,False +55131470203,4924.0,False,False +55131470204,4243.0,False,False +55133200101,4715.0,False,False +55133200102,5073.0,False,False +55133200103,3217.0,False,False +55133200201,3764.0,False,False +55133200202,4333.0,False,False +55133200300,4897.0,False,False +55133200400,6473.0,False,False +55133200500,5851.0,False,False +55133200600,1821.0,False,False +55133200700,3895.0,False,False +55133200801,4596.0,False,False +55133200803,4452.0,False,False +55133200804,3682.0,False,False +55133200901,3870.0,False,False +55133200902,3884.0,False,False +55133201000,6192.0,False,False +55133201101,5381.0,False,False +55133201102,2993.0,False,False +55133201201,1936.0,False,False +55133201202,6255.0,False,False +55133201203,3080.0,False,False +55133201300,5097.0,False,False +55133201402,5034.0,False,False +55133201403,4045.0,False,False +55133201404,3425.0,False,False +55133201503,6418.0,False,False +55133201504,6423.0,False,False +55133201505,2917.0,False,False +55133201506,4731.0,False,False +55133201600,5326.0,False,False +55133201701,4583.0,False,False +55133201703,5697.0,False,False +55133201704,5494.0,False,False +55133201800,1520.0,False,False +55133201900,5938.0,False,False +55133202001,5449.0,False,False +55133202002,3946.0,False,False +55133202101,4271.0,False,False +55133202102,5177.0,False,False +55133202103,3585.0,False,False +55133202201,4487.0,False,False +55133202202,5572.0,True,True +55133202301,4282.0,False,False +55133202302,6641.0,False,False +55133202400,4968.0,False,False +55133202500,3972.0,False,False +55133202600,3307.0,False,False +55133202700,1673.0,True,True +55133202800,4285.0,False,False +55133202901,4713.0,False,False +55133202902,3750.0,False,False +55133203000,2474.0,False,False +55133203101,6392.0,False,False +55133203102,7388.0,False,False +55133203103,4975.0,False,False +55133203200,4553.0,False,False +55133203303,3656.0,False,False +55133203304,5042.0,False,False +55133203305,4498.0,False,False +55133203306,6449.0,False,False +55133203402,3718.0,False,False +55133203403,5633.0,False,False +55133203404,3149.0,False,False +55133203405,4387.0,False,False +55133203406,7194.0,False,False +55133203500,6685.0,False,False +55133203601,4130.0,False,False +55133203602,5603.0,False,False +55133203702,4732.0,False,False +55133203703,3397.0,False,False +55133203704,5160.0,False,False +55133203802,6341.0,False,False +55133203803,3851.0,False,False +55133203804,7780.0,False,False +55133203901,4846.0,False,False +55133203902,4286.0,False,False +55133204002,5673.0,False,False +55133204003,3891.0,False,False +55133204004,4281.0,False,False +55133204100,5239.0,False,False +55133204200,6906.0,False,False +55133204301,5913.0,False,False +55133204302,4165.0,False,False +55133204400,2115.0,False,False +55133204501,2587.0,False,False +55133204502,6300.0,False,False +55135100100,3853.0,False,False +55135100200,2688.0,False,False +55135100300,3631.0,False,False +55135100400,4377.0,False,False +55135100500,2765.0,False,False +55135100600,5044.0,False,False +55135100700,3277.0,False,False +55135100800,4604.0,False,False +55135100900,5955.0,False,False +55135101000,6334.0,False,False +55135101100,4841.0,True,False +55135101200,3876.0,False,False +55137960100,2819.0,False,False +55137960200,3813.0,False,False +55137960300,3288.0,False,False +55137960400,3338.0,True,True +55137960600,2117.0,False,False +55137960700,4430.0,False,False +55137960800,4388.0,True,False +55139000100,2453.0,False,False +55139000200,2721.0,False,False +55139000300,4117.0,False,False +55139000400,2996.0,True,True +55139000500,6570.0,False,False +55139000700,4824.0,False,False +55139000800,2986.0,False,False +55139000900,3342.0,False,False +55139001000,2706.0,False,False +55139001100,4200.0,False,False +55139001200,2189.0,False,False +55139001300,2576.0,True,True +55139001400,3928.0,False,False +55139001500,3213.0,False,False +55139001600,4767.0,False,False +55139001700,5434.0,False,False +55139001801,5061.0,False,False +55139001803,6258.0,False,False +55139001804,4653.0,False,False +55139001900,5020.0,False,False +55139002000,7192.0,False,False +55139002100,3862.0,False,False +55139002201,5196.0,False,False +55139002202,2845.0,False,False +55139002300,5584.0,False,False +55139002400,10505.0,False,False +55139002500,4866.0,True,True +55139002601,3682.0,False,False +55139002602,4898.0,False,False +55139002700,2554.0,False,False +55139002800,4683.0,False,False +55139002900,2403.0,True,True +55139003000,1615.0,False,False +55139003100,2002.0,False,False +55139003200,2428.0,False,False +55139003300,2486.0,False,False +55139003400,4606.0,True,True +55139003500,2622.0,True,False +55139003600,4070.0,False,False +55139003701,3640.0,False,False +55139003702,8658.0,False,False +55141010100,4699.0,False,False +55141010200,4959.0,False,False +55141010300,2740.0,False,False +55141010400,3573.0,True,False +55141010500,3142.0,False,False +55141010600,4169.0,False,False +55141010700,5055.0,False,False +55141010800,2788.0,False,False +55141010900,4185.0,False,False +55141011000,5424.0,True,True +55141011100,3492.0,False,False +55141011200,3743.0,True,True +55141011300,4855.0,True,False +55141011400,4886.0,False,False +55141011500,5850.0,False,False +55141011600,4976.0,False,False +55141011700,4576.0,True,False +56001962700,3693.0,False,False +56001962800,3126.0,False,False +56001962900,1677.0,False,False +56001963000,2482.0,False,False +56001963100,8223.0,False,False +56001963400,3201.0,False,False +56001963500,2323.0,False,False +56001963600,4493.0,False,False +56001963700,6885.0,False,False +56001963900,2287.0,False,False +56003962600,2825.0,False,False +56003962700,3838.0,True,True +56003962800,5219.0,False,False +56005000100,11160.0,False,False +56005000200,8243.0,False,False +56005000300,5166.0,True,False +56005000400,3476.0,False,False +56005000500,6129.0,False,False +56005000600,5100.0,False,False +56005000700,8135.0,False,False +56007967600,2337.0,False,False +56007967700,3899.0,False,False +56007967800,4314.0,True,True +56007968000,3133.0,False,False +56007968100,1564.0,True,True +56009956400,4716.0,False,False +56009956500,3198.0,False,False +56009956600,3145.0,False,False +56009956700,2862.0,False,False +56011950200,4452.0,False,False +56011950300,3020.0,False,False +56013000100,3751.0,False,False +56013000200,3937.0,False,False +56013000300,4241.0,False,False +56013000400,1703.0,False,False +56013940100,3721.0,True,True +56013940201,4024.0,False,False +56013940202,4890.0,True,True +56013940300,5111.0,True,True +56013940400,5789.0,False,False +56013940500,2645.0,False,False +56015957700,1959.0,False,False +56015957800,3781.0,False,False +56015957900,5100.0,True,True +56015958000,2502.0,False,False +56017967800,2697.0,False,False +56017967900,1910.0,False,False +56019955100,2679.0,False,False +56019955200,5808.0,False,False +56021000200,4791.0,True,True +56021000300,4069.0,False,False +56021000401,5271.0,True,True +56021000402,6626.0,True,True +56021000501,8092.0,False,False +56021000600,5969.0,False,False +56021000700,3954.0,True,True +56021000800,1801.0,False,False +56021000900,2759.0,False,False +56021001000,3163.0,False,False +56021001100,2456.0,False,False +56021001200,4662.0,False,False +56021001300,8203.0,False,False +56021001401,4105.0,False,False +56021001402,2671.0,False,False +56021001501,5517.0,False,False +56021001502,5083.0,False,False +56021001901,5088.0,False,False +56021001902,4187.0,False,False +56021002000,9853.0,False,False +56021980801,0.0,False,False +56023978000,6767.0,False,False +56023978100,7015.0,False,False +56023978200,1928.0,True,True +56023978400,3564.0,False,False +56025000200,3345.0,True,True +56025000300,4129.0,True,True +56025000400,4170.0,False,False +56025000501,5099.0,False,False +56025000502,2848.0,False,False +56025000600,8385.0,False,False +56025000700,2232.0,False,False +56025000800,3807.0,False,False +56025000901,5498.0,False,False +56025000902,3882.0,False,False +56025001000,5219.0,False,False +56025001100,2622.0,True,True +56025001200,2487.0,True,True +56025001401,5730.0,False,False +56025001602,7513.0,False,False +56025001603,3724.0,False,False +56025001700,4963.0,False,False +56025001800,4680.0,False,False +56027957200,2422.0,True,True +56029965100,5287.0,False,False +56029965200,6362.0,False,False +56029965300,7349.0,False,False +56029965400,5994.0,False,False +56029965500,4156.0,False,False +56031959100,1668.0,False,False +56031959400,6914.0,False,False +56033000100,5052.0,False,False +56033000200,3065.0,False,False +56033000300,3618.0,False,False +56033000400,5321.0,False,False +56033000500,7720.0,False,False +56033000600,5364.0,False,False +56035000101,3431.0,False,False +56035000102,6449.0,False,False +56037970500,2834.0,True,True +56037970601,4058.0,False,False +56037970602,3386.0,False,False +56037970700,4095.0,False,False +56037970800,3401.0,False,True +56037970901,7938.0,False,False +56037970902,5349.0,False,False +56037970903,2847.0,False,False +56037971000,1975.0,False,False +56037971100,3734.0,False,False +56037971200,2752.0,False,False +56037971600,1152.0,False,False +56039967600,5751.0,False,False +56039967701,3346.0,False,False +56039967702,4958.0,False,False +56039967800,9225.0,False,False +56041975200,6352.0,False,False +56041975300,7941.0,True,True +56041975400,6186.0,False,False +56043000200,3051.0,False,False +56043000301,2482.0,False,False +56043000302,2494.0,False,False +56045951100,3294.0,False,False +56045951300,3755.0,False,False +60010950100,2545.0,False,True +60010950200,2187.0,False,True +60010950300,3323.0,False,True +60010950500,2902.0,False,True +60010950600,3953.0,False,True +60010950700,3444.0,False,True +60010950900,4676.0,False,True +60020951800,1143.0,False,True +60030951900,,False,False +60040952000,17.0,False,False +60050951000,1843.0,False,True +60050951100,5918.0,False,True +60050951201,2899.0,False,True +60050951202,5044.0,False,True +60050951203,5154.0,False,True +60050951300,3561.0,False,True +60050951500,1807.0,False,True +60050951600,5103.0,False,True +66010950100,1957.0,False,False +66010950200,1104.0,False,False +66010950300,222.0,False,False +66010950401,5930.0,False,False +66010950402,5981.0,False,False +66010950501,2151.0,False,True +66010950502,6431.0,False,False +66010950701,5370.0,False,False +66010950702,4406.0,False,False +66010950801,3764.0,False,False +66010950802,3088.0,False,False +66010950900,5735.0,False,False +66010951000,4104.0,False,False +66010951100,6343.0,False,False +66010951600,38.0,False,False +66010951700,2435.0,False,False +66010951800,189.0,False,True +66010951901,3566.0,False,True +66010951902,4255.0,False,False +66010952200,3893.0,False,False +66010952300,2664.0,False,False +66010952400,1608.0,False,True +66010952700,4938.0,False,False +66010952800,6.0,False,False +66010952900,5805.0,False,False +66010953000,3498.0,False,False +66010953101,3828.0,False,False +66010953102,2994.0,False,False +66010953200,2592.0,False,False +66010953300,4374.0,False,False +66010953400,1051.0,False,False +66010953500,90.0,False,True +66010953600,3718.0,False,False +66010953900,4223.0,False,False +66010954000,2257.0,False,False +66010954300,1391.0,False,False +66010954400,63.0,False,False +66010954500,2281.0,False,False +66010954700,2448.0,False,False +66010954800,2469.0,False,True +66010955100,3050.0,False,False +66010955200,2273.0,False,False +66010955300,1850.0,False,True +66010955400,782.0,False,True +66010955600,1275.0,False,False +66010955700,5882.0,False,False +66010955800,6917.0,False,False +66010955900,3699.0,False,False +66010956000,2451.0,False,True +66010956100,2137.0,False,False +66010956200,3803.0,False,False +66010956300,1979.0,False,False +66010980100,,False,False +66010980200,,False,False +66010980300,,False,False +66010980400,,False,False +66010990000,,False,False +69085950100,,False,False +69100950100,2527.0,False,True +69100990000,,False,False +69110000100,1527.0,False,True +69110000200,1457.0,False,True +69110000300,1705.0,False,True +69110000400,3983.0,False,True +69110000500,2820.0,False,True +69110000600,2577.0,False,True +69110000700,3369.0,False,True +69110000800,2078.0,False,True +69110000900,3650.0,False,True +69110001000,2451.0,False,True +69110001100,1520.0,False,True +69110001200,2635.0,False,True +69110001300,3272.0,False,True +69110001400,4980.0,False,True +69110001500,3853.0,False,True +69110001600,4226.0,False,True +69110001700,2117.0,False,False +69110990000,,False,False +69120950101,1939.0,False,True +69120950102,,False,False +69120950200,1197.0,False,True +69120990000,,False,False +72001956300,3996.0,True,True +72001956400,2513.0,True,True +72001956500,2777.0,True,True +72001956600,2336.0,True,True +72001956700,2036.0,True,True +72001956800,4233.0,True,True +72003430100,4024.0,True,True +72003430200,4643.0,True,True +72003430300,2453.0,True,True +72003430401,4915.0,True,True +72003430402,4563.0,True,True +72003430501,5380.0,True,True +72003430502,4653.0,True,True +72003430601,4011.0,True,True +72003430602,3312.0,True,True +72003990000,0.0,False,False +72005400100,4708.0,True,True +72005400300,3073.0,True,True +72005400400,3781.0,True,True +72005400501,3554.0,True,True +72005400502,5855.0,True,True +72005400600,2641.0,True,True +72005400700,2410.0,True,True +72005400800,1130.0,True,True +72005400900,2110.0,True,True +72005401000,1340.0,True,True +72005401100,1108.0,True,True +72005401200,3294.0,True,True +72005401301,4095.0,True,True +72005401302,5260.0,True,True +72005401401,4399.0,True,True +72005401402,4045.0,True,True +72005990000,0.0,False,False +72007230100,4002.0,True,True +72007230200,6315.0,True,True +72007230300,2447.0,True,True +72007230400,4922.0,True,True +72007230501,4115.0,True,True +72007230502,3947.0,True,True +72009250100,5811.0,True,True +72009250200,4089.0,True,True +72009250300,2455.0,True,True +72009250400,2763.0,True,True +72009250500,4480.0,True,True +72009250600,3390.0,True,True +72011810100,3029.0,True,True +72011810200,6302.0,True,True +72011810300,2428.0,True,True +72011810400,796.0,True,True +72011810500,6822.0,True,True +72011810600,3946.0,True,True +72011810700,3611.0,True,True +72011990000,0.0,False,False +72013300101,4437.0,True,True +72013300102,5062.0,True,True +72013300200,3478.0,True,True +72013300301,2766.0,True,True +72013300302,4741.0,True,True +72013300400,1399.0,True,True +72013300500,731.0,True,True +72013300700,1258.0,True,True +72013300800,4858.0,True,True +72013301000,4755.0,True,False +72013301100,7170.0,True,True +72013301200,3360.0,True,True +72013301300,3033.0,True,True +72013301400,1071.0,True,True +72013301500,5432.0,True,True +72013301600,3626.0,True,True +72013301700,4235.0,True,True +72013301800,1603.0,True,True +72013301900,4468.0,True,True +72013302000,2978.0,True,True +72013302100,4978.0,True,True +72013302201,2118.0,True,True +72013302202,4773.0,True,True +72013302300,3060.0,True,True +72013992900,0.0,False,False +72015280101,2886.0,True,True +72015280102,5872.0,True,True +72015280201,4237.0,True,True +72015280202,4810.0,True,True +72015991500,0.0,False,False +72017590100,6372.0,True,True +72017590200,3957.0,True,True +72017590300,8597.0,True,True +72017590400,5153.0,True,True +72017990000,0.0,False,False +72019952201,4472.0,True,True +72019952202,5474.0,True,True +72019952301,3775.0,True,True +72019952302,5448.0,True,True +72019952400,2381.0,True,True +72019952500,6843.0,True,True +72021030101,6094.0,True,True +72021030103,4335.0,True,True +72021030104,3914.0,False,False +72021030105,2489.0,False,False +72021030200,2963.0,True,True +72021030300,2953.0,True,True +72021030700,1321.0,True,True +72021030800,1044.0,True,True +72021030901,1831.0,True,True +72021030902,2131.0,True,False +72021030903,1962.0,True,True +72021030904,2103.0,True,True +72021031004,2569.0,True,True +72021031005,3372.0,True,True +72021031011,4001.0,False,False +72021031013,7922.0,True,True +72021031021,3600.0,True,True +72021031023,2857.0,True,False +72021031031,4259.0,True,True +72021031032,2073.0,False,True +72021031033,4132.0,True,True +72021031101,2334.0,True,True +72021031113,3506.0,True,True +72021031114,2763.0,True,True +72021031121,2771.0,True,True +72021031122,2926.0,True,True +72021031123,1989.0,True,True +72021031124,1818.0,True,True +72021031125,2261.0,True,True +72021031201,2565.0,True,True +72021031202,1920.0,True,True +72021031203,1710.0,True,True +72021031301,4470.0,True,True +72021031304,1987.0,True,True +72021031305,4038.0,True,True +72021031306,3194.0,True,False +72021031307,2113.0,True,False +72021031401,2567.0,True,True +72021031402,2401.0,True,True +72021031403,2552.0,True,True +72021031501,2008.0,True,True +72021031502,1672.0,True,True +72021031503,2241.0,True,True +72021031611,2020.0,True,True +72021031612,4373.0,True,True +72021031621,1926.0,True,True +72021031622,2280.0,True,True +72021031631,2208.0,True,True +72021031632,2149.0,True,True +72021031641,1880.0,True,True +72021031651,2378.0,True,True +72021031701,3494.0,True,True +72021031702,3472.0,True,True +72021031703,3051.0,True,True +72021031704,4435.0,True,True +72021031800,6071.0,True,True +72021031900,4626.0,True,True +72021032000,1184.0,True,True +72021032100,1861.0,True,True +72021032200,2275.0,True,True +72021032301,3022.0,True,True +72021032302,1756.0,True,True +72023830101,4892.0,True,True +72023830102,5290.0,True,True +72023830200,6599.0,True,True +72023830300,4928.0,True,True +72023830400,4244.0,True,True +72023830502,4117.0,True,True +72023830503,4931.0,True,True +72023830504,4245.0,True,True +72023830603,4949.0,True,True +72023830604,4292.0,True,True +72023980000,0.0,False,False +72023990000,0.0,False,False +72025200100,6107.0,True,True +72025200200,4661.0,True,True +72025200302,6885.0,True,True +72025200303,9475.0,False,False +72025200304,4954.0,True,True +72025200400,2846.0,True,True +72025200500,5189.0,True,True +72025200600,3512.0,True,True +72025200700,3765.0,True,False +72025200800,2910.0,True,True +72025200900,1601.0,True,True +72025201000,1982.0,True,True +72025201200,3319.0,True,True +72025201300,2146.0,True,True +72025201400,2070.0,True,True +72025201500,2454.0,True,True +72025201600,2342.0,True,True +72025201700,2334.0,True,True +72025201800,2894.0,True,True +72025201900,1416.0,True,True +72025202000,3328.0,True,True +72025202100,2869.0,True,True +72025202200,1503.0,True,True +72025202300,3098.0,True,True +72025202402,6616.0,False,False +72025202403,3382.0,True,True +72025202404,4813.0,True,True +72025202500,3504.0,True,True +72025202601,4934.0,True,True +72025202602,8056.0,True,True +72025202701,5831.0,True,True +72025202702,4338.0,True,True +72025202800,3803.0,True,True +72027320100,2811.0,True,True +72027320200,7031.0,True,True +72027320300,6598.0,True,True +72027320401,3628.0,True,True +72027320402,3134.0,True,True +72027320500,3847.0,True,True +72027320600,4549.0,True,True +72027990000,0.0,False,False +72029100101,3631.0,True,True +72029100103,3287.0,True,True +72029100104,4114.0,True,True +72029100200,2089.0,True,True +72029100400,6596.0,True,True +72029100502,3456.0,True,True +72029100503,6198.0,False,True +72029100504,3868.0,False,True +72029100601,2809.0,True,True +72029100602,2983.0,True,True +72029100700,4710.0,True,True +72029100800,1847.0,True,True +72031050103,4843.0,False,False +72031050105,2175.0,True,False +72031050106,1805.0,True,True +72031050107,2014.0,False,False +72031050110,4089.0,True,True +72031050111,1225.0,False,False +72031050211,3554.0,True,True +72031050212,4544.0,True,True +72031050221,4343.0,True,False +72031050222,3891.0,True,True +72031050231,2547.0,True,True +72031050232,5142.0,True,True +72031050241,4842.0,True,True +72031050242,4352.0,True,True +72031050302,3442.0,True,True +72031050311,2171.0,True,True +72031050321,4064.0,True,True +72031050331,1687.0,True,True +72031050341,3714.0,True,True +72031050401,2198.0,False,True +72031050402,9244.0,True,True +72031050501,5541.0,True,True +72031050503,3772.0,True,True +72031050504,5739.0,True,True +72031050600,5272.0,True,True +72031050700,1428.0,True,True +72031050803,3677.0,True,True +72031050811,3966.0,True,True +72031050812,3963.0,True,True +72031050821,4026.0,True,True +72031050822,3491.0,True,True +72031050831,4286.0,True,True +72031050841,1573.0,True,True +72031050901,6108.0,True,True +72031050902,5227.0,True,True +72031051001,4432.0,True,True +72031051002,3513.0,True,True +72031051102,3418.0,True,True +72031051103,4681.0,True,True +72031051104,3780.0,False,False +72031980003,0.0,False,False +72031990000,0.0,False,False +72033020200,3870.0,True,True +72033020302,1675.0,True,True +72033020403,4388.0,True,True +72033020422,2235.0,True,True +72033020423,3786.0,True,True +72033020425,2532.0,True,True +72033020426,1712.0,True,True +72033020427,620.0,True,True +72033020500,3351.0,False,False +72033980001,0.0,False,False +72033980002,0.0,False,False +72033980003,90.0,True,True +72033980004,0.0,False,False +72033980005,12.0,True,True +72033980006,0.0,False,False +72033980007,0.0,False,False +72033980008,0.0,False,False +72033990201,0.0,False,False +72035260100,9364.0,True,False +72035260201,2792.0,True,True +72035260202,3715.0,True,True +72035260300,3470.0,True,True +72035260400,4345.0,True,True +72035260500,4273.0,True,True +72035260600,2463.0,True,True +72035260700,2261.0,True,True +72035260800,2780.0,True,True +72035260901,3820.0,True,False +72035260902,4502.0,True,True +72037160100,2.0,True,False +72037160201,4608.0,True,True +72037160202,2914.0,True,True +72037160300,3991.0,True,True +72037990000,0.0,False,False +72039955600,4517.0,True,True +72039955700,2609.0,True,True +72039955800,5147.0,True,True +72039955900,4240.0,True,True +72041240101,5133.0,True,True +72041240102,4075.0,True,True +72041240201,4574.0,True,True +72041240202,4380.0,True,True +72041240300,2379.0,True,True +72041240401,4226.0,True,True +72041240402,2299.0,True,True +72041240500,4064.0,True,True +72041240601,4502.0,True,True +72041240602,3975.0,True,True +72043953900,3040.0,True,True +72043954000,3212.0,True,True +72043954100,2043.0,True,True +72043954200,6305.0,True,True +72043954300,2013.0,True,True +72043954400,1630.0,True,True +72043954500,7796.0,True,True +72043954600,5362.0,True,True +72043954700,7505.0,True,True +72045951700,3442.0,True,True +72045951800,5256.0,True,True +72045951900,3143.0,True,True +72045952000,2412.0,True,True +72045952100,4971.0,True,True +72047530100,3243.0,True,True +72047530200,5979.0,True,True +72047530300,3762.0,True,True +72047530400,7091.0,True,True +72047530500,6673.0,True,True +72047530600,6752.0,True,True +72049950500,1311.0,True,True +72049990501,0.0,False,False +72051540100,2923.0,True,True +72051540200,4181.0,True,True +72051540300,2429.0,True,True +72051540400,7584.0,False,True +72051540500,9013.0,True,True +72051540600,4867.0,True,True +72051540700,5806.0,True,True +72051990021,0.0,False,False +72053150102,2153.0,True,True +72053150104,4145.0,True,True +72053150200,4501.0,True,True +72053150301,3283.0,True,True +72053150302,1763.0,True,True +72053150400,4065.0,True,True +72053150500,4283.0,True,True +72053150601,2257.0,True,True +72053150602,4661.0,True,True +72053990103,0.0,False,False +72054580100,5292.0,True,True +72054580200,6405.0,True,True +72055960900,3583.0,True,True +72055961000,2636.0,True,True +72055961100,2636.0,True,True +72055961200,1338.0,True,True +72055961300,2128.0,True,True +72055961400,1050.0,True,True +72055961500,2922.0,True,True +72055990000,0.0,False,False +72057270100,5396.0,True,True +72057270201,5353.0,True,True +72057270202,5186.0,True,True +72057270300,5128.0,True,True +72057270400,1981.0,True,True +72057270500,5029.0,True,True +72057270600,2675.0,True,True +72057270700,2646.0,True,True +72057270800,7495.0,True,True +72057992600,0.0,False,False +72059740101,2277.0,True,True +72059740102,3053.0,True,True +72059740200,4600.0,True,True +72059740300,4079.0,True,True +72059740400,4505.0,True,True +72059990001,0.0,False,False +72061040101,1445.0,True,True +72061040102,1592.0,True,True +72061040103,1834.0,True,True +72061040200,3301.0,True,True +72061040301,1683.0,False,False +72061040302,2117.0,False,False +72061040303,2001.0,False,False +72061040304,5161.0,False,False +72061040403,5667.0,True,True +72061040411,4571.0,False,False +72061040412,1490.0,False,False +72061040421,9705.0,False,False +72061040422,2847.0,True,True +72061040432,2920.0,True,True +72061040442,3452.0,True,True +72061040500,3840.0,True,True +72061040601,4135.0,True,True +72061040602,8977.0,False,False +72061040700,7775.0,True,True +72061040800,3054.0,True,True +72061040900,4029.0,True,True +72061041000,1893.0,True,True +72061041100,3448.0,True,True +72063210100,4006.0,True,True +72063210201,4027.0,True,True +72063210202,8316.0,True,True +72063210300,1760.0,True,True +72063210400,4350.0,True,True +72063210502,13791.0,False,False +72063210503,2601.0,True,True +72063210504,8059.0,True,True +72065310100,8144.0,True,True +72065310200,5085.0,True,True +72065310300,6125.0,True,True +72065310400,8013.0,True,True +72065310500,6230.0,True,True +72065310600,6353.0,True,True +72065990016,0.0,False,False +72067820100,7493.0,True,True +72067820300,4371.0,True,True +72067820400,1716.0,True,True +72067820500,2363.0,True,True +72069180100,4074.0,True,True +72069180201,3008.0,True,True +72069180202,5723.0,True,True +72069180301,2738.0,True,True +72069180302,4057.0,True,True +72069180400,4769.0,True,True +72069180500,6965.0,True,True +72069180600,4744.0,True,True +72069180700,3861.0,True,True +72069180800,5653.0,True,True +72069180901,2354.0,True,True +72069180902,4561.0,True,True +72069991800,0.0,False,False +72071410100,5388.0,True,True +72071410200,2781.0,True,True +72071410300,2215.0,True,True +72071410401,4187.0,True,True +72071410402,8125.0,True,True +72071410500,6339.0,True,True +72071410600,4134.0,True,True +72071410701,2495.0,True,True +72071410702,6043.0,True,True +72071990000,0.0,False,False +72073956000,6171.0,True,True +72073956100,2498.0,True,True +72073956200,5870.0,True,True +72075710102,5382.0,True,True +72075710200,4700.0,True,True +72075710301,4133.0,True,True +72075710302,4460.0,True,True +72075710400,1918.0,True,True +72075710500,1297.0,True,True +72075710600,1821.0,True,True +72075710700,1681.0,True,True +72075710800,5673.0,True,True +72075710901,4890.0,True,True +72075710902,6558.0,True,True +72075711002,3639.0,True,True +72075990001,0.0,False,False +72077500100,7253.0,True,True +72077500200,6168.0,True,True +72077500301,7441.0,True,True +72077500302,7131.0,True,True +72077500401,6045.0,True,True +72077500402,4742.0,True,True +72079850101,1993.0,True,True +72079850102,5433.0,True,True +72079850200,4750.0,True,True +72079850300,5914.0,True,True +72079850400,4745.0,True,True +72079991100,0.0,False,False +72081957700,3820.0,True,True +72081957800,6055.0,True,True +72081957900,4626.0,True,True +72081958000,2498.0,True,True +72081958100,1581.0,True,True +72081958200,2905.0,True,True +72081958300,2553.0,True,True +72081958400,1658.0,True,True +72083959700,2601.0,True,True +72083959800,1181.0,True,True +72083959900,4588.0,True,True +72085190101,7598.0,True,True +72085190102,8405.0,True,True +72085190201,3739.0,True,True +72085190202,3867.0,True,True +72085190301,8143.0,True,True +72085190302,5747.0,True,True +72087110101,2145.0,True,True +72087110102,2376.0,True,True +72087110200,1933.0,True,True +72087110301,3658.0,True,True +72087110302,3772.0,True,True +72087110303,2845.0,True,True +72087110304,3404.0,True,True +72087110400,2321.0,True,True +72087110500,1028.0,True,True +72087110600,2296.0,True,True +72087990000,0.0,False,False +72089140101,4080.0,True,True +72089140102,3006.0,True,True +72089140201,2328.0,True,True +72089140202,4431.0,True,True +72089140300,4379.0,True,True +72089990001,0.0,False,False +72091570100,5804.0,True,True +72091570201,4775.0,True,True +72091570202,3669.0,True,True +72091570300,3381.0,True,True +72091570400,2964.0,True,True +72091570500,4792.0,True,True +72091570600,2843.0,True,True +72091570700,4407.0,True,True +72091570800,6201.0,True,True +72091990025,0.0,False,False +72093960100,4032.0,True,True +72093960200,2043.0,True,True +72095951400,6407.0,True,True +72095951500,2396.0,True,True +72095951600,1973.0,True,True +72095990000,0.0,False,False +72097080100,965.0,True,True +72097080200,1538.0,True,True +72097080300,2133.0,True,True +72097080400,1242.0,True,True +72097080500,1091.0,True,True +72097080600,1623.0,False,True +72097080800,2334.0,True,True +72097080900,949.0,True,True +72097081000,842.0,True,True +72097081100,824.0,True,True +72097081200,5343.0,True,True +72097081300,1677.0,True,True +72097081501,4583.0,True,True +72097081512,5605.0,True,True +72097081522,3809.0,True,True +72097081601,4599.0,True,True +72097081602,3329.0,True,True +72097081700,2616.0,True,True +72097081800,3435.0,True,True +72097081900,3728.0,True,True +72097082001,6557.0,True,True +72097082012,3637.0,True,True +72097082022,3513.0,True,True +72097082102,3084.0,True,True +72097082103,3722.0,True,True +72097082104,2454.0,True,True +72097990000,0.0,False,False +72099420100,6843.0,True,True +72099420200,6546.0,True,True +72099420301,4642.0,True,True +72099420302,4384.0,True,True +72099420401,3549.0,True,True +72099420402,3573.0,True,True +72099420500,6624.0,True,True +72101955201,5647.0,True,True +72101955202,5252.0,True,True +72101955300,7951.0,True,True +72101955401,6480.0,True,True +72101955402,3595.0,True,True +72101955500,2037.0,True,True +72103170100,5978.0,True,True +72103170200,7624.0,True,True +72103170300,5408.0,True,True +72103170400,7065.0,True,True +72103990013,0.0,False,False +72105520100,5437.0,True,True +72105520200,4634.0,True,True +72105520300,2728.0,True,True +72105520400,6716.0,True,True +72105520500,8597.0,True,True +72107954801,4034.0,True,True +72107954802,1681.0,True,True +72107954901,3228.0,True,True +72107954902,1876.0,True,True +72107955001,4615.0,True,True +72107955002,1977.0,True,True +72107955100,3571.0,True,True +72109290100,3828.0,True,True +72109290200,4440.0,True,True +72109290300,4721.0,True,True +72109290400,3940.0,True,True +72109990000,0.0,False,False +72111730100,4823.0,True,True +72111730200,2405.0,True,True +72111730300,6067.0,True,True +72111730400,1858.0,True,True +72111730700,3702.0,True,True +72111730800,1528.0,True,True +72111990000,0.0,False,False +72113070100,4755.0,True,True +72113070201,2805.0,True,True +72113070202,1219.0,True,True +72113070300,2090.0,True,True +72113070400,2433.0,True,True +72113070502,3695.0,True,True +72113070503,3825.0,True,True +72113070513,2767.0,True,True +72113070514,2577.0,True,True +72113070522,3320.0,True,True +72113070800,1311.0,True,True +72113070900,1660.0,True,True +72113071000,1218.0,True,True +72113071200,2388.0,True,True +72113071300,3535.0,True,True +72113071401,2345.0,True,True +72113071402,3877.0,True,True +72113071500,3274.0,True,True +72113071601,2307.0,True,True +72113071602,2848.0,True,True +72113071700,1661.0,True,True +72113071800,1845.0,True,True +72113071900,4570.0,True,True +72113072000,1847.0,True,True +72113072101,1396.0,True,True +72113072102,4664.0,True,True +72113072201,3825.0,True,True +72113072202,4045.0,True,True +72113072300,1304.0,True,True +72113072400,5839.0,True,True +72113072500,6068.0,True,True +72113072600,2510.0,True,True +72113072701,2940.0,True,True +72113072703,4364.0,True,True +72113072704,2941.0,True,True +72113072900,6374.0,True,True +72113073001,2952.0,True,True +72113073002,4313.0,True,True +72113073003,2046.0,True,True +72113073004,3534.0,True,True +72113073005,2472.0,True,True +72113073006,3004.0,True,True +72113073008,2053.0,True,True +72113073009,5382.0,True,True +72113073010,3473.0,True,True +72113993000,0.0,False,False +72115330100,7042.0,True,True +72115330200,4977.0,True,True +72115330300,5058.0,True,True +72115330400,6552.0,True,True +72115990000,0.0,False,False +72117959400,5068.0,True,True +72117959500,2668.0,True,True +72117959600,6320.0,True,True +72117990400,0.0,False,False +72119130101,4970.0,True,True +72119130102,5493.0,True,True +72119130200,2757.0,True,True +72119130300,3309.0,True,True +72119130401,3685.0,True,True +72119130402,4448.0,True,True +72119130500,6219.0,True,True +72119130601,3172.0,True,True +72119130602,3358.0,True,True +72119130701,7348.0,True,True +72119130702,4854.0,True,True +72119992700,0.0,False,False +72121960300,5959.0,True,True +72121960400,4897.0,True,True +72121960500,1399.0,True,True +72121960600,2532.0,True,True +72121960700,4429.0,True,True +72121960800,3344.0,True,True +72123952600,2919.0,True,True +72123952700,1917.0,True,True +72123952800,5762.0,True,True +72123952900,8148.0,True,True +72123953000,2627.0,True,True +72123953100,2424.0,True,True +72123953200,4312.0,True,True +72123992800,0.0,False,False +72125840100,4089.0,True,True +72125840200,6200.0,True,True +72125840300,3828.0,True,True +72125840400,5545.0,True,True +72125840500,4293.0,True,True +72125840600,3814.0,True,True +72125840700,3673.0,True,True +72127000400,1549.0,True,True +72127000506,1515.0,True,True +72127000600,1288.0,True,True +72127000700,2395.0,True,True +72127000900,2954.0,False,False +72127001000,4392.0,False,False +72127001100,1522.0,False,False +72127001200,1465.0,True,True +72127001301,2282.0,True,True +72127001302,4464.0,True,True +72127001400,978.0,True,True +72127001500,2182.0,True,True +72127001600,2266.0,False,False +72127001800,2025.0,True,True +72127001900,2961.0,False,False +72127002002,881.0,True,True +72127002100,1097.0,True,True +72127002200,1179.0,True,True +72127002300,676.0,True,True +72127002400,1948.0,True,True +72127002500,1391.0,True,True +72127002600,2047.0,True,True +72127002800,1897.0,True,True +72127002900,1274.0,True,True +72127003000,1598.0,True,True +72127003100,1708.0,True,True +72127003200,1905.0,True,True +72127003300,1510.0,True,True +72127003400,1966.0,True,True +72127003501,4181.0,True,True +72127003502,1128.0,True,True +72127003600,1002.0,True,True +72127003700,3180.0,True,True +72127003800,2015.0,True,True +72127003902,3373.0,True,True +72127004200,1929.0,True,True +72127004306,2415.0,True,True +72127004400,1484.0,True,True +72127004500,1719.0,True,True +72127004600,3475.0,True,True +72127004700,5093.0,True,True +72127004800,2642.0,True,True +72127004900,2586.0,True,True +72127005000,4339.0,True,True +72127005101,1777.0,True,True +72127005102,1749.0,True,True +72127005103,3250.0,True,True +72127005201,2487.0,True,True +72127005202,2563.0,True,True +72127005204,1920.0,True,True +72127005214,3650.0,True,True +72127005215,2218.0,True,True +72127005300,2430.0,True,True +72127005401,6368.0,True,True +72127005402,1675.0,True,True +72127005403,5321.0,True,True +72127005500,4033.0,True,True +72127005601,2651.0,True,True +72127005602,3623.0,True,True +72127005800,2541.0,True,True +72127005900,1207.0,True,True +72127006000,1651.0,True,True +72127006101,3471.0,True,True +72127006102,1391.0,True,True +72127006200,1789.0,True,True +72127006300,5291.0,True,True +72127006500,1406.0,True,True +72127006600,2111.0,False,True +72127006700,4148.0,False,False +72127006800,4015.0,True,True +72127006900,3154.0,True,True +72127007004,1864.0,True,True +72127007100,2102.0,True,True +72127007300,3101.0,True,True +72127007400,1983.0,True,True +72127007500,2011.0,True,True +72127007600,2684.0,True,True +72127007700,2272.0,True,True +72127007800,5188.0,True,True +72127007900,2252.0,False,False +72127008001,3915.0,True,True +72127008002,3595.0,True,True +72127008100,2250.0,False,False +72127008201,1760.0,True,True +72127008202,2334.0,True,True +72127008300,2352.0,True,True +72127008400,4055.0,True,True +72127008500,3243.0,True,True +72127008601,1592.0,False,False +72127008602,3483.0,True,True +72127008603,1388.0,True,False +72127008700,2163.0,True,True +72127008900,2274.0,True,True +72127009000,2019.0,True,True +72127009111,2588.0,True,True +72127009112,2864.0,True,True +72127009121,3383.0,True,True +72127009122,5463.0,False,False +72127009123,2280.0,False,False +72127009300,2595.0,True,True +72127009400,1566.0,True,True +72127009601,1406.0,True,False +72127009602,1649.0,True,True +72127009603,2380.0,False,False +72127009614,1818.0,False,False +72127009624,3750.0,True,True +72127009800,5262.0,False,False +72127009901,3048.0,True,False +72127009902,4780.0,True,False +72127009903,4152.0,False,False +72127009904,1956.0,False,False +72127010001,6098.0,False,False +72127010002,4227.0,False,False +72127010012,5383.0,True,True +72127010022,2863.0,False,False +72127010032,5112.0,True,True +72127010042,7657.0,True,True +72127010100,8104.0,True,False +72127010200,6578.0,True,True +72127010500,3732.0,False,False +72127980000,20.0,True,True +72127980101,0.0,False,False +72127980102,0.0,False,False +72127980103,1047.0,True,True +72127980104,0.0,False,False +72127980105,0.0,False,False +72127980107,0.0,False,False +72127980108,0.0,False,False +72127980200,61.0,True,True +72127980300,0.0,False,False +72127990000,0.0,False,False +72129220100,7104.0,True,False +72129220200,2852.0,True,True +72129220300,1653.0,True,True +72129220401,5016.0,True,True +72129220402,4953.0,True,True +72129220501,3829.0,True,True +72129220502,3960.0,True,True +72129220600,3028.0,True,True +72129220700,4814.0,True,True +72131009200,2675.0,True,True +72131958500,4925.0,True,True +72131958700,4721.0,True,True +72131958800,5956.0,True,True +72131958900,2504.0,True,True +72131959000,3461.0,True,True +72131959200,4871.0,True,True +72131959300,3725.0,True,True +72131959500,4282.0,True,True +72133953300,4550.0,True,True +72133953500,4103.0,True,True +72133953600,5888.0,True,True +72133953700,2698.0,True,True +72133953800,4518.0,True,True +72133990000,0.0,False,False +72135510101,8906.0,False,False +72135510102,4052.0,True,True +72135510200,8748.0,True,True +72135510300,2792.0,True,True +72135510400,5116.0,True,True +72135510502,4093.0,True,True +72135510503,9421.0,True,True +72135510504,5462.0,True,True +72135510505,3643.0,True,True +72135510601,5850.0,True,True +72135510602,5912.0,True,True +72135510701,4095.0,True,True +72135510702,4774.0,True,True +72137120200,3753.0,True,True +72137120300,2194.0,True,True +72137120400,1569.0,True,False +72137120500,1299.0,True,True +72137120600,2890.0,True,True +72137120700,1355.0,True,True +72137120800,3437.0,True,True +72137120900,3270.0,True,True +72137121001,3829.0,True,True +72137121002,3260.0,True,True +72137121100,2980.0,True,True +72137121200,3236.0,True,True +72137121300,1152.0,True,True +72137121400,5895.0,True,False +72137121701,3320.0,True,True +72137121702,4365.0,True,True +72137121801,4409.0,True,True +72137121802,5063.0,True,True +72137121900,3144.0,True,True +72137122001,4151.0,True,True +72137122002,3811.0,True,True +72137122100,2483.0,True,True +72137122201,2556.0,True,True +72137122202,2535.0,True,True +72137122400,1854.0,True,True +72137990000,0.0,False,False +72139060102,3430.0,True,True +72139060103,3034.0,True,True +72139060104,6106.0,True,True +72139060211,5272.0,True,True +72139060212,4488.0,True,True +72139060213,2838.0,False,False +72139060222,5451.0,True,True +72139060223,3210.0,True,True +72139060301,4799.0,True,False +72139060302,5988.0,True,False +72139060401,4044.0,True,True +72139060403,3659.0,False,False +72139060404,4649.0,False,False +72139060501,5317.0,True,True +72139060502,4053.0,True,True +72141956900,3968.0,True,True +72141957000,4550.0,True,True +72141957100,4412.0,True,True +72141957200,4268.0,True,True +72141957300,3641.0,True,True +72141957400,1904.0,True,True +72141957500,2508.0,True,True +72141957600,3425.0,True,True +72143550100,10550.0,True,True +72143550200,4255.0,True,True +72143550300,5223.0,True,True +72143550400,4564.0,True,True +72143550500,5256.0,True,True +72143550601,3763.0,True,True +72143550602,3495.0,True,True +72143990000,0.0,False,False +72145560100,3932.0,True,True +72145560201,5170.0,True,True +72145560204,3392.0,True,True +72145560300,3279.0,True,True +72145560401,2946.0,True,True +72145560402,5304.0,True,True +72145560500,1285.0,True,True +72145560600,6351.0,True,True +72145560701,5353.0,True,True +72145560702,5223.0,True,True +72145560801,2257.0,True,True +72145560802,3097.0,True,True +72145560900,4603.0,True,True +72145990000,0.0,False,False +72147950500,4208.0,True,True +72147950600,4434.0,True,True +72147990000,0.0,False,False +72149720100,4684.0,True,True +72149720300,5083.0,True,True +72149720400,1679.0,True,True +72149720502,2775.0,True,True +72149720503,4363.0,True,True +72149720504,3819.0,True,True +72151950600,5660.0,True,True +72151950700,5081.0,True,True +72151950800,3179.0,True,True +72151950900,5330.0,True,True +72151951000,3119.0,True,True +72151951100,2311.0,True,True +72151951200,3866.0,True,True +72151951300,4953.0,True,True +72151990000,0.0,False,False +72153750101,2133.0,True,True +72153750102,3189.0,True,True +72153750201,2729.0,True,True +72153750202,3327.0,True,True +72153750300,3896.0,True,True +72153750400,2905.0,True,True +72153750501,6113.0,True,True +72153750502,2388.0,True,True +72153750503,2126.0,True,True +72153750601,4397.0,True,True +72153750602,2225.0,True,True +78010970100,1863.0,False,False +78010970200,3122.0,False,True +78010970300,4723.0,False,True +78010970400,4709.0,False,False +78010970500,3428.0,False,False +78010970600,4222.0,False,False +78010970700,2243.0,False,False +78010970800,4105.0,False,True +78010970900,2232.0,False,True +78010971000,1977.0,False,False +78010971100,4072.0,False,True +78010971200,4425.0,False,False +78010971300,3454.0,False,True +78010971400,2491.0,False,False +78010971500,3535.0,False,False +78010990000,,False,False +78020950100,1435.0,False,False +78020950200,2735.0,False,False +78020990000,,False,False +78030960100,3711.0,False,False +78030960200,4398.0,False,False +78030960300,4520.0,False,False +78030960400,4709.0,False,False +78030960500,5431.0,False,False +78030960600,3987.0,False,False +78030960700,3520.0,False,False +78030960800,4088.0,False,False +78030960900,4878.0,False,False +78030961000,5220.0,False,False +78030961100,4356.0,False,False +78030961200,2816.0,False,True +78030990000,,False,False diff --git a/data/data-pipeline/data_pipeline/etl/score/constants.py b/data/data-pipeline/data_pipeline/etl/score/constants.py index 4adf7e32..d3fbeb27 100644 --- a/data/data-pipeline/data_pipeline/etl/score/constants.py +++ b/data/data-pipeline/data_pipeline/etl/score/constants.py @@ -9,6 +9,7 @@ from data_pipeline.score import field_names # Base Paths DATA_PATH = Path(settings.APP_ROOT) / "data" +STATIC_DATA_PATH = Path(settings.APP_ROOT) / "content" / "static_data" TMP_PATH = DATA_PATH / "tmp" FILES_PATH = Path(settings.APP_ROOT) / "files" @@ -275,6 +276,7 @@ TILES_SCORE_COLUMNS = { # temporarily update this so that it's the Narwhal score that gets visualized on the map # The NEW final score value INCLUDES the adjacency index. field_names.FINAL_SCORE_N_BOOLEAN: "SN_C", + field_names.FINAL_SCORE_N_BOOLEAN_V1_0: "SN_C_V10", field_names.IS_TRIBAL_DAC: "SN_T", field_names.DIABETES_LOW_INCOME_FIELD: "DLI", field_names.ASTHMA_LOW_INCOME_FIELD: "ALI", diff --git a/data/data-pipeline/data_pipeline/etl/score/etl_score.py b/data/data-pipeline/data_pipeline/etl/score/etl_score.py index 78e10a53..afa03ae9 100644 --- a/data/data-pipeline/data_pipeline/etl/score/etl_score.py +++ b/data/data-pipeline/data_pipeline/etl/score/etl_score.py @@ -54,6 +54,7 @@ class ScoreETL(ExtractTransformLoad): self.eamlis_df: pd.DataFrame self.fuds_df: pd.DataFrame self.tribal_overlap_df: pd.DataFrame + self.v1_0_score_results_df: pd.DataFrame self.ISLAND_DEMOGRAPHIC_BACKFILL_FIELDS: List[str] = [] @@ -205,6 +206,22 @@ class ScoreETL(ExtractTransformLoad): header=None, ) + # Load v1.0 score results for grandfathering purposes + score_v1_0_csv = ( + constants.STATIC_DATA_PATH / "v1.0-score-results-usa.csv" + ) + self.v1_0_score_results_df = pd.read_csv( + score_v1_0_csv, + dtype={self.GEOID_TRACT_FIELD_NAME: "string"}, + low_memory=False, + ) + self.v1_0_score_results_df.rename( + columns={ + field_names.FINAL_SCORE_N_BOOLEAN: field_names.FINAL_SCORE_N_BOOLEAN_V1_0, + }, + inplace=True, + ) + def _join_tract_dfs(self, census_tract_dfs: list) -> pd.DataFrame: logger.debug("Joining Census Tract dataframes") @@ -364,6 +381,7 @@ class ScoreETL(ExtractTransformLoad): self.eamlis_df, self.fuds_df, self.tribal_overlap_df, + self.v1_0_score_results_df, ] # Sanity check each data frame before merging. @@ -514,6 +532,7 @@ class ScoreETL(ExtractTransformLoad): field_names.ELIGIBLE_FUDS_BINARY_FIELD_NAME, field_names.HISTORIC_REDLINING_SCORE_EXCEEDED, field_names.IS_TRIBAL_DAC, + field_names.FINAL_SCORE_N_BOOLEAN_V1_0, ] # For some columns, high values are "good", so we want to reverse the percentile diff --git a/data/data-pipeline/data_pipeline/etl/score/tests/conftest.py b/data/data-pipeline/data_pipeline/etl/score/tests/conftest.py index 8353869d..ab746a27 100644 --- a/data/data-pipeline/data_pipeline/etl/score/tests/conftest.py +++ b/data/data-pipeline/data_pipeline/etl/score/tests/conftest.py @@ -129,6 +129,16 @@ def tile_data_expected(): return pd.read_pickle(pytest.SNAPSHOT_DIR / "tile_data_expected.pkl") +@pytest.fixture() +def create_tile_score_data_input(): + return pd.read_pickle(pytest.SNAPSHOT_DIR / "create_tile_score_data_input.pkl") + + +@pytest.fixture() +def create_tile_data_expected(): + return pd.read_pickle(pytest.SNAPSHOT_DIR / "create_tile_data_expected.pkl") + + @pytest.fixture() def downloadable_data_expected(): return pd.read_pickle( diff --git a/data/data-pipeline/data_pipeline/etl/score/tests/snapshots/README.md b/data/data-pipeline/data_pipeline/etl/score/tests/snapshots/README.md new file mode 100644 index 00000000..01ae8488 --- /dev/null +++ b/data/data-pipeline/data_pipeline/etl/score/tests/snapshots/README.md @@ -0,0 +1,23 @@ +These files are used as inputs to unit tests. Some notes in their creation is below. + +### create_tile_data_expected.pkl +1. Set a breakpoint in the `test_create_tile_data` method in `data_pipeline/etl/score/tests/test_score_post.py` +after the call to `_create_tile_data` and debug the test. +2. Extract a subset of the `output_tiles_df_actual` dataframe. Do not extract the whole score as the file +will be too big and the test will run slow. Also, you need to extract the same tracts that are in +the `create_tile_score_data_input.pkl` input data. For example, use the following command once the breakpoint is reached +to extract a few rows at the top and bottom of the score. This will some capture states and territories. +```python +import pandas as pd +pd.concat([output_tiles_df_actual.head(3), output_tiles_df_actual.tail(3)], ignore_index=True).to_pickle('data_pipeline/etl/score/tests/snapshots/create_tile_data_expected.pkl') +``` + +### create_tile_score_data_input.pkl +1. Set a breakpoint in the transform method in `data_pipeline/etl/score/etl_score_post.py` before the call to +`_create_tile_data` and run the post scoring. +2. Extract a subset of the `output_score_county_state_merged_df` dataframe. Do not extract the whole score as the file +will be too big and the test will run slow. For example, use the following command once the breakpoint is reached +to extract a few rows at the top and bottom of the score. This will some capture states and territories. +```python +pd.concat([output_score_county_state_merged_df.head(3), output_score_county_state_merged_df.tail(3)], ignore_index=True).to_pickle('data_pipeline/etl/score/tests/snapshots/create_tile_score_data_input.pkl') +``` \ No newline at end of file diff --git a/data/data-pipeline/data_pipeline/etl/score/tests/snapshots/create_tile_data_expected.pkl b/data/data-pipeline/data_pipeline/etl/score/tests/snapshots/create_tile_data_expected.pkl new file mode 100644 index 0000000000000000000000000000000000000000..3257e33c17b61cf489876893d14e893da23c9f03 GIT binary patch literal 6657 zcmdTJOKcm*mHO~w$*xn|X_F##+)E+#AW(5*$v}(^DUu>Js})UBRs%TLE~S;05=FA) z5{~?VTcA!YU;!7%G(dX@0wmYEXc3@31wn$MXwd-f!Eg^n>%?j8_>=UKz_<3zyqP6; z*DJNh^04o{nfKnj-@F~p{xJHpFQ1O^pYzq0(O5A$6U)uEIkDO{Hcjg6$r!egG?rqM9g%yx%5d(-vi^2R*U^fi$Dnh??JwQ6U= zm7&glz1wKjmN)9AUS&eS?Hu$l8|}8S1xlaM_14xaJ$5aVVl!!DdBa>`V&CXD3#BGH zcDvSC)2TCB<`@?N=DBO97x!sDp(SeVmvb3=t7XC*ch-q_>}DJMp-!x|Wn0Y#?Nps7 z8{N&;7RG6_TeoX`8E{x{o6F4xtkzw&nJrPyNS!#um01a6Byx$)3{)vwbc_s;*d=Ox z(}}K#Rh_|wX}WzGXNR1D^HkHcxqritKZs(}>h{YJ%F*Oxa_VR@IXRh3f?tyQZa?*0 zl2cRD$)m~R$0mUUPNa^*6r+wFOHMzZOilw$P0)P-468bcYPSY%H6Y&6PQA9w;z1%{ z?Eo{34DyJLTF+R|GIy+RNoNL0>{V)wa|7e4x=}SY4Qi#WwDXlywf0)Aaiq|xLy>i; zHRB{S^URT#n(YnhJTYgku0qW;8%JiE-G;qIt*n)uz4!<#(?y*9rP{K!*=(#xK4!Bu z4VDdgZF3IvdGIH~+)`^kN6+fS(asH0-gA)vUs2sXF`_b7$pM~`07y9`m{UtNwi@VCRe4&Se|C3$pxvl)- z=j`{9GR^}V&X0C{BK*A}^gjsIFXJuqw#t9u@kG9NMZP{(@)&?n{X9)4?z#EhEuMb< z2Rt30hU%AbN4>ujb@5>+KQFJFw-uRZS*J2Teu(vXTakH_@$&OYnp)p>23I|u=LKKq ziNH=HPp}Q{49rlQ^~`D5bqBrs&eFzSkD=Dcz`y`tTy=G_*VL@Ymq9_ zkKKBc+;cMivIn9G!T7%oo$=;dx7?nw+uop7iHvy4;Sf0-EQc3dmpOvPh9$!5E+X(g zHZjft=cm^9eM=oC@KWCSC5NTTUvln?>3>4RJ8O)L`<8;eqe*koR*w_hAu%r50QUQg z!vW8kpZh!^9Vf?piw9ojeSTiPyuE{m!k=Sg%BK?isrMNwQ8Z6d4EB#;BE?uQRWRV; z;^JZifjiB-J>c3($}!K!j*P1wZX604%t%cWV?V-jl;d6aG^7 z^UK4Af1LU6HD4nqgXZr=xnAK2&+(8dUo|I5IVkEajh+WyORfi6YA`cpQVFV0yOwbT z3mbF9pNJxp*bbt-_3sBZ&oVjc$z+A-!3AX|vBm$@eMQOEj7tUm#AC+a#qsTd`^pXD zm#+lO+zoMDyb*|#ln-W7C)J?&eU*%o?CCaeZz)uX8B`$iiT+-9kEM7V4?A`}Zl{@K zHK^XLw4QZ5Gu}#DC6-Tgr8xBkMk)o$TA*{x4n$ z>tw^H670Ax8ml}<$ZanFBjDLQcy`A2@#8={>8gU~reBNyc)t(jmwdP$4b_jE;XN_`j)MOgJ_ynK=pyFn zA7cGG3flG0P=5UH_XpQrm_y31x&1}D?7jKZWzVhE`M>#RguxoI`^cZ9> z-kTgrwM_#qWqhO*6ubW{Ip%)Y z{kLwl#)|oh*_o&s9k@6f(HrI&y}-uc&SiZH-fm7*lKeh#1@0JW@HXi@TrJ^U($H)r zN1eekd(6NimdWYGTp5s*K;n5h6wj39ST-%NL^h?CP$H2{_t2t5<9U}=RkKoFEx6cx z0mb(e=bw9Cj1K3^SuiG1gey3l9Vx;cn=V)rskw|=(6be||5J-XCPs?L8rO=dz)JIC zEKw;-FNP{b=4VBUElOlbAo0a=1?8ifzEml(s?nE7ZU(OGG<`;eRRLzTmpH7HG!FCS zSq_UT&>)akD|zY+mq7v?VL(4M3HO3*1T+kR1Mp0-XSAq-zs#5U0%Flcgt08R!rY8O zm<5tXB$`cQ09e>K7R{6qR*J}~76pdT+t7jqO;pB1RJWCmzV$t9O z859~$A(#A|Q{9`Qm- zgaI%SBH(m`w9mycTcd)@rMNUwLuwuZ90dsmV}%qJ*a*+3o?V!SGynlf?GcdK9s%j? z5s>2^0Tm*MQOtUeVnrjUc&?~I1;fSyE*wvnS?(($i~#w*i|15{E#<_{im@>k+ZY?- zNGdajNTG~!Q9y8J9#fgfEkZ$*QcDm?j`HLbAmcd|N_99hucu*s04cD8ktrnef`s+h zD9AIwiW$HH7?GOI>a3JU7&2eTWK>qXj95@J;9w=C&nzrz6+K0O$)#9IfhcB6fU#kQ z={c5`gNmTZ=UJsE8P}c`t;v_F@l0kn0!2p(7}a zD2o25s6jwEL_kzd6$L~NK?LPUZs%LgKyS>xNZs334dvCsc>7AMCs_N?M z>aObQ-C1>BZEOh;FTS~jHECH}xW;Vd!t<=GkrVg^Ls&bTBz|5jg#JsIE`;#4bBy^` zfq&c`TyL^-RugNmg&SEDo6lKo0{=+7!K^7rm+pndP_vb@N{&IFYYTVP5%{J#4wFT% zDKKz3xwsNQ^N)G}vsNox1V}sN=cH^&%N)aE_JJm`y;WF{>Uk~JpxrArxfMOvbFjv4tL)3xly2XO7 zBVR}Bq{;^kixuY2lit?i1E&cY85ybf;S&F;kzL50KMq9MC?YZPHrM)Z#8*EbSw0aCi_2e0s5@4gYS(Gd}`a4&FxdpaQ0aC3B>n~@X)D0pFq;Y6+Jz?fy|M4RI)~5`cM^0HjHjvcv?WE(>XCm0ZTsrj-2wbD z^j%rvXKOZfm?_=oYaZxg_#SmRMczd$Qc# z@~jF!RV_OsmfMSe5la#d-={tj)MIX|mFUv&&5svXtV3;Uk7^ROehrnMcUpAcRk%A! zHKX+JhL5F3s(Lg?4|}#GoQfaVfa?z@KC)EiKOkU;O04Ep(%?@csh?%J)BCH}tp95I zbj7deO8@xnIk(Ety3VV$AC5UrZSValvyUZi>#TY?=Z6={N;|7=4X+zueTA<7KQ5kD zo-j92Wic&fVqQ*ERhUoi+V-zRXM4Q)UmrF9z_|^1s>yxKr$3sqQpFq9=g&-;MumTM z-{6Yk(E+Ln&B~2Q?eC$bFAd%J(xtsr{tG^NarSFP=TKJM6Zan3(omHWdwTo_-`Aqz zpO$_0;J~mQs9=ljdQtvfRARmRdrIUED*n(P4kw`l%~exBU-kT!NuQ(efRg+F^xjB? zAN!>}+4knwXnw8dTi)DQhR!}+IC$+ox!=6yQ(D;mgwW?*w4k`<)IWk(qj`3GeM-eY zsP$dm*6w?B>y^;*xBKit^%1_dQQ;*$3kYc57GFz|uIS#yHGPC?;h%TH-bltfvtIf`ECV(;O9gu}wcVNx@9h5!9h^4uUBmVbXjjhf3Ae|s zrSh|G>?Agau*Dq7y%l4o6I&5x#wD5MC?ThSm)MM(fz=p@d zsqljmc8rdh*BFh=Dmydwxt|6vXqEC=n>9lN z_l)8__x4cXX?Wi6cKwYTV}7LaMb^7@s#dSRmmcvMK6U*5tv656#{r4oU-*~)PX6b; zd)|7HQoQpi&FWof(7}@1qu=}##XOqy>Hg=v;bi*X99fiAM}Gu;)b3QhZD$Xm;x1uH zAGY$noiZM=R9OCSqZTyoW4e#d9$Z~osBWMdzdmf`U0XYqM?E(^J=5Yu?7g3pRpDE2 z9Jx3lN#zL8ulPPVg$kdS{&#TSVH?oc3&rCv6#syhm;Dtys`Yo&ews1mWaR!{zdPSc zTvYz|wpR;x-Uu0sqE!nVliD|KmZ-A6u%PT(P85ZofPj6mi^e^ja0oqpq211+pkL4@ z`X+HdA(@^x{;_*oBrf>p3hEl&ANW!|7UKEr#~CfgAZ@IsHx*`E~}(YY3n!ZjOd!ncn;&u;O; ze|!7QxId=9?Bajt4tyO%D}UG(b*J9@UhuKOIX$j0MueVDk8e41opW8V0Uc|^HT>|v zw_flvpZ&L}q7r}IfMyEfg&OVtFg%)H;RPRaXwmw6eRrTbz5CuV9^Hr%hTvxqW6z^{;zeKYJ>{IgYAurHuK_;IU!;8h@7(WhQE`6u@-lS% z;@J2{T9={L&;8kBf81|Wd5Y`2#luyie76sm{EWlSdpElv%b!+WD*biD+$HC{=wSCN z*~9&+r_LbUFE6LMPNh>_GY5J8{P{JjSVgUQ^Bz7W^xY+| z4wO4Qn8})3{Qh3l-#F*hHr-F7k4g?lPr7=R3P0<7`PVOXDnqZ^uMd9Gu?e+W_RTl^ z^ix#$YwtW)+VaC6QSgT|;?d3@(8|rH7j4eoOod-DW6QGC0Trn9dZV-*Kb50t@9x{G z?sk<5KRWHtky+?GTHL8t?cAA{(Pp+?Znth%sPG{_?z5(s{D$7L%y@nGGo`5Xy>@^7 z-v1aCereeCC5sP~qL{2(C-UPjqD5g}bPl{)L51I)`uUczWmnL+rE^f5WmnPCwL|w# zUQOp;NN(BW*YtC!+t=k+de^T&Yd=cCE~1nB-n;oo3p%`U_BMO#urlPBlzOr_?jq7PjC^kNeY!kT z8^@hH!yG|mDeD(mF7I0FkB^_*g|4ON4PSX@2l{C0Z(nt4KzF3aMq9K2A6KAUyM9+# z^Q)+So}SGrW3AK*9-LF%Vt4O{l;pF=h0V&_doG(W+j)kU8t9=En z;?mSBp1nZj|B;N~OQ#FUQOwzs=ifeFj+Ptu4lJqgUf{_1gKICeY?^o$Ej$=JJm`b7 z=&$v8mwKz{!xACKU3)N=v>EG^`LLij`^0rPlJC$^H#KO^;;`Ce8}7piF=;AfR?4^|1~BICf57U zJflrHOyy_AxKBP_@a%T<-uxAto`o<%`N zx)YHSHElI7TojQ+FcHTEcy;g=kzlpNa?$GC>HErJ**D3x-H2C&C&5?sgQKMbs z9e)SW17S;cj9R&)J=o2YOFCc7zKlNa-g~>@t1>D-dw*^IhiTznbhyj&fn&RUhK_G( z_+>XEJ<#*rp{R{tuPjCTudk`Ss`L!fMy)sY%cSF%$1z#%YKjAMI z`c9`q+A9Y>-{Cv_jm)O-M|aRjewM7ew_to*Z#~+uY(l$;ipyx>j)kiZKY0!vy3=~t z@wRmPU$OkeH`yyLq3~8$PrZJl0{wjKK*t`>(bqpDAM(8va6gV7+ww~LEw5DSU$eRc zjzq0Kjdpj5=+S0=8A`c)qP{AWKHkIr{c_i+TEC*f&rEyvyA#Jyd%pQcF+bAvt?7PY z$*QBL(Dq?BmJAwk36(zf)8Ne=z2zeFIbg=hmLHdwqZb2`PQLZxPp(paPnJ>lRJB?} z97Lb}8PBadbOu?B*)iw7-0!8&9p4F>_HBb?)FxOKs`neZUu&j(5tbKugV6S06omz*Ulb%lEH# z{r>kayKO;aDZeMna|h~aCk38BWJ$uw_c#7^bT+%=4b=1VIT=S*ZbBK!GviNL>4A@1 z)(KNzJ^gQFJ*j@X%Um$!>hic5Y)%RfubZIVE@SMO?L zUu;uv3)*$`nn}=pRapGgub}0@OSi{Y2&CFoA#hCNBfLic8;!}ZJtd$ z{%Q1X6#vSY@5}a{LAUqk%`F~B*UwkG9v-Q&TtKg1ihD2iv2&==dP~5f6NkL?N0#UR z*Ydwk9=Lb%0NoCe?H;i1QTU^eV-mi@x0B#+pU-k#y78$uH$Ju1XZXpv-QdsLu_yVE z?+-DJ;g7C&GMrpa-@9qr-c7#S-DgYYPA!@1t*0yPfmhXO<>-U2f;QZ0 zNVg|Z?QNH$n_We@@7}Vk{rn1YsJq+^e~At+^GlZ5WgAQpiIjSN?o(%Z1WK~iA9}m* z9^2r+O9P3Yfcnld$XSww7(dXv?ZxXLeBhpDp%6d#P+j8902!8W5WDLo>XqJ=COFxl zMQ8nuzVEyCuH)m^yoHXVO=32IYqNi)dX+ajdmy0VyedCQ56F86zsR7jlJ*40Y2?fM zv-HFb#EDsY;{IR4;r&F$U47|RSNce+QuSN+TE0Mvkt(Pp!iw#co;aU7Wm5STLR*-G z_kRzeyHl1vd(?s(LFZ7Xd5oP^>YLu(J^>Shi?&BY+tZP1dB=d8z4b;LRfe}|_twIj z>f7GzxJHsFFx&>u@ZD|o9q&pLBxV9=`$qomlV$Bqx*4|7+x&XB;g0&QH#?*`QqXCM zVccbI%79y2-=oLwrq?Eut;nn&XVU`$hlnh$Kq_mvz;p9I}}&t3-X>Gc!{$b3mM^X98wV0wLpYBFCZJ~P6f zyo!+JLzWlNNb&j!dCRMQV0r@u0&V0L$(@PsrO)CU%qiq=Ri;}3mh{F7h-6M>d{Rkr zDBo8?d2`x0Fue&$poy-zTc+b2(6JGlo()gBWHB04iLY~cRViL>_lf6io*b%fw{O7$3!8aYD*XWF9 zlU9b7whn-3dNY!4%^DvR5h?I)|6*d{R{YnyuSZjx1*SJANmkj^dT|Cemo>7&M1)(2 z|M5*m>8<&C6O&>yKnku+n5e=}>t}F<%u{A-fk+U<+B`751xc%h&5KJDCT3##_#YoM zDn*z$T>O;rlt=Sg1g1agLDDYZ?9(>xNw#{EmYc%a!gE<0!@CDfk)WS56#@ zvDT4q#q?n0r5;2FUmprO&YjkUaD@bTZIWKpPnw*0+z`#H1m5 zHs55nfj~gqxttyPu13w9l&LGS=`|oikQHXZWVSQ;X0w*b1L4wz-G|XaCVS0jMrBI+ zhZ_#srJt$58+KZSpy$KY)ib~PcN_{Dmayf&!kbzWk z8ny0mpk|Cyms6Y?oFytRh{ed+t!9haptrLoP}(q>&V!oZ;cmg>J2Hv^^|R|hKN}~S zIBR~9b2tio_oT%1IA(<2R=|iRhDn@a;WT#W+c=X6Yj>L2W@EDOi3WjhIntU7nm?3t zSoJo$Uc)3A*nEL+6{m+WVV%{1OSW&b}DPdLlWCH{>dSF z&c?y`g+YQ1j5st|J04x!6pI;D5$H9`OpgkWhALuHSUsGXs55M;8FxvCY%80W2P{~u zK-j2I~Og4k55PQt^7>1|VJn0yP5fAW8m?W5x5$TzsOdhMzgDim=;3?C+lEg2V z5~dJj$T2oOC^|IO11KXiO@7gGGzKda4FrsO4H!3k>LEf_1B;ali|p4o!Y0}$(VBtv z)q(`z7>B5f8Z0R2(~i&+F2!_!ysS*LH24@WYQ%f2sEj-~rT346*5*5;9@5*)l6iEu zonbOhqV07WOVRop6l&r&IEO<>8VA}SnmB;KOjIh$?K2IOWo8yGDI!ylyAYNUxXS`6kQvESUxe}q%-#VLsi=@N`By>Qp8f3Aqp@k2Jh}PVI2N#SFn4&URX^tH#4ilT(kOXNCbXE13kA1D) z-&NhM5x!PVlV$KAJ&9!l8q-hURZetR7hDsyjghRPXoD$A7NAcac{P6zWVRQNc*skgKCg2A)Xc z*n%P$6ku2Kt>7zYVPzy9(PCgqDS&~}cF3@7SlYo7(ZIyRu`50J74j4i;aaqT;kCdV z36>KtB(cHALom;P=Wpok-VyS8p;vWP^sox_s4>n}!?j}VW@GTmUR-Ko0|XWmCL3%< zpa*h`80Y}bI$4j+HOw7g)x`m=0Uo7lz$60@cPs~`pIDO8oMBE@E*@f z&J~LUzzk&zSv{@^1}hV0FPH?O%VZ#Xp&7q0!h8*eMT2K77sAmxn8M(EpA0)xZv!s` z=1{1R2GmVvI5Q}}G=u1^GK!Y+Q#@*=83}8d$K%Kdyb|u)#|;OD7A-w~8YANXq2q3K z_Y+(_>hvMp{R)AP&Vc1VFas6cUnn^o;>uAHD6DOKuje*l`N>{Skt9s`plC$`-=DS~ z0|&{afw(2uXOf)}$xRXX)@k}Y4zGV;1qLheA|^!iDqsRg_7yEGpsadvy=9af9j6QA zvcLUPL_ZMJ!{z?Lf{Fo;8hkAi=(Z6ia6BBrnS&AL=FEX#7~@=yVh0o!bl7ZzqsGBn z&xRi+wt+1CX1+T@^i9tgQytBJhKN7eI|2OC|#hjnRl#5k+7EOtLEm1^@;a z?j|tP+!V>55`Xad67V4KX{zGS7ktVA6oN_*%J@;1S(VV>o_dbDVRG+**1LD0A8{4}V^^;Q zxH6wTtBJr6XoIQY7y@vR%a`ymHbc}OSY3T0P(xIo=&Jsoh}sauTw{;uy=qo+${`#A zcetz>)OZe2p^sdln&1vm%@v4=!;v21WiJ^gJ?ul&2$pMj#efJv7hN$RM7(qbs=T8^ z1SBKVa|;y_Ag;(5He+(!s45sah(y4+NMStkn!|HAyEYs^A^Zt15tQP6j~Theng}E@ zejxE|g=-PwXDd9SPy{!wjYzsWE8D4oatBwZ*2>jgflEofm4RGQ!79{Txu$EBdaJu~ z1s6Y(+A9OOhMj`?E7u5-rQ|*gltI;Lu=DGT%ef|X98tna3e^V)iGGEx*+N(t6A?p; z6fKrQK4bhLSWW1Vpsu1%c6u=hN6HF;Bn61tM@2;TV?x9P3JvK|pc+IhS_#pz%`i;pZCoTE7#uE4m51j_F4ujpLI60LI$MQ7>F&q!mpggdoKE~t8 z{|3`KRob`4gBkV-Du*bH#azD|?4nWG*&N`MH^-HTC zJ#?~!x+qfZnBY{JB-ma7Llok^{{gmou-{y9o{2`tZv+-2PW}PaaApGqdnmaRy^@ZP z@SBtrUX)2G3TU|BNIe9gh_iz;qDzr^s^28Fw4^H7-}D<9c027-7C^2u3jnec{6+&P zJQKA@b0q^Pb>%p}$x%h1*aIW|#xHXV=HD&vj5L8`{Ko5)wh7YAU>nt$bfIMUx@1F^ zrp;ouLPj9oounvF0)Y9qQR*!qf!F%o4wntA+|M*S#QZjoOkOZCteoj9@Q#N;rkdPg zC0Y7!Yu!@zFhaZ%a$nF(DbnJM=*nv&R!Rat$M4oYI92b?g^AjKn~c2{yx%Tma|^ux zrq&aKB3ldmmXAy6{u7ZWfq&1exLnhd56tslw9_CRW_e z4vHiS9*lodE%IE+;EL2nWs4mRed}-Pl!(q{n>-z+aB#|$5&M@MRSk_NGF_TL8TW~P z3sX#t_sV!5<~JUg-sFr_2^*1+>i=p=i8IAM)jSBZO6jwTRJwYMNvVxW4(SEmALB5KZI}DZ1Wl{98Z5s5G`>731>wq&X;#s^welz88JLw_t zX20v>M!7G=-46g(A6plA|CbnektLoptm5d5|FJMPtT4@hpX9dZ?{(M)r@;!m$!}q~ z5rM4=#q1jF-ry8pEZ3n~Fy-L`q4>}YEM%rX2tnUkB`PG1{tJH7e=zN+k{SPJCwEn^ z61C@At`JT#!zKY7ZBR0MN!8^_xbH2vwq+FdHwIRNsG5C>zSUHh_Zz(2;wrard^s89 z`xegls`gTRB2|qL#yl_qs+cs`>iTNvs@v0}Qi;G+6m2_f#fe9`2x-^E3RN`@TyqJ9 z9$2Bpep>-IvsW`K*$AhBa59v56xHUo z5BtPum+_&k2Bh6wsLAD<;mnwO?RM_F2~3E5oC1JgYoQzcC9wsXlrA3dz>budr6v6; z8B9rT`%jE>6B#0-c#L9L;-Cg-PGnUi;oKYk!7_YEM?S`a*^HK)cj=f1K4d1IorBFz zIDO`Mq{OXxKr6K>TCM{#1drmZfb~L74luyR9xxH>flMak!?6@N#GVXsV{IM_62WKY zJP>*G2!ns$%Xy3?)Xk3JloT9O2ARU(0Wa92)o?Uh{LTsZfiUR{NZ>#lK8f8>I=P-; z*1}Cw@upX{d`L;)TS%|ta&xWRWWBU_#NS22*EZqm8IC#dBVH57Y==x-0{Je9aCA%;Bfk_}bu8S_E}n{DFfHfg)xOqle$)gCCEB zpX$S*8~JDZa^Rpniyy$(b?|jy^#kATFdcrxE+-Gpyo(=Ovj*rPTaMOYfnRt7wa None: + """Territory tracts that are flagged as DACS in the V1.0 score are also marked.""" + self.df[field_names.GRANDFATHERED_N_COMMUNITIES_V1_0] = np.where( + self.df[field_names.FINAL_SCORE_N_BOOLEAN_V1_0] + & ~self.df[field_names.FINAL_SCORE_N_BOOLEAN], + True, + False, + ) + self.df[field_names.FINAL_SCORE_N_BOOLEAN] = np.where( + self.df[field_names.FINAL_SCORE_N_BOOLEAN_V1_0], + True, + self.df[field_names.FINAL_SCORE_N_BOOLEAN], + ) + def _mark_poverty_flag(self) -> None: """Combine poverty less than 200% for territories and update the income flag.""" # First we set the low income flag for non-territories by themselves, this @@ -1111,6 +1125,7 @@ class ScoreNarwhal(Score): ] = self.df[field_names.SCORE_N_COMMUNITIES].astype(int) self._mark_donut_hole_tracts() + self._mark_grandfathered_dacs() self.df[ field_names.PERCENT_OF_TRACT_IS_DAC ] = self._get_percent_of_tract_that_is_dac() diff --git a/data/data-pipeline/data_pipeline/tests/score/test_score_narwhal_methods.py b/data/data-pipeline/data_pipeline/tests/score/test_score_narwhal_methods.py index 4b8fe471..943efeb0 100644 --- a/data/data-pipeline/data_pipeline/tests/score/test_score_narwhal_methods.py +++ b/data/data-pipeline/data_pipeline/tests/score/test_score_narwhal_methods.py @@ -128,3 +128,30 @@ def test_mark_poverty_flag(): assert not test_data[~expected_low_income_filter][ field_names.FPL_200_SERIES_IMPUTED_AND_ADJUSTED ].all() + + +def test_mark_grandfathered_dacs(): + data = { + field_names.GEOID_TRACT_FIELD: [ + "78010971500", + "78010970500", + "66010954400", + "66010953400", + ], + field_names.FINAL_SCORE_N_BOOLEAN_V1_0: [False, False, True, True], + field_names.FINAL_SCORE_N_BOOLEAN: [False, True, False, True], + } + test_df = pd.DataFrame(data) + scorer = ScoreNarwhal(test_df) + scorer._mark_grandfathered_dacs() + result = scorer.df + assert field_names.GRANDFATHERED_N_COMMUNITIES_V1_0 in result.columns + assert not result[field_names.GRANDFATHERED_N_COMMUNITIES_V1_0][0] + assert not result[field_names.GRANDFATHERED_N_COMMUNITIES_V1_0][1] + assert result[field_names.GRANDFATHERED_N_COMMUNITIES_V1_0][2] + assert not result[field_names.GRANDFATHERED_N_COMMUNITIES_V1_0][3] + + assert not result[field_names.FINAL_SCORE_N_BOOLEAN][0] + assert result[field_names.FINAL_SCORE_N_BOOLEAN][1] + assert result[field_names.FINAL_SCORE_N_BOOLEAN][2] + assert result[field_names.FINAL_SCORE_N_BOOLEAN][3] From 4130c46aee94b3a320935e68a3dc715afe90bfa9 Mon Sep 17 00:00:00 2001 From: Carlos Felix <63804190+carlosfelix2@users.noreply.github.com> Date: Wed, 4 Dec 2024 14:24:25 -0500 Subject: [PATCH 26/28] Fix bug in the score generation due to column clash with use of v1.0 score --- data/data-pipeline/data_pipeline/etl/score/etl_score.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/data/data-pipeline/data_pipeline/etl/score/etl_score.py b/data/data-pipeline/data_pipeline/etl/score/etl_score.py index afa03ae9..6dc13fe0 100644 --- a/data/data-pipeline/data_pipeline/etl/score/etl_score.py +++ b/data/data-pipeline/data_pipeline/etl/score/etl_score.py @@ -215,11 +215,14 @@ class ScoreETL(ExtractTransformLoad): dtype={self.GEOID_TRACT_FIELD_NAME: "string"}, low_memory=False, ) - self.v1_0_score_results_df.rename( + # Only keep the columns we need and rename them as they will clash + # with the new score DF. + self.v1_0_score_results_df = self.v1_0_score_results_df[ + [field_names.GEOID_TRACT_FIELD, field_names.FINAL_SCORE_N_BOOLEAN] + ].rename( columns={ field_names.FINAL_SCORE_N_BOOLEAN: field_names.FINAL_SCORE_N_BOOLEAN_V1_0, - }, - inplace=True, + } ) def _join_tract_dfs(self, census_tract_dfs: list) -> pd.DataFrame: From cf4e35acceec6a92ee047dce4bf5efae8b4aed3a Mon Sep 17 00:00:00 2001 From: Carlos Felix <63804190+carlosfelix2@users.noreply.github.com> Date: Wed, 4 Dec 2024 14:36:46 -0500 Subject: [PATCH 27/28] Allow for Census Tract search in UI --- client/package-lock.json | 261 +++++++++--------- client/package.json | 1 + client/src/components/J40Map.tsx | 7 +- client/src/components/MapSearch/MapSearch.tsx | 126 +++++++-- .../__snapshots__/MapSearch.test.tsx.snap | 2 +- .../MapTractLayers/MapTractLayers.tsx | 9 +- client/src/data/constants.tsx | 10 + client/src/data/copy/explore.tsx | 2 +- client/src/intl/en.json | 2 +- client/src/intl/es.json | 2 +- .../data_pipeline/etl/score/constants.py | 5 + .../data_pipeline/etl/score/etl_score_post.py | 45 +++ .../data_pipeline/etl/score/tests/conftest.py | 11 + .../score/tests/sample_data/census_60.geojson | 25 ++ .../etl/score/tests/test_score_post.py | 16 ++ 15 files changed, 362 insertions(+), 162 deletions(-) create mode 100644 data/data-pipeline/data_pipeline/etl/score/tests/sample_data/census_60.geojson diff --git a/client/package-lock.json b/client/package-lock.json index 72420b06..98143395 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -3024,7 +3024,7 @@ "@types/configstore": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/@types/configstore/-/configstore-2.1.1.tgz", - "integrity": "sha1-zR6FU2M60xhcPy8jns/10mQ+krY=", + "integrity": "sha512-YY+hm3afkDHeSM2rsFXxeZtu0garnusBWNG1+7MknmDWQHqcH2w21/xOU9arJUi8ch4qyFklidANLCu3ihhVwQ==", "dev": true }, "@types/cookie": { @@ -3451,7 +3451,7 @@ "@types/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha1-EHPEvIJHVK49EM+riKsCN7qWTk0=", + "integrity": "sha512-gVC1InwyVrO326wbBZw+AO3u2vRXz/iRWq9jYhpG4W8LXyIgDv3ZmcLQ5Q4Gs+gFMyqx+viFoFT+l3p61QFCmQ==", "dev": true }, "@types/unist": { @@ -4082,7 +4082,7 @@ "any-promise": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", - "integrity": "sha1-q8av7tzqUugJzcA3au0845Y10X8=", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", "dev": true }, "anymatch": { @@ -4098,7 +4098,7 @@ "append-field": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz", - "integrity": "sha1-HjRA6RXwsSA9I3SOeO3XubW0PlY=", + "integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==", "dev": true }, "application-config-path": { @@ -4184,7 +4184,7 @@ "array-flatten": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", "dev": true }, "array-includes": { @@ -4311,7 +4311,7 @@ "assert-plus": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", "dev": true }, "assertion-error": { @@ -4352,13 +4352,13 @@ "async": { "version": "1.5.2", "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", - "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=", + "integrity": "sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w==", "dev": true }, "async-cache": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/async-cache/-/async-cache-1.1.0.tgz", - "integrity": "sha1-SppaidBl7F2OUlS9nulrp2xTK1o=", + "integrity": "sha512-YDQc4vBn5NFhY6g6HhVshyi3Fy9+SQ5ePnE7JLDJn1DoL+i7ER+vMwtTNOYk9leZkYMnOwpBCWqyLDPw8Aig8g==", "dev": true, "requires": { "lru-cache": "^4.0.0" @@ -4410,7 +4410,7 @@ "aws-sign2": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", "dev": true }, "aws4": { @@ -4642,7 +4642,7 @@ "babel-runtime": { "version": "6.26.0", "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", - "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", + "integrity": "sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==", "dev": true, "requires": { "core-js": "^2.4.0", @@ -4727,7 +4727,7 @@ "bcrypt-pbkdf": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", "dev": true, "requires": { "tweetnacl": "^0.14.3" @@ -4736,7 +4736,7 @@ "becke-ch--regex--s0-0-v1--base--pl--lib": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/becke-ch--regex--s0-0-v1--base--pl--lib/-/becke-ch--regex--s0-0-v1--base--pl--lib-1.4.0.tgz", - "integrity": "sha1-Qpzuu/pffpNueNc/vcfacWKyDiA=", + "integrity": "sha512-FnWonOyaw7Vivg5nIkrUll9HSS5TjFbyuURAiDssuL6VxrBe3ERzudRxOcWRhZYlP89UArMDikz7SapRPQpmZQ==", "dev": true }, "better-opn": { @@ -4881,7 +4881,7 @@ "boolbase": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", "dev": true }, "boxen": { @@ -4939,7 +4939,7 @@ "brorand": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", + "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==", "dev": true }, "browser-lang": { @@ -5169,7 +5169,7 @@ "buffer-crc32": { "version": "0.2.13", "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", - "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", "dev": true }, "buffer-from": { @@ -5181,13 +5181,13 @@ "buffer-xor": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", + "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==", "dev": true }, "builtin-status-codes": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=", + "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==", "dev": true }, "busboy": { @@ -5355,7 +5355,7 @@ "lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", "dev": true } } @@ -5369,7 +5369,7 @@ "caseless": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", + "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", "dev": true }, "ccount": { @@ -5448,7 +5448,7 @@ "check-more-types": { "version": "2.24.0", "resolved": "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz", - "integrity": "sha1-FCD/sQ/URNz8ebQ4kbv//TKoRgA=", + "integrity": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==", "dev": true }, "chokidar": { @@ -5613,7 +5613,7 @@ "colors": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", - "integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=", + "integrity": "sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==", "dev": true } } @@ -5716,7 +5716,7 @@ "shebang-command": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", "dev": true, "requires": { "shebang-regex": "^1.0.0" @@ -5725,7 +5725,7 @@ "shebang-regex": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", "dev": true }, "which": { @@ -5786,7 +5786,7 @@ "co": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", "dev": true }, "code-point-at": { @@ -5868,7 +5868,7 @@ "combine-source-map": { "version": "0.8.0", "resolved": "https://registry.npmjs.org/combine-source-map/-/combine-source-map-0.8.0.tgz", - "integrity": "sha1-pY0N8ELBhvz4IqjoAV9UUNLXmos=", + "integrity": "sha512-UlxQ9Vw0b/Bt/KYwCFqdEwsQ1eL8d1gibiFb7lxQJFdvTgc2hIZi6ugsg+kyhzhPV+QEpUiEIwInIAIrgoEkrg==", "dev": true, "requires": { "convert-source-map": "~1.1.0", @@ -5880,13 +5880,13 @@ "convert-source-map": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.1.3.tgz", - "integrity": "sha1-SCnId+n+SbMWHzvzZziI4gRpmGA=", + "integrity": "sha512-Y8L5rp6jo+g9VEPgvqNfEopjTR4OTYct8lXlS8iVQdmnjDvbdbzYe9rjtFCB9egC86JoNCU61WRY+ScjkZpnIg==", "dev": true }, "source-map": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", "dev": true } } @@ -6036,7 +6036,7 @@ "constants-browserify": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=", + "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==", "dev": true }, "content-disposition": { @@ -6132,7 +6132,7 @@ "cookie-signature": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", "dev": true }, "copy-descriptor": { @@ -6453,7 +6453,7 @@ "cssfilter": { "version": "0.0.10", "resolved": "https://registry.npmjs.org/cssfilter/-/cssfilter-0.0.10.tgz", - "integrity": "sha1-xtJnJjKi5cg+AT5oZKQs6N79IK4=", + "integrity": "sha512-FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw==", "dev": true }, "cssnano": { @@ -6592,7 +6592,7 @@ "cucumber-expressions": { "version": "5.0.18", "resolved": "https://registry.npmjs.org/cucumber-expressions/-/cucumber-expressions-5.0.18.tgz", - "integrity": "sha1-bHB3nv0668Xp54U5OLERAyJClZY=", + "integrity": "sha512-cj9UKCEvsB7bN97THmowcZt8I3rYFbTAFBNeDpKmWW3vr43CLZeWBmbk7NlHijndLwPJ7+uiF72xWrRU+RLyZA==", "dev": true, "requires": { "becke-ch--regex--s0-0-v1--base--pl--lib": "^1.2.0" @@ -6601,7 +6601,7 @@ "figures": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", - "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", + "integrity": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==", "dev": true, "requires": { "escape-string-regexp": "^1.0.5" @@ -6621,7 +6621,7 @@ "cucumber-tag-expressions": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/cucumber-tag-expressions/-/cucumber-tag-expressions-1.1.1.tgz", - "integrity": "sha1-f1x7cACbwrZmWRv+ZIVFeL7e6Fo=", + "integrity": "sha512-V9jv81sR/HaJ87FoidrvHkviXId7KmBcUi7aQPfi+W3nRO30N6GqH6lcp8K+nyiT1DgemRJBPDDeBMS93xJqMQ==", "dev": true }, "currently-unhandled": { @@ -6804,7 +6804,7 @@ "dashdash": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", "dev": true, "requires": { "assert-plus": "^1.0.0" @@ -7526,7 +7526,7 @@ "duplexer2": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", - "integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=", + "integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==", "dev": true, "requires": { "readable-stream": "^2.0.2" @@ -7568,7 +7568,7 @@ "ecc-jsbn": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", "dev": true, "requires": { "jsbn": "~0.1.0", @@ -7578,7 +7578,7 @@ "ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", "dev": true }, "electron-to-chromium": { @@ -7949,7 +7949,7 @@ "escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", "dev": true }, "escape-string-regexp": { @@ -8599,13 +8599,13 @@ "etag": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", "dev": true }, "event-emitter": { "version": "0.3.5", "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", - "integrity": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=", + "integrity": "sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==", "dev": true, "requires": { "d": "1", @@ -8701,7 +8701,7 @@ "exit": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", "dev": true }, "expand-brackets": { @@ -9047,7 +9047,7 @@ "extsprintf": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", "dev": true }, "fast-copy": { @@ -9083,7 +9083,7 @@ "fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true }, "fast-safe-stringify": { @@ -9135,7 +9135,7 @@ "fd-slicer": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", - "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", "dev": true, "requires": { "pend": "~1.2.0" @@ -9328,7 +9328,7 @@ "forever-agent": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", "dev": true }, "fork-ts-checker-webpack-plugin": { @@ -9548,7 +9548,7 @@ "fresh": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", "dev": true }, "fs-exists-cached": { @@ -10602,7 +10602,7 @@ "get-port": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha1-3Xzn3hh8Bsi/NTeWrHHgmfCYDrw=", + "integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==", "dev": true }, "get-stdin": { @@ -10656,7 +10656,7 @@ "getpass": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", "dev": true, "requires": { "assert-plus": "^1.0.0" @@ -10745,7 +10745,7 @@ "gherkin": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/gherkin/-/gherkin-5.1.0.tgz", - "integrity": "sha1-aEu7A63STq9731RPWAM+so+zxtU=", + "integrity": "sha512-axTCsxH0m0cixijLvo7s9591h5pMb8ifQxFDun5FnfFhVsUhxgdnH0H7TSK7q8I4ASUU18DJ/tmlnMegMuLUUQ==", "dev": true }, "git-up": { @@ -11237,7 +11237,7 @@ "hmac-drbg": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", "dev": true, "requires": { "hash.js": "^1.0.3", @@ -11297,7 +11297,7 @@ "htmlescape": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/htmlescape/-/htmlescape-1.1.1.tgz", - "integrity": "sha1-OgPtwiFLyjtmQko+eVk0lQnLA1E=", + "integrity": "sha512-eVcrzgbR4tim7c7soKQKtxa/kQM4TzjnlU83rcZ9bHU6t31ehfV7SktN6McWgwPWg+JYMA/O3qpGxBvFq1z2Jg==", "dev": true }, "htmlparser2": { @@ -11377,7 +11377,7 @@ "https-browserify": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=", + "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==", "dev": true }, "https-proxy-agent": { @@ -11622,7 +11622,7 @@ "intl": { "version": "1.2.5", "resolved": "https://registry.npmjs.org/intl/-/intl-1.2.5.tgz", - "integrity": "sha1-giRKIZDE5Bn4Nx9ao02qNCDiq94=", + "integrity": "sha512-rK0KcPHeBFBcqsErKSpvZnrOmWOj+EmDkyJ57e90YWaQNqbcivcqmKDlHEeNprDWOsKzPsh1BfSpPQdDvclHVw==", "dev": true }, "intl-format-cache": { @@ -11862,7 +11862,7 @@ "is-directory": { "version": "0.3.1", "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", - "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=", + "integrity": "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==", "dev": true }, "is-docker": { @@ -11894,7 +11894,7 @@ "is-generator": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/is-generator/-/is-generator-1.0.3.tgz", - "integrity": "sha1-wUwhBX7TbjKNuANHlmxpP4hjifM=", + "integrity": "sha512-G56jBpbJeg7ds83HW1LuShNs8J73Fv3CPz/bmROHOHlnKkN8sWb9ujiagjmxxMUywftgq48HlBZELKKqFLk0oA==", "dev": true }, "is-generator-fn": { @@ -12267,7 +12267,7 @@ "isstream": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", "dev": true }, "istanbul-lib-coverage": { @@ -13276,10 +13276,15 @@ "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-2.2.1.tgz", "integrity": "sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==" }, + "js-search": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/js-search/-/js-search-2.0.1.tgz", + "integrity": "sha512-8k12LiC3fPt7gLRJTc1azE1BFvlxIw+BG3J9YzjuYf4wSE65uqYSYP4VhweApcTfV51Fzq/ogBulQew5937A9A==" + }, "js-string-escape": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/js-string-escape/-/js-string-escape-1.0.1.tgz", - "integrity": "sha1-4mJbrbwNZ8dTPp7cEGjFh65BN+8=", + "integrity": "sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==", "dev": true }, "js-tokens": { @@ -13300,7 +13305,7 @@ "jsbn": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", "dev": true }, "jsdom": { @@ -13433,13 +13438,13 @@ "json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true }, "json-stringify-safe": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", "dev": true }, "json5": { @@ -13466,7 +13471,7 @@ "jsonparse": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", - "integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=", + "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", "dev": true }, "jsprim": { @@ -13549,7 +13554,7 @@ "knuth-shuffle-seeded": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/knuth-shuffle-seeded/-/knuth-shuffle-seeded-1.0.6.tgz", - "integrity": "sha1-AfG2VzOqdUDuCNiwF0Fk0iCB5OE=", + "integrity": "sha512-9pFH0SplrfyKyojCLxZfMcvkhf5hH0d+UwR9nTVJ/DDQJGuzcXjTwB7TP7sDfehSudlGGaOLblmEWqv04ERVWg==", "dev": true, "requires": { "seed-random": "~2.2.0" @@ -13592,7 +13597,7 @@ "lazy-ass": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz", - "integrity": "sha1-eZllXoZGwX8In90YfRUNMyTVRRM=", + "integrity": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==", "dev": true }, "leven": { @@ -13792,7 +13797,7 @@ "lodash.every": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/lodash.every/-/lodash.every-4.6.0.tgz", - "integrity": "sha1-64mYS+vENkJ5uzrvu9HKGb+mxqc=", + "integrity": "sha512-isF82d+65/sNvQ3aaQAW7LLHnnTxSN/2fm4rhYyuufLzA4VtHz6y6S5vFwe6PQVr2xdqUOyxBbTNKDpnmeu50w==", "dev": true }, "lodash.flatten": { @@ -13804,13 +13809,13 @@ "lodash.flattendeep": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz", - "integrity": "sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=", + "integrity": "sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==", "dev": true }, "lodash.foreach": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz", - "integrity": "sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM=", + "integrity": "sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ==", "dev": true }, "lodash.get": { @@ -13834,19 +13839,19 @@ "lodash.map": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz", - "integrity": "sha1-dx7Hg540c9nEzeKLGTlMNWL09tM=", + "integrity": "sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==", "dev": true }, "lodash.maxby": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/lodash.maxby/-/lodash.maxby-4.6.0.tgz", - "integrity": "sha1-CCJABo88eiJ6oAqDgOTzjPB4bj0=", + "integrity": "sha512-QfTqQTwzmKxLy7VZlbx2M/ipWv8DCQ2F5BI/MRxLharOQ5V78yMSuB+JE+EuUM22txYfj09R2Q7hUlEYj7KdNg==", "dev": true }, "lodash.memoize": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-3.0.4.tgz", - "integrity": "sha1-LcvSwofLwKVcxCMovQxzYVDVPj8=", + "integrity": "sha512-eDn9kqrAmVUC1wmZvlQ6Uhde44n+tXpqPrN8olQJbttgh0oKclk+SF54P47VEGE9CEiMeRwAP8BaM7UHvBkz2A==", "dev": true }, "lodash.merge": { @@ -13864,19 +13869,19 @@ "lodash.once": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", - "integrity": "sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=", + "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==", "dev": true }, "lodash.truncate": { "version": "4.4.2", "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", - "integrity": "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=", + "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", "dev": true }, "lodash.uniq": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", "dev": true }, "lodash.without": { @@ -13992,7 +13997,7 @@ "lru-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/lru-queue/-/lru-queue-0.1.0.tgz", - "integrity": "sha1-Jzi9nw089PhEkMVzbEhpmsYyzaM=", + "integrity": "sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==", "dev": true, "requires": { "es5-ext": "~0.10.2" @@ -14057,7 +14062,7 @@ "p-defer": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", - "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=", + "integrity": "sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==", "dev": true } } @@ -14327,7 +14332,7 @@ "media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", "dev": true }, "mem": { @@ -14436,7 +14441,7 @@ "methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", "dev": true }, "microevent.ts": { @@ -14908,7 +14913,7 @@ "minimalistic-crypto-utils": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", + "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==", "dev": true }, "minimatch": { @@ -15242,7 +15247,7 @@ "normalize-range": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", "dev": true }, "normalize-url": { @@ -15560,7 +15565,7 @@ "os-browserify": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=", + "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==", "dev": true }, "os-homedir": { @@ -15588,13 +15593,13 @@ "ospath": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/ospath/-/ospath-1.2.2.tgz", - "integrity": "sha1-EnZjl3Sj+O8lcvf+QoDg6kVQwHs=", + "integrity": "sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==", "dev": true }, "outpipe": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/outpipe/-/outpipe-1.1.1.tgz", - "integrity": "sha1-UM+GFjZeh+Ax4ppeyTOaPaRyX6I=", + "integrity": "sha512-BnNY/RwnDrkmQdUa9U+OfN/Y7AWmKuUPCCd+hbRclZnnANvYpO72zp/a6Q4n829hPbdqEac31XCcsvlEvb+rtA==", "dev": true, "requires": { "shell-quote": "^1.4.2" @@ -15794,7 +15799,7 @@ "responselike": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", - "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", + "integrity": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==", "dev": true, "requires": { "lowercase-keys": "^1.0.0" @@ -15819,7 +15824,7 @@ "pad-right": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/pad-right/-/pad-right-0.2.2.tgz", - "integrity": "sha1-b7ySQEXSRPKiokRQMGDTv8YAl3Q=", + "integrity": "sha512-4cy8M95ioIGolCoMmm2cMntGR1lPLEbOMzOKu8bzjuJP6JpzEMQcDHmh7hHLYGgob+nKe1YHFMaG4V59HQa89g==", "dev": true, "requires": { "repeat-string": "^1.5.2" @@ -15842,7 +15847,7 @@ "parents": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parents/-/parents-1.0.1.tgz", - "integrity": "sha1-/t1NK/GTp3dF/nHjcdc8MwfZx1E=", + "integrity": "sha512-mXKF3xkoUt5td2DoxpLmtOmZvko9VfFpwRwkKDHSNvgmpLAeBo18YDhcPbBzJq+QLCHMbGOfzia2cX4U+0v9Mg==", "dev": true, "requires": { "path-platform": "~0.11.15" @@ -16073,7 +16078,7 @@ "path-platform": { "version": "0.11.15", "resolved": "https://registry.npmjs.org/path-platform/-/path-platform-0.11.15.tgz", - "integrity": "sha1-6GQhf3TDaFDwhSt43Hv31KVyG/I=", + "integrity": "sha512-Y30dB6rab1A/nfEKsZxmr01nUotHX0c/ZiIAsCTatEe1CmS5Pm5He7fZ195bPT7RdquoaL8lLxFCMQi/bS7IJg==", "dev": true }, "path-to-regexp": { @@ -16124,19 +16129,19 @@ "pend": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", - "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", "dev": true }, "performance-now": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", "dev": true }, "physical-cpu-count": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/physical-cpu-count/-/physical-cpu-count-2.0.0.tgz", - "integrity": "sha1-GN4vl+S/epVRrXURlCtUlverpmA=", + "integrity": "sha512-rxJOljMuWtYlvREBmd6TZYanfcPhNUKtGDZBjBBS8WG1dpN2iwPsRJZgQqN/OtJuiQckdRFOfzogqJClTrsi7g==", "dev": true }, "picocolors": { @@ -16682,7 +16687,7 @@ "process": { "version": "0.11.10", "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", "dev": true }, "process-nextick-args": { @@ -16755,7 +16760,7 @@ "pseudomap": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", "dev": true }, "psl": { @@ -16844,7 +16849,7 @@ "querystring-es3": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", + "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==", "dev": true }, "queue-microtask": { @@ -16951,7 +16956,7 @@ "strip-json-comments": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", "dev": true } } @@ -17351,7 +17356,7 @@ "read": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", - "integrity": "sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ=", + "integrity": "sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==", "dev": true, "requires": { "mute-stream": "~0.0.4" @@ -17383,7 +17388,7 @@ "read-only-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/read-only-stream/-/read-only-stream-2.0.0.tgz", - "integrity": "sha1-JyT9aoET1zdkrCiNQ4YnDB2/F/A=", + "integrity": "sha512-3ALe0bjBVZtkdWKIcThYpQCLbBMd/+Tbh2CDSrAIDO3UsZ4Xs+tnyjv2MjCOMMgBG+AsUOeuP1cgtY1INISc8w==", "dev": true, "requires": { "readable-stream": "^2.0.2" @@ -18008,7 +18013,7 @@ "remove-trailing-separator": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", "dev": true }, "renderkid": { @@ -18033,7 +18038,7 @@ "strip-ansi": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", "dev": true, "requires": { "ansi-regex": "^2.0.0" @@ -18050,13 +18055,13 @@ "repeat-string": { "version": "1.6.1", "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", "dev": true }, "request-progress": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-3.0.0.tgz", - "integrity": "sha1-TKdUCBx/7GP1BeT6qCWqBs1mnb4=", + "integrity": "sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==", "dev": true, "requires": { "throttleit": "^1.0.0" @@ -18083,13 +18088,13 @@ "require-package-name": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/require-package-name/-/require-package-name-2.0.1.tgz", - "integrity": "sha1-wR6XJ2tluOKSP3Xav1+y7ww4Qbk=", + "integrity": "sha512-uuoJ1hU/k6M0779t3VMVIYpb2VMJk05cehCaABFhXaibcbvfgR8wKiozLjVFSzJPmQMRqIcO0HMyTFqfV09V6Q==", "dev": true }, "requires-port": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", "dev": true }, "resize-observer-polyfill": { @@ -18517,7 +18522,7 @@ "seed-random": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/seed-random/-/seed-random-2.2.0.tgz", - "integrity": "sha1-KpsZ4lCoFwmSMaW5mk2vgLf77VQ=", + "integrity": "sha512-34EQV6AAHQGhoc0tn/96a9Fsi6v2xdqe/dMUwljGRaFOzR3EgRmECvD0O8vi8X+/uQ50LGHfkNu/Eue5TPKZkQ==", "dev": true }, "semver": { @@ -18618,7 +18623,7 @@ "serialize-error": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-2.1.0.tgz", - "integrity": "sha1-ULZ51WNc34Rme9yOWa9OW4HV9go=", + "integrity": "sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==", "dev": true }, "serialize-javascript": { @@ -18721,7 +18726,7 @@ "shasum": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/shasum/-/shasum-1.0.2.tgz", - "integrity": "sha1-5wEjENj0F/TetXEhUOVni4euVl8=", + "integrity": "sha512-UTzHm/+AzKfO9RgPgRpDIuMSNie1ubXRaljjlhFMNGYoG7z+rm9AHLPMf70R7887xboDH9Q+5YQbWKObFHEAtw==", "dev": true, "requires": { "json-stable-stringify": "~0.0.0", @@ -18731,7 +18736,7 @@ "json-stable-stringify": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz", - "integrity": "sha1-YRwj6BTbN1Un34URk9tZ3Sryf0U=", + "integrity": "sha512-nKtD/Qxm7tWdZqJoldEC7fF0S41v0mWbeaXG3637stOWfyGxTgWTYE2wtfKmjzpvxv2MA2xzxsXOIiwUpkX6Qw==", "dev": true, "requires": { "jsonify": "~0.0.0" @@ -19265,7 +19270,7 @@ "stack-trace": { "version": "0.0.10", "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", - "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=", + "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", "dev": true }, "stack-utils": { @@ -19452,7 +19457,7 @@ "stream-combiner2": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz", - "integrity": "sha1-+02KFCDqNidk4hrUeAOXvry0HL4=", + "integrity": "sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw==", "dev": true, "requires": { "duplexer2": "~0.1.0", @@ -19508,7 +19513,7 @@ "string-argv": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.0.2.tgz", - "integrity": "sha1-2sMECGkMIfPDYwo/86BYd73L1zY=", + "integrity": "sha512-p6/Mqq0utTQWUeGMi/m0uBtlLZEwXSY3+mXzeRRqw7fz5ezUb28Wr0R99NlfbWaMmL/jCyT9be4jpn7Yz8IO8w==", "dev": true }, "string-env-interpolation": { @@ -19643,7 +19648,7 @@ "strip-eof": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", "dev": true }, "strip-final-newline": { @@ -19735,7 +19740,7 @@ "subarg": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/subarg/-/subarg-1.0.0.tgz", - "integrity": "sha1-9izxdYHplrSPyWVpn1TAauJouNI=", + "integrity": "sha512-RIrIdRY0X1xojthNcVtgT9sjpOGagEUKpZdgBUi054OEPFo282yg+zE+t1Rj3+RqKq2xStL7uUHhY+AjbC4BXg==", "dev": true, "requires": { "minimist": "^1.1.0" @@ -20027,7 +20032,7 @@ "text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", "dev": true }, "thenify": { @@ -20042,7 +20047,7 @@ "thenify-all": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", - "integrity": "sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY=", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", "dev": true, "requires": { "thenify": ">= 3.1.0 < 4" @@ -20084,7 +20089,7 @@ "timers-browserify": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-1.4.2.tgz", - "integrity": "sha1-ycWLV1voQHN1y14kYtrO50NZ9B0=", + "integrity": "sha512-PIxwAupJZiYU4JmVZYwXp9FKsHMXb5h0ZEFyuXTAn8WLHOlcij+FEcbrvDsom1o5dr1YggEtFbECvGCW2sT53Q==", "dev": true, "requires": { "process": "~0.11.0" @@ -20114,7 +20119,7 @@ "title-case": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/title-case/-/title-case-2.1.1.tgz", - "integrity": "sha1-PhJyFtpY0rxb7PE3q5Ha46fNj6o=", + "integrity": "sha512-EkJoZ2O3zdCz3zJsYCsxyq2OC5hrxR9mfdd5I+w8h/tmFfeOxJ+vvkxsKxdmN0WtS9zLdHEgfgVOiMVgv+Po4Q==", "dev": true, "requires": { "no-case": "^2.2.0", @@ -20124,7 +20129,7 @@ "lower-case": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", - "integrity": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw=", + "integrity": "sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==", "dev": true }, "no-case": { @@ -20438,7 +20443,7 @@ "tweetnacl": { "version": "0.14.5", "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", "dev": true }, "type": { @@ -20480,7 +20485,7 @@ "type-of": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/type-of/-/type-of-2.0.1.tgz", - "integrity": "sha1-5yoXQYllaOn2KDeNgW1pEvfyOXI=", + "integrity": "sha512-39wxbwHdQ2sTiBB8wAzKfQ9GN+om8w+sjNWzr+vZJR5AMD5J+J7Yc8AtXnU9r/r2c8XiDZ/smxutDmZehX/qpQ==", "dev": true }, "typedarray": { @@ -20530,7 +20535,7 @@ "unc-path-regex": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", - "integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=", + "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==", "dev": true }, "undeclared-identifiers": { @@ -20735,7 +20740,7 @@ "unixify": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unixify/-/unixify-1.0.0.tgz", - "integrity": "sha1-OmQcjC/7zk2mg6XHDwOkYpQMIJA=", + "integrity": "sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==", "dev": true, "requires": { "normalize-path": "^2.1.1" @@ -20744,7 +20749,7 @@ "normalize-path": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", "dev": true, "requires": { "remove-trailing-separator": "^1.0.1" @@ -20755,7 +20760,7 @@ "unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", "dev": true }, "unset-value": { @@ -20868,7 +20873,7 @@ "upper-case": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", - "integrity": "sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=", + "integrity": "sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==", "dev": true }, "uri-js": { @@ -20945,7 +20950,7 @@ "url-parse-lax": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", - "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", + "integrity": "sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==", "dev": true, "requires": { "prepend-http": "^2.0.0" @@ -20981,7 +20986,7 @@ "inherits": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", "dev": true } } @@ -20989,7 +20994,7 @@ "util-arity": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/util-arity/-/util-arity-1.1.0.tgz", - "integrity": "sha1-WdAa8f2z/t4KxOYysKtfbOl8kzA=", + "integrity": "sha512-kkyIsXKwemfSy8ZEoaIz06ApApnWsk5hQO0vLjZS6UkBiGiW++Jsyb8vSBoc0WKlffGoGs5yYy/j5pp8zckrFA==", "dev": true }, "util-deprecate": { @@ -21006,13 +21011,13 @@ "utila": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", - "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==", "dev": true }, "utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", "dev": true }, "uuid": { @@ -21096,7 +21101,7 @@ "vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", "dev": true }, "verror": { @@ -21873,7 +21878,7 @@ "yauzl": { "version": "2.10.0", "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=", + "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", "dev": true, "requires": { "buffer-crc32": "~0.2.3", diff --git a/client/package.json b/client/package.json index 0bd78a81..aebfd24f 100644 --- a/client/package.json +++ b/client/package.json @@ -85,6 +85,7 @@ "gatsby-plugin-env-variables": "^2.2.0", "gatsby-plugin-robots-txt": "^1.7.0", "gatsby-plugin-sitemap": "^4.10.0", + "js-search": "^2.0.1", "mapbox-gl": "^1.13.2", "maplibre-gl": "^1.14.0", "query-string": "^7.1.3", diff --git a/client/src/components/J40Map.tsx b/client/src/components/J40Map.tsx index 675428f3..adc249b9 100644 --- a/client/src/components/J40Map.tsx +++ b/client/src/components/J40Map.tsx @@ -130,7 +130,7 @@ const J40Map = ({location}: IJ40Interface) => { const onClick = (event: MapEvent | React.MouseEvent) => { // Stop all propagation / bubbling / capturing event.preventDefault(); - event.stopPropagation(); + (event as React.MouseEvent).stopPropagation?.(); // Check if the click is for territories. Given the territories component's design, it can be // guaranteed that each territory control will have an id. We use this ID to determine @@ -167,8 +167,9 @@ const J40Map = ({location}: IJ40Interface) => { default: break; } - } else { - // This else clause will fire when the ID is null or empty. This is the case where the map is clicked + } else if (event.target && (event.target as HTMLElement).nodeName == 'DIV' ) { + // This else clause will fire when the user clicks on the map and will ignore other controls + // such as the search box and buttons. // @ts-ignore const feature = event.features && event.features[0]; diff --git a/client/src/components/MapSearch/MapSearch.tsx b/client/src/components/MapSearch/MapSearch.tsx index 4fc4e808..681332ea 100644 --- a/client/src/components/MapSearch/MapSearch.tsx +++ b/client/src/components/MapSearch/MapSearch.tsx @@ -4,6 +4,8 @@ import {LngLatBoundsLike} from 'maplibre-gl'; import {useIntl} from 'gatsby-plugin-intl'; import {Search} from '@trussworks/react-uswds'; import {useWindowSize} from 'react-use'; +import * as JsSearch from 'js-search'; +import * as constants from '../../data/constants'; import MapSearchMessage from '../MapSearchMessage'; @@ -14,6 +16,16 @@ interface IMapSearch { goToPlace(bounds: LngLatBoundsLike):void; } +interface ISearchResult { + addresstype: string; + lat: string; + lon: string; + boundingbox: string[]; + type: string; + // eslint-disable-next-line camelcase + place_rank: number; +} + const MapSearch = ({goToPlace}:IMapSearch) => { // State to hold if the search results are empty or not: const [isSearchResultsNull, setIsSearchResultsNull] = useState(false); @@ -30,44 +42,118 @@ const MapSearch = ({goToPlace}:IMapSearch) => { */ const {width, height} = useWindowSize(); const [placeholderText, setPlaceholderText]= useState(EXPLORE_COPY.MAP.SEARCH_PLACEHOLDER); + const [tractSearch, setTractSearch] = useState(null); + + /** + * Gets the tract search data and loads in the state. + */ + const getTractSearchData = async () => { + const searchDataUrl = `${constants.TILE_BASE_URL}/${constants.MAP_TRACT_SEARCH_PATH}`; + fetch(searchDataUrl) + .then((response) => { + if (response.ok) { + return response.json(); + } else { + throw new Error(`${response.statusText} error with status code of ${response.status}`); + } + }) + .then((data) => { + // We use JsSearch to make it easy to load and quick to search. + const search = new JsSearch.Search('GEOID10'); + search.indexStrategy = new JsSearch.ExactWordIndexStrategy(); + search.addIndex('GEOID10'); + search.addDocuments(data); + setTractSearch(search); + }) + .catch((error) => + console.error('Unable to read search tract table:', error)); + }; useEffect( () => { width > height ? setPlaceholderText(EXPLORE_COPY.MAP.SEARCH_PLACEHOLDER): setPlaceholderText(EXPLORE_COPY.MAP.SEARCH_PLACEHOLDER_MOBILE); }, [width]); + useEffect(()=>{ + getTractSearchData(); + }, []); + + /** + * Searchs for a given Census tract ID. + * @param {string} tract the 11 digit tract ID as a string + * @return {Array} an array of one search result, or null if no result found + */ + const searchForTract = (tract: string): [ISearchResult] | [] => { + // We create a bounding box just to get the tract in the view box. + // The size is not important. + const BOUNDING_BOX_SIZE_DD = 0.2; + if (tractSearch) { + // Convert 10 digit tracts to 11. + const searchTerm = tract.length == 10 ? '0' + tract : tract; + const result = tractSearch.search(searchTerm); + if (result.length > 0) { + const lat = Number(result[0].INTPTLAT10); + const lon = Number(result[0].INTPTLON10); + return [{ + addresstype: 'tract', + boundingbox: [ + (lat - (BOUNDING_BOX_SIZE_DD / 2)).toString(), + (lat + (BOUNDING_BOX_SIZE_DD / 2)).toString(), + (lon - (BOUNDING_BOX_SIZE_DD / 2)).toString(), + (lon + (BOUNDING_BOX_SIZE_DD / 2)).toString(), + ], + lat: result[0].INTPTLAT10, + lon: result[0].INTPTLON10, + type: 'tract', + place_rank: 1, + }]; + } + } + return []; + }; + /* onSearchHandler will 1. extract the search term from the input field - 2. fetch data from the API and return the results as JSON and results to US only - 3. if data is valid, destructure the boundingBox values from the search results - 4. pan the map to that location + 2. Determine if the search term is a Census Tract or not. + 3. If it is a Census Tract, it will search the tract table for a bounding box. + 4. If it is NOT a Census Tract, it will fetch data from the API and return the + results as JSON and results to US only. If data is valid, destructure the + boundingBox values from the search results. + 4. Pan the map to that location */ const onSearchHandler = async (event: React.FormEvent) => { event.preventDefault(); + event.stopPropagation(); const searchTerm = (event.currentTarget.elements.namedItem('search') as HTMLInputElement).value; + let searchResults = null; - const searchResults = await fetch( - `https://nominatim.openstreetmap.org/search?q=${searchTerm}&format=json&countrycodes=us`, - { - mode: 'cors', - }) - .then((response) => { - if (!response.ok) { - throw new Error('Network response was not OK'); - } - return response.json(); - }) - .catch((error) => { - console.error('There has been a problem with your fetch operation:', error); - }); - + // If the search term a Census tract + const isTract = /^\d{10,11}$/.test(searchTerm); + if (isTract) { + setIsSearchResultsNull(false); + searchResults = searchForTract(searchTerm); + } else { + searchResults = await fetch( + `https://nominatim.openstreetmap.org/search?q=${searchTerm}&format=json&countrycodes=us`, + { + mode: 'cors', + }) + .then((response) => { + if (!response.ok) { + throw new Error('Network response was not OK'); + } + return response.json(); + }) + .catch((error) => { + console.error('There has been a problem with your fetch operation:', error); + }); + console.log('Nominatum search results: ', searchResults); + } // If results are valid, set isSearchResultsNull to false and pan map to location: if (searchResults && searchResults.length > 0) { setIsSearchResultsNull(false); - console.log('Nominatum search results: ', searchResults); - const [latMin, latMax, longMin, longMax] = searchResults[0].boundingbox; goToPlace([[Number(longMin), Number(latMin)], [Number(longMax), Number(latMax)]]); } else { diff --git a/client/src/components/MapSearch/__snapshots__/MapSearch.test.tsx.snap b/client/src/components/MapSearch/__snapshots__/MapSearch.test.tsx.snap index 9d1c383c..74a2597d 100644 --- a/client/src/components/MapSearch/__snapshots__/MapSearch.test.tsx.snap +++ b/client/src/components/MapSearch/__snapshots__/MapSearch.test.tsx.snap @@ -23,7 +23,7 @@ exports[`rendering of the MapSearch checks if component renders 1`] = ` data-testid="textInput" id="search-field" name="search" - placeholder="Search for an address, city, state or ZIP" + placeholder="Search for an address, city, state, ZIP or Census Tract" type="search" />